Merge tag 'memblock-v5.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rppt...
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
196 F:      Documentation/driver-api/80211/cfg80211.rst
197 F:      Documentation/networking/regulatory.rst
198 F:      include/linux/ieee80211.h
199 F:      include/net/cfg80211.h
200 F:      include/net/ieee80211_radiotap.h
201 F:      include/net/iw_handler.h
202 F:      include/net/wext.h
203 F:      include/uapi/linux/nl80211.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A8293 MEDIA DRIVER
245 M:      Antti Palosaari <crope@iki.fi>
246 L:      linux-media@vger.kernel.org
247 S:      Maintained
248 W:      https://linuxtv.org
249 W:      http://palosaari.fi/linux/
250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
251 T:      git git://linuxtv.org/anttip/media_tree.git
252 F:      drivers/media/dvb-frontends/a8293*
253
254 AACRAID SCSI RAID DRIVER
255 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
256 L:      linux-scsi@vger.kernel.org
257 S:      Supported
258 W:      http://www.adaptec.com/
259 F:      Documentation/scsi/aacraid.rst
260 F:      drivers/scsi/aacraid/
261
262 ABI/API
263 L:      linux-api@vger.kernel.org
264 F:      include/linux/syscalls.h
265 F:      kernel/sys_ni.c
266 X:      include/uapi/
267 X:      arch/*/include/uapi/
268
269 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
270 M:      Hans de Goede <hdegoede@redhat.com>
271 L:      linux-hwmon@vger.kernel.org
272 S:      Maintained
273 F:      drivers/hwmon/abituguru.c
274
275 ABIT UGURU 3 HARDWARE MONITOR DRIVER
276 M:      Alistair John Strachan <alistair@devzero.co.uk>
277 L:      linux-hwmon@vger.kernel.org
278 S:      Maintained
279 F:      drivers/hwmon/abituguru3.c
280
281 ACCES 104-DIO-48E GPIO DRIVER
282 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
283 L:      linux-gpio@vger.kernel.org
284 S:      Maintained
285 F:      drivers/gpio/gpio-104-dio-48e.c
286
287 ACCES 104-IDI-48 GPIO DRIVER
288 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
289 L:      linux-gpio@vger.kernel.org
290 S:      Maintained
291 F:      drivers/gpio/gpio-104-idi-48.c
292
293 ACCES 104-IDIO-16 GPIO DRIVER
294 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
295 L:      linux-gpio@vger.kernel.org
296 S:      Maintained
297 F:      drivers/gpio/gpio-104-idio-16.c
298
299 ACCES 104-QUAD-8 DRIVER
300 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
301 M:      Syed Nayyar Waris <syednwaris@gmail.com>
302 L:      linux-iio@vger.kernel.org
303 S:      Maintained
304 F:      drivers/counter/104-quad-8.c
305
306 ACCES PCI-IDIO-16 GPIO DRIVER
307 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
308 L:      linux-gpio@vger.kernel.org
309 S:      Maintained
310 F:      drivers/gpio/gpio-pci-idio-16.c
311
312 ACCES PCIe-IDIO-24 GPIO DRIVER
313 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
314 L:      linux-gpio@vger.kernel.org
315 S:      Maintained
316 F:      drivers/gpio/gpio-pcie-idio-24.c
317
318 ACENIC DRIVER
319 M:      Jes Sorensen <jes@trained-monkey.org>
320 L:      linux-acenic@sunsite.dk
321 S:      Maintained
322 F:      drivers/net/ethernet/alteon/acenic*
323
324 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
325 M:      Peter Kaestle <peter@piie.net>
326 L:      platform-driver-x86@vger.kernel.org
327 S:      Maintained
328 W:      http://piie.net/?section=acerhdf
329 F:      drivers/platform/x86/acerhdf.c
330
331 ACER WMI LAPTOP EXTRAS
332 M:      "Lee, Chun-Yi" <jlee@suse.com>
333 L:      platform-driver-x86@vger.kernel.org
334 S:      Maintained
335 F:      drivers/platform/x86/acer-wmi.c
336
337 ACPI
338 M:      "Rafael J. Wysocki" <rafael@kernel.org>
339 R:      Len Brown <lenb@kernel.org>
340 L:      linux-acpi@vger.kernel.org
341 S:      Supported
342 W:      https://01.org/linux-acpi
343 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
344 B:      https://bugzilla.kernel.org
345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
346 F:      Documentation/ABI/testing/configfs-acpi
347 F:      Documentation/ABI/testing/sysfs-bus-acpi
348 F:      Documentation/firmware-guide/acpi/
349 F:      drivers/acpi/
350 F:      drivers/pci/*/*acpi*
351 F:      drivers/pci/*acpi*
352 F:      drivers/pnp/pnpacpi/
353 F:      include/acpi/
354 F:      include/linux/acpi.h
355 F:      include/linux/fwnode.h
356 F:      tools/power/acpi/
357
358 ACPI APEI
359 M:      "Rafael J. Wysocki" <rafael@kernel.org>
360 R:      Len Brown <lenb@kernel.org>
361 R:      James Morse <james.morse@arm.com>
362 R:      Tony Luck <tony.luck@intel.com>
363 R:      Borislav Petkov <bp@alien8.de>
364 L:      linux-acpi@vger.kernel.org
365 F:      drivers/acpi/apei/
366
367 ACPI COMPONENT ARCHITECTURE (ACPICA)
368 M:      Robert Moore <robert.moore@intel.com>
369 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
370 L:      linux-acpi@vger.kernel.org
371 L:      devel@acpica.org
372 S:      Supported
373 W:      https://acpica.org/
374 W:      https://github.com/acpica/acpica/
375 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
376 B:      https://bugzilla.kernel.org
377 B:      https://bugs.acpica.org
378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
379 F:      drivers/acpi/acpica/
380 F:      include/acpi/
381 F:      tools/power/acpi/
382
383 ACPI FOR ARM64 (ACPI/arm64)
384 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
385 M:      Hanjun Guo <guohanjun@huawei.com>
386 M:      Sudeep Holla <sudeep.holla@arm.com>
387 L:      linux-acpi@vger.kernel.org
388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
389 S:      Maintained
390 F:      drivers/acpi/arm64
391
392 ACPI SERIAL MULTI INSTANTIATE DRIVER
393 M:      Hans de Goede <hdegoede@redhat.com>
394 L:      platform-driver-x86@vger.kernel.org
395 S:      Maintained
396 F:      drivers/platform/x86/serial-multi-instantiate.c
397
398 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
399 M:      Sudeep Holla <sudeep.holla@arm.com>
400 L:      linux-acpi@vger.kernel.org
401 S:      Supported
402 F:      drivers/mailbox/pcc.c
403
404 ACPI PMIC DRIVERS
405 M:      "Rafael J. Wysocki" <rafael@kernel.org>
406 M:      Len Brown <lenb@kernel.org>
407 R:      Andy Shevchenko <andy@kernel.org>
408 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
409 L:      linux-acpi@vger.kernel.org
410 S:      Supported
411 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
412 B:      https://bugzilla.kernel.org
413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F:      drivers/acpi/pmic/
415
416 ACPI THERMAL DRIVER
417 M:      Rafael J. Wysocki <rafael@kernel.org>
418 R:      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 VIOT DRIVER
426 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
427 L:      linux-acpi@vger.kernel.org
428 L:      iommu@lists.linux-foundation.org
429 S:      Maintained
430 F:      drivers/acpi/viot.c
431 F:      include/linux/acpi_viot.h
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 ACRN HYPERVISOR SERVICE MODULE
440 M:      Fei Li <fei1.li@intel.com>
441 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
442 S:      Supported
443 W:      https://projectacrn.org
444 F:      Documentation/virt/acrn/
445 F:      drivers/virt/acrn/
446 F:      include/uapi/linux/acrn.h
447
448 AD1889 ALSA SOUND DRIVER
449 L:      linux-parisc@vger.kernel.org
450 S:      Maintained
451 W:      https://parisc.wiki.kernel.org/index.php/AD1889
452 F:      sound/pci/ad1889.*
453
454 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
455 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
456 L:      linux-iio@vger.kernel.org
457 S:      Supported
458 F:      drivers/iio/potentiometer/ad5110.c
459
460 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
461 M:      Michael Hennerich <michael.hennerich@analog.com>
462 S:      Supported
463 W:      http://wiki.analog.com/AD5254
464 W:      http://ez.analog.com/community/linux-device-drivers
465 F:      drivers/misc/ad525x_dpot.c
466
467 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
468 M:      Michael Hennerich <michael.hennerich@analog.com>
469 S:      Supported
470 W:      http://wiki.analog.com/AD5398
471 W:      http://ez.analog.com/community/linux-device-drivers
472 F:      drivers/regulator/ad5398.c
473
474 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
475 M:      Michael Hennerich <michael.hennerich@analog.com>
476 S:      Supported
477 W:      http://wiki.analog.com/AD7142
478 W:      http://ez.analog.com/community/linux-device-drivers
479 F:      drivers/input/misc/ad714x.c
480
481 AD7877 TOUCHSCREEN DRIVER
482 M:      Michael Hennerich <michael.hennerich@analog.com>
483 S:      Supported
484 W:      http://wiki.analog.com/AD7877
485 W:      http://ez.analog.com/community/linux-device-drivers
486 F:      drivers/input/touchscreen/ad7877.c
487
488 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
489 M:      Michael Hennerich <michael.hennerich@analog.com>
490 S:      Supported
491 W:      http://wiki.analog.com/AD7879
492 W:      http://ez.analog.com/community/linux-device-drivers
493 F:      drivers/input/touchscreen/ad7879.c
494
495 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
496 M:      Jiri Kosina <jikos@kernel.org>
497 S:      Maintained
498
499 ADF7242 IEEE 802.15.4 RADIO DRIVER
500 M:      Michael Hennerich <michael.hennerich@analog.com>
501 L:      linux-wpan@vger.kernel.org
502 S:      Supported
503 W:      https://wiki.analog.com/ADF7242
504 W:      http://ez.analog.com/community/linux-device-drivers
505 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
506 F:      drivers/net/ieee802154/adf7242.c
507
508 ADM1025 HARDWARE MONITOR DRIVER
509 M:      Jean Delvare <jdelvare@suse.com>
510 L:      linux-hwmon@vger.kernel.org
511 S:      Maintained
512 F:      Documentation/hwmon/adm1025.rst
513 F:      drivers/hwmon/adm1025.c
514
515 ADM1029 HARDWARE MONITOR DRIVER
516 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
517 L:      linux-hwmon@vger.kernel.org
518 S:      Maintained
519 F:      drivers/hwmon/adm1029.c
520
521 ADM8211 WIRELESS DRIVER
522 L:      linux-wireless@vger.kernel.org
523 S:      Orphan
524 W:      https://wireless.wiki.kernel.org/
525 F:      drivers/net/wireless/admtek/adm8211.*
526
527 ADP1653 FLASH CONTROLLER DRIVER
528 M:      Sakari Ailus <sakari.ailus@iki.fi>
529 L:      linux-media@vger.kernel.org
530 S:      Maintained
531 F:      drivers/media/i2c/adp1653.c
532 F:      include/media/i2c/adp1653.h
533
534 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
535 M:      Michael Hennerich <michael.hennerich@analog.com>
536 S:      Supported
537 W:      http://wiki.analog.com/ADP5520
538 W:      http://ez.analog.com/community/linux-device-drivers
539 F:      drivers/gpio/gpio-adp5520.c
540 F:      drivers/input/keyboard/adp5520-keys.c
541 F:      drivers/leds/leds-adp5520.c
542 F:      drivers/mfd/adp5520.c
543 F:      drivers/video/backlight/adp5520_bl.c
544
545 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
546 M:      Michael Hennerich <michael.hennerich@analog.com>
547 S:      Supported
548 W:      http://wiki.analog.com/ADP5588
549 W:      http://ez.analog.com/community/linux-device-drivers
550 F:      drivers/gpio/gpio-adp5588.c
551 F:      drivers/input/keyboard/adp5588-keys.c
552
553 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
554 M:      Michael Hennerich <michael.hennerich@analog.com>
555 S:      Supported
556 W:      http://wiki.analog.com/ADP8860
557 W:      http://ez.analog.com/community/linux-device-drivers
558 F:      drivers/video/backlight/adp8860_bl.c
559
560 ADT746X FAN DRIVER
561 M:      Colin Leroy <colin@colino.net>
562 S:      Maintained
563 F:      drivers/macintosh/therm_adt746x.c
564
565 ADT7475 HARDWARE MONITOR DRIVER
566 M:      Jean Delvare <jdelvare@suse.com>
567 L:      linux-hwmon@vger.kernel.org
568 S:      Maintained
569 F:      Documentation/hwmon/adt7475.rst
570 F:      drivers/hwmon/adt7475.c
571
572 ADVANSYS SCSI DRIVER
573 M:      Matthew Wilcox <willy@infradead.org>
574 M:      Hannes Reinecke <hare@suse.com>
575 L:      linux-scsi@vger.kernel.org
576 S:      Maintained
577 F:      Documentation/scsi/advansys.rst
578 F:      drivers/scsi/advansys.c
579
580 ADVANTECH SWBTN DRIVER
581 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
582 L:      platform-driver-x86@vger.kernel.org
583 S:      Maintained
584 F:      drivers/platform/x86/adv_swbutton.c
585
586 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
587 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
588 S:      Supported
589 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
590 F:      drivers/iio/accel/adxl313*
591
592 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
593 M:      Michael Hennerich <michael.hennerich@analog.com>
594 S:      Supported
595 W:      http://wiki.analog.com/ADXL345
596 W:      http://ez.analog.com/community/linux-device-drivers
597 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
598 F:      drivers/input/misc/adxl34x.c
599
600 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
601 M:      Puranjay Mohan <puranjay12@gmail.com>
602 L:      linux-iio@vger.kernel.org
603 S:      Supported
604 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
605 F:      drivers/iio/accel/adxl355.h
606 F:      drivers/iio/accel/adxl355_core.c
607 F:      drivers/iio/accel/adxl355_i2c.c
608 F:      drivers/iio/accel/adxl355_spi.c
609
610 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
611 M:      Michael Hennerich <michael.hennerich@analog.com>
612 S:      Supported
613 W:      http://ez.analog.com/community/linux-device-drivers
614 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
615 F:      drivers/iio/accel/adxl372.c
616 F:      drivers/iio/accel/adxl372_i2c.c
617 F:      drivers/iio/accel/adxl372_spi.c
618
619 AF9013 MEDIA DRIVER
620 M:      Antti Palosaari <crope@iki.fi>
621 L:      linux-media@vger.kernel.org
622 S:      Maintained
623 W:      https://linuxtv.org
624 W:      http://palosaari.fi/linux/
625 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
626 T:      git git://linuxtv.org/anttip/media_tree.git
627 F:      drivers/media/dvb-frontends/af9013*
628
629 AF9033 MEDIA DRIVER
630 M:      Antti Palosaari <crope@iki.fi>
631 L:      linux-media@vger.kernel.org
632 S:      Maintained
633 W:      https://linuxtv.org
634 W:      http://palosaari.fi/linux/
635 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
636 T:      git git://linuxtv.org/anttip/media_tree.git
637 F:      drivers/media/dvb-frontends/af9033*
638
639 AFFS FILE SYSTEM
640 M:      David Sterba <dsterba@suse.com>
641 L:      linux-fsdevel@vger.kernel.org
642 S:      Odd Fixes
643 F:      Documentation/filesystems/affs.rst
644 F:      fs/affs/
645
646 AFS FILESYSTEM
647 M:      David Howells <dhowells@redhat.com>
648 M:      Marc Dionne <marc.dionne@auristor.com>
649 L:      linux-afs@lists.infradead.org
650 S:      Supported
651 W:      https://www.infradead.org/~dhowells/kafs/
652 F:      Documentation/filesystems/afs.rst
653 F:      fs/afs/
654 F:      include/trace/events/afs.h
655
656 AGPGART DRIVER
657 M:      David Airlie <airlied@linux.ie>
658 S:      Maintained
659 T:      git git://anongit.freedesktop.org/drm/drm
660 F:      drivers/char/agp/
661 F:      include/linux/agp*
662 F:      include/uapi/linux/agp*
663
664 AHA152X SCSI DRIVER
665 M:      "Juergen E. Fischer" <fischer@norbit.de>
666 L:      linux-scsi@vger.kernel.org
667 S:      Maintained
668 F:      drivers/scsi/aha152x*
669 F:      drivers/scsi/pcmcia/aha152x*
670
671 AIC7XXX / AIC79XX SCSI DRIVER
672 M:      Hannes Reinecke <hare@suse.com>
673 L:      linux-scsi@vger.kernel.org
674 S:      Maintained
675 F:      drivers/scsi/aic7xxx/
676
677 AIMSLAB FM RADIO RECEIVER DRIVER
678 M:      Hans Verkuil <hverkuil@xs4all.nl>
679 L:      linux-media@vger.kernel.org
680 S:      Maintained
681 W:      https://linuxtv.org
682 T:      git git://linuxtv.org/media_tree.git
683 F:      drivers/media/radio/radio-aimslab*
684
685 AIO
686 M:      Benjamin LaHaise <bcrl@kvack.org>
687 L:      linux-aio@kvack.org
688 S:      Supported
689 F:      fs/aio.c
690 F:      include/linux/*aio*.h
691
692 AIRSPY MEDIA DRIVER
693 M:      Antti Palosaari <crope@iki.fi>
694 L:      linux-media@vger.kernel.org
695 S:      Maintained
696 W:      https://linuxtv.org
697 W:      http://palosaari.fi/linux/
698 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
699 T:      git git://linuxtv.org/anttip/media_tree.git
700 F:      drivers/media/usb/airspy/
701
702 ALACRITECH GIGABIT ETHERNET DRIVER
703 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
704 S:      Maintained
705 F:      drivers/net/ethernet/alacritech/*
706
707 ALCATEL SPEEDTOUCH USB DRIVER
708 M:      Duncan Sands <duncan.sands@free.fr>
709 L:      linux-usb@vger.kernel.org
710 S:      Maintained
711 W:      http://www.linux-usb.org/SpeedTouch/
712 F:      drivers/usb/atm/speedtch.c
713 F:      drivers/usb/atm/usbatm.c
714
715 ALCHEMY AU1XX0 MMC DRIVER
716 M:      Manuel Lauss <manuel.lauss@gmail.com>
717 S:      Maintained
718 F:      drivers/mmc/host/au1xmmc.c
719
720 ALI1563 I2C DRIVER
721 M:      Rudolf Marek <r.marek@assembler.cz>
722 L:      linux-i2c@vger.kernel.org
723 S:      Maintained
724 F:      Documentation/i2c/busses/i2c-ali1563.rst
725 F:      drivers/i2c/busses/i2c-ali1563.c
726
727 ALIENWARE WMI DRIVER
728 L:      Dell.Client.Kernel@dell.com
729 S:      Maintained
730 F:      drivers/platform/x86/dell/alienware-wmi.c
731
732 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
733 M:      Tomislav Denis <tomislav.denis@avl.com>
734 L:      linux-iio@vger.kernel.org
735 S:      Maintained
736 W:      http://www.allsensors.com/
737 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
738 F:      drivers/iio/pressure/dlhl60d.c
739
740 ALLEGRO DVT VIDEO IP CORE DRIVER
741 M:      Michael Tretter <m.tretter@pengutronix.de>
742 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
743 L:      linux-media@vger.kernel.org
744 S:      Maintained
745 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
746 F:      drivers/media/platform/allegro-dvt/
747
748 ALLWINNER A10 CSI DRIVER
749 M:      Maxime Ripard <mripard@kernel.org>
750 L:      linux-media@vger.kernel.org
751 S:      Maintained
752 T:      git git://linuxtv.org/media_tree.git
753 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
754 F:      drivers/media/platform/sunxi/sun4i-csi/
755
756 ALLWINNER CPUFREQ DRIVER
757 M:      Yangtao Li <tiny.windzz@gmail.com>
758 L:      linux-pm@vger.kernel.org
759 S:      Maintained
760 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
761 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
762
763 ALLWINNER CRYPTO DRIVERS
764 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
765 L:      linux-crypto@vger.kernel.org
766 S:      Maintained
767 F:      drivers/crypto/allwinner/
768
769 ALLWINNER HARDWARE SPINLOCK SUPPORT
770 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
771 S:      Maintained
772 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
773 F:      drivers/hwspinlock/sun6i_hwspinlock.c
774
775 ALLWINNER THERMAL DRIVER
776 M:      Vasily Khoruzhick <anarsoul@gmail.com>
777 M:      Yangtao Li <tiny.windzz@gmail.com>
778 L:      linux-pm@vger.kernel.org
779 S:      Maintained
780 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
781 F:      drivers/thermal/sun8i_thermal.c
782
783 ALLWINNER VPU DRIVER
784 M:      Maxime Ripard <mripard@kernel.org>
785 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
786 L:      linux-media@vger.kernel.org
787 S:      Maintained
788 F:      drivers/staging/media/sunxi/cedrus/
789
790 ALPHA PORT
791 M:      Richard Henderson <rth@twiddle.net>
792 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
793 M:      Matt Turner <mattst88@gmail.com>
794 L:      linux-alpha@vger.kernel.org
795 S:      Odd Fixes
796 F:      arch/alpha/
797
798 ALPS PS/2 TOUCHPAD DRIVER
799 R:      Pali Rohár <pali@kernel.org>
800 F:      drivers/input/mouse/alps.*
801
802 ALTERA I2C CONTROLLER DRIVER
803 M:      Thor Thayer <thor.thayer@linux.intel.com>
804 S:      Maintained
805 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
806 F:      drivers/i2c/busses/i2c-altera.c
807
808 ALTERA MAILBOX DRIVER
809 M:      Mun Yew Tham <mun.yew.tham@intel.com>
810 S:      Maintained
811 F:      drivers/mailbox/mailbox-altera.c
812
813 ALTERA MSGDMA IP CORE DRIVER
814 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
815 R:      Stefan Roese <sr@denx.de>
816 L:      dmaengine@vger.kernel.org
817 S:      Odd Fixes
818 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
819 F:      drivers/dma/altera-msgdma.c
820
821 ALTERA PIO DRIVER
822 M:      Mun Yew Tham <mun.yew.tham@intel.com>
823 L:      linux-gpio@vger.kernel.org
824 S:      Maintained
825 F:      drivers/gpio/gpio-altera.c
826
827 ALTERA SYSTEM MANAGER DRIVER
828 M:      Thor Thayer <thor.thayer@linux.intel.com>
829 S:      Maintained
830 F:      drivers/mfd/altera-sysmgr.c
831 F:      include/linux/mfd/altera-sysmgr.h
832
833 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
834 M:      Thor Thayer <thor.thayer@linux.intel.com>
835 S:      Maintained
836 F:      drivers/gpio/gpio-altera-a10sr.c
837 F:      drivers/mfd/altera-a10sr.c
838 F:      drivers/reset/reset-a10sr.c
839 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
840 F:      include/linux/mfd/altera-a10sr.h
841
842 ALTERA TRIPLE SPEED ETHERNET DRIVER
843 M:      Joyce Ooi <joyce.ooi@intel.com>
844 L:      netdev@vger.kernel.org
845 S:      Maintained
846 F:      drivers/net/ethernet/altera/
847
848 ALTERA UART/JTAG UART SERIAL DRIVERS
849 M:      Tobias Klauser <tklauser@distanz.ch>
850 L:      linux-serial@vger.kernel.org
851 S:      Maintained
852 F:      drivers/tty/serial/altera_jtaguart.c
853 F:      drivers/tty/serial/altera_uart.c
854 F:      include/linux/altera_jtaguart.h
855 F:      include/linux/altera_uart.h
856
857 AMAZON ANNAPURNA LABS FIC DRIVER
858 M:      Talel Shenhar <talel@amazon.com>
859 S:      Maintained
860 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
861 F:      drivers/irqchip/irq-al-fic.c
862
863 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
864 M:      Talel Shenhar <talel@amazon.com>
865 M:      Talel Shenhar <talelshenhar@gmail.com>
866 S:      Maintained
867 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
868 F:      drivers/edac/al_mc_edac.c
869
870 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
871 M:      Talel Shenhar <talel@amazon.com>
872 S:      Maintained
873 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
874 F:      drivers/thermal/thermal_mmio.c
875
876 AMAZON ETHERNET DRIVERS
877 M:      Shay Agroskin <shayagr@amazon.com>
878 M:      Arthur Kiyanovski <akiyano@amazon.com>
879 R:      David Arinzon <darinzon@amazon.com>
880 R:      Noam Dagan <ndagan@amazon.com>
881 R:      Saeed Bishara <saeedb@amazon.com>
882 L:      netdev@vger.kernel.org
883 S:      Supported
884 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
885 F:      drivers/net/ethernet/amazon/
886
887 AMAZON RDMA EFA DRIVER
888 M:      Gal Pressman <galpress@amazon.com>
889 R:      Yossi Leybovich <sleybo@amazon.com>
890 L:      linux-rdma@vger.kernel.org
891 S:      Supported
892 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
893 F:      drivers/infiniband/hw/efa/
894 F:      include/uapi/rdma/efa-abi.h
895
896 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
897 M:      Tom Lendacky <thomas.lendacky@amd.com>
898 M:      John Allen <john.allen@amd.com>
899 L:      linux-crypto@vger.kernel.org
900 S:      Supported
901 F:      drivers/crypto/ccp/
902 F:      include/linux/ccp.h
903
904 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
905 M:      Brijesh Singh <brijesh.singh@amd.com>
906 M:      Tom Lendacky <thomas.lendacky@amd.com>
907 L:      linux-crypto@vger.kernel.org
908 S:      Supported
909 F:      drivers/crypto/ccp/sev*
910 F:      include/uapi/linux/psp-sev.h
911
912 AMD DISPLAY CORE
913 M:      Harry Wentland <harry.wentland@amd.com>
914 M:      Leo Li <sunpeng.li@amd.com>
915 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
916 L:      amd-gfx@lists.freedesktop.org
917 S:      Supported
918 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
919 F:      drivers/gpu/drm/amd/display/
920
921 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
922 M:      Huang Rui <ray.huang@amd.com>
923 L:      linux-hwmon@vger.kernel.org
924 S:      Supported
925 F:      Documentation/hwmon/fam15h_power.rst
926 F:      drivers/hwmon/fam15h_power.c
927
928 AMD FCH GPIO DRIVER
929 M:      Enrico Weigelt, metux IT consult <info@metux.net>
930 L:      linux-gpio@vger.kernel.org
931 S:      Maintained
932 F:      drivers/gpio/gpio-amd-fch.c
933 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
934
935 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
936 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
937 S:      Orphan
938 F:      drivers/usb/gadget/udc/amd5536udc.*
939
940 AMD GEODE PROCESSOR/CHIPSET SUPPORT
941 M:      Andres Salomon <dilinger@queued.net>
942 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
943 S:      Supported
944 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
945 F:      arch/x86/include/asm/geode.h
946 F:      drivers/char/hw_random/geode-rng.c
947 F:      drivers/crypto/geode*
948 F:      drivers/video/fbdev/geode/
949
950 AMD IOMMU (AMD-VI)
951 M:      Joerg Roedel <joro@8bytes.org>
952 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
953 L:      iommu@lists.linux-foundation.org
954 S:      Maintained
955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
956 F:      drivers/iommu/amd/
957 F:      include/linux/amd-iommu.h
958
959 AMD KFD
960 M:      Felix Kuehling <Felix.Kuehling@amd.com>
961 L:      amd-gfx@lists.freedesktop.org
962 S:      Supported
963 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
964 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
965 F:      drivers/gpu/drm/amd/amdkfd/
966 F:      drivers/gpu/drm/amd/include/cik_structs.h
967 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
968 F:      drivers/gpu/drm/amd/include/v9_structs.h
969 F:      drivers/gpu/drm/amd/include/vi_structs.h
970 F:      include/uapi/linux/kfd_ioctl.h
971 F:      include/uapi/linux/kfd_sysfs.h
972
973 AMD SPI DRIVER
974 M:      Sanjay R Mehta <sanju.mehta@amd.com>
975 S:      Maintained
976 F:      drivers/spi/spi-amd.c
977
978 AMD MP2 I2C DRIVER
979 M:      Elie Morisse <syniurge@gmail.com>
980 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
981 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
982 L:      linux-i2c@vger.kernel.org
983 S:      Maintained
984 F:      drivers/i2c/busses/i2c-amd-mp2*
985
986 AMD PMC DRIVER
987 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
988 L:      platform-driver-x86@vger.kernel.org
989 S:      Maintained
990 F:      drivers/platform/x86/amd-pmc.*
991
992 AMD HSMP DRIVER
993 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
994 R:      Carlos Bilbao <carlos.bilbao@amd.com>
995 L:      platform-driver-x86@vger.kernel.org
996 S:      Maintained
997 F:      Documentation/x86/amd_hsmp.rst
998 F:      arch/x86/include/asm/amd_hsmp.h
999 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1000 F:      drivers/platform/x86/amd_hsmp.c
1001
1002 AMD POWERPLAY AND SWSMU
1003 M:      Evan Quan <evan.quan@amd.com>
1004 L:      amd-gfx@lists.freedesktop.org
1005 S:      Supported
1006 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1007 F:      drivers/gpu/drm/amd/pm/
1008
1009 AMD PSTATE DRIVER
1010 M:      Huang Rui <ray.huang@amd.com>
1011 L:      linux-pm@vger.kernel.org
1012 S:      Supported
1013 F:      Documentation/admin-guide/pm/amd-pstate.rst
1014 F:      drivers/cpufreq/amd-pstate*
1015 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1016
1017 AMD PTDMA DRIVER
1018 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1019 L:      dmaengine@vger.kernel.org
1020 S:      Maintained
1021 F:      drivers/dma/ptdma/
1022
1023 AMD SEATTLE DEVICE TREE SUPPORT
1024 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1025 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1026 M:      Tom Lendacky <thomas.lendacky@amd.com>
1027 S:      Supported
1028 F:      arch/arm64/boot/dts/amd/
1029
1030 AMD XGBE DRIVER
1031 M:      Tom Lendacky <thomas.lendacky@amd.com>
1032 L:      netdev@vger.kernel.org
1033 S:      Supported
1034 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1035 F:      drivers/net/ethernet/amd/xgbe/
1036
1037 AMD SENSOR FUSION HUB DRIVER
1038 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1039 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1040 L:      linux-input@vger.kernel.org
1041 S:      Maintained
1042 F:      Documentation/hid/amd-sfh*
1043 F:      drivers/hid/amd-sfh-hid/
1044
1045 AMPHION VPU CODEC V4L2 DRIVER
1046 M:      Ming Qian <ming.qian@nxp.com>
1047 M:      Shijie Qin <shijie.qin@nxp.com>
1048 M:      Zhou Peng <eagle.zhou@nxp.com>
1049 L:      linux-media@vger.kernel.org
1050 S:      Maintained
1051 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1052 F:      drivers/media/platform/amphion/
1053
1054 AMS AS73211 DRIVER
1055 M:      Christian Eggers <ceggers@arri.de>
1056 L:      linux-iio@vger.kernel.org
1057 S:      Maintained
1058 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1059 F:      drivers/iio/light/as73211.c
1060
1061 AMT (Automatic Multicast Tunneling)
1062 M:      Taehee Yoo <ap420073@gmail.com>
1063 L:      netdev@vger.kernel.org
1064 S:      Maintained
1065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1067 F:      drivers/net/amt.c
1068
1069 ANALOG DEVICES INC AD7192 DRIVER
1070 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1071 L:      linux-iio@vger.kernel.org
1072 S:      Supported
1073 W:      http://ez.analog.com/community/linux-device-drivers
1074 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1075 F:      drivers/iio/adc/ad7192.c
1076
1077 ANALOG DEVICES INC AD7292 DRIVER
1078 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1079 L:      linux-iio@vger.kernel.org
1080 S:      Supported
1081 W:      http://ez.analog.com/community/linux-device-drivers
1082 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1083 F:      drivers/iio/adc/ad7292.c
1084
1085 ANALOG DEVICES INC AD7768-1 DRIVER
1086 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      http://ez.analog.com/community/linux-device-drivers
1090 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1091 F:      drivers/iio/adc/ad7768-1.c
1092
1093 ANALOG DEVICES INC AD7780 DRIVER
1094 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1095 M:      Renato Lui Geh <renatogeh@gmail.com>
1096 L:      linux-iio@vger.kernel.org
1097 S:      Supported
1098 W:      http://ez.analog.com/community/linux-device-drivers
1099 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1100 F:      drivers/iio/adc/ad7780.c
1101
1102 ANALOG DEVICES INC AD74413R DRIVER
1103 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1104 L:      linux-iio@vger.kernel.org
1105 S:      Supported
1106 W:      http://ez.analog.com/community/linux-device-drivers
1107 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1108 F:      drivers/iio/addac/ad74413r.c
1109 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1110
1111 ANALOG DEVICES INC AD9389B DRIVER
1112 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1113 L:      linux-media@vger.kernel.org
1114 S:      Maintained
1115 F:      drivers/media/i2c/ad9389b*
1116
1117 ANALOG DEVICES INC ADGS1408 DRIVER
1118 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1119 S:      Supported
1120 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1121 F:      drivers/mux/adgs1408.c
1122
1123 ANALOG DEVICES INC ADIN DRIVER
1124 M:      Michael Hennerich <michael.hennerich@analog.com>
1125 L:      netdev@vger.kernel.org
1126 S:      Supported
1127 W:      http://ez.analog.com/community/linux-device-drivers
1128 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1129 F:      drivers/net/phy/adin.c
1130
1131 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1132 M:      Nuno Sa <nuno.sa@analog.com>
1133 L:      linux-iio@vger.kernel.org
1134 S:      Supported
1135 F:      drivers/iio/imu/adis.c
1136 F:      include/linux/iio/imu/adis.h
1137
1138 ANALOG DEVICES INC ADIS16460 DRIVER
1139 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1140 L:      linux-iio@vger.kernel.org
1141 S:      Supported
1142 W:      http://ez.analog.com/community/linux-device-drivers
1143 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1144 F:      drivers/iio/imu/adis16460.c
1145
1146 ANALOG DEVICES INC ADIS16475 DRIVER
1147 M:      Nuno Sa <nuno.sa@analog.com>
1148 L:      linux-iio@vger.kernel.org
1149 W:      http://ez.analog.com/community/linux-device-drivers
1150 S:      Supported
1151 F:      drivers/iio/imu/adis16475.c
1152 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1153
1154 ANALOG DEVICES INC ADM1177 DRIVER
1155 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1156 L:      linux-hwmon@vger.kernel.org
1157 S:      Supported
1158 W:      http://ez.analog.com/community/linux-device-drivers
1159 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1160 F:      drivers/hwmon/adm1177.c
1161
1162 ANALOG DEVICES INC ADP5061 DRIVER
1163 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1164 L:      linux-pm@vger.kernel.org
1165 S:      Supported
1166 W:      http://ez.analog.com/community/linux-device-drivers
1167 F:      drivers/power/supply/adp5061.c
1168
1169 ANALOG DEVICES INC ADV7180 DRIVER
1170 M:      Lars-Peter Clausen <lars@metafoo.de>
1171 L:      linux-media@vger.kernel.org
1172 S:      Supported
1173 W:      http://ez.analog.com/community/linux-device-drivers
1174 F:      drivers/media/i2c/adv7180.c
1175 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1176
1177 ANALOG DEVICES INC ADV748X DRIVER
1178 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1179 L:      linux-media@vger.kernel.org
1180 S:      Maintained
1181 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1182 F:      drivers/media/i2c/adv748x/*
1183
1184 ANALOG DEVICES INC ADV7511 DRIVER
1185 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1186 L:      linux-media@vger.kernel.org
1187 S:      Maintained
1188 F:      drivers/media/i2c/adv7511*
1189
1190 ANALOG DEVICES INC ADV7604 DRIVER
1191 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1192 L:      linux-media@vger.kernel.org
1193 S:      Maintained
1194 F:      drivers/media/i2c/adv7604*
1195 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1196
1197 ANALOG DEVICES INC ADV7842 DRIVER
1198 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1199 L:      linux-media@vger.kernel.org
1200 S:      Maintained
1201 F:      drivers/media/i2c/adv7842*
1202
1203 ANALOG DEVICES INC ADXRS290 DRIVER
1204 M:      Nishant Malpani <nish.malpani25@gmail.com>
1205 L:      linux-iio@vger.kernel.org
1206 S:      Supported
1207 F:      drivers/iio/gyro/adxrs290.c
1208 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1209
1210 ANALOG DEVICES INC ASOC CODEC DRIVERS
1211 M:      Lars-Peter Clausen <lars@metafoo.de>
1212 M:      Nuno Sá <nuno.sa@analog.com>
1213 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1214 S:      Supported
1215 W:      http://wiki.analog.com/
1216 W:      http://ez.analog.com/community/linux-device-drivers
1217 F:      sound/soc/codecs/ad1*
1218 F:      sound/soc/codecs/ad7*
1219 F:      sound/soc/codecs/adau*
1220 F:      sound/soc/codecs/adav*
1221 F:      sound/soc/codecs/sigmadsp.*
1222 F:      sound/soc/codecs/ssm*
1223
1224 ANALOG DEVICES INC DMA DRIVERS
1225 M:      Lars-Peter Clausen <lars@metafoo.de>
1226 S:      Supported
1227 W:      http://ez.analog.com/community/linux-device-drivers
1228 F:      drivers/dma/dma-axi-dmac.c
1229
1230 ANALOG DEVICES INC IIO DRIVERS
1231 M:      Lars-Peter Clausen <lars@metafoo.de>
1232 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1233 S:      Supported
1234 W:      http://wiki.analog.com/
1235 W:      http://ez.analog.com/community/linux-device-drivers
1236 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1237 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1238 F:      Documentation/devicetree/bindings/iio/*/adi,*
1239 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1240 F:      drivers/iio/*/ad*
1241 F:      drivers/iio/adc/ltc249*
1242 F:      drivers/iio/amplifiers/hmc425a.c
1243 F:      drivers/staging/iio/*/ad*
1244 X:      drivers/iio/*/adjd*
1245
1246 ANALOGBITS PLL LIBRARIES
1247 M:      Paul Walmsley <paul.walmsley@sifive.com>
1248 S:      Supported
1249 F:      drivers/clk/analogbits/*
1250 F:      include/linux/clk/analogbits*
1251
1252 ANDROID CONFIG FRAGMENTS
1253 M:      Rob Herring <robh@kernel.org>
1254 S:      Supported
1255 F:      kernel/configs/android*
1256
1257 ANDROID DRIVERS
1258 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1259 M:      Arve Hjønnevåg <arve@android.com>
1260 M:      Todd Kjos <tkjos@android.com>
1261 M:      Martijn Coenen <maco@android.com>
1262 M:      Joel Fernandes <joel@joelfernandes.org>
1263 M:      Christian Brauner <christian@brauner.io>
1264 M:      Hridya Valsaraju <hridya@google.com>
1265 M:      Suren Baghdasaryan <surenb@google.com>
1266 L:      linux-kernel@vger.kernel.org
1267 S:      Supported
1268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1269 F:      drivers/android/
1270 F:      drivers/staging/android/
1271
1272 ANDROID GOLDFISH PIC DRIVER
1273 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1274 S:      Supported
1275 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1276 F:      drivers/irqchip/irq-goldfish-pic.c
1277
1278 ANDROID GOLDFISH RTC DRIVER
1279 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1280 S:      Supported
1281 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1282 F:      drivers/rtc/rtc-goldfish.c
1283
1284 AOA (Apple Onboard Audio) ALSA DRIVER
1285 M:      Johannes Berg <johannes@sipsolutions.net>
1286 L:      linuxppc-dev@lists.ozlabs.org
1287 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1288 S:      Maintained
1289 F:      sound/aoa/
1290
1291 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1292 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1293 L:      linux-iio@vger.kernel.org
1294 S:      Maintained
1295 F:      drivers/iio/adc/stx104.c
1296
1297 APM DRIVER
1298 M:      Jiri Kosina <jikos@kernel.org>
1299 S:      Odd fixes
1300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1301 F:      arch/x86/kernel/apm_32.c
1302 F:      drivers/char/apm-emulation.c
1303 F:      include/linux/apm_bios.h
1304 F:      include/uapi/linux/apm_bios.h
1305
1306 APPARMOR SECURITY MODULE
1307 M:      John Johansen <john.johansen@canonical.com>
1308 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1309 S:      Supported
1310 W:      wiki.apparmor.net
1311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1312 F:      Documentation/admin-guide/LSM/apparmor.rst
1313 F:      security/apparmor/
1314
1315 APPLE BCM5974 MULTITOUCH DRIVER
1316 M:      Henrik Rydberg <rydberg@bitmath.org>
1317 L:      linux-input@vger.kernel.org
1318 S:      Odd fixes
1319 F:      drivers/input/mouse/bcm5974.c
1320
1321 APPLE DART IOMMU DRIVER
1322 M:      Sven Peter <sven@svenpeter.dev>
1323 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1324 L:      iommu@lists.linux-foundation.org
1325 S:      Maintained
1326 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1327 F:      drivers/iommu/apple-dart.c
1328
1329 APPLE PCIE CONTROLLER DRIVER
1330 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1331 M:      Marc Zyngier <maz@kernel.org>
1332 L:      linux-pci@vger.kernel.org
1333 S:      Maintained
1334 F:      drivers/pci/controller/pcie-apple.c
1335
1336 APPLE SMC DRIVER
1337 M:      Henrik Rydberg <rydberg@bitmath.org>
1338 L:      linux-hwmon@vger.kernel.org
1339 S:      Odd fixes
1340 F:      drivers/hwmon/applesmc.c
1341
1342 APPLETALK NETWORK LAYER
1343 L:      netdev@vger.kernel.org
1344 S:      Odd fixes
1345 F:      drivers/net/appletalk/
1346 F:      include/linux/atalk.h
1347 F:      include/uapi/linux/atalk.h
1348 F:      net/appletalk/
1349
1350 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1351 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1352 S:      Supported
1353 F:      arch/arm64/boot/dts/apm/
1354
1355 APPLIED MICRO (APM) X-GENE SOC EDAC
1356 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1357 S:      Supported
1358 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1359 F:      drivers/edac/xgene_edac.c
1360
1361 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1362 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1363 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1364 S:      Supported
1365 F:      drivers/net/ethernet/apm/xgene-v2/
1366
1367 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1368 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1369 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1370 M:      Quan Nguyen <quan@os.amperecomputing.com>
1371 S:      Supported
1372 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1373 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1374 F:      drivers/net/ethernet/apm/xgene/
1375 F:      drivers/net/mdio/mdio-xgene.c
1376
1377 APPLIED MICRO (APM) X-GENE SOC PMU
1378 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1379 S:      Supported
1380 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1381 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1382 F:      drivers/perf/xgene_pmu.c
1383
1384 APTINA CAMERA SENSOR PLL
1385 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1386 L:      linux-media@vger.kernel.org
1387 S:      Maintained
1388 F:      drivers/media/i2c/aptina-pll.*
1389
1390 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1391 M:      Aleksa Savic <savicaleksa83@gmail.com>
1392 L:      linux-hwmon@vger.kernel.org
1393 S:      Maintained
1394 F:      Documentation/hwmon/aquacomputer_d5next.rst
1395 F:      drivers/hwmon/aquacomputer_d5next.c
1396
1397 AQUANTIA ETHERNET DRIVER (atlantic)
1398 M:      Igor Russkikh <irusskikh@marvell.com>
1399 L:      netdev@vger.kernel.org
1400 S:      Supported
1401 W:      https://www.marvell.com/
1402 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1403 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1404 F:      drivers/net/ethernet/aquantia/atlantic/
1405
1406 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1407 M:      Egor Pomozov <epomozov@marvell.com>
1408 L:      netdev@vger.kernel.org
1409 S:      Supported
1410 W:      http://www.aquantia.com
1411 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1412
1413 ARASAN NAND CONTROLLER DRIVER
1414 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1415 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1416 L:      linux-mtd@lists.infradead.org
1417 S:      Maintained
1418 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1419 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1420
1421 ARC FRAMEBUFFER DRIVER
1422 M:      Jaya Kumar <jayalk@intworks.biz>
1423 S:      Maintained
1424 F:      drivers/video/fbdev/arcfb.c
1425 F:      drivers/video/fbdev/core/fb_defio.c
1426
1427 ARC PGU DRM DRIVER
1428 M:      Alexey Brodkin <abrodkin@synopsys.com>
1429 S:      Supported
1430 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1431 F:      drivers/gpu/drm/tiny/arcpgu.c
1432
1433 ARCNET NETWORK LAYER
1434 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1435 L:      netdev@vger.kernel.org
1436 S:      Maintained
1437 F:      drivers/net/arcnet/
1438 F:      include/uapi/linux/if_arcnet.h
1439
1440 ARM ARCHITECTED TIMER DRIVER
1441 M:      Mark Rutland <mark.rutland@arm.com>
1442 M:      Marc Zyngier <maz@kernel.org>
1443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1444 S:      Maintained
1445 F:      arch/arm/include/asm/arch_timer.h
1446 F:      arch/arm64/include/asm/arch_timer.h
1447 F:      drivers/clocksource/arm_arch_timer.c
1448
1449 ARM HDLCD DRM DRIVER
1450 M:      Liviu Dudau <liviu.dudau@arm.com>
1451 S:      Supported
1452 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1453 F:      drivers/gpu/drm/arm/hdlcd_*
1454
1455 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1456 M:      Linus Walleij <linus.walleij@linaro.org>
1457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1458 S:      Maintained
1459 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1460 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1461 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1462 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1463 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1464 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1465 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1466 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1467 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1468 F:      arch/arm/boot/dts/arm-realview-*
1469 F:      arch/arm/boot/dts/integrator*
1470 F:      arch/arm/boot/dts/versatile*
1471 F:      arch/arm/mach-integrator/
1472 F:      arch/arm/mach-realview/
1473 F:      arch/arm/mach-versatile/
1474 F:      arch/arm/plat-versatile/
1475 F:      drivers/bus/arm-integrator-lm.c
1476 F:      drivers/clk/versatile/
1477 F:      drivers/i2c/busses/i2c-versatile.c
1478 F:      drivers/irqchip/irq-versatile-fpga.c
1479 F:      drivers/mtd/maps/physmap-versatile.*
1480 F:      drivers/power/reset/arm-versatile-reboot.c
1481 F:      drivers/soc/versatile/
1482
1483 ARM KOMEDA DRM-KMS DRIVER
1484 M:      James (Qian) Wang <james.qian.wang@arm.com>
1485 M:      Liviu Dudau <liviu.dudau@arm.com>
1486 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1487 L:      Mali DP Maintainers <malidp@foss.arm.com>
1488 S:      Supported
1489 T:      git git://anongit.freedesktop.org/drm/drm-misc
1490 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1491 F:      Documentation/gpu/komeda-kms.rst
1492 F:      drivers/gpu/drm/arm/display/include/
1493 F:      drivers/gpu/drm/arm/display/komeda/
1494
1495 ARM MALI PANFROST DRM DRIVER
1496 M:      Rob Herring <robh@kernel.org>
1497 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1498 R:      Steven Price <steven.price@arm.com>
1499 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1500 L:      dri-devel@lists.freedesktop.org
1501 S:      Supported
1502 T:      git git://anongit.freedesktop.org/drm/drm-misc
1503 F:      drivers/gpu/drm/panfrost/
1504 F:      include/uapi/drm/panfrost_drm.h
1505
1506 ARM MALI-DP DRM DRIVER
1507 M:      Liviu Dudau <liviu.dudau@arm.com>
1508 M:      Brian Starkey <brian.starkey@arm.com>
1509 L:      Mali DP Maintainers <malidp@foss.arm.com>
1510 S:      Supported
1511 T:      git git://anongit.freedesktop.org/drm/drm-misc
1512 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1513 F:      Documentation/gpu/afbc.rst
1514 F:      drivers/gpu/drm/arm/
1515
1516 ARM MFM AND FLOPPY DRIVERS
1517 M:      Ian Molton <spyro@f2s.com>
1518 S:      Maintained
1519 F:      arch/arm/include/asm/floppy.h
1520 F:      arch/arm/mach-rpc/floppydma.S
1521
1522 ARM PMU PROFILING AND DEBUGGING
1523 M:      Will Deacon <will@kernel.org>
1524 M:      Mark Rutland <mark.rutland@arm.com>
1525 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1526 S:      Maintained
1527 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1528 F:      Documentation/devicetree/bindings/perf/
1529 F:      arch/arm*/include/asm/hw_breakpoint.h
1530 F:      arch/arm*/include/asm/perf_event.h
1531 F:      arch/arm*/kernel/hw_breakpoint.c
1532 F:      arch/arm*/kernel/perf_*
1533 F:      drivers/perf/
1534 F:      include/linux/perf/arm_pmu.h
1535
1536 ARM PORT
1537 M:      Russell King <linux@armlinux.org.uk>
1538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539 S:      Odd Fixes
1540 W:      http://www.armlinux.org.uk/
1541 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1542 F:      arch/arm/
1543 X:      arch/arm/boot/dts/
1544
1545 ARM PRIMECELL AACI PL041 DRIVER
1546 M:      Russell King <linux@armlinux.org.uk>
1547 S:      Odd Fixes
1548 F:      sound/arm/aaci.*
1549
1550 ARM PRIMECELL BUS SUPPORT
1551 M:      Russell King <linux@armlinux.org.uk>
1552 S:      Odd Fixes
1553 F:      drivers/amba/
1554 F:      include/linux/amba/bus.h
1555
1556 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1557 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1558 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1559 L:      linux-mtd@lists.infradead.org
1560 S:      Maintained
1561 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1562 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1563
1564 ARM PRIMECELL PL35X SMC DRIVER
1565 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1566 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 S:      Maintained
1569 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1570 F:      drivers/memory/pl353-smc.c
1571
1572 ARM PRIMECELL CLCD PL110 DRIVER
1573 M:      Russell King <linux@armlinux.org.uk>
1574 S:      Odd Fixes
1575 F:      drivers/video/fbdev/amba-clcd.*
1576
1577 ARM PRIMECELL KMI PL050 DRIVER
1578 M:      Russell King <linux@armlinux.org.uk>
1579 S:      Odd Fixes
1580 F:      drivers/input/serio/ambakmi.*
1581 F:      include/linux/amba/kmi.h
1582
1583 ARM PRIMECELL MMCI PL180/1 DRIVER
1584 M:      Russell King <linux@armlinux.org.uk>
1585 S:      Odd Fixes
1586 F:      drivers/mmc/host/mmci.*
1587 F:      include/linux/amba/mmci.h
1588
1589 ARM PRIMECELL SSP PL022 SPI DRIVER
1590 M:      Linus Walleij <linus.walleij@linaro.org>
1591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1592 S:      Maintained
1593 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1594 F:      drivers/spi/spi-pl022.c
1595
1596 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1597 M:      Russell King <linux@armlinux.org.uk>
1598 S:      Odd Fixes
1599 F:      drivers/tty/serial/amba-pl01*.c
1600 F:      include/linux/amba/serial.h
1601
1602 ARM PRIMECELL VIC PL190/PL192 DRIVER
1603 M:      Linus Walleij <linus.walleij@linaro.org>
1604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1605 S:      Maintained
1606 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1607 F:      drivers/irqchip/irq-vic.c
1608
1609 ARM SMC WATCHDOG DRIVER
1610 M:      Julius Werner <jwerner@chromium.org>
1611 R:      Evan Benn <evanbenn@chromium.org>
1612 S:      Maintained
1613 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1614 F:      drivers/watchdog/arm_smc_wdt.c
1615
1616 ARM SMMU DRIVERS
1617 M:      Will Deacon <will@kernel.org>
1618 R:      Robin Murphy <robin.murphy@arm.com>
1619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1620 S:      Maintained
1621 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1622 F:      drivers/iommu/arm/
1623 F:      drivers/iommu/io-pgtable-arm*
1624
1625 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1626 M:      Arnd Bergmann <arnd@arndb.de>
1627 M:      Olof Johansson <olof@lixom.net>
1628 M:      soc@kernel.org
1629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1630 S:      Maintained
1631 C:      irc://irc.libera.chat/armlinux
1632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1633 F:      arch/arm/boot/dts/Makefile
1634 F:      arch/arm64/boot/dts/Makefile
1635
1636 ARM SUB-ARCHITECTURES
1637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1638 S:      Maintained
1639 C:      irc://irc.libera.chat/armlinux
1640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1641 F:      arch/arm/mach-*/
1642 F:      arch/arm/plat-*/
1643
1644 ARM/ACTIONS SEMI ARCHITECTURE
1645 M:      Andreas Färber <afaerber@suse.de>
1646 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1649 S:      Maintained
1650 F:      Documentation/devicetree/bindings/arm/actions.yaml
1651 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1652 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1653 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1654 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1655 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1656 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1657 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1658 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1659 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1660 F:      arch/arm/boot/dts/owl-*
1661 F:      arch/arm/mach-actions/
1662 F:      arch/arm64/boot/dts/actions/
1663 F:      drivers/clk/actions/
1664 F:      drivers/clocksource/timer-owl*
1665 F:      drivers/dma/owl-dma.c
1666 F:      drivers/i2c/busses/i2c-owl.c
1667 F:      drivers/irqchip/irq-owl-sirq.c
1668 F:      drivers/mmc/host/owl-mmc.c
1669 F:      drivers/net/ethernet/actions/
1670 F:      drivers/pinctrl/actions/*
1671 F:      drivers/soc/actions/
1672 F:      include/dt-bindings/power/owl-*
1673 F:      include/dt-bindings/reset/actions,*
1674 F:      include/linux/soc/actions/
1675 N:      owl
1676
1677 ARM/ADS SPHERE MACHINE SUPPORT
1678 M:      Lennert Buytenhek <kernel@wantstofly.org>
1679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1680 S:      Maintained
1681
1682 ARM/AFEB9260 MACHINE SUPPORT
1683 M:      Sergey Lapin <slapin@ossfans.org>
1684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1685 S:      Maintained
1686
1687 ARM/AJECO 1ARM MACHINE SUPPORT
1688 M:      Lennert Buytenhek <kernel@wantstofly.org>
1689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690 S:      Maintained
1691
1692 ARM/Allwinner SoC Clock Support
1693 M:      Emilio López <emilio@elopez.com.ar>
1694 S:      Maintained
1695 F:      drivers/clk/sunxi/
1696
1697 ARM/Allwinner sunXi SoC support
1698 M:      Chen-Yu Tsai <wens@csie.org>
1699 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1700 M:      Samuel Holland <samuel@sholland.org>
1701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1702 S:      Maintained
1703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1704 L:      linux-sunxi@lists.linux.dev
1705 F:      arch/arm/mach-sunxi/
1706 F:      arch/arm64/boot/dts/allwinner/
1707 F:      drivers/clk/sunxi-ng/
1708 F:      drivers/pinctrl/sunxi/
1709 F:      drivers/soc/sunxi/
1710 N:      allwinner
1711 N:      sun[x456789]i
1712 N:      sun50i
1713
1714 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1715 M:      Neil Armstrong <narmstrong@baylibre.com>
1716 M:      Jerome Brunet <jbrunet@baylibre.com>
1717 L:      linux-amlogic@lists.infradead.org
1718 S:      Maintained
1719 F:      Documentation/devicetree/bindings/clock/amlogic*
1720 F:      drivers/clk/meson/
1721 F:      include/dt-bindings/clock/gxbb*
1722 F:      include/dt-bindings/clock/meson*
1723
1724 ARM/Amlogic Meson SoC Crypto Drivers
1725 M:      Corentin Labbe <clabbe@baylibre.com>
1726 L:      linux-crypto@vger.kernel.org
1727 L:      linux-amlogic@lists.infradead.org
1728 S:      Maintained
1729 F:      Documentation/devicetree/bindings/crypto/amlogic*
1730 F:      drivers/crypto/amlogic/
1731
1732 ARM/Amlogic Meson SoC Sound Drivers
1733 M:      Jerome Brunet <jbrunet@baylibre.com>
1734 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1735 S:      Maintained
1736 F:      Documentation/devicetree/bindings/sound/amlogic*
1737 F:      sound/soc/meson/
1738
1739 ARM/Amlogic Meson SoC support
1740 M:      Neil Armstrong <narmstrong@baylibre.com>
1741 M:      Kevin Hilman <khilman@baylibre.com>
1742 R:      Jerome Brunet <jbrunet@baylibre.com>
1743 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1744 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1745 L:      linux-amlogic@lists.infradead.org
1746 S:      Maintained
1747 W:      http://linux-meson.com/
1748 F:      arch/arm/boot/dts/meson*
1749 F:      arch/arm/mach-meson/
1750 F:      arch/arm64/boot/dts/amlogic/
1751 F:      drivers/mmc/host/meson*
1752 F:      drivers/pinctrl/meson/
1753 F:      drivers/rtc/rtc-meson*
1754 F:      drivers/soc/amlogic/
1755 N:      meson
1756
1757 ARM/Annapurna Labs ALPINE ARCHITECTURE
1758 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1759 M:      Antoine Tenart <atenart@kernel.org>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 S:      Maintained
1762 F:      arch/arm/boot/dts/alpine*
1763 F:      arch/arm/mach-alpine/
1764 F:      arch/arm64/boot/dts/amazon/
1765 F:      drivers/*/*alpine*
1766
1767 ARM/APPLE MACHINE SUPPORT
1768 M:      Hector Martin <marcan@marcan.st>
1769 M:      Sven Peter <sven@svenpeter.dev>
1770 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 S:      Maintained
1773 W:      https://asahilinux.org
1774 B:      https://github.com/AsahiLinux/linux/issues
1775 C:      irc://irc.oftc.net/asahi-dev
1776 T:      git https://github.com/AsahiLinux/linux.git
1777 F:      Documentation/devicetree/bindings/arm/apple.yaml
1778 F:      Documentation/devicetree/bindings/arm/apple/*
1779 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1780 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1781 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1782 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1783 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1784 F:      Documentation/devicetree/bindings/power/apple*
1785 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1786 F:      arch/arm64/boot/dts/apple/
1787 F:      drivers/i2c/busses/i2c-pasemi-core.c
1788 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1789 F:      drivers/irqchip/irq-apple-aic.c
1790 F:      drivers/mailbox/apple-mailbox.c
1791 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1792 F:      drivers/soc/apple/*
1793 F:      drivers/watchdog/apple_wdt.c
1794 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1795 F:      include/dt-bindings/pinctrl/apple.h
1796 F:      include/linux/apple-mailbox.h
1797
1798 ARM/ARTPEC MACHINE SUPPORT
1799 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1800 M:      Lars Persson <lars.persson@axis.com>
1801 L:      linux-arm-kernel@axis.com
1802 S:      Maintained
1803 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1804 F:      arch/arm/boot/dts/artpec6*
1805 F:      arch/arm/mach-artpec
1806 F:      drivers/clk/axis
1807 F:      drivers/crypto/axis
1808 F:      drivers/mmc/host/usdhi6rol0.c
1809 F:      drivers/pinctrl/pinctrl-artpec*
1810
1811 ARM/ASPEED I2C DRIVER
1812 M:      Brendan Higgins <brendanhiggins@google.com>
1813 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1814 R:      Joel Stanley <joel@jms.id.au>
1815 L:      linux-i2c@vger.kernel.org
1816 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1817 S:      Maintained
1818 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1819 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1820 F:      drivers/i2c/busses/i2c-aspeed.c
1821 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1822
1823 ARM/ASPEED MACHINE SUPPORT
1824 M:      Joel Stanley <joel@jms.id.au>
1825 R:      Andrew Jeffery <andrew@aj.id.au>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1828 S:      Supported
1829 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1831 F:      arch/arm/boot/dts/aspeed-*
1832 F:      arch/arm/mach-aspeed/
1833 N:      aspeed
1834
1835 ARM/BITMAIN ARCHITECTURE
1836 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Maintained
1839 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1840 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1841 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1842 F:      arch/arm64/boot/dts/bitmain/
1843 F:      drivers/clk/clk-bm1880.c
1844 F:      drivers/pinctrl/pinctrl-bm1880.c
1845
1846 ARM/CALXEDA HIGHBANK ARCHITECTURE
1847 M:      Andre Przywara <andre.przywara@arm.com>
1848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1849 S:      Maintained
1850 F:      arch/arm/boot/dts/ecx-*.dts*
1851 F:      arch/arm/boot/dts/highbank.dts
1852 F:      arch/arm/mach-highbank/
1853
1854 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1855 M:      Krzysztof Halasa <khalasa@piap.pl>
1856 S:      Maintained
1857 F:      arch/arm/mach-cns3xxx/
1858
1859 ARM/CAVIUM THUNDER NETWORK DRIVER
1860 M:      Sunil Goutham <sgoutham@marvell.com>
1861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1862 S:      Supported
1863 F:      drivers/net/ethernet/cavium/thunder/
1864
1865 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1866 M:      Lukasz Majewski <lukma@denx.de>
1867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1868 S:      Maintained
1869 F:      arch/arm/mach-ep93xx/ts72xx.c
1870
1871 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1872 M:      Alexander Shiyan <shc_work@mail.ru>
1873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1874 S:      Odd Fixes
1875 N:      clps711x
1876
1877 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1878 M:      Lennert Buytenhek <kernel@wantstofly.org>
1879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S:      Maintained
1881
1882 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1883 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1884 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S:      Maintained
1887 F:      arch/arm/mach-ep93xx/
1888 F:      arch/arm/mach-ep93xx/include/mach/
1889
1890 ARM/CLKDEV SUPPORT
1891 M:      Russell King <linux@armlinux.org.uk>
1892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1893 S:      Maintained
1894 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1895 F:      drivers/clk/clkdev.c
1896
1897 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1898 M:      Baruch Siach <baruch@tkos.co.il>
1899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1900 S:      Maintained
1901 F:      arch/arm/boot/dts/cx92755*
1902 N:      digicolor
1903
1904 ARM/CONTEC MICRO9 MACHINE SUPPORT
1905 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1906 S:      Maintained
1907 F:      arch/arm/mach-ep93xx/micro9.c
1908
1909 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1910 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1911 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1912 R:      Mike Leach <mike.leach@linaro.org>
1913 R:      Leo Yan <leo.yan@linaro.org>
1914 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 S:      Maintained
1917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1918 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1919 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1920 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1921 F:      Documentation/devicetree/bindings/arm/coresight.txt
1922 F:      Documentation/devicetree/bindings/arm/ete.yaml
1923 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1924 F:      Documentation/trace/coresight/*
1925 F:      drivers/hwtracing/coresight/*
1926 F:      include/dt-bindings/arm/coresight-cti-dt.h
1927 F:      include/linux/coresight*
1928 F:      samples/coresight/*
1929 F:      tools/perf/arch/arm/util/auxtrace.c
1930 F:      tools/perf/arch/arm/util/cs-etm.c
1931 F:      tools/perf/arch/arm/util/cs-etm.h
1932 F:      tools/perf/arch/arm/util/pmu.c
1933 F:      tools/perf/util/cs-etm-decoder/*
1934 F:      tools/perf/util/cs-etm.*
1935
1936 ARM/CORGI MACHINE SUPPORT
1937 M:      Richard Purdie <rpurdie@rpsys.net>
1938 S:      Maintained
1939
1940 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1941 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1942 M:      Linus Walleij <linus.walleij@linaro.org>
1943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1944 S:      Maintained
1945 T:      git git://github.com/ulli-kroll/linux.git
1946 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1947 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1948 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1949 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1950 F:      arch/arm/boot/dts/gemini*
1951 F:      arch/arm/mach-gemini/
1952 F:      drivers/crypto/gemini/
1953 F:      drivers/net/ethernet/cortina/
1954 F:      drivers/pinctrl/pinctrl-gemini.c
1955 F:      drivers/rtc/rtc-ftrtc010.c
1956
1957 ARM/CZ.NIC TURRIS SUPPORT
1958 M:      Marek Behún <kabel@kernel.org>
1959 S:      Maintained
1960 W:      https://www.turris.cz/
1961 F:      Documentation/ABI/testing/debugfs-moxtet
1962 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1963 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1964 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1965 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1966 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1967 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1968 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1969 F:      drivers/bus/moxtet.c
1970 F:      drivers/firmware/turris-mox-rwtm.c
1971 F:      drivers/leds/leds-turris-omnia.c
1972 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1973 F:      drivers/gpio/gpio-moxtet.c
1974 F:      drivers/watchdog/armada_37xx_wdt.c
1975 F:      include/dt-bindings/bus/moxtet.h
1976 F:      include/linux/armada-37xx-rwtm-mailbox.h
1977 F:      include/linux/moxtet.h
1978
1979 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1980 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 S:      Maintained
1983 F:      arch/arm/mach-pxa/ezx.c
1984
1985 ARM/FARADAY FA526 PORT
1986 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 T:      git git://git.berlios.de/gemini-board
1990 F:      arch/arm/mm/*-fa*
1991
1992 ARM/FOOTBRIDGE ARCHITECTURE
1993 M:      Russell King <linux@armlinux.org.uk>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996 W:      http://www.armlinux.org.uk/
1997 F:      arch/arm/include/asm/hardware/dec21285.h
1998 F:      arch/arm/mach-footbridge/
1999
2000 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2001 M:      Shawn Guo <shawnguo@kernel.org>
2002 M:      Sascha Hauer <s.hauer@pengutronix.de>
2003 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2004 R:      Fabio Estevam <festevam@gmail.com>
2005 R:      NXP Linux Team <linux-imx@nxp.com>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Maintained
2008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2009 X:      drivers/media/i2c/
2010 N:      imx
2011 N:      mxs
2012
2013 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2014 M:      Shawn Guo <shawnguo@kernel.org>
2015 M:      Li Yang <leoyang.li@nxp.com>
2016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2017 S:      Maintained
2018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2019 F:      arch/arm/boot/dts/ls1021a*
2020 F:      arch/arm64/boot/dts/freescale/fsl-*
2021 F:      arch/arm64/boot/dts/freescale/qoriq-*
2022
2023 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2024 M:      Shawn Guo <shawnguo@kernel.org>
2025 M:      Sascha Hauer <s.hauer@pengutronix.de>
2026 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2027 R:      Stefan Agner <stefan@agner.ch>
2028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2029 S:      Maintained
2030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2031 F:      arch/arm/boot/dts/vf*
2032 F:      arch/arm/mach-imx/*vf610*
2033
2034 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2035 M:      Lennert Buytenhek <kernel@wantstofly.org>
2036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2037 S:      Maintained
2038
2039 ARM/GUMSTIX MACHINE SUPPORT
2040 M:      Steve Sakoman <sakoman@gmail.com>
2041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 S:      Maintained
2043
2044 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2045 M:      Philipp Zabel <philipp.zabel@gmail.com>
2046 M:      Paul Parsons <lost.distance@yahoo.com>
2047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2048 S:      Maintained
2049 F:      arch/arm/mach-pxa/hx4700.c
2050 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2051 F:      sound/soc/pxa/hx4700.c
2052
2053 ARM/HISILICON SOC SUPPORT
2054 M:      Wei Xu <xuwei5@hisilicon.com>
2055 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2056 S:      Supported
2057 W:      http://www.hisilicon.com
2058 T:      git git://github.com/hisilicon/linux-hisi.git
2059 F:      arch/arm/boot/dts/hi3*
2060 F:      arch/arm/boot/dts/hip*
2061 F:      arch/arm/boot/dts/hisi*
2062 F:      arch/arm/mach-hisi/
2063 F:      arch/arm64/boot/dts/hisilicon/
2064
2065 ARM/HP JORNADA 7XX MACHINE SUPPORT
2066 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2067 S:      Maintained
2068 W:      www.jlime.com
2069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2070 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2071 F:      arch/arm/mach-sa1100/jornada720.c
2072
2073 ARM/IGEP MACHINE SUPPORT
2074 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2075 M:      Javier Martinez Canillas <javier@dowhile0.org>
2076 L:      linux-omap@vger.kernel.org
2077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2078 S:      Maintained
2079 F:      arch/arm/boot/dts/omap3-igep*
2080
2081 ARM/INCOME PXA270 SUPPORT
2082 M:      Marek Vasut <marek.vasut@gmail.com>
2083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 S:      Maintained
2085 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2086
2087 ARM/INTEL IOP32X ARM ARCHITECTURE
2088 M:      Lennert Buytenhek <kernel@wantstofly.org>
2089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S:      Maintained
2091
2092 ARM/INTEL IQ81342EX MACHINE SUPPORT
2093 M:      Lennert Buytenhek <kernel@wantstofly.org>
2094 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2095 S:      Maintained
2096
2097 ARM/INTEL IXDP2850 MACHINE SUPPORT
2098 M:      Lennert Buytenhek <kernel@wantstofly.org>
2099 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2100 S:      Maintained
2101
2102 ARM/INTEL IXP4XX ARM ARCHITECTURE
2103 M:      Linus Walleij <linusw@kernel.org>
2104 M:      Imre Kaloz <kaloz@openwrt.org>
2105 M:      Krzysztof Halasa <khalasa@piap.pl>
2106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 S:      Maintained
2108 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2109 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2110 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2111 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2112 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2113 F:      arch/arm/mach-ixp4xx/
2114 F:      drivers/bus/intel-ixp4xx-eb.c
2115 F:      drivers/clocksource/timer-ixp4xx.c
2116 F:      drivers/crypto/ixp4xx_crypto.c
2117 F:      drivers/gpio/gpio-ixp4xx.c
2118 F:      drivers/irqchip/irq-ixp4xx.c
2119 F:      include/linux/irqchip/irq-ixp4xx.h
2120 F:      include/linux/platform_data/timer-ixp4xx.h
2121
2122 ARM/INTEL KEEMBAY ARCHITECTURE
2123 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2124 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2125 S:      Maintained
2126 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2127 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2128 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2129
2130 ARM/INTEL XSC3 (MANZANO) ARM CORE
2131 M:      Lennert Buytenhek <kernel@wantstofly.org>
2132 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2133 S:      Maintained
2134
2135 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2136 M:      Lennert Buytenhek <kernel@wantstofly.org>
2137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138 S:      Maintained
2139
2140 ARM/LG1K ARCHITECTURE
2141 M:      Chanho Min <chanho.min@lge.com>
2142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2143 S:      Maintained
2144 F:      arch/arm64/boot/dts/lg/
2145
2146 ARM/LOGICPD PXA270 MACHINE SUPPORT
2147 M:      Lennert Buytenhek <kernel@wantstofly.org>
2148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2149 S:      Maintained
2150
2151 ARM/LPC18XX ARCHITECTURE
2152 M:      Vladimir Zapolskiy <vz@mleia.com>
2153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2154 S:      Maintained
2155 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2156 F:      arch/arm/boot/dts/lpc43*
2157 F:      drivers/i2c/busses/i2c-lpc2k.c
2158 F:      drivers/memory/pl172.c
2159 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2160 F:      drivers/rtc/rtc-lpc24xx.c
2161 N:      lpc18xx
2162
2163 ARM/LPC32XX SOC SUPPORT
2164 M:      Vladimir Zapolskiy <vz@mleia.com>
2165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2166 S:      Maintained
2167 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2168 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2169 F:      arch/arm/boot/dts/lpc32*
2170 F:      arch/arm/mach-lpc32xx/
2171 F:      drivers/i2c/busses/i2c-pnx.c
2172 F:      drivers/net/ethernet/nxp/lpc_eth.c
2173 F:      drivers/usb/host/ohci-nxp.c
2174 F:      drivers/watchdog/pnx4008_wdt.c
2175 N:      lpc32xx
2176
2177 ARM/MAGICIAN MACHINE SUPPORT
2178 M:      Philipp Zabel <philipp.zabel@gmail.com>
2179 S:      Maintained
2180
2181 ARM/Marvell Dove/MV78xx0/Orion SOC support
2182 M:      Andrew Lunn <andrew@lunn.ch>
2183 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2184 M:      Gregory Clement <gregory.clement@bootlin.com>
2185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2186 S:      Maintained
2187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2188 F:      Documentation/devicetree/bindings/soc/dove/
2189 F:      arch/arm/boot/dts/dove*
2190 F:      arch/arm/boot/dts/orion5x*
2191 F:      arch/arm/mach-dove/
2192 F:      arch/arm/mach-mv78xx0/
2193 F:      arch/arm/mach-orion5x/
2194 F:      arch/arm/plat-orion/
2195 F:      drivers/soc/dove/
2196
2197 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2198 M:      Andrew Lunn <andrew@lunn.ch>
2199 M:      Gregory Clement <gregory.clement@bootlin.com>
2200 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2202 S:      Maintained
2203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2204 F:      arch/arm/boot/dts/armada*
2205 F:      arch/arm/boot/dts/kirkwood*
2206 F:      arch/arm/configs/mvebu_*_defconfig
2207 F:      arch/arm/mach-mvebu/
2208 F:      arch/arm64/boot/dts/marvell/armada*
2209 F:      arch/arm64/boot/dts/marvell/cn913*
2210 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2211 F:      drivers/cpufreq/armada-8k-cpufreq.c
2212 F:      drivers/cpufreq/mvebu-cpufreq.c
2213 F:      drivers/irqchip/irq-armada-370-xp.c
2214 F:      drivers/irqchip/irq-mvebu-*
2215 F:      drivers/pinctrl/mvebu/
2216 F:      drivers/rtc/rtc-armada38x.c
2217
2218 ARM/Mediatek RTC DRIVER
2219 M:      Eddie Huang <eddie.huang@mediatek.com>
2220 M:      Sean Wang <sean.wang@mediatek.com>
2221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2223 S:      Maintained
2224 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2225 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2226 F:      drivers/rtc/rtc-mt2712.c
2227 F:      drivers/rtc/rtc-mt6397.c
2228 F:      drivers/rtc/rtc-mt7622.c
2229
2230 ARM/Mediatek SoC support
2231 M:      Matthias Brugger <matthias.bgg@gmail.com>
2232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2233 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2234 S:      Maintained
2235 W:      https://mtk.wiki.kernel.org/
2236 C:      irc://chat.freenode.net/linux-mediatek
2237 F:      arch/arm/boot/dts/mt6*
2238 F:      arch/arm/boot/dts/mt7*
2239 F:      arch/arm/boot/dts/mt8*
2240 F:      arch/arm/mach-mediatek/
2241 F:      arch/arm64/boot/dts/mediatek/
2242 F:      drivers/soc/mediatek/
2243 N:      mtk
2244 N:      mt[678]
2245 K:      mediatek
2246
2247 ARM/Mediatek USB3 PHY DRIVER
2248 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2250 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2251 S:      Maintained
2252 F:      Documentation/devicetree/bindings/phy/mediatek,*
2253 F:      drivers/phy/mediatek/
2254
2255 ARM/Microchip (AT91) SoC support
2256 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2257 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2258 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2260 S:      Supported
2261 W:      http://www.linux4sam.org
2262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2263 F:      arch/arm/boot/dts/at91*.dts
2264 F:      arch/arm/boot/dts/at91*.dtsi
2265 F:      arch/arm/boot/dts/sama*.dts
2266 F:      arch/arm/boot/dts/sama*.dtsi
2267 F:      arch/arm/include/debug/at91.S
2268 F:      arch/arm/mach-at91/
2269 F:      drivers/memory/atmel*
2270 F:      drivers/watchdog/sama5d4_wdt.c
2271 F:      include/soc/at91/
2272 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2273 X:      drivers/net/wireless/atmel/
2274 N:      at91
2275 N:      atmel
2276
2277 ARM/Microchip Sparx5 SoC support
2278 M:      Lars Povlsen <lars.povlsen@microchip.com>
2279 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2280 M:      UNGLinuxDriver@microchip.com
2281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2282 S:      Supported
2283 T:      git git://github.com/microchip-ung/linux-upstream.git
2284 F:      arch/arm64/boot/dts/microchip/
2285 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2286 N:      sparx5
2287
2288 Microchip Timer Counter Block (TCB) Capture Driver
2289 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2291 L:      linux-iio@vger.kernel.org
2292 S:      Maintained
2293 F:      drivers/counter/microchip-tcb-capture.c
2294
2295 ARM/MILBEAUT ARCHITECTURE
2296 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2297 M:      Takao Orito <orito.takao@socionext.com>
2298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2299 S:      Maintained
2300 F:      arch/arm/boot/dts/milbeaut*
2301 F:      arch/arm/mach-milbeaut/
2302 N:      milbeaut
2303
2304 ARM/MIOA701 MACHINE SUPPORT
2305 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2306 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2307 S:      Maintained
2308 F:      arch/arm/mach-pxa/mioa701.c
2309
2310 ARM/MStar/Sigmastar Armv7 SoC support
2311 M:      Daniel Palmer <daniel@thingy.jp>
2312 M:      Romain Perier <romain.perier@gmail.com>
2313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2314 S:      Maintained
2315 W:      http://linux-chenxing.org/
2316 T:      git git://github.com/linux-chenxing/linux.git
2317 F:      Documentation/devicetree/bindings/arm/mstar/*
2318 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2319 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2320 F:      arch/arm/boot/dts/mstar-*
2321 F:      arch/arm/mach-mstar/
2322 F:      drivers/clk/mstar/
2323 F:      drivers/clocksource/timer-msc313e.c
2324 F:      drivers/gpio/gpio-msc313.c
2325 F:      drivers/rtc/rtc-msc313.c
2326 F:      drivers/watchdog/msc313e_wdt.c
2327 F:      include/dt-bindings/clock/mstar-*
2328 F:      include/dt-bindings/gpio/msc313-gpio.h
2329
2330 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2331 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2332 S:      Maintained
2333
2334 ARM/NOMADIK/Ux500 ARCHITECTURES
2335 M:      Linus Walleij <linus.walleij@linaro.org>
2336 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2337 S:      Maintained
2338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2339 F:      Documentation/devicetree/bindings/arm/ste-*
2340 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2341 F:      Documentation/devicetree/bindings/arm/ux500/
2342 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2343 F:      arch/arm/boot/dts/ste-*
2344 F:      arch/arm/mach-nomadik/
2345 F:      arch/arm/mach-ux500/
2346 F:      drivers/clk/clk-nomadik.c
2347 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2348 F:      drivers/dma/ste_dma40*
2349 F:      drivers/hwspinlock/u8500_hsem.c
2350 F:      drivers/i2c/busses/i2c-nomadik.c
2351 F:      drivers/iio/adc/ab8500-gpadc.c
2352 F:      drivers/mfd/ab8500*
2353 F:      drivers/mfd/abx500*
2354 F:      drivers/mfd/db8500*
2355 F:      drivers/pinctrl/nomadik/
2356 F:      drivers/rtc/rtc-ab8500.c
2357 F:      drivers/rtc/rtc-pl031.c
2358 F:      drivers/soc/ux500/
2359
2360 ARM/NUVOTON NPCM ARCHITECTURE
2361 M:      Avi Fishman <avifishman70@gmail.com>
2362 M:      Tomer Maimon <tmaimon77@gmail.com>
2363 M:      Tali Perry <tali.perry1@gmail.com>
2364 R:      Patrick Venture <venture@google.com>
2365 R:      Nancy Yuen <yuenn@google.com>
2366 R:      Benjamin Fair <benjaminfair@google.com>
2367 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2368 S:      Supported
2369 F:      Documentation/devicetree/bindings/*/*/*npcm*
2370 F:      Documentation/devicetree/bindings/*/*npcm*
2371 F:      Documentation/devicetree/bindings/arm/npcm/*
2372 F:      arch/arm/boot/dts/nuvoton-npcm*
2373 F:      arch/arm/mach-npcm/
2374 F:      drivers/*/*npcm*
2375 F:      drivers/*/*/*npcm*
2376 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2377
2378 ARM/NUVOTON WPCM450 ARCHITECTURE
2379 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2380 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2381 S:      Maintained
2382 W:      https://github.com/neuschaefer/wpcm450/wiki
2383 F:      Documentation/devicetree/bindings/*/*wpcm*
2384 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2385 F:      arch/arm/mach-npcm/wpcm450.c
2386 F:      drivers/*/*wpcm*
2387
2388 ARM/NXP S32G ARCHITECTURE
2389 M:      Chester Lin <clin@suse.com>
2390 R:      Andreas Färber <afaerber@suse.de>
2391 R:      Matthias Brugger <mbrugger@suse.com>
2392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2393 S:      Maintained
2394 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2395
2396 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2397 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2398 S:      Orphan
2399 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2400 F:      arch/arm/mach-s3c/gta02.h
2401 F:      arch/arm/mach-s3c/mach-gta02.c
2402
2403 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2404 M:      Alexander Clouter <alex@digriz.org.uk>
2405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2406 S:      Maintained
2407 W:      http://www.digriz.org.uk/ts78xx/kernel
2408 F:      arch/arm/mach-orion5x/ts78xx-*
2409
2410 ARM/OXNAS platform support
2411 M:      Neil Armstrong <narmstrong@baylibre.com>
2412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2413 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2414 S:      Maintained
2415 F:      arch/arm/boot/dts/ox8*.dts*
2416 F:      arch/arm/mach-oxnas/
2417 F:      drivers/power/reset/oxnas-restart.c
2418 N:      oxnas
2419
2420 ARM/PALM TREO SUPPORT
2421 M:      Tomas Cech <sleep_walker@suse.com>
2422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2423 S:      Maintained
2424 W:      http://hackndev.com
2425 F:      arch/arm/mach-pxa/palmtreo.*
2426
2427 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2428 M:      Marek Vasut <marek.vasut@gmail.com>
2429 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2430 S:      Maintained
2431 W:      http://hackndev.com
2432 F:      arch/arm/mach-pxa/include/mach/palmld.h
2433 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2434 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2435 F:      arch/arm/mach-pxa/palmld.c
2436 F:      arch/arm/mach-pxa/palmt5.*
2437 F:      arch/arm/mach-pxa/palmtc.c
2438 F:      arch/arm/mach-pxa/palmte2.*
2439 F:      arch/arm/mach-pxa/palmtx.c
2440
2441 ARM/PALMZ72 SUPPORT
2442 M:      Sergey Lapin <slapin@ossfans.org>
2443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2444 S:      Maintained
2445 W:      http://hackndev.com
2446 F:      arch/arm/mach-pxa/palmz72.*
2447
2448 ARM/PLEB SUPPORT
2449 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2450 S:      Maintained
2451 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2452
2453 ARM/PT DIGITAL BOARD PORT
2454 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2456 S:      Maintained
2457 W:      http://www.armlinux.org.uk/
2458
2459 ARM/QUALCOMM SUPPORT
2460 M:      Andy Gross <agross@kernel.org>
2461 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2462 L:      linux-arm-msm@vger.kernel.org
2463 S:      Maintained
2464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2465 F:      Documentation/devicetree/bindings/*/qcom*
2466 F:      Documentation/devicetree/bindings/soc/qcom/
2467 F:      arch/arm/boot/dts/qcom-*.dts
2468 F:      arch/arm/boot/dts/qcom-*.dtsi
2469 F:      arch/arm/mach-qcom/
2470 F:      arch/arm64/boot/dts/qcom/
2471 F:      drivers/*/*/qcom*
2472 F:      drivers/*/*/qcom/
2473 F:      drivers/*/pm8???-*
2474 F:      drivers/*/qcom*
2475 F:      drivers/*/qcom/
2476 F:      drivers/bluetooth/btqcomsmd.c
2477 F:      drivers/clocksource/timer-qcom.c
2478 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2479 F:      drivers/extcon/extcon-qcom*
2480 F:      drivers/i2c/busses/i2c-qcom-geni.c
2481 F:      drivers/i2c/busses/i2c-qup.c
2482 F:      drivers/iommu/msm*
2483 F:      drivers/mfd/ssbi.c
2484 F:      drivers/mmc/host/mmci_qcom*
2485 F:      drivers/mmc/host/sdhci-msm.c
2486 F:      drivers/pci/controller/dwc/pcie-qcom.c
2487 F:      drivers/phy/qualcomm/
2488 F:      drivers/power/*/msm*
2489 F:      drivers/reset/reset-qcom-*
2490 F:      drivers/scsi/ufs/ufs-qcom*
2491 F:      drivers/spi/spi-geni-qcom.c
2492 F:      drivers/spi/spi-qcom-qspi.c
2493 F:      drivers/spi/spi-qup.c
2494 F:      drivers/tty/serial/msm_serial.c
2495 F:      drivers/usb/dwc3/dwc3-qcom.c
2496 F:      include/dt-bindings/*/qcom*
2497 F:      include/linux/*/qcom*
2498 F:      include/linux/soc/qcom/
2499
2500 ARM/RADISYS ENP2611 MACHINE SUPPORT
2501 M:      Lennert Buytenhek <kernel@wantstofly.org>
2502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2503 S:      Maintained
2504
2505 ARM/RDA MICRO ARCHITECTURE
2506 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2508 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2509 S:      Maintained
2510 F:      Documentation/devicetree/bindings/arm/rda.yaml
2511 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2512 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2513 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2514 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2515 F:      arch/arm/boot/dts/rda8810pl-*
2516 F:      drivers/clocksource/timer-rda.c
2517 F:      drivers/gpio/gpio-rda.c
2518 F:      drivers/irqchip/irq-rda-intc.c
2519 F:      drivers/tty/serial/rda-uart.c
2520
2521 ARM/REALTEK ARCHITECTURE
2522 M:      Andreas Färber <afaerber@suse.de>
2523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2524 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2525 S:      Maintained
2526 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2527 F:      arch/arm/boot/dts/rtd*
2528 F:      arch/arm/mach-realtek/
2529 F:      arch/arm64/boot/dts/realtek/
2530
2531 ARM/RENESAS ARM64 ARCHITECTURE
2532 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2533 M:      Magnus Damm <magnus.damm@gmail.com>
2534 L:      linux-renesas-soc@vger.kernel.org
2535 S:      Supported
2536 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2537 C:      irc://irc.libera.chat/renesas-soc
2538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2539 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2540 F:      arch/arm64/boot/dts/renesas/
2541 F:      drivers/soc/renesas/
2542 F:      include/linux/soc/renesas/
2543
2544 ARM/RISCPC ARCHITECTURE
2545 M:      Russell King <linux@armlinux.org.uk>
2546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 S:      Maintained
2548 W:      http://www.armlinux.org.uk/
2549 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2550 F:      arch/arm/include/asm/hardware/ioc.h
2551 F:      arch/arm/include/asm/hardware/iomd.h
2552 F:      arch/arm/include/asm/hardware/memc.h
2553 F:      arch/arm/mach-rpc/
2554 F:      drivers/net/ethernet/8390/etherh.c
2555 F:      drivers/net/ethernet/i825xx/ether1*
2556 F:      drivers/net/ethernet/seeq/ether3*
2557 F:      drivers/scsi/arm/
2558
2559 ARM/Rockchip SoC support
2560 M:      Heiko Stuebner <heiko@sntech.de>
2561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2562 L:      linux-rockchip@lists.infradead.org
2563 S:      Maintained
2564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2565 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2566 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2567 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2568 F:      arch/arm/boot/dts/rk3*
2569 F:      arch/arm/boot/dts/rv1108*
2570 F:      arch/arm/mach-rockchip/
2571 F:      drivers/*/*/*rockchip*
2572 F:      drivers/*/*rockchip*
2573 F:      drivers/clk/rockchip/
2574 F:      drivers/i2c/busses/i2c-rk3x.c
2575 F:      sound/soc/rockchip/
2576 N:      rockchip
2577
2578 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2579 M:      Krzysztof Kozlowski <krzk@kernel.org>
2580 R:      Alim Akhtar <alim.akhtar@samsung.com>
2581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2582 L:      linux-samsung-soc@vger.kernel.org
2583 S:      Maintained
2584 C:      irc://irc.libera.chat/linux-exynos
2585 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2587 F:      Documentation/arm/samsung/
2588 F:      Documentation/devicetree/bindings/arm/samsung/
2589 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2590 F:      Documentation/devicetree/bindings/soc/samsung/
2591 F:      arch/arm/boot/dts/exynos*
2592 F:      arch/arm/boot/dts/s3c*
2593 F:      arch/arm/boot/dts/s5p*
2594 F:      arch/arm/mach-exynos*/
2595 F:      arch/arm/mach-s3c/
2596 F:      arch/arm/mach-s5p*/
2597 F:      arch/arm64/boot/dts/exynos/
2598 F:      drivers/*/*/*s3c24*
2599 F:      drivers/*/*s3c24*
2600 F:      drivers/*/*s3c64xx*
2601 F:      drivers/*/*s5pv210*
2602 F:      drivers/clocksource/samsung_pwm_timer.c
2603 F:      drivers/memory/samsung/
2604 F:      drivers/pwm/pwm-samsung.c
2605 F:      drivers/soc/samsung/
2606 F:      drivers/tty/serial/samsung*
2607 F:      include/clocksource/samsung_pwm.h
2608 F:      include/linux/platform_data/*s3c*
2609 F:      include/linux/serial_s3c.h
2610 F:      include/linux/soc/samsung/
2611 N:      exynos
2612 N:      s3c2410
2613 N:      s3c64xx
2614 N:      s5pv210
2615
2616 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2617 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2619 L:      linux-media@vger.kernel.org
2620 S:      Maintained
2621 F:      drivers/media/platform/samsung/s5p-g2d/
2622
2623 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2624 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2625 L:      linux-samsung-soc@vger.kernel.org
2626 L:      linux-media@vger.kernel.org
2627 S:      Maintained
2628 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2629 F:      drivers/media/cec/platform/s5p/
2630
2631 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2632 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2633 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2634 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2636 L:      linux-media@vger.kernel.org
2637 S:      Maintained
2638 F:      drivers/media/platform/samsung/s5p-jpeg/
2639
2640 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2641 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2642 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2643 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2644 L:      linux-media@vger.kernel.org
2645 S:      Maintained
2646 F:      drivers/media/platform/samsung/s5p-mfc/
2647
2648 ARM/SHMOBILE ARM ARCHITECTURE
2649 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2650 M:      Magnus Damm <magnus.damm@gmail.com>
2651 L:      linux-renesas-soc@vger.kernel.org
2652 S:      Supported
2653 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2654 C:      irc://irc.libera.chat/renesas-soc
2655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2656 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2657 F:      arch/arm/boot/dts/emev2*
2658 F:      arch/arm/boot/dts/gr-peach*
2659 F:      arch/arm/boot/dts/iwg20d-q7*
2660 F:      arch/arm/boot/dts/r7s*
2661 F:      arch/arm/boot/dts/r8a*
2662 F:      arch/arm/boot/dts/r9a*
2663 F:      arch/arm/boot/dts/sh*
2664 F:      arch/arm/configs/shmobile_defconfig
2665 F:      arch/arm/include/debug/renesas-scif.S
2666 F:      arch/arm/mach-shmobile/
2667 F:      drivers/soc/renesas/
2668 F:      include/linux/soc/renesas/
2669
2670 ARM/SOCFPGA ARCHITECTURE
2671 M:      Dinh Nguyen <dinguyen@kernel.org>
2672 S:      Maintained
2673 W:      http://www.rocketboards.org
2674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2675 F:      arch/arm/boot/dts/socfpga*
2676 F:      arch/arm/configs/socfpga_defconfig
2677 F:      arch/arm/mach-socfpga/
2678 F:      arch/arm64/boot/dts/altera/
2679 F:      arch/arm64/boot/dts/intel/
2680
2681 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2682 M:      Dinh Nguyen <dinguyen@kernel.org>
2683 S:      Maintained
2684 F:      drivers/clk/socfpga/
2685
2686 ARM/SOCFPGA EDAC SUPPORT
2687 M:      Dinh Nguyen <dinguyen@kernel.org>
2688 S:      Maintained
2689 F:      drivers/edac/altera_edac.[ch]
2690
2691 ARM/SPREADTRUM SoC SUPPORT
2692 M:      Orson Zhai <orsonzhai@gmail.com>
2693 M:      Baolin Wang <baolin.wang7@gmail.com>
2694 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2695 S:      Maintained
2696 F:      arch/arm64/boot/dts/sprd
2697 N:      sprd
2698 N:      sc27xx
2699 N:      sc2731
2700
2701 ARM/STI ARCHITECTURE
2702 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2704 S:      Maintained
2705 W:      http://www.stlinux.com
2706 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2707 F:      arch/arm/boot/dts/sti*
2708 F:      arch/arm/mach-sti/
2709 F:      drivers/ata/ahci_st.c
2710 F:      drivers/char/hw_random/st-rng.c
2711 F:      drivers/clocksource/arm_global_timer.c
2712 F:      drivers/clocksource/clksrc_st_lpc.c
2713 F:      drivers/cpufreq/sti-cpufreq.c
2714 F:      drivers/dma/st_fdma*
2715 F:      drivers/i2c/busses/i2c-st.c
2716 F:      drivers/media/platform/st/sti/c8sectpfe/
2717 F:      drivers/media/rc/st_rc.c
2718 F:      drivers/mmc/host/sdhci-st.c
2719 F:      drivers/phy/st/phy-miphy28lp.c
2720 F:      drivers/phy/st/phy-stih407-usb.c
2721 F:      drivers/pinctrl/pinctrl-st.c
2722 F:      drivers/remoteproc/st_remoteproc.c
2723 F:      drivers/remoteproc/st_slim_rproc.c
2724 F:      drivers/reset/sti/
2725 F:      drivers/rtc/rtc-st-lpc.c
2726 F:      drivers/tty/serial/st-asc.c
2727 F:      drivers/usb/dwc3/dwc3-st.c
2728 F:      drivers/usb/host/ehci-st.c
2729 F:      drivers/usb/host/ohci-st.c
2730 F:      drivers/watchdog/st_lpc_wdt.c
2731 F:      include/linux/remoteproc/st_slim_rproc.h
2732
2733 ARM/STM32 ARCHITECTURE
2734 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2735 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2736 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2738 S:      Maintained
2739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2740 F:      arch/arm/boot/dts/stm32*
2741 F:      arch/arm/mach-stm32/
2742 F:      drivers/clocksource/armv7m_systick.c
2743 N:      stm32
2744 N:      stm
2745
2746 ARM/Synaptics SoC support
2747 M:      Jisheng Zhang <jszhang@kernel.org>
2748 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2750 S:      Maintained
2751 F:      arch/arm/boot/dts/berlin*
2752 F:      arch/arm/mach-berlin/
2753 F:      arch/arm64/boot/dts/synaptics/
2754
2755 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2756 M:      Lennert Buytenhek <kernel@wantstofly.org>
2757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2758 S:      Maintained
2759
2760 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2761 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2762 L:      linux-tegra@vger.kernel.org
2763 L:      linux-media@vger.kernel.org
2764 S:      Maintained
2765 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2766 F:      drivers/media/cec/platform/tegra/
2767
2768 ARM/TESLA FSD SoC SUPPORT
2769 M:      Alim Akhtar <alim.akhtar@samsung.com>
2770 M:      linux-fsd@tesla.com
2771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2772 L:      linux-samsung-soc@vger.kernel.org
2773 S:      Maintained
2774 F:      arch/arm64/boot/dts/tesla*
2775
2776 ARM/TETON BGA MACHINE SUPPORT
2777 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2779 S:      Maintained
2780
2781 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2782 M:      Santosh Shilimkar <ssantosh@kernel.org>
2783 L:      linux-kernel@vger.kernel.org
2784 S:      Maintained
2785 F:      drivers/memory/*emif*
2786
2787 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2788 M:      Nishanth Menon <nm@ti.com>
2789 M:      Santosh Shilimkar <ssantosh@kernel.org>
2790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2791 S:      Maintained
2792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2793 F:      arch/arm/boot/dts/keystone-*
2794 F:      arch/arm/mach-keystone/
2795
2796 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2797 M:      Santosh Shilimkar <ssantosh@kernel.org>
2798 L:      linux-kernel@vger.kernel.org
2799 S:      Maintained
2800 F:      drivers/clk/keystone/
2801
2802 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2803 M:      Santosh Shilimkar <ssantosh@kernel.org>
2804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2805 L:      linux-kernel@vger.kernel.org
2806 S:      Maintained
2807 F:      drivers/clocksource/timer-keystone.c
2808
2809 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2810 M:      Santosh Shilimkar <ssantosh@kernel.org>
2811 L:      linux-kernel@vger.kernel.org
2812 S:      Maintained
2813 F:      drivers/power/reset/keystone-reset.c
2814
2815 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2816 M:      Nishanth Menon <nm@ti.com>
2817 M:      Vignesh Raghavendra <vigneshr@ti.com>
2818 M:      Tero Kristo <kristo@kernel.org>
2819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2820 S:      Supported
2821 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2822 F:      arch/arm64/boot/dts/ti/Makefile
2823 F:      arch/arm64/boot/dts/ti/k3-*
2824 F:      include/dt-bindings/pinctrl/k3.h
2825
2826 ARM/THECUS N2100 MACHINE SUPPORT
2827 M:      Lennert Buytenhek <kernel@wantstofly.org>
2828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2829 S:      Maintained
2830
2831 ARM/TOSA MACHINE SUPPORT
2832 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2833 M:      Dirk Opfer <dirk@opfer-online.de>
2834 S:      Maintained
2835
2836 ARM/TOSHIBA VISCONTI ARCHITECTURE
2837 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2839 S:      Supported
2840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2841 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2842 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2843 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2844 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2845 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2846 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2847 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2848 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2849 F:      arch/arm64/boot/dts/toshiba/
2850 F:      drivers/clk/visconti/
2851 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2852 F:      drivers/gpio/gpio-visconti.c
2853 F:      drivers/pci/controller/dwc/pcie-visconti.c
2854 F:      drivers/pinctrl/visconti/
2855 F:      drivers/watchdog/visconti_wdt.c
2856 N:      visconti
2857
2858 ARM/UNIPHIER ARCHITECTURE
2859 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2860 M:      Masami Hiramatsu <mhiramat@kernel.org>
2861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2862 S:      Maintained
2863 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2864 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2865 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2866 F:      arch/arm/boot/dts/uniphier*
2867 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2868 F:      arch/arm/mach-uniphier/
2869 F:      arch/arm/mm/cache-uniphier.c
2870 F:      arch/arm64/boot/dts/socionext/uniphier*
2871 F:      drivers/bus/uniphier-system-bus.c
2872 F:      drivers/clk/uniphier/
2873 F:      drivers/dma/uniphier-mdmac.c
2874 F:      drivers/gpio/gpio-uniphier.c
2875 F:      drivers/i2c/busses/i2c-uniphier*
2876 F:      drivers/irqchip/irq-uniphier-aidet.c
2877 F:      drivers/mmc/host/uniphier-sd.c
2878 F:      drivers/pinctrl/uniphier/
2879 F:      drivers/reset/reset-uniphier.c
2880 F:      drivers/tty/serial/8250/8250_uniphier.c
2881 N:      uniphier
2882
2883 ARM/VERSATILE EXPRESS PLATFORM
2884 M:      Liviu Dudau <liviu.dudau@arm.com>
2885 M:      Sudeep Holla <sudeep.holla@arm.com>
2886 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2888 S:      Maintained
2889 F:      */*/*/vexpress*
2890 F:      */*/vexpress*
2891 F:      arch/arm/boot/dts/vexpress*
2892 F:      arch/arm/mach-vexpress/
2893 F:      arch/arm64/boot/dts/arm/
2894 F:      drivers/clk/versatile/clk-vexpress-osc.c
2895 F:      drivers/clocksource/timer-versatile.c
2896 N:      mps2
2897
2898 ARM/VFP SUPPORT
2899 M:      Russell King <linux@armlinux.org.uk>
2900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2901 S:      Maintained
2902 W:      http://www.armlinux.org.uk/
2903 F:      arch/arm/vfp/
2904
2905 ARM/VOIPAC PXA270 SUPPORT
2906 M:      Marek Vasut <marek.vasut@gmail.com>
2907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2908 S:      Maintained
2909 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2910 F:      arch/arm/mach-pxa/vpac270.c
2911
2912 ARM/VT8500 ARM ARCHITECTURE
2913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2914 S:      Orphan
2915 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2916 F:      arch/arm/mach-vt8500/
2917 F:      drivers/clocksource/timer-vt8500.c
2918 F:      drivers/i2c/busses/i2c-wmt.c
2919 F:      drivers/mmc/host/wmt-sdmmc.c
2920 F:      drivers/pwm/pwm-vt8500.c
2921 F:      drivers/rtc/rtc-vt8500.c
2922 F:      drivers/tty/serial/vt8500_serial.c
2923 F:      drivers/usb/host/ehci-platform.c
2924 F:      drivers/usb/host/uhci-platform.c
2925 F:      drivers/video/fbdev/vt8500lcdfb.*
2926 F:      drivers/video/fbdev/wm8505fb*
2927 F:      drivers/video/fbdev/wmt_ge_rops.*
2928
2929 ARM/ZIPIT Z2 SUPPORT
2930 M:      Marek Vasut <marek.vasut@gmail.com>
2931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2932 S:      Maintained
2933 F:      arch/arm/mach-pxa/include/mach/z2.h
2934 F:      arch/arm/mach-pxa/z2.c
2935
2936 ARM/ZYNQ ARCHITECTURE
2937 M:      Michal Simek <michal.simek@xilinx.com>
2938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2939 S:      Supported
2940 W:      http://wiki.xilinx.com
2941 T:      git https://github.com/Xilinx/linux-xlnx.git
2942 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2943 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2944 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2945 F:      arch/arm/mach-zynq/
2946 F:      drivers/clocksource/timer-cadence-ttc.c
2947 F:      drivers/cpuidle/cpuidle-zynq.c
2948 F:      drivers/edac/synopsys_edac.c
2949 F:      drivers/i2c/busses/i2c-cadence.c
2950 F:      drivers/i2c/busses/i2c-xiic.c
2951 F:      drivers/mmc/host/sdhci-of-arasan.c
2952 N:      zynq
2953 N:      xilinx
2954
2955 ARM64 PORT (AARCH64 ARCHITECTURE)
2956 M:      Catalin Marinas <catalin.marinas@arm.com>
2957 M:      Will Deacon <will@kernel.org>
2958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2959 S:      Maintained
2960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2961 F:      Documentation/arm64/
2962 F:      arch/arm64/
2963 F:      tools/testing/selftests/arm64/
2964 X:      arch/arm64/boot/dts/
2965
2966 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2967 M:      George McCollister <george.mccollister@gmail.com>
2968 L:      netdev@vger.kernel.org
2969 S:      Maintained
2970 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2971 F:      drivers/net/dsa/xrs700x/*
2972 F:      net/dsa/tag_xrs700x.c
2973
2974 AS3645A LED FLASH CONTROLLER DRIVER
2975 M:      Sakari Ailus <sakari.ailus@iki.fi>
2976 L:      linux-leds@vger.kernel.org
2977 S:      Maintained
2978 F:      drivers/leds/flash/leds-as3645a.c
2979
2980 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2981 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2982 L:      linux-media@vger.kernel.org
2983 S:      Maintained
2984 T:      git git://linuxtv.org/media_tree.git
2985 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2986 F:      drivers/media/i2c/ak7375.c
2987
2988 ASAHI KASEI AK8974 DRIVER
2989 M:      Linus Walleij <linus.walleij@linaro.org>
2990 L:      linux-iio@vger.kernel.org
2991 S:      Supported
2992 W:      http://www.akm.com/
2993 F:      drivers/iio/magnetometer/ak8974.c
2994
2995 ASC7621 HARDWARE MONITOR DRIVER
2996 M:      George Joseph <george.joseph@fairview5.com>
2997 L:      linux-hwmon@vger.kernel.org
2998 S:      Maintained
2999 F:      Documentation/hwmon/asc7621.rst
3000 F:      drivers/hwmon/asc7621.c
3001
3002 ASIX AX88796C SPI ETHERNET ADAPTER
3003 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3004 S:      Maintained
3005 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3006 F:      drivers/net/ethernet/asix/ax88796c_*
3007
3008 ASPEED PINCTRL DRIVERS
3009 M:      Andrew Jeffery <andrew@aj.id.au>
3010 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3011 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3012 L:      linux-gpio@vger.kernel.org
3013 S:      Maintained
3014 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3015 F:      drivers/pinctrl/aspeed/
3016
3017 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3018 M:      Eddie James <eajames@linux.ibm.com>
3019 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3020 S:      Maintained
3021 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3022 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3023 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3024
3025 ASPEED SD/MMC DRIVER
3026 M:      Andrew Jeffery <andrew@aj.id.au>
3027 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3028 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3029 L:      linux-mmc@vger.kernel.org
3030 S:      Maintained
3031 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3032 F:      drivers/mmc/host/sdhci-of-aspeed*
3033
3034 ASPEED VIDEO ENGINE DRIVER
3035 M:      Eddie James <eajames@linux.ibm.com>
3036 L:      linux-media@vger.kernel.org
3037 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3038 S:      Maintained
3039 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3040 F:      drivers/media/platform/aspeed/
3041
3042 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3043 M:      Corentin Chary <corentin.chary@gmail.com>
3044 L:      acpi4asus-user@lists.sourceforge.net
3045 L:      platform-driver-x86@vger.kernel.org
3046 S:      Maintained
3047 W:      http://acpi4asus.sf.net
3048 F:      drivers/platform/x86/asus*.c
3049 F:      drivers/platform/x86/eeepc*.c
3050
3051 ASUS TF103C DOCK DRIVER
3052 M:      Hans de Goede <hdegoede@redhat.com>
3053 L:      platform-driver-x86@vger.kernel.org
3054 S:      Maintained
3055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3056 F:      drivers/platform/x86/asus-tf103c-dock.c
3057
3058 ASUS WMI HARDWARE MONITOR DRIVER
3059 M:      Ed Brindley <kernel@maidavale.org>
3060 M:      Denis Pauk <pauk.denis@gmail.com>
3061 L:      linux-hwmon@vger.kernel.org
3062 S:      Maintained
3063 F:      drivers/hwmon/asus_wmi_sensors.c
3064
3065 ASUS WMI EC HARDWARE MONITOR DRIVER
3066 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3067 M:      Denis Pauk <pauk.denis@gmail.com>
3068 L:      linux-hwmon@vger.kernel.org
3069 S:      Maintained
3070 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3071
3072 ASUS EC HARDWARE MONITOR DRIVER
3073 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3074 L:      linux-hwmon@vger.kernel.org
3075 S:      Maintained
3076 F:      drivers/hwmon/asus-ec-sensors.c
3077
3078 ASUS WIRELESS RADIO CONTROL DRIVER
3079 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3080 L:      platform-driver-x86@vger.kernel.org
3081 S:      Maintained
3082 F:      drivers/platform/x86/asus-wireless.c
3083
3084 ASYMMETRIC KEYS
3085 M:      David Howells <dhowells@redhat.com>
3086 L:      keyrings@vger.kernel.org
3087 S:      Maintained
3088 F:      Documentation/crypto/asymmetric-keys.rst
3089 F:      crypto/asymmetric_keys/
3090 F:      include/crypto/pkcs7.h
3091 F:      include/crypto/public_key.h
3092 F:      include/linux/verification.h
3093
3094 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3095 R:      Dan Williams <dan.j.williams@intel.com>
3096 S:      Odd fixes
3097 W:      http://sourceforge.net/projects/xscaleiop
3098 F:      Documentation/crypto/async-tx-api.rst
3099 F:      crypto/async_tx/
3100 F:      include/linux/async_tx.h
3101
3102 AT24 EEPROM DRIVER
3103 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3104 L:      linux-i2c@vger.kernel.org
3105 S:      Maintained
3106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3107 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3108 F:      drivers/misc/eeprom/at24.c
3109
3110 ATA OVER ETHERNET (AOE) DRIVER
3111 M:      "Justin Sanders" <justin@coraid.com>
3112 S:      Supported
3113 W:      http://www.openaoe.org/
3114 F:      Documentation/admin-guide/aoe/
3115 F:      drivers/block/aoe/
3116
3117 ATC260X PMIC MFD DRIVER
3118 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3119 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3120 L:      linux-actions@lists.infradead.org
3121 S:      Maintained
3122 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3123 F:      drivers/input/misc/atc260x-onkey.c
3124 F:      drivers/mfd/atc260*
3125 F:      drivers/power/reset/atc260x-poweroff.c
3126 F:      drivers/regulator/atc260x-regulator.c
3127 F:      include/linux/mfd/atc260x/*
3128
3129 ATHEROS 71XX/9XXX GPIO DRIVER
3130 M:      Alban Bedel <albeu@free.fr>
3131 S:      Maintained
3132 W:      https://github.com/AlbanBedel/linux
3133 T:      git git://github.com/AlbanBedel/linux
3134 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3135 F:      drivers/gpio/gpio-ath79.c
3136
3137 ATHEROS 71XX/9XXX USB PHY DRIVER
3138 M:      Alban Bedel <albeu@free.fr>
3139 S:      Maintained
3140 W:      https://github.com/AlbanBedel/linux
3141 T:      git git://github.com/AlbanBedel/linux
3142 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3143 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3144
3145 ATHEROS ATH GENERIC UTILITIES
3146 M:      Kalle Valo <kvalo@kernel.org>
3147 L:      linux-wireless@vger.kernel.org
3148 S:      Supported
3149 F:      drivers/net/wireless/ath/*
3150
3151 ATHEROS ATH5K WIRELESS DRIVER
3152 M:      Jiri Slaby <jirislaby@kernel.org>
3153 M:      Nick Kossifidis <mickflemm@gmail.com>
3154 M:      Luis Chamberlain <mcgrof@kernel.org>
3155 L:      linux-wireless@vger.kernel.org
3156 S:      Maintained
3157 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3158 F:      drivers/net/wireless/ath/ath5k/
3159
3160 ATHEROS ATH6KL WIRELESS DRIVER
3161 L:      linux-wireless@vger.kernel.org
3162 S:      Orphan
3163 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3164 F:      drivers/net/wireless/ath/ath6kl/
3165
3166 ATI_REMOTE2 DRIVER
3167 M:      Ville Syrjala <syrjala@sci.fi>
3168 S:      Maintained
3169 F:      drivers/input/misc/ati_remote2.c
3170
3171 ATK0110 HWMON DRIVER
3172 M:      Luca Tettamanti <kronos.it@gmail.com>
3173 L:      linux-hwmon@vger.kernel.org
3174 S:      Maintained
3175 F:      drivers/hwmon/asus_atk0110.c
3176
3177 ATLX ETHERNET DRIVERS
3178 M:      Chris Snook <chris.snook@gmail.com>
3179 L:      netdev@vger.kernel.org
3180 S:      Maintained
3181 W:      http://sourceforge.net/projects/atl1
3182 W:      http://atl1.sourceforge.net
3183 F:      drivers/net/ethernet/atheros/
3184
3185 ATM
3186 M:      Chas Williams <3chas3@gmail.com>
3187 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3188 L:      netdev@vger.kernel.org
3189 S:      Maintained
3190 W:      http://linux-atm.sourceforge.net
3191 F:      drivers/atm/
3192 F:      include/linux/atm*
3193 F:      include/uapi/linux/atm*
3194
3195 ATMEL MACB ETHERNET DRIVER
3196 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3197 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3198 S:      Supported
3199 F:      drivers/net/ethernet/cadence/
3200
3201 ATMEL MAXTOUCH DRIVER
3202 M:      Nick Dyer <nick@shmanahar.org>
3203 S:      Maintained
3204 T:      git git://github.com/ndyer/linux.git
3205 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3206 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3207
3208 ATMEL WIRELESS DRIVER
3209 M:      Simon Kelley <simon@thekelleys.org.uk>
3210 L:      linux-wireless@vger.kernel.org
3211 S:      Maintained
3212 W:      http://www.thekelleys.org.uk/atmel
3213 W:      http://atmelwlandriver.sourceforge.net/
3214 F:      drivers/net/wireless/atmel/atmel*
3215
3216 ATOMIC INFRASTRUCTURE
3217 M:      Will Deacon <will@kernel.org>
3218 M:      Peter Zijlstra <peterz@infradead.org>
3219 R:      Boqun Feng <boqun.feng@gmail.com>
3220 R:      Mark Rutland <mark.rutland@arm.com>
3221 L:      linux-kernel@vger.kernel.org
3222 S:      Maintained
3223 F:      arch/*/include/asm/atomic*.h
3224 F:      include/*/atomic*.h
3225 F:      include/linux/refcount.h
3226 F:      Documentation/atomic_*.txt
3227 F:      scripts/atomic/
3228
3229 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3230 M:      Bradley Grove <linuxdrivers@attotech.com>
3231 L:      linux-scsi@vger.kernel.org
3232 S:      Supported
3233 W:      http://www.attotech.com
3234 F:      drivers/scsi/esas2r
3235
3236 ATUSB IEEE 802.15.4 RADIO DRIVER
3237 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3238 L:      linux-wpan@vger.kernel.org
3239 S:      Maintained
3240 F:      drivers/net/ieee802154/at86rf230.h
3241 F:      drivers/net/ieee802154/atusb.c
3242 F:      drivers/net/ieee802154/atusb.h
3243
3244 AUDIT SUBSYSTEM
3245 M:      Paul Moore <paul@paul-moore.com>
3246 M:      Eric Paris <eparis@redhat.com>
3247 L:      linux-audit@redhat.com (moderated for non-subscribers)
3248 S:      Supported
3249 W:      https://github.com/linux-audit
3250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3251 F:      include/asm-generic/audit_*.h
3252 F:      include/linux/audit.h
3253 F:      include/linux/audit_arch.h
3254 F:      include/uapi/linux/audit.h
3255 F:      kernel/audit*
3256 F:      lib/*audit.c
3257
3258 AUXILIARY DISPLAY DRIVERS
3259 M:      Miguel Ojeda <ojeda@kernel.org>
3260 S:      Maintained
3261 F:      Documentation/devicetree/bindings/auxdisplay/
3262 F:      drivers/auxdisplay/
3263 F:      include/linux/cfag12864b.h
3264
3265 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3266 M:      Andreas Klinger <ak@it-klinger.de>
3267 L:      linux-iio@vger.kernel.org
3268 S:      Maintained
3269 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3270 F:      drivers/iio/adc/hx711.c
3271
3272 AX.25 NETWORK LAYER
3273 M:      Ralf Baechle <ralf@linux-mips.org>
3274 L:      linux-hams@vger.kernel.org
3275 S:      Maintained
3276 W:      http://www.linux-ax25.org/
3277 F:      include/net/ax25.h
3278 F:      include/uapi/linux/ax25.h
3279 F:      net/ax25/
3280
3281 AXENTIA ARM DEVICES
3282 M:      Peter Rosin <peda@axentia.se>
3283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3284 S:      Maintained
3285 F:      arch/arm/boot/dts/at91-linea.dtsi
3286 F:      arch/arm/boot/dts/at91-natte.dtsi
3287 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3288 F:      arch/arm/boot/dts/at91-tse850-3.dts
3289
3290 AXENTIA ASOC DRIVERS
3291 M:      Peter Rosin <peda@axentia.se>
3292 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3293 S:      Maintained
3294 F:      Documentation/devicetree/bindings/sound/axentia,*
3295 F:      sound/soc/atmel/tse850-pcm5142.c
3296
3297 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3298 M:      Nuno Sá <nuno.sa@analog.com>
3299 L:      linux-hwmon@vger.kernel.org
3300 S:      Supported
3301 W:      http://ez.analog.com/community/linux-device-drivers
3302 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3303 F:      drivers/hwmon/axi-fan-control.c
3304
3305 AXXIA I2C CONTROLLER
3306 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3307 L:      linux-i2c@vger.kernel.org
3308 S:      Maintained
3309 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3310 F:      drivers/i2c/busses/i2c-axxia.c
3311
3312 AZ6007 DVB DRIVER
3313 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3314 L:      linux-media@vger.kernel.org
3315 S:      Maintained
3316 W:      https://linuxtv.org
3317 T:      git git://linuxtv.org/media_tree.git
3318 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3319
3320 AZTECH FM RADIO RECEIVER DRIVER
3321 M:      Hans Verkuil <hverkuil@xs4all.nl>
3322 L:      linux-media@vger.kernel.org
3323 S:      Maintained
3324 W:      https://linuxtv.org
3325 T:      git git://linuxtv.org/media_tree.git
3326 F:      drivers/media/radio/radio-aztech*
3327
3328 B43 WIRELESS DRIVER
3329 L:      linux-wireless@vger.kernel.org
3330 L:      b43-dev@lists.infradead.org
3331 S:      Odd Fixes
3332 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3333 F:      drivers/net/wireless/broadcom/b43/
3334
3335 B43LEGACY WIRELESS DRIVER
3336 M:      Larry Finger <Larry.Finger@lwfinger.net>
3337 L:      linux-wireless@vger.kernel.org
3338 L:      b43-dev@lists.infradead.org
3339 S:      Maintained
3340 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3341 F:      drivers/net/wireless/broadcom/b43legacy/
3342
3343 BACKLIGHT CLASS/SUBSYSTEM
3344 M:      Lee Jones <lee.jones@linaro.org>
3345 M:      Daniel Thompson <daniel.thompson@linaro.org>
3346 M:      Jingoo Han <jingoohan1@gmail.com>
3347 L:      dri-devel@lists.freedesktop.org
3348 S:      Maintained
3349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3350 F:      Documentation/ABI/stable/sysfs-class-backlight
3351 F:      Documentation/ABI/testing/sysfs-class-backlight
3352 F:      Documentation/devicetree/bindings/leds/backlight
3353 F:      drivers/video/backlight/
3354 F:      include/linux/backlight.h
3355 F:      include/linux/pwm_backlight.h
3356
3357 BARCO P50 GPIO DRIVER
3358 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3359 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3360 S:      Maintained
3361 F:      drivers/platform/x86/barco-p50-gpio.c
3362
3363 BATMAN ADVANCED
3364 M:      Marek Lindner <mareklindner@neomailbox.ch>
3365 M:      Simon Wunderlich <sw@simonwunderlich.de>
3366 M:      Antonio Quartulli <a@unstable.cc>
3367 M:      Sven Eckelmann <sven@narfation.org>
3368 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3369 S:      Maintained
3370 W:      https://www.open-mesh.org/
3371 Q:      https://patchwork.open-mesh.org/project/batman/list/
3372 B:      https://www.open-mesh.org/projects/batman-adv/issues
3373 C:      ircs://irc.hackint.org/batadv
3374 T:      git https://git.open-mesh.org/linux-merge.git
3375 F:      Documentation/networking/batman-adv.rst
3376 F:      include/uapi/linux/batadv_packet.h
3377 F:      include/uapi/linux/batman_adv.h
3378 F:      net/batman-adv/
3379
3380 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3381 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3382 L:      linux-hams@vger.kernel.org
3383 S:      Maintained
3384 W:      http://www.baycom.org/~tom/ham/ham.html
3385 F:      drivers/net/hamradio/baycom*
3386
3387 BCACHE (BLOCK LAYER CACHE)
3388 M:      Coly Li <colyli@suse.de>
3389 M:      Kent Overstreet <kent.overstreet@gmail.com>
3390 L:      linux-bcache@vger.kernel.org
3391 S:      Maintained
3392 W:      http://bcache.evilpiepirate.org
3393 C:      irc://irc.oftc.net/bcache
3394 F:      drivers/md/bcache/
3395
3396 BDISP ST MEDIA DRIVER
3397 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3398 L:      linux-media@vger.kernel.org
3399 S:      Supported
3400 W:      https://linuxtv.org
3401 T:      git git://linuxtv.org/media_tree.git
3402 F:      drivers/media/platform/st/sti/bdisp
3403
3404 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3405 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3406 L:      netdev@vger.kernel.org
3407 S:      Maintained
3408 F:      drivers/net/ethernet/ec_bhf.c
3409
3410 BEFS FILE SYSTEM
3411 M:      Luis de Bethencourt <luisbg@kernel.org>
3412 M:      Salah Triki <salah.triki@gmail.com>
3413 S:      Maintained
3414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3415 F:      Documentation/filesystems/befs.rst
3416 F:      fs/befs/
3417
3418 BFQ I/O SCHEDULER
3419 M:      Paolo Valente <paolo.valente@linaro.org>
3420 M:      Jens Axboe <axboe@kernel.dk>
3421 L:      linux-block@vger.kernel.org
3422 S:      Maintained
3423 F:      Documentation/block/bfq-iosched.rst
3424 F:      block/bfq-*
3425
3426 BFS FILE SYSTEM
3427 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3428 S:      Maintained
3429 F:      Documentation/filesystems/bfs.rst
3430 F:      fs/bfs/
3431 F:      include/uapi/linux/bfs_fs.h
3432
3433 BITMAP API
3434 M:      Yury Norov <yury.norov@gmail.com>
3435 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3436 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3437 S:      Maintained
3438 F:      include/linux/bitmap.h
3439 F:      include/linux/find.h
3440 F:      lib/bitmap.c
3441 F:      lib/find_bit.c
3442 F:      lib/find_bit_benchmark.c
3443 F:      lib/test_bitmap.c
3444 F:      tools/include/linux/bitmap.h
3445 F:      tools/include/linux/find.h
3446 F:      tools/lib/bitmap.c
3447 F:      tools/lib/find_bit.c
3448
3449 BLINKM RGB LED DRIVER
3450 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3451 S:      Maintained
3452 F:      drivers/leds/leds-blinkm.c
3453
3454 BLOCK LAYER
3455 M:      Jens Axboe <axboe@kernel.dk>
3456 L:      linux-block@vger.kernel.org
3457 S:      Maintained
3458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3459 F:      Documentation/ABI/stable/sysfs-block
3460 F:      Documentation/block/
3461 F:      block/
3462 F:      drivers/block/
3463 F:      include/linux/bio.h
3464 F:      include/linux/blk*
3465 F:      kernel/trace/blktrace.c
3466 F:      lib/sbitmap.c
3467
3468 BLOCK2MTD DRIVER
3469 M:      Joern Engel <joern@lazybastard.org>
3470 L:      linux-mtd@lists.infradead.org
3471 S:      Maintained
3472 F:      drivers/mtd/devices/block2mtd.c
3473
3474 BLUETOOTH DRIVERS
3475 M:      Marcel Holtmann <marcel@holtmann.org>
3476 M:      Johan Hedberg <johan.hedberg@gmail.com>
3477 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3478 L:      linux-bluetooth@vger.kernel.org
3479 S:      Supported
3480 W:      http://www.bluez.org/
3481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3483 F:      drivers/bluetooth/
3484
3485 BLUETOOTH SUBSYSTEM
3486 M:      Marcel Holtmann <marcel@holtmann.org>
3487 M:      Johan Hedberg <johan.hedberg@gmail.com>
3488 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3489 L:      linux-bluetooth@vger.kernel.org
3490 S:      Supported
3491 W:      http://www.bluez.org/
3492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3494 F:      include/net/bluetooth/
3495 F:      net/bluetooth/
3496
3497 BONDING DRIVER
3498 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3499 M:      Veaceslav Falico <vfalico@gmail.com>
3500 M:      Andy Gospodarek <andy@greyhouse.net>
3501 L:      netdev@vger.kernel.org
3502 S:      Supported
3503 W:      http://sourceforge.net/projects/bonding/
3504 F:      drivers/net/bonding/
3505 F:      include/net/bonding.h
3506 F:      include/uapi/linux/if_bonding.h
3507
3508 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3509 M:      Dan Robertson <dan@dlrobertson.com>
3510 L:      linux-iio@vger.kernel.org
3511 S:      Maintained
3512 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3513 F:      drivers/iio/accel/bma400*
3514
3515 BPF (Safe dynamic programs and tools)
3516 M:      Alexei Starovoitov <ast@kernel.org>
3517 M:      Daniel Borkmann <daniel@iogearbox.net>
3518 M:      Andrii Nakryiko <andrii@kernel.org>
3519 R:      Martin KaFai Lau <kafai@fb.com>
3520 R:      Song Liu <songliubraving@fb.com>
3521 R:      Yonghong Song <yhs@fb.com>
3522 R:      John Fastabend <john.fastabend@gmail.com>
3523 R:      KP Singh <kpsingh@kernel.org>
3524 L:      netdev@vger.kernel.org
3525 L:      bpf@vger.kernel.org
3526 S:      Supported
3527 W:      https://bpf.io/
3528 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3531 F:      Documentation/bpf/
3532 F:      Documentation/networking/filter.rst
3533 F:      Documentation/userspace-api/ebpf/
3534 F:      arch/*/net/*
3535 F:      include/linux/bpf*
3536 F:      include/linux/btf*
3537 F:      include/linux/filter.h
3538 F:      include/trace/events/xdp.h
3539 F:      include/uapi/linux/bpf*
3540 F:      include/uapi/linux/btf*
3541 F:      include/uapi/linux/filter.h
3542 F:      kernel/bpf/
3543 F:      kernel/trace/bpf_trace.c
3544 F:      lib/test_bpf.c
3545 F:      net/bpf/
3546 F:      net/core/filter.c
3547 F:      net/sched/act_bpf.c
3548 F:      net/sched/cls_bpf.c
3549 F:      samples/bpf/
3550 F:      scripts/bpf_doc.py
3551 F:      scripts/pahole-flags.sh
3552 F:      scripts/pahole-version.sh
3553 F:      tools/bpf/
3554 F:      tools/lib/bpf/
3555 F:      tools/testing/selftests/bpf/
3556 N:      bpf
3557 K:      bpf
3558
3559 BPF JIT for ARM
3560 M:      Shubham Bansal <illusionist.neo@gmail.com>
3561 L:      netdev@vger.kernel.org
3562 L:      bpf@vger.kernel.org
3563 S:      Maintained
3564 F:      arch/arm/net/
3565
3566 BPF JIT for ARM64
3567 M:      Daniel Borkmann <daniel@iogearbox.net>
3568 M:      Alexei Starovoitov <ast@kernel.org>
3569 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3570 L:      netdev@vger.kernel.org
3571 L:      bpf@vger.kernel.org
3572 S:      Supported
3573 F:      arch/arm64/net/
3574
3575 BPF JIT for MIPS (32-BIT AND 64-BIT)
3576 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3577 M:      Paul Burton <paulburton@kernel.org>
3578 L:      netdev@vger.kernel.org
3579 L:      bpf@vger.kernel.org
3580 S:      Maintained
3581 F:      arch/mips/net/
3582
3583 BPF JIT for NFP NICs
3584 M:      Jakub Kicinski <kuba@kernel.org>
3585 L:      netdev@vger.kernel.org
3586 L:      bpf@vger.kernel.org
3587 S:      Supported
3588 F:      drivers/net/ethernet/netronome/nfp/bpf/
3589
3590 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3591 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3592 L:      netdev@vger.kernel.org
3593 L:      bpf@vger.kernel.org
3594 S:      Maintained
3595 F:      arch/powerpc/net/
3596
3597 BPF JIT for RISC-V (32-bit)
3598 M:      Luke Nelson <luke.r.nels@gmail.com>
3599 M:      Xi Wang <xi.wang@gmail.com>
3600 L:      netdev@vger.kernel.org
3601 L:      bpf@vger.kernel.org
3602 S:      Maintained
3603 F:      arch/riscv/net/
3604 X:      arch/riscv/net/bpf_jit_comp64.c
3605
3606 BPF JIT for RISC-V (64-bit)
3607 M:      Björn Töpel <bjorn@kernel.org>
3608 L:      netdev@vger.kernel.org
3609 L:      bpf@vger.kernel.org
3610 S:      Maintained
3611 F:      arch/riscv/net/
3612 X:      arch/riscv/net/bpf_jit_comp32.c
3613
3614 BPF JIT for S390
3615 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3616 M:      Heiko Carstens <hca@linux.ibm.com>
3617 M:      Vasily Gorbik <gor@linux.ibm.com>
3618 L:      netdev@vger.kernel.org
3619 L:      bpf@vger.kernel.org
3620 S:      Maintained
3621 F:      arch/s390/net/
3622 X:      arch/s390/net/pnet.c
3623
3624 BPF JIT for SPARC (32-BIT AND 64-BIT)
3625 M:      David S. Miller <davem@davemloft.net>
3626 L:      netdev@vger.kernel.org
3627 L:      bpf@vger.kernel.org
3628 S:      Maintained
3629 F:      arch/sparc/net/
3630
3631 BPF JIT for X86 32-BIT
3632 M:      Wang YanQing <udknight@gmail.com>
3633 L:      netdev@vger.kernel.org
3634 L:      bpf@vger.kernel.org
3635 S:      Maintained
3636 F:      arch/x86/net/bpf_jit_comp32.c
3637
3638 BPF JIT for X86 64-BIT
3639 M:      Alexei Starovoitov <ast@kernel.org>
3640 M:      Daniel Borkmann <daniel@iogearbox.net>
3641 L:      netdev@vger.kernel.org
3642 L:      bpf@vger.kernel.org
3643 S:      Supported
3644 F:      arch/x86/net/
3645 X:      arch/x86/net/bpf_jit_comp32.c
3646
3647 BPF LSM (Security Audit and Enforcement using BPF)
3648 M:      KP Singh <kpsingh@kernel.org>
3649 R:      Florent Revest <revest@chromium.org>
3650 R:      Brendan Jackman <jackmanb@chromium.org>
3651 L:      bpf@vger.kernel.org
3652 S:      Maintained
3653 F:      Documentation/bpf/prog_lsm.rst
3654 F:      include/linux/bpf_lsm.h
3655 F:      kernel/bpf/bpf_lsm.c
3656 F:      security/bpf/
3657
3658 BROADCOM B44 10/100 ETHERNET DRIVER
3659 M:      Michael Chan <michael.chan@broadcom.com>
3660 L:      netdev@vger.kernel.org
3661 S:      Supported
3662 F:      drivers/net/ethernet/broadcom/b44.*
3663
3664 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3665 M:      Florian Fainelli <f.fainelli@gmail.com>
3666 L:      netdev@vger.kernel.org
3667 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3668 S:      Supported
3669 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3670 F:      drivers/net/dsa/b53/*
3671 F:      drivers/net/dsa/bcm_sf2*
3672 F:      include/linux/dsa/brcm.h
3673 F:      include/linux/platform_data/b53.h
3674
3675 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3676 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3677 L:      bcm-kernel-feedback-list@broadcom.com
3678 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3680 S:      Maintained
3681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3682 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3683 F:      drivers/pci/controller/pcie-brcmstb.c
3684 F:      drivers/staging/vc04_services
3685 N:      bcm2711
3686 N:      bcm283*
3687
3688 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3689 M:      Florian Fainelli <f.fainelli@gmail.com>
3690 M:      Ray Jui <rjui@broadcom.com>
3691 M:      Scott Branden <sbranden@broadcom.com>
3692 M:      bcm-kernel-feedback-list@broadcom.com
3693 S:      Maintained
3694 T:      git git://github.com/broadcom/mach-bcm
3695 F:      arch/arm/mach-bcm/
3696 N:      bcm281*
3697 N:      bcm113*
3698 N:      bcm216*
3699 N:      kona
3700
3701 BROADCOM BCM47XX MIPS ARCHITECTURE
3702 M:      Hauke Mehrtens <hauke@hauke-m.de>
3703 M:      Rafał Miłecki <zajec5@gmail.com>
3704 L:      linux-mips@vger.kernel.org
3705 S:      Maintained
3706 F:      Documentation/devicetree/bindings/mips/brcm/
3707 F:      arch/mips/bcm47xx/*
3708 F:      arch/mips/include/asm/mach-bcm47xx/*
3709
3710 BROADCOM BCM4908 ETHERNET DRIVER
3711 M:      Rafał Miłecki <rafal@milecki.pl>
3712 M:      bcm-kernel-feedback-list@broadcom.com
3713 L:      netdev@vger.kernel.org
3714 S:      Maintained
3715 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3716 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3717 F:      drivers/net/ethernet/broadcom/unimac.h
3718
3719 BROADCOM BCM5301X ARM ARCHITECTURE
3720 M:      Florian Fainelli <f.fainelli@gmail.com>
3721 M:      Hauke Mehrtens <hauke@hauke-m.de>
3722 M:      Rafał Miłecki <zajec5@gmail.com>
3723 M:      bcm-kernel-feedback-list@broadcom.com
3724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3725 S:      Maintained
3726 F:      arch/arm/boot/dts/bcm470*
3727 F:      arch/arm/boot/dts/bcm5301*
3728 F:      arch/arm/boot/dts/bcm953012*
3729 F:      arch/arm/mach-bcm/bcm_5301x.c
3730
3731 BROADCOM BCM53573 ARM ARCHITECTURE
3732 M:      Florian Fainelli <f.fainelli@gmail.com>
3733 M:      Rafał Miłecki <rafal@milecki.pl>
3734 L:      bcm-kernel-feedback-list@broadcom.com
3735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3736 S:      Maintained
3737 F:      arch/arm/boot/dts/bcm47189*
3738 F:      arch/arm/boot/dts/bcm53573*
3739
3740 BROADCOM BCM63XX ARM ARCHITECTURE
3741 M:      Florian Fainelli <f.fainelli@gmail.com>
3742 M:      bcm-kernel-feedback-list@broadcom.com
3743 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3744 S:      Maintained
3745 T:      git git://github.com/broadcom/stblinux.git
3746 N:      bcm63xx
3747
3748 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3749 M:      Kevin Cernekee <cernekee@gmail.com>
3750 L:      linux-usb@vger.kernel.org
3751 S:      Maintained
3752 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3753
3754 BROADCOM BCM7XXX ARM ARCHITECTURE
3755 M:      Florian Fainelli <f.fainelli@gmail.com>
3756 M:      bcm-kernel-feedback-list@broadcom.com
3757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3758 S:      Maintained
3759 T:      git git://github.com/broadcom/stblinux.git
3760 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3761 F:      arch/arm/boot/dts/bcm7*.dts*
3762 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3763 F:      arch/arm/mach-bcm/*brcmstb*
3764 F:      arch/arm/mm/cache-b15-rac.c
3765 F:      drivers/bus/brcmstb_gisb.c
3766 F:      drivers/pci/controller/pcie-brcmstb.c
3767 N:      brcmstb
3768 N:      bcm7038
3769 N:      bcm7120
3770
3771 BROADCOM BDC DRIVER
3772 M:      Al Cooper <alcooperx@gmail.com>
3773 L:      linux-usb@vger.kernel.org
3774 L:      bcm-kernel-feedback-list@broadcom.com
3775 S:      Maintained
3776 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3777 F:      drivers/usb/gadget/udc/bdc/
3778
3779 BROADCOM BMIPS CPUFREQ DRIVER
3780 M:      Markus Mayer <mmayer@broadcom.com>
3781 M:      bcm-kernel-feedback-list@broadcom.com
3782 L:      linux-pm@vger.kernel.org
3783 S:      Maintained
3784 F:      drivers/cpufreq/bmips-cpufreq.c
3785
3786 BROADCOM BMIPS MIPS ARCHITECTURE
3787 M:      Florian Fainelli <f.fainelli@gmail.com>
3788 L:      bcm-kernel-feedback-list@broadcom.com
3789 L:      linux-mips@vger.kernel.org
3790 S:      Maintained
3791 T:      git git://github.com/broadcom/stblinux.git
3792 F:      arch/mips/bmips/*
3793 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3794 F:      arch/mips/include/asm/mach-bmips/*
3795 F:      arch/mips/kernel/*bmips*
3796 F:      drivers/soc/bcm/bcm63xx
3797 F:      drivers/irqchip/irq-bcm63*
3798 F:      drivers/irqchip/irq-bcm7*
3799 F:      drivers/irqchip/irq-brcmstb*
3800 F:      include/linux/bcm963xx_nvram.h
3801 F:      include/linux/bcm963xx_tag.h
3802
3803 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3804 M:      Rasesh Mody <rmody@marvell.com>
3805 M:      GR-Linux-NIC-Dev@marvell.com
3806 L:      netdev@vger.kernel.org
3807 S:      Supported
3808 F:      drivers/net/ethernet/broadcom/bnx2.*
3809 F:      drivers/net/ethernet/broadcom/bnx2_*
3810
3811 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3812 M:      Saurav Kashyap <skashyap@marvell.com>
3813 M:      Javed Hasan <jhasan@marvell.com>
3814 M:      GR-QLogic-Storage-Upstream@marvell.com
3815 L:      linux-scsi@vger.kernel.org
3816 S:      Supported
3817 F:      drivers/scsi/bnx2fc/
3818
3819 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3820 M:      Nilesh Javali <njavali@marvell.com>
3821 M:      Manish Rangankar <mrangankar@marvell.com>
3822 M:      GR-QLogic-Storage-Upstream@marvell.com
3823 L:      linux-scsi@vger.kernel.org
3824 S:      Supported
3825 F:      drivers/scsi/bnx2i/
3826
3827 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3828 M:      Ariel Elior <aelior@marvell.com>
3829 M:      Sudarsana Kalluru <skalluru@marvell.com>
3830 M:      Manish Chopra <manishc@marvell.com>
3831 L:      netdev@vger.kernel.org
3832 S:      Supported
3833 F:      drivers/net/ethernet/broadcom/bnx2x/
3834
3835 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3836 M:      Michael Chan <michael.chan@broadcom.com>
3837 L:      netdev@vger.kernel.org
3838 S:      Supported
3839 F:      drivers/net/ethernet/broadcom/bnxt/
3840
3841 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3842 M:      Arend van Spriel <aspriel@gmail.com>
3843 M:      Franky Lin <franky.lin@broadcom.com>
3844 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3845 L:      linux-wireless@vger.kernel.org
3846 L:      brcm80211-dev-list.pdl@broadcom.com
3847 L:      SHA-cyfmac-dev-list@infineon.com
3848 S:      Supported
3849 F:      drivers/net/wireless/broadcom/brcm80211/
3850
3851 BROADCOM BRCMSTB GPIO DRIVER
3852 M:      Doug Berger <opendmb@gmail.com>
3853 M:      Florian Fainelli <f.fainelli@gmail.com>
3854 L:      bcm-kernel-feedback-list@broadcom.com
3855 S:      Supported
3856 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3857 F:      drivers/gpio/gpio-brcmstb.c
3858
3859 BROADCOM BRCMSTB I2C DRIVER
3860 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3861 L:      linux-i2c@vger.kernel.org
3862 L:      bcm-kernel-feedback-list@broadcom.com
3863 S:      Supported
3864 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3865 F:      drivers/i2c/busses/i2c-brcmstb.c
3866
3867 BROADCOM BRCMSTB UART DRIVER
3868 M:      Al Cooper <alcooperx@gmail.com>
3869 L:      linux-serial@vger.kernel.org
3870 L:      bcm-kernel-feedback-list@broadcom.com
3871 S:      Maintained
3872 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3873 F:      drivers/tty/serial/8250/8250_bcm7271.c
3874
3875 BROADCOM BRCMSTB USB EHCI DRIVER
3876 M:      Al Cooper <alcooperx@gmail.com>
3877 L:      linux-usb@vger.kernel.org
3878 L:      bcm-kernel-feedback-list@broadcom.com
3879 S:      Maintained
3880 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3881 F:      drivers/usb/host/ehci-brcm.*
3882
3883 BROADCOM BRCMSTB USB PIN MAP DRIVER
3884 M:      Al Cooper <alcooperx@gmail.com>
3885 L:      linux-usb@vger.kernel.org
3886 L:      bcm-kernel-feedback-list@broadcom.com
3887 S:      Maintained
3888 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3889 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3890
3891 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3892 M:      Al Cooper <alcooperx@gmail.com>
3893 L:      linux-kernel@vger.kernel.org
3894 L:      bcm-kernel-feedback-list@broadcom.com
3895 S:      Maintained
3896 F:      drivers/phy/broadcom/phy-brcm-usb*
3897
3898 BROADCOM ETHERNET PHY DRIVERS
3899 M:      Florian Fainelli <f.fainelli@gmail.com>
3900 L:      bcm-kernel-feedback-list@broadcom.com
3901 L:      netdev@vger.kernel.org
3902 S:      Supported
3903 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3904 F:      drivers/net/phy/bcm*.[ch]
3905 F:      drivers/net/phy/broadcom.c
3906 F:      include/linux/brcmphy.h
3907
3908 BROADCOM GENET ETHERNET DRIVER
3909 M:      Doug Berger <opendmb@gmail.com>
3910 M:      Florian Fainelli <f.fainelli@gmail.com>
3911 L:      bcm-kernel-feedback-list@broadcom.com
3912 L:      netdev@vger.kernel.org
3913 S:      Supported
3914 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
3915 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3916 F:      drivers/net/ethernet/broadcom/genet/
3917 F:      drivers/net/ethernet/broadcom/unimac.h
3918 F:      drivers/net/mdio/mdio-bcm-unimac.c
3919 F:      include/linux/platform_data/bcmgenet.h
3920 F:      include/linux/platform_data/mdio-bcm-unimac.h
3921
3922 BROADCOM IPROC ARM ARCHITECTURE
3923 M:      Ray Jui <rjui@broadcom.com>
3924 M:      Scott Branden <sbranden@broadcom.com>
3925 M:      bcm-kernel-feedback-list@broadcom.com
3926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3927 S:      Maintained
3928 T:      git git://github.com/broadcom/stblinux.git
3929 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3930 F:      arch/arm64/boot/dts/broadcom/stingray/*
3931 F:      drivers/clk/bcm/clk-ns*
3932 F:      drivers/clk/bcm/clk-sr*
3933 F:      drivers/pinctrl/bcm/pinctrl-ns*
3934 F:      include/dt-bindings/clock/bcm-sr*
3935 N:      iproc
3936 N:      cygnus
3937 N:      bcm[-_]nsp
3938 N:      bcm9113*
3939 N:      bcm9583*
3940 N:      bcm9585*
3941 N:      bcm9586*
3942 N:      bcm988312
3943 N:      bcm113*
3944 N:      bcm583*
3945 N:      bcm585*
3946 N:      bcm586*
3947 N:      bcm88312
3948 N:      hr2
3949 N:      stingray
3950
3951 BROADCOM IPROC GBIT ETHERNET DRIVER
3952 M:      Rafał Miłecki <rafal@milecki.pl>
3953 M:      bcm-kernel-feedback-list@broadcom.com
3954 L:      netdev@vger.kernel.org
3955 S:      Maintained
3956 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
3957 F:      drivers/net/ethernet/broadcom/bgmac*
3958 F:      drivers/net/ethernet/broadcom/unimac.h
3959
3960 BROADCOM KONA GPIO DRIVER
3961 M:      Ray Jui <rjui@broadcom.com>
3962 L:      bcm-kernel-feedback-list@broadcom.com
3963 S:      Supported
3964 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3965 F:      drivers/gpio/gpio-bcm-kona.c
3966
3967 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3968 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3969 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3970 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3971 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3972 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3973 L:      linux-scsi@vger.kernel.org
3974 S:      Supported
3975 W:      https://www.broadcom.com/support/storage
3976 F:      drivers/scsi/mpi3mr/
3977
3978 BROADCOM NETXTREME-E ROCE DRIVER
3979 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3980 L:      linux-rdma@vger.kernel.org
3981 S:      Supported
3982 W:      http://www.broadcom.com
3983 F:      drivers/infiniband/hw/bnxt_re/
3984 F:      include/uapi/rdma/bnxt_re-abi.h
3985
3986 BROADCOM NVRAM DRIVER
3987 M:      Rafał Miłecki <zajec5@gmail.com>
3988 L:      linux-mips@vger.kernel.org
3989 S:      Maintained
3990 F:      drivers/firmware/broadcom/*
3991
3992 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3993 M:      Rafał Miłecki <rafal@milecki.pl>
3994 M:      Florian Fainelli <f.fainelli@gmail.com>
3995 M:      bcm-kernel-feedback-list@broadcom.com
3996 L:      linux-pm@vger.kernel.org
3997 S:      Maintained
3998 T:      git git://github.com/broadcom/stblinux.git
3999 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4000 F:      include/dt-bindings/soc/bcm-pmb.h
4001
4002 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4003 M:      Rafał Miłecki <zajec5@gmail.com>
4004 L:      linux-wireless@vger.kernel.org
4005 S:      Maintained
4006 F:      drivers/bcma/
4007 F:      include/linux/bcma/
4008
4009 BROADCOM SPI DRIVER
4010 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4011 M:      bcm-kernel-feedback-list@broadcom.com
4012 S:      Maintained
4013 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4014 F:      drivers/spi/spi-bcm-qspi.*
4015 F:      drivers/spi/spi-brcmstb-qspi.c
4016 F:      drivers/spi/spi-iproc-qspi.c
4017
4018 BROADCOM STB AVS CPUFREQ DRIVER
4019 M:      Markus Mayer <mmayer@broadcom.com>
4020 M:      bcm-kernel-feedback-list@broadcom.com
4021 L:      linux-pm@vger.kernel.org
4022 S:      Maintained
4023 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4024 F:      drivers/cpufreq/brcmstb*
4025
4026 BROADCOM STB AVS TMON DRIVER
4027 M:      Markus Mayer <mmayer@broadcom.com>
4028 M:      bcm-kernel-feedback-list@broadcom.com
4029 L:      linux-pm@vger.kernel.org
4030 S:      Maintained
4031 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4032 F:      drivers/thermal/broadcom/brcmstb*
4033
4034 BROADCOM STB DPFE DRIVER
4035 M:      Markus Mayer <mmayer@broadcom.com>
4036 M:      bcm-kernel-feedback-list@broadcom.com
4037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4038 S:      Maintained
4039 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4040 F:      drivers/memory/brcmstb_dpfe.c
4041
4042 BROADCOM STB NAND FLASH DRIVER
4043 M:      Brian Norris <computersforpeace@gmail.com>
4044 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4045 L:      linux-mtd@lists.infradead.org
4046 L:      bcm-kernel-feedback-list@broadcom.com
4047 S:      Maintained
4048 F:      drivers/mtd/nand/raw/brcmnand/
4049 F:      include/linux/platform_data/brcmnand.h
4050
4051 BROADCOM STB PCIE DRIVER
4052 M:      Jim Quinlan <jim2101024@gmail.com>
4053 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4054 M:      Florian Fainelli <f.fainelli@gmail.com>
4055 M:      bcm-kernel-feedback-list@broadcom.com
4056 L:      linux-pci@vger.kernel.org
4057 S:      Maintained
4058 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4059 F:      drivers/pci/controller/pcie-brcmstb.c
4060
4061 BROADCOM SYSTEMPORT ETHERNET DRIVER
4062 M:      Florian Fainelli <f.fainelli@gmail.com>
4063 L:      bcm-kernel-feedback-list@broadcom.com
4064 L:      netdev@vger.kernel.org
4065 S:      Supported
4066 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4067 F:      drivers/net/ethernet/broadcom/unimac.h
4068 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4069
4070 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4071 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4072 M:      Prashant Sreedharan <prashant@broadcom.com>
4073 M:      Michael Chan <mchan@broadcom.com>
4074 L:      netdev@vger.kernel.org
4075 S:      Supported
4076 F:      drivers/net/ethernet/broadcom/tg3.*
4077
4078 BROADCOM VK DRIVER
4079 M:      Scott Branden <scott.branden@broadcom.com>
4080 L:      bcm-kernel-feedback-list@broadcom.com
4081 S:      Supported
4082 F:      drivers/misc/bcm-vk/
4083 F:      include/uapi/linux/misc/bcm_vk.h
4084
4085 BROCADE BFA FC SCSI DRIVER
4086 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4087 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4088 L:      linux-scsi@vger.kernel.org
4089 S:      Supported
4090 F:      drivers/scsi/bfa/
4091
4092 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4093 M:      Rasesh Mody <rmody@marvell.com>
4094 M:      Sudarsana Kalluru <skalluru@marvell.com>
4095 M:      GR-Linux-NIC-Dev@marvell.com
4096 L:      netdev@vger.kernel.org
4097 S:      Supported
4098 F:      drivers/net/ethernet/brocade/bna/
4099
4100 BSG (block layer generic sg v4 driver)
4101 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4102 L:      linux-scsi@vger.kernel.org
4103 S:      Supported
4104 F:      block/bsg.c
4105 F:      include/linux/bsg.h
4106 F:      include/uapi/linux/bsg.h
4107
4108 BT87X AUDIO DRIVER
4109 M:      Clemens Ladisch <clemens@ladisch.de>
4110 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4111 S:      Maintained
4112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4113 F:      Documentation/sound/cards/bt87x.rst
4114 F:      sound/pci/bt87x.c
4115
4116 BT8XXGPIO DRIVER
4117 M:      Michael Buesch <m@bues.ch>
4118 S:      Maintained
4119 W:      http://bu3sch.de/btgpio.php
4120 F:      drivers/gpio/gpio-bt8xx.c
4121
4122 BTRFS FILE SYSTEM
4123 M:      Chris Mason <clm@fb.com>
4124 M:      Josef Bacik <josef@toxicpanda.com>
4125 M:      David Sterba <dsterba@suse.com>
4126 L:      linux-btrfs@vger.kernel.org
4127 S:      Maintained
4128 W:      http://btrfs.wiki.kernel.org/
4129 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4130 C:      irc://irc.libera.chat/btrfs
4131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4132 F:      Documentation/filesystems/btrfs.rst
4133 F:      fs/btrfs/
4134 F:      include/linux/btrfs*
4135 F:      include/uapi/linux/btrfs*
4136
4137 BTTV VIDEO4LINUX DRIVER
4138 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4139 L:      linux-media@vger.kernel.org
4140 S:      Odd fixes
4141 W:      https://linuxtv.org
4142 T:      git git://linuxtv.org/media_tree.git
4143 F:      Documentation/driver-api/media/drivers/bttv*
4144 F:      drivers/media/pci/bt8xx/bttv*
4145
4146 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4147 M:      Chanwoo Choi <cw00.choi@samsung.com>
4148 L:      linux-pm@vger.kernel.org
4149 L:      linux-samsung-soc@vger.kernel.org
4150 S:      Maintained
4151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4152 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4153 F:      drivers/devfreq/exynos-bus.c
4154
4155 BUSLOGIC SCSI DRIVER
4156 M:      Khalid Aziz <khalid@gonehiking.org>
4157 L:      linux-scsi@vger.kernel.org
4158 S:      Maintained
4159 F:      drivers/scsi/BusLogic.*
4160 F:      drivers/scsi/FlashPoint.*
4161
4162 C-MEDIA CMI8788 DRIVER
4163 M:      Clemens Ladisch <clemens@ladisch.de>
4164 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4165 S:      Maintained
4166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4167 F:      sound/pci/oxygen/
4168
4169 C-SKY ARCHITECTURE
4170 M:      Guo Ren <guoren@kernel.org>
4171 L:      linux-csky@vger.kernel.org
4172 S:      Supported
4173 T:      git https://github.com/c-sky/csky-linux.git
4174 F:      Documentation/devicetree/bindings/csky/
4175 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4176 F:      Documentation/devicetree/bindings/timer/csky,*
4177 F:      arch/csky/
4178 F:      drivers/clocksource/timer-gx6605s.c
4179 F:      drivers/clocksource/timer-mp-csky.c
4180 F:      drivers/irqchip/irq-csky-*
4181 N:      csky
4182 K:      csky
4183
4184 CA8210 IEEE-802.15.4 RADIO DRIVER
4185 L:      linux-wpan@vger.kernel.org
4186 S:      Orphan
4187 W:      https://github.com/Cascoda/ca8210-linux.git
4188 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4189 F:      drivers/net/ieee802154/ca8210.c
4190
4191 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4192 M:      Damien Le Moal <damien.lemoal@wdc.com>
4193 L:      linux-riscv@lists.infradead.org
4194 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4195 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4196 F:      drivers/pinctrl/pinctrl-k210.c
4197
4198 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4199 M:      Damien Le Moal <damien.lemoal@wdc.com>
4200 L:      linux-kernel@vger.kernel.org
4201 L:      linux-riscv@lists.infradead.org
4202 S:      Maintained
4203 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4204 F:      drivers/reset/reset-k210.c
4205
4206 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4207 M:      Damien Le Moal <damien.lemoal@wdc.com>
4208 L:      linux-riscv@lists.infradead.org
4209 S:      Maintained
4210 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4211 F:      drivers/soc/canaan/
4212 F:      include/soc/canaan/
4213
4214 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4215 M:      David Howells <dhowells@redhat.com>
4216 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4217 S:      Supported
4218 F:      Documentation/filesystems/caching/cachefiles.rst
4219 F:      fs/cachefiles/
4220
4221 CADENCE MIPI-CSI2 BRIDGES
4222 M:      Maxime Ripard <mripard@kernel.org>
4223 L:      linux-media@vger.kernel.org
4224 S:      Maintained
4225 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4226 F:      drivers/media/platform/cadence/cdns-csi2*
4227
4228 CADENCE NAND DRIVER
4229 L:      linux-mtd@lists.infradead.org
4230 S:      Orphan
4231 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4232 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4233
4234 CADENCE USB3 DRD IP DRIVER
4235 M:      Peter Chen <peter.chen@kernel.org>
4236 M:      Pawel Laszczak <pawell@cadence.com>
4237 R:      Roger Quadros <rogerq@kernel.org>
4238 R:      Aswath Govindraju <a-govindraju@ti.com>
4239 L:      linux-usb@vger.kernel.org
4240 S:      Maintained
4241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4242 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4243 F:      drivers/usb/cdns3/
4244 X:      drivers/usb/cdns3/cdnsp*
4245
4246 CADENCE USBSSP DRD IP DRIVER
4247 M:      Pawel Laszczak <pawell@cadence.com>
4248 L:      linux-usb@vger.kernel.org
4249 S:      Maintained
4250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4251 F:      drivers/usb/cdns3/
4252 X:      drivers/usb/cdns3/cdns3*
4253
4254 CADET FM/AM RADIO RECEIVER DRIVER
4255 M:      Hans Verkuil <hverkuil@xs4all.nl>
4256 L:      linux-media@vger.kernel.org
4257 S:      Maintained
4258 W:      https://linuxtv.org
4259 T:      git git://linuxtv.org/media_tree.git
4260 F:      drivers/media/radio/radio-cadet*
4261
4262 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4263 L:      linux-media@vger.kernel.org
4264 S:      Orphan
4265 T:      git git://linuxtv.org/media_tree.git
4266 F:      Documentation/admin-guide/media/cafe_ccic*
4267 F:      drivers/media/platform/marvell/
4268
4269 CAIF NETWORK LAYER
4270 L:      netdev@vger.kernel.org
4271 S:      Orphan
4272 F:      Documentation/networking/caif/
4273 F:      drivers/net/caif/
4274 F:      include/net/caif/
4275 F:      include/uapi/linux/caif/
4276 F:      net/caif/
4277
4278 CAKE QDISC
4279 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4280 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4281 S:      Maintained
4282 F:      net/sched/sch_cake.c
4283
4284 CAN NETWORK DRIVERS
4285 M:      Wolfgang Grandegger <wg@grandegger.com>
4286 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4287 L:      linux-can@vger.kernel.org
4288 S:      Maintained
4289 W:      https://github.com/linux-can
4290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4292 F:      Documentation/devicetree/bindings/net/can/
4293 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4294 F:      drivers/net/can/
4295 F:      drivers/phy/phy-can-transceiver.c
4296 F:      include/linux/can/bittiming.h
4297 F:      include/linux/can/dev.h
4298 F:      include/linux/can/led.h
4299 F:      include/linux/can/length.h
4300 F:      include/linux/can/platform/
4301 F:      include/linux/can/rx-offload.h
4302 F:      include/uapi/linux/can/error.h
4303 F:      include/uapi/linux/can/netlink.h
4304 F:      include/uapi/linux/can/vxcan.h
4305
4306 CAN NETWORK LAYER
4307 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4308 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4309 L:      linux-can@vger.kernel.org
4310 S:      Maintained
4311 W:      https://github.com/linux-can
4312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4314 F:      Documentation/networking/can.rst
4315 F:      include/linux/can/can-ml.h
4316 F:      include/linux/can/core.h
4317 F:      include/linux/can/skb.h
4318 F:      include/net/netns/can.h
4319 F:      include/uapi/linux/can.h
4320 F:      include/uapi/linux/can/bcm.h
4321 F:      include/uapi/linux/can/gw.h
4322 F:      include/uapi/linux/can/isotp.h
4323 F:      include/uapi/linux/can/raw.h
4324 F:      net/can/
4325
4326 CAN-J1939 NETWORK LAYER
4327 M:      Robin van der Gracht <robin@protonic.nl>
4328 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4329 R:      kernel@pengutronix.de
4330 L:      linux-can@vger.kernel.org
4331 S:      Maintained
4332 F:      Documentation/networking/j1939.rst
4333 F:      include/uapi/linux/can/j1939.h
4334 F:      net/can/j1939/
4335
4336 CAPABILITIES
4337 M:      Serge Hallyn <serge@hallyn.com>
4338 L:      linux-security-module@vger.kernel.org
4339 S:      Supported
4340 F:      include/linux/capability.h
4341 F:      include/uapi/linux/capability.h
4342 F:      kernel/capability.c
4343 F:      security/commoncap.c
4344
4345 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4346 M:      Kevin Tsai <ktsai@capellamicro.com>
4347 S:      Maintained
4348 F:      drivers/iio/light/cm*
4349
4350 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4351 M:      Christian Lamparter <chunkeey@googlemail.com>
4352 L:      linux-wireless@vger.kernel.org
4353 S:      Maintained
4354 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4355 F:      drivers/net/wireless/ath/carl9170/
4356
4357 CAVIUM I2C DRIVER
4358 M:      Robert Richter <rric@kernel.org>
4359 S:      Odd Fixes
4360 W:      http://www.marvell.com
4361 F:      drivers/i2c/busses/i2c-octeon*
4362 F:      drivers/i2c/busses/i2c-thunderx*
4363
4364 CAVIUM LIQUIDIO NETWORK DRIVER
4365 M:      Derek Chickles <dchickles@marvell.com>
4366 M:      Satanand Burla <sburla@marvell.com>
4367 M:      Felix Manlunas <fmanlunas@marvell.com>
4368 L:      netdev@vger.kernel.org
4369 S:      Supported
4370 W:      http://www.marvell.com
4371 F:      drivers/net/ethernet/cavium/liquidio/
4372
4373 CAVIUM MMC DRIVER
4374 M:      Robert Richter <rric@kernel.org>
4375 S:      Odd Fixes
4376 W:      http://www.marvell.com
4377 F:      drivers/mmc/host/cavium*
4378
4379 CAVIUM OCTEON-TX CRYPTO DRIVER
4380 M:      George Cherian <gcherian@marvell.com>
4381 L:      linux-crypto@vger.kernel.org
4382 S:      Supported
4383 W:      http://www.marvell.com
4384 F:      drivers/crypto/cavium/cpt/
4385
4386 CAVIUM THUNDERX2 ARM64 SOC
4387 M:      Robert Richter <rric@kernel.org>
4388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4389 S:      Odd Fixes
4390 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4391 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4392
4393 CBS/ETF/TAPRIO QDISCS
4394 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4395 S:      Maintained
4396 L:      netdev@vger.kernel.org
4397 F:      net/sched/sch_cbs.c
4398 F:      net/sched/sch_etf.c
4399 F:      net/sched/sch_taprio.c
4400
4401 CC2520 IEEE-802.15.4 RADIO DRIVER
4402 M:      Varka Bhadram <varkabhadram@gmail.com>
4403 L:      linux-wpan@vger.kernel.org
4404 S:      Maintained
4405 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4406 F:      drivers/net/ieee802154/cc2520.c
4407 F:      include/linux/spi/cc2520.h
4408
4409 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4410 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4411 L:      linux-crypto@vger.kernel.org
4412 S:      Supported
4413 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4414 F:      drivers/crypto/ccree/
4415
4416 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4417 M:      Hadar Gat <hadar.gat@arm.com>
4418 L:      linux-crypto@vger.kernel.org
4419 S:      Supported
4420 F:      drivers/char/hw_random/cctrng.c
4421 F:      drivers/char/hw_random/cctrng.h
4422 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4423 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4424
4425 CEC FRAMEWORK
4426 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4427 L:      linux-media@vger.kernel.org
4428 S:      Supported
4429 W:      http://linuxtv.org
4430 T:      git git://linuxtv.org/media_tree.git
4431 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4432 F:      Documentation/devicetree/bindings/media/cec.txt
4433 F:      Documentation/driver-api/media/cec-core.rst
4434 F:      Documentation/userspace-api/media/cec
4435 F:      drivers/media/cec/
4436 F:      drivers/media/rc/keymaps/rc-cec.c
4437 F:      include/media/cec-notifier.h
4438 F:      include/media/cec.h
4439 F:      include/uapi/linux/cec-funcs.h
4440 F:      include/uapi/linux/cec.h
4441
4442 CEC GPIO DRIVER
4443 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4444 L:      linux-media@vger.kernel.org
4445 S:      Supported
4446 W:      http://linuxtv.org
4447 T:      git git://linuxtv.org/media_tree.git
4448 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4449 F:      drivers/media/cec/platform/cec-gpio/
4450
4451 CELL BROADBAND ENGINE ARCHITECTURE
4452 M:      Arnd Bergmann <arnd@arndb.de>
4453 L:      linuxppc-dev@lists.ozlabs.org
4454 S:      Supported
4455 W:      http://www.ibm.com/developerworks/power/cell/
4456 F:      arch/powerpc/include/asm/cell*.h
4457 F:      arch/powerpc/include/asm/spu*.h
4458 F:      arch/powerpc/include/uapi/asm/spu*.h
4459 F:      arch/powerpc/platforms/cell/
4460
4461 CELLWISE CW2015 BATTERY DRIVER
4462 M:      Tobias Schrammm <t.schramm@manjaro.org>
4463 S:      Maintained
4464 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4465 F:      drivers/power/supply/cw2015_battery.c
4466
4467 CEPH COMMON CODE (LIBCEPH)
4468 M:      Ilya Dryomov <idryomov@gmail.com>
4469 M:      Jeff Layton <jlayton@kernel.org>
4470 M:      Xiubo Li <xiubli@redhat.com>
4471 L:      ceph-devel@vger.kernel.org
4472 S:      Supported
4473 W:      http://ceph.com/
4474 T:      git git://github.com/ceph/ceph-client.git
4475 F:      include/linux/ceph/
4476 F:      include/linux/crush/
4477 F:      net/ceph/
4478
4479 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4480 M:      Jeff Layton <jlayton@kernel.org>
4481 M:      Xiubo Li <xiubli@redhat.com>
4482 M:      Ilya Dryomov <idryomov@gmail.com>
4483 L:      ceph-devel@vger.kernel.org
4484 S:      Supported
4485 W:      http://ceph.com/
4486 T:      git git://github.com/ceph/ceph-client.git
4487 F:      Documentation/filesystems/ceph.rst
4488 F:      fs/ceph/
4489
4490 CERTIFICATE HANDLING
4491 M:      David Howells <dhowells@redhat.com>
4492 M:      David Woodhouse <dwmw2@infradead.org>
4493 L:      keyrings@vger.kernel.org
4494 S:      Maintained
4495 F:      Documentation/admin-guide/module-signing.rst
4496 F:      certs/
4497 F:      scripts/sign-file.c
4498
4499 CFAG12864B LCD DRIVER
4500 M:      Miguel Ojeda <ojeda@kernel.org>
4501 S:      Maintained
4502 F:      drivers/auxdisplay/cfag12864b.c
4503 F:      include/linux/cfag12864b.h
4504
4505 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4506 M:      Miguel Ojeda <ojeda@kernel.org>
4507 S:      Maintained
4508 F:      drivers/auxdisplay/cfag12864bfb.c
4509 F:      include/linux/cfag12864b.h
4510
4511 CHAR and MISC DRIVERS
4512 M:      Arnd Bergmann <arnd@arndb.de>
4513 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4514 S:      Supported
4515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4516 F:      drivers/char/
4517 F:      drivers/misc/
4518 F:      include/linux/miscdevice.h
4519 X:      drivers/char/agp/
4520 X:      drivers/char/hw_random/
4521 X:      drivers/char/ipmi/
4522 X:      drivers/char/random.c
4523 X:      drivers/char/tpm/
4524
4525 CHECKPATCH
4526 M:      Andy Whitcroft <apw@canonical.com>
4527 M:      Joe Perches <joe@perches.com>
4528 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4529 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4530 S:      Maintained
4531 F:      scripts/checkpatch.pl
4532
4533 CHECKPATCH DOCUMENTATION
4534 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4535 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4536 R:      Joe Perches <joe@perches.com>
4537 S:      Maintained
4538 F:      Documentation/dev-tools/checkpatch.rst
4539
4540 CHINESE DOCUMENTATION
4541 M:      Alex Shi <alexs@kernel.org>
4542 S:      Maintained
4543 F:      Documentation/translations/zh_CN/
4544
4545 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4546 M:      Peter Chen <peter.chen@kernel.org>
4547 L:      linux-usb@vger.kernel.org
4548 S:      Maintained
4549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4550 F:      drivers/usb/chipidea/
4551
4552 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4553 M:      Hans de Goede <hdegoede@redhat.com>
4554 L:      linux-input@vger.kernel.org
4555 S:      Maintained
4556 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4557 F:      drivers/input/touchscreen/chipone_icn8318.c
4558
4559 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4560 M:      Hans de Goede <hdegoede@redhat.com>
4561 L:      linux-input@vger.kernel.org
4562 S:      Maintained
4563 F:      drivers/input/touchscreen/chipone_icn8505.c
4564
4565 CHROME HARDWARE PLATFORM SUPPORT
4566 M:      Benson Leung <bleung@chromium.org>
4567 S:      Maintained
4568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4569 F:      drivers/platform/chrome/
4570
4571 CHROMEOS EC CODEC DRIVER
4572 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4573 M:      Tzung-Bi Shih <tzungbi@google.com>
4574 R:      Guenter Roeck <groeck@chromium.org>
4575 S:      Maintained
4576 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4577 F:      sound/soc/codecs/cros_ec_codec.*
4578
4579 CHROMEOS EC SUBDRIVERS
4580 M:      Benson Leung <bleung@chromium.org>
4581 R:      Guenter Roeck <groeck@chromium.org>
4582 S:      Maintained
4583 F:      drivers/power/supply/cros_usbpd-charger.c
4584 N:      cros_ec
4585 N:      cros-ec
4586
4587 CHROMEOS EC USB TYPE-C DRIVER
4588 M:      Prashant Malani <pmalani@chromium.org>
4589 S:      Maintained
4590 F:      drivers/platform/chrome/cros_ec_typec.c
4591
4592 CHROMEOS EC USB PD NOTIFY DRIVER
4593 M:      Prashant Malani <pmalani@chromium.org>
4594 S:      Maintained
4595 F:      drivers/platform/chrome/cros_usbpd_notify.c
4596 F:      include/linux/platform_data/cros_usbpd_notify.h
4597
4598 CHRONTEL CH7322 CEC DRIVER
4599 M:      Joe Tessler <jrt@google.com>
4600 L:      linux-media@vger.kernel.org
4601 S:      Maintained
4602 T:      git git://linuxtv.org/media_tree.git
4603 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4604 F:      drivers/media/cec/i2c/ch7322.c
4605
4606 CIRRUS LOGIC AUDIO CODEC DRIVERS
4607 M:      James Schulman <james.schulman@cirrus.com>
4608 M:      David Rhodes <david.rhodes@cirrus.com>
4609 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4610 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4611 L:      patches@opensource.cirrus.com
4612 S:      Maintained
4613 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4614 F:      sound/pci/hda/cs*
4615 F:      sound/soc/codecs/cs*
4616
4617 CIRRUS LOGIC DSP FIRMWARE DRIVER
4618 M:      Simon Trimmer <simont@opensource.cirrus.com>
4619 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4620 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4621 L:      patches@opensource.cirrus.com
4622 S:      Supported
4623 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4624 T:      git https://github.com/CirrusLogic/linux-drivers.git
4625 F:      drivers/firmware/cirrus/*
4626 F:      include/linux/firmware/cirrus/*
4627
4628 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4629 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4630 L:      netdev@vger.kernel.org
4631 S:      Maintained
4632 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4633
4634 CIRRUS LOGIC LOCHNAGAR DRIVER
4635 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4636 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4637 L:      patches@opensource.cirrus.com
4638 S:      Supported
4639 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4640 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4641 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4642 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4643 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4644 F:      Documentation/hwmon/lochnagar.rst
4645 F:      drivers/clk/clk-lochnagar.c
4646 F:      drivers/hwmon/lochnagar-hwmon.c
4647 F:      drivers/mfd/lochnagar-i2c.c
4648 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4649 F:      drivers/regulator/lochnagar-regulator.c
4650 F:      include/dt-bindings/clk/lochnagar.h
4651 F:      include/dt-bindings/pinctrl/lochnagar.h
4652 F:      include/linux/mfd/lochnagar*
4653 F:      sound/soc/codecs/lochnagar-sc.c
4654
4655 CIRRUS LOGIC MADERA CODEC DRIVERS
4656 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4657 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4658 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4659 L:      patches@opensource.cirrus.com
4660 S:      Supported
4661 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4662 T:      git https://github.com/CirrusLogic/linux-drivers.git
4663 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4664 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4665 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4666 F:      drivers/gpio/gpio-madera*
4667 F:      drivers/irqchip/irq-madera*
4668 F:      drivers/mfd/cs47l*
4669 F:      drivers/mfd/madera*
4670 F:      drivers/pinctrl/cirrus/*
4671 F:      include/dt-bindings/sound/madera*
4672 F:      include/linux/irqchip/irq-madera*
4673 F:      include/linux/mfd/madera/*
4674 F:      include/sound/madera*
4675 F:      sound/soc/codecs/cs47l*
4676 F:      sound/soc/codecs/madera*
4677
4678 CISCO FCOE HBA DRIVER
4679 M:      Satish Kharat <satishkh@cisco.com>
4680 M:      Sesidhar Baddela <sebaddel@cisco.com>
4681 M:      Karan Tilak Kumar <kartilak@cisco.com>
4682 L:      linux-scsi@vger.kernel.org
4683 S:      Supported
4684 F:      drivers/scsi/fnic/
4685
4686 CISCO SCSI HBA DRIVER
4687 M:      Karan Tilak Kumar <kartilak@cisco.com>
4688 M:      Sesidhar Baddela <sebaddel@cisco.com>
4689 L:      linux-scsi@vger.kernel.org
4690 S:      Supported
4691 F:      drivers/scsi/snic/
4692
4693 CISCO VIC ETHERNET NIC DRIVER
4694 M:      Christian Benvenuti <benve@cisco.com>
4695 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4696 S:      Supported
4697 F:      drivers/net/ethernet/cisco/enic/
4698
4699 CISCO VIC LOW LATENCY NIC DRIVER
4700 M:      Christian Benvenuti <benve@cisco.com>
4701 M:      Nelson Escobar <neescoba@cisco.com>
4702 S:      Supported
4703 F:      drivers/infiniband/hw/usnic/
4704
4705 CLANG-FORMAT FILE
4706 M:      Miguel Ojeda <ojeda@kernel.org>
4707 S:      Maintained
4708 F:      .clang-format
4709
4710 CLANG/LLVM BUILD SUPPORT
4711 M:      Nathan Chancellor <nathan@kernel.org>
4712 M:      Nick Desaulniers <ndesaulniers@google.com>
4713 L:      llvm@lists.linux.dev
4714 S:      Supported
4715 W:      https://clangbuiltlinux.github.io/
4716 B:      https://github.com/ClangBuiltLinux/linux/issues
4717 C:      irc://irc.libera.chat/clangbuiltlinux
4718 F:      Documentation/kbuild/llvm.rst
4719 F:      include/linux/compiler-clang.h
4720 F:      scripts/Makefile.clang
4721 F:      scripts/clang-tools/
4722 K:      \b(?i:clang|llvm)\b
4723
4724 CLANG CONTROL FLOW INTEGRITY SUPPORT
4725 M:      Sami Tolvanen <samitolvanen@google.com>
4726 M:      Kees Cook <keescook@chromium.org>
4727 R:      Nathan Chancellor <nathan@kernel.org>
4728 R:      Nick Desaulniers <ndesaulniers@google.com>
4729 L:      llvm@lists.linux.dev
4730 S:      Supported
4731 B:      https://github.com/ClangBuiltLinux/linux/issues
4732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4733 F:      include/linux/cfi.h
4734 F:      kernel/cfi.c
4735
4736 CLK API
4737 M:      Russell King <linux@armlinux.org.uk>
4738 L:      linux-clk@vger.kernel.org
4739 S:      Maintained
4740 F:      include/linux/clk.h
4741
4742 CLOCKSOURCE, CLOCKEVENT DRIVERS
4743 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4744 M:      Thomas Gleixner <tglx@linutronix.de>
4745 L:      linux-kernel@vger.kernel.org
4746 S:      Supported
4747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4748 F:      Documentation/devicetree/bindings/timer/
4749 F:      drivers/clocksource/
4750
4751 CMPC ACPI DRIVER
4752 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4753 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4754 L:      platform-driver-x86@vger.kernel.org
4755 S:      Supported
4756 F:      drivers/platform/x86/classmate-laptop.c
4757
4758 COBALT MEDIA DRIVER
4759 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4760 L:      linux-media@vger.kernel.org
4761 S:      Supported
4762 W:      https://linuxtv.org
4763 T:      git git://linuxtv.org/media_tree.git
4764 F:      drivers/media/pci/cobalt/
4765
4766 COCCINELLE/Semantic Patches (SmPL)
4767 M:      Julia Lawall <Julia.Lawall@inria.fr>
4768 M:      Nicolas Palix <nicolas.palix@imag.fr>
4769 L:      cocci@inria.fr (moderated for non-subscribers)
4770 S:      Supported
4771 W:      https://coccinelle.gitlabpages.inria.fr/website/
4772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4773 F:      Documentation/dev-tools/coccinelle.rst
4774 F:      scripts/coccicheck
4775 F:      scripts/coccinelle/
4776
4777 CODA FILE SYSTEM
4778 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4779 M:      coda@cs.cmu.edu
4780 L:      codalist@coda.cs.cmu.edu
4781 S:      Maintained
4782 W:      http://www.coda.cs.cmu.edu/
4783 F:      Documentation/filesystems/coda.rst
4784 F:      fs/coda/
4785 F:      include/linux/coda*.h
4786 F:      include/uapi/linux/coda*.h
4787
4788 CODA V4L2 MEM2MEM DRIVER
4789 M:      Philipp Zabel <p.zabel@pengutronix.de>
4790 L:      linux-media@vger.kernel.org
4791 S:      Maintained
4792 F:      Documentation/devicetree/bindings/media/coda.yaml
4793 F:      drivers/media/platform/chips-media/
4794
4795 CODE OF CONDUCT
4796 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4797 S:      Supported
4798 F:      Documentation/process/code-of-conduct-interpretation.rst
4799 F:      Documentation/process/code-of-conduct.rst
4800
4801 COMEDI DRIVERS
4802 M:      Ian Abbott <abbotti@mev.co.uk>
4803 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4804 S:      Odd Fixes
4805 F:      drivers/comedi/
4806 F:      include/linux/comedi/
4807 F:      include/uapi/linux/comedi.h
4808
4809 COMMON CLK FRAMEWORK
4810 M:      Michael Turquette <mturquette@baylibre.com>
4811 M:      Stephen Boyd <sboyd@kernel.org>
4812 L:      linux-clk@vger.kernel.org
4813 S:      Maintained
4814 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4816 F:      Documentation/devicetree/bindings/clock/
4817 F:      drivers/clk/
4818 F:      include/linux/clk-pr*
4819 F:      include/linux/clk/
4820 F:      include/linux/of_clk.h
4821 X:      drivers/clk/clkdev.c
4822
4823 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4824 M:      Steve French <sfrench@samba.org>
4825 L:      linux-cifs@vger.kernel.org
4826 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4827 S:      Supported
4828 W:      http://linux-cifs.samba.org/
4829 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4830 F:      Documentation/admin-guide/cifs/
4831 F:      fs/cifs/
4832 F:      fs/smbfs_common/
4833
4834 COMPACTPCI HOTPLUG CORE
4835 M:      Scott Murray <scott@spiteful.org>
4836 L:      linux-pci@vger.kernel.org
4837 S:      Maintained
4838 F:      drivers/pci/hotplug/cpci_hotplug*
4839
4840 COMPACTPCI HOTPLUG GENERIC DRIVER
4841 M:      Scott Murray <scott@spiteful.org>
4842 L:      linux-pci@vger.kernel.org
4843 S:      Maintained
4844 F:      drivers/pci/hotplug/cpcihp_generic.c
4845
4846 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4847 M:      Scott Murray <scott@spiteful.org>
4848 L:      linux-pci@vger.kernel.org
4849 S:      Maintained
4850 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4851
4852 COMPAL LAPTOP SUPPORT
4853 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4854 L:      platform-driver-x86@vger.kernel.org
4855 S:      Maintained
4856 F:      drivers/platform/x86/compal-laptop.c
4857
4858 COMPILER ATTRIBUTES
4859 M:      Miguel Ojeda <ojeda@kernel.org>
4860 R:      Nick Desaulniers <ndesaulniers@google.com>
4861 S:      Maintained
4862 F:      include/linux/compiler_attributes.h
4863
4864 COMPUTE EXPRESS LINK (CXL)
4865 M:      Alison Schofield <alison.schofield@intel.com>
4866 M:      Vishal Verma <vishal.l.verma@intel.com>
4867 M:      Ira Weiny <ira.weiny@intel.com>
4868 M:      Ben Widawsky <ben.widawsky@intel.com>
4869 M:      Dan Williams <dan.j.williams@intel.com>
4870 L:      linux-cxl@vger.kernel.org
4871 S:      Maintained
4872 F:      drivers/cxl/
4873 F:      include/uapi/linux/cxl_mem.h
4874
4875 CONEXANT ACCESSRUNNER USB DRIVER
4876 L:      accessrunner-general@lists.sourceforge.net
4877 S:      Orphan
4878 W:      http://accessrunner.sourceforge.net/
4879 F:      drivers/usb/atm/cxacru.c
4880
4881 CONFIGFS
4882 M:      Joel Becker <jlbec@evilplan.org>
4883 M:      Christoph Hellwig <hch@lst.de>
4884 S:      Supported
4885 T:      git git://git.infradead.org/users/hch/configfs.git
4886 F:      fs/configfs/
4887 F:      include/linux/configfs.h
4888 F:      samples/configfs/
4889
4890 CONSOLE SUBSYSTEM
4891 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4892 S:      Supported
4893 F:      drivers/video/console/
4894 F:      include/linux/console*
4895
4896 CONTEXT TRACKING
4897 M:      Frederic Weisbecker <frederic@kernel.org>
4898 S:      Maintained
4899 F:      kernel/context_tracking.c
4900 F:      include/linux/context_tracking*
4901
4902 CONTROL GROUP (CGROUP)
4903 M:      Tejun Heo <tj@kernel.org>
4904 M:      Zefan Li <lizefan.x@bytedance.com>
4905 M:      Johannes Weiner <hannes@cmpxchg.org>
4906 L:      cgroups@vger.kernel.org
4907 S:      Maintained
4908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4909 F:      Documentation/admin-guide/cgroup-v1/
4910 F:      Documentation/admin-guide/cgroup-v2.rst
4911 F:      include/linux/cgroup*
4912 F:      kernel/cgroup/
4913
4914 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4915 M:      Tejun Heo <tj@kernel.org>
4916 M:      Jens Axboe <axboe@kernel.dk>
4917 L:      cgroups@vger.kernel.org
4918 L:      linux-block@vger.kernel.org
4919 T:      git git://git.kernel.dk/linux-block
4920 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4921 F:      block/bfq-cgroup.c
4922 F:      block/blk-cgroup.c
4923 F:      block/blk-iolatency.c
4924 F:      block/blk-throttle.c
4925 F:      include/linux/blk-cgroup.h
4926
4927 CONTROL GROUP - CPUSET
4928 M:      Zefan Li <lizefan.x@bytedance.com>
4929 L:      cgroups@vger.kernel.org
4930 S:      Maintained
4931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4932 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4933 F:      include/linux/cpuset.h
4934 F:      kernel/cgroup/cpuset.c
4935
4936 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4937 M:      Johannes Weiner <hannes@cmpxchg.org>
4938 M:      Michal Hocko <mhocko@kernel.org>
4939 M:      Roman Gushchin <roman.gushchin@linux.dev>
4940 M:      Shakeel Butt <shakeelb@google.com>
4941 L:      cgroups@vger.kernel.org
4942 L:      linux-mm@kvack.org
4943 S:      Maintained
4944 F:      mm/memcontrol.c
4945 F:      mm/swap_cgroup.c
4946
4947 CORETEMP HARDWARE MONITORING DRIVER
4948 M:      Fenghua Yu <fenghua.yu@intel.com>
4949 L:      linux-hwmon@vger.kernel.org
4950 S:      Maintained
4951 F:      Documentation/hwmon/coretemp.rst
4952 F:      drivers/hwmon/coretemp.c
4953
4954 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4955 M:      Marius Zachmann <mail@mariuszachmann.de>
4956 L:      linux-hwmon@vger.kernel.org
4957 S:      Maintained
4958 F:      drivers/hwmon/corsair-cpro.c
4959
4960 CORSAIR-PSU HARDWARE MONITOR DRIVER
4961 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4962 L:      linux-hwmon@vger.kernel.org
4963 S:      Maintained
4964 F:      Documentation/hwmon/corsair-psu.rst
4965 F:      drivers/hwmon/corsair-psu.c
4966
4967 COSA/SRP SYNC SERIAL DRIVER
4968 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4969 S:      Maintained
4970 W:      http://www.fi.muni.cz/~kas/cosa/
4971 F:      drivers/net/wan/cosa*
4972
4973 COUNTER SUBSYSTEM
4974 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4975 L:      linux-iio@vger.kernel.org
4976 S:      Maintained
4977 F:      Documentation/ABI/testing/sysfs-bus-counter
4978 F:      Documentation/driver-api/generic-counter.rst
4979 F:      drivers/counter/
4980 F:      include/linux/counter.h
4981 F:      include/uapi/linux/counter.h
4982 F:      tools/counter/
4983
4984 CP2615 I2C DRIVER
4985 M:      Bence Csókás <bence98@sch.bme.hu>
4986 S:      Maintained
4987 F:      drivers/i2c/busses/i2c-cp2615.c
4988
4989 CPMAC ETHERNET DRIVER
4990 M:      Florian Fainelli <f.fainelli@gmail.com>
4991 L:      netdev@vger.kernel.org
4992 S:      Maintained
4993 F:      drivers/net/ethernet/ti/cpmac.c
4994
4995 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4996 M:      Viresh Kumar <viresh.kumar@linaro.org>
4997 M:      Sudeep Holla <sudeep.holla@arm.com>
4998 L:      linux-pm@vger.kernel.org
4999 S:      Maintained
5000 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5001 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5002
5003 CPU FREQUENCY SCALING FRAMEWORK
5004 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5005 M:      Viresh Kumar <viresh.kumar@linaro.org>
5006 L:      linux-pm@vger.kernel.org
5007 S:      Maintained
5008 B:      https://bugzilla.kernel.org
5009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5011 F:      Documentation/admin-guide/pm/cpufreq.rst
5012 F:      Documentation/admin-guide/pm/intel_pstate.rst
5013 F:      Documentation/cpu-freq/
5014 F:      Documentation/devicetree/bindings/cpufreq/
5015 F:      drivers/cpufreq/
5016 F:      include/linux/cpufreq.h
5017 F:      include/linux/sched/cpufreq.h
5018 F:      kernel/sched/cpufreq*.c
5019 F:      tools/testing/selftests/cpufreq/
5020
5021 CPU IDLE TIME MANAGEMENT FRAMEWORK
5022 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5023 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5024 L:      linux-pm@vger.kernel.org
5025 S:      Maintained
5026 B:      https://bugzilla.kernel.org
5027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5028 F:      Documentation/admin-guide/pm/cpuidle.rst
5029 F:      Documentation/driver-api/pm/cpuidle.rst
5030 F:      drivers/cpuidle/
5031 F:      include/linux/cpuidle.h
5032
5033 CPU POWER MONITORING SUBSYSTEM
5034 M:      Thomas Renninger <trenn@suse.com>
5035 M:      Shuah Khan <shuah@kernel.org>
5036 M:      Shuah Khan <skhan@linuxfoundation.org>
5037 L:      linux-pm@vger.kernel.org
5038 S:      Maintained
5039 F:      tools/power/cpupower/
5040
5041 CPUID/MSR DRIVER
5042 M:      "H. Peter Anvin" <hpa@zytor.com>
5043 S:      Maintained
5044 F:      arch/x86/kernel/cpuid.c
5045 F:      arch/x86/kernel/msr.c
5046
5047 CPUIDLE DRIVER - ARM BIG LITTLE
5048 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5049 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5050 L:      linux-pm@vger.kernel.org
5051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5052 S:      Maintained
5053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5054 F:      drivers/cpuidle/cpuidle-big_little.c
5055
5056 CPUIDLE DRIVER - ARM EXYNOS
5057 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5058 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5059 M:      Kukjin Kim <kgene@kernel.org>
5060 L:      linux-pm@vger.kernel.org
5061 L:      linux-samsung-soc@vger.kernel.org
5062 S:      Supported
5063 F:      arch/arm/mach-exynos/pm.c
5064 F:      drivers/cpuidle/cpuidle-exynos.c
5065 F:      include/linux/platform_data/cpuidle-exynos.h
5066
5067 CPUIDLE DRIVER - ARM PSCI
5068 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5069 M:      Sudeep Holla <sudeep.holla@arm.com>
5070 L:      linux-pm@vger.kernel.org
5071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5072 S:      Supported
5073 F:      drivers/cpuidle/cpuidle-psci.c
5074
5075 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5076 M:      Ulf Hansson <ulf.hansson@linaro.org>
5077 L:      linux-pm@vger.kernel.org
5078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5079 S:      Supported
5080 F:      drivers/cpuidle/cpuidle-psci.h
5081 F:      drivers/cpuidle/cpuidle-psci-domain.c
5082
5083 CRAMFS FILESYSTEM
5084 M:      Nicolas Pitre <nico@fluxnic.net>
5085 S:      Maintained
5086 F:      Documentation/filesystems/cramfs.rst
5087 F:      fs/cramfs/
5088
5089 CREATIVE SB0540
5090 M:      Bastien Nocera <hadess@hadess.net>
5091 L:      linux-input@vger.kernel.org
5092 S:      Maintained
5093 F:      drivers/hid/hid-creative-sb0540.c
5094
5095 CRYPTO API
5096 M:      Herbert Xu <herbert@gondor.apana.org.au>
5097 M:      "David S. Miller" <davem@davemloft.net>
5098 L:      linux-crypto@vger.kernel.org
5099 S:      Maintained
5100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5102 F:      Documentation/crypto/
5103 F:      Documentation/devicetree/bindings/crypto/
5104 F:      arch/*/crypto/
5105 F:      crypto/
5106 F:      drivers/crypto/
5107 F:      include/crypto/
5108 F:      include/linux/crypto*
5109 F:      lib/crypto/
5110
5111 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5112 M:      Neil Horman <nhorman@tuxdriver.com>
5113 L:      linux-crypto@vger.kernel.org
5114 S:      Maintained
5115 F:      crypto/ansi_cprng.c
5116 F:      crypto/rng.c
5117
5118 CS3308 MEDIA DRIVER
5119 M:      Hans Verkuil <hverkuil@xs4all.nl>
5120 L:      linux-media@vger.kernel.org
5121 S:      Odd Fixes
5122 W:      http://linuxtv.org
5123 T:      git git://linuxtv.org/media_tree.git
5124 F:      drivers/media/i2c/cs3308.c
5125
5126 CS5535 Audio ALSA driver
5127 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5128 S:      Maintained
5129 F:      sound/pci/cs5535audio/
5130
5131 CSI DRIVERS FOR ALLWINNER V3s
5132 M:      Yong Deng <yong.deng@magewell.com>
5133 L:      linux-media@vger.kernel.org
5134 S:      Maintained
5135 T:      git git://linuxtv.org/media_tree.git
5136 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5137 F:      drivers/media/platform/sunxi/sun6i-csi/
5138
5139 CW1200 WLAN driver
5140 M:      Solomon Peachy <pizza@shaftnet.org>
5141 S:      Maintained
5142 F:      drivers/net/wireless/st/cw1200/
5143
5144 CX18 VIDEO4LINUX DRIVER
5145 M:      Andy Walls <awalls@md.metrocast.net>
5146 L:      linux-media@vger.kernel.org
5147 S:      Maintained
5148 W:      https://linuxtv.org
5149 T:      git git://linuxtv.org/media_tree.git
5150 F:      drivers/media/pci/cx18/
5151 F:      include/uapi/linux/ivtv*
5152
5153 CX2341X MPEG ENCODER HELPER MODULE
5154 M:      Hans Verkuil <hverkuil@xs4all.nl>
5155 L:      linux-media@vger.kernel.org
5156 S:      Maintained
5157 W:      https://linuxtv.org
5158 T:      git git://linuxtv.org/media_tree.git
5159 F:      drivers/media/common/cx2341x*
5160 F:      include/media/drv-intf/cx2341x.h
5161
5162 CX24120 MEDIA DRIVER
5163 M:      Jemma Denson <jdenson@gmail.com>
5164 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5165 L:      linux-media@vger.kernel.org
5166 S:      Maintained
5167 W:      https://linuxtv.org
5168 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5169 F:      drivers/media/dvb-frontends/cx24120*
5170
5171 CX88 VIDEO4LINUX DRIVER
5172 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5173 L:      linux-media@vger.kernel.org
5174 S:      Odd fixes
5175 W:      https://linuxtv.org
5176 T:      git git://linuxtv.org/media_tree.git
5177 F:      Documentation/driver-api/media/drivers/cx88*
5178 F:      drivers/media/pci/cx88/
5179
5180 CXD2820R MEDIA DRIVER
5181 M:      Antti Palosaari <crope@iki.fi>
5182 L:      linux-media@vger.kernel.org
5183 S:      Maintained
5184 W:      https://linuxtv.org
5185 W:      http://palosaari.fi/linux/
5186 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5187 T:      git git://linuxtv.org/anttip/media_tree.git
5188 F:      drivers/media/dvb-frontends/cxd2820r*
5189
5190 CXGB3 ETHERNET DRIVER (CXGB3)
5191 M:      Raju Rangoju <rajur@chelsio.com>
5192 L:      netdev@vger.kernel.org
5193 S:      Supported
5194 W:      http://www.chelsio.com
5195 F:      drivers/net/ethernet/chelsio/cxgb3/
5196
5197 CXGB3 ISCSI DRIVER (CXGB3I)
5198 M:      Karen Xie <kxie@chelsio.com>
5199 L:      linux-scsi@vger.kernel.org
5200 S:      Supported
5201 W:      http://www.chelsio.com
5202 F:      drivers/scsi/cxgbi/cxgb3i
5203
5204 CXGB4 CRYPTO DRIVER (chcr)
5205 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5206 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5207 M:      Rohit Maheshwari <rohitm@chelsio.com>
5208 L:      linux-crypto@vger.kernel.org
5209 S:      Supported
5210 W:      http://www.chelsio.com
5211 F:      drivers/crypto/chelsio
5212
5213 CXGB4 INLINE CRYPTO DRIVER
5214 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5215 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5216 M:      Rohit Maheshwari <rohitm@chelsio.com>
5217 L:      netdev@vger.kernel.org
5218 S:      Supported
5219 W:      http://www.chelsio.com
5220 F:      drivers/net/ethernet/chelsio/inline_crypto/
5221
5222 CXGB4 ETHERNET DRIVER (CXGB4)
5223 M:      Raju Rangoju <rajur@chelsio.com>
5224 L:      netdev@vger.kernel.org
5225 S:      Supported
5226 W:      http://www.chelsio.com
5227 F:      drivers/net/ethernet/chelsio/cxgb4/
5228
5229 CXGB4 ISCSI DRIVER (CXGB4I)
5230 M:      Karen Xie <kxie@chelsio.com>
5231 L:      linux-scsi@vger.kernel.org
5232 S:      Supported
5233 W:      http://www.chelsio.com
5234 F:      drivers/scsi/cxgbi/cxgb4i
5235
5236 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5237 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5238 L:      linux-rdma@vger.kernel.org
5239 S:      Supported
5240 W:      http://www.openfabrics.org
5241 F:      drivers/infiniband/hw/cxgb4/
5242 F:      include/uapi/rdma/cxgb4-abi.h
5243
5244 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5245 M:      Raju Rangoju <rajur@chelsio.com>
5246 L:      netdev@vger.kernel.org
5247 S:      Supported
5248 W:      http://www.chelsio.com
5249 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5250
5251 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5252 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5253 M:      Andrew Donnellan <ajd@linux.ibm.com>
5254 L:      linuxppc-dev@lists.ozlabs.org
5255 S:      Supported
5256 F:      Documentation/ABI/testing/sysfs-class-cxl
5257 F:      Documentation/powerpc/cxl.rst
5258 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5259 F:      drivers/misc/cxl/
5260 F:      include/misc/cxl*
5261 F:      include/uapi/misc/cxl.h
5262
5263 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5264 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5265 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5266 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5267 L:      linux-scsi@vger.kernel.org
5268 S:      Supported
5269 F:      Documentation/powerpc/cxlflash.rst
5270 F:      drivers/scsi/cxlflash/
5271 F:      include/uapi/scsi/cxlflash_ioctl.h
5272
5273 CYBERPRO FB DRIVER
5274 M:      Russell King <linux@armlinux.org.uk>
5275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5276 S:      Maintained
5277 W:      http://www.armlinux.org.uk/
5278 F:      drivers/video/fbdev/cyber2000fb.*
5279
5280 CYCLADES PC300 DRIVER
5281 S:      Orphan
5282 F:      drivers/net/wan/pc300*
5283
5284 CYPRESS_FIRMWARE MEDIA DRIVER
5285 M:      Antti Palosaari <crope@iki.fi>
5286 L:      linux-media@vger.kernel.org
5287 S:      Maintained
5288 W:      https://linuxtv.org
5289 W:      http://palosaari.fi/linux/
5290 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5291 T:      git git://linuxtv.org/anttip/media_tree.git
5292 F:      drivers/media/common/cypress_firmware*
5293
5294 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5295 M:      Linus Walleij <linus.walleij@linaro.org>
5296 L:      linux-input@vger.kernel.org
5297 S:      Maintained
5298 F:      drivers/input/touchscreen/cy8ctma140.c
5299
5300 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5301 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5302 L:      linux-input@vger.kernel.org
5303 S:      Maintained
5304 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5305 F:      drivers/input/keyboard/cypress-sf.c
5306
5307 CYTTSP TOUCHSCREEN DRIVER
5308 M:      Linus Walleij <linus.walleij@linaro.org>
5309 L:      linux-input@vger.kernel.org
5310 S:      Maintained
5311 F:      drivers/input/touchscreen/cyttsp*
5312
5313 D-LINK DIR-685 TOUCHKEYS DRIVER
5314 M:      Linus Walleij <linus.walleij@linaro.org>
5315 L:      linux-input@vger.kernel.org
5316 S:      Supported
5317 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5318
5319 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5320 M:      Joshua Kinard <kumba@gentoo.org>
5321 S:      Maintained
5322 F:      drivers/rtc/rtc-ds1685.c
5323 F:      include/linux/rtc/ds1685.h
5324
5325 DAMA SLAVE for AX.25
5326 M:      Joerg Reuter <jreuter@yaina.de>
5327 L:      linux-hams@vger.kernel.org
5328 S:      Maintained
5329 W:      http://yaina.de/jreuter/
5330 W:      http://www.qsl.net/dl1bke/
5331 F:      net/ax25/af_ax25.c
5332 F:      net/ax25/ax25_dev.c
5333 F:      net/ax25/ax25_ds_*
5334 F:      net/ax25/ax25_in.c
5335 F:      net/ax25/ax25_out.c
5336 F:      net/ax25/ax25_timer.c
5337 F:      net/ax25/sysctl_net_ax25.c
5338
5339 DATA ACCESS MONITOR
5340 M:      SeongJae Park <sj@kernel.org>
5341 L:      linux-mm@kvack.org
5342 S:      Maintained
5343 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5344 F:      Documentation/admin-guide/mm/damon/
5345 F:      Documentation/vm/damon/
5346 F:      include/linux/damon.h
5347 F:      include/trace/events/damon.h
5348 F:      mm/damon/
5349 F:      tools/testing/selftests/damon/
5350
5351 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5352 L:      netdev@vger.kernel.org
5353 S:      Orphan
5354 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5355 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5356
5357 DC390/AM53C974 SCSI driver
5358 M:      Hannes Reinecke <hare@suse.com>
5359 L:      linux-scsi@vger.kernel.org
5360 S:      Maintained
5361 F:      drivers/scsi/am53c974.c
5362
5363 DC395x SCSI driver
5364 M:      Oliver Neukum <oliver@neukum.org>
5365 M:      Ali Akcaagac <aliakc@web.de>
5366 M:      Jamie Lenehan <lenehan@twibble.org>
5367 L:      dc395x@twibble.org
5368 S:      Maintained
5369 W:      http://twibble.org/dist/dc395x/
5370 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5371 F:      Documentation/scsi/dc395x.rst
5372 F:      drivers/scsi/dc395x.*
5373
5374 DCCP PROTOCOL
5375 L:      dccp@vger.kernel.org
5376 S:      Orphan
5377 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5378 F:      include/linux/dccp.h
5379 F:      include/linux/tfrc.h
5380 F:      include/uapi/linux/dccp.h
5381 F:      net/dccp/
5382
5383 DECnet NETWORK LAYER
5384 L:      linux-decnet-user@lists.sourceforge.net
5385 S:      Orphan
5386 W:      http://linux-decnet.sourceforge.net
5387 F:      Documentation/networking/decnet.rst
5388 F:      net/decnet/
5389
5390 DECSTATION PLATFORM SUPPORT
5391 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5392 L:      linux-mips@vger.kernel.org
5393 S:      Maintained
5394 W:      http://www.linux-mips.org/wiki/DECstation
5395 F:      arch/mips/dec/
5396 F:      arch/mips/include/asm/dec/
5397 F:      arch/mips/include/asm/mach-dec/
5398
5399 DEFXX FDDI NETWORK DRIVER
5400 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5401 S:      Maintained
5402 F:      drivers/net/fddi/defxx.*
5403
5404 DEFZA FDDI NETWORK DRIVER
5405 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5406 S:      Maintained
5407 F:      drivers/net/fddi/defza.*
5408
5409 DEINTERLACE DRIVERS FOR ALLWINNER H3
5410 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5411 L:      linux-media@vger.kernel.org
5412 S:      Maintained
5413 T:      git git://linuxtv.org/media_tree.git
5414 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5415 F:      drivers/media/platform/sunxi/sun8i-di/
5416
5417 DELL LAPTOP DRIVER
5418 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5419 M:      Pali Rohár <pali@kernel.org>
5420 L:      platform-driver-x86@vger.kernel.org
5421 S:      Maintained
5422 F:      drivers/platform/x86/dell/dell-laptop.c
5423
5424 DELL LAPTOP FREEFALL DRIVER
5425 M:      Pali Rohár <pali@kernel.org>
5426 S:      Maintained
5427 F:      drivers/platform/x86/dell/dell-smo8800.c
5428
5429 DELL LAPTOP RBTN DRIVER
5430 M:      Pali Rohár <pali@kernel.org>
5431 S:      Maintained
5432 F:      drivers/platform/x86/dell/dell-rbtn.*
5433
5434 DELL LAPTOP SMM DRIVER
5435 M:      Pali Rohár <pali@kernel.org>
5436 S:      Maintained
5437 F:      Documentation/ABI/obsolete/procfs-i8k
5438 F:      drivers/hwmon/dell-smm-hwmon.c
5439 F:      include/uapi/linux/i8k.h
5440
5441 DELL REMOTE BIOS UPDATE DRIVER
5442 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5443 L:      platform-driver-x86@vger.kernel.org
5444 S:      Maintained
5445 F:      drivers/platform/x86/dell/dell_rbu.c
5446
5447 DELL SMBIOS DRIVER
5448 M:      Pali Rohár <pali@kernel.org>
5449 L:      Dell.Client.Kernel@dell.com
5450 L:      platform-driver-x86@vger.kernel.org
5451 S:      Maintained
5452 F:      drivers/platform/x86/dell/dell-smbios.*
5453
5454 DELL SMBIOS SMM DRIVER
5455 L:      Dell.Client.Kernel@dell.com
5456 L:      platform-driver-x86@vger.kernel.org
5457 S:      Maintained
5458 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5459
5460 DELL SMBIOS WMI DRIVER
5461 L:      Dell.Client.Kernel@dell.com
5462 L:      platform-driver-x86@vger.kernel.org
5463 S:      Maintained
5464 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5465 F:      tools/wmi/dell-smbios-example.c
5466
5467 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5468 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5469 L:      platform-driver-x86@vger.kernel.org
5470 S:      Maintained
5471 F:      Documentation/driver-api/dcdbas.rst
5472 F:      drivers/platform/x86/dell/dcdbas.*
5473
5474 DELL WMI DESCRIPTOR DRIVER
5475 L:      Dell.Client.Kernel@dell.com
5476 S:      Maintained
5477 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5478
5479 DELL WMI SYSMAN DRIVER
5480 M:      Divya Bharathi <divya.bharathi@dell.com>
5481 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5482 L:      Dell.Client.Kernel@dell.com
5483 L:      platform-driver-x86@vger.kernel.org
5484 S:      Maintained
5485 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5486 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5487
5488 DELL WMI NOTIFICATIONS DRIVER
5489 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5490 M:      Pali Rohár <pali@kernel.org>
5491 S:      Maintained
5492 F:      drivers/platform/x86/dell/dell-wmi-base.c
5493
5494 DELL WMI HARDWARE PRIVACY SUPPORT
5495 M:      Perry Yuan <Perry.Yuan@dell.com>
5496 L:      Dell.Client.Kernel@dell.com
5497 L:      platform-driver-x86@vger.kernel.org
5498 S:      Maintained
5499 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5500
5501 DELTA ST MEDIA DRIVER
5502 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5503 L:      linux-media@vger.kernel.org
5504 S:      Supported
5505 W:      https://linuxtv.org
5506 T:      git git://linuxtv.org/media_tree.git
5507 F:      drivers/media/platform/st/sti/delta
5508
5509 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5510 M:      Zev Weiss <zev@bewilderbeest.net>
5511 L:      linux-hwmon@vger.kernel.org
5512 S:      Maintained
5513 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5514
5515 DELTA DPS920AB PSU DRIVER
5516 M:      Robert Marko <robert.marko@sartura.hr>
5517 L:      linux-hwmon@vger.kernel.org
5518 S:      Maintained
5519 F:      Documentation/hwmon/dps920ab.rst
5520 F:      drivers/hwmon/pmbus/dps920ab.c
5521
5522 DENALI NAND DRIVER
5523 L:      linux-mtd@lists.infradead.org
5524 S:      Orphan
5525 F:      drivers/mtd/nand/raw/denali*
5526
5527 DESIGNWARE EDMA CORE IP DRIVER
5528 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5529 L:      dmaengine@vger.kernel.org
5530 S:      Maintained
5531 F:      drivers/dma/dw-edma/
5532 F:      include/linux/dma/edma.h
5533
5534 DESIGNWARE XDATA IP DRIVER
5535 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5536 L:      linux-pci@vger.kernel.org
5537 S:      Maintained
5538 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5539 F:      drivers/misc/dw-xdata-pcie.c
5540
5541 DESIGNWARE USB2 DRD IP DRIVER
5542 M:      Minas Harutyunyan <hminas@synopsys.com>
5543 L:      linux-usb@vger.kernel.org
5544 S:      Maintained
5545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5546 F:      drivers/usb/dwc2/
5547
5548 DESIGNWARE USB3 DRD IP DRIVER
5549 M:      Felipe Balbi <balbi@kernel.org>
5550 L:      linux-usb@vger.kernel.org
5551 S:      Maintained
5552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5553 F:      drivers/usb/dwc3/
5554
5555 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5556 M:      Andreas Klinger <ak@it-klinger.de>
5557 L:      linux-iio@vger.kernel.org
5558 S:      Maintained
5559 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5560 F:      drivers/iio/proximity/srf*.c
5561
5562 DEVICE COREDUMP (DEV_COREDUMP)
5563 M:      Johannes Berg <johannes@sipsolutions.net>
5564 L:      linux-kernel@vger.kernel.org
5565 S:      Maintained
5566 F:      drivers/base/devcoredump.c
5567 F:      include/linux/devcoredump.h
5568
5569 DEVICE DEPENDENCY HELPER SCRIPT
5570 M:      Saravana Kannan <saravanak@google.com>
5571 L:      linux-kernel@vger.kernel.org
5572 S:      Maintained
5573 F:      scripts/dev-needs.sh
5574
5575 DEVICE DIRECT ACCESS (DAX)
5576 M:      Dan Williams <dan.j.williams@intel.com>
5577 M:      Vishal Verma <vishal.l.verma@intel.com>
5578 M:      Dave Jiang <dave.jiang@intel.com>
5579 L:      nvdimm@lists.linux.dev
5580 S:      Supported
5581 F:      drivers/dax/
5582
5583 DEVICE FREQUENCY (DEVFREQ)
5584 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5585 M:      Kyungmin Park <kyungmin.park@samsung.com>
5586 M:      Chanwoo Choi <cw00.choi@samsung.com>
5587 L:      linux-pm@vger.kernel.org
5588 S:      Maintained
5589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5590 F:      Documentation/devicetree/bindings/devfreq/
5591 F:      drivers/devfreq/
5592 F:      include/linux/devfreq.h
5593 F:      include/trace/events/devfreq.h
5594
5595 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5596 M:      Chanwoo Choi <cw00.choi@samsung.com>
5597 L:      linux-pm@vger.kernel.org
5598 S:      Supported
5599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5600 F:      Documentation/devicetree/bindings/devfreq/event/
5601 F:      drivers/devfreq/devfreq-event.c
5602 F:      drivers/devfreq/event/
5603 F:      include/dt-bindings/pmu/exynos_ppmu.h
5604 F:      include/linux/devfreq-event.h
5605
5606 DEVICE NUMBER REGISTRY
5607 M:      Torben Mathiasen <device@lanana.org>
5608 S:      Maintained
5609 W:      http://lanana.org/docs/device-list/index.html
5610
5611 DEVICE RESOURCE MANAGEMENT HELPERS
5612 M:      Hans de Goede <hdegoede@redhat.com>
5613 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5614 S:      Maintained
5615 F:      include/linux/devm-helpers.h
5616
5617 DEVICE-MAPPER  (LVM)
5618 M:      Alasdair Kergon <agk@redhat.com>
5619 M:      Mike Snitzer <snitzer@kernel.org>
5620 M:      dm-devel@redhat.com
5621 L:      dm-devel@redhat.com
5622 S:      Maintained
5623 W:      http://sources.redhat.com/dm
5624 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5626 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5627 F:      Documentation/admin-guide/device-mapper/
5628 F:      drivers/md/Kconfig
5629 F:      drivers/md/Makefile
5630 F:      drivers/md/dm*
5631 F:      drivers/md/persistent-data/
5632 F:      include/linux/device-mapper.h
5633 F:      include/linux/dm-*.h
5634 F:      include/uapi/linux/dm-*.h
5635
5636 DEVLINK
5637 M:      Jiri Pirko <jiri@nvidia.com>
5638 L:      netdev@vger.kernel.org
5639 S:      Supported
5640 F:      Documentation/networking/devlink
5641 F:      include/net/devlink.h
5642 F:      include/uapi/linux/devlink.h
5643 F:      net/core/devlink.c
5644
5645 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5646 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5647 L:      kernel@dh-electronics.com
5648 S:      Maintained
5649 F:      arch/arm/boot/dts/imx6*-dhcom-*
5650
5651 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5652 M:      Marek Vasut <marex@denx.de>
5653 L:      kernel@dh-electronics.com
5654 S:      Maintained
5655 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5656 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5657
5658 DIALOG SEMICONDUCTOR DRIVERS
5659 M:      Support Opensource <support.opensource@diasemi.com>
5660 S:      Supported
5661 W:      http://www.dialog-semiconductor.com/products
5662 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5663 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5664 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5665 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5666 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5667 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5668 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5669 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5670 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5671 F:      Documentation/hwmon/da90??.rst
5672 F:      drivers/gpio/gpio-da90??.c
5673 F:      drivers/hwmon/da90??-hwmon.c
5674 F:      drivers/iio/adc/da91??-*.c
5675 F:      drivers/input/misc/da72??.[ch]
5676 F:      drivers/input/misc/da90??_onkey.c
5677 F:      drivers/input/touchscreen/da9052_tsi.c
5678 F:      drivers/leds/leds-da90??.c
5679 F:      drivers/mfd/da903x.c
5680 F:      drivers/mfd/da90??-*.c
5681 F:      drivers/mfd/da91??-*.c
5682 F:      drivers/pinctrl/pinctrl-da90??.c
5683 F:      drivers/power/supply/da9052-battery.c
5684 F:      drivers/power/supply/da91??-*.c
5685 F:      drivers/regulator/da9???-regulator.[ch]
5686 F:      drivers/regulator/slg51000-regulator.[ch]
5687 F:      drivers/rtc/rtc-da90??.c
5688 F:      drivers/thermal/da90??-thermal.c
5689 F:      drivers/video/backlight/da90??_bl.c
5690 F:      drivers/watchdog/da90??_wdt.c
5691 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5692 F:      include/linux/mfd/da903x.h
5693 F:      include/linux/mfd/da9052/
5694 F:      include/linux/mfd/da9055/
5695 F:      include/linux/mfd/da9062/
5696 F:      include/linux/mfd/da9063/
5697 F:      include/linux/mfd/da9150/
5698 F:      include/linux/regulator/da9211.h
5699 F:      include/sound/da[79]*.h
5700 F:      sound/soc/codecs/da[79]*.[ch]
5701
5702 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5703 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5704 L:      linux-gpio@vger.kernel.org
5705 S:      Maintained
5706 F:      drivers/gpio/gpio-gpio-mm.c
5707
5708 DIOLAN U2C-12 I2C DRIVER
5709 M:      Guenter Roeck <linux@roeck-us.net>
5710 L:      linux-i2c@vger.kernel.org
5711 S:      Maintained
5712 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5713
5714 DIRECTORY NOTIFICATION (DNOTIFY)
5715 M:      Jan Kara <jack@suse.cz>
5716 R:      Amir Goldstein <amir73il@gmail.com>
5717 L:      linux-fsdevel@vger.kernel.org
5718 S:      Maintained
5719 F:      Documentation/filesystems/dnotify.rst
5720 F:      fs/notify/dnotify/
5721 F:      include/linux/dnotify.h
5722
5723 DISK GEOMETRY AND PARTITION HANDLING
5724 M:      Andries Brouwer <aeb@cwi.nl>
5725 S:      Maintained
5726 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5727 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5728 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5729
5730 DISKQUOTA
5731 M:      Jan Kara <jack@suse.com>
5732 S:      Maintained
5733 F:      Documentation/filesystems/quota.rst
5734 F:      fs/quota/
5735 F:      include/linux/quota*.h
5736 F:      include/uapi/linux/quota*.h
5737
5738 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5739 M:      Bernie Thompson <bernie@plugable.com>
5740 L:      linux-fbdev@vger.kernel.org
5741 S:      Maintained
5742 W:      http://plugable.com/category/projects/udlfb/
5743 F:      Documentation/fb/udlfb.rst
5744 F:      drivers/video/fbdev/udlfb.c
5745 F:      include/video/udlfb.h
5746
5747 DISTRIBUTED LOCK MANAGER (DLM)
5748 M:      Christine Caulfield <ccaulfie@redhat.com>
5749 M:      David Teigland <teigland@redhat.com>
5750 L:      cluster-devel@redhat.com
5751 S:      Supported
5752 W:      http://sources.redhat.com/cluster/
5753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5754 F:      fs/dlm/
5755
5756 DMA BUFFER SHARING FRAMEWORK
5757 M:      Sumit Semwal <sumit.semwal@linaro.org>
5758 M:      Christian König <christian.koenig@amd.com>
5759 L:      linux-media@vger.kernel.org
5760 L:      dri-devel@lists.freedesktop.org
5761 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5762 S:      Maintained
5763 T:      git git://anongit.freedesktop.org/drm/drm-misc
5764 F:      Documentation/driver-api/dma-buf.rst
5765 F:      drivers/dma-buf/
5766 F:      include/linux/*fence.h
5767 F:      include/linux/dma-buf.h
5768 F:      include/linux/dma-resv.h
5769 K:      \bdma_(?:buf|fence|resv)\b
5770
5771 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5772 M:      Vinod Koul <vkoul@kernel.org>
5773 L:      dmaengine@vger.kernel.org
5774 S:      Maintained
5775 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5777 F:      Documentation/devicetree/bindings/dma/
5778 F:      Documentation/driver-api/dmaengine/
5779 F:      drivers/dma/
5780 F:      include/linux/dma/
5781 F:      include/linux/dmaengine.h
5782 F:      include/linux/of_dma.h
5783
5784 DMA MAPPING HELPERS
5785 M:      Christoph Hellwig <hch@lst.de>
5786 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5787 R:      Robin Murphy <robin.murphy@arm.com>
5788 L:      iommu@lists.linux-foundation.org
5789 S:      Supported
5790 W:      http://git.infradead.org/users/hch/dma-mapping.git
5791 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5792 F:      include/asm-generic/dma-mapping.h
5793 F:      include/linux/dma-direct.h
5794 F:      include/linux/dma-mapping.h
5795 F:      include/linux/dma-map-ops.h
5796 F:      kernel/dma/
5797
5798 DMA MAPPING BENCHMARK
5799 M:      Barry Song <song.bao.hua@hisilicon.com>
5800 L:      iommu@lists.linux-foundation.org
5801 F:      kernel/dma/map_benchmark.c
5802 F:      tools/testing/selftests/dma/
5803
5804 DMA-BUF HEAPS FRAMEWORK
5805 M:      Sumit Semwal <sumit.semwal@linaro.org>
5806 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
5807 R:      Liam Mark <lmark@codeaurora.org>
5808 R:      Laura Abbott <labbott@redhat.com>
5809 R:      Brian Starkey <Brian.Starkey@arm.com>
5810 R:      John Stultz <john.stultz@linaro.org>
5811 L:      linux-media@vger.kernel.org
5812 L:      dri-devel@lists.freedesktop.org
5813 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5814 S:      Maintained
5815 T:      git git://anongit.freedesktop.org/drm/drm-misc
5816 F:      drivers/dma-buf/dma-heap.c
5817 F:      drivers/dma-buf/heaps/*
5818 F:      include/linux/dma-heap.h
5819 F:      include/uapi/linux/dma-heap.h
5820
5821 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5822 M:      Lukasz Luba <lukasz.luba@arm.com>
5823 L:      linux-pm@vger.kernel.org
5824 L:      linux-samsung-soc@vger.kernel.org
5825 S:      Maintained
5826 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5827 F:      drivers/memory/samsung/exynos5422-dmc.c
5828
5829 DME1737 HARDWARE MONITOR DRIVER
5830 M:      Juerg Haefliger <juergh@gmail.com>
5831 L:      linux-hwmon@vger.kernel.org
5832 S:      Maintained
5833 F:      Documentation/hwmon/dme1737.rst
5834 F:      drivers/hwmon/dme1737.c
5835
5836 DMI/SMBIOS SUPPORT
5837 M:      Jean Delvare <jdelvare@suse.com>
5838 S:      Maintained
5839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5840 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5841 F:      drivers/firmware/dmi-id.c
5842 F:      drivers/firmware/dmi_scan.c
5843 F:      include/linux/dmi.h
5844
5845 DOCUMENTATION
5846 M:      Jonathan Corbet <corbet@lwn.net>
5847 L:      linux-doc@vger.kernel.org
5848 S:      Maintained
5849 P:      Documentation/doc-guide/maintainer-profile.rst
5850 T:      git git://git.lwn.net/linux.git docs-next
5851 F:      Documentation/
5852 F:      scripts/documentation-file-ref-check
5853 F:      scripts/kernel-doc
5854 F:      scripts/sphinx-pre-install
5855 X:      Documentation/ABI/
5856 X:      Documentation/admin-guide/media/
5857 X:      Documentation/devicetree/
5858 X:      Documentation/driver-api/media/
5859 X:      Documentation/firmware-guide/acpi/
5860 X:      Documentation/i2c/
5861 X:      Documentation/power/
5862 X:      Documentation/spi/
5863 X:      Documentation/userspace-api/media/
5864
5865 DOCUMENTATION REPORTING ISSUES
5866 M:      Thorsten Leemhuis <linux@leemhuis.info>
5867 L:      linux-doc@vger.kernel.org
5868 S:      Maintained
5869 F:      Documentation/admin-guide/reporting-issues.rst
5870
5871 DOCUMENTATION SCRIPTS
5872 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5873 L:      linux-doc@vger.kernel.org
5874 S:      Maintained
5875 F:      Documentation/sphinx/parse-headers.pl
5876 F:      scripts/documentation-file-ref-check
5877 F:      scripts/sphinx-pre-install
5878
5879 DOCUMENTATION/ITALIAN
5880 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5881 L:      linux-doc@vger.kernel.org
5882 S:      Maintained
5883 F:      Documentation/translations/it_IT
5884
5885 DONGWOON DW9714 LENS VOICE COIL DRIVER
5886 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5887 L:      linux-media@vger.kernel.org
5888 S:      Maintained
5889 T:      git git://linuxtv.org/media_tree.git
5890 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5891 F:      drivers/media/i2c/dw9714.c
5892
5893 DONGWOON DW9768 LENS VOICE COIL DRIVER
5894 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5895 L:      linux-media@vger.kernel.org
5896 S:      Maintained
5897 T:      git git://linuxtv.org/media_tree.git
5898 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5899 F:      drivers/media/i2c/dw9768.c
5900
5901 DONGWOON DW9807 LENS VOICE COIL DRIVER
5902 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5903 L:      linux-media@vger.kernel.org
5904 S:      Maintained
5905 T:      git git://linuxtv.org/media_tree.git
5906 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5907 F:      drivers/media/i2c/dw9807-vcm.c
5908
5909 DOUBLETALK DRIVER
5910 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5911 L:      blinux-list@redhat.com
5912 S:      Maintained
5913 F:      drivers/char/dtlk.c
5914 F:      include/linux/dtlk.h
5915
5916 DPAA2 DATAPATH I/O (DPIO) DRIVER
5917 M:      Roy Pledge <Roy.Pledge@nxp.com>
5918 L:      linux-kernel@vger.kernel.org
5919 S:      Maintained
5920 F:      drivers/soc/fsl/dpio
5921
5922 DPAA2 ETHERNET DRIVER
5923 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5924 L:      netdev@vger.kernel.org
5925 S:      Maintained
5926 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5927 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5928 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5929 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5930 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5931 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5932 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5933 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5934 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5935
5936 DPAA2 ETHERNET SWITCH DRIVER
5937 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5938 L:      netdev@vger.kernel.org
5939 S:      Maintained
5940 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5941 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5942 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5943
5944 DPT_I2O SCSI RAID DRIVER
5945 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5946 L:      linux-scsi@vger.kernel.org
5947 S:      Maintained
5948 W:      http://www.adaptec.com/
5949 F:      drivers/scsi/dpt*
5950 F:      drivers/scsi/dpt/
5951
5952 DRBD DRIVER
5953 M:      Philipp Reisner <philipp.reisner@linbit.com>
5954 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5955 L:      drbd-dev@lists.linbit.com
5956 S:      Supported
5957 W:      http://www.drbd.org
5958 T:      git git://git.linbit.com/linux-drbd.git
5959 T:      git git://git.linbit.com/drbd-8.4.git
5960 F:      Documentation/admin-guide/blockdev/
5961 F:      drivers/block/drbd/
5962 F:      lib/lru_cache.c
5963
5964 DRIVER COMPONENT FRAMEWORK
5965 L:      dri-devel@lists.freedesktop.org
5966 F:      drivers/base/component.c
5967 F:      include/linux/component.h
5968
5969 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5970 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5971 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5972 S:      Supported
5973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5974 F:      Documentation/core-api/kobject.rst
5975 F:      drivers/base/
5976 F:      fs/debugfs/
5977 F:      fs/sysfs/
5978 F:      include/linux/debugfs.h
5979 F:      include/linux/kobj*
5980 F:      lib/kobj*
5981
5982 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5983 M:      Nishanth Menon <nm@ti.com>
5984 L:      linux-pm@vger.kernel.org
5985 S:      Maintained
5986 F:      drivers/soc/ti/smartreflex.c
5987 F:      include/linux/power/smartreflex.h
5988
5989 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5990 M:      Maxime Ripard <mripard@kernel.org>
5991 M:      Chen-Yu Tsai <wens@csie.org>
5992 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5993 L:      dri-devel@lists.freedesktop.org
5994 S:      Supported
5995 T:      git git://anongit.freedesktop.org/drm/drm-misc
5996 F:      drivers/gpu/drm/sun4i/sun8i*
5997
5998 DRM DRIVER FOR ARM PL111 CLCD
5999 M:      Emma Anholt <emma@anholt.net>
6000 S:      Supported
6001 T:      git git://anongit.freedesktop.org/drm/drm-misc
6002 F:      drivers/gpu/drm/pl111/
6003
6004 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6005 M:      Linus Walleij <linus.walleij@linaro.org>
6006 S:      Maintained
6007 T:      git git://anongit.freedesktop.org/drm/drm-misc
6008 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6009 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6010
6011 DRM DRIVER FOR ASPEED BMC GFX
6012 M:      Joel Stanley <joel@jms.id.au>
6013 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6014 S:      Supported
6015 T:      git git://anongit.freedesktop.org/drm/drm-misc
6016 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6017 F:      drivers/gpu/drm/aspeed/
6018
6019 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6020 M:      Dave Airlie <airlied@redhat.com>
6021 R:      Thomas Zimmermann <tzimmermann@suse.de>
6022 L:      dri-devel@lists.freedesktop.org
6023 S:      Supported
6024 T:      git git://anongit.freedesktop.org/drm/drm-misc
6025 F:      drivers/gpu/drm/ast/
6026
6027 DRM DRIVER FOR BOCHS VIRTUAL GPU
6028 M:      Gerd Hoffmann <kraxel@redhat.com>
6029 L:      virtualization@lists.linux-foundation.org
6030 S:      Maintained
6031 T:      git git://anongit.freedesktop.org/drm/drm-misc
6032 F:      drivers/gpu/drm/tiny/bochs.c
6033
6034 DRM DRIVER FOR BOE HIMAX8279D PANELS
6035 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6036 S:      Maintained
6037 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6038 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6039
6040 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6041 M:      Jagan Teki <jagan@amarulasolutions.com>
6042 S:      Maintained
6043 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6044 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6045
6046 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6047 M:      Linus Walleij <linus.walleij@linaro.org>
6048 S:      Maintained
6049 T:      git git://anongit.freedesktop.org/drm/drm-misc
6050 F:      drivers/gpu/drm/tve200/
6051
6052 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6053 M:      Icenowy Zheng <icenowy@aosc.io>
6054 S:      Maintained
6055 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6056 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6057
6058 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6059 M:      Jagan Teki <jagan@amarulasolutions.com>
6060 S:      Maintained
6061 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6062 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6063
6064 DRM DRIVER FOR GENERIC USB DISPLAY
6065 M:      Noralf Trønnes <noralf@tronnes.org>
6066 S:      Maintained
6067 W:      https://github.com/notro/gud/wiki
6068 T:      git git://anongit.freedesktop.org/drm/drm-misc
6069 F:      drivers/gpu/drm/gud/
6070 F:      include/drm/gud.h
6071
6072 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6073 M:      Hans de Goede <hdegoede@redhat.com>
6074 S:      Maintained
6075 T:      git git://anongit.freedesktop.org/drm/drm-misc
6076 F:      drivers/gpu/drm/tiny/gm12u320.c
6077
6078 DRM DRIVER FOR HX8357D PANELS
6079 M:      Emma Anholt <emma@anholt.net>
6080 S:      Maintained
6081 T:      git git://anongit.freedesktop.org/drm/drm-misc
6082 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6083 F:      drivers/gpu/drm/tiny/hx8357d.c
6084
6085 DRM DRIVER FOR ILITEK ILI9225 PANELS
6086 M:      David Lechner <david@lechnology.com>
6087 S:      Maintained
6088 T:      git git://anongit.freedesktop.org/drm/drm-misc
6089 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6090 F:      drivers/gpu/drm/tiny/ili9225.c
6091
6092 DRM DRIVER FOR ILITEK ILI9486 PANELS
6093 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6094 S:      Maintained
6095 T:      git git://anongit.freedesktop.org/drm/drm-misc
6096 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6097 F:      drivers/gpu/drm/tiny/ili9486.c
6098
6099 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6100 S:      Orphan / Obsolete
6101 F:      drivers/gpu/drm/i810/
6102 F:      include/uapi/drm/i810_drm.h
6103
6104 DRM DRIVER FOR LVDS PANELS
6105 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6106 L:      dri-devel@lists.freedesktop.org
6107 T:      git git://anongit.freedesktop.org/drm/drm-misc
6108 S:      Maintained
6109 F:      drivers/gpu/drm/panel/panel-lvds.c
6110 F:      Documentation/devicetree/bindings/display/lvds.yaml
6111 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6112
6113 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6114 M:      Guido Günther <agx@sigxcpu.org>
6115 R:      Purism Kernel Team <kernel@puri.sm>
6116 S:      Maintained
6117 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6118 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6119
6120 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6121 S:      Orphan / Obsolete
6122 F:      drivers/gpu/drm/mga/
6123 F:      include/uapi/drm/mga_drm.h
6124
6125 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6126 M:      Dave Airlie <airlied@redhat.com>
6127 R:      Thomas Zimmermann <tzimmermann@suse.de>
6128 L:      dri-devel@lists.freedesktop.org
6129 S:      Supported
6130 T:      git git://anongit.freedesktop.org/drm/drm-misc
6131 F:      drivers/gpu/drm/mgag200/
6132
6133 DRM DRIVER FOR MI0283QT
6134 M:      Noralf Trønnes <noralf@tronnes.org>
6135 S:      Maintained
6136 T:      git git://anongit.freedesktop.org/drm/drm-misc
6137 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6138 F:      drivers/gpu/drm/tiny/mi0283qt.c
6139
6140 DRM DRIVER FOR MIPI DBI compatible panels
6141 M:      Noralf Trønnes <noralf@tronnes.org>
6142 S:      Maintained
6143 W:      https://github.com/notro/panel-mipi-dbi/wiki
6144 T:      git git://anongit.freedesktop.org/drm/drm-misc
6145 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6146 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6147
6148 DRM DRIVER FOR MSM ADRENO GPU
6149 M:      Rob Clark <robdclark@gmail.com>
6150 M:      Sean Paul <sean@poorly.run>
6151 R:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6152 L:      linux-arm-msm@vger.kernel.org
6153 L:      dri-devel@lists.freedesktop.org
6154 L:      freedreno@lists.freedesktop.org
6155 S:      Maintained
6156 T:      git https://gitlab.freedesktop.org/drm/msm.git
6157 F:      Documentation/devicetree/bindings/display/msm/
6158 F:      drivers/gpu/drm/msm/
6159 F:      include/uapi/drm/msm_drm.h
6160
6161 DRM DRIVER FOR NOVATEK NT35510 PANELS
6162 M:      Linus Walleij <linus.walleij@linaro.org>
6163 S:      Maintained
6164 T:      git git://anongit.freedesktop.org/drm/drm-misc
6165 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6166 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6167
6168 DRM DRIVER FOR NOVATEK NT35560 PANELS
6169 M:      Linus Walleij <linus.walleij@linaro.org>
6170 S:      Maintained
6171 T:      git git://anongit.freedesktop.org/drm/drm-misc
6172 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6173 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6174
6175 DRM DRIVER FOR NOVATEK NT36672A PANELS
6176 M:      Sumit Semwal <sumit.semwal@linaro.org>
6177 S:      Maintained
6178 T:      git git://anongit.freedesktop.org/drm/drm-misc
6179 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6180 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6181
6182 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6183 M:      Ben Skeggs <bskeggs@redhat.com>
6184 M:      Karol Herbst <kherbst@redhat.com>
6185 M:      Lyude Paul <lyude@redhat.com>
6186 L:      dri-devel@lists.freedesktop.org
6187 L:      nouveau@lists.freedesktop.org
6188 S:      Supported
6189 W:      https://nouveau.freedesktop.org/
6190 Q:      https://patchwork.freedesktop.org/project/nouveau/
6191 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6192 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6193 C:      irc://irc.oftc.net/nouveau
6194 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6195 F:      drivers/gpu/drm/nouveau/
6196 F:      include/uapi/drm/nouveau_drm.h
6197
6198 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6199 M:      Stefan Mavrodiev <stefan@olimex.com>
6200 S:      Maintained
6201 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6202 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6203
6204 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6205 M:      Noralf Trønnes <noralf@tronnes.org>
6206 S:      Maintained
6207 T:      git git://anongit.freedesktop.org/drm/drm-misc
6208 F:      Documentation/devicetree/bindings/display/repaper.txt
6209 F:      drivers/gpu/drm/tiny/repaper.c
6210
6211 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6212 M:      Javier Martinez Canillas <javierm@redhat.com>
6213 S:      Maintained
6214 T:      git git://anongit.freedesktop.org/drm/drm-misc
6215 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6216 F:      drivers/gpu/drm/solomon/ssd130x*
6217
6218 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6219 M:      Dave Airlie <airlied@redhat.com>
6220 M:      Gerd Hoffmann <kraxel@redhat.com>
6221 L:      virtualization@lists.linux-foundation.org
6222 S:      Obsolete
6223 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6224 T:      git git://anongit.freedesktop.org/drm/drm-misc
6225 F:      drivers/gpu/drm/tiny/cirrus.c
6226
6227 DRM DRIVER FOR QXL VIRTUAL GPU
6228 M:      Dave Airlie <airlied@redhat.com>
6229 M:      Gerd Hoffmann <kraxel@redhat.com>
6230 L:      virtualization@lists.linux-foundation.org
6231 L:      spice-devel@lists.freedesktop.org
6232 S:      Maintained
6233 T:      git git://anongit.freedesktop.org/drm/drm-misc
6234 F:      drivers/gpu/drm/qxl/
6235 F:      include/uapi/drm/qxl_drm.h
6236
6237 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6238 S:      Orphan / Obsolete
6239 F:      drivers/gpu/drm/r128/
6240 F:      include/uapi/drm/r128_drm.h
6241
6242 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6243 M:      Robert Chiras <robert.chiras@nxp.com>
6244 S:      Maintained
6245 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6246 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6247
6248 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6249 M:      Linus Walleij <linus.walleij@linaro.org>
6250 S:      Maintained
6251 T:      git git://anongit.freedesktop.org/drm/drm-misc
6252 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6253 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6254
6255 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6256 M:      Markuss Broks <markuss.broks@gmail.com>
6257 S:      Maintained
6258 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6259 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6260
6261 DRM DRIVER FOR SITRONIX ST7703 PANELS
6262 M:      Guido Günther <agx@sigxcpu.org>
6263 R:      Purism Kernel Team <kernel@puri.sm>
6264 R:      Ondrej Jirman <megous@megous.com>
6265 S:      Maintained
6266 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6267 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6268
6269 DRM DRIVER FOR SAVAGE VIDEO CARDS
6270 S:      Orphan / Obsolete
6271 F:      drivers/gpu/drm/savage/
6272 F:      include/uapi/drm/savage_drm.h
6273
6274 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6275 M:      Thomas Zimmermann <tzimmermann@suse.de>
6276 L:      dri-devel@lists.freedesktop.org
6277 S:      Maintained
6278 T:      git git://anongit.freedesktop.org/drm/drm-misc
6279 F:      drivers/gpu/drm/tiny/simpledrm.c
6280
6281 DRM DRIVER FOR SIS VIDEO CARDS
6282 S:      Orphan / Obsolete
6283 F:      drivers/gpu/drm/sis/
6284 F:      include/uapi/drm/sis_drm.h
6285
6286 DRM DRIVER FOR SITRONIX ST7586 PANELS
6287 M:      David Lechner <david@lechnology.com>
6288 S:      Maintained
6289 T:      git git://anongit.freedesktop.org/drm/drm-misc
6290 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6291 F:      drivers/gpu/drm/tiny/st7586.c
6292
6293 DRM DRIVER FOR SITRONIX ST7701 PANELS
6294 M:      Jagan Teki <jagan@amarulasolutions.com>
6295 S:      Maintained
6296 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6297 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6298
6299 DRM DRIVER FOR SITRONIX ST7735R PANELS
6300 M:      David Lechner <david@lechnology.com>
6301 S:      Maintained
6302 T:      git git://anongit.freedesktop.org/drm/drm-misc
6303 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6304 F:      drivers/gpu/drm/tiny/st7735r.c
6305
6306 DRM DRIVER FOR ST-ERICSSON MCDE
6307 M:      Linus Walleij <linus.walleij@linaro.org>
6308 S:      Maintained
6309 T:      git git://anongit.freedesktop.org/drm/drm-misc
6310 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6311 F:      drivers/gpu/drm/mcde/
6312
6313 DRM DRIVER FOR TDFX VIDEO CARDS
6314 S:      Orphan / Obsolete
6315 F:      drivers/gpu/drm/tdfx/
6316
6317 DRM DRIVER FOR TPO TPG110 PANELS
6318 M:      Linus Walleij <linus.walleij@linaro.org>
6319 S:      Maintained
6320 T:      git git://anongit.freedesktop.org/drm/drm-misc
6321 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6322 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6323
6324 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6325 M:      Dave Airlie <airlied@redhat.com>
6326 R:      Sean Paul <sean@poorly.run>
6327 R:      Thomas Zimmermann <tzimmermann@suse.de>
6328 L:      dri-devel@lists.freedesktop.org
6329 S:      Supported
6330 T:      git git://anongit.freedesktop.org/drm/drm-misc
6331 F:      drivers/gpu/drm/udl/
6332
6333 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6334 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6335 M:      Melissa Wen <melissa.srw@gmail.com>
6336 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6337 R:      Daniel Vetter <daniel@ffwll.ch>
6338 L:      dri-devel@lists.freedesktop.org
6339 S:      Maintained
6340 T:      git git://anongit.freedesktop.org/drm/drm-misc
6341 F:      Documentation/gpu/vkms.rst
6342 F:      drivers/gpu/drm/vkms/
6343
6344 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6345 M:      Hans de Goede <hdegoede@redhat.com>
6346 L:      dri-devel@lists.freedesktop.org
6347 S:      Maintained
6348 T:      git git://anongit.freedesktop.org/drm/drm-misc
6349 F:      drivers/gpu/drm/vboxvideo/
6350
6351 DRM DRIVER FOR VMWARE VIRTUAL GPU
6352 M:      Zack Rusin <zackr@vmware.com>
6353 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6354 L:      dri-devel@lists.freedesktop.org
6355 S:      Supported
6356 T:      git git://anongit.freedesktop.org/drm/drm-misc
6357 F:      drivers/gpu/drm/vmwgfx/
6358 F:      include/uapi/drm/vmwgfx_drm.h
6359
6360 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6361 M:      Linus Walleij <linus.walleij@linaro.org>
6362 S:      Maintained
6363 T:      git git://anongit.freedesktop.org/drm/drm-misc
6364 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6365 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6366
6367 DRM DRIVERS
6368 M:      David Airlie <airlied@linux.ie>
6369 M:      Daniel Vetter <daniel@ffwll.ch>
6370 L:      dri-devel@lists.freedesktop.org
6371 S:      Maintained
6372 B:      https://gitlab.freedesktop.org/drm
6373 C:      irc://irc.oftc.net/dri-devel
6374 T:      git git://anongit.freedesktop.org/drm/drm
6375 F:      Documentation/devicetree/bindings/display/
6376 F:      Documentation/devicetree/bindings/gpu/
6377 F:      Documentation/gpu/
6378 F:      drivers/gpu/
6379 F:      include/drm/
6380 F:      include/linux/vga*
6381 F:      include/uapi/drm/
6382
6383 DRM DRIVERS AND MISC GPU PATCHES
6384 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6385 M:      Maxime Ripard <mripard@kernel.org>
6386 M:      Thomas Zimmermann <tzimmermann@suse.de>
6387 S:      Maintained
6388 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6389 T:      git git://anongit.freedesktop.org/drm/drm-misc
6390 F:      Documentation/gpu/
6391 F:      drivers/gpu/drm/*
6392 F:      drivers/gpu/vga/
6393 F:      include/drm/drm*
6394 F:      include/linux/vga*
6395 F:      include/uapi/drm/drm*
6396
6397 DRM DRIVERS FOR ALLWINNER A10
6398 M:      Maxime Ripard <mripard@kernel.org>
6399 M:      Chen-Yu Tsai <wens@csie.org>
6400 L:      dri-devel@lists.freedesktop.org
6401 S:      Supported
6402 T:      git git://anongit.freedesktop.org/drm/drm-misc
6403 F:      Documentation/devicetree/bindings/display/allwinner*
6404 F:      drivers/gpu/drm/sun4i/
6405
6406 DRM DRIVERS FOR AMLOGIC SOCS
6407 M:      Neil Armstrong <narmstrong@baylibre.com>
6408 L:      dri-devel@lists.freedesktop.org
6409 L:      linux-amlogic@lists.infradead.org
6410 S:      Supported
6411 W:      http://linux-meson.com/
6412 T:      git git://anongit.freedesktop.org/drm/drm-misc
6413 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6414 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6415 F:      Documentation/gpu/meson.rst
6416 F:      drivers/gpu/drm/meson/
6417
6418 DRM DRIVERS FOR ATMEL HLCDC
6419 M:      Sam Ravnborg <sam@ravnborg.org>
6420 M:      Boris Brezillon <bbrezillon@kernel.org>
6421 L:      dri-devel@lists.freedesktop.org
6422 S:      Supported
6423 T:      git git://anongit.freedesktop.org/drm/drm-misc
6424 F:      Documentation/devicetree/bindings/display/atmel/
6425 F:      drivers/gpu/drm/atmel-hlcdc/
6426
6427 DRM DRIVERS FOR BRIDGE CHIPS
6428 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6429 M:      Neil Armstrong <narmstrong@baylibre.com>
6430 M:      Robert Foss <robert.foss@linaro.org>
6431 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6432 R:      Jonas Karlman <jonas@kwiboo.se>
6433 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6434 S:      Maintained
6435 T:      git git://anongit.freedesktop.org/drm/drm-misc
6436 F:      drivers/gpu/drm/bridge/
6437
6438 DRM DRIVERS FOR EXYNOS
6439 M:      Inki Dae <inki.dae@samsung.com>
6440 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6441 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6442 M:      Kyungmin Park <kyungmin.park@samsung.com>
6443 L:      dri-devel@lists.freedesktop.org
6444 S:      Supported
6445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6446 F:      Documentation/devicetree/bindings/display/exynos/
6447 F:      Documentation/devicetree/bindings/display/samsung/
6448 F:      drivers/gpu/drm/exynos/
6449 F:      include/uapi/drm/exynos_drm.h
6450
6451 DRM DRIVERS FOR FREESCALE DCU
6452 M:      Stefan Agner <stefan@agner.ch>
6453 M:      Alison Wang <alison.wang@nxp.com>
6454 L:      dri-devel@lists.freedesktop.org
6455 S:      Supported
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6458 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6459 F:      drivers/gpu/drm/fsl-dcu/
6460
6461 DRM DRIVERS FOR FREESCALE IMX
6462 M:      Philipp Zabel <p.zabel@pengutronix.de>
6463 L:      dri-devel@lists.freedesktop.org
6464 S:      Maintained
6465 F:      Documentation/devicetree/bindings/display/imx/
6466 F:      drivers/gpu/drm/imx/
6467 F:      drivers/gpu/ipu-v3/
6468
6469 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6470 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6471 L:      dri-devel@lists.freedesktop.org
6472 S:      Maintained
6473 T:      git git://github.com/patjak/drm-gma500
6474 F:      drivers/gpu/drm/gma500/
6475
6476 DRM DRIVERS FOR HISILICON
6477 M:      Xinliang Liu <xinliang.liu@linaro.org>
6478 M:      Tian Tao  <tiantao6@hisilicon.com>
6479 R:      John Stultz <john.stultz@linaro.org>
6480 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6481 R:      Chen Feng <puck.chen@hisilicon.com>
6482 L:      dri-devel@lists.freedesktop.org
6483 S:      Maintained
6484 T:      git git://anongit.freedesktop.org/drm/drm-misc
6485 F:      Documentation/devicetree/bindings/display/hisilicon/
6486 F:      drivers/gpu/drm/hisilicon/
6487
6488 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6489 M:      Deepak Rawat <drawat.floss@gmail.com>
6490 L:      linux-hyperv@vger.kernel.org
6491 L:      dri-devel@lists.freedesktop.org
6492 S:      Maintained
6493 T:      git git://anongit.freedesktop.org/drm/drm-misc
6494 F:      drivers/gpu/drm/hyperv
6495
6496 DRM DRIVERS FOR LIMA
6497 M:      Qiang Yu <yuq825@gmail.com>
6498 L:      dri-devel@lists.freedesktop.org
6499 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6500 S:      Maintained
6501 T:      git git://anongit.freedesktop.org/drm/drm-misc
6502 F:      drivers/gpu/drm/lima/
6503 F:      include/uapi/drm/lima_drm.h
6504
6505 DRM DRIVERS FOR MEDIATEK
6506 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6507 M:      Philipp Zabel <p.zabel@pengutronix.de>
6508 L:      dri-devel@lists.freedesktop.org
6509 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6510 S:      Supported
6511 F:      Documentation/devicetree/bindings/display/mediatek/
6512 F:      drivers/gpu/drm/mediatek/
6513 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6514 F:      drivers/phy/mediatek/phy-mtk-mipi*
6515
6516 DRM DRIVERS FOR NVIDIA TEGRA
6517 M:      Thierry Reding <thierry.reding@gmail.com>
6518 L:      dri-devel@lists.freedesktop.org
6519 L:      linux-tegra@vger.kernel.org
6520 S:      Supported
6521 T:      git git://anongit.freedesktop.org/tegra/linux.git
6522 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6523 F:      Documentation/devicetree/bindings/gpu/host1x/
6524 F:      drivers/gpu/drm/tegra/
6525 F:      drivers/gpu/host1x/
6526 F:      include/linux/host1x.h
6527 F:      include/uapi/drm/tegra_drm.h
6528
6529 DRM DRIVERS FOR RENESAS
6530 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6531 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6532 L:      dri-devel@lists.freedesktop.org
6533 L:      linux-renesas-soc@vger.kernel.org
6534 S:      Supported
6535 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6536 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6537 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6538 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6539 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6540 F:      drivers/gpu/drm/rcar-du/
6541 F:      drivers/gpu/drm/shmobile/
6542 F:      include/linux/platform_data/shmob_drm.h
6543
6544 DRM DRIVERS FOR ROCKCHIP
6545 M:      Sandy Huang <hjc@rock-chips.com>
6546 M:      Heiko Stübner <heiko@sntech.de>
6547 L:      dri-devel@lists.freedesktop.org
6548 S:      Maintained
6549 T:      git git://anongit.freedesktop.org/drm/drm-misc
6550 F:      Documentation/devicetree/bindings/display/rockchip/
6551 F:      drivers/gpu/drm/rockchip/
6552
6553 DRM DRIVERS FOR STI
6554 M:      Alain Volmat <alain.volmat@foss.st.com>
6555 L:      dri-devel@lists.freedesktop.org
6556 S:      Maintained
6557 T:      git git://anongit.freedesktop.org/drm/drm-misc
6558 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6559 F:      drivers/gpu/drm/sti
6560
6561 DRM DRIVERS FOR STM
6562 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6563 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6564 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6565 L:      dri-devel@lists.freedesktop.org
6566 S:      Maintained
6567 T:      git git://anongit.freedesktop.org/drm/drm-misc
6568 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6569 F:      drivers/gpu/drm/stm
6570
6571 DRM DRIVERS FOR TI KEYSTONE
6572 M:      Jyri Sarha <jyri.sarha@iki.fi>
6573 M:      Tomi Valkeinen <tomba@kernel.org>
6574 L:      dri-devel@lists.freedesktop.org
6575 S:      Maintained
6576 T:      git git://anongit.freedesktop.org/drm/drm-misc
6577 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6578 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6579 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6580 F:      drivers/gpu/drm/tidss/
6581
6582 DRM DRIVERS FOR TI LCDC
6583 M:      Jyri Sarha <jyri.sarha@iki.fi>
6584 R:      Tomi Valkeinen <tomba@kernel.org>
6585 L:      dri-devel@lists.freedesktop.org
6586 S:      Maintained
6587 F:      Documentation/devicetree/bindings/display/tilcdc/
6588 F:      drivers/gpu/drm/tilcdc/
6589
6590 DRM DRIVERS FOR TI OMAP
6591 M:      Tomi Valkeinen <tomba@kernel.org>
6592 L:      dri-devel@lists.freedesktop.org
6593 S:      Maintained
6594 F:      Documentation/devicetree/bindings/display/ti/
6595 F:      drivers/gpu/drm/omapdrm/
6596
6597 DRM DRIVERS FOR V3D
6598 M:      Emma Anholt <emma@anholt.net>
6599 S:      Supported
6600 T:      git git://anongit.freedesktop.org/drm/drm-misc
6601 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6602 F:      drivers/gpu/drm/v3d/
6603 F:      include/uapi/drm/v3d_drm.h
6604
6605 DRM DRIVERS FOR VC4
6606 M:      Emma Anholt <emma@anholt.net>
6607 M:      Maxime Ripard <mripard@kernel.org>
6608 S:      Supported
6609 T:      git git://github.com/anholt/linux
6610 T:      git git://anongit.freedesktop.org/drm/drm-misc
6611 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6612 F:      drivers/gpu/drm/vc4/
6613 F:      include/uapi/drm/vc4_drm.h
6614
6615 DRM DRIVERS FOR VIVANTE GPU IP
6616 M:      Lucas Stach <l.stach@pengutronix.de>
6617 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6618 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6619 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6620 L:      dri-devel@lists.freedesktop.org
6621 S:      Maintained
6622 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6623 F:      drivers/gpu/drm/etnaviv/
6624 F:      include/uapi/drm/etnaviv_drm.h
6625
6626 DRM DRIVERS FOR XEN
6627 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6628 L:      dri-devel@lists.freedesktop.org
6629 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6630 S:      Supported
6631 T:      git git://anongit.freedesktop.org/drm/drm-misc
6632 F:      Documentation/gpu/xen-front.rst
6633 F:      drivers/gpu/drm/xen/
6634
6635 DRM DRIVERS FOR XILINX
6636 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6637 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6638 L:      dri-devel@lists.freedesktop.org
6639 S:      Maintained
6640 T:      git git://anongit.freedesktop.org/drm/drm-misc
6641 F:      Documentation/devicetree/bindings/display/xlnx/
6642 F:      drivers/gpu/drm/xlnx/
6643
6644 DRM PANEL DRIVERS
6645 M:      Thierry Reding <thierry.reding@gmail.com>
6646 R:      Sam Ravnborg <sam@ravnborg.org>
6647 L:      dri-devel@lists.freedesktop.org
6648 S:      Maintained
6649 T:      git git://anongit.freedesktop.org/drm/drm-misc
6650 F:      Documentation/devicetree/bindings/display/panel/
6651 F:      drivers/gpu/drm/drm_panel.c
6652 F:      drivers/gpu/drm/panel/
6653 F:      include/drm/drm_panel.h
6654
6655 DRM PRIVACY-SCREEN CLASS
6656 M:      Hans de Goede <hdegoede@redhat.com>
6657 L:      dri-devel@lists.freedesktop.org
6658 S:      Maintained
6659 T:      git git://anongit.freedesktop.org/drm/drm-misc
6660 F:      drivers/gpu/drm/drm_privacy_screen*
6661 F:      include/drm/drm_privacy_screen*
6662
6663 DRM TTM SUBSYSTEM
6664 M:      Christian Koenig <christian.koenig@amd.com>
6665 M:      Huang Rui <ray.huang@amd.com>
6666 L:      dri-devel@lists.freedesktop.org
6667 S:      Maintained
6668 T:      git git://anongit.freedesktop.org/drm/drm-misc
6669 F:      drivers/gpu/drm/ttm/
6670 F:      include/drm/ttm/
6671
6672 DRM GPU SCHEDULER
6673 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6674 L:      dri-devel@lists.freedesktop.org
6675 S:      Maintained
6676 T:      git git://anongit.freedesktop.org/drm/drm-misc
6677 F:      drivers/gpu/drm/scheduler/
6678 F:      include/drm/gpu_scheduler.h
6679
6680 DSBR100 USB FM RADIO DRIVER
6681 M:      Alexey Klimov <klimov.linux@gmail.com>
6682 L:      linux-media@vger.kernel.org
6683 S:      Maintained
6684 T:      git git://linuxtv.org/media_tree.git
6685 F:      drivers/media/radio/dsbr100.c
6686
6687 DT3155 MEDIA DRIVER
6688 M:      Hans Verkuil <hverkuil@xs4all.nl>
6689 L:      linux-media@vger.kernel.org
6690 S:      Odd Fixes
6691 W:      https://linuxtv.org
6692 T:      git git://linuxtv.org/media_tree.git
6693 F:      drivers/media/pci/dt3155/
6694
6695 DVB_USB_AF9015 MEDIA DRIVER
6696 M:      Antti Palosaari <crope@iki.fi>
6697 L:      linux-media@vger.kernel.org
6698 S:      Maintained
6699 W:      https://linuxtv.org
6700 W:      http://palosaari.fi/linux/
6701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6702 T:      git git://linuxtv.org/anttip/media_tree.git
6703 F:      drivers/media/usb/dvb-usb-v2/af9015*
6704
6705 DVB_USB_AF9035 MEDIA DRIVER
6706 M:      Antti Palosaari <crope@iki.fi>
6707 L:      linux-media@vger.kernel.org
6708 S:      Maintained
6709 W:      https://linuxtv.org
6710 W:      http://palosaari.fi/linux/
6711 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6712 T:      git git://linuxtv.org/anttip/media_tree.git
6713 F:      drivers/media/usb/dvb-usb-v2/af9035*
6714
6715 DVB_USB_ANYSEE MEDIA DRIVER
6716 M:      Antti Palosaari <crope@iki.fi>
6717 L:      linux-media@vger.kernel.org
6718 S:      Maintained
6719 W:      https://linuxtv.org
6720 W:      http://palosaari.fi/linux/
6721 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6722 T:      git git://linuxtv.org/anttip/media_tree.git
6723 F:      drivers/media/usb/dvb-usb-v2/anysee*
6724
6725 DVB_USB_AU6610 MEDIA DRIVER
6726 M:      Antti Palosaari <crope@iki.fi>
6727 L:      linux-media@vger.kernel.org
6728 S:      Maintained
6729 W:      https://linuxtv.org
6730 W:      http://palosaari.fi/linux/
6731 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6732 T:      git git://linuxtv.org/anttip/media_tree.git
6733 F:      drivers/media/usb/dvb-usb-v2/au6610*
6734
6735 DVB_USB_CE6230 MEDIA DRIVER
6736 M:      Antti Palosaari <crope@iki.fi>
6737 L:      linux-media@vger.kernel.org
6738 S:      Maintained
6739 W:      https://linuxtv.org
6740 W:      http://palosaari.fi/linux/
6741 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6742 T:      git git://linuxtv.org/anttip/media_tree.git
6743 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6744
6745 DVB_USB_CXUSB MEDIA DRIVER
6746 M:      Michael Krufky <mkrufky@linuxtv.org>
6747 L:      linux-media@vger.kernel.org
6748 S:      Maintained
6749 W:      https://linuxtv.org
6750 W:      http://github.com/mkrufky
6751 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6752 T:      git git://linuxtv.org/media_tree.git
6753 F:      drivers/media/usb/dvb-usb/cxusb*
6754
6755 DVB_USB_EC168 MEDIA DRIVER
6756 M:      Antti Palosaari <crope@iki.fi>
6757 L:      linux-media@vger.kernel.org
6758 S:      Maintained
6759 W:      https://linuxtv.org
6760 W:      http://palosaari.fi/linux/
6761 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6762 T:      git git://linuxtv.org/anttip/media_tree.git
6763 F:      drivers/media/usb/dvb-usb-v2/ec168*
6764
6765 DVB_USB_GL861 MEDIA DRIVER
6766 M:      Antti Palosaari <crope@iki.fi>
6767 L:      linux-media@vger.kernel.org
6768 S:      Maintained
6769 W:      https://linuxtv.org
6770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6771 T:      git git://linuxtv.org/anttip/media_tree.git
6772 F:      drivers/media/usb/dvb-usb-v2/gl861*
6773
6774 DVB_USB_MXL111SF MEDIA DRIVER
6775 M:      Michael Krufky <mkrufky@linuxtv.org>
6776 L:      linux-media@vger.kernel.org
6777 S:      Maintained
6778 W:      https://linuxtv.org
6779 W:      http://github.com/mkrufky
6780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6781 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6782 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6783
6784 DVB_USB_RTL28XXU MEDIA DRIVER
6785 M:      Antti Palosaari <crope@iki.fi>
6786 L:      linux-media@vger.kernel.org
6787 S:      Maintained
6788 W:      https://linuxtv.org
6789 W:      http://palosaari.fi/linux/
6790 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6791 T:      git git://linuxtv.org/anttip/media_tree.git
6792 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6793
6794 DVB_USB_V2 MEDIA DRIVER
6795 M:      Antti Palosaari <crope@iki.fi>
6796 L:      linux-media@vger.kernel.org
6797 S:      Maintained
6798 W:      https://linuxtv.org
6799 W:      http://palosaari.fi/linux/
6800 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6801 T:      git git://linuxtv.org/anttip/media_tree.git
6802 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6803 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6804
6805 DYNAMIC DEBUG
6806 M:      Jason Baron <jbaron@akamai.com>
6807 S:      Maintained
6808 F:      include/linux/dynamic_debug.h
6809 F:      lib/dynamic_debug.c
6810
6811 DYNAMIC INTERRUPT MODERATION
6812 M:      Tal Gilboa <talgi@nvidia.com>
6813 S:      Maintained
6814 F:      Documentation/networking/net_dim.rst
6815 F:      include/linux/dim.h
6816 F:      lib/dim/
6817
6818 DZ DECSTATION DZ11 SERIAL DRIVER
6819 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6820 S:      Maintained
6821 F:      drivers/tty/serial/dz.*
6822
6823 E3X0 POWER BUTTON DRIVER
6824 M:      Moritz Fischer <moritz.fischer@ettus.com>
6825 L:      usrp-users@lists.ettus.com
6826 S:      Supported
6827 W:      http://www.ettus.com
6828 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6829 F:      drivers/input/misc/e3x0-button.c
6830
6831 E4000 MEDIA DRIVER
6832 M:      Antti Palosaari <crope@iki.fi>
6833 L:      linux-media@vger.kernel.org
6834 S:      Maintained
6835 W:      https://linuxtv.org
6836 W:      http://palosaari.fi/linux/
6837 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6838 T:      git git://linuxtv.org/anttip/media_tree.git
6839 F:      drivers/media/tuners/e4000*
6840
6841 EARTH_PT1 MEDIA DRIVER
6842 M:      Akihiro Tsukada <tskd08@gmail.com>
6843 L:      linux-media@vger.kernel.org
6844 S:      Odd Fixes
6845 F:      drivers/media/pci/pt1/
6846
6847 EARTH_PT3 MEDIA DRIVER
6848 M:      Akihiro Tsukada <tskd08@gmail.com>
6849 L:      linux-media@vger.kernel.org
6850 S:      Odd Fixes
6851 F:      drivers/media/pci/pt3/
6852
6853 EC100 MEDIA DRIVER
6854 M:      Antti Palosaari <crope@iki.fi>
6855 L:      linux-media@vger.kernel.org
6856 S:      Maintained
6857 W:      https://linuxtv.org
6858 W:      http://palosaari.fi/linux/
6859 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6860 T:      git git://linuxtv.org/anttip/media_tree.git
6861 F:      drivers/media/dvb-frontends/ec100*
6862
6863 ECRYPT FILE SYSTEM
6864 M:      Tyler Hicks <code@tyhicks.com>
6865 L:      ecryptfs@vger.kernel.org
6866 S:      Odd Fixes
6867 W:      http://ecryptfs.org
6868 W:      https://launchpad.net/ecryptfs
6869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6870 F:      Documentation/filesystems/ecryptfs.rst
6871 F:      fs/ecryptfs/
6872
6873 EDAC-AMD64
6874 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6875 L:      linux-edac@vger.kernel.org
6876 S:      Supported
6877 F:      drivers/edac/amd64_edac*
6878 F:      drivers/edac/mce_amd*
6879
6880 EDAC-ARMADA
6881 M:      Jan Luebbe <jlu@pengutronix.de>
6882 L:      linux-edac@vger.kernel.org
6883 S:      Maintained
6884 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6885 F:      drivers/edac/armada_xp_*
6886
6887 EDAC-AST2500
6888 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6889 S:      Supported
6890 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6891 F:      drivers/edac/aspeed_edac.c
6892
6893 EDAC-BLUEFIELD
6894 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6895 S:      Supported
6896 F:      drivers/edac/bluefield_edac.c
6897
6898 EDAC-CALXEDA
6899 M:      Andre Przywara <andre.przywara@arm.com>
6900 L:      linux-edac@vger.kernel.org
6901 S:      Maintained
6902 F:      drivers/edac/highbank*
6903
6904 EDAC-CAVIUM OCTEON
6905 M:      Ralf Baechle <ralf@linux-mips.org>
6906 L:      linux-edac@vger.kernel.org
6907 L:      linux-mips@vger.kernel.org
6908 S:      Supported
6909 F:      drivers/edac/octeon_edac*
6910
6911 EDAC-CAVIUM THUNDERX
6912 M:      Robert Richter <rric@kernel.org>
6913 L:      linux-edac@vger.kernel.org
6914 S:      Odd Fixes
6915 F:      drivers/edac/thunderx_edac*
6916
6917 EDAC-CORE
6918 M:      Borislav Petkov <bp@alien8.de>
6919 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6920 M:      Tony Luck <tony.luck@intel.com>
6921 R:      James Morse <james.morse@arm.com>
6922 R:      Robert Richter <rric@kernel.org>
6923 L:      linux-edac@vger.kernel.org
6924 S:      Supported
6925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6926 F:      Documentation/admin-guide/ras.rst
6927 F:      Documentation/driver-api/edac.rst
6928 F:      drivers/edac/
6929 F:      include/linux/edac.h
6930
6931 EDAC-DMC520
6932 M:      Lei Wang <lewan@microsoft.com>
6933 L:      linux-edac@vger.kernel.org
6934 S:      Supported
6935 F:      drivers/edac/dmc520_edac.c
6936
6937 EDAC-E752X
6938 M:      Mark Gross <markgross@kernel.org>
6939 L:      linux-edac@vger.kernel.org
6940 S:      Maintained
6941 F:      drivers/edac/e752x_edac.c
6942
6943 EDAC-E7XXX
6944 L:      linux-edac@vger.kernel.org
6945 S:      Maintained
6946 F:      drivers/edac/e7xxx_edac.c
6947
6948 EDAC-FSL_DDR
6949 M:      York Sun <york.sun@nxp.com>
6950 L:      linux-edac@vger.kernel.org
6951 S:      Maintained
6952 F:      drivers/edac/fsl_ddr_edac.*
6953
6954 EDAC-GHES
6955 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6956 L:      linux-edac@vger.kernel.org
6957 S:      Maintained
6958 F:      drivers/edac/ghes_edac.c
6959
6960 EDAC-I10NM
6961 M:      Tony Luck <tony.luck@intel.com>
6962 L:      linux-edac@vger.kernel.org
6963 S:      Maintained
6964 F:      drivers/edac/i10nm_base.c
6965
6966 EDAC-I3000
6967 L:      linux-edac@vger.kernel.org
6968 S:      Orphan
6969 F:      drivers/edac/i3000_edac.c
6970
6971 EDAC-I5000
6972 L:      linux-edac@vger.kernel.org
6973 S:      Maintained
6974 F:      drivers/edac/i5000_edac.c
6975
6976 EDAC-I5400
6977 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6978 L:      linux-edac@vger.kernel.org
6979 S:      Maintained
6980 F:      drivers/edac/i5400_edac.c
6981
6982 EDAC-I7300
6983 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6984 L:      linux-edac@vger.kernel.org
6985 S:      Maintained
6986 F:      drivers/edac/i7300_edac.c
6987
6988 EDAC-I7CORE
6989 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6990 L:      linux-edac@vger.kernel.org
6991 S:      Maintained
6992 F:      drivers/edac/i7core_edac.c
6993
6994 EDAC-I82443BXGX
6995 M:      Tim Small <tim@buttersideup.com>
6996 L:      linux-edac@vger.kernel.org
6997 S:      Maintained
6998 F:      drivers/edac/i82443bxgx_edac.c
6999
7000 EDAC-I82975X
7001 M:      "Arvind R." <arvino55@gmail.com>
7002 L:      linux-edac@vger.kernel.org
7003 S:      Maintained
7004 F:      drivers/edac/i82975x_edac.c
7005
7006 EDAC-IE31200
7007 M:      Jason Baron <jbaron@akamai.com>
7008 L:      linux-edac@vger.kernel.org
7009 S:      Maintained
7010 F:      drivers/edac/ie31200_edac.c
7011
7012 EDAC-IGEN6
7013 M:      Tony Luck <tony.luck@intel.com>
7014 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7015 L:      linux-edac@vger.kernel.org
7016 S:      Maintained
7017 F:      drivers/edac/igen6_edac.c
7018
7019 EDAC-MPC85XX
7020 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7021 L:      linux-edac@vger.kernel.org
7022 S:      Maintained
7023 F:      drivers/edac/mpc85xx_edac.[ch]
7024
7025 EDAC-PASEMI
7026 M:      Egor Martovetsky <egor@pasemi.com>
7027 L:      linux-edac@vger.kernel.org
7028 S:      Maintained
7029 F:      drivers/edac/pasemi_edac.c
7030
7031 EDAC-PND2
7032 M:      Tony Luck <tony.luck@intel.com>
7033 L:      linux-edac@vger.kernel.org
7034 S:      Maintained
7035 F:      drivers/edac/pnd2_edac.[ch]
7036
7037 EDAC-QCOM
7038 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7039 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7040 L:      linux-arm-msm@vger.kernel.org
7041 L:      linux-edac@vger.kernel.org
7042 S:      Maintained
7043 F:      drivers/edac/qcom_edac.c
7044
7045 EDAC-R82600
7046 M:      Tim Small <tim@buttersideup.com>
7047 L:      linux-edac@vger.kernel.org
7048 S:      Maintained
7049 F:      drivers/edac/r82600_edac.c
7050
7051 EDAC-SBRIDGE
7052 M:      Tony Luck <tony.luck@intel.com>
7053 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7054 L:      linux-edac@vger.kernel.org
7055 S:      Maintained
7056 F:      drivers/edac/sb_edac.c
7057
7058 EDAC-SKYLAKE
7059 M:      Tony Luck <tony.luck@intel.com>
7060 L:      linux-edac@vger.kernel.org
7061 S:      Maintained
7062 F:      drivers/edac/skx_*.[ch]
7063
7064 EDAC-TI
7065 M:      Tero Kristo <kristo@kernel.org>
7066 L:      linux-edac@vger.kernel.org
7067 S:      Odd Fixes
7068 F:      drivers/edac/ti_edac.c
7069
7070 EDIROL UA-101/UA-1000 DRIVER
7071 M:      Clemens Ladisch <clemens@ladisch.de>
7072 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7073 S:      Maintained
7074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7075 F:      sound/usb/misc/ua101.c
7076
7077 EFI TEST DRIVER
7078 M:      Ivan Hu <ivan.hu@canonical.com>
7079 M:      Ard Biesheuvel <ardb@kernel.org>
7080 L:      linux-efi@vger.kernel.org
7081 S:      Maintained
7082 F:      drivers/firmware/efi/test/
7083
7084 EFI VARIABLE FILESYSTEM
7085 M:      Matthew Garrett <matthew.garrett@nebula.com>
7086 M:      Jeremy Kerr <jk@ozlabs.org>
7087 M:      Ard Biesheuvel <ardb@kernel.org>
7088 L:      linux-efi@vger.kernel.org
7089 S:      Maintained
7090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7091 F:      fs/efivarfs/
7092
7093 EFIFB FRAMEBUFFER DRIVER
7094 M:      Peter Jones <pjones@redhat.com>
7095 L:      linux-fbdev@vger.kernel.org
7096 S:      Maintained
7097 F:      drivers/video/fbdev/efifb.c
7098
7099 EFS FILESYSTEM
7100 S:      Orphan
7101 W:      http://aeschi.ch.eu.org/efs/
7102 F:      fs/efs/
7103
7104 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7105 M:      Douglas Miller <dougmill@linux.ibm.com>
7106 L:      netdev@vger.kernel.org
7107 S:      Maintained
7108 F:      drivers/net/ethernet/ibm/ehea/
7109
7110 EM28XX VIDEO4LINUX DRIVER
7111 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7112 L:      linux-media@vger.kernel.org
7113 S:      Maintained
7114 W:      https://linuxtv.org
7115 T:      git git://linuxtv.org/media_tree.git
7116 F:      Documentation/admin-guide/media/em28xx*
7117 F:      drivers/media/usb/em28xx/
7118
7119 EMBEDDED LINUX
7120 M:      Matt Mackall <mpm@selenic.com>
7121 M:      David Woodhouse <dwmw2@infradead.org>
7122 L:      linux-embedded@vger.kernel.org
7123 S:      Maintained
7124
7125 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7126 M:      Adrian Hunter <adrian.hunter@intel.com>
7127 M:      Ritesh Harjani <riteshh@codeaurora.org>
7128 M:      Asutosh Das <asutoshd@codeaurora.org>
7129 L:      linux-mmc@vger.kernel.org
7130 S:      Maintained
7131 F:      drivers/mmc/host/cqhci*
7132
7133 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7134 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7135 L:      linux-scsi@vger.kernel.org
7136 S:      Supported
7137 W:      http://www.broadcom.com
7138 F:      drivers/scsi/be2iscsi/
7139
7140 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7141 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7142 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7143 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7144 L:      netdev@vger.kernel.org
7145 S:      Supported
7146 W:      http://www.emulex.com
7147 F:      drivers/net/ethernet/emulex/benet/
7148
7149 EMULEX ONECONNECT ROCE DRIVER
7150 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7151 L:      linux-rdma@vger.kernel.org
7152 S:      Odd Fixes
7153 W:      http://www.broadcom.com
7154 F:      drivers/infiniband/hw/ocrdma/
7155 F:      include/uapi/rdma/ocrdma-abi.h
7156
7157 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7158 M:      James Smart <james.smart@broadcom.com>
7159 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7160 L:      linux-scsi@vger.kernel.org
7161 S:      Supported
7162 W:      http://www.broadcom.com
7163 F:      drivers/scsi/lpfc/
7164
7165 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7166 M:      James Smart <james.smart@broadcom.com>
7167 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7168 L:      linux-scsi@vger.kernel.org
7169 L:      target-devel@vger.kernel.org
7170 S:      Supported
7171 W:      http://www.broadcom.com
7172 F:      drivers/scsi/elx/
7173
7174 ENE CB710 FLASH CARD READER DRIVER
7175 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7176 S:      Maintained
7177 F:      drivers/misc/cb710/
7178 F:      drivers/mmc/host/cb710-mmc.*
7179 F:      include/linux/cb710.h
7180
7181 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7182 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7183 S:      Maintained
7184 F:      drivers/media/rc/ene_ir.*
7185
7186 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7187 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7188 L:      linuxppc-dev@lists.ozlabs.org
7189 S:      Maintained
7190 F:      drivers/tty/ehv_bytechan.c
7191
7192 EPSON S1D13XXX FRAMEBUFFER DRIVER
7193 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7194 S:      Maintained
7195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7196 F:      drivers/video/fbdev/s1d13xxxfb.c
7197 F:      include/video/s1d13xxxfb.h
7198
7199 EROFS FILE SYSTEM
7200 M:      Gao Xiang <xiang@kernel.org>
7201 M:      Chao Yu <chao@kernel.org>
7202 L:      linux-erofs@lists.ozlabs.org
7203 S:      Maintained
7204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7205 F:      Documentation/filesystems/erofs.rst
7206 F:      fs/erofs/
7207 F:      include/trace/events/erofs.h
7208
7209 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7210 M:      Jeff Layton <jlayton@kernel.org>
7211 S:      Maintained
7212 F:      include/linux/errseq.h
7213 F:      lib/errseq.c
7214
7215 ET131X NETWORK DRIVER
7216 M:      Mark Einon <mark.einon@gmail.com>
7217 S:      Odd Fixes
7218 F:      drivers/net/ethernet/agere/
7219
7220 ETAS ES58X CAN/USB DRIVER
7221 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7222 L:      linux-can@vger.kernel.org
7223 S:      Maintained
7224 F:      drivers/net/can/usb/etas_es58x/
7225
7226 ETHERNET BRIDGE
7227 M:      Roopa Prabhu <roopa@nvidia.com>
7228 M:      Nikolay Aleksandrov <razor@blackwall.org>
7229 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7230 L:      netdev@vger.kernel.org
7231 S:      Maintained
7232 W:      http://www.linuxfoundation.org/en/Net:Bridge
7233 F:      include/linux/netfilter_bridge/
7234 F:      net/bridge/
7235
7236 ETHERNET PHY LIBRARY
7237 M:      Andrew Lunn <andrew@lunn.ch>
7238 M:      Heiner Kallweit <hkallweit1@gmail.com>
7239 R:      Russell King <linux@armlinux.org.uk>
7240 L:      netdev@vger.kernel.org
7241 S:      Maintained
7242 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7243 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7244 F:      Documentation/devicetree/bindings/net/mdio*
7245 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7246 F:      Documentation/networking/phy.rst
7247 F:      drivers/net/mdio/
7248 F:      drivers/net/mdio/acpi_mdio.c
7249 F:      drivers/net/mdio/fwnode_mdio.c
7250 F:      drivers/net/mdio/of_mdio.c
7251 F:      drivers/net/pcs/
7252 F:      drivers/net/phy/
7253 F:      include/dt-bindings/net/qca-ar803x.h
7254 F:      include/linux/linkmode.h
7255 F:      include/linux/*mdio*.h
7256 F:      include/linux/mdio/*.h
7257 F:      include/linux/mii.h
7258 F:      include/linux/of_net.h
7259 F:      include/linux/phy.h
7260 F:      include/linux/phy_fixed.h
7261 F:      include/linux/platform_data/mdio-bcm-unimac.h
7262 F:      include/linux/platform_data/mdio-gpio.h
7263 F:      include/trace/events/mdio.h
7264 F:      include/uapi/linux/mdio.h
7265 F:      include/uapi/linux/mii.h
7266 F:      net/core/of_net.c
7267
7268 EXEC & BINFMT API
7269 R:      Eric Biederman <ebiederm@xmission.com>
7270 R:      Kees Cook <keescook@chromium.org>
7271 L:      linux-mm@kvack.org
7272 S:      Supported
7273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7274 F:      arch/alpha/kernel/binfmt_loader.c
7275 F:      arch/x86/ia32/ia32_aout.c
7276 F:      fs/*binfmt_*.c
7277 F:      fs/exec.c
7278 F:      include/linux/binfmts.h
7279 F:      include/linux/elf.h
7280 F:      include/uapi/linux/binfmts.h
7281 F:      include/uapi/linux/elf.h
7282 F:      tools/testing/selftests/exec/
7283 N:      asm/elf.h
7284 N:      binfmt
7285
7286 EXFAT FILE SYSTEM
7287 M:      Namjae Jeon <linkinjeon@kernel.org>
7288 M:      Sungjong Seo <sj1557.seo@samsung.com>
7289 L:      linux-fsdevel@vger.kernel.org
7290 S:      Maintained
7291 F:      fs/exfat/
7292
7293 EXT2 FILE SYSTEM
7294 M:      Jan Kara <jack@suse.com>
7295 L:      linux-ext4@vger.kernel.org
7296 S:      Maintained
7297 F:      Documentation/filesystems/ext2.rst
7298 F:      fs/ext2/
7299 F:      include/linux/ext2*
7300
7301 EXT4 FILE SYSTEM
7302 M:      "Theodore Ts'o" <tytso@mit.edu>
7303 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7304 L:      linux-ext4@vger.kernel.org
7305 S:      Maintained
7306 W:      http://ext4.wiki.kernel.org
7307 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7309 F:      Documentation/filesystems/ext4/
7310 F:      fs/ext4/
7311 F:      include/trace/events/ext4.h
7312
7313 Extended Verification Module (EVM)
7314 M:      Mimi Zohar <zohar@linux.ibm.com>
7315 L:      linux-integrity@vger.kernel.org
7316 S:      Supported
7317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7318 F:      security/integrity/evm/
7319 F:      security/integrity/
7320
7321 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7322 M:      Ard Biesheuvel <ardb@kernel.org>
7323 L:      linux-efi@vger.kernel.org
7324 S:      Maintained
7325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7326 F:      Documentation/admin-guide/efi-stub.rst
7327 F:      arch/*/include/asm/efi.h
7328 F:      arch/*/kernel/efi.c
7329 F:      arch/arm/boot/compressed/efi-header.S
7330 F:      arch/arm64/kernel/efi-entry.S
7331 F:      arch/x86/platform/efi/
7332 F:      drivers/firmware/efi/
7333 F:      include/linux/efi*.h
7334
7335 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7336 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7337 M:      Chanwoo Choi <cw00.choi@samsung.com>
7338 L:      linux-kernel@vger.kernel.org
7339 S:      Maintained
7340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7341 F:      Documentation/devicetree/bindings/extcon/
7342 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7343 F:      drivers/extcon/
7344 F:      include/linux/extcon.h
7345 F:      include/linux/extcon/
7346
7347 EXTRA BOOT CONFIG
7348 M:      Masami Hiramatsu <mhiramat@kernel.org>
7349 S:      Maintained
7350 F:      Documentation/admin-guide/bootconfig.rst
7351 F:      fs/proc/bootconfig.c
7352 F:      include/linux/bootconfig.h
7353 F:      lib/bootconfig.c
7354 F:      tools/bootconfig/*
7355 F:      tools/bootconfig/scripts/*
7356
7357 EXYNOS DP DRIVER
7358 M:      Jingoo Han <jingoohan1@gmail.com>
7359 L:      dri-devel@lists.freedesktop.org
7360 S:      Maintained
7361 F:      drivers/gpu/drm/exynos/exynos_dp*
7362
7363 EXYNOS SYSMMU (IOMMU) driver
7364 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7365 L:      iommu@lists.linux-foundation.org
7366 S:      Maintained
7367 F:      drivers/iommu/exynos-iommu.c
7368
7369 F2FS FILE SYSTEM
7370 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7371 M:      Chao Yu <chao@kernel.org>
7372 L:      linux-f2fs-devel@lists.sourceforge.net
7373 S:      Maintained
7374 W:      https://f2fs.wiki.kernel.org/
7375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7376 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7377 F:      Documentation/filesystems/f2fs.rst
7378 F:      fs/f2fs/
7379 F:      include/linux/f2fs_fs.h
7380 F:      include/trace/events/f2fs.h
7381 F:      include/uapi/linux/f2fs.h
7382
7383 F71805F HARDWARE MONITORING DRIVER
7384 M:      Jean Delvare <jdelvare@suse.com>
7385 L:      linux-hwmon@vger.kernel.org
7386 S:      Maintained
7387 F:      Documentation/hwmon/f71805f.rst
7388 F:      drivers/hwmon/f71805f.c
7389
7390 FADDR2LINE
7391 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7392 S:      Maintained
7393 F:      scripts/faddr2line
7394
7395 FAILOVER MODULE
7396 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7397 L:      netdev@vger.kernel.org
7398 S:      Supported
7399 F:      Documentation/networking/failover.rst
7400 F:      include/net/failover.h
7401 F:      net/core/failover.c
7402
7403 FANOTIFY
7404 M:      Jan Kara <jack@suse.cz>
7405 R:      Amir Goldstein <amir73il@gmail.com>
7406 R:      Matthew Bobrowski <repnop@google.com>
7407 L:      linux-fsdevel@vger.kernel.org
7408 S:      Maintained
7409 F:      fs/notify/fanotify/
7410 F:      include/linux/fanotify.h
7411 F:      include/uapi/linux/fanotify.h
7412
7413 FARSYNC SYNCHRONOUS DRIVER
7414 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7415 S:      Supported
7416 W:      http://www.farsite.co.uk/
7417 F:      drivers/net/wan/farsync.*
7418
7419 FAULT INJECTION SUPPORT
7420 M:      Akinobu Mita <akinobu.mita@gmail.com>
7421 S:      Supported
7422 F:      Documentation/fault-injection/
7423 F:      lib/fault-inject.c
7424
7425 FBTFT Framebuffer drivers
7426 L:      dri-devel@lists.freedesktop.org
7427 L:      linux-fbdev@vger.kernel.org
7428 S:      Orphan
7429 F:      drivers/staging/fbtft/
7430
7431 FC0011 TUNER DRIVER
7432 M:      Michael Buesch <m@bues.ch>
7433 L:      linux-media@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/media/tuners/fc0011.c
7436 F:      drivers/media/tuners/fc0011.h
7437
7438 FC2580 MEDIA DRIVER
7439 M:      Antti Palosaari <crope@iki.fi>
7440 L:      linux-media@vger.kernel.org
7441 S:      Maintained
7442 W:      https://linuxtv.org
7443 W:      http://palosaari.fi/linux/
7444 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7445 T:      git git://linuxtv.org/anttip/media_tree.git
7446 F:      drivers/media/tuners/fc2580*
7447
7448 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7449 M:      Hannes Reinecke <hare@suse.de>
7450 L:      linux-scsi@vger.kernel.org
7451 S:      Supported
7452 W:      www.Open-FCoE.org
7453 F:      drivers/scsi/fcoe/
7454 F:      drivers/scsi/libfc/
7455 F:      include/scsi/fc/
7456 F:      include/scsi/libfc.h
7457 F:      include/scsi/libfcoe.h
7458 F:      include/uapi/scsi/fc/
7459
7460 FILE LOCKING (flock() and fcntl()/lockf())
7461 M:      Jeff Layton <jlayton@kernel.org>
7462 L:      linux-fsdevel@vger.kernel.org
7463 S:      Maintained
7464 F:      fs/fcntl.c
7465 F:      fs/locks.c
7466 F:      include/linux/fcntl.h
7467 F:      include/uapi/linux/fcntl.h
7468
7469 FILESYSTEM DIRECT ACCESS (DAX)
7470 M:      Dan Williams <dan.j.williams@intel.com>
7471 R:      Matthew Wilcox <willy@infradead.org>
7472 R:      Jan Kara <jack@suse.cz>
7473 L:      linux-fsdevel@vger.kernel.org
7474 L:      nvdimm@lists.linux.dev
7475 S:      Supported
7476 F:      fs/dax.c
7477 F:      include/linux/dax.h
7478 F:      include/trace/events/fs_dax.h
7479
7480 FILESYSTEMS (VFS and infrastructure)
7481 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7482 L:      linux-fsdevel@vger.kernel.org
7483 S:      Maintained
7484 F:      fs/*
7485 F:      include/linux/fs.h
7486 F:      include/linux/fs_types.h
7487 F:      include/uapi/linux/fs.h
7488 F:      include/uapi/linux/openat2.h
7489 X:      fs/io-wq.c
7490 X:      fs/io-wq.h
7491 X:      fs/io_uring.c
7492
7493 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7494 M:      Riku Voipio <riku.voipio@iki.fi>
7495 L:      linux-hwmon@vger.kernel.org
7496 S:      Maintained
7497 F:      drivers/hwmon/f75375s.c
7498 F:      include/linux/f75375s.h
7499
7500 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7501 M:      Clemens Ladisch <clemens@ladisch.de>
7502 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7503 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7504 S:      Maintained
7505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7506 F:      include/uapi/sound/firewire.h
7507 F:      sound/firewire/
7508
7509 FIREWIRE MEDIA DRIVERS (firedtv)
7510 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7511 L:      linux-media@vger.kernel.org
7512 L:      linux1394-devel@lists.sourceforge.net
7513 S:      Maintained
7514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7515 F:      drivers/media/firewire/
7516
7517 FIREWIRE SBP-2 TARGET
7518 M:      Chris Boot <bootc@bootc.net>
7519 L:      linux-scsi@vger.kernel.org
7520 L:      target-devel@vger.kernel.org
7521 L:      linux1394-devel@lists.sourceforge.net
7522 S:      Maintained
7523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7524 F:      drivers/target/sbp/
7525
7526 FIREWIRE SUBSYSTEM
7527 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7528 L:      linux1394-devel@lists.sourceforge.net
7529 S:      Maintained
7530 W:      http://ieee1394.wiki.kernel.org/
7531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7532 F:      drivers/firewire/
7533 F:      include/linux/firewire.h
7534 F:      include/uapi/linux/firewire*.h
7535 F:      tools/firewire/
7536
7537 FIRMWARE FRAMEWORK FOR ARMV8-A
7538 M:      Sudeep Holla <sudeep.holla@arm.com>
7539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7540 S:      Maintained
7541 F:      drivers/firmware/arm_ffa/
7542 F:      include/linux/arm_ffa.h
7543
7544 FIRMWARE LOADER (request_firmware)
7545 M:      Luis Chamberlain <mcgrof@kernel.org>
7546 L:      linux-kernel@vger.kernel.org
7547 S:      Maintained
7548 F:      Documentation/firmware_class/
7549 F:      drivers/base/firmware_loader/
7550 F:      include/linux/firmware.h
7551
7552 FLEXTIMER FTM-QUADDEC DRIVER
7553 M:      Patrick Havelange <patrick.havelange@essensium.com>
7554 L:      linux-iio@vger.kernel.org
7555 S:      Maintained
7556 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7557 F:      drivers/counter/ftm-quaddec.c
7558
7559 FLOPPY DRIVER
7560 M:      Denis Efremov <efremov@linux.com>
7561 L:      linux-block@vger.kernel.org
7562 S:      Odd Fixes
7563 F:      drivers/block/floppy.c
7564
7565 FLYSKY FSIA6B RC RECEIVER
7566 M:      Markus Koch <markus@notsyncing.net>
7567 L:      linux-input@vger.kernel.org
7568 S:      Maintained
7569 F:      drivers/input/joystick/fsia6b.c
7570
7571 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7572 M:      Geoffrey D. Bennett <g@b4.vu>
7573 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7574 S:      Maintained
7575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7576 F:      sound/usb/mixer_scarlett_gen2.c
7577
7578 FORCEDETH GIGABIT ETHERNET DRIVER
7579 M:      Rain River <rain.1986.08.12@gmail.com>
7580 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7581 L:      netdev@vger.kernel.org
7582 S:      Maintained
7583 F:      drivers/net/ethernet/nvidia/*
7584
7585 FORTIFY_SOURCE
7586 M:      Kees Cook <keescook@chromium.org>
7587 L:      linux-hardening@vger.kernel.org
7588 S:      Supported
7589 F:      include/linux/fortify-string.h
7590 F:      lib/test_fortify/*
7591 F:      scripts/test_fortify.sh
7592 K:      \b__NO_FORTIFY\b
7593
7594 FPGA DFL DRIVERS
7595 M:      Wu Hao <hao.wu@intel.com>
7596 R:      Tom Rix <trix@redhat.com>
7597 L:      linux-fpga@vger.kernel.org
7598 S:      Maintained
7599 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7600 F:      Documentation/fpga/dfl.rst
7601 F:      drivers/fpga/dfl*
7602 F:      drivers/uio/uio_dfl.c
7603 F:      include/linux/dfl.h
7604 F:      include/uapi/linux/fpga-dfl.h
7605
7606 FPGA MANAGER FRAMEWORK
7607 M:      Moritz Fischer <mdf@kernel.org>
7608 M:      Wu Hao <hao.wu@intel.com>
7609 M:      Xu Yilun <yilun.xu@intel.com>
7610 R:      Tom Rix <trix@redhat.com>
7611 L:      linux-fpga@vger.kernel.org
7612 S:      Maintained
7613 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7615 F:      Documentation/devicetree/bindings/fpga/
7616 F:      Documentation/driver-api/fpga/
7617 F:      Documentation/fpga/
7618 F:      drivers/fpga/
7619 F:      include/linux/fpga/
7620
7621 FPU EMULATOR
7622 M:      Bill Metzenthen <billm@melbpc.org.au>
7623 S:      Maintained
7624 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7625 F:      arch/x86/math-emu/
7626
7627 FRAMEBUFFER CORE
7628 M:      Daniel Vetter <daniel@ffwll.ch>
7629 F:      drivers/video/fbdev/core/
7630 S:      Odd Fixes
7631 T:      git git://anongit.freedesktop.org/drm/drm-misc
7632
7633 FRAMEBUFFER LAYER
7634 M:      Helge Deller <deller@gmx.de>
7635 L:      linux-fbdev@vger.kernel.org
7636 L:      dri-devel@lists.freedesktop.org
7637 S:      Maintained
7638 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7640 F:      Documentation/fb/
7641 F:      drivers/video/
7642 F:      include/linux/fb.h
7643 F:      include/uapi/linux/fb.h
7644 F:      include/uapi/video/
7645 F:      include/video/
7646
7647 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7648 M:      Horia Geantă <horia.geanta@nxp.com>
7649 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7650 M:      Gaurav Jain <gaurav.jain@nxp.com>
7651 L:      linux-crypto@vger.kernel.org
7652 S:      Maintained
7653 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7654 F:      drivers/crypto/caam/
7655
7656 FREESCALE COLDFIRE M5441X MMC DRIVER
7657 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7658 L:      linux-mmc@vger.kernel.org
7659 S:      Maintained
7660 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7661 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7662
7663 FREESCALE DIU FRAMEBUFFER DRIVER
7664 M:      Timur Tabi <timur@kernel.org>
7665 L:      linux-fbdev@vger.kernel.org
7666 S:      Maintained
7667 F:      drivers/video/fbdev/fsl-diu-fb.*
7668
7669 FREESCALE DMA DRIVER
7670 M:      Li Yang <leoyang.li@nxp.com>
7671 M:      Zhang Wei <zw@zh-kernel.org>
7672 L:      linuxppc-dev@lists.ozlabs.org
7673 S:      Maintained
7674 F:      drivers/dma/fsldma.*
7675
7676 FREESCALE DSPI DRIVER
7677 M:      Vladimir Oltean <olteanv@gmail.com>
7678 L:      linux-spi@vger.kernel.org
7679 S:      Maintained
7680 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7681 F:      drivers/spi/spi-fsl-dspi.c
7682 F:      include/linux/spi/spi-fsl-dspi.h
7683
7684 FREESCALE ENETC ETHERNET DRIVERS
7685 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7686 L:      netdev@vger.kernel.org
7687 S:      Maintained
7688 F:      drivers/net/ethernet/freescale/enetc/
7689
7690 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7691 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7692 L:      netdev@vger.kernel.org
7693 S:      Maintained
7694 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7695 F:      drivers/net/ethernet/freescale/gianfar*
7696
7697 FREESCALE GPMI NAND DRIVER
7698 M:      Han Xu <han.xu@nxp.com>
7699 L:      linux-mtd@lists.infradead.org
7700 S:      Maintained
7701 F:      drivers/mtd/nand/raw/gpmi-nand/*
7702
7703 FREESCALE I2C CPM DRIVER
7704 M:      Jochen Friedrich <jochen@scram.de>
7705 L:      linuxppc-dev@lists.ozlabs.org
7706 L:      linux-i2c@vger.kernel.org
7707 S:      Maintained
7708 F:      drivers/i2c/busses/i2c-cpm.c
7709
7710 FREESCALE IMX / MXC FEC DRIVER
7711 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7712 L:      netdev@vger.kernel.org
7713 S:      Maintained
7714 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7715 F:      drivers/net/ethernet/freescale/fec.h
7716 F:      drivers/net/ethernet/freescale/fec_main.c
7717 F:      drivers/net/ethernet/freescale/fec_ptp.c
7718
7719 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7720 M:      Sascha Hauer <s.hauer@pengutronix.de>
7721 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7722 L:      linux-fbdev@vger.kernel.org
7723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7724 S:      Maintained
7725 F:      drivers/video/fbdev/imxfb.c
7726 F:      include/linux/platform_data/video-imxfb.h
7727
7728 FREESCALE IMX DDR PMU DRIVER
7729 M:      Frank Li <Frank.li@nxp.com>
7730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7731 S:      Maintained
7732 F:      Documentation/admin-guide/perf/imx-ddr.rst
7733 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7734 F:      drivers/perf/fsl_imx8_ddr_perf.c
7735
7736 FREESCALE IMX I2C DRIVER
7737 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7738 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7739 L:      linux-i2c@vger.kernel.org
7740 S:      Maintained
7741 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7742 F:      drivers/i2c/busses/i2c-imx.c
7743
7744 FREESCALE IMX LPI2C DRIVER
7745 M:      Dong Aisheng <aisheng.dong@nxp.com>
7746 L:      linux-i2c@vger.kernel.org
7747 L:      linux-imx@nxp.com
7748 S:      Maintained
7749 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7750 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7751
7752 FREESCALE MPC I2C DRIVER
7753 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7754 L:      linux-i2c@vger.kernel.org
7755 S:      Maintained
7756 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7757 F:      drivers/i2c/busses/i2c-mpc.c
7758
7759 FREESCALE QORIQ DPAA ETHERNET DRIVER
7760 M:      Madalin Bucur <madalin.bucur@nxp.com>
7761 L:      netdev@vger.kernel.org
7762 S:      Maintained
7763 F:      drivers/net/ethernet/freescale/dpaa
7764
7765 FREESCALE QORIQ DPAA FMAN DRIVER
7766 M:      Madalin Bucur <madalin.bucur@nxp.com>
7767 L:      netdev@vger.kernel.org
7768 S:      Maintained
7769 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7770 F:      drivers/net/ethernet/freescale/fman
7771
7772 FREESCALE QORIQ PTP CLOCK DRIVER
7773 M:      Yangbo Lu <yangbo.lu@nxp.com>
7774 L:      netdev@vger.kernel.org
7775 S:      Maintained
7776 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7777 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7778 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7779 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7780 F:      drivers/ptp/ptp_qoriq.c
7781 F:      drivers/ptp/ptp_qoriq_debugfs.c
7782 F:      include/linux/fsl/ptp_qoriq.h
7783
7784 FREESCALE QUAD SPI DRIVER
7785 M:      Han Xu <han.xu@nxp.com>
7786 L:      linux-spi@vger.kernel.org
7787 S:      Maintained
7788 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7789 F:      drivers/spi/spi-fsl-qspi.c
7790
7791 FREESCALE QUICC ENGINE LIBRARY
7792 M:      Qiang Zhao <qiang.zhao@nxp.com>
7793 L:      linuxppc-dev@lists.ozlabs.org
7794 S:      Maintained
7795 F:      drivers/soc/fsl/qe/
7796 F:      include/soc/fsl/qe/
7797
7798 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7799 M:      Li Yang <leoyang.li@nxp.com>
7800 L:      netdev@vger.kernel.org
7801 L:      linuxppc-dev@lists.ozlabs.org
7802 S:      Maintained
7803 F:      drivers/net/ethernet/freescale/ucc_geth*
7804
7805 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7806 M:      Zhao Qiang <qiang.zhao@nxp.com>
7807 L:      netdev@vger.kernel.org
7808 L:      linuxppc-dev@lists.ozlabs.org
7809 S:      Maintained
7810 F:      drivers/net/wan/fsl_ucc_hdlc*
7811
7812 FREESCALE QUICC ENGINE UCC UART DRIVER
7813 M:      Timur Tabi <timur@kernel.org>
7814 L:      linuxppc-dev@lists.ozlabs.org
7815 S:      Maintained
7816 F:      drivers/tty/serial/ucc_uart.c
7817
7818 FREESCALE SOC DRIVERS
7819 M:      Li Yang <leoyang.li@nxp.com>
7820 L:      linuxppc-dev@lists.ozlabs.org
7821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7822 S:      Maintained
7823 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7824 F:      Documentation/devicetree/bindings/soc/fsl/
7825 F:      drivers/soc/fsl/
7826 F:      include/linux/fsl/
7827 F:      include/soc/fsl/
7828
7829 FREESCALE SOC FS_ENET DRIVER
7830 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7831 L:      linuxppc-dev@lists.ozlabs.org
7832 L:      netdev@vger.kernel.org
7833 S:      Maintained
7834 F:      drivers/net/ethernet/freescale/fs_enet/
7835 F:      include/linux/fs_enet_pd.h
7836
7837 FREESCALE SOC SOUND DRIVERS
7838 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
7839 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7840 R:      Fabio Estevam <festevam@gmail.com>
7841 R:      Nicolin Chen <nicoleotsuka@gmail.com>
7842 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7843 L:      linuxppc-dev@lists.ozlabs.org
7844 S:      Maintained
7845 F:      sound/soc/fsl/fsl*
7846 F:      sound/soc/fsl/imx*
7847 F:      sound/soc/fsl/mpc8610_hpcd.c
7848
7849 FREESCALE USB PERIPHERAL DRIVERS
7850 M:      Li Yang <leoyang.li@nxp.com>
7851 L:      linux-usb@vger.kernel.org
7852 L:      linuxppc-dev@lists.ozlabs.org
7853 S:      Maintained
7854 F:      drivers/usb/gadget/udc/fsl*
7855
7856 FREESCALE USB PHY DRIVER
7857 M:      Ran Wang <ran.wang_1@nxp.com>
7858 L:      linux-usb@vger.kernel.org
7859 L:      linuxppc-dev@lists.ozlabs.org
7860 S:      Maintained
7861 F:      drivers/usb/phy/phy-fsl-usb*
7862
7863 FREEVXFS FILESYSTEM
7864 M:      Christoph Hellwig <hch@infradead.org>
7865 S:      Maintained
7866 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7867 F:      fs/freevxfs/
7868
7869 FREEZER
7870 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7871 M:      Pavel Machek <pavel@ucw.cz>
7872 L:      linux-pm@vger.kernel.org
7873 S:      Supported
7874 F:      Documentation/power/freezing-of-tasks.rst
7875 F:      include/linux/freezer.h
7876 F:      kernel/freezer.c
7877
7878 FRONTSWAP API
7879 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7880 L:      linux-kernel@vger.kernel.org
7881 S:      Maintained
7882 F:      include/linux/frontswap.h
7883 F:      mm/frontswap.c
7884
7885 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7886 M:      David Howells <dhowells@redhat.com>
7887 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7888 S:      Supported
7889 F:      Documentation/filesystems/caching/
7890 F:      fs/fscache/
7891 F:      include/linux/fscache*.h
7892
7893 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7894 M:      Theodore Y. Ts'o <tytso@mit.edu>
7895 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7896 M:      Eric Biggers <ebiggers@kernel.org>
7897 L:      linux-fscrypt@vger.kernel.org
7898 S:      Supported
7899 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7900 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7901 F:      Documentation/filesystems/fscrypt.rst
7902 F:      fs/crypto/
7903 F:      include/linux/fscrypt*.h
7904 F:      include/uapi/linux/fscrypt.h
7905
7906 FSI SUBSYSTEM
7907 M:      Jeremy Kerr <jk@ozlabs.org>
7908 M:      Joel Stanley <joel@jms.id.au>
7909 R:      Alistar Popple <alistair@popple.id.au>
7910 R:      Eddie James <eajames@linux.ibm.com>
7911 L:      linux-fsi@lists.ozlabs.org
7912 S:      Supported
7913 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7915 F:      drivers/fsi/
7916 F:      include/linux/fsi*.h
7917 F:      include/trace/events/fsi*.h
7918
7919 FSI-ATTACHED I2C DRIVER
7920 M:      Eddie James <eajames@linux.ibm.com>
7921 L:      linux-i2c@vger.kernel.org
7922 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7923 S:      Maintained
7924 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7925 F:      drivers/i2c/busses/i2c-fsi.c
7926
7927 FSI-ATTACHED SPI DRIVER
7928 M:      Eddie James <eajames@linux.ibm.com>
7929 L:      linux-spi@vger.kernel.org
7930 S:      Maintained
7931 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7932 F:      drivers/spi/spi-fsi.c
7933
7934 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7935 M:      Jan Kara <jack@suse.cz>
7936 R:      Amir Goldstein <amir73il@gmail.com>
7937 L:      linux-fsdevel@vger.kernel.org
7938 S:      Maintained
7939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7940 F:      fs/notify/
7941 F:      include/linux/fsnotify*.h
7942
7943 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7944 M:      Eric Biggers <ebiggers@kernel.org>
7945 M:      Theodore Y. Ts'o <tytso@mit.edu>
7946 L:      linux-fscrypt@vger.kernel.org
7947 S:      Supported
7948 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7949 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7950 F:      Documentation/filesystems/fsverity.rst
7951 F:      fs/verity/
7952 F:      include/linux/fsverity.h
7953 F:      include/uapi/linux/fsverity.h
7954
7955 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7956 M:      Michael Zaidman <michael.zaidman@gmail.com>
7957 L:      linux-i2c@vger.kernel.org
7958 L:      linux-input@vger.kernel.org
7959 S:      Maintained
7960 F:      drivers/hid/hid-ft260.c
7961
7962 FUJITSU LAPTOP EXTRAS
7963 M:      Jonathan Woithe <jwoithe@just42.net>
7964 L:      platform-driver-x86@vger.kernel.org
7965 S:      Maintained
7966 F:      drivers/platform/x86/fujitsu-laptop.c
7967
7968 FUJITSU M-5MO LS CAMERA ISP DRIVER
7969 M:      Kyungmin Park <kyungmin.park@samsung.com>
7970 M:      Heungjun Kim <riverful.kim@samsung.com>
7971 L:      linux-media@vger.kernel.org
7972 S:      Maintained
7973 F:      drivers/media/i2c/m5mols/
7974 F:      include/media/i2c/m5mols.h
7975
7976 FUJITSU TABLET EXTRAS
7977 M:      Robert Gerlach <khnz@gmx.de>
7978 L:      platform-driver-x86@vger.kernel.org
7979 S:      Maintained
7980 F:      drivers/platform/x86/fujitsu-tablet.c
7981
7982 FUNGIBLE ETHERNET DRIVERS
7983 M:      Dimitris Michailidis <dmichail@fungible.com>
7984 L:      netdev@vger.kernel.org
7985 S:      Supported
7986 F:      drivers/net/ethernet/fungible/
7987
7988 FUSE: FILESYSTEM IN USERSPACE
7989 M:      Miklos Szeredi <miklos@szeredi.hu>
7990 L:      linux-fsdevel@vger.kernel.org
7991 S:      Maintained
7992 W:      https://github.com/libfuse/
7993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7994 F:      Documentation/filesystems/fuse.rst
7995 F:      fs/fuse/
7996 F:      include/uapi/linux/fuse.h
7997
7998 FUTEX SUBSYSTEM
7999 M:      Thomas Gleixner <tglx@linutronix.de>
8000 M:      Ingo Molnar <mingo@redhat.com>
8001 R:      Peter Zijlstra <peterz@infradead.org>
8002 R:      Darren Hart <dvhart@infradead.org>
8003 R:      Davidlohr Bueso <dave@stgolabs.net>
8004 R:      André Almeida <andrealmeid@collabora.com>
8005 L:      linux-kernel@vger.kernel.org
8006 S:      Maintained
8007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8008 F:      Documentation/locking/*futex*
8009 F:      include/asm-generic/futex.h
8010 F:      include/linux/futex.h
8011 F:      include/uapi/linux/futex.h
8012 F:      kernel/futex/*
8013 F:      tools/perf/bench/futex*
8014 F:      tools/testing/selftests/futex/
8015
8016 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8017 M:      Tim Harvey <tharvey@gateworks.com>
8018 M:      Robert Jones <rjones@gateworks.com>
8019 S:      Maintained
8020 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8021 F:      drivers/mfd/gateworks-gsc.c
8022 F:      include/linux/mfd/gsc.h
8023 F:      Documentation/hwmon/gsc-hwmon.rst
8024 F:      drivers/hwmon/gsc-hwmon.c
8025 F:      include/linux/platform_data/gsc_hwmon.h
8026
8027 GCC PLUGINS
8028 M:      Kees Cook <keescook@chromium.org>
8029 L:      linux-hardening@vger.kernel.org
8030 S:      Maintained
8031 F:      Documentation/kbuild/gcc-plugins.rst
8032 F:      scripts/Makefile.gcc-plugins
8033 F:      scripts/gcc-plugins/
8034
8035 GCOV BASED KERNEL PROFILING
8036 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8037 S:      Maintained
8038 F:      Documentation/dev-tools/gcov.rst
8039 F:      kernel/gcov/
8040
8041 GDB KERNEL DEBUGGING HELPER SCRIPTS
8042 M:      Jan Kiszka <jan.kiszka@siemens.com>
8043 M:      Kieran Bingham <kbingham@kernel.org>
8044 S:      Supported
8045 F:      scripts/gdb/
8046
8047 GEMINI CRYPTO DRIVER
8048 M:      Corentin Labbe <clabbe@baylibre.com>
8049 L:      linux-crypto@vger.kernel.org
8050 S:      Maintained
8051 F:      drivers/crypto/gemini/
8052
8053 GEMTEK FM RADIO RECEIVER DRIVER
8054 M:      Hans Verkuil <hverkuil@xs4all.nl>
8055 L:      linux-media@vger.kernel.org
8056 S:      Maintained
8057 W:      https://linuxtv.org
8058 T:      git git://linuxtv.org/media_tree.git
8059 F:      drivers/media/radio/radio-gemtek*
8060
8061 GENERIC ARCHITECTURE TOPOLOGY
8062 M:      Sudeep Holla <sudeep.holla@arm.com>
8063 L:      linux-kernel@vger.kernel.org
8064 S:      Maintained
8065 F:      drivers/base/arch_topology.c
8066 F:      include/linux/arch_topology.h
8067
8068 GENERIC ENTRY CODE
8069 M:      Thomas Gleixner <tglx@linutronix.de>
8070 M:      Peter Zijlstra <peterz@infradead.org>
8071 M:      Andy Lutomirski <luto@kernel.org>
8072 L:      linux-kernel@vger.kernel.org
8073 S:      Maintained
8074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8075 F:      include/linux/entry-common.h
8076 F:      include/linux/entry-kvm.h
8077 F:      kernel/entry/
8078
8079 GENERIC GPIO I2C DRIVER
8080 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8081 S:      Supported
8082 F:      drivers/i2c/busses/i2c-gpio.c
8083 F:      include/linux/platform_data/i2c-gpio.h
8084
8085 GENERIC GPIO I2C MULTIPLEXER DRIVER
8086 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8087 L:      linux-i2c@vger.kernel.org
8088 S:      Supported
8089 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8090 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8091 F:      include/linux/platform_data/i2c-mux-gpio.h
8092
8093 GENERIC HDLC (WAN) DRIVERS
8094 M:      Krzysztof Halasa <khc@pm.waw.pl>
8095 S:      Maintained
8096 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8097 F:      drivers/net/wan/c101.c
8098 F:      drivers/net/wan/hd6457*
8099 F:      drivers/net/wan/hdlc*
8100 F:      drivers/net/wan/n2.c
8101 F:      drivers/net/wan/pc300too.c
8102 F:      drivers/net/wan/pci200syn.c
8103 F:      drivers/net/wan/wanxl*
8104
8105 GENERIC INCLUDE/ASM HEADER FILES
8106 M:      Arnd Bergmann <arnd@arndb.de>
8107 L:      linux-arch@vger.kernel.org
8108 S:      Maintained
8109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8110 F:      include/asm-generic/
8111 F:      include/uapi/asm-generic/
8112
8113 GENERIC PHY FRAMEWORK
8114 M:      Kishon Vijay Abraham I <kishon@ti.com>
8115 M:      Vinod Koul <vkoul@kernel.org>
8116 L:      linux-phy@lists.infradead.org
8117 S:      Supported
8118 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8120 F:      Documentation/devicetree/bindings/phy/
8121 F:      drivers/phy/
8122 F:      include/linux/phy/
8123
8124 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8125 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8126 S:      Supported
8127 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8128
8129 GENERIC PM DOMAINS
8130 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8131 M:      Kevin Hilman <khilman@kernel.org>
8132 M:      Ulf Hansson <ulf.hansson@linaro.org>
8133 L:      linux-pm@vger.kernel.org
8134 S:      Supported
8135 F:      Documentation/devicetree/bindings/power/power?domain*
8136 F:      drivers/base/power/domain*.c
8137 F:      include/linux/pm_domain.h
8138
8139 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8140 M:      Eugen Hristev <eugen.hristev@microchip.com>
8141 L:      linux-input@vger.kernel.org
8142 S:      Maintained
8143 F:      drivers/input/touchscreen/resistive-adc-touch.c
8144
8145 GENERIC STRING LIBRARY
8146 R:      Andy Shevchenko <andy@kernel.org>
8147 S:      Maintained
8148 F:      lib/string.c
8149 F:      lib/string_helpers.c
8150 F:      lib/test_string.c
8151 F:      lib/test-string_helpers.c
8152
8153 GENERIC UIO DRIVER FOR PCI DEVICES
8154 M:      "Michael S. Tsirkin" <mst@redhat.com>
8155 L:      kvm@vger.kernel.org
8156 S:      Supported
8157 F:      drivers/uio/uio_pci_generic.c
8158
8159 GENERIC VDSO LIBRARY
8160 M:      Andy Lutomirski <luto@kernel.org>
8161 M:      Thomas Gleixner <tglx@linutronix.de>
8162 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8163 L:      linux-kernel@vger.kernel.org
8164 S:      Maintained
8165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8166 F:      include/asm-generic/vdso/vsyscall.h
8167 F:      include/vdso/
8168 F:      kernel/time/vsyscall.c
8169 F:      lib/vdso/
8170
8171 GENWQE (IBM Generic Workqueue Card)
8172 M:      Frank Haverkamp <haver@linux.ibm.com>
8173 S:      Supported
8174 F:      drivers/misc/genwqe/
8175
8176 GET_MAINTAINER SCRIPT
8177 M:      Joe Perches <joe@perches.com>
8178 S:      Maintained
8179 F:      scripts/get_maintainer.pl
8180
8181 GFS2 FILE SYSTEM
8182 M:      Bob Peterson <rpeterso@redhat.com>
8183 M:      Andreas Gruenbacher <agruenba@redhat.com>
8184 L:      cluster-devel@redhat.com
8185 S:      Supported
8186 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8188 F:      Documentation/filesystems/gfs2*
8189 F:      fs/gfs2/
8190 F:      include/uapi/linux/gfs2_ondisk.h
8191
8192 GIGABYTE WMI DRIVER
8193 M:      Thomas Weißschuh <thomas@weissschuh.net>
8194 L:      platform-driver-x86@vger.kernel.org
8195 S:      Maintained
8196 F:      drivers/platform/x86/gigabyte-wmi.c
8197
8198 GNSS SUBSYSTEM
8199 M:      Johan Hovold <johan@kernel.org>
8200 S:      Maintained
8201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8202 F:      Documentation/ABI/testing/sysfs-class-gnss
8203 F:      Documentation/devicetree/bindings/gnss/
8204 F:      drivers/gnss/
8205 F:      include/linux/gnss.h
8206
8207 GO7007 MPEG CODEC
8208 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8209 L:      linux-media@vger.kernel.org
8210 S:      Maintained
8211 F:      drivers/media/usb/go7007/
8212
8213 GOODIX TOUCHSCREEN
8214 M:      Bastien Nocera <hadess@hadess.net>
8215 M:      Hans de Goede <hdegoede@redhat.com>
8216 L:      linux-input@vger.kernel.org
8217 S:      Maintained
8218 F:      drivers/input/touchscreen/goodix*
8219
8220 GOOGLE ETHERNET DRIVERS
8221 M:      Jeroen de Borst <jeroendb@google.com>
8222 R:      Catherine Sullivan <csully@google.com>
8223 R:      David Awogbemila <awogbemila@google.com>
8224 L:      netdev@vger.kernel.org
8225 S:      Supported
8226 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8227 F:      drivers/net/ethernet/google
8228
8229 GPD POCKET FAN DRIVER
8230 M:      Hans de Goede <hdegoede@redhat.com>
8231 L:      platform-driver-x86@vger.kernel.org
8232 S:      Maintained
8233 F:      drivers/platform/x86/gpd-pocket-fan.c
8234
8235 GPIO ACPI SUPPORT
8236 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8237 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8238 L:      linux-gpio@vger.kernel.org
8239 L:      linux-acpi@vger.kernel.org
8240 S:      Maintained
8241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8242 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8243 F:      drivers/gpio/gpiolib-acpi.c
8244 F:      drivers/gpio/gpiolib-acpi.h
8245
8246 GPIO AGGREGATOR
8247 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8248 L:      linux-gpio@vger.kernel.org
8249 S:      Supported
8250 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8251 F:      drivers/gpio/gpio-aggregator.c
8252
8253 GPIO IR Transmitter
8254 M:      Sean Young <sean@mess.org>
8255 L:      linux-media@vger.kernel.org
8256 S:      Maintained
8257 F:      drivers/media/rc/gpio-ir-tx.c
8258
8259 GPIO MOCKUP DRIVER
8260 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8261 L:      linux-gpio@vger.kernel.org
8262 S:      Maintained
8263 F:      drivers/gpio/gpio-mockup.c
8264 F:      tools/testing/selftests/gpio/
8265
8266 GPIO REGMAP
8267 R:      Michael Walle <michael@walle.cc>
8268 S:      Maintained
8269 F:      drivers/gpio/gpio-regmap.c
8270 F:      include/linux/gpio/regmap.h
8271
8272 GPIO SUBSYSTEM
8273 M:      Linus Walleij <linus.walleij@linaro.org>
8274 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8275 L:      linux-gpio@vger.kernel.org
8276 S:      Maintained
8277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8278 F:      Documentation/ABI/obsolete/sysfs-gpio
8279 F:      Documentation/ABI/testing/gpio-cdev
8280 F:      Documentation/admin-guide/gpio/
8281 F:      Documentation/devicetree/bindings/gpio/
8282 F:      Documentation/driver-api/gpio/
8283 F:      drivers/gpio/
8284 F:      include/asm-generic/gpio.h
8285 F:      include/linux/gpio.h
8286 F:      include/linux/gpio/
8287 F:      include/linux/of_gpio.h
8288 F:      include/uapi/linux/gpio.h
8289 F:      tools/gpio/
8290
8291 GRE DEMULTIPLEXER DRIVER
8292 M:      Dmitry Kozlov <xeb@mail.ru>
8293 L:      netdev@vger.kernel.org
8294 S:      Maintained
8295 F:      include/net/gre.h
8296 F:      net/ipv4/gre_demux.c
8297 F:      net/ipv4/gre_offload.c
8298
8299 GRETH 10/100/1G Ethernet MAC device driver
8300 M:      Andreas Larsson <andreas@gaisler.com>
8301 L:      netdev@vger.kernel.org
8302 S:      Maintained
8303 F:      drivers/net/ethernet/aeroflex/
8304
8305 GREYBUS AUDIO PROTOCOLS DRIVERS
8306 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8307 M:      Mark Greer <mgreer@animalcreek.com>
8308 S:      Maintained
8309 F:      drivers/staging/greybus/audio_apbridgea.c
8310 F:      drivers/staging/greybus/audio_apbridgea.h
8311 F:      drivers/staging/greybus/audio_codec.c
8312 F:      drivers/staging/greybus/audio_codec.h
8313 F:      drivers/staging/greybus/audio_gb.c
8314 F:      drivers/staging/greybus/audio_manager.c
8315 F:      drivers/staging/greybus/audio_manager.h
8316 F:      drivers/staging/greybus/audio_manager_module.c
8317 F:      drivers/staging/greybus/audio_manager_private.h
8318 F:      drivers/staging/greybus/audio_manager_sysfs.c
8319 F:      drivers/staging/greybus/audio_module.c
8320 F:      drivers/staging/greybus/audio_topology.c
8321
8322 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8323 M:      Viresh Kumar <vireshk@kernel.org>
8324 S:      Maintained
8325 F:      drivers/staging/greybus/authentication.c
8326 F:      drivers/staging/greybus/bootrom.c
8327 F:      drivers/staging/greybus/firmware.h
8328 F:      drivers/staging/greybus/fw-core.c
8329 F:      drivers/staging/greybus/fw-download.c
8330 F:      drivers/staging/greybus/fw-management.c
8331 F:      drivers/staging/greybus/greybus_authentication.h
8332 F:      drivers/staging/greybus/greybus_firmware.h
8333 F:      drivers/staging/greybus/hid.c
8334 F:      drivers/staging/greybus/i2c.c
8335 F:      drivers/staging/greybus/spi.c
8336 F:      drivers/staging/greybus/spilib.c
8337 F:      drivers/staging/greybus/spilib.h
8338
8339 GREYBUS LOOPBACK DRIVER
8340 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8341 S:      Maintained
8342 F:      drivers/staging/greybus/loopback.c
8343
8344 GREYBUS PLATFORM DRIVERS
8345 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8346 S:      Maintained
8347 F:      drivers/staging/greybus/arche-apb-ctrl.c
8348 F:      drivers/staging/greybus/arche-platform.c
8349 F:      drivers/staging/greybus/arche_platform.h
8350
8351 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8352 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8353 S:      Maintained
8354 F:      drivers/staging/greybus/gpio.c
8355 F:      drivers/staging/greybus/light.c
8356 F:      drivers/staging/greybus/power_supply.c
8357 F:      drivers/staging/greybus/sdio.c
8358 F:      drivers/staging/greybus/spi.c
8359 F:      drivers/staging/greybus/spilib.c
8360
8361 GREYBUS SUBSYSTEM
8362 M:      Johan Hovold <johan@kernel.org>
8363 M:      Alex Elder <elder@kernel.org>
8364 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8365 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8366 S:      Maintained
8367 F:      drivers/greybus/
8368 F:      drivers/staging/greybus/
8369 F:      include/linux/greybus.h
8370 F:      include/linux/greybus/
8371
8372 GREYBUS UART PROTOCOLS DRIVERS
8373 M:      David Lin <dtwlin@gmail.com>
8374 S:      Maintained
8375 F:      drivers/staging/greybus/log.c
8376 F:      drivers/staging/greybus/uart.c
8377
8378 GS1662 VIDEO SERIALIZER
8379 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8380 L:      linux-media@vger.kernel.org
8381 S:      Maintained
8382 T:      git git://linuxtv.org/media_tree.git
8383 F:      drivers/media/spi/gs1662.c
8384
8385 GSPCA FINEPIX SUBDRIVER
8386 M:      Frank Zago <frank@zago.net>
8387 L:      linux-media@vger.kernel.org
8388 S:      Maintained
8389 T:      git git://linuxtv.org/media_tree.git
8390 F:      drivers/media/usb/gspca/finepix.c
8391
8392 GSPCA GL860 SUBDRIVER
8393 M:      Olivier Lorin <o.lorin@laposte.net>
8394 L:      linux-media@vger.kernel.org
8395 S:      Maintained
8396 T:      git git://linuxtv.org/media_tree.git
8397 F:      drivers/media/usb/gspca/gl860/
8398
8399 GSPCA M5602 SUBDRIVER
8400 M:      Erik Andren <erik.andren@gmail.com>
8401 L:      linux-media@vger.kernel.org
8402 S:      Maintained
8403 T:      git git://linuxtv.org/media_tree.git
8404 F:      drivers/media/usb/gspca/m5602/
8405
8406 GSPCA PAC207 SONIXB SUBDRIVER
8407 M:      Hans Verkuil <hverkuil@xs4all.nl>
8408 L:      linux-media@vger.kernel.org
8409 S:      Odd Fixes
8410 T:      git git://linuxtv.org/media_tree.git
8411 F:      drivers/media/usb/gspca/pac207.c
8412
8413 GSPCA SN9C20X SUBDRIVER
8414 M:      Brian Johnson <brijohn@gmail.com>
8415 L:      linux-media@vger.kernel.org
8416 S:      Maintained
8417 T:      git git://linuxtv.org/media_tree.git
8418 F:      drivers/media/usb/gspca/sn9c20x.c
8419
8420 GSPCA T613 SUBDRIVER
8421 M:      Leandro Costantino <lcostantino@gmail.com>
8422 L:      linux-media@vger.kernel.org
8423 S:      Maintained
8424 T:      git git://linuxtv.org/media_tree.git
8425 F:      drivers/media/usb/gspca/t613.c
8426
8427 GSPCA USB WEBCAM DRIVER
8428 M:      Hans Verkuil <hverkuil@xs4all.nl>
8429 L:      linux-media@vger.kernel.org
8430 S:      Odd Fixes
8431 T:      git git://linuxtv.org/media_tree.git
8432 F:      drivers/media/usb/gspca/
8433
8434 GTP (GPRS Tunneling Protocol)
8435 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8436 M:      Harald Welte <laforge@gnumonks.org>
8437 L:      osmocom-net-gprs@lists.osmocom.org
8438 S:      Maintained
8439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8440 F:      drivers/net/gtp.c
8441
8442 GUID PARTITION TABLE (GPT)
8443 M:      Davidlohr Bueso <dave@stgolabs.net>
8444 L:      linux-efi@vger.kernel.org
8445 S:      Maintained
8446 F:      block/partitions/efi.*
8447
8448 H8/300 ARCHITECTURE
8449 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8450 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8451 S:      Maintained
8452 W:      http://uclinux-h8.sourceforge.jp
8453 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8454 F:      arch/h8300/
8455 F:      drivers/clk/h8300/
8456 F:      drivers/clocksource/h8300_*.c
8457 F:      drivers/irqchip/irq-renesas-h8*.c
8458
8459 HABANALABS PCI DRIVER
8460 M:      Oded Gabbay <ogabbay@kernel.org>
8461 S:      Supported
8462 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8463 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8464 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8465 F:      drivers/misc/habanalabs/
8466 F:      include/uapi/misc/habanalabs.h
8467
8468 HACKRF MEDIA DRIVER
8469 M:      Antti Palosaari <crope@iki.fi>
8470 L:      linux-media@vger.kernel.org
8471 S:      Maintained
8472 W:      https://linuxtv.org
8473 W:      http://palosaari.fi/linux/
8474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8475 T:      git git://linuxtv.org/anttip/media_tree.git
8476 F:      drivers/media/usb/hackrf/
8477
8478 HANTRO VPU CODEC DRIVER
8479 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8480 M:      Philipp Zabel <p.zabel@pengutronix.de>
8481 L:      linux-media@vger.kernel.org
8482 L:      linux-rockchip@lists.infradead.org
8483 S:      Maintained
8484 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8485 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8486 F:      drivers/staging/media/hantro/
8487
8488 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8489 M:      Frank Seidel <frank@f-seidel.de>
8490 L:      platform-driver-x86@vger.kernel.org
8491 S:      Maintained
8492 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8493 F:      drivers/platform/x86/hdaps.c
8494
8495 HARDWARE MONITORING
8496 M:      Jean Delvare <jdelvare@suse.com>
8497 M:      Guenter Roeck <linux@roeck-us.net>
8498 L:      linux-hwmon@vger.kernel.org
8499 S:      Maintained
8500 W:      http://hwmon.wiki.kernel.org/
8501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8502 F:      Documentation/ABI/testing/sysfs-class-hwmon
8503 F:      Documentation/devicetree/bindings/hwmon/
8504 F:      Documentation/hwmon/
8505 F:      drivers/hwmon/
8506 F:      include/linux/hwmon*.h
8507 F:      include/trace/events/hwmon*.h
8508 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8509
8510 HARDWARE RANDOM NUMBER GENERATOR CORE
8511 M:      Matt Mackall <mpm@selenic.com>
8512 M:      Herbert Xu <herbert@gondor.apana.org.au>
8513 L:      linux-crypto@vger.kernel.org
8514 S:      Odd fixes
8515 F:      Documentation/admin-guide/hw_random.rst
8516 F:      Documentation/devicetree/bindings/rng/
8517 F:      drivers/char/hw_random/
8518 F:      include/linux/hw_random.h
8519
8520 HARDWARE SPINLOCK CORE
8521 M:      Ohad Ben-Cohen <ohad@wizery.com>
8522 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8523 R:      Baolin Wang <baolin.wang7@gmail.com>
8524 L:      linux-remoteproc@vger.kernel.org
8525 S:      Maintained
8526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8527 F:      Documentation/devicetree/bindings/hwlock/
8528 F:      Documentation/locking/hwspinlock.rst
8529 F:      drivers/hwspinlock/
8530 F:      include/linux/hwspinlock.h
8531
8532 HARDWARE TRACING FACILITIES
8533 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8534 S:      Maintained
8535 F:      drivers/hwtracing/
8536
8537 HARMONY SOUND DRIVER
8538 L:      linux-parisc@vger.kernel.org
8539 S:      Maintained
8540 F:      sound/parisc/harmony.*
8541
8542 HDPVR USB VIDEO ENCODER DRIVER
8543 M:      Hans Verkuil <hverkuil@xs4all.nl>
8544 L:      linux-media@vger.kernel.org
8545 S:      Odd Fixes
8546 W:      https://linuxtv.org
8547 T:      git git://linuxtv.org/media_tree.git
8548 F:      drivers/media/usb/hdpvr/
8549
8550 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8551 M:      Matt Hsiao <matt.hsiao@hpe.com>
8552 S:      Supported
8553 F:      drivers/misc/hpilo.[ch]
8554
8555 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8556 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8557 S:      Supported
8558 F:      Documentation/watchdog/hpwdt.rst
8559 F:      drivers/watchdog/hpwdt.c
8560
8561 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8562 M:      Don Brace <don.brace@microchip.com>
8563 L:      storagedev@microchip.com
8564 L:      linux-scsi@vger.kernel.org
8565 S:      Supported
8566 F:      Documentation/scsi/hpsa.rst
8567 F:      drivers/scsi/hpsa*.[ch]
8568 F:      include/linux/cciss*.h
8569 F:      include/uapi/linux/cciss*.h
8570
8571 HFI1 DRIVER
8572 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8573 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8574 L:      linux-rdma@vger.kernel.org
8575 S:      Supported
8576 F:      drivers/infiniband/hw/hfi1
8577
8578 HFS FILESYSTEM
8579 L:      linux-fsdevel@vger.kernel.org
8580 S:      Orphan
8581 F:      Documentation/filesystems/hfs.rst
8582 F:      fs/hfs/
8583
8584 HFSPLUS FILESYSTEM
8585 L:      linux-fsdevel@vger.kernel.org
8586 S:      Orphan
8587 F:      Documentation/filesystems/hfsplus.rst
8588 F:      fs/hfsplus/
8589
8590 HGA FRAMEBUFFER DRIVER
8591 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8592 L:      linux-nvidia@lists.surfsouth.com
8593 S:      Maintained
8594 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8595 F:      drivers/video/fbdev/hgafb.c
8596
8597 HIBERNATION (aka Software Suspend, aka swsusp)
8598 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8599 M:      Pavel Machek <pavel@ucw.cz>
8600 L:      linux-pm@vger.kernel.org
8601 S:      Supported
8602 B:      https://bugzilla.kernel.org
8603 F:      arch/*/include/asm/suspend*.h
8604 F:      arch/x86/power/
8605 F:      drivers/base/power/
8606 F:      include/linux/freezer.h
8607 F:      include/linux/pm.h
8608 F:      include/linux/suspend.h
8609 F:      kernel/power/
8610
8611 HID CORE LAYER
8612 M:      Jiri Kosina <jikos@kernel.org>
8613 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8614 L:      linux-input@vger.kernel.org
8615 S:      Maintained
8616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8617 F:      drivers/hid/
8618 F:      include/linux/hid*
8619 F:      include/uapi/linux/hid*
8620
8621 HID LOGITECH DRIVERS
8622 R:      Filipe Laíns <lains@riseup.net>
8623 L:      linux-input@vger.kernel.org
8624 S:      Maintained
8625 F:      drivers/hid/hid-logitech-*
8626
8627 HID PLAYSTATION DRIVER
8628 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8629 L:      linux-input@vger.kernel.org
8630 S:      Supported
8631 F:      drivers/hid/hid-playstation.c
8632
8633 HID SENSOR HUB DRIVERS
8634 M:      Jiri Kosina <jikos@kernel.org>
8635 M:      Jonathan Cameron <jic23@kernel.org>
8636 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8637 L:      linux-input@vger.kernel.org
8638 L:      linux-iio@vger.kernel.org
8639 S:      Maintained
8640 F:      Documentation/hid/hid-sensor*
8641 F:      drivers/hid/hid-sensor-*
8642 F:      drivers/iio/*/hid-*
8643 F:      include/linux/hid-sensor-*
8644
8645 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8646 M:      Thomas Gleixner <tglx@linutronix.de>
8647 L:      linux-kernel@vger.kernel.org
8648 S:      Maintained
8649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8650 F:      Documentation/timers/
8651 F:      include/linux/clockchips.h
8652 F:      include/linux/hrtimer.h
8653 F:      kernel/time/clockevents.c
8654 F:      kernel/time/hrtimer.c
8655 F:      kernel/time/timer_*.c
8656
8657 HIGH-SPEED SCC DRIVER FOR AX.25
8658 L:      linux-hams@vger.kernel.org
8659 S:      Orphan
8660 F:      drivers/net/hamradio/dmascc.c
8661 F:      drivers/net/hamradio/scc.c
8662
8663 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8664 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8665 S:      Supported
8666 W:      http://www.highpoint-tech.com
8667 F:      Documentation/scsi/hptiop.rst
8668 F:      drivers/scsi/hptiop.c
8669
8670 HIPPI
8671 M:      Jes Sorensen <jes@trained-monkey.org>
8672 L:      linux-hippi@sunsite.dk
8673 S:      Maintained
8674 F:      drivers/net/hippi/
8675 F:      include/linux/hippidevice.h
8676 F:      include/uapi/linux/if_hippi.h
8677 F:      net/802/hippi.c
8678
8679 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8680 M:      Kurt Kanzenbach <kurt@linutronix.de>
8681 L:      netdev@vger.kernel.org
8682 S:      Maintained
8683 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8684 F:      drivers/net/dsa/hirschmann/*
8685 F:      include/linux/platform_data/hirschmann-hellcreek.h
8686 F:      net/dsa/tag_hellcreek.c
8687
8688 HISILICON DMA DRIVER
8689 M:      Zhou Wang <wangzhou1@hisilicon.com>
8690 L:      dmaengine@vger.kernel.org
8691 S:      Maintained
8692 F:      drivers/dma/hisi_dma.c
8693
8694 HISILICON GPIO DRIVER
8695 M:      Luo Jiaxing <luojiaxing@huawei.com>
8696 L:      linux-gpio@vger.kernel.org
8697 S:      Maintained
8698 F:      drivers/gpio/gpio-hisi.c
8699
8700 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8701 M:      Longfang Liu <liulongfang@huawei.com>
8702 L:      linux-crypto@vger.kernel.org
8703 S:      Maintained
8704 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8705 F:      drivers/crypto/hisilicon/hpre/hpre.h
8706 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8707 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8708
8709 HISILICON I2C CONTROLLER DRIVER
8710 M:      Yicong Yang <yangyicong@hisilicon.com>
8711 L:      linux-i2c@vger.kernel.org
8712 S:      Maintained
8713 W:      https://www.hisilicon.com
8714 F:      drivers/i2c/busses/i2c-hisi.c
8715
8716 HISILICON LPC BUS DRIVER
8717 M:      john.garry@huawei.com
8718 S:      Maintained
8719 W:      http://www.hisilicon.com
8720 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8721 F:      drivers/bus/hisi_lpc.c
8722
8723 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8724 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8725 M:      Salil Mehta <salil.mehta@huawei.com>
8726 L:      netdev@vger.kernel.org
8727 S:      Maintained
8728 W:      http://www.hisilicon.com
8729 F:      drivers/net/ethernet/hisilicon/hns3/
8730
8731 HISILICON NETWORK SUBSYSTEM DRIVER
8732 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8733 M:      Salil Mehta <salil.mehta@huawei.com>
8734 L:      netdev@vger.kernel.org
8735 S:      Maintained
8736 W:      http://www.hisilicon.com
8737 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8738 F:      drivers/net/ethernet/hisilicon/
8739
8740 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8741 M:      John Stultz <john.stultz@linaro.org>
8742 L:      linux-kernel@vger.kernel.org
8743 S:      Maintained
8744 F:      drivers/misc/hisi_hikey_usb.c
8745
8746 HISILICON PMU DRIVER
8747 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8748 M:      Qi Liu <liuqi115@huawei.com>
8749 S:      Supported
8750 W:      http://www.hisilicon.com
8751 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8752 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8753 F:      drivers/perf/hisilicon
8754
8755 HISILICON QM AND ZIP Controller DRIVER
8756 M:      Zhou Wang <wangzhou1@hisilicon.com>
8757 L:      linux-crypto@vger.kernel.org
8758 S:      Maintained
8759 F:      Documentation/ABI/testing/debugfs-hisi-zip
8760 F:      drivers/crypto/hisilicon/qm.c
8761 F:      drivers/crypto/hisilicon/sgl.c
8762 F:      drivers/crypto/hisilicon/zip/
8763 F:      include/linux/hisi_acc_qm.h
8764
8765 HISILICON ROCE DRIVER
8766 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8767 M:      Weihang Li <liweihang@huawei.com>
8768 L:      linux-rdma@vger.kernel.org
8769 S:      Maintained
8770 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8771 F:      drivers/infiniband/hw/hns/
8772
8773 HISILICON SAS Controller
8774 M:      John Garry <john.garry@huawei.com>
8775 S:      Supported
8776 W:      http://www.hisilicon.com
8777 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8778 F:      drivers/scsi/hisi_sas/
8779
8780 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8781 M:      Kai Ye <yekai13@huawei.com>
8782 M:      Longfang Liu <liulongfang@huawei.com>
8783 L:      linux-crypto@vger.kernel.org
8784 S:      Maintained
8785 F:      Documentation/ABI/testing/debugfs-hisi-sec
8786 F:      drivers/crypto/hisilicon/sec2/sec.h
8787 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8788 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8789 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8790
8791 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8792 M:      Jay Fang <f.fangjian@huawei.com>
8793 L:      linux-spi@vger.kernel.org
8794 S:      Maintained
8795 W:      http://www.hisilicon.com
8796 F:      drivers/spi/spi-hisi-kunpeng.c
8797
8798 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8799 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8800 L:      linux-kernel@vger.kernel.org
8801 S:      Maintained
8802 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8803 F:      drivers/spmi/hisi-spmi-controller.c
8804
8805 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8806 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8807 L:      linux-kernel@vger.kernel.org
8808 S:      Maintained
8809 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8810 F:      drivers/mfd/hi6421-spmi-pmic.c
8811
8812 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8813 M:      Weili Qian <qianweili@huawei.com>
8814 S:      Maintained
8815 F:      drivers/crypto/hisilicon/trng/trng.c
8816
8817 HISILICON V3XX SPI NOR FLASH Controller Driver
8818 M:      John Garry <john.garry@huawei.com>
8819 S:      Maintained
8820 W:      http://www.hisilicon.com
8821 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8822
8823 HMM - Heterogeneous Memory Management
8824 M:      Jérôme Glisse <jglisse@redhat.com>
8825 L:      linux-mm@kvack.org
8826 S:      Maintained
8827 F:      Documentation/vm/hmm.rst
8828 F:      include/linux/hmm*
8829 F:      lib/test_hmm*
8830 F:      mm/hmm*
8831 F:      tools/testing/selftests/vm/*hmm*
8832
8833 HOST AP DRIVER
8834 M:      Jouni Malinen <j@w1.fi>
8835 L:      linux-wireless@vger.kernel.org
8836 S:      Obsolete
8837 W:      http://w1.fi/hostap-driver.html
8838 F:      drivers/net/wireless/intersil/hostap/
8839
8840 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8841 L:      platform-driver-x86@vger.kernel.org
8842 S:      Orphan
8843 F:      drivers/platform/x86/tc1100-wmi.c
8844
8845 HPET:   High Precision Event Timers driver
8846 M:      Clemens Ladisch <clemens@ladisch.de>
8847 S:      Maintained
8848 F:      Documentation/timers/hpet.rst
8849 F:      drivers/char/hpet.c
8850 F:      include/linux/hpet.h
8851 F:      include/uapi/linux/hpet.h
8852
8853 HPET:   x86
8854 S:      Orphan
8855 F:      arch/x86/include/asm/hpet.h
8856 F:      arch/x86/kernel/hpet.c
8857
8858 HPFS FILESYSTEM
8859 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8860 S:      Maintained
8861 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8862 F:      fs/hpfs/
8863
8864 HSI SUBSYSTEM
8865 M:      Sebastian Reichel <sre@kernel.org>
8866 S:      Maintained
8867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8868 F:      Documentation/ABI/testing/sysfs-bus-hsi
8869 F:      Documentation/driver-api/hsi.rst
8870 F:      drivers/hsi/
8871 F:      include/linux/hsi/
8872 F:      include/uapi/linux/hsi/
8873
8874 HSO 3G MODEM DRIVER
8875 L:      linux-usb@vger.kernel.org
8876 S:      Orphan
8877 F:      drivers/net/usb/hso.c
8878
8879 HSR NETWORK PROTOCOL
8880 L:      netdev@vger.kernel.org
8881 S:      Orphan
8882 F:      net/hsr/
8883
8884 HT16K33 LED CONTROLLER DRIVER
8885 M:      Robin van der Gracht <robin@protonic.nl>
8886 S:      Maintained
8887 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8888 F:      drivers/auxdisplay/ht16k33.c
8889
8890 HTCPEN TOUCHSCREEN DRIVER
8891 M:      Pau Oliva Fora <pof@eslack.org>
8892 L:      linux-input@vger.kernel.org
8893 S:      Maintained
8894 F:      drivers/input/touchscreen/htcpen.c
8895
8896 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8897 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8898 L:      linux-iio@vger.kernel.org
8899 S:      Maintained
8900 W:      http://www.st.com/
8901 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8902 F:      drivers/iio/humidity/hts221*
8903
8904 HUAWEI ETHERNET DRIVER
8905 L:      netdev@vger.kernel.org
8906 S:      Orphan
8907 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8908 F:      drivers/net/ethernet/huawei/hinic/
8909
8910 HUGETLB FILESYSTEM
8911 M:      Mike Kravetz <mike.kravetz@oracle.com>
8912 L:      linux-mm@kvack.org
8913 S:      Maintained
8914 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8915 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8916 F:      Documentation/vm/hugetlbfs_reserv.rst
8917 F:      fs/hugetlbfs/
8918 F:      include/linux/hugetlb.h
8919 F:      mm/hugetlb.c
8920
8921 HVA ST MEDIA DRIVER
8922 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8923 L:      linux-media@vger.kernel.org
8924 S:      Supported
8925 W:      https://linuxtv.org
8926 T:      git git://linuxtv.org/media_tree.git
8927 F:      drivers/media/platform/st/sti/hva
8928
8929 HWPOISON MEMORY FAILURE HANDLING
8930 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8931 L:      linux-mm@kvack.org
8932 S:      Maintained
8933 F:      mm/hwpoison-inject.c
8934 F:      mm/memory-failure.c
8935
8936 HYCON HY46XX TOUCHSCREEN SUPPORT
8937 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8938 L:      linux-input@vger.kernel.org
8939 S:      Maintained
8940 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8941 F:      drivers/input/touchscreen/hycon-hy46xx.c
8942
8943 HYGON PROCESSOR SUPPORT
8944 M:      Pu Wen <puwen@hygon.cn>
8945 L:      linux-kernel@vger.kernel.org
8946 S:      Maintained
8947 F:      arch/x86/kernel/cpu/hygon.c
8948
8949 HYNIX HI556 SENSOR DRIVER
8950 M:      Shawn Tu <shawnx.tu@intel.com>
8951 L:      linux-media@vger.kernel.org
8952 S:      Maintained
8953 T:      git git://linuxtv.org/media_tree.git
8954 F:      drivers/media/i2c/hi556.c
8955
8956 HYNIX HI846 SENSOR DRIVER
8957 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8958 L:      linux-media@vger.kernel.org
8959 S:      Maintained
8960 F:      drivers/media/i2c/hi846.c
8961
8962 HYNIX HI847 SENSOR DRIVER
8963 M:      Shawn Tu <shawnx.tu@intel.com>
8964 L:      linux-media@vger.kernel.org
8965 S:      Maintained
8966 F:      drivers/media/i2c/hi847.c
8967
8968 Hyper-V/Azure CORE AND DRIVERS
8969 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8970 M:      Haiyang Zhang <haiyangz@microsoft.com>
8971 M:      Stephen Hemminger <sthemmin@microsoft.com>
8972 M:      Wei Liu <wei.liu@kernel.org>
8973 M:      Dexuan Cui <decui@microsoft.com>
8974 L:      linux-hyperv@vger.kernel.org
8975 S:      Supported
8976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8977 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8978 F:      Documentation/ABI/testing/debugfs-hyperv
8979 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8980 F:      arch/arm64/hyperv
8981 F:      arch/arm64/include/asm/hyperv-tlfs.h
8982 F:      arch/arm64/include/asm/mshyperv.h
8983 F:      arch/x86/hyperv
8984 F:      arch/x86/include/asm/hyperv-tlfs.h
8985 F:      arch/x86/include/asm/mshyperv.h
8986 F:      arch/x86/include/asm/trace/hyperv.h
8987 F:      arch/x86/kernel/cpu/mshyperv.c
8988 F:      drivers/clocksource/hyperv_timer.c
8989 F:      drivers/hid/hid-hyperv.c
8990 F:      drivers/hv/
8991 F:      drivers/input/serio/hyperv-keyboard.c
8992 F:      drivers/iommu/hyperv-iommu.c
8993 F:      drivers/net/ethernet/microsoft/
8994 F:      drivers/net/hyperv/
8995 F:      drivers/pci/controller/pci-hyperv-intf.c
8996 F:      drivers/pci/controller/pci-hyperv.c
8997 F:      drivers/scsi/storvsc_drv.c
8998 F:      drivers/uio/uio_hv_generic.c
8999 F:      drivers/video/fbdev/hyperv_fb.c
9000 F:      include/asm-generic/hyperv-tlfs.h
9001 F:      include/asm-generic/mshyperv.h
9002 F:      include/clocksource/hyperv_timer.h
9003 F:      include/linux/hyperv.h
9004 F:      include/uapi/linux/hyperv.h
9005 F:      net/vmw_vsock/hyperv_transport.c
9006 F:      tools/hv/
9007
9008 HYPERBUS SUPPORT
9009 M:      Vignesh Raghavendra <vigneshr@ti.com>
9010 L:      linux-mtd@lists.infradead.org
9011 S:      Supported
9012 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9013 C:      irc://irc.oftc.net/mtd
9014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9015 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9016 F:      drivers/mtd/hyperbus/
9017 F:      include/linux/mtd/hyperbus.h
9018
9019 HYPERVISOR VIRTUAL CONSOLE DRIVER
9020 L:      linuxppc-dev@lists.ozlabs.org
9021 S:      Odd Fixes
9022 F:      drivers/tty/hvc/
9023
9024 I2C ACPI SUPPORT
9025 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9026 L:      linux-i2c@vger.kernel.org
9027 L:      linux-acpi@vger.kernel.org
9028 S:      Maintained
9029 F:      drivers/i2c/i2c-core-acpi.c
9030
9031 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9032 M:      Ajay Gupta <ajayg@nvidia.com>
9033 L:      linux-i2c@vger.kernel.org
9034 S:      Maintained
9035 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9036 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9037
9038 I2C MUXES
9039 M:      Peter Rosin <peda@axentia.se>
9040 L:      linux-i2c@vger.kernel.org
9041 S:      Maintained
9042 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9043 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9044 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9045 F:      Documentation/i2c/i2c-topology.rst
9046 F:      Documentation/i2c/muxes/
9047 F:      drivers/i2c/i2c-mux.c
9048 F:      drivers/i2c/muxes/
9049 F:      include/linux/i2c-mux.h
9050
9051 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9052 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9053 L:      linux-i2c@vger.kernel.org
9054 S:      Maintained
9055 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9056 F:      drivers/i2c/busses/i2c-mv64xxx.c
9057
9058 I2C OVER PARALLEL PORT
9059 M:      Jean Delvare <jdelvare@suse.com>
9060 L:      linux-i2c@vger.kernel.org
9061 S:      Maintained
9062 F:      Documentation/i2c/busses/i2c-parport.rst
9063 F:      drivers/i2c/busses/i2c-parport.c
9064
9065 I2C SUBSYSTEM
9066 M:      Wolfram Sang <wsa@kernel.org>
9067 L:      linux-i2c@vger.kernel.org
9068 S:      Maintained
9069 W:      https://i2c.wiki.kernel.org/
9070 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9072 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9073 F:      Documentation/i2c/
9074 F:      drivers/i2c/*
9075 F:      include/linux/i2c-dev.h
9076 F:      include/linux/i2c-smbus.h
9077 F:      include/linux/i2c.h
9078 F:      include/uapi/linux/i2c-*.h
9079 F:      include/uapi/linux/i2c.h
9080
9081 I2C SUBSYSTEM HOST DRIVERS
9082 L:      linux-i2c@vger.kernel.org
9083 S:      Odd Fixes
9084 W:      https://i2c.wiki.kernel.org/
9085 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9087 F:      Documentation/devicetree/bindings/i2c/
9088 F:      drivers/i2c/algos/
9089 F:      drivers/i2c/busses/
9090
9091 I2C-TAOS-EVM DRIVER
9092 M:      Jean Delvare <jdelvare@suse.com>
9093 L:      linux-i2c@vger.kernel.org
9094 S:      Maintained
9095 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9096 F:      drivers/i2c/busses/i2c-taos-evm.c
9097
9098 I2C-TINY-USB DRIVER
9099 M:      Till Harbaum <till@harbaum.org>
9100 L:      linux-i2c@vger.kernel.org
9101 S:      Maintained
9102 W:      http://www.harbaum.org/till/i2c_tiny_usb
9103 F:      drivers/i2c/busses/i2c-tiny-usb.c
9104
9105 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9106 M:      Jean Delvare <jdelvare@suse.com>
9107 L:      linux-i2c@vger.kernel.org
9108 S:      Maintained
9109 F:      Documentation/i2c/busses/i2c-ali1535.rst
9110 F:      Documentation/i2c/busses/i2c-ali1563.rst
9111 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9112 F:      Documentation/i2c/busses/i2c-amd756.rst
9113 F:      Documentation/i2c/busses/i2c-amd8111.rst
9114 F:      Documentation/i2c/busses/i2c-i801.rst
9115 F:      Documentation/i2c/busses/i2c-nforce2.rst
9116 F:      Documentation/i2c/busses/i2c-piix4.rst
9117 F:      Documentation/i2c/busses/i2c-sis5595.rst
9118 F:      Documentation/i2c/busses/i2c-sis630.rst
9119 F:      Documentation/i2c/busses/i2c-sis96x.rst
9120 F:      Documentation/i2c/busses/i2c-via.rst
9121 F:      Documentation/i2c/busses/i2c-viapro.rst
9122 F:      drivers/i2c/busses/i2c-ali1535.c
9123 F:      drivers/i2c/busses/i2c-ali1563.c
9124 F:      drivers/i2c/busses/i2c-ali15x3.c
9125 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9126 F:      drivers/i2c/busses/i2c-amd756.c
9127 F:      drivers/i2c/busses/i2c-amd8111.c
9128 F:      drivers/i2c/busses/i2c-i801.c
9129 F:      drivers/i2c/busses/i2c-isch.c
9130 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9131 F:      drivers/i2c/busses/i2c-nforce2.c
9132 F:      drivers/i2c/busses/i2c-piix4.c
9133 F:      drivers/i2c/busses/i2c-sis5595.c
9134 F:      drivers/i2c/busses/i2c-sis630.c
9135 F:      drivers/i2c/busses/i2c-sis96x.c
9136 F:      drivers/i2c/busses/i2c-via.c
9137 F:      drivers/i2c/busses/i2c-viapro.c
9138
9139 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9140 M:      Hans de Goede <hdegoede@redhat.com>
9141 L:      linux-i2c@vger.kernel.org
9142 S:      Maintained
9143 F:      drivers/i2c/busses/i2c-cht-wc.c
9144
9145 I2C/SMBUS ISMT DRIVER
9146 M:      Seth Heasley <seth.heasley@intel.com>
9147 M:      Neil Horman <nhorman@tuxdriver.com>
9148 L:      linux-i2c@vger.kernel.org
9149 F:      Documentation/i2c/busses/i2c-ismt.rst
9150 F:      drivers/i2c/busses/i2c-ismt.c
9151
9152 I2C/SMBUS STUB DRIVER
9153 M:      Jean Delvare <jdelvare@suse.com>
9154 L:      linux-i2c@vger.kernel.org
9155 S:      Maintained
9156 F:      drivers/i2c/i2c-stub.c
9157
9158 I3C DRIVER FOR CADENCE I3C MASTER IP
9159 M:      Przemysław Gaj <pgaj@cadence.com>
9160 S:      Maintained
9161 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
9162 F:      drivers/i3c/master/i3c-master-cdns.c
9163
9164 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9165 M:      Vitor Soares <vitor.soares@synopsys.com>
9166 S:      Maintained
9167 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
9168 F:      drivers/i3c/master/dw*
9169
9170 I3C SUBSYSTEM
9171 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9172 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9173 S:      Maintained
9174 C:      irc://chat.freenode.net/linux-i3c
9175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9176 F:      Documentation/ABI/testing/sysfs-bus-i3c
9177 F:      Documentation/devicetree/bindings/i3c/
9178 F:      Documentation/driver-api/i3c
9179 F:      drivers/i3c/
9180 F:      include/linux/i3c/
9181
9182 IA64 (Itanium) PLATFORM
9183 L:      linux-ia64@vger.kernel.org
9184 S:      Orphan
9185 F:      Documentation/ia64/
9186 F:      arch/ia64/
9187
9188 IBM Power 842 compression accelerator
9189 M:      Haren Myneni <haren@us.ibm.com>
9190 S:      Supported
9191 F:      crypto/842.c
9192 F:      drivers/crypto/nx/Kconfig
9193 F:      drivers/crypto/nx/Makefile
9194 F:      drivers/crypto/nx/nx-842*
9195 F:      include/linux/sw842.h
9196 F:      lib/842/
9197
9198 IBM Power in-Nest Crypto Acceleration
9199 M:      Breno Leitão <leitao@debian.org>
9200 M:      Nayna Jain <nayna@linux.ibm.com>
9201 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9202 L:      linux-crypto@vger.kernel.org
9203 S:      Supported
9204 F:      drivers/crypto/nx/Kconfig
9205 F:      drivers/crypto/nx/Makefile
9206 F:      drivers/crypto/nx/nx-aes*
9207 F:      drivers/crypto/nx/nx-sha*
9208 F:      drivers/crypto/nx/nx.*
9209 F:      drivers/crypto/nx/nx_csbcpb.h
9210 F:      drivers/crypto/nx/nx_debugfs.c
9211
9212 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9213 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9214 L:      linux-pci@vger.kernel.org
9215 L:      linuxppc-dev@lists.ozlabs.org
9216 S:      Supported
9217 F:      drivers/pci/hotplug/rpadlpar*
9218
9219 IBM Power Linux RAID adapter
9220 M:      Brian King <brking@us.ibm.com>
9221 S:      Supported
9222 F:      drivers/scsi/ipr.*
9223
9224 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9225 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9226 L:      linux-pci@vger.kernel.org
9227 L:      linuxppc-dev@lists.ozlabs.org
9228 S:      Supported
9229 F:      drivers/pci/hotplug/rpaphp*
9230
9231 IBM Power SRIOV Virtual NIC Device Driver
9232 M:      Dany Madden <drt@linux.ibm.com>
9233 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9234 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9235 L:      netdev@vger.kernel.org
9236 S:      Supported
9237 F:      drivers/net/ethernet/ibm/ibmvnic.*
9238
9239 IBM Power Virtual Accelerator Switchboard
9240 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9241 L:      linuxppc-dev@lists.ozlabs.org
9242 S:      Supported
9243 F:      arch/powerpc/include/asm/vas.h
9244 F:      arch/powerpc/platforms/powernv/copy-paste.h
9245 F:      arch/powerpc/platforms/powernv/vas*
9246
9247 IBM Power Virtual Ethernet Device Driver
9248 M:      Cristobal Forno <cforno12@linux.ibm.com>
9249 L:      netdev@vger.kernel.org
9250 S:      Supported
9251 F:      drivers/net/ethernet/ibm/ibmveth.*
9252
9253 IBM Power Virtual FC Device Drivers
9254 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9255 L:      linux-scsi@vger.kernel.org
9256 S:      Supported
9257 F:      drivers/scsi/ibmvscsi/ibmvfc*
9258
9259 IBM Power Virtual Management Channel Driver
9260 M:      Brad Warrum <bwarrum@linux.ibm.com>
9261 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9262 S:      Supported
9263 F:      drivers/misc/ibmvmc.*
9264
9265 IBM Power Virtual SCSI Device Drivers
9266 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9267 L:      linux-scsi@vger.kernel.org
9268 S:      Supported
9269 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9270 F:      include/scsi/viosrp.h
9271
9272 IBM Power Virtual SCSI Device Target Driver
9273 M:      Michael Cyr <mikecyr@linux.ibm.com>
9274 L:      linux-scsi@vger.kernel.org
9275 L:      target-devel@vger.kernel.org
9276 S:      Supported
9277 F:      drivers/scsi/ibmvscsi_tgt/
9278
9279 IBM Power VMX Cryptographic instructions
9280 M:      Breno Leitão <leitao@debian.org>
9281 M:      Nayna Jain <nayna@linux.ibm.com>
9282 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9283 L:      linux-crypto@vger.kernel.org
9284 S:      Supported
9285 F:      drivers/crypto/vmx/Kconfig
9286 F:      drivers/crypto/vmx/Makefile
9287 F:      drivers/crypto/vmx/aes*
9288 F:      drivers/crypto/vmx/ghash*
9289 F:      drivers/crypto/vmx/ppc-xlate.pl
9290 F:      drivers/crypto/vmx/vmx.c
9291
9292 IBM ServeRAID RAID DRIVER
9293 S:      Orphan
9294 F:      drivers/scsi/ips.*
9295
9296 ICH LPC AND GPIO DRIVER
9297 M:      Peter Tyser <ptyser@xes-inc.com>
9298 S:      Maintained
9299 F:      drivers/gpio/gpio-ich.c
9300 F:      drivers/mfd/lpc_ich.c
9301
9302 ICY I2C DRIVER
9303 M:      Max Staudt <max@enpas.org>
9304 L:      linux-i2c@vger.kernel.org
9305 S:      Maintained
9306 F:      drivers/i2c/busses/i2c-icy.c
9307
9308 IDEAPAD LAPTOP EXTRAS DRIVER
9309 M:      Ike Panhc <ike.pan@canonical.com>
9310 L:      platform-driver-x86@vger.kernel.org
9311 S:      Maintained
9312 W:      http://launchpad.net/ideapad-laptop
9313 F:      drivers/platform/x86/ideapad-laptop.c
9314
9315 IDEAPAD LAPTOP SLIDEBAR DRIVER
9316 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9317 L:      linux-input@vger.kernel.org
9318 S:      Maintained
9319 W:      https://github.com/o2genum/ideapad-slidebar
9320 F:      drivers/input/misc/ideapad_slidebar.c
9321
9322 IDMAPPED MOUNTS
9323 M:      Christian Brauner <brauner@kernel.org>
9324 L:      linux-fsdevel@vger.kernel.org
9325 S:      Maintained
9326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9327 F:      Documentation/filesystems/idmappings.rst
9328 F:      tools/testing/selftests/mount_setattr/
9329 F:      include/linux/mnt_idmapping.h
9330
9331 IDT VersaClock 5 CLOCK DRIVER
9332 M:      Luca Ceresoli <luca@lucaceresoli.net>
9333 S:      Maintained
9334 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9335 F:      drivers/clk/clk-versaclock5.c
9336
9337 IEEE 802.15.4 SUBSYSTEM
9338 M:      Alexander Aring <alex.aring@gmail.com>
9339 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9340 L:      linux-wpan@vger.kernel.org
9341 S:      Maintained
9342 W:      https://linux-wpan.org/
9343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9345 F:      Documentation/networking/ieee802154.rst
9346 F:      drivers/net/ieee802154/
9347 F:      include/linux/ieee802154.h
9348 F:      include/linux/nl802154.h
9349 F:      include/net/af_ieee802154.h
9350 F:      include/net/cfg802154.h
9351 F:      include/net/ieee802154_netdev.h
9352 F:      include/net/mac802154.h
9353 F:      include/net/nl802154.h
9354 F:      net/ieee802154/
9355 F:      net/mac802154/
9356
9357 IFE PROTOCOL
9358 M:      Yotam Gigi <yotam.gi@gmail.com>
9359 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9360 F:      include/net/ife.h
9361 F:      include/uapi/linux/ife.h
9362 F:      net/ife
9363
9364 IGORPLUG-USB IR RECEIVER
9365 M:      Sean Young <sean@mess.org>
9366 L:      linux-media@vger.kernel.org
9367 S:      Maintained
9368 F:      drivers/media/rc/igorplugusb.c
9369
9370 IGUANAWORKS USB IR TRANSCEIVER
9371 M:      Sean Young <sean@mess.org>
9372 L:      linux-media@vger.kernel.org
9373 S:      Maintained
9374 F:      drivers/media/rc/iguanair.c
9375
9376 IIO DIGITAL POTENTIOMETER DAC
9377 M:      Peter Rosin <peda@axentia.se>
9378 L:      linux-iio@vger.kernel.org
9379 S:      Maintained
9380 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9381 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9382 F:      drivers/iio/dac/dpot-dac.c
9383
9384 IIO ENVELOPE DETECTOR
9385 M:      Peter Rosin <peda@axentia.se>
9386 L:      linux-iio@vger.kernel.org
9387 S:      Maintained
9388 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9389 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9390 F:      drivers/iio/adc/envelope-detector.c
9391
9392 IIO MULTIPLEXER
9393 M:      Peter Rosin <peda@axentia.se>
9394 L:      linux-iio@vger.kernel.org
9395 S:      Maintained
9396 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9397 F:      drivers/iio/multiplexer/iio-mux.c
9398
9399 IIO SCMI BASED DRIVER
9400 M:      Jyoti Bhayana <jbhayana@google.com>
9401 L:      linux-iio@vger.kernel.org
9402 S:      Maintained
9403 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9404
9405 IIO SUBSYSTEM AND DRIVERS
9406 M:      Jonathan Cameron <jic23@kernel.org>
9407 R:      Lars-Peter Clausen <lars@metafoo.de>
9408 L:      linux-iio@vger.kernel.org
9409 S:      Maintained
9410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9411 F:      Documentation/ABI/testing/configfs-iio*
9412 F:      Documentation/ABI/testing/sysfs-bus-iio*
9413 F:      Documentation/devicetree/bindings/iio/
9414 F:      drivers/iio/
9415 F:      drivers/staging/iio/
9416 F:      include/linux/iio/
9417 F:      tools/iio/
9418
9419 IIO UNIT CONVERTER
9420 M:      Peter Rosin <peda@axentia.se>
9421 L:      linux-iio@vger.kernel.org
9422 S:      Maintained
9423 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9424 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9425 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9426 F:      drivers/iio/afe/iio-rescale.c
9427
9428 IKANOS/ADI EAGLE ADSL USB DRIVER
9429 M:      Matthieu Castet <castet.matthieu@free.fr>
9430 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9431 S:      Maintained
9432 F:      drivers/usb/atm/ueagle-atm.c
9433
9434 IMGTEC ASCII LCD DRIVER
9435 M:      Paul Burton <paulburton@kernel.org>
9436 S:      Maintained
9437 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9438 F:      drivers/auxdisplay/img-ascii-lcd.c
9439
9440 IMGTEC IR DECODER DRIVER
9441 S:      Orphan
9442 F:      drivers/media/rc/img-ir/
9443
9444 IMON SOUNDGRAPH USB IR RECEIVER
9445 M:      Sean Young <sean@mess.org>
9446 L:      linux-media@vger.kernel.org
9447 S:      Maintained
9448 F:      drivers/media/rc/imon.c
9449 F:      drivers/media/rc/imon_raw.c
9450
9451 IMS TWINTURBO FRAMEBUFFER DRIVER
9452 L:      linux-fbdev@vger.kernel.org
9453 S:      Orphan
9454 F:      drivers/video/fbdev/imsttfb.c
9455
9456 INA209 HARDWARE MONITOR DRIVER
9457 M:      Guenter Roeck <linux@roeck-us.net>
9458 L:      linux-hwmon@vger.kernel.org
9459 S:      Maintained
9460 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9461 F:      Documentation/hwmon/ina209.rst
9462 F:      drivers/hwmon/ina209.c
9463
9464 INA2XX HARDWARE MONITOR DRIVER
9465 M:      Guenter Roeck <linux@roeck-us.net>
9466 L:      linux-hwmon@vger.kernel.org
9467 S:      Maintained
9468 F:      Documentation/hwmon/ina2xx.rst
9469 F:      drivers/hwmon/ina2xx.c
9470 F:      include/linux/platform_data/ina2xx.h
9471
9472 INDUSTRY PACK SUBSYSTEM (IPACK)
9473 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9474 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9475 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9476 L:      industrypack-devel@lists.sourceforge.net
9477 S:      Maintained
9478 W:      http://industrypack.sourceforge.net
9479 F:      drivers/ipack/
9480
9481 INFINEON DPS310 Driver
9482 M:      Eddie James <eajames@linux.ibm.com>
9483 L:      linux-iio@vger.kernel.org
9484 S:      Maintained
9485 F:      drivers/iio/pressure/dps310.c
9486
9487 INFINIBAND SUBSYSTEM
9488 M:      Jason Gunthorpe <jgg@nvidia.com>
9489 L:      linux-rdma@vger.kernel.org
9490 S:      Supported
9491 W:      https://github.com/linux-rdma/rdma-core
9492 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9494 F:      Documentation/devicetree/bindings/infiniband/
9495 F:      Documentation/infiniband/
9496 F:      drivers/infiniband/
9497 F:      include/rdma/
9498 F:      include/trace/events/ib_mad.h
9499 F:      include/trace/events/ib_umad.h
9500 F:      include/uapi/linux/if_infiniband.h
9501 F:      include/uapi/rdma/
9502 F:      samples/bpf/ibumad_kern.c
9503 F:      samples/bpf/ibumad_user.c
9504
9505 INGENIC JZ4780 NAND DRIVER
9506 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9507 L:      linux-mtd@lists.infradead.org
9508 L:      linux-mips@vger.kernel.org
9509 S:      Maintained
9510 F:      drivers/mtd/nand/raw/ingenic/
9511
9512 INGENIC JZ47xx SoCs
9513 M:      Paul Cercueil <paul@crapouillou.net>
9514 L:      linux-mips@vger.kernel.org
9515 S:      Maintained
9516 F:      arch/mips/boot/dts/ingenic/
9517 F:      arch/mips/generic/board-ingenic.c
9518 F:      arch/mips/include/asm/mach-ingenic/
9519 F:      arch/mips/ingenic/Kconfig
9520 F:      drivers/clk/ingenic/
9521 F:      drivers/dma/dma-jz4780.c
9522 F:      drivers/gpu/drm/ingenic/
9523 F:      drivers/i2c/busses/i2c-jz4780.c
9524 F:      drivers/iio/adc/ingenic-adc.c
9525 F:      drivers/irqchip/irq-ingenic.c
9526 F:      drivers/memory/jz4780-nemc.c
9527 F:      drivers/mmc/host/jz4740_mmc.c
9528 F:      drivers/mtd/nand/raw/ingenic/
9529 F:      drivers/pinctrl/pinctrl-ingenic.c
9530 F:      drivers/power/supply/ingenic-battery.c
9531 F:      drivers/pwm/pwm-jz4740.c
9532 F:      drivers/remoteproc/ingenic_rproc.c
9533 F:      drivers/rtc/rtc-jz4740.c
9534 F:      drivers/tty/serial/8250/8250_ingenic.c
9535 F:      drivers/usb/musb/jz4740.c
9536 F:      drivers/watchdog/jz4740_wdt.c
9537 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9538 F:      include/linux/mfd/ingenic-tcu.h
9539 F:      sound/soc/codecs/jz47*
9540 F:      sound/soc/jz4740/
9541
9542 INJOINIC IP5xxx POWER BANK IC DRIVER
9543 M:      Samuel Holland <samuel@sholland.org>
9544 S:      Maintained
9545 F:      drivers/power/supply/ip5xxx_power.c
9546
9547 INOTIFY
9548 M:      Jan Kara <jack@suse.cz>
9549 R:      Amir Goldstein <amir73il@gmail.com>
9550 L:      linux-fsdevel@vger.kernel.org
9551 S:      Maintained
9552 F:      Documentation/filesystems/inotify.rst
9553 F:      fs/notify/inotify/
9554 F:      include/linux/inotify.h
9555 F:      include/uapi/linux/inotify.h
9556
9557 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9558 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9559 L:      linux-input@vger.kernel.org
9560 S:      Maintained
9561 Q:      http://patchwork.kernel.org/project/linux-input/list/
9562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9563 F:      Documentation/devicetree/bindings/input/
9564 F:      Documentation/devicetree/bindings/serio/
9565 F:      Documentation/input/
9566 F:      drivers/input/
9567 F:      include/linux/input.h
9568 F:      include/linux/input/
9569 F:      include/uapi/linux/input-event-codes.h
9570 F:      include/uapi/linux/input.h
9571
9572 INPUT MULTITOUCH (MT) PROTOCOL
9573 M:      Henrik Rydberg <rydberg@bitmath.org>
9574 L:      linux-input@vger.kernel.org
9575 S:      Odd fixes
9576 F:      Documentation/input/multi-touch-protocol.rst
9577 F:      drivers/input/input-mt.c
9578 K:      \b(ABS|SYN)_MT_
9579
9580 INSIDE SECURE CRYPTO DRIVER
9581 M:      Antoine Tenart <atenart@kernel.org>
9582 L:      linux-crypto@vger.kernel.org
9583 S:      Maintained
9584 F:      drivers/crypto/inside-secure/
9585
9586 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9587 M:      Mimi Zohar <zohar@linux.ibm.com>
9588 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9589 L:      linux-integrity@vger.kernel.org
9590 S:      Supported
9591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9592 F:      security/integrity/ima/
9593 F:      security/integrity/
9594
9595 INTEL 810/815 FRAMEBUFFER DRIVER
9596 M:      Antonino Daplas <adaplas@gmail.com>
9597 L:      linux-fbdev@vger.kernel.org
9598 S:      Maintained
9599 F:      drivers/video/fbdev/i810/
9600
9601 INTEL ASoC DRIVERS
9602 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9603 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9604 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9605 M:      Jie Yang <yang.jie@linux.intel.com>
9606 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9607 S:      Supported
9608 F:      sound/soc/intel/
9609
9610 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9611 M:      Hans de Goede <hdegoede@redhat.com>
9612 L:      platform-driver-x86@vger.kernel.org
9613 S:      Maintained
9614 F:      drivers/platform/x86/intel/atomisp2/pm.c
9615
9616 INTEL ATOMISP2 LED DRIVER
9617 M:      Hans de Goede <hdegoede@redhat.com>
9618 L:      platform-driver-x86@vger.kernel.org
9619 S:      Maintained
9620 F:      drivers/platform/x86/intel/atomisp2/led.c
9621
9622 INTEL BIOS SAR INT1092 DRIVER
9623 M:      Shravan Sudhakar <s.shravan@intel.com>
9624 M:      Intel Corporation <linuxwwan@intel.com>
9625 L:      platform-driver-x86@vger.kernel.org
9626 S:      Maintained
9627 F:      drivers/platform/x86/intel/int1092/
9628
9629 INTEL BROXTON PMC DRIVER
9630 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9631 M:      Zha Qipeng <qipeng.zha@intel.com>
9632 S:      Maintained
9633 F:      drivers/mfd/intel_pmc_bxt.c
9634 F:      include/linux/mfd/intel_pmc_bxt.h
9635
9636 INTEL C600 SERIES SAS CONTROLLER DRIVER
9637 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9638 L:      linux-scsi@vger.kernel.org
9639 S:      Supported
9640 T:      git git://git.code.sf.net/p/intel-sas/isci
9641 F:      drivers/scsi/isci/
9642
9643 INTEL CPU family model numbers
9644 M:      Tony Luck <tony.luck@intel.com>
9645 M:      x86@kernel.org
9646 L:      linux-kernel@vger.kernel.org
9647 S:      Supported
9648 F:      arch/x86/include/asm/intel-family.h
9649
9650 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9651 M:      Jani Nikula <jani.nikula@linux.intel.com>
9652 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9653 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9654 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9655 L:      intel-gfx@lists.freedesktop.org
9656 S:      Supported
9657 W:      https://01.org/linuxgraphics/
9658 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9659 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9660 C:      irc://irc.oftc.net/intel-gfx
9661 T:      git git://anongit.freedesktop.org/drm-intel
9662 F:      Documentation/gpu/i915.rst
9663 F:      drivers/gpu/drm/i915/
9664 F:      include/drm/i915*
9665 F:      include/uapi/drm/i915_drm.h
9666
9667 INTEL ETHERNET DRIVERS
9668 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9669 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9670 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9671 S:      Supported
9672 W:      http://www.intel.com/support/feedback.htm
9673 W:      http://e1000.sourceforge.net/
9674 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9677 F:      Documentation/networking/device_drivers/ethernet/intel/
9678 F:      drivers/net/ethernet/intel/
9679 F:      drivers/net/ethernet/intel/*/
9680 F:      include/linux/avf/virtchnl.h
9681 F:      include/linux/net/intel/iidc.h
9682
9683 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9684 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9685 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9686 L:      linux-rdma@vger.kernel.org
9687 S:      Supported
9688 F:      drivers/infiniband/hw/irdma/
9689 F:      include/uapi/rdma/irdma-abi.h
9690
9691 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9692 M:      Maik Broemme <mbroemme@libmpq.org>
9693 L:      linux-fbdev@vger.kernel.org
9694 S:      Maintained
9695 F:      Documentation/fb/intelfb.rst
9696 F:      drivers/video/fbdev/intelfb/
9697
9698 INTEL GPIO DRIVERS
9699 M:      Andy Shevchenko <andy@kernel.org>
9700 L:      linux-gpio@vger.kernel.org
9701 S:      Maintained
9702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9703 F:      drivers/gpio/gpio-ich.c
9704 F:      drivers/gpio/gpio-merrifield.c
9705 F:      drivers/gpio/gpio-ml-ioh.c
9706 F:      drivers/gpio/gpio-pch.c
9707 F:      drivers/gpio/gpio-sch.c
9708 F:      drivers/gpio/gpio-sodaville.c
9709
9710 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9711 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9712 M:      Zhi Wang <zhi.a.wang@intel.com>
9713 L:      intel-gvt-dev@lists.freedesktop.org
9714 L:      intel-gfx@lists.freedesktop.org
9715 S:      Supported
9716 W:      https://01.org/igvt-g
9717 T:      git https://github.com/intel/gvt-linux.git
9718 F:      drivers/gpu/drm/i915/gvt/
9719
9720 INTEL HID EVENT DRIVER
9721 M:      Alex Hung <alex.hung@canonical.com>
9722 L:      platform-driver-x86@vger.kernel.org
9723 S:      Maintained
9724 F:      drivers/platform/x86/intel/hid.c
9725
9726 INTEL I/OAT DMA DRIVER
9727 M:      Dave Jiang <dave.jiang@intel.com>
9728 R:      Dan Williams <dan.j.williams@intel.com>
9729 L:      dmaengine@vger.kernel.org
9730 S:      Supported
9731 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9732 F:      drivers/dma/ioat*
9733
9734 INTEL IADX DRIVER
9735 M:      Dave Jiang <dave.jiang@intel.com>
9736 L:      dmaengine@vger.kernel.org
9737 S:      Supported
9738 F:      drivers/dma/idxd/*
9739 F:      include/uapi/linux/idxd.h
9740
9741 INTEL IDLE DRIVER
9742 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9743 M:      Len Brown <lenb@kernel.org>
9744 L:      linux-pm@vger.kernel.org
9745 S:      Supported
9746 B:      https://bugzilla.kernel.org
9747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9748 F:      drivers/idle/intel_idle.c
9749
9750 INTEL INTEGRATED SENSOR HUB DRIVER
9751 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9752 M:      Jiri Kosina <jikos@kernel.org>
9753 L:      linux-input@vger.kernel.org
9754 S:      Maintained
9755 F:      drivers/hid/intel-ish-hid/
9756
9757 INTEL IOMMU (VT-d)
9758 M:      David Woodhouse <dwmw2@infradead.org>
9759 M:      Lu Baolu <baolu.lu@linux.intel.com>
9760 L:      iommu@lists.linux-foundation.org
9761 S:      Supported
9762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9763 F:      drivers/iommu/intel/
9764 F:      include/linux/intel-iommu.h
9765 F:      include/linux/intel-svm.h
9766
9767 INTEL IOP-ADMA DMA DRIVER
9768 R:      Dan Williams <dan.j.williams@intel.com>
9769 S:      Odd fixes
9770 F:      drivers/dma/iop-adma.c
9771
9772 INTEL IPU3 CSI-2 CIO2 DRIVER
9773 M:      Yong Zhi <yong.zhi@intel.com>
9774 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9775 M:      Bingbu Cao <bingbu.cao@intel.com>
9776 M:      Dan Scally <djrscally@gmail.com>
9777 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9778 L:      linux-media@vger.kernel.org
9779 S:      Maintained
9780 T:      git git://linuxtv.org/media_tree.git
9781 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9782 F:      drivers/media/pci/intel/ipu3/
9783
9784 INTEL IPU3 CSI-2 IMGU DRIVER
9785 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9786 R:      Bingbu Cao <bingbu.cao@intel.com>
9787 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9788 L:      linux-media@vger.kernel.org
9789 S:      Maintained
9790 F:      Documentation/admin-guide/media/ipu3.rst
9791 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9792 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9793 F:      drivers/staging/media/ipu3/
9794
9795 INTEL IXP4XX CRYPTO SUPPORT
9796 M:      Corentin Labbe <clabbe@baylibre.com>
9797 L:      linux-crypto@vger.kernel.org
9798 S:      Maintained
9799 F:      drivers/crypto/ixp4xx_crypto.c
9800
9801 INTEL ISHTP ECLITE DRIVER
9802 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9803 L:      platform-driver-x86@vger.kernel.org
9804 S:      Supported
9805 F:      drivers/platform/x86/intel/ishtp_eclite.c
9806
9807 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9808 M:      Krzysztof Halasa <khalasa@piap.pl>
9809 S:      Maintained
9810 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9811 F:      drivers/net/wan/ixp4xx_hss.c
9812 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9813 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9814 F:      include/linux/soc/ixp4xx/npe.h
9815 F:      include/linux/soc/ixp4xx/qmgr.h
9816
9817 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9818 M:      Deepak Saxena <dsaxena@plexity.net>
9819 S:      Maintained
9820 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9821 F:      drivers/char/hw_random/ixp4xx-rng.c
9822
9823 INTEL KEEM BAY DRM DRIVER
9824 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9825 M:      Edmund Dea <edmund.j.dea@intel.com>
9826 S:      Maintained
9827 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9828 F:      drivers/gpu/drm/kmb/
9829
9830 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9831 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9832 S:      Maintained
9833 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9834 F:      drivers/crypto/keembay/Kconfig
9835 F:      drivers/crypto/keembay/Makefile
9836 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9837 F:      drivers/crypto/keembay/ocs-aes.c
9838 F:      drivers/crypto/keembay/ocs-aes.h
9839
9840 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9841 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9842 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9843 M:      Mark Gross <mgross@linux.intel.com>
9844 S:      Maintained
9845 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9846 F:      drivers/crypto/keembay/Kconfig
9847 F:      drivers/crypto/keembay/Makefile
9848 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9849
9850 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9851 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9852 M:      Declan Murphy <declan.murphy@intel.com>
9853 S:      Maintained
9854 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9855 F:      drivers/crypto/keembay/Kconfig
9856 F:      drivers/crypto/keembay/Makefile
9857 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9858 F:      drivers/crypto/keembay/ocs-hcu.c
9859 F:      drivers/crypto/keembay/ocs-hcu.h
9860
9861 INTEL THUNDER BAY EMMC PHY DRIVER
9862 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
9863 M:      Rashmi A <rashmi.a@intel.com>
9864 S:      Maintained
9865 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
9866 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
9867
9868 INTEL MANAGEMENT ENGINE (mei)
9869 M:      Tomas Winkler <tomas.winkler@intel.com>
9870 L:      linux-kernel@vger.kernel.org
9871 S:      Supported
9872 F:      Documentation/driver-api/mei/*
9873 F:      drivers/misc/mei/
9874 F:      drivers/watchdog/mei_wdt.c
9875 F:      include/linux/mei_cl_bus.h
9876 F:      include/uapi/linux/mei.h
9877 F:      samples/mei/*
9878
9879 INTEL MAX 10 BMC MFD DRIVER
9880 M:      Xu Yilun <yilun.xu@intel.com>
9881 R:      Tom Rix <trix@redhat.com>
9882 S:      Maintained
9883 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9884 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9885 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9886 F:      drivers/mfd/intel-m10-bmc.c
9887 F:      include/linux/mfd/intel-m10-bmc.h
9888
9889 INTEL MENLOW THERMAL DRIVER
9890 M:      Sujith Thomas <sujith.thomas@intel.com>
9891 L:      linux-pm@vger.kernel.org
9892 S:      Supported
9893 W:      https://01.org/linux-acpi
9894 F:      drivers/thermal/intel/intel_menlow.c
9895
9896 INTEL P-Unit IPC DRIVER
9897 M:      Zha Qipeng <qipeng.zha@intel.com>
9898 L:      platform-driver-x86@vger.kernel.org
9899 S:      Maintained
9900 F:      arch/x86/include/asm/intel_punit_ipc.h
9901 F:      drivers/platform/x86/intel/punit_ipc.c
9902
9903 INTEL PMC CORE DRIVER
9904 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9905 M:      David E Box <david.e.box@intel.com>
9906 L:      platform-driver-x86@vger.kernel.org
9907 S:      Maintained
9908 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9909 F:      drivers/platform/x86/intel/pmc/
9910
9911 INTEL PMIC GPIO DRIVERS
9912 M:      Andy Shevchenko <andy@kernel.org>
9913 S:      Maintained
9914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9915 F:      drivers/gpio/gpio-*cove.c
9916
9917 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9918 M:      Andy Shevchenko <andy@kernel.org>
9919 S:      Maintained
9920 F:      drivers/mfd/intel_soc_pmic*
9921 F:      include/linux/mfd/intel_soc_pmic*
9922
9923 INTEL PMT DRIVERS
9924 M:      David E. Box <david.e.box@linux.intel.com>
9925 S:      Supported
9926 F:      drivers/platform/x86/intel/pmt/
9927
9928 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9929 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9930 L:      linux-wireless@vger.kernel.org
9931 S:      Maintained
9932 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9933 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9934 F:      drivers/net/wireless/intel/ipw2x00/
9935
9936 INTEL PSTATE DRIVER
9937 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9938 M:      Len Brown <lenb@kernel.org>
9939 L:      linux-pm@vger.kernel.org
9940 S:      Supported
9941 F:      drivers/cpufreq/intel_pstate.c
9942
9943 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9944 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9945 L:      linux-iio@vger.kernel.org
9946 F:      drivers/counter/intel-qep.c
9947
9948 INTEL SCU DRIVERS
9949 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9950 S:      Maintained
9951 F:      arch/x86/include/asm/intel_scu_ipc.h
9952 F:      drivers/platform/x86/intel_scu_*
9953
9954 INTEL SDSI DRIVER
9955 M:      David E. Box <david.e.box@linux.intel.com>
9956 S:      Supported
9957 F:      drivers/platform/x86/intel/sdsi.c
9958 F:      tools/arch/x86/intel_sdsi/
9959 F:      tools/testing/selftests/drivers/sdsi/
9960
9961 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9962 M:      Daniel Scally <djrscally@gmail.com>
9963 S:      Maintained
9964 F:      drivers/platform/x86/intel/int3472/
9965
9966 INTEL SPEED SELECT TECHNOLOGY
9967 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9968 L:      platform-driver-x86@vger.kernel.org
9969 S:      Maintained
9970 F:      drivers/platform/x86/intel/speed_select_if/
9971 F:      include/uapi/linux/isst_if.h
9972 F:      tools/power/x86/intel-speed-select/
9973
9974 INTEL STRATIX10 FIRMWARE DRIVERS
9975 M:      Dinh Nguyen <dinguyen@kernel.org>
9976 L:      linux-kernel@vger.kernel.org
9977 S:      Maintained
9978 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9979 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9980 F:      drivers/firmware/stratix10-rsu.c
9981 F:      drivers/firmware/stratix10-svc.c
9982 F:      include/linux/firmware/intel/stratix10-smc.h
9983 F:      include/linux/firmware/intel/stratix10-svc-client.h
9984
9985 INTEL TELEMETRY DRIVER
9986 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9987 M:      "David E. Box" <david.e.box@linux.intel.com>
9988 L:      platform-driver-x86@vger.kernel.org
9989 S:      Maintained
9990 F:      arch/x86/include/asm/intel_telemetry.h
9991 F:      drivers/platform/x86/intel/telemetry/
9992
9993 INTEL UNCORE FREQUENCY CONTROL
9994 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9995 L:      platform-driver-x86@vger.kernel.org
9996 S:      Maintained
9997 F:      drivers/platform/x86/intel/uncore-frequency/
9998
9999 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10000 M:      David E. Box <david.e.box@linux.intel.com>
10001 S:      Supported
10002 F:      drivers/platform/x86/intel/vsec.*
10003
10004 INTEL VIRTUAL BUTTON DRIVER
10005 M:      AceLan Kao <acelan.kao@canonical.com>
10006 L:      platform-driver-x86@vger.kernel.org
10007 S:      Maintained
10008 F:      drivers/platform/x86/intel/vbtn.c
10009
10010 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10011 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10012 L:      linux-wireless@vger.kernel.org
10013 S:      Supported
10014 F:      drivers/net/wireless/intel/iwlegacy/
10015
10016 INTEL WIRELESS WIFI LINK (iwlwifi)
10017 M:      Luca Coelho <luciano.coelho@intel.com>
10018 L:      linux-wireless@vger.kernel.org
10019 S:      Supported
10020 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10022 F:      drivers/net/wireless/intel/iwlwifi/
10023
10024 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10025 M:      Jithu Joseph <jithu.joseph@intel.com>
10026 R:      Maurice Ma <maurice.ma@intel.com>
10027 S:      Maintained
10028 W:      https://slimbootloader.github.io/security/firmware-update.html
10029 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10030
10031 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10032 L:      Dell.Client.Kernel@dell.com
10033 S:      Maintained
10034 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10035
10036 INTEL WWAN IOSM DRIVER
10037 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10038 M:      Intel Corporation <linuxwwan@intel.com>
10039 L:      netdev@vger.kernel.org
10040 S:      Maintained
10041 F:      drivers/net/wwan/iosm/
10042
10043 INTEL(R) TRACE HUB
10044 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10045 S:      Supported
10046 F:      Documentation/trace/intel_th.rst
10047 F:      drivers/hwtracing/intel_th/
10048 F:      include/linux/intel_th.h
10049
10050 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10051 M:      Ning Sun <ning.sun@intel.com>
10052 L:      tboot-devel@lists.sourceforge.net
10053 S:      Supported
10054 W:      http://tboot.sourceforge.net
10055 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10056 F:      Documentation/x86/intel_txt.rst
10057 F:      arch/x86/kernel/tboot.c
10058 F:      include/linux/tboot.h
10059
10060 INTEL SGX
10061 M:      Jarkko Sakkinen <jarkko@kernel.org>
10062 R:      Dave Hansen <dave.hansen@linux.intel.com>
10063 L:      linux-sgx@vger.kernel.org
10064 S:      Supported
10065 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10067 F:      Documentation/x86/sgx.rst
10068 F:      arch/x86/entry/vdso/vsgx.S
10069 F:      arch/x86/include/asm/sgx.h
10070 F:      arch/x86/include/uapi/asm/sgx.h
10071 F:      arch/x86/kernel/cpu/sgx/*
10072 F:      tools/testing/selftests/sgx/*
10073 K:      \bSGX_
10074
10075 INTERCONNECT API
10076 M:      Georgi Djakov <djakov@kernel.org>
10077 L:      linux-pm@vger.kernel.org
10078 S:      Maintained
10079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10080 F:      Documentation/devicetree/bindings/interconnect/
10081 F:      Documentation/driver-api/interconnect.rst
10082 F:      drivers/interconnect/
10083 F:      include/dt-bindings/interconnect/
10084 F:      include/linux/interconnect-provider.h
10085 F:      include/linux/interconnect.h
10086
10087 INTERRUPT COUNTER DRIVER
10088 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10089 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10090 L:      linux-iio@vger.kernel.org
10091 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10092 F:      drivers/counter/interrupt-cnt.c
10093
10094 INTERSIL ISL7998X VIDEO DECODER DRIVER
10095 M:      Michael Tretter <m.tretter@pengutronix.de>
10096 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10097 L:      linux-media@vger.kernel.org
10098 S:      Maintained
10099 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10100 F:      drivers/media/i2c/isl7998x.c
10101
10102 INVENSENSE ICM-426xx IMU DRIVER
10103 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10104 L:      linux-iio@vger.kernel.org
10105 S:      Maintained
10106 W:      https://invensense.tdk.com/
10107 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10108 F:      drivers/iio/imu/inv_icm42600/
10109
10110 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10111 M:      Linus Walleij <linus.walleij@linaro.org>
10112 L:      linux-iio@vger.kernel.org
10113 S:      Maintained
10114 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10115 F:      drivers/iio/gyro/mpu3050*
10116
10117 IOC3 ETHERNET DRIVER
10118 M:      Ralf Baechle <ralf@linux-mips.org>
10119 L:      linux-mips@vger.kernel.org
10120 S:      Maintained
10121 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10122
10123 IOMAP FILESYSTEM LIBRARY
10124 M:      Christoph Hellwig <hch@infradead.org>
10125 M:      Darrick J. Wong <djwong@kernel.org>
10126 M:      linux-xfs@vger.kernel.org
10127 M:      linux-fsdevel@vger.kernel.org
10128 L:      linux-xfs@vger.kernel.org
10129 L:      linux-fsdevel@vger.kernel.org
10130 S:      Supported
10131 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10132 F:      fs/iomap/
10133 F:      include/linux/iomap.h
10134
10135 IOMMU DRIVERS
10136 M:      Joerg Roedel <joro@8bytes.org>
10137 M:      Will Deacon <will@kernel.org>
10138 L:      iommu@lists.linux-foundation.org
10139 S:      Maintained
10140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10141 F:      Documentation/devicetree/bindings/iommu/
10142 F:      Documentation/userspace-api/iommu.rst
10143 F:      drivers/iommu/
10144 F:      include/linux/iommu.h
10145 F:      include/linux/iova.h
10146 F:      include/linux/of_iommu.h
10147 F:      include/uapi/linux/iommu.h
10148
10149 IOSYS-MAP HELPERS
10150 M:      Thomas Zimmermann <tzimmermann@suse.de>
10151 L:      dri-devel@lists.freedesktop.org
10152 S:      Maintained
10153 T:      git git://anongit.freedesktop.org/drm/drm-misc
10154 F:      include/linux/iosys-map.h
10155
10156 IO_URING
10157 M:      Jens Axboe <axboe@kernel.dk>
10158 R:      Pavel Begunkov <asml.silence@gmail.com>
10159 L:      io-uring@vger.kernel.org
10160 S:      Maintained
10161 T:      git git://git.kernel.dk/linux-block
10162 T:      git git://git.kernel.dk/liburing
10163 F:      fs/io-wq.c
10164 F:      fs/io-wq.h
10165 F:      fs/io_uring.c
10166 F:      include/linux/io_uring.h
10167 F:      include/uapi/linux/io_uring.h
10168 F:      tools/io_uring/
10169
10170 IPMI SUBSYSTEM
10171 M:      Corey Minyard <minyard@acm.org>
10172 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10173 S:      Supported
10174 W:      http://openipmi.sourceforge.net/
10175 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10176 F:      Documentation/driver-api/ipmi.rst
10177 F:      Documentation/devicetree/bindings/ipmi/
10178 F:      drivers/char/ipmi/
10179 F:      include/linux/ipmi*
10180 F:      include/uapi/linux/ipmi*
10181
10182 IPS SCSI RAID DRIVER
10183 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10184 L:      linux-scsi@vger.kernel.org
10185 S:      Maintained
10186 W:      http://www.adaptec.com/
10187 F:      drivers/scsi/ips*
10188
10189 IPVS
10190 M:      Simon Horman <horms@verge.net.au>
10191 M:      Julian Anastasov <ja@ssi.bg>
10192 L:      netdev@vger.kernel.org
10193 L:      lvs-devel@vger.kernel.org
10194 S:      Maintained
10195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10197 F:      Documentation/networking/ipvs-sysctl.rst
10198 F:      include/net/ip_vs.h
10199 F:      include/uapi/linux/ip_vs.h
10200 F:      net/netfilter/ipvs/
10201
10202 IPWIRELESS DRIVER
10203 M:      Jiri Kosina <jikos@kernel.org>
10204 M:      David Sterba <dsterba@suse.com>
10205 S:      Odd Fixes
10206 F:      drivers/tty/ipwireless/
10207
10208 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10209 M:      Marc Zyngier <maz@kernel.org>
10210 S:      Maintained
10211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10212 F:      Documentation/core-api/irq/irq-domain.rst
10213 F:      include/linux/irqdomain.h
10214 F:      kernel/irq/irqdomain.c
10215 F:      kernel/irq/msi.c
10216
10217 IRQ SUBSYSTEM
10218 M:      Thomas Gleixner <tglx@linutronix.de>
10219 L:      linux-kernel@vger.kernel.org
10220 S:      Maintained
10221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10222 F:      kernel/irq/
10223
10224 IRQCHIP DRIVERS
10225 M:      Thomas Gleixner <tglx@linutronix.de>
10226 M:      Marc Zyngier <maz@kernel.org>
10227 L:      linux-kernel@vger.kernel.org
10228 S:      Maintained
10229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10230 F:      Documentation/devicetree/bindings/interrupt-controller/
10231 F:      drivers/irqchip/
10232
10233 ISA
10234 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10235 S:      Maintained
10236 F:      Documentation/driver-api/isa.rst
10237 F:      drivers/base/isa.c
10238 F:      include/linux/isa.h
10239
10240 ISA RADIO MODULE
10241 M:      Hans Verkuil <hverkuil@xs4all.nl>
10242 L:      linux-media@vger.kernel.org
10243 S:      Maintained
10244 W:      https://linuxtv.org
10245 T:      git git://linuxtv.org/media_tree.git
10246 F:      drivers/media/radio/radio-isa*
10247
10248 ISAPNP
10249 M:      Jaroslav Kysela <perex@perex.cz>
10250 S:      Maintained
10251 F:      Documentation/driver-api/isapnp.rst
10252 F:      drivers/pnp/isapnp/
10253 F:      include/linux/isapnp.h
10254
10255 ISCSI
10256 M:      Lee Duncan <lduncan@suse.com>
10257 M:      Chris Leech <cleech@redhat.com>
10258 L:      open-iscsi@googlegroups.com
10259 L:      linux-scsi@vger.kernel.org
10260 S:      Maintained
10261 W:      www.open-iscsi.com
10262 F:      drivers/scsi/*iscsi*
10263 F:      include/scsi/*iscsi*
10264
10265 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10266 M:      Peter Jones <pjones@redhat.com>
10267 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10268 S:      Maintained
10269 F:      drivers/firmware/iscsi_ibft*
10270
10271 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10272 M:      Sagi Grimberg <sagi@grimberg.me>
10273 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10274 L:      linux-rdma@vger.kernel.org
10275 S:      Supported
10276 W:      http://www.openfabrics.org
10277 W:      www.open-iscsi.org
10278 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10279 F:      drivers/infiniband/ulp/iser/
10280
10281 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10282 M:      Sagi Grimberg <sagi@grimberg.me>
10283 L:      linux-rdma@vger.kernel.org
10284 L:      target-devel@vger.kernel.org
10285 S:      Supported
10286 W:      http://www.linux-iscsi.org
10287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10288 F:      drivers/infiniband/ulp/isert
10289
10290 ISDN/CMTP OVER BLUETOOTH
10291 M:      Karsten Keil <isdn@linux-pingi.de>
10292 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10293 L:      netdev@vger.kernel.org
10294 S:      Odd Fixes
10295 W:      http://www.isdn4linux.de
10296 F:      Documentation/isdn/
10297 F:      drivers/isdn/capi/
10298 F:      include/linux/isdn/
10299 F:      include/uapi/linux/isdn/
10300 F:      net/bluetooth/cmtp/
10301
10302 ISDN/mISDN SUBSYSTEM
10303 M:      Karsten Keil <isdn@linux-pingi.de>
10304 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10305 L:      netdev@vger.kernel.org
10306 S:      Maintained
10307 W:      http://www.isdn4linux.de
10308 F:      drivers/isdn/Kconfig
10309 F:      drivers/isdn/Makefile
10310 F:      drivers/isdn/hardware/
10311 F:      drivers/isdn/mISDN/
10312
10313 IT87 HARDWARE MONITORING DRIVER
10314 M:      Jean Delvare <jdelvare@suse.com>
10315 L:      linux-hwmon@vger.kernel.org
10316 S:      Maintained
10317 F:      Documentation/hwmon/it87.rst
10318 F:      drivers/hwmon/it87.c
10319
10320 IT913X MEDIA DRIVER
10321 M:      Antti Palosaari <crope@iki.fi>
10322 L:      linux-media@vger.kernel.org
10323 S:      Maintained
10324 W:      https://linuxtv.org
10325 W:      http://palosaari.fi/linux/
10326 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10327 T:      git git://linuxtv.org/anttip/media_tree.git
10328 F:      drivers/media/tuners/it913x*
10329
10330 ITE IT66121 HDMI BRIDGE DRIVER
10331 M:      Phong LE <ple@baylibre.com>
10332 M:      Neil Armstrong <narmstrong@baylibre.com>
10333 S:      Maintained
10334 T:      git git://anongit.freedesktop.org/drm/drm-misc
10335 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10336 F:      drivers/gpu/drm/bridge/ite-it66121.c
10337
10338 IVTV VIDEO4LINUX DRIVER
10339 M:      Andy Walls <awalls@md.metrocast.net>
10340 L:      linux-media@vger.kernel.org
10341 S:      Maintained
10342 W:      https://linuxtv.org
10343 T:      git git://linuxtv.org/media_tree.git
10344 F:      Documentation/admin-guide/media/ivtv*
10345 F:      drivers/media/pci/ivtv/
10346 F:      include/uapi/linux/ivtv*
10347
10348 IX2505V MEDIA DRIVER
10349 M:      Malcolm Priestley <tvboxspy@gmail.com>
10350 L:      linux-media@vger.kernel.org
10351 S:      Maintained
10352 W:      https://linuxtv.org
10353 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10354 F:      drivers/media/dvb-frontends/ix2505v*
10355
10356 JAILHOUSE HYPERVISOR INTERFACE
10357 M:      Jan Kiszka <jan.kiszka@siemens.com>
10358 L:      jailhouse-dev@googlegroups.com
10359 S:      Maintained
10360 F:      arch/x86/include/asm/jailhouse_para.h
10361 F:      arch/x86/kernel/jailhouse.c
10362
10363 JC42.4 TEMPERATURE SENSOR DRIVER
10364 M:      Guenter Roeck <linux@roeck-us.net>
10365 L:      linux-hwmon@vger.kernel.org
10366 S:      Maintained
10367 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10368 F:      Documentation/hwmon/jc42.rst
10369 F:      drivers/hwmon/jc42.c
10370
10371 JFS FILESYSTEM
10372 M:      Dave Kleikamp <shaggy@kernel.org>
10373 L:      jfs-discussion@lists.sourceforge.net
10374 S:      Maintained
10375 W:      http://jfs.sourceforge.net/
10376 T:      git git://github.com/kleikamp/linux-shaggy.git
10377 F:      Documentation/admin-guide/jfs.rst
10378 F:      fs/jfs/
10379
10380 JME NETWORK DRIVER
10381 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10382 L:      netdev@vger.kernel.org
10383 S:      Maintained
10384 F:      drivers/net/ethernet/jme.*
10385
10386 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10387 M:      David Woodhouse <dwmw2@infradead.org>
10388 M:      Richard Weinberger <richard@nod.at>
10389 L:      linux-mtd@lists.infradead.org
10390 S:      Odd Fixes
10391 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10392 T:      git git://git.infradead.org/ubifs-2.6.git
10393 F:      fs/jffs2/
10394 F:      include/uapi/linux/jffs2.h
10395
10396 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10397 M:      "Theodore Ts'o" <tytso@mit.edu>
10398 M:      Jan Kara <jack@suse.com>
10399 L:      linux-ext4@vger.kernel.org
10400 S:      Maintained
10401 F:      fs/jbd2/
10402 F:      include/linux/jbd2.h
10403
10404 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10405 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10406 L:      linux-media@vger.kernel.org
10407 L:      linux-renesas-soc@vger.kernel.org
10408 S:      Maintained
10409 F:      drivers/media/platform/renesas/rcar_jpu.c
10410
10411 JSM Neo PCI based serial card
10412 L:      linux-serial@vger.kernel.org
10413 S:      Orphan
10414 F:      drivers/tty/serial/jsm/
10415
10416 K10TEMP HARDWARE MONITORING DRIVER
10417 M:      Clemens Ladisch <clemens@ladisch.de>
10418 L:      linux-hwmon@vger.kernel.org
10419 S:      Maintained
10420 F:      Documentation/hwmon/k10temp.rst
10421 F:      drivers/hwmon/k10temp.c
10422
10423 K8TEMP HARDWARE MONITORING DRIVER
10424 M:      Rudolf Marek <r.marek@assembler.cz>
10425 L:      linux-hwmon@vger.kernel.org
10426 S:      Maintained
10427 F:      Documentation/hwmon/k8temp.rst
10428 F:      drivers/hwmon/k8temp.c
10429
10430 KASAN
10431 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10432 R:      Alexander Potapenko <glider@google.com>
10433 R:      Andrey Konovalov <andreyknvl@gmail.com>
10434 R:      Dmitry Vyukov <dvyukov@google.com>
10435 L:      kasan-dev@googlegroups.com
10436 S:      Maintained
10437 F:      Documentation/dev-tools/kasan.rst
10438 F:      arch/*/include/asm/*kasan.h
10439 F:      arch/*/mm/kasan_init*
10440 F:      include/linux/kasan*.h
10441 F:      lib/Kconfig.kasan
10442 F:      lib/test_kasan*.c
10443 F:      mm/kasan/
10444 F:      scripts/Makefile.kasan
10445
10446 KCONFIG
10447 M:      Masahiro Yamada <masahiroy@kernel.org>
10448 L:      linux-kbuild@vger.kernel.org
10449 S:      Maintained
10450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10451 F:      Documentation/kbuild/kconfig*
10452 F:      scripts/Kconfig.include
10453 F:      scripts/kconfig/
10454
10455 KCOV
10456 R:      Dmitry Vyukov <dvyukov@google.com>
10457 R:      Andrey Konovalov <andreyknvl@gmail.com>
10458 L:      kasan-dev@googlegroups.com
10459 S:      Maintained
10460 F:      Documentation/dev-tools/kcov.rst
10461 F:      include/linux/kcov.h
10462 F:      include/uapi/linux/kcov.h
10463 F:      kernel/kcov.c
10464 F:      scripts/Makefile.kcov
10465
10466 KCSAN
10467 M:      Marco Elver <elver@google.com>
10468 R:      Dmitry Vyukov <dvyukov@google.com>
10469 L:      kasan-dev@googlegroups.com
10470 S:      Maintained
10471 F:      Documentation/dev-tools/kcsan.rst
10472 F:      include/linux/kcsan*.h
10473 F:      kernel/kcsan/
10474 F:      lib/Kconfig.kcsan
10475 F:      scripts/Makefile.kcsan
10476
10477 KDUMP
10478 M:      Baoquan He <bhe@redhat.com>
10479 R:      Vivek Goyal <vgoyal@redhat.com>
10480 R:      Dave Young <dyoung@redhat.com>
10481 L:      kexec@lists.infradead.org
10482 S:      Maintained
10483 W:      http://lse.sourceforge.net/kdump/
10484 F:      Documentation/admin-guide/kdump/
10485 F:      fs/proc/vmcore.c
10486 F:      include/linux/crash_core.h
10487 F:      include/linux/crash_dump.h
10488 F:      include/uapi/linux/vmcore.h
10489 F:      kernel/crash_*.c
10490
10491 KEENE FM RADIO TRANSMITTER DRIVER
10492 M:      Hans Verkuil <hverkuil@xs4all.nl>
10493 L:      linux-media@vger.kernel.org
10494 S:      Maintained
10495 W:      https://linuxtv.org
10496 T:      git git://linuxtv.org/media_tree.git
10497 F:      drivers/media/radio/radio-keene*
10498
10499 KERNEL AUTOMOUNTER
10500 M:      Ian Kent <raven@themaw.net>
10501 L:      autofs@vger.kernel.org
10502 S:      Maintained
10503 F:      fs/autofs/
10504
10505 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10506 M:      Masahiro Yamada <masahiroy@kernel.org>
10507 M:      Michal Marek <michal.lkml@markovi.net>
10508 R:      Nick Desaulniers <ndesaulniers@google.com>
10509 L:      linux-kbuild@vger.kernel.org
10510 S:      Maintained
10511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10512 F:      Documentation/kbuild/
10513 F:      Makefile
10514 F:      scripts/*vmlinux*
10515 F:      scripts/Kbuild*
10516 F:      scripts/Makefile*
10517 F:      scripts/basic/
10518 F:      scripts/dummy-tools/
10519 F:      scripts/mk*
10520 F:      scripts/mod/
10521 F:      scripts/package/
10522
10523 KERNEL JANITORS
10524 L:      kernel-janitors@vger.kernel.org
10525 S:      Odd Fixes
10526 W:      http://kernelnewbies.org/KernelJanitors
10527
10528 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10529 M:      Chuck Lever <chuck.lever@oracle.com>
10530 L:      linux-nfs@vger.kernel.org
10531 S:      Supported
10532 W:      http://nfs.sourceforge.net/
10533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10534 F:      fs/lockd/
10535 F:      fs/nfs_common/
10536 F:      fs/nfsd/
10537 F:      include/linux/lockd/
10538 F:      include/linux/sunrpc/
10539 F:      include/uapi/linux/nfsd/
10540 F:      include/uapi/linux/sunrpc/
10541 F:      net/sunrpc/
10542 F:      Documentation/filesystems/nfs/
10543
10544 KERNEL REGRESSIONS
10545 M:      Thorsten Leemhuis <linux@leemhuis.info>
10546 L:      regressions@lists.linux.dev
10547 S:      Supported
10548 F:      Documentation/admin-guide/reporting-regressions.rst
10549 F:      Documentation/process/handling-regressions.rst
10550
10551 KERNEL SELFTEST FRAMEWORK
10552 M:      Shuah Khan <shuah@kernel.org>
10553 M:      Shuah Khan <skhan@linuxfoundation.org>
10554 L:      linux-kselftest@vger.kernel.org
10555 S:      Maintained
10556 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10558 F:      Documentation/dev-tools/kselftest*
10559 F:      tools/testing/selftests/
10560
10561 KERNEL SMB3 SERVER (KSMBD)
10562 M:      Namjae Jeon <linkinjeon@kernel.org>
10563 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10564 M:      Steve French <sfrench@samba.org>
10565 M:      Hyunchul Lee <hyc.lee@gmail.com>
10566 L:      linux-cifs@vger.kernel.org
10567 S:      Maintained
10568 T:      git git://git.samba.org/ksmbd.git
10569 F:      fs/ksmbd/
10570 F:      fs/smbfs_common/
10571
10572 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10573 M:      Brendan Higgins <brendanhiggins@google.com>
10574 L:      linux-kselftest@vger.kernel.org
10575 L:      kunit-dev@googlegroups.com
10576 S:      Maintained
10577 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10578 F:      Documentation/dev-tools/kunit/
10579 F:      include/kunit/
10580 F:      lib/kunit/
10581 F:      tools/testing/kunit/
10582
10583 KERNEL USERMODE HELPER
10584 M:      Luis Chamberlain <mcgrof@kernel.org>
10585 L:      linux-kernel@vger.kernel.org
10586 S:      Maintained
10587 F:      include/linux/umh.h
10588 F:      kernel/umh.c
10589
10590 KERNEL VIRTUAL MACHINE (KVM)
10591 M:      Paolo Bonzini <pbonzini@redhat.com>
10592 L:      kvm@vger.kernel.org
10593 S:      Supported
10594 W:      http://www.linux-kvm.org
10595 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10596 F:      Documentation/virt/kvm/
10597 F:      include/asm-generic/kvm*
10598 F:      include/kvm/iodev.h
10599 F:      include/linux/kvm*
10600 F:      include/trace/events/kvm.h
10601 F:      include/uapi/asm-generic/kvm*
10602 F:      include/uapi/linux/kvm*
10603 F:      tools/kvm/
10604 F:      tools/testing/selftests/kvm/
10605 F:      virt/kvm/*
10606
10607 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10608 M:      Marc Zyngier <maz@kernel.org>
10609 R:      James Morse <james.morse@arm.com>
10610 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10611 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10613 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10614 S:      Maintained
10615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10616 F:      arch/arm64/include/asm/kvm*
10617 F:      arch/arm64/include/uapi/asm/kvm*
10618 F:      arch/arm64/kvm/
10619 F:      include/kvm/arm_*
10620 F:      tools/testing/selftests/kvm/*/aarch64/
10621 F:      tools/testing/selftests/kvm/aarch64/
10622
10623 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10624 M:      Huacai Chen <chenhuacai@kernel.org>
10625 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10626 L:      linux-mips@vger.kernel.org
10627 L:      kvm@vger.kernel.org
10628 S:      Maintained
10629 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10630 F:      arch/mips/include/asm/kvm*
10631 F:      arch/mips/include/uapi/asm/kvm*
10632 F:      arch/mips/kvm/
10633
10634 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10635 L:      linuxppc-dev@lists.ozlabs.org
10636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10637 F:      arch/powerpc/include/asm/kvm*
10638 F:      arch/powerpc/include/uapi/asm/kvm*
10639 F:      arch/powerpc/kernel/kvm*
10640 F:      arch/powerpc/kvm/
10641
10642 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10643 M:      Anup Patel <anup@brainfault.org>
10644 R:      Atish Patra <atishp@atishpatra.org>
10645 L:      kvm@vger.kernel.org
10646 L:      kvm-riscv@lists.infradead.org
10647 L:      linux-riscv@lists.infradead.org
10648 S:      Maintained
10649 T:      git git://github.com/kvm-riscv/linux.git
10650 F:      arch/riscv/include/asm/kvm*
10651 F:      arch/riscv/include/uapi/asm/kvm*
10652 F:      arch/riscv/kvm/
10653
10654 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10655 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10656 M:      Janosch Frank <frankja@linux.ibm.com>
10657 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10658 R:      David Hildenbrand <david@redhat.com>
10659 L:      kvm@vger.kernel.org
10660 S:      Supported
10661 W:      http://www.ibm.com/developerworks/linux/linux390/
10662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10663 F:      Documentation/virt/kvm/s390*
10664 F:      arch/s390/include/asm/gmap.h
10665 F:      arch/s390/include/asm/kvm*
10666 F:      arch/s390/include/uapi/asm/kvm*
10667 F:      arch/s390/kernel/uv.c
10668 F:      arch/s390/kvm/
10669 F:      arch/s390/mm/gmap.c
10670 F:      tools/testing/selftests/kvm/*/s390x/
10671 F:      tools/testing/selftests/kvm/s390x/
10672
10673 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10674 M:      Paolo Bonzini <pbonzini@redhat.com>
10675 R:      Sean Christopherson <seanjc@google.com>
10676 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10677 R:      Wanpeng Li <wanpengli@tencent.com>
10678 R:      Jim Mattson <jmattson@google.com>
10679 R:      Joerg Roedel <joro@8bytes.org>
10680 L:      kvm@vger.kernel.org
10681 S:      Supported
10682 W:      http://www.linux-kvm.org
10683 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10684 F:      arch/x86/include/asm/kvm*
10685 F:      arch/x86/include/asm/pvclock-abi.h
10686 F:      arch/x86/include/asm/svm.h
10687 F:      arch/x86/include/asm/vmx*.h
10688 F:      arch/x86/include/uapi/asm/kvm*
10689 F:      arch/x86/include/uapi/asm/svm.h
10690 F:      arch/x86/include/uapi/asm/vmx.h
10691 F:      arch/x86/kernel/kvm.c
10692 F:      arch/x86/kernel/kvmclock.c
10693 F:      arch/x86/kvm/
10694 F:      arch/x86/kvm/*/
10695
10696 KERNFS
10697 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10698 M:      Tejun Heo <tj@kernel.org>
10699 S:      Supported
10700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10701 F:      fs/kernfs/
10702 F:      include/linux/kernfs.h
10703
10704 KEXEC
10705 M:      Eric Biederman <ebiederm@xmission.com>
10706 L:      kexec@lists.infradead.org
10707 S:      Maintained
10708 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10709 F:      include/linux/kexec.h
10710 F:      include/uapi/linux/kexec.h
10711 F:      kernel/kexec*
10712
10713 KEYS-ENCRYPTED
10714 M:      Mimi Zohar <zohar@linux.ibm.com>
10715 L:      linux-integrity@vger.kernel.org
10716 L:      keyrings@vger.kernel.org
10717 S:      Supported
10718 F:      Documentation/security/keys/trusted-encrypted.rst
10719 F:      include/keys/encrypted-type.h
10720 F:      security/keys/encrypted-keys/
10721
10722 KEYS-TRUSTED
10723 M:      James Bottomley <jejb@linux.ibm.com>
10724 M:      Jarkko Sakkinen <jarkko@kernel.org>
10725 M:      Mimi Zohar <zohar@linux.ibm.com>
10726 L:      linux-integrity@vger.kernel.org
10727 L:      keyrings@vger.kernel.org
10728 S:      Supported
10729 F:      Documentation/security/keys/trusted-encrypted.rst
10730 F:      include/keys/trusted-type.h
10731 F:      include/keys/trusted_tpm.h
10732 F:      security/keys/trusted-keys/
10733
10734 KEYS-TRUSTED-TEE
10735 M:      Sumit Garg <sumit.garg@linaro.org>
10736 L:      linux-integrity@vger.kernel.org
10737 L:      keyrings@vger.kernel.org
10738 S:      Supported
10739 F:      include/keys/trusted_tee.h
10740 F:      security/keys/trusted-keys/trusted_tee.c
10741
10742 KEYS/KEYRINGS
10743 M:      David Howells <dhowells@redhat.com>
10744 M:      Jarkko Sakkinen <jarkko@kernel.org>
10745 L:      keyrings@vger.kernel.org
10746 S:      Maintained
10747 F:      Documentation/security/keys/core.rst
10748 F:      include/keys/
10749 F:      include/linux/key-type.h
10750 F:      include/linux/key.h
10751 F:      include/linux/keyctl.h
10752 F:      include/uapi/linux/keyctl.h
10753 F:      security/keys/
10754
10755 KEYS/KEYRINGS_INTEGRITY
10756 M:      Jarkko Sakkinen <jarkko@kernel.org>
10757 M:      Mimi Zohar <zohar@linux.ibm.com>
10758 L:      linux-integrity@vger.kernel.org
10759 L:      keyrings@vger.kernel.org
10760 S:      Supported
10761 F:      security/integrity/platform_certs
10762
10763 KFENCE
10764 M:      Alexander Potapenko <glider@google.com>
10765 M:      Marco Elver <elver@google.com>
10766 R:      Dmitry Vyukov <dvyukov@google.com>
10767 L:      kasan-dev@googlegroups.com
10768 S:      Maintained
10769 F:      Documentation/dev-tools/kfence.rst
10770 F:      arch/*/include/asm/kfence.h
10771 F:      include/linux/kfence.h
10772 F:      lib/Kconfig.kfence
10773 F:      mm/kfence/
10774
10775 KFIFO
10776 M:      Stefani Seibold <stefani@seibold.net>
10777 S:      Maintained
10778 F:      include/linux/kfifo.h
10779 F:      lib/kfifo.c
10780 F:      samples/kfifo/
10781
10782 KGDB / KDB /debug_core
10783 M:      Jason Wessel <jason.wessel@windriver.com>
10784 M:      Daniel Thompson <daniel.thompson@linaro.org>
10785 R:      Douglas Anderson <dianders@chromium.org>
10786 L:      kgdb-bugreport@lists.sourceforge.net
10787 S:      Maintained
10788 W:      http://kgdb.wiki.kernel.org/
10789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10790 F:      Documentation/dev-tools/kgdb.rst
10791 F:      drivers/misc/kgdbts.c
10792 F:      drivers/tty/serial/kgdboc.c
10793 F:      include/linux/kdb.h
10794 F:      include/linux/kgdb.h
10795 F:      kernel/debug/
10796
10797 KHADAS MCU MFD DRIVER
10798 M:      Neil Armstrong <narmstrong@baylibre.com>
10799 L:      linux-amlogic@lists.infradead.org
10800 S:      Maintained
10801 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10802 F:      drivers/mfd/khadas-mcu.c
10803 F:      include/linux/mfd/khadas-mcu.h
10804 F:      drivers/thermal/khadas_mcu_fan.c
10805
10806 KMEMLEAK
10807 M:      Catalin Marinas <catalin.marinas@arm.com>
10808 S:      Maintained
10809 F:      Documentation/dev-tools/kmemleak.rst
10810 F:      include/linux/kmemleak.h
10811 F:      mm/kmemleak.c
10812 F:      samples/kmemleak/kmemleak-test.c
10813
10814 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10815 M:      Luis Chamberlain <mcgrof@kernel.org>
10816 L:      linux-kernel@vger.kernel.org
10817 L:      linux-modules@vger.kernel.org
10818 S:      Maintained
10819 F:      include/linux/kmod.h
10820 F:      kernel/kmod.c
10821 F:      lib/test_kmod.c
10822 F:      tools/testing/selftests/kmod/
10823
10824 KPROBES
10825 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10826 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10827 M:      "David S. Miller" <davem@davemloft.net>
10828 M:      Masami Hiramatsu <mhiramat@kernel.org>
10829 S:      Maintained
10830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10831 F:      Documentation/trace/kprobes.rst
10832 F:      include/asm-generic/kprobes.h
10833 F:      include/linux/kprobes.h
10834 F:      kernel/kprobes.c
10835 F:      lib/test_kprobes.c
10836 F:      samples/kprobes
10837
10838 KS0108 LCD CONTROLLER DRIVER
10839 M:      Miguel Ojeda <ojeda@kernel.org>
10840 S:      Maintained
10841 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10842 F:      drivers/auxdisplay/ks0108.c
10843 F:      include/linux/ks0108.h
10844
10845 KTD253 BACKLIGHT DRIVER
10846 M:      Linus Walleij <linus.walleij@linaro.org>
10847 S:      Maintained
10848 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10849 F:      drivers/video/backlight/ktd253-backlight.c
10850
10851 KTEST
10852 M:      Steven Rostedt <rostedt@goodmis.org>
10853 M:      John Hawley <warthog9@eaglescrag.net>
10854 S:      Maintained
10855 F:      tools/testing/ktest
10856
10857 L3MDEV
10858 M:      David Ahern <dsahern@kernel.org>
10859 L:      netdev@vger.kernel.org
10860 S:      Maintained
10861 F:      include/net/l3mdev.h
10862 F:      net/l3mdev
10863
10864 L7 BPF FRAMEWORK
10865 M:      John Fastabend <john.fastabend@gmail.com>
10866 M:      Daniel Borkmann <daniel@iogearbox.net>
10867 M:      Jakub Sitnicki <jakub@cloudflare.com>
10868 L:      netdev@vger.kernel.org
10869 L:      bpf@vger.kernel.org
10870 S:      Maintained
10871 F:      include/linux/skmsg.h
10872 F:      net/core/skmsg.c
10873 F:      net/core/sock_map.c
10874 F:      net/ipv4/tcp_bpf.c
10875 F:      net/ipv4/udp_bpf.c
10876 F:      net/unix/unix_bpf.c
10877
10878 LANDLOCK SECURITY MODULE
10879 M:      Mickaël Salaün <mic@digikod.net>
10880 L:      linux-security-module@vger.kernel.org
10881 S:      Supported
10882 W:      https://landlock.io
10883 T:      git https://github.com/landlock-lsm/linux.git
10884 F:      Documentation/security/landlock.rst
10885 F:      Documentation/userspace-api/landlock.rst
10886 F:      include/uapi/linux/landlock.h
10887 F:      samples/landlock/
10888 F:      security/landlock/
10889 F:      tools/testing/selftests/landlock/
10890 K:      landlock
10891 K:      LANDLOCK
10892
10893 LANTIQ / INTEL Ethernet drivers
10894 M:      Hauke Mehrtens <hauke@hauke-m.de>
10895 L:      netdev@vger.kernel.org
10896 S:      Maintained
10897 F:      drivers/net/dsa/lantiq_gswip.c
10898 F:      drivers/net/dsa/lantiq_pce.h
10899 F:      drivers/net/ethernet/lantiq_xrx200.c
10900 F:      net/dsa/tag_gswip.c
10901
10902 LANTIQ MIPS ARCHITECTURE
10903 M:      John Crispin <john@phrozen.org>
10904 L:      linux-mips@vger.kernel.org
10905 S:      Maintained
10906 F:      arch/mips/lantiq
10907 F:      drivers/soc/lantiq
10908
10909 LASI 53c700 driver for PARISC
10910 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10911 L:      linux-scsi@vger.kernel.org
10912 S:      Maintained
10913 F:      Documentation/scsi/53c700.rst
10914 F:      drivers/scsi/53c700*
10915
10916 LEAKING_ADDRESSES
10917 M:      Tobin C. Harding <me@tobin.cc>
10918 M:      Tycho Andersen <tycho@tycho.pizza>
10919 L:      linux-hardening@vger.kernel.org
10920 S:      Maintained
10921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10922 F:      scripts/leaking_addresses.pl
10923
10924 LED SUBSYSTEM
10925 M:      Pavel Machek <pavel@ucw.cz>
10926 L:      linux-leds@vger.kernel.org
10927 S:      Maintained
10928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10929 F:      Documentation/devicetree/bindings/leds/
10930 F:      drivers/leds/
10931 F:      include/linux/leds.h
10932
10933 LEGACY EEPROM DRIVER
10934 M:      Jean Delvare <jdelvare@suse.com>
10935 S:      Maintained
10936 F:      Documentation/misc-devices/eeprom.rst
10937 F:      drivers/misc/eeprom/eeprom.c
10938
10939 LEGO MINDSTORMS EV3
10940 R:      David Lechner <david@lechnology.com>
10941 S:      Maintained
10942 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10943 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10944 F:      drivers/power/supply/lego_ev3_battery.c
10945
10946 LEGO USB Tower driver
10947 M:      Juergen Stuber <starblue@users.sourceforge.net>
10948 L:      legousb-devel@lists.sourceforge.net
10949 S:      Maintained
10950 W:      http://legousb.sourceforge.net/
10951 F:      drivers/usb/misc/legousbtower.c
10952
10953 LETSKETCH HID TABLET DRIVER
10954 M:      Hans de Goede <hdegoede@redhat.com>
10955 L:      linux-input@vger.kernel.org
10956 S:      Maintained
10957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10958 F:      drivers/hid/hid-letsketch.c
10959
10960 LG LAPTOP EXTRAS
10961 M:      Matan Ziv-Av <matan@svgalib.org>
10962 L:      platform-driver-x86@vger.kernel.org
10963 S:      Maintained
10964 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10965 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10966 F:      drivers/platform/x86/lg-laptop.c
10967
10968 LG2160 MEDIA DRIVER
10969 M:      Michael Krufky <mkrufky@linuxtv.org>
10970 L:      linux-media@vger.kernel.org
10971 S:      Maintained
10972 W:      https://linuxtv.org
10973 W:      http://github.com/mkrufky
10974 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10975 T:      git git://linuxtv.org/mkrufky/tuners.git
10976 F:      drivers/media/dvb-frontends/lg2160.*
10977
10978 LGDT3305 MEDIA DRIVER
10979 M:      Michael Krufky <mkrufky@linuxtv.org>
10980 L:      linux-media@vger.kernel.org
10981 S:      Maintained
10982 W:      https://linuxtv.org
10983 W:      http://github.com/mkrufky
10984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10985 T:      git git://linuxtv.org/mkrufky/tuners.git
10986 F:      drivers/media/dvb-frontends/lgdt3305.*
10987
10988 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10989 M:      Viresh Kumar <vireshk@kernel.org>
10990 L:      linux-ide@vger.kernel.org
10991 S:      Maintained
10992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10993 F:      drivers/ata/pata_arasan_cf.c
10994 F:      include/linux/pata_arasan_cf_data.h
10995
10996 LIBATA PATA DRIVERS
10997 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
10998 L:      linux-ide@vger.kernel.org
10999 F:      drivers/ata/ata_*.c
11000 F:      drivers/ata/pata_*.c
11001
11002 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11003 M:      Linus Walleij <linus.walleij@linaro.org>
11004 L:      linux-ide@vger.kernel.org
11005 S:      Maintained
11006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11007 F:      drivers/ata/pata_ftide010.c
11008 F:      drivers/ata/sata_gemini.c
11009 F:      drivers/ata/sata_gemini.h
11010
11011 LIBATA SATA AHCI PLATFORM devices support
11012 M:      Hans de Goede <hdegoede@redhat.com>
11013 M:      Jens Axboe <axboe@kernel.dk>
11014 L:      linux-ide@vger.kernel.org
11015 S:      Maintained
11016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11017 F:      drivers/ata/ahci_platform.c
11018 F:      drivers/ata/libahci_platform.c
11019 F:      include/linux/ahci_platform.h
11020
11021 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11022 M:      Mikael Pettersson <mikpelinux@gmail.com>
11023 L:      linux-ide@vger.kernel.org
11024 S:      Maintained
11025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11026 F:      drivers/ata/sata_promise.*
11027
11028 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11029 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11030 L:      linux-ide@vger.kernel.org
11031 S:      Maintained
11032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11033 F:      Documentation/devicetree/bindings/ata/
11034 F:      drivers/ata/
11035 F:      include/linux/ata.h
11036 F:      include/linux/libata.h
11037
11038 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
11039 M:      Dan Williams <dan.j.williams@intel.com>
11040 M:      Vishal Verma <vishal.l.verma@intel.com>
11041 M:      Dave Jiang <dave.jiang@intel.com>
11042 L:      nvdimm@lists.linux.dev
11043 S:      Supported
11044 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11045 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11046 F:      drivers/nvdimm/blk.c
11047 F:      drivers/nvdimm/region_devs.c
11048
11049 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11050 M:      Vishal Verma <vishal.l.verma@intel.com>
11051 M:      Dan Williams <dan.j.williams@intel.com>
11052 M:      Dave Jiang <dave.jiang@intel.com>
11053 L:      nvdimm@lists.linux.dev
11054 S:      Supported
11055 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11056 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11057 F:      drivers/nvdimm/btt*
11058
11059 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11060 M:      Dan Williams <dan.j.williams@intel.com>
11061 M:      Vishal Verma <vishal.l.verma@intel.com>
11062 M:      Dave Jiang <dave.jiang@intel.com>
11063 L:      nvdimm@lists.linux.dev
11064 S:      Supported
11065 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11066 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11067 F:      drivers/nvdimm/pmem*
11068
11069 LIBNVDIMM: DEVICETREE BINDINGS
11070 M:      Oliver O'Halloran <oohall@gmail.com>
11071 L:      nvdimm@lists.linux.dev
11072 S:      Supported
11073 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11074 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11075 F:      drivers/nvdimm/of_pmem.c
11076
11077 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11078 M:      Dan Williams <dan.j.williams@intel.com>
11079 M:      Vishal Verma <vishal.l.verma@intel.com>
11080 M:      Dave Jiang <dave.jiang@intel.com>
11081 M:      Ira Weiny <ira.weiny@intel.com>
11082 L:      nvdimm@lists.linux.dev
11083 S:      Supported
11084 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11085 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11087 F:      drivers/acpi/nfit/*
11088 F:      drivers/nvdimm/*
11089 F:      include/linux/libnvdimm.h
11090 F:      include/linux/nd.h
11091 F:      include/uapi/linux/ndctl.h
11092 F:      tools/testing/nvdimm/
11093
11094 LICENSES and SPDX stuff
11095 M:      Thomas Gleixner <tglx@linutronix.de>
11096 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11097 L:      linux-spdx@vger.kernel.org
11098 S:      Maintained
11099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11100 F:      COPYING
11101 F:      Documentation/process/license-rules.rst
11102 F:      LICENSES/
11103 F:      scripts/spdxcheck-test.sh
11104 F:      scripts/spdxcheck.py
11105
11106 LINEAR RANGES HELPERS
11107 M:      Mark Brown <broonie@kernel.org>
11108 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
11109 F:      lib/linear_ranges.c
11110 F:      lib/test_linear_ranges.c
11111 F:      include/linux/linear_range.h
11112
11113 LINUX FOR POWER MACINTOSH
11114 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11115 L:      linuxppc-dev@lists.ozlabs.org
11116 S:      Odd Fixes
11117 F:      arch/powerpc/platforms/powermac/
11118 F:      drivers/macintosh/
11119
11120 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11121 M:      Michael Ellerman <mpe@ellerman.id.au>
11122 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11123 R:      Paul Mackerras <paulus@samba.org>
11124 L:      linuxppc-dev@lists.ozlabs.org
11125 S:      Supported
11126 W:      https://github.com/linuxppc/wiki/wiki
11127 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11129 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11130 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11131 F:      Documentation/devicetree/bindings/powerpc/
11132 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11133 F:      Documentation/powerpc/
11134 F:      arch/powerpc/
11135 F:      drivers/*/*/*pasemi*
11136 F:      drivers/*/*pasemi*
11137 F:      drivers/char/tpm/tpm_ibmvtpm*
11138 F:      drivers/crypto/nx/
11139 F:      drivers/crypto/vmx/
11140 F:      drivers/i2c/busses/i2c-opal.c
11141 F:      drivers/net/ethernet/ibm/ibmveth.*
11142 F:      drivers/net/ethernet/ibm/ibmvnic.*
11143 F:      drivers/pci/hotplug/pnv_php.c
11144 F:      drivers/pci/hotplug/rpa*
11145 F:      drivers/rtc/rtc-opal.c
11146 F:      drivers/scsi/ibmvscsi/
11147 F:      drivers/tty/hvc/hvc_opal.c
11148 F:      drivers/watchdog/wdrtas.c
11149 F:      tools/testing/selftests/powerpc
11150 N:      /pmac
11151 N:      powermac
11152 N:      powernv
11153 N:      [^a-z0-9]ps3
11154 N:      pseries
11155
11156 LINUX FOR POWERPC EMBEDDED MPC5XXX
11157 M:      Anatolij Gustschin <agust@denx.de>
11158 L:      linuxppc-dev@lists.ozlabs.org
11159 S:      Odd Fixes
11160 F:      arch/powerpc/platforms/512x/
11161 F:      arch/powerpc/platforms/52xx/
11162
11163 LINUX FOR POWERPC EMBEDDED PPC4XX
11164 L:      linuxppc-dev@lists.ozlabs.org
11165 S:      Orphan
11166 F:      arch/powerpc/platforms/40x/
11167 F:      arch/powerpc/platforms/44x/
11168
11169 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11170 M:      Scott Wood <oss@buserror.net>
11171 L:      linuxppc-dev@lists.ozlabs.org
11172 S:      Odd fixes
11173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11174 F:      Documentation/devicetree/bindings/powerpc/fsl/
11175 F:      arch/powerpc/platforms/83xx/
11176 F:      arch/powerpc/platforms/85xx/
11177
11178 LINUX FOR POWERPC EMBEDDED PPC8XX
11179 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11180 L:      linuxppc-dev@lists.ozlabs.org
11181 S:      Maintained
11182 F:      arch/powerpc/platforms/8xx/
11183
11184 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11185 M:      Kees Cook <keescook@chromium.org>
11186 S:      Maintained
11187 F:      drivers/misc/lkdtm/*
11188 F:      tools/testing/selftests/lkdtm/*
11189
11190 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11191 M:      Alan Stern <stern@rowland.harvard.edu>
11192 M:      Andrea Parri <parri.andrea@gmail.com>
11193 M:      Will Deacon <will@kernel.org>
11194 M:      Peter Zijlstra <peterz@infradead.org>
11195 M:      Boqun Feng <boqun.feng@gmail.com>
11196 M:      Nicholas Piggin <npiggin@gmail.com>
11197 M:      David Howells <dhowells@redhat.com>
11198 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11199 M:      Luc Maranget <luc.maranget@inria.fr>
11200 M:      "Paul E. McKenney" <paulmck@kernel.org>
11201 R:      Akira Yokosawa <akiyks@gmail.com>
11202 R:      Daniel Lustig <dlustig@nvidia.com>
11203 R:      Joel Fernandes <joel@joelfernandes.org>
11204 L:      linux-kernel@vger.kernel.org
11205 L:      linux-arch@vger.kernel.org
11206 S:      Supported
11207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11208 F:      Documentation/atomic_bitops.txt
11209 F:      Documentation/atomic_t.txt
11210 F:      Documentation/core-api/refcount-vs-atomic.rst
11211 F:      Documentation/litmus-tests/
11212 F:      Documentation/memory-barriers.txt
11213 F:      tools/memory-model/
11214
11215 LIS3LV02D ACCELEROMETER DRIVER
11216 M:      Eric Piel <eric.piel@tremplin-utc.net>
11217 S:      Maintained
11218 F:      Documentation/misc-devices/lis3lv02d.rst
11219 F:      drivers/misc/lis3lv02d/
11220 F:      drivers/platform/x86/hp_accel.c
11221
11222 LIST KUNIT TEST
11223 M:      David Gow <davidgow@google.com>
11224 L:      linux-kselftest@vger.kernel.org
11225 L:      kunit-dev@googlegroups.com
11226 S:      Maintained
11227 F:      lib/list-test.c
11228
11229 LITEX PLATFORM
11230 M:      Karol Gugala <kgugala@antmicro.com>
11231 M:      Mateusz Holenko <mholenko@antmicro.com>
11232 M:      Gabriel Somlo <gsomlo@gmail.com>
11233 M:      Joel Stanley <joel@jms.id.au>
11234 S:      Maintained
11235 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11236 F:      arch/openrisc/boot/dts/or1klitex.dts
11237 F:      include/linux/litex.h
11238 F:      drivers/tty/serial/liteuart.c
11239 F:      drivers/soc/litex/*
11240 F:      drivers/net/ethernet/litex/*
11241 F:      drivers/mmc/host/litex_mmc.c
11242 N:      litex
11243
11244 LIVE PATCHING
11245 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11246 M:      Jiri Kosina <jikos@kernel.org>
11247 M:      Miroslav Benes <mbenes@suse.cz>
11248 M:      Petr Mladek <pmladek@suse.com>
11249 R:      Joe Lawrence <joe.lawrence@redhat.com>
11250 L:      live-patching@vger.kernel.org
11251 S:      Maintained
11252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11253 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11254 F:      Documentation/livepatch/
11255 F:      arch/powerpc/include/asm/livepatch.h
11256 F:      arch/s390/include/asm/livepatch.h
11257 F:      arch/x86/include/asm/livepatch.h
11258 F:      include/linux/livepatch.h
11259 F:      kernel/livepatch/
11260 F:      lib/livepatch/
11261 F:      samples/livepatch/
11262 F:      tools/testing/selftests/livepatch/
11263
11264 LLC (802.2)
11265 L:      netdev@vger.kernel.org
11266 S:      Odd fixes
11267 F:      include/linux/llc.h
11268 F:      include/net/llc*
11269 F:      include/uapi/linux/llc.h
11270 F:      net/llc/
11271
11272 LM73 HARDWARE MONITOR DRIVER
11273 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11274 L:      linux-hwmon@vger.kernel.org
11275 S:      Maintained
11276 F:      drivers/hwmon/lm73.c
11277
11278 LM78 HARDWARE MONITOR DRIVER
11279 M:      Jean Delvare <jdelvare@suse.com>
11280 L:      linux-hwmon@vger.kernel.org
11281 S:      Maintained
11282 F:      Documentation/hwmon/lm78.rst
11283 F:      drivers/hwmon/lm78.c
11284
11285 LM83 HARDWARE MONITOR DRIVER
11286 M:      Jean Delvare <jdelvare@suse.com>
11287 L:      linux-hwmon@vger.kernel.org
11288 S:      Maintained
11289 F:      Documentation/hwmon/lm83.rst
11290 F:      drivers/hwmon/lm83.c
11291
11292 LM90 HARDWARE MONITOR DRIVER
11293 M:      Jean Delvare <jdelvare@suse.com>
11294 L:      linux-hwmon@vger.kernel.org
11295 S:      Maintained
11296 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11297 F:      Documentation/hwmon/lm90.rst
11298 F:      drivers/hwmon/lm90.c
11299 F:      include/dt-bindings/thermal/lm90.h
11300
11301 LM95234 HARDWARE MONITOR DRIVER
11302 M:      Guenter Roeck <linux@roeck-us.net>
11303 L:      linux-hwmon@vger.kernel.org
11304 S:      Maintained
11305 F:      Documentation/hwmon/lm95234.rst
11306 F:      drivers/hwmon/lm95234.c
11307
11308 LME2510 MEDIA DRIVER
11309 M:      Malcolm Priestley <tvboxspy@gmail.com>
11310 L:      linux-media@vger.kernel.org
11311 S:      Maintained
11312 W:      https://linuxtv.org
11313 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11314 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11315
11316 LOADPIN SECURITY MODULE
11317 M:      Kees Cook <keescook@chromium.org>
11318 S:      Supported
11319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11320 F:      Documentation/admin-guide/LSM/LoadPin.rst
11321 F:      security/loadpin/
11322
11323 LOCKING PRIMITIVES
11324 M:      Peter Zijlstra <peterz@infradead.org>
11325 M:      Ingo Molnar <mingo@redhat.com>
11326 M:      Will Deacon <will@kernel.org>
11327 R:      Waiman Long <longman@redhat.com>
11328 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11329 L:      linux-kernel@vger.kernel.org
11330 S:      Maintained
11331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11332 F:      Documentation/locking/
11333 F:      arch/*/include/asm/spinlock*.h
11334 F:      include/linux/lockdep.h
11335 F:      include/linux/mutex*.h
11336 F:      include/linux/rwlock*.h
11337 F:      include/linux/rwsem*.h
11338 F:      include/linux/seqlock.h
11339 F:      include/linux/spinlock*.h
11340 F:      kernel/locking/
11341 F:      lib/locking*.[ch]
11342 X:      kernel/locking/locktorture.c
11343
11344 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11345 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11346 L:      linux-ntfs-dev@lists.sourceforge.net
11347 S:      Maintained
11348 W:      http://www.linux-ntfs.org/content/view/19/37/
11349 F:      Documentation/admin-guide/ldm.rst
11350 F:      block/partitions/ldm.*
11351
11352 LOGITECH HID GAMING KEYBOARDS
11353 M:      Hans de Goede <hdegoede@redhat.com>
11354 L:      linux-input@vger.kernel.org
11355 S:      Maintained
11356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11357 F:      drivers/hid/hid-lg-g15.c
11358
11359 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11360 M:      Adrien Grassein <adrien.grassein@gmail.com>
11361 S:      Maintained
11362 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11363 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11364
11365 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11366 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11367 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11368 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11369 L:      MPT-FusionLinux.pdl@broadcom.com
11370 L:      linux-scsi@vger.kernel.org
11371 S:      Supported
11372 W:      http://www.avagotech.com/support/
11373 F:      drivers/message/fusion/
11374 F:      drivers/scsi/mpt3sas/
11375
11376 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11377 M:      Matthew Wilcox <willy@infradead.org>
11378 L:      linux-scsi@vger.kernel.org
11379 S:      Maintained
11380 F:      drivers/scsi/sym53c8xx_2/
11381
11382 LTC1660 DAC DRIVER
11383 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11384 L:      linux-iio@vger.kernel.org
11385 S:      Maintained
11386 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11387 F:      drivers/iio/dac/ltc1660.c
11388
11389 LTC2947 HARDWARE MONITOR DRIVER
11390 M:      Nuno Sá <nuno.sa@analog.com>
11391 L:      linux-hwmon@vger.kernel.org
11392 S:      Supported
11393 W:      http://ez.analog.com/community/linux-device-drivers
11394 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11395 F:      drivers/hwmon/ltc2947-core.c
11396 F:      drivers/hwmon/ltc2947-i2c.c
11397 F:      drivers/hwmon/ltc2947-spi.c
11398 F:      drivers/hwmon/ltc2947.h
11399
11400 LTC2983 IIO TEMPERATURE DRIVER
11401 M:      Nuno Sá <nuno.sa@analog.com>
11402 L:      linux-iio@vger.kernel.org
11403 S:      Supported
11404 W:      http://ez.analog.com/community/linux-device-drivers
11405 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11406 F:      drivers/iio/temperature/ltc2983.c
11407
11408 LTC4261 HARDWARE MONITOR DRIVER
11409 M:      Guenter Roeck <linux@roeck-us.net>
11410 L:      linux-hwmon@vger.kernel.org
11411 S:      Maintained
11412 F:      Documentation/hwmon/ltc4261.rst
11413 F:      drivers/hwmon/ltc4261.c
11414
11415 LTC4306 I2C MULTIPLEXER DRIVER
11416 M:      Michael Hennerich <michael.hennerich@analog.com>
11417 L:      linux-i2c@vger.kernel.org
11418 S:      Supported
11419 W:      http://ez.analog.com/community/linux-device-drivers
11420 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11421 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11422
11423 LTP (Linux Test Project)
11424 M:      Mike Frysinger <vapier@gentoo.org>
11425 M:      Cyril Hrubis <chrubis@suse.cz>
11426 M:      Wanlong Gao <wanlong.gao@gmail.com>
11427 M:      Jan Stancek <jstancek@redhat.com>
11428 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11429 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11430 L:      ltp@lists.linux.it (subscribers-only)
11431 S:      Maintained
11432 W:      http://linux-test-project.github.io/
11433 T:      git git://github.com/linux-test-project/ltp.git
11434
11435 LYNX 28G SERDES PHY DRIVER
11436 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11437 L:      netdev@vger.kernel.org
11438 S:      Supported
11439 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11440 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11441
11442 LYNX PCS MODULE
11443 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11444 L:      netdev@vger.kernel.org
11445 S:      Supported
11446 F:      drivers/net/pcs/pcs-lynx.c
11447 F:      include/linux/pcs-lynx.h
11448
11449 M68K ARCHITECTURE
11450 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11451 L:      linux-m68k@lists.linux-m68k.org
11452 S:      Maintained
11453 W:      http://www.linux-m68k.org/
11454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11455 F:      arch/m68k/
11456 F:      drivers/zorro/
11457
11458 M68K ON APPLE MACINTOSH
11459 M:      Joshua Thompson <funaho@jurai.org>
11460 L:      linux-m68k@lists.linux-m68k.org
11461 S:      Maintained
11462 W:      http://www.mac.linux-m68k.org/
11463 F:      arch/m68k/mac/
11464 F:      drivers/macintosh/adb-iop.c
11465 F:      drivers/macintosh/via-macii.c
11466
11467 M68K ON HP9000/300
11468 M:      Philip Blundell <philb@gnu.org>
11469 S:      Maintained
11470 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11471 F:      arch/m68k/hp300/
11472
11473 M88DS3103 MEDIA DRIVER
11474 M:      Antti Palosaari <crope@iki.fi>
11475 L:      linux-media@vger.kernel.org
11476 S:      Maintained
11477 W:      https://linuxtv.org
11478 W:      http://palosaari.fi/linux/
11479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11480 T:      git git://linuxtv.org/anttip/media_tree.git
11481 F:      drivers/media/dvb-frontends/m88ds3103*
11482
11483 M88RS2000 MEDIA DRIVER
11484 M:      Malcolm Priestley <tvboxspy@gmail.com>
11485 L:      linux-media@vger.kernel.org
11486 S:      Maintained
11487 W:      https://linuxtv.org
11488 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11489 F:      drivers/media/dvb-frontends/m88rs2000*
11490
11491 MA901 MASTERKIT USB FM RADIO DRIVER
11492 M:      Alexey Klimov <klimov.linux@gmail.com>
11493 L:      linux-media@vger.kernel.org
11494 S:      Maintained
11495 T:      git git://linuxtv.org/media_tree.git
11496 F:      drivers/media/radio/radio-ma901.c
11497
11498 MAC80211
11499 M:      Johannes Berg <johannes@sipsolutions.net>
11500 L:      linux-wireless@vger.kernel.org
11501 S:      Maintained
11502 W:      https://wireless.wiki.kernel.org/
11503 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11506 F:      Documentation/networking/mac80211-injection.rst
11507 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11508 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11509 F:      include/net/mac80211.h
11510 F:      net/mac80211/
11511
11512 MAILBOX API
11513 M:      Jassi Brar <jassisinghbrar@gmail.com>
11514 L:      linux-kernel@vger.kernel.org
11515 S:      Maintained
11516 F:      drivers/mailbox/
11517 F:      include/linux/mailbox_client.h
11518 F:      include/linux/mailbox_controller.h
11519 F:      include/dt-bindings/mailbox/
11520 F:      Documentation/devicetree/bindings/mailbox/
11521
11522 MAILBOX ARM MHUv2
11523 M:      Viresh Kumar <viresh.kumar@linaro.org>
11524 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11525 L:      linux-kernel@vger.kernel.org
11526 S:      Maintained
11527 F:      drivers/mailbox/arm_mhuv2.c
11528 F:      include/linux/mailbox/arm_mhuv2_message.h
11529 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11530
11531 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11532 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11533 M:      Matt Johnston <matt@codeconstruct.com.au>
11534 L:      netdev@vger.kernel.org
11535 S:      Maintained
11536 F:      Documentation/networking/mctp.rst
11537 F:      drivers/net/mctp/
11538 F:      include/net/mctp.h
11539 F:      include/net/mctpdevice.h
11540 F:      include/net/netns/mctp.h
11541 F:      net/mctp/
11542
11543 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11544 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11545 L:      linux-man@vger.kernel.org
11546 S:      Maintained
11547 W:      http://www.kernel.org/doc/man-pages
11548
11549 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11550 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11551 L:      linux-mips@vger.kernel.org
11552 S:      Maintained
11553 F:      arch/mips/boot/dts/img/pistachio*
11554
11555 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11556 M:      Andrew Lunn <andrew@lunn.ch>
11557 M:      Vivien Didelot <vivien.didelot@gmail.com>
11558 L:      netdev@vger.kernel.org
11559 S:      Maintained
11560 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11561 F:      Documentation/networking/devlink/mv88e6xxx.rst
11562 F:      drivers/net/dsa/mv88e6xxx/
11563 F:      include/linux/dsa/mv88e6xxx.h
11564 F:      include/linux/platform_data/mv88e6xxx.h
11565
11566 MARVELL ARMADA 3700 PHY DRIVERS
11567 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11568 S:      Maintained
11569 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11570 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11571 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11572 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11573
11574 MARVELL ARMADA DRM SUPPORT
11575 M:      Russell King <linux@armlinux.org.uk>
11576 S:      Maintained
11577 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11578 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11579 F:      Documentation/devicetree/bindings/display/armada/
11580 F:      drivers/gpu/drm/armada/
11581 F:      include/uapi/drm/armada_drm.h
11582
11583 MARVELL CRYPTO DRIVER
11584 M:      Boris Brezillon <bbrezillon@kernel.org>
11585 M:      Arnaud Ebalard <arno@natisbad.org>
11586 M:      Srujana Challa <schalla@marvell.com>
11587 L:      linux-crypto@vger.kernel.org
11588 S:      Maintained
11589 F:      drivers/crypto/marvell/
11590 F:      include/linux/soc/marvell/octeontx2/
11591
11592 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11593 M:      Mirko Lindner <mlindner@marvell.com>
11594 M:      Stephen Hemminger <stephen@networkplumber.org>
11595 L:      netdev@vger.kernel.org
11596 S:      Maintained
11597 F:      drivers/net/ethernet/marvell/sk*
11598
11599 MARVELL LIBERTAS WIRELESS DRIVER
11600 L:      libertas-dev@lists.infradead.org
11601 S:      Orphan
11602 F:      drivers/net/wireless/marvell/libertas/
11603
11604 MARVELL MACCHIATOBIN SUPPORT
11605 M:      Russell King <linux@armlinux.org.uk>
11606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11607 S:      Maintained
11608 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11609
11610 MARVELL MV643XX ETHERNET DRIVER
11611 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11612 L:      netdev@vger.kernel.org
11613 S:      Maintained
11614 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11615 F:      include/linux/mv643xx.h
11616
11617 MARVELL MV88X3310 PHY DRIVER
11618 M:      Russell King <linux@armlinux.org.uk>
11619 M:      Marek Behún <kabel@kernel.org>
11620 L:      netdev@vger.kernel.org
11621 S:      Maintained
11622 F:      drivers/net/phy/marvell10g.c
11623
11624 MARVELL MVEBU THERMAL DRIVER
11625 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11626 S:      Maintained
11627 F:      drivers/thermal/armada_thermal.c
11628
11629 MARVELL MVNETA ETHERNET DRIVER
11630 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11631 L:      netdev@vger.kernel.org
11632 S:      Maintained
11633 F:      drivers/net/ethernet/marvell/mvneta.*
11634
11635 MARVELL MVPP2 ETHERNET DRIVER
11636 M:      Marcin Wojtas <mw@semihalf.com>
11637 M:      Russell King <linux@armlinux.org.uk>
11638 L:      netdev@vger.kernel.org
11639 S:      Maintained
11640 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11641 F:      drivers/net/ethernet/marvell/mvpp2/
11642
11643 MARVELL MWIFIEX WIRELESS DRIVER
11644 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11645 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11646 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11647 M:      Xinming Hu <huxinming820@gmail.com>
11648 L:      linux-wireless@vger.kernel.org
11649 S:      Maintained
11650 F:      drivers/net/wireless/marvell/mwifiex/
11651
11652 MARVELL MWL8K WIRELESS DRIVER
11653 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11654 L:      linux-wireless@vger.kernel.org
11655 S:      Odd Fixes
11656 F:      drivers/net/wireless/marvell/mwl8k.c
11657
11658 MARVELL NAND CONTROLLER DRIVER
11659 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11660 L:      linux-mtd@lists.infradead.org
11661 S:      Maintained
11662 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11663 F:      drivers/mtd/nand/raw/marvell_nand.c
11664
11665 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11666 M:      Sunil Goutham <sgoutham@marvell.com>
11667 M:      Geetha sowjanya <gakula@marvell.com>
11668 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11669 M:      hariprasad <hkelam@marvell.com>
11670 L:      netdev@vger.kernel.org
11671 S:      Supported
11672 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11673 F:      include/linux/soc/marvell/octeontx2/
11674
11675 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11676 M:      Sunil Goutham <sgoutham@marvell.com>
11677 M:      Linu Cherian <lcherian@marvell.com>
11678 M:      Geetha sowjanya <gakula@marvell.com>
11679 M:      Jerin Jacob <jerinj@marvell.com>
11680 M:      hariprasad <hkelam@marvell.com>
11681 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11682 L:      netdev@vger.kernel.org
11683 S:      Supported
11684 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11685 F:      drivers/net/ethernet/marvell/octeontx2/af/
11686
11687 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11688 M:      Taras Chornyi <tchornyi@marvell.com>
11689 S:      Supported
11690 W:      https://github.com/Marvell-switching/switchdev-prestera
11691 F:      drivers/net/ethernet/marvell/prestera/
11692
11693 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11694 M:      Nicolas Pitre <nico@fluxnic.net>
11695 S:      Odd Fixes
11696 F:      drivers/mmc/host/mvsdio.*
11697
11698 MARVELL USB MDIO CONTROLLER DRIVER
11699 M:      Tobias Waldekranz <tobias@waldekranz.com>
11700 L:      netdev@vger.kernel.org
11701 S:      Maintained
11702 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11703 F:      drivers/net/mdio/mdio-mvusb.c
11704
11705 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11706 M:      Hu Ziji <huziji@marvell.com>
11707 L:      linux-mmc@vger.kernel.org
11708 S:      Supported
11709 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11710 F:      drivers/mmc/host/sdhci-xenon*
11711
11712 MATROX FRAMEBUFFER DRIVER
11713 L:      linux-fbdev@vger.kernel.org
11714 S:      Orphan
11715 F:      drivers/video/fbdev/matrox/matroxfb_*
11716 F:      include/uapi/linux/matroxfb.h
11717
11718 MAX15301 DRIVER
11719 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11720 L:      linux-hwmon@vger.kernel.org
11721 S:      Maintained
11722 F:      Documentation/hwmon/max15301.rst
11723 F:      drivers/hwmon/pmbus/max15301.c
11724
11725 MAX16065 HARDWARE MONITOR DRIVER
11726 M:      Guenter Roeck <linux@roeck-us.net>
11727 L:      linux-hwmon@vger.kernel.org
11728 S:      Maintained
11729 F:      Documentation/hwmon/max16065.rst
11730 F:      drivers/hwmon/max16065.c
11731
11732 MAX2175 SDR TUNER DRIVER
11733 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11734 L:      linux-media@vger.kernel.org
11735 S:      Maintained
11736 T:      git git://linuxtv.org/media_tree.git
11737 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11738 F:      Documentation/userspace-api/media/drivers/max2175.rst
11739 F:      drivers/media/i2c/max2175*
11740 F:      include/uapi/linux/max2175.h
11741
11742 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11743 L:      linux-hwmon@vger.kernel.org
11744 S:      Orphan
11745 F:      Documentation/hwmon/max6650.rst
11746 F:      drivers/hwmon/max6650.c
11747
11748 MAX6697 HARDWARE MONITOR DRIVER
11749 M:      Guenter Roeck <linux@roeck-us.net>
11750 L:      linux-hwmon@vger.kernel.org
11751 S:      Maintained
11752 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11753 F:      Documentation/hwmon/max6697.rst
11754 F:      drivers/hwmon/max6697.c
11755 F:      include/linux/platform_data/max6697.h
11756
11757 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11758 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11759 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11760 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11761 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11762 L:      linux-media@vger.kernel.org
11763 S:      Maintained
11764 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11765 F:      drivers/media/i2c/max9286.c
11766
11767 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
11768 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11769 L:      linux-media@vger.kernel.org
11770 S:      Maintained
11771 F:      drivers/staging/media/max96712/max96712.c
11772
11773 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11774 M:      Peter Rosin <peda@axentia.se>
11775 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11776 S:      Maintained
11777 F:      Documentation/devicetree/bindings/sound/max9860.txt
11778 F:      sound/soc/codecs/max9860.*
11779
11780 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11781 M:      Andreas Klinger <ak@it-klinger.de>
11782 L:      linux-iio@vger.kernel.org
11783 S:      Maintained
11784 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11785 F:      drivers/iio/proximity/mb1232.c
11786
11787 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11788 R:      Iskren Chernev <iskren.chernev@gmail.com>
11789 R:      Krzysztof Kozlowski <krzk@kernel.org>
11790 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11791 R:      Matheus Castello <matheus@castello.eng.br>
11792 L:      linux-pm@vger.kernel.org
11793 S:      Maintained
11794 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11795 F:      drivers/power/supply/max17040_battery.c
11796
11797 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11798 R:      Hans de Goede <hdegoede@redhat.com>
11799 R:      Krzysztof Kozlowski <krzk@kernel.org>
11800 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11801 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11802 R:      Purism Kernel Team <kernel@puri.sm>
11803 L:      linux-pm@vger.kernel.org
11804 S:      Maintained
11805 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11806 F:      drivers/power/supply/max17042_battery.c
11807
11808 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
11809 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11810 L:      linux-kernel@vger.kernel.org
11811 S:      Maintained
11812 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
11813 F:      drivers/regulator/max20086-regulator.c
11814
11815 MAXIM MAX77650 PMIC MFD DRIVER
11816 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11817 L:      linux-kernel@vger.kernel.org
11818 S:      Maintained
11819 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11820 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11821 F:      drivers/gpio/gpio-max77650.c
11822 F:      drivers/input/misc/max77650-onkey.c
11823 F:      drivers/leds/leds-max77650.c
11824 F:      drivers/mfd/max77650.c
11825 F:      drivers/power/supply/max77650-charger.c
11826 F:      drivers/regulator/max77650-regulator.c
11827 F:      include/linux/mfd/max77650.h
11828
11829 MAXIM MAX77714 PMIC MFD DRIVER
11830 M:      Luca Ceresoli <luca@lucaceresoli.net>
11831 S:      Maintained
11832 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
11833 F:      drivers/mfd/max77714.c
11834 F:      include/linux/mfd/max77714.h
11835
11836 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11837 M:      Javier Martinez Canillas <javier@dowhile0.org>
11838 L:      linux-kernel@vger.kernel.org
11839 S:      Supported
11840 F:      Documentation/devicetree/bindings/*/*max77802.yaml
11841 F:      drivers/regulator/max77802-regulator.c
11842 F:      include/dt-bindings/*/*max77802.h
11843
11844 MAXIM MAX77976 BATTERY CHARGER
11845 M:      Luca Ceresoli <luca@lucaceresoli.net>
11846 S:      Supported
11847 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
11848 F:      drivers/power/supply/max77976_charger.c
11849
11850 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11851 M:      Krzysztof Kozlowski <krzk@kernel.org>
11852 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11853 L:      linux-pm@vger.kernel.org
11854 S:      Supported
11855 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
11856 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
11857 F:      drivers/power/supply/max14577_charger.c
11858 F:      drivers/power/supply/max77693_charger.c
11859
11860 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11861 M:      Chanwoo Choi <cw00.choi@samsung.com>
11862 M:      Krzysztof Kozlowski <krzk@kernel.org>
11863 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11864 L:      linux-kernel@vger.kernel.org
11865 S:      Supported
11866 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
11867 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
11868 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
11869 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
11870 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11871 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11872 F:      drivers/*/*max77843.c
11873 F:      drivers/*/max14577*.c
11874 F:      drivers/*/max77686*.c
11875 F:      drivers/*/max77693*.c
11876 F:      drivers/clk/clk-max77686.c
11877 F:      drivers/extcon/extcon-max14577.c
11878 F:      drivers/extcon/extcon-max77693.c
11879 F:      drivers/rtc/rtc-max77686.c
11880 F:      include/linux/mfd/max14577*.h
11881 F:      include/linux/mfd/max77686*.h
11882 F:      include/linux/mfd/max77693*.h
11883
11884 MAXIRADIO FM RADIO RECEIVER DRIVER
11885 M:      Hans Verkuil <hverkuil@xs4all.nl>
11886 L:      linux-media@vger.kernel.org
11887 S:      Maintained
11888 W:      https://linuxtv.org
11889 T:      git git://linuxtv.org/media_tree.git
11890 F:      drivers/media/radio/radio-maxiradio*
11891
11892 MAXLINEAR ETHERNET PHY DRIVER
11893 M:      Xu Liang <lxu@maxlinear.com>
11894 L:      netdev@vger.kernel.org
11895 S:      Supported
11896 F:      drivers/net/phy/mxl-gpy.c
11897
11898 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11899 R:      Yasushi SHOJI <yashi@spacecubics.com>
11900 L:      linux-can@vger.kernel.org
11901 S:      Maintained
11902 F:      drivers/net/can/usb/mcba_usb.c
11903
11904 MCAN MMIO DEVICE DRIVER
11905 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11906 L:      linux-can@vger.kernel.org
11907 S:      Maintained
11908 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11909 F:      drivers/net/can/m_can/m_can.c
11910 F:      drivers/net/can/m_can/m_can.h
11911 F:      drivers/net/can/m_can/m_can_platform.c
11912
11913 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11914 M:      Rishi Gupta <gupt21@gmail.com>
11915 L:      linux-i2c@vger.kernel.org
11916 L:      linux-input@vger.kernel.org
11917 S:      Maintained
11918 F:      drivers/hid/hid-mcp2221.c
11919
11920 MCP251XFD SPI-CAN NETWORK DRIVER
11921 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11922 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11923 R:      Thomas Kopp <thomas.kopp@microchip.com>
11924 L:      linux-can@vger.kernel.org
11925 S:      Maintained
11926 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11927 F:      drivers/net/can/spi/mcp251xfd/
11928
11929 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11930 M:      Peter Rosin <peda@axentia.se>
11931 L:      linux-iio@vger.kernel.org
11932 S:      Maintained
11933 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11934 F:      drivers/iio/potentiometer/mcp4018.c
11935 F:      drivers/iio/potentiometer/mcp4531.c
11936
11937 MCR20A IEEE-802.15.4 RADIO DRIVER
11938 M:      Xue Liu <liuxuenetmail@gmail.com>
11939 L:      linux-wpan@vger.kernel.org
11940 S:      Maintained
11941 W:      https://github.com/xueliu/mcr20a-linux
11942 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11943 F:      drivers/net/ieee802154/mcr20a.c
11944 F:      drivers/net/ieee802154/mcr20a.h
11945
11946 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11947 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11948 L:      linux-iio@vger.kernel.org
11949 S:      Maintained
11950 F:      drivers/iio/dac/cio-dac.c
11951
11952 MEDIA CONTROLLER FRAMEWORK
11953 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11954 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11955 L:      linux-media@vger.kernel.org
11956 S:      Supported
11957 W:      https://www.linuxtv.org
11958 T:      git git://linuxtv.org/media_tree.git
11959 F:      drivers/media/mc/
11960 F:      include/media/media-*.h
11961 F:      include/uapi/linux/media.h
11962
11963 MEDIA DRIVER FOR FREESCALE IMX PXP
11964 M:      Philipp Zabel <p.zabel@pengutronix.de>
11965 L:      linux-media@vger.kernel.org
11966 S:      Maintained
11967 T:      git git://linuxtv.org/media_tree.git
11968 F:      drivers/media/platform/nxp/imx-pxp.[ch]
11969
11970 MEDIA DRIVERS FOR ASCOT2E
11971 M:      Sergey Kozlov <serjk@netup.ru>
11972 M:      Abylay Ospan <aospan@netup.ru>
11973 L:      linux-media@vger.kernel.org
11974 S:      Supported
11975 W:      https://linuxtv.org
11976 W:      http://netup.tv/
11977 T:      git git://linuxtv.org/media_tree.git
11978 F:      drivers/media/dvb-frontends/ascot2e*
11979
11980 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11981 M:      Jasmin Jessich <jasmin@anw.at>
11982 L:      linux-media@vger.kernel.org
11983 S:      Maintained
11984 W:      https://linuxtv.org
11985 T:      git git://linuxtv.org/media_tree.git
11986 F:      drivers/media/dvb-frontends/cxd2099*
11987
11988 MEDIA DRIVERS FOR CXD2841ER
11989 M:      Sergey Kozlov <serjk@netup.ru>
11990 M:      Abylay Ospan <aospan@netup.ru>
11991 L:      linux-media@vger.kernel.org
11992 S:      Supported
11993 W:      https://linuxtv.org
11994 W:      http://netup.tv/
11995 T:      git git://linuxtv.org/media_tree.git
11996 F:      drivers/media/dvb-frontends/cxd2841er*
11997
11998 MEDIA DRIVERS FOR CXD2880
11999 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12000 L:      linux-media@vger.kernel.org
12001 S:      Supported
12002 W:      http://linuxtv.org/
12003 T:      git git://linuxtv.org/media_tree.git
12004 F:      drivers/media/dvb-frontends/cxd2880/*
12005 F:      drivers/media/spi/cxd2880*
12006
12007 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12008 L:      linux-media@vger.kernel.org
12009 S:      Orphan
12010 W:      https://linuxtv.org
12011 T:      git git://linuxtv.org/media_tree.git
12012 F:      drivers/media/pci/ddbridge/*
12013
12014 MEDIA DRIVERS FOR FREESCALE IMX
12015 M:      Steve Longerbeam <slongerbeam@gmail.com>
12016 M:      Philipp Zabel <p.zabel@pengutronix.de>
12017 L:      linux-media@vger.kernel.org
12018 S:      Maintained
12019 T:      git git://linuxtv.org/media_tree.git
12020 F:      Documentation/admin-guide/media/imx.rst
12021 F:      Documentation/devicetree/bindings/media/imx.txt
12022 F:      drivers/staging/media/imx/
12023 F:      include/linux/imx-media.h
12024 F:      include/media/imx.h
12025
12026 MEDIA DRIVERS FOR FREESCALE IMX7
12027 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12028 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12029 L:      linux-media@vger.kernel.org
12030 S:      Maintained
12031 T:      git git://linuxtv.org/media_tree.git
12032 F:      Documentation/admin-guide/media/imx7.rst
12033 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12034 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12035 F:      drivers/media/platform/imx/imx-mipi-csis.c
12036 F:      drivers/staging/media/imx/imx7-media-csi.c
12037
12038 MEDIA DRIVERS FOR HELENE
12039 M:      Abylay Ospan <aospan@netup.ru>
12040 L:      linux-media@vger.kernel.org
12041 S:      Supported
12042 W:      https://linuxtv.org
12043 W:      http://netup.tv/
12044 T:      git git://linuxtv.org/media_tree.git
12045 F:      drivers/media/dvb-frontends/helene*
12046
12047 MEDIA DRIVERS FOR HORUS3A
12048 M:      Sergey Kozlov <serjk@netup.ru>
12049 M:      Abylay Ospan <aospan@netup.ru>
12050 L:      linux-media@vger.kernel.org
12051 S:      Supported
12052 W:      https://linuxtv.org
12053 W:      http://netup.tv/
12054 T:      git git://linuxtv.org/media_tree.git
12055 F:      drivers/media/dvb-frontends/horus3a*
12056
12057 MEDIA DRIVERS FOR LNBH25
12058 M:      Sergey Kozlov <serjk@netup.ru>
12059 M:      Abylay Ospan <aospan@netup.ru>
12060 L:      linux-media@vger.kernel.org
12061 S:      Supported
12062 W:      https://linuxtv.org
12063 W:      http://netup.tv/
12064 T:      git git://linuxtv.org/media_tree.git
12065 F:      drivers/media/dvb-frontends/lnbh25*
12066
12067 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12068 L:      linux-media@vger.kernel.org
12069 S:      Orphan
12070 W:      https://linuxtv.org
12071 T:      git git://linuxtv.org/media_tree.git
12072 F:      drivers/media/dvb-frontends/mxl5xx*
12073
12074 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12075 M:      Sergey Kozlov <serjk@netup.ru>
12076 M:      Abylay Ospan <aospan@netup.ru>
12077 L:      linux-media@vger.kernel.org
12078 S:      Supported
12079 W:      https://linuxtv.org
12080 W:      http://netup.tv/
12081 T:      git git://linuxtv.org/media_tree.git
12082 F:      drivers/media/pci/netup_unidvb/*
12083
12084 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12085 M:      Dmitry Osipenko <digetx@gmail.com>
12086 L:      linux-media@vger.kernel.org
12087 L:      linux-tegra@vger.kernel.org
12088 S:      Maintained
12089 T:      git git://linuxtv.org/media_tree.git
12090 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
12091 F:      drivers/media/platform/nvidia/tegra-vde/
12092
12093 MEDIA DRIVERS FOR RENESAS - CEU
12094 M:      Jacopo Mondi <jacopo@jmondi.org>
12095 L:      linux-media@vger.kernel.org
12096 L:      linux-renesas-soc@vger.kernel.org
12097 S:      Supported
12098 T:      git git://linuxtv.org/media_tree.git
12099 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12100 F:      drivers/media/platform/renesas/renesas-ceu.c
12101 F:      include/media/drv-intf/renesas-ceu.h
12102
12103 MEDIA DRIVERS FOR RENESAS - DRIF
12104 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12105 L:      linux-media@vger.kernel.org
12106 L:      linux-renesas-soc@vger.kernel.org
12107 S:      Supported
12108 T:      git git://linuxtv.org/media_tree.git
12109 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12110 F:      drivers/media/platform/renesas/rcar_drif.c
12111
12112 MEDIA DRIVERS FOR RENESAS - FCP
12113 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12114 L:      linux-media@vger.kernel.org
12115 L:      linux-renesas-soc@vger.kernel.org
12116 S:      Supported
12117 T:      git git://linuxtv.org/media_tree.git
12118 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12119 F:      drivers/media/platform/renesas/rcar-fcp.c
12120 F:      include/media/rcar-fcp.h
12121
12122 MEDIA DRIVERS FOR RENESAS - FDP1
12123 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12124 L:      linux-media@vger.kernel.org
12125 L:      linux-renesas-soc@vger.kernel.org
12126 S:      Supported
12127 T:      git git://linuxtv.org/media_tree.git
12128 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12129 F:      drivers/media/platform/renesas/rcar_fdp1.c
12130
12131 MEDIA DRIVERS FOR RENESAS - VIN
12132 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12133 L:      linux-media@vger.kernel.org
12134 L:      linux-renesas-soc@vger.kernel.org
12135 S:      Supported
12136 T:      git git://linuxtv.org/media_tree.git
12137 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12138 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12139 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12140 F:      drivers/media/platform/renesas/rcar-isp.c
12141 F:      drivers/media/platform/renesas/rcar-vin/
12142
12143 MEDIA DRIVERS FOR RENESAS - VSP1
12144 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12145 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12146 L:      linux-media@vger.kernel.org
12147 L:      linux-renesas-soc@vger.kernel.org
12148 S:      Supported
12149 T:      git git://linuxtv.org/media_tree.git
12150 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12151 F:      drivers/media/platform/renesas/vsp1/
12152
12153 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12154 L:      linux-media@vger.kernel.org
12155 S:      Orphan
12156 W:      https://linuxtv.org
12157 T:      git git://linuxtv.org/media_tree.git
12158 F:      drivers/media/dvb-frontends/stv0910*
12159
12160 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12161 L:      linux-media@vger.kernel.org
12162 S:      Orphan
12163 W:      https://linuxtv.org
12164 T:      git git://linuxtv.org/media_tree.git
12165 F:      drivers/media/dvb-frontends/stv6111*
12166
12167 MEDIA DRIVERS FOR STM32 - DCMI
12168 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12169 L:      linux-media@vger.kernel.org
12170 S:      Supported
12171 T:      git git://linuxtv.org/media_tree.git
12172 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12173 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12174
12175 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12176 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12177 L:      linux-media@vger.kernel.org
12178 S:      Maintained
12179 W:      https://linuxtv.org
12180 Q:      http://patchwork.kernel.org/project/linux-media/list/
12181 T:      git git://linuxtv.org/media_tree.git
12182 F:      Documentation/admin-guide/media/
12183 F:      Documentation/devicetree/bindings/media/
12184 F:      Documentation/driver-api/media/
12185 F:      Documentation/userspace-api/media/
12186 F:      drivers/media/
12187 F:      drivers/staging/media/
12188 F:      include/linux/platform_data/media/
12189 F:      include/media/
12190 F:      include/uapi/linux/dvb/
12191 F:      include/uapi/linux/ivtv*
12192 F:      include/uapi/linux/media.h
12193 F:      include/uapi/linux/meye.h
12194 F:      include/uapi/linux/uvcvideo.h
12195 F:      include/uapi/linux/v4l2-*
12196 F:      include/uapi/linux/videodev2.h
12197
12198 MEDIATEK BLUETOOTH DRIVER
12199 M:      Sean Wang <sean.wang@mediatek.com>
12200 L:      linux-bluetooth@vger.kernel.org
12201 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12202 S:      Maintained
12203 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12204 F:      drivers/bluetooth/btmtkuart.c
12205
12206 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12207 M:      Sean Wang <sean.wang@mediatek.com>
12208 L:      linux-pm@vger.kernel.org
12209 S:      Maintained
12210 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12211 F:      drivers/power/reset/mt6323-poweroff.c
12212
12213 MEDIATEK CIR DRIVER
12214 M:      Sean Wang <sean.wang@mediatek.com>
12215 S:      Maintained
12216 F:      drivers/media/rc/mtk-cir.c
12217
12218 MEDIATEK DMA DRIVER
12219 M:      Sean Wang <sean.wang@mediatek.com>
12220 L:      dmaengine@vger.kernel.org
12221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12222 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12223 S:      Maintained
12224 F:      Documentation/devicetree/bindings/dma/mtk-*
12225 F:      drivers/dma/mediatek/
12226
12227 MEDIATEK ETHERNET DRIVER
12228 M:      Felix Fietkau <nbd@nbd.name>
12229 M:      John Crispin <john@phrozen.org>
12230 M:      Sean Wang <sean.wang@mediatek.com>
12231 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12232 L:      netdev@vger.kernel.org
12233 S:      Maintained
12234 F:      drivers/net/ethernet/mediatek/
12235
12236 MEDIATEK I2C CONTROLLER DRIVER
12237 M:      Qii Wang <qii.wang@mediatek.com>
12238 L:      linux-i2c@vger.kernel.org
12239 S:      Maintained
12240 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
12241 F:      drivers/i2c/busses/i2c-mt65xx.c
12242
12243 MEDIATEK IOMMU DRIVER
12244 M:      Yong Wu <yong.wu@mediatek.com>
12245 L:      iommu@lists.linux-foundation.org
12246 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12247 S:      Supported
12248 F:      Documentation/devicetree/bindings/iommu/mediatek*
12249 F:      drivers/iommu/mtk_iommu*
12250 F:      include/dt-bindings/memory/mt*-port.h
12251
12252 MEDIATEK JPEG DRIVER
12253 M:      Rick Chang <rick.chang@mediatek.com>
12254 M:      Bin Liu <bin.liu@mediatek.com>
12255 S:      Supported
12256 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
12257 F:      drivers/media/platform/mediatek/jpeg/
12258
12259 MEDIATEK MDP DRIVER
12260 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12261 M:      Houlong Wei <houlong.wei@mediatek.com>
12262 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12263 S:      Supported
12264 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12265 F:      drivers/media/platform/mediatek/mdp/
12266 F:      drivers/media/platform/mediatek/vpu/
12267
12268 MEDIATEK MEDIA DRIVER
12269 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12270 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12271 S:      Supported
12272 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
12273 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12274 F:      drivers/media/platform/mediatek/vcodec/
12275 F:      drivers/media/platform/mediatek/vpu/
12276
12277 MEDIATEK MMC/SD/SDIO DRIVER
12278 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12279 S:      Maintained
12280 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12281 F:      drivers/mmc/host/mtk-sd.c
12282
12283 MEDIATEK MT76 WIRELESS LAN DRIVER
12284 M:      Felix Fietkau <nbd@nbd.name>
12285 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
12286 M:      Ryder Lee <ryder.lee@mediatek.com>
12287 R:      Shayne Chen <shayne.chen@mediatek.com>
12288 R:      Sean Wang <sean.wang@mediatek.com>
12289 L:      linux-wireless@vger.kernel.org
12290 S:      Maintained
12291 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12292 F:      drivers/net/wireless/mediatek/mt76/
12293
12294 MEDIATEK MT7601U WIRELESS LAN DRIVER
12295 M:      Jakub Kicinski <kubakici@wp.pl>
12296 L:      linux-wireless@vger.kernel.org
12297 S:      Maintained
12298 F:      drivers/net/wireless/mediatek/mt7601u/
12299
12300 MEDIATEK MT7621 CLOCK DRIVER
12301 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12302 S:      Maintained
12303 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12304 F:      drivers/clk/ralink/clk-mt7621.c
12305
12306 MEDIATEK MT7621/28/88 I2C DRIVER
12307 M:      Stefan Roese <sr@denx.de>
12308 L:      linux-i2c@vger.kernel.org
12309 S:      Maintained
12310 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12311 F:      drivers/i2c/busses/i2c-mt7621.c
12312
12313 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12314 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12315 S:      Maintained
12316 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12317 F:      drivers/pci/controller/pcie-mt7621.c
12318
12319 MEDIATEK MT7621 PHY PCI DRIVER
12320 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12321 S:      Maintained
12322 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12323 F:      drivers/phy/ralink/phy-mt7621-pci.c
12324
12325 MEDIATEK NAND CONTROLLER DRIVER
12326 L:      linux-mtd@lists.infradead.org
12327 S:      Orphan
12328 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12329 F:      drivers/mtd/nand/raw/mtk_*
12330
12331 MEDIATEK PMIC LED DRIVER
12332 M:      Sean Wang <sean.wang@mediatek.com>
12333 S:      Maintained
12334 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12335 F:      drivers/leds/leds-mt6323.c
12336
12337 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12338 M:      Sean Wang <sean.wang@mediatek.com>
12339 S:      Maintained
12340 F:      drivers/char/hw_random/mtk-rng.c
12341
12342 MEDIATEK SMI DRIVER
12343 M:      Yong Wu <yong.wu@mediatek.com>
12344 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12345 S:      Supported
12346 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12347 F:      drivers/memory/mtk-smi.c
12348 F:      include/soc/mediatek/smi.h
12349
12350 MEDIATEK SWITCH DRIVER
12351 M:      Sean Wang <sean.wang@mediatek.com>
12352 M:      Landen Chao <Landen.Chao@mediatek.com>
12353 M:      DENG Qingfang <dqfext@gmail.com>
12354 L:      netdev@vger.kernel.org
12355 S:      Maintained
12356 F:      drivers/net/dsa/mt7530.*
12357 F:      net/dsa/tag_mtk.c
12358
12359 MEDIATEK USB3 DRD IP DRIVER
12360 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12361 L:      linux-usb@vger.kernel.org
12362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12363 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12364 S:      Maintained
12365 F:      Documentation/devicetree/bindings/usb/mediatek,*
12366 F:      drivers/usb/host/xhci-mtk*
12367 F:      drivers/usb/mtu3/
12368
12369 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12370 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12371 M:      Martin Donnelly <martin.donnelly@ge.com>
12372 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12373 S:      Maintained
12374 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12375 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12376
12377 MEGARAID SCSI/SAS DRIVERS
12378 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12379 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12380 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12381 L:      megaraidlinux.pdl@broadcom.com
12382 L:      linux-scsi@vger.kernel.org
12383 S:      Maintained
12384 W:      http://www.avagotech.com/support/
12385 F:      Documentation/scsi/megaraid.rst
12386 F:      drivers/scsi/megaraid.*
12387 F:      drivers/scsi/megaraid/
12388
12389 MELEXIS MLX90614 DRIVER
12390 M:      Crt Mori <cmo@melexis.com>
12391 L:      linux-iio@vger.kernel.org
12392 S:      Supported
12393 W:      http://www.melexis.com
12394 F:      drivers/iio/temperature/mlx90614.c
12395
12396 MELEXIS MLX90632 DRIVER
12397 M:      Crt Mori <cmo@melexis.com>
12398 L:      linux-iio@vger.kernel.org
12399 S:      Supported
12400 W:      http://www.melexis.com
12401 F:      drivers/iio/temperature/mlx90632.c
12402
12403 MELFAS MIP4 TOUCHSCREEN DRIVER
12404 M:      Sangwon Jee <jeesw@melfas.com>
12405 S:      Supported
12406 W:      http://www.melfas.com
12407 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12408 F:      drivers/input/touchscreen/melfas_mip4.c
12409
12410 MELLANOX BLUEFIELD I2C DRIVER
12411 M:      Khalil Blaiech <kblaiech@nvidia.com>
12412 L:      linux-i2c@vger.kernel.org
12413 S:      Supported
12414 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12415 F:      drivers/i2c/busses/i2c-mlxbf.c
12416
12417 MELLANOX ETHERNET DRIVER (mlx4_en)
12418 M:      Tariq Toukan <tariqt@nvidia.com>
12419 L:      netdev@vger.kernel.org
12420 S:      Supported
12421 W:      http://www.mellanox.com
12422 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12423 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12424
12425 MELLANOX ETHERNET DRIVER (mlx5e)
12426 M:      Saeed Mahameed <saeedm@nvidia.com>
12427 L:      netdev@vger.kernel.org
12428 S:      Supported
12429 W:      http://www.mellanox.com
12430 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12431 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12432
12433 MELLANOX ETHERNET INNOVA DRIVERS
12434 R:      Boris Pismenny <borisp@nvidia.com>
12435 L:      netdev@vger.kernel.org
12436 S:      Supported
12437 W:      http://www.mellanox.com
12438 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12439 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12440 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12441 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12442 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12443
12444 MELLANOX ETHERNET SWITCH DRIVERS
12445 M:      Ido Schimmel <idosch@nvidia.com>
12446 M:      Petr Machata <petrm@nvidia.com>
12447 L:      netdev@vger.kernel.org
12448 S:      Supported
12449 W:      http://www.mellanox.com
12450 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12451 F:      drivers/net/ethernet/mellanox/mlxsw/
12452 F:      tools/testing/selftests/drivers/net/mlxsw/
12453
12454 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12455 M:      mlxsw@nvidia.com
12456 L:      netdev@vger.kernel.org
12457 S:      Supported
12458 W:      http://www.mellanox.com
12459 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12460 F:      drivers/net/ethernet/mellanox/mlxfw/
12461
12462 MELLANOX HARDWARE PLATFORM SUPPORT
12463 M:      Hans de Goede <hdegoede@redhat.com>
12464 M:      Mark Gross <markgross@kernel.org>
12465 M:      Vadim Pasternak <vadimp@nvidia.com>
12466 L:      platform-driver-x86@vger.kernel.org
12467 S:      Supported
12468 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12469 F:      drivers/platform/mellanox/
12470 F:      include/linux/platform_data/mlxreg.h
12471
12472 MELLANOX MLX4 core VPI driver
12473 M:      Tariq Toukan <tariqt@nvidia.com>
12474 L:      netdev@vger.kernel.org
12475 L:      linux-rdma@vger.kernel.org
12476 S:      Supported
12477 W:      http://www.mellanox.com
12478 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12479 F:      drivers/net/ethernet/mellanox/mlx4/
12480 F:      include/linux/mlx4/
12481
12482 MELLANOX MLX4 IB driver
12483 M:      Yishai Hadas <yishaih@nvidia.com>
12484 L:      linux-rdma@vger.kernel.org
12485 S:      Supported
12486 W:      http://www.mellanox.com
12487 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12488 F:      drivers/infiniband/hw/mlx4/
12489 F:      include/linux/mlx4/
12490 F:      include/uapi/rdma/mlx4-abi.h
12491
12492 MELLANOX MLX5 core VPI driver
12493 M:      Saeed Mahameed <saeedm@nvidia.com>
12494 M:      Leon Romanovsky <leonro@nvidia.com>
12495 L:      netdev@vger.kernel.org
12496 L:      linux-rdma@vger.kernel.org
12497 S:      Supported
12498 W:      http://www.mellanox.com
12499 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12500 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12501 F:      drivers/net/ethernet/mellanox/mlx5/core/
12502 F:      include/linux/mlx5/
12503
12504 MELLANOX MLX5 IB driver
12505 M:      Leon Romanovsky <leonro@nvidia.com>
12506 L:      linux-rdma@vger.kernel.org
12507 S:      Supported
12508 W:      http://www.mellanox.com
12509 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12510 F:      drivers/infiniband/hw/mlx5/
12511 F:      include/linux/mlx5/
12512 F:      include/uapi/rdma/mlx5-abi.h
12513
12514 MELLANOX MLXCPLD I2C AND MUX DRIVER
12515 M:      Vadim Pasternak <vadimp@nvidia.com>
12516 M:      Michael Shych <michaelsh@nvidia.com>
12517 L:      linux-i2c@vger.kernel.org
12518 S:      Supported
12519 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12520 F:      drivers/i2c/busses/i2c-mlxcpld.c
12521 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12522
12523 MELLANOX MLXCPLD LED DRIVER
12524 M:      Vadim Pasternak <vadimp@nvidia.com>
12525 L:      linux-leds@vger.kernel.org
12526 S:      Supported
12527 F:      Documentation/leds/leds-mlxcpld.rst
12528 F:      drivers/leds/leds-mlxcpld.c
12529 F:      drivers/leds/leds-mlxreg.c
12530
12531 MELLANOX PLATFORM DRIVER
12532 M:      Vadim Pasternak <vadimp@nvidia.com>
12533 L:      platform-driver-x86@vger.kernel.org
12534 S:      Supported
12535 F:      drivers/platform/x86/mlx-platform.c
12536
12537 MEMBARRIER SUPPORT
12538 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12539 M:      "Paul E. McKenney" <paulmck@kernel.org>
12540 L:      linux-kernel@vger.kernel.org
12541 S:      Supported
12542 F:      arch/powerpc/include/asm/membarrier.h
12543 F:      include/uapi/linux/membarrier.h
12544 F:      kernel/sched/membarrier.c
12545
12546 MEMBLOCK
12547 M:      Mike Rapoport <rppt@kernel.org>
12548 L:      linux-mm@kvack.org
12549 S:      Maintained
12550 F:      Documentation/core-api/boot-time-mm.rst
12551 F:      include/linux/memblock.h
12552 F:      mm/memblock.c
12553 F:      tools/testing/memblock/
12554
12555 MEMORY CONTROLLER DRIVERS
12556 M:      Krzysztof Kozlowski <krzk@kernel.org>
12557 L:      linux-kernel@vger.kernel.org
12558 S:      Maintained
12559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12560 F:      Documentation/devicetree/bindings/memory-controllers/
12561 F:      drivers/memory/
12562 F:      include/dt-bindings/memory/
12563 F:      include/memory/
12564
12565 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12566 M:      Dmitry Osipenko <digetx@gmail.com>
12567 L:      linux-pm@vger.kernel.org
12568 L:      linux-tegra@vger.kernel.org
12569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12570 S:      Maintained
12571 F:      drivers/devfreq/tegra30-devfreq.c
12572
12573 MEMORY MANAGEMENT
12574 M:      Andrew Morton <akpm@linux-foundation.org>
12575 L:      linux-mm@kvack.org
12576 S:      Maintained
12577 W:      http://www.linux-mm.org
12578 T:      quilt https://ozlabs.org/~akpm/mmotm/
12579 T:      quilt https://ozlabs.org/~akpm/mmots/
12580 T:      git git://github.com/hnaz/linux-mm.git
12581 F:      include/linux/gfp.h
12582 F:      include/linux/memory_hotplug.h
12583 F:      include/linux/mm.h
12584 F:      include/linux/mmzone.h
12585 F:      include/linux/pagewalk.h
12586 F:      include/linux/vmalloc.h
12587 F:      mm/
12588 F:      tools/testing/selftests/vm/
12589
12590 MEMORY TECHNOLOGY DEVICES (MTD)
12591 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12592 M:      Richard Weinberger <richard@nod.at>
12593 M:      Vignesh Raghavendra <vigneshr@ti.com>
12594 L:      linux-mtd@lists.infradead.org
12595 S:      Maintained
12596 W:      http://www.linux-mtd.infradead.org/
12597 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12598 C:      irc://irc.oftc.net/mtd
12599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12601 F:      Documentation/devicetree/bindings/mtd/
12602 F:      drivers/mtd/
12603 F:      include/linux/mtd/
12604 F:      include/uapi/mtd/
12605
12606 MEN A21 WATCHDOG DRIVER
12607 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12608 L:      linux-watchdog@vger.kernel.org
12609 S:      Maintained
12610 F:      drivers/watchdog/mena21_wdt.c
12611
12612 MEN CHAMELEON BUS (mcb)
12613 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12614 S:      Maintained
12615 F:      Documentation/driver-api/men-chameleon-bus.rst
12616 F:      drivers/mcb/
12617 F:      include/linux/mcb.h
12618
12619 MEN F21BMC (Board Management Controller)
12620 M:      Andreas Werner <andreas.werner@men.de>
12621 S:      Supported
12622 F:      Documentation/hwmon/menf21bmc.rst
12623 F:      drivers/hwmon/menf21bmc_hwmon.c
12624 F:      drivers/leds/leds-menf21bmc.c
12625 F:      drivers/mfd/menf21bmc.c
12626 F:      drivers/watchdog/menf21bmc_wdt.c
12627
12628 MEN Z069 WATCHDOG DRIVER
12629 M:      Johannes Thumshirn <jth@kernel.org>
12630 L:      linux-watchdog@vger.kernel.org
12631 S:      Maintained
12632 F:      drivers/watchdog/menz69_wdt.c
12633
12634 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12635 M:      Neil Armstrong <narmstrong@baylibre.com>
12636 L:      linux-media@vger.kernel.org
12637 L:      linux-amlogic@lists.infradead.org
12638 S:      Supported
12639 W:      http://linux-meson.com/
12640 T:      git git://linuxtv.org/media_tree.git
12641 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12642 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12643 F:      drivers/media/cec/platform/meson/ao-cec.c
12644
12645 MESON GE2D DRIVER FOR AMLOGIC SOCS
12646 M:      Neil Armstrong <narmstrong@baylibre.com>
12647 L:      linux-media@vger.kernel.org
12648 L:      linux-amlogic@lists.infradead.org
12649 S:      Supported
12650 T:      git git://linuxtv.org/media_tree.git
12651 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12652 F:      drivers/media/platform/amlogic/meson-ge2d/
12653
12654 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12655 M:      Liang Yang <liang.yang@amlogic.com>
12656 L:      linux-mtd@lists.infradead.org
12657 S:      Maintained
12658 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12659 F:      drivers/mtd/nand/raw/meson_*
12660
12661 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12662 M:      Neil Armstrong <narmstrong@baylibre.com>
12663 L:      linux-media@vger.kernel.org
12664 L:      linux-amlogic@lists.infradead.org
12665 S:      Supported
12666 T:      git git://linuxtv.org/media_tree.git
12667 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12668 F:      drivers/staging/media/meson/vdec/
12669
12670 METHODE UDPU SUPPORT
12671 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12672 S:      Maintained
12673 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12674
12675 MHI BUS
12676 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12677 R:      Hemant Kumar <hemantk@codeaurora.org>
12678 L:      mhi@lists.linux.dev
12679 L:      linux-arm-msm@vger.kernel.org
12680 S:      Maintained
12681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12682 F:      Documentation/ABI/stable/sysfs-bus-mhi
12683 F:      Documentation/mhi/
12684 F:      drivers/bus/mhi/
12685 F:      include/linux/mhi.h
12686
12687 MICROBLAZE ARCHITECTURE
12688 M:      Michal Simek <monstr@monstr.eu>
12689 S:      Supported
12690 W:      http://www.monstr.eu/fdt/
12691 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12692 F:      arch/microblaze/
12693
12694 MICROCHIP AT91 DMA DRIVERS
12695 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12696 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12698 L:      dmaengine@vger.kernel.org
12699 S:      Supported
12700 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12701 F:      drivers/dma/at_hdmac.c
12702 F:      drivers/dma/at_hdmac_regs.h
12703 F:      drivers/dma/at_xdmac.c
12704 F:      include/dt-bindings/dma/at91.h
12705
12706 MICROCHIP AT91 SERIAL DRIVER
12707 M:      Richard Genoud <richard.genoud@gmail.com>
12708 S:      Maintained
12709 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12710 F:      drivers/tty/serial/atmel_serial.c
12711 F:      drivers/tty/serial/atmel_serial.h
12712
12713 MICROCHIP AT91 USART MFD DRIVER
12714 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12715 L:      linux-kernel@vger.kernel.org
12716 S:      Supported
12717 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12718 F:      drivers/mfd/at91-usart.c
12719 F:      include/dt-bindings/mfd/at91-usart.h
12720
12721 MICROCHIP AT91 USART SPI DRIVER
12722 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12723 L:      linux-spi@vger.kernel.org
12724 S:      Supported
12725 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12726 F:      drivers/spi/spi-at91-usart.c
12727
12728 MICROCHIP AUDIO ASOC DRIVERS
12729 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12730 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12731 S:      Supported
12732 F:      sound/soc/atmel
12733
12734 MICROCHIP CSI2DC DRIVER
12735 M:      Eugen Hristev <eugen.hristev@microchip.com>
12736 L:      linux-media@vger.kernel.org
12737 S:      Supported
12738 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
12739 F:      drivers/media/platform/atmel/microchip-csi2dc.c
12740
12741 MICROCHIP ECC DRIVER
12742 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12743 L:      linux-crypto@vger.kernel.org
12744 S:      Maintained
12745 F:      drivers/crypto/atmel-ecc.*
12746
12747 MICROCHIP EIC DRIVER
12748 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12750 S:      Supported
12751 F:      drivers/irqchip/irq-mchp-eic.c
12752
12753 MICROCHIP I2C DRIVER
12754 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12755 L:      linux-i2c@vger.kernel.org
12756 S:      Supported
12757 F:      drivers/i2c/busses/i2c-at91-*.c
12758 F:      drivers/i2c/busses/i2c-at91.h
12759
12760 MICROCHIP ISC DRIVER
12761 M:      Eugen Hristev <eugen.hristev@microchip.com>
12762 L:      linux-media@vger.kernel.org
12763 S:      Supported
12764 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12765 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12766 F:      drivers/media/platform/atmel/atmel-isc*
12767 F:      drivers/media/platform/atmel/atmel-sama*-isc*
12768 F:      include/linux/atmel-isc-media.h
12769
12770 MICROCHIP ISI DRIVER
12771 M:      Eugen Hristev <eugen.hristev@microchip.com>
12772 L:      linux-media@vger.kernel.org
12773 S:      Supported
12774 F:      drivers/media/platform/atmel/atmel-isi.c
12775 F:      drivers/media/platform/atmel/atmel-isi.h
12776
12777 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12778 M:      Woojung Huh <woojung.huh@microchip.com>
12779 M:      UNGLinuxDriver@microchip.com
12780 L:      netdev@vger.kernel.org
12781 S:      Maintained
12782 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12783 F:      drivers/net/dsa/microchip/*
12784 F:      include/linux/platform_data/microchip-ksz.h
12785 F:      net/dsa/tag_ksz.c
12786
12787 MICROCHIP LAN743X ETHERNET DRIVER
12788 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12789 M:      UNGLinuxDriver@microchip.com
12790 L:      netdev@vger.kernel.org
12791 S:      Maintained
12792 F:      drivers/net/ethernet/microchip/lan743x_*
12793
12794 MICROCHIP LAN966X ETHERNET DRIVER
12795 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
12796 M:      UNGLinuxDriver@microchip.com
12797 L:      netdev@vger.kernel.org
12798 S:      Maintained
12799 F:      drivers/net/ethernet/microchip/lan966x/*
12800
12801 MICROCHIP LCDFB DRIVER
12802 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12803 L:      linux-fbdev@vger.kernel.org
12804 S:      Maintained
12805 F:      drivers/video/fbdev/atmel_lcdfb.c
12806 F:      include/video/atmel_lcdc.h
12807
12808 MICROCHIP MCP16502 PMIC DRIVER
12809 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12811 S:      Supported
12812 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12813 F:      drivers/regulator/mcp16502.c
12814
12815 MICROCHIP MCP3911 ADC DRIVER
12816 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12817 M:      Kent Gustavsson <kent@minoris.se>
12818 L:      linux-iio@vger.kernel.org
12819 S:      Supported
12820 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12821 F:      drivers/iio/adc/mcp3911.c
12822
12823 MICROCHIP MMC/SD/SDIO MCI DRIVER
12824 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12825 S:      Maintained
12826 F:      drivers/mmc/host/atmel-mci.c
12827
12828 MICROCHIP NAND DRIVER
12829 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12830 L:      linux-mtd@lists.infradead.org
12831 S:      Supported
12832 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12833 F:      drivers/mtd/nand/raw/atmel/*
12834
12835 MICROCHIP PWM DRIVER
12836 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12838 L:      linux-pwm@vger.kernel.org
12839 S:      Supported
12840 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12841 F:      drivers/pwm/pwm-atmel.c
12842
12843 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12844 M:      Eugen Hristev <eugen.hristev@microchip.com>
12845 L:      linux-iio@vger.kernel.org
12846 S:      Supported
12847 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12848 F:      drivers/iio/adc/at91-sama5d2_adc.c
12849 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12850
12851 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12852 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12853 S:      Supported
12854 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12855
12856 MICROCHIP SPI DRIVER
12857 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12858 S:      Supported
12859 F:      drivers/spi/spi-atmel.*
12860
12861 MICROCHIP SSC DRIVER
12862 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12864 S:      Supported
12865 F:      drivers/misc/atmel-ssc.c
12866 F:      include/linux/atmel-ssc.h
12867
12868 MICROCHIP USB251XB DRIVER
12869 M:      Richard Leitner <richard.leitner@skidata.com>
12870 L:      linux-usb@vger.kernel.org
12871 S:      Maintained
12872 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12873 F:      drivers/usb/misc/usb251xb.c
12874
12875 MICROCHIP USBA UDC DRIVER
12876 M:      Cristian Birsan <cristian.birsan@microchip.com>
12877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12878 S:      Supported
12879 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12880
12881 MICROCHIP WILC1000 WIFI DRIVER
12882 M:      Ajay Singh <ajay.kathat@microchip.com>
12883 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12884 L:      linux-wireless@vger.kernel.org
12885 S:      Supported
12886 F:      drivers/net/wireless/microchip/wilc1000/
12887
12888 MICROSEMI MIPS SOCS
12889 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12890 M:      UNGLinuxDriver@microchip.com
12891 L:      linux-mips@vger.kernel.org
12892 S:      Supported
12893 F:      Documentation/devicetree/bindings/mips/mscc.txt
12894 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12895 F:      arch/mips/boot/dts/mscc/
12896 F:      arch/mips/configs/generic/board-ocelot.config
12897 F:      arch/mips/generic/board-ocelot.c
12898
12899 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12900 M:      Don Brace <don.brace@microchip.com>
12901 L:      storagedev@microchip.com
12902 L:      linux-scsi@vger.kernel.org
12903 S:      Supported
12904 F:      Documentation/scsi/smartpqi.rst
12905 F:      drivers/scsi/smartpqi/Kconfig
12906 F:      drivers/scsi/smartpqi/Makefile
12907 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12908 F:      include/linux/cciss*.h
12909 F:      include/uapi/linux/cciss*.h
12910
12911 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12912 M:      Maximilian Luz <luzmaximilian@gmail.com>
12913 L:      linux-pm@vger.kernel.org
12914 L:      platform-driver-x86@vger.kernel.org
12915 S:      Maintained
12916 F:      drivers/power/supply/surface_battery.c
12917 F:      drivers/power/supply/surface_charger.c
12918
12919 MICROSOFT SURFACE DTX DRIVER
12920 M:      Maximilian Luz <luzmaximilian@gmail.com>
12921 L:      platform-driver-x86@vger.kernel.org
12922 S:      Maintained
12923 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12924 F:      drivers/platform/surface/surface_dtx.c
12925 F:      include/uapi/linux/surface_aggregator/dtx.h
12926
12927 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12928 M:      Maximilian Luz <luzmaximilian@gmail.com>
12929 L:      platform-driver-x86@vger.kernel.org
12930 S:      Maintained
12931 F:      drivers/platform/surface/surface_gpe.c
12932
12933 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12934 M:      Hans de Goede <hdegoede@redhat.com>
12935 M:      Mark Gross <markgross@kernel.org>
12936 M:      Maximilian Luz <luzmaximilian@gmail.com>
12937 L:      platform-driver-x86@vger.kernel.org
12938 S:      Maintained
12939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12940 F:      drivers/platform/surface/
12941
12942 MICROSOFT SURFACE HID TRANSPORT DRIVER
12943 M:      Maximilian Luz <luzmaximilian@gmail.com>
12944 L:      linux-input@vger.kernel.org
12945 L:      platform-driver-x86@vger.kernel.org
12946 S:      Maintained
12947 F:      drivers/hid/surface-hid/
12948
12949 MICROSOFT SURFACE HOT-PLUG DRIVER
12950 M:      Maximilian Luz <luzmaximilian@gmail.com>
12951 L:      platform-driver-x86@vger.kernel.org
12952 S:      Maintained
12953 F:      drivers/platform/surface/surface_hotplug.c
12954
12955 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12956 M:      Maximilian Luz <luzmaximilian@gmail.com>
12957 L:      platform-driver-x86@vger.kernel.org
12958 S:      Maintained
12959 F:      drivers/platform/surface/surface_platform_profile.c
12960
12961 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12962 M:      Chen Yu <yu.c.chen@intel.com>
12963 L:      platform-driver-x86@vger.kernel.org
12964 S:      Supported
12965 F:      drivers/platform/surface/surfacepro3_button.c
12966
12967 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12968 M:      Maximilian Luz <luzmaximilian@gmail.com>
12969 L:      platform-driver-x86@vger.kernel.org
12970 S:      Maintained
12971 W:      https://github.com/linux-surface/surface-aggregator-module
12972 C:      irc://irc.libera.chat/linux-surface
12973 F:      Documentation/driver-api/surface_aggregator/
12974 F:      drivers/platform/surface/aggregator/
12975 F:      drivers/platform/surface/surface_acpi_notify.c
12976 F:      drivers/platform/surface/surface_aggregator_cdev.c
12977 F:      drivers/platform/surface/surface_aggregator_registry.c
12978 F:      include/linux/surface_acpi_notify.h
12979 F:      include/linux/surface_aggregator/
12980 F:      include/uapi/linux/surface_aggregator/
12981
12982 MICROTEK X6 SCANNER
12983 M:      Oliver Neukum <oliver@neukum.org>
12984 S:      Maintained
12985 F:      drivers/usb/image/microtek.*
12986
12987 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12988 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12989 M:      Luka Perkov <luka.perkov@sartura.hr>
12990 S:      Maintained
12991 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12992 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12993 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12994 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12995 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12996 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12997
12998 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12999 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13000 L:      linux-media@vger.kernel.org
13001 S:      Maintained
13002 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13003 F:      Documentation/driver-api/media/drivers/ccs/
13004 F:      Documentation/userspace-api/media/drivers/ccs.rst
13005 F:      drivers/media/i2c/ccs-pll.c
13006 F:      drivers/media/i2c/ccs-pll.h
13007 F:      drivers/media/i2c/ccs/
13008 F:      include/uapi/linux/ccs.h
13009 F:      include/uapi/linux/smiapp.h
13010
13011 MIPS
13012 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13013 L:      linux-mips@vger.kernel.org
13014 S:      Maintained
13015 W:      http://www.linux-mips.org/
13016 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13018 F:      Documentation/devicetree/bindings/mips/
13019 F:      Documentation/mips/
13020 F:      arch/mips/
13021 F:      drivers/platform/mips/
13022
13023 MIPS BOSTON DEVELOPMENT BOARD
13024 M:      Paul Burton <paulburton@kernel.org>
13025 L:      linux-mips@vger.kernel.org
13026 S:      Maintained
13027 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13028 F:      arch/mips/boot/dts/img/boston.dts
13029 F:      arch/mips/configs/generic/board-boston.config
13030 F:      drivers/clk/imgtec/clk-boston.c
13031 F:      include/dt-bindings/clock/boston-clock.h
13032
13033 MIPS CORE DRIVERS
13034 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13035 M:      Serge Semin <fancer.lancer@gmail.com>
13036 L:      linux-mips@vger.kernel.org
13037 S:      Supported
13038 F:      drivers/bus/mips_cdmm.c
13039 F:      drivers/clocksource/mips-gic-timer.c
13040 F:      drivers/cpuidle/cpuidle-cps.c
13041 F:      drivers/irqchip/irq-mips-cpu.c
13042 F:      drivers/irqchip/irq-mips-gic.c
13043
13044 MIPS GENERIC PLATFORM
13045 M:      Paul Burton <paulburton@kernel.org>
13046 L:      linux-mips@vger.kernel.org
13047 S:      Supported
13048 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13049 F:      arch/mips/generic/
13050 F:      arch/mips/tools/generic-board-config.sh
13051
13052 MIPS RINT INSTRUCTION EMULATION
13053 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13054 L:      linux-mips@vger.kernel.org
13055 S:      Supported
13056 F:      arch/mips/math-emu/dp_rint.c
13057 F:      arch/mips/math-emu/sp_rint.c
13058
13059 MIPS/LOONGSON1 ARCHITECTURE
13060 M:      Keguang Zhang <keguang.zhang@gmail.com>
13061 L:      linux-mips@vger.kernel.org
13062 S:      Maintained
13063 F:      arch/mips/include/asm/mach-loongson32/
13064 F:      arch/mips/loongson32/
13065 F:      drivers/*/*/*loongson1*
13066 F:      drivers/*/*loongson1*
13067
13068 MIPS/LOONGSON2EF ARCHITECTURE
13069 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13070 L:      linux-mips@vger.kernel.org
13071 S:      Maintained
13072 F:      arch/mips/include/asm/mach-loongson2ef/
13073 F:      arch/mips/loongson2ef/
13074 F:      drivers/cpufreq/loongson2_cpufreq.c
13075
13076 MIPS/LOONGSON64 ARCHITECTURE
13077 M:      Huacai Chen <chenhuacai@kernel.org>
13078 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13079 L:      linux-mips@vger.kernel.org
13080 S:      Maintained
13081 F:      arch/mips/include/asm/mach-loongson64/
13082 F:      arch/mips/loongson64/
13083 F:      drivers/irqchip/irq-loongson*
13084 F:      drivers/platform/mips/cpu_hwmon.c
13085
13086 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13087 M:      Hans Verkuil <hverkuil@xs4all.nl>
13088 L:      linux-media@vger.kernel.org
13089 S:      Odd Fixes
13090 W:      https://linuxtv.org
13091 T:      git git://linuxtv.org/media_tree.git
13092 F:      drivers/media/radio/radio-miropcm20*
13093
13094 MMP SUPPORT
13095 R:      Lubomir Rintel <lkundrak@v3.sk>
13096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13097 S:      Odd Fixes
13098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13099 F:      arch/arm/boot/dts/mmp*
13100 F:      arch/arm/mach-mmp/
13101 F:      include/linux/soc/mmp/
13102
13103 MMP USB PHY DRIVERS
13104 R:      Lubomir Rintel <lkundrak@v3.sk>
13105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13106 S:      Maintained
13107 F:      drivers/phy/marvell/phy-mmp3-usb.c
13108 F:      drivers/phy/marvell/phy-pxa-usb.c
13109
13110 MMU GATHER AND TLB INVALIDATION
13111 M:      Will Deacon <will@kernel.org>
13112 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13113 M:      Andrew Morton <akpm@linux-foundation.org>
13114 M:      Nick Piggin <npiggin@gmail.com>
13115 M:      Peter Zijlstra <peterz@infradead.org>
13116 L:      linux-arch@vger.kernel.org
13117 L:      linux-mm@kvack.org
13118 S:      Maintained
13119 F:      arch/*/include/asm/tlb.h
13120 F:      include/asm-generic/tlb.h
13121 F:      mm/mmu_gather.c
13122
13123 MN88472 MEDIA DRIVER
13124 M:      Antti Palosaari <crope@iki.fi>
13125 L:      linux-media@vger.kernel.org
13126 S:      Maintained
13127 W:      https://linuxtv.org
13128 W:      http://palosaari.fi/linux/
13129 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13130 F:      drivers/media/dvb-frontends/mn88472*
13131
13132 MN88473 MEDIA DRIVER
13133 M:      Antti Palosaari <crope@iki.fi>
13134 L:      linux-media@vger.kernel.org
13135 S:      Maintained
13136 W:      https://linuxtv.org
13137 W:      http://palosaari.fi/linux/
13138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13139 F:      drivers/media/dvb-frontends/mn88473*
13140
13141 MODULE SUPPORT
13142 M:      Luis Chamberlain <mcgrof@kernel.org>
13143 L:      linux-modules@vger.kernel.org
13144 L:      linux-kernel@vger.kernel.org
13145 S:      Maintained
13146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13147 F:      include/linux/module.h
13148 F:      kernel/module.c
13149
13150 MONOLITHIC POWER SYSTEM PMIC DRIVER
13151 M:      Saravanan Sekar <sravanhome@gmail.com>
13152 S:      Maintained
13153 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13154 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13155 F:      drivers/iio/adc/mp2629_adc.c
13156 F:      drivers/mfd/mp2629.c
13157 F:      drivers/power/supply/mp2629_charger.c
13158 F:      drivers/regulator/mp5416.c
13159 F:      drivers/regulator/mpq7920.c
13160 F:      drivers/regulator/mpq7920.h
13161 F:      include/linux/mfd/mp2629.h
13162
13163 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13164 S:      Orphan
13165 W:      http://popies.net/meye/
13166 F:      Documentation/userspace-api/media/drivers/meye*
13167 F:      drivers/media/pci/meye/
13168 F:      include/uapi/linux/meye.h
13169
13170 MOTORCOMM PHY DRIVER
13171 M:      Peter Geis <pgwipeout@gmail.com>
13172 L:      netdev@vger.kernel.org
13173 S:      Maintained
13174 F:      drivers/net/phy/motorcomm.c
13175
13176 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13177 M:      Jiri Slaby <jirislaby@kernel.org>
13178 S:      Maintained
13179 F:      Documentation/driver-api/serial/moxa-smartio.rst
13180 F:      drivers/tty/mxser.*
13181
13182 MR800 AVERMEDIA USB FM RADIO DRIVER
13183 M:      Alexey Klimov <klimov.linux@gmail.com>
13184 L:      linux-media@vger.kernel.org
13185 S:      Maintained
13186 T:      git git://linuxtv.org/media_tree.git
13187 F:      drivers/media/radio/radio-mr800.c
13188
13189 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13190 M:      Alan Ott <alan@signal11.us>
13191 L:      linux-wpan@vger.kernel.org
13192 S:      Maintained
13193 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13194 F:      drivers/net/ieee802154/mrf24j40.c
13195
13196 MSI LAPTOP SUPPORT
13197 M:      "Lee, Chun-Yi" <jlee@suse.com>
13198 L:      platform-driver-x86@vger.kernel.org
13199 S:      Maintained
13200 F:      drivers/platform/x86/msi-laptop.c
13201
13202 MSI WMI SUPPORT
13203 L:      platform-driver-x86@vger.kernel.org
13204 S:      Orphan
13205 F:      drivers/platform/x86/msi-wmi.c
13206
13207 MSI001 MEDIA DRIVER
13208 M:      Antti Palosaari <crope@iki.fi>
13209 L:      linux-media@vger.kernel.org
13210 S:      Maintained
13211 W:      https://linuxtv.org
13212 W:      http://palosaari.fi/linux/
13213 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13214 T:      git git://linuxtv.org/anttip/media_tree.git
13215 F:      drivers/media/tuners/msi001*
13216
13217 MSI2500 MEDIA DRIVER
13218 M:      Antti Palosaari <crope@iki.fi>
13219 L:      linux-media@vger.kernel.org
13220 S:      Maintained
13221 W:      https://linuxtv.org
13222 W:      http://palosaari.fi/linux/
13223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13224 T:      git git://linuxtv.org/anttip/media_tree.git
13225 F:      drivers/media/usb/msi2500/
13226
13227 MSTAR INTERRUPT CONTROLLER DRIVER
13228 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13229 M:      Daniel Palmer <daniel@thingy.jp>
13230 S:      Maintained
13231 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13232 F:      drivers/irqchip/irq-mst-intc.c
13233
13234 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13235 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13236 L:      linux-mtd@lists.infradead.org
13237 S:      Maintained
13238 F:      drivers/mtd/devices/docg3*
13239
13240 MT9M032 APTINA SENSOR DRIVER
13241 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13242 L:      linux-media@vger.kernel.org
13243 S:      Maintained
13244 T:      git git://linuxtv.org/media_tree.git
13245 F:      drivers/media/i2c/mt9m032.c
13246 F:      include/media/i2c/mt9m032.h
13247
13248 MT9P031 APTINA CAMERA SENSOR
13249 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13250 L:      linux-media@vger.kernel.org
13251 S:      Maintained
13252 T:      git git://linuxtv.org/media_tree.git
13253 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13254 F:      drivers/media/i2c/mt9p031.c
13255 F:      include/media/i2c/mt9p031.h
13256
13257 MT9T001 APTINA CAMERA SENSOR
13258 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13259 L:      linux-media@vger.kernel.org
13260 S:      Maintained
13261 T:      git git://linuxtv.org/media_tree.git
13262 F:      drivers/media/i2c/mt9t001.c
13263 F:      include/media/i2c/mt9t001.h
13264
13265 MT9T112 APTINA CAMERA SENSOR
13266 M:      Jacopo Mondi <jacopo@jmondi.org>
13267 L:      linux-media@vger.kernel.org
13268 S:      Odd Fixes
13269 T:      git git://linuxtv.org/media_tree.git
13270 F:      drivers/media/i2c/mt9t112.c
13271 F:      include/media/i2c/mt9t112.h
13272
13273 MT9V032 APTINA CAMERA SENSOR
13274 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13275 L:      linux-media@vger.kernel.org
13276 S:      Maintained
13277 T:      git git://linuxtv.org/media_tree.git
13278 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13279 F:      drivers/media/i2c/mt9v032.c
13280 F:      include/media/i2c/mt9v032.h
13281
13282 MT9V111 APTINA CAMERA SENSOR
13283 M:      Jacopo Mondi <jacopo@jmondi.org>
13284 L:      linux-media@vger.kernel.org
13285 S:      Maintained
13286 T:      git git://linuxtv.org/media_tree.git
13287 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13288 F:      drivers/media/i2c/mt9v111.c
13289
13290 MULTIFUNCTION DEVICES (MFD)
13291 M:      Lee Jones <lee.jones@linaro.org>
13292 S:      Supported
13293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13294 F:      Documentation/devicetree/bindings/mfd/
13295 F:      drivers/mfd/
13296 F:      include/dt-bindings/mfd/
13297 F:      include/linux/mfd/
13298
13299 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13300 S:      Orphan
13301 F:      drivers/mmc/host/mmc_spi.c
13302 F:      include/linux/spi/mmc_spi.h
13303
13304 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13305 M:      Ulf Hansson <ulf.hansson@linaro.org>
13306 L:      linux-mmc@vger.kernel.org
13307 S:      Maintained
13308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13309 F:      Documentation/devicetree/bindings/mmc/
13310 F:      drivers/mmc/
13311 F:      include/linux/mmc/
13312 F:      include/uapi/linux/mmc/
13313
13314 MULTIPLEXER SUBSYSTEM
13315 M:      Peter Rosin <peda@axentia.se>
13316 S:      Maintained
13317 F:      Documentation/ABI/testing/sysfs-class-mux*
13318 F:      Documentation/devicetree/bindings/mux/
13319 F:      drivers/mux/
13320 F:      include/dt-bindings/mux/
13321 F:      include/linux/mux/
13322
13323 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13324 M:      Bin Liu <b-liu@ti.com>
13325 L:      linux-usb@vger.kernel.org
13326 S:      Maintained
13327 F:      drivers/usb/musb/
13328
13329 MXL301RF MEDIA DRIVER
13330 M:      Akihiro Tsukada <tskd08@gmail.com>
13331 L:      linux-media@vger.kernel.org
13332 S:      Odd Fixes
13333 F:      drivers/media/tuners/mxl301rf*
13334
13335 MXL5007T MEDIA DRIVER
13336 M:      Michael Krufky <mkrufky@linuxtv.org>
13337 L:      linux-media@vger.kernel.org
13338 S:      Maintained
13339 W:      https://linuxtv.org
13340 W:      http://github.com/mkrufky
13341 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13342 T:      git git://linuxtv.org/mkrufky/tuners.git
13343 F:      drivers/media/tuners/mxl5007t.*
13344
13345 MXSFB DRM DRIVER
13346 M:      Marek Vasut <marex@denx.de>
13347 M:      Stefan Agner <stefan@agner.ch>
13348 L:      dri-devel@lists.freedesktop.org
13349 S:      Supported
13350 T:      git git://anongit.freedesktop.org/drm/drm-misc
13351 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13352 F:      drivers/gpu/drm/mxsfb/
13353
13354 MYLEX DAC960 PCI RAID Controller
13355 M:      Hannes Reinecke <hare@kernel.org>
13356 L:      linux-scsi@vger.kernel.org
13357 S:      Supported
13358 F:      drivers/scsi/myrb.*
13359 F:      drivers/scsi/myrs.*
13360
13361 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13362 M:      Chris Lee <christopher.lee@cspi.com>
13363 L:      netdev@vger.kernel.org
13364 S:      Supported
13365 W:      https://www.cspi.com/ethernet-products/support/downloads/
13366 F:      drivers/net/ethernet/myricom/myri10ge/
13367
13368 NAND FLASH SUBSYSTEM
13369 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13370 R:      Richard Weinberger <richard@nod.at>
13371 L:      linux-mtd@lists.infradead.org
13372 S:      Maintained
13373 W:      http://www.linux-mtd.infradead.org/
13374 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13375 C:      irc://irc.oftc.net/mtd
13376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13377 F:      drivers/mtd/nand/
13378 F:      include/linux/mtd/*nand*.h
13379
13380 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13381 M:      Daniel Mack <zonque@gmail.com>
13382 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13383 S:      Maintained
13384 W:      http://www.native-instruments.com
13385 F:      sound/usb/caiaq/
13386
13387 NATSEMI ETHERNET DRIVER (DP8381x)
13388 S:      Orphan
13389 F:      drivers/net/ethernet/natsemi/natsemi.c
13390
13391 NCR 5380 SCSI DRIVERS
13392 M:      Finn Thain <fthain@linux-m68k.org>
13393 M:      Michael Schmitz <schmitzmic@gmail.com>
13394 L:      linux-scsi@vger.kernel.org
13395 S:      Maintained
13396 F:      Documentation/scsi/g_NCR5380.rst
13397 F:      drivers/scsi/NCR5380.*
13398 F:      drivers/scsi/arm/cumana_1.c
13399 F:      drivers/scsi/arm/oak.c
13400 F:      drivers/scsi/atari_scsi.*
13401 F:      drivers/scsi/dmx3191d.c
13402 F:      drivers/scsi/g_NCR5380.*
13403 F:      drivers/scsi/mac_scsi.*
13404 F:      drivers/scsi/sun3_scsi.*
13405 F:      drivers/scsi/sun3_scsi_vme.c
13406
13407 NCSI LIBRARY
13408 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13409 S:      Maintained
13410 F:      net/ncsi/
13411
13412 NCT6775 HARDWARE MONITOR DRIVER
13413 M:      Guenter Roeck <linux@roeck-us.net>
13414 L:      linux-hwmon@vger.kernel.org
13415 S:      Maintained
13416 F:      Documentation/hwmon/nct6775.rst
13417 F:      drivers/hwmon/nct6775.c
13418
13419 NETDEVSIM
13420 M:      Jakub Kicinski <kuba@kernel.org>
13421 S:      Maintained
13422 F:      drivers/net/netdevsim/*
13423
13424 NETEM NETWORK EMULATOR
13425 M:      Stephen Hemminger <stephen@networkplumber.org>
13426 L:      netdev@vger.kernel.org
13427 S:      Maintained
13428 F:      net/sched/sch_netem.c
13429
13430 NETERION 10GbE DRIVERS (s2io/vxge)
13431 M:      Jon Mason <jdmason@kudzu.us>
13432 L:      netdev@vger.kernel.org
13433 S:      Supported
13434 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13435 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13436 F:      drivers/net/ethernet/neterion/
13437
13438 NETFILTER
13439 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13440 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13441 M:      Florian Westphal <fw@strlen.de>
13442 L:      netfilter-devel@vger.kernel.org
13443 L:      coreteam@netfilter.org
13444 S:      Maintained
13445 W:      http://www.netfilter.org/
13446 W:      http://www.iptables.org/
13447 W:      http://www.nftables.org/
13448 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13449 C:      irc://irc.libera.chat/netfilter
13450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13452 F:      include/linux/netfilter*
13453 F:      include/linux/netfilter/
13454 F:      include/net/netfilter/
13455 F:      include/uapi/linux/netfilter*
13456 F:      include/uapi/linux/netfilter/
13457 F:      net/*/netfilter.c
13458 F:      net/*/netfilter/
13459 F:      net/bridge/br_netfilter*.c
13460 F:      net/netfilter/
13461
13462 NETROM NETWORK LAYER
13463 M:      Ralf Baechle <ralf@linux-mips.org>
13464 L:      linux-hams@vger.kernel.org
13465 S:      Maintained
13466 W:      http://www.linux-ax25.org/
13467 F:      include/net/netrom.h
13468 F:      include/uapi/linux/netrom.h
13469 F:      net/netrom/
13470
13471 NETRONIX EMBEDDED CONTROLLER
13472 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13473 S:      Maintained
13474 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13475 F:      drivers/mfd/ntxec.c
13476 F:      drivers/pwm/pwm-ntxec.c
13477 F:      drivers/rtc/rtc-ntxec.c
13478 F:      include/linux/mfd/ntxec.h
13479
13480 NETRONOME ETHERNET DRIVERS
13481 M:      Simon Horman <simon.horman@corigine.com>
13482 R:      Jakub Kicinski <kuba@kernel.org>
13483 L:      oss-drivers@corigine.com
13484 S:      Maintained
13485 F:      drivers/net/ethernet/netronome/
13486
13487 NETWORK BLOCK DEVICE (NBD)
13488 M:      Josef Bacik <josef@toxicpanda.com>
13489 L:      linux-block@vger.kernel.org
13490 L:      nbd@other.debian.org
13491 S:      Maintained
13492 F:      Documentation/admin-guide/blockdev/nbd.rst
13493 F:      drivers/block/nbd.c
13494 F:      include/trace/events/nbd.h
13495 F:      include/uapi/linux/nbd.h
13496
13497 NETWORK DROP MONITOR
13498 M:      Neil Horman <nhorman@tuxdriver.com>
13499 L:      netdev@vger.kernel.org
13500 S:      Maintained
13501 W:      https://fedorahosted.org/dropwatch/
13502 F:      include/uapi/linux/net_dropmon.h
13503 F:      net/core/drop_monitor.c
13504
13505 NETWORKING DRIVERS
13506 M:      "David S. Miller" <davem@davemloft.net>
13507 M:      Jakub Kicinski <kuba@kernel.org>
13508 M:      Paolo Abeni <pabeni@redhat.com>
13509 L:      netdev@vger.kernel.org
13510 S:      Maintained
13511 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13514 F:      Documentation/devicetree/bindings/net/
13515 F:      drivers/connector/
13516 F:      drivers/net/
13517 F:      include/linux/etherdevice.h
13518 F:      include/linux/fcdevice.h
13519 F:      include/linux/fddidevice.h
13520 F:      include/linux/hippidevice.h
13521 F:      include/linux/if_*
13522 F:      include/linux/inetdevice.h
13523 F:      include/linux/netdevice.h
13524 F:      include/uapi/linux/if_*
13525 F:      include/uapi/linux/netdevice.h
13526
13527 NETWORKING DRIVERS (WIRELESS)
13528 M:      Kalle Valo <kvalo@kernel.org>
13529 L:      linux-wireless@vger.kernel.org
13530 S:      Maintained
13531 W:      https://wireless.wiki.kernel.org/
13532 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13535 F:      Documentation/devicetree/bindings/net/wireless/
13536 F:      drivers/net/wireless/
13537
13538 NETWORKING [DSA]
13539 M:      Andrew Lunn <andrew@lunn.ch>
13540 M:      Vivien Didelot <vivien.didelot@gmail.com>
13541 M:      Florian Fainelli <f.fainelli@gmail.com>
13542 M:      Vladimir Oltean <olteanv@gmail.com>
13543 S:      Maintained
13544 F:      Documentation/devicetree/bindings/net/dsa/
13545 F:      drivers/net/dsa/
13546 F:      include/linux/dsa/
13547 F:      include/linux/platform_data/dsa.h
13548 F:      include/net/dsa.h
13549 F:      net/dsa/
13550 F:      tools/testing/selftests/drivers/net/dsa/
13551
13552 NETWORKING [GENERAL]
13553 M:      "David S. Miller" <davem@davemloft.net>
13554 M:      Jakub Kicinski <kuba@kernel.org>
13555 M:      Paolo Abeni <pabeni@redhat.com>
13556 L:      netdev@vger.kernel.org
13557 S:      Maintained
13558 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13559 B:      mailto:netdev@vger.kernel.org
13560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13562 F:      Documentation/networking/
13563 F:      include/linux/in.h
13564 F:      include/linux/net.h
13565 F:      include/linux/netdevice.h
13566 F:      include/net/
13567 F:      include/uapi/linux/in.h
13568 F:      include/uapi/linux/net.h
13569 F:      include/uapi/linux/net_namespace.h
13570 F:      include/uapi/linux/netdevice.h
13571 F:      lib/net_utils.c
13572 F:      lib/random32.c
13573 F:      net/
13574 F:      tools/testing/selftests/net/
13575
13576 NETWORKING [IPSEC]
13577 M:      Steffen Klassert <steffen.klassert@secunet.com>
13578 M:      Herbert Xu <herbert@gondor.apana.org.au>
13579 M:      "David S. Miller" <davem@davemloft.net>
13580 L:      netdev@vger.kernel.org
13581 S:      Maintained
13582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13584 F:      include/net/xfrm.h
13585 F:      include/uapi/linux/xfrm.h
13586 F:      net/ipv4/ah4.c
13587 F:      net/ipv4/esp4*
13588 F:      net/ipv4/ip_vti.c
13589 F:      net/ipv4/ipcomp.c
13590 F:      net/ipv4/xfrm*
13591 F:      net/ipv6/ah6.c
13592 F:      net/ipv6/esp6*
13593 F:      net/ipv6/ip6_vti.c
13594 F:      net/ipv6/ipcomp6.c
13595 F:      net/ipv6/xfrm*
13596 F:      net/key/
13597 F:      net/xfrm/
13598 F:      tools/testing/selftests/net/ipsec.c
13599
13600 NETWORKING [IPv4/IPv6]
13601 M:      "David S. Miller" <davem@davemloft.net>
13602 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13603 M:      David Ahern <dsahern@kernel.org>
13604 L:      netdev@vger.kernel.org
13605 S:      Maintained
13606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13607 F:      arch/x86/net/*
13608 F:      include/linux/ip.h
13609 F:      include/linux/ipv6*
13610 F:      include/net/fib*
13611 F:      include/net/ip*
13612 F:      include/net/route.h
13613 F:      net/ipv4/
13614 F:      net/ipv6/
13615
13616 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13617 M:      Paul Moore <paul@paul-moore.com>
13618 L:      netdev@vger.kernel.org
13619 L:      linux-security-module@vger.kernel.org
13620 S:      Maintained
13621 W:      https://github.com/netlabel
13622 F:      Documentation/netlabel/
13623 F:      include/net/calipso.h
13624 F:      include/net/cipso_ipv4.h
13625 F:      include/net/netlabel.h
13626 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13627 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13628 F:      net/ipv4/cipso_ipv4.c
13629 F:      net/ipv6/calipso.c
13630 F:      net/netfilter/xt_CONNSECMARK.c
13631 F:      net/netfilter/xt_SECMARK.c
13632 F:      net/netlabel/
13633
13634 NETWORKING [MPTCP]
13635 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13636 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13637 L:      netdev@vger.kernel.org
13638 L:      mptcp@lists.linux.dev
13639 S:      Maintained
13640 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13641 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13642 F:      Documentation/networking/mptcp-sysctl.rst
13643 F:      include/net/mptcp.h
13644 F:      include/trace/events/mptcp.h
13645 F:      include/uapi/linux/mptcp.h
13646 F:      net/mptcp/
13647 F:      tools/testing/selftests/net/mptcp/
13648
13649 NETWORKING [TCP]
13650 M:      Eric Dumazet <edumazet@google.com>
13651 L:      netdev@vger.kernel.org
13652 S:      Maintained
13653 F:      include/linux/tcp.h
13654 F:      include/net/tcp.h
13655 F:      include/trace/events/tcp.h
13656 F:      include/uapi/linux/tcp.h
13657 F:      net/ipv4/syncookies.c
13658 F:      net/ipv4/tcp*.c
13659 F:      net/ipv6/syncookies.c
13660 F:      net/ipv6/tcp*.c
13661
13662 NETWORKING [TLS]
13663 M:      Boris Pismenny <borisp@nvidia.com>
13664 M:      John Fastabend <john.fastabend@gmail.com>
13665 M:      Daniel Borkmann <daniel@iogearbox.net>
13666 M:      Jakub Kicinski <kuba@kernel.org>
13667 L:      netdev@vger.kernel.org
13668 S:      Maintained
13669 F:      include/net/tls.h
13670 F:      include/uapi/linux/tls.h
13671 F:      net/tls/*
13672
13673 NETXEN (1/10) GbE SUPPORT
13674 M:      Manish Chopra <manishc@marvell.com>
13675 M:      Rahul Verma <rahulv@marvell.com>
13676 M:      GR-Linux-NIC-Dev@marvell.com
13677 L:      netdev@vger.kernel.org
13678 S:      Supported
13679 F:      drivers/net/ethernet/qlogic/netxen/
13680
13681 NET_FAILOVER MODULE
13682 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13683 L:      netdev@vger.kernel.org
13684 S:      Supported
13685 F:      Documentation/networking/net_failover.rst
13686 F:      drivers/net/net_failover.c
13687 F:      include/net/net_failover.h
13688
13689 NEXTHOP
13690 M:      David Ahern <dsahern@kernel.org>
13691 L:      netdev@vger.kernel.org
13692 S:      Maintained
13693 F:      include/net/netns/nexthop.h
13694 F:      include/net/nexthop.h
13695 F:      include/uapi/linux/nexthop.h
13696 F:      net/ipv4/nexthop.c
13697
13698 NFC SUBSYSTEM
13699 M:      Krzysztof Kozlowski <krzk@kernel.org>
13700 L:      linux-nfc@lists.01.org (subscribers-only)
13701 L:      netdev@vger.kernel.org
13702 S:      Maintained
13703 F:      Documentation/devicetree/bindings/net/nfc/
13704 F:      drivers/nfc/
13705 F:      include/linux/platform_data/nfcmrvl.h
13706 F:      include/net/nfc/
13707 F:      include/uapi/linux/nfc.h
13708 F:      net/nfc/
13709
13710 NFC VIRTUAL NCI DEVICE DRIVER
13711 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13712 L:      netdev@vger.kernel.org
13713 L:      linux-nfc@lists.01.org (subscribers-only)
13714 S:      Supported
13715 F:      drivers/nfc/virtual_ncidev.c
13716 F:      tools/testing/selftests/nci/
13717
13718 NFS, SUNRPC, AND LOCKD CLIENTS
13719 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13720 M:      Anna Schumaker <anna@kernel.org>
13721 L:      linux-nfs@vger.kernel.org
13722 S:      Maintained
13723 W:      http://client.linux-nfs.org
13724 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13725 F:      fs/lockd/
13726 F:      fs/nfs/
13727 F:      fs/nfs_common/
13728 F:      include/linux/lockd/
13729 F:      include/linux/nfs*
13730 F:      include/linux/sunrpc/
13731 F:      include/uapi/linux/nfs*
13732 F:      include/uapi/linux/sunrpc/
13733 F:      net/sunrpc/
13734 F:      Documentation/filesystems/nfs/
13735
13736 NILFS2 FILESYSTEM
13737 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13738 L:      linux-nilfs@vger.kernel.org
13739 S:      Supported
13740 W:      https://nilfs.sourceforge.io/
13741 W:      https://nilfs.osdn.jp/
13742 T:      git git://github.com/konis/nilfs2.git
13743 F:      Documentation/filesystems/nilfs2.rst
13744 F:      fs/nilfs2/
13745 F:      include/trace/events/nilfs2.h
13746 F:      include/uapi/linux/nilfs2_api.h
13747 F:      include/uapi/linux/nilfs2_ondisk.h
13748
13749 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13750 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13751 S:      Maintained
13752 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13753 F:      Documentation/scsi/NinjaSCSI.rst
13754 F:      drivers/scsi/pcmcia/nsp_*
13755
13756 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13757 M:      GOTO Masanori <gotom@debian.or.jp>
13758 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13759 S:      Maintained
13760 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13761 F:      Documentation/scsi/NinjaSCSI.rst
13762 F:      drivers/scsi/nsp32*
13763
13764 NINTENDO HID DRIVER
13765 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13766 L:      linux-input@vger.kernel.org
13767 S:      Maintained
13768 F:      drivers/hid/hid-nintendo*
13769
13770 NIOS2 ARCHITECTURE
13771 M:      Dinh Nguyen <dinguyen@kernel.org>
13772 S:      Maintained
13773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13774 F:      arch/nios2/
13775
13776 NITRO ENCLAVES (NE)
13777 M:      Andra Paraschiv <andraprs@amazon.com>
13778 M:      Alexandru Vasile <lexnv@amazon.com>
13779 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13780 L:      linux-kernel@vger.kernel.org
13781 S:      Supported
13782 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13783 F:      Documentation/virt/ne_overview.rst
13784 F:      drivers/virt/nitro_enclaves/
13785 F:      include/linux/nitro_enclaves.h
13786 F:      include/uapi/linux/nitro_enclaves.h
13787 F:      samples/nitro_enclaves/
13788
13789 NOHZ, DYNTICKS SUPPORT
13790 M:      Frederic Weisbecker <fweisbec@gmail.com>
13791 M:      Thomas Gleixner <tglx@linutronix.de>
13792 M:      Ingo Molnar <mingo@kernel.org>
13793 L:      linux-kernel@vger.kernel.org
13794 S:      Maintained
13795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13796 F:      include/linux/sched/nohz.h
13797 F:      include/linux/tick.h
13798 F:      kernel/time/tick*.*
13799
13800 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13801 M:      Pavel Machek <pavel@ucw.cz>
13802 M:      Sakari Ailus <sakari.ailus@iki.fi>
13803 L:      linux-media@vger.kernel.org
13804 S:      Maintained
13805 F:      drivers/media/i2c/ad5820.c
13806 F:      drivers/media/i2c/et8ek8
13807
13808 NOKIA N900 POWER SUPPLY DRIVERS
13809 R:      Pali Rohár <pali@kernel.org>
13810 F:      drivers/power/supply/bq2415x_charger.c
13811 F:      drivers/power/supply/bq27xxx_battery.c
13812 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13813 F:      drivers/power/supply/isp1704_charger.c
13814 F:      drivers/power/supply/rx51_battery.c
13815 F:      include/linux/power/bq2415x_charger.h
13816 F:      include/linux/power/bq27xxx_battery.h
13817
13818 NOLIBC HEADER FILE
13819 M:      Willy Tarreau <w@1wt.eu>
13820 S:      Maintained
13821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13822 F:      tools/include/nolibc/
13823
13824 NSDEPS
13825 M:      Matthias Maennich <maennich@google.com>
13826 S:      Maintained
13827 F:      Documentation/core-api/symbol-namespaces.rst
13828 F:      scripts/nsdeps
13829
13830 NTB AMD DRIVER
13831 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13832 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13833 L:      ntb@lists.linux.dev
13834 S:      Supported
13835 F:      drivers/ntb/hw/amd/
13836
13837 NTB DRIVER CORE
13838 M:      Jon Mason <jdmason@kudzu.us>
13839 M:      Dave Jiang <dave.jiang@intel.com>
13840 M:      Allen Hubbe <allenbh@gmail.com>
13841 L:      ntb@lists.linux.dev
13842 S:      Supported
13843 W:      https://github.com/jonmason/ntb/wiki
13844 T:      git git://github.com/jonmason/ntb.git
13845 F:      drivers/net/ntb_netdev.c
13846 F:      drivers/ntb/
13847 F:      include/linux/ntb.h
13848 F:      include/linux/ntb_transport.h
13849 F:      tools/testing/selftests/ntb/
13850
13851 NTB IDT DRIVER
13852 M:      Serge Semin <fancer.lancer@gmail.com>
13853 L:      ntb@lists.linux.dev
13854 S:      Supported
13855 F:      drivers/ntb/hw/idt/
13856
13857 NTB INTEL DRIVER
13858 M:      Dave Jiang <dave.jiang@intel.com>
13859 L:      ntb@lists.linux.dev
13860 S:      Supported
13861 W:      https://github.com/davejiang/linux/wiki
13862 T:      git https://github.com/davejiang/linux.git
13863 F:      drivers/ntb/hw/intel/
13864
13865 NTFS FILESYSTEM
13866 M:      Anton Altaparmakov <anton@tuxera.com>
13867 L:      linux-ntfs-dev@lists.sourceforge.net
13868 S:      Supported
13869 W:      http://www.tuxera.com/
13870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13871 F:      Documentation/filesystems/ntfs.rst
13872 F:      fs/ntfs/
13873
13874 NTFS3 FILESYSTEM
13875 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13876 L:      ntfs3@lists.linux.dev
13877 S:      Supported
13878 W:      http://www.paragon-software.com/
13879 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13880 F:      Documentation/filesystems/ntfs3.rst
13881 F:      fs/ntfs3/
13882
13883 NUBUS SUBSYSTEM
13884 M:      Finn Thain <fthain@linux-m68k.org>
13885 L:      linux-m68k@lists.linux-m68k.org
13886 S:      Maintained
13887 F:      arch/*/include/asm/nubus.h
13888 F:      drivers/nubus/
13889 F:      include/linux/nubus.h
13890 F:      include/uapi/linux/nubus.h
13891
13892 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13893 M:      Antonino Daplas <adaplas@gmail.com>
13894 L:      linux-fbdev@vger.kernel.org
13895 S:      Maintained
13896 F:      drivers/video/fbdev/nvidia/
13897 F:      drivers/video/fbdev/riva/
13898
13899 NVIDIA WMI EC BACKLIGHT DRIVER
13900 M:      Daniel Dadap <ddadap@nvidia.com>
13901 L:      platform-driver-x86@vger.kernel.org
13902 S:      Supported
13903 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13904
13905 NVM EXPRESS DRIVER
13906 M:      Keith Busch <kbusch@kernel.org>
13907 M:      Jens Axboe <axboe@fb.com>
13908 M:      Christoph Hellwig <hch@lst.de>
13909 M:      Sagi Grimberg <sagi@grimberg.me>
13910 L:      linux-nvme@lists.infradead.org
13911 S:      Supported
13912 W:      http://git.infradead.org/nvme.git
13913 T:      git://git.infradead.org/nvme.git
13914 F:      drivers/nvme/host/
13915 F:      include/linux/nvme.h
13916 F:      include/uapi/linux/nvme_ioctl.h
13917
13918 NVM EXPRESS FC TRANSPORT DRIVERS
13919 M:      James Smart <james.smart@broadcom.com>
13920 L:      linux-nvme@lists.infradead.org
13921 S:      Supported
13922 F:      drivers/nvme/host/fc.c
13923 F:      drivers/nvme/target/fc.c
13924 F:      drivers/nvme/target/fcloop.c
13925 F:      include/linux/nvme-fc-driver.h
13926 F:      include/linux/nvme-fc.h
13927
13928 NVM EXPRESS TARGET DRIVER
13929 M:      Christoph Hellwig <hch@lst.de>
13930 M:      Sagi Grimberg <sagi@grimberg.me>
13931 M:      Chaitanya Kulkarni <kch@nvidia.com>
13932 L:      linux-nvme@lists.infradead.org
13933 S:      Supported
13934 W:      http://git.infradead.org/nvme.git
13935 T:      git://git.infradead.org/nvme.git
13936 F:      drivers/nvme/target/
13937
13938 NVMEM FRAMEWORK
13939 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13940 S:      Maintained
13941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13942 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13943 F:      Documentation/devicetree/bindings/nvmem/
13944 F:      drivers/nvmem/
13945 F:      include/linux/nvmem-consumer.h
13946 F:      include/linux/nvmem-provider.h
13947
13948 NXP C45 TJA11XX PHY DRIVER
13949 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13950 L:      netdev@vger.kernel.org
13951 S:      Maintained
13952 F:      drivers/net/phy/nxp-c45-tja11xx.c
13953
13954 NXP FSPI DRIVER
13955 M:      Ashish Kumar <ashish.kumar@nxp.com>
13956 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13957 L:      linux-spi@vger.kernel.org
13958 S:      Maintained
13959 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13960 F:      drivers/spi/spi-nxp-fspi.c
13961
13962 NXP FXAS21002C DRIVER
13963 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13964 L:      linux-iio@vger.kernel.org
13965 S:      Maintained
13966 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13967 F:      drivers/iio/gyro/fxas21002c.h
13968 F:      drivers/iio/gyro/fxas21002c_core.c
13969 F:      drivers/iio/gyro/fxas21002c_i2c.c
13970 F:      drivers/iio/gyro/fxas21002c_spi.c
13971
13972 NXP i.MX CLOCK DRIVERS
13973 M:      Abel Vesa <abel.vesa@nxp.com>
13974 L:      linux-clk@vger.kernel.org
13975 L:      linux-imx@nxp.com
13976 S:      Maintained
13977 F:      drivers/clk/imx/
13978
13979 NXP i.MX 8MQ DCSS DRIVER
13980 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13981 R:      Lucas Stach <l.stach@pengutronix.de>
13982 L:      dri-devel@lists.freedesktop.org
13983 S:      Maintained
13984 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13985 F:      drivers/gpu/drm/imx/dcss/
13986
13987 NXP i.MX 8QXP ADC DRIVER
13988 M:      Cai Huoqing <cai.huoqing@linux.dev>
13989 M:      Haibo Chen <haibo.chen@nxp.com>
13990 L:      linux-imx@nxp.com
13991 L:      linux-iio@vger.kernel.org
13992 S:      Maintained
13993 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
13994 F:      drivers/iio/adc/imx8qxp-adc.c
13995
13996 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
13997 M:      Haibo Chen <haibo.chen@nxp.com>
13998 L:      linux-iio@vger.kernel.org
13999 L:      linux-imx@nxp.com
14000 S:      Maintained
14001 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14002 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14003 F:      drivers/iio/adc/imx7d_adc.c
14004 F:      drivers/iio/adc/vf610_adc.c
14005
14006 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14007 M:      Jagan Teki <jagan@amarulasolutions.com>
14008 S:      Maintained
14009 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14010 F:      drivers/regulator/pf8x00-regulator.c
14011
14012 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14013 M:      Krzysztof Kozlowski <krzk@kernel.org>
14014 L:      linux-kernel@vger.kernel.org
14015 S:      Maintained
14016 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14017 F:      drivers/extcon/extcon-ptn5150.c
14018
14019 NXP SGTL5000 DRIVER
14020 M:      Fabio Estevam <festevam@gmail.com>
14021 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14022 S:      Maintained
14023 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14024 F:      sound/soc/codecs/sgtl5000*
14025
14026 NXP SJA1105 ETHERNET SWITCH DRIVER
14027 M:      Vladimir Oltean <olteanv@gmail.com>
14028 L:      linux-kernel@vger.kernel.org
14029 S:      Maintained
14030 F:      drivers/net/dsa/sja1105
14031 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14032
14033 NXP TDA998X DRM DRIVER
14034 M:      Russell King <linux@armlinux.org.uk>
14035 S:      Maintained
14036 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14037 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14038 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14039 F:      include/drm/i2c/tda998x.h
14040 F:      include/dt-bindings/display/tda998x.h
14041 K:      "nxp,tda998x"
14042
14043 NXP TFA9879 DRIVER
14044 M:      Peter Rosin <peda@axentia.se>
14045 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14046 S:      Maintained
14047 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14048 F:      sound/soc/codecs/tfa9879*
14049
14050 NXP/Goodix TFA989X (TFA1) DRIVER
14051 M:      Stephan Gerhold <stephan@gerhold.net>
14052 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14053 S:      Maintained
14054 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14055 F:      sound/soc/codecs/tfa989x.c
14056
14057 NXP-NCI NFC DRIVER
14058 R:      Charles Gorand <charles.gorand@effinnov.com>
14059 L:      linux-nfc@lists.01.org (subscribers-only)
14060 S:      Supported
14061 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14062 F:      drivers/nfc/nxp-nci
14063
14064 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14065 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14066 R:      NXP Linux Team <linux-imx@nxp.com>
14067 L:      linux-media@vger.kernel.org
14068 S:      Maintained
14069 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14070 F:      drivers/media/platform/imx-jpeg
14071
14072 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14073 M:      Jonas Malaco <jonas@protocubo.io>
14074 L:      linux-hwmon@vger.kernel.org
14075 S:      Maintained
14076 F:      Documentation/hwmon/nzxt-kraken2.rst
14077 F:      drivers/hwmon/nzxt-kraken2.c
14078
14079 NZXT-SMART2 HARDWARE MONITORING DRIVER
14080 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14081 L:      linux-hwmon@vger.kernel.org
14082 S:      Maintained
14083 F:      Documentation/hwmon/nzxt-smart2.rst
14084 F:      drivers/hwmon/nzxt-smart2.c
14085
14086 OBJAGG
14087 M:      Jiri Pirko <jiri@nvidia.com>
14088 L:      netdev@vger.kernel.org
14089 S:      Supported
14090 F:      include/linux/objagg.h
14091 F:      lib/objagg.c
14092 F:      lib/test_objagg.c
14093
14094 OBJTOOL
14095 M:      Josh Poimboeuf <jpoimboe@redhat.com>
14096 M:      Peter Zijlstra <peterz@infradead.org>
14097 S:      Supported
14098 F:      tools/objtool/
14099 F:      include/linux/objtool.h
14100
14101 OCELOT ETHERNET SWITCH DRIVER
14102 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14103 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14104 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14105 M:      UNGLinuxDriver@microchip.com
14106 L:      netdev@vger.kernel.org
14107 S:      Supported
14108 F:      drivers/net/dsa/ocelot/*
14109 F:      drivers/net/ethernet/mscc/
14110 F:      include/soc/mscc/ocelot*
14111 F:      net/dsa/tag_ocelot.c
14112 F:      net/dsa/tag_ocelot_8021q.c
14113 F:      tools/testing/selftests/drivers/net/ocelot/*
14114
14115 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14116 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14117 M:      Andrew Donnellan <ajd@linux.ibm.com>
14118 L:      linuxppc-dev@lists.ozlabs.org
14119 S:      Supported
14120 F:      Documentation/userspace-api/accelerators/ocxl.rst
14121 F:      arch/powerpc/include/asm/pnv-ocxl.h
14122 F:      arch/powerpc/platforms/powernv/ocxl.c
14123 F:      drivers/misc/ocxl/
14124 F:      include/misc/ocxl*
14125 F:      include/uapi/misc/ocxl.h
14126
14127 OMAP AUDIO SUPPORT
14128 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14129 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14130 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14131 L:      linux-omap@vger.kernel.org
14132 S:      Maintained
14133 F:      sound/soc/ti/n810.c
14134 F:      sound/soc/ti/omap*
14135 F:      sound/soc/ti/rx51.c
14136 F:      sound/soc/ti/sdma-pcm.*
14137
14138 OMAP CLOCK FRAMEWORK SUPPORT
14139 M:      Paul Walmsley <paul@pwsan.com>
14140 L:      linux-omap@vger.kernel.org
14141 S:      Maintained
14142 F:      arch/arm/*omap*/*clock*
14143
14144 OMAP DEVICE TREE SUPPORT
14145 M:      Benoît Cousson <bcousson@baylibre.com>
14146 M:      Tony Lindgren <tony@atomide.com>
14147 L:      linux-omap@vger.kernel.org
14148 L:      devicetree@vger.kernel.org
14149 S:      Maintained
14150 F:      arch/arm/boot/dts/*am3*
14151 F:      arch/arm/boot/dts/*am4*
14152 F:      arch/arm/boot/dts/*am5*
14153 F:      arch/arm/boot/dts/*dra7*
14154 F:      arch/arm/boot/dts/*omap*
14155 F:      arch/arm/boot/dts/logicpd-som-lv*
14156 F:      arch/arm/boot/dts/logicpd-torpedo*
14157
14158 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14159 L:      linux-omap@vger.kernel.org
14160 L:      linux-fbdev@vger.kernel.org
14161 S:      Orphan
14162 F:      Documentation/arm/omap/dss.rst
14163 F:      drivers/video/fbdev/omap2/
14164
14165 OMAP FRAMEBUFFER SUPPORT
14166 L:      linux-fbdev@vger.kernel.org
14167 L:      linux-omap@vger.kernel.org
14168 S:      Orphan
14169 F:      drivers/video/fbdev/omap/
14170
14171 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14172 M:      Roger Quadros <rogerq@kernel.org>
14173 M:      Tony Lindgren <tony@atomide.com>
14174 L:      linux-omap@vger.kernel.org
14175 S:      Maintained
14176 F:      arch/arm/mach-omap2/*gpmc*
14177 F:      drivers/memory/omap-gpmc.c
14178
14179 OMAP GPIO DRIVER
14180 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14181 M:      Santosh Shilimkar <ssantosh@kernel.org>
14182 M:      Kevin Hilman <khilman@kernel.org>
14183 L:      linux-omap@vger.kernel.org
14184 S:      Maintained
14185 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14186 F:      drivers/gpio/gpio-omap.c
14187
14188 OMAP HARDWARE SPINLOCK SUPPORT
14189 M:      Ohad Ben-Cohen <ohad@wizery.com>
14190 L:      linux-omap@vger.kernel.org
14191 S:      Maintained
14192 F:      drivers/hwspinlock/omap_hwspinlock.c
14193
14194 OMAP HS MMC SUPPORT
14195 L:      linux-mmc@vger.kernel.org
14196 L:      linux-omap@vger.kernel.org
14197 S:      Orphan
14198 F:      drivers/mmc/host/omap_hsmmc.c
14199
14200 OMAP HWMOD DATA
14201 M:      Paul Walmsley <paul@pwsan.com>
14202 L:      linux-omap@vger.kernel.org
14203 S:      Maintained
14204 F:      arch/arm/mach-omap2/omap_hwmod*data*
14205
14206 OMAP HWMOD SUPPORT
14207 M:      Benoît Cousson <bcousson@baylibre.com>
14208 M:      Paul Walmsley <paul@pwsan.com>
14209 L:      linux-omap@vger.kernel.org
14210 S:      Maintained
14211 F:      arch/arm/mach-omap2/omap_hwmod.*
14212
14213 OMAP I2C DRIVER
14214 M:      Vignesh R <vigneshr@ti.com>
14215 L:      linux-omap@vger.kernel.org
14216 L:      linux-i2c@vger.kernel.org
14217 S:      Maintained
14218 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14219 F:      drivers/i2c/busses/i2c-omap.c
14220
14221 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14222 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14223 L:      linux-media@vger.kernel.org
14224 S:      Maintained
14225 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14226 F:      drivers/media/platform/ti/omap3isp/
14227 F:      drivers/staging/media/omap4iss/
14228
14229 OMAP MMC SUPPORT
14230 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14231 L:      linux-omap@vger.kernel.org
14232 S:      Odd Fixes
14233 F:      drivers/mmc/host/omap.c
14234
14235 OMAP POWER MANAGEMENT SUPPORT
14236 M:      Kevin Hilman <khilman@kernel.org>
14237 L:      linux-omap@vger.kernel.org
14238 S:      Maintained
14239 F:      arch/arm/*omap*/*pm*
14240 F:      drivers/cpufreq/omap-cpufreq.c
14241
14242 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14243 M:      Rajendra Nayak <rnayak@codeaurora.org>
14244 M:      Paul Walmsley <paul@pwsan.com>
14245 L:      linux-omap@vger.kernel.org
14246 S:      Maintained
14247 F:      arch/arm/mach-omap2/prm*
14248
14249 OMAP RANDOM NUMBER GENERATOR SUPPORT
14250 M:      Deepak Saxena <dsaxena@plexity.net>
14251 S:      Maintained
14252 F:      drivers/char/hw_random/omap-rng.c
14253
14254 OMAP USB SUPPORT
14255 L:      linux-usb@vger.kernel.org
14256 L:      linux-omap@vger.kernel.org
14257 S:      Orphan
14258 F:      arch/arm/*omap*/usb*
14259 F:      drivers/usb/*/*omap*
14260
14261 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14262 M:      Mark Jackson <mpfj@newflow.co.uk>
14263 L:      linux-omap@vger.kernel.org
14264 S:      Maintained
14265 F:      arch/arm/boot/dts/am335x-nano.dts
14266
14267 OMAP1 SUPPORT
14268 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14269 M:      Tony Lindgren <tony@atomide.com>
14270 L:      linux-omap@vger.kernel.org
14271 S:      Maintained
14272 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14274 F:      arch/arm/configs/omap1_defconfig
14275 F:      arch/arm/mach-omap1/
14276 F:      arch/arm/plat-omap/
14277 F:      drivers/i2c/busses/i2c-omap.c
14278 F:      include/linux/platform_data/ams-delta-fiq.h
14279 F:      include/linux/platform_data/i2c-omap.h
14280
14281 OMAP2+ SUPPORT
14282 M:      Tony Lindgren <tony@atomide.com>
14283 L:      linux-omap@vger.kernel.org
14284 S:      Maintained
14285 W:      http://www.muru.com/linux/omap/
14286 W:      http://linux.omap.com/
14287 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14289 F:      arch/arm/configs/omap2plus_defconfig
14290 F:      arch/arm/mach-omap2/
14291 F:      arch/arm/plat-omap/
14292 F:      drivers/bus/ti-sysc.c
14293 F:      drivers/i2c/busses/i2c-omap.c
14294 F:      drivers/irqchip/irq-omap-intc.c
14295 F:      drivers/mfd/*omap*.c
14296 F:      drivers/mfd/menelaus.c
14297 F:      drivers/mfd/palmas.c
14298 F:      drivers/mfd/tps65217.c
14299 F:      drivers/mfd/tps65218.c
14300 F:      drivers/mfd/tps65910.c
14301 F:      drivers/mfd/twl-core.[ch]
14302 F:      drivers/mfd/twl4030*.c
14303 F:      drivers/mfd/twl6030*.c
14304 F:      drivers/mfd/twl6040*.c
14305 F:      drivers/regulator/palmas-regulator*.c
14306 F:      drivers/regulator/pbias-regulator.c
14307 F:      drivers/regulator/tps65217-regulator.c
14308 F:      drivers/regulator/tps65218-regulator.c
14309 F:      drivers/regulator/tps65910-regulator.c
14310 F:      drivers/regulator/twl-regulator.c
14311 F:      drivers/regulator/twl6030-regulator.c
14312 F:      include/linux/platform_data/i2c-omap.h
14313 F:      include/linux/platform_data/ti-sysc.h
14314
14315 OMFS FILESYSTEM
14316 M:      Bob Copeland <me@bobcopeland.com>
14317 L:      linux-karma-devel@lists.sourceforge.net
14318 S:      Maintained
14319 F:      Documentation/filesystems/omfs.rst
14320 F:      fs/omfs/
14321
14322 OMNIKEY CARDMAN 4000 DRIVER
14323 M:      Harald Welte <laforge@gnumonks.org>
14324 S:      Maintained
14325 F:      drivers/char/pcmcia/cm4000_cs.c
14326 F:      include/linux/cm4000_cs.h
14327 F:      include/uapi/linux/cm4000_cs.h
14328
14329 OMNIKEY CARDMAN 4040 DRIVER
14330 M:      Harald Welte <laforge@gnumonks.org>
14331 S:      Maintained
14332 F:      drivers/char/pcmcia/cm4040_cs.*
14333
14334 OMNIVISION OG01A1B SENSOR DRIVER
14335 M:      Shawn Tu <shawnx.tu@intel.com>
14336 L:      linux-media@vger.kernel.org
14337 S:      Maintained
14338 F:      drivers/media/i2c/og01a1b.c
14339
14340 OMNIVISION OV02A10 SENSOR DRIVER
14341 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14342 L:      linux-media@vger.kernel.org
14343 S:      Maintained
14344 T:      git git://linuxtv.org/media_tree.git
14345 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14346 F:      drivers/media/i2c/ov02a10.c
14347
14348 OMNIVISION OV08D10 SENSOR DRIVER
14349 M:      Jimmy Su <jimmy.su@intel.com>
14350 L:      linux-media@vger.kernel.org
14351 S:      Maintained
14352 T:      git git://linuxtv.org/media_tree.git
14353 F:      drivers/media/i2c/ov08d10.c
14354
14355 OMNIVISION OV13858 SENSOR DRIVER
14356 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14357 L:      linux-media@vger.kernel.org
14358 S:      Maintained
14359 T:      git git://linuxtv.org/media_tree.git
14360 F:      drivers/media/i2c/ov13858.c
14361
14362 OMNIVISION OV13B10 SENSOR DRIVER
14363 M:      Arec Kao <arec.kao@intel.com>
14364 L:      linux-media@vger.kernel.org
14365 S:      Maintained
14366 T:      git git://linuxtv.org/media_tree.git
14367 F:      drivers/media/i2c/ov13b10.c
14368
14369 OMNIVISION OV2680 SENSOR DRIVER
14370 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14371 L:      linux-media@vger.kernel.org
14372 S:      Maintained
14373 T:      git git://linuxtv.org/media_tree.git
14374 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14375 F:      drivers/media/i2c/ov2680.c
14376
14377 OMNIVISION OV2685 SENSOR DRIVER
14378 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14379 L:      linux-media@vger.kernel.org
14380 S:      Maintained
14381 T:      git git://linuxtv.org/media_tree.git
14382 F:      drivers/media/i2c/ov2685.c
14383
14384 OMNIVISION OV2740 SENSOR DRIVER
14385 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14386 R:      Shawn Tu <shawnx.tu@intel.com>
14387 R:      Bingbu Cao <bingbu.cao@intel.com>
14388 L:      linux-media@vger.kernel.org
14389 S:      Maintained
14390 T:      git git://linuxtv.org/media_tree.git
14391 F:      drivers/media/i2c/ov2740.c
14392
14393 OMNIVISION OV5640 SENSOR DRIVER
14394 M:      Steve Longerbeam <slongerbeam@gmail.com>
14395 L:      linux-media@vger.kernel.org
14396 S:      Maintained
14397 T:      git git://linuxtv.org/media_tree.git
14398 F:      drivers/media/i2c/ov5640.c
14399
14400 OMNIVISION OV5647 SENSOR DRIVER
14401 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14402 M:      Jacopo Mondi <jacopo@jmondi.org>
14403 L:      linux-media@vger.kernel.org
14404 S:      Maintained
14405 T:      git git://linuxtv.org/media_tree.git
14406 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14407 F:      drivers/media/i2c/ov5647.c
14408
14409 OMNIVISION OV5670 SENSOR DRIVER
14410 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14411 L:      linux-media@vger.kernel.org
14412 S:      Maintained
14413 T:      git git://linuxtv.org/media_tree.git
14414 F:      drivers/media/i2c/ov5670.c
14415
14416 OMNIVISION OV5675 SENSOR DRIVER
14417 M:      Shawn Tu <shawnx.tu@intel.com>
14418 L:      linux-media@vger.kernel.org
14419 S:      Maintained
14420 T:      git git://linuxtv.org/media_tree.git
14421 F:      drivers/media/i2c/ov5675.c
14422
14423 OMNIVISION OV5693 SENSOR DRIVER
14424 M:      Daniel Scally <djrscally@gmail.com>
14425 L:      linux-media@vger.kernel.org
14426 S:      Maintained
14427 T:      git git://linuxtv.org/media_tree.git
14428 F:      drivers/media/i2c/ov5693.c
14429
14430 OMNIVISION OV5695 SENSOR DRIVER
14431 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14432 L:      linux-media@vger.kernel.org
14433 S:      Maintained
14434 T:      git git://linuxtv.org/media_tree.git
14435 F:      drivers/media/i2c/ov5695.c
14436
14437 OMNIVISION OV7670 SENSOR DRIVER
14438 L:      linux-media@vger.kernel.org
14439 S:      Orphan
14440 T:      git git://linuxtv.org/media_tree.git
14441 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14442 F:      drivers/media/i2c/ov7670.c
14443
14444 OMNIVISION OV772x SENSOR DRIVER
14445 M:      Jacopo Mondi <jacopo@jmondi.org>
14446 L:      linux-media@vger.kernel.org
14447 S:      Odd fixes
14448 T:      git git://linuxtv.org/media_tree.git
14449 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14450 F:      drivers/media/i2c/ov772x.c
14451 F:      include/media/i2c/ov772x.h
14452
14453 OMNIVISION OV7740 SENSOR DRIVER
14454 M:      Wenyou Yang <wenyou.yang@microchip.com>
14455 L:      linux-media@vger.kernel.org
14456 S:      Maintained
14457 T:      git git://linuxtv.org/media_tree.git
14458 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14459 F:      drivers/media/i2c/ov7740.c
14460
14461 OMNIVISION OV8856 SENSOR DRIVER
14462 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14463 L:      linux-media@vger.kernel.org
14464 S:      Maintained
14465 T:      git git://linuxtv.org/media_tree.git
14466 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14467 F:      drivers/media/i2c/ov8856.c
14468
14469 OMNIVISION OV9282 SENSOR DRIVER
14470 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14471 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14472 L:      linux-media@vger.kernel.org
14473 S:      Maintained
14474 T:      git git://linuxtv.org/media_tree.git
14475 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14476 F:      drivers/media/i2c/ov9282.c
14477
14478 OMNIVISION OV9640 SENSOR DRIVER
14479 M:      Petr Cvek <petrcvekcz@gmail.com>
14480 L:      linux-media@vger.kernel.org
14481 S:      Maintained
14482 F:      drivers/media/i2c/ov9640.*
14483
14484 OMNIVISION OV9650 SENSOR DRIVER
14485 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14486 R:      Akinobu Mita <akinobu.mita@gmail.com>
14487 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14488 L:      linux-media@vger.kernel.org
14489 S:      Maintained
14490 T:      git git://linuxtv.org/media_tree.git
14491 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14492 F:      drivers/media/i2c/ov9650.c
14493
14494 OMNIVISION OV9734 SENSOR DRIVER
14495 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14496 R:      Bingbu Cao <bingbu.cao@intel.com>
14497 L:      linux-media@vger.kernel.org
14498 S:      Maintained
14499 T:      git git://linuxtv.org/media_tree.git
14500 F:      drivers/media/i2c/ov9734.c
14501
14502 ONENAND FLASH DRIVER
14503 M:      Kyungmin Park <kyungmin.park@samsung.com>
14504 L:      linux-mtd@lists.infradead.org
14505 S:      Maintained
14506 F:      drivers/mtd/nand/onenand/
14507 F:      include/linux/mtd/onenand*.h
14508
14509 ONION OMEGA2+ BOARD
14510 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14511 L:      linux-mips@vger.kernel.org
14512 S:      Maintained
14513 F:      arch/mips/boot/dts/ralink/omega2p.dts
14514
14515 OP-TEE DRIVER
14516 M:      Jens Wiklander <jens.wiklander@linaro.org>
14517 L:      op-tee@lists.trustedfirmware.org
14518 S:      Maintained
14519 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14520 F:      drivers/tee/optee/
14521
14522 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14523 M:      Sumit Garg <sumit.garg@linaro.org>
14524 L:      op-tee@lists.trustedfirmware.org
14525 S:      Maintained
14526 F:      drivers/char/hw_random/optee-rng.c
14527
14528 OPA-VNIC DRIVER
14529 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14530 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14531 L:      linux-rdma@vger.kernel.org
14532 S:      Supported
14533 F:      drivers/infiniband/ulp/opa_vnic
14534
14535 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14536 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14537 M:      Frank Rowand <frowand.list@gmail.com>
14538 L:      devicetree@vger.kernel.org
14539 S:      Maintained
14540 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14541 F:      Documentation/devicetree/overlay-notes.rst
14542 F:      drivers/of/overlay.c
14543 F:      drivers/of/resolver.c
14544 K:      of_overlay_notifier_
14545
14546 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14547 M:      Rob Herring <robh+dt@kernel.org>
14548 M:      Frank Rowand <frowand.list@gmail.com>
14549 L:      devicetree@vger.kernel.org
14550 S:      Maintained
14551 C:      irc://irc.libera.chat/devicetree
14552 W:      http://www.devicetree.org/
14553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14554 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14555 F:      drivers/of/
14556 F:      include/linux/of*.h
14557 F:      scripts/dtc/
14558
14559 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14560 M:      Rob Herring <robh+dt@kernel.org>
14561 M:      Krzysztof Kozlowski <krzk+dt@kernel.org>
14562 L:      devicetree@vger.kernel.org
14563 S:      Maintained
14564 C:      irc://irc.libera.chat/devicetree
14565 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14567 F:      Documentation/devicetree/
14568 F:      arch/*/boot/dts/
14569 F:      include/dt-bindings/
14570
14571 OPENCOMPUTE PTP CLOCK DRIVER
14572 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14573 L:      netdev@vger.kernel.org
14574 S:      Maintained
14575 F:      drivers/ptp/ptp_ocp.c
14576
14577 OPENCORES I2C BUS DRIVER
14578 M:      Peter Korsgaard <peter@korsgaard.com>
14579 M:      Andrew Lunn <andrew@lunn.ch>
14580 L:      linux-i2c@vger.kernel.org
14581 S:      Maintained
14582 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14583 F:      Documentation/i2c/busses/i2c-ocores.rst
14584 F:      drivers/i2c/busses/i2c-ocores.c
14585 F:      include/linux/platform_data/i2c-ocores.h
14586
14587 OPENRISC ARCHITECTURE
14588 M:      Jonas Bonn <jonas@southpole.se>
14589 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14590 M:      Stafford Horne <shorne@gmail.com>
14591 L:      openrisc@lists.librecores.org
14592 S:      Maintained
14593 W:      http://openrisc.io
14594 T:      git git://github.com/openrisc/linux.git
14595 F:      Documentation/devicetree/bindings/openrisc/
14596 F:      Documentation/openrisc/
14597 F:      arch/openrisc/
14598 F:      drivers/irqchip/irq-ompic.c
14599 F:      drivers/irqchip/irq-or1k-*
14600
14601 OPENVSWITCH
14602 M:      Pravin B Shelar <pshelar@ovn.org>
14603 L:      netdev@vger.kernel.org
14604 L:      dev@openvswitch.org
14605 S:      Maintained
14606 W:      http://openvswitch.org
14607 F:      include/uapi/linux/openvswitch.h
14608 F:      net/openvswitch/
14609
14610 OPERATING PERFORMANCE POINTS (OPP)
14611 M:      Viresh Kumar <vireshk@kernel.org>
14612 M:      Nishanth Menon <nm@ti.com>
14613 M:      Stephen Boyd <sboyd@kernel.org>
14614 L:      linux-pm@vger.kernel.org
14615 S:      Maintained
14616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14617 F:      Documentation/devicetree/bindings/opp/
14618 F:      Documentation/power/opp.rst
14619 F:      drivers/opp/
14620 F:      include/linux/pm_opp.h
14621
14622 OPL4 DRIVER
14623 M:      Clemens Ladisch <clemens@ladisch.de>
14624 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14625 S:      Maintained
14626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14627 F:      sound/drivers/opl4/
14628
14629 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14630 M:      Mark Fasheh <mark@fasheh.com>
14631 M:      Joel Becker <jlbec@evilplan.org>
14632 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14633 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14634 S:      Supported
14635 W:      http://ocfs2.wiki.kernel.org
14636 F:      Documentation/filesystems/dlmfs.rst
14637 F:      Documentation/filesystems/ocfs2.rst
14638 F:      fs/ocfs2/
14639
14640 ORANGEFS FILESYSTEM
14641 M:      Mike Marshall <hubcap@omnibond.com>
14642 R:      Martin Brandenburg <martin@omnibond.com>
14643 L:      devel@lists.orangefs.org
14644 S:      Supported
14645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14646 F:      Documentation/filesystems/orangefs.rst
14647 F:      fs/orangefs/
14648
14649 ORINOCO DRIVER
14650 L:      linux-wireless@vger.kernel.org
14651 S:      Orphan
14652 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14653 W:      http://www.nongnu.org/orinoco/
14654 F:      drivers/net/wireless/intersil/orinoco/
14655
14656 OV2659 OMNIVISION SENSOR DRIVER
14657 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14658 L:      linux-media@vger.kernel.org
14659 S:      Maintained
14660 W:      https://linuxtv.org
14661 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14662 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14663 F:      drivers/media/i2c/ov2659.c
14664 F:      include/media/i2c/ov2659.h
14665
14666 OVERLAY FILESYSTEM
14667 M:      Miklos Szeredi <miklos@szeredi.hu>
14668 L:      linux-unionfs@vger.kernel.org
14669 S:      Supported
14670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14671 F:      Documentation/filesystems/overlayfs.rst
14672 F:      fs/overlayfs/
14673
14674 P54 WIRELESS DRIVER
14675 M:      Christian Lamparter <chunkeey@googlemail.com>
14676 L:      linux-wireless@vger.kernel.org
14677 S:      Maintained
14678 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14679 F:      drivers/net/wireless/intersil/p54/
14680
14681 PACKING
14682 M:      Vladimir Oltean <olteanv@gmail.com>
14683 L:      netdev@vger.kernel.org
14684 S:      Supported
14685 F:      Documentation/core-api/packing.rst
14686 F:      include/linux/packing.h
14687 F:      lib/packing.c
14688
14689 PADATA PARALLEL EXECUTION MECHANISM
14690 M:      Steffen Klassert <steffen.klassert@secunet.com>
14691 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14692 L:      linux-crypto@vger.kernel.org
14693 L:      linux-kernel@vger.kernel.org
14694 S:      Maintained
14695 F:      Documentation/core-api/padata.rst
14696 F:      include/linux/padata.h
14697 F:      kernel/padata.c
14698
14699 PAGE POOL
14700 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14701 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14702 L:      netdev@vger.kernel.org
14703 S:      Supported
14704 F:      Documentation/networking/page_pool.rst
14705 F:      include/net/page_pool.h
14706 F:      include/trace/events/page_pool.h
14707 F:      net/core/page_pool.c
14708
14709 PAGE TABLE CHECK
14710 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
14711 M:      Andrew Morton <akpm@linux-foundation.org>
14712 L:      linux-mm@kvack.org
14713 S:      Maintained
14714 F:      Documentation/vm/page_table_check.rst
14715 F:      include/linux/page_table_check.h
14716 F:      mm/page_table_check.c
14717
14718 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14719 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14720 L:      platform-driver-x86@vger.kernel.org
14721 S:      Maintained
14722 F:      drivers/platform/x86/panasonic-laptop.c
14723
14724 PARALLAX PING IIO SENSOR DRIVER
14725 M:      Andreas Klinger <ak@it-klinger.de>
14726 L:      linux-iio@vger.kernel.org
14727 S:      Maintained
14728 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14729 F:      drivers/iio/proximity/ping.c
14730
14731 PARALLEL LCD/KEYPAD PANEL DRIVER
14732 M:      Willy Tarreau <willy@haproxy.com>
14733 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14734 S:      Odd Fixes
14735 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14736 F:      drivers/auxdisplay/panel.c
14737
14738 PARALLEL PORT SUBSYSTEM
14739 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14740 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14741 L:      linux-parport@lists.infradead.org (subscribers-only)
14742 S:      Maintained
14743 F:      Documentation/driver-api/parport*.rst
14744 F:      drivers/char/ppdev.c
14745 F:      drivers/parport/
14746 F:      include/linux/parport*.h
14747 F:      include/uapi/linux/ppdev.h
14748
14749 PARAVIRT_OPS INTERFACE
14750 M:      Juergen Gross <jgross@suse.com>
14751 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
14752 R:      Alexey Makhalov <amakhalov@vmware.com>
14753 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
14754 L:      virtualization@lists.linux-foundation.org
14755 L:      x86@kernel.org
14756 S:      Supported
14757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14758 F:      Documentation/virt/paravirt_ops.rst
14759 F:      arch/*/include/asm/paravirt*.h
14760 F:      arch/*/kernel/paravirt*
14761 F:      include/linux/hypervisor.h
14762
14763 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14764 M:      Tim Waugh <tim@cyberelk.net>
14765 L:      linux-parport@lists.infradead.org (subscribers-only)
14766 S:      Maintained
14767 F:      Documentation/admin-guide/blockdev/paride.rst
14768 F:      drivers/block/paride/
14769
14770 PARISC ARCHITECTURE
14771 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14772 M:      Helge Deller <deller@gmx.de>
14773 L:      linux-parisc@vger.kernel.org
14774 S:      Maintained
14775 W:      https://parisc.wiki.kernel.org
14776 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14779 F:      Documentation/parisc/
14780 F:      arch/parisc/
14781 F:      drivers/char/agp/parisc-agp.c
14782 F:      drivers/input/misc/hp_sdc_rtc.c
14783 F:      drivers/input/serio/gscps2.c
14784 F:      drivers/input/serio/hp_sdc*
14785 F:      drivers/parisc/
14786 F:      drivers/parport/parport_gsc.*
14787 F:      drivers/tty/serial/8250/8250_gsc.c
14788 F:      drivers/video/console/sti*
14789 F:      drivers/video/fbdev/sti*
14790 F:      drivers/video/logo/logo_parisc*
14791 F:      include/linux/hp_sdc.h
14792
14793 PARMAN
14794 M:      Jiri Pirko <jiri@nvidia.com>
14795 L:      netdev@vger.kernel.org
14796 S:      Supported
14797 F:      include/linux/parman.h
14798 F:      lib/parman.c
14799 F:      lib/test_parman.c
14800
14801 PC ENGINES APU BOARD DRIVER
14802 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14803 S:      Maintained
14804 F:      drivers/platform/x86/pcengines-apuv2.c
14805
14806 PC87360 HARDWARE MONITORING DRIVER
14807 M:      Jim Cromie <jim.cromie@gmail.com>
14808 L:      linux-hwmon@vger.kernel.org
14809 S:      Maintained
14810 F:      Documentation/hwmon/pc87360.rst
14811 F:      drivers/hwmon/pc87360.c
14812
14813 PC8736x GPIO DRIVER
14814 M:      Jim Cromie <jim.cromie@gmail.com>
14815 S:      Maintained
14816 F:      drivers/char/pc8736x_gpio.c
14817
14818 PC87427 HARDWARE MONITORING DRIVER
14819 M:      Jean Delvare <jdelvare@suse.com>
14820 L:      linux-hwmon@vger.kernel.org
14821 S:      Maintained
14822 F:      Documentation/hwmon/pc87427.rst
14823 F:      drivers/hwmon/pc87427.c
14824
14825 PCA9532 LED DRIVER
14826 M:      Riku Voipio <riku.voipio@iki.fi>
14827 S:      Maintained
14828 F:      drivers/leds/leds-pca9532.c
14829 F:      include/linux/leds-pca9532.h
14830
14831 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14832 M:      Guenter Roeck <linux@roeck-us.net>
14833 L:      linux-i2c@vger.kernel.org
14834 S:      Maintained
14835 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14836
14837 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14838 M:      Khalid Aziz <khalid@gonehiking.org>
14839 S:      Maintained
14840 F:      drivers/firmware/pcdp.*
14841
14842 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14843 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14844 M:      Pali Rohár <pali@kernel.org>
14845 L:      linux-pci@vger.kernel.org
14846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14847 S:      Maintained
14848 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14849 F:      drivers/pci/controller/pci-aardvark.c
14850
14851 PCI DRIVER FOR ALTERA PCIE IP
14852 M:      Joyce Ooi <joyce.ooi@intel.com>
14853 L:      linux-pci@vger.kernel.org
14854 S:      Supported
14855 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14856 F:      drivers/pci/controller/pcie-altera.c
14857
14858 PCI DRIVER FOR APPLIEDMICRO XGENE
14859 M:      Toan Le <toan@os.amperecomputing.com>
14860 L:      linux-pci@vger.kernel.org
14861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14862 S:      Maintained
14863 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14864 F:      drivers/pci/controller/pci-xgene.c
14865
14866 PCI DRIVER FOR ARM VERSATILE PLATFORM
14867 M:      Rob Herring <robh@kernel.org>
14868 L:      linux-pci@vger.kernel.org
14869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14870 S:      Maintained
14871 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14872 F:      drivers/pci/controller/pci-versatile.c
14873
14874 PCI DRIVER FOR ARMADA 8K
14875 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14876 L:      linux-pci@vger.kernel.org
14877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14878 S:      Maintained
14879 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14880 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14881
14882 PCI DRIVER FOR CADENCE PCIE IP
14883 M:      Tom Joseph <tjoseph@cadence.com>
14884 L:      linux-pci@vger.kernel.org
14885 S:      Maintained
14886 F:      Documentation/devicetree/bindings/pci/cdns,*
14887 F:      drivers/pci/controller/cadence/
14888
14889 PCI DRIVER FOR FREESCALE LAYERSCAPE
14890 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14891 M:      Mingkai Hu <mingkai.hu@nxp.com>
14892 M:      Roy Zang <roy.zang@nxp.com>
14893 L:      linuxppc-dev@lists.ozlabs.org
14894 L:      linux-pci@vger.kernel.org
14895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14896 S:      Maintained
14897 F:      drivers/pci/controller/dwc/*layerscape*
14898
14899 PCI DRIVER FOR GENERIC OF HOSTS
14900 M:      Will Deacon <will@kernel.org>
14901 L:      linux-pci@vger.kernel.org
14902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14903 S:      Maintained
14904 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14905 F:      drivers/pci/controller/pci-host-common.c
14906 F:      drivers/pci/controller/pci-host-generic.c
14907
14908 PCI DRIVER FOR IMX6
14909 M:      Richard Zhu <hongxing.zhu@nxp.com>
14910 M:      Lucas Stach <l.stach@pengutronix.de>
14911 L:      linux-pci@vger.kernel.org
14912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14913 S:      Maintained
14914 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14915 F:      drivers/pci/controller/dwc/*imx6*
14916
14917 PCI DRIVER FOR FU740
14918 M:      Paul Walmsley <paul.walmsley@sifive.com>
14919 M:      Greentime Hu <greentime.hu@sifive.com>
14920 L:      linux-pci@vger.kernel.org
14921 S:      Maintained
14922 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14923 F:      drivers/pci/controller/dwc/pcie-fu740.c
14924
14925 PCI DRIVER FOR INTEL IXP4XX
14926 M:      Linus Walleij <linus.walleij@linaro.org>
14927 S:      Maintained
14928 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14929 F:      drivers/pci/controller/pci-ixp4xx.c
14930
14931 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14932 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14933 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14934 L:      linux-pci@vger.kernel.org
14935 S:      Supported
14936 F:      drivers/pci/controller/vmd.c
14937
14938 PCI DRIVER FOR MICROSEMI SWITCHTEC
14939 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14940 M:      Logan Gunthorpe <logang@deltatee.com>
14941 L:      linux-pci@vger.kernel.org
14942 S:      Maintained
14943 F:      Documentation/ABI/testing/sysfs-class-switchtec
14944 F:      Documentation/driver-api/switchtec.rst
14945 F:      drivers/ntb/hw/mscc/
14946 F:      drivers/pci/switch/switchtec*
14947 F:      include/linux/switchtec.h
14948 F:      include/uapi/linux/switchtec_ioctl.h
14949
14950 PCI DRIVER FOR MOBIVEIL PCIE IP
14951 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14952 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14953 L:      linux-pci@vger.kernel.org
14954 S:      Supported
14955 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14956 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14957
14958 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14959 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14960 M:      Pali Rohár <pali@kernel.org>
14961 L:      linux-pci@vger.kernel.org
14962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14963 S:      Maintained
14964 F:      drivers/pci/controller/*mvebu*
14965
14966 PCI DRIVER FOR NVIDIA TEGRA
14967 M:      Thierry Reding <thierry.reding@gmail.com>
14968 L:      linux-tegra@vger.kernel.org
14969 L:      linux-pci@vger.kernel.org
14970 S:      Supported
14971 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14972 F:      drivers/pci/controller/pci-tegra.c
14973
14974 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14975 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14976 L:      linux-pci@vger.kernel.org
14977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14978 S:      Maintained
14979 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14980 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14981
14982 PCI DRIVER FOR RENESAS R-CAR
14983 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14984 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14985 L:      linux-pci@vger.kernel.org
14986 L:      linux-renesas-soc@vger.kernel.org
14987 S:      Maintained
14988 F:      Documentation/devicetree/bindings/pci/*rcar*
14989 F:      drivers/pci/controller/*rcar*
14990
14991 PCI DRIVER FOR SAMSUNG EXYNOS
14992 M:      Jingoo Han <jingoohan1@gmail.com>
14993 L:      linux-pci@vger.kernel.org
14994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14995 L:      linux-samsung-soc@vger.kernel.org
14996 S:      Maintained
14997 F:      drivers/pci/controller/dwc/pci-exynos.c
14998
14999 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15000 M:      Jingoo Han <jingoohan1@gmail.com>
15001 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15002 L:      linux-pci@vger.kernel.org
15003 S:      Maintained
15004 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15005 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15006 F:      drivers/pci/controller/dwc/*designware*
15007
15008 PCI DRIVER FOR TI DRA7XX/J721E
15009 M:      Kishon Vijay Abraham I <kishon@ti.com>
15010 L:      linux-omap@vger.kernel.org
15011 L:      linux-pci@vger.kernel.org
15012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15013 S:      Supported
15014 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15015 F:      drivers/pci/controller/cadence/pci-j721e.c
15016 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15017
15018 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15019 M:      Linus Walleij <linus.walleij@linaro.org>
15020 L:      linux-pci@vger.kernel.org
15021 S:      Maintained
15022 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15023 F:      drivers/pci/controller/pci-v3-semi.c
15024
15025 PCI ENDPOINT SUBSYSTEM
15026 M:      Kishon Vijay Abraham I <kishon@ti.com>
15027 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15028 R:      Krzysztof Wilczyński <kw@linux.com>
15029 L:      linux-pci@vger.kernel.org
15030 S:      Supported
15031 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15032 B:      https://bugzilla.kernel.org
15033 C:      irc://irc.oftc.net/linux-pci
15034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15035 F:      Documentation/PCI/endpoint/*
15036 F:      Documentation/misc-devices/pci-endpoint-test.rst
15037 F:      drivers/misc/pci_endpoint_test.c
15038 F:      drivers/pci/endpoint/
15039 F:      tools/pci/
15040
15041 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15042 M:      Russell Currey <ruscur@russell.cc>
15043 M:      Oliver O'Halloran <oohall@gmail.com>
15044 L:      linuxppc-dev@lists.ozlabs.org
15045 S:      Supported
15046 F:      Documentation/PCI/pci-error-recovery.rst
15047 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15048 F:      arch/powerpc/include/*/eeh*.h
15049 F:      arch/powerpc/kernel/eeh*.c
15050 F:      arch/powerpc/platforms/*/eeh*.c
15051 F:      drivers/pci/pcie/aer.c
15052 F:      drivers/pci/pcie/dpc.c
15053 F:      drivers/pci/pcie/err.c
15054
15055 PCI ERROR RECOVERY
15056 M:      Linas Vepstas <linasvepstas@gmail.com>
15057 L:      linux-pci@vger.kernel.org
15058 S:      Supported
15059 F:      Documentation/PCI/pci-error-recovery.rst
15060
15061 PCI PEER-TO-PEER DMA (P2PDMA)
15062 M:      Bjorn Helgaas <bhelgaas@google.com>
15063 M:      Logan Gunthorpe <logang@deltatee.com>
15064 L:      linux-pci@vger.kernel.org
15065 S:      Supported
15066 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15067 B:      https://bugzilla.kernel.org
15068 C:      irc://irc.oftc.net/linux-pci
15069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15070 F:      Documentation/driver-api/pci/p2pdma.rst
15071 F:      drivers/pci/p2pdma.c
15072 F:      include/linux/pci-p2pdma.h
15073
15074 PCI MSI DRIVER FOR ALTERA MSI IP
15075 M:      Joyce Ooi <joyce.ooi@intel.com>
15076 L:      linux-pci@vger.kernel.org
15077 S:      Supported
15078 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15079 F:      drivers/pci/controller/pcie-altera-msi.c
15080
15081 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15082 M:      Toan Le <toan@os.amperecomputing.com>
15083 L:      linux-pci@vger.kernel.org
15084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15085 S:      Maintained
15086 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15087 F:      drivers/pci/controller/pci-xgene-msi.c
15088
15089 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15090 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15091 R:      Rob Herring <robh@kernel.org>
15092 R:      Krzysztof Wilczyński <kw@linux.com>
15093 L:      linux-pci@vger.kernel.org
15094 S:      Supported
15095 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15096 B:      https://bugzilla.kernel.org
15097 C:      irc://irc.oftc.net/linux-pci
15098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15099 F:      drivers/pci/controller/
15100 F:      drivers/pci/pci-bridge-emul.c
15101 F:      drivers/pci/pci-bridge-emul.h
15102
15103 PCI SUBSYSTEM
15104 M:      Bjorn Helgaas <bhelgaas@google.com>
15105 L:      linux-pci@vger.kernel.org
15106 S:      Supported
15107 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15108 B:      https://bugzilla.kernel.org
15109 C:      irc://irc.oftc.net/linux-pci
15110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15111 F:      Documentation/PCI/
15112 F:      Documentation/devicetree/bindings/pci/
15113 F:      arch/x86/kernel/early-quirks.c
15114 F:      arch/x86/kernel/quirks.c
15115 F:      arch/x86/pci/
15116 F:      drivers/acpi/pci*
15117 F:      drivers/pci/
15118 F:      include/asm-generic/pci*
15119 F:      include/linux/of_pci.h
15120 F:      include/linux/pci*
15121 F:      include/uapi/linux/pci*
15122 F:      lib/pci*
15123
15124 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15125 M:      Jonathan Chocron <jonnyc@amazon.com>
15126 L:      linux-pci@vger.kernel.org
15127 S:      Maintained
15128 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15129 F:      drivers/pci/controller/dwc/pcie-al.c
15130
15131 PCIE DRIVER FOR AMLOGIC MESON
15132 M:      Yue Wang <yue.wang@Amlogic.com>
15133 L:      linux-pci@vger.kernel.org
15134 L:      linux-amlogic@lists.infradead.org
15135 S:      Maintained
15136 F:      drivers/pci/controller/dwc/pci-meson.c
15137
15138 PCIE DRIVER FOR AXIS ARTPEC
15139 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15140 L:      linux-arm-kernel@axis.com
15141 L:      linux-pci@vger.kernel.org
15142 S:      Maintained
15143 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15144 F:      drivers/pci/controller/dwc/*artpec*
15145
15146 PCIE DRIVER FOR CAVIUM THUNDERX
15147 M:      Robert Richter <rric@kernel.org>
15148 L:      linux-pci@vger.kernel.org
15149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15150 S:      Odd Fixes
15151 F:      drivers/pci/controller/pci-thunder-*
15152
15153 PCIE DRIVER FOR HISILICON
15154 M:      Zhou Wang <wangzhou1@hisilicon.com>
15155 L:      linux-pci@vger.kernel.org
15156 S:      Maintained
15157 F:      drivers/pci/controller/dwc/pcie-hisi.c
15158
15159 PCIE DRIVER FOR HISILICON KIRIN
15160 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15161 M:      Binghui Wang <wangbinghui@hisilicon.com>
15162 L:      linux-pci@vger.kernel.org
15163 S:      Maintained
15164 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15165 F:      drivers/pci/controller/dwc/pcie-kirin.c
15166
15167 PCIE DRIVER FOR HISILICON STB
15168 M:      Shawn Guo <shawn.guo@linaro.org>
15169 L:      linux-pci@vger.kernel.org
15170 S:      Maintained
15171 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15172 F:      drivers/pci/controller/dwc/pcie-histb.c
15173
15174 PCIE DRIVER FOR INTEL KEEM BAY
15175 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15176 L:      linux-pci@vger.kernel.org
15177 S:      Supported
15178 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15179 F:      drivers/pci/controller/dwc/pcie-keembay.c
15180
15181 PCIE DRIVER FOR INTEL LGM GW SOC
15182 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15183 L:      linux-pci@vger.kernel.org
15184 S:      Maintained
15185 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15186 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15187
15188 PCIE DRIVER FOR MEDIATEK
15189 M:      Ryder Lee <ryder.lee@mediatek.com>
15190 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15191 L:      linux-pci@vger.kernel.org
15192 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15193 S:      Supported
15194 F:      Documentation/devicetree/bindings/pci/mediatek*
15195 F:      drivers/pci/controller/*mediatek*
15196
15197 PCIE DRIVER FOR MICROCHIP
15198 M:      Daire McNamara <daire.mcnamara@microchip.com>
15199 L:      linux-pci@vger.kernel.org
15200 S:      Supported
15201 F:      Documentation/devicetree/bindings/pci/microchip*
15202 F:      drivers/pci/controller/*microchip*
15203
15204 PCIE DRIVER FOR QUALCOMM MSM
15205 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15206 L:      linux-pci@vger.kernel.org
15207 L:      linux-arm-msm@vger.kernel.org
15208 S:      Maintained
15209 F:      drivers/pci/controller/dwc/pcie-qcom.c
15210
15211 PCIE ENDPOINT DRIVER FOR QUALCOMM
15212 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15213 L:      linux-pci@vger.kernel.org
15214 L:      linux-arm-msm@vger.kernel.org
15215 S:      Maintained
15216 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15217 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15218
15219 PCIE DRIVER FOR ROCKCHIP
15220 M:      Shawn Lin <shawn.lin@rock-chips.com>
15221 L:      linux-pci@vger.kernel.org
15222 L:      linux-rockchip@lists.infradead.org
15223 S:      Maintained
15224 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15225 F:      drivers/pci/controller/pcie-rockchip*
15226
15227 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15228 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15229 L:      linux-pci@vger.kernel.org
15230 S:      Maintained
15231 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
15232 F:      drivers/pci/controller/dwc/pcie-uniphier*
15233
15234 PCIE DRIVER FOR ST SPEAR13XX
15235 M:      Pratyush Anand <pratyush.anand@gmail.com>
15236 L:      linux-pci@vger.kernel.org
15237 S:      Maintained
15238 F:      drivers/pci/controller/dwc/*spear*
15239
15240 PCMCIA SUBSYSTEM
15241 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15242 S:      Odd Fixes
15243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15244 F:      Documentation/pcmcia/
15245 F:      drivers/pcmcia/
15246 F:      include/pcmcia/
15247 F:      tools/pcmcia/
15248
15249 PCNET32 NETWORK DRIVER
15250 M:      Don Fry <pcnet32@frontier.com>
15251 L:      netdev@vger.kernel.org
15252 S:      Maintained
15253 F:      drivers/net/ethernet/amd/pcnet32.c
15254
15255 PCRYPT PARALLEL CRYPTO ENGINE
15256 M:      Steffen Klassert <steffen.klassert@secunet.com>
15257 L:      linux-crypto@vger.kernel.org
15258 S:      Maintained
15259 F:      crypto/pcrypt.c
15260 F:      include/crypto/pcrypt.h
15261
15262 PEAQ WMI HOTKEYS DRIVER
15263 M:      Hans de Goede <hdegoede@redhat.com>
15264 L:      platform-driver-x86@vger.kernel.org
15265 S:      Maintained
15266 F:      drivers/platform/x86/peaq-wmi.c
15267
15268 PENSANDO ETHERNET DRIVERS
15269 M:      Shannon Nelson <snelson@pensando.io>
15270 M:      drivers@pensando.io
15271 L:      netdev@vger.kernel.org
15272 S:      Supported
15273 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15274 F:      drivers/net/ethernet/pensando/
15275
15276 PER-CPU MEMORY ALLOCATOR
15277 M:      Dennis Zhou <dennis@kernel.org>
15278 M:      Tejun Heo <tj@kernel.org>
15279 M:      Christoph Lameter <cl@linux.com>
15280 L:      linux-mm@kvack.org
15281 S:      Maintained
15282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15283 F:      arch/*/include/asm/percpu.h
15284 F:      include/linux/percpu*.h
15285 F:      lib/percpu*.c
15286 F:      mm/percpu*.c
15287
15288 PER-TASK DELAY ACCOUNTING
15289 M:      Balbir Singh <bsingharora@gmail.com>
15290 S:      Maintained
15291 F:      include/linux/delayacct.h
15292 F:      kernel/delayacct.c
15293
15294 PERFORMANCE EVENTS SUBSYSTEM
15295 M:      Peter Zijlstra <peterz@infradead.org>
15296 M:      Ingo Molnar <mingo@redhat.com>
15297 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15298 R:      Mark Rutland <mark.rutland@arm.com>
15299 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15300 R:      Jiri Olsa <jolsa@kernel.org>
15301 R:      Namhyung Kim <namhyung@kernel.org>
15302 L:      linux-perf-users@vger.kernel.org
15303 L:      linux-kernel@vger.kernel.org
15304 S:      Supported
15305 W:      https://perf.wiki.kernel.org/
15306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15307 F:      arch/*/events/*
15308 F:      arch/*/events/*/*
15309 F:      arch/*/include/asm/perf_event.h
15310 F:      arch/*/kernel/*/*/perf_event*.c
15311 F:      arch/*/kernel/*/perf_event*.c
15312 F:      arch/*/kernel/perf_callchain.c
15313 F:      arch/*/kernel/perf_event*.c
15314 F:      include/linux/perf_event.h
15315 F:      include/uapi/linux/perf_event.h
15316 F:      kernel/events/*
15317 F:      tools/lib/perf/
15318 F:      tools/perf/
15319
15320 PERFORMANCE EVENTS TOOLING ARM64
15321 R:      John Garry <john.garry@huawei.com>
15322 R:      Will Deacon <will@kernel.org>
15323 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
15324 R:      Leo Yan <leo.yan@linaro.org>
15325 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15326 S:      Supported
15327 F:      tools/build/feature/test-libopencsd.c
15328 F:      tools/perf/arch/arm*/
15329 F:      tools/perf/pmu-events/arch/arm64/
15330 F:      tools/perf/util/arm-spe*
15331 F:      tools/perf/util/cs-etm*
15332
15333 PERSONALITY HANDLING
15334 M:      Christoph Hellwig <hch@infradead.org>
15335 L:      linux-abi-devel@lists.sourceforge.net
15336 S:      Maintained
15337 F:      include/linux/personality.h
15338 F:      include/uapi/linux/personality.h
15339
15340 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15341 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15342 L:      linux-input@vger.kernel.org
15343 S:      Maintained
15344 F:      Documentation/input/devices/pxrc.rst
15345 F:      drivers/input/joystick/pxrc.c
15346
15347 PHONET PROTOCOL
15348 M:      Remi Denis-Courmont <courmisch@gmail.com>
15349 S:      Supported
15350 F:      Documentation/networking/phonet.rst
15351 F:      include/linux/phonet.h
15352 F:      include/net/phonet/
15353 F:      include/uapi/linux/phonet.h
15354 F:      net/phonet/
15355
15356 PHRAM MTD DRIVER
15357 M:      Joern Engel <joern@lazybastard.org>
15358 L:      linux-mtd@lists.infradead.org
15359 S:      Maintained
15360 F:      drivers/mtd/devices/phram.c
15361
15362 PICOLCD HID DRIVER
15363 M:      Bruno Prémont <bonbons@linux-vserver.org>
15364 L:      linux-input@vger.kernel.org
15365 S:      Maintained
15366 F:      drivers/hid/hid-picolcd*
15367
15368 PIDFD API
15369 M:      Christian Brauner <christian@brauner.io>
15370 L:      linux-kernel@vger.kernel.org
15371 S:      Maintained
15372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15373 F:      samples/pidfd/
15374 F:      tools/testing/selftests/clone3/
15375 F:      tools/testing/selftests/pid_namespace/
15376 F:      tools/testing/selftests/pidfd/
15377 K:      (?i)pidfd
15378 K:      (?i)clone3
15379 K:      \b(clone_args|kernel_clone_args)\b
15380
15381 PIN CONTROL SUBSYSTEM
15382 M:      Linus Walleij <linus.walleij@linaro.org>
15383 L:      linux-gpio@vger.kernel.org
15384 S:      Maintained
15385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15386 F:      Documentation/devicetree/bindings/pinctrl/
15387 F:      Documentation/driver-api/pin-control.rst
15388 F:      drivers/pinctrl/
15389 F:      include/linux/pinctrl/
15390
15391 PIN CONTROLLER - AMD
15392 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15393 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15394 S:      Maintained
15395 F:      drivers/pinctrl/pinctrl-amd.c
15396
15397 PIN CONTROLLER - FREESCALE
15398 M:      Dong Aisheng <aisheng.dong@nxp.com>
15399 M:      Fabio Estevam <festevam@gmail.com>
15400 M:      Shawn Guo <shawnguo@kernel.org>
15401 M:      Stefan Agner <stefan@agner.ch>
15402 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15403 L:      linux-gpio@vger.kernel.org
15404 S:      Maintained
15405 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15406 F:      drivers/pinctrl/freescale/
15407
15408 PIN CONTROLLER - INTEL
15409 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15410 M:      Andy Shevchenko <andy@kernel.org>
15411 S:      Maintained
15412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15413 F:      drivers/pinctrl/intel/
15414
15415 PIN CONTROLLER - KEEMBAY
15416 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15417 S:      Supported
15418 F:      drivers/pinctrl/pinctrl-keembay*
15419
15420 PIN CONTROLLER - MEDIATEK
15421 M:      Sean Wang <sean.wang@kernel.org>
15422 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15423 S:      Maintained
15424 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15425 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15426 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15427 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15428 F:      drivers/pinctrl/mediatek/
15429
15430 PIN CONTROLLER - MICROCHIP AT91
15431 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15433 L:      linux-gpio@vger.kernel.org
15434 S:      Supported
15435 F:      drivers/gpio/gpio-sama5d2-piobu.c
15436 F:      drivers/pinctrl/pinctrl-at91*
15437
15438 PIN CONTROLLER - QUALCOMM
15439 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15440 L:      linux-arm-msm@vger.kernel.org
15441 S:      Maintained
15442 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15443 F:      drivers/pinctrl/qcom/
15444
15445 PIN CONTROLLER - RENESAS
15446 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15447 L:      linux-renesas-soc@vger.kernel.org
15448 S:      Supported
15449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15450 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15451 F:      drivers/pinctrl/renesas/
15452
15453 PIN CONTROLLER - SAMSUNG
15454 M:      Tomasz Figa <tomasz.figa@gmail.com>
15455 M:      Krzysztof Kozlowski <krzk@kernel.org>
15456 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15457 R:      Alim Akhtar <alim.akhtar@samsung.com>
15458 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15459 L:      linux-samsung-soc@vger.kernel.org
15460 S:      Maintained
15461 C:      irc://irc.libera.chat/linux-exynos
15462 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15464 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15465 F:      drivers/pinctrl/samsung/
15466 F:      include/dt-bindings/pinctrl/samsung.h
15467
15468 PIN CONTROLLER - SINGLE
15469 M:      Tony Lindgren <tony@atomide.com>
15470 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15472 L:      linux-omap@vger.kernel.org
15473 S:      Maintained
15474 F:      drivers/pinctrl/pinctrl-single.c
15475
15476 PIN CONTROLLER - THUNDERBAY
15477 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15478 S:      Supported
15479 F:      drivers/pinctrl/pinctrl-thunderbay.c
15480
15481 PKTCDVD DRIVER
15482 M:      linux-block@vger.kernel.org
15483 S:      Orphan
15484 F:      drivers/block/pktcdvd.c
15485 F:      include/linux/pktcdvd.h
15486 F:      include/uapi/linux/pktcdvd.h
15487
15488 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15489 M:      Tomasz Duszynski <tduszyns@gmail.com>
15490 S:      Maintained
15491 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15492 F:      drivers/iio/chemical/pms7003.c
15493
15494 PLDMFW LIBRARY
15495 M:      Jacob Keller <jacob.e.keller@intel.com>
15496 S:      Maintained
15497 F:      Documentation/driver-api/pldmfw/
15498 F:      include/linux/pldmfw.h
15499 F:      lib/pldmfw/
15500
15501 PLX DMA DRIVER
15502 M:      Logan Gunthorpe <logang@deltatee.com>
15503 S:      Maintained
15504 F:      drivers/dma/plx_dma.c
15505
15506 PM6764TR DRIVER
15507 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15508 L:      linux-hwmon@vger.kernel.org
15509 S:      Maintained
15510 F:      Documentation/hwmon/pm6764tr.rst
15511 F:      drivers/hwmon/pmbus/pm6764tr.c
15512
15513 PM-GRAPH UTILITY
15514 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15515 L:      linux-pm@vger.kernel.org
15516 S:      Supported
15517 W:      https://01.org/pm-graph
15518 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15519 T:      git git://github.com/intel/pm-graph
15520 F:      tools/power/pm-graph
15521
15522 PMBUS HARDWARE MONITORING DRIVERS
15523 M:      Guenter Roeck <linux@roeck-us.net>
15524 L:      linux-hwmon@vger.kernel.org
15525 S:      Maintained
15526 W:      http://hwmon.wiki.kernel.org/
15527 W:      http://www.roeck-us.net/linux/drivers/
15528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15529 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15530 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15531 F:      Documentation/hwmon/adm1275.rst
15532 F:      Documentation/hwmon/ibm-cffps.rst
15533 F:      Documentation/hwmon/ir35221.rst
15534 F:      Documentation/hwmon/lm25066.rst
15535 F:      Documentation/hwmon/ltc2978.rst
15536 F:      Documentation/hwmon/ltc3815.rst
15537 F:      Documentation/hwmon/max16064.rst
15538 F:      Documentation/hwmon/max20751.rst
15539 F:      Documentation/hwmon/max31785.rst
15540 F:      Documentation/hwmon/max34440.rst
15541 F:      Documentation/hwmon/max8688.rst
15542 F:      Documentation/hwmon/pmbus-core.rst
15543 F:      Documentation/hwmon/pmbus.rst
15544 F:      Documentation/hwmon/tps40422.rst
15545 F:      Documentation/hwmon/ucd9000.rst
15546 F:      Documentation/hwmon/ucd9200.rst
15547 F:      Documentation/hwmon/zl6100.rst
15548 F:      drivers/hwmon/pmbus/
15549 F:      include/linux/pmbus.h
15550
15551 PMC SIERRA MaxRAID DRIVER
15552 L:      linux-scsi@vger.kernel.org
15553 S:      Orphan
15554 W:      http://www.pmc-sierra.com/
15555 F:      drivers/scsi/pmcraid.*
15556
15557 PMC SIERRA PM8001 DRIVER
15558 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15559 L:      linux-scsi@vger.kernel.org
15560 S:      Supported
15561 F:      drivers/scsi/pm8001/
15562
15563 PNI RM3100 IIO DRIVER
15564 M:      Song Qiang <songqiang1304521@gmail.com>
15565 L:      linux-iio@vger.kernel.org
15566 S:      Maintained
15567 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15568 F:      drivers/iio/magnetometer/rm3100*
15569
15570 PNP SUPPORT
15571 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15572 L:      linux-acpi@vger.kernel.org
15573 S:      Maintained
15574 F:      drivers/pnp/
15575 F:      include/linux/pnp.h
15576
15577 POSIX CLOCKS and TIMERS
15578 M:      Thomas Gleixner <tglx@linutronix.de>
15579 L:      linux-kernel@vger.kernel.org
15580 S:      Maintained
15581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15582 F:      fs/timerfd.c
15583 F:      include/linux/time_namespace.h
15584 F:      include/linux/timer*
15585 F:      kernel/time/*timer*
15586 F:      kernel/time/namespace.c
15587
15588 POWER MANAGEMENT CORE
15589 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15590 L:      linux-pm@vger.kernel.org
15591 S:      Supported
15592 B:      https://bugzilla.kernel.org
15593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15594 F:      drivers/base/power/
15595 F:      drivers/powercap/
15596 F:      include/linux/intel_rapl.h
15597 F:      include/linux/pm.h
15598 F:      include/linux/pm_*
15599 F:      include/linux/powercap.h
15600 F:      kernel/configs/nopm.config
15601
15602 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15603 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15604 L:      linux-pm@vger.kernel.org
15605 S:      Supported
15606 B:      https://bugzilla.kernel.org
15607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15608 F:      drivers/powercap/dtpm*
15609 F:      include/linux/dtpm.h
15610
15611 POWER STATE COORDINATION INTERFACE (PSCI)
15612 M:      Mark Rutland <mark.rutland@arm.com>
15613 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15615 S:      Maintained
15616 F:      drivers/firmware/psci/
15617 F:      include/linux/psci.h
15618 F:      include/uapi/linux/psci.h
15619
15620 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15621 M:      Sebastian Reichel <sre@kernel.org>
15622 L:      linux-pm@vger.kernel.org
15623 S:      Maintained
15624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15625 F:      Documentation/ABI/testing/sysfs-class-power
15626 F:      Documentation/devicetree/bindings/power/supply/
15627 F:      drivers/power/supply/
15628 F:      include/linux/power/
15629 F:      include/linux/power_supply.h
15630
15631 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15632 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15633 L:      linuxppc-dev@lists.ozlabs.org
15634 S:      Maintained
15635 F:      drivers/char/powernv-op-panel.c
15636
15637 PPP OVER ATM (RFC 2364)
15638 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15639 S:      Maintained
15640 F:      include/uapi/linux/atmppp.h
15641 F:      net/atm/pppoatm.c
15642
15643 PPP OVER ETHERNET
15644 M:      Michal Ostrowski <mostrows@earthlink.net>
15645 S:      Maintained
15646 F:      drivers/net/ppp/pppoe.c
15647 F:      drivers/net/ppp/pppox.c
15648
15649 PPP OVER L2TP
15650 M:      James Chapman <jchapman@katalix.com>
15651 S:      Maintained
15652 F:      include/linux/if_pppol2tp.h
15653 F:      include/uapi/linux/if_pppol2tp.h
15654 F:      net/l2tp/l2tp_ppp.c
15655
15656 PPP PROTOCOL DRIVERS AND COMPRESSORS
15657 M:      Paul Mackerras <paulus@samba.org>
15658 L:      linux-ppp@vger.kernel.org
15659 S:      Maintained
15660 F:      drivers/net/ppp/ppp_*
15661
15662 PPS SUPPORT
15663 M:      Rodolfo Giometti <giometti@enneenne.com>
15664 L:      linuxpps@ml.enneenne.com (subscribers-only)
15665 S:      Maintained
15666 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15667 F:      Documentation/ABI/testing/sysfs-pps
15668 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15669 F:      Documentation/driver-api/pps.rst
15670 F:      drivers/pps/
15671 F:      include/linux/pps*.h
15672 F:      include/uapi/linux/pps.h
15673
15674 PPTP DRIVER
15675 M:      Dmitry Kozlov <xeb@mail.ru>
15676 L:      netdev@vger.kernel.org
15677 S:      Maintained
15678 W:      http://sourceforge.net/projects/accel-pptp
15679 F:      drivers/net/ppp/pptp.c
15680
15681 PRESSURE STALL INFORMATION (PSI)
15682 M:      Johannes Weiner <hannes@cmpxchg.org>
15683 M:      Suren Baghdasaryan <surenb@google.com>
15684 S:      Maintained
15685 F:      include/linux/psi*
15686 F:      kernel/sched/psi.c
15687
15688 PRINTK
15689 M:      Petr Mladek <pmladek@suse.com>
15690 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15691 R:      Steven Rostedt <rostedt@goodmis.org>
15692 R:      John Ogness <john.ogness@linutronix.de>
15693 S:      Maintained
15694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
15695 F:      include/linux/printk.h
15696 F:      kernel/printk/
15697
15698 PRINTK INDEXING
15699 R:      Chris Down <chris@chrisdown.name>
15700 S:      Maintained
15701 F:      kernel/printk/index.c
15702
15703 PROC FILESYSTEM
15704 L:      linux-kernel@vger.kernel.org
15705 L:      linux-fsdevel@vger.kernel.org
15706 S:      Maintained
15707 F:      Documentation/filesystems/proc.rst
15708 F:      fs/proc/
15709 F:      include/linux/proc_fs.h
15710 F:      tools/testing/selftests/proc/
15711
15712 PROC SYSCTL
15713 M:      Luis Chamberlain <mcgrof@kernel.org>
15714 M:      Kees Cook <keescook@chromium.org>
15715 M:      Iurii Zaikin <yzaikin@google.com>
15716 L:      linux-kernel@vger.kernel.org
15717 L:      linux-fsdevel@vger.kernel.org
15718 S:      Maintained
15719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
15720 F:      fs/proc/proc_sysctl.c
15721 F:      include/linux/sysctl.h
15722 F:      kernel/sysctl-test.c
15723 F:      kernel/sysctl.c
15724 F:      tools/testing/selftests/sysctl/
15725
15726 PS3 NETWORK SUPPORT
15727 M:      Geoff Levand <geoff@infradead.org>
15728 L:      netdev@vger.kernel.org
15729 L:      linuxppc-dev@lists.ozlabs.org
15730 S:      Maintained
15731 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15732
15733 PS3 PLATFORM SUPPORT
15734 M:      Geoff Levand <geoff@infradead.org>
15735 L:      linuxppc-dev@lists.ozlabs.org
15736 S:      Maintained
15737 F:      arch/powerpc/boot/ps3*
15738 F:      arch/powerpc/include/asm/lv1call.h
15739 F:      arch/powerpc/include/asm/ps3*.h
15740 F:      arch/powerpc/platforms/ps3/
15741 F:      drivers/*/ps3*
15742 F:      drivers/ps3/
15743 F:      drivers/rtc/rtc-ps3.c
15744 F:      drivers/usb/host/*ps3.c
15745 F:      sound/ppc/snd_ps3*
15746
15747 PS3VRAM DRIVER
15748 M:      Jim Paris <jim@jtan.com>
15749 M:      Geoff Levand <geoff@infradead.org>
15750 L:      linuxppc-dev@lists.ozlabs.org
15751 S:      Maintained
15752 F:      drivers/block/ps3vram.c
15753
15754 PSAMPLE PACKET SAMPLING SUPPORT
15755 M:      Yotam Gigi <yotam.gi@gmail.com>
15756 S:      Maintained
15757 F:      include/net/psample.h
15758 F:      include/uapi/linux/psample.h
15759 F:      net/psample
15760
15761 PSTORE FILESYSTEM
15762 M:      Kees Cook <keescook@chromium.org>
15763 M:      Anton Vorontsov <anton@enomsg.org>
15764 M:      Colin Cross <ccross@android.com>
15765 M:      Tony Luck <tony.luck@intel.com>
15766 S:      Maintained
15767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15768 F:      Documentation/admin-guide/ramoops.rst
15769 F:      Documentation/admin-guide/pstore-blk.rst
15770 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15771 F:      drivers/acpi/apei/erst.c
15772 F:      drivers/firmware/efi/efi-pstore.c
15773 F:      fs/pstore/
15774 F:      include/linux/pstore*
15775 K:      \b(pstore|ramoops)
15776
15777 PTP HARDWARE CLOCK SUPPORT
15778 M:      Richard Cochran <richardcochran@gmail.com>
15779 L:      netdev@vger.kernel.org
15780 S:      Maintained
15781 W:      http://linuxptp.sourceforge.net/
15782 F:      Documentation/ABI/testing/sysfs-ptp
15783 F:      Documentation/driver-api/ptp.rst
15784 F:      drivers/net/phy/dp83640*
15785 F:      drivers/ptp/*
15786 F:      include/linux/ptp_cl*
15787
15788 PTP VIRTUAL CLOCK SUPPORT
15789 M:      Yangbo Lu <yangbo.lu@nxp.com>
15790 L:      netdev@vger.kernel.org
15791 S:      Maintained
15792 F:      drivers/ptp/ptp_vclock.c
15793 F:      net/ethtool/phc_vclocks.c
15794
15795 PTRACE SUPPORT
15796 M:      Oleg Nesterov <oleg@redhat.com>
15797 S:      Maintained
15798 F:      arch/*/*/ptrace*.c
15799 F:      arch/*/include/asm/ptrace*.h
15800 F:      arch/*/ptrace*.c
15801 F:      include/asm-generic/syscall.h
15802 F:      include/linux/ptrace.h
15803 F:      include/linux/regset.h
15804 F:      include/linux/tracehook.h
15805 F:      include/uapi/linux/ptrace.h
15806 F:      include/uapi/linux/ptrace.h
15807 F:      kernel/ptrace.c
15808
15809 PULSE8-CEC DRIVER
15810 M:      Hans Verkuil <hverkuil@xs4all.nl>
15811 L:      linux-media@vger.kernel.org
15812 S:      Maintained
15813 T:      git git://linuxtv.org/media_tree.git
15814 F:      Documentation/admin-guide/media/pulse8-cec.rst
15815 F:      drivers/media/cec/usb/pulse8/
15816
15817 PVRUSB2 VIDEO4LINUX DRIVER
15818 M:      Mike Isely <isely@pobox.com>
15819 L:      pvrusb2@isely.net       (subscribers-only)
15820 L:      linux-media@vger.kernel.org
15821 S:      Maintained
15822 W:      http://www.isely.net/pvrusb2/
15823 T:      git git://linuxtv.org/media_tree.git
15824 F:      Documentation/driver-api/media/drivers/pvrusb2*
15825 F:      drivers/media/usb/pvrusb2/
15826
15827 PWC WEBCAM DRIVER
15828 M:      Hans Verkuil <hverkuil@xs4all.nl>
15829 L:      linux-media@vger.kernel.org
15830 S:      Odd Fixes
15831 T:      git git://linuxtv.org/media_tree.git
15832 F:      drivers/media/usb/pwc/*
15833 F:      include/trace/events/pwc.h
15834
15835 PWM FAN DRIVER
15836 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15837 L:      linux-hwmon@vger.kernel.org
15838 S:      Supported
15839 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15840 F:      Documentation/hwmon/pwm-fan.rst
15841 F:      drivers/hwmon/pwm-fan.c
15842
15843 PWM IR Transmitter
15844 M:      Sean Young <sean@mess.org>
15845 L:      linux-media@vger.kernel.org
15846 S:      Maintained
15847 F:      drivers/media/rc/pwm-ir-tx.c
15848
15849 PWM SUBSYSTEM
15850 M:      Thierry Reding <thierry.reding@gmail.com>
15851 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15852 M:      Lee Jones <lee.jones@linaro.org>
15853 L:      linux-pwm@vger.kernel.org
15854 S:      Maintained
15855 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15857 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15858 F:      Documentation/devicetree/bindings/pwm/
15859 F:      Documentation/driver-api/pwm.rst
15860 F:      drivers/gpio/gpio-mvebu.c
15861 F:      drivers/pwm/
15862 F:      drivers/video/backlight/pwm_bl.c
15863 F:      include/linux/pwm.h
15864 F:      include/linux/pwm_backlight.h
15865 K:      pwm_(config|apply_state|ops)
15866
15867 PXA GPIO DRIVER
15868 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15869 L:      linux-gpio@vger.kernel.org
15870 S:      Maintained
15871 F:      drivers/gpio/gpio-pxa.c
15872
15873 PXA MMCI DRIVER
15874 S:      Orphan
15875
15876 PXA RTC DRIVER
15877 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15878 L:      linux-rtc@vger.kernel.org
15879 S:      Maintained
15880
15881 PXA2xx/PXA3xx SUPPORT
15882 M:      Daniel Mack <daniel@zonque.org>
15883 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15884 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15886 S:      Maintained
15887 T:      git git://github.com/hzhuang1/linux.git
15888 T:      git git://github.com/rjarzmik/linux.git
15889 F:      arch/arm/boot/dts/pxa*
15890 F:      arch/arm/mach-pxa/
15891 F:      drivers/dma/pxa*
15892 F:      drivers/pcmcia/pxa2xx*
15893 F:      drivers/pinctrl/pxa/
15894 F:      drivers/spi/spi-pxa2xx*
15895 F:      drivers/usb/gadget/udc/pxa2*
15896 F:      include/sound/pxa2xx-lib.h
15897 F:      sound/arm/pxa*
15898 F:      sound/soc/pxa/
15899
15900 QAT DRIVER
15901 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15902 L:      qat-linux@intel.com
15903 S:      Supported
15904 F:      drivers/crypto/qat/
15905
15906 QCOM AUDIO (ASoC) DRIVERS
15907 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15908 M:      Banajit Goswami <bgoswami@codeaurora.org>
15909 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15910 S:      Supported
15911 F:      sound/soc/codecs/lpass-va-macro.c
15912 F:      sound/soc/codecs/lpass-wsa-macro.*
15913 F:      sound/soc/codecs/msm8916-wcd-analog.c
15914 F:      sound/soc/codecs/msm8916-wcd-digital.c
15915 F:      sound/soc/codecs/wcd9335.*
15916 F:      sound/soc/codecs/wcd934x.c
15917 F:      sound/soc/codecs/wcd-clsh-v2.*
15918 F:      sound/soc/codecs/wsa881x.c
15919 F:      sound/soc/qcom/
15920
15921 QCOM EMBEDDED USB DEBUGGER (EUD)
15922 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
15923 L:      linux-arm-msm@vger.kernel.org
15924 S:      Maintained
15925 F:      Documentation/ABI/testing/sysfs-driver-eud
15926 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
15927 F:      drivers/usb/misc/qcom_eud.c
15928
15929 QCOM IPA DRIVER
15930 M:      Alex Elder <elder@kernel.org>
15931 L:      netdev@vger.kernel.org
15932 S:      Supported
15933 F:      drivers/net/ipa/
15934
15935 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15936 M:      Gabriel Somlo <somlo@cmu.edu>
15937 M:      "Michael S. Tsirkin" <mst@redhat.com>
15938 L:      qemu-devel@nongnu.org
15939 S:      Maintained
15940 F:      drivers/firmware/qemu_fw_cfg.c
15941 F:      include/uapi/linux/qemu_fw_cfg.h
15942
15943 QIB DRIVER
15944 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15945 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15946 L:      linux-rdma@vger.kernel.org
15947 S:      Supported
15948 F:      drivers/infiniband/hw/qib/
15949
15950 QLOGIC QL41xxx FCOE DRIVER
15951 M:      Saurav Kashyap <skashyap@marvell.com>
15952 M:      Javed Hasan <jhasan@marvell.com>
15953 M:      GR-QLogic-Storage-Upstream@marvell.com
15954 L:      linux-scsi@vger.kernel.org
15955 S:      Supported
15956 F:      drivers/scsi/qedf/
15957
15958 QLOGIC QL41xxx ISCSI DRIVER
15959 M:      Nilesh Javali <njavali@marvell.com>
15960 M:      Manish Rangankar <mrangankar@marvell.com>
15961 M:      GR-QLogic-Storage-Upstream@marvell.com
15962 L:      linux-scsi@vger.kernel.org
15963 S:      Supported
15964 F:      drivers/scsi/qedi/
15965
15966 QLOGIC QL4xxx ETHERNET DRIVER
15967 M:      Ariel Elior <aelior@marvell.com>
15968 M:      Manish Chopra <manishc@marvell.com>
15969 L:      netdev@vger.kernel.org
15970 S:      Supported
15971 F:      drivers/net/ethernet/qlogic/qed/
15972 F:      drivers/net/ethernet/qlogic/qede/
15973 F:      include/linux/qed/
15974
15975 QLOGIC QL4xxx RDMA DRIVER
15976 M:      Michal Kalderon <mkalderon@marvell.com>
15977 M:      Ariel Elior <aelior@marvell.com>
15978 L:      linux-rdma@vger.kernel.org
15979 S:      Supported
15980 F:      drivers/infiniband/hw/qedr/
15981 F:      include/uapi/rdma/qedr-abi.h
15982
15983 QLOGIC QLA1280 SCSI DRIVER
15984 M:      Michael Reed <mdr@sgi.com>
15985 L:      linux-scsi@vger.kernel.org
15986 S:      Maintained
15987 F:      drivers/scsi/qla1280.[ch]
15988
15989 QLOGIC QLA2XXX FC-SCSI DRIVER
15990 M:      Nilesh Javali <njavali@marvell.com>
15991 M:      GR-QLogic-Storage-Upstream@marvell.com
15992 L:      linux-scsi@vger.kernel.org
15993 S:      Supported
15994 F:      drivers/scsi/qla2xxx/
15995
15996 QLOGIC QLA3XXX NETWORK DRIVER
15997 M:      GR-Linux-NIC-Dev@marvell.com
15998 L:      netdev@vger.kernel.org
15999 S:      Supported
16000 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16001
16002 QLOGIC QLA4XXX iSCSI DRIVER
16003 M:      Nilesh Javali <njavali@marvell.com>
16004 M:      Manish Rangankar <mrangankar@marvell.com>
16005 M:      GR-QLogic-Storage-Upstream@marvell.com
16006 L:      linux-scsi@vger.kernel.org
16007 S:      Supported
16008 F:      drivers/scsi/qla4xxx/
16009
16010 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16011 M:      Shahed Shaikh <shshaikh@marvell.com>
16012 M:      Manish Chopra <manishc@marvell.com>
16013 M:      GR-Linux-NIC-Dev@marvell.com
16014 L:      netdev@vger.kernel.org
16015 S:      Supported
16016 F:      drivers/net/ethernet/qlogic/qlcnic/
16017
16018 QLOGIC QLGE 10Gb ETHERNET DRIVER
16019 M:      Manish Chopra <manishc@marvell.com>
16020 M:      GR-Linux-NIC-Dev@marvell.com
16021 M:      Coiby Xu <coiby.xu@gmail.com>
16022 L:      netdev@vger.kernel.org
16023 S:      Supported
16024 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16025 F:      drivers/staging/qlge/
16026
16027 QM1D1B0004 MEDIA DRIVER
16028 M:      Akihiro Tsukada <tskd08@gmail.com>
16029 L:      linux-media@vger.kernel.org
16030 S:      Odd Fixes
16031 F:      drivers/media/tuners/qm1d1b0004*
16032
16033 QM1D1C0042 MEDIA DRIVER
16034 M:      Akihiro Tsukada <tskd08@gmail.com>
16035 L:      linux-media@vger.kernel.org
16036 S:      Odd Fixes
16037 F:      drivers/media/tuners/qm1d1c0042*
16038
16039 QNX4 FILESYSTEM
16040 M:      Anders Larsen <al@alarsen.net>
16041 S:      Maintained
16042 W:      http://www.alarsen.net/linux/qnx4fs/
16043 F:      fs/qnx4/
16044 F:      include/uapi/linux/qnx4_fs.h
16045 F:      include/uapi/linux/qnxtypes.h
16046
16047 QORIQ DPAA2 FSL-MC BUS DRIVER
16048 M:      Stuart Yoder <stuyoder@gmail.com>
16049 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16050 L:      linux-kernel@vger.kernel.org
16051 S:      Maintained
16052 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16053 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16054 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16055 F:      drivers/bus/fsl-mc/
16056 F:      include/uapi/linux/fsl_mc.h
16057
16058 QT1010 MEDIA DRIVER
16059 M:      Antti Palosaari <crope@iki.fi>
16060 L:      linux-media@vger.kernel.org
16061 S:      Maintained
16062 W:      https://linuxtv.org
16063 W:      http://palosaari.fi/linux/
16064 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16065 T:      git git://linuxtv.org/anttip/media_tree.git
16066 F:      drivers/media/tuners/qt1010*
16067
16068 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16069 M:      Kalle Valo <kvalo@kernel.org>
16070 L:      ath10k@lists.infradead.org
16071 S:      Supported
16072 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16074 F:      drivers/net/wireless/ath/ath10k/
16075 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16076
16077 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16078 M:      Kalle Valo <kvalo@kernel.org>
16079 L:      ath11k@lists.infradead.org
16080 S:      Supported
16081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16082 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16083 F:      drivers/net/wireless/ath/ath11k/
16084
16085 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16086 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16087 L:      linux-wireless@vger.kernel.org
16088 S:      Maintained
16089 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16090 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16091 F:      drivers/net/wireless/ath/ath9k/
16092
16093 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16094 M:      Stephan Gerhold <stephan@gerhold.net>
16095 L:      netdev@vger.kernel.org
16096 L:      linux-arm-msm@vger.kernel.org
16097 S:      Maintained
16098 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16099 F:      drivers/net/wwan/qcom_bam_dmux.c
16100
16101 QUALCOMM CAMERA SUBSYSTEM DRIVER
16102 M:      Robert Foss <robert.foss@linaro.org>
16103 M:      Todor Tomov <todor.too@gmail.com>
16104 L:      linux-media@vger.kernel.org
16105 S:      Maintained
16106 F:      Documentation/admin-guide/media/qcom_camss.rst
16107 F:      Documentation/devicetree/bindings/media/*camss*
16108 F:      drivers/media/platform/qcom/camss/
16109
16110 QUALCOMM CLOCK DRIVERS
16111 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16112 L:      linux-arm-msm@vger.kernel.org
16113 S:      Supported
16114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16115 F:      Documentation/devicetree/bindings/clock/qcom,*
16116 F:      drivers/clk/qcom/
16117 F:      include/dt-bindings/clock/qcom,*
16118
16119 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16120 M:      Niklas Cassel <nks@flawful.org>
16121 L:      linux-pm@vger.kernel.org
16122 L:      linux-arm-msm@vger.kernel.org
16123 S:      Maintained
16124 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
16125 F:      drivers/soc/qcom/cpr.c
16126
16127 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16128 M:      Ilia Lin <ilia.lin@kernel.org>
16129 L:      linux-pm@vger.kernel.org
16130 S:      Maintained
16131 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
16132 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16133
16134 QUALCOMM CRYPTO DRIVERS
16135 M:      Thara Gopinath <thara.gopinath@linaro.org>
16136 L:      linux-crypto@vger.kernel.org
16137 L:      linux-arm-msm@vger.kernel.org
16138 S:      Maintained
16139 F:      drivers/crypto/qce/
16140
16141 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16142 M:      Timur Tabi <timur@kernel.org>
16143 L:      netdev@vger.kernel.org
16144 S:      Maintained
16145 F:      drivers/net/ethernet/qualcomm/emac/
16146
16147 QUALCOMM ETHQOS ETHERNET DRIVER
16148 M:      Vinod Koul <vkoul@kernel.org>
16149 L:      netdev@vger.kernel.org
16150 S:      Maintained
16151 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16152 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16153
16154 QUALCOMM FASTRPC DRIVER
16155 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16156 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16157 L:      linux-arm-msm@vger.kernel.org
16158 S:      Maintained
16159 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16160 F:      drivers/misc/fastrpc.c
16161 F:      include/uapi/misc/fastrpc.h
16162
16163 QUALCOMM HEXAGON ARCHITECTURE
16164 M:      Brian Cain <bcain@codeaurora.org>
16165 L:      linux-hexagon@vger.kernel.org
16166 S:      Supported
16167 F:      arch/hexagon/
16168
16169 QUALCOMM HIDMA DRIVER
16170 M:      Sinan Kaya <okaya@kernel.org>
16171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16172 L:      linux-arm-msm@vger.kernel.org
16173 L:      dmaengine@vger.kernel.org
16174 S:      Supported
16175 F:      drivers/dma/qcom/hidma*
16176
16177 QUALCOMM I2C CCI DRIVER
16178 M:      Loic Poulain <loic.poulain@linaro.org>
16179 M:      Robert Foss <robert.foss@linaro.org>
16180 L:      linux-i2c@vger.kernel.org
16181 L:      linux-arm-msm@vger.kernel.org
16182 S:      Maintained
16183 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16184 F:      drivers/i2c/busses/i2c-qcom-cci.c
16185
16186 QUALCOMM IOMMU
16187 M:      Rob Clark <robdclark@gmail.com>
16188 L:      iommu@lists.linux-foundation.org
16189 L:      linux-arm-msm@vger.kernel.org
16190 S:      Maintained
16191 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16192
16193 QUALCOMM IPC ROUTER (QRTR) DRIVER
16194 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16195 L:      linux-arm-msm@vger.kernel.org
16196 S:      Maintained
16197 F:      include/trace/events/qrtr.h
16198 F:      include/uapi/linux/qrtr.h
16199 F:      net/qrtr/
16200
16201 QUALCOMM IPCC MAILBOX DRIVER
16202 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16203 L:      linux-arm-msm@vger.kernel.org
16204 S:      Supported
16205 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16206 F:      drivers/mailbox/qcom-ipcc.c
16207 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16208
16209 QUALCOMM IPQ4019 USB PHY DRIVER
16210 M:      Robert Marko <robert.marko@sartura.hr>
16211 M:      Luka Perkov <luka.perkov@sartura.hr>
16212 L:      linux-arm-msm@vger.kernel.org
16213 S:      Maintained
16214 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16215 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16216
16217 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16218 M:      Robert Marko <robert.marko@sartura.hr>
16219 M:      Luka Perkov <luka.perkov@sartura.hr>
16220 L:      linux-arm-msm@vger.kernel.org
16221 S:      Maintained
16222 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16223 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16224
16225 QUALCOMM NAND CONTROLLER DRIVER
16226 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16227 L:      linux-mtd@lists.infradead.org
16228 L:      linux-arm-msm@vger.kernel.org
16229 S:      Maintained
16230 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16231 F:      drivers/mtd/nand/raw/qcom_nandc.c
16232
16233 QUALCOMM RMNET DRIVER
16234 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16235 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16236 L:      netdev@vger.kernel.org
16237 S:      Maintained
16238 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16239 F:      drivers/net/ethernet/qualcomm/rmnet/
16240 F:      include/linux/if_rmnet.h
16241
16242 QUALCOMM TSENS THERMAL DRIVER
16243 M:      Amit Kucheria <amitk@kernel.org>
16244 M:      Thara Gopinath <thara.gopinath@linaro.org>
16245 L:      linux-pm@vger.kernel.org
16246 L:      linux-arm-msm@vger.kernel.org
16247 S:      Maintained
16248 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16249 F:      drivers/thermal/qcom/
16250
16251 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16252 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16253 L:      linux-media@vger.kernel.org
16254 L:      linux-arm-msm@vger.kernel.org
16255 S:      Maintained
16256 T:      git git://linuxtv.org/media_tree.git
16257 F:      Documentation/devicetree/bindings/media/*venus*
16258 F:      drivers/media/platform/qcom/venus/
16259
16260 QUALCOMM WCN36XX WIRELESS DRIVER
16261 M:      Loic Poulain <loic.poulain@linaro.org>
16262 L:      wcn36xx@lists.infradead.org
16263 S:      Supported
16264 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16265 F:      drivers/net/wireless/ath/wcn36xx/
16266
16267 QUANTENNA QTNFMAC WIRELESS DRIVER
16268 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16269 R:      Sergey Matyukevich <geomatsi@gmail.com>
16270 L:      linux-wireless@vger.kernel.org
16271 S:      Maintained
16272 F:      drivers/net/wireless/quantenna
16273
16274 RADEON and AMDGPU DRM DRIVERS
16275 M:      Alex Deucher <alexander.deucher@amd.com>
16276 M:      Christian König <christian.koenig@amd.com>
16277 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16278 L:      amd-gfx@lists.freedesktop.org
16279 S:      Supported
16280 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16281 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16282 C:      irc://irc.oftc.net/radeon
16283 F:      drivers/gpu/drm/amd/
16284 F:      drivers/gpu/drm/radeon/
16285 F:      include/uapi/drm/amdgpu_drm.h
16286 F:      include/uapi/drm/radeon_drm.h
16287
16288 RADEON FRAMEBUFFER DISPLAY DRIVER
16289 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16290 L:      linux-fbdev@vger.kernel.org
16291 S:      Maintained
16292 F:      drivers/video/fbdev/aty/radeon*
16293 F:      include/uapi/linux/radeonfb.h
16294
16295 RADIOSHARK RADIO DRIVER
16296 M:      Hans Verkuil <hverkuil@xs4all.nl>
16297 L:      linux-media@vger.kernel.org
16298 S:      Maintained
16299 T:      git git://linuxtv.org/media_tree.git
16300 F:      drivers/media/radio/radio-shark.c
16301
16302 RADIOSHARK2 RADIO DRIVER
16303 M:      Hans Verkuil <hverkuil@xs4all.nl>
16304 L:      linux-media@vger.kernel.org
16305 S:      Maintained
16306 T:      git git://linuxtv.org/media_tree.git
16307 F:      drivers/media/radio/radio-shark2.c
16308 F:      drivers/media/radio/radio-tea5777.c
16309
16310 RADOS BLOCK DEVICE (RBD)
16311 M:      Ilya Dryomov <idryomov@gmail.com>
16312 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16313 L:      ceph-devel@vger.kernel.org
16314 S:      Supported
16315 W:      http://ceph.com/
16316 T:      git git://github.com/ceph/ceph-client.git
16317 F:      Documentation/ABI/testing/sysfs-bus-rbd
16318 F:      drivers/block/rbd.c
16319 F:      drivers/block/rbd_types.h
16320
16321 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16322 M:      Paul Mackerras <paulus@samba.org>
16323 L:      linux-fbdev@vger.kernel.org
16324 S:      Maintained
16325 F:      drivers/video/fbdev/aty/aty128fb.c
16326
16327 RAINSHADOW-CEC DRIVER
16328 M:      Hans Verkuil <hverkuil@xs4all.nl>
16329 L:      linux-media@vger.kernel.org
16330 S:      Maintained
16331 T:      git git://linuxtv.org/media_tree.git
16332 F:      drivers/media/cec/usb/rainshadow/
16333
16334 RALINK MIPS ARCHITECTURE
16335 M:      John Crispin <john@phrozen.org>
16336 L:      linux-mips@vger.kernel.org
16337 S:      Maintained
16338 F:      arch/mips/ralink
16339
16340 RALINK RT2X00 WIRELESS LAN DRIVER
16341 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16342 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16343 L:      linux-wireless@vger.kernel.org
16344 S:      Maintained
16345 F:      drivers/net/wireless/ralink/rt2x00/
16346
16347 RAMDISK RAM BLOCK DEVICE DRIVER
16348 M:      Jens Axboe <axboe@kernel.dk>
16349 S:      Maintained
16350 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16351 F:      drivers/block/brd.c
16352
16353 RANCHU VIRTUAL BOARD FOR MIPS
16354 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16355 L:      linux-mips@vger.kernel.org
16356 S:      Supported
16357 F:      arch/mips/configs/generic/board-ranchu.config
16358 F:      arch/mips/generic/board-ranchu.c
16359
16360 RANDOM NUMBER DRIVER
16361 M:      "Theodore Ts'o" <tytso@mit.edu>
16362 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16363 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16364 S:      Maintained
16365 F:      drivers/char/random.c
16366 F:      drivers/virt/vmgenid.c
16367
16368 RAPIDIO SUBSYSTEM
16369 M:      Matt Porter <mporter@kernel.crashing.org>
16370 M:      Alexandre Bounine <alex.bou9@gmail.com>
16371 S:      Maintained
16372 F:      drivers/rapidio/
16373
16374 RAS INFRASTRUCTURE
16375 M:      Tony Luck <tony.luck@intel.com>
16376 M:      Borislav Petkov <bp@alien8.de>
16377 L:      linux-edac@vger.kernel.org
16378 S:      Maintained
16379 F:      Documentation/admin-guide/ras.rst
16380 F:      drivers/ras/
16381 F:      include/linux/ras.h
16382 F:      include/ras/ras_event.h
16383
16384 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16385 L:      linux-wireless@vger.kernel.org
16386 S:      Orphan
16387 F:      drivers/net/wireless/ray*
16388
16389 RC-CORE / LIRC FRAMEWORK
16390 M:      Sean Young <sean@mess.org>
16391 L:      linux-media@vger.kernel.org
16392 S:      Maintained
16393 W:      http://linuxtv.org
16394 T:      git git://linuxtv.org/media_tree.git
16395 F:      Documentation/driver-api/media/rc-core.rst
16396 F:      Documentation/userspace-api/media/rc/
16397 F:      drivers/media/rc/
16398 F:      include/media/rc-map.h
16399 F:      include/media/rc-core.h
16400 F:      include/uapi/linux/lirc.h
16401
16402 RCMM REMOTE CONTROLS DECODER
16403 M:      Patrick Lerda <patrick9876@free.fr>
16404 S:      Maintained
16405 F:      drivers/media/rc/ir-rcmm-decoder.c
16406
16407 RCUTORTURE TEST FRAMEWORK
16408 M:      "Paul E. McKenney" <paulmck@kernel.org>
16409 M:      Josh Triplett <josh@joshtriplett.org>
16410 R:      Steven Rostedt <rostedt@goodmis.org>
16411 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16412 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16413 L:      rcu@vger.kernel.org
16414 S:      Supported
16415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16416 F:      tools/testing/selftests/rcutorture
16417
16418 RDACM20 Camera Sensor
16419 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16420 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16421 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16422 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16423 L:      linux-media@vger.kernel.org
16424 S:      Maintained
16425 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16426 F:      drivers/media/i2c/max9271.c
16427 F:      drivers/media/i2c/max9271.h
16428 F:      drivers/media/i2c/rdacm20.c
16429
16430 RDACM21 Camera Sensor
16431 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16432 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16433 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16434 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16435 L:      linux-media@vger.kernel.org
16436 S:      Maintained
16437 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16438 F:      drivers/media/i2c/max9271.c
16439 F:      drivers/media/i2c/max9271.h
16440 F:      drivers/media/i2c/rdacm21.c
16441
16442 RDC R-321X SoC
16443 M:      Florian Fainelli <florian@openwrt.org>
16444 S:      Maintained
16445
16446 RDC R6040 FAST ETHERNET DRIVER
16447 M:      Florian Fainelli <f.fainelli@gmail.com>
16448 L:      netdev@vger.kernel.org
16449 S:      Maintained
16450 F:      drivers/net/ethernet/rdc/r6040.c
16451
16452 RDMAVT - RDMA verbs software
16453 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16454 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
16455 L:      linux-rdma@vger.kernel.org
16456 S:      Supported
16457 F:      drivers/infiniband/sw/rdmavt
16458
16459 RDS - RELIABLE DATAGRAM SOCKETS
16460 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16461 L:      netdev@vger.kernel.org
16462 L:      linux-rdma@vger.kernel.org
16463 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16464 S:      Supported
16465 W:      https://oss.oracle.com/projects/rds/
16466 F:      Documentation/networking/rds.rst
16467 F:      net/rds/
16468
16469 RDT - RESOURCE ALLOCATION
16470 M:      Fenghua Yu <fenghua.yu@intel.com>
16471 M:      Reinette Chatre <reinette.chatre@intel.com>
16472 L:      linux-kernel@vger.kernel.org
16473 S:      Supported
16474 F:      Documentation/x86/resctrl*
16475 F:      arch/x86/include/asm/resctrl.h
16476 F:      arch/x86/kernel/cpu/resctrl/
16477 F:      tools/testing/selftests/resctrl/
16478
16479 READ-COPY UPDATE (RCU)
16480 M:      "Paul E. McKenney" <paulmck@kernel.org>
16481 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
16482 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
16483 M:      Josh Triplett <josh@joshtriplett.org>
16484 R:      Steven Rostedt <rostedt@goodmis.org>
16485 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16486 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16487 R:      Joel Fernandes <joel@joelfernandes.org>
16488 L:      rcu@vger.kernel.org
16489 S:      Supported
16490 W:      http://www.rdrop.com/users/paulmck/RCU/
16491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16492 F:      Documentation/RCU/
16493 F:      include/linux/rcu*
16494 F:      kernel/rcu/
16495 X:      Documentation/RCU/torture.rst
16496 X:      include/linux/srcu*.h
16497 X:      kernel/rcu/srcu*.c
16498
16499 REAL TIME CLOCK (RTC) SUBSYSTEM
16500 M:      Alessandro Zummo <a.zummo@towertech.it>
16501 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16502 L:      linux-rtc@vger.kernel.org
16503 S:      Maintained
16504 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16506 F:      Documentation/admin-guide/rtc.rst
16507 F:      Documentation/devicetree/bindings/rtc/
16508 F:      drivers/rtc/
16509 F:      include/linux/platform_data/rtc-*
16510 F:      include/linux/rtc.h
16511 F:      include/linux/rtc/
16512 F:      include/uapi/linux/rtc.h
16513 F:      tools/testing/selftests/rtc/
16514
16515 REALTEK AUDIO CODECS
16516 M:      Oder Chiou <oder_chiou@realtek.com>
16517 S:      Maintained
16518 F:      include/sound/rt*.h
16519 F:      sound/soc/codecs/rt*
16520
16521 REALTEK OTTO WATCHDOG
16522 M:      Sander Vanheule <sander@svanheule.net>
16523 L:      linux-watchdog@vger.kernel.org
16524 S:      Maintained
16525 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16526 F:      drivers/watchdog/realtek_otto_wdt.c
16527
16528 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16529 M:      Linus Walleij <linus.walleij@linaro.org>
16530 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
16531 S:      Maintained
16532 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
16533 F:      drivers/net/dsa/realtek/*
16534
16535 REALTEK WIRELESS DRIVER (rtlwifi family)
16536 M:      Ping-Ke Shih <pkshih@realtek.com>
16537 L:      linux-wireless@vger.kernel.org
16538 S:      Maintained
16539 W:      https://wireless.wiki.kernel.org/
16540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16541 F:      drivers/net/wireless/realtek/rtlwifi/
16542
16543 REALTEK WIRELESS DRIVER (rtw88)
16544 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16545 L:      linux-wireless@vger.kernel.org
16546 S:      Maintained
16547 F:      drivers/net/wireless/realtek/rtw88/
16548
16549 REALTEK WIRELESS DRIVER (rtw89)
16550 M:      Ping-Ke Shih <pkshih@realtek.com>
16551 L:      linux-wireless@vger.kernel.org
16552 S:      Maintained
16553 F:      drivers/net/wireless/realtek/rtw89/
16554
16555 REDPINE WIRELESS DRIVER
16556 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16557 M:      Siva Rebbagondla <siva8118@gmail.com>
16558 L:      linux-wireless@vger.kernel.org
16559 S:      Maintained
16560 F:      drivers/net/wireless/rsi/
16561
16562 REGISTER MAP ABSTRACTION
16563 M:      Mark Brown <broonie@kernel.org>
16564 L:      linux-kernel@vger.kernel.org
16565 S:      Supported
16566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16567 F:      Documentation/devicetree/bindings/regmap/
16568 F:      drivers/base/regmap/
16569 F:      include/linux/regmap.h
16570
16571 REISERFS FILE SYSTEM
16572 L:      reiserfs-devel@vger.kernel.org
16573 S:      Supported
16574 F:      fs/reiserfs/
16575
16576 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16577 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16578 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16579 L:      linux-remoteproc@vger.kernel.org
16580 S:      Maintained
16581 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16582 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16583 F:      Documentation/devicetree/bindings/remoteproc/
16584 F:      Documentation/staging/remoteproc.rst
16585 F:      drivers/remoteproc/
16586 F:      include/linux/remoteproc.h
16587 F:      include/linux/remoteproc/
16588
16589 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16590 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16591 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16592 L:      linux-remoteproc@vger.kernel.org
16593 S:      Maintained
16594 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16595 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16596 F:      Documentation/staging/rpmsg.rst
16597 F:      drivers/rpmsg/
16598 F:      include/linux/rpmsg.h
16599 F:      include/linux/rpmsg/
16600 F:      include/uapi/linux/rpmsg.h
16601 F:      samples/rpmsg/
16602
16603 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16604 M:      Stephan Gerhold <stephan@gerhold.net>
16605 L:      netdev@vger.kernel.org
16606 L:      linux-remoteproc@vger.kernel.org
16607 S:      Maintained
16608 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16609
16610 RENESAS CLOCK DRIVERS
16611 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16612 L:      linux-renesas-soc@vger.kernel.org
16613 S:      Supported
16614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16615 F:      Documentation/devicetree/bindings/clock/renesas,*
16616 F:      drivers/clk/renesas/
16617
16618 RENESAS EMEV2 I2C DRIVER
16619 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16620 L:      linux-renesas-soc@vger.kernel.org
16621 S:      Supported
16622 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16623 F:      drivers/i2c/busses/i2c-emev2.c
16624
16625 RENESAS ETHERNET DRIVERS
16626 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16627 L:      netdev@vger.kernel.org
16628 L:      linux-renesas-soc@vger.kernel.org
16629 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16630 F:      drivers/net/ethernet/renesas/
16631 F:      include/linux/sh_eth.h
16632
16633 RENESAS R-CAR GYROADC DRIVER
16634 M:      Marek Vasut <marek.vasut@gmail.com>
16635 L:      linux-iio@vger.kernel.org
16636 S:      Supported
16637 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16638 F:      drivers/iio/adc/rcar-gyroadc.c
16639
16640 RENESAS R-CAR I2C DRIVERS
16641 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16642 L:      linux-renesas-soc@vger.kernel.org
16643 S:      Supported
16644 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16645 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16646 F:      drivers/i2c/busses/i2c-rcar.c
16647 F:      drivers/i2c/busses/i2c-sh_mobile.c
16648
16649 RENESAS R-CAR SATA DRIVER
16650 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16651 S:      Supported
16652 L:      linux-ide@vger.kernel.org
16653 L:      linux-renesas-soc@vger.kernel.org
16654 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
16655 F:      drivers/ata/sata_rcar.c
16656
16657 RENESAS R-CAR THERMAL DRIVERS
16658 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16659 L:      linux-renesas-soc@vger.kernel.org
16660 S:      Supported
16661 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16662 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16663 F:      drivers/thermal/rcar_gen3_thermal.c
16664 F:      drivers/thermal/rcar_thermal.c
16665
16666 RENESAS RIIC DRIVER
16667 M:      Chris Brandt <chris.brandt@renesas.com>
16668 L:      linux-renesas-soc@vger.kernel.org
16669 S:      Supported
16670 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16671 F:      drivers/i2c/busses/i2c-riic.c
16672
16673 RENESAS USB PHY DRIVER
16674 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16675 L:      linux-renesas-soc@vger.kernel.org
16676 S:      Maintained
16677 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16678
16679 RENESAS RZ/G2L A/D DRIVER
16680 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16681 L:      linux-iio@vger.kernel.org
16682 L:      linux-renesas-soc@vger.kernel.org
16683 S:      Supported
16684 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16685 F:      drivers/iio/adc/rzg2l_adc.c
16686
16687 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
16688 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16689 L:      linux-mtd@lists.infradead.org
16690 L:      linux-renesas-soc@vger.kernel.org
16691 S:      Maintained
16692 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
16693 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
16694
16695 RESET CONTROLLER FRAMEWORK
16696 M:      Philipp Zabel <p.zabel@pengutronix.de>
16697 S:      Maintained
16698 T:      git git://git.pengutronix.de/git/pza/linux
16699 F:      Documentation/devicetree/bindings/reset/
16700 F:      Documentation/driver-api/reset.rst
16701 F:      drivers/reset/
16702 F:      include/dt-bindings/reset/
16703 F:      include/linux/reset-controller.h
16704 F:      include/linux/reset.h
16705 F:      include/linux/reset/
16706 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16707
16708 RESTARTABLE SEQUENCES SUPPORT
16709 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16710 M:      Peter Zijlstra <peterz@infradead.org>
16711 M:      "Paul E. McKenney" <paulmck@kernel.org>
16712 M:      Boqun Feng <boqun.feng@gmail.com>
16713 L:      linux-kernel@vger.kernel.org
16714 S:      Supported
16715 F:      include/trace/events/rseq.h
16716 F:      include/uapi/linux/rseq.h
16717 F:      kernel/rseq.c
16718 F:      tools/testing/selftests/rseq/
16719
16720 RFKILL
16721 M:      Johannes Berg <johannes@sipsolutions.net>
16722 L:      linux-wireless@vger.kernel.org
16723 S:      Maintained
16724 W:      https://wireless.wiki.kernel.org/
16725 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
16726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
16727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
16728 F:      Documentation/ABI/stable/sysfs-class-rfkill
16729 F:      Documentation/driver-api/rfkill.rst
16730 F:      include/linux/rfkill.h
16731 F:      include/uapi/linux/rfkill.h
16732 F:      net/rfkill/
16733
16734 RHASHTABLE
16735 M:      Thomas Graf <tgraf@suug.ch>
16736 M:      Herbert Xu <herbert@gondor.apana.org.au>
16737 L:      netdev@vger.kernel.org
16738 S:      Maintained
16739 F:      include/linux/rhashtable-types.h
16740 F:      include/linux/rhashtable.h
16741 F:      lib/rhashtable.c
16742 F:      lib/test_rhashtable.c
16743
16744 RICOH R5C592 MEMORYSTICK DRIVER
16745 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16746 S:      Maintained
16747 F:      drivers/memstick/host/r592.*
16748
16749 RICOH SMARTMEDIA/XD DRIVER
16750 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16751 S:      Maintained
16752 F:      drivers/mtd/nand/raw/r852.c
16753 F:      drivers/mtd/nand/raw/r852.h
16754
16755 RISC-V PMU DRIVERS
16756 M:      Atish Patra <atishp@atishpatra.org>
16757 R:      Anup Patel <anup@brainfault.org>
16758 L:      linux-riscv@lists.infradead.org
16759 S:      Supported
16760 F:      drivers/perf/riscv_pmu.c
16761 F:      drivers/perf/riscv_pmu_legacy.c
16762 F:      drivers/perf/riscv_pmu_sbi.c
16763
16764 RISC-V ARCHITECTURE
16765 M:      Paul Walmsley <paul.walmsley@sifive.com>
16766 M:      Palmer Dabbelt <palmer@dabbelt.com>
16767 M:      Albert Ou <aou@eecs.berkeley.edu>
16768 L:      linux-riscv@lists.infradead.org
16769 S:      Supported
16770 P:      Documentation/riscv/patch-acceptance.rst
16771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16772 F:      arch/riscv/
16773 N:      riscv
16774 K:      riscv
16775
16776 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16777 M:      Lewis Hanly <lewis.hanly@microchip.com>
16778 M:      Conor Dooley <conor.dooley@microchip.com>
16779 L:      linux-riscv@lists.infradead.org
16780 S:      Supported
16781 F:      arch/riscv/boot/dts/microchip/
16782 F:      drivers/mailbox/mailbox-mpfs.c
16783 F:      drivers/soc/microchip/
16784 F:      include/soc/microchip/mpfs.h
16785
16786 RNBD BLOCK DRIVERS
16787 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16788 M:      Jack Wang <jinpu.wang@ionos.com>
16789 L:      linux-block@vger.kernel.org
16790 S:      Maintained
16791 F:      drivers/block/rnbd/
16792
16793 ROCCAT DRIVERS
16794 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16795 S:      Maintained
16796 W:      http://sourceforge.net/projects/roccat/
16797 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16798 F:      drivers/hid/hid-roccat*
16799 F:      include/linux/hid-roccat*
16800
16801 ROCKCHIP I2S TDM DRIVER
16802 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16803 L:      linux-rockchip@lists.infradead.org
16804 S:      Maintained
16805 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16806 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16807
16808 ROCKCHIP ISP V1 DRIVER
16809 M:      Dafna Hirschfeld <dafna@fastmail.com>
16810 L:      linux-media@vger.kernel.org
16811 L:      linux-rockchip@lists.infradead.org
16812 S:      Maintained
16813 F:      Documentation/admin-guide/media/rkisp1.rst
16814 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16815 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16816 F:      drivers/media/platform/rockchip/rkisp1
16817 F:      include/uapi/linux/rkisp1-config.h
16818
16819 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16820 M:      Jacob Chen <jacob-chen@iotwrt.com>
16821 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16822 L:      linux-media@vger.kernel.org
16823 L:      linux-rockchip@lists.infradead.org
16824 S:      Maintained
16825 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16826 F:      drivers/media/platform/rockchip/rga/
16827
16828 ROCKCHIP VIDEO DECODER DRIVER
16829 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16830 L:      linux-media@vger.kernel.org
16831 L:      linux-rockchip@lists.infradead.org
16832 S:      Maintained
16833 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16834 F:      drivers/staging/media/rkvdec/
16835
16836 ROCKER DRIVER
16837 M:      Jiri Pirko <jiri@resnulli.us>
16838 L:      netdev@vger.kernel.org
16839 S:      Supported
16840 F:      drivers/net/ethernet/rocker/
16841
16842 ROCKETPORT EXPRESS/INFINITY DRIVER
16843 M:      Kevin Cernekee <cernekee@gmail.com>
16844 L:      linux-serial@vger.kernel.org
16845 S:      Odd Fixes
16846 F:      drivers/tty/serial/rp2.*
16847
16848 ROHM BD99954 CHARGER IC
16849 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16850 L:      linux-power@fi.rohmeurope.com
16851 S:      Supported
16852 F:      drivers/power/supply/bd99954-charger.c
16853 F:      drivers/power/supply/bd99954-charger.h
16854
16855 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16856 M:      Tomasz Duszynski <tduszyns@gmail.com>
16857 S:      Maintained
16858 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16859 F:      drivers/iio/light/bh1750.c
16860
16861 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16862 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16863 L:      linux-kernel@vger.kernel.org
16864 L:      linux-renesas-soc@vger.kernel.org
16865 S:      Supported
16866 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
16867 F:      drivers/gpio/gpio-bd9571mwv.c
16868 F:      drivers/mfd/bd9571mwv.c
16869 F:      drivers/regulator/bd9571mwv-regulator.c
16870 F:      include/linux/mfd/bd9571mwv.h
16871
16872 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16873 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16874 L:      linux-power@fi.rohmeurope.com
16875 S:      Supported
16876 F:      drivers/clk/clk-bd718x7.c
16877 F:      drivers/gpio/gpio-bd71815.c
16878 F:      drivers/gpio/gpio-bd71828.c
16879 F:      drivers/mfd/rohm-bd71828.c
16880 F:      drivers/mfd/rohm-bd718x7.c
16881 F:      drivers/mfd/rohm-bd9576.c
16882 F:      drivers/regulator/bd71815-regulator.c
16883 F:      drivers/regulator/bd71828-regulator.c
16884 F:      drivers/regulator/bd718x7-regulator.c
16885 F:      drivers/regulator/bd9576-regulator.c
16886 F:      drivers/regulator/rohm-regulator.c
16887 F:      drivers/rtc/rtc-bd70528.c
16888 F:      drivers/watchdog/bd9576_wdt.c
16889 F:      include/linux/mfd/rohm-bd71815.h
16890 F:      include/linux/mfd/rohm-bd71828.h
16891 F:      include/linux/mfd/rohm-bd718x7.h
16892 F:      include/linux/mfd/rohm-bd957x.h
16893 F:      include/linux/mfd/rohm-generic.h
16894 F:      include/linux/mfd/rohm-shared.h
16895
16896 ROSE NETWORK LAYER
16897 M:      Ralf Baechle <ralf@linux-mips.org>
16898 L:      linux-hams@vger.kernel.org
16899 S:      Maintained
16900 W:      http://www.linux-ax25.org/
16901 F:      include/net/rose.h
16902 F:      include/uapi/linux/rose.h
16903 F:      net/rose/
16904
16905 ROTATION DRIVER FOR ALLWINNER A83T
16906 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16907 L:      linux-media@vger.kernel.org
16908 S:      Maintained
16909 T:      git git://linuxtv.org/media_tree.git
16910 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16911 F:      drivers/media/platform/sunxi/sun8i-rotate/
16912
16913 RPMSG TTY DRIVER
16914 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
16915 L:      linux-remoteproc@vger.kernel.org
16916 S:      Maintained
16917 F:      drivers/tty/rpmsg_tty.c
16918
16919 RTL2830 MEDIA DRIVER
16920 M:      Antti Palosaari <crope@iki.fi>
16921 L:      linux-media@vger.kernel.org
16922 S:      Maintained
16923 W:      https://linuxtv.org
16924 W:      http://palosaari.fi/linux/
16925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16926 T:      git git://linuxtv.org/anttip/media_tree.git
16927 F:      drivers/media/dvb-frontends/rtl2830*
16928
16929 RTL2832 MEDIA DRIVER
16930 M:      Antti Palosaari <crope@iki.fi>
16931 L:      linux-media@vger.kernel.org
16932 S:      Maintained
16933 W:      https://linuxtv.org
16934 W:      http://palosaari.fi/linux/
16935 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16936 T:      git git://linuxtv.org/anttip/media_tree.git
16937 F:      drivers/media/dvb-frontends/rtl2832*
16938
16939 RTL2832_SDR MEDIA DRIVER
16940 M:      Antti Palosaari <crope@iki.fi>
16941 L:      linux-media@vger.kernel.org
16942 S:      Maintained
16943 W:      https://linuxtv.org
16944 W:      http://palosaari.fi/linux/
16945 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16946 T:      git git://linuxtv.org/anttip/media_tree.git
16947 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16948
16949 RTL8180 WIRELESS DRIVER
16950 L:      linux-wireless@vger.kernel.org
16951 S:      Orphan
16952 W:      https://wireless.wiki.kernel.org/
16953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16954 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16955
16956 RTL8187 WIRELESS DRIVER
16957 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16958 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16959 M:      Larry Finger <Larry.Finger@lwfinger.net>
16960 L:      linux-wireless@vger.kernel.org
16961 S:      Maintained
16962 W:      https://wireless.wiki.kernel.org/
16963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16964 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16965
16966 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16967 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16968 L:      linux-wireless@vger.kernel.org
16969 S:      Maintained
16970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16971 F:      drivers/net/wireless/realtek/rtl8xxxu/
16972
16973 RTRS TRANSPORT DRIVERS
16974 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16975 M:      Jack Wang <jinpu.wang@ionos.com>
16976 L:      linux-rdma@vger.kernel.org
16977 S:      Maintained
16978 F:      drivers/infiniband/ulp/rtrs/
16979
16980 RXRPC SOCKETS (AF_RXRPC)
16981 M:      David Howells <dhowells@redhat.com>
16982 M:      Marc Dionne <marc.dionne@auristor.com>
16983 L:      linux-afs@lists.infradead.org
16984 S:      Supported
16985 W:      https://www.infradead.org/~dhowells/kafs/
16986 F:      Documentation/networking/rxrpc.rst
16987 F:      include/keys/rxrpc-type.h
16988 F:      include/net/af_rxrpc.h
16989 F:      include/trace/events/rxrpc.h
16990 F:      include/uapi/linux/rxrpc.h
16991 F:      net/rxrpc/
16992
16993 S3 SAVAGE FRAMEBUFFER DRIVER
16994 M:      Antonino Daplas <adaplas@gmail.com>
16995 L:      linux-fbdev@vger.kernel.org
16996 S:      Maintained
16997 F:      drivers/video/fbdev/savage/
16998
16999 S390
17000 M:      Heiko Carstens <hca@linux.ibm.com>
17001 M:      Vasily Gorbik <gor@linux.ibm.com>
17002 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17003 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17004 R:      Sven Schnelle <svens@linux.ibm.com>
17005 L:      linux-s390@vger.kernel.org
17006 S:      Supported
17007 W:      http://www.ibm.com/developerworks/linux/linux390/
17008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17009 F:      Documentation/driver-api/s390-drivers.rst
17010 F:      Documentation/s390/
17011 F:      arch/s390/
17012 F:      drivers/s390/
17013
17014 S390 COMMON I/O LAYER
17015 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17016 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17017 L:      linux-s390@vger.kernel.org
17018 S:      Supported
17019 W:      http://www.ibm.com/developerworks/linux/linux390/
17020 F:      drivers/s390/cio/
17021
17022 S390 DASD DRIVER
17023 M:      Stefan Haberland <sth@linux.ibm.com>
17024 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17025 L:      linux-s390@vger.kernel.org
17026 S:      Supported
17027 W:      http://www.ibm.com/developerworks/linux/linux390/
17028 F:      block/partitions/ibm.c
17029 F:      drivers/s390/block/dasd*
17030 F:      include/linux/dasd_mod.h
17031
17032 S390 IOMMU (PCI)
17033 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17034 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17035 L:      linux-s390@vger.kernel.org
17036 S:      Supported
17037 W:      http://www.ibm.com/developerworks/linux/linux390/
17038 F:      drivers/iommu/s390-iommu.c
17039
17040 S390 IUCV NETWORK LAYER
17041 M:      Alexandra Winter <wintera@linux.ibm.com>
17042 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17043 L:      linux-s390@vger.kernel.org
17044 L:      netdev@vger.kernel.org
17045 S:      Supported
17046 W:      http://www.ibm.com/developerworks/linux/linux390/
17047 F:      drivers/s390/net/*iucv*
17048 F:      include/net/iucv/
17049 F:      net/iucv/
17050
17051 S390 NETWORK DRIVERS
17052 M:      Alexandra Winter <wintera@linux.ibm.com>
17053 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17054 L:      linux-s390@vger.kernel.org
17055 L:      netdev@vger.kernel.org
17056 S:      Supported
17057 W:      http://www.ibm.com/developerworks/linux/linux390/
17058 F:      drivers/s390/net/
17059
17060 S390 PCI SUBSYSTEM
17061 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17062 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17063 L:      linux-s390@vger.kernel.org
17064 S:      Supported
17065 W:      http://www.ibm.com/developerworks/linux/linux390/
17066 F:      arch/s390/pci/
17067 F:      drivers/pci/hotplug/s390_pci_hpc.c
17068 F:      Documentation/s390/pci.rst
17069
17070 S390 VFIO AP DRIVER
17071 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17072 M:      Halil Pasic <pasic@linux.ibm.com>
17073 M:      Jason Herne <jjherne@linux.ibm.com>
17074 L:      linux-s390@vger.kernel.org
17075 S:      Supported
17076 W:      http://www.ibm.com/developerworks/linux/linux390/
17077 F:      Documentation/s390/vfio-ap.rst
17078 F:      drivers/s390/crypto/vfio_ap*
17079
17080 S390 VFIO-CCW DRIVER
17081 M:      Eric Farman <farman@linux.ibm.com>
17082 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17083 R:      Halil Pasic <pasic@linux.ibm.com>
17084 L:      linux-s390@vger.kernel.org
17085 L:      kvm@vger.kernel.org
17086 S:      Supported
17087 F:      Documentation/s390/vfio-ccw.rst
17088 F:      drivers/s390/cio/vfio_ccw*
17089 F:      include/uapi/linux/vfio_ccw.h
17090
17091 S390 VFIO-PCI DRIVER
17092 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17093 M:      Eric Farman <farman@linux.ibm.com>
17094 L:      linux-s390@vger.kernel.org
17095 L:      kvm@vger.kernel.org
17096 S:      Supported
17097 F:      drivers/vfio/pci/vfio_pci_zdev.c
17098 F:      include/uapi/linux/vfio_zdev.h
17099
17100 S390 ZCRYPT DRIVER
17101 M:      Harald Freudenberger <freude@linux.ibm.com>
17102 L:      linux-s390@vger.kernel.org
17103 S:      Supported
17104 W:      http://www.ibm.com/developerworks/linux/linux390/
17105 F:      drivers/s390/crypto/
17106
17107 S390 ZFCP DRIVER
17108 M:      Steffen Maier <maier@linux.ibm.com>
17109 M:      Benjamin Block <bblock@linux.ibm.com>
17110 L:      linux-s390@vger.kernel.org
17111 S:      Supported
17112 W:      http://www.ibm.com/developerworks/linux/linux390/
17113 F:      drivers/s390/scsi/zfcp_*
17114
17115 S3C ADC BATTERY DRIVER
17116 M:      Krzysztof Kozlowski <krzk@kernel.org>
17117 L:      linux-samsung-soc@vger.kernel.org
17118 S:      Odd Fixes
17119 F:      drivers/power/supply/s3c_adc_battery.c
17120 F:      include/linux/s3c_adc_battery.h
17121
17122 S3C24XX SD/MMC Driver
17123 M:      Ben Dooks <ben-linux@fluff.org>
17124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17125 S:      Supported
17126 F:      drivers/mmc/host/s3cmci.*
17127
17128 SAA6588 RDS RECEIVER DRIVER
17129 M:      Hans Verkuil <hverkuil@xs4all.nl>
17130 L:      linux-media@vger.kernel.org
17131 S:      Odd Fixes
17132 W:      https://linuxtv.org
17133 T:      git git://linuxtv.org/media_tree.git
17134 F:      drivers/media/i2c/saa6588*
17135
17136 SAA7134 VIDEO4LINUX DRIVER
17137 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17138 L:      linux-media@vger.kernel.org
17139 S:      Odd fixes
17140 W:      https://linuxtv.org
17141 T:      git git://linuxtv.org/media_tree.git
17142 F:      Documentation/driver-api/media/drivers/saa7134*
17143 F:      drivers/media/pci/saa7134/
17144
17145 SAA7146 VIDEO4LINUX-2 DRIVER
17146 M:      Hans Verkuil <hverkuil@xs4all.nl>
17147 L:      linux-media@vger.kernel.org
17148 S:      Maintained
17149 T:      git git://linuxtv.org/media_tree.git
17150 F:      drivers/media/common/saa7146/
17151 F:      drivers/media/pci/saa7146/
17152 F:      include/media/drv-intf/saa7146*
17153
17154 SAFESETID SECURITY MODULE
17155 M:      Micah Morton <mortonm@chromium.org>
17156 S:      Supported
17157 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17158 F:      security/safesetid/
17159
17160 SAMSUNG AUDIO (ASoC) DRIVERS
17161 M:      Krzysztof Kozlowski <krzk@kernel.org>
17162 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17163 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17164 S:      Supported
17165 F:      Documentation/devicetree/bindings/sound/samsung*
17166 F:      sound/soc/samsung/
17167
17168 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17169 M:      Krzysztof Kozlowski <krzk@kernel.org>
17170 L:      linux-crypto@vger.kernel.org
17171 L:      linux-samsung-soc@vger.kernel.org
17172 S:      Maintained
17173 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17174 F:      drivers/crypto/exynos-rng.c
17175
17176 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17177 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17178 L:      linux-samsung-soc@vger.kernel.org
17179 S:      Maintained
17180 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17181 F:      drivers/char/hw_random/exynos-trng.c
17182
17183 SAMSUNG FRAMEBUFFER DRIVER
17184 M:      Jingoo Han <jingoohan1@gmail.com>
17185 L:      linux-fbdev@vger.kernel.org
17186 S:      Maintained
17187 F:      drivers/video/fbdev/s3c-fb.c
17188
17189 SAMSUNG INTERCONNECT DRIVERS
17190 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17191 M:      Artur Świgoń <a.swigon@samsung.com>
17192 L:      linux-pm@vger.kernel.org
17193 L:      linux-samsung-soc@vger.kernel.org
17194 S:      Supported
17195 F:      drivers/interconnect/samsung/
17196
17197 SAMSUNG LAPTOP DRIVER
17198 M:      Corentin Chary <corentin.chary@gmail.com>
17199 L:      platform-driver-x86@vger.kernel.org
17200 S:      Maintained
17201 F:      drivers/platform/x86/samsung-laptop.c
17202
17203 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17204 M:      Krzysztof Kozlowski <krzk@kernel.org>
17205 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17206 L:      linux-kernel@vger.kernel.org
17207 L:      linux-samsung-soc@vger.kernel.org
17208 S:      Supported
17209 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17210 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17211 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17212 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17213 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17214 F:      drivers/clk/clk-s2mps11.c
17215 F:      drivers/mfd/sec*.c
17216 F:      drivers/regulator/s2m*.c
17217 F:      drivers/regulator/s5m*.c
17218 F:      drivers/rtc/rtc-s5m.c
17219 F:      include/linux/mfd/samsung/
17220
17221 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17222 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17223 L:      linux-media@vger.kernel.org
17224 L:      linux-samsung-soc@vger.kernel.org
17225 S:      Maintained
17226 F:      drivers/media/platform/samsung/s3c-camif/
17227 F:      include/media/drv-intf/s3c_camif.h
17228
17229 SAMSUNG S3FWRN5 NFC DRIVER
17230 M:      Krzysztof Kozlowski <krzk@kernel.org>
17231 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17232 L:      linux-nfc@lists.01.org (subscribers-only)
17233 S:      Maintained
17234 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17235 F:      drivers/nfc/s3fwrn5
17236
17237 SAMSUNG S5C73M3 CAMERA DRIVER
17238 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17239 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17240 L:      linux-media@vger.kernel.org
17241 S:      Supported
17242 F:      drivers/media/i2c/s5c73m3/*
17243
17244 SAMSUNG S5K5BAF CAMERA DRIVER
17245 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17246 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17247 L:      linux-media@vger.kernel.org
17248 S:      Supported
17249 F:      drivers/media/i2c/s5k5baf.c
17250
17251 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17252 M:      Krzysztof Kozlowski <krzk@kernel.org>
17253 M:      Vladimir Zapolskiy <vz@mleia.com>
17254 L:      linux-crypto@vger.kernel.org
17255 L:      linux-samsung-soc@vger.kernel.org
17256 S:      Maintained
17257 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17258 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17259 F:      drivers/crypto/s5p-sss.c
17260
17261 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17262 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17263 L:      linux-media@vger.kernel.org
17264 S:      Supported
17265 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17266 F:      drivers/media/platform/samsung/exynos4-is/
17267
17268 SAMSUNG SOC CLOCK DRIVERS
17269 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17270 M:      Tomasz Figa <tomasz.figa@gmail.com>
17271 M:      Chanwoo Choi <cw00.choi@samsung.com>
17272 R:      Alim Akhtar <alim.akhtar@samsung.com>
17273 L:      linux-samsung-soc@vger.kernel.org
17274 S:      Supported
17275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17276 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17277 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17278 F:      drivers/clk/samsung/
17279 F:      include/dt-bindings/clock/exynos*.h
17280 F:      include/dt-bindings/clock/s3c*.h
17281 F:      include/dt-bindings/clock/s5p*.h
17282 F:      include/dt-bindings/clock/samsung,*.h
17283 F:      include/linux/clk/samsung.h
17284 F:      include/linux/platform_data/clk-s3c2410.h
17285
17286 SAMSUNG SPI DRIVERS
17287 M:      Krzysztof Kozlowski <krzk@kernel.org>
17288 M:      Andi Shyti <andi@etezian.org>
17289 L:      linux-spi@vger.kernel.org
17290 L:      linux-samsung-soc@vger.kernel.org
17291 S:      Maintained
17292 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17293 F:      drivers/spi/spi-s3c*
17294 F:      include/linux/platform_data/spi-s3c64xx.h
17295 F:      include/linux/spi/s3c24xx-fiq.h
17296
17297 SAMSUNG SXGBE DRIVERS
17298 M:      Byungho An <bh74.an@samsung.com>
17299 L:      netdev@vger.kernel.org
17300 S:      Supported
17301 F:      drivers/net/ethernet/samsung/sxgbe/
17302
17303 SAMSUNG THERMAL DRIVER
17304 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17305 M:      Krzysztof Kozlowski <krzk@kernel.org>
17306 L:      linux-pm@vger.kernel.org
17307 L:      linux-samsung-soc@vger.kernel.org
17308 S:      Maintained
17309 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17310 F:      drivers/thermal/samsung/
17311
17312 SAMSUNG USB2 PHY DRIVER
17313 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17314 L:      linux-kernel@vger.kernel.org
17315 S:      Supported
17316 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
17317 F:      Documentation/driver-api/phy/samsung-usb2.rst
17318 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17319 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17320 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17321 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17322 F:      drivers/phy/samsung/phy-samsung-usb2.c
17323 F:      drivers/phy/samsung/phy-samsung-usb2.h
17324
17325 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17326 M:      Paul Barker <paul.barker@sancloud.com>
17327 R:      Marc Murphy <marc.murphy@sancloud.com>
17328 S:      Supported
17329 F:      arch/arm/boot/dts/am335x-sancloud*
17330
17331 SC1200 WDT DRIVER
17332 M:      Zwane Mwaikambo <zwanem@gmail.com>
17333 S:      Maintained
17334 F:      drivers/watchdog/sc1200wdt.c
17335
17336 SCHEDULER
17337 M:      Ingo Molnar <mingo@redhat.com>
17338 M:      Peter Zijlstra <peterz@infradead.org>
17339 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17340 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17341 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17342 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17343 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17344 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17345 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17346 L:      linux-kernel@vger.kernel.org
17347 S:      Maintained
17348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17349 F:      include/linux/preempt.h
17350 F:      include/linux/sched.h
17351 F:      include/linux/wait.h
17352 F:      include/uapi/linux/sched.h
17353 F:      kernel/sched/
17354
17355 SCR24X CHIP CARD INTERFACE DRIVER
17356 M:      Lubomir Rintel <lkundrak@v3.sk>
17357 S:      Supported
17358 F:      drivers/char/pcmcia/scr24x_cs.c
17359
17360 SCSI RDMA PROTOCOL (SRP) INITIATOR
17361 M:      Bart Van Assche <bvanassche@acm.org>
17362 L:      linux-rdma@vger.kernel.org
17363 S:      Supported
17364 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17365 F:      drivers/infiniband/ulp/srp/
17366 F:      include/scsi/srp.h
17367
17368 SCSI RDMA PROTOCOL (SRP) TARGET
17369 M:      Bart Van Assche <bvanassche@acm.org>
17370 L:      linux-rdma@vger.kernel.org
17371 L:      target-devel@vger.kernel.org
17372 S:      Supported
17373 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17374 F:      drivers/infiniband/ulp/srpt/
17375
17376 SCSI SG DRIVER
17377 M:      Doug Gilbert <dgilbert@interlog.com>
17378 L:      linux-scsi@vger.kernel.org
17379 S:      Maintained
17380 W:      http://sg.danny.cz/sg
17381 F:      Documentation/scsi/scsi-generic.rst
17382 F:      drivers/scsi/sg.c
17383 F:      include/scsi/sg.h
17384
17385 SCSI SUBSYSTEM
17386 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17387 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17388 L:      linux-scsi@vger.kernel.org
17389 S:      Maintained
17390 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17393 F:      Documentation/devicetree/bindings/scsi/
17394 F:      drivers/scsi/
17395 F:      include/scsi/
17396
17397 SCSI TAPE DRIVER
17398 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17399 L:      linux-scsi@vger.kernel.org
17400 S:      Maintained
17401 F:      Documentation/scsi/st.rst
17402 F:      drivers/scsi/st.*
17403 F:      drivers/scsi/st_*.h
17404
17405 SCSI TARGET CORE USER DRIVER
17406 M:      Bodo Stroesser <bostroesser@gmail.com>
17407 L:      linux-scsi@vger.kernel.org
17408 L:      target-devel@vger.kernel.org
17409 S:      Supported
17410 F:      Documentation/target/tcmu-design.rst
17411 F:      drivers/target/target_core_user.c
17412 F:      include/uapi/linux/target_core_user.h
17413
17414 SCSI TARGET SUBSYSTEM
17415 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17416 L:      linux-scsi@vger.kernel.org
17417 L:      target-devel@vger.kernel.org
17418 S:      Supported
17419 W:      http://www.linux-iscsi.org
17420 Q:      https://patchwork.kernel.org/project/target-devel/list/
17421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17422 F:      Documentation/target/
17423 F:      drivers/target/
17424 F:      include/target/
17425
17426 SCTP PROTOCOL
17427 M:      Vlad Yasevich <vyasevich@gmail.com>
17428 M:      Neil Horman <nhorman@tuxdriver.com>
17429 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17430 L:      linux-sctp@vger.kernel.org
17431 S:      Maintained
17432 W:      http://lksctp.sourceforge.net
17433 F:      Documentation/networking/sctp.rst
17434 F:      include/linux/sctp.h
17435 F:      include/net/sctp/
17436 F:      include/uapi/linux/sctp.h
17437 F:      net/sctp/
17438
17439 SCx200 CPU SUPPORT
17440 M:      Jim Cromie <jim.cromie@gmail.com>
17441 S:      Odd Fixes
17442 F:      Documentation/i2c/busses/scx200_acb.rst
17443 F:      arch/x86/platform/scx200/
17444 F:      drivers/i2c/busses/scx200*
17445 F:      drivers/mtd/maps/scx200_docflash.c
17446 F:      drivers/watchdog/scx200_wdt.c
17447 F:      include/linux/scx200.h
17448
17449 SCx200 GPIO DRIVER
17450 M:      Jim Cromie <jim.cromie@gmail.com>
17451 S:      Maintained
17452 F:      drivers/char/scx200_gpio.c
17453 F:      include/linux/scx200_gpio.h
17454
17455 SCx200 HRT CLOCKSOURCE DRIVER
17456 M:      Jim Cromie <jim.cromie@gmail.com>
17457 S:      Maintained
17458 F:      drivers/clocksource/scx200_hrt.c
17459
17460 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17461 M:      Sascha Sommer <saschasommer@freenet.de>
17462 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17463 S:      Maintained
17464 F:      drivers/mmc/host/sdricoh_cs.c
17465
17466 SECO BOARDS CEC DRIVER
17467 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17468 S:      Maintained
17469 F:      drivers/media/cec/platform/seco/seco-cec.c
17470 F:      drivers/media/cec/platform/seco/seco-cec.h
17471
17472 SECURE COMPUTING
17473 M:      Kees Cook <keescook@chromium.org>
17474 R:      Andy Lutomirski <luto@amacapital.net>
17475 R:      Will Drewry <wad@chromium.org>
17476 S:      Supported
17477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17478 F:      Documentation/userspace-api/seccomp_filter.rst
17479 F:      include/linux/seccomp.h
17480 F:      include/uapi/linux/seccomp.h
17481 F:      kernel/seccomp.c
17482 F:      tools/testing/selftests/kselftest_harness.h
17483 F:      tools/testing/selftests/seccomp/*
17484 K:      \bsecure_computing
17485 K:      \bTIF_SECCOMP\b
17486
17487 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17488 M:      Al Cooper <alcooperx@gmail.com>
17489 L:      linux-mmc@vger.kernel.org
17490 L:      bcm-kernel-feedback-list@broadcom.com
17491 S:      Maintained
17492 F:      drivers/mmc/host/sdhci-brcmstb*
17493
17494 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17495 M:      Adrian Hunter <adrian.hunter@intel.com>
17496 L:      linux-mmc@vger.kernel.org
17497 S:      Maintained
17498 F:      drivers/mmc/host/sdhci*
17499
17500 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17501 M:      Eugen Hristev <eugen.hristev@microchip.com>
17502 L:      linux-mmc@vger.kernel.org
17503 S:      Supported
17504 F:      drivers/mmc/host/sdhci-of-at91.c
17505
17506 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17507 M:      Ben Dooks <ben-linux@fluff.org>
17508 M:      Jaehoon Chung <jh80.chung@samsung.com>
17509 L:      linux-mmc@vger.kernel.org
17510 S:      Maintained
17511 F:      drivers/mmc/host/sdhci-s3c*
17512
17513 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17514 M:      Viresh Kumar <vireshk@kernel.org>
17515 L:      linux-mmc@vger.kernel.org
17516 S:      Maintained
17517 F:      drivers/mmc/host/sdhci-spear.c
17518
17519 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17520 M:      Kishon Vijay Abraham I <kishon@ti.com>
17521 L:      linux-mmc@vger.kernel.org
17522 S:      Maintained
17523 F:      drivers/mmc/host/sdhci-omap.c
17524
17525 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17526 M:      Haibo Chen <haibo.chen@nxp.com>
17527 L:      linux-imx@nxp.com
17528 L:      linux-mmc@vger.kernel.org
17529 S:      Maintained
17530 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17531
17532 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17533 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17534 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17535 L:      linux-block@vger.kernel.org
17536 S:      Supported
17537 F:      block/opal_proto.h
17538 F:      block/sed*
17539 F:      include/linux/sed*
17540 F:      include/uapi/linux/sed*
17541
17542 SECURITY CONTACT
17543 M:      Security Officers <security@kernel.org>
17544 S:      Supported
17545 F:      Documentation/admin-guide/security-bugs.rst
17546
17547 SECURITY SUBSYSTEM
17548 M:      James Morris <jmorris@namei.org>
17549 M:      "Serge E. Hallyn" <serge@hallyn.com>
17550 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17551 S:      Supported
17552 W:      http://kernsec.org/
17553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17554 F:      security/
17555 X:      security/selinux/
17556
17557 SELINUX SECURITY MODULE
17558 M:      Paul Moore <paul@paul-moore.com>
17559 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17560 M:      Eric Paris <eparis@parisplace.org>
17561 L:      selinux@vger.kernel.org
17562 S:      Supported
17563 W:      https://selinuxproject.org
17564 W:      https://github.com/SELinuxProject
17565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17566 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17567 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17568 F:      Documentation/admin-guide/LSM/SELinux.rst
17569 F:      include/trace/events/avc.h
17570 F:      include/uapi/linux/selinux_netlink.h
17571 F:      scripts/selinux/
17572 F:      security/selinux/
17573
17574 SENSABLE PHANTOM
17575 M:      Jiri Slaby <jirislaby@kernel.org>
17576 S:      Maintained
17577 F:      drivers/misc/phantom.c
17578 F:      include/uapi/linux/phantom.h
17579
17580 SENSEAIR SUNRISE 006-0-0007
17581 M:      Jacopo Mondi <jacopo@jmondi.org>
17582 S:      Maintained
17583 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17584 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17585 F:      drivers/iio/chemical/sunrise_co2.c
17586
17587 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17588 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17589 S:      Maintained
17590 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17591 F:      drivers/iio/chemical/scd30.h
17592 F:      drivers/iio/chemical/scd30_core.c
17593 F:      drivers/iio/chemical/scd30_i2c.c
17594 F:      drivers/iio/chemical/scd30_serial.c
17595
17596 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17597 M:      Roan van Dijk <roan@protonic.nl>
17598 S:      Maintained
17599 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17600 F:      drivers/iio/chemical/scd4x.c
17601
17602 SENSIRION SGP40 GAS SENSOR DRIVER
17603 M:      Andreas Klinger <ak@it-klinger.de>
17604 S:      Maintained
17605 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17606 F:      drivers/iio/chemical/sgp40.c
17607
17608 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17609 M:      Tomasz Duszynski <tduszyns@gmail.com>
17610 S:      Maintained
17611 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17612 F:      drivers/iio/chemical/sps30.c
17613 F:      drivers/iio/chemical/sps30_i2c.c
17614 F:      drivers/iio/chemical/sps30_serial.c
17615
17616 SERIAL DEVICE BUS
17617 M:      Rob Herring <robh@kernel.org>
17618 L:      linux-serial@vger.kernel.org
17619 S:      Maintained
17620 F:      Documentation/devicetree/bindings/serial/serial.yaml
17621 F:      drivers/tty/serdev/
17622 F:      include/linux/serdev.h
17623
17624 SERIAL DRIVERS
17625 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17626 L:      linux-serial@vger.kernel.org
17627 S:      Maintained
17628 F:      Documentation/devicetree/bindings/serial/
17629 F:      drivers/tty/serial/
17630
17631 SERIAL IR RECEIVER
17632 M:      Sean Young <sean@mess.org>
17633 L:      linux-media@vger.kernel.org
17634 S:      Maintained
17635 F:      drivers/media/rc/serial_ir.c
17636
17637 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17638 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17639 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17640 S:      Maintained
17641 F:      Documentation/devicetree/bindings/slimbus/
17642 F:      drivers/slimbus/
17643 F:      include/linux/slimbus.h
17644
17645 SFC NETWORK DRIVER
17646 M:      Edward Cree <ecree.xilinx@gmail.com>
17647 M:      Martin Habets <habetsm.xilinx@gmail.com>
17648 L:      netdev@vger.kernel.org
17649 S:      Supported
17650 F:      drivers/net/ethernet/sfc/
17651
17652 SFF/SFP/SFP+ MODULE SUPPORT
17653 M:      Russell King <linux@armlinux.org.uk>
17654 L:      netdev@vger.kernel.org
17655 S:      Maintained
17656 F:      drivers/net/phy/phylink.c
17657 F:      drivers/net/phy/sfp*
17658 F:      include/linux/mdio/mdio-i2c.h
17659 F:      include/linux/phylink.h
17660 F:      include/linux/sfp.h
17661 K:      phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
17662
17663 SGI GRU DRIVER
17664 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17665 S:      Maintained
17666 F:      drivers/misc/sgi-gru/
17667
17668 SGI XP/XPC/XPNET DRIVER
17669 M:      Robin Holt <robinmholt@gmail.com>
17670 M:      Steve Wahl <steve.wahl@hpe.com>
17671 R:      Mike Travis <mike.travis@hpe.com>
17672 S:      Maintained
17673 F:      drivers/misc/sgi-xp/
17674
17675 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17676 M:      Karsten Graul <kgraul@linux.ibm.com>
17677 L:      linux-s390@vger.kernel.org
17678 S:      Supported
17679 W:      http://www.ibm.com/developerworks/linux/linux390/
17680 F:      net/smc/
17681
17682 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17683 M:      Linus Walleij <linus.walleij@linaro.org>
17684 L:      linux-iio@vger.kernel.org
17685 S:      Maintained
17686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17687 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17688 F:      drivers/iio/light/gp2ap002.c
17689
17690 SHARP RJ54N1CB0C SENSOR DRIVER
17691 M:      Jacopo Mondi <jacopo@jmondi.org>
17692 L:      linux-media@vger.kernel.org
17693 S:      Odd fixes
17694 T:      git git://linuxtv.org/media_tree.git
17695 F:      drivers/media/i2c/rj54n1cb0c.c
17696 F:      include/media/i2c/rj54n1cb0c.h
17697
17698 SH_VOU V4L2 OUTPUT DRIVER
17699 L:      linux-media@vger.kernel.org
17700 S:      Orphan
17701 F:      drivers/media/platform/renesas/sh_vou.c
17702 F:      include/media/drv-intf/sh_vou.h
17703
17704 SI2157 MEDIA DRIVER
17705 M:      Antti Palosaari <crope@iki.fi>
17706 L:      linux-media@vger.kernel.org
17707 S:      Maintained
17708 W:      https://linuxtv.org
17709 W:      http://palosaari.fi/linux/
17710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17711 T:      git git://linuxtv.org/anttip/media_tree.git
17712 F:      drivers/media/tuners/si2157*
17713
17714 SI2165 MEDIA DRIVER
17715 M:      Matthias Schwarzott <zzam@gentoo.org>
17716 L:      linux-media@vger.kernel.org
17717 S:      Maintained
17718 W:      https://linuxtv.org
17719 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17720 F:      drivers/media/dvb-frontends/si2165*
17721
17722 SI2168 MEDIA DRIVER
17723 M:      Antti Palosaari <crope@iki.fi>
17724 L:      linux-media@vger.kernel.org
17725 S:      Maintained
17726 W:      https://linuxtv.org
17727 W:      http://palosaari.fi/linux/
17728 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17729 T:      git git://linuxtv.org/anttip/media_tree.git
17730 F:      drivers/media/dvb-frontends/si2168*
17731
17732 SI470X FM RADIO RECEIVER I2C DRIVER
17733 M:      Hans Verkuil <hverkuil@xs4all.nl>
17734 L:      linux-media@vger.kernel.org
17735 S:      Odd Fixes
17736 W:      https://linuxtv.org
17737 T:      git git://linuxtv.org/media_tree.git
17738 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17739
17740 SI470X FM RADIO RECEIVER USB DRIVER
17741 M:      Hans Verkuil <hverkuil@xs4all.nl>
17742 L:      linux-media@vger.kernel.org
17743 S:      Maintained
17744 W:      https://linuxtv.org
17745 T:      git git://linuxtv.org/media_tree.git
17746 F:      drivers/media/radio/si470x/radio-si470x-common.c
17747 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17748 F:      drivers/media/radio/si470x/radio-si470x.h
17749
17750 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17751 M:      Eduardo Valentin <edubezval@gmail.com>
17752 L:      linux-media@vger.kernel.org
17753 S:      Odd Fixes
17754 W:      https://linuxtv.org
17755 T:      git git://linuxtv.org/media_tree.git
17756 F:      drivers/media/radio/si4713/si4713.?
17757
17758 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17759 M:      Eduardo Valentin <edubezval@gmail.com>
17760 L:      linux-media@vger.kernel.org
17761 S:      Odd Fixes
17762 W:      https://linuxtv.org
17763 T:      git git://linuxtv.org/media_tree.git
17764 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17765
17766 SI4713 FM RADIO TRANSMITTER USB DRIVER
17767 M:      Hans Verkuil <hverkuil@xs4all.nl>
17768 L:      linux-media@vger.kernel.org
17769 S:      Maintained
17770 W:      https://linuxtv.org
17771 T:      git git://linuxtv.org/media_tree.git
17772 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17773
17774 SIANO DVB DRIVER
17775 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17776 L:      linux-media@vger.kernel.org
17777 S:      Odd fixes
17778 W:      https://linuxtv.org
17779 T:      git git://linuxtv.org/media_tree.git
17780 F:      drivers/media/common/siano/
17781 F:      drivers/media/mmc/siano/
17782 F:      drivers/media/usb/siano/
17783 F:      drivers/media/usb/siano/
17784
17785 SIFIVE DRIVERS
17786 M:      Palmer Dabbelt <palmer@dabbelt.com>
17787 M:      Paul Walmsley <paul.walmsley@sifive.com>
17788 L:      linux-riscv@lists.infradead.org
17789 S:      Supported
17790 T:      git git://github.com/sifive/riscv-linux.git
17791 N:      sifive
17792 K:      [^@]sifive
17793
17794 SIFIVE FU540 SYSTEM-ON-CHIP
17795 M:      Paul Walmsley <paul.walmsley@sifive.com>
17796 M:      Palmer Dabbelt <palmer@dabbelt.com>
17797 L:      linux-riscv@lists.infradead.org
17798 S:      Supported
17799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17800 N:      fu540
17801 K:      fu540
17802
17803 SIFIVE PDMA DRIVER
17804 M:      Green Wan <green.wan@sifive.com>
17805 S:      Maintained
17806 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17807 F:      drivers/dma/sf-pdma/
17808
17809 SILEAD TOUCHSCREEN DRIVER
17810 M:      Hans de Goede <hdegoede@redhat.com>
17811 L:      linux-input@vger.kernel.org
17812 L:      platform-driver-x86@vger.kernel.org
17813 S:      Maintained
17814 F:      drivers/input/touchscreen/silead.c
17815 F:      drivers/platform/x86/touchscreen_dmi.c
17816
17817 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17818 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17819 S:      Supported
17820 F:      drivers/staging/wfx/
17821
17822 SILICON MOTION SM712 FRAME BUFFER DRIVER
17823 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17824 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17825 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17826 L:      linux-fbdev@vger.kernel.org
17827 S:      Maintained
17828 F:      Documentation/fb/sm712fb.rst
17829 F:      drivers/video/fbdev/sm712*
17830
17831 SILVACO I3C DUAL-ROLE MASTER
17832 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17833 M:      Conor Culhane <conor.culhane@silvaco.com>
17834 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
17835 S:      Maintained
17836 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17837 F:      drivers/i3c/master/svc-i3c-master.c
17838
17839 SIMPLEFB FB DRIVER
17840 M:      Hans de Goede <hdegoede@redhat.com>
17841 L:      linux-fbdev@vger.kernel.org
17842 S:      Maintained
17843 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17844 F:      drivers/video/fbdev/simplefb.c
17845 F:      include/linux/platform_data/simplefb.h
17846
17847 SIMTEC EB110ATX (Chalice CATS)
17848 M:      Simtec Linux Team <linux@simtec.co.uk>
17849 S:      Supported
17850 W:      http://www.simtec.co.uk/products/EB110ATX/
17851
17852 SIMTEC EB2410ITX (BAST)
17853 M:      Simtec Linux Team <linux@simtec.co.uk>
17854 S:      Supported
17855 W:      http://www.simtec.co.uk/products/EB2410ITX/
17856 F:      arch/arm/mach-s3c/bast-ide.c
17857 F:      arch/arm/mach-s3c/bast-irq.c
17858 F:      arch/arm/mach-s3c/mach-bast.c
17859
17860 SIOX
17861 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17862 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17863 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17864 S:      Supported
17865 F:      drivers/gpio/gpio-siox.c
17866 F:      drivers/siox/*
17867 F:      include/trace/events/siox.h
17868
17869 SIPHASH PRF ROUTINES
17870 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17871 S:      Maintained
17872 F:      include/linux/siphash.h
17873 F:      lib/siphash.c
17874 F:      lib/test_siphash.c
17875
17876 SIS 190 ETHERNET DRIVER
17877 M:      Francois Romieu <romieu@fr.zoreil.com>
17878 L:      netdev@vger.kernel.org
17879 S:      Maintained
17880 F:      drivers/net/ethernet/sis/sis190.c
17881
17882 SIS 900/7016 FAST ETHERNET DRIVER
17883 M:      Daniele Venzano <venza@brownhat.org>
17884 L:      netdev@vger.kernel.org
17885 S:      Maintained
17886 W:      http://www.brownhat.org/sis900.html
17887 F:      drivers/net/ethernet/sis/sis900.*
17888
17889 SIS FRAMEBUFFER DRIVER
17890 M:      Thomas Winischhofer <thomas@winischhofer.net>
17891 S:      Maintained
17892 W:      http://www.winischhofer.net/linuxsisvga.shtml
17893 F:      Documentation/fb/sisfb.rst
17894 F:      drivers/video/fbdev/sis/
17895 F:      include/video/sisfb.h
17896
17897 SIS I2C TOUCHSCREEN DRIVER
17898 M:      Mika Penttilä <mika.penttila@nextfour.com>
17899 L:      linux-input@vger.kernel.org
17900 S:      Maintained
17901 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17902 F:      drivers/input/touchscreen/sis_i2c.c
17903
17904 SIS USB2VGA DRIVER
17905 M:      Thomas Winischhofer <thomas@winischhofer.net>
17906 S:      Maintained
17907 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17908 F:      drivers/usb/misc/sisusbvga/
17909
17910 SL28 CPLD MFD DRIVER
17911 M:      Michael Walle <michael@walle.cc>
17912 S:      Maintained
17913 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
17914 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
17915 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
17916 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
17917 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
17918 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
17919 F:      drivers/gpio/gpio-sl28cpld.c
17920 F:      drivers/hwmon/sl28cpld-hwmon.c
17921 F:      drivers/irqchip/irq-sl28cpld.c
17922 F:      drivers/pwm/pwm-sl28cpld.c
17923 F:      drivers/watchdog/sl28cpld_wdt.c
17924
17925 SLAB ALLOCATOR
17926 M:      Christoph Lameter <cl@linux.com>
17927 M:      Pekka Enberg <penberg@kernel.org>
17928 M:      David Rientjes <rientjes@google.com>
17929 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17930 M:      Andrew Morton <akpm@linux-foundation.org>
17931 M:      Vlastimil Babka <vbabka@suse.cz>
17932 R:      Roman Gushchin <roman.gushchin@linux.dev>
17933 L:      linux-mm@kvack.org
17934 S:      Maintained
17935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
17936 F:      include/linux/sl?b*.h
17937 F:      mm/sl?b*
17938
17939 SLEEPABLE READ-COPY UPDATE (SRCU)
17940 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17941 M:      "Paul E. McKenney" <paulmck@kernel.org>
17942 M:      Josh Triplett <josh@joshtriplett.org>
17943 R:      Steven Rostedt <rostedt@goodmis.org>
17944 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17945 L:      rcu@vger.kernel.org
17946 S:      Supported
17947 W:      http://www.rdrop.com/users/paulmck/RCU/
17948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17949 F:      include/linux/srcu*.h
17950 F:      kernel/rcu/srcu*.c
17951
17952 SMACK SECURITY MODULE
17953 M:      Casey Schaufler <casey@schaufler-ca.com>
17954 L:      linux-security-module@vger.kernel.org
17955 S:      Maintained
17956 W:      http://schaufler-ca.com
17957 T:      git git://github.com/cschaufler/smack-next
17958 F:      Documentation/admin-guide/LSM/Smack.rst
17959 F:      security/smack/
17960
17961 SMC91x ETHERNET DRIVER
17962 M:      Nicolas Pitre <nico@fluxnic.net>
17963 S:      Odd Fixes
17964 F:      drivers/net/ethernet/smsc/smc91x.*
17965
17966 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17967 M:      Mark Rutland <mark.rutland@arm.com>
17968 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17969 M:      Sudeep Holla <sudeep.holla@arm.com>
17970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17971 S:      Maintained
17972 F:      drivers/firmware/smccc/
17973 F:      include/linux/arm-smccc.h
17974
17975 SMM665 HARDWARE MONITOR DRIVER
17976 M:      Guenter Roeck <linux@roeck-us.net>
17977 L:      linux-hwmon@vger.kernel.org
17978 S:      Maintained
17979 F:      Documentation/hwmon/smm665.rst
17980 F:      drivers/hwmon/smm665.c
17981
17982 SMSC EMC2103 HARDWARE MONITOR DRIVER
17983 M:      Steve Glendinning <steve.glendinning@shawell.net>
17984 L:      linux-hwmon@vger.kernel.org
17985 S:      Maintained
17986 F:      Documentation/hwmon/emc2103.rst
17987 F:      drivers/hwmon/emc2103.c
17988
17989 SMSC SCH5627 HARDWARE MONITOR DRIVER
17990 M:      Hans de Goede <hdegoede@redhat.com>
17991 L:      linux-hwmon@vger.kernel.org
17992 S:      Supported
17993 F:      Documentation/hwmon/sch5627.rst
17994 F:      drivers/hwmon/sch5627.c
17995
17996 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17997 M:      Steve Glendinning <steve.glendinning@shawell.net>
17998 L:      linux-fbdev@vger.kernel.org
17999 S:      Maintained
18000 F:      drivers/video/fbdev/smscufx.c
18001
18002 SMSC47B397 HARDWARE MONITOR DRIVER
18003 M:      Jean Delvare <jdelvare@suse.com>
18004 L:      linux-hwmon@vger.kernel.org
18005 S:      Maintained
18006 F:      Documentation/hwmon/smsc47b397.rst
18007 F:      drivers/hwmon/smsc47b397.c
18008
18009 SMSC911x ETHERNET DRIVER
18010 M:      Steve Glendinning <steve.glendinning@shawell.net>
18011 L:      netdev@vger.kernel.org
18012 S:      Maintained
18013 F:      drivers/net/ethernet/smsc/smsc911x.*
18014 F:      include/linux/smsc911x.h
18015
18016 SMSC9420 PCI ETHERNET DRIVER
18017 M:      Steve Glendinning <steve.glendinning@shawell.net>
18018 L:      netdev@vger.kernel.org
18019 S:      Maintained
18020 F:      drivers/net/ethernet/smsc/smsc9420.*
18021
18022 SOCIONEXT (SNI) AVE NETWORK DRIVER
18023 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18024 L:      netdev@vger.kernel.org
18025 S:      Maintained
18026 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18027 F:      drivers/net/ethernet/socionext/sni_ave.c
18028
18029 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18030 M:      Jassi Brar <jaswinder.singh@linaro.org>
18031 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18032 L:      netdev@vger.kernel.org
18033 S:      Maintained
18034 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18035 F:      drivers/net/ethernet/socionext/netsec.c
18036
18037 SOCIONEXT (SNI) Synquacer SPI DRIVER
18038 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18039 M:      Jassi Brar <jaswinder.singh@linaro.org>
18040 L:      linux-spi@vger.kernel.org
18041 S:      Maintained
18042 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18043 F:      drivers/spi/spi-synquacer.c
18044
18045 SOCIONEXT SYNQUACER I2C DRIVER
18046 M:      Ard Biesheuvel <ardb@kernel.org>
18047 L:      linux-i2c@vger.kernel.org
18048 S:      Maintained
18049 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18050 F:      drivers/i2c/busses/i2c-synquacer.c
18051
18052 SOCIONEXT UNIPHIER SOUND DRIVER
18053 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18054 S:      Orphan
18055 F:      sound/soc/uniphier/
18056
18057 SOEKRIS NET48XX LED SUPPORT
18058 M:      Chris Boot <bootc@bootc.net>
18059 S:      Maintained
18060 F:      drivers/leds/leds-net48xx.c
18061
18062 SOFT-IWARP DRIVER (siw)
18063 M:      Bernard Metzler <bmt@zurich.ibm.com>
18064 L:      linux-rdma@vger.kernel.org
18065 S:      Supported
18066 F:      drivers/infiniband/sw/siw/
18067 F:      include/uapi/rdma/siw-abi.h
18068
18069 SOFT-ROCE DRIVER (rxe)
18070 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18071 L:      linux-rdma@vger.kernel.org
18072 S:      Supported
18073 F:      drivers/infiniband/sw/rxe/
18074 F:      include/uapi/rdma/rdma_user_rxe.h
18075
18076 SOFTLOGIC 6x10 MPEG CODEC
18077 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18078 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18079 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18080 M:      Ismael Luceno <ismael@iodev.co.uk>
18081 L:      linux-media@vger.kernel.org
18082 S:      Supported
18083 F:      drivers/media/pci/solo6x10/
18084
18085 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18086 M:      James Morse <james.morse@arm.com>
18087 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18088 S:      Maintained
18089 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18090 F:      drivers/firmware/arm_sdei.c
18091 F:      include/linux/arm_sdei.h
18092 F:      include/uapi/linux/arm_sdei.h
18093
18094 SOFTWARE NODES AND DEVICE PROPERTIES
18095 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18096 R:      Daniel Scally <djrscally@gmail.com>
18097 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18098 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18099 L:      linux-acpi@vger.kernel.org
18100 S:      Maintained
18101 F:      drivers/base/property.c
18102 F:      drivers/base/swnode.c
18103 F:      include/linux/fwnode.h
18104 F:      include/linux/property.h
18105
18106 SOFTWARE RAID (Multiple Disks) SUPPORT
18107 M:      Song Liu <song@kernel.org>
18108 L:      linux-raid@vger.kernel.org
18109 S:      Supported
18110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18111 F:      drivers/md/Kconfig
18112 F:      drivers/md/Makefile
18113 F:      drivers/md/md*
18114 F:      drivers/md/raid*
18115 F:      include/linux/raid/
18116 F:      include/uapi/linux/raid/
18117
18118 SOLIDRUN CLEARFOG SUPPORT
18119 M:      Russell King <linux@armlinux.org.uk>
18120 S:      Maintained
18121 F:      arch/arm/boot/dts/armada-388-clearfog*
18122 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18123
18124 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18125 M:      Russell King <linux@armlinux.org.uk>
18126 S:      Maintained
18127 F:      arch/arm/boot/dts/imx6*-cubox-i*
18128 F:      arch/arm/boot/dts/imx6*-hummingboard*
18129 F:      arch/arm/boot/dts/imx6*-sr-*
18130
18131 SONIC NETWORK DRIVER
18132 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18133 L:      netdev@vger.kernel.org
18134 S:      Maintained
18135 F:      drivers/net/ethernet/natsemi/sonic.*
18136
18137 SONICS SILICON BACKPLANE DRIVER (SSB)
18138 M:      Michael Buesch <m@bues.ch>
18139 L:      linux-wireless@vger.kernel.org
18140 S:      Maintained
18141 F:      drivers/ssb/
18142 F:      include/linux/ssb/
18143
18144 SONY IMX208 SENSOR DRIVER
18145 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18146 L:      linux-media@vger.kernel.org
18147 S:      Maintained
18148 T:      git git://linuxtv.org/media_tree.git
18149 F:      drivers/media/i2c/imx208.c
18150
18151 SONY IMX214 SENSOR DRIVER
18152 M:      Ricardo Ribalda <ribalda@kernel.org>
18153 L:      linux-media@vger.kernel.org
18154 S:      Maintained
18155 T:      git git://linuxtv.org/media_tree.git
18156 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18157 F:      drivers/media/i2c/imx214.c
18158
18159 SONY IMX219 SENSOR DRIVER
18160 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18161 L:      linux-media@vger.kernel.org
18162 S:      Maintained
18163 T:      git git://linuxtv.org/media_tree.git
18164 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18165 F:      drivers/media/i2c/imx219.c
18166
18167 SONY IMX258 SENSOR DRIVER
18168 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18169 L:      linux-media@vger.kernel.org
18170 S:      Maintained
18171 T:      git git://linuxtv.org/media_tree.git
18172 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18173 F:      drivers/media/i2c/imx258.c
18174
18175 SONY IMX274 SENSOR DRIVER
18176 M:      Leon Luo <leonl@leopardimaging.com>
18177 L:      linux-media@vger.kernel.org
18178 S:      Maintained
18179 T:      git git://linuxtv.org/media_tree.git
18180 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18181 F:      drivers/media/i2c/imx274.c
18182
18183 SONY IMX290 SENSOR DRIVER
18184 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18185 L:      linux-media@vger.kernel.org
18186 S:      Maintained
18187 T:      git git://linuxtv.org/media_tree.git
18188 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18189 F:      drivers/media/i2c/imx290.c
18190
18191 SONY IMX319 SENSOR DRIVER
18192 M:      Bingbu Cao <bingbu.cao@intel.com>
18193 L:      linux-media@vger.kernel.org
18194 S:      Maintained
18195 T:      git git://linuxtv.org/media_tree.git
18196 F:      drivers/media/i2c/imx319.c
18197
18198 SONY IMX334 SENSOR DRIVER
18199 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18200 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18201 L:      linux-media@vger.kernel.org
18202 S:      Maintained
18203 T:      git git://linuxtv.org/media_tree.git
18204 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18205 F:      drivers/media/i2c/imx334.c
18206
18207 SONY IMX335 SENSOR DRIVER
18208 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18209 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18210 L:      linux-media@vger.kernel.org
18211 S:      Maintained
18212 T:      git git://linuxtv.org/media_tree.git
18213 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18214 F:      drivers/media/i2c/imx335.c
18215
18216 SONY IMX355 SENSOR DRIVER
18217 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18218 L:      linux-media@vger.kernel.org
18219 S:      Maintained
18220 T:      git git://linuxtv.org/media_tree.git
18221 F:      drivers/media/i2c/imx355.c
18222
18223 SONY IMX412 SENSOR DRIVER
18224 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18225 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18226 L:      linux-media@vger.kernel.org
18227 S:      Maintained
18228 T:      git git://linuxtv.org/media_tree.git
18229 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18230 F:      drivers/media/i2c/imx412.c
18231
18232 SONY MEMORYSTICK SUBSYSTEM
18233 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18234 M:      Alex Dubov <oakad@yahoo.com>
18235 M:      Ulf Hansson <ulf.hansson@linaro.org>
18236 L:      linux-mmc@vger.kernel.org
18237 S:      Maintained
18238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18239 F:      drivers/memstick/
18240 F:      include/linux/memstick.h
18241
18242 SONY VAIO CONTROL DEVICE DRIVER
18243 M:      Mattia Dongili <malattia@linux.it>
18244 L:      platform-driver-x86@vger.kernel.org
18245 S:      Maintained
18246 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18247 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18248 F:      drivers/char/sonypi.c
18249 F:      drivers/platform/x86/sony-laptop.c
18250 F:      include/linux/sony-laptop.h
18251
18252 SOUND
18253 M:      Jaroslav Kysela <perex@perex.cz>
18254 M:      Takashi Iwai <tiwai@suse.com>
18255 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18256 S:      Maintained
18257 W:      http://www.alsa-project.org/
18258 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18260 F:      Documentation/sound/
18261 F:      include/sound/
18262 F:      include/uapi/sound/
18263 F:      sound/
18264 F:      tools/testing/selftests/alsa
18265
18266 SOUND - COMPRESSED AUDIO
18267 M:      Vinod Koul <vkoul@kernel.org>
18268 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18269 S:      Supported
18270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18271 F:      Documentation/sound/designs/compress-offload.rst
18272 F:      include/sound/compress_driver.h
18273 F:      include/uapi/sound/compress_*
18274 F:      sound/core/compress_offload.c
18275 F:      sound/soc/soc-compress.c
18276
18277 SOUND - DMAENGINE HELPERS
18278 M:      Lars-Peter Clausen <lars@metafoo.de>
18279 S:      Supported
18280 F:      include/sound/dmaengine_pcm.h
18281 F:      sound/core/pcm_dmaengine.c
18282 F:      sound/soc/soc-generic-dmaengine-pcm.c
18283
18284 SOUND - ALSA SELFTESTS
18285 M:      Mark Brown <broonie@kernel.org>
18286 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18287 L:      linux-kselftest@vger.kernel.org
18288 S:      Supported
18289 F:      tools/testing/selftests/alsa
18290
18291 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18292 M:      Liam Girdwood <lgirdwood@gmail.com>
18293 M:      Mark Brown <broonie@kernel.org>
18294 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18295 S:      Supported
18296 W:      http://alsa-project.org/main/index.php/ASoC
18297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18298 F:      Documentation/devicetree/bindings/sound/
18299 F:      Documentation/sound/soc/
18300 F:      include/dt-bindings/sound/
18301 F:      include/sound/soc*
18302 F:      sound/soc/
18303
18304 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18305 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18306 M:      Liam Girdwood <lgirdwood@gmail.com>
18307 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18308 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18309 M:      Daniel Baluta <daniel.baluta@nxp.com>
18310 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18311 S:      Supported
18312 W:      https://github.com/thesofproject/linux/
18313 F:      sound/soc/sof/
18314
18315 SOUNDWIRE SUBSYSTEM
18316 M:      Vinod Koul <vkoul@kernel.org>
18317 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18318 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18319 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18320 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18321 S:      Supported
18322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18323 F:      Documentation/driver-api/soundwire/
18324 F:      drivers/soundwire/
18325 F:      include/linux/soundwire/
18326
18327 SP2 MEDIA DRIVER
18328 M:      Olli Salonen <olli.salonen@iki.fi>
18329 L:      linux-media@vger.kernel.org
18330 S:      Maintained
18331 W:      https://linuxtv.org
18332 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18333 F:      drivers/media/dvb-frontends/sp2*
18334
18335 SPARC + UltraSPARC (sparc/sparc64)
18336 M:      "David S. Miller" <davem@davemloft.net>
18337 L:      sparclinux@vger.kernel.org
18338 S:      Maintained
18339 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18342 F:      arch/sparc/
18343 F:      drivers/sbus/
18344
18345 SPARC SERIAL DRIVERS
18346 M:      "David S. Miller" <davem@davemloft.net>
18347 L:      sparclinux@vger.kernel.org
18348 S:      Maintained
18349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18351 F:      drivers/tty/serial/suncore.c
18352 F:      drivers/tty/serial/sunhv.c
18353 F:      drivers/tty/serial/sunsab.c
18354 F:      drivers/tty/serial/sunsab.h
18355 F:      drivers/tty/serial/sunsu.c
18356 F:      drivers/tty/serial/sunzilog.c
18357 F:      drivers/tty/serial/sunzilog.h
18358 F:      drivers/tty/vcc.c
18359 F:      include/linux/sunserialcore.h
18360
18361 SPARSE CHECKER
18362 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18363 L:      linux-sparse@vger.kernel.org
18364 S:      Maintained
18365 W:      https://sparse.docs.kernel.org/
18366 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18367 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18368 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18369 F:      include/linux/compiler.h
18370
18371 SPEAKUP CONSOLE SPEECH DRIVER
18372 M:      William Hubbs <w.d.hubbs@gmail.com>
18373 M:      Chris Brannon <chris@the-brannons.com>
18374 M:      Kirk Reiser <kirk@reisers.ca>
18375 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18376 L:      speakup@linux-speakup.org
18377 S:      Odd Fixes
18378 W:      http://www.linux-speakup.org/
18379 W:      https://github.com/linux-speakup/speakup
18380 B:      https://github.com/linux-speakup/speakup/issues
18381 F:      drivers/accessibility/speakup/
18382
18383 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18384 M:      Viresh Kumar <vireshk@kernel.org>
18385 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18386 M:      soc@kernel.org
18387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18388 S:      Maintained
18389 W:      http://www.st.com/spear
18390 F:      arch/arm/boot/dts/spear*
18391 F:      arch/arm/mach-spear/
18392 F:      drivers/clk/spear/
18393 F:      drivers/pinctrl/spear/
18394
18395 SPI NOR SUBSYSTEM
18396 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18397 M:      Pratyush Yadav <p.yadav@ti.com>
18398 R:      Michael Walle <michael@walle.cc>
18399 L:      linux-mtd@lists.infradead.org
18400 S:      Maintained
18401 W:      http://www.linux-mtd.infradead.org/
18402 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18403 C:      irc://irc.oftc.net/mtd
18404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18405 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18406 F:      drivers/mtd/spi-nor/
18407 F:      include/linux/mtd/spi-nor.h
18408
18409 SPI SUBSYSTEM
18410 M:      Mark Brown <broonie@kernel.org>
18411 L:      linux-spi@vger.kernel.org
18412 S:      Maintained
18413 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18415 F:      Documentation/devicetree/bindings/spi/
18416 F:      Documentation/spi/
18417 F:      drivers/spi/
18418 F:      include/linux/spi/
18419 F:      include/uapi/linux/spi/
18420 F:      tools/spi/
18421
18422 SPIDERNET NETWORK DRIVER for CELL
18423 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18424 M:      Geoff Levand <geoff@infradead.org>
18425 L:      netdev@vger.kernel.org
18426 L:      linuxppc-dev@lists.ozlabs.org
18427 S:      Maintained
18428 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18429 F:      drivers/net/ethernet/toshiba/spider_net*
18430
18431 SPMI SUBSYSTEM
18432 M:      Stephen Boyd <sboyd@kernel.org>
18433 L:      linux-kernel@vger.kernel.org
18434 S:      Maintained
18435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18436 F:      Documentation/devicetree/bindings/spmi/
18437 F:      drivers/spmi/
18438 F:      include/dt-bindings/spmi/spmi.h
18439 F:      include/linux/spmi.h
18440 F:      include/trace/events/spmi.h
18441
18442 SPU FILE SYSTEM
18443 M:      Jeremy Kerr <jk@ozlabs.org>
18444 L:      linuxppc-dev@lists.ozlabs.org
18445 S:      Supported
18446 W:      http://www.ibm.com/developerworks/power/cell/
18447 F:      Documentation/filesystems/spufs/spufs.rst
18448 F:      arch/powerpc/platforms/cell/spufs/
18449
18450 SQUASHFS FILE SYSTEM
18451 M:      Phillip Lougher <phillip@squashfs.org.uk>
18452 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18453 S:      Maintained
18454 W:      http://squashfs.org.uk
18455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18456 F:      Documentation/filesystems/squashfs.rst
18457 F:      fs/squashfs/
18458
18459 SRM (Alpha) environment access
18460 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18461 S:      Maintained
18462 F:      arch/alpha/kernel/srm_env.c
18463
18464 ST LSM6DSx IMU IIO DRIVER
18465 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
18466 L:      linux-iio@vger.kernel.org
18467 S:      Maintained
18468 W:      http://www.st.com/
18469 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18470 F:      drivers/iio/imu/st_lsm6dsx/
18471
18472 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18473 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
18474 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
18475 L:      linux-media@vger.kernel.org
18476 S:      Maintained
18477 T:      git git://linuxtv.org/media_tree.git
18478 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18479 F:      drivers/media/i2c/st-mipid02.c
18480
18481 ST STM32 I2C/SMBUS DRIVER
18482 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18483 M:      Alain Volmat <alain.volmat@foss.st.com>
18484 L:      linux-i2c@vger.kernel.org
18485 S:      Maintained
18486 F:      drivers/i2c/busses/i2c-stm32*
18487
18488 ST STM32 SPI DRIVER
18489 M:      Alain Volmat <alain.volmat@foss.st.com>
18490 L:      linux-spi@vger.kernel.org
18491 S:      Maintained
18492 F:      drivers/spi/spi-stm32.c
18493
18494 ST STPDDC60 DRIVER
18495 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18496 L:      linux-hwmon@vger.kernel.org
18497 S:      Maintained
18498 F:      Documentation/hwmon/stpddc60.rst
18499 F:      drivers/hwmon/pmbus/stpddc60.c
18500
18501 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18502 M:      Song Qiang <songqiang1304521@gmail.com>
18503 L:      linux-iio@vger.kernel.org
18504 S:      Maintained
18505 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18506 F:      drivers/iio/proximity/vl53l0x-i2c.c
18507
18508 STABLE BRANCH
18509 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18510 M:      Sasha Levin <sashal@kernel.org>
18511 L:      stable@vger.kernel.org
18512 S:      Supported
18513 F:      Documentation/process/stable-kernel-rules.rst
18514
18515 STAGING - ATOMISP DRIVER
18516 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18517 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18518 L:      linux-media@vger.kernel.org
18519 S:      Maintained
18520 F:      drivers/staging/media/atomisp/
18521
18522 STAGING - FIELDBUS SUBSYSTEM
18523 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18524 S:      Maintained
18525 F:      drivers/staging/fieldbus/*
18526 F:      drivers/staging/fieldbus/Documentation/
18527
18528 STAGING - HMS ANYBUS-S BUS
18529 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18530 S:      Maintained
18531 F:      drivers/staging/fieldbus/anybuss/
18532
18533 STAGING - INDUSTRIAL IO
18534 M:      Jonathan Cameron <jic23@kernel.org>
18535 L:      linux-iio@vger.kernel.org
18536 S:      Odd Fixes
18537 F:      Documentation/devicetree/bindings/staging/iio/
18538 F:      drivers/staging/iio/
18539
18540 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18541 M:      Marc Dietrich <marvin24@gmx.de>
18542 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18543 L:      linux-tegra@vger.kernel.org
18544 S:      Maintained
18545 F:      drivers/staging/nvec/
18546
18547 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18548 M:      Jens Frederich <jfrederich@gmail.com>
18549 M:      Jon Nettleton <jon.nettleton@gmail.com>
18550 S:      Maintained
18551 W:      http://wiki.laptop.org/go/DCON
18552 F:      drivers/staging/olpc_dcon/
18553
18554 STAGING - REALTEK RTL8188EU DRIVERS
18555 M:      Larry Finger <Larry.Finger@lwfinger.net>
18556 M:      Phillip Potter <phil@philpotter.co.uk>
18557 S:      Supported
18558 F:      drivers/staging/r8188eu/
18559
18560 STAGING - REALTEK RTL8712U DRIVERS
18561 M:      Larry Finger <Larry.Finger@lwfinger.net>
18562 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18563 S:      Odd Fixes
18564 F:      drivers/staging/rtl8712/
18565
18566 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18567 M:      Michael Hennerich <michael.hennerich@analog.com>
18568 L:      linux-fbdev@vger.kernel.org
18569 S:      Supported
18570 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18571 F:      drivers/staging/fbtft/fb_seps525.c
18572
18573 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18574 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18575 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18576 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18577 L:      linux-fbdev@vger.kernel.org
18578 S:      Maintained
18579 F:      drivers/staging/sm750fb/
18580
18581 STAGING - VIA VT665X DRIVERS
18582 M:      Forest Bond <forest@alittletooquiet.net>
18583 S:      Odd Fixes
18584 F:      drivers/staging/vt665?/
18585
18586 STAGING SUBSYSTEM
18587 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18588 L:      linux-staging@lists.linux.dev
18589 S:      Supported
18590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18591 F:      drivers/staging/
18592
18593 STARFIRE/DURALAN NETWORK DRIVER
18594 M:      Ion Badulescu <ionut@badula.org>
18595 S:      Odd Fixes
18596 F:      drivers/net/ethernet/adaptec/starfire*
18597
18598 STARFIVE JH7100 CLOCK DRIVER
18599 M:      Emil Renner Berthing <kernel@esmil.dk>
18600 S:      Maintained
18601 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-clkgen.yaml
18602 F:      drivers/clk/starfive/clk-starfive-jh7100.c
18603 F:      include/dt-bindings/clock/starfive-jh7100.h
18604
18605 STARFIVE JH7100 PINCTRL DRIVER
18606 M:      Emil Renner Berthing <kernel@esmil.dk>
18607 L:      linux-gpio@vger.kernel.org
18608 S:      Maintained
18609 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18610 F:      drivers/pinctrl/pinctrl-starfive.c
18611 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18612
18613 STARFIVE JH7100 RESET CONTROLLER DRIVER
18614 M:      Emil Renner Berthing <kernel@esmil.dk>
18615 S:      Maintained
18616 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18617 F:      drivers/reset/reset-starfive-jh7100.c
18618 F:      include/dt-bindings/reset/starfive-jh7100.h
18619
18620 STATIC BRANCH/CALL
18621 M:      Peter Zijlstra <peterz@infradead.org>
18622 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18623 M:      Jason Baron <jbaron@akamai.com>
18624 R:      Steven Rostedt <rostedt@goodmis.org>
18625 R:      Ard Biesheuvel <ardb@kernel.org>
18626 S:      Supported
18627 F:      arch/*/include/asm/jump_label*.h
18628 F:      arch/*/include/asm/static_call*.h
18629 F:      arch/*/kernel/jump_label.c
18630 F:      arch/*/kernel/static_call.c
18631 F:      include/linux/jump_label*.h
18632 F:      include/linux/static_call*.h
18633 F:      kernel/jump_label.c
18634 F:      kernel/static_call.c
18635
18636 STI AUDIO (ASoC) DRIVERS
18637 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18638 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18639 S:      Maintained
18640 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18641 F:      sound/soc/sti/
18642
18643 STI CEC DRIVER
18644 M:      Alain Volmat <alain.volmat@foss.st.com>
18645 S:      Maintained
18646 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18647 F:      drivers/media/cec/platform/sti/
18648
18649 STK1160 USB VIDEO CAPTURE DRIVER
18650 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18651 L:      linux-media@vger.kernel.org
18652 S:      Maintained
18653 T:      git git://linuxtv.org/media_tree.git
18654 F:      drivers/media/usb/stk1160/
18655
18656 STM32 AUDIO (ASoC) DRIVERS
18657 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18658 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18659 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18660 S:      Maintained
18661 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18662 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18663 F:      sound/soc/stm/
18664
18665 STM32 TIMER/LPTIMER DRIVERS
18666 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18667 S:      Maintained
18668 F:      Documentation/ABI/testing/*timer-stm32
18669 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18670 F:      drivers/*/stm32-*timer*
18671 F:      drivers/pwm/pwm-stm32*
18672 F:      include/linux/*/stm32-*tim*
18673
18674 STMMAC ETHERNET DRIVER
18675 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18676 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18677 M:      Jose Abreu <joabreu@synopsys.com>
18678 L:      netdev@vger.kernel.org
18679 S:      Supported
18680 W:      http://www.stlinux.com
18681 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18682 F:      drivers/net/ethernet/stmicro/stmmac/
18683
18684 SUN3/3X
18685 M:      Sam Creasey <sammy@sammy.net>
18686 S:      Maintained
18687 W:      http://sammy.net/sun3/
18688 F:      arch/m68k/include/asm/sun3*
18689 F:      arch/m68k/kernel/*sun3*
18690 F:      arch/m68k/sun3*/
18691 F:      drivers/net/ethernet/i825xx/sun3*
18692
18693 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18694 M:      Hans de Goede <hdegoede@redhat.com>
18695 L:      linux-input@vger.kernel.org
18696 S:      Maintained
18697 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18698 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18699
18700 SUNDANCE NETWORK DRIVER
18701 M:      Denis Kirjanov <kda@linux-powerpc.org>
18702 L:      netdev@vger.kernel.org
18703 S:      Maintained
18704 F:      drivers/net/ethernet/dlink/sundance.c
18705
18706 SUNPLUS RTC DRIVER
18707 M:      Vincent Shih <vincent.sunplus@gmail.com>
18708 L:      linux-rtc@vger.kernel.org
18709 S:      Maintained
18710 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
18711 F:      drivers/rtc/rtc-sunplus.c
18712
18713 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
18714 M:      Li-hao Kuo <lhjeff911@gmail.com>
18715 L:      linux-spi@vger.kernel.org
18716 S:      Maintained
18717 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
18718 F:      drivers/spi/spi-sunplus-sp7021.c
18719
18720 SUPERH
18721 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18722 M:      Rich Felker <dalias@libc.org>
18723 L:      linux-sh@vger.kernel.org
18724 S:      Maintained
18725 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18726 F:      Documentation/sh/
18727 F:      arch/sh/
18728 F:      drivers/sh/
18729
18730 SUSPEND TO RAM
18731 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18732 M:      Len Brown <len.brown@intel.com>
18733 M:      Pavel Machek <pavel@ucw.cz>
18734 L:      linux-pm@vger.kernel.org
18735 S:      Supported
18736 B:      https://bugzilla.kernel.org
18737 F:      Documentation/power/
18738 F:      arch/x86/kernel/acpi/
18739 F:      drivers/base/power/
18740 F:      include/linux/freezer.h
18741 F:      include/linux/pm.h
18742 F:      include/linux/suspend.h
18743 F:      kernel/power/
18744
18745 SVGA HANDLING
18746 M:      Martin Mares <mj@ucw.cz>
18747 L:      linux-video@atrey.karlin.mff.cuni.cz
18748 S:      Maintained
18749 F:      Documentation/admin-guide/svga.rst
18750 F:      arch/x86/boot/video*
18751
18752 SWIOTLB SUBSYSTEM
18753 M:      Christoph Hellwig <hch@infradead.org>
18754 L:      iommu@lists.linux-foundation.org
18755 S:      Supported
18756 W:      http://git.infradead.org/users/hch/dma-mapping.git
18757 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18758 F:      arch/*/kernel/pci-swiotlb.c
18759 F:      include/linux/swiotlb.h
18760 F:      kernel/dma/swiotlb.c
18761
18762 SWITCHDEV
18763 M:      Jiri Pirko <jiri@resnulli.us>
18764 M:      Ivan Vecera <ivecera@redhat.com>
18765 L:      netdev@vger.kernel.org
18766 S:      Supported
18767 F:      include/net/switchdev.h
18768 F:      net/switchdev/
18769
18770 SY8106A REGULATOR DRIVER
18771 M:      Icenowy Zheng <icenowy@aosc.io>
18772 S:      Maintained
18773 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18774 F:      drivers/regulator/sy8106a-regulator.c
18775
18776 SYNC FILE FRAMEWORK
18777 M:      Sumit Semwal <sumit.semwal@linaro.org>
18778 R:      Gustavo Padovan <gustavo@padovan.org>
18779 L:      linux-media@vger.kernel.org
18780 L:      dri-devel@lists.freedesktop.org
18781 S:      Maintained
18782 T:      git git://anongit.freedesktop.org/drm/drm-misc
18783 F:      Documentation/driver-api/sync_file.rst
18784 F:      drivers/dma-buf/dma-fence*
18785 F:      drivers/dma-buf/sw_sync.c
18786 F:      drivers/dma-buf/sync_*
18787 F:      include/linux/sync_file.h
18788 F:      include/uapi/linux/sync_file.h
18789
18790 SYNOPSYS ARC ARCHITECTURE
18791 M:      Vineet Gupta <vgupta@kernel.org>
18792 L:      linux-snps-arc@lists.infradead.org
18793 S:      Supported
18794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18795 F:      Documentation/arc/
18796 F:      Documentation/devicetree/bindings/arc/*
18797 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18798 F:      arch/arc/
18799 F:      drivers/clocksource/arc_timer.c
18800 F:      drivers/tty/serial/arc_uart.c
18801
18802 SYNOPSYS ARC HSDK SDP pll clock driver
18803 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18804 S:      Supported
18805 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18806 F:      drivers/clk/clk-hsdk-pll.c
18807
18808 SYNOPSYS ARC SDP clock driver
18809 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18810 S:      Supported
18811 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18812 F:      drivers/clk/axs10x/*
18813
18814 SYNOPSYS ARC SDP platform support
18815 M:      Alexey Brodkin <abrodkin@synopsys.com>
18816 S:      Supported
18817 F:      Documentation/devicetree/bindings/arc/axs10*
18818 F:      arch/arc/boot/dts/ax*
18819 F:      arch/arc/plat-axs10x
18820
18821 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18822 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18823 S:      Supported
18824 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18825 F:      drivers/reset/reset-axs10x.c
18826
18827 SYNOPSYS CREG GPIO DRIVER
18828 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18829 S:      Maintained
18830 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18831 F:      drivers/gpio/gpio-creg-snps.c
18832
18833 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18834 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18835 S:      Maintained
18836 F:      drivers/tty/serial/8250/8250_dw.c
18837 F:      drivers/tty/serial/8250/8250_dwlib.*
18838 F:      drivers/tty/serial/8250/8250_lpss.c
18839
18840 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18841 M:      Hoan Tran <hoan@os.amperecomputing.com>
18842 M:      Serge Semin <fancer.lancer@gmail.com>
18843 L:      linux-gpio@vger.kernel.org
18844 S:      Maintained
18845 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18846 F:      drivers/gpio/gpio-dwapb.c
18847
18848 SYNOPSYS DESIGNWARE APB SSI DRIVER
18849 M:      Serge Semin <fancer.lancer@gmail.com>
18850 L:      linux-spi@vger.kernel.org
18851 S:      Supported
18852 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18853 F:      drivers/spi/spi-dw*
18854
18855 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18856 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18857 S:      Maintained
18858 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18859 F:      drivers/dma/dw-axi-dmac/
18860
18861 SYNOPSYS DESIGNWARE DMAC DRIVER
18862 M:      Viresh Kumar <vireshk@kernel.org>
18863 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18864 S:      Maintained
18865 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18866 F:      drivers/dma/dw/
18867 F:      include/dt-bindings/dma/dw-dmac.h
18868 F:      include/linux/dma/dw.h
18869 F:      include/linux/platform_data/dma-dw.h
18870
18871 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18872 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18873 L:      netdev@vger.kernel.org
18874 S:      Supported
18875 F:      drivers/net/ethernet/synopsys/
18876
18877 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18878 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18879 L:      netdev@vger.kernel.org
18880 S:      Supported
18881 F:      drivers/net/pcs/pcs-xpcs.c
18882 F:      drivers/net/pcs/pcs-xpcs.h
18883 F:      include/linux/pcs/pcs-xpcs.h
18884
18885 SYNOPSYS DESIGNWARE I2C DRIVER
18886 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18887 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18888 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18889 R:      Jan Dabros <jsd@semihalf.com>
18890 L:      linux-i2c@vger.kernel.org
18891 S:      Maintained
18892 F:      drivers/i2c/busses/i2c-designware-*
18893
18894 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18895 M:      Jaehoon Chung <jh80.chung@samsung.com>
18896 L:      linux-mmc@vger.kernel.org
18897 S:      Maintained
18898 F:      drivers/mmc/host/dw_mmc*
18899
18900 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18901 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18902 S:      Supported
18903 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18904 F:      drivers/reset/reset-hsdk.c
18905 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18906
18907 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18908 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18909 M:      Manjunath M B <manjumb@synopsys.com>
18910 L:      linux-mmc@vger.kernel.org
18911 S:      Maintained
18912 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18913
18914 SYSTEM CONFIGURATION (SYSCON)
18915 M:      Lee Jones <lee.jones@linaro.org>
18916 M:      Arnd Bergmann <arnd@arndb.de>
18917 S:      Supported
18918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18919 F:      drivers/mfd/syscon.c
18920
18921 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18922 M:      Sudeep Holla <sudeep.holla@arm.com>
18923 R:      Cristian Marussi <cristian.marussi@arm.com>
18924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18925 S:      Maintained
18926 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18927 F:      drivers/clk/clk-sc[mp]i.c
18928 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18929 F:      drivers/firmware/arm_scmi/
18930 F:      drivers/firmware/arm_scpi.c
18931 F:      drivers/regulator/scmi-regulator.c
18932 F:      drivers/reset/reset-scmi.c
18933 F:      include/linux/sc[mp]i_protocol.h
18934 F:      include/trace/events/scmi.h
18935 F:      include/uapi/linux/virtio_scmi.h
18936
18937 SYSTEM RESET/SHUTDOWN DRIVERS
18938 M:      Sebastian Reichel <sre@kernel.org>
18939 L:      linux-pm@vger.kernel.org
18940 S:      Maintained
18941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18942 F:      Documentation/devicetree/bindings/power/reset/
18943 F:      drivers/power/reset/
18944
18945 SYSTEM TRACE MODULE CLASS
18946 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18947 S:      Maintained
18948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18949 F:      Documentation/trace/stm.rst
18950 F:      drivers/hwtracing/stm/
18951 F:      include/linux/stm.h
18952 F:      include/uapi/linux/stm.h
18953
18954 SYSTEM76 ACPI DRIVER
18955 M:      Jeremy Soller <jeremy@system76.com>
18956 M:      System76 Product Development <productdev@system76.com>
18957 L:      platform-driver-x86@vger.kernel.org
18958 S:      Maintained
18959 F:      drivers/platform/x86/system76_acpi.c
18960
18961 SYSV FILESYSTEM
18962 M:      Christoph Hellwig <hch@infradead.org>
18963 S:      Maintained
18964 F:      Documentation/filesystems/sysv-fs.rst
18965 F:      fs/sysv/
18966 F:      include/linux/sysv_fs.h
18967
18968 TASKSTATS STATISTICS INTERFACE
18969 M:      Balbir Singh <bsingharora@gmail.com>
18970 S:      Maintained
18971 F:      Documentation/accounting/taskstats*
18972 F:      include/linux/taskstats*
18973 F:      kernel/taskstats.c
18974
18975 TC subsystem
18976 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18977 M:      Cong Wang <xiyou.wangcong@gmail.com>
18978 M:      Jiri Pirko <jiri@resnulli.us>
18979 L:      netdev@vger.kernel.org
18980 S:      Maintained
18981 F:      include/net/pkt_cls.h
18982 F:      include/net/pkt_sched.h
18983 F:      include/net/tc_act/
18984 F:      include/uapi/linux/pkt_cls.h
18985 F:      include/uapi/linux/pkt_sched.h
18986 F:      include/uapi/linux/tc_act/
18987 F:      include/uapi/linux/tc_ematch/
18988 F:      net/sched/
18989 F:      tools/testing/selftests/tc-testing
18990
18991 TC90522 MEDIA DRIVER
18992 M:      Akihiro Tsukada <tskd08@gmail.com>
18993 L:      linux-media@vger.kernel.org
18994 S:      Odd Fixes
18995 F:      drivers/media/dvb-frontends/tc90522*
18996
18997 TCP LOW PRIORITY MODULE
18998 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18999 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19000 S:      Maintained
19001 W:      http://tcp-lp-mod.sourceforge.net/
19002 F:      net/ipv4/tcp_lp.c
19003
19004 TDA10071 MEDIA DRIVER
19005 M:      Antti Palosaari <crope@iki.fi>
19006 L:      linux-media@vger.kernel.org
19007 S:      Maintained
19008 W:      https://linuxtv.org
19009 W:      http://palosaari.fi/linux/
19010 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19011 T:      git git://linuxtv.org/anttip/media_tree.git
19012 F:      drivers/media/dvb-frontends/tda10071*
19013
19014 TDA18212 MEDIA DRIVER
19015 M:      Antti Palosaari <crope@iki.fi>
19016 L:      linux-media@vger.kernel.org
19017 S:      Maintained
19018 W:      https://linuxtv.org
19019 W:      http://palosaari.fi/linux/
19020 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19021 T:      git git://linuxtv.org/anttip/media_tree.git
19022 F:      drivers/media/tuners/tda18212*
19023
19024 TDA18218 MEDIA DRIVER
19025 M:      Antti Palosaari <crope@iki.fi>
19026 L:      linux-media@vger.kernel.org
19027 S:      Maintained
19028 W:      https://linuxtv.org
19029 W:      http://palosaari.fi/linux/
19030 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19031 T:      git git://linuxtv.org/anttip/media_tree.git
19032 F:      drivers/media/tuners/tda18218*
19033
19034 TDA18250 MEDIA DRIVER
19035 M:      Olli Salonen <olli.salonen@iki.fi>
19036 L:      linux-media@vger.kernel.org
19037 S:      Maintained
19038 W:      https://linuxtv.org
19039 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19040 T:      git git://linuxtv.org/media_tree.git
19041 F:      drivers/media/tuners/tda18250*
19042
19043 TDA18271 MEDIA DRIVER
19044 M:      Michael Krufky <mkrufky@linuxtv.org>
19045 L:      linux-media@vger.kernel.org
19046 S:      Maintained
19047 W:      https://linuxtv.org
19048 W:      http://github.com/mkrufky
19049 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19050 T:      git git://linuxtv.org/mkrufky/tuners.git
19051 F:      drivers/media/tuners/tda18271*
19052
19053 TDA1997x MEDIA DRIVER
19054 M:      Tim Harvey <tharvey@gateworks.com>
19055 L:      linux-media@vger.kernel.org
19056 S:      Maintained
19057 W:      https://linuxtv.org
19058 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19059 F:      drivers/media/i2c/tda1997x.*
19060
19061 TDA827x MEDIA DRIVER
19062 M:      Michael Krufky <mkrufky@linuxtv.org>
19063 L:      linux-media@vger.kernel.org
19064 S:      Maintained
19065 W:      https://linuxtv.org
19066 W:      http://github.com/mkrufky
19067 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19068 T:      git git://linuxtv.org/mkrufky/tuners.git
19069 F:      drivers/media/tuners/tda8290.*
19070
19071 TDA8290 MEDIA DRIVER
19072 M:      Michael Krufky <mkrufky@linuxtv.org>
19073 L:      linux-media@vger.kernel.org
19074 S:      Maintained
19075 W:      https://linuxtv.org
19076 W:      http://github.com/mkrufky
19077 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19078 T:      git git://linuxtv.org/mkrufky/tuners.git
19079 F:      drivers/media/tuners/tda8290.*
19080
19081 TDA9840 MEDIA DRIVER
19082 M:      Hans Verkuil <hverkuil@xs4all.nl>
19083 L:      linux-media@vger.kernel.org
19084 S:      Maintained
19085 W:      https://linuxtv.org
19086 T:      git git://linuxtv.org/media_tree.git
19087 F:      drivers/media/i2c/tda9840*
19088
19089 TEA5761 TUNER DRIVER
19090 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19091 L:      linux-media@vger.kernel.org
19092 S:      Odd fixes
19093 W:      https://linuxtv.org
19094 T:      git git://linuxtv.org/media_tree.git
19095 F:      drivers/media/tuners/tea5761.*
19096
19097 TEA5767 TUNER DRIVER
19098 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19099 L:      linux-media@vger.kernel.org
19100 S:      Maintained
19101 W:      https://linuxtv.org
19102 T:      git git://linuxtv.org/media_tree.git
19103 F:      drivers/media/tuners/tea5767.*
19104
19105 TEA6415C MEDIA DRIVER
19106 M:      Hans Verkuil <hverkuil@xs4all.nl>
19107 L:      linux-media@vger.kernel.org
19108 S:      Maintained
19109 W:      https://linuxtv.org
19110 T:      git git://linuxtv.org/media_tree.git
19111 F:      drivers/media/i2c/tea6415c*
19112
19113 TEA6420 MEDIA DRIVER
19114 M:      Hans Verkuil <hverkuil@xs4all.nl>
19115 L:      linux-media@vger.kernel.org
19116 S:      Maintained
19117 W:      https://linuxtv.org
19118 T:      git git://linuxtv.org/media_tree.git
19119 F:      drivers/media/i2c/tea6420*
19120
19121 TEAM DRIVER
19122 M:      Jiri Pirko <jiri@resnulli.us>
19123 L:      netdev@vger.kernel.org
19124 S:      Supported
19125 F:      drivers/net/team/
19126 F:      include/linux/if_team.h
19127 F:      include/uapi/linux/if_team.h
19128
19129 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19130 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19131 S:      Maintained
19132 F:      arch/x86/platform/ts5500/
19133
19134 TECHNOTREND USB IR RECEIVER
19135 M:      Sean Young <sean@mess.org>
19136 L:      linux-media@vger.kernel.org
19137 S:      Maintained
19138 F:      drivers/media/rc/ttusbir.c
19139
19140 TECHWELL TW9910 VIDEO DECODER
19141 L:      linux-media@vger.kernel.org
19142 S:      Orphan
19143 F:      drivers/media/i2c/tw9910.c
19144 F:      include/media/i2c/tw9910.h
19145
19146 TEE SUBSYSTEM
19147 M:      Jens Wiklander <jens.wiklander@linaro.org>
19148 R:      Sumit Garg <sumit.garg@linaro.org>
19149 L:      op-tee@lists.trustedfirmware.org
19150 S:      Maintained
19151 F:      Documentation/staging/tee.rst
19152 F:      drivers/tee/
19153 F:      include/linux/tee_drv.h
19154 F:      include/uapi/linux/tee.h
19155
19156 TEGRA ARCHITECTURE SUPPORT
19157 M:      Thierry Reding <thierry.reding@gmail.com>
19158 M:      Jonathan Hunter <jonathanh@nvidia.com>
19159 L:      linux-tegra@vger.kernel.org
19160 S:      Supported
19161 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19163 N:      [^a-z]tegra
19164
19165 TEGRA CLOCK DRIVER
19166 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19167 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19168 S:      Supported
19169 F:      drivers/clk/tegra/
19170
19171 TEGRA DMA DRIVERS
19172 M:      Laxman Dewangan <ldewangan@nvidia.com>
19173 M:      Jon Hunter <jonathanh@nvidia.com>
19174 S:      Supported
19175 F:      drivers/dma/tegra*
19176
19177 TEGRA I2C DRIVER
19178 M:      Laxman Dewangan <ldewangan@nvidia.com>
19179 R:      Dmitry Osipenko <digetx@gmail.com>
19180 S:      Supported
19181 F:      drivers/i2c/busses/i2c-tegra.c
19182
19183 TEGRA IOMMU DRIVERS
19184 M:      Thierry Reding <thierry.reding@gmail.com>
19185 R:      Krishna Reddy <vdumpa@nvidia.com>
19186 L:      linux-tegra@vger.kernel.org
19187 S:      Supported
19188 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19189 F:      drivers/iommu/tegra*
19190
19191 TEGRA KBC DRIVER
19192 M:      Laxman Dewangan <ldewangan@nvidia.com>
19193 S:      Supported
19194 F:      drivers/input/keyboard/tegra-kbc.c
19195
19196 TEGRA NAND DRIVER
19197 M:      Stefan Agner <stefan@agner.ch>
19198 M:      Lucas Stach <dev@lynxeye.de>
19199 S:      Maintained
19200 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19201 F:      drivers/mtd/nand/raw/tegra_nand.c
19202
19203 TEGRA PWM DRIVER
19204 M:      Thierry Reding <thierry.reding@gmail.com>
19205 S:      Supported
19206 F:      drivers/pwm/pwm-tegra.c
19207
19208 TEGRA SERIAL DRIVER
19209 M:      Laxman Dewangan <ldewangan@nvidia.com>
19210 S:      Supported
19211 F:      drivers/tty/serial/serial-tegra.c
19212
19213 TEGRA SPI DRIVER
19214 M:      Laxman Dewangan <ldewangan@nvidia.com>
19215 S:      Supported
19216 F:      drivers/spi/spi-tegra*
19217
19218 TEGRA QUAD SPI DRIVER
19219 M:      Thierry Reding <thierry.reding@gmail.com>
19220 M:      Jonathan Hunter <jonathanh@nvidia.com>
19221 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19222 L:      linux-tegra@vger.kernel.org
19223 S:      Maintained
19224 F:      drivers/spi/spi-tegra210-quad.c
19225
19226 TEGRA VIDEO DRIVER
19227 M:      Thierry Reding <thierry.reding@gmail.com>
19228 M:      Jonathan Hunter <jonathanh@nvidia.com>
19229 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19230 L:      linux-media@vger.kernel.org
19231 L:      linux-tegra@vger.kernel.org
19232 S:      Maintained
19233 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19234 F:      drivers/staging/media/tegra-video/
19235
19236 TEGRA XUSB PADCTL DRIVER
19237 M:      JC Kuo <jckuo@nvidia.com>
19238 S:      Supported
19239 F:      drivers/phy/tegra/xusb*
19240
19241 TEHUTI ETHERNET DRIVER
19242 M:      Andy Gospodarek <andy@greyhouse.net>
19243 L:      netdev@vger.kernel.org
19244 S:      Supported
19245 F:      drivers/net/ethernet/tehuti/*
19246
19247 TELECOM CLOCK DRIVER FOR MCPL0010
19248 M:      Mark Gross <markgross@kernel.org>
19249 S:      Supported
19250 F:      drivers/char/tlclk.c
19251
19252 TEMPO SEMICONDUCTOR DRIVERS
19253 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19254 S:      Maintained
19255 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19256 F:      sound/soc/codecs/tscs*.c
19257 F:      sound/soc/codecs/tscs*.h
19258
19259 TENSILICA XTENSA PORT (xtensa)
19260 M:      Chris Zankel <chris@zankel.net>
19261 M:      Max Filippov <jcmvbkbc@gmail.com>
19262 L:      linux-xtensa@linux-xtensa.org
19263 S:      Maintained
19264 T:      git git://github.com/czankel/xtensa-linux.git
19265 F:      arch/xtensa/
19266 F:      drivers/irqchip/irq-xtensa-*
19267
19268 TEXAS INSTRUMENTS ASoC DRIVERS
19269 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19270 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19271 S:      Maintained
19272 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19273 F:      sound/soc/ti/
19274
19275 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19276 M:      Ricardo Ribalda <ribalda@kernel.org>
19277 L:      linux-iio@vger.kernel.org
19278 S:      Supported
19279 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19280 F:      drivers/iio/dac/ti-dac7612.c
19281
19282 TEXAS INSTRUMENTS DMA DRIVERS
19283 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19284 L:      dmaengine@vger.kernel.org
19285 S:      Maintained
19286 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19287 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19288 F:      Documentation/devicetree/bindings/dma/ti/
19289 F:      drivers/dma/ti/
19290 X:      drivers/dma/ti/cppi41.c
19291 F:      include/linux/dma/k3-udma-glue.h
19292 F:      include/linux/dma/ti-cppi5.h
19293 F:      include/linux/dma/k3-psil.h
19294
19295 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19296 M:      Nishanth Menon <nm@ti.com>
19297 M:      Tero Kristo <kristo@kernel.org>
19298 M:      Santosh Shilimkar <ssantosh@kernel.org>
19299 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19300 S:      Maintained
19301 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19302 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19303 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19304 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19305 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19306 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19307 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19308 F:      drivers/clk/keystone/sci-clk.c
19309 F:      drivers/firmware/ti_sci*
19310 F:      drivers/irqchip/irq-ti-sci-inta.c
19311 F:      drivers/irqchip/irq-ti-sci-intr.c
19312 F:      drivers/reset/reset-ti-sci.c
19313 F:      drivers/soc/ti/ti_sci_inta_msi.c
19314 F:      drivers/soc/ti/ti_sci_pm_domains.c
19315 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19316 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19317 F:      include/linux/soc/ti/ti_sci_protocol.h
19318
19319 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19320 M:      Robert Marko <robert.marko@sartura.hr>
19321 M:      Luka Perkov <luka.perkov@sartura.hr>
19322 L:      linux-hwmon@vger.kernel.org
19323 S:      Maintained
19324 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19325 F:      Documentation/hwmon/tps23861.rst
19326 F:      drivers/hwmon/tps23861.c
19327
19328 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19329 M:      Puranjay Mohan <puranjay12@gmail.com>
19330 L:      linux-iio@vger.kernel.org
19331 S:      Supported
19332 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19333 F:      drivers/iio/temperature/tmp117.c
19334
19335 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19336 M:      Hans Verkuil <hverkuil@xs4all.nl>
19337 L:      linux-media@vger.kernel.org
19338 S:      Maintained
19339 W:      https://linuxtv.org
19340 T:      git git://linuxtv.org/media_tree.git
19341 F:      drivers/media/radio/radio-raremono.c
19342
19343 THERMAL
19344 M:      Rafael J. Wysocki <rafael@kernel.org>
19345 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19346 R:      Amit Kucheria <amitk@kernel.org>
19347 R:      Zhang Rui <rui.zhang@intel.com>
19348 L:      linux-pm@vger.kernel.org
19349 S:      Supported
19350 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19352 F:      Documentation/ABI/testing/sysfs-class-thermal
19353 F:      Documentation/devicetree/bindings/thermal/
19354 F:      Documentation/driver-api/thermal/
19355 F:      drivers/thermal/
19356 F:      include/linux/cpu_cooling.h
19357 F:      include/linux/thermal.h
19358 F:      include/uapi/linux/thermal.h
19359 F:      tools/thermal/
19360
19361 THERMAL DRIVER FOR AMLOGIC SOCS
19362 M:      Guillaume La Roque <glaroque@baylibre.com>
19363 L:      linux-pm@vger.kernel.org
19364 L:      linux-amlogic@lists.infradead.org
19365 S:      Supported
19366 W:      http://linux-meson.com/
19367 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19368 F:      drivers/thermal/amlogic_thermal.c
19369
19370 THERMAL/CPU_COOLING
19371 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19372 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19373 M:      Viresh Kumar <viresh.kumar@linaro.org>
19374 R:      Lukasz Luba <lukasz.luba@arm.com>
19375 L:      linux-pm@vger.kernel.org
19376 S:      Supported
19377 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19378 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19379 F:      drivers/thermal/cpufreq_cooling.c
19380 F:      drivers/thermal/cpuidle_cooling.c
19381 F:      include/linux/cpu_cooling.h
19382
19383 THERMAL/POWER_ALLOCATOR
19384 M:      Lukasz Luba <lukasz.luba@arm.com>
19385 L:      linux-pm@vger.kernel.org
19386 S:      Maintained
19387 F:      Documentation/driver-api/thermal/power_allocator.rst
19388 F:      drivers/thermal/gov_power_allocator.c
19389 F:      include/trace/events/thermal_power_allocator.h
19390
19391 THINKPAD ACPI EXTRAS DRIVER
19392 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19393 L:      ibm-acpi-devel@lists.sourceforge.net
19394 L:      platform-driver-x86@vger.kernel.org
19395 S:      Maintained
19396 W:      http://ibm-acpi.sourceforge.net
19397 W:      http://thinkwiki.org/wiki/Ibm-acpi
19398 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19399 F:      drivers/platform/x86/thinkpad_acpi.c
19400
19401 THINKPAD LMI DRIVER
19402 M:      Mark Pearson <markpearson@lenovo.com>
19403 L:      platform-driver-x86@vger.kernel.org
19404 S:      Maintained
19405 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19406 F:      drivers/platform/x86/think-lmi.?
19407
19408 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19409 M:      Isaac Hazan <isaac.hazan@intel.com>
19410 L:      linux-usb@vger.kernel.org
19411 S:      Maintained
19412 F:      drivers/thunderbolt/dma_test.c
19413
19414 THUNDERBOLT DRIVER
19415 M:      Andreas Noever <andreas.noever@gmail.com>
19416 M:      Michael Jamet <michael.jamet@intel.com>
19417 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19418 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19419 L:      linux-usb@vger.kernel.org
19420 S:      Maintained
19421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19422 F:      Documentation/admin-guide/thunderbolt.rst
19423 F:      drivers/thunderbolt/
19424 F:      include/linux/thunderbolt.h
19425
19426 THUNDERBOLT NETWORK DRIVER
19427 M:      Michael Jamet <michael.jamet@intel.com>
19428 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19429 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19430 L:      netdev@vger.kernel.org
19431 S:      Maintained
19432 F:      drivers/net/thunderbolt.c
19433
19434 THUNDERX GPIO DRIVER
19435 M:      Robert Richter <rric@kernel.org>
19436 S:      Odd Fixes
19437 F:      drivers/gpio/gpio-thunderx.c
19438
19439 TI ADS131E0X ADC SERIES DRIVER
19440 M:      Tomislav Denis <tomislav.denis@avl.com>
19441 L:      linux-iio@vger.kernel.org
19442 S:      Maintained
19443 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19444 F:      drivers/iio/adc/ti-ads131e08.c
19445
19446 TI AM437X VPFE DRIVER
19447 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19448 L:      linux-media@vger.kernel.org
19449 S:      Maintained
19450 W:      https://linuxtv.org
19451 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19452 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19453 F:      drivers/media/platform/ti/am437x/
19454
19455 TI BANDGAP AND THERMAL DRIVER
19456 M:      Eduardo Valentin <edubezval@gmail.com>
19457 M:      Keerthy <j-keerthy@ti.com>
19458 L:      linux-pm@vger.kernel.org
19459 L:      linux-omap@vger.kernel.org
19460 S:      Maintained
19461 F:      drivers/thermal/ti-soc-thermal/
19462
19463 TI BQ27XXX POWER SUPPLY DRIVER
19464 F:      drivers/power/supply/bq27xxx_battery.c
19465 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19466 F:      include/linux/power/bq27xxx_battery.h
19467
19468 TI CDCE706 CLOCK DRIVER
19469 M:      Max Filippov <jcmvbkbc@gmail.com>
19470 S:      Maintained
19471 F:      drivers/clk/clk-cdce706.c
19472
19473 TI CLOCK DRIVER
19474 M:      Tero Kristo <kristo@kernel.org>
19475 L:      linux-omap@vger.kernel.org
19476 S:      Odd Fixes
19477 F:      drivers/clk/ti/
19478 F:      include/linux/clk/ti.h
19479
19480 TI DAVINCI MACHINE SUPPORT
19481 M:      Sekhar Nori <nsekhar@ti.com>
19482 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19484 S:      Supported
19485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19486 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19487 F:      arch/arm/boot/dts/da850*
19488 F:      arch/arm/mach-davinci/
19489 F:      drivers/i2c/busses/i2c-davinci.c
19490
19491 TI DAVINCI SERIES CLOCK DRIVER
19492 M:      David Lechner <david@lechnology.com>
19493 R:      Sekhar Nori <nsekhar@ti.com>
19494 S:      Maintained
19495 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19496 F:      drivers/clk/davinci/
19497
19498 TI DAVINCI SERIES GPIO DRIVER
19499 M:      Keerthy <j-keerthy@ti.com>
19500 L:      linux-gpio@vger.kernel.org
19501 S:      Maintained
19502 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19503 F:      drivers/gpio/gpio-davinci.c
19504
19505 TI DAVINCI SERIES MEDIA DRIVER
19506 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19507 L:      linux-media@vger.kernel.org
19508 S:      Maintained
19509 W:      https://linuxtv.org
19510 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19511 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19512 F:      drivers/media/platform/ti/davinci/
19513 F:      include/media/davinci/
19514
19515 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19516 R:      David Lechner <david@lechnology.com>
19517 L:      linux-iio@vger.kernel.org
19518 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19519 F:      drivers/counter/ti-eqep.c
19520
19521 TI ETHERNET SWITCH DRIVER (CPSW)
19522 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19523 L:      linux-omap@vger.kernel.org
19524 L:      netdev@vger.kernel.org
19525 S:      Maintained
19526 F:      drivers/net/ethernet/ti/cpsw*
19527 F:      drivers/net/ethernet/ti/davinci*
19528
19529 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19530 M:      Alex Dubov <oakad@yahoo.com>
19531 S:      Maintained
19532 W:      http://tifmxx.berlios.de/
19533 F:      drivers/memstick/host/tifm_ms.c
19534 F:      drivers/misc/tifm*
19535 F:      drivers/mmc/host/tifm_sd.c
19536 F:      include/linux/tifm.h
19537
19538 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19539 M:      Nishanth Menon <nm@ti.com>
19540 M:      Santosh Shilimkar <ssantosh@kernel.org>
19541 L:      linux-kernel@vger.kernel.org
19542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19543 S:      Maintained
19544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19545 F:      drivers/soc/ti/*
19546
19547 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19548 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19549 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19550 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19551 S:      Maintained
19552 F:      sound/soc/codecs/isabelle*
19553 F:      sound/soc/codecs/lm49453*
19554
19555 TI PCM3060 ASoC CODEC DRIVER
19556 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19557 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19558 S:      Maintained
19559 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19560 F:      sound/soc/codecs/pcm3060*
19561
19562 TI TAS571X FAMILY ASoC CODEC DRIVER
19563 M:      Kevin Cernekee <cernekee@chromium.org>
19564 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19565 S:      Odd Fixes
19566 F:      sound/soc/codecs/tas571x*
19567
19568 TI TRF7970A NFC DRIVER
19569 M:      Mark Greer <mgreer@animalcreek.com>
19570 L:      linux-wireless@vger.kernel.org
19571 L:      linux-nfc@lists.01.org (subscribers-only)
19572 S:      Supported
19573 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19574 F:      drivers/nfc/trf7970a.c
19575
19576 TI TSC2046 ADC DRIVER
19577 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19578 R:      kernel@pengutronix.de
19579 L:      linux-iio@vger.kernel.org
19580 S:      Maintained
19581 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19582 F:      drivers/iio/adc/ti-tsc2046.c
19583
19584 TI TWL4030 SERIES SOC CODEC DRIVER
19585 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19586 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19587 S:      Maintained
19588 F:      sound/soc/codecs/twl4030*
19589
19590 TI VPE/CAL DRIVERS
19591 M:      Benoit Parrot <bparrot@ti.com>
19592 L:      linux-media@vger.kernel.org
19593 S:      Maintained
19594 W:      http://linuxtv.org/
19595 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19596 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19597 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19598 F:      drivers/media/platform/ti/cal/
19599 F:      drivers/media/platform/ti/vpe/
19600
19601 TI WILINK WIRELESS DRIVERS
19602 L:      linux-wireless@vger.kernel.org
19603 S:      Orphan
19604 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19605 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19607 F:      drivers/net/wireless/ti/
19608 F:      include/linux/wl12xx.h
19609
19610 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19611 M:      John Stultz <john.stultz@linaro.org>
19612 M:      Thomas Gleixner <tglx@linutronix.de>
19613 R:      Stephen Boyd <sboyd@kernel.org>
19614 L:      linux-kernel@vger.kernel.org
19615 S:      Supported
19616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19617 F:      include/linux/clocksource.h
19618 F:      include/linux/time.h
19619 F:      include/linux/timex.h
19620 F:      include/uapi/linux/time.h
19621 F:      include/uapi/linux/timex.h
19622 F:      kernel/time/alarmtimer.c
19623 F:      kernel/time/clocksource.c
19624 F:      kernel/time/ntp.c
19625 F:      kernel/time/time*.c
19626 F:      tools/testing/selftests/timers/
19627
19628 TIPC NETWORK LAYER
19629 M:      Jon Maloy <jmaloy@redhat.com>
19630 M:      Ying Xue <ying.xue@windriver.com>
19631 L:      netdev@vger.kernel.org (core kernel code)
19632 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19633 S:      Maintained
19634 W:      http://tipc.sourceforge.net/
19635 F:      include/uapi/linux/tipc*.h
19636 F:      net/tipc/
19637
19638 TLAN NETWORK DRIVER
19639 M:      Samuel Chessman <chessman@tux.org>
19640 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19641 S:      Maintained
19642 W:      http://sourceforge.net/projects/tlan/
19643 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19644 F:      drivers/net/ethernet/ti/tlan.*
19645
19646 TM6000 VIDEO4LINUX DRIVER
19647 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19648 L:      linux-media@vger.kernel.org
19649 S:      Odd fixes
19650 W:      https://linuxtv.org
19651 T:      git git://linuxtv.org/media_tree.git
19652 F:      Documentation/admin-guide/media/tm6000*
19653 F:      drivers/media/usb/tm6000/
19654
19655 TMIO/SDHI MMC DRIVER
19656 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19657 L:      linux-mmc@vger.kernel.org
19658 S:      Supported
19659 F:      drivers/mmc/host/renesas_sdhi*
19660 F:      drivers/mmc/host/tmio_mmc*
19661 F:      include/linux/mfd/tmio.h
19662
19663 TMP401 HARDWARE MONITOR DRIVER
19664 M:      Guenter Roeck <linux@roeck-us.net>
19665 L:      linux-hwmon@vger.kernel.org
19666 S:      Maintained
19667 F:      Documentation/hwmon/tmp401.rst
19668 F:      drivers/hwmon/tmp401.c
19669
19670 TMP464 HARDWARE MONITOR DRIVER
19671 M:      Agathe Porte <agathe.porte@nokia.com>
19672 M:      Guenter Roeck <linux@roeck-us.net>
19673 L:      linux-hwmon@vger.kernel.org
19674 S:      Maintained
19675 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
19676 F:      Documentation/hwmon/tmp464.rst
19677 F:      drivers/hwmon/tmp464.c
19678
19679 TMP513 HARDWARE MONITOR DRIVER
19680 M:      Eric Tremblay <etremblay@distech-controls.com>
19681 L:      linux-hwmon@vger.kernel.org
19682 S:      Maintained
19683 F:      Documentation/hwmon/tmp513.rst
19684 F:      drivers/hwmon/tmp513.c
19685
19686 TMPFS (SHMEM FILESYSTEM)
19687 M:      Hugh Dickins <hughd@google.com>
19688 L:      linux-mm@kvack.org
19689 S:      Maintained
19690 F:      include/linux/shmem_fs.h
19691 F:      mm/shmem.c
19692
19693 TOMOYO SECURITY MODULE
19694 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19695 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19696 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19697 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19698 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19699 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19700 S:      Maintained
19701 W:      https://tomoyo.osdn.jp/
19702 F:      security/tomoyo/
19703
19704 TOPSTAR LAPTOP EXTRAS DRIVER
19705 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19706 L:      platform-driver-x86@vger.kernel.org
19707 S:      Maintained
19708 F:      drivers/platform/x86/topstar-laptop.c
19709
19710 TORTURE-TEST MODULES
19711 M:      Davidlohr Bueso <dave@stgolabs.net>
19712 M:      "Paul E. McKenney" <paulmck@kernel.org>
19713 M:      Josh Triplett <josh@joshtriplett.org>
19714 L:      linux-kernel@vger.kernel.org
19715 S:      Supported
19716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19717 F:      Documentation/RCU/torture.rst
19718 F:      kernel/locking/locktorture.c
19719 F:      kernel/rcu/rcuscale.c
19720 F:      kernel/rcu/rcutorture.c
19721 F:      kernel/rcu/refscale.c
19722 F:      kernel/torture.c
19723
19724 TOSHIBA ACPI EXTRAS DRIVER
19725 M:      Azael Avalos <coproscefalo@gmail.com>
19726 L:      platform-driver-x86@vger.kernel.org
19727 S:      Maintained
19728 F:      drivers/platform/x86/toshiba_acpi.c
19729
19730 TOSHIBA BLUETOOTH DRIVER
19731 M:      Azael Avalos <coproscefalo@gmail.com>
19732 L:      platform-driver-x86@vger.kernel.org
19733 S:      Maintained
19734 F:      drivers/platform/x86/toshiba_bluetooth.c
19735
19736 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19737 M:      Azael Avalos <coproscefalo@gmail.com>
19738 L:      platform-driver-x86@vger.kernel.org
19739 S:      Maintained
19740 F:      drivers/platform/x86/toshiba_haps.c
19741
19742 TOSHIBA SMM DRIVER
19743 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19744 S:      Maintained
19745 W:      http://www.buzzard.org.uk/toshiba/
19746 F:      drivers/char/toshiba.c
19747 F:      include/linux/toshiba.h
19748 F:      include/uapi/linux/toshiba.h
19749
19750 TOSHIBA TC358743 DRIVER
19751 M:      Mats Randgaard <matrandg@cisco.com>
19752 L:      linux-media@vger.kernel.org
19753 S:      Maintained
19754 F:      drivers/media/i2c/tc358743*
19755 F:      include/media/i2c/tc358743.h
19756
19757 TOSHIBA WMI HOTKEYS DRIVER
19758 M:      Azael Avalos <coproscefalo@gmail.com>
19759 L:      platform-driver-x86@vger.kernel.org
19760 S:      Maintained
19761 F:      drivers/platform/x86/toshiba-wmi.c
19762
19763 TPM DEVICE DRIVER
19764 M:      Peter Huewe <peterhuewe@gmx.de>
19765 M:      Jarkko Sakkinen <jarkko@kernel.org>
19766 R:      Jason Gunthorpe <jgg@ziepe.ca>
19767 L:      linux-integrity@vger.kernel.org
19768 S:      Maintained
19769 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19770 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19772 F:      drivers/char/tpm/
19773
19774 TRACING
19775 M:      Steven Rostedt <rostedt@goodmis.org>
19776 M:      Ingo Molnar <mingo@redhat.com>
19777 S:      Maintained
19778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19779 F:      Documentation/trace/ftrace.rst
19780 F:      arch/*/*/*/ftrace.h
19781 F:      arch/*/kernel/ftrace.c
19782 F:      fs/tracefs/
19783 F:      include/*/ftrace.h
19784 F:      include/linux/trace*.h
19785 F:      include/trace/
19786 F:      kernel/trace/
19787 F:      tools/testing/selftests/ftrace/
19788
19789 TRACING MMIO ACCESSES (MMIOTRACE)
19790 M:      Steven Rostedt <rostedt@goodmis.org>
19791 M:      Ingo Molnar <mingo@kernel.org>
19792 R:      Karol Herbst <karolherbst@gmail.com>
19793 R:      Pekka Paalanen <ppaalanen@gmail.com>
19794 L:      linux-kernel@vger.kernel.org
19795 L:      nouveau@lists.freedesktop.org
19796 S:      Maintained
19797 F:      arch/x86/mm/kmmio.c
19798 F:      arch/x86/mm/mmio-mod.c
19799 F:      arch/x86/mm/testmmiotrace.c
19800 F:      include/linux/mmiotrace.h
19801 F:      kernel/trace/trace_mmiotrace.c
19802
19803 TRACING OS NOISE / LATENCY TRACERS
19804 M:      Steven Rostedt <rostedt@goodmis.org>
19805 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19806 S:      Maintained
19807 F:      kernel/trace/trace_osnoise.c
19808 F:      include/trace/events/osnoise.h
19809 F:      kernel/trace/trace_hwlat.c
19810 F:      kernel/trace/trace_irqsoff.c
19811 F:      kernel/trace/trace_sched_wakeup.c
19812 F:      Documentation/trace/osnoise-tracer.rst
19813 F:      Documentation/trace/timerlat-tracer.rst
19814 F:      Documentation/trace/hwlat_detector.rst
19815 F:      arch/*/kernel/trace.c
19816
19817 Real-time Linux Analysis (RTLA) tools
19818 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19819 M:      Steven Rostedt <rostedt@goodmis.org>
19820 L:      linux-trace-devel@vger.kernel.org
19821 S:      Maintained
19822 F:      Documentation/tools/rtla/
19823 F:      tools/tracing/rtla/
19824
19825 TRADITIONAL CHINESE DOCUMENTATION
19826 M:      Hu Haowen <src.res@email.cn>
19827 L:      linux-doc-tw-discuss@lists.sourceforge.net
19828 S:      Maintained
19829 W:      https://github.com/srcres258/linux-doc
19830 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19831 F:      Documentation/translations/zh_TW/
19832
19833 TTY LAYER
19834 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19835 M:      Jiri Slaby <jirislaby@kernel.org>
19836 S:      Supported
19837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19838 F:      Documentation/driver-api/serial/
19839 F:      drivers/tty/
19840 F:      drivers/tty/serial/serial_core.c
19841 F:      include/linux/selection.h
19842 F:      include/linux/serial.h
19843 F:      include/linux/serial_core.h
19844 F:      include/linux/sysrq.h
19845 F:      include/linux/tty*.h
19846 F:      include/linux/vt.h
19847 F:      include/linux/vt_*.h
19848 F:      include/uapi/linux/serial.h
19849 F:      include/uapi/linux/serial_core.h
19850 F:      include/uapi/linux/tty.h
19851
19852 TUA9001 MEDIA DRIVER
19853 M:      Antti Palosaari <crope@iki.fi>
19854 L:      linux-media@vger.kernel.org
19855 S:      Maintained
19856 W:      https://linuxtv.org
19857 W:      http://palosaari.fi/linux/
19858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19859 T:      git git://linuxtv.org/anttip/media_tree.git
19860 F:      drivers/media/tuners/tua9001*
19861
19862 TULIP NETWORK DRIVERS
19863 L:      netdev@vger.kernel.org
19864 L:      linux-parisc@vger.kernel.org
19865 S:      Orphan
19866 F:      drivers/net/ethernet/dec/tulip/
19867
19868 TUN/TAP driver
19869 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19870 S:      Maintained
19871 W:      http://vtun.sourceforge.net/tun
19872 F:      Documentation/networking/tuntap.rst
19873 F:      arch/um/os-Linux/drivers/
19874
19875 TURBOCHANNEL SUBSYSTEM
19876 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19877 M:      Ralf Baechle <ralf@linux-mips.org>
19878 L:      linux-mips@vger.kernel.org
19879 S:      Maintained
19880 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19881 F:      drivers/tc/
19882 F:      include/linux/tc.h
19883
19884 TURBOSTAT UTILITY
19885 M:      "Len Brown" <lenb@kernel.org>
19886 L:      linux-pm@vger.kernel.org
19887 S:      Supported
19888 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19889 B:      https://bugzilla.kernel.org
19890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19891 F:      tools/power/x86/turbostat/
19892
19893 TW5864 VIDEO4LINUX DRIVER
19894 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19895 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19896 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19897 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19898 L:      linux-media@vger.kernel.org
19899 S:      Supported
19900 F:      drivers/media/pci/tw5864/
19901
19902 TW68 VIDEO4LINUX DRIVER
19903 M:      Hans Verkuil <hverkuil@xs4all.nl>
19904 L:      linux-media@vger.kernel.org
19905 S:      Odd Fixes
19906 W:      https://linuxtv.org
19907 T:      git git://linuxtv.org/media_tree.git
19908 F:      drivers/media/pci/tw68/
19909
19910 TW686X VIDEO4LINUX DRIVER
19911 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19912 L:      linux-media@vger.kernel.org
19913 S:      Maintained
19914 W:      http://linuxtv.org
19915 T:      git git://linuxtv.org/media_tree.git
19916 F:      drivers/media/pci/tw686x/
19917
19918 U-BOOT ENVIRONMENT VARIABLES
19919 M:      Rafał Miłecki <rafal@milecki.pl>
19920 S:      Maintained
19921 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
19922
19923 UACCE ACCELERATOR FRAMEWORK
19924 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19925 M:      Zhou Wang <wangzhou1@hisilicon.com>
19926 L:      linux-accelerators@lists.ozlabs.org
19927 L:      linux-kernel@vger.kernel.org
19928 S:      Maintained
19929 F:      Documentation/ABI/testing/sysfs-driver-uacce
19930 F:      Documentation/misc-devices/uacce.rst
19931 F:      drivers/misc/uacce/
19932 F:      include/linux/uacce.h
19933 F:      include/uapi/misc/uacce/
19934
19935 UBI FILE SYSTEM (UBIFS)
19936 M:      Richard Weinberger <richard@nod.at>
19937 L:      linux-mtd@lists.infradead.org
19938 S:      Supported
19939 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19942 F:      Documentation/ABI/testing/sysfs-fs-ubifs
19943 F:      Documentation/filesystems/ubifs-authentication.rst
19944 F:      Documentation/filesystems/ubifs.rst
19945 F:      fs/ubifs/
19946
19947 UCLINUX (M68KNOMMU AND COLDFIRE)
19948 M:      Greg Ungerer <gerg@linux-m68k.org>
19949 L:      linux-m68k@lists.linux-m68k.org
19950 L:      uclinux-dev@uclinux.org  (subscribers-only)
19951 S:      Maintained
19952 W:      http://www.linux-m68k.org/
19953 W:      http://www.uclinux.org/
19954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19955 F:      arch/m68k/*/*_no.*
19956 F:      arch/m68k/68*/
19957 F:      arch/m68k/coldfire/
19958 F:      arch/m68k/include/asm/*_no.*
19959
19960 UDF FILESYSTEM
19961 M:      Jan Kara <jack@suse.com>
19962 S:      Maintained
19963 F:      Documentation/filesystems/udf.rst
19964 F:      fs/udf/
19965
19966 UDRAW TABLET
19967 M:      Bastien Nocera <hadess@hadess.net>
19968 L:      linux-input@vger.kernel.org
19969 S:      Maintained
19970 F:      drivers/hid/hid-udraw-ps3.c
19971
19972 UFS FILESYSTEM
19973 M:      Evgeniy Dushistov <dushistov@mail.ru>
19974 S:      Maintained
19975 F:      Documentation/admin-guide/ufs.rst
19976 F:      fs/ufs/
19977
19978 UHID USERSPACE HID IO DRIVER
19979 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19980 L:      linux-input@vger.kernel.org
19981 S:      Maintained
19982 F:      drivers/hid/uhid.c
19983 F:      include/uapi/linux/uhid.h
19984
19985 ULPI BUS
19986 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19987 L:      linux-usb@vger.kernel.org
19988 S:      Maintained
19989 F:      drivers/usb/common/ulpi.c
19990 F:      include/linux/ulpi/
19991
19992 UNICODE SUBSYSTEM
19993 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19994 L:      linux-fsdevel@vger.kernel.org
19995 S:      Supported
19996 F:      fs/unicode/
19997
19998 UNIFDEF
19999 M:      Tony Finch <dot@dotat.at>
20000 S:      Maintained
20001 W:      http://dotat.at/prog/unifdef
20002 F:      scripts/unifdef.c
20003
20004 UNIFORM CDROM DRIVER
20005 M:      Phillip Potter <phil@philpotter.co.uk>
20006 S:      Maintained
20007 F:      Documentation/cdrom/
20008 F:      drivers/cdrom/cdrom.c
20009 F:      include/linux/cdrom.h
20010 F:      include/uapi/linux/cdrom.h
20011
20012 UNISYS S-PAR DRIVERS
20013 M:      David Kershner <david.kershner@unisys.com>
20014 L:      sparmaintainer@unisys.com (Unisys internal)
20015 S:      Supported
20016 F:      drivers/staging/unisys/
20017 F:      drivers/visorbus/
20018 F:      include/linux/visorbus.h
20019
20020 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20021 R:      Alim Akhtar <alim.akhtar@samsung.com>
20022 R:      Avri Altman <avri.altman@wdc.com>
20023 L:      linux-scsi@vger.kernel.org
20024 S:      Supported
20025 F:      Documentation/devicetree/bindings/ufs/
20026 F:      Documentation/scsi/ufs.rst
20027 F:      drivers/scsi/ufs/
20028
20029 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20030 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20031 L:      linux-scsi@vger.kernel.org
20032 S:      Supported
20033 F:      drivers/scsi/ufs/*dwc*
20034
20035 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20036 M:      Stanley Chu <stanley.chu@mediatek.com>
20037 L:      linux-scsi@vger.kernel.org
20038 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20039 S:      Maintained
20040 F:      drivers/scsi/ufs/ufs-mediatek*
20041
20042 UNSORTED BLOCK IMAGES (UBI)
20043 M:      Richard Weinberger <richard@nod.at>
20044 L:      linux-mtd@lists.infradead.org
20045 S:      Supported
20046 W:      http://www.linux-mtd.infradead.org/
20047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20049 F:      drivers/mtd/ubi/
20050 F:      include/linux/mtd/ubi.h
20051 F:      include/uapi/mtd/ubi-user.h
20052
20053 USB "USBNET" DRIVER FRAMEWORK
20054 M:      Oliver Neukum <oneukum@suse.com>
20055 L:      netdev@vger.kernel.org
20056 S:      Maintained
20057 W:      http://www.linux-usb.org/usbnet
20058 F:      drivers/net/usb/usbnet.c
20059 F:      include/linux/usb/usbnet.h
20060
20061 USB ACM DRIVER
20062 M:      Oliver Neukum <oneukum@suse.com>
20063 L:      linux-usb@vger.kernel.org
20064 S:      Maintained
20065 F:      Documentation/usb/acm.rst
20066 F:      drivers/usb/class/cdc-acm.*
20067
20068 USB APPLE MFI FASTCHARGE DRIVER
20069 M:      Bastien Nocera <hadess@hadess.net>
20070 L:      linux-usb@vger.kernel.org
20071 S:      Maintained
20072 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20073
20074 USB AR5523 WIRELESS DRIVER
20075 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20076 L:      linux-wireless@vger.kernel.org
20077 S:      Maintained
20078 F:      drivers/net/wireless/ath/ar5523/
20079
20080 USB ATTACHED SCSI
20081 M:      Oliver Neukum <oneukum@suse.com>
20082 L:      linux-usb@vger.kernel.org
20083 L:      linux-scsi@vger.kernel.org
20084 S:      Maintained
20085 F:      drivers/usb/storage/uas.c
20086
20087 USB CDC ETHERNET DRIVER
20088 M:      Oliver Neukum <oliver@neukum.org>
20089 L:      linux-usb@vger.kernel.org
20090 S:      Maintained
20091 F:      drivers/net/usb/cdc_*.c
20092 F:      include/uapi/linux/usb/cdc.h
20093
20094 USB CHAOSKEY DRIVER
20095 M:      Keith Packard <keithp@keithp.com>
20096 L:      linux-usb@vger.kernel.org
20097 S:      Maintained
20098 F:      drivers/usb/misc/chaoskey.c
20099
20100 USB CYPRESS C67X00 DRIVER
20101 L:      linux-usb@vger.kernel.org
20102 S:      Orphan
20103 F:      drivers/usb/c67x00/
20104
20105 USB DAVICOM DM9601 DRIVER
20106 M:      Peter Korsgaard <peter@korsgaard.com>
20107 L:      netdev@vger.kernel.org
20108 S:      Maintained
20109 W:      http://www.linux-usb.org/usbnet
20110 F:      drivers/net/usb/dm9601.c
20111
20112 USB EHCI DRIVER
20113 M:      Alan Stern <stern@rowland.harvard.edu>
20114 L:      linux-usb@vger.kernel.org
20115 S:      Maintained
20116 F:      Documentation/usb/ehci.rst
20117 F:      drivers/usb/host/ehci*
20118
20119 USB GADGET/PERIPHERAL SUBSYSTEM
20120 M:      Felipe Balbi <balbi@kernel.org>
20121 L:      linux-usb@vger.kernel.org
20122 S:      Maintained
20123 W:      http://www.linux-usb.org/gadget
20124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20125 F:      drivers/usb/gadget/
20126 F:      include/linux/usb/gadget*
20127
20128 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20129 M:      Jiri Kosina <jikos@kernel.org>
20130 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20131 L:      linux-usb@vger.kernel.org
20132 S:      Maintained
20133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20134 F:      Documentation/hid/hiddev.rst
20135 F:      drivers/hid/usbhid/
20136
20137 USB INTEL XHCI ROLE MUX DRIVER
20138 M:      Hans de Goede <hdegoede@redhat.com>
20139 L:      linux-usb@vger.kernel.org
20140 S:      Maintained
20141 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20142
20143 USB IP DRIVER FOR HISILICON KIRIN 960
20144 M:      Yu Chen <chenyu56@huawei.com>
20145 M:      Binghui Wang <wangbinghui@hisilicon.com>
20146 L:      linux-usb@vger.kernel.org
20147 S:      Maintained
20148 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20149 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20150
20151 USB IP DRIVER FOR HISILICON KIRIN 970
20152 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20153 L:      linux-usb@vger.kernel.org
20154 S:      Maintained
20155 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20156 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20157
20158 USB ISP116X DRIVER
20159 M:      Olav Kongas <ok@artecdesign.ee>
20160 L:      linux-usb@vger.kernel.org
20161 S:      Maintained
20162 F:      drivers/usb/host/isp116x*
20163 F:      include/linux/usb/isp116x.h
20164
20165 USB ISP1760 DRIVER
20166 M:      Rui Miguel Silva <rui.silva@linaro.org>
20167 L:      linux-usb@vger.kernel.org
20168 S:      Maintained
20169 F:      drivers/usb/isp1760/*
20170 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20171
20172 USB LAN78XX ETHERNET DRIVER
20173 M:      Woojung Huh <woojung.huh@microchip.com>
20174 M:      UNGLinuxDriver@microchip.com
20175 L:      netdev@vger.kernel.org
20176 S:      Maintained
20177 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20178 F:      drivers/net/usb/lan78xx.*
20179 F:      include/dt-bindings/net/microchip-lan78xx.h
20180
20181 USB MASS STORAGE DRIVER
20182 M:      Alan Stern <stern@rowland.harvard.edu>
20183 L:      linux-usb@vger.kernel.org
20184 L:      usb-storage@lists.one-eyed-alien.net
20185 S:      Maintained
20186 F:      drivers/usb/storage/
20187
20188 USB MIDI DRIVER
20189 M:      Clemens Ladisch <clemens@ladisch.de>
20190 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20191 S:      Maintained
20192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20193 F:      sound/usb/midi.*
20194
20195 USB NETWORKING DRIVERS
20196 L:      linux-usb@vger.kernel.org
20197 S:      Odd Fixes
20198 F:      drivers/net/usb/
20199
20200 USB OHCI DRIVER
20201 M:      Alan Stern <stern@rowland.harvard.edu>
20202 L:      linux-usb@vger.kernel.org
20203 S:      Maintained
20204 F:      Documentation/usb/ohci.rst
20205 F:      drivers/usb/host/ohci*
20206
20207 USB OTG FSM (Finite State Machine)
20208 M:      Peter Chen <peter.chen@kernel.org>
20209 L:      linux-usb@vger.kernel.org
20210 S:      Maintained
20211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20212 F:      drivers/usb/common/usb-otg-fsm.c
20213
20214 USB OVER IP DRIVER
20215 M:      Valentina Manea <valentina.manea.m@gmail.com>
20216 M:      Shuah Khan <shuah@kernel.org>
20217 M:      Shuah Khan <skhan@linuxfoundation.org>
20218 L:      linux-usb@vger.kernel.org
20219 S:      Maintained
20220 F:      Documentation/usb/usbip_protocol.rst
20221 F:      drivers/usb/usbip/
20222 F:      tools/testing/selftests/drivers/usb/usbip/
20223 F:      tools/usb/usbip/
20224
20225 USB PEGASUS DRIVER
20226 M:      Petko Manolov <petkan@nucleusys.com>
20227 L:      linux-usb@vger.kernel.org
20228 L:      netdev@vger.kernel.org
20229 S:      Maintained
20230 W:      https://github.com/petkan/pegasus
20231 T:      git git://github.com/petkan/pegasus.git
20232 F:      drivers/net/usb/pegasus.*
20233
20234 USB PHY LAYER
20235 M:      Felipe Balbi <balbi@kernel.org>
20236 L:      linux-usb@vger.kernel.org
20237 S:      Maintained
20238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20239 F:      drivers/usb/phy/
20240
20241 USB PRINTER DRIVER (usblp)
20242 M:      Pete Zaitcev <zaitcev@redhat.com>
20243 L:      linux-usb@vger.kernel.org
20244 S:      Supported
20245 F:      drivers/usb/class/usblp.c
20246
20247 USB RAW GADGET DRIVER
20248 R:      Andrey Konovalov <andreyknvl@gmail.com>
20249 L:      linux-usb@vger.kernel.org
20250 S:      Maintained
20251 F:      Documentation/usb/raw-gadget.rst
20252 F:      drivers/usb/gadget/legacy/raw_gadget.c
20253 F:      include/uapi/linux/usb/raw_gadget.h
20254
20255 USB QMI WWAN NETWORK DRIVER
20256 M:      Bjørn Mork <bjorn@mork.no>
20257 L:      netdev@vger.kernel.org
20258 S:      Maintained
20259 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20260 F:      drivers/net/usb/qmi_wwan.c
20261
20262 USB RTL8150 DRIVER
20263 M:      Petko Manolov <petkan@nucleusys.com>
20264 L:      linux-usb@vger.kernel.org
20265 L:      netdev@vger.kernel.org
20266 S:      Maintained
20267 W:      https://github.com/petkan/rtl8150
20268 T:      git git://github.com/petkan/rtl8150.git
20269 F:      drivers/net/usb/rtl8150.c
20270
20271 USB SERIAL SUBSYSTEM
20272 M:      Johan Hovold <johan@kernel.org>
20273 L:      linux-usb@vger.kernel.org
20274 S:      Maintained
20275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20276 F:      Documentation/usb/usb-serial.rst
20277 F:      drivers/usb/serial/
20278 F:      include/linux/usb/serial.h
20279
20280 USB SMSC75XX ETHERNET DRIVER
20281 M:      Steve Glendinning <steve.glendinning@shawell.net>
20282 L:      netdev@vger.kernel.org
20283 S:      Maintained
20284 F:      drivers/net/usb/smsc75xx.*
20285
20286 USB SMSC95XX ETHERNET DRIVER
20287 M:      Steve Glendinning <steve.glendinning@shawell.net>
20288 M:      UNGLinuxDriver@microchip.com
20289 L:      netdev@vger.kernel.org
20290 S:      Maintained
20291 F:      drivers/net/usb/smsc95xx.*
20292
20293 USB SUBSYSTEM
20294 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20295 L:      linux-usb@vger.kernel.org
20296 S:      Supported
20297 W:      http://www.linux-usb.org
20298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20299 F:      Documentation/devicetree/bindings/usb/
20300 F:      Documentation/usb/
20301 F:      drivers/usb/
20302 F:      include/linux/usb.h
20303 F:      include/linux/usb/
20304
20305 USB TYPEC BUS FOR ALTERNATE MODES
20306 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20307 L:      linux-usb@vger.kernel.org
20308 S:      Maintained
20309 F:      Documentation/ABI/testing/sysfs-bus-typec
20310 F:      Documentation/driver-api/usb/typec_bus.rst
20311 F:      drivers/usb/typec/altmodes/
20312 F:      include/linux/usb/typec_altmode.h
20313
20314 USB TYPEC CLASS
20315 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20316 L:      linux-usb@vger.kernel.org
20317 S:      Maintained
20318 F:      Documentation/ABI/testing/sysfs-class-typec
20319 F:      Documentation/driver-api/usb/typec.rst
20320 F:      drivers/usb/typec/
20321 F:      include/linux/usb/typec.h
20322
20323 USB TYPEC INTEL PMC MUX DRIVER
20324 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20325 L:      linux-usb@vger.kernel.org
20326 S:      Maintained
20327 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20328 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20329
20330 USB TYPEC PI3USB30532 MUX DRIVER
20331 M:      Hans de Goede <hdegoede@redhat.com>
20332 L:      linux-usb@vger.kernel.org
20333 S:      Maintained
20334 F:      drivers/usb/typec/mux/pi3usb30532.c
20335
20336 USB TYPEC PORT CONTROLLER DRIVERS
20337 M:      Guenter Roeck <linux@roeck-us.net>
20338 L:      linux-usb@vger.kernel.org
20339 S:      Maintained
20340 F:      drivers/usb/typec/tcpm/
20341
20342 USB UHCI DRIVER
20343 M:      Alan Stern <stern@rowland.harvard.edu>
20344 L:      linux-usb@vger.kernel.org
20345 S:      Maintained
20346 F:      drivers/usb/host/uhci*
20347
20348 USB VIDEO CLASS
20349 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20350 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
20351 L:      linux-media@vger.kernel.org
20352 S:      Maintained
20353 W:      http://www.ideasonboard.org/uvc/
20354 T:      git git://linuxtv.org/media_tree.git
20355 F:      drivers/media/usb/uvc/
20356 F:      include/uapi/linux/uvcvideo.h
20357
20358 USB WEBCAM GADGET
20359 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20360 L:      linux-usb@vger.kernel.org
20361 S:      Maintained
20362 F:      drivers/usb/gadget/function/*uvc*
20363 F:      drivers/usb/gadget/legacy/webcam.c
20364 F:      include/uapi/linux/usb/g_uvc.h
20365
20366 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20367 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20368 L:      linux-wireless@vger.kernel.org
20369 S:      Maintained
20370 F:      drivers/net/wireless/rndis_wlan.c
20371
20372 USB XHCI DRIVER
20373 M:      Mathias Nyman <mathias.nyman@intel.com>
20374 L:      linux-usb@vger.kernel.org
20375 S:      Supported
20376 F:      drivers/usb/host/pci-quirks*
20377 F:      drivers/usb/host/xhci*
20378
20379 USB ZD1201 DRIVER
20380 L:      linux-wireless@vger.kernel.org
20381 S:      Orphan
20382 W:      http://linux-lc100020.sourceforge.net
20383 F:      drivers/net/wireless/zydas/zd1201.*
20384
20385 USB ZR364XX DRIVER
20386 M:      Antoine Jacquet <royale@zerezo.com>
20387 L:      linux-usb@vger.kernel.org
20388 L:      linux-media@vger.kernel.org
20389 S:      Maintained
20390 W:      http://royale.zerezo.com/zr364xx/
20391 T:      git git://linuxtv.org/media_tree.git
20392 F:      Documentation/admin-guide/media/zr364xx*
20393 F:      drivers/media/usb/zr364xx/
20394
20395 USER-MODE LINUX (UML)
20396 M:      Jeff Dike <jdike@addtoit.com>
20397 M:      Richard Weinberger <richard@nod.at>
20398 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20399 L:      linux-um@lists.infradead.org
20400 S:      Maintained
20401 W:      http://user-mode-linux.sourceforge.net
20402 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
20404 F:      Documentation/virt/uml/
20405 F:      arch/um/
20406 F:      arch/x86/um/
20407 F:      fs/hostfs/
20408
20409 USERSPACE COPYIN/COPYOUT (UIOVEC)
20410 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20411 S:      Maintained
20412 F:      include/linux/uio.h
20413 F:      lib/iov_iter.c
20414
20415 USERSPACE DMA BUFFER DRIVER
20416 M:      Gerd Hoffmann <kraxel@redhat.com>
20417 L:      dri-devel@lists.freedesktop.org
20418 S:      Maintained
20419 T:      git git://anongit.freedesktop.org/drm/drm-misc
20420 F:      drivers/dma-buf/udmabuf.c
20421 F:      include/uapi/linux/udmabuf.h
20422
20423 USERSPACE I/O (UIO)
20424 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20425 S:      Maintained
20426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20427 F:      Documentation/driver-api/uio-howto.rst
20428 F:      drivers/uio/
20429 F:      include/linux/uio_driver.h
20430
20431 UTIL-LINUX PACKAGE
20432 M:      Karel Zak <kzak@redhat.com>
20433 L:      util-linux@vger.kernel.org
20434 S:      Maintained
20435 W:      http://en.wikipedia.org/wiki/Util-linux
20436 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20437
20438 UUID HELPERS
20439 M:      Christoph Hellwig <hch@lst.de>
20440 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20441 L:      linux-kernel@vger.kernel.org
20442 S:      Maintained
20443 T:      git git://git.infradead.org/users/hch/uuid.git
20444 F:      include/linux/uuid.h
20445 F:      include/uapi/linux/uuid.h
20446 F:      lib/test_uuid.c
20447 F:      lib/uuid.c
20448
20449 UV SYSFS DRIVER
20450 M:      Justin Ernst <justin.ernst@hpe.com>
20451 L:      platform-driver-x86@vger.kernel.org
20452 S:      Maintained
20453 F:      drivers/platform/x86/uv_sysfs.c
20454
20455 UVESAFB DRIVER
20456 M:      Michal Januszewski <spock@gentoo.org>
20457 L:      linux-fbdev@vger.kernel.org
20458 S:      Maintained
20459 W:      https://github.com/mjanusz/v86d
20460 F:      Documentation/fb/uvesafb.rst
20461 F:      drivers/video/fbdev/uvesafb.*
20462
20463 Ux500 CLOCK DRIVERS
20464 M:      Ulf Hansson <ulf.hansson@linaro.org>
20465 L:      linux-clk@vger.kernel.org
20466 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20467 S:      Maintained
20468 F:      drivers/clk/ux500/
20469
20470 VF610 NAND DRIVER
20471 M:      Stefan Agner <stefan@agner.ch>
20472 L:      linux-mtd@lists.infradead.org
20473 S:      Supported
20474 F:      drivers/mtd/nand/raw/vf610_nfc.c
20475
20476 VFAT/FAT/MSDOS FILESYSTEM
20477 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20478 S:      Maintained
20479 F:      Documentation/filesystems/vfat.rst
20480 F:      fs/fat/
20481
20482 VFIO DRIVER
20483 M:      Alex Williamson <alex.williamson@redhat.com>
20484 R:      Cornelia Huck <cohuck@redhat.com>
20485 L:      kvm@vger.kernel.org
20486 S:      Maintained
20487 T:      git git://github.com/awilliam/linux-vfio.git
20488 F:      Documentation/driver-api/vfio.rst
20489 F:      drivers/vfio/
20490 F:      include/linux/vfio.h
20491 F:      include/linux/vfio_pci_core.h
20492 F:      include/uapi/linux/vfio.h
20493
20494 VFIO FSL-MC DRIVER
20495 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20496 L:      kvm@vger.kernel.org
20497 S:      Maintained
20498 F:      drivers/vfio/fsl-mc/
20499
20500 VFIO HISILICON PCI DRIVER
20501 M:      Longfang Liu <liulongfang@huawei.com>
20502 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20503 L:      kvm@vger.kernel.org
20504 S:      Maintained
20505 F:      drivers/vfio/pci/hisilicon/
20506
20507 VFIO MEDIATED DEVICE DRIVERS
20508 M:      Kirti Wankhede <kwankhede@nvidia.com>
20509 L:      kvm@vger.kernel.org
20510 S:      Maintained
20511 F:      Documentation/driver-api/vfio-mediated-device.rst
20512 F:      drivers/vfio/mdev/
20513 F:      include/linux/mdev.h
20514 F:      samples/vfio-mdev/
20515
20516 VFIO PCI DEVICE SPECIFIC DRIVERS
20517 R:      Jason Gunthorpe <jgg@nvidia.com>
20518 R:      Yishai Hadas <yishaih@nvidia.com>
20519 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20520 R:      Kevin Tian <kevin.tian@intel.com>
20521 L:      kvm@vger.kernel.org
20522 S:      Maintained
20523 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
20524 F:      drivers/vfio/pci/*/
20525
20526 VFIO PLATFORM DRIVER
20527 M:      Eric Auger <eric.auger@redhat.com>
20528 L:      kvm@vger.kernel.org
20529 S:      Maintained
20530 F:      drivers/vfio/platform/
20531
20532 VFIO MLX5 PCI DRIVER
20533 M:      Yishai Hadas <yishaih@nvidia.com>
20534 L:      kvm@vger.kernel.org
20535 S:      Maintained
20536 F:      drivers/vfio/pci/mlx5/
20537
20538 VGA_SWITCHEROO
20539 R:      Lukas Wunner <lukas@wunner.de>
20540 S:      Maintained
20541 T:      git git://anongit.freedesktop.org/drm/drm-misc
20542 F:      Documentation/gpu/vga-switcheroo.rst
20543 F:      drivers/gpu/vga/vga_switcheroo.c
20544 F:      include/linux/vga_switcheroo.h
20545
20546 VIA RHINE NETWORK DRIVER
20547 S:      Maintained
20548 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20549 F:      drivers/net/ethernet/via/via-rhine.c
20550
20551 VIA SD/MMC CARD CONTROLLER DRIVER
20552 M:      Bruce Chang <brucechang@via.com.tw>
20553 M:      Harald Welte <HaraldWelte@viatech.com>
20554 S:      Maintained
20555 F:      drivers/mmc/host/via-sdmmc.c
20556
20557 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20558 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20559 L:      linux-fbdev@vger.kernel.org
20560 S:      Maintained
20561 F:      drivers/video/fbdev/via/
20562 F:      include/linux/via-core.h
20563 F:      include/linux/via-gpio.h
20564 F:      include/linux/via_i2c.h
20565
20566 VIA VELOCITY NETWORK DRIVER
20567 M:      Francois Romieu <romieu@fr.zoreil.com>
20568 L:      netdev@vger.kernel.org
20569 S:      Maintained
20570 F:      drivers/net/ethernet/via/via-velocity.*
20571
20572 VICODEC VIRTUAL CODEC DRIVER
20573 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20574 L:      linux-media@vger.kernel.org
20575 S:      Maintained
20576 W:      https://linuxtv.org
20577 T:      git git://linuxtv.org/media_tree.git
20578 F:      drivers/media/test-drivers/vicodec/*
20579
20580 VIDEO I2C POLLING DRIVER
20581 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20582 L:      linux-media@vger.kernel.org
20583 S:      Maintained
20584 F:      drivers/media/i2c/video-i2c.c
20585
20586 VIDEO MULTIPLEXER DRIVER
20587 M:      Philipp Zabel <p.zabel@pengutronix.de>
20588 L:      linux-media@vger.kernel.org
20589 S:      Maintained
20590 F:      drivers/media/platform/video-mux.c
20591
20592 VIDEOBUF2 FRAMEWORK
20593 M:      Tomasz Figa <tfiga@chromium.org>
20594 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20595 L:      linux-media@vger.kernel.org
20596 S:      Maintained
20597 F:      drivers/media/common/videobuf2/*
20598 F:      include/media/videobuf2-*
20599
20600 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20601 M:      Shuah Khan <skhan@linuxfoundation.org>
20602 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
20603 L:      linux-media@vger.kernel.org
20604 S:      Maintained
20605 W:      https://linuxtv.org
20606 T:      git git://linuxtv.org/media_tree.git
20607 F:      drivers/media/test-drivers/vimc/*
20608
20609 VIRT LIB
20610 M:      Alex Williamson <alex.williamson@redhat.com>
20611 M:      Paolo Bonzini <pbonzini@redhat.com>
20612 L:      kvm@vger.kernel.org
20613 S:      Supported
20614 F:      virt/lib/
20615
20616 VIRTIO AND VHOST VSOCK DRIVER
20617 M:      Stefan Hajnoczi <stefanha@redhat.com>
20618 M:      Stefano Garzarella <sgarzare@redhat.com>
20619 L:      kvm@vger.kernel.org
20620 L:      virtualization@lists.linux-foundation.org
20621 L:      netdev@vger.kernel.org
20622 S:      Maintained
20623 F:      drivers/vhost/vsock.c
20624 F:      include/linux/virtio_vsock.h
20625 F:      include/uapi/linux/virtio_vsock.h
20626 F:      net/vmw_vsock/virtio_transport.c
20627 F:      net/vmw_vsock/virtio_transport_common.c
20628
20629 VIRTIO BLOCK AND SCSI DRIVERS
20630 M:      "Michael S. Tsirkin" <mst@redhat.com>
20631 M:      Jason Wang <jasowang@redhat.com>
20632 R:      Paolo Bonzini <pbonzini@redhat.com>
20633 R:      Stefan Hajnoczi <stefanha@redhat.com>
20634 L:      virtualization@lists.linux-foundation.org
20635 S:      Maintained
20636 F:      drivers/block/virtio_blk.c
20637 F:      drivers/scsi/virtio_scsi.c
20638 F:      drivers/vhost/scsi.c
20639 F:      include/uapi/linux/virtio_blk.h
20640 F:      include/uapi/linux/virtio_scsi.h
20641
20642 VIRTIO CONSOLE DRIVER
20643 M:      Amit Shah <amit@kernel.org>
20644 L:      virtualization@lists.linux-foundation.org
20645 S:      Maintained
20646 F:      drivers/char/virtio_console.c
20647 F:      include/linux/virtio_console.h
20648 F:      include/uapi/linux/virtio_console.h
20649
20650 VIRTIO CORE AND NET DRIVERS
20651 M:      "Michael S. Tsirkin" <mst@redhat.com>
20652 M:      Jason Wang <jasowang@redhat.com>
20653 L:      virtualization@lists.linux-foundation.org
20654 S:      Maintained
20655 F:      Documentation/ABI/testing/sysfs-bus-vdpa
20656 F:      Documentation/devicetree/bindings/virtio/
20657 F:      drivers/block/virtio_blk.c
20658 F:      drivers/crypto/virtio/
20659 F:      drivers/net/virtio_net.c
20660 F:      drivers/vdpa/
20661 F:      drivers/virtio/
20662 F:      include/linux/vdpa.h
20663 F:      include/linux/virtio*.h
20664 F:      include/uapi/linux/virtio_*.h
20665 F:      tools/virtio/
20666
20667 VIRTIO BALLOON
20668 M:      "Michael S. Tsirkin" <mst@redhat.com>
20669 M:      David Hildenbrand <david@redhat.com>
20670 L:      virtualization@lists.linux-foundation.org
20671 S:      Maintained
20672 F:      drivers/virtio/virtio_balloon.c
20673 F:      include/uapi/linux/virtio_balloon.h
20674 F:      include/linux/balloon_compaction.h
20675 F:      mm/balloon_compaction.c
20676
20677 VIRTIO CRYPTO DRIVER
20678 M:      Gonglei <arei.gonglei@huawei.com>
20679 L:      virtualization@lists.linux-foundation.org
20680 L:      linux-crypto@vger.kernel.org
20681 S:      Maintained
20682 F:      drivers/crypto/virtio/
20683 F:      include/uapi/linux/virtio_crypto.h
20684
20685 VIRTIO DRIVERS FOR S390
20686 M:      Cornelia Huck <cohuck@redhat.com>
20687 M:      Halil Pasic <pasic@linux.ibm.com>
20688 L:      linux-s390@vger.kernel.org
20689 L:      virtualization@lists.linux-foundation.org
20690 L:      kvm@vger.kernel.org
20691 S:      Supported
20692 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20693 F:      drivers/s390/virtio/
20694
20695 VIRTIO FILE SYSTEM
20696 M:      Vivek Goyal <vgoyal@redhat.com>
20697 M:      Stefan Hajnoczi <stefanha@redhat.com>
20698 M:      Miklos Szeredi <miklos@szeredi.hu>
20699 L:      virtualization@lists.linux-foundation.org
20700 L:      linux-fsdevel@vger.kernel.org
20701 S:      Supported
20702 W:      https://virtio-fs.gitlab.io/
20703 F:      Documentation/filesystems/virtiofs.rst
20704 F:      fs/fuse/virtio_fs.c
20705 F:      include/uapi/linux/virtio_fs.h
20706
20707 VIRTIO GPIO DRIVER
20708 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20709 M:      Viresh Kumar <vireshk@kernel.org>
20710 L:      linux-gpio@vger.kernel.org
20711 L:      virtualization@lists.linux-foundation.org
20712 S:      Maintained
20713 F:      drivers/gpio/gpio-virtio.c
20714 F:      include/uapi/linux/virtio_gpio.h
20715
20716 VIRTIO GPU DRIVER
20717 M:      David Airlie <airlied@linux.ie>
20718 M:      Gerd Hoffmann <kraxel@redhat.com>
20719 R:      Gurchetan Singh <gurchetansingh@chromium.org>
20720 R:      Chia-I Wu <olvaffe@gmail.com>
20721 L:      dri-devel@lists.freedesktop.org
20722 L:      virtualization@lists.linux-foundation.org
20723 S:      Maintained
20724 T:      git git://anongit.freedesktop.org/drm/drm-misc
20725 F:      drivers/gpu/drm/virtio/
20726 F:      include/uapi/linux/virtio_gpu.h
20727
20728 VIRTIO HOST (VHOST)
20729 M:      "Michael S. Tsirkin" <mst@redhat.com>
20730 M:      Jason Wang <jasowang@redhat.com>
20731 L:      kvm@vger.kernel.org
20732 L:      virtualization@lists.linux-foundation.org
20733 L:      netdev@vger.kernel.org
20734 S:      Maintained
20735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20736 F:      drivers/vhost/
20737 F:      include/linux/vhost_iotlb.h
20738 F:      include/uapi/linux/vhost.h
20739
20740 VIRTIO INPUT DRIVER
20741 M:      Gerd Hoffmann <kraxel@redhat.com>
20742 S:      Maintained
20743 F:      drivers/virtio/virtio_input.c
20744 F:      include/uapi/linux/virtio_input.h
20745
20746 VIRTIO IOMMU DRIVER
20747 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20748 L:      virtualization@lists.linux-foundation.org
20749 S:      Maintained
20750 F:      drivers/iommu/virtio-iommu.c
20751 F:      include/uapi/linux/virtio_iommu.h
20752
20753 VIRTIO MEM DRIVER
20754 M:      David Hildenbrand <david@redhat.com>
20755 L:      virtualization@lists.linux-foundation.org
20756 S:      Maintained
20757 W:      https://virtio-mem.gitlab.io/
20758 F:      drivers/virtio/virtio_mem.c
20759 F:      include/uapi/linux/virtio_mem.h
20760
20761 VIRTIO SOUND DRIVER
20762 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20763 M:      "Michael S. Tsirkin" <mst@redhat.com>
20764 L:      virtualization@lists.linux-foundation.org
20765 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20766 S:      Maintained
20767 F:      include/uapi/linux/virtio_snd.h
20768 F:      sound/virtio/*
20769
20770 VIRTIO I2C DRIVER
20771 M:      Conghui Chen <conghui.chen@intel.com>
20772 M:      Viresh Kumar <viresh.kumar@linaro.org>
20773 L:      linux-i2c@vger.kernel.org
20774 L:      virtualization@lists.linux-foundation.org
20775 S:      Maintained
20776 F:      drivers/i2c/busses/i2c-virtio.c
20777 F:      include/uapi/linux/virtio_i2c.h
20778
20779 VIRTIO PMEM DRIVER
20780 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20781 L:      virtualization@lists.linux-foundation.org
20782 S:      Maintained
20783 F:      drivers/nvdimm/virtio_pmem.c
20784 F:      drivers/nvdimm/nd_virtio.c
20785
20786 VIRTUAL BOX GUEST DEVICE DRIVER
20787 M:      Hans de Goede <hdegoede@redhat.com>
20788 M:      Arnd Bergmann <arnd@arndb.de>
20789 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20790 S:      Maintained
20791 F:      drivers/virt/vboxguest/
20792 F:      include/linux/vbox_utils.h
20793 F:      include/uapi/linux/vbox*.h
20794
20795 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20796 M:      Hans de Goede <hdegoede@redhat.com>
20797 L:      linux-fsdevel@vger.kernel.org
20798 S:      Maintained
20799 F:      fs/vboxsf/*
20800
20801 VIRTUAL SERIO DEVICE DRIVER
20802 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20803 S:      Maintained
20804 F:      drivers/input/serio/userio.c
20805 F:      include/uapi/linux/userio.h
20806
20807 VIVID VIRTUAL VIDEO DRIVER
20808 M:      Hans Verkuil <hverkuil@xs4all.nl>
20809 L:      linux-media@vger.kernel.org
20810 S:      Maintained
20811 W:      https://linuxtv.org
20812 T:      git git://linuxtv.org/media_tree.git
20813 F:      drivers/media/test-drivers/vivid/*
20814
20815 VIDTV VIRTUAL DIGITAL TV DRIVER
20816 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20817 L:      linux-media@vger.kernel.org
20818 S:      Maintained
20819 W:      https://linuxtv.org
20820 T:      git git://linuxtv.org/media_tree.git
20821 F:      drivers/media/test-drivers/vidtv/*
20822
20823 VLYNQ BUS
20824 M:      Florian Fainelli <f.fainelli@gmail.com>
20825 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20826 S:      Maintained
20827 F:      drivers/vlynq/vlynq.c
20828 F:      include/linux/vlynq.h
20829
20830 VME SUBSYSTEM
20831 M:      Martyn Welch <martyn@welchs.me.uk>
20832 M:      Manohar Vanga <manohar.vanga@gmail.com>
20833 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20834 L:      linux-kernel@vger.kernel.org
20835 S:      Maintained
20836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20837 F:      Documentation/driver-api/vme.rst
20838 F:      drivers/staging/vme/
20839 F:      drivers/vme/
20840 F:      include/linux/vme*
20841
20842 VM SOCKETS (AF_VSOCK)
20843 M:      Stefano Garzarella <sgarzare@redhat.com>
20844 L:      virtualization@lists.linux-foundation.org
20845 L:      netdev@vger.kernel.org
20846 S:      Maintained
20847 F:      drivers/net/vsockmon.c
20848 F:      include/net/af_vsock.h
20849 F:      include/uapi/linux/vm_sockets.h
20850 F:      include/uapi/linux/vm_sockets_diag.h
20851 F:      include/uapi/linux/vsockmon.h
20852 F:      net/vmw_vsock/
20853 F:      tools/testing/vsock/
20854
20855 VMWARE BALLOON DRIVER
20856 M:      Nadav Amit <namit@vmware.com>
20857 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20858 L:      linux-kernel@vger.kernel.org
20859 S:      Maintained
20860 F:      drivers/misc/vmw_balloon.c
20861
20862 VMWARE HYPERVISOR INTERFACE
20863 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
20864 M:      Alexey Makhalov <amakhalov@vmware.com>
20865 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20866 L:      virtualization@lists.linux-foundation.org
20867 L:      x86@kernel.org
20868 S:      Supported
20869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
20870 F:      arch/x86/include/asm/vmware.h
20871 F:      arch/x86/kernel/cpu/vmware.c
20872
20873 VMWARE PVRDMA DRIVER
20874 M:      Bryan Tan <bryantan@vmware.com>
20875 M:      Vishnu Dasa <vdasa@vmware.com>
20876 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20877 L:      linux-rdma@vger.kernel.org
20878 S:      Maintained
20879 F:      drivers/infiniband/hw/vmw_pvrdma/
20880
20881 VMware PVSCSI driver
20882 M:      Vishal Bhakta <vbhakta@vmware.com>
20883 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20884 L:      linux-scsi@vger.kernel.org
20885 S:      Maintained
20886 F:      drivers/scsi/vmw_pvscsi.c
20887 F:      drivers/scsi/vmw_pvscsi.h
20888
20889 VMWARE VIRTUAL PTP CLOCK DRIVER
20890 M:      Vivek Thampi <vithampi@vmware.com>
20891 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20892 L:      netdev@vger.kernel.org
20893 S:      Supported
20894 F:      drivers/ptp/ptp_vmw.c
20895
20896 VMWARE VMCI DRIVER
20897 M:      Jorgen Hansen <jhansen@vmware.com>
20898 M:      Vishnu Dasa <vdasa@vmware.com>
20899 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20900 L:      linux-kernel@vger.kernel.org
20901 S:      Maintained
20902 F:      drivers/misc/vmw_vmci/
20903
20904 VMWARE VMMOUSE SUBDRIVER
20905 M:      Zack Rusin <zackr@vmware.com>
20906 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
20907 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20908 L:      linux-input@vger.kernel.org
20909 S:      Maintained
20910 F:      drivers/input/mouse/vmmouse.c
20911 F:      drivers/input/mouse/vmmouse.h
20912
20913 VMWARE VMXNET3 ETHERNET DRIVER
20914 M:      Ronak Doshi <doshir@vmware.com>
20915 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20916 L:      netdev@vger.kernel.org
20917 S:      Maintained
20918 F:      drivers/net/vmxnet3/
20919
20920 VOCORE VOCORE2 BOARD
20921 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20922 L:      linux-mips@vger.kernel.org
20923 S:      Maintained
20924 F:      arch/mips/boot/dts/ralink/vocore2.dts
20925
20926 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20927 M:      Liam Girdwood <lgirdwood@gmail.com>
20928 M:      Mark Brown <broonie@kernel.org>
20929 L:      linux-kernel@vger.kernel.org
20930 S:      Supported
20931 W:      http://www.slimlogic.co.uk/?p=48
20932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20933 F:      Documentation/devicetree/bindings/regulator/
20934 F:      Documentation/power/regulator/
20935 F:      drivers/regulator/
20936 F:      include/dt-bindings/regulator/
20937 F:      include/linux/regulator/
20938 K:      regulator_get_optional
20939
20940 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20941 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20942 F:      drivers/regulator/irq_helpers.c
20943
20944 VRF
20945 M:      David Ahern <dsahern@kernel.org>
20946 L:      netdev@vger.kernel.org
20947 S:      Maintained
20948 F:      Documentation/networking/vrf.rst
20949 F:      drivers/net/vrf.c
20950
20951 VSPRINTF
20952 M:      Petr Mladek <pmladek@suse.com>
20953 M:      Steven Rostedt <rostedt@goodmis.org>
20954 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20955 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20956 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20957 S:      Maintained
20958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
20959 F:      Documentation/core-api/printk-formats.rst
20960 F:      lib/test_printf.c
20961 F:      lib/test_scanf.c
20962 F:      lib/vsprintf.c
20963
20964 VT1211 HARDWARE MONITOR DRIVER
20965 M:      Juerg Haefliger <juergh@gmail.com>
20966 L:      linux-hwmon@vger.kernel.org
20967 S:      Maintained
20968 F:      Documentation/hwmon/vt1211.rst
20969 F:      drivers/hwmon/vt1211.c
20970
20971 VT8231 HARDWARE MONITOR DRIVER
20972 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20973 L:      linux-hwmon@vger.kernel.org
20974 S:      Maintained
20975 F:      drivers/hwmon/vt8231.c
20976
20977 VUB300 USB to SDIO/SD/MMC bridge chip
20978 L:      linux-mmc@vger.kernel.org
20979 S:      Orphan
20980 F:      drivers/mmc/host/vub300.c
20981
20982 W1 DALLAS'S 1-WIRE BUS
20983 M:      Evgeniy Polyakov <zbr@ioremap.net>
20984 S:      Maintained
20985 F:      Documentation/devicetree/bindings/w1/
20986 F:      Documentation/w1/
20987 F:      drivers/w1/
20988 F:      include/linux/w1.h
20989
20990 W83791D HARDWARE MONITORING DRIVER
20991 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20992 L:      linux-hwmon@vger.kernel.org
20993 S:      Maintained
20994 F:      Documentation/hwmon/w83791d.rst
20995 F:      drivers/hwmon/w83791d.c
20996
20997 W83793 HARDWARE MONITORING DRIVER
20998 M:      Rudolf Marek <r.marek@assembler.cz>
20999 L:      linux-hwmon@vger.kernel.org
21000 S:      Maintained
21001 F:      Documentation/hwmon/w83793.rst
21002 F:      drivers/hwmon/w83793.c
21003
21004 W83795 HARDWARE MONITORING DRIVER
21005 M:      Jean Delvare <jdelvare@suse.com>
21006 L:      linux-hwmon@vger.kernel.org
21007 S:      Maintained
21008 F:      drivers/hwmon/w83795.c
21009
21010 W83L51xD SD/MMC CARD INTERFACE DRIVER
21011 M:      Pierre Ossman <pierre@ossman.eu>
21012 S:      Maintained
21013 F:      drivers/mmc/host/wbsd.*
21014
21015 WACOM PROTOCOL 4 SERIAL TABLETS
21016 M:      Julian Squires <julian@cipht.net>
21017 M:      Hans de Goede <hdegoede@redhat.com>
21018 L:      linux-input@vger.kernel.org
21019 S:      Maintained
21020 F:      drivers/input/tablet/wacom_serial4.c
21021
21022 WATCHDOG DEVICE DRIVERS
21023 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21024 M:      Guenter Roeck <linux@roeck-us.net>
21025 L:      linux-watchdog@vger.kernel.org
21026 S:      Maintained
21027 W:      http://www.linux-watchdog.org/
21028 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21029 F:      Documentation/devicetree/bindings/watchdog/
21030 F:      Documentation/watchdog/
21031 F:      drivers/watchdog/
21032 F:      include/linux/watchdog.h
21033 F:      include/uapi/linux/watchdog.h
21034
21035 WHISKEYCOVE PMIC GPIO DRIVER
21036 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21037 L:      linux-gpio@vger.kernel.org
21038 S:      Maintained
21039 F:      drivers/gpio/gpio-wcove.c
21040
21041 WHWAVE RTC DRIVER
21042 M:      Dianlong Li <long17.cool@163.com>
21043 L:      linux-rtc@vger.kernel.org
21044 S:      Maintained
21045 F:      drivers/rtc/rtc-sd3078.c
21046
21047 WIIMOTE HID DRIVER
21048 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21049 L:      linux-input@vger.kernel.org
21050 S:      Maintained
21051 F:      drivers/hid/hid-wiimote*
21052
21053 WILOCITY WIL6210 WIRELESS DRIVER
21054 M:      Maya Erez <merez@codeaurora.org>
21055 L:      linux-wireless@vger.kernel.org
21056 L:      wil6210@qti.qualcomm.com
21057 S:      Supported
21058 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21059 F:      drivers/net/wireless/ath/wil6210/
21060
21061 WINBOND CIR DRIVER
21062 M:      David Härdeman <david@hardeman.nu>
21063 S:      Maintained
21064 F:      drivers/media/rc/winbond-cir.c
21065
21066 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21067 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21068 L:      linux-watchdog@vger.kernel.org
21069 S:      Maintained
21070 F:      drivers/watchdog/ebc-c384_wdt.c
21071
21072 WINSYSTEMS WS16C48 GPIO DRIVER
21073 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21074 L:      linux-gpio@vger.kernel.org
21075 S:      Maintained
21076 F:      drivers/gpio/gpio-ws16c48.c
21077
21078 WIREGUARD SECURE NETWORK TUNNEL
21079 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21080 L:      wireguard@lists.zx2c4.com
21081 L:      netdev@vger.kernel.org
21082 S:      Maintained
21083 F:      drivers/net/wireguard/
21084 F:      tools/testing/selftests/wireguard/
21085
21086 WISTRON LAPTOP BUTTON DRIVER
21087 M:      Miloslav Trmac <mitr@volny.cz>
21088 S:      Maintained
21089 F:      drivers/input/misc/wistron_btns.c
21090
21091 WL3501 WIRELESS PCMCIA CARD DRIVER
21092 L:      linux-wireless@vger.kernel.org
21093 S:      Odd fixes
21094 F:      drivers/net/wireless/wl3501*
21095
21096 WOLFSON MICROELECTRONICS DRIVERS
21097 L:      patches@opensource.cirrus.com
21098 S:      Supported
21099 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21100 T:      git https://github.com/CirrusLogic/linux-drivers.git
21101 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21102 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21103 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21104 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21105 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21106 F:      Documentation/devicetree/bindings/sound/wm*
21107 F:      Documentation/hwmon/wm83??.rst
21108 F:      arch/arm/mach-s3c/mach-crag6410*
21109 F:      drivers/clk/clk-wm83*.c
21110 F:      drivers/gpio/gpio-*wm*.c
21111 F:      drivers/gpio/gpio-arizona.c
21112 F:      drivers/hwmon/wm83??-hwmon.c
21113 F:      drivers/input/misc/wm831x-on.c
21114 F:      drivers/input/touchscreen/wm831x-ts.c
21115 F:      drivers/input/touchscreen/wm97*.c
21116 F:      drivers/leds/leds-wm83*.c
21117 F:      drivers/mfd/arizona*
21118 F:      drivers/mfd/cs47l24*
21119 F:      drivers/mfd/wm*.c
21120 F:      drivers/power/supply/wm83*.c
21121 F:      drivers/regulator/arizona*
21122 F:      drivers/regulator/wm8*.c
21123 F:      drivers/rtc/rtc-wm83*.c
21124 F:      drivers/video/backlight/wm83*_bl.c
21125 F:      drivers/watchdog/wm83*_wdt.c
21126 F:      include/linux/mfd/arizona/
21127 F:      include/linux/mfd/wm831x/
21128 F:      include/linux/mfd/wm8350/
21129 F:      include/linux/mfd/wm8400*
21130 F:      include/linux/regulator/arizona*
21131 F:      include/linux/wm97xx.h
21132 F:      include/sound/wm????.h
21133 F:      sound/soc/codecs/arizona*
21134 F:      sound/soc/codecs/cs47l24*
21135 F:      sound/soc/codecs/wm*
21136
21137 WORKQUEUE
21138 M:      Tejun Heo <tj@kernel.org>
21139 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21140 S:      Maintained
21141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21142 F:      Documentation/core-api/workqueue.rst
21143 F:      include/linux/workqueue.h
21144 F:      kernel/workqueue.c
21145
21146 WWAN DRIVERS
21147 M:      Loic Poulain <loic.poulain@linaro.org>
21148 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21149 R:      Johannes Berg <johannes@sipsolutions.net>
21150 L:      netdev@vger.kernel.org
21151 S:      Maintained
21152 F:      drivers/net/wwan/
21153 F:      include/linux/wwan.h
21154 F:      include/uapi/linux/wwan.h
21155
21156 X-POWERS AXP288 PMIC DRIVERS
21157 M:      Hans de Goede <hdegoede@redhat.com>
21158 S:      Maintained
21159 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21160 N:      axp288
21161
21162 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21163 M:      Chen-Yu Tsai <wens@csie.org>
21164 L:      linux-kernel@vger.kernel.org
21165 S:      Maintained
21166 N:      axp[128]
21167
21168 X.25 STACK
21169 M:      Martin Schiller <ms@dev.tdt.de>
21170 L:      linux-x25@vger.kernel.org
21171 S:      Maintained
21172 F:      Documentation/networking/lapb-module.rst
21173 F:      Documentation/networking/x25*
21174 F:      drivers/net/wan/hdlc_x25.c
21175 F:      drivers/net/wan/lapbether.c
21176 F:      include/*/lapb.h
21177 F:      include/net/x25*
21178 F:      include/uapi/linux/x25.h
21179 F:      net/lapb/
21180 F:      net/x25/
21181
21182 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21183 M:      Thomas Gleixner <tglx@linutronix.de>
21184 M:      Ingo Molnar <mingo@redhat.com>
21185 M:      Borislav Petkov <bp@alien8.de>
21186 M:      Dave Hansen <dave.hansen@linux.intel.com>
21187 M:      x86@kernel.org
21188 R:      "H. Peter Anvin" <hpa@zytor.com>
21189 L:      linux-kernel@vger.kernel.org
21190 S:      Maintained
21191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21192 F:      Documentation/devicetree/bindings/x86/
21193 F:      Documentation/x86/
21194 F:      arch/x86/
21195
21196 X86 ENTRY CODE
21197 M:      Andy Lutomirski <luto@kernel.org>
21198 L:      linux-kernel@vger.kernel.org
21199 S:      Maintained
21200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21201 F:      arch/x86/entry/
21202
21203 X86 MCE INFRASTRUCTURE
21204 M:      Tony Luck <tony.luck@intel.com>
21205 M:      Borislav Petkov <bp@alien8.de>
21206 L:      linux-edac@vger.kernel.org
21207 S:      Maintained
21208 F:      Documentation/ABI/testing/sysfs-mce
21209 F:      Documentation/x86/x86_64/machinecheck.rst
21210 F:      arch/x86/kernel/cpu/mce/*
21211
21212 X86 MICROCODE UPDATE SUPPORT
21213 M:      Borislav Petkov <bp@alien8.de>
21214 S:      Maintained
21215 F:      arch/x86/kernel/cpu/microcode/*
21216
21217 X86 MM
21218 M:      Dave Hansen <dave.hansen@linux.intel.com>
21219 M:      Andy Lutomirski <luto@kernel.org>
21220 M:      Peter Zijlstra <peterz@infradead.org>
21221 L:      linux-kernel@vger.kernel.org
21222 S:      Maintained
21223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21224 F:      arch/x86/mm/
21225
21226 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21227 M:      Hans de Goede <hdegoede@redhat.com>
21228 L:      platform-driver-x86@vger.kernel.org
21229 S:      Maintained
21230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21231 F:      drivers/platform/x86/x86-android-tablets.c
21232
21233 X86 PLATFORM DRIVERS
21234 M:      Hans de Goede <hdegoede@redhat.com>
21235 M:      Mark Gross <markgross@kernel.org>
21236 L:      platform-driver-x86@vger.kernel.org
21237 S:      Maintained
21238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21239 F:      drivers/platform/olpc/
21240 F:      drivers/platform/x86/
21241
21242 X86 PLATFORM DRIVERS - ARCH
21243 R:      Darren Hart <dvhart@infradead.org>
21244 R:      Andy Shevchenko <andy@infradead.org>
21245 L:      platform-driver-x86@vger.kernel.org
21246 L:      x86@kernel.org
21247 S:      Maintained
21248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21249 F:      arch/x86/platform
21250
21251 X86 PLATFORM UV HPE SUPERDOME FLEX
21252 M:      Steve Wahl <steve.wahl@hpe.com>
21253 R:      Mike Travis <mike.travis@hpe.com>
21254 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21255 R:      Russ Anderson <russ.anderson@hpe.com>
21256 S:      Supported
21257 F:      arch/x86/include/asm/uv/
21258 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21259 F:      arch/x86/platform/uv/
21260
21261 X86 VDSO
21262 M:      Andy Lutomirski <luto@kernel.org>
21263 L:      linux-kernel@vger.kernel.org
21264 S:      Maintained
21265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21266 F:      arch/x86/entry/vdso/
21267
21268 XARRAY
21269 M:      Matthew Wilcox <willy@infradead.org>
21270 L:      linux-fsdevel@vger.kernel.org
21271 S:      Supported
21272 F:      Documentation/core-api/xarray.rst
21273 F:      include/linux/idr.h
21274 F:      include/linux/xarray.h
21275 F:      lib/idr.c
21276 F:      lib/xarray.c
21277 F:      tools/testing/radix-tree
21278
21279 XBOX DVD IR REMOTE
21280 M:      Benjamin Valentin <benpicco@googlemail.com>
21281 S:      Maintained
21282 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21283 F:      drivers/media/rc/xbox_remote.c
21284
21285 XC2028/3028 TUNER DRIVER
21286 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21287 L:      linux-media@vger.kernel.org
21288 S:      Maintained
21289 W:      https://linuxtv.org
21290 T:      git git://linuxtv.org/media_tree.git
21291 F:      drivers/media/tuners/xc2028.*
21292
21293 XDP (eXpress Data Path)
21294 M:      Alexei Starovoitov <ast@kernel.org>
21295 M:      Daniel Borkmann <daniel@iogearbox.net>
21296 M:      David S. Miller <davem@davemloft.net>
21297 M:      Jakub Kicinski <kuba@kernel.org>
21298 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21299 M:      John Fastabend <john.fastabend@gmail.com>
21300 L:      netdev@vger.kernel.org
21301 L:      bpf@vger.kernel.org
21302 S:      Supported
21303 F:      include/net/xdp.h
21304 F:      include/net/xdp_priv.h
21305 F:      include/trace/events/xdp.h
21306 F:      kernel/bpf/cpumap.c
21307 F:      kernel/bpf/devmap.c
21308 F:      net/core/xdp.c
21309 F:      samples/bpf/xdp*
21310 F:      tools/testing/selftests/bpf/*xdp*
21311 F:      tools/testing/selftests/bpf/*/*xdp*
21312 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21313 F:      drivers/net/ethernet/*/*/*xdp*
21314 K:      (?:\b|_)xdp(?:\b|_)
21315
21316 XDP SOCKETS (AF_XDP)
21317 M:      Björn Töpel <bjorn@kernel.org>
21318 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21319 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21320 L:      netdev@vger.kernel.org
21321 L:      bpf@vger.kernel.org
21322 S:      Maintained
21323 F:      Documentation/networking/af_xdp.rst
21324 F:      include/net/xdp_sock*
21325 F:      include/net/xsk_buff_pool.h
21326 F:      include/uapi/linux/if_xdp.h
21327 F:      include/uapi/linux/xdp_diag.h
21328 F:      include/net/netns/xdp.h
21329 F:      net/xdp/
21330 F:      samples/bpf/xdpsock*
21331 F:      tools/lib/bpf/xsk*
21332
21333 XEN BLOCK SUBSYSTEM
21334 M:      Roger Pau Monné <roger.pau@citrix.com>
21335 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21336 S:      Supported
21337 F:      drivers/block/xen*
21338 F:      drivers/block/xen-blkback/*
21339
21340 XEN HYPERVISOR ARM
21341 M:      Stefano Stabellini <sstabellini@kernel.org>
21342 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21343 S:      Maintained
21344 F:      arch/arm/include/asm/xen/
21345 F:      arch/arm/xen/
21346
21347 XEN HYPERVISOR ARM64
21348 M:      Stefano Stabellini <sstabellini@kernel.org>
21349 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21350 S:      Maintained
21351 F:      arch/arm64/include/asm/xen/
21352 F:      arch/arm64/xen/
21353
21354 XEN HYPERVISOR INTERFACE
21355 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21356 M:      Juergen Gross <jgross@suse.com>
21357 R:      Stefano Stabellini <sstabellini@kernel.org>
21358 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21359 S:      Supported
21360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21361 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21362 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21363 F:      arch/x86/include/asm/pvclock-abi.h
21364 F:      arch/x86/include/asm/xen/
21365 F:      arch/x86/platform/pvh/
21366 F:      arch/x86/xen/
21367 F:      drivers/*/xen-*front.c
21368 F:      drivers/xen/
21369 F:      include/uapi/xen/
21370 F:      include/xen/
21371
21372 XEN NETWORK BACKEND DRIVER
21373 M:      Wei Liu <wei.liu@kernel.org>
21374 M:      Paul Durrant <paul@xen.org>
21375 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21376 L:      netdev@vger.kernel.org
21377 S:      Supported
21378 F:      drivers/net/xen-netback/*
21379
21380 XEN PCI SUBSYSTEM
21381 M:      Juergen Gross <jgross@suse.com>
21382 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21383 S:      Supported
21384 F:      arch/x86/pci/*xen*
21385 F:      drivers/pci/*xen*
21386
21387 XEN PVSCSI DRIVERS
21388 M:      Juergen Gross <jgross@suse.com>
21389 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21390 L:      linux-scsi@vger.kernel.org
21391 S:      Supported
21392 F:      drivers/scsi/xen-scsifront.c
21393 F:      drivers/xen/xen-scsiback.c
21394 F:      include/xen/interface/io/vscsiif.h
21395
21396 XEN PVUSB DRIVER
21397 M:      Juergen Gross <jgross@suse.com>
21398 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21399 L:      linux-usb@vger.kernel.org
21400 S:      Supported
21401 F:      drivers/usb/host/xen*
21402 F:      include/xen/interface/io/usbif.h
21403
21404 XEN SOUND FRONTEND DRIVER
21405 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21406 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21407 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21408 S:      Supported
21409 F:      sound/xen/*
21410
21411 XEN SWIOTLB SUBSYSTEM
21412 M:      Juergen Gross <jgross@suse.com>
21413 M:      Stefano Stabellini <sstabellini@kernel.org>
21414 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21415 L:      iommu@lists.linux-foundation.org
21416 S:      Supported
21417 F:      arch/x86/xen/*swiotlb*
21418 F:      drivers/xen/*swiotlb*
21419
21420 XFS FILESYSTEM
21421 C:      irc://irc.oftc.net/xfs
21422 M:      Darrick J. Wong <djwong@kernel.org>
21423 M:      linux-xfs@vger.kernel.org
21424 L:      linux-xfs@vger.kernel.org
21425 S:      Supported
21426 W:      http://xfs.org/
21427 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21428 F:      Documentation/ABI/testing/sysfs-fs-xfs
21429 F:      Documentation/admin-guide/xfs.rst
21430 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21431 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21432 F:      fs/xfs/
21433 F:      include/uapi/linux/dqblk_xfs.h
21434 F:      include/uapi/linux/fsmap.h
21435
21436 XILINX AMS DRIVER
21437 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21438 L:      linux-iio@vger.kernel.org
21439 S:      Maintained
21440 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21441 F:      drivers/iio/adc/xilinx-ams.c
21442
21443 XILINX AXI ETHERNET DRIVER
21444 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21445 S:      Maintained
21446 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21447
21448 XILINX CAN DRIVER
21449 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21450 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21451 L:      linux-can@vger.kernel.org
21452 S:      Maintained
21453 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
21454 F:      drivers/net/can/xilinx_can.c
21455
21456 XILINX GPIO DRIVER
21457 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21458 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21459 R:      Michal Simek <michal.simek@xilinx.com>
21460 S:      Maintained
21461 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21462 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21463 F:      drivers/gpio/gpio-xilinx.c
21464 F:      drivers/gpio/gpio-zynq.c
21465
21466 XILINX SD-FEC IP CORES
21467 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21468 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21469 S:      Maintained
21470 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21471 F:      Documentation/misc-devices/xilinx_sdfec.rst
21472 F:      drivers/misc/Kconfig
21473 F:      drivers/misc/Makefile
21474 F:      drivers/misc/xilinx_sdfec.c
21475 F:      include/uapi/misc/xilinx_sdfec.h
21476
21477 XILINX UARTLITE SERIAL DRIVER
21478 M:      Peter Korsgaard <jacmet@sunsite.dk>
21479 L:      linux-serial@vger.kernel.org
21480 S:      Maintained
21481 F:      drivers/tty/serial/uartlite.c
21482
21483 XILINX VIDEO IP CORES
21484 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21485 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21486 L:      linux-media@vger.kernel.org
21487 S:      Supported
21488 T:      git git://linuxtv.org/media_tree.git
21489 F:      Documentation/devicetree/bindings/media/xilinx/
21490 F:      drivers/media/platform/xilinx/
21491 F:      include/uapi/linux/xilinx-v4l2-controls.h
21492
21493 XILINX ZYNQMP DPDMA DRIVER
21494 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21495 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21496 L:      dmaengine@vger.kernel.org
21497 S:      Supported
21498 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21499 F:      drivers/dma/xilinx/xilinx_dpdma.c
21500 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21501
21502 XILINX ZYNQMP PSGTR PHY DRIVER
21503 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21504 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21505 L:      linux-kernel@vger.kernel.org
21506 S:      Supported
21507 T:      git https://github.com/Xilinx/linux-xlnx.git
21508 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21509 F:      drivers/phy/xilinx/phy-zynqmp.c
21510
21511 XILINX ZYNQMP SHA3 DRIVER
21512 M:      Harsha <harsha.harsha@xilinx.com>
21513 S:      Maintained
21514 F:      drivers/crypto/xilinx/zynqmp-sha.c
21515
21516 XILINX EVENT MANAGEMENT DRIVER
21517 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21518 S:      Maintained
21519 F:      drivers/soc/xilinx/xlnx_event_manager.c
21520 F:      include/linux/firmware/xlnx-event-manager.h
21521
21522 XILLYBUS DRIVER
21523 M:      Eli Billauer <eli.billauer@gmail.com>
21524 L:      linux-kernel@vger.kernel.org
21525 S:      Supported
21526 F:      drivers/char/xillybus/
21527
21528 XLP9XX I2C DRIVER
21529 M:      George Cherian <gcherian@marvell.com>
21530 L:      linux-i2c@vger.kernel.org
21531 S:      Supported
21532 W:      http://www.marvell.com
21533 F:      drivers/i2c/busses/i2c-xlp9xx.c
21534
21535 XRA1403 GPIO EXPANDER
21536 M:      Nandor Han <nandor.han@ge.com>
21537 M:      Semi Malinen <semi.malinen@ge.com>
21538 L:      linux-gpio@vger.kernel.org
21539 S:      Maintained
21540 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21541 F:      drivers/gpio/gpio-xra1403.c
21542
21543 XTENSA XTFPGA PLATFORM SUPPORT
21544 M:      Max Filippov <jcmvbkbc@gmail.com>
21545 L:      linux-xtensa@linux-xtensa.org
21546 S:      Maintained
21547 F:      drivers/spi/spi-xtensa-xtfpga.c
21548 F:      sound/soc/xtensa/xtfpga-i2s.c
21549
21550 YAM DRIVER FOR AX.25
21551 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21552 L:      linux-hams@vger.kernel.org
21553 S:      Maintained
21554 F:      drivers/net/hamradio/yam*
21555 F:      include/linux/yam.h
21556
21557 YAMA SECURITY MODULE
21558 M:      Kees Cook <keescook@chromium.org>
21559 S:      Supported
21560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21561 F:      Documentation/admin-guide/LSM/Yama.rst
21562 F:      security/yama/
21563
21564 YEALINK PHONE DRIVER
21565 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21566 L:      usbb2k-api-dev@nongnu.org
21567 S:      Maintained
21568 F:      Documentation/input/devices/yealink.rst
21569 F:      drivers/input/misc/yealink.*
21570
21571 Z8530 DRIVER FOR AX.25
21572 M:      Joerg Reuter <jreuter@yaina.de>
21573 L:      linux-hams@vger.kernel.org
21574 S:      Maintained
21575 W:      http://yaina.de/jreuter/
21576 W:      http://www.qsl.net/dl1bke/
21577 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21578 F:      drivers/net/hamradio/*scc.c
21579 F:      drivers/net/hamradio/z8530.h
21580
21581 ZBUD COMPRESSED PAGE ALLOCATOR
21582 M:      Seth Jennings <sjenning@redhat.com>
21583 M:      Dan Streetman <ddstreet@ieee.org>
21584 L:      linux-mm@kvack.org
21585 S:      Maintained
21586 F:      mm/zbud.c
21587
21588 ZD1211RW WIRELESS DRIVER
21589 M:      Ulrich Kunitz <kune@deine-taler.de>
21590 L:      linux-wireless@vger.kernel.org
21591 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
21592 S:      Maintained
21593 W:      http://zd1211.ath.cx/wiki/DriverRewrite
21594 F:      drivers/net/wireless/zydas/zd1211rw/
21595
21596 ZD1301 MEDIA DRIVER
21597 M:      Antti Palosaari <crope@iki.fi>
21598 L:      linux-media@vger.kernel.org
21599 S:      Maintained
21600 W:      https://linuxtv.org/
21601 W:      http://palosaari.fi/linux/
21602 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21603 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21604
21605 ZD1301_DEMOD MEDIA DRIVER
21606 M:      Antti Palosaari <crope@iki.fi>
21607 L:      linux-media@vger.kernel.org
21608 S:      Maintained
21609 W:      https://linuxtv.org/
21610 W:      http://palosaari.fi/linux/
21611 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21612 F:      drivers/media/dvb-frontends/zd1301_demod*
21613
21614 ZHAOXIN PROCESSOR SUPPORT
21615 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21616 L:      linux-kernel@vger.kernel.org
21617 S:      Maintained
21618 F:      arch/x86/kernel/cpu/zhaoxin.c
21619
21620 ZONEFS FILESYSTEM
21621 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
21622 M:      Naohiro Aota <naohiro.aota@wdc.com>
21623 R:      Johannes Thumshirn <jth@kernel.org>
21624 L:      linux-fsdevel@vger.kernel.org
21625 S:      Maintained
21626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21627 F:      Documentation/filesystems/zonefs.rst
21628 F:      fs/zonefs/
21629
21630 ZPOOL COMPRESSED PAGE STORAGE API
21631 M:      Dan Streetman <ddstreet@ieee.org>
21632 L:      linux-mm@kvack.org
21633 S:      Maintained
21634 F:      include/linux/zpool.h
21635 F:      mm/zpool.c
21636
21637 ZR36067 VIDEO FOR LINUX DRIVER
21638 M:      Corentin Labbe <clabbe@baylibre.com>
21639 L:      mjpeg-users@lists.sourceforge.net
21640 L:      linux-media@vger.kernel.org
21641 S:      Maintained
21642 W:      http://mjpeg.sourceforge.net/driver-zoran/
21643 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21644 F:      Documentation/driver-api/media/drivers/zoran.rst
21645 F:      drivers/staging/media/zoran/
21646
21647 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21648 M:      Minchan Kim <minchan@kernel.org>
21649 M:      Nitin Gupta <ngupta@vflare.org>
21650 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21651 L:      linux-kernel@vger.kernel.org
21652 S:      Maintained
21653 F:      Documentation/admin-guide/blockdev/zram.rst
21654 F:      drivers/block/zram/
21655
21656 ZS DECSTATION Z85C30 SERIAL DRIVER
21657 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21658 S:      Maintained
21659 F:      drivers/tty/serial/zs.*
21660
21661 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21662 M:      Minchan Kim <minchan@kernel.org>
21663 M:      Nitin Gupta <ngupta@vflare.org>
21664 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21665 L:      linux-mm@kvack.org
21666 S:      Maintained
21667 F:      Documentation/vm/zsmalloc.rst
21668 F:      include/linux/zsmalloc.h
21669 F:      mm/zsmalloc.c
21670
21671 ZSTD
21672 M:      Nick Terrell <terrelln@fb.com>
21673 S:      Maintained
21674 B:      https://github.com/facebook/zstd/issues
21675 T:      git git://github.com/terrelln/linux.git
21676 F:      include/linux/zstd*
21677 F:      lib/zstd/
21678 F:      lib/decompress_unzstd.c
21679 F:      crypto/zstd.c
21680 N:      zstd
21681 K:      zstd
21682
21683 ZSWAP COMPRESSED SWAP CACHING
21684 M:      Seth Jennings <sjenning@redhat.com>
21685 M:      Dan Streetman <ddstreet@ieee.org>
21686 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21687 L:      linux-mm@kvack.org
21688 S:      Maintained
21689 F:      mm/zswap.c
21690
21691 THE REST
21692 M:      Linus Torvalds <torvalds@linux-foundation.org>
21693 L:      linux-kernel@vger.kernel.org
21694 S:      Buried alive in reporters
21695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21696 F:      *
21697 F:      */