Merge tag 'slab-for-5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/vbabka...
[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:      include/uapi/linux/wireless.h
205 F:      net/wireless/
206
207 8169 10/100/1000 GIGABIT ETHERNET DRIVER
208 M:      Heiner Kallweit <hkallweit1@gmail.com>
209 M:      nic_swsd@realtek.com
210 L:      netdev@vger.kernel.org
211 S:      Maintained
212 F:      drivers/net/ethernet/realtek/r8169*
213
214 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
215 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
216 L:      linux-serial@vger.kernel.org
217 S:      Maintained
218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
219 F:      drivers/tty/serial/8250*
220 F:      include/linux/serial_8250.h
221
222 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
223 L:      netdev@vger.kernel.org
224 S:      Orphan / Obsolete
225 F:      drivers/net/ethernet/8390/
226
227 9P FILE SYSTEM
228 M:      Eric Van Hensbergen <ericvh@gmail.com>
229 M:      Latchesar Ionkov <lucho@ionkov.net>
230 M:      Dominique Martinet <asmadeus@codewreck.org>
231 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
232 L:      v9fs-developer@lists.sourceforge.net
233 S:      Maintained
234 W:      http://swik.net/v9fs
235 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
237 T:      git git://github.com/martinetd/linux.git
238 F:      Documentation/filesystems/9p.rst
239 F:      fs/9p/
240 F:      include/net/9p/
241 F:      include/trace/events/9p.h
242 F:      include/uapi/linux/virtio_9p.h
243 F:      net/9p/
244
245 A8293 MEDIA DRIVER
246 M:      Antti Palosaari <crope@iki.fi>
247 L:      linux-media@vger.kernel.org
248 S:      Maintained
249 W:      https://linuxtv.org
250 W:      http://palosaari.fi/linux/
251 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
252 T:      git git://linuxtv.org/anttip/media_tree.git
253 F:      drivers/media/dvb-frontends/a8293*
254
255 AACRAID SCSI RAID DRIVER
256 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
257 L:      linux-scsi@vger.kernel.org
258 S:      Supported
259 W:      http://www.adaptec.com/
260 F:      Documentation/scsi/aacraid.rst
261 F:      drivers/scsi/aacraid/
262
263 ABI/API
264 L:      linux-api@vger.kernel.org
265 F:      include/linux/syscalls.h
266 F:      kernel/sys_ni.c
267 X:      include/uapi/
268 X:      arch/*/include/uapi/
269
270 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
271 M:      Hans de Goede <hdegoede@redhat.com>
272 L:      linux-hwmon@vger.kernel.org
273 S:      Maintained
274 F:      drivers/hwmon/abituguru.c
275
276 ABIT UGURU 3 HARDWARE MONITOR DRIVER
277 M:      Alistair John Strachan <alistair@devzero.co.uk>
278 L:      linux-hwmon@vger.kernel.org
279 S:      Maintained
280 F:      drivers/hwmon/abituguru3.c
281
282 ACCES 104-DIO-48E GPIO DRIVER
283 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
284 L:      linux-gpio@vger.kernel.org
285 S:      Maintained
286 F:      drivers/gpio/gpio-104-dio-48e.c
287
288 ACCES 104-IDI-48 GPIO DRIVER
289 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
290 L:      linux-gpio@vger.kernel.org
291 S:      Maintained
292 F:      drivers/gpio/gpio-104-idi-48.c
293
294 ACCES 104-IDIO-16 GPIO DRIVER
295 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
296 L:      linux-gpio@vger.kernel.org
297 S:      Maintained
298 F:      drivers/gpio/gpio-104-idio-16.c
299
300 ACCES 104-QUAD-8 DRIVER
301 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
302 M:      Syed Nayyar Waris <syednwaris@gmail.com>
303 L:      linux-iio@vger.kernel.org
304 S:      Maintained
305 F:      drivers/counter/104-quad-8.c
306
307 ACCES PCI-IDIO-16 GPIO DRIVER
308 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
309 L:      linux-gpio@vger.kernel.org
310 S:      Maintained
311 F:      drivers/gpio/gpio-pci-idio-16.c
312
313 ACCES PCIe-IDIO-24 GPIO DRIVER
314 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
315 L:      linux-gpio@vger.kernel.org
316 S:      Maintained
317 F:      drivers/gpio/gpio-pcie-idio-24.c
318
319 ACENIC DRIVER
320 M:      Jes Sorensen <jes@trained-monkey.org>
321 L:      linux-acenic@sunsite.dk
322 S:      Maintained
323 F:      drivers/net/ethernet/alteon/acenic*
324
325 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
326 M:      Peter Kaestle <peter@piie.net>
327 L:      platform-driver-x86@vger.kernel.org
328 S:      Maintained
329 W:      http://piie.net/?section=acerhdf
330 F:      drivers/platform/x86/acerhdf.c
331
332 ACER WMI LAPTOP EXTRAS
333 M:      "Lee, Chun-Yi" <jlee@suse.com>
334 L:      platform-driver-x86@vger.kernel.org
335 S:      Maintained
336 F:      drivers/platform/x86/acer-wmi.c
337
338 ACPI
339 M:      "Rafael J. Wysocki" <rafael@kernel.org>
340 R:      Len Brown <lenb@kernel.org>
341 L:      linux-acpi@vger.kernel.org
342 S:      Supported
343 W:      https://01.org/linux-acpi
344 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
345 B:      https://bugzilla.kernel.org
346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
347 F:      Documentation/ABI/testing/configfs-acpi
348 F:      Documentation/ABI/testing/sysfs-bus-acpi
349 F:      Documentation/firmware-guide/acpi/
350 F:      drivers/acpi/
351 F:      drivers/pci/*/*acpi*
352 F:      drivers/pci/*acpi*
353 F:      drivers/pnp/pnpacpi/
354 F:      include/acpi/
355 F:      include/linux/acpi.h
356 F:      include/linux/fwnode.h
357 F:      tools/power/acpi/
358
359 ACPI APEI
360 M:      "Rafael J. Wysocki" <rafael@kernel.org>
361 R:      Len Brown <lenb@kernel.org>
362 R:      James Morse <james.morse@arm.com>
363 R:      Tony Luck <tony.luck@intel.com>
364 R:      Borislav Petkov <bp@alien8.de>
365 L:      linux-acpi@vger.kernel.org
366 F:      drivers/acpi/apei/
367
368 ACPI COMPONENT ARCHITECTURE (ACPICA)
369 M:      Robert Moore <robert.moore@intel.com>
370 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
371 L:      linux-acpi@vger.kernel.org
372 L:      devel@acpica.org
373 S:      Supported
374 W:      https://acpica.org/
375 W:      https://github.com/acpica/acpica/
376 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
377 B:      https://bugzilla.kernel.org
378 B:      https://bugs.acpica.org
379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
380 F:      drivers/acpi/acpica/
381 F:      include/acpi/
382 F:      tools/power/acpi/
383
384 ACPI FOR ARM64 (ACPI/arm64)
385 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
386 M:      Hanjun Guo <guohanjun@huawei.com>
387 M:      Sudeep Holla <sudeep.holla@arm.com>
388 L:      linux-acpi@vger.kernel.org
389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
390 S:      Maintained
391 F:      drivers/acpi/arm64
392
393 ACPI SERIAL MULTI INSTANTIATE DRIVER
394 M:      Hans de Goede <hdegoede@redhat.com>
395 L:      platform-driver-x86@vger.kernel.org
396 S:      Maintained
397 F:      drivers/platform/x86/serial-multi-instantiate.c
398
399 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
400 M:      Sudeep Holla <sudeep.holla@arm.com>
401 L:      linux-acpi@vger.kernel.org
402 S:      Supported
403 F:      drivers/mailbox/pcc.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rafael@kernel.org>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Rafael J. Wysocki <rafael@kernel.org>
419 R:      Zhang Rui <rui.zhang@intel.com>
420 L:      linux-acpi@vger.kernel.org
421 S:      Supported
422 W:      https://01.org/linux-acpi
423 B:      https://bugzilla.kernel.org
424 F:      drivers/acpi/*thermal*
425
426 ACPI VIOT DRIVER
427 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
428 L:      linux-acpi@vger.kernel.org
429 L:      iommu@lists.linux-foundation.org
430 S:      Maintained
431 F:      drivers/acpi/viot.c
432 F:      include/linux/acpi_viot.h
433
434 ACPI WMI DRIVER
435 L:      platform-driver-x86@vger.kernel.org
436 S:      Orphan
437 F:      drivers/platform/x86/wmi.c
438 F:      include/uapi/linux/wmi.h
439
440 ACRN HYPERVISOR SERVICE MODULE
441 M:      Fei Li <fei1.li@intel.com>
442 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
443 S:      Supported
444 W:      https://projectacrn.org
445 F:      Documentation/virt/acrn/
446 F:      drivers/virt/acrn/
447 F:      include/uapi/linux/acrn.h
448
449 AD1889 ALSA SOUND DRIVER
450 L:      linux-parisc@vger.kernel.org
451 S:      Maintained
452 W:      https://parisc.wiki.kernel.org/index.php/AD1889
453 F:      sound/pci/ad1889.*
454
455 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
456 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
457 L:      linux-iio@vger.kernel.org
458 S:      Supported
459 F:      drivers/iio/potentiometer/ad5110.c
460
461 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
462 M:      Michael Hennerich <michael.hennerich@analog.com>
463 S:      Supported
464 W:      http://wiki.analog.com/AD5254
465 W:      https://ez.analog.com/linux-software-drivers
466 F:      drivers/misc/ad525x_dpot.c
467
468 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
469 M:      Michael Hennerich <michael.hennerich@analog.com>
470 S:      Supported
471 W:      http://wiki.analog.com/AD5398
472 W:      https://ez.analog.com/linux-software-drivers
473 F:      drivers/regulator/ad5398.c
474
475 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
476 M:      Michael Hennerich <michael.hennerich@analog.com>
477 S:      Supported
478 W:      http://wiki.analog.com/AD7142
479 W:      https://ez.analog.com/linux-software-drivers
480 F:      drivers/input/misc/ad714x.c
481
482 AD7877 TOUCHSCREEN DRIVER
483 M:      Michael Hennerich <michael.hennerich@analog.com>
484 S:      Supported
485 W:      http://wiki.analog.com/AD7877
486 W:      https://ez.analog.com/linux-software-drivers
487 F:      drivers/input/touchscreen/ad7877.c
488
489 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
490 M:      Michael Hennerich <michael.hennerich@analog.com>
491 S:      Supported
492 W:      http://wiki.analog.com/AD7879
493 W:      https://ez.analog.com/linux-software-drivers
494 F:      drivers/input/touchscreen/ad7879.c
495
496 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
497 M:      Jiri Kosina <jikos@kernel.org>
498 S:      Maintained
499
500 ADF7242 IEEE 802.15.4 RADIO DRIVER
501 M:      Michael Hennerich <michael.hennerich@analog.com>
502 L:      linux-wpan@vger.kernel.org
503 S:      Supported
504 W:      https://wiki.analog.com/ADF7242
505 W:      https://ez.analog.com/linux-software-drivers
506 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
507 F:      drivers/net/ieee802154/adf7242.c
508
509 ADM1025 HARDWARE MONITOR DRIVER
510 M:      Jean Delvare <jdelvare@suse.com>
511 L:      linux-hwmon@vger.kernel.org
512 S:      Maintained
513 F:      Documentation/hwmon/adm1025.rst
514 F:      drivers/hwmon/adm1025.c
515
516 ADM1029 HARDWARE MONITOR DRIVER
517 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
518 L:      linux-hwmon@vger.kernel.org
519 S:      Maintained
520 F:      drivers/hwmon/adm1029.c
521
522 ADM8211 WIRELESS DRIVER
523 L:      linux-wireless@vger.kernel.org
524 S:      Orphan
525 W:      https://wireless.wiki.kernel.org/
526 F:      drivers/net/wireless/admtek/adm8211.*
527
528 ADP1653 FLASH CONTROLLER DRIVER
529 M:      Sakari Ailus <sakari.ailus@iki.fi>
530 L:      linux-media@vger.kernel.org
531 S:      Maintained
532 F:      drivers/media/i2c/adp1653.c
533 F:      include/media/i2c/adp1653.h
534
535 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
536 M:      Michael Hennerich <michael.hennerich@analog.com>
537 S:      Supported
538 W:      http://wiki.analog.com/ADP5520
539 W:      https://ez.analog.com/linux-software-drivers
540 F:      drivers/gpio/gpio-adp5520.c
541 F:      drivers/input/keyboard/adp5520-keys.c
542 F:      drivers/leds/leds-adp5520.c
543 F:      drivers/mfd/adp5520.c
544 F:      drivers/video/backlight/adp5520_bl.c
545
546 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
547 M:      Michael Hennerich <michael.hennerich@analog.com>
548 S:      Supported
549 W:      http://wiki.analog.com/ADP5588
550 W:      https://ez.analog.com/linux-software-drivers
551 F:      drivers/gpio/gpio-adp5588.c
552 F:      drivers/input/keyboard/adp5588-keys.c
553
554 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
555 M:      Michael Hennerich <michael.hennerich@analog.com>
556 S:      Supported
557 W:      http://wiki.analog.com/ADP8860
558 W:      https://ez.analog.com/linux-software-drivers
559 F:      drivers/video/backlight/adp8860_bl.c
560
561 ADT746X FAN DRIVER
562 M:      Colin Leroy <colin@colino.net>
563 S:      Maintained
564 F:      drivers/macintosh/therm_adt746x.c
565
566 ADT7475 HARDWARE MONITOR DRIVER
567 M:      Jean Delvare <jdelvare@suse.com>
568 L:      linux-hwmon@vger.kernel.org
569 S:      Maintained
570 F:      Documentation/hwmon/adt7475.rst
571 F:      drivers/hwmon/adt7475.c
572
573 ADVANSYS SCSI DRIVER
574 M:      Matthew Wilcox <willy@infradead.org>
575 M:      Hannes Reinecke <hare@suse.com>
576 L:      linux-scsi@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/scsi/advansys.rst
579 F:      drivers/scsi/advansys.c
580
581 ADVANTECH SWBTN DRIVER
582 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
583 L:      platform-driver-x86@vger.kernel.org
584 S:      Maintained
585 F:      drivers/platform/x86/adv_swbutton.c
586
587 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
588 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
589 S:      Supported
590 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
591 F:      drivers/iio/accel/adxl313*
592
593 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
594 M:      Michael Hennerich <michael.hennerich@analog.com>
595 S:      Supported
596 W:      http://wiki.analog.com/ADXL345
597 W:      https://ez.analog.com/linux-software-drivers
598 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
599 F:      drivers/input/misc/adxl34x.c
600
601 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
602 M:      Puranjay Mohan <puranjay12@gmail.com>
603 L:      linux-iio@vger.kernel.org
604 S:      Supported
605 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
606 F:      drivers/iio/accel/adxl355.h
607 F:      drivers/iio/accel/adxl355_core.c
608 F:      drivers/iio/accel/adxl355_i2c.c
609 F:      drivers/iio/accel/adxl355_spi.c
610
611 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
612 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
613 L:      linux-iio@vger.kernel.org
614 S:      Supported
615 W:      http://ez.analog.com/community/linux-device-drivers
616 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
617 F:      drivers/iio/accel/adxl367*
618
619 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
620 M:      Michael Hennerich <michael.hennerich@analog.com>
621 S:      Supported
622 W:      https://ez.analog.com/linux-software-drivers
623 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
624 F:      drivers/iio/accel/adxl372.c
625 F:      drivers/iio/accel/adxl372_i2c.c
626 F:      drivers/iio/accel/adxl372_spi.c
627
628 AF9013 MEDIA DRIVER
629 M:      Antti Palosaari <crope@iki.fi>
630 L:      linux-media@vger.kernel.org
631 S:      Maintained
632 W:      https://linuxtv.org
633 W:      http://palosaari.fi/linux/
634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
635 T:      git git://linuxtv.org/anttip/media_tree.git
636 F:      drivers/media/dvb-frontends/af9013*
637
638 AF9033 MEDIA DRIVER
639 M:      Antti Palosaari <crope@iki.fi>
640 L:      linux-media@vger.kernel.org
641 S:      Maintained
642 W:      https://linuxtv.org
643 W:      http://palosaari.fi/linux/
644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
645 T:      git git://linuxtv.org/anttip/media_tree.git
646 F:      drivers/media/dvb-frontends/af9033*
647
648 AFFS FILE SYSTEM
649 M:      David Sterba <dsterba@suse.com>
650 L:      linux-fsdevel@vger.kernel.org
651 S:      Odd Fixes
652 F:      Documentation/filesystems/affs.rst
653 F:      fs/affs/
654
655 AFS FILESYSTEM
656 M:      David Howells <dhowells@redhat.com>
657 M:      Marc Dionne <marc.dionne@auristor.com>
658 L:      linux-afs@lists.infradead.org
659 S:      Supported
660 W:      https://www.infradead.org/~dhowells/kafs/
661 F:      Documentation/filesystems/afs.rst
662 F:      fs/afs/
663 F:      include/trace/events/afs.h
664
665 AGPGART DRIVER
666 M:      David Airlie <airlied@linux.ie>
667 S:      Maintained
668 T:      git git://anongit.freedesktop.org/drm/drm
669 F:      drivers/char/agp/
670 F:      include/linux/agp*
671 F:      include/uapi/linux/agp*
672
673 AHA152X SCSI DRIVER
674 M:      "Juergen E. Fischer" <fischer@norbit.de>
675 L:      linux-scsi@vger.kernel.org
676 S:      Maintained
677 F:      drivers/scsi/aha152x*
678 F:      drivers/scsi/pcmcia/aha152x*
679
680 AIC7XXX / AIC79XX SCSI DRIVER
681 M:      Hannes Reinecke <hare@suse.com>
682 L:      linux-scsi@vger.kernel.org
683 S:      Maintained
684 F:      drivers/scsi/aic7xxx/
685
686 AIMSLAB FM RADIO RECEIVER DRIVER
687 M:      Hans Verkuil <hverkuil@xs4all.nl>
688 L:      linux-media@vger.kernel.org
689 S:      Maintained
690 W:      https://linuxtv.org
691 T:      git git://linuxtv.org/media_tree.git
692 F:      drivers/media/radio/radio-aimslab*
693
694 AIO
695 M:      Benjamin LaHaise <bcrl@kvack.org>
696 L:      linux-aio@kvack.org
697 S:      Supported
698 F:      fs/aio.c
699 F:      include/linux/*aio*.h
700
701 AIRSPY MEDIA DRIVER
702 M:      Antti Palosaari <crope@iki.fi>
703 L:      linux-media@vger.kernel.org
704 S:      Maintained
705 W:      https://linuxtv.org
706 W:      http://palosaari.fi/linux/
707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
708 T:      git git://linuxtv.org/anttip/media_tree.git
709 F:      drivers/media/usb/airspy/
710
711 ALACRITECH GIGABIT ETHERNET DRIVER
712 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
713 S:      Maintained
714 F:      drivers/net/ethernet/alacritech/*
715
716 ALCATEL SPEEDTOUCH USB DRIVER
717 M:      Duncan Sands <duncan.sands@free.fr>
718 L:      linux-usb@vger.kernel.org
719 S:      Maintained
720 W:      http://www.linux-usb.org/SpeedTouch/
721 F:      drivers/usb/atm/speedtch.c
722 F:      drivers/usb/atm/usbatm.c
723
724 ALCHEMY AU1XX0 MMC DRIVER
725 M:      Manuel Lauss <manuel.lauss@gmail.com>
726 S:      Maintained
727 F:      drivers/mmc/host/au1xmmc.c
728
729 ALI1563 I2C DRIVER
730 M:      Rudolf Marek <r.marek@assembler.cz>
731 L:      linux-i2c@vger.kernel.org
732 S:      Maintained
733 F:      Documentation/i2c/busses/i2c-ali1563.rst
734 F:      drivers/i2c/busses/i2c-ali1563.c
735
736 ALIENWARE WMI DRIVER
737 L:      Dell.Client.Kernel@dell.com
738 S:      Maintained
739 F:      drivers/platform/x86/dell/alienware-wmi.c
740
741 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
742 M:      Tomislav Denis <tomislav.denis@avl.com>
743 L:      linux-iio@vger.kernel.org
744 S:      Maintained
745 W:      http://www.allsensors.com/
746 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
747 F:      drivers/iio/pressure/dlhl60d.c
748
749 ALLEGRO DVT VIDEO IP CORE DRIVER
750 M:      Michael Tretter <m.tretter@pengutronix.de>
751 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
752 L:      linux-media@vger.kernel.org
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
755 F:      drivers/media/platform/allegro-dvt/
756
757 ALLWINNER A10 CSI DRIVER
758 M:      Maxime Ripard <mripard@kernel.org>
759 L:      linux-media@vger.kernel.org
760 S:      Maintained
761 T:      git git://linuxtv.org/media_tree.git
762 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
763 F:      drivers/media/platform/sunxi/sun4i-csi/
764
765 ALLWINNER CPUFREQ DRIVER
766 M:      Yangtao Li <tiny.windzz@gmail.com>
767 L:      linux-pm@vger.kernel.org
768 S:      Maintained
769 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
770 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
771
772 ALLWINNER CRYPTO DRIVERS
773 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
774 L:      linux-crypto@vger.kernel.org
775 S:      Maintained
776 F:      drivers/crypto/allwinner/
777
778 ALLWINNER HARDWARE SPINLOCK SUPPORT
779 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
780 S:      Maintained
781 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
782 F:      drivers/hwspinlock/sun6i_hwspinlock.c
783
784 ALLWINNER THERMAL DRIVER
785 M:      Vasily Khoruzhick <anarsoul@gmail.com>
786 M:      Yangtao Li <tiny.windzz@gmail.com>
787 L:      linux-pm@vger.kernel.org
788 S:      Maintained
789 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
790 F:      drivers/thermal/sun8i_thermal.c
791
792 ALLWINNER VPU DRIVER
793 M:      Maxime Ripard <mripard@kernel.org>
794 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
795 L:      linux-media@vger.kernel.org
796 S:      Maintained
797 F:      drivers/staging/media/sunxi/cedrus/
798
799 ALPHA PORT
800 M:      Richard Henderson <rth@twiddle.net>
801 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
802 M:      Matt Turner <mattst88@gmail.com>
803 L:      linux-alpha@vger.kernel.org
804 S:      Odd Fixes
805 F:      arch/alpha/
806
807 ALPS PS/2 TOUCHPAD DRIVER
808 R:      Pali Rohár <pali@kernel.org>
809 F:      drivers/input/mouse/alps.*
810
811 ALTERA I2C CONTROLLER DRIVER
812 M:      Thor Thayer <thor.thayer@linux.intel.com>
813 S:      Maintained
814 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
815 F:      drivers/i2c/busses/i2c-altera.c
816
817 ALTERA MAILBOX DRIVER
818 M:      Mun Yew Tham <mun.yew.tham@intel.com>
819 S:      Maintained
820 F:      drivers/mailbox/mailbox-altera.c
821
822 ALTERA MSGDMA IP CORE DRIVER
823 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
824 R:      Stefan Roese <sr@denx.de>
825 L:      dmaengine@vger.kernel.org
826 S:      Odd Fixes
827 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
828 F:      drivers/dma/altera-msgdma.c
829
830 ALTERA PIO DRIVER
831 M:      Mun Yew Tham <mun.yew.tham@intel.com>
832 L:      linux-gpio@vger.kernel.org
833 S:      Maintained
834 F:      drivers/gpio/gpio-altera.c
835
836 ALTERA SYSTEM MANAGER DRIVER
837 M:      Thor Thayer <thor.thayer@linux.intel.com>
838 S:      Maintained
839 F:      drivers/mfd/altera-sysmgr.c
840 F:      include/linux/mfd/altera-sysmgr.h
841
842 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
843 M:      Thor Thayer <thor.thayer@linux.intel.com>
844 S:      Maintained
845 F:      drivers/gpio/gpio-altera-a10sr.c
846 F:      drivers/mfd/altera-a10sr.c
847 F:      drivers/reset/reset-a10sr.c
848 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
849 F:      include/linux/mfd/altera-a10sr.h
850
851 ALTERA TRIPLE SPEED ETHERNET DRIVER
852 M:      Joyce Ooi <joyce.ooi@intel.com>
853 L:      netdev@vger.kernel.org
854 S:      Maintained
855 F:      drivers/net/ethernet/altera/
856
857 ALTERA UART/JTAG UART SERIAL DRIVERS
858 M:      Tobias Klauser <tklauser@distanz.ch>
859 L:      linux-serial@vger.kernel.org
860 S:      Maintained
861 F:      drivers/tty/serial/altera_jtaguart.c
862 F:      drivers/tty/serial/altera_uart.c
863 F:      include/linux/altera_jtaguart.h
864 F:      include/linux/altera_uart.h
865
866 AMAZON ANNAPURNA LABS FIC DRIVER
867 M:      Talel Shenhar <talel@amazon.com>
868 S:      Maintained
869 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
870 F:      drivers/irqchip/irq-al-fic.c
871
872 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
873 M:      Talel Shenhar <talel@amazon.com>
874 M:      Talel Shenhar <talelshenhar@gmail.com>
875 S:      Maintained
876 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
877 F:      drivers/edac/al_mc_edac.c
878
879 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
880 M:      Talel Shenhar <talel@amazon.com>
881 S:      Maintained
882 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
883 F:      drivers/thermal/thermal_mmio.c
884
885 AMAZON ETHERNET DRIVERS
886 M:      Shay Agroskin <shayagr@amazon.com>
887 M:      Arthur Kiyanovski <akiyano@amazon.com>
888 R:      David Arinzon <darinzon@amazon.com>
889 R:      Noam Dagan <ndagan@amazon.com>
890 R:      Saeed Bishara <saeedb@amazon.com>
891 L:      netdev@vger.kernel.org
892 S:      Supported
893 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
894 F:      drivers/net/ethernet/amazon/
895
896 AMAZON RDMA EFA DRIVER
897 M:      Gal Pressman <galpress@amazon.com>
898 R:      Yossi Leybovich <sleybo@amazon.com>
899 L:      linux-rdma@vger.kernel.org
900 S:      Supported
901 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
902 F:      drivers/infiniband/hw/efa/
903 F:      include/uapi/rdma/efa-abi.h
904
905 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
906 M:      Tom Lendacky <thomas.lendacky@amd.com>
907 M:      John Allen <john.allen@amd.com>
908 L:      linux-crypto@vger.kernel.org
909 S:      Supported
910 F:      drivers/crypto/ccp/
911 F:      include/linux/ccp.h
912
913 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
914 M:      Brijesh Singh <brijesh.singh@amd.com>
915 M:      Tom Lendacky <thomas.lendacky@amd.com>
916 L:      linux-crypto@vger.kernel.org
917 S:      Supported
918 F:      drivers/crypto/ccp/sev*
919 F:      include/uapi/linux/psp-sev.h
920
921 AMD DISPLAY CORE
922 M:      Harry Wentland <harry.wentland@amd.com>
923 M:      Leo Li <sunpeng.li@amd.com>
924 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
925 L:      amd-gfx@lists.freedesktop.org
926 S:      Supported
927 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
928 F:      drivers/gpu/drm/amd/display/
929
930 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
931 M:      Huang Rui <ray.huang@amd.com>
932 L:      linux-hwmon@vger.kernel.org
933 S:      Supported
934 F:      Documentation/hwmon/fam15h_power.rst
935 F:      drivers/hwmon/fam15h_power.c
936
937 AMD FCH GPIO DRIVER
938 M:      Enrico Weigelt, metux IT consult <info@metux.net>
939 L:      linux-gpio@vger.kernel.org
940 S:      Maintained
941 F:      drivers/gpio/gpio-amd-fch.c
942 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
943
944 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
945 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
946 S:      Orphan
947 F:      drivers/usb/gadget/udc/amd5536udc.*
948
949 AMD GEODE PROCESSOR/CHIPSET SUPPORT
950 M:      Andres Salomon <dilinger@queued.net>
951 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
952 S:      Supported
953 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
954 F:      arch/x86/include/asm/geode.h
955 F:      drivers/char/hw_random/geode-rng.c
956 F:      drivers/crypto/geode*
957 F:      drivers/video/fbdev/geode/
958
959 AMD IOMMU (AMD-VI)
960 M:      Joerg Roedel <joro@8bytes.org>
961 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
962 L:      iommu@lists.linux-foundation.org
963 S:      Maintained
964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
965 F:      drivers/iommu/amd/
966 F:      include/linux/amd-iommu.h
967
968 AMD KFD
969 M:      Felix Kuehling <Felix.Kuehling@amd.com>
970 L:      amd-gfx@lists.freedesktop.org
971 S:      Supported
972 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
973 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
974 F:      drivers/gpu/drm/amd/amdkfd/
975 F:      drivers/gpu/drm/amd/include/cik_structs.h
976 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
977 F:      drivers/gpu/drm/amd/include/v9_structs.h
978 F:      drivers/gpu/drm/amd/include/vi_structs.h
979 F:      include/uapi/linux/kfd_ioctl.h
980 F:      include/uapi/linux/kfd_sysfs.h
981
982 AMD SPI DRIVER
983 M:      Sanjay R Mehta <sanju.mehta@amd.com>
984 S:      Maintained
985 F:      drivers/spi/spi-amd.c
986
987 AMD MP2 I2C DRIVER
988 M:      Elie Morisse <syniurge@gmail.com>
989 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
990 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
991 L:      linux-i2c@vger.kernel.org
992 S:      Maintained
993 F:      drivers/i2c/busses/i2c-amd-mp2*
994
995 AMD PMC DRIVER
996 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
997 L:      platform-driver-x86@vger.kernel.org
998 S:      Maintained
999 F:      drivers/platform/x86/amd-pmc.*
1000
1001 AMD HSMP DRIVER
1002 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1003 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1004 L:      platform-driver-x86@vger.kernel.org
1005 S:      Maintained
1006 F:      Documentation/x86/amd_hsmp.rst
1007 F:      arch/x86/include/asm/amd_hsmp.h
1008 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1009 F:      drivers/platform/x86/amd_hsmp.c
1010
1011 AMD POWERPLAY AND SWSMU
1012 M:      Evan Quan <evan.quan@amd.com>
1013 L:      amd-gfx@lists.freedesktop.org
1014 S:      Supported
1015 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1016 F:      drivers/gpu/drm/amd/pm/
1017
1018 AMD PSTATE DRIVER
1019 M:      Huang Rui <ray.huang@amd.com>
1020 L:      linux-pm@vger.kernel.org
1021 S:      Supported
1022 F:      Documentation/admin-guide/pm/amd-pstate.rst
1023 F:      drivers/cpufreq/amd-pstate*
1024 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1025
1026 AMD PTDMA DRIVER
1027 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1028 L:      dmaengine@vger.kernel.org
1029 S:      Maintained
1030 F:      drivers/dma/ptdma/
1031
1032 AMD SEATTLE DEVICE TREE SUPPORT
1033 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1034 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1035 M:      Tom Lendacky <thomas.lendacky@amd.com>
1036 S:      Supported
1037 F:      arch/arm64/boot/dts/amd/
1038
1039 AMD XGBE DRIVER
1040 M:      Tom Lendacky <thomas.lendacky@amd.com>
1041 L:      netdev@vger.kernel.org
1042 S:      Supported
1043 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1044 F:      drivers/net/ethernet/amd/xgbe/
1045
1046 AMD SENSOR FUSION HUB DRIVER
1047 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1048 L:      linux-input@vger.kernel.org
1049 S:      Maintained
1050 F:      Documentation/hid/amd-sfh*
1051 F:      drivers/hid/amd-sfh-hid/
1052
1053 AMPHION VPU CODEC V4L2 DRIVER
1054 M:      Ming Qian <ming.qian@nxp.com>
1055 M:      Shijie Qin <shijie.qin@nxp.com>
1056 M:      Zhou Peng <eagle.zhou@nxp.com>
1057 L:      linux-media@vger.kernel.org
1058 S:      Maintained
1059 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1060 F:      drivers/media/platform/amphion/
1061
1062 AMS AS73211 DRIVER
1063 M:      Christian Eggers <ceggers@arri.de>
1064 L:      linux-iio@vger.kernel.org
1065 S:      Maintained
1066 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1067 F:      drivers/iio/light/as73211.c
1068
1069 AMT (Automatic Multicast Tunneling)
1070 M:      Taehee Yoo <ap420073@gmail.com>
1071 L:      netdev@vger.kernel.org
1072 S:      Maintained
1073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1075 F:      drivers/net/amt.c
1076
1077 ANALOG DEVICES INC AD7192 DRIVER
1078 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1079 L:      linux-iio@vger.kernel.org
1080 S:      Supported
1081 W:      https://ez.analog.com/linux-software-drivers
1082 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1083 F:      drivers/iio/adc/ad7192.c
1084
1085 ANALOG DEVICES INC AD7292 DRIVER
1086 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      https://ez.analog.com/linux-software-drivers
1090 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1091 F:      drivers/iio/adc/ad7292.c
1092
1093 ANALOG DEVICES INC AD7293 DRIVER
1094 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 S:      Supported
1097 W:      https://ez.analog.com/linux-software-drivers
1098 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1099 F:      drivers/iio/dac/ad7293.c
1100
1101 ANALOG DEVICES INC AD7768-1 DRIVER
1102 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1103 L:      linux-iio@vger.kernel.org
1104 S:      Supported
1105 W:      https://ez.analog.com/linux-software-drivers
1106 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1107 F:      drivers/iio/adc/ad7768-1.c
1108
1109 ANALOG DEVICES INC AD7780 DRIVER
1110 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1111 M:      Renato Lui Geh <renatogeh@gmail.com>
1112 L:      linux-iio@vger.kernel.org
1113 S:      Supported
1114 W:      https://ez.analog.com/linux-software-drivers
1115 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1116 F:      drivers/iio/adc/ad7780.c
1117
1118 ANALOG DEVICES INC AD74413R DRIVER
1119 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1120 L:      linux-iio@vger.kernel.org
1121 S:      Supported
1122 W:      http://ez.analog.com/community/linux-device-drivers
1123 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1124 F:      drivers/iio/addac/ad74413r.c
1125 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1126
1127 ANALOG DEVICES INC AD9389B DRIVER
1128 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1129 L:      linux-media@vger.kernel.org
1130 S:      Maintained
1131 F:      drivers/media/i2c/ad9389b*
1132
1133 ANALOG DEVICES INC ADA4250 DRIVER
1134 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1135 L:      linux-iio@vger.kernel.org
1136 S:      Supported
1137 W:      https://ez.analog.com/linux-software-drivers
1138 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1139 F:      drivers/iio/amplifiers/ada4250.c
1140
1141 ANALOG DEVICES INC ADGS1408 DRIVER
1142 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1143 S:      Supported
1144 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1145 F:      drivers/mux/adgs1408.c
1146
1147 ANALOG DEVICES INC ADIN DRIVER
1148 M:      Michael Hennerich <michael.hennerich@analog.com>
1149 L:      netdev@vger.kernel.org
1150 S:      Supported
1151 W:      https://ez.analog.com/linux-software-drivers
1152 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1153 F:      drivers/net/phy/adin.c
1154
1155 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1156 M:      Nuno Sa <nuno.sa@analog.com>
1157 L:      linux-iio@vger.kernel.org
1158 S:      Supported
1159 F:      drivers/iio/imu/adis.c
1160 F:      drivers/iio/imu/adis_buffer.c
1161 F:      drivers/iio/imu/adis_trigger.c
1162 F:      include/linux/iio/imu/adis.h
1163
1164 ANALOG DEVICES INC ADIS16460 DRIVER
1165 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1166 L:      linux-iio@vger.kernel.org
1167 S:      Supported
1168 W:      https://ez.analog.com/linux-software-drivers
1169 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1170 F:      drivers/iio/imu/adis16460.c
1171
1172 ANALOG DEVICES INC ADIS16475 DRIVER
1173 M:      Nuno Sa <nuno.sa@analog.com>
1174 L:      linux-iio@vger.kernel.org
1175 W:      https://ez.analog.com/linux-software-drivers
1176 S:      Supported
1177 F:      drivers/iio/imu/adis16475.c
1178 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1179
1180 ANALOG DEVICES INC ADM1177 DRIVER
1181 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1182 L:      linux-hwmon@vger.kernel.org
1183 S:      Supported
1184 W:      https://ez.analog.com/linux-software-drivers
1185 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1186 F:      drivers/hwmon/adm1177.c
1187
1188 ANALOG DEVICES INC ADMV1013 DRIVER
1189 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1190 L:      linux-iio@vger.kernel.org
1191 S:      Supported
1192 W:      https://ez.analog.com/linux-software-drivers
1193 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1194 F:      drivers/iio/frequency/admv1013.c
1195
1196 ANALOG DEVICES INC ADMV8818 DRIVER
1197 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1198 L:      linux-iio@vger.kernel.org
1199 S:      Supported
1200 W:      https://ez.analog.com/linux-software-drivers
1201 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1202 F:      drivers/iio/filter/admv8818.c
1203
1204 ANALOG DEVICES INC ADMV1014 DRIVER
1205 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1206 L:      linux-iio@vger.kernel.org
1207 S:      Supported
1208 W:      https://ez.analog.com/linux-software-drivers
1209 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1210 F:      drivers/iio/frequency/admv1014.c
1211
1212 ANALOG DEVICES INC ADP5061 DRIVER
1213 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1214 L:      linux-pm@vger.kernel.org
1215 S:      Supported
1216 W:      https://ez.analog.com/linux-software-drivers
1217 F:      drivers/power/supply/adp5061.c
1218
1219 ANALOG DEVICES INC ADRF6780 DRIVER
1220 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1221 L:      linux-iio@vger.kernel.org
1222 S:      Supported
1223 W:      https://ez.analog.com/linux-software-drivers
1224 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1225 F:      drivers/iio/frequency/adrf6780.c
1226
1227 ANALOG DEVICES INC ADV7180 DRIVER
1228 M:      Lars-Peter Clausen <lars@metafoo.de>
1229 L:      linux-media@vger.kernel.org
1230 S:      Supported
1231 W:      https://ez.analog.com/linux-software-drivers
1232 F:      drivers/media/i2c/adv7180.c
1233 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1234
1235 ANALOG DEVICES INC ADV748X DRIVER
1236 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1237 L:      linux-media@vger.kernel.org
1238 S:      Maintained
1239 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1240 F:      drivers/media/i2c/adv748x/*
1241
1242 ANALOG DEVICES INC ADV7511 DRIVER
1243 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1244 L:      linux-media@vger.kernel.org
1245 S:      Maintained
1246 F:      drivers/media/i2c/adv7511*
1247
1248 ANALOG DEVICES INC ADV7604 DRIVER
1249 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1250 L:      linux-media@vger.kernel.org
1251 S:      Maintained
1252 F:      drivers/media/i2c/adv7604*
1253 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1254
1255 ANALOG DEVICES INC ADV7842 DRIVER
1256 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1257 L:      linux-media@vger.kernel.org
1258 S:      Maintained
1259 F:      drivers/media/i2c/adv7842*
1260
1261 ANALOG DEVICES INC ADXRS290 DRIVER
1262 M:      Nishant Malpani <nish.malpani25@gmail.com>
1263 L:      linux-iio@vger.kernel.org
1264 S:      Supported
1265 F:      drivers/iio/gyro/adxrs290.c
1266 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1267
1268 ANALOG DEVICES INC ASOC CODEC DRIVERS
1269 M:      Lars-Peter Clausen <lars@metafoo.de>
1270 M:      Nuno Sá <nuno.sa@analog.com>
1271 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1272 S:      Supported
1273 W:      http://wiki.analog.com/
1274 W:      https://ez.analog.com/linux-software-drivers
1275 F:      sound/soc/codecs/ad1*
1276 F:      sound/soc/codecs/ad7*
1277 F:      sound/soc/codecs/adau*
1278 F:      sound/soc/codecs/adav*
1279 F:      sound/soc/codecs/sigmadsp.*
1280 F:      sound/soc/codecs/ssm*
1281
1282 ANALOG DEVICES INC DMA DRIVERS
1283 M:      Lars-Peter Clausen <lars@metafoo.de>
1284 S:      Supported
1285 W:      https://ez.analog.com/linux-software-drivers
1286 F:      drivers/dma/dma-axi-dmac.c
1287
1288 ANALOG DEVICES INC IIO DRIVERS
1289 M:      Lars-Peter Clausen <lars@metafoo.de>
1290 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1291 S:      Supported
1292 W:      http://wiki.analog.com/
1293 W:      https://ez.analog.com/linux-software-drivers
1294 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1295 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1296 F:      Documentation/devicetree/bindings/iio/*/adi,*
1297 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1298 F:      drivers/iio/*/ad*
1299 F:      drivers/iio/adc/ltc249*
1300 F:      drivers/iio/amplifiers/hmc425a.c
1301 F:      drivers/staging/iio/*/ad*
1302 X:      drivers/iio/*/adjd*
1303
1304 ANALOGBITS PLL LIBRARIES
1305 M:      Paul Walmsley <paul.walmsley@sifive.com>
1306 S:      Supported
1307 F:      drivers/clk/analogbits/*
1308 F:      include/linux/clk/analogbits*
1309
1310 ANDROID CONFIG FRAGMENTS
1311 M:      Rob Herring <robh@kernel.org>
1312 S:      Supported
1313 F:      kernel/configs/android*
1314
1315 ANDROID DRIVERS
1316 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1317 M:      Arve Hjønnevåg <arve@android.com>
1318 M:      Todd Kjos <tkjos@android.com>
1319 M:      Martijn Coenen <maco@android.com>
1320 M:      Joel Fernandes <joel@joelfernandes.org>
1321 M:      Christian Brauner <christian@brauner.io>
1322 M:      Hridya Valsaraju <hridya@google.com>
1323 M:      Suren Baghdasaryan <surenb@google.com>
1324 L:      linux-kernel@vger.kernel.org
1325 S:      Supported
1326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1327 F:      drivers/android/
1328
1329 ANDROID GOLDFISH PIC DRIVER
1330 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1331 S:      Supported
1332 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1333 F:      drivers/irqchip/irq-goldfish-pic.c
1334
1335 ANDROID GOLDFISH RTC DRIVER
1336 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1337 S:      Supported
1338 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1339 F:      drivers/rtc/rtc-goldfish.c
1340
1341 AOA (Apple Onboard Audio) ALSA DRIVER
1342 M:      Johannes Berg <johannes@sipsolutions.net>
1343 L:      linuxppc-dev@lists.ozlabs.org
1344 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1345 S:      Maintained
1346 F:      sound/aoa/
1347
1348 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1349 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1350 L:      linux-iio@vger.kernel.org
1351 S:      Maintained
1352 F:      drivers/iio/adc/stx104.c
1353
1354 APM DRIVER
1355 M:      Jiri Kosina <jikos@kernel.org>
1356 S:      Odd fixes
1357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1358 F:      arch/x86/kernel/apm_32.c
1359 F:      drivers/char/apm-emulation.c
1360 F:      include/linux/apm_bios.h
1361 F:      include/uapi/linux/apm_bios.h
1362
1363 APPARMOR SECURITY MODULE
1364 M:      John Johansen <john.johansen@canonical.com>
1365 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1366 S:      Supported
1367 W:      wiki.apparmor.net
1368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1369 F:      Documentation/admin-guide/LSM/apparmor.rst
1370 F:      security/apparmor/
1371
1372 APPLE BCM5974 MULTITOUCH DRIVER
1373 M:      Henrik Rydberg <rydberg@bitmath.org>
1374 L:      linux-input@vger.kernel.org
1375 S:      Odd fixes
1376 F:      drivers/input/mouse/bcm5974.c
1377
1378 APPLE DART IOMMU DRIVER
1379 M:      Sven Peter <sven@svenpeter.dev>
1380 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1381 L:      iommu@lists.linux-foundation.org
1382 S:      Maintained
1383 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1384 F:      drivers/iommu/apple-dart.c
1385
1386 APPLE PCIE CONTROLLER DRIVER
1387 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1388 M:      Marc Zyngier <maz@kernel.org>
1389 L:      linux-pci@vger.kernel.org
1390 S:      Maintained
1391 F:      drivers/pci/controller/pcie-apple.c
1392
1393 APPLE SMC DRIVER
1394 M:      Henrik Rydberg <rydberg@bitmath.org>
1395 L:      linux-hwmon@vger.kernel.org
1396 S:      Odd fixes
1397 F:      drivers/hwmon/applesmc.c
1398
1399 APPLETALK NETWORK LAYER
1400 L:      netdev@vger.kernel.org
1401 S:      Odd fixes
1402 F:      drivers/net/appletalk/
1403 F:      include/linux/atalk.h
1404 F:      include/uapi/linux/atalk.h
1405 F:      net/appletalk/
1406
1407 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1408 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1409 S:      Supported
1410 F:      arch/arm64/boot/dts/apm/
1411
1412 APPLIED MICRO (APM) X-GENE SOC EDAC
1413 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1414 S:      Supported
1415 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1416 F:      drivers/edac/xgene_edac.c
1417
1418 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1419 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1420 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1421 S:      Supported
1422 F:      drivers/net/ethernet/apm/xgene-v2/
1423
1424 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1425 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1426 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1427 M:      Quan Nguyen <quan@os.amperecomputing.com>
1428 S:      Supported
1429 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1430 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1431 F:      drivers/net/ethernet/apm/xgene/
1432 F:      drivers/net/mdio/mdio-xgene.c
1433
1434 APPLIED MICRO (APM) X-GENE SOC PMU
1435 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1436 S:      Supported
1437 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1438 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1439 F:      drivers/perf/xgene_pmu.c
1440
1441 APTINA CAMERA SENSOR PLL
1442 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1443 L:      linux-media@vger.kernel.org
1444 S:      Maintained
1445 F:      drivers/media/i2c/aptina-pll.*
1446
1447 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1448 M:      Aleksa Savic <savicaleksa83@gmail.com>
1449 M:      Jack Doan <me@jackdoan.com>
1450 L:      linux-hwmon@vger.kernel.org
1451 S:      Maintained
1452 F:      Documentation/hwmon/aquacomputer_d5next.rst
1453 F:      drivers/hwmon/aquacomputer_d5next.c
1454
1455 AQUANTIA ETHERNET DRIVER (atlantic)
1456 M:      Igor Russkikh <irusskikh@marvell.com>
1457 L:      netdev@vger.kernel.org
1458 S:      Supported
1459 W:      https://www.marvell.com/
1460 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1461 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1462 F:      drivers/net/ethernet/aquantia/atlantic/
1463
1464 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1465 M:      Egor Pomozov <epomozov@marvell.com>
1466 L:      netdev@vger.kernel.org
1467 S:      Supported
1468 W:      http://www.aquantia.com
1469 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1470
1471 ARASAN NAND CONTROLLER DRIVER
1472 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1473 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1474 L:      linux-mtd@lists.infradead.org
1475 S:      Maintained
1476 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1477 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1478
1479 ARC FRAMEBUFFER DRIVER
1480 M:      Jaya Kumar <jayalk@intworks.biz>
1481 S:      Maintained
1482 F:      drivers/video/fbdev/arcfb.c
1483 F:      drivers/video/fbdev/core/fb_defio.c
1484
1485 ARC PGU DRM DRIVER
1486 M:      Alexey Brodkin <abrodkin@synopsys.com>
1487 S:      Supported
1488 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1489 F:      drivers/gpu/drm/tiny/arcpgu.c
1490
1491 ARCNET NETWORK LAYER
1492 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1493 L:      netdev@vger.kernel.org
1494 S:      Maintained
1495 F:      drivers/net/arcnet/
1496 F:      include/uapi/linux/if_arcnet.h
1497
1498 ARM ARCHITECTED TIMER DRIVER
1499 M:      Mark Rutland <mark.rutland@arm.com>
1500 M:      Marc Zyngier <maz@kernel.org>
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 F:      arch/arm/include/asm/arch_timer.h
1504 F:      arch/arm64/include/asm/arch_timer.h
1505 F:      drivers/clocksource/arm_arch_timer.c
1506
1507 ARM HDLCD DRM DRIVER
1508 M:      Liviu Dudau <liviu.dudau@arm.com>
1509 S:      Supported
1510 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1511 F:      drivers/gpu/drm/arm/hdlcd_*
1512
1513 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1514 M:      Linus Walleij <linus.walleij@linaro.org>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1518 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1519 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1520 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1521 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1522 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1523 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1524 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1525 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1526 F:      arch/arm/boot/dts/arm-realview-*
1527 F:      arch/arm/boot/dts/integrator*
1528 F:      arch/arm/boot/dts/versatile*
1529 F:      arch/arm/mach-integrator/
1530 F:      arch/arm/mach-realview/
1531 F:      arch/arm/mach-versatile/
1532 F:      arch/arm/plat-versatile/
1533 F:      drivers/bus/arm-integrator-lm.c
1534 F:      drivers/clk/versatile/
1535 F:      drivers/i2c/busses/i2c-versatile.c
1536 F:      drivers/irqchip/irq-versatile-fpga.c
1537 F:      drivers/mtd/maps/physmap-versatile.*
1538 F:      drivers/power/reset/arm-versatile-reboot.c
1539 F:      drivers/soc/versatile/
1540
1541 ARM KOMEDA DRM-KMS DRIVER
1542 M:      James (Qian) Wang <james.qian.wang@arm.com>
1543 M:      Liviu Dudau <liviu.dudau@arm.com>
1544 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1545 L:      Mali DP Maintainers <malidp@foss.arm.com>
1546 S:      Supported
1547 T:      git git://anongit.freedesktop.org/drm/drm-misc
1548 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1549 F:      Documentation/gpu/komeda-kms.rst
1550 F:      drivers/gpu/drm/arm/display/include/
1551 F:      drivers/gpu/drm/arm/display/komeda/
1552
1553 ARM MALI PANFROST DRM DRIVER
1554 M:      Rob Herring <robh@kernel.org>
1555 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1556 R:      Steven Price <steven.price@arm.com>
1557 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1558 L:      dri-devel@lists.freedesktop.org
1559 S:      Supported
1560 T:      git git://anongit.freedesktop.org/drm/drm-misc
1561 F:      drivers/gpu/drm/panfrost/
1562 F:      include/uapi/drm/panfrost_drm.h
1563
1564 ARM MALI-DP DRM DRIVER
1565 M:      Liviu Dudau <liviu.dudau@arm.com>
1566 M:      Brian Starkey <brian.starkey@arm.com>
1567 L:      Mali DP Maintainers <malidp@foss.arm.com>
1568 S:      Supported
1569 T:      git git://anongit.freedesktop.org/drm/drm-misc
1570 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1571 F:      Documentation/gpu/afbc.rst
1572 F:      drivers/gpu/drm/arm/
1573
1574 ARM MFM AND FLOPPY DRIVERS
1575 M:      Ian Molton <spyro@f2s.com>
1576 S:      Maintained
1577 F:      arch/arm/include/asm/floppy.h
1578 F:      arch/arm/mach-rpc/floppydma.S
1579
1580 ARM PMU PROFILING AND DEBUGGING
1581 M:      Will Deacon <will@kernel.org>
1582 M:      Mark Rutland <mark.rutland@arm.com>
1583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1584 S:      Maintained
1585 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1586 F:      Documentation/devicetree/bindings/perf/
1587 F:      arch/arm*/include/asm/hw_breakpoint.h
1588 F:      arch/arm*/include/asm/perf_event.h
1589 F:      arch/arm*/kernel/hw_breakpoint.c
1590 F:      arch/arm*/kernel/perf_*
1591 F:      drivers/perf/
1592 F:      include/linux/perf/arm_pmu.h
1593
1594 ARM PORT
1595 M:      Russell King <linux@armlinux.org.uk>
1596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1597 S:      Odd Fixes
1598 W:      http://www.armlinux.org.uk/
1599 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1600 F:      arch/arm/
1601 X:      arch/arm/boot/dts/
1602
1603 ARM PRIMECELL AACI PL041 DRIVER
1604 M:      Russell King <linux@armlinux.org.uk>
1605 S:      Odd Fixes
1606 F:      sound/arm/aaci.*
1607
1608 ARM PRIMECELL BUS SUPPORT
1609 M:      Russell King <linux@armlinux.org.uk>
1610 S:      Odd Fixes
1611 F:      drivers/amba/
1612 F:      include/linux/amba/bus.h
1613
1614 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1615 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1616 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1617 L:      linux-mtd@lists.infradead.org
1618 S:      Maintained
1619 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1620 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1621
1622 ARM PRIMECELL PL35X SMC DRIVER
1623 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1624 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626 S:      Maintained
1627 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1628 F:      drivers/memory/pl353-smc.c
1629
1630 ARM PRIMECELL CLCD PL110 DRIVER
1631 M:      Russell King <linux@armlinux.org.uk>
1632 S:      Odd Fixes
1633 F:      drivers/video/fbdev/amba-clcd.*
1634
1635 ARM PRIMECELL KMI PL050 DRIVER
1636 M:      Russell King <linux@armlinux.org.uk>
1637 S:      Odd Fixes
1638 F:      drivers/input/serio/ambakmi.*
1639 F:      include/linux/amba/kmi.h
1640
1641 ARM PRIMECELL MMCI PL180/1 DRIVER
1642 M:      Russell King <linux@armlinux.org.uk>
1643 S:      Odd Fixes
1644 F:      drivers/mmc/host/mmci.*
1645 F:      include/linux/amba/mmci.h
1646
1647 ARM PRIMECELL SSP PL022 SPI DRIVER
1648 M:      Linus Walleij <linus.walleij@linaro.org>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 S:      Maintained
1651 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1652 F:      drivers/spi/spi-pl022.c
1653
1654 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1655 M:      Russell King <linux@armlinux.org.uk>
1656 S:      Odd Fixes
1657 F:      drivers/tty/serial/amba-pl01*.c
1658 F:      include/linux/amba/serial.h
1659
1660 ARM PRIMECELL VIC PL190/PL192 DRIVER
1661 M:      Linus Walleij <linus.walleij@linaro.org>
1662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1663 S:      Maintained
1664 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1665 F:      drivers/irqchip/irq-vic.c
1666
1667 ARM SMC WATCHDOG DRIVER
1668 M:      Julius Werner <jwerner@chromium.org>
1669 R:      Evan Benn <evanbenn@chromium.org>
1670 S:      Maintained
1671 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1672 F:      drivers/watchdog/arm_smc_wdt.c
1673
1674 ARM SMMU DRIVERS
1675 M:      Will Deacon <will@kernel.org>
1676 R:      Robin Murphy <robin.murphy@arm.com>
1677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1678 S:      Maintained
1679 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1680 F:      drivers/iommu/arm/
1681 F:      drivers/iommu/io-pgtable-arm*
1682
1683 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1684 M:      Arnd Bergmann <arnd@arndb.de>
1685 M:      Olof Johansson <olof@lixom.net>
1686 M:      soc@kernel.org
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S:      Maintained
1689 C:      irc://irc.libera.chat/armlinux
1690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1691 F:      arch/arm/boot/dts/Makefile
1692 F:      arch/arm64/boot/dts/Makefile
1693
1694 ARM SUB-ARCHITECTURES
1695 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1696 S:      Maintained
1697 C:      irc://irc.libera.chat/armlinux
1698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1699 F:      arch/arm/mach-*/
1700 F:      arch/arm/plat-*/
1701
1702 ARM/ACTIONS SEMI ARCHITECTURE
1703 M:      Andreas Färber <afaerber@suse.de>
1704 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1705 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1706 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      Documentation/devicetree/bindings/arm/actions.yaml
1709 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1710 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1711 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1712 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1713 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1714 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1715 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1716 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1717 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1718 F:      arch/arm/boot/dts/owl-*
1719 F:      arch/arm/mach-actions/
1720 F:      arch/arm64/boot/dts/actions/
1721 F:      drivers/clk/actions/
1722 F:      drivers/clocksource/timer-owl*
1723 F:      drivers/dma/owl-dma.c
1724 F:      drivers/i2c/busses/i2c-owl.c
1725 F:      drivers/irqchip/irq-owl-sirq.c
1726 F:      drivers/mmc/host/owl-mmc.c
1727 F:      drivers/net/ethernet/actions/
1728 F:      drivers/pinctrl/actions/*
1729 F:      drivers/soc/actions/
1730 F:      include/dt-bindings/power/owl-*
1731 F:      include/dt-bindings/reset/actions,*
1732 F:      include/linux/soc/actions/
1733 N:      owl
1734
1735 ARM/ADS SPHERE MACHINE SUPPORT
1736 M:      Lennert Buytenhek <kernel@wantstofly.org>
1737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738 S:      Maintained
1739
1740 ARM/AFEB9260 MACHINE SUPPORT
1741 M:      Sergey Lapin <slapin@ossfans.org>
1742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 S:      Maintained
1744
1745 ARM/AJECO 1ARM MACHINE SUPPORT
1746 M:      Lennert Buytenhek <kernel@wantstofly.org>
1747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1748 S:      Maintained
1749
1750 ARM/Allwinner SoC Clock Support
1751 M:      Emilio López <emilio@elopez.com.ar>
1752 S:      Maintained
1753 F:      drivers/clk/sunxi/
1754
1755 ARM/Allwinner sunXi SoC support
1756 M:      Chen-Yu Tsai <wens@csie.org>
1757 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1758 M:      Samuel Holland <samuel@sholland.org>
1759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1760 S:      Maintained
1761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1762 L:      linux-sunxi@lists.linux.dev
1763 F:      arch/arm/mach-sunxi/
1764 F:      arch/arm64/boot/dts/allwinner/
1765 F:      drivers/clk/sunxi-ng/
1766 F:      drivers/pinctrl/sunxi/
1767 F:      drivers/soc/sunxi/
1768 N:      allwinner
1769 N:      sun[x456789]i
1770 N:      sun50i
1771
1772 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1773 M:      Neil Armstrong <narmstrong@baylibre.com>
1774 M:      Jerome Brunet <jbrunet@baylibre.com>
1775 L:      linux-amlogic@lists.infradead.org
1776 S:      Maintained
1777 F:      Documentation/devicetree/bindings/clock/amlogic*
1778 F:      drivers/clk/meson/
1779 F:      include/dt-bindings/clock/gxbb*
1780 F:      include/dt-bindings/clock/meson*
1781
1782 ARM/Amlogic Meson SoC Crypto Drivers
1783 M:      Corentin Labbe <clabbe@baylibre.com>
1784 L:      linux-crypto@vger.kernel.org
1785 L:      linux-amlogic@lists.infradead.org
1786 S:      Maintained
1787 F:      Documentation/devicetree/bindings/crypto/amlogic*
1788 F:      drivers/crypto/amlogic/
1789
1790 ARM/Amlogic Meson SoC Sound Drivers
1791 M:      Jerome Brunet <jbrunet@baylibre.com>
1792 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1793 S:      Maintained
1794 F:      Documentation/devicetree/bindings/sound/amlogic*
1795 F:      sound/soc/meson/
1796
1797 ARM/Amlogic Meson SoC support
1798 M:      Neil Armstrong <narmstrong@baylibre.com>
1799 M:      Kevin Hilman <khilman@baylibre.com>
1800 R:      Jerome Brunet <jbrunet@baylibre.com>
1801 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 L:      linux-amlogic@lists.infradead.org
1804 S:      Maintained
1805 W:      http://linux-meson.com/
1806 F:      arch/arm/boot/dts/meson*
1807 F:      arch/arm/mach-meson/
1808 F:      arch/arm64/boot/dts/amlogic/
1809 F:      drivers/mmc/host/meson*
1810 F:      drivers/pinctrl/meson/
1811 F:      drivers/rtc/rtc-meson*
1812 F:      drivers/soc/amlogic/
1813 N:      meson
1814
1815 ARM/Annapurna Labs ALPINE ARCHITECTURE
1816 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1817 M:      Antoine Tenart <atenart@kernel.org>
1818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1819 S:      Maintained
1820 F:      arch/arm/boot/dts/alpine*
1821 F:      arch/arm/mach-alpine/
1822 F:      arch/arm64/boot/dts/amazon/
1823 F:      drivers/*/*alpine*
1824
1825 ARM/APPLE MACHINE SUPPORT
1826 M:      Hector Martin <marcan@marcan.st>
1827 M:      Sven Peter <sven@svenpeter.dev>
1828 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1830 S:      Maintained
1831 W:      https://asahilinux.org
1832 B:      https://github.com/AsahiLinux/linux/issues
1833 C:      irc://irc.oftc.net/asahi-dev
1834 T:      git https://github.com/AsahiLinux/linux.git
1835 F:      Documentation/devicetree/bindings/arm/apple.yaml
1836 F:      Documentation/devicetree/bindings/arm/apple/*
1837 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1838 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1839 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1840 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1841 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1842 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1843 F:      Documentation/devicetree/bindings/power/apple*
1844 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1845 F:      arch/arm64/boot/dts/apple/
1846 F:      drivers/clk/clk-apple-nco.c
1847 F:      drivers/i2c/busses/i2c-pasemi-core.c
1848 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1849 F:      drivers/irqchip/irq-apple-aic.c
1850 F:      drivers/mailbox/apple-mailbox.c
1851 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1852 F:      drivers/soc/apple/*
1853 F:      drivers/watchdog/apple_wdt.c
1854 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1855 F:      include/dt-bindings/pinctrl/apple.h
1856 F:      include/linux/apple-mailbox.h
1857
1858 ARM/ARTPEC MACHINE SUPPORT
1859 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1860 M:      Lars Persson <lars.persson@axis.com>
1861 L:      linux-arm-kernel@axis.com
1862 S:      Maintained
1863 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1864 F:      arch/arm/boot/dts/artpec6*
1865 F:      arch/arm/mach-artpec
1866 F:      drivers/clk/axis
1867 F:      drivers/crypto/axis
1868 F:      drivers/mmc/host/usdhi6rol0.c
1869 F:      drivers/pinctrl/pinctrl-artpec*
1870
1871 ARM/ASPEED I2C DRIVER
1872 M:      Brendan Higgins <brendanhiggins@google.com>
1873 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1874 R:      Joel Stanley <joel@jms.id.au>
1875 L:      linux-i2c@vger.kernel.org
1876 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1877 S:      Maintained
1878 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1879 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1880 F:      drivers/i2c/busses/i2c-aspeed.c
1881 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1882
1883 ARM/ASPEED MACHINE SUPPORT
1884 M:      Joel Stanley <joel@jms.id.au>
1885 R:      Andrew Jeffery <andrew@aj.id.au>
1886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1887 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1888 S:      Supported
1889 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1891 F:      arch/arm/boot/dts/aspeed-*
1892 F:      arch/arm/mach-aspeed/
1893 N:      aspeed
1894
1895 ARM/BITMAIN ARCHITECTURE
1896 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1898 S:      Maintained
1899 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1900 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1901 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1902 F:      arch/arm64/boot/dts/bitmain/
1903 F:      drivers/clk/clk-bm1880.c
1904 F:      drivers/pinctrl/pinctrl-bm1880.c
1905
1906 ARM/CALXEDA HIGHBANK ARCHITECTURE
1907 M:      Andre Przywara <andre.przywara@arm.com>
1908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1909 S:      Maintained
1910 F:      arch/arm/boot/dts/ecx-*.dts*
1911 F:      arch/arm/boot/dts/highbank.dts
1912 F:      arch/arm/mach-highbank/
1913
1914 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1915 M:      Krzysztof Halasa <khalasa@piap.pl>
1916 S:      Maintained
1917 F:      arch/arm/mach-cns3xxx/
1918
1919 ARM/CAVIUM THUNDER NETWORK DRIVER
1920 M:      Sunil Goutham <sgoutham@marvell.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Supported
1923 F:      drivers/net/ethernet/cavium/thunder/
1924
1925 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1926 M:      Lukasz Majewski <lukma@denx.de>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929 F:      arch/arm/mach-ep93xx/ts72xx.c
1930
1931 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1932 M:      Alexander Shiyan <shc_work@mail.ru>
1933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1934 S:      Odd Fixes
1935 N:      clps711x
1936
1937 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1938 M:      Lennert Buytenhek <kernel@wantstofly.org>
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S:      Maintained
1941
1942 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1943 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1944 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 S:      Maintained
1947 F:      arch/arm/mach-ep93xx/
1948 F:      arch/arm/mach-ep93xx/include/mach/
1949
1950 ARM/CLKDEV SUPPORT
1951 M:      Russell King <linux@armlinux.org.uk>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Maintained
1954 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1955 F:      drivers/clk/clkdev.c
1956
1957 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1958 M:      Baruch Siach <baruch@tkos.co.il>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S:      Maintained
1961 F:      arch/arm/boot/dts/cx92755*
1962 N:      digicolor
1963
1964 ARM/CONTEC MICRO9 MACHINE SUPPORT
1965 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1966 S:      Maintained
1967 F:      arch/arm/mach-ep93xx/micro9.c
1968
1969 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1970 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1971 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1972 R:      Mike Leach <mike.leach@linaro.org>
1973 R:      Leo Yan <leo.yan@linaro.org>
1974 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1976 S:      Maintained
1977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1978 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1979 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1980 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1981 F:      Documentation/devicetree/bindings/arm/coresight.txt
1982 F:      Documentation/devicetree/bindings/arm/ete.yaml
1983 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1984 F:      Documentation/trace/coresight/*
1985 F:      drivers/hwtracing/coresight/*
1986 F:      include/dt-bindings/arm/coresight-cti-dt.h
1987 F:      include/linux/coresight*
1988 F:      samples/coresight/*
1989 F:      tools/perf/arch/arm/util/auxtrace.c
1990 F:      tools/perf/arch/arm/util/cs-etm.c
1991 F:      tools/perf/arch/arm/util/cs-etm.h
1992 F:      tools/perf/arch/arm/util/pmu.c
1993 F:      tools/perf/util/cs-etm-decoder/*
1994 F:      tools/perf/util/cs-etm.*
1995
1996 ARM/CORGI MACHINE SUPPORT
1997 M:      Richard Purdie <rpurdie@rpsys.net>
1998 S:      Maintained
1999
2000 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2001 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2002 M:      Linus Walleij <linus.walleij@linaro.org>
2003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2004 S:      Maintained
2005 T:      git git://github.com/ulli-kroll/linux.git
2006 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2007 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
2008 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2009 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2010 F:      arch/arm/boot/dts/gemini*
2011 F:      arch/arm/mach-gemini/
2012 F:      drivers/crypto/gemini/
2013 F:      drivers/net/ethernet/cortina/
2014 F:      drivers/pinctrl/pinctrl-gemini.c
2015 F:      drivers/rtc/rtc-ftrtc010.c
2016
2017 ARM/CZ.NIC TURRIS SUPPORT
2018 M:      Marek Behún <kabel@kernel.org>
2019 S:      Maintained
2020 W:      https://www.turris.cz/
2021 F:      Documentation/ABI/testing/debugfs-moxtet
2022 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2023 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2024 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2025 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2026 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2027 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2028 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2029 F:      drivers/bus/moxtet.c
2030 F:      drivers/firmware/turris-mox-rwtm.c
2031 F:      drivers/leds/leds-turris-omnia.c
2032 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2033 F:      drivers/gpio/gpio-moxtet.c
2034 F:      drivers/watchdog/armada_37xx_wdt.c
2035 F:      include/dt-bindings/bus/moxtet.h
2036 F:      include/linux/armada-37xx-rwtm-mailbox.h
2037 F:      include/linux/moxtet.h
2038
2039 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2040 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 S:      Maintained
2043 F:      arch/arm/mach-pxa/ezx.c
2044
2045 ARM/FARADAY FA526 PORT
2046 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2048 S:      Maintained
2049 T:      git git://git.berlios.de/gemini-board
2050 F:      arch/arm/mm/*-fa*
2051
2052 ARM/FOOTBRIDGE ARCHITECTURE
2053 M:      Russell King <linux@armlinux.org.uk>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 W:      http://www.armlinux.org.uk/
2057 F:      arch/arm/include/asm/hardware/dec21285.h
2058 F:      arch/arm/mach-footbridge/
2059
2060 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2061 M:      Shawn Guo <shawnguo@kernel.org>
2062 M:      Sascha Hauer <s.hauer@pengutronix.de>
2063 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2064 R:      Fabio Estevam <festevam@gmail.com>
2065 R:      NXP Linux Team <linux-imx@nxp.com>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 S:      Maintained
2068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2069 X:      drivers/media/i2c/
2070 N:      imx
2071 N:      mxs
2072
2073 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2074 M:      Shawn Guo <shawnguo@kernel.org>
2075 M:      Li Yang <leoyang.li@nxp.com>
2076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2077 S:      Maintained
2078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2079 F:      arch/arm/boot/dts/ls1021a*
2080 F:      arch/arm64/boot/dts/freescale/fsl-*
2081 F:      arch/arm64/boot/dts/freescale/qoriq-*
2082
2083 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2084 M:      Shawn Guo <shawnguo@kernel.org>
2085 M:      Sascha Hauer <s.hauer@pengutronix.de>
2086 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2087 R:      Stefan Agner <stefan@agner.ch>
2088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2089 S:      Maintained
2090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2091 F:      arch/arm/boot/dts/vf*
2092 F:      arch/arm/mach-imx/*vf610*
2093
2094 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2095 M:      Lennert Buytenhek <kernel@wantstofly.org>
2096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 S:      Maintained
2098
2099 ARM/GUMSTIX MACHINE SUPPORT
2100 M:      Steve Sakoman <sakoman@gmail.com>
2101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 S:      Maintained
2103
2104 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2105 M:      Philipp Zabel <philipp.zabel@gmail.com>
2106 M:      Paul Parsons <lost.distance@yahoo.com>
2107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2108 S:      Maintained
2109 F:      arch/arm/mach-pxa/hx4700.c
2110 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2111 F:      sound/soc/pxa/hx4700.c
2112
2113 ARM/HISILICON SOC SUPPORT
2114 M:      Wei Xu <xuwei5@hisilicon.com>
2115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2116 S:      Supported
2117 W:      http://www.hisilicon.com
2118 T:      git git://github.com/hisilicon/linux-hisi.git
2119 F:      arch/arm/boot/dts/hi3*
2120 F:      arch/arm/boot/dts/hip*
2121 F:      arch/arm/boot/dts/hisi*
2122 F:      arch/arm/mach-hisi/
2123 F:      arch/arm64/boot/dts/hisilicon/
2124
2125 ARM/HP JORNADA 7XX MACHINE SUPPORT
2126 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2127 S:      Maintained
2128 W:      www.jlime.com
2129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2130 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2131 F:      arch/arm/mach-sa1100/jornada720.c
2132
2133 ARM/IGEP MACHINE SUPPORT
2134 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2135 M:      Javier Martinez Canillas <javier@dowhile0.org>
2136 L:      linux-omap@vger.kernel.org
2137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138 S:      Maintained
2139 F:      arch/arm/boot/dts/omap3-igep*
2140
2141 ARM/INCOME PXA270 SUPPORT
2142 M:      Marek Vasut <marek.vasut@gmail.com>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Maintained
2145 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2146
2147 ARM/INTEL IOP32X ARM ARCHITECTURE
2148 M:      Lennert Buytenhek <kernel@wantstofly.org>
2149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2150 S:      Maintained
2151
2152 ARM/INTEL IQ81342EX MACHINE SUPPORT
2153 M:      Lennert Buytenhek <kernel@wantstofly.org>
2154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2155 S:      Maintained
2156
2157 ARM/INTEL IXDP2850 MACHINE SUPPORT
2158 M:      Lennert Buytenhek <kernel@wantstofly.org>
2159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2160 S:      Maintained
2161
2162 ARM/INTEL IXP4XX ARM ARCHITECTURE
2163 M:      Linus Walleij <linusw@kernel.org>
2164 M:      Imre Kaloz <kaloz@openwrt.org>
2165 M:      Krzysztof Halasa <khalasa@piap.pl>
2166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2167 S:      Maintained
2168 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2169 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2170 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2171 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2172 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2173 F:      arch/arm/mach-ixp4xx/
2174 F:      drivers/bus/intel-ixp4xx-eb.c
2175 F:      drivers/clocksource/timer-ixp4xx.c
2176 F:      drivers/crypto/ixp4xx_crypto.c
2177 F:      drivers/gpio/gpio-ixp4xx.c
2178 F:      drivers/irqchip/irq-ixp4xx.c
2179 F:      include/linux/irqchip/irq-ixp4xx.h
2180 F:      include/linux/platform_data/timer-ixp4xx.h
2181
2182 ARM/INTEL KEEMBAY ARCHITECTURE
2183 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2184 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2185 S:      Maintained
2186 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2187 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2188 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2189
2190 ARM/INTEL XSC3 (MANZANO) ARM CORE
2191 M:      Lennert Buytenhek <kernel@wantstofly.org>
2192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2193 S:      Maintained
2194
2195 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2196 M:      Lennert Buytenhek <kernel@wantstofly.org>
2197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2198 S:      Maintained
2199
2200 ARM/LG1K ARCHITECTURE
2201 M:      Chanho Min <chanho.min@lge.com>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 S:      Maintained
2204 F:      arch/arm64/boot/dts/lg/
2205
2206 ARM/LOGICPD PXA270 MACHINE SUPPORT
2207 M:      Lennert Buytenhek <kernel@wantstofly.org>
2208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2209 S:      Maintained
2210
2211 ARM/LPC18XX ARCHITECTURE
2212 M:      Vladimir Zapolskiy <vz@mleia.com>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 S:      Maintained
2215 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2216 F:      arch/arm/boot/dts/lpc43*
2217 F:      drivers/i2c/busses/i2c-lpc2k.c
2218 F:      drivers/memory/pl172.c
2219 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2220 F:      drivers/rtc/rtc-lpc24xx.c
2221 N:      lpc18xx
2222
2223 ARM/LPC32XX SOC SUPPORT
2224 M:      Vladimir Zapolskiy <vz@mleia.com>
2225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2226 S:      Maintained
2227 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2228 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2229 F:      arch/arm/boot/dts/lpc32*
2230 F:      arch/arm/mach-lpc32xx/
2231 F:      drivers/i2c/busses/i2c-pnx.c
2232 F:      drivers/net/ethernet/nxp/lpc_eth.c
2233 F:      drivers/usb/host/ohci-nxp.c
2234 F:      drivers/watchdog/pnx4008_wdt.c
2235 N:      lpc32xx
2236
2237 ARM/MAGICIAN MACHINE SUPPORT
2238 M:      Philipp Zabel <philipp.zabel@gmail.com>
2239 S:      Maintained
2240
2241 ARM/Marvell Dove/MV78xx0/Orion SOC support
2242 M:      Andrew Lunn <andrew@lunn.ch>
2243 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2244 M:      Gregory Clement <gregory.clement@bootlin.com>
2245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2246 S:      Maintained
2247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2248 F:      Documentation/devicetree/bindings/soc/dove/
2249 F:      arch/arm/boot/dts/dove*
2250 F:      arch/arm/boot/dts/orion5x*
2251 F:      arch/arm/mach-dove/
2252 F:      arch/arm/mach-mv78xx0/
2253 F:      arch/arm/mach-orion5x/
2254 F:      arch/arm/plat-orion/
2255 F:      drivers/soc/dove/
2256
2257 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2258 M:      Andrew Lunn <andrew@lunn.ch>
2259 M:      Gregory Clement <gregory.clement@bootlin.com>
2260 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2262 S:      Maintained
2263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2264 F:      arch/arm/boot/dts/armada*
2265 F:      arch/arm/boot/dts/kirkwood*
2266 F:      arch/arm/configs/mvebu_*_defconfig
2267 F:      arch/arm/mach-mvebu/
2268 F:      arch/arm64/boot/dts/marvell/armada*
2269 F:      arch/arm64/boot/dts/marvell/cn913*
2270 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2271 F:      drivers/cpufreq/armada-8k-cpufreq.c
2272 F:      drivers/cpufreq/mvebu-cpufreq.c
2273 F:      drivers/irqchip/irq-armada-370-xp.c
2274 F:      drivers/irqchip/irq-mvebu-*
2275 F:      drivers/pinctrl/mvebu/
2276 F:      drivers/rtc/rtc-armada38x.c
2277
2278 ARM/Mediatek RTC DRIVER
2279 M:      Eddie Huang <eddie.huang@mediatek.com>
2280 M:      Sean Wang <sean.wang@mediatek.com>
2281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2282 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2283 S:      Maintained
2284 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2285 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2286 F:      drivers/rtc/rtc-mt2712.c
2287 F:      drivers/rtc/rtc-mt6397.c
2288 F:      drivers/rtc/rtc-mt7622.c
2289
2290 ARM/Mediatek SoC support
2291 M:      Matthias Brugger <matthias.bgg@gmail.com>
2292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2293 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2294 S:      Maintained
2295 W:      https://mtk.wiki.kernel.org/
2296 C:      irc://chat.freenode.net/linux-mediatek
2297 F:      arch/arm/boot/dts/mt6*
2298 F:      arch/arm/boot/dts/mt7*
2299 F:      arch/arm/boot/dts/mt8*
2300 F:      arch/arm/mach-mediatek/
2301 F:      arch/arm64/boot/dts/mediatek/
2302 F:      drivers/soc/mediatek/
2303 N:      mtk
2304 N:      mt[678]
2305 K:      mediatek
2306
2307 ARM/Mediatek USB3 PHY DRIVER
2308 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2310 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2311 S:      Maintained
2312 F:      Documentation/devicetree/bindings/phy/mediatek,*
2313 F:      drivers/phy/mediatek/
2314
2315 ARM/Microchip (AT91) SoC support
2316 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2317 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2318 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2320 S:      Supported
2321 W:      http://www.linux4sam.org
2322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2323 F:      arch/arm/boot/dts/at91*.dts
2324 F:      arch/arm/boot/dts/at91*.dtsi
2325 F:      arch/arm/boot/dts/sama*.dts
2326 F:      arch/arm/boot/dts/sama*.dtsi
2327 F:      arch/arm/include/debug/at91.S
2328 F:      arch/arm/mach-at91/
2329 F:      drivers/memory/atmel*
2330 F:      drivers/watchdog/sama5d4_wdt.c
2331 F:      include/soc/at91/
2332 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2333 X:      drivers/net/wireless/atmel/
2334 N:      at91
2335 N:      atmel
2336
2337 ARM/Microchip Sparx5 SoC support
2338 M:      Lars Povlsen <lars.povlsen@microchip.com>
2339 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2340 M:      UNGLinuxDriver@microchip.com
2341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 S:      Supported
2343 T:      git git://github.com/microchip-ung/linux-upstream.git
2344 F:      arch/arm64/boot/dts/microchip/
2345 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2346 N:      sparx5
2347
2348 Microchip Timer Counter Block (TCB) Capture Driver
2349 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2351 L:      linux-iio@vger.kernel.org
2352 S:      Maintained
2353 F:      drivers/counter/microchip-tcb-capture.c
2354
2355 ARM/MILBEAUT ARCHITECTURE
2356 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2357 M:      Takao Orito <orito.takao@socionext.com>
2358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2359 S:      Maintained
2360 F:      arch/arm/boot/dts/milbeaut*
2361 F:      arch/arm/mach-milbeaut/
2362 N:      milbeaut
2363
2364 ARM/MIOA701 MACHINE SUPPORT
2365 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 S:      Maintained
2368 F:      arch/arm/mach-pxa/mioa701.c
2369
2370 ARM/MStar/Sigmastar Armv7 SoC support
2371 M:      Daniel Palmer <daniel@thingy.jp>
2372 M:      Romain Perier <romain.perier@gmail.com>
2373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2374 S:      Maintained
2375 W:      http://linux-chenxing.org/
2376 T:      git git://github.com/linux-chenxing/linux.git
2377 F:      Documentation/devicetree/bindings/arm/mstar/*
2378 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2379 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2380 F:      arch/arm/boot/dts/mstar-*
2381 F:      arch/arm/mach-mstar/
2382 F:      drivers/clk/mstar/
2383 F:      drivers/clocksource/timer-msc313e.c
2384 F:      drivers/gpio/gpio-msc313.c
2385 F:      drivers/rtc/rtc-msc313.c
2386 F:      drivers/watchdog/msc313e_wdt.c
2387 F:      include/dt-bindings/clock/mstar-*
2388 F:      include/dt-bindings/gpio/msc313-gpio.h
2389
2390 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2391 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2392 S:      Maintained
2393
2394 ARM/NOMADIK/Ux500 ARCHITECTURES
2395 M:      Linus Walleij <linus.walleij@linaro.org>
2396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2397 S:      Maintained
2398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2399 F:      Documentation/devicetree/bindings/arm/ste-*
2400 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2401 F:      Documentation/devicetree/bindings/arm/ux500/
2402 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2403 F:      arch/arm/boot/dts/ste-*
2404 F:      arch/arm/mach-nomadik/
2405 F:      arch/arm/mach-ux500/
2406 F:      drivers/clk/clk-nomadik.c
2407 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2408 F:      drivers/dma/ste_dma40*
2409 F:      drivers/hwspinlock/u8500_hsem.c
2410 F:      drivers/i2c/busses/i2c-nomadik.c
2411 F:      drivers/iio/adc/ab8500-gpadc.c
2412 F:      drivers/mfd/ab8500*
2413 F:      drivers/mfd/abx500*
2414 F:      drivers/mfd/db8500*
2415 F:      drivers/pinctrl/nomadik/
2416 F:      drivers/rtc/rtc-ab8500.c
2417 F:      drivers/rtc/rtc-pl031.c
2418 F:      drivers/soc/ux500/
2419
2420 ARM/NUVOTON NPCM ARCHITECTURE
2421 M:      Avi Fishman <avifishman70@gmail.com>
2422 M:      Tomer Maimon <tmaimon77@gmail.com>
2423 M:      Tali Perry <tali.perry1@gmail.com>
2424 R:      Patrick Venture <venture@google.com>
2425 R:      Nancy Yuen <yuenn@google.com>
2426 R:      Benjamin Fair <benjaminfair@google.com>
2427 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2428 S:      Supported
2429 F:      Documentation/devicetree/bindings/*/*/*npcm*
2430 F:      Documentation/devicetree/bindings/*/*npcm*
2431 F:      Documentation/devicetree/bindings/arm/npcm/*
2432 F:      arch/arm/boot/dts/nuvoton-npcm*
2433 F:      arch/arm/mach-npcm/
2434 F:      drivers/*/*npcm*
2435 F:      drivers/*/*/*npcm*
2436 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2437
2438 ARM/NUVOTON WPCM450 ARCHITECTURE
2439 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2440 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2441 S:      Maintained
2442 W:      https://github.com/neuschaefer/wpcm450/wiki
2443 F:      Documentation/devicetree/bindings/*/*wpcm*
2444 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2445 F:      arch/arm/mach-npcm/wpcm450.c
2446 F:      drivers/*/*/*wpcm*
2447 F:      drivers/*/*wpcm*
2448
2449 ARM/NXP S32G ARCHITECTURE
2450 M:      Chester Lin <clin@suse.com>
2451 R:      Andreas Färber <afaerber@suse.de>
2452 R:      Matthias Brugger <mbrugger@suse.com>
2453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2454 S:      Maintained
2455 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2456
2457 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2458 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2459 S:      Orphan
2460 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2461 F:      arch/arm/mach-s3c/gta02.h
2462 F:      arch/arm/mach-s3c/mach-gta02.c
2463
2464 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2465 M:      Alexander Clouter <alex@digriz.org.uk>
2466 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2467 S:      Maintained
2468 W:      http://www.digriz.org.uk/ts78xx/kernel
2469 F:      arch/arm/mach-orion5x/ts78xx-*
2470
2471 ARM/OXNAS platform support
2472 M:      Neil Armstrong <narmstrong@baylibre.com>
2473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2474 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2475 S:      Maintained
2476 F:      arch/arm/boot/dts/ox8*.dts*
2477 F:      arch/arm/mach-oxnas/
2478 F:      drivers/power/reset/oxnas-restart.c
2479 N:      oxnas
2480
2481 ARM/PALM TREO SUPPORT
2482 M:      Tomas Cech <sleep_walker@suse.com>
2483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2484 S:      Maintained
2485 W:      http://hackndev.com
2486 F:      arch/arm/mach-pxa/palmtreo.*
2487
2488 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2489 M:      Marek Vasut <marek.vasut@gmail.com>
2490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2491 S:      Maintained
2492 W:      http://hackndev.com
2493 F:      arch/arm/mach-pxa/include/mach/palmld.h
2494 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2495 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2496 F:      arch/arm/mach-pxa/palmld.c
2497 F:      arch/arm/mach-pxa/palmt5.*
2498 F:      arch/arm/mach-pxa/palmtc.c
2499 F:      arch/arm/mach-pxa/palmte2.*
2500 F:      arch/arm/mach-pxa/palmtx.c
2501
2502 ARM/PALMZ72 SUPPORT
2503 M:      Sergey Lapin <slapin@ossfans.org>
2504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2505 S:      Maintained
2506 W:      http://hackndev.com
2507 F:      arch/arm/mach-pxa/palmz72.*
2508
2509 ARM/PLEB SUPPORT
2510 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2511 S:      Maintained
2512 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2513
2514 ARM/PT DIGITAL BOARD PORT
2515 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2517 S:      Maintained
2518 W:      http://www.armlinux.org.uk/
2519
2520 ARM/QUALCOMM SUPPORT
2521 M:      Andy Gross <agross@kernel.org>
2522 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2523 L:      linux-arm-msm@vger.kernel.org
2524 S:      Maintained
2525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2526 F:      Documentation/devicetree/bindings/*/qcom*
2527 F:      Documentation/devicetree/bindings/soc/qcom/
2528 F:      arch/arm/boot/dts/qcom-*.dts
2529 F:      arch/arm/boot/dts/qcom-*.dtsi
2530 F:      arch/arm/mach-qcom/
2531 F:      arch/arm64/boot/dts/qcom/
2532 F:      drivers/*/*/qcom*
2533 F:      drivers/*/*/qcom/
2534 F:      drivers/*/pm8???-*
2535 F:      drivers/*/qcom*
2536 F:      drivers/*/qcom/
2537 F:      drivers/bluetooth/btqcomsmd.c
2538 F:      drivers/clocksource/timer-qcom.c
2539 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2540 F:      drivers/extcon/extcon-qcom*
2541 F:      drivers/i2c/busses/i2c-qcom-geni.c
2542 F:      drivers/i2c/busses/i2c-qup.c
2543 F:      drivers/iommu/msm*
2544 F:      drivers/mfd/ssbi.c
2545 F:      drivers/mmc/host/mmci_qcom*
2546 F:      drivers/mmc/host/sdhci-msm.c
2547 F:      drivers/pci/controller/dwc/pcie-qcom.c
2548 F:      drivers/phy/qualcomm/
2549 F:      drivers/power/*/msm*
2550 F:      drivers/reset/reset-qcom-*
2551 F:      drivers/scsi/ufs/ufs-qcom*
2552 F:      drivers/spi/spi-geni-qcom.c
2553 F:      drivers/spi/spi-qcom-qspi.c
2554 F:      drivers/spi/spi-qup.c
2555 F:      drivers/tty/serial/msm_serial.c
2556 F:      drivers/usb/dwc3/dwc3-qcom.c
2557 F:      include/dt-bindings/*/qcom*
2558 F:      include/linux/*/qcom*
2559 F:      include/linux/soc/qcom/
2560
2561 ARM/RADISYS ENP2611 MACHINE SUPPORT
2562 M:      Lennert Buytenhek <kernel@wantstofly.org>
2563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2564 S:      Maintained
2565
2566 ARM/RDA MICRO ARCHITECTURE
2567 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2569 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2570 S:      Maintained
2571 F:      Documentation/devicetree/bindings/arm/rda.yaml
2572 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2573 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2574 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2575 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2576 F:      arch/arm/boot/dts/rda8810pl-*
2577 F:      drivers/clocksource/timer-rda.c
2578 F:      drivers/gpio/gpio-rda.c
2579 F:      drivers/irqchip/irq-rda-intc.c
2580 F:      drivers/tty/serial/rda-uart.c
2581
2582 ARM/REALTEK ARCHITECTURE
2583 M:      Andreas Färber <afaerber@suse.de>
2584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2585 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2586 S:      Maintained
2587 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2588 F:      arch/arm/boot/dts/rtd*
2589 F:      arch/arm/mach-realtek/
2590 F:      arch/arm64/boot/dts/realtek/
2591
2592 ARM/RENESAS ARM64 ARCHITECTURE
2593 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2594 M:      Magnus Damm <magnus.damm@gmail.com>
2595 L:      linux-renesas-soc@vger.kernel.org
2596 S:      Supported
2597 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2598 C:      irc://irc.libera.chat/renesas-soc
2599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2600 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2601 F:      arch/arm64/boot/dts/renesas/
2602 F:      drivers/soc/renesas/
2603 F:      include/linux/soc/renesas/
2604
2605 ARM/RISCPC ARCHITECTURE
2606 M:      Russell King <linux@armlinux.org.uk>
2607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2608 S:      Maintained
2609 W:      http://www.armlinux.org.uk/
2610 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2611 F:      arch/arm/include/asm/hardware/ioc.h
2612 F:      arch/arm/include/asm/hardware/iomd.h
2613 F:      arch/arm/include/asm/hardware/memc.h
2614 F:      arch/arm/mach-rpc/
2615 F:      drivers/net/ethernet/8390/etherh.c
2616 F:      drivers/net/ethernet/i825xx/ether1*
2617 F:      drivers/net/ethernet/seeq/ether3*
2618 F:      drivers/scsi/arm/
2619
2620 ARM/Rockchip SoC support
2621 M:      Heiko Stuebner <heiko@sntech.de>
2622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2623 L:      linux-rockchip@lists.infradead.org
2624 S:      Maintained
2625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2626 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2627 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2628 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2629 F:      arch/arm/boot/dts/rk3*
2630 F:      arch/arm/boot/dts/rv1108*
2631 F:      arch/arm/mach-rockchip/
2632 F:      drivers/*/*/*rockchip*
2633 F:      drivers/*/*rockchip*
2634 F:      drivers/clk/rockchip/
2635 F:      drivers/i2c/busses/i2c-rk3x.c
2636 F:      sound/soc/rockchip/
2637 N:      rockchip
2638
2639 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2640 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2641 R:      Alim Akhtar <alim.akhtar@samsung.com>
2642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2643 L:      linux-samsung-soc@vger.kernel.org
2644 S:      Maintained
2645 C:      irc://irc.libera.chat/linux-exynos
2646 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2647 B:      mailto:linux-samsung-soc@vger.kernel.org
2648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2649 F:      Documentation/arm/samsung/
2650 F:      Documentation/devicetree/bindings/arm/samsung/
2651 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2652 F:      Documentation/devicetree/bindings/soc/samsung/
2653 F:      arch/arm/boot/dts/exynos*
2654 F:      arch/arm/boot/dts/s3c*
2655 F:      arch/arm/boot/dts/s5p*
2656 F:      arch/arm/mach-exynos*/
2657 F:      arch/arm/mach-s3c/
2658 F:      arch/arm/mach-s5p*/
2659 F:      arch/arm64/boot/dts/exynos/
2660 F:      drivers/*/*/*s3c24*
2661 F:      drivers/*/*s3c24*
2662 F:      drivers/*/*s3c64xx*
2663 F:      drivers/*/*s5pv210*
2664 F:      drivers/clocksource/samsung_pwm_timer.c
2665 F:      drivers/memory/samsung/
2666 F:      drivers/pwm/pwm-samsung.c
2667 F:      drivers/soc/samsung/
2668 F:      drivers/tty/serial/samsung*
2669 F:      include/clocksource/samsung_pwm.h
2670 F:      include/linux/platform_data/*s3c*
2671 F:      include/linux/serial_s3c.h
2672 F:      include/linux/soc/samsung/
2673 N:      exynos
2674 N:      s3c2410
2675 N:      s3c64xx
2676 N:      s5pv210
2677
2678 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2679 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2681 L:      linux-media@vger.kernel.org
2682 S:      Maintained
2683 F:      drivers/media/platform/samsung/s5p-g2d/
2684
2685 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2686 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2687 L:      linux-samsung-soc@vger.kernel.org
2688 L:      linux-media@vger.kernel.org
2689 S:      Maintained
2690 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2691 F:      drivers/media/cec/platform/s5p/
2692
2693 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2694 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2695 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2696 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 L:      linux-media@vger.kernel.org
2699 S:      Maintained
2700 F:      drivers/media/platform/samsung/s5p-jpeg/
2701
2702 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2703 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2704 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2705 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2706 L:      linux-media@vger.kernel.org
2707 S:      Maintained
2708 F:      drivers/media/platform/samsung/s5p-mfc/
2709
2710 ARM/SHMOBILE ARM ARCHITECTURE
2711 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2712 M:      Magnus Damm <magnus.damm@gmail.com>
2713 L:      linux-renesas-soc@vger.kernel.org
2714 S:      Supported
2715 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2716 C:      irc://irc.libera.chat/renesas-soc
2717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2718 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2719 F:      arch/arm/boot/dts/emev2*
2720 F:      arch/arm/boot/dts/gr-peach*
2721 F:      arch/arm/boot/dts/iwg20d-q7*
2722 F:      arch/arm/boot/dts/r7s*
2723 F:      arch/arm/boot/dts/r8a*
2724 F:      arch/arm/boot/dts/r9a*
2725 F:      arch/arm/boot/dts/sh*
2726 F:      arch/arm/configs/shmobile_defconfig
2727 F:      arch/arm/include/debug/renesas-scif.S
2728 F:      arch/arm/mach-shmobile/
2729 F:      drivers/soc/renesas/
2730 F:      include/linux/soc/renesas/
2731
2732 ARM/SOCFPGA ARCHITECTURE
2733 M:      Dinh Nguyen <dinguyen@kernel.org>
2734 S:      Maintained
2735 W:      http://www.rocketboards.org
2736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2737 F:      arch/arm/boot/dts/socfpga*
2738 F:      arch/arm/configs/socfpga_defconfig
2739 F:      arch/arm/mach-socfpga/
2740 F:      arch/arm64/boot/dts/altera/
2741 F:      arch/arm64/boot/dts/intel/
2742
2743 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2744 M:      Dinh Nguyen <dinguyen@kernel.org>
2745 S:      Maintained
2746 F:      drivers/clk/socfpga/
2747
2748 ARM/SOCFPGA EDAC SUPPORT
2749 M:      Dinh Nguyen <dinguyen@kernel.org>
2750 S:      Maintained
2751 F:      drivers/edac/altera_edac.[ch]
2752
2753 ARM/SPREADTRUM SoC SUPPORT
2754 M:      Orson Zhai <orsonzhai@gmail.com>
2755 M:      Baolin Wang <baolin.wang7@gmail.com>
2756 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2757 S:      Maintained
2758 F:      arch/arm64/boot/dts/sprd
2759 N:      sprd
2760 N:      sc27xx
2761 N:      sc2731
2762
2763 ARM/STI ARCHITECTURE
2764 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2765 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2766 S:      Maintained
2767 W:      http://www.stlinux.com
2768 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2769 F:      arch/arm/boot/dts/sti*
2770 F:      arch/arm/mach-sti/
2771 F:      drivers/ata/ahci_st.c
2772 F:      drivers/char/hw_random/st-rng.c
2773 F:      drivers/clocksource/arm_global_timer.c
2774 F:      drivers/clocksource/clksrc_st_lpc.c
2775 F:      drivers/cpufreq/sti-cpufreq.c
2776 F:      drivers/dma/st_fdma*
2777 F:      drivers/i2c/busses/i2c-st.c
2778 F:      drivers/media/platform/st/sti/c8sectpfe/
2779 F:      drivers/media/rc/st_rc.c
2780 F:      drivers/mmc/host/sdhci-st.c
2781 F:      drivers/phy/st/phy-miphy28lp.c
2782 F:      drivers/phy/st/phy-stih407-usb.c
2783 F:      drivers/pinctrl/pinctrl-st.c
2784 F:      drivers/remoteproc/st_remoteproc.c
2785 F:      drivers/remoteproc/st_slim_rproc.c
2786 F:      drivers/reset/sti/
2787 F:      drivers/rtc/rtc-st-lpc.c
2788 F:      drivers/tty/serial/st-asc.c
2789 F:      drivers/usb/dwc3/dwc3-st.c
2790 F:      drivers/usb/host/ehci-st.c
2791 F:      drivers/usb/host/ohci-st.c
2792 F:      drivers/watchdog/st_lpc_wdt.c
2793 F:      include/linux/remoteproc/st_slim_rproc.h
2794
2795 ARM/STM32 ARCHITECTURE
2796 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2797 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2798 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2800 S:      Maintained
2801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2802 F:      arch/arm/boot/dts/stm32*
2803 F:      arch/arm/mach-stm32/
2804 F:      drivers/clocksource/armv7m_systick.c
2805 N:      stm32
2806 N:      stm
2807
2808 ARM/Synaptics SoC support
2809 M:      Jisheng Zhang <jszhang@kernel.org>
2810 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2812 S:      Maintained
2813 F:      arch/arm/boot/dts/berlin*
2814 F:      arch/arm/mach-berlin/
2815 F:      arch/arm64/boot/dts/synaptics/
2816
2817 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2818 M:      Lennert Buytenhek <kernel@wantstofly.org>
2819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2820 S:      Maintained
2821
2822 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2823 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2824 L:      linux-tegra@vger.kernel.org
2825 L:      linux-media@vger.kernel.org
2826 S:      Maintained
2827 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2828 F:      drivers/media/cec/platform/tegra/
2829
2830 ARM/TESLA FSD SoC SUPPORT
2831 M:      Alim Akhtar <alim.akhtar@samsung.com>
2832 M:      linux-fsd@tesla.com
2833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2834 L:      linux-samsung-soc@vger.kernel.org
2835 S:      Maintained
2836 F:      arch/arm64/boot/dts/tesla*
2837
2838 ARM/TETON BGA MACHINE SUPPORT
2839 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2841 S:      Maintained
2842
2843 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2844 M:      Santosh Shilimkar <ssantosh@kernel.org>
2845 L:      linux-kernel@vger.kernel.org
2846 S:      Maintained
2847 F:      drivers/memory/*emif*
2848
2849 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2850 M:      Nishanth Menon <nm@ti.com>
2851 M:      Santosh Shilimkar <ssantosh@kernel.org>
2852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2853 S:      Maintained
2854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2855 F:      arch/arm/boot/dts/keystone-*
2856 F:      arch/arm/mach-keystone/
2857
2858 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2859 M:      Santosh Shilimkar <ssantosh@kernel.org>
2860 L:      linux-kernel@vger.kernel.org
2861 S:      Maintained
2862 F:      drivers/clk/keystone/
2863
2864 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2865 M:      Santosh Shilimkar <ssantosh@kernel.org>
2866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2867 L:      linux-kernel@vger.kernel.org
2868 S:      Maintained
2869 F:      drivers/clocksource/timer-keystone.c
2870
2871 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2872 M:      Santosh Shilimkar <ssantosh@kernel.org>
2873 L:      linux-kernel@vger.kernel.org
2874 S:      Maintained
2875 F:      drivers/power/reset/keystone-reset.c
2876
2877 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2878 M:      Nishanth Menon <nm@ti.com>
2879 M:      Vignesh Raghavendra <vigneshr@ti.com>
2880 M:      Tero Kristo <kristo@kernel.org>
2881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2882 S:      Supported
2883 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2884 F:      arch/arm64/boot/dts/ti/Makefile
2885 F:      arch/arm64/boot/dts/ti/k3-*
2886 F:      include/dt-bindings/pinctrl/k3.h
2887
2888 ARM/THECUS N2100 MACHINE SUPPORT
2889 M:      Lennert Buytenhek <kernel@wantstofly.org>
2890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2891 S:      Maintained
2892
2893 ARM/TOSA MACHINE SUPPORT
2894 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2895 M:      Dirk Opfer <dirk@opfer-online.de>
2896 S:      Maintained
2897
2898 ARM/TOSHIBA VISCONTI ARCHITECTURE
2899 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2901 S:      Supported
2902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2903 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2904 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2905 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2906 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2907 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2908 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2909 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2910 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2911 F:      arch/arm64/boot/dts/toshiba/
2912 F:      drivers/clk/visconti/
2913 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2914 F:      drivers/gpio/gpio-visconti.c
2915 F:      drivers/pci/controller/dwc/pcie-visconti.c
2916 F:      drivers/pinctrl/visconti/
2917 F:      drivers/watchdog/visconti_wdt.c
2918 N:      visconti
2919
2920 ARM/UNIPHIER ARCHITECTURE
2921 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2922 M:      Masami Hiramatsu <mhiramat@kernel.org>
2923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2924 S:      Maintained
2925 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2926 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2927 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2928 F:      arch/arm/boot/dts/uniphier*
2929 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2930 F:      arch/arm/mach-uniphier/
2931 F:      arch/arm/mm/cache-uniphier.c
2932 F:      arch/arm64/boot/dts/socionext/uniphier*
2933 F:      drivers/bus/uniphier-system-bus.c
2934 F:      drivers/clk/uniphier/
2935 F:      drivers/dma/uniphier-mdmac.c
2936 F:      drivers/gpio/gpio-uniphier.c
2937 F:      drivers/i2c/busses/i2c-uniphier*
2938 F:      drivers/irqchip/irq-uniphier-aidet.c
2939 F:      drivers/mmc/host/uniphier-sd.c
2940 F:      drivers/pinctrl/uniphier/
2941 F:      drivers/reset/reset-uniphier.c
2942 F:      drivers/tty/serial/8250/8250_uniphier.c
2943 N:      uniphier
2944
2945 ARM/VERSATILE EXPRESS PLATFORM
2946 M:      Liviu Dudau <liviu.dudau@arm.com>
2947 M:      Sudeep Holla <sudeep.holla@arm.com>
2948 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2950 S:      Maintained
2951 F:      */*/*/vexpress*
2952 F:      */*/vexpress*
2953 F:      arch/arm/boot/dts/vexpress*
2954 F:      arch/arm/mach-vexpress/
2955 F:      arch/arm64/boot/dts/arm/
2956 F:      drivers/clk/versatile/clk-vexpress-osc.c
2957 F:      drivers/clocksource/timer-versatile.c
2958 N:      mps2
2959
2960 ARM/VFP SUPPORT
2961 M:      Russell King <linux@armlinux.org.uk>
2962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2963 S:      Maintained
2964 W:      http://www.armlinux.org.uk/
2965 F:      arch/arm/vfp/
2966
2967 ARM/VOIPAC PXA270 SUPPORT
2968 M:      Marek Vasut <marek.vasut@gmail.com>
2969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2970 S:      Maintained
2971 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2972 F:      arch/arm/mach-pxa/vpac270.c
2973
2974 ARM/VT8500 ARM ARCHITECTURE
2975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2976 S:      Orphan
2977 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2978 F:      arch/arm/mach-vt8500/
2979 F:      drivers/clocksource/timer-vt8500.c
2980 F:      drivers/i2c/busses/i2c-wmt.c
2981 F:      drivers/mmc/host/wmt-sdmmc.c
2982 F:      drivers/pwm/pwm-vt8500.c
2983 F:      drivers/rtc/rtc-vt8500.c
2984 F:      drivers/tty/serial/vt8500_serial.c
2985 F:      drivers/usb/host/ehci-platform.c
2986 F:      drivers/usb/host/uhci-platform.c
2987 F:      drivers/video/fbdev/vt8500lcdfb.*
2988 F:      drivers/video/fbdev/wm8505fb*
2989 F:      drivers/video/fbdev/wmt_ge_rops.*
2990
2991 ARM/ZIPIT Z2 SUPPORT
2992 M:      Marek Vasut <marek.vasut@gmail.com>
2993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2994 S:      Maintained
2995 F:      arch/arm/mach-pxa/include/mach/z2.h
2996 F:      arch/arm/mach-pxa/z2.c
2997
2998 ARM/ZYNQ ARCHITECTURE
2999 M:      Michal Simek <michal.simek@xilinx.com>
3000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3001 S:      Supported
3002 W:      http://wiki.xilinx.com
3003 T:      git https://github.com/Xilinx/linux-xlnx.git
3004 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3005 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3006 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3007 F:      arch/arm/mach-zynq/
3008 F:      drivers/clocksource/timer-cadence-ttc.c
3009 F:      drivers/cpuidle/cpuidle-zynq.c
3010 F:      drivers/edac/synopsys_edac.c
3011 F:      drivers/i2c/busses/i2c-cadence.c
3012 F:      drivers/i2c/busses/i2c-xiic.c
3013 F:      drivers/mmc/host/sdhci-of-arasan.c
3014 N:      zynq
3015 N:      xilinx
3016
3017 ARM64 PORT (AARCH64 ARCHITECTURE)
3018 M:      Catalin Marinas <catalin.marinas@arm.com>
3019 M:      Will Deacon <will@kernel.org>
3020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3021 S:      Maintained
3022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3023 F:      Documentation/arm64/
3024 F:      arch/arm64/
3025 F:      tools/testing/selftests/arm64/
3026 X:      arch/arm64/boot/dts/
3027
3028 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3029 M:      George McCollister <george.mccollister@gmail.com>
3030 L:      netdev@vger.kernel.org
3031 S:      Maintained
3032 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3033 F:      drivers/net/dsa/xrs700x/*
3034 F:      net/dsa/tag_xrs700x.c
3035
3036 AS3645A LED FLASH CONTROLLER DRIVER
3037 M:      Sakari Ailus <sakari.ailus@iki.fi>
3038 L:      linux-leds@vger.kernel.org
3039 S:      Maintained
3040 F:      drivers/leds/flash/leds-as3645a.c
3041
3042 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3043 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3044 L:      linux-media@vger.kernel.org
3045 S:      Maintained
3046 T:      git git://linuxtv.org/media_tree.git
3047 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3048 F:      drivers/media/i2c/ak7375.c
3049
3050 ASAHI KASEI AK8974 DRIVER
3051 M:      Linus Walleij <linus.walleij@linaro.org>
3052 L:      linux-iio@vger.kernel.org
3053 S:      Supported
3054 W:      http://www.akm.com/
3055 F:      drivers/iio/magnetometer/ak8974.c
3056
3057 ASC7621 HARDWARE MONITOR DRIVER
3058 M:      George Joseph <george.joseph@fairview5.com>
3059 L:      linux-hwmon@vger.kernel.org
3060 S:      Maintained
3061 F:      Documentation/hwmon/asc7621.rst
3062 F:      drivers/hwmon/asc7621.c
3063
3064 ASIX AX88796C SPI ETHERNET ADAPTER
3065 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3066 S:      Maintained
3067 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3068 F:      drivers/net/ethernet/asix/ax88796c_*
3069
3070 ASPEED PECI CONTROLLER
3071 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3072 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3073 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3074 S:      Supported
3075 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3076 F:      drivers/peci/controller/peci-aspeed.c
3077
3078 ASPEED PINCTRL DRIVERS
3079 M:      Andrew Jeffery <andrew@aj.id.au>
3080 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3081 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3082 L:      linux-gpio@vger.kernel.org
3083 S:      Maintained
3084 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3085 F:      drivers/pinctrl/aspeed/
3086
3087 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3088 M:      Eddie James <eajames@linux.ibm.com>
3089 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3090 S:      Maintained
3091 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3092 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3093 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3094
3095 ASPEED SD/MMC DRIVER
3096 M:      Andrew Jeffery <andrew@aj.id.au>
3097 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3098 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3099 L:      linux-mmc@vger.kernel.org
3100 S:      Maintained
3101 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3102 F:      drivers/mmc/host/sdhci-of-aspeed*
3103
3104 ASPEED SMC SPI DRIVER
3105 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3106 M:      Cédric Le Goater <clg@kaod.org>
3107 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3108 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3109 L:      linux-spi@vger.kernel.org
3110 S:      Maintained
3111 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3112 F:      drivers/spi/spi-aspeed-smc.c
3113
3114 ASPEED VIDEO ENGINE DRIVER
3115 M:      Eddie James <eajames@linux.ibm.com>
3116 L:      linux-media@vger.kernel.org
3117 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3118 S:      Maintained
3119 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3120 F:      drivers/media/platform/aspeed/
3121
3122 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3123 M:      Corentin Chary <corentin.chary@gmail.com>
3124 L:      acpi4asus-user@lists.sourceforge.net
3125 L:      platform-driver-x86@vger.kernel.org
3126 S:      Maintained
3127 W:      http://acpi4asus.sf.net
3128 F:      drivers/platform/x86/asus*.c
3129 F:      drivers/platform/x86/eeepc*.c
3130
3131 ASUS TF103C DOCK DRIVER
3132 M:      Hans de Goede <hdegoede@redhat.com>
3133 L:      platform-driver-x86@vger.kernel.org
3134 S:      Maintained
3135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3136 F:      drivers/platform/x86/asus-tf103c-dock.c
3137
3138 ASUS WMI HARDWARE MONITOR DRIVER
3139 M:      Ed Brindley <kernel@maidavale.org>
3140 M:      Denis Pauk <pauk.denis@gmail.com>
3141 L:      linux-hwmon@vger.kernel.org
3142 S:      Maintained
3143 F:      drivers/hwmon/asus_wmi_sensors.c
3144
3145 ASUS WMI EC HARDWARE MONITOR DRIVER
3146 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3147 M:      Denis Pauk <pauk.denis@gmail.com>
3148 L:      linux-hwmon@vger.kernel.org
3149 S:      Maintained
3150 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3151
3152 ASUS EC HARDWARE MONITOR DRIVER
3153 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3154 L:      linux-hwmon@vger.kernel.org
3155 S:      Maintained
3156 F:      drivers/hwmon/asus-ec-sensors.c
3157
3158 ASUS WIRELESS RADIO CONTROL DRIVER
3159 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3160 L:      platform-driver-x86@vger.kernel.org
3161 S:      Maintained
3162 F:      drivers/platform/x86/asus-wireless.c
3163
3164 ASYMMETRIC KEYS
3165 M:      David Howells <dhowells@redhat.com>
3166 L:      keyrings@vger.kernel.org
3167 S:      Maintained
3168 F:      Documentation/crypto/asymmetric-keys.rst
3169 F:      crypto/asymmetric_keys/
3170 F:      include/crypto/pkcs7.h
3171 F:      include/crypto/public_key.h
3172 F:      include/linux/verification.h
3173
3174 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3175 R:      Dan Williams <dan.j.williams@intel.com>
3176 S:      Odd fixes
3177 W:      http://sourceforge.net/projects/xscaleiop
3178 F:      Documentation/crypto/async-tx-api.rst
3179 F:      crypto/async_tx/
3180 F:      include/linux/async_tx.h
3181
3182 AT24 EEPROM DRIVER
3183 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3184 L:      linux-i2c@vger.kernel.org
3185 S:      Maintained
3186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3187 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3188 F:      drivers/misc/eeprom/at24.c
3189
3190 ATA OVER ETHERNET (AOE) DRIVER
3191 M:      "Justin Sanders" <justin@coraid.com>
3192 S:      Supported
3193 W:      http://www.openaoe.org/
3194 F:      Documentation/admin-guide/aoe/
3195 F:      drivers/block/aoe/
3196
3197 ATC260X PMIC MFD DRIVER
3198 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3199 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3200 L:      linux-actions@lists.infradead.org
3201 S:      Maintained
3202 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3203 F:      drivers/input/misc/atc260x-onkey.c
3204 F:      drivers/mfd/atc260*
3205 F:      drivers/power/reset/atc260x-poweroff.c
3206 F:      drivers/regulator/atc260x-regulator.c
3207 F:      include/linux/mfd/atc260x/*
3208
3209 ATHEROS 71XX/9XXX GPIO DRIVER
3210 M:      Alban Bedel <albeu@free.fr>
3211 S:      Maintained
3212 W:      https://github.com/AlbanBedel/linux
3213 T:      git git://github.com/AlbanBedel/linux
3214 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3215 F:      drivers/gpio/gpio-ath79.c
3216
3217 ATHEROS 71XX/9XXX USB PHY DRIVER
3218 M:      Alban Bedel <albeu@free.fr>
3219 S:      Maintained
3220 W:      https://github.com/AlbanBedel/linux
3221 T:      git git://github.com/AlbanBedel/linux
3222 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3223 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3224
3225 ATHEROS ATH GENERIC UTILITIES
3226 M:      Kalle Valo <kvalo@kernel.org>
3227 L:      linux-wireless@vger.kernel.org
3228 S:      Supported
3229 F:      drivers/net/wireless/ath/*
3230
3231 ATHEROS ATH5K WIRELESS DRIVER
3232 M:      Jiri Slaby <jirislaby@kernel.org>
3233 M:      Nick Kossifidis <mickflemm@gmail.com>
3234 M:      Luis Chamberlain <mcgrof@kernel.org>
3235 L:      linux-wireless@vger.kernel.org
3236 S:      Maintained
3237 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3238 F:      drivers/net/wireless/ath/ath5k/
3239
3240 ATHEROS ATH6KL WIRELESS DRIVER
3241 L:      linux-wireless@vger.kernel.org
3242 S:      Orphan
3243 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3244 F:      drivers/net/wireless/ath/ath6kl/
3245
3246 ATI_REMOTE2 DRIVER
3247 M:      Ville Syrjala <syrjala@sci.fi>
3248 S:      Maintained
3249 F:      drivers/input/misc/ati_remote2.c
3250
3251 ATK0110 HWMON DRIVER
3252 M:      Luca Tettamanti <kronos.it@gmail.com>
3253 L:      linux-hwmon@vger.kernel.org
3254 S:      Maintained
3255 F:      drivers/hwmon/asus_atk0110.c
3256
3257 ATLX ETHERNET DRIVERS
3258 M:      Chris Snook <chris.snook@gmail.com>
3259 L:      netdev@vger.kernel.org
3260 S:      Maintained
3261 W:      http://sourceforge.net/projects/atl1
3262 W:      http://atl1.sourceforge.net
3263 F:      drivers/net/ethernet/atheros/
3264
3265 ATM
3266 M:      Chas Williams <3chas3@gmail.com>
3267 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3268 L:      netdev@vger.kernel.org
3269 S:      Maintained
3270 W:      http://linux-atm.sourceforge.net
3271 F:      drivers/atm/
3272 F:      include/linux/atm*
3273 F:      include/uapi/linux/atm*
3274
3275 ATMEL MACB ETHERNET DRIVER
3276 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3277 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3278 S:      Supported
3279 F:      drivers/net/ethernet/cadence/
3280
3281 ATMEL MAXTOUCH DRIVER
3282 M:      Nick Dyer <nick@shmanahar.org>
3283 S:      Maintained
3284 T:      git git://github.com/ndyer/linux.git
3285 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3286 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3287
3288 ATMEL WIRELESS DRIVER
3289 M:      Simon Kelley <simon@thekelleys.org.uk>
3290 L:      linux-wireless@vger.kernel.org
3291 S:      Maintained
3292 W:      http://www.thekelleys.org.uk/atmel
3293 W:      http://atmelwlandriver.sourceforge.net/
3294 F:      drivers/net/wireless/atmel/atmel*
3295
3296 ATOMIC INFRASTRUCTURE
3297 M:      Will Deacon <will@kernel.org>
3298 M:      Peter Zijlstra <peterz@infradead.org>
3299 R:      Boqun Feng <boqun.feng@gmail.com>
3300 R:      Mark Rutland <mark.rutland@arm.com>
3301 L:      linux-kernel@vger.kernel.org
3302 S:      Maintained
3303 F:      arch/*/include/asm/atomic*.h
3304 F:      include/*/atomic*.h
3305 F:      include/linux/refcount.h
3306 F:      Documentation/atomic_*.txt
3307 F:      scripts/atomic/
3308
3309 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3310 M:      Bradley Grove <linuxdrivers@attotech.com>
3311 L:      linux-scsi@vger.kernel.org
3312 S:      Supported
3313 W:      http://www.attotech.com
3314 F:      drivers/scsi/esas2r
3315
3316 ATUSB IEEE 802.15.4 RADIO DRIVER
3317 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3318 L:      linux-wpan@vger.kernel.org
3319 S:      Maintained
3320 F:      drivers/net/ieee802154/at86rf230.h
3321 F:      drivers/net/ieee802154/atusb.c
3322 F:      drivers/net/ieee802154/atusb.h
3323
3324 AUDIT SUBSYSTEM
3325 M:      Paul Moore <paul@paul-moore.com>
3326 M:      Eric Paris <eparis@redhat.com>
3327 L:      linux-audit@redhat.com (moderated for non-subscribers)
3328 S:      Supported
3329 W:      https://github.com/linux-audit
3330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3331 F:      include/asm-generic/audit_*.h
3332 F:      include/linux/audit.h
3333 F:      include/linux/audit_arch.h
3334 F:      include/uapi/linux/audit.h
3335 F:      kernel/audit*
3336 F:      lib/*audit.c
3337
3338 AUXILIARY DISPLAY DRIVERS
3339 M:      Miguel Ojeda <ojeda@kernel.org>
3340 S:      Maintained
3341 F:      Documentation/devicetree/bindings/auxdisplay/
3342 F:      drivers/auxdisplay/
3343 F:      include/linux/cfag12864b.h
3344
3345 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3346 M:      Andreas Klinger <ak@it-klinger.de>
3347 L:      linux-iio@vger.kernel.org
3348 S:      Maintained
3349 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3350 F:      drivers/iio/adc/hx711.c
3351
3352 AX.25 NETWORK LAYER
3353 M:      Ralf Baechle <ralf@linux-mips.org>
3354 L:      linux-hams@vger.kernel.org
3355 S:      Maintained
3356 W:      http://www.linux-ax25.org/
3357 F:      include/net/ax25.h
3358 F:      include/uapi/linux/ax25.h
3359 F:      net/ax25/
3360
3361 AXENTIA ARM DEVICES
3362 M:      Peter Rosin <peda@axentia.se>
3363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3364 S:      Maintained
3365 F:      arch/arm/boot/dts/at91-linea.dtsi
3366 F:      arch/arm/boot/dts/at91-natte.dtsi
3367 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3368 F:      arch/arm/boot/dts/at91-tse850-3.dts
3369
3370 AXENTIA ASOC DRIVERS
3371 M:      Peter Rosin <peda@axentia.se>
3372 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3373 S:      Maintained
3374 F:      Documentation/devicetree/bindings/sound/axentia,*
3375 F:      sound/soc/atmel/tse850-pcm5142.c
3376
3377 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3378 M:      Nuno Sá <nuno.sa@analog.com>
3379 L:      linux-hwmon@vger.kernel.org
3380 S:      Supported
3381 W:      https://ez.analog.com/linux-software-drivers
3382 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3383 F:      drivers/hwmon/axi-fan-control.c
3384
3385 AXXIA I2C CONTROLLER
3386 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3387 L:      linux-i2c@vger.kernel.org
3388 S:      Maintained
3389 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3390 F:      drivers/i2c/busses/i2c-axxia.c
3391
3392 AZ6007 DVB DRIVER
3393 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3394 L:      linux-media@vger.kernel.org
3395 S:      Maintained
3396 W:      https://linuxtv.org
3397 T:      git git://linuxtv.org/media_tree.git
3398 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3399
3400 AZTECH FM RADIO RECEIVER DRIVER
3401 M:      Hans Verkuil <hverkuil@xs4all.nl>
3402 L:      linux-media@vger.kernel.org
3403 S:      Maintained
3404 W:      https://linuxtv.org
3405 T:      git git://linuxtv.org/media_tree.git
3406 F:      drivers/media/radio/radio-aztech*
3407
3408 B43 WIRELESS DRIVER
3409 L:      linux-wireless@vger.kernel.org
3410 L:      b43-dev@lists.infradead.org
3411 S:      Odd Fixes
3412 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3413 F:      drivers/net/wireless/broadcom/b43/
3414
3415 B43LEGACY WIRELESS DRIVER
3416 M:      Larry Finger <Larry.Finger@lwfinger.net>
3417 L:      linux-wireless@vger.kernel.org
3418 L:      b43-dev@lists.infradead.org
3419 S:      Maintained
3420 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3421 F:      drivers/net/wireless/broadcom/b43legacy/
3422
3423 BACKLIGHT CLASS/SUBSYSTEM
3424 M:      Lee Jones <lee.jones@linaro.org>
3425 M:      Daniel Thompson <daniel.thompson@linaro.org>
3426 M:      Jingoo Han <jingoohan1@gmail.com>
3427 L:      dri-devel@lists.freedesktop.org
3428 S:      Maintained
3429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3430 F:      Documentation/ABI/stable/sysfs-class-backlight
3431 F:      Documentation/ABI/testing/sysfs-class-backlight
3432 F:      Documentation/devicetree/bindings/leds/backlight
3433 F:      drivers/video/backlight/
3434 F:      include/linux/backlight.h
3435 F:      include/linux/pwm_backlight.h
3436
3437 BARCO P50 GPIO DRIVER
3438 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3439 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3440 S:      Maintained
3441 F:      drivers/platform/x86/barco-p50-gpio.c
3442
3443 BATMAN ADVANCED
3444 M:      Marek Lindner <mareklindner@neomailbox.ch>
3445 M:      Simon Wunderlich <sw@simonwunderlich.de>
3446 M:      Antonio Quartulli <a@unstable.cc>
3447 M:      Sven Eckelmann <sven@narfation.org>
3448 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3449 S:      Maintained
3450 W:      https://www.open-mesh.org/
3451 Q:      https://patchwork.open-mesh.org/project/batman/list/
3452 B:      https://www.open-mesh.org/projects/batman-adv/issues
3453 C:      ircs://irc.hackint.org/batadv
3454 T:      git https://git.open-mesh.org/linux-merge.git
3455 F:      Documentation/networking/batman-adv.rst
3456 F:      include/uapi/linux/batadv_packet.h
3457 F:      include/uapi/linux/batman_adv.h
3458 F:      net/batman-adv/
3459
3460 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3461 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3462 L:      linux-hams@vger.kernel.org
3463 S:      Maintained
3464 W:      http://www.baycom.org/~tom/ham/ham.html
3465 F:      drivers/net/hamradio/baycom*
3466
3467 BCACHE (BLOCK LAYER CACHE)
3468 M:      Coly Li <colyli@suse.de>
3469 M:      Kent Overstreet <kent.overstreet@gmail.com>
3470 L:      linux-bcache@vger.kernel.org
3471 S:      Maintained
3472 W:      http://bcache.evilpiepirate.org
3473 C:      irc://irc.oftc.net/bcache
3474 F:      drivers/md/bcache/
3475
3476 BDISP ST MEDIA DRIVER
3477 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3478 L:      linux-media@vger.kernel.org
3479 S:      Supported
3480 W:      https://linuxtv.org
3481 T:      git git://linuxtv.org/media_tree.git
3482 F:      drivers/media/platform/st/sti/bdisp
3483
3484 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3485 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3486 L:      netdev@vger.kernel.org
3487 S:      Maintained
3488 F:      drivers/net/ethernet/ec_bhf.c
3489
3490 BEFS FILE SYSTEM
3491 M:      Luis de Bethencourt <luisbg@kernel.org>
3492 M:      Salah Triki <salah.triki@gmail.com>
3493 S:      Maintained
3494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3495 F:      Documentation/filesystems/befs.rst
3496 F:      fs/befs/
3497
3498 BFQ I/O SCHEDULER
3499 M:      Paolo Valente <paolo.valente@linaro.org>
3500 M:      Jens Axboe <axboe@kernel.dk>
3501 L:      linux-block@vger.kernel.org
3502 S:      Maintained
3503 F:      Documentation/block/bfq-iosched.rst
3504 F:      block/bfq-*
3505
3506 BFS FILE SYSTEM
3507 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3508 S:      Maintained
3509 F:      Documentation/filesystems/bfs.rst
3510 F:      fs/bfs/
3511 F:      include/uapi/linux/bfs_fs.h
3512
3513 BITMAP API
3514 M:      Yury Norov <yury.norov@gmail.com>
3515 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3516 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3517 S:      Maintained
3518 F:      include/linux/bitmap.h
3519 F:      include/linux/find.h
3520 F:      lib/bitmap.c
3521 F:      lib/find_bit.c
3522 F:      lib/find_bit_benchmark.c
3523 F:      lib/test_bitmap.c
3524 F:      tools/include/linux/bitmap.h
3525 F:      tools/include/linux/find.h
3526 F:      tools/lib/bitmap.c
3527 F:      tools/lib/find_bit.c
3528
3529 BLINKM RGB LED DRIVER
3530 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3531 S:      Maintained
3532 F:      drivers/leds/leds-blinkm.c
3533
3534 BLOCK LAYER
3535 M:      Jens Axboe <axboe@kernel.dk>
3536 L:      linux-block@vger.kernel.org
3537 S:      Maintained
3538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3539 F:      Documentation/ABI/stable/sysfs-block
3540 F:      Documentation/block/
3541 F:      block/
3542 F:      drivers/block/
3543 F:      include/linux/bio.h
3544 F:      include/linux/blk*
3545 F:      kernel/trace/blktrace.c
3546 F:      lib/sbitmap.c
3547
3548 BLOCK2MTD DRIVER
3549 M:      Joern Engel <joern@lazybastard.org>
3550 L:      linux-mtd@lists.infradead.org
3551 S:      Maintained
3552 F:      drivers/mtd/devices/block2mtd.c
3553
3554 BLUETOOTH DRIVERS
3555 M:      Marcel Holtmann <marcel@holtmann.org>
3556 M:      Johan Hedberg <johan.hedberg@gmail.com>
3557 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3558 L:      linux-bluetooth@vger.kernel.org
3559 S:      Supported
3560 W:      http://www.bluez.org/
3561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3563 F:      drivers/bluetooth/
3564
3565 BLUETOOTH SUBSYSTEM
3566 M:      Marcel Holtmann <marcel@holtmann.org>
3567 M:      Johan Hedberg <johan.hedberg@gmail.com>
3568 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3569 L:      linux-bluetooth@vger.kernel.org
3570 S:      Supported
3571 W:      http://www.bluez.org/
3572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3574 F:      include/net/bluetooth/
3575 F:      net/bluetooth/
3576
3577 BONDING DRIVER
3578 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3579 M:      Veaceslav Falico <vfalico@gmail.com>
3580 M:      Andy Gospodarek <andy@greyhouse.net>
3581 L:      netdev@vger.kernel.org
3582 S:      Supported
3583 W:      http://sourceforge.net/projects/bonding/
3584 F:      Documentation/networking/bonding.rst
3585 F:      drivers/net/bonding/
3586 F:      include/net/bond*
3587 F:      include/uapi/linux/if_bonding.h
3588
3589 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3590 M:      Dan Robertson <dan@dlrobertson.com>
3591 L:      linux-iio@vger.kernel.org
3592 S:      Maintained
3593 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3594 F:      drivers/iio/accel/bma400*
3595
3596 BPF (Safe dynamic programs and tools)
3597 M:      Alexei Starovoitov <ast@kernel.org>
3598 M:      Daniel Borkmann <daniel@iogearbox.net>
3599 M:      Andrii Nakryiko <andrii@kernel.org>
3600 R:      Martin KaFai Lau <kafai@fb.com>
3601 R:      Song Liu <songliubraving@fb.com>
3602 R:      Yonghong Song <yhs@fb.com>
3603 R:      John Fastabend <john.fastabend@gmail.com>
3604 R:      KP Singh <kpsingh@kernel.org>
3605 L:      netdev@vger.kernel.org
3606 L:      bpf@vger.kernel.org
3607 S:      Supported
3608 W:      https://bpf.io/
3609 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3612 F:      Documentation/bpf/
3613 F:      Documentation/networking/filter.rst
3614 F:      Documentation/userspace-api/ebpf/
3615 F:      arch/*/net/*
3616 F:      include/linux/bpf*
3617 F:      include/linux/btf*
3618 F:      include/linux/filter.h
3619 F:      include/trace/events/xdp.h
3620 F:      include/uapi/linux/bpf*
3621 F:      include/uapi/linux/btf*
3622 F:      include/uapi/linux/filter.h
3623 F:      kernel/bpf/
3624 F:      kernel/trace/bpf_trace.c
3625 F:      lib/test_bpf.c
3626 F:      net/bpf/
3627 F:      net/core/filter.c
3628 F:      net/sched/act_bpf.c
3629 F:      net/sched/cls_bpf.c
3630 F:      samples/bpf/
3631 F:      scripts/bpf_doc.py
3632 F:      scripts/pahole-flags.sh
3633 F:      scripts/pahole-version.sh
3634 F:      tools/bpf/
3635 F:      tools/lib/bpf/
3636 F:      tools/testing/selftests/bpf/
3637 N:      bpf
3638 K:      bpf
3639
3640 BPF JIT for ARM
3641 M:      Shubham Bansal <illusionist.neo@gmail.com>
3642 L:      netdev@vger.kernel.org
3643 L:      bpf@vger.kernel.org
3644 S:      Maintained
3645 F:      arch/arm/net/
3646
3647 BPF JIT for ARM64
3648 M:      Daniel Borkmann <daniel@iogearbox.net>
3649 M:      Alexei Starovoitov <ast@kernel.org>
3650 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3651 L:      netdev@vger.kernel.org
3652 L:      bpf@vger.kernel.org
3653 S:      Supported
3654 F:      arch/arm64/net/
3655
3656 BPF JIT for MIPS (32-BIT AND 64-BIT)
3657 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3658 M:      Paul Burton <paulburton@kernel.org>
3659 L:      netdev@vger.kernel.org
3660 L:      bpf@vger.kernel.org
3661 S:      Maintained
3662 F:      arch/mips/net/
3663
3664 BPF JIT for NFP NICs
3665 M:      Jakub Kicinski <kuba@kernel.org>
3666 L:      netdev@vger.kernel.org
3667 L:      bpf@vger.kernel.org
3668 S:      Supported
3669 F:      drivers/net/ethernet/netronome/nfp/bpf/
3670
3671 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3672 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3673 L:      netdev@vger.kernel.org
3674 L:      bpf@vger.kernel.org
3675 S:      Maintained
3676 F:      arch/powerpc/net/
3677
3678 BPF JIT for RISC-V (32-bit)
3679 M:      Luke Nelson <luke.r.nels@gmail.com>
3680 M:      Xi Wang <xi.wang@gmail.com>
3681 L:      netdev@vger.kernel.org
3682 L:      bpf@vger.kernel.org
3683 S:      Maintained
3684 F:      arch/riscv/net/
3685 X:      arch/riscv/net/bpf_jit_comp64.c
3686
3687 BPF JIT for RISC-V (64-bit)
3688 M:      Björn Töpel <bjorn@kernel.org>
3689 L:      netdev@vger.kernel.org
3690 L:      bpf@vger.kernel.org
3691 S:      Maintained
3692 F:      arch/riscv/net/
3693 X:      arch/riscv/net/bpf_jit_comp32.c
3694
3695 BPF JIT for S390
3696 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3697 M:      Heiko Carstens <hca@linux.ibm.com>
3698 M:      Vasily Gorbik <gor@linux.ibm.com>
3699 L:      netdev@vger.kernel.org
3700 L:      bpf@vger.kernel.org
3701 S:      Maintained
3702 F:      arch/s390/net/
3703 X:      arch/s390/net/pnet.c
3704
3705 BPF JIT for SPARC (32-BIT AND 64-BIT)
3706 M:      David S. Miller <davem@davemloft.net>
3707 L:      netdev@vger.kernel.org
3708 L:      bpf@vger.kernel.org
3709 S:      Maintained
3710 F:      arch/sparc/net/
3711
3712 BPF JIT for X86 32-BIT
3713 M:      Wang YanQing <udknight@gmail.com>
3714 L:      netdev@vger.kernel.org
3715 L:      bpf@vger.kernel.org
3716 S:      Maintained
3717 F:      arch/x86/net/bpf_jit_comp32.c
3718
3719 BPF JIT for X86 64-BIT
3720 M:      Alexei Starovoitov <ast@kernel.org>
3721 M:      Daniel Borkmann <daniel@iogearbox.net>
3722 L:      netdev@vger.kernel.org
3723 L:      bpf@vger.kernel.org
3724 S:      Supported
3725 F:      arch/x86/net/
3726 X:      arch/x86/net/bpf_jit_comp32.c
3727
3728 BPF LSM (Security Audit and Enforcement using BPF)
3729 M:      KP Singh <kpsingh@kernel.org>
3730 R:      Florent Revest <revest@chromium.org>
3731 R:      Brendan Jackman <jackmanb@chromium.org>
3732 L:      bpf@vger.kernel.org
3733 S:      Maintained
3734 F:      Documentation/bpf/prog_lsm.rst
3735 F:      include/linux/bpf_lsm.h
3736 F:      kernel/bpf/bpf_lsm.c
3737 F:      security/bpf/
3738
3739 BROADCOM B44 10/100 ETHERNET DRIVER
3740 M:      Michael Chan <michael.chan@broadcom.com>
3741 L:      netdev@vger.kernel.org
3742 S:      Supported
3743 F:      drivers/net/ethernet/broadcom/b44.*
3744
3745 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3746 M:      Florian Fainelli <f.fainelli@gmail.com>
3747 L:      netdev@vger.kernel.org
3748 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3749 S:      Supported
3750 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3751 F:      drivers/net/dsa/b53/*
3752 F:      drivers/net/dsa/bcm_sf2*
3753 F:      include/linux/dsa/brcm.h
3754 F:      include/linux/platform_data/b53.h
3755
3756 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3757 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3758 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3759 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3761 S:      Maintained
3762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3763 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3764 F:      drivers/pci/controller/pcie-brcmstb.c
3765 F:      drivers/staging/vc04_services
3766 N:      bcm2711
3767 N:      bcm283*
3768
3769 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3770 M:      Florian Fainelli <f.fainelli@gmail.com>
3771 M:      Ray Jui <rjui@broadcom.com>
3772 M:      Scott Branden <sbranden@broadcom.com>
3773 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3774 S:      Maintained
3775 T:      git git://github.com/broadcom/mach-bcm
3776 F:      arch/arm/mach-bcm/
3777 N:      bcm281*
3778 N:      bcm113*
3779 N:      bcm216*
3780 N:      kona
3781
3782 BROADCOM BCM47XX MIPS ARCHITECTURE
3783 M:      Hauke Mehrtens <hauke@hauke-m.de>
3784 M:      Rafał Miłecki <zajec5@gmail.com>
3785 L:      linux-mips@vger.kernel.org
3786 S:      Maintained
3787 F:      Documentation/devicetree/bindings/mips/brcm/
3788 F:      arch/mips/bcm47xx/*
3789 F:      arch/mips/include/asm/mach-bcm47xx/*
3790
3791 BROADCOM BCM4908 ETHERNET DRIVER
3792 M:      Rafał Miłecki <rafal@milecki.pl>
3793 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3794 L:      netdev@vger.kernel.org
3795 S:      Maintained
3796 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3797 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3798 F:      drivers/net/ethernet/broadcom/unimac.h
3799
3800 BROADCOM BCM4908 PINMUX DRIVER
3801 M:      Rafał Miłecki <rafal@milecki.pl>
3802 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3803 L:      linux-gpio@vger.kernel.org
3804 S:      Maintained
3805 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3806 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3807
3808 BROADCOM BCM5301X ARM ARCHITECTURE
3809 M:      Florian Fainelli <f.fainelli@gmail.com>
3810 M:      Hauke Mehrtens <hauke@hauke-m.de>
3811 M:      Rafał Miłecki <zajec5@gmail.com>
3812 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3814 S:      Maintained
3815 F:      arch/arm/boot/dts/bcm470*
3816 F:      arch/arm/boot/dts/bcm5301*
3817 F:      arch/arm/boot/dts/bcm953012*
3818 F:      arch/arm/mach-bcm/bcm_5301x.c
3819
3820 BROADCOM BCM53573 ARM ARCHITECTURE
3821 M:      Florian Fainelli <f.fainelli@gmail.com>
3822 M:      Rafał Miłecki <rafal@milecki.pl>
3823 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3825 S:      Maintained
3826 F:      arch/arm/boot/dts/bcm47189*
3827 F:      arch/arm/boot/dts/bcm53573*
3828
3829 BROADCOM BCM63XX ARM ARCHITECTURE
3830 M:      Florian Fainelli <f.fainelli@gmail.com>
3831 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3833 S:      Maintained
3834 T:      git git://github.com/broadcom/stblinux.git
3835 N:      bcm63xx
3836
3837 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3838 M:      Kevin Cernekee <cernekee@gmail.com>
3839 L:      linux-usb@vger.kernel.org
3840 S:      Maintained
3841 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3842
3843 BROADCOM BCM7XXX ARM ARCHITECTURE
3844 M:      Florian Fainelli <f.fainelli@gmail.com>
3845 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3847 S:      Maintained
3848 T:      git git://github.com/broadcom/stblinux.git
3849 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3850 F:      arch/arm/boot/dts/bcm7*.dts*
3851 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3852 F:      arch/arm/mach-bcm/*brcmstb*
3853 F:      arch/arm/mm/cache-b15-rac.c
3854 F:      drivers/bus/brcmstb_gisb.c
3855 F:      drivers/pci/controller/pcie-brcmstb.c
3856 N:      brcmstb
3857 N:      bcm7038
3858 N:      bcm7120
3859
3860 BROADCOM BDC DRIVER
3861 M:      Al Cooper <alcooperx@gmail.com>
3862 L:      linux-usb@vger.kernel.org
3863 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3864 S:      Maintained
3865 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3866 F:      drivers/usb/gadget/udc/bdc/
3867
3868 BROADCOM BMIPS CPUFREQ DRIVER
3869 M:      Markus Mayer <mmayer@broadcom.com>
3870 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3871 L:      linux-pm@vger.kernel.org
3872 S:      Maintained
3873 F:      drivers/cpufreq/bmips-cpufreq.c
3874
3875 BROADCOM BMIPS MIPS ARCHITECTURE
3876 M:      Florian Fainelli <f.fainelli@gmail.com>
3877 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3878 L:      linux-mips@vger.kernel.org
3879 S:      Maintained
3880 T:      git git://github.com/broadcom/stblinux.git
3881 F:      arch/mips/bmips/*
3882 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3883 F:      arch/mips/include/asm/mach-bmips/*
3884 F:      arch/mips/kernel/*bmips*
3885 F:      drivers/soc/bcm/bcm63xx
3886 F:      drivers/irqchip/irq-bcm63*
3887 F:      drivers/irqchip/irq-bcm7*
3888 F:      drivers/irqchip/irq-brcmstb*
3889 F:      include/linux/bcm963xx_nvram.h
3890 F:      include/linux/bcm963xx_tag.h
3891
3892 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3893 M:      Rasesh Mody <rmody@marvell.com>
3894 M:      GR-Linux-NIC-Dev@marvell.com
3895 L:      netdev@vger.kernel.org
3896 S:      Supported
3897 F:      drivers/net/ethernet/broadcom/bnx2.*
3898 F:      drivers/net/ethernet/broadcom/bnx2_*
3899
3900 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3901 M:      Saurav Kashyap <skashyap@marvell.com>
3902 M:      Javed Hasan <jhasan@marvell.com>
3903 M:      GR-QLogic-Storage-Upstream@marvell.com
3904 L:      linux-scsi@vger.kernel.org
3905 S:      Supported
3906 F:      drivers/scsi/bnx2fc/
3907
3908 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3909 M:      Nilesh Javali <njavali@marvell.com>
3910 M:      Manish Rangankar <mrangankar@marvell.com>
3911 M:      GR-QLogic-Storage-Upstream@marvell.com
3912 L:      linux-scsi@vger.kernel.org
3913 S:      Supported
3914 F:      drivers/scsi/bnx2i/
3915
3916 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3917 M:      Ariel Elior <aelior@marvell.com>
3918 M:      Sudarsana Kalluru <skalluru@marvell.com>
3919 M:      Manish Chopra <manishc@marvell.com>
3920 L:      netdev@vger.kernel.org
3921 S:      Supported
3922 F:      drivers/net/ethernet/broadcom/bnx2x/
3923
3924 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3925 M:      Michael Chan <michael.chan@broadcom.com>
3926 L:      netdev@vger.kernel.org
3927 S:      Supported
3928 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
3929 F:      drivers/net/ethernet/broadcom/bnxt/
3930 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
3931
3932 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3933 M:      Arend van Spriel <aspriel@gmail.com>
3934 M:      Franky Lin <franky.lin@broadcom.com>
3935 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3936 L:      linux-wireless@vger.kernel.org
3937 L:      brcm80211-dev-list.pdl@broadcom.com
3938 L:      SHA-cyfmac-dev-list@infineon.com
3939 S:      Supported
3940 F:      drivers/net/wireless/broadcom/brcm80211/
3941
3942 BROADCOM BRCMSTB GPIO DRIVER
3943 M:      Doug Berger <opendmb@gmail.com>
3944 M:      Florian Fainelli <f.fainelli@gmail.com>
3945 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3946 S:      Supported
3947 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3948 F:      drivers/gpio/gpio-brcmstb.c
3949
3950 BROADCOM BRCMSTB I2C DRIVER
3951 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3952 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3953 L:      linux-i2c@vger.kernel.org
3954 S:      Supported
3955 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3956 F:      drivers/i2c/busses/i2c-brcmstb.c
3957
3958 BROADCOM BRCMSTB UART DRIVER
3959 M:      Al Cooper <alcooperx@gmail.com>
3960 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3961 L:      linux-serial@vger.kernel.org
3962 S:      Maintained
3963 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3964 F:      drivers/tty/serial/8250/8250_bcm7271.c
3965
3966 BROADCOM BRCMSTB USB EHCI DRIVER
3967 M:      Al Cooper <alcooperx@gmail.com>
3968 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3969 L:      linux-usb@vger.kernel.org
3970 S:      Maintained
3971 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3972 F:      drivers/usb/host/ehci-brcm.*
3973
3974 BROADCOM BRCMSTB USB PIN MAP DRIVER
3975 M:      Al Cooper <alcooperx@gmail.com>
3976 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3977 L:      linux-usb@vger.kernel.org
3978 S:      Maintained
3979 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3980 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3981
3982 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3983 M:      Al Cooper <alcooperx@gmail.com>
3984 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3985 L:      linux-kernel@vger.kernel.org
3986 S:      Maintained
3987 F:      drivers/phy/broadcom/phy-brcm-usb*
3988
3989 BROADCOM ETHERNET PHY DRIVERS
3990 M:      Florian Fainelli <f.fainelli@gmail.com>
3991 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3992 L:      netdev@vger.kernel.org
3993 S:      Supported
3994 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3995 F:      drivers/net/phy/bcm*.[ch]
3996 F:      drivers/net/phy/broadcom.c
3997 F:      include/linux/brcmphy.h
3998
3999 BROADCOM GENET ETHERNET DRIVER
4000 M:      Doug Berger <opendmb@gmail.com>
4001 M:      Florian Fainelli <f.fainelli@gmail.com>
4002 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4003 L:      netdev@vger.kernel.org
4004 S:      Supported
4005 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4006 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4007 F:      drivers/net/ethernet/broadcom/genet/
4008 F:      drivers/net/ethernet/broadcom/unimac.h
4009 F:      drivers/net/mdio/mdio-bcm-unimac.c
4010 F:      include/linux/platform_data/bcmgenet.h
4011 F:      include/linux/platform_data/mdio-bcm-unimac.h
4012
4013 BROADCOM IPROC ARM ARCHITECTURE
4014 M:      Ray Jui <rjui@broadcom.com>
4015 M:      Scott Branden <sbranden@broadcom.com>
4016 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4018 S:      Maintained
4019 T:      git git://github.com/broadcom/stblinux.git
4020 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4021 F:      arch/arm64/boot/dts/broadcom/stingray/*
4022 F:      drivers/clk/bcm/clk-ns*
4023 F:      drivers/clk/bcm/clk-sr*
4024 F:      drivers/pinctrl/bcm/pinctrl-ns*
4025 F:      include/dt-bindings/clock/bcm-sr*
4026 N:      iproc
4027 N:      cygnus
4028 N:      bcm[-_]nsp
4029 N:      bcm9113*
4030 N:      bcm9583*
4031 N:      bcm9585*
4032 N:      bcm9586*
4033 N:      bcm988312
4034 N:      bcm113*
4035 N:      bcm583*
4036 N:      bcm585*
4037 N:      bcm586*
4038 N:      bcm88312
4039 N:      hr2
4040 N:      stingray
4041
4042 BROADCOM IPROC GBIT ETHERNET DRIVER
4043 M:      Rafał Miłecki <rafal@milecki.pl>
4044 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4045 L:      netdev@vger.kernel.org
4046 S:      Maintained
4047 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4048 F:      drivers/net/ethernet/broadcom/bgmac*
4049 F:      drivers/net/ethernet/broadcom/unimac.h
4050
4051 BROADCOM KONA GPIO DRIVER
4052 M:      Ray Jui <rjui@broadcom.com>
4053 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4054 S:      Supported
4055 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4056 F:      drivers/gpio/gpio-bcm-kona.c
4057
4058 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4059 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4060 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4061 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4062 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4063 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4064 L:      linux-scsi@vger.kernel.org
4065 S:      Supported
4066 W:      https://www.broadcom.com/support/storage
4067 F:      drivers/scsi/mpi3mr/
4068
4069 BROADCOM NETXTREME-E ROCE DRIVER
4070 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4071 L:      linux-rdma@vger.kernel.org
4072 S:      Supported
4073 W:      http://www.broadcom.com
4074 F:      drivers/infiniband/hw/bnxt_re/
4075 F:      include/uapi/rdma/bnxt_re-abi.h
4076
4077 BROADCOM NVRAM DRIVER
4078 M:      Rafał Miłecki <zajec5@gmail.com>
4079 L:      linux-mips@vger.kernel.org
4080 S:      Maintained
4081 F:      drivers/firmware/broadcom/*
4082
4083 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4084 M:      Rafał Miłecki <rafal@milecki.pl>
4085 M:      Florian Fainelli <f.fainelli@gmail.com>
4086 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4087 L:      linux-pm@vger.kernel.org
4088 S:      Maintained
4089 T:      git git://github.com/broadcom/stblinux.git
4090 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4091 F:      include/dt-bindings/soc/bcm-pmb.h
4092
4093 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4094 M:      Rafał Miłecki <zajec5@gmail.com>
4095 L:      linux-wireless@vger.kernel.org
4096 S:      Maintained
4097 F:      drivers/bcma/
4098 F:      include/linux/bcma/
4099
4100 BROADCOM SPI DRIVER
4101 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4102 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4103 S:      Maintained
4104 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4105 F:      drivers/spi/spi-bcm-qspi.*
4106 F:      drivers/spi/spi-brcmstb-qspi.c
4107 F:      drivers/spi/spi-iproc-qspi.c
4108
4109 BROADCOM STB AVS CPUFREQ DRIVER
4110 M:      Markus Mayer <mmayer@broadcom.com>
4111 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4112 L:      linux-pm@vger.kernel.org
4113 S:      Maintained
4114 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4115 F:      drivers/cpufreq/brcmstb*
4116
4117 BROADCOM STB AVS TMON DRIVER
4118 M:      Markus Mayer <mmayer@broadcom.com>
4119 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4120 L:      linux-pm@vger.kernel.org
4121 S:      Maintained
4122 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4123 F:      drivers/thermal/broadcom/brcmstb*
4124
4125 BROADCOM STB DPFE DRIVER
4126 M:      Markus Mayer <mmayer@broadcom.com>
4127 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4129 S:      Maintained
4130 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4131 F:      drivers/memory/brcmstb_dpfe.c
4132
4133 BROADCOM STB NAND FLASH DRIVER
4134 M:      Brian Norris <computersforpeace@gmail.com>
4135 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4136 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4137 L:      linux-mtd@lists.infradead.org
4138 S:      Maintained
4139 F:      drivers/mtd/nand/raw/brcmnand/
4140 F:      include/linux/platform_data/brcmnand.h
4141
4142 BROADCOM STB PCIE DRIVER
4143 M:      Jim Quinlan <jim2101024@gmail.com>
4144 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4145 M:      Florian Fainelli <f.fainelli@gmail.com>
4146 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4147 L:      linux-pci@vger.kernel.org
4148 S:      Maintained
4149 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4150 F:      drivers/pci/controller/pcie-brcmstb.c
4151
4152 BROADCOM SYSTEMPORT ETHERNET DRIVER
4153 M:      Florian Fainelli <f.fainelli@gmail.com>
4154 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4155 L:      netdev@vger.kernel.org
4156 S:      Supported
4157 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4158 F:      drivers/net/ethernet/broadcom/unimac.h
4159 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4160
4161 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4162 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4163 M:      Prashant Sreedharan <prashant@broadcom.com>
4164 M:      Michael Chan <mchan@broadcom.com>
4165 L:      netdev@vger.kernel.org
4166 S:      Supported
4167 F:      drivers/net/ethernet/broadcom/tg3.*
4168
4169 BROADCOM VK DRIVER
4170 M:      Scott Branden <scott.branden@broadcom.com>
4171 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4172 S:      Supported
4173 F:      drivers/misc/bcm-vk/
4174 F:      include/uapi/linux/misc/bcm_vk.h
4175
4176 BROCADE BFA FC SCSI DRIVER
4177 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4178 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4179 L:      linux-scsi@vger.kernel.org
4180 S:      Supported
4181 F:      drivers/scsi/bfa/
4182
4183 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4184 M:      Rasesh Mody <rmody@marvell.com>
4185 M:      Sudarsana Kalluru <skalluru@marvell.com>
4186 M:      GR-Linux-NIC-Dev@marvell.com
4187 L:      netdev@vger.kernel.org
4188 S:      Supported
4189 F:      drivers/net/ethernet/brocade/bna/
4190
4191 BSG (block layer generic sg v4 driver)
4192 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4193 L:      linux-scsi@vger.kernel.org
4194 S:      Supported
4195 F:      block/bsg.c
4196 F:      include/linux/bsg.h
4197 F:      include/uapi/linux/bsg.h
4198
4199 BT87X AUDIO DRIVER
4200 M:      Clemens Ladisch <clemens@ladisch.de>
4201 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4202 S:      Maintained
4203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4204 F:      Documentation/sound/cards/bt87x.rst
4205 F:      sound/pci/bt87x.c
4206
4207 BT8XXGPIO DRIVER
4208 M:      Michael Buesch <m@bues.ch>
4209 S:      Maintained
4210 W:      http://bu3sch.de/btgpio.php
4211 F:      drivers/gpio/gpio-bt8xx.c
4212
4213 BTRFS FILE SYSTEM
4214 M:      Chris Mason <clm@fb.com>
4215 M:      Josef Bacik <josef@toxicpanda.com>
4216 M:      David Sterba <dsterba@suse.com>
4217 L:      linux-btrfs@vger.kernel.org
4218 S:      Maintained
4219 W:      http://btrfs.wiki.kernel.org/
4220 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4221 C:      irc://irc.libera.chat/btrfs
4222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4223 F:      Documentation/filesystems/btrfs.rst
4224 F:      fs/btrfs/
4225 F:      include/linux/btrfs*
4226 F:      include/uapi/linux/btrfs*
4227
4228 BTTV VIDEO4LINUX DRIVER
4229 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4230 L:      linux-media@vger.kernel.org
4231 S:      Odd fixes
4232 W:      https://linuxtv.org
4233 T:      git git://linuxtv.org/media_tree.git
4234 F:      Documentation/driver-api/media/drivers/bttv*
4235 F:      drivers/media/pci/bt8xx/bttv*
4236
4237 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4238 M:      Chanwoo Choi <cw00.choi@samsung.com>
4239 L:      linux-pm@vger.kernel.org
4240 L:      linux-samsung-soc@vger.kernel.org
4241 S:      Maintained
4242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4243 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4244 F:      drivers/devfreq/exynos-bus.c
4245
4246 BUSLOGIC SCSI DRIVER
4247 M:      Khalid Aziz <khalid@gonehiking.org>
4248 L:      linux-scsi@vger.kernel.org
4249 S:      Maintained
4250 F:      drivers/scsi/BusLogic.*
4251 F:      drivers/scsi/FlashPoint.*
4252
4253 C-MEDIA CMI8788 DRIVER
4254 M:      Clemens Ladisch <clemens@ladisch.de>
4255 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4256 S:      Maintained
4257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4258 F:      sound/pci/oxygen/
4259
4260 C-SKY ARCHITECTURE
4261 M:      Guo Ren <guoren@kernel.org>
4262 L:      linux-csky@vger.kernel.org
4263 S:      Supported
4264 T:      git https://github.com/c-sky/csky-linux.git
4265 F:      Documentation/devicetree/bindings/csky/
4266 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4267 F:      Documentation/devicetree/bindings/timer/csky,*
4268 F:      arch/csky/
4269 F:      drivers/clocksource/timer-gx6605s.c
4270 F:      drivers/clocksource/timer-mp-csky.c
4271 F:      drivers/irqchip/irq-csky-*
4272 N:      csky
4273 K:      csky
4274
4275 CA8210 IEEE-802.15.4 RADIO DRIVER
4276 L:      linux-wpan@vger.kernel.org
4277 S:      Orphan
4278 W:      https://github.com/Cascoda/ca8210-linux.git
4279 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4280 F:      drivers/net/ieee802154/ca8210.c
4281
4282 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4283 M:      Damien Le Moal <damien.lemoal@wdc.com>
4284 L:      linux-riscv@lists.infradead.org
4285 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4286 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4287 F:      drivers/pinctrl/pinctrl-k210.c
4288
4289 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4290 M:      Damien Le Moal <damien.lemoal@wdc.com>
4291 L:      linux-kernel@vger.kernel.org
4292 L:      linux-riscv@lists.infradead.org
4293 S:      Maintained
4294 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4295 F:      drivers/reset/reset-k210.c
4296
4297 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4298 M:      Damien Le Moal <damien.lemoal@wdc.com>
4299 L:      linux-riscv@lists.infradead.org
4300 S:      Maintained
4301 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4302 F:      drivers/soc/canaan/
4303 F:      include/soc/canaan/
4304
4305 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4306 M:      David Howells <dhowells@redhat.com>
4307 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4308 S:      Supported
4309 F:      Documentation/filesystems/caching/cachefiles.rst
4310 F:      fs/cachefiles/
4311
4312 CADENCE MIPI-CSI2 BRIDGES
4313 M:      Maxime Ripard <mripard@kernel.org>
4314 L:      linux-media@vger.kernel.org
4315 S:      Maintained
4316 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4317 F:      drivers/media/platform/cadence/cdns-csi2*
4318
4319 CADENCE NAND DRIVER
4320 L:      linux-mtd@lists.infradead.org
4321 S:      Orphan
4322 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4323 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4324
4325 CADENCE USB3 DRD IP DRIVER
4326 M:      Peter Chen <peter.chen@kernel.org>
4327 M:      Pawel Laszczak <pawell@cadence.com>
4328 R:      Roger Quadros <rogerq@kernel.org>
4329 R:      Aswath Govindraju <a-govindraju@ti.com>
4330 L:      linux-usb@vger.kernel.org
4331 S:      Maintained
4332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4333 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4334 F:      drivers/usb/cdns3/
4335 X:      drivers/usb/cdns3/cdnsp*
4336
4337 CADENCE USBSSP DRD IP DRIVER
4338 M:      Pawel Laszczak <pawell@cadence.com>
4339 L:      linux-usb@vger.kernel.org
4340 S:      Maintained
4341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4342 F:      drivers/usb/cdns3/
4343 X:      drivers/usb/cdns3/cdns3*
4344
4345 CADET FM/AM RADIO RECEIVER DRIVER
4346 M:      Hans Verkuil <hverkuil@xs4all.nl>
4347 L:      linux-media@vger.kernel.org
4348 S:      Maintained
4349 W:      https://linuxtv.org
4350 T:      git git://linuxtv.org/media_tree.git
4351 F:      drivers/media/radio/radio-cadet*
4352
4353 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4354 L:      linux-media@vger.kernel.org
4355 S:      Orphan
4356 T:      git git://linuxtv.org/media_tree.git
4357 F:      Documentation/admin-guide/media/cafe_ccic*
4358 F:      drivers/media/platform/marvell/
4359
4360 CAIF NETWORK LAYER
4361 L:      netdev@vger.kernel.org
4362 S:      Orphan
4363 F:      Documentation/networking/caif/
4364 F:      drivers/net/caif/
4365 F:      include/net/caif/
4366 F:      include/uapi/linux/caif/
4367 F:      net/caif/
4368
4369 CAKE QDISC
4370 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4371 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4372 S:      Maintained
4373 F:      net/sched/sch_cake.c
4374
4375 CAN NETWORK DRIVERS
4376 M:      Wolfgang Grandegger <wg@grandegger.com>
4377 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4378 L:      linux-can@vger.kernel.org
4379 S:      Maintained
4380 W:      https://github.com/linux-can
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4383 F:      Documentation/devicetree/bindings/net/can/
4384 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4385 F:      drivers/net/can/
4386 F:      drivers/phy/phy-can-transceiver.c
4387 F:      include/linux/can/bittiming.h
4388 F:      include/linux/can/dev.h
4389 F:      include/linux/can/led.h
4390 F:      include/linux/can/length.h
4391 F:      include/linux/can/platform/
4392 F:      include/linux/can/rx-offload.h
4393 F:      include/uapi/linux/can/error.h
4394 F:      include/uapi/linux/can/netlink.h
4395 F:      include/uapi/linux/can/vxcan.h
4396
4397 CAN NETWORK LAYER
4398 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4399 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4400 L:      linux-can@vger.kernel.org
4401 S:      Maintained
4402 W:      https://github.com/linux-can
4403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4405 F:      Documentation/networking/can.rst
4406 F:      include/linux/can/can-ml.h
4407 F:      include/linux/can/core.h
4408 F:      include/linux/can/skb.h
4409 F:      include/net/netns/can.h
4410 F:      include/uapi/linux/can.h
4411 F:      include/uapi/linux/can/bcm.h
4412 F:      include/uapi/linux/can/gw.h
4413 F:      include/uapi/linux/can/isotp.h
4414 F:      include/uapi/linux/can/raw.h
4415 F:      net/can/
4416
4417 CAN-J1939 NETWORK LAYER
4418 M:      Robin van der Gracht <robin@protonic.nl>
4419 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4420 R:      kernel@pengutronix.de
4421 L:      linux-can@vger.kernel.org
4422 S:      Maintained
4423 F:      Documentation/networking/j1939.rst
4424 F:      include/uapi/linux/can/j1939.h
4425 F:      net/can/j1939/
4426
4427 CAPABILITIES
4428 M:      Serge Hallyn <serge@hallyn.com>
4429 L:      linux-security-module@vger.kernel.org
4430 S:      Supported
4431 F:      include/linux/capability.h
4432 F:      include/uapi/linux/capability.h
4433 F:      kernel/capability.c
4434 F:      security/commoncap.c
4435
4436 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4437 M:      Kevin Tsai <ktsai@capellamicro.com>
4438 S:      Maintained
4439 F:      drivers/iio/light/cm*
4440
4441 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4442 M:      Christian Lamparter <chunkeey@googlemail.com>
4443 L:      linux-wireless@vger.kernel.org
4444 S:      Maintained
4445 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4446 F:      drivers/net/wireless/ath/carl9170/
4447
4448 CAVIUM I2C DRIVER
4449 M:      Robert Richter <rric@kernel.org>
4450 S:      Odd Fixes
4451 W:      http://www.marvell.com
4452 F:      drivers/i2c/busses/i2c-octeon*
4453 F:      drivers/i2c/busses/i2c-thunderx*
4454
4455 CAVIUM LIQUIDIO NETWORK DRIVER
4456 M:      Derek Chickles <dchickles@marvell.com>
4457 M:      Satanand Burla <sburla@marvell.com>
4458 M:      Felix Manlunas <fmanlunas@marvell.com>
4459 L:      netdev@vger.kernel.org
4460 S:      Supported
4461 W:      http://www.marvell.com
4462 F:      drivers/net/ethernet/cavium/liquidio/
4463
4464 CAVIUM MMC DRIVER
4465 M:      Robert Richter <rric@kernel.org>
4466 S:      Odd Fixes
4467 W:      http://www.marvell.com
4468 F:      drivers/mmc/host/cavium*
4469
4470 CAVIUM OCTEON-TX CRYPTO DRIVER
4471 M:      George Cherian <gcherian@marvell.com>
4472 L:      linux-crypto@vger.kernel.org
4473 S:      Supported
4474 W:      http://www.marvell.com
4475 F:      drivers/crypto/cavium/cpt/
4476
4477 CAVIUM THUNDERX2 ARM64 SOC
4478 M:      Robert Richter <rric@kernel.org>
4479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4480 S:      Odd Fixes
4481 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4482 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4483
4484 CBS/ETF/TAPRIO QDISCS
4485 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4486 S:      Maintained
4487 L:      netdev@vger.kernel.org
4488 F:      net/sched/sch_cbs.c
4489 F:      net/sched/sch_etf.c
4490 F:      net/sched/sch_taprio.c
4491
4492 CC2520 IEEE-802.15.4 RADIO DRIVER
4493 M:      Varka Bhadram <varkabhadram@gmail.com>
4494 L:      linux-wpan@vger.kernel.org
4495 S:      Maintained
4496 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4497 F:      drivers/net/ieee802154/cc2520.c
4498 F:      include/linux/spi/cc2520.h
4499
4500 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4501 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4502 L:      linux-crypto@vger.kernel.org
4503 S:      Supported
4504 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4505 F:      drivers/crypto/ccree/
4506
4507 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4508 M:      Hadar Gat <hadar.gat@arm.com>
4509 L:      linux-crypto@vger.kernel.org
4510 S:      Supported
4511 F:      drivers/char/hw_random/cctrng.c
4512 F:      drivers/char/hw_random/cctrng.h
4513 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4514 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4515
4516 CEC FRAMEWORK
4517 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4518 L:      linux-media@vger.kernel.org
4519 S:      Supported
4520 W:      http://linuxtv.org
4521 T:      git git://linuxtv.org/media_tree.git
4522 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4523 F:      Documentation/devicetree/bindings/media/cec.txt
4524 F:      Documentation/driver-api/media/cec-core.rst
4525 F:      Documentation/userspace-api/media/cec
4526 F:      drivers/media/cec/
4527 F:      drivers/media/rc/keymaps/rc-cec.c
4528 F:      include/media/cec-notifier.h
4529 F:      include/media/cec.h
4530 F:      include/uapi/linux/cec-funcs.h
4531 F:      include/uapi/linux/cec.h
4532
4533 CEC GPIO DRIVER
4534 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4535 L:      linux-media@vger.kernel.org
4536 S:      Supported
4537 W:      http://linuxtv.org
4538 T:      git git://linuxtv.org/media_tree.git
4539 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4540 F:      drivers/media/cec/platform/cec-gpio/
4541
4542 CELL BROADBAND ENGINE ARCHITECTURE
4543 M:      Arnd Bergmann <arnd@arndb.de>
4544 L:      linuxppc-dev@lists.ozlabs.org
4545 S:      Supported
4546 W:      http://www.ibm.com/developerworks/power/cell/
4547 F:      arch/powerpc/include/asm/cell*.h
4548 F:      arch/powerpc/include/asm/spu*.h
4549 F:      arch/powerpc/include/uapi/asm/spu*.h
4550 F:      arch/powerpc/platforms/cell/
4551
4552 CELLWISE CW2015 BATTERY DRIVER
4553 M:      Tobias Schrammm <t.schramm@manjaro.org>
4554 S:      Maintained
4555 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4556 F:      drivers/power/supply/cw2015_battery.c
4557
4558 CEPH COMMON CODE (LIBCEPH)
4559 M:      Ilya Dryomov <idryomov@gmail.com>
4560 M:      Jeff Layton <jlayton@kernel.org>
4561 M:      Xiubo Li <xiubli@redhat.com>
4562 L:      ceph-devel@vger.kernel.org
4563 S:      Supported
4564 W:      http://ceph.com/
4565 T:      git git://github.com/ceph/ceph-client.git
4566 F:      include/linux/ceph/
4567 F:      include/linux/crush/
4568 F:      net/ceph/
4569
4570 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4571 M:      Jeff Layton <jlayton@kernel.org>
4572 M:      Xiubo Li <xiubli@redhat.com>
4573 M:      Ilya Dryomov <idryomov@gmail.com>
4574 L:      ceph-devel@vger.kernel.org
4575 S:      Supported
4576 W:      http://ceph.com/
4577 T:      git git://github.com/ceph/ceph-client.git
4578 F:      Documentation/filesystems/ceph.rst
4579 F:      fs/ceph/
4580
4581 CERTIFICATE HANDLING
4582 M:      David Howells <dhowells@redhat.com>
4583 M:      David Woodhouse <dwmw2@infradead.org>
4584 L:      keyrings@vger.kernel.org
4585 S:      Maintained
4586 F:      Documentation/admin-guide/module-signing.rst
4587 F:      certs/
4588 F:      scripts/check-blacklist-hashes.awk
4589 F:      scripts/sign-file.c
4590 F:      tools/certs/
4591
4592 CFAG12864B LCD DRIVER
4593 M:      Miguel Ojeda <ojeda@kernel.org>
4594 S:      Maintained
4595 F:      drivers/auxdisplay/cfag12864b.c
4596 F:      include/linux/cfag12864b.h
4597
4598 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4599 M:      Miguel Ojeda <ojeda@kernel.org>
4600 S:      Maintained
4601 F:      drivers/auxdisplay/cfag12864bfb.c
4602 F:      include/linux/cfag12864b.h
4603
4604 CHAR and MISC DRIVERS
4605 M:      Arnd Bergmann <arnd@arndb.de>
4606 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4607 S:      Supported
4608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4609 F:      drivers/char/
4610 F:      drivers/misc/
4611 F:      include/linux/miscdevice.h
4612 X:      drivers/char/agp/
4613 X:      drivers/char/hw_random/
4614 X:      drivers/char/ipmi/
4615 X:      drivers/char/random.c
4616 X:      drivers/char/tpm/
4617
4618 CHECKPATCH
4619 M:      Andy Whitcroft <apw@canonical.com>
4620 M:      Joe Perches <joe@perches.com>
4621 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4622 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4623 S:      Maintained
4624 F:      scripts/checkpatch.pl
4625
4626 CHECKPATCH DOCUMENTATION
4627 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4628 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4629 R:      Joe Perches <joe@perches.com>
4630 S:      Maintained
4631 F:      Documentation/dev-tools/checkpatch.rst
4632
4633 CHINESE DOCUMENTATION
4634 M:      Alex Shi <alexs@kernel.org>
4635 S:      Maintained
4636 F:      Documentation/translations/zh_CN/
4637
4638 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4639 M:      Peter Chen <peter.chen@kernel.org>
4640 L:      linux-usb@vger.kernel.org
4641 S:      Maintained
4642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4643 F:      drivers/usb/chipidea/
4644
4645 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4646 M:      Hans de Goede <hdegoede@redhat.com>
4647 L:      linux-input@vger.kernel.org
4648 S:      Maintained
4649 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4650 F:      drivers/input/touchscreen/chipone_icn8318.c
4651
4652 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4653 M:      Hans de Goede <hdegoede@redhat.com>
4654 L:      linux-input@vger.kernel.org
4655 S:      Maintained
4656 F:      drivers/input/touchscreen/chipone_icn8505.c
4657
4658 CHROME HARDWARE PLATFORM SUPPORT
4659 M:      Benson Leung <bleung@chromium.org>
4660 L:      chrome-platform@lists.linux.dev
4661 S:      Maintained
4662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4663 F:      drivers/platform/chrome/
4664
4665 CHROMEOS EC CODEC DRIVER
4666 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4667 M:      Tzung-Bi Shih <tzungbi@google.com>
4668 R:      Guenter Roeck <groeck@chromium.org>
4669 L:      chrome-platform@lists.linux.dev
4670 S:      Maintained
4671 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4672 F:      sound/soc/codecs/cros_ec_codec.*
4673
4674 CHROMEOS EC SUBDRIVERS
4675 M:      Benson Leung <bleung@chromium.org>
4676 R:      Guenter Roeck <groeck@chromium.org>
4677 L:      chrome-platform@lists.linux.dev
4678 S:      Maintained
4679 F:      drivers/power/supply/cros_usbpd-charger.c
4680 N:      cros_ec
4681 N:      cros-ec
4682
4683 CHROMEOS EC USB TYPE-C DRIVER
4684 M:      Prashant Malani <pmalani@chromium.org>
4685 L:      chrome-platform@lists.linux.dev
4686 S:      Maintained
4687 F:      drivers/platform/chrome/cros_ec_typec.c
4688
4689 CHROMEOS EC USB PD NOTIFY DRIVER
4690 M:      Prashant Malani <pmalani@chromium.org>
4691 L:      chrome-platform@lists.linux.dev
4692 S:      Maintained
4693 F:      drivers/platform/chrome/cros_usbpd_notify.c
4694 F:      include/linux/platform_data/cros_usbpd_notify.h
4695
4696 CHRONTEL CH7322 CEC DRIVER
4697 M:      Joe Tessler <jrt@google.com>
4698 L:      linux-media@vger.kernel.org
4699 S:      Maintained
4700 T:      git git://linuxtv.org/media_tree.git
4701 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4702 F:      drivers/media/cec/i2c/ch7322.c
4703
4704 CIRRUS LOGIC AUDIO CODEC DRIVERS
4705 M:      James Schulman <james.schulman@cirrus.com>
4706 M:      David Rhodes <david.rhodes@cirrus.com>
4707 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4708 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4709 L:      patches@opensource.cirrus.com
4710 S:      Maintained
4711 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4712 F:      sound/pci/hda/cs*
4713 F:      sound/soc/codecs/cs*
4714
4715 CIRRUS LOGIC DSP FIRMWARE DRIVER
4716 M:      Simon Trimmer <simont@opensource.cirrus.com>
4717 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4718 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4719 L:      patches@opensource.cirrus.com
4720 S:      Supported
4721 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4722 T:      git https://github.com/CirrusLogic/linux-drivers.git
4723 F:      drivers/firmware/cirrus/*
4724 F:      include/linux/firmware/cirrus/*
4725
4726 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4727 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4728 L:      netdev@vger.kernel.org
4729 S:      Maintained
4730 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4731
4732 CIRRUS LOGIC LOCHNAGAR DRIVER
4733 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4734 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4735 L:      patches@opensource.cirrus.com
4736 S:      Supported
4737 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4738 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4739 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4740 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4741 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4742 F:      Documentation/hwmon/lochnagar.rst
4743 F:      drivers/clk/clk-lochnagar.c
4744 F:      drivers/hwmon/lochnagar-hwmon.c
4745 F:      drivers/mfd/lochnagar-i2c.c
4746 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4747 F:      drivers/regulator/lochnagar-regulator.c
4748 F:      include/dt-bindings/clk/lochnagar.h
4749 F:      include/dt-bindings/pinctrl/lochnagar.h
4750 F:      include/linux/mfd/lochnagar*
4751 F:      sound/soc/codecs/lochnagar-sc.c
4752
4753 CIRRUS LOGIC MADERA CODEC DRIVERS
4754 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4755 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4756 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4757 L:      patches@opensource.cirrus.com
4758 S:      Supported
4759 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4760 T:      git https://github.com/CirrusLogic/linux-drivers.git
4761 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4762 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4763 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4764 F:      drivers/gpio/gpio-madera*
4765 F:      drivers/irqchip/irq-madera*
4766 F:      drivers/mfd/cs47l*
4767 F:      drivers/mfd/madera*
4768 F:      drivers/pinctrl/cirrus/*
4769 F:      include/dt-bindings/sound/madera*
4770 F:      include/linux/irqchip/irq-madera*
4771 F:      include/linux/mfd/madera/*
4772 F:      include/sound/madera*
4773 F:      sound/soc/codecs/cs47l*
4774 F:      sound/soc/codecs/madera*
4775
4776 CISCO FCOE HBA DRIVER
4777 M:      Satish Kharat <satishkh@cisco.com>
4778 M:      Sesidhar Baddela <sebaddel@cisco.com>
4779 M:      Karan Tilak Kumar <kartilak@cisco.com>
4780 L:      linux-scsi@vger.kernel.org
4781 S:      Supported
4782 F:      drivers/scsi/fnic/
4783
4784 CISCO SCSI HBA DRIVER
4785 M:      Karan Tilak Kumar <kartilak@cisco.com>
4786 M:      Sesidhar Baddela <sebaddel@cisco.com>
4787 L:      linux-scsi@vger.kernel.org
4788 S:      Supported
4789 F:      drivers/scsi/snic/
4790
4791 CISCO VIC ETHERNET NIC DRIVER
4792 M:      Christian Benvenuti <benve@cisco.com>
4793 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4794 S:      Supported
4795 F:      drivers/net/ethernet/cisco/enic/
4796
4797 CISCO VIC LOW LATENCY NIC DRIVER
4798 M:      Christian Benvenuti <benve@cisco.com>
4799 M:      Nelson Escobar <neescoba@cisco.com>
4800 S:      Supported
4801 F:      drivers/infiniband/hw/usnic/
4802
4803 CLANG-FORMAT FILE
4804 M:      Miguel Ojeda <ojeda@kernel.org>
4805 S:      Maintained
4806 F:      .clang-format
4807
4808 CLANG/LLVM BUILD SUPPORT
4809 M:      Nathan Chancellor <nathan@kernel.org>
4810 M:      Nick Desaulniers <ndesaulniers@google.com>
4811 R:      Tom Rix <trix@redhat.com>
4812 L:      llvm@lists.linux.dev
4813 S:      Supported
4814 W:      https://clangbuiltlinux.github.io/
4815 B:      https://github.com/ClangBuiltLinux/linux/issues
4816 C:      irc://irc.libera.chat/clangbuiltlinux
4817 F:      Documentation/kbuild/llvm.rst
4818 F:      include/linux/compiler-clang.h
4819 F:      scripts/Makefile.clang
4820 F:      scripts/clang-tools/
4821 K:      \b(?i:clang|llvm)\b
4822
4823 CLANG CONTROL FLOW INTEGRITY SUPPORT
4824 M:      Sami Tolvanen <samitolvanen@google.com>
4825 M:      Kees Cook <keescook@chromium.org>
4826 R:      Nathan Chancellor <nathan@kernel.org>
4827 R:      Nick Desaulniers <ndesaulniers@google.com>
4828 L:      llvm@lists.linux.dev
4829 S:      Supported
4830 B:      https://github.com/ClangBuiltLinux/linux/issues
4831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4832 F:      include/linux/cfi.h
4833 F:      kernel/cfi.c
4834
4835 CLK API
4836 M:      Russell King <linux@armlinux.org.uk>
4837 L:      linux-clk@vger.kernel.org
4838 S:      Maintained
4839 F:      include/linux/clk.h
4840
4841 CLOCKSOURCE, CLOCKEVENT DRIVERS
4842 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4843 M:      Thomas Gleixner <tglx@linutronix.de>
4844 L:      linux-kernel@vger.kernel.org
4845 S:      Supported
4846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4847 F:      Documentation/devicetree/bindings/timer/
4848 F:      drivers/clocksource/
4849
4850 CMPC ACPI DRIVER
4851 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4852 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4853 L:      platform-driver-x86@vger.kernel.org
4854 S:      Supported
4855 F:      drivers/platform/x86/classmate-laptop.c
4856
4857 COBALT MEDIA DRIVER
4858 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4859 L:      linux-media@vger.kernel.org
4860 S:      Supported
4861 W:      https://linuxtv.org
4862 T:      git git://linuxtv.org/media_tree.git
4863 F:      drivers/media/pci/cobalt/
4864
4865 COCCINELLE/Semantic Patches (SmPL)
4866 M:      Julia Lawall <Julia.Lawall@inria.fr>
4867 M:      Nicolas Palix <nicolas.palix@imag.fr>
4868 L:      cocci@inria.fr (moderated for non-subscribers)
4869 S:      Supported
4870 W:      https://coccinelle.gitlabpages.inria.fr/website/
4871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4872 F:      Documentation/dev-tools/coccinelle.rst
4873 F:      scripts/coccicheck
4874 F:      scripts/coccinelle/
4875
4876 CODA FILE SYSTEM
4877 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4878 M:      coda@cs.cmu.edu
4879 L:      codalist@coda.cs.cmu.edu
4880 S:      Maintained
4881 W:      http://www.coda.cs.cmu.edu/
4882 F:      Documentation/filesystems/coda.rst
4883 F:      fs/coda/
4884 F:      include/linux/coda*.h
4885 F:      include/uapi/linux/coda*.h
4886
4887 CODA V4L2 MEM2MEM DRIVER
4888 M:      Philipp Zabel <p.zabel@pengutronix.de>
4889 L:      linux-media@vger.kernel.org
4890 S:      Maintained
4891 F:      Documentation/devicetree/bindings/media/coda.yaml
4892 F:      drivers/media/platform/chips-media/
4893
4894 CODE OF CONDUCT
4895 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4896 S:      Supported
4897 F:      Documentation/process/code-of-conduct-interpretation.rst
4898 F:      Documentation/process/code-of-conduct.rst
4899
4900 COMEDI DRIVERS
4901 M:      Ian Abbott <abbotti@mev.co.uk>
4902 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4903 S:      Odd Fixes
4904 F:      drivers/comedi/
4905 F:      include/linux/comedi/
4906 F:      include/uapi/linux/comedi.h
4907
4908 COMMON CLK FRAMEWORK
4909 M:      Michael Turquette <mturquette@baylibre.com>
4910 M:      Stephen Boyd <sboyd@kernel.org>
4911 L:      linux-clk@vger.kernel.org
4912 S:      Maintained
4913 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4915 F:      Documentation/devicetree/bindings/clock/
4916 F:      drivers/clk/
4917 F:      include/linux/clk-pr*
4918 F:      include/linux/clk/
4919 F:      include/linux/of_clk.h
4920 X:      drivers/clk/clkdev.c
4921
4922 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4923 M:      Steve French <sfrench@samba.org>
4924 L:      linux-cifs@vger.kernel.org
4925 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4926 S:      Supported
4927 W:      http://linux-cifs.samba.org/
4928 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4929 F:      Documentation/admin-guide/cifs/
4930 F:      fs/cifs/
4931 F:      fs/smbfs_common/
4932
4933 COMPACTPCI HOTPLUG CORE
4934 M:      Scott Murray <scott@spiteful.org>
4935 L:      linux-pci@vger.kernel.org
4936 S:      Maintained
4937 F:      drivers/pci/hotplug/cpci_hotplug*
4938
4939 COMPACTPCI HOTPLUG GENERIC DRIVER
4940 M:      Scott Murray <scott@spiteful.org>
4941 L:      linux-pci@vger.kernel.org
4942 S:      Maintained
4943 F:      drivers/pci/hotplug/cpcihp_generic.c
4944
4945 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4946 M:      Scott Murray <scott@spiteful.org>
4947 L:      linux-pci@vger.kernel.org
4948 S:      Maintained
4949 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4950
4951 COMPAL LAPTOP SUPPORT
4952 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4953 L:      platform-driver-x86@vger.kernel.org
4954 S:      Maintained
4955 F:      drivers/platform/x86/compal-laptop.c
4956
4957 COMPILER ATTRIBUTES
4958 M:      Miguel Ojeda <ojeda@kernel.org>
4959 R:      Nick Desaulniers <ndesaulniers@google.com>
4960 S:      Maintained
4961 F:      include/linux/compiler_attributes.h
4962
4963 COMPUTE EXPRESS LINK (CXL)
4964 M:      Alison Schofield <alison.schofield@intel.com>
4965 M:      Vishal Verma <vishal.l.verma@intel.com>
4966 M:      Ira Weiny <ira.weiny@intel.com>
4967 M:      Ben Widawsky <ben.widawsky@intel.com>
4968 M:      Dan Williams <dan.j.williams@intel.com>
4969 L:      linux-cxl@vger.kernel.org
4970 S:      Maintained
4971 F:      drivers/cxl/
4972 F:      include/uapi/linux/cxl_mem.h
4973
4974 CONEXANT ACCESSRUNNER USB DRIVER
4975 L:      accessrunner-general@lists.sourceforge.net
4976 S:      Orphan
4977 W:      http://accessrunner.sourceforge.net/
4978 F:      drivers/usb/atm/cxacru.c
4979
4980 CONFIGFS
4981 M:      Joel Becker <jlbec@evilplan.org>
4982 M:      Christoph Hellwig <hch@lst.de>
4983 S:      Supported
4984 T:      git git://git.infradead.org/users/hch/configfs.git
4985 F:      fs/configfs/
4986 F:      include/linux/configfs.h
4987 F:      samples/configfs/
4988
4989 CONSOLE SUBSYSTEM
4990 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4991 S:      Supported
4992 F:      drivers/video/console/
4993 F:      include/linux/console*
4994
4995 CONTEXT TRACKING
4996 M:      Frederic Weisbecker <frederic@kernel.org>
4997 S:      Maintained
4998 F:      kernel/context_tracking.c
4999 F:      include/linux/context_tracking*
5000
5001 CONTROL GROUP (CGROUP)
5002 M:      Tejun Heo <tj@kernel.org>
5003 M:      Zefan Li <lizefan.x@bytedance.com>
5004 M:      Johannes Weiner <hannes@cmpxchg.org>
5005 L:      cgroups@vger.kernel.org
5006 S:      Maintained
5007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5008 F:      Documentation/admin-guide/cgroup-v1/
5009 F:      Documentation/admin-guide/cgroup-v2.rst
5010 F:      include/linux/cgroup*
5011 F:      kernel/cgroup/
5012
5013 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5014 M:      Tejun Heo <tj@kernel.org>
5015 M:      Jens Axboe <axboe@kernel.dk>
5016 L:      cgroups@vger.kernel.org
5017 L:      linux-block@vger.kernel.org
5018 T:      git git://git.kernel.dk/linux-block
5019 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5020 F:      block/bfq-cgroup.c
5021 F:      block/blk-cgroup.c
5022 F:      block/blk-iolatency.c
5023 F:      block/blk-throttle.c
5024 F:      include/linux/blk-cgroup.h
5025
5026 CONTROL GROUP - CPUSET
5027 M:      Zefan Li <lizefan.x@bytedance.com>
5028 L:      cgroups@vger.kernel.org
5029 S:      Maintained
5030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5031 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5032 F:      include/linux/cpuset.h
5033 F:      kernel/cgroup/cpuset.c
5034
5035 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5036 M:      Johannes Weiner <hannes@cmpxchg.org>
5037 M:      Michal Hocko <mhocko@kernel.org>
5038 M:      Roman Gushchin <roman.gushchin@linux.dev>
5039 M:      Shakeel Butt <shakeelb@google.com>
5040 L:      cgroups@vger.kernel.org
5041 L:      linux-mm@kvack.org
5042 S:      Maintained
5043 F:      mm/memcontrol.c
5044 F:      mm/swap_cgroup.c
5045
5046 CORETEMP HARDWARE MONITORING DRIVER
5047 M:      Fenghua Yu <fenghua.yu@intel.com>
5048 L:      linux-hwmon@vger.kernel.org
5049 S:      Maintained
5050 F:      Documentation/hwmon/coretemp.rst
5051 F:      drivers/hwmon/coretemp.c
5052
5053 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5054 M:      Marius Zachmann <mail@mariuszachmann.de>
5055 L:      linux-hwmon@vger.kernel.org
5056 S:      Maintained
5057 F:      drivers/hwmon/corsair-cpro.c
5058
5059 CORSAIR-PSU HARDWARE MONITOR DRIVER
5060 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5061 L:      linux-hwmon@vger.kernel.org
5062 S:      Maintained
5063 F:      Documentation/hwmon/corsair-psu.rst
5064 F:      drivers/hwmon/corsair-psu.c
5065
5066 COSA/SRP SYNC SERIAL DRIVER
5067 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
5068 S:      Maintained
5069 W:      http://www.fi.muni.cz/~kas/cosa/
5070 F:      drivers/net/wan/cosa*
5071
5072 COUNTER SUBSYSTEM
5073 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5074 L:      linux-iio@vger.kernel.org
5075 S:      Maintained
5076 T:      git git@gitlab.com:vilhelmgray/counter.git
5077 F:      Documentation/ABI/testing/sysfs-bus-counter
5078 F:      Documentation/driver-api/generic-counter.rst
5079 F:      drivers/counter/
5080 F:      include/linux/counter.h
5081 F:      include/uapi/linux/counter.h
5082 F:      tools/counter/
5083
5084 CP2615 I2C DRIVER
5085 M:      Bence Csókás <bence98@sch.bme.hu>
5086 S:      Maintained
5087 F:      drivers/i2c/busses/i2c-cp2615.c
5088
5089 CPMAC ETHERNET DRIVER
5090 M:      Florian Fainelli <f.fainelli@gmail.com>
5091 L:      netdev@vger.kernel.org
5092 S:      Maintained
5093 F:      drivers/net/ethernet/ti/cpmac.c
5094
5095 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5096 M:      Viresh Kumar <viresh.kumar@linaro.org>
5097 M:      Sudeep Holla <sudeep.holla@arm.com>
5098 L:      linux-pm@vger.kernel.org
5099 S:      Maintained
5100 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5101 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5102
5103 CPU FREQUENCY SCALING FRAMEWORK
5104 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5105 M:      Viresh Kumar <viresh.kumar@linaro.org>
5106 L:      linux-pm@vger.kernel.org
5107 S:      Maintained
5108 B:      https://bugzilla.kernel.org
5109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5111 F:      Documentation/admin-guide/pm/cpufreq.rst
5112 F:      Documentation/admin-guide/pm/intel_pstate.rst
5113 F:      Documentation/cpu-freq/
5114 F:      Documentation/devicetree/bindings/cpufreq/
5115 F:      drivers/cpufreq/
5116 F:      include/linux/cpufreq.h
5117 F:      include/linux/sched/cpufreq.h
5118 F:      kernel/sched/cpufreq*.c
5119 F:      tools/testing/selftests/cpufreq/
5120
5121 CPU IDLE TIME MANAGEMENT FRAMEWORK
5122 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5123 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5124 L:      linux-pm@vger.kernel.org
5125 S:      Maintained
5126 B:      https://bugzilla.kernel.org
5127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5128 F:      Documentation/admin-guide/pm/cpuidle.rst
5129 F:      Documentation/driver-api/pm/cpuidle.rst
5130 F:      drivers/cpuidle/
5131 F:      include/linux/cpuidle.h
5132
5133 CPU POWER MONITORING SUBSYSTEM
5134 M:      Thomas Renninger <trenn@suse.com>
5135 M:      Shuah Khan <shuah@kernel.org>
5136 M:      Shuah Khan <skhan@linuxfoundation.org>
5137 L:      linux-pm@vger.kernel.org
5138 S:      Maintained
5139 F:      tools/power/cpupower/
5140
5141 CPUID/MSR DRIVER
5142 M:      "H. Peter Anvin" <hpa@zytor.com>
5143 S:      Maintained
5144 F:      arch/x86/kernel/cpuid.c
5145 F:      arch/x86/kernel/msr.c
5146
5147 CPUIDLE DRIVER - ARM BIG LITTLE
5148 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5149 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5150 L:      linux-pm@vger.kernel.org
5151 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5152 S:      Maintained
5153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5154 F:      drivers/cpuidle/cpuidle-big_little.c
5155
5156 CPUIDLE DRIVER - ARM EXYNOS
5157 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5158 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5159 M:      Kukjin Kim <kgene@kernel.org>
5160 L:      linux-pm@vger.kernel.org
5161 L:      linux-samsung-soc@vger.kernel.org
5162 S:      Supported
5163 F:      arch/arm/mach-exynos/pm.c
5164 F:      drivers/cpuidle/cpuidle-exynos.c
5165 F:      include/linux/platform_data/cpuidle-exynos.h
5166
5167 CPUIDLE DRIVER - ARM PSCI
5168 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5169 M:      Sudeep Holla <sudeep.holla@arm.com>
5170 L:      linux-pm@vger.kernel.org
5171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5172 S:      Supported
5173 F:      drivers/cpuidle/cpuidle-psci.c
5174
5175 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5176 M:      Ulf Hansson <ulf.hansson@linaro.org>
5177 L:      linux-pm@vger.kernel.org
5178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5179 S:      Supported
5180 F:      drivers/cpuidle/cpuidle-psci.h
5181 F:      drivers/cpuidle/cpuidle-psci-domain.c
5182
5183 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5184 M:      Ulf Hansson <ulf.hansson@linaro.org>
5185 L:      linux-pm@vger.kernel.org
5186 S:      Supported
5187 F:      drivers/cpuidle/dt_idle_genpd.c
5188 F:      drivers/cpuidle/dt_idle_genpd.h
5189
5190 CPUIDLE DRIVER - RISC-V SBI
5191 M:      Anup Patel <anup@brainfault.org>
5192 L:      linux-pm@vger.kernel.org
5193 L:      linux-riscv@lists.infradead.org
5194 S:      Maintained
5195 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5196
5197 CRAMFS FILESYSTEM
5198 M:      Nicolas Pitre <nico@fluxnic.net>
5199 S:      Maintained
5200 F:      Documentation/filesystems/cramfs.rst
5201 F:      fs/cramfs/
5202
5203 CREATIVE SB0540
5204 M:      Bastien Nocera <hadess@hadess.net>
5205 L:      linux-input@vger.kernel.org
5206 S:      Maintained
5207 F:      drivers/hid/hid-creative-sb0540.c
5208
5209 CRYPTO API
5210 M:      Herbert Xu <herbert@gondor.apana.org.au>
5211 M:      "David S. Miller" <davem@davemloft.net>
5212 L:      linux-crypto@vger.kernel.org
5213 S:      Maintained
5214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5216 F:      Documentation/crypto/
5217 F:      Documentation/devicetree/bindings/crypto/
5218 F:      arch/*/crypto/
5219 F:      crypto/
5220 F:      drivers/crypto/
5221 F:      include/crypto/
5222 F:      include/linux/crypto*
5223 F:      lib/crypto/
5224
5225 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5226 M:      Neil Horman <nhorman@tuxdriver.com>
5227 L:      linux-crypto@vger.kernel.org
5228 S:      Maintained
5229 F:      crypto/ansi_cprng.c
5230 F:      crypto/rng.c
5231
5232 CS3308 MEDIA DRIVER
5233 M:      Hans Verkuil <hverkuil@xs4all.nl>
5234 L:      linux-media@vger.kernel.org
5235 S:      Odd Fixes
5236 W:      http://linuxtv.org
5237 T:      git git://linuxtv.org/media_tree.git
5238 F:      drivers/media/i2c/cs3308.c
5239
5240 CS5535 Audio ALSA driver
5241 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5242 S:      Maintained
5243 F:      sound/pci/cs5535audio/
5244
5245 CSI DRIVERS FOR ALLWINNER V3s
5246 M:      Yong Deng <yong.deng@magewell.com>
5247 L:      linux-media@vger.kernel.org
5248 S:      Maintained
5249 T:      git git://linuxtv.org/media_tree.git
5250 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5251 F:      drivers/media/platform/sunxi/sun6i-csi/
5252
5253 CW1200 WLAN driver
5254 M:      Solomon Peachy <pizza@shaftnet.org>
5255 S:      Maintained
5256 F:      drivers/net/wireless/st/cw1200/
5257
5258 CX18 VIDEO4LINUX DRIVER
5259 M:      Andy Walls <awalls@md.metrocast.net>
5260 L:      linux-media@vger.kernel.org
5261 S:      Maintained
5262 W:      https://linuxtv.org
5263 T:      git git://linuxtv.org/media_tree.git
5264 F:      drivers/media/pci/cx18/
5265 F:      include/uapi/linux/ivtv*
5266
5267 CX2341X MPEG ENCODER HELPER MODULE
5268 M:      Hans Verkuil <hverkuil@xs4all.nl>
5269 L:      linux-media@vger.kernel.org
5270 S:      Maintained
5271 W:      https://linuxtv.org
5272 T:      git git://linuxtv.org/media_tree.git
5273 F:      drivers/media/common/cx2341x*
5274 F:      include/media/drv-intf/cx2341x.h
5275
5276 CX24120 MEDIA DRIVER
5277 M:      Jemma Denson <jdenson@gmail.com>
5278 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5279 L:      linux-media@vger.kernel.org
5280 S:      Maintained
5281 W:      https://linuxtv.org
5282 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5283 F:      drivers/media/dvb-frontends/cx24120*
5284
5285 CX88 VIDEO4LINUX DRIVER
5286 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5287 L:      linux-media@vger.kernel.org
5288 S:      Odd fixes
5289 W:      https://linuxtv.org
5290 T:      git git://linuxtv.org/media_tree.git
5291 F:      Documentation/driver-api/media/drivers/cx88*
5292 F:      drivers/media/pci/cx88/
5293
5294 CXD2820R MEDIA DRIVER
5295 M:      Antti Palosaari <crope@iki.fi>
5296 L:      linux-media@vger.kernel.org
5297 S:      Maintained
5298 W:      https://linuxtv.org
5299 W:      http://palosaari.fi/linux/
5300 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5301 T:      git git://linuxtv.org/anttip/media_tree.git
5302 F:      drivers/media/dvb-frontends/cxd2820r*
5303
5304 CXGB3 ETHERNET DRIVER (CXGB3)
5305 M:      Raju Rangoju <rajur@chelsio.com>
5306 L:      netdev@vger.kernel.org
5307 S:      Supported
5308 W:      http://www.chelsio.com
5309 F:      drivers/net/ethernet/chelsio/cxgb3/
5310
5311 CXGB3 ISCSI DRIVER (CXGB3I)
5312 M:      Karen Xie <kxie@chelsio.com>
5313 L:      linux-scsi@vger.kernel.org
5314 S:      Supported
5315 W:      http://www.chelsio.com
5316 F:      drivers/scsi/cxgbi/cxgb3i
5317
5318 CXGB4 CRYPTO DRIVER (chcr)
5319 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5320 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5321 M:      Rohit Maheshwari <rohitm@chelsio.com>
5322 L:      linux-crypto@vger.kernel.org
5323 S:      Supported
5324 W:      http://www.chelsio.com
5325 F:      drivers/crypto/chelsio
5326
5327 CXGB4 INLINE CRYPTO DRIVER
5328 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5329 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5330 M:      Rohit Maheshwari <rohitm@chelsio.com>
5331 L:      netdev@vger.kernel.org
5332 S:      Supported
5333 W:      http://www.chelsio.com
5334 F:      drivers/net/ethernet/chelsio/inline_crypto/
5335
5336 CXGB4 ETHERNET DRIVER (CXGB4)
5337 M:      Raju Rangoju <rajur@chelsio.com>
5338 L:      netdev@vger.kernel.org
5339 S:      Supported
5340 W:      http://www.chelsio.com
5341 F:      drivers/net/ethernet/chelsio/cxgb4/
5342
5343 CXGB4 ISCSI DRIVER (CXGB4I)
5344 M:      Karen Xie <kxie@chelsio.com>
5345 L:      linux-scsi@vger.kernel.org
5346 S:      Supported
5347 W:      http://www.chelsio.com
5348 F:      drivers/scsi/cxgbi/cxgb4i
5349
5350 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5351 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5352 L:      linux-rdma@vger.kernel.org
5353 S:      Supported
5354 W:      http://www.openfabrics.org
5355 F:      drivers/infiniband/hw/cxgb4/
5356 F:      include/uapi/rdma/cxgb4-abi.h
5357
5358 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5359 M:      Raju Rangoju <rajur@chelsio.com>
5360 L:      netdev@vger.kernel.org
5361 S:      Supported
5362 W:      http://www.chelsio.com
5363 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5364
5365 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5366 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5367 M:      Andrew Donnellan <ajd@linux.ibm.com>
5368 L:      linuxppc-dev@lists.ozlabs.org
5369 S:      Supported
5370 F:      Documentation/ABI/testing/sysfs-class-cxl
5371 F:      Documentation/powerpc/cxl.rst
5372 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5373 F:      drivers/misc/cxl/
5374 F:      include/misc/cxl*
5375 F:      include/uapi/misc/cxl.h
5376
5377 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5378 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5379 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5380 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5381 L:      linux-scsi@vger.kernel.org
5382 S:      Supported
5383 F:      Documentation/powerpc/cxlflash.rst
5384 F:      drivers/scsi/cxlflash/
5385 F:      include/uapi/scsi/cxlflash_ioctl.h
5386
5387 CYBERPRO FB DRIVER
5388 M:      Russell King <linux@armlinux.org.uk>
5389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5390 S:      Maintained
5391 W:      http://www.armlinux.org.uk/
5392 F:      drivers/video/fbdev/cyber2000fb.*
5393
5394 CYCLADES PC300 DRIVER
5395 S:      Orphan
5396 F:      drivers/net/wan/pc300*
5397
5398 CYPRESS_FIRMWARE MEDIA DRIVER
5399 M:      Antti Palosaari <crope@iki.fi>
5400 L:      linux-media@vger.kernel.org
5401 S:      Maintained
5402 W:      https://linuxtv.org
5403 W:      http://palosaari.fi/linux/
5404 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5405 T:      git git://linuxtv.org/anttip/media_tree.git
5406 F:      drivers/media/common/cypress_firmware*
5407
5408 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5409 M:      Linus Walleij <linus.walleij@linaro.org>
5410 L:      linux-input@vger.kernel.org
5411 S:      Maintained
5412 F:      drivers/input/touchscreen/cy8ctma140.c
5413
5414 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5415 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5416 L:      linux-input@vger.kernel.org
5417 S:      Maintained
5418 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5419 F:      drivers/input/keyboard/cypress-sf.c
5420
5421 CYTTSP TOUCHSCREEN DRIVER
5422 M:      Linus Walleij <linus.walleij@linaro.org>
5423 L:      linux-input@vger.kernel.org
5424 S:      Maintained
5425 F:      drivers/input/touchscreen/cyttsp*
5426
5427 D-LINK DIR-685 TOUCHKEYS DRIVER
5428 M:      Linus Walleij <linus.walleij@linaro.org>
5429 L:      linux-input@vger.kernel.org
5430 S:      Supported
5431 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5432
5433 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5434 M:      Joshua Kinard <kumba@gentoo.org>
5435 S:      Maintained
5436 F:      drivers/rtc/rtc-ds1685.c
5437 F:      include/linux/rtc/ds1685.h
5438
5439 DAMA SLAVE for AX.25
5440 M:      Joerg Reuter <jreuter@yaina.de>
5441 L:      linux-hams@vger.kernel.org
5442 S:      Maintained
5443 W:      http://yaina.de/jreuter/
5444 W:      http://www.qsl.net/dl1bke/
5445 F:      net/ax25/af_ax25.c
5446 F:      net/ax25/ax25_dev.c
5447 F:      net/ax25/ax25_ds_*
5448 F:      net/ax25/ax25_in.c
5449 F:      net/ax25/ax25_out.c
5450 F:      net/ax25/ax25_timer.c
5451 F:      net/ax25/sysctl_net_ax25.c
5452
5453 DATA ACCESS MONITOR
5454 M:      SeongJae Park <sj@kernel.org>
5455 L:      damon@lists.linux.dev
5456 L:      linux-mm@kvack.org
5457 S:      Maintained
5458 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5459 F:      Documentation/admin-guide/mm/damon/
5460 F:      Documentation/vm/damon/
5461 F:      include/linux/damon.h
5462 F:      include/trace/events/damon.h
5463 F:      mm/damon/
5464 F:      tools/testing/selftests/damon/
5465
5466 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5467 L:      netdev@vger.kernel.org
5468 S:      Orphan
5469 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5470 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5471
5472 DC390/AM53C974 SCSI driver
5473 M:      Hannes Reinecke <hare@suse.com>
5474 L:      linux-scsi@vger.kernel.org
5475 S:      Maintained
5476 F:      drivers/scsi/am53c974.c
5477
5478 DC395x SCSI driver
5479 M:      Oliver Neukum <oliver@neukum.org>
5480 M:      Ali Akcaagac <aliakc@web.de>
5481 M:      Jamie Lenehan <lenehan@twibble.org>
5482 L:      dc395x@twibble.org
5483 S:      Maintained
5484 W:      http://twibble.org/dist/dc395x/
5485 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5486 F:      Documentation/scsi/dc395x.rst
5487 F:      drivers/scsi/dc395x.*
5488
5489 DCCP PROTOCOL
5490 L:      dccp@vger.kernel.org
5491 S:      Orphan
5492 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5493 F:      include/linux/dccp.h
5494 F:      include/linux/tfrc.h
5495 F:      include/uapi/linux/dccp.h
5496 F:      net/dccp/
5497
5498 DECnet NETWORK LAYER
5499 L:      linux-decnet-user@lists.sourceforge.net
5500 S:      Orphan
5501 W:      http://linux-decnet.sourceforge.net
5502 F:      Documentation/networking/decnet.rst
5503 F:      net/decnet/
5504
5505 DECSTATION PLATFORM SUPPORT
5506 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5507 L:      linux-mips@vger.kernel.org
5508 S:      Maintained
5509 W:      http://www.linux-mips.org/wiki/DECstation
5510 F:      arch/mips/dec/
5511 F:      arch/mips/include/asm/dec/
5512 F:      arch/mips/include/asm/mach-dec/
5513
5514 DEFXX FDDI NETWORK DRIVER
5515 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5516 S:      Maintained
5517 F:      drivers/net/fddi/defxx.*
5518
5519 DEFZA FDDI NETWORK DRIVER
5520 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5521 S:      Maintained
5522 F:      drivers/net/fddi/defza.*
5523
5524 DEINTERLACE DRIVERS FOR ALLWINNER H3
5525 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5526 L:      linux-media@vger.kernel.org
5527 S:      Maintained
5528 T:      git git://linuxtv.org/media_tree.git
5529 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5530 F:      drivers/media/platform/sunxi/sun8i-di/
5531
5532 DELL LAPTOP DRIVER
5533 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5534 M:      Pali Rohár <pali@kernel.org>
5535 L:      platform-driver-x86@vger.kernel.org
5536 S:      Maintained
5537 F:      drivers/platform/x86/dell/dell-laptop.c
5538
5539 DELL LAPTOP FREEFALL DRIVER
5540 M:      Pali Rohár <pali@kernel.org>
5541 S:      Maintained
5542 F:      drivers/platform/x86/dell/dell-smo8800.c
5543
5544 DELL LAPTOP RBTN DRIVER
5545 M:      Pali Rohár <pali@kernel.org>
5546 S:      Maintained
5547 F:      drivers/platform/x86/dell/dell-rbtn.*
5548
5549 DELL LAPTOP SMM DRIVER
5550 M:      Pali Rohár <pali@kernel.org>
5551 S:      Maintained
5552 F:      Documentation/ABI/obsolete/procfs-i8k
5553 F:      drivers/hwmon/dell-smm-hwmon.c
5554 F:      include/uapi/linux/i8k.h
5555
5556 DELL REMOTE BIOS UPDATE DRIVER
5557 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5558 L:      platform-driver-x86@vger.kernel.org
5559 S:      Maintained
5560 F:      drivers/platform/x86/dell/dell_rbu.c
5561
5562 DELL SMBIOS DRIVER
5563 M:      Pali Rohár <pali@kernel.org>
5564 L:      Dell.Client.Kernel@dell.com
5565 L:      platform-driver-x86@vger.kernel.org
5566 S:      Maintained
5567 F:      drivers/platform/x86/dell/dell-smbios.*
5568
5569 DELL SMBIOS SMM DRIVER
5570 L:      Dell.Client.Kernel@dell.com
5571 L:      platform-driver-x86@vger.kernel.org
5572 S:      Maintained
5573 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5574
5575 DELL SMBIOS WMI DRIVER
5576 L:      Dell.Client.Kernel@dell.com
5577 L:      platform-driver-x86@vger.kernel.org
5578 S:      Maintained
5579 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5580 F:      tools/wmi/dell-smbios-example.c
5581
5582 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5583 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5584 L:      platform-driver-x86@vger.kernel.org
5585 S:      Maintained
5586 F:      Documentation/driver-api/dcdbas.rst
5587 F:      drivers/platform/x86/dell/dcdbas.*
5588
5589 DELL WMI DESCRIPTOR DRIVER
5590 L:      Dell.Client.Kernel@dell.com
5591 S:      Maintained
5592 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5593
5594 DELL WMI SYSMAN DRIVER
5595 M:      Divya Bharathi <divya.bharathi@dell.com>
5596 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5597 L:      Dell.Client.Kernel@dell.com
5598 L:      platform-driver-x86@vger.kernel.org
5599 S:      Maintained
5600 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5601 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5602
5603 DELL WMI NOTIFICATIONS DRIVER
5604 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5605 M:      Pali Rohár <pali@kernel.org>
5606 S:      Maintained
5607 F:      drivers/platform/x86/dell/dell-wmi-base.c
5608
5609 DELL WMI HARDWARE PRIVACY SUPPORT
5610 M:      Perry Yuan <Perry.Yuan@dell.com>
5611 L:      Dell.Client.Kernel@dell.com
5612 L:      platform-driver-x86@vger.kernel.org
5613 S:      Maintained
5614 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5615
5616 DELTA ST MEDIA DRIVER
5617 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5618 L:      linux-media@vger.kernel.org
5619 S:      Supported
5620 W:      https://linuxtv.org
5621 T:      git git://linuxtv.org/media_tree.git
5622 F:      drivers/media/platform/st/sti/delta
5623
5624 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5625 M:      Zev Weiss <zev@bewilderbeest.net>
5626 L:      linux-hwmon@vger.kernel.org
5627 S:      Maintained
5628 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5629
5630 DELTA DPS920AB PSU DRIVER
5631 M:      Robert Marko <robert.marko@sartura.hr>
5632 L:      linux-hwmon@vger.kernel.org
5633 S:      Maintained
5634 F:      Documentation/hwmon/dps920ab.rst
5635 F:      drivers/hwmon/pmbus/dps920ab.c
5636
5637 DELTA NETWORKS TN48M CPLD DRIVERS
5638 M:      Robert Marko <robert.marko@sartura.hr>
5639 S:      Maintained
5640 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5641 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5642 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5643 F:      drivers/gpio/gpio-tn48m.c
5644 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5645
5646 DENALI NAND DRIVER
5647 L:      linux-mtd@lists.infradead.org
5648 S:      Orphan
5649 F:      drivers/mtd/nand/raw/denali*
5650
5651 DESIGNWARE EDMA CORE IP DRIVER
5652 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5653 L:      dmaengine@vger.kernel.org
5654 S:      Maintained
5655 F:      drivers/dma/dw-edma/
5656 F:      include/linux/dma/edma.h
5657
5658 DESIGNWARE XDATA IP DRIVER
5659 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5660 L:      linux-pci@vger.kernel.org
5661 S:      Maintained
5662 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5663 F:      drivers/misc/dw-xdata-pcie.c
5664
5665 DESIGNWARE USB2 DRD IP DRIVER
5666 M:      Minas Harutyunyan <hminas@synopsys.com>
5667 L:      linux-usb@vger.kernel.org
5668 S:      Maintained
5669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5670 F:      drivers/usb/dwc2/
5671
5672 DESIGNWARE USB3 DRD IP DRIVER
5673 M:      Felipe Balbi <balbi@kernel.org>
5674 L:      linux-usb@vger.kernel.org
5675 S:      Maintained
5676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5677 F:      drivers/usb/dwc3/
5678
5679 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5680 M:      Andreas Klinger <ak@it-klinger.de>
5681 L:      linux-iio@vger.kernel.org
5682 S:      Maintained
5683 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5684 F:      drivers/iio/proximity/srf*.c
5685
5686 DEVICE COREDUMP (DEV_COREDUMP)
5687 M:      Johannes Berg <johannes@sipsolutions.net>
5688 L:      linux-kernel@vger.kernel.org
5689 S:      Maintained
5690 F:      drivers/base/devcoredump.c
5691 F:      include/linux/devcoredump.h
5692
5693 DEVICE DEPENDENCY HELPER SCRIPT
5694 M:      Saravana Kannan <saravanak@google.com>
5695 L:      linux-kernel@vger.kernel.org
5696 S:      Maintained
5697 F:      scripts/dev-needs.sh
5698
5699 DEVICE DIRECT ACCESS (DAX)
5700 M:      Dan Williams <dan.j.williams@intel.com>
5701 M:      Vishal Verma <vishal.l.verma@intel.com>
5702 M:      Dave Jiang <dave.jiang@intel.com>
5703 L:      nvdimm@lists.linux.dev
5704 S:      Supported
5705 F:      drivers/dax/
5706
5707 DEVICE FREQUENCY (DEVFREQ)
5708 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5709 M:      Kyungmin Park <kyungmin.park@samsung.com>
5710 M:      Chanwoo Choi <cw00.choi@samsung.com>
5711 L:      linux-pm@vger.kernel.org
5712 S:      Maintained
5713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5714 F:      Documentation/devicetree/bindings/devfreq/
5715 F:      drivers/devfreq/
5716 F:      include/linux/devfreq.h
5717 F:      include/trace/events/devfreq.h
5718
5719 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5720 M:      Chanwoo Choi <cw00.choi@samsung.com>
5721 L:      linux-pm@vger.kernel.org
5722 S:      Supported
5723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5724 F:      Documentation/devicetree/bindings/devfreq/event/
5725 F:      drivers/devfreq/devfreq-event.c
5726 F:      drivers/devfreq/event/
5727 F:      include/dt-bindings/pmu/exynos_ppmu.h
5728 F:      include/linux/devfreq-event.h
5729
5730 DEVICE NUMBER REGISTRY
5731 M:      Torben Mathiasen <device@lanana.org>
5732 S:      Maintained
5733 W:      http://lanana.org/docs/device-list/index.html
5734
5735 DEVICE RESOURCE MANAGEMENT HELPERS
5736 M:      Hans de Goede <hdegoede@redhat.com>
5737 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5738 S:      Maintained
5739 F:      include/linux/devm-helpers.h
5740
5741 DEVICE-MAPPER  (LVM)
5742 M:      Alasdair Kergon <agk@redhat.com>
5743 M:      Mike Snitzer <snitzer@kernel.org>
5744 M:      dm-devel@redhat.com
5745 L:      dm-devel@redhat.com
5746 S:      Maintained
5747 W:      http://sources.redhat.com/dm
5748 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5750 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5751 F:      Documentation/admin-guide/device-mapper/
5752 F:      drivers/md/Kconfig
5753 F:      drivers/md/Makefile
5754 F:      drivers/md/dm*
5755 F:      drivers/md/persistent-data/
5756 F:      include/linux/device-mapper.h
5757 F:      include/linux/dm-*.h
5758 F:      include/uapi/linux/dm-*.h
5759
5760 DEVLINK
5761 M:      Jiri Pirko <jiri@nvidia.com>
5762 L:      netdev@vger.kernel.org
5763 S:      Supported
5764 F:      Documentation/networking/devlink
5765 F:      include/net/devlink.h
5766 F:      include/uapi/linux/devlink.h
5767 F:      net/core/devlink.c
5768
5769 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5770 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5771 L:      kernel@dh-electronics.com
5772 S:      Maintained
5773 F:      arch/arm/boot/dts/imx6*-dhcom-*
5774
5775 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5776 M:      Marek Vasut <marex@denx.de>
5777 L:      kernel@dh-electronics.com
5778 S:      Maintained
5779 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5780 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5781
5782 DIALOG SEMICONDUCTOR DRIVERS
5783 M:      Support Opensource <support.opensource@diasemi.com>
5784 S:      Supported
5785 W:      http://www.dialog-semiconductor.com/products
5786 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5787 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5788 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5789 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5790 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5791 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5792 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5793 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5794 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5795 F:      Documentation/hwmon/da90??.rst
5796 F:      drivers/gpio/gpio-da90??.c
5797 F:      drivers/hwmon/da90??-hwmon.c
5798 F:      drivers/iio/adc/da91??-*.c
5799 F:      drivers/input/misc/da72??.[ch]
5800 F:      drivers/input/misc/da90??_onkey.c
5801 F:      drivers/input/touchscreen/da9052_tsi.c
5802 F:      drivers/leds/leds-da90??.c
5803 F:      drivers/mfd/da903x.c
5804 F:      drivers/mfd/da90??-*.c
5805 F:      drivers/mfd/da91??-*.c
5806 F:      drivers/pinctrl/pinctrl-da90??.c
5807 F:      drivers/power/supply/da9052-battery.c
5808 F:      drivers/power/supply/da91??-*.c
5809 F:      drivers/regulator/da9???-regulator.[ch]
5810 F:      drivers/regulator/slg51000-regulator.[ch]
5811 F:      drivers/rtc/rtc-da90??.c
5812 F:      drivers/thermal/da90??-thermal.c
5813 F:      drivers/video/backlight/da90??_bl.c
5814 F:      drivers/watchdog/da90??_wdt.c
5815 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5816 F:      include/linux/mfd/da903x.h
5817 F:      include/linux/mfd/da9052/
5818 F:      include/linux/mfd/da9055/
5819 F:      include/linux/mfd/da9062/
5820 F:      include/linux/mfd/da9063/
5821 F:      include/linux/mfd/da9150/
5822 F:      include/linux/regulator/da9211.h
5823 F:      include/sound/da[79]*.h
5824 F:      sound/soc/codecs/da[79]*.[ch]
5825
5826 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5827 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5828 L:      linux-gpio@vger.kernel.org
5829 S:      Maintained
5830 F:      drivers/gpio/gpio-gpio-mm.c
5831
5832 DIOLAN U2C-12 I2C DRIVER
5833 M:      Guenter Roeck <linux@roeck-us.net>
5834 L:      linux-i2c@vger.kernel.org
5835 S:      Maintained
5836 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5837
5838 DIRECTORY NOTIFICATION (DNOTIFY)
5839 M:      Jan Kara <jack@suse.cz>
5840 R:      Amir Goldstein <amir73il@gmail.com>
5841 L:      linux-fsdevel@vger.kernel.org
5842 S:      Maintained
5843 F:      Documentation/filesystems/dnotify.rst
5844 F:      fs/notify/dnotify/
5845 F:      include/linux/dnotify.h
5846
5847 DISK GEOMETRY AND PARTITION HANDLING
5848 M:      Andries Brouwer <aeb@cwi.nl>
5849 S:      Maintained
5850 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5851 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5852 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5853
5854 DISKQUOTA
5855 M:      Jan Kara <jack@suse.com>
5856 S:      Maintained
5857 F:      Documentation/filesystems/quota.rst
5858 F:      fs/quota/
5859 F:      include/linux/quota*.h
5860 F:      include/uapi/linux/quota*.h
5861
5862 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5863 M:      Bernie Thompson <bernie@plugable.com>
5864 L:      linux-fbdev@vger.kernel.org
5865 S:      Maintained
5866 W:      http://plugable.com/category/projects/udlfb/
5867 F:      Documentation/fb/udlfb.rst
5868 F:      drivers/video/fbdev/udlfb.c
5869 F:      include/video/udlfb.h
5870
5871 DISTRIBUTED LOCK MANAGER (DLM)
5872 M:      Christine Caulfield <ccaulfie@redhat.com>
5873 M:      David Teigland <teigland@redhat.com>
5874 L:      cluster-devel@redhat.com
5875 S:      Supported
5876 W:      http://sources.redhat.com/cluster/
5877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5878 F:      fs/dlm/
5879
5880 DMA BUFFER SHARING FRAMEWORK
5881 M:      Sumit Semwal <sumit.semwal@linaro.org>
5882 M:      Christian König <christian.koenig@amd.com>
5883 L:      linux-media@vger.kernel.org
5884 L:      dri-devel@lists.freedesktop.org
5885 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5886 S:      Maintained
5887 T:      git git://anongit.freedesktop.org/drm/drm-misc
5888 F:      Documentation/driver-api/dma-buf.rst
5889 F:      drivers/dma-buf/
5890 F:      include/linux/*fence.h
5891 F:      include/linux/dma-buf.h
5892 F:      include/linux/dma-resv.h
5893 K:      \bdma_(?:buf|fence|resv)\b
5894
5895 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5896 M:      Vinod Koul <vkoul@kernel.org>
5897 L:      dmaengine@vger.kernel.org
5898 S:      Maintained
5899 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5901 F:      Documentation/devicetree/bindings/dma/
5902 F:      Documentation/driver-api/dmaengine/
5903 F:      drivers/dma/
5904 F:      include/linux/dma/
5905 F:      include/linux/dmaengine.h
5906 F:      include/linux/of_dma.h
5907
5908 DMA MAPPING HELPERS
5909 M:      Christoph Hellwig <hch@lst.de>
5910 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5911 R:      Robin Murphy <robin.murphy@arm.com>
5912 L:      iommu@lists.linux-foundation.org
5913 S:      Supported
5914 W:      http://git.infradead.org/users/hch/dma-mapping.git
5915 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5916 F:      include/asm-generic/dma-mapping.h
5917 F:      include/linux/dma-direct.h
5918 F:      include/linux/dma-mapping.h
5919 F:      include/linux/dma-map-ops.h
5920 F:      kernel/dma/
5921
5922 DMA MAPPING BENCHMARK
5923 M:      Xiang Chen <chenxiang66@hisilicon.com>
5924 L:      iommu@lists.linux-foundation.org
5925 F:      kernel/dma/map_benchmark.c
5926 F:      tools/testing/selftests/dma/
5927
5928 DMA-BUF HEAPS FRAMEWORK
5929 M:      Sumit Semwal <sumit.semwal@linaro.org>
5930 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
5931 R:      Liam Mark <lmark@codeaurora.org>
5932 R:      Laura Abbott <labbott@redhat.com>
5933 R:      Brian Starkey <Brian.Starkey@arm.com>
5934 R:      John Stultz <jstultz@google.com>
5935 L:      linux-media@vger.kernel.org
5936 L:      dri-devel@lists.freedesktop.org
5937 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5938 S:      Maintained
5939 T:      git git://anongit.freedesktop.org/drm/drm-misc
5940 F:      drivers/dma-buf/dma-heap.c
5941 F:      drivers/dma-buf/heaps/*
5942 F:      include/linux/dma-heap.h
5943 F:      include/uapi/linux/dma-heap.h
5944
5945 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5946 M:      Lukasz Luba <lukasz.luba@arm.com>
5947 L:      linux-pm@vger.kernel.org
5948 L:      linux-samsung-soc@vger.kernel.org
5949 S:      Maintained
5950 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5951 F:      drivers/memory/samsung/exynos5422-dmc.c
5952
5953 DME1737 HARDWARE MONITOR DRIVER
5954 M:      Juerg Haefliger <juergh@gmail.com>
5955 L:      linux-hwmon@vger.kernel.org
5956 S:      Maintained
5957 F:      Documentation/hwmon/dme1737.rst
5958 F:      drivers/hwmon/dme1737.c
5959
5960 DMI/SMBIOS SUPPORT
5961 M:      Jean Delvare <jdelvare@suse.com>
5962 S:      Maintained
5963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5964 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5965 F:      drivers/firmware/dmi-id.c
5966 F:      drivers/firmware/dmi_scan.c
5967 F:      include/linux/dmi.h
5968
5969 DOCUMENTATION
5970 M:      Jonathan Corbet <corbet@lwn.net>
5971 L:      linux-doc@vger.kernel.org
5972 S:      Maintained
5973 P:      Documentation/doc-guide/maintainer-profile.rst
5974 T:      git git://git.lwn.net/linux.git docs-next
5975 F:      Documentation/
5976 F:      scripts/documentation-file-ref-check
5977 F:      scripts/kernel-doc
5978 F:      scripts/sphinx-pre-install
5979 X:      Documentation/ABI/
5980 X:      Documentation/admin-guide/media/
5981 X:      Documentation/devicetree/
5982 X:      Documentation/driver-api/media/
5983 X:      Documentation/firmware-guide/acpi/
5984 X:      Documentation/i2c/
5985 X:      Documentation/power/
5986 X:      Documentation/spi/
5987 X:      Documentation/userspace-api/media/
5988
5989 DOCUMENTATION REPORTING ISSUES
5990 M:      Thorsten Leemhuis <linux@leemhuis.info>
5991 L:      linux-doc@vger.kernel.org
5992 S:      Maintained
5993 F:      Documentation/admin-guide/reporting-issues.rst
5994
5995 DOCUMENTATION SCRIPTS
5996 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5997 L:      linux-doc@vger.kernel.org
5998 S:      Maintained
5999 F:      Documentation/sphinx/parse-headers.pl
6000 F:      scripts/documentation-file-ref-check
6001 F:      scripts/sphinx-pre-install
6002
6003 DOCUMENTATION/ITALIAN
6004 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6005 L:      linux-doc@vger.kernel.org
6006 S:      Maintained
6007 F:      Documentation/translations/it_IT
6008
6009 DONGWOON DW9714 LENS VOICE COIL DRIVER
6010 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6011 L:      linux-media@vger.kernel.org
6012 S:      Maintained
6013 T:      git git://linuxtv.org/media_tree.git
6014 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6015 F:      drivers/media/i2c/dw9714.c
6016
6017 DONGWOON DW9768 LENS VOICE COIL DRIVER
6018 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6019 L:      linux-media@vger.kernel.org
6020 S:      Maintained
6021 T:      git git://linuxtv.org/media_tree.git
6022 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6023 F:      drivers/media/i2c/dw9768.c
6024
6025 DONGWOON DW9807 LENS VOICE COIL DRIVER
6026 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6027 L:      linux-media@vger.kernel.org
6028 S:      Maintained
6029 T:      git git://linuxtv.org/media_tree.git
6030 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
6031 F:      drivers/media/i2c/dw9807-vcm.c
6032
6033 DOUBLETALK DRIVER
6034 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6035 L:      blinux-list@redhat.com
6036 S:      Maintained
6037 F:      drivers/char/dtlk.c
6038 F:      include/linux/dtlk.h
6039
6040 DPAA2 DATAPATH I/O (DPIO) DRIVER
6041 M:      Roy Pledge <Roy.Pledge@nxp.com>
6042 L:      linux-kernel@vger.kernel.org
6043 S:      Maintained
6044 F:      drivers/soc/fsl/dpio
6045
6046 DPAA2 ETHERNET DRIVER
6047 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6048 L:      netdev@vger.kernel.org
6049 S:      Maintained
6050 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6051 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6052 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6053 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6054 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6055 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6056 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6057 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6058 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6059
6060 DPAA2 ETHERNET SWITCH DRIVER
6061 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6062 L:      netdev@vger.kernel.org
6063 S:      Maintained
6064 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6065 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6066 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6067
6068 DPT_I2O SCSI RAID DRIVER
6069 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
6070 L:      linux-scsi@vger.kernel.org
6071 S:      Maintained
6072 W:      http://www.adaptec.com/
6073 F:      drivers/scsi/dpt*
6074 F:      drivers/scsi/dpt/
6075
6076 DRBD DRIVER
6077 M:      Philipp Reisner <philipp.reisner@linbit.com>
6078 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6079 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6080 L:      drbd-dev@lists.linbit.com
6081 S:      Supported
6082 W:      http://www.drbd.org
6083 T:      git git://git.linbit.com/linux-drbd.git
6084 T:      git git://git.linbit.com/drbd-8.4.git
6085 F:      Documentation/admin-guide/blockdev/
6086 F:      drivers/block/drbd/
6087 F:      lib/lru_cache.c
6088
6089 DRIVER COMPONENT FRAMEWORK
6090 L:      dri-devel@lists.freedesktop.org
6091 F:      drivers/base/component.c
6092 F:      include/linux/component.h
6093
6094 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6095 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6096 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6097 S:      Supported
6098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6099 F:      Documentation/core-api/kobject.rst
6100 F:      drivers/base/
6101 F:      fs/debugfs/
6102 F:      fs/sysfs/
6103 F:      include/linux/debugfs.h
6104 F:      include/linux/kobj*
6105 F:      lib/kobj*
6106
6107 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6108 M:      Nishanth Menon <nm@ti.com>
6109 L:      linux-pm@vger.kernel.org
6110 S:      Maintained
6111 F:      drivers/soc/ti/smartreflex.c
6112 F:      include/linux/power/smartreflex.h
6113
6114 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6115 M:      Maxime Ripard <mripard@kernel.org>
6116 M:      Chen-Yu Tsai <wens@csie.org>
6117 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6118 L:      dri-devel@lists.freedesktop.org
6119 S:      Supported
6120 T:      git git://anongit.freedesktop.org/drm/drm-misc
6121 F:      drivers/gpu/drm/sun4i/sun8i*
6122
6123 DRM DRIVER FOR ARM PL111 CLCD
6124 M:      Emma Anholt <emma@anholt.net>
6125 S:      Supported
6126 T:      git git://anongit.freedesktop.org/drm/drm-misc
6127 F:      drivers/gpu/drm/pl111/
6128
6129 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6130 M:      Linus Walleij <linus.walleij@linaro.org>
6131 S:      Maintained
6132 T:      git git://anongit.freedesktop.org/drm/drm-misc
6133 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6134 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6135
6136 DRM DRIVER FOR ASPEED BMC GFX
6137 M:      Joel Stanley <joel@jms.id.au>
6138 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6139 S:      Supported
6140 T:      git git://anongit.freedesktop.org/drm/drm-misc
6141 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6142 F:      drivers/gpu/drm/aspeed/
6143
6144 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6145 M:      Dave Airlie <airlied@redhat.com>
6146 R:      Thomas Zimmermann <tzimmermann@suse.de>
6147 L:      dri-devel@lists.freedesktop.org
6148 S:      Supported
6149 T:      git git://anongit.freedesktop.org/drm/drm-misc
6150 F:      drivers/gpu/drm/ast/
6151
6152 DRM DRIVER FOR BOCHS VIRTUAL GPU
6153 M:      Gerd Hoffmann <kraxel@redhat.com>
6154 L:      virtualization@lists.linux-foundation.org
6155 S:      Maintained
6156 T:      git git://anongit.freedesktop.org/drm/drm-misc
6157 F:      drivers/gpu/drm/tiny/bochs.c
6158
6159 DRM DRIVER FOR BOE HIMAX8279D PANELS
6160 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6161 S:      Maintained
6162 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6163 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6164
6165 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6166 M:      Jagan Teki <jagan@amarulasolutions.com>
6167 S:      Maintained
6168 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6169 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6170
6171 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6172 M:      Linus Walleij <linus.walleij@linaro.org>
6173 S:      Maintained
6174 T:      git git://anongit.freedesktop.org/drm/drm-misc
6175 F:      drivers/gpu/drm/tve200/
6176
6177 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6178 M:      Icenowy Zheng <icenowy@aosc.io>
6179 S:      Maintained
6180 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6181 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6182
6183 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6184 M:      Jagan Teki <jagan@amarulasolutions.com>
6185 S:      Maintained
6186 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6187 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6188
6189 DRM DRIVER FOR GENERIC USB DISPLAY
6190 M:      Noralf Trønnes <noralf@tronnes.org>
6191 S:      Maintained
6192 W:      https://github.com/notro/gud/wiki
6193 T:      git git://anongit.freedesktop.org/drm/drm-misc
6194 F:      drivers/gpu/drm/gud/
6195 F:      include/drm/gud.h
6196
6197 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6198 M:      Hans de Goede <hdegoede@redhat.com>
6199 S:      Maintained
6200 T:      git git://anongit.freedesktop.org/drm/drm-misc
6201 F:      drivers/gpu/drm/tiny/gm12u320.c
6202
6203 DRM DRIVER FOR HX8357D PANELS
6204 M:      Emma Anholt <emma@anholt.net>
6205 S:      Maintained
6206 T:      git git://anongit.freedesktop.org/drm/drm-misc
6207 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6208 F:      drivers/gpu/drm/tiny/hx8357d.c
6209
6210 DRM DRIVER FOR ILITEK ILI9225 PANELS
6211 M:      David Lechner <david@lechnology.com>
6212 S:      Maintained
6213 T:      git git://anongit.freedesktop.org/drm/drm-misc
6214 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6215 F:      drivers/gpu/drm/tiny/ili9225.c
6216
6217 DRM DRIVER FOR ILITEK ILI9486 PANELS
6218 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6219 S:      Maintained
6220 T:      git git://anongit.freedesktop.org/drm/drm-misc
6221 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6222 F:      drivers/gpu/drm/tiny/ili9486.c
6223
6224 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6225 S:      Orphan / Obsolete
6226 F:      drivers/gpu/drm/i810/
6227 F:      include/uapi/drm/i810_drm.h
6228
6229 DRM DRIVER FOR LVDS PANELS
6230 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6231 L:      dri-devel@lists.freedesktop.org
6232 T:      git git://anongit.freedesktop.org/drm/drm-misc
6233 S:      Maintained
6234 F:      drivers/gpu/drm/panel/panel-lvds.c
6235 F:      Documentation/devicetree/bindings/display/lvds.yaml
6236 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6237
6238 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6239 M:      Guido Günther <agx@sigxcpu.org>
6240 R:      Purism Kernel Team <kernel@puri.sm>
6241 S:      Maintained
6242 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6243 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6244
6245 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6246 S:      Orphan / Obsolete
6247 F:      drivers/gpu/drm/mga/
6248 F:      include/uapi/drm/mga_drm.h
6249
6250 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6251 M:      Dave Airlie <airlied@redhat.com>
6252 R:      Thomas Zimmermann <tzimmermann@suse.de>
6253 L:      dri-devel@lists.freedesktop.org
6254 S:      Supported
6255 T:      git git://anongit.freedesktop.org/drm/drm-misc
6256 F:      drivers/gpu/drm/mgag200/
6257
6258 DRM DRIVER FOR MI0283QT
6259 M:      Noralf Trønnes <noralf@tronnes.org>
6260 S:      Maintained
6261 T:      git git://anongit.freedesktop.org/drm/drm-misc
6262 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6263 F:      drivers/gpu/drm/tiny/mi0283qt.c
6264
6265 DRM DRIVER FOR MIPI DBI compatible panels
6266 M:      Noralf Trønnes <noralf@tronnes.org>
6267 S:      Maintained
6268 W:      https://github.com/notro/panel-mipi-dbi/wiki
6269 T:      git git://anongit.freedesktop.org/drm/drm-misc
6270 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6271 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6272
6273 DRM DRIVER FOR MSM ADRENO GPU
6274 M:      Rob Clark <robdclark@gmail.com>
6275 M:      Sean Paul <sean@poorly.run>
6276 R:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6277 L:      linux-arm-msm@vger.kernel.org
6278 L:      dri-devel@lists.freedesktop.org
6279 L:      freedreno@lists.freedesktop.org
6280 S:      Maintained
6281 T:      git https://gitlab.freedesktop.org/drm/msm.git
6282 F:      Documentation/devicetree/bindings/display/msm/
6283 F:      drivers/gpu/drm/msm/
6284 F:      include/uapi/drm/msm_drm.h
6285
6286 DRM DRIVER FOR NOVATEK NT35510 PANELS
6287 M:      Linus Walleij <linus.walleij@linaro.org>
6288 S:      Maintained
6289 T:      git git://anongit.freedesktop.org/drm/drm-misc
6290 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6291 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6292
6293 DRM DRIVER FOR NOVATEK NT35560 PANELS
6294 M:      Linus Walleij <linus.walleij@linaro.org>
6295 S:      Maintained
6296 T:      git git://anongit.freedesktop.org/drm/drm-misc
6297 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6298 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6299
6300 DRM DRIVER FOR NOVATEK NT36672A PANELS
6301 M:      Sumit Semwal <sumit.semwal@linaro.org>
6302 S:      Maintained
6303 T:      git git://anongit.freedesktop.org/drm/drm-misc
6304 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6305 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6306
6307 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6308 M:      Ben Skeggs <bskeggs@redhat.com>
6309 M:      Karol Herbst <kherbst@redhat.com>
6310 M:      Lyude Paul <lyude@redhat.com>
6311 L:      dri-devel@lists.freedesktop.org
6312 L:      nouveau@lists.freedesktop.org
6313 S:      Supported
6314 W:      https://nouveau.freedesktop.org/
6315 Q:      https://patchwork.freedesktop.org/project/nouveau/
6316 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6317 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6318 C:      irc://irc.oftc.net/nouveau
6319 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6320 F:      drivers/gpu/drm/nouveau/
6321 F:      include/uapi/drm/nouveau_drm.h
6322
6323 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6324 M:      Stefan Mavrodiev <stefan@olimex.com>
6325 S:      Maintained
6326 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6327 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6328
6329 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6330 M:      Noralf Trønnes <noralf@tronnes.org>
6331 S:      Maintained
6332 T:      git git://anongit.freedesktop.org/drm/drm-misc
6333 F:      Documentation/devicetree/bindings/display/repaper.txt
6334 F:      drivers/gpu/drm/tiny/repaper.c
6335
6336 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6337 M:      Javier Martinez Canillas <javierm@redhat.com>
6338 S:      Maintained
6339 T:      git git://anongit.freedesktop.org/drm/drm-misc
6340 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6341 F:      drivers/gpu/drm/solomon/ssd130x*
6342
6343 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6344 M:      Dave Airlie <airlied@redhat.com>
6345 M:      Gerd Hoffmann <kraxel@redhat.com>
6346 L:      virtualization@lists.linux-foundation.org
6347 S:      Obsolete
6348 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6349 T:      git git://anongit.freedesktop.org/drm/drm-misc
6350 F:      drivers/gpu/drm/tiny/cirrus.c
6351
6352 DRM DRIVER FOR QXL VIRTUAL GPU
6353 M:      Dave Airlie <airlied@redhat.com>
6354 M:      Gerd Hoffmann <kraxel@redhat.com>
6355 L:      virtualization@lists.linux-foundation.org
6356 L:      spice-devel@lists.freedesktop.org
6357 S:      Maintained
6358 T:      git git://anongit.freedesktop.org/drm/drm-misc
6359 F:      drivers/gpu/drm/qxl/
6360 F:      include/uapi/drm/qxl_drm.h
6361
6362 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6363 S:      Orphan / Obsolete
6364 F:      drivers/gpu/drm/r128/
6365 F:      include/uapi/drm/r128_drm.h
6366
6367 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6368 M:      Robert Chiras <robert.chiras@nxp.com>
6369 S:      Maintained
6370 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6371 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6372
6373 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6374 M:      Linus Walleij <linus.walleij@linaro.org>
6375 S:      Maintained
6376 T:      git git://anongit.freedesktop.org/drm/drm-misc
6377 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6378 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6379
6380 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6381 M:      Markuss Broks <markuss.broks@gmail.com>
6382 S:      Maintained
6383 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6384 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6385
6386 DRM DRIVER FOR SITRONIX ST7703 PANELS
6387 M:      Guido Günther <agx@sigxcpu.org>
6388 R:      Purism Kernel Team <kernel@puri.sm>
6389 R:      Ondrej Jirman <megous@megous.com>
6390 S:      Maintained
6391 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6392 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6393
6394 DRM DRIVER FOR SAVAGE VIDEO CARDS
6395 S:      Orphan / Obsolete
6396 F:      drivers/gpu/drm/savage/
6397 F:      include/uapi/drm/savage_drm.h
6398
6399 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6400 M:      Thomas Zimmermann <tzimmermann@suse.de>
6401 L:      dri-devel@lists.freedesktop.org
6402 S:      Maintained
6403 T:      git git://anongit.freedesktop.org/drm/drm-misc
6404 F:      drivers/gpu/drm/tiny/simpledrm.c
6405
6406 DRM DRIVER FOR SIS VIDEO CARDS
6407 S:      Orphan / Obsolete
6408 F:      drivers/gpu/drm/sis/
6409 F:      include/uapi/drm/sis_drm.h
6410
6411 DRM DRIVER FOR SITRONIX ST7586 PANELS
6412 M:      David Lechner <david@lechnology.com>
6413 S:      Maintained
6414 T:      git git://anongit.freedesktop.org/drm/drm-misc
6415 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6416 F:      drivers/gpu/drm/tiny/st7586.c
6417
6418 DRM DRIVER FOR SITRONIX ST7701 PANELS
6419 M:      Jagan Teki <jagan@amarulasolutions.com>
6420 S:      Maintained
6421 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6422 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6423
6424 DRM DRIVER FOR SITRONIX ST7735R PANELS
6425 M:      David Lechner <david@lechnology.com>
6426 S:      Maintained
6427 T:      git git://anongit.freedesktop.org/drm/drm-misc
6428 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6429 F:      drivers/gpu/drm/tiny/st7735r.c
6430
6431 DRM DRIVER FOR ST-ERICSSON MCDE
6432 M:      Linus Walleij <linus.walleij@linaro.org>
6433 S:      Maintained
6434 T:      git git://anongit.freedesktop.org/drm/drm-misc
6435 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6436 F:      drivers/gpu/drm/mcde/
6437
6438 DRM DRIVER FOR TDFX VIDEO CARDS
6439 S:      Orphan / Obsolete
6440 F:      drivers/gpu/drm/tdfx/
6441
6442 DRM DRIVER FOR TPO TPG110 PANELS
6443 M:      Linus Walleij <linus.walleij@linaro.org>
6444 S:      Maintained
6445 T:      git git://anongit.freedesktop.org/drm/drm-misc
6446 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6447 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6448
6449 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6450 M:      Dave Airlie <airlied@redhat.com>
6451 R:      Sean Paul <sean@poorly.run>
6452 R:      Thomas Zimmermann <tzimmermann@suse.de>
6453 L:      dri-devel@lists.freedesktop.org
6454 S:      Supported
6455 T:      git git://anongit.freedesktop.org/drm/drm-misc
6456 F:      drivers/gpu/drm/udl/
6457
6458 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6459 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6460 M:      Melissa Wen <melissa.srw@gmail.com>
6461 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6462 R:      Daniel Vetter <daniel@ffwll.ch>
6463 L:      dri-devel@lists.freedesktop.org
6464 S:      Maintained
6465 T:      git git://anongit.freedesktop.org/drm/drm-misc
6466 F:      Documentation/gpu/vkms.rst
6467 F:      drivers/gpu/drm/vkms/
6468
6469 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6470 M:      Hans de Goede <hdegoede@redhat.com>
6471 L:      dri-devel@lists.freedesktop.org
6472 S:      Maintained
6473 T:      git git://anongit.freedesktop.org/drm/drm-misc
6474 F:      drivers/gpu/drm/vboxvideo/
6475
6476 DRM DRIVER FOR VMWARE VIRTUAL GPU
6477 M:      Zack Rusin <zackr@vmware.com>
6478 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6479 L:      dri-devel@lists.freedesktop.org
6480 S:      Supported
6481 T:      git git://anongit.freedesktop.org/drm/drm-misc
6482 F:      drivers/gpu/drm/vmwgfx/
6483 F:      include/uapi/drm/vmwgfx_drm.h
6484
6485 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6486 M:      Linus Walleij <linus.walleij@linaro.org>
6487 S:      Maintained
6488 T:      git git://anongit.freedesktop.org/drm/drm-misc
6489 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6490 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6491
6492 DRM DRIVERS
6493 M:      David Airlie <airlied@linux.ie>
6494 M:      Daniel Vetter <daniel@ffwll.ch>
6495 L:      dri-devel@lists.freedesktop.org
6496 S:      Maintained
6497 B:      https://gitlab.freedesktop.org/drm
6498 C:      irc://irc.oftc.net/dri-devel
6499 T:      git git://anongit.freedesktop.org/drm/drm
6500 F:      Documentation/devicetree/bindings/display/
6501 F:      Documentation/devicetree/bindings/gpu/
6502 F:      Documentation/gpu/
6503 F:      drivers/gpu/
6504 F:      include/drm/
6505 F:      include/linux/vga*
6506 F:      include/uapi/drm/
6507
6508 DRM DRIVERS AND MISC GPU PATCHES
6509 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6510 M:      Maxime Ripard <mripard@kernel.org>
6511 M:      Thomas Zimmermann <tzimmermann@suse.de>
6512 S:      Maintained
6513 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6514 T:      git git://anongit.freedesktop.org/drm/drm-misc
6515 F:      Documentation/gpu/
6516 F:      drivers/gpu/drm/*
6517 F:      drivers/gpu/vga/
6518 F:      include/drm/drm*
6519 F:      include/linux/vga*
6520 F:      include/uapi/drm/drm*
6521
6522 DRM DRIVERS FOR ALLWINNER A10
6523 M:      Maxime Ripard <mripard@kernel.org>
6524 M:      Chen-Yu Tsai <wens@csie.org>
6525 L:      dri-devel@lists.freedesktop.org
6526 S:      Supported
6527 T:      git git://anongit.freedesktop.org/drm/drm-misc
6528 F:      Documentation/devicetree/bindings/display/allwinner*
6529 F:      drivers/gpu/drm/sun4i/
6530
6531 DRM DRIVERS FOR AMLOGIC SOCS
6532 M:      Neil Armstrong <narmstrong@baylibre.com>
6533 L:      dri-devel@lists.freedesktop.org
6534 L:      linux-amlogic@lists.infradead.org
6535 S:      Supported
6536 W:      http://linux-meson.com/
6537 T:      git git://anongit.freedesktop.org/drm/drm-misc
6538 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6539 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6540 F:      Documentation/gpu/meson.rst
6541 F:      drivers/gpu/drm/meson/
6542
6543 DRM DRIVERS FOR ATMEL HLCDC
6544 M:      Sam Ravnborg <sam@ravnborg.org>
6545 M:      Boris Brezillon <bbrezillon@kernel.org>
6546 L:      dri-devel@lists.freedesktop.org
6547 S:      Supported
6548 T:      git git://anongit.freedesktop.org/drm/drm-misc
6549 F:      Documentation/devicetree/bindings/display/atmel/
6550 F:      drivers/gpu/drm/atmel-hlcdc/
6551
6552 DRM DRIVERS FOR BRIDGE CHIPS
6553 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6554 M:      Neil Armstrong <narmstrong@baylibre.com>
6555 M:      Robert Foss <robert.foss@linaro.org>
6556 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6557 R:      Jonas Karlman <jonas@kwiboo.se>
6558 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6559 S:      Maintained
6560 T:      git git://anongit.freedesktop.org/drm/drm-misc
6561 F:      drivers/gpu/drm/bridge/
6562
6563 DRM DRIVERS FOR EXYNOS
6564 M:      Inki Dae <inki.dae@samsung.com>
6565 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6566 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6567 M:      Kyungmin Park <kyungmin.park@samsung.com>
6568 L:      dri-devel@lists.freedesktop.org
6569 S:      Supported
6570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6571 F:      Documentation/devicetree/bindings/display/exynos/
6572 F:      Documentation/devicetree/bindings/display/samsung/
6573 F:      drivers/gpu/drm/exynos/
6574 F:      include/uapi/drm/exynos_drm.h
6575
6576 DRM DRIVERS FOR FREESCALE DCU
6577 M:      Stefan Agner <stefan@agner.ch>
6578 M:      Alison Wang <alison.wang@nxp.com>
6579 L:      dri-devel@lists.freedesktop.org
6580 S:      Supported
6581 T:      git git://anongit.freedesktop.org/drm/drm-misc
6582 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6583 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6584 F:      drivers/gpu/drm/fsl-dcu/
6585
6586 DRM DRIVERS FOR FREESCALE IMX
6587 M:      Philipp Zabel <p.zabel@pengutronix.de>
6588 L:      dri-devel@lists.freedesktop.org
6589 S:      Maintained
6590 F:      Documentation/devicetree/bindings/display/imx/
6591 F:      drivers/gpu/drm/imx/
6592 F:      drivers/gpu/ipu-v3/
6593
6594 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6595 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6596 L:      dri-devel@lists.freedesktop.org
6597 S:      Maintained
6598 T:      git git://github.com/patjak/drm-gma500
6599 F:      drivers/gpu/drm/gma500/
6600
6601 DRM DRIVERS FOR HISILICON
6602 M:      Xinliang Liu <xinliang.liu@linaro.org>
6603 M:      Tian Tao  <tiantao6@hisilicon.com>
6604 R:      John Stultz <jstultz@google.com>
6605 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6606 R:      Chen Feng <puck.chen@hisilicon.com>
6607 L:      dri-devel@lists.freedesktop.org
6608 S:      Maintained
6609 T:      git git://anongit.freedesktop.org/drm/drm-misc
6610 F:      Documentation/devicetree/bindings/display/hisilicon/
6611 F:      drivers/gpu/drm/hisilicon/
6612
6613 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6614 M:      Deepak Rawat <drawat.floss@gmail.com>
6615 L:      linux-hyperv@vger.kernel.org
6616 L:      dri-devel@lists.freedesktop.org
6617 S:      Maintained
6618 T:      git git://anongit.freedesktop.org/drm/drm-misc
6619 F:      drivers/gpu/drm/hyperv
6620
6621 DRM DRIVERS FOR LIMA
6622 M:      Qiang Yu <yuq825@gmail.com>
6623 L:      dri-devel@lists.freedesktop.org
6624 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6625 S:      Maintained
6626 T:      git git://anongit.freedesktop.org/drm/drm-misc
6627 F:      drivers/gpu/drm/lima/
6628 F:      include/uapi/drm/lima_drm.h
6629
6630 DRM DRIVERS FOR MEDIATEK
6631 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6632 M:      Philipp Zabel <p.zabel@pengutronix.de>
6633 L:      dri-devel@lists.freedesktop.org
6634 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6635 S:      Supported
6636 F:      Documentation/devicetree/bindings/display/mediatek/
6637 F:      drivers/gpu/drm/mediatek/
6638 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6639 F:      drivers/phy/mediatek/phy-mtk-mipi*
6640
6641 DRM DRIVERS FOR NVIDIA TEGRA
6642 M:      Thierry Reding <thierry.reding@gmail.com>
6643 L:      dri-devel@lists.freedesktop.org
6644 L:      linux-tegra@vger.kernel.org
6645 S:      Supported
6646 T:      git git://anongit.freedesktop.org/tegra/linux.git
6647 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6648 F:      Documentation/devicetree/bindings/gpu/host1x/
6649 F:      drivers/gpu/drm/tegra/
6650 F:      drivers/gpu/host1x/
6651 F:      include/linux/host1x.h
6652 F:      include/uapi/drm/tegra_drm.h
6653
6654 DRM DRIVERS FOR RENESAS
6655 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6656 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6657 L:      dri-devel@lists.freedesktop.org
6658 L:      linux-renesas-soc@vger.kernel.org
6659 S:      Supported
6660 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6661 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6662 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6663 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6664 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6665 F:      drivers/gpu/drm/rcar-du/
6666 F:      drivers/gpu/drm/shmobile/
6667 F:      include/linux/platform_data/shmob_drm.h
6668
6669 DRM DRIVERS FOR ROCKCHIP
6670 M:      Sandy Huang <hjc@rock-chips.com>
6671 M:      Heiko Stübner <heiko@sntech.de>
6672 L:      dri-devel@lists.freedesktop.org
6673 S:      Maintained
6674 T:      git git://anongit.freedesktop.org/drm/drm-misc
6675 F:      Documentation/devicetree/bindings/display/rockchip/
6676 F:      drivers/gpu/drm/rockchip/
6677
6678 DRM DRIVERS FOR STI
6679 M:      Alain Volmat <alain.volmat@foss.st.com>
6680 L:      dri-devel@lists.freedesktop.org
6681 S:      Maintained
6682 T:      git git://anongit.freedesktop.org/drm/drm-misc
6683 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6684 F:      drivers/gpu/drm/sti
6685
6686 DRM DRIVERS FOR STM
6687 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6688 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6689 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6690 L:      dri-devel@lists.freedesktop.org
6691 S:      Maintained
6692 T:      git git://anongit.freedesktop.org/drm/drm-misc
6693 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6694 F:      drivers/gpu/drm/stm
6695
6696 DRM DRIVERS FOR TI KEYSTONE
6697 M:      Jyri Sarha <jyri.sarha@iki.fi>
6698 M:      Tomi Valkeinen <tomba@kernel.org>
6699 L:      dri-devel@lists.freedesktop.org
6700 S:      Maintained
6701 T:      git git://anongit.freedesktop.org/drm/drm-misc
6702 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6703 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6704 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6705 F:      drivers/gpu/drm/tidss/
6706
6707 DRM DRIVERS FOR TI LCDC
6708 M:      Jyri Sarha <jyri.sarha@iki.fi>
6709 R:      Tomi Valkeinen <tomba@kernel.org>
6710 L:      dri-devel@lists.freedesktop.org
6711 S:      Maintained
6712 F:      Documentation/devicetree/bindings/display/tilcdc/
6713 F:      drivers/gpu/drm/tilcdc/
6714
6715 DRM DRIVERS FOR TI OMAP
6716 M:      Tomi Valkeinen <tomba@kernel.org>
6717 L:      dri-devel@lists.freedesktop.org
6718 S:      Maintained
6719 F:      Documentation/devicetree/bindings/display/ti/
6720 F:      drivers/gpu/drm/omapdrm/
6721
6722 DRM DRIVERS FOR V3D
6723 M:      Emma Anholt <emma@anholt.net>
6724 S:      Supported
6725 T:      git git://anongit.freedesktop.org/drm/drm-misc
6726 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6727 F:      drivers/gpu/drm/v3d/
6728 F:      include/uapi/drm/v3d_drm.h
6729
6730 DRM DRIVERS FOR VC4
6731 M:      Emma Anholt <emma@anholt.net>
6732 M:      Maxime Ripard <mripard@kernel.org>
6733 S:      Supported
6734 T:      git git://github.com/anholt/linux
6735 T:      git git://anongit.freedesktop.org/drm/drm-misc
6736 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6737 F:      drivers/gpu/drm/vc4/
6738 F:      include/uapi/drm/vc4_drm.h
6739
6740 DRM DRIVERS FOR VIVANTE GPU IP
6741 M:      Lucas Stach <l.stach@pengutronix.de>
6742 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6743 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6744 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6745 L:      dri-devel@lists.freedesktop.org
6746 S:      Maintained
6747 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6748 F:      drivers/gpu/drm/etnaviv/
6749 F:      include/uapi/drm/etnaviv_drm.h
6750
6751 DRM DRIVERS FOR XEN
6752 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6753 L:      dri-devel@lists.freedesktop.org
6754 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6755 S:      Supported
6756 T:      git git://anongit.freedesktop.org/drm/drm-misc
6757 F:      Documentation/gpu/xen-front.rst
6758 F:      drivers/gpu/drm/xen/
6759
6760 DRM DRIVERS FOR XILINX
6761 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6762 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6763 L:      dri-devel@lists.freedesktop.org
6764 S:      Maintained
6765 T:      git git://anongit.freedesktop.org/drm/drm-misc
6766 F:      Documentation/devicetree/bindings/display/xlnx/
6767 F:      drivers/gpu/drm/xlnx/
6768
6769 DRM PANEL DRIVERS
6770 M:      Thierry Reding <thierry.reding@gmail.com>
6771 R:      Sam Ravnborg <sam@ravnborg.org>
6772 L:      dri-devel@lists.freedesktop.org
6773 S:      Maintained
6774 T:      git git://anongit.freedesktop.org/drm/drm-misc
6775 F:      Documentation/devicetree/bindings/display/panel/
6776 F:      drivers/gpu/drm/drm_panel.c
6777 F:      drivers/gpu/drm/panel/
6778 F:      include/drm/drm_panel.h
6779
6780 DRM PRIVACY-SCREEN CLASS
6781 M:      Hans de Goede <hdegoede@redhat.com>
6782 L:      dri-devel@lists.freedesktop.org
6783 S:      Maintained
6784 T:      git git://anongit.freedesktop.org/drm/drm-misc
6785 F:      drivers/gpu/drm/drm_privacy_screen*
6786 F:      include/drm/drm_privacy_screen*
6787
6788 DRM TTM SUBSYSTEM
6789 M:      Christian Koenig <christian.koenig@amd.com>
6790 M:      Huang Rui <ray.huang@amd.com>
6791 L:      dri-devel@lists.freedesktop.org
6792 S:      Maintained
6793 T:      git git://anongit.freedesktop.org/drm/drm-misc
6794 F:      drivers/gpu/drm/ttm/
6795 F:      include/drm/ttm/
6796
6797 DRM GPU SCHEDULER
6798 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6799 L:      dri-devel@lists.freedesktop.org
6800 S:      Maintained
6801 T:      git git://anongit.freedesktop.org/drm/drm-misc
6802 F:      drivers/gpu/drm/scheduler/
6803 F:      include/drm/gpu_scheduler.h
6804
6805 DSBR100 USB FM RADIO DRIVER
6806 M:      Alexey Klimov <klimov.linux@gmail.com>
6807 L:      linux-media@vger.kernel.org
6808 S:      Maintained
6809 T:      git git://linuxtv.org/media_tree.git
6810 F:      drivers/media/radio/dsbr100.c
6811
6812 DT3155 MEDIA DRIVER
6813 M:      Hans Verkuil <hverkuil@xs4all.nl>
6814 L:      linux-media@vger.kernel.org
6815 S:      Odd Fixes
6816 W:      https://linuxtv.org
6817 T:      git git://linuxtv.org/media_tree.git
6818 F:      drivers/media/pci/dt3155/
6819
6820 DVB_USB_AF9015 MEDIA DRIVER
6821 M:      Antti Palosaari <crope@iki.fi>
6822 L:      linux-media@vger.kernel.org
6823 S:      Maintained
6824 W:      https://linuxtv.org
6825 W:      http://palosaari.fi/linux/
6826 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6827 T:      git git://linuxtv.org/anttip/media_tree.git
6828 F:      drivers/media/usb/dvb-usb-v2/af9015*
6829
6830 DVB_USB_AF9035 MEDIA DRIVER
6831 M:      Antti Palosaari <crope@iki.fi>
6832 L:      linux-media@vger.kernel.org
6833 S:      Maintained
6834 W:      https://linuxtv.org
6835 W:      http://palosaari.fi/linux/
6836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6837 T:      git git://linuxtv.org/anttip/media_tree.git
6838 F:      drivers/media/usb/dvb-usb-v2/af9035*
6839
6840 DVB_USB_ANYSEE MEDIA DRIVER
6841 M:      Antti Palosaari <crope@iki.fi>
6842 L:      linux-media@vger.kernel.org
6843 S:      Maintained
6844 W:      https://linuxtv.org
6845 W:      http://palosaari.fi/linux/
6846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6847 T:      git git://linuxtv.org/anttip/media_tree.git
6848 F:      drivers/media/usb/dvb-usb-v2/anysee*
6849
6850 DVB_USB_AU6610 MEDIA DRIVER
6851 M:      Antti Palosaari <crope@iki.fi>
6852 L:      linux-media@vger.kernel.org
6853 S:      Maintained
6854 W:      https://linuxtv.org
6855 W:      http://palosaari.fi/linux/
6856 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6857 T:      git git://linuxtv.org/anttip/media_tree.git
6858 F:      drivers/media/usb/dvb-usb-v2/au6610*
6859
6860 DVB_USB_CE6230 MEDIA DRIVER
6861 M:      Antti Palosaari <crope@iki.fi>
6862 L:      linux-media@vger.kernel.org
6863 S:      Maintained
6864 W:      https://linuxtv.org
6865 W:      http://palosaari.fi/linux/
6866 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6867 T:      git git://linuxtv.org/anttip/media_tree.git
6868 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6869
6870 DVB_USB_CXUSB MEDIA DRIVER
6871 M:      Michael Krufky <mkrufky@linuxtv.org>
6872 L:      linux-media@vger.kernel.org
6873 S:      Maintained
6874 W:      https://linuxtv.org
6875 W:      http://github.com/mkrufky
6876 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6877 T:      git git://linuxtv.org/media_tree.git
6878 F:      drivers/media/usb/dvb-usb/cxusb*
6879
6880 DVB_USB_EC168 MEDIA DRIVER
6881 M:      Antti Palosaari <crope@iki.fi>
6882 L:      linux-media@vger.kernel.org
6883 S:      Maintained
6884 W:      https://linuxtv.org
6885 W:      http://palosaari.fi/linux/
6886 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6887 T:      git git://linuxtv.org/anttip/media_tree.git
6888 F:      drivers/media/usb/dvb-usb-v2/ec168*
6889
6890 DVB_USB_GL861 MEDIA DRIVER
6891 M:      Antti Palosaari <crope@iki.fi>
6892 L:      linux-media@vger.kernel.org
6893 S:      Maintained
6894 W:      https://linuxtv.org
6895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6896 T:      git git://linuxtv.org/anttip/media_tree.git
6897 F:      drivers/media/usb/dvb-usb-v2/gl861*
6898
6899 DVB_USB_MXL111SF MEDIA DRIVER
6900 M:      Michael Krufky <mkrufky@linuxtv.org>
6901 L:      linux-media@vger.kernel.org
6902 S:      Maintained
6903 W:      https://linuxtv.org
6904 W:      http://github.com/mkrufky
6905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6906 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6907 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6908
6909 DVB_USB_RTL28XXU MEDIA DRIVER
6910 M:      Antti Palosaari <crope@iki.fi>
6911 L:      linux-media@vger.kernel.org
6912 S:      Maintained
6913 W:      https://linuxtv.org
6914 W:      http://palosaari.fi/linux/
6915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6916 T:      git git://linuxtv.org/anttip/media_tree.git
6917 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6918
6919 DVB_USB_V2 MEDIA DRIVER
6920 M:      Antti Palosaari <crope@iki.fi>
6921 L:      linux-media@vger.kernel.org
6922 S:      Maintained
6923 W:      https://linuxtv.org
6924 W:      http://palosaari.fi/linux/
6925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6926 T:      git git://linuxtv.org/anttip/media_tree.git
6927 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6928 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6929
6930 DYNAMIC DEBUG
6931 M:      Jason Baron <jbaron@akamai.com>
6932 S:      Maintained
6933 F:      include/linux/dynamic_debug.h
6934 F:      lib/dynamic_debug.c
6935
6936 DYNAMIC INTERRUPT MODERATION
6937 M:      Tal Gilboa <talgi@nvidia.com>
6938 S:      Maintained
6939 F:      Documentation/networking/net_dim.rst
6940 F:      include/linux/dim.h
6941 F:      lib/dim/
6942
6943 DZ DECSTATION DZ11 SERIAL DRIVER
6944 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6945 S:      Maintained
6946 F:      drivers/tty/serial/dz.*
6947
6948 E3X0 POWER BUTTON DRIVER
6949 M:      Moritz Fischer <moritz.fischer@ettus.com>
6950 L:      usrp-users@lists.ettus.com
6951 S:      Supported
6952 W:      http://www.ettus.com
6953 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6954 F:      drivers/input/misc/e3x0-button.c
6955
6956 E4000 MEDIA DRIVER
6957 M:      Antti Palosaari <crope@iki.fi>
6958 L:      linux-media@vger.kernel.org
6959 S:      Maintained
6960 W:      https://linuxtv.org
6961 W:      http://palosaari.fi/linux/
6962 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6963 T:      git git://linuxtv.org/anttip/media_tree.git
6964 F:      drivers/media/tuners/e4000*
6965
6966 EARTH_PT1 MEDIA DRIVER
6967 M:      Akihiro Tsukada <tskd08@gmail.com>
6968 L:      linux-media@vger.kernel.org
6969 S:      Odd Fixes
6970 F:      drivers/media/pci/pt1/
6971
6972 EARTH_PT3 MEDIA DRIVER
6973 M:      Akihiro Tsukada <tskd08@gmail.com>
6974 L:      linux-media@vger.kernel.org
6975 S:      Odd Fixes
6976 F:      drivers/media/pci/pt3/
6977
6978 EC100 MEDIA DRIVER
6979 M:      Antti Palosaari <crope@iki.fi>
6980 L:      linux-media@vger.kernel.org
6981 S:      Maintained
6982 W:      https://linuxtv.org
6983 W:      http://palosaari.fi/linux/
6984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6985 T:      git git://linuxtv.org/anttip/media_tree.git
6986 F:      drivers/media/dvb-frontends/ec100*
6987
6988 ECRYPT FILE SYSTEM
6989 M:      Tyler Hicks <code@tyhicks.com>
6990 L:      ecryptfs@vger.kernel.org
6991 S:      Odd Fixes
6992 W:      http://ecryptfs.org
6993 W:      https://launchpad.net/ecryptfs
6994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6995 F:      Documentation/filesystems/ecryptfs.rst
6996 F:      fs/ecryptfs/
6997
6998 EDAC-AMD64
6999 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7000 L:      linux-edac@vger.kernel.org
7001 S:      Supported
7002 F:      drivers/edac/amd64_edac*
7003 F:      drivers/edac/mce_amd*
7004
7005 EDAC-ARMADA
7006 M:      Jan Luebbe <jlu@pengutronix.de>
7007 L:      linux-edac@vger.kernel.org
7008 S:      Maintained
7009 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7010 F:      drivers/edac/armada_xp_*
7011
7012 EDAC-AST2500
7013 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7014 S:      Supported
7015 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7016 F:      drivers/edac/aspeed_edac.c
7017
7018 EDAC-BLUEFIELD
7019 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7020 S:      Supported
7021 F:      drivers/edac/bluefield_edac.c
7022
7023 EDAC-CALXEDA
7024 M:      Andre Przywara <andre.przywara@arm.com>
7025 L:      linux-edac@vger.kernel.org
7026 S:      Maintained
7027 F:      drivers/edac/highbank*
7028
7029 EDAC-CAVIUM OCTEON
7030 M:      Ralf Baechle <ralf@linux-mips.org>
7031 L:      linux-edac@vger.kernel.org
7032 L:      linux-mips@vger.kernel.org
7033 S:      Supported
7034 F:      drivers/edac/octeon_edac*
7035
7036 EDAC-CAVIUM THUNDERX
7037 M:      Robert Richter <rric@kernel.org>
7038 L:      linux-edac@vger.kernel.org
7039 S:      Odd Fixes
7040 F:      drivers/edac/thunderx_edac*
7041
7042 EDAC-CORE
7043 M:      Borislav Petkov <bp@alien8.de>
7044 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7045 M:      Tony Luck <tony.luck@intel.com>
7046 R:      James Morse <james.morse@arm.com>
7047 R:      Robert Richter <rric@kernel.org>
7048 L:      linux-edac@vger.kernel.org
7049 S:      Supported
7050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7051 F:      Documentation/admin-guide/ras.rst
7052 F:      Documentation/driver-api/edac.rst
7053 F:      drivers/edac/
7054 F:      include/linux/edac.h
7055
7056 EDAC-DMC520
7057 M:      Lei Wang <lewan@microsoft.com>
7058 L:      linux-edac@vger.kernel.org
7059 S:      Supported
7060 F:      drivers/edac/dmc520_edac.c
7061
7062 EDAC-E752X
7063 M:      Mark Gross <markgross@kernel.org>
7064 L:      linux-edac@vger.kernel.org
7065 S:      Maintained
7066 F:      drivers/edac/e752x_edac.c
7067
7068 EDAC-E7XXX
7069 L:      linux-edac@vger.kernel.org
7070 S:      Maintained
7071 F:      drivers/edac/e7xxx_edac.c
7072
7073 EDAC-FSL_DDR
7074 M:      York Sun <york.sun@nxp.com>
7075 L:      linux-edac@vger.kernel.org
7076 S:      Maintained
7077 F:      drivers/edac/fsl_ddr_edac.*
7078
7079 EDAC-GHES
7080 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7081 L:      linux-edac@vger.kernel.org
7082 S:      Maintained
7083 F:      drivers/edac/ghes_edac.c
7084
7085 EDAC-I10NM
7086 M:      Tony Luck <tony.luck@intel.com>
7087 L:      linux-edac@vger.kernel.org
7088 S:      Maintained
7089 F:      drivers/edac/i10nm_base.c
7090
7091 EDAC-I3000
7092 L:      linux-edac@vger.kernel.org
7093 S:      Orphan
7094 F:      drivers/edac/i3000_edac.c
7095
7096 EDAC-I5000
7097 L:      linux-edac@vger.kernel.org
7098 S:      Maintained
7099 F:      drivers/edac/i5000_edac.c
7100
7101 EDAC-I5400
7102 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7103 L:      linux-edac@vger.kernel.org
7104 S:      Maintained
7105 F:      drivers/edac/i5400_edac.c
7106
7107 EDAC-I7300
7108 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7109 L:      linux-edac@vger.kernel.org
7110 S:      Maintained
7111 F:      drivers/edac/i7300_edac.c
7112
7113 EDAC-I7CORE
7114 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7115 L:      linux-edac@vger.kernel.org
7116 S:      Maintained
7117 F:      drivers/edac/i7core_edac.c
7118
7119 EDAC-I82443BXGX
7120 M:      Tim Small <tim@buttersideup.com>
7121 L:      linux-edac@vger.kernel.org
7122 S:      Maintained
7123 F:      drivers/edac/i82443bxgx_edac.c
7124
7125 EDAC-I82975X
7126 M:      "Arvind R." <arvino55@gmail.com>
7127 L:      linux-edac@vger.kernel.org
7128 S:      Maintained
7129 F:      drivers/edac/i82975x_edac.c
7130
7131 EDAC-IE31200
7132 M:      Jason Baron <jbaron@akamai.com>
7133 L:      linux-edac@vger.kernel.org
7134 S:      Maintained
7135 F:      drivers/edac/ie31200_edac.c
7136
7137 EDAC-IGEN6
7138 M:      Tony Luck <tony.luck@intel.com>
7139 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7140 L:      linux-edac@vger.kernel.org
7141 S:      Maintained
7142 F:      drivers/edac/igen6_edac.c
7143
7144 EDAC-MPC85XX
7145 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7146 L:      linux-edac@vger.kernel.org
7147 S:      Maintained
7148 F:      drivers/edac/mpc85xx_edac.[ch]
7149
7150 EDAC-PASEMI
7151 M:      Egor Martovetsky <egor@pasemi.com>
7152 L:      linux-edac@vger.kernel.org
7153 S:      Maintained
7154 F:      drivers/edac/pasemi_edac.c
7155
7156 EDAC-PND2
7157 M:      Tony Luck <tony.luck@intel.com>
7158 L:      linux-edac@vger.kernel.org
7159 S:      Maintained
7160 F:      drivers/edac/pnd2_edac.[ch]
7161
7162 EDAC-QCOM
7163 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7164 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7165 L:      linux-arm-msm@vger.kernel.org
7166 L:      linux-edac@vger.kernel.org
7167 S:      Maintained
7168 F:      drivers/edac/qcom_edac.c
7169
7170 EDAC-R82600
7171 M:      Tim Small <tim@buttersideup.com>
7172 L:      linux-edac@vger.kernel.org
7173 S:      Maintained
7174 F:      drivers/edac/r82600_edac.c
7175
7176 EDAC-SBRIDGE
7177 M:      Tony Luck <tony.luck@intel.com>
7178 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7179 L:      linux-edac@vger.kernel.org
7180 S:      Maintained
7181 F:      drivers/edac/sb_edac.c
7182
7183 EDAC-SKYLAKE
7184 M:      Tony Luck <tony.luck@intel.com>
7185 L:      linux-edac@vger.kernel.org
7186 S:      Maintained
7187 F:      drivers/edac/skx_*.[ch]
7188
7189 EDAC-TI
7190 M:      Tero Kristo <kristo@kernel.org>
7191 L:      linux-edac@vger.kernel.org
7192 S:      Odd Fixes
7193 F:      drivers/edac/ti_edac.c
7194
7195 EDIROL UA-101/UA-1000 DRIVER
7196 M:      Clemens Ladisch <clemens@ladisch.de>
7197 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7198 S:      Maintained
7199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7200 F:      sound/usb/misc/ua101.c
7201
7202 EFI TEST DRIVER
7203 M:      Ivan Hu <ivan.hu@canonical.com>
7204 M:      Ard Biesheuvel <ardb@kernel.org>
7205 L:      linux-efi@vger.kernel.org
7206 S:      Maintained
7207 F:      drivers/firmware/efi/test/
7208
7209 EFI VARIABLE FILESYSTEM
7210 M:      Matthew Garrett <matthew.garrett@nebula.com>
7211 M:      Jeremy Kerr <jk@ozlabs.org>
7212 M:      Ard Biesheuvel <ardb@kernel.org>
7213 L:      linux-efi@vger.kernel.org
7214 S:      Maintained
7215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7216 F:      fs/efivarfs/
7217
7218 EFIFB FRAMEBUFFER DRIVER
7219 M:      Peter Jones <pjones@redhat.com>
7220 L:      linux-fbdev@vger.kernel.org
7221 S:      Maintained
7222 F:      drivers/video/fbdev/efifb.c
7223
7224 EFS FILESYSTEM
7225 S:      Orphan
7226 W:      http://aeschi.ch.eu.org/efs/
7227 F:      fs/efs/
7228
7229 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7230 M:      Douglas Miller <dougmill@linux.ibm.com>
7231 L:      netdev@vger.kernel.org
7232 S:      Maintained
7233 F:      drivers/net/ethernet/ibm/ehea/
7234
7235 EM28XX VIDEO4LINUX DRIVER
7236 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7237 L:      linux-media@vger.kernel.org
7238 S:      Maintained
7239 W:      https://linuxtv.org
7240 T:      git git://linuxtv.org/media_tree.git
7241 F:      Documentation/admin-guide/media/em28xx*
7242 F:      drivers/media/usb/em28xx/
7243
7244 EMBEDDED LINUX
7245 M:      Matt Mackall <mpm@selenic.com>
7246 M:      David Woodhouse <dwmw2@infradead.org>
7247 L:      linux-embedded@vger.kernel.org
7248 S:      Maintained
7249
7250 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7251 M:      Adrian Hunter <adrian.hunter@intel.com>
7252 M:      Ritesh Harjani <riteshh@codeaurora.org>
7253 M:      Asutosh Das <asutoshd@codeaurora.org>
7254 L:      linux-mmc@vger.kernel.org
7255 S:      Maintained
7256 F:      drivers/mmc/host/cqhci*
7257
7258 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7259 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7260 L:      linux-scsi@vger.kernel.org
7261 S:      Supported
7262 W:      http://www.broadcom.com
7263 F:      drivers/scsi/be2iscsi/
7264
7265 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7266 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7267 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7268 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7269 L:      netdev@vger.kernel.org
7270 S:      Supported
7271 W:      http://www.emulex.com
7272 F:      drivers/net/ethernet/emulex/benet/
7273
7274 EMULEX ONECONNECT ROCE DRIVER
7275 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7276 L:      linux-rdma@vger.kernel.org
7277 S:      Odd Fixes
7278 W:      http://www.broadcom.com
7279 F:      drivers/infiniband/hw/ocrdma/
7280 F:      include/uapi/rdma/ocrdma-abi.h
7281
7282 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7283 M:      James Smart <james.smart@broadcom.com>
7284 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7285 L:      linux-scsi@vger.kernel.org
7286 S:      Supported
7287 W:      http://www.broadcom.com
7288 F:      drivers/scsi/lpfc/
7289
7290 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7291 M:      James Smart <james.smart@broadcom.com>
7292 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7293 L:      linux-scsi@vger.kernel.org
7294 L:      target-devel@vger.kernel.org
7295 S:      Supported
7296 W:      http://www.broadcom.com
7297 F:      drivers/scsi/elx/
7298
7299 ENE CB710 FLASH CARD READER DRIVER
7300 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7301 S:      Maintained
7302 F:      drivers/misc/cb710/
7303 F:      drivers/mmc/host/cb710-mmc.*
7304 F:      include/linux/cb710.h
7305
7306 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7307 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7308 S:      Maintained
7309 F:      drivers/media/rc/ene_ir.*
7310
7311 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7312 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7313 L:      linuxppc-dev@lists.ozlabs.org
7314 S:      Maintained
7315 F:      drivers/tty/ehv_bytechan.c
7316
7317 EPSON S1D13XXX FRAMEBUFFER DRIVER
7318 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7319 S:      Maintained
7320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7321 F:      drivers/video/fbdev/s1d13xxxfb.c
7322 F:      include/video/s1d13xxxfb.h
7323
7324 EROFS FILE SYSTEM
7325 M:      Gao Xiang <xiang@kernel.org>
7326 M:      Chao Yu <chao@kernel.org>
7327 L:      linux-erofs@lists.ozlabs.org
7328 S:      Maintained
7329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7330 F:      Documentation/filesystems/erofs.rst
7331 F:      fs/erofs/
7332 F:      include/trace/events/erofs.h
7333
7334 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7335 M:      Jeff Layton <jlayton@kernel.org>
7336 S:      Maintained
7337 F:      include/linux/errseq.h
7338 F:      lib/errseq.c
7339
7340 ET131X NETWORK DRIVER
7341 M:      Mark Einon <mark.einon@gmail.com>
7342 S:      Odd Fixes
7343 F:      drivers/net/ethernet/agere/
7344
7345 ETAS ES58X CAN/USB DRIVER
7346 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7347 L:      linux-can@vger.kernel.org
7348 S:      Maintained
7349 F:      drivers/net/can/usb/etas_es58x/
7350
7351 ETHERNET BRIDGE
7352 M:      Roopa Prabhu <roopa@nvidia.com>
7353 M:      Nikolay Aleksandrov <razor@blackwall.org>
7354 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7355 L:      netdev@vger.kernel.org
7356 S:      Maintained
7357 W:      http://www.linuxfoundation.org/en/Net:Bridge
7358 F:      include/linux/netfilter_bridge/
7359 F:      net/bridge/
7360
7361 ETHERNET PHY LIBRARY
7362 M:      Andrew Lunn <andrew@lunn.ch>
7363 M:      Heiner Kallweit <hkallweit1@gmail.com>
7364 R:      Russell King <linux@armlinux.org.uk>
7365 L:      netdev@vger.kernel.org
7366 S:      Maintained
7367 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7368 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7369 F:      Documentation/devicetree/bindings/net/mdio*
7370 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7371 F:      Documentation/networking/phy.rst
7372 F:      drivers/net/mdio/
7373 F:      drivers/net/mdio/acpi_mdio.c
7374 F:      drivers/net/mdio/fwnode_mdio.c
7375 F:      drivers/net/mdio/of_mdio.c
7376 F:      drivers/net/pcs/
7377 F:      drivers/net/phy/
7378 F:      include/dt-bindings/net/qca-ar803x.h
7379 F:      include/linux/linkmode.h
7380 F:      include/linux/*mdio*.h
7381 F:      include/linux/mdio/*.h
7382 F:      include/linux/mii.h
7383 F:      include/linux/of_net.h
7384 F:      include/linux/phy.h
7385 F:      include/linux/phy_fixed.h
7386 F:      include/linux/platform_data/mdio-bcm-unimac.h
7387 F:      include/linux/platform_data/mdio-gpio.h
7388 F:      include/trace/events/mdio.h
7389 F:      include/uapi/linux/mdio.h
7390 F:      include/uapi/linux/mii.h
7391 F:      net/core/of_net.c
7392
7393 EXEC & BINFMT API
7394 R:      Eric Biederman <ebiederm@xmission.com>
7395 R:      Kees Cook <keescook@chromium.org>
7396 L:      linux-mm@kvack.org
7397 S:      Supported
7398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7399 F:      arch/alpha/kernel/binfmt_loader.c
7400 F:      fs/*binfmt_*.c
7401 F:      fs/exec.c
7402 F:      include/linux/binfmts.h
7403 F:      include/linux/elf.h
7404 F:      include/uapi/linux/binfmts.h
7405 F:      include/uapi/linux/elf.h
7406 F:      tools/testing/selftests/exec/
7407 N:      asm/elf.h
7408 N:      binfmt
7409
7410 EXFAT FILE SYSTEM
7411 M:      Namjae Jeon <linkinjeon@kernel.org>
7412 M:      Sungjong Seo <sj1557.seo@samsung.com>
7413 L:      linux-fsdevel@vger.kernel.org
7414 S:      Maintained
7415 F:      fs/exfat/
7416
7417 EXT2 FILE SYSTEM
7418 M:      Jan Kara <jack@suse.com>
7419 L:      linux-ext4@vger.kernel.org
7420 S:      Maintained
7421 F:      Documentation/filesystems/ext2.rst
7422 F:      fs/ext2/
7423 F:      include/linux/ext2*
7424
7425 EXT4 FILE SYSTEM
7426 M:      "Theodore Ts'o" <tytso@mit.edu>
7427 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7428 L:      linux-ext4@vger.kernel.org
7429 S:      Maintained
7430 W:      http://ext4.wiki.kernel.org
7431 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7433 F:      Documentation/filesystems/ext4/
7434 F:      fs/ext4/
7435 F:      include/trace/events/ext4.h
7436
7437 Extended Verification Module (EVM)
7438 M:      Mimi Zohar <zohar@linux.ibm.com>
7439 L:      linux-integrity@vger.kernel.org
7440 S:      Supported
7441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7442 F:      security/integrity/evm/
7443 F:      security/integrity/
7444
7445 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7446 M:      Ard Biesheuvel <ardb@kernel.org>
7447 L:      linux-efi@vger.kernel.org
7448 S:      Maintained
7449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7450 F:      Documentation/admin-guide/efi-stub.rst
7451 F:      arch/*/include/asm/efi.h
7452 F:      arch/*/kernel/efi.c
7453 F:      arch/arm/boot/compressed/efi-header.S
7454 F:      arch/arm64/kernel/efi-entry.S
7455 F:      arch/x86/platform/efi/
7456 F:      drivers/firmware/efi/
7457 F:      include/linux/efi*.h
7458
7459 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7460 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7461 M:      Chanwoo Choi <cw00.choi@samsung.com>
7462 L:      linux-kernel@vger.kernel.org
7463 S:      Maintained
7464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7465 F:      Documentation/devicetree/bindings/extcon/
7466 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7467 F:      drivers/extcon/
7468 F:      include/linux/extcon.h
7469 F:      include/linux/extcon/
7470
7471 EXTRA BOOT CONFIG
7472 M:      Masami Hiramatsu <mhiramat@kernel.org>
7473 S:      Maintained
7474 F:      Documentation/admin-guide/bootconfig.rst
7475 F:      fs/proc/bootconfig.c
7476 F:      include/linux/bootconfig.h
7477 F:      lib/bootconfig.c
7478 F:      tools/bootconfig/*
7479 F:      tools/bootconfig/scripts/*
7480
7481 EXYNOS DP DRIVER
7482 M:      Jingoo Han <jingoohan1@gmail.com>
7483 L:      dri-devel@lists.freedesktop.org
7484 S:      Maintained
7485 F:      drivers/gpu/drm/exynos/exynos_dp*
7486
7487 EXYNOS SYSMMU (IOMMU) driver
7488 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7489 L:      iommu@lists.linux-foundation.org
7490 S:      Maintained
7491 F:      drivers/iommu/exynos-iommu.c
7492
7493 F2FS FILE SYSTEM
7494 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7495 M:      Chao Yu <chao@kernel.org>
7496 L:      linux-f2fs-devel@lists.sourceforge.net
7497 S:      Maintained
7498 W:      https://f2fs.wiki.kernel.org/
7499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7500 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7501 F:      Documentation/filesystems/f2fs.rst
7502 F:      fs/f2fs/
7503 F:      include/linux/f2fs_fs.h
7504 F:      include/trace/events/f2fs.h
7505 F:      include/uapi/linux/f2fs.h
7506
7507 F71805F HARDWARE MONITORING DRIVER
7508 M:      Jean Delvare <jdelvare@suse.com>
7509 L:      linux-hwmon@vger.kernel.org
7510 S:      Maintained
7511 F:      Documentation/hwmon/f71805f.rst
7512 F:      drivers/hwmon/f71805f.c
7513
7514 FADDR2LINE
7515 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7516 S:      Maintained
7517 F:      scripts/faddr2line
7518
7519 FAILOVER MODULE
7520 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7521 L:      netdev@vger.kernel.org
7522 S:      Supported
7523 F:      Documentation/networking/failover.rst
7524 F:      include/net/failover.h
7525 F:      net/core/failover.c
7526
7527 FANOTIFY
7528 M:      Jan Kara <jack@suse.cz>
7529 R:      Amir Goldstein <amir73il@gmail.com>
7530 R:      Matthew Bobrowski <repnop@google.com>
7531 L:      linux-fsdevel@vger.kernel.org
7532 S:      Maintained
7533 F:      fs/notify/fanotify/
7534 F:      include/linux/fanotify.h
7535 F:      include/uapi/linux/fanotify.h
7536
7537 FARSYNC SYNCHRONOUS DRIVER
7538 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7539 S:      Supported
7540 W:      http://www.farsite.co.uk/
7541 F:      drivers/net/wan/farsync.*
7542
7543 FAULT INJECTION SUPPORT
7544 M:      Akinobu Mita <akinobu.mita@gmail.com>
7545 S:      Supported
7546 F:      Documentation/fault-injection/
7547 F:      lib/fault-inject.c
7548
7549 FBTFT Framebuffer drivers
7550 L:      dri-devel@lists.freedesktop.org
7551 L:      linux-fbdev@vger.kernel.org
7552 S:      Orphan
7553 F:      drivers/staging/fbtft/
7554
7555 FC0011 TUNER DRIVER
7556 M:      Michael Buesch <m@bues.ch>
7557 L:      linux-media@vger.kernel.org
7558 S:      Maintained
7559 F:      drivers/media/tuners/fc0011.c
7560 F:      drivers/media/tuners/fc0011.h
7561
7562 FC2580 MEDIA DRIVER
7563 M:      Antti Palosaari <crope@iki.fi>
7564 L:      linux-media@vger.kernel.org
7565 S:      Maintained
7566 W:      https://linuxtv.org
7567 W:      http://palosaari.fi/linux/
7568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7569 T:      git git://linuxtv.org/anttip/media_tree.git
7570 F:      drivers/media/tuners/fc2580*
7571
7572 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7573 M:      Hannes Reinecke <hare@suse.de>
7574 L:      linux-scsi@vger.kernel.org
7575 S:      Supported
7576 W:      www.Open-FCoE.org
7577 F:      drivers/scsi/fcoe/
7578 F:      drivers/scsi/libfc/
7579 F:      include/scsi/fc/
7580 F:      include/scsi/libfc.h
7581 F:      include/scsi/libfcoe.h
7582 F:      include/uapi/scsi/fc/
7583
7584 FILE LOCKING (flock() and fcntl()/lockf())
7585 M:      Jeff Layton <jlayton@kernel.org>
7586 L:      linux-fsdevel@vger.kernel.org
7587 S:      Maintained
7588 F:      fs/fcntl.c
7589 F:      fs/locks.c
7590 F:      include/linux/fcntl.h
7591 F:      include/uapi/linux/fcntl.h
7592
7593 FILESYSTEM DIRECT ACCESS (DAX)
7594 M:      Dan Williams <dan.j.williams@intel.com>
7595 R:      Matthew Wilcox <willy@infradead.org>
7596 R:      Jan Kara <jack@suse.cz>
7597 L:      linux-fsdevel@vger.kernel.org
7598 L:      nvdimm@lists.linux.dev
7599 S:      Supported
7600 F:      fs/dax.c
7601 F:      include/linux/dax.h
7602 F:      include/trace/events/fs_dax.h
7603
7604 FILESYSTEMS (VFS and infrastructure)
7605 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7606 L:      linux-fsdevel@vger.kernel.org
7607 S:      Maintained
7608 F:      fs/*
7609 F:      include/linux/fs.h
7610 F:      include/linux/fs_types.h
7611 F:      include/uapi/linux/fs.h
7612 F:      include/uapi/linux/openat2.h
7613 X:      fs/io-wq.c
7614 X:      fs/io-wq.h
7615 X:      fs/io_uring.c
7616
7617 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7618 M:      Riku Voipio <riku.voipio@iki.fi>
7619 L:      linux-hwmon@vger.kernel.org
7620 S:      Maintained
7621 F:      drivers/hwmon/f75375s.c
7622 F:      include/linux/f75375s.h
7623
7624 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7625 M:      Clemens Ladisch <clemens@ladisch.de>
7626 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7627 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7628 S:      Maintained
7629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7630 F:      include/uapi/sound/firewire.h
7631 F:      sound/firewire/
7632
7633 FIREWIRE MEDIA DRIVERS (firedtv)
7634 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7635 L:      linux-media@vger.kernel.org
7636 L:      linux1394-devel@lists.sourceforge.net
7637 S:      Maintained
7638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7639 F:      drivers/media/firewire/
7640
7641 FIREWIRE SBP-2 TARGET
7642 M:      Chris Boot <bootc@bootc.net>
7643 L:      linux-scsi@vger.kernel.org
7644 L:      target-devel@vger.kernel.org
7645 L:      linux1394-devel@lists.sourceforge.net
7646 S:      Maintained
7647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7648 F:      drivers/target/sbp/
7649
7650 FIREWIRE SUBSYSTEM
7651 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7652 L:      linux1394-devel@lists.sourceforge.net
7653 S:      Maintained
7654 W:      http://ieee1394.wiki.kernel.org/
7655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7656 F:      drivers/firewire/
7657 F:      include/linux/firewire.h
7658 F:      include/uapi/linux/firewire*.h
7659 F:      tools/firewire/
7660
7661 FIRMWARE FRAMEWORK FOR ARMV8-A
7662 M:      Sudeep Holla <sudeep.holla@arm.com>
7663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7664 S:      Maintained
7665 F:      drivers/firmware/arm_ffa/
7666 F:      include/linux/arm_ffa.h
7667
7668 FIRMWARE LOADER (request_firmware)
7669 M:      Luis Chamberlain <mcgrof@kernel.org>
7670 L:      linux-kernel@vger.kernel.org
7671 S:      Maintained
7672 F:      Documentation/firmware_class/
7673 F:      drivers/base/firmware_loader/
7674 F:      include/linux/firmware.h
7675
7676 FLEXTIMER FTM-QUADDEC DRIVER
7677 M:      Patrick Havelange <patrick.havelange@essensium.com>
7678 L:      linux-iio@vger.kernel.org
7679 S:      Maintained
7680 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7681 F:      drivers/counter/ftm-quaddec.c
7682
7683 FLOPPY DRIVER
7684 M:      Denis Efremov <efremov@linux.com>
7685 L:      linux-block@vger.kernel.org
7686 S:      Odd Fixes
7687 F:      drivers/block/floppy.c
7688
7689 FLYSKY FSIA6B RC RECEIVER
7690 M:      Markus Koch <markus@notsyncing.net>
7691 L:      linux-input@vger.kernel.org
7692 S:      Maintained
7693 F:      drivers/input/joystick/fsia6b.c
7694
7695 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7696 M:      Geoffrey D. Bennett <g@b4.vu>
7697 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7698 S:      Maintained
7699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7700 F:      sound/usb/mixer_scarlett_gen2.c
7701
7702 FORCEDETH GIGABIT ETHERNET DRIVER
7703 M:      Rain River <rain.1986.08.12@gmail.com>
7704 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7705 L:      netdev@vger.kernel.org
7706 S:      Maintained
7707 F:      drivers/net/ethernet/nvidia/*
7708
7709 FORTIFY_SOURCE
7710 M:      Kees Cook <keescook@chromium.org>
7711 L:      linux-hardening@vger.kernel.org
7712 S:      Supported
7713 F:      include/linux/fortify-string.h
7714 F:      lib/test_fortify/*
7715 F:      scripts/test_fortify.sh
7716 K:      \b__NO_FORTIFY\b
7717
7718 FPGA DFL DRIVERS
7719 M:      Wu Hao <hao.wu@intel.com>
7720 R:      Tom Rix <trix@redhat.com>
7721 L:      linux-fpga@vger.kernel.org
7722 S:      Maintained
7723 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7724 F:      Documentation/fpga/dfl.rst
7725 F:      drivers/fpga/dfl*
7726 F:      drivers/uio/uio_dfl.c
7727 F:      include/linux/dfl.h
7728 F:      include/uapi/linux/fpga-dfl.h
7729
7730 FPGA MANAGER FRAMEWORK
7731 M:      Moritz Fischer <mdf@kernel.org>
7732 M:      Wu Hao <hao.wu@intel.com>
7733 M:      Xu Yilun <yilun.xu@intel.com>
7734 R:      Tom Rix <trix@redhat.com>
7735 L:      linux-fpga@vger.kernel.org
7736 S:      Maintained
7737 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7739 F:      Documentation/devicetree/bindings/fpga/
7740 F:      Documentation/driver-api/fpga/
7741 F:      Documentation/fpga/
7742 F:      drivers/fpga/
7743 F:      include/linux/fpga/
7744
7745 FPU EMULATOR
7746 M:      Bill Metzenthen <billm@melbpc.org.au>
7747 S:      Maintained
7748 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7749 F:      arch/x86/math-emu/
7750
7751 FRAMEBUFFER CORE
7752 M:      Daniel Vetter <daniel@ffwll.ch>
7753 F:      drivers/video/fbdev/core/
7754 S:      Odd Fixes
7755 T:      git git://anongit.freedesktop.org/drm/drm-misc
7756
7757 FRAMEBUFFER LAYER
7758 M:      Helge Deller <deller@gmx.de>
7759 L:      linux-fbdev@vger.kernel.org
7760 L:      dri-devel@lists.freedesktop.org
7761 S:      Maintained
7762 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7764 F:      Documentation/fb/
7765 F:      drivers/video/
7766 F:      include/linux/fb.h
7767 F:      include/uapi/linux/fb.h
7768 F:      include/uapi/video/
7769 F:      include/video/
7770
7771 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7772 M:      Horia Geantă <horia.geanta@nxp.com>
7773 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7774 M:      Gaurav Jain <gaurav.jain@nxp.com>
7775 L:      linux-crypto@vger.kernel.org
7776 S:      Maintained
7777 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7778 F:      drivers/crypto/caam/
7779
7780 FREESCALE COLDFIRE M5441X MMC DRIVER
7781 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7782 L:      linux-mmc@vger.kernel.org
7783 S:      Maintained
7784 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7785 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7786
7787 FREESCALE DIU FRAMEBUFFER DRIVER
7788 M:      Timur Tabi <timur@kernel.org>
7789 L:      linux-fbdev@vger.kernel.org
7790 S:      Maintained
7791 F:      drivers/video/fbdev/fsl-diu-fb.*
7792
7793 FREESCALE DMA DRIVER
7794 M:      Li Yang <leoyang.li@nxp.com>
7795 M:      Zhang Wei <zw@zh-kernel.org>
7796 L:      linuxppc-dev@lists.ozlabs.org
7797 S:      Maintained
7798 F:      drivers/dma/fsldma.*
7799
7800 FREESCALE DSPI DRIVER
7801 M:      Vladimir Oltean <olteanv@gmail.com>
7802 L:      linux-spi@vger.kernel.org
7803 S:      Maintained
7804 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7805 F:      drivers/spi/spi-fsl-dspi.c
7806 F:      include/linux/spi/spi-fsl-dspi.h
7807
7808 FREESCALE ENETC ETHERNET DRIVERS
7809 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7810 L:      netdev@vger.kernel.org
7811 S:      Maintained
7812 F:      drivers/net/ethernet/freescale/enetc/
7813
7814 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7815 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7816 L:      netdev@vger.kernel.org
7817 S:      Maintained
7818 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7819 F:      drivers/net/ethernet/freescale/gianfar*
7820
7821 FREESCALE GPMI NAND DRIVER
7822 M:      Han Xu <han.xu@nxp.com>
7823 L:      linux-mtd@lists.infradead.org
7824 S:      Maintained
7825 F:      drivers/mtd/nand/raw/gpmi-nand/*
7826
7827 FREESCALE I2C CPM DRIVER
7828 M:      Jochen Friedrich <jochen@scram.de>
7829 L:      linuxppc-dev@lists.ozlabs.org
7830 L:      linux-i2c@vger.kernel.org
7831 S:      Maintained
7832 F:      drivers/i2c/busses/i2c-cpm.c
7833
7834 FREESCALE IMX / MXC FEC DRIVER
7835 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7836 L:      netdev@vger.kernel.org
7837 S:      Maintained
7838 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7839 F:      drivers/net/ethernet/freescale/fec.h
7840 F:      drivers/net/ethernet/freescale/fec_main.c
7841 F:      drivers/net/ethernet/freescale/fec_ptp.c
7842
7843 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7844 M:      Sascha Hauer <s.hauer@pengutronix.de>
7845 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7846 L:      linux-fbdev@vger.kernel.org
7847 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7848 S:      Maintained
7849 F:      drivers/video/fbdev/imxfb.c
7850 F:      include/linux/platform_data/video-imxfb.h
7851
7852 FREESCALE IMX DDR PMU DRIVER
7853 M:      Frank Li <Frank.li@nxp.com>
7854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7855 S:      Maintained
7856 F:      Documentation/admin-guide/perf/imx-ddr.rst
7857 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7858 F:      drivers/perf/fsl_imx8_ddr_perf.c
7859
7860 FREESCALE IMX I2C DRIVER
7861 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7862 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7863 L:      linux-i2c@vger.kernel.org
7864 S:      Maintained
7865 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7866 F:      drivers/i2c/busses/i2c-imx.c
7867
7868 FREESCALE IMX LPI2C DRIVER
7869 M:      Dong Aisheng <aisheng.dong@nxp.com>
7870 L:      linux-i2c@vger.kernel.org
7871 L:      linux-imx@nxp.com
7872 S:      Maintained
7873 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7874 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7875
7876 FREESCALE MPC I2C DRIVER
7877 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7878 L:      linux-i2c@vger.kernel.org
7879 S:      Maintained
7880 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7881 F:      drivers/i2c/busses/i2c-mpc.c
7882
7883 FREESCALE QORIQ DPAA ETHERNET DRIVER
7884 M:      Madalin Bucur <madalin.bucur@nxp.com>
7885 L:      netdev@vger.kernel.org
7886 S:      Maintained
7887 F:      drivers/net/ethernet/freescale/dpaa
7888
7889 FREESCALE QORIQ DPAA FMAN DRIVER
7890 M:      Madalin Bucur <madalin.bucur@nxp.com>
7891 L:      netdev@vger.kernel.org
7892 S:      Maintained
7893 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7894 F:      drivers/net/ethernet/freescale/fman
7895
7896 FREESCALE QORIQ PTP CLOCK DRIVER
7897 M:      Yangbo Lu <yangbo.lu@nxp.com>
7898 L:      netdev@vger.kernel.org
7899 S:      Maintained
7900 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7901 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7902 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7903 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7904 F:      drivers/ptp/ptp_qoriq.c
7905 F:      drivers/ptp/ptp_qoriq_debugfs.c
7906 F:      include/linux/fsl/ptp_qoriq.h
7907
7908 FREESCALE QUAD SPI DRIVER
7909 M:      Han Xu <han.xu@nxp.com>
7910 L:      linux-spi@vger.kernel.org
7911 S:      Maintained
7912 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7913 F:      drivers/spi/spi-fsl-qspi.c
7914
7915 FREESCALE QUICC ENGINE LIBRARY
7916 M:      Qiang Zhao <qiang.zhao@nxp.com>
7917 L:      linuxppc-dev@lists.ozlabs.org
7918 S:      Maintained
7919 F:      drivers/soc/fsl/qe/
7920 F:      include/soc/fsl/qe/
7921
7922 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7923 M:      Li Yang <leoyang.li@nxp.com>
7924 L:      netdev@vger.kernel.org
7925 L:      linuxppc-dev@lists.ozlabs.org
7926 S:      Maintained
7927 F:      drivers/net/ethernet/freescale/ucc_geth*
7928
7929 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7930 M:      Zhao Qiang <qiang.zhao@nxp.com>
7931 L:      netdev@vger.kernel.org
7932 L:      linuxppc-dev@lists.ozlabs.org
7933 S:      Maintained
7934 F:      drivers/net/wan/fsl_ucc_hdlc*
7935
7936 FREESCALE QUICC ENGINE UCC UART DRIVER
7937 M:      Timur Tabi <timur@kernel.org>
7938 L:      linuxppc-dev@lists.ozlabs.org
7939 S:      Maintained
7940 F:      drivers/tty/serial/ucc_uart.c
7941
7942 FREESCALE SOC DRIVERS
7943 M:      Li Yang <leoyang.li@nxp.com>
7944 L:      linuxppc-dev@lists.ozlabs.org
7945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7946 S:      Maintained
7947 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7948 F:      Documentation/devicetree/bindings/soc/fsl/
7949 F:      drivers/soc/fsl/
7950 F:      include/linux/fsl/
7951 F:      include/soc/fsl/
7952
7953 FREESCALE SOC FS_ENET DRIVER
7954 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7955 L:      linuxppc-dev@lists.ozlabs.org
7956 L:      netdev@vger.kernel.org
7957 S:      Maintained
7958 F:      drivers/net/ethernet/freescale/fs_enet/
7959 F:      include/linux/fs_enet_pd.h
7960
7961 FREESCALE SOC SOUND DRIVERS
7962 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
7963 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7964 R:      Fabio Estevam <festevam@gmail.com>
7965 R:      Nicolin Chen <nicoleotsuka@gmail.com>
7966 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7967 L:      linuxppc-dev@lists.ozlabs.org
7968 S:      Maintained
7969 F:      sound/soc/fsl/fsl*
7970 F:      sound/soc/fsl/imx*
7971 F:      sound/soc/fsl/mpc8610_hpcd.c
7972
7973 FREESCALE USB PERIPHERAL DRIVERS
7974 M:      Li Yang <leoyang.li@nxp.com>
7975 L:      linux-usb@vger.kernel.org
7976 L:      linuxppc-dev@lists.ozlabs.org
7977 S:      Maintained
7978 F:      drivers/usb/gadget/udc/fsl*
7979
7980 FREESCALE USB PHY DRIVER
7981 M:      Ran Wang <ran.wang_1@nxp.com>
7982 L:      linux-usb@vger.kernel.org
7983 L:      linuxppc-dev@lists.ozlabs.org
7984 S:      Maintained
7985 F:      drivers/usb/phy/phy-fsl-usb*
7986
7987 FREEVXFS FILESYSTEM
7988 M:      Christoph Hellwig <hch@infradead.org>
7989 S:      Maintained
7990 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7991 F:      fs/freevxfs/
7992
7993 FREEZER
7994 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7995 M:      Pavel Machek <pavel@ucw.cz>
7996 L:      linux-pm@vger.kernel.org
7997 S:      Supported
7998 F:      Documentation/power/freezing-of-tasks.rst
7999 F:      include/linux/freezer.h
8000 F:      kernel/freezer.c
8001
8002 FRONTSWAP API
8003 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8004 L:      linux-kernel@vger.kernel.org
8005 S:      Maintained
8006 F:      include/linux/frontswap.h
8007 F:      mm/frontswap.c
8008
8009 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8010 M:      David Howells <dhowells@redhat.com>
8011 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8012 S:      Supported
8013 F:      Documentation/filesystems/caching/
8014 F:      fs/fscache/
8015 F:      include/linux/fscache*.h
8016
8017 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8018 M:      Theodore Y. Ts'o <tytso@mit.edu>
8019 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8020 M:      Eric Biggers <ebiggers@kernel.org>
8021 L:      linux-fscrypt@vger.kernel.org
8022 S:      Supported
8023 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8024 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8025 F:      Documentation/filesystems/fscrypt.rst
8026 F:      fs/crypto/
8027 F:      include/linux/fscrypt*.h
8028 F:      include/uapi/linux/fscrypt.h
8029
8030 FSI SUBSYSTEM
8031 M:      Jeremy Kerr <jk@ozlabs.org>
8032 M:      Joel Stanley <joel@jms.id.au>
8033 R:      Alistar Popple <alistair@popple.id.au>
8034 R:      Eddie James <eajames@linux.ibm.com>
8035 L:      linux-fsi@lists.ozlabs.org
8036 S:      Supported
8037 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8039 F:      drivers/fsi/
8040 F:      include/linux/fsi*.h
8041 F:      include/trace/events/fsi*.h
8042
8043 FSI-ATTACHED I2C DRIVER
8044 M:      Eddie James <eajames@linux.ibm.com>
8045 L:      linux-i2c@vger.kernel.org
8046 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8047 S:      Maintained
8048 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8049 F:      drivers/i2c/busses/i2c-fsi.c
8050
8051 FSI-ATTACHED SPI DRIVER
8052 M:      Eddie James <eajames@linux.ibm.com>
8053 L:      linux-spi@vger.kernel.org
8054 S:      Maintained
8055 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8056 F:      drivers/spi/spi-fsi.c
8057
8058 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8059 M:      Jan Kara <jack@suse.cz>
8060 R:      Amir Goldstein <amir73il@gmail.com>
8061 L:      linux-fsdevel@vger.kernel.org
8062 S:      Maintained
8063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8064 F:      fs/notify/
8065 F:      include/linux/fsnotify*.h
8066
8067 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8068 M:      Eric Biggers <ebiggers@kernel.org>
8069 M:      Theodore Y. Ts'o <tytso@mit.edu>
8070 L:      linux-fscrypt@vger.kernel.org
8071 S:      Supported
8072 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8073 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8074 F:      Documentation/filesystems/fsverity.rst
8075 F:      fs/verity/
8076 F:      include/linux/fsverity.h
8077 F:      include/uapi/linux/fsverity.h
8078
8079 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8080 M:      Michael Zaidman <michael.zaidman@gmail.com>
8081 L:      linux-i2c@vger.kernel.org
8082 L:      linux-input@vger.kernel.org
8083 S:      Maintained
8084 F:      drivers/hid/hid-ft260.c
8085
8086 FUJITSU LAPTOP EXTRAS
8087 M:      Jonathan Woithe <jwoithe@just42.net>
8088 L:      platform-driver-x86@vger.kernel.org
8089 S:      Maintained
8090 F:      drivers/platform/x86/fujitsu-laptop.c
8091
8092 FUJITSU M-5MO LS CAMERA ISP DRIVER
8093 M:      Kyungmin Park <kyungmin.park@samsung.com>
8094 M:      Heungjun Kim <riverful.kim@samsung.com>
8095 L:      linux-media@vger.kernel.org
8096 S:      Maintained
8097 F:      drivers/media/i2c/m5mols/
8098 F:      include/media/i2c/m5mols.h
8099
8100 FUJITSU TABLET EXTRAS
8101 M:      Robert Gerlach <khnz@gmx.de>
8102 L:      platform-driver-x86@vger.kernel.org
8103 S:      Maintained
8104 F:      drivers/platform/x86/fujitsu-tablet.c
8105
8106 FUNGIBLE ETHERNET DRIVERS
8107 M:      Dimitris Michailidis <dmichail@fungible.com>
8108 L:      netdev@vger.kernel.org
8109 S:      Supported
8110 F:      drivers/net/ethernet/fungible/
8111
8112 FUSE: FILESYSTEM IN USERSPACE
8113 M:      Miklos Szeredi <miklos@szeredi.hu>
8114 L:      linux-fsdevel@vger.kernel.org
8115 S:      Maintained
8116 W:      https://github.com/libfuse/
8117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8118 F:      Documentation/filesystems/fuse.rst
8119 F:      fs/fuse/
8120 F:      include/uapi/linux/fuse.h
8121
8122 FUTEX SUBSYSTEM
8123 M:      Thomas Gleixner <tglx@linutronix.de>
8124 M:      Ingo Molnar <mingo@redhat.com>
8125 R:      Peter Zijlstra <peterz@infradead.org>
8126 R:      Darren Hart <dvhart@infradead.org>
8127 R:      Davidlohr Bueso <dave@stgolabs.net>
8128 R:      André Almeida <andrealmeid@igalia.com>
8129 L:      linux-kernel@vger.kernel.org
8130 S:      Maintained
8131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8132 F:      Documentation/locking/*futex*
8133 F:      include/asm-generic/futex.h
8134 F:      include/linux/futex.h
8135 F:      include/uapi/linux/futex.h
8136 F:      kernel/futex/*
8137 F:      tools/perf/bench/futex*
8138 F:      tools/testing/selftests/futex/
8139
8140 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8141 M:      Tim Harvey <tharvey@gateworks.com>
8142 M:      Robert Jones <rjones@gateworks.com>
8143 S:      Maintained
8144 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8145 F:      drivers/mfd/gateworks-gsc.c
8146 F:      include/linux/mfd/gsc.h
8147 F:      Documentation/hwmon/gsc-hwmon.rst
8148 F:      drivers/hwmon/gsc-hwmon.c
8149 F:      include/linux/platform_data/gsc_hwmon.h
8150
8151 GCC PLUGINS
8152 M:      Kees Cook <keescook@chromium.org>
8153 L:      linux-hardening@vger.kernel.org
8154 S:      Maintained
8155 F:      Documentation/kbuild/gcc-plugins.rst
8156 F:      scripts/Makefile.gcc-plugins
8157 F:      scripts/gcc-plugins/
8158
8159 GCOV BASED KERNEL PROFILING
8160 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8161 S:      Maintained
8162 F:      Documentation/dev-tools/gcov.rst
8163 F:      kernel/gcov/
8164
8165 GDB KERNEL DEBUGGING HELPER SCRIPTS
8166 M:      Jan Kiszka <jan.kiszka@siemens.com>
8167 M:      Kieran Bingham <kbingham@kernel.org>
8168 S:      Supported
8169 F:      scripts/gdb/
8170
8171 GEMINI CRYPTO DRIVER
8172 M:      Corentin Labbe <clabbe@baylibre.com>
8173 L:      linux-crypto@vger.kernel.org
8174 S:      Maintained
8175 F:      drivers/crypto/gemini/
8176
8177 GEMTEK FM RADIO RECEIVER DRIVER
8178 M:      Hans Verkuil <hverkuil@xs4all.nl>
8179 L:      linux-media@vger.kernel.org
8180 S:      Maintained
8181 W:      https://linuxtv.org
8182 T:      git git://linuxtv.org/media_tree.git
8183 F:      drivers/media/radio/radio-gemtek*
8184
8185 GENERIC ARCHITECTURE TOPOLOGY
8186 M:      Sudeep Holla <sudeep.holla@arm.com>
8187 L:      linux-kernel@vger.kernel.org
8188 S:      Maintained
8189 F:      drivers/base/arch_topology.c
8190 F:      include/linux/arch_topology.h
8191
8192 GENERIC ENTRY CODE
8193 M:      Thomas Gleixner <tglx@linutronix.de>
8194 M:      Peter Zijlstra <peterz@infradead.org>
8195 M:      Andy Lutomirski <luto@kernel.org>
8196 L:      linux-kernel@vger.kernel.org
8197 S:      Maintained
8198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8199 F:      include/linux/entry-common.h
8200 F:      include/linux/entry-kvm.h
8201 F:      kernel/entry/
8202
8203 GENERIC GPIO I2C DRIVER
8204 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8205 S:      Supported
8206 F:      drivers/i2c/busses/i2c-gpio.c
8207 F:      include/linux/platform_data/i2c-gpio.h
8208
8209 GENERIC GPIO I2C MULTIPLEXER DRIVER
8210 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8211 L:      linux-i2c@vger.kernel.org
8212 S:      Supported
8213 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8214 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8215 F:      include/linux/platform_data/i2c-mux-gpio.h
8216
8217 GENERIC HDLC (WAN) DRIVERS
8218 M:      Krzysztof Halasa <khc@pm.waw.pl>
8219 S:      Maintained
8220 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8221 F:      drivers/net/wan/c101.c
8222 F:      drivers/net/wan/hd6457*
8223 F:      drivers/net/wan/hdlc*
8224 F:      drivers/net/wan/n2.c
8225 F:      drivers/net/wan/pc300too.c
8226 F:      drivers/net/wan/pci200syn.c
8227 F:      drivers/net/wan/wanxl*
8228
8229 GENERIC INCLUDE/ASM HEADER FILES
8230 M:      Arnd Bergmann <arnd@arndb.de>
8231 L:      linux-arch@vger.kernel.org
8232 S:      Maintained
8233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8234 F:      include/asm-generic/
8235 F:      include/uapi/asm-generic/
8236
8237 GENERIC PHY FRAMEWORK
8238 M:      Kishon Vijay Abraham I <kishon@ti.com>
8239 M:      Vinod Koul <vkoul@kernel.org>
8240 L:      linux-phy@lists.infradead.org
8241 S:      Supported
8242 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8244 F:      Documentation/devicetree/bindings/phy/
8245 F:      drivers/phy/
8246 F:      include/linux/phy/
8247
8248 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8249 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8250 S:      Supported
8251 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8252
8253 GENERIC PM DOMAINS
8254 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8255 M:      Kevin Hilman <khilman@kernel.org>
8256 M:      Ulf Hansson <ulf.hansson@linaro.org>
8257 L:      linux-pm@vger.kernel.org
8258 S:      Supported
8259 F:      Documentation/devicetree/bindings/power/power?domain*
8260 F:      drivers/base/power/domain*.c
8261 F:      include/linux/pm_domain.h
8262
8263 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8264 M:      Eugen Hristev <eugen.hristev@microchip.com>
8265 L:      linux-input@vger.kernel.org
8266 S:      Maintained
8267 F:      drivers/input/touchscreen/resistive-adc-touch.c
8268
8269 GENERIC STRING LIBRARY
8270 R:      Andy Shevchenko <andy@kernel.org>
8271 S:      Maintained
8272 F:      lib/string.c
8273 F:      lib/string_helpers.c
8274 F:      lib/test_string.c
8275 F:      lib/test-string_helpers.c
8276
8277 GENERIC UIO DRIVER FOR PCI DEVICES
8278 M:      "Michael S. Tsirkin" <mst@redhat.com>
8279 L:      kvm@vger.kernel.org
8280 S:      Supported
8281 F:      drivers/uio/uio_pci_generic.c
8282
8283 GENERIC VDSO LIBRARY
8284 M:      Andy Lutomirski <luto@kernel.org>
8285 M:      Thomas Gleixner <tglx@linutronix.de>
8286 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8287 L:      linux-kernel@vger.kernel.org
8288 S:      Maintained
8289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8290 F:      include/asm-generic/vdso/vsyscall.h
8291 F:      include/vdso/
8292 F:      kernel/time/vsyscall.c
8293 F:      lib/vdso/
8294
8295 GENWQE (IBM Generic Workqueue Card)
8296 M:      Frank Haverkamp <haver@linux.ibm.com>
8297 S:      Supported
8298 F:      drivers/misc/genwqe/
8299
8300 GET_MAINTAINER SCRIPT
8301 M:      Joe Perches <joe@perches.com>
8302 S:      Maintained
8303 F:      scripts/get_maintainer.pl
8304
8305 GFS2 FILE SYSTEM
8306 M:      Bob Peterson <rpeterso@redhat.com>
8307 M:      Andreas Gruenbacher <agruenba@redhat.com>
8308 L:      cluster-devel@redhat.com
8309 S:      Supported
8310 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8312 F:      Documentation/filesystems/gfs2*
8313 F:      fs/gfs2/
8314 F:      include/uapi/linux/gfs2_ondisk.h
8315
8316 GIGABYTE WMI DRIVER
8317 M:      Thomas Weißschuh <thomas@weissschuh.net>
8318 L:      platform-driver-x86@vger.kernel.org
8319 S:      Maintained
8320 F:      drivers/platform/x86/gigabyte-wmi.c
8321
8322 GNSS SUBSYSTEM
8323 M:      Johan Hovold <johan@kernel.org>
8324 S:      Maintained
8325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8326 F:      Documentation/ABI/testing/sysfs-class-gnss
8327 F:      Documentation/devicetree/bindings/gnss/
8328 F:      drivers/gnss/
8329 F:      include/linux/gnss.h
8330
8331 GO7007 MPEG CODEC
8332 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8333 L:      linux-media@vger.kernel.org
8334 S:      Maintained
8335 F:      drivers/media/usb/go7007/
8336
8337 GOODIX TOUCHSCREEN
8338 M:      Bastien Nocera <hadess@hadess.net>
8339 M:      Hans de Goede <hdegoede@redhat.com>
8340 L:      linux-input@vger.kernel.org
8341 S:      Maintained
8342 F:      drivers/input/touchscreen/goodix*
8343
8344 GOOGLE ETHERNET DRIVERS
8345 M:      Jeroen de Borst <jeroendb@google.com>
8346 R:      Catherine Sullivan <csully@google.com>
8347 R:      David Awogbemila <awogbemila@google.com>
8348 L:      netdev@vger.kernel.org
8349 S:      Supported
8350 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8351 F:      drivers/net/ethernet/google
8352
8353 GPD POCKET FAN DRIVER
8354 M:      Hans de Goede <hdegoede@redhat.com>
8355 L:      platform-driver-x86@vger.kernel.org
8356 S:      Maintained
8357 F:      drivers/platform/x86/gpd-pocket-fan.c
8358
8359 GPIO ACPI SUPPORT
8360 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8361 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8362 L:      linux-gpio@vger.kernel.org
8363 L:      linux-acpi@vger.kernel.org
8364 S:      Maintained
8365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8366 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8367 F:      drivers/gpio/gpiolib-acpi.c
8368 F:      drivers/gpio/gpiolib-acpi.h
8369
8370 GPIO AGGREGATOR
8371 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8372 L:      linux-gpio@vger.kernel.org
8373 S:      Supported
8374 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8375 F:      drivers/gpio/gpio-aggregator.c
8376
8377 GPIO IR Transmitter
8378 M:      Sean Young <sean@mess.org>
8379 L:      linux-media@vger.kernel.org
8380 S:      Maintained
8381 F:      drivers/media/rc/gpio-ir-tx.c
8382
8383 GPIO MOCKUP DRIVER
8384 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8385 L:      linux-gpio@vger.kernel.org
8386 S:      Maintained
8387 F:      drivers/gpio/gpio-mockup.c
8388 F:      tools/testing/selftests/gpio/
8389
8390 GPIO REGMAP
8391 R:      Michael Walle <michael@walle.cc>
8392 S:      Maintained
8393 F:      drivers/gpio/gpio-regmap.c
8394 F:      include/linux/gpio/regmap.h
8395
8396 GPIO SUBSYSTEM
8397 M:      Linus Walleij <linus.walleij@linaro.org>
8398 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8399 L:      linux-gpio@vger.kernel.org
8400 S:      Maintained
8401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8402 F:      Documentation/ABI/obsolete/sysfs-gpio
8403 F:      Documentation/ABI/testing/gpio-cdev
8404 F:      Documentation/admin-guide/gpio/
8405 F:      Documentation/devicetree/bindings/gpio/
8406 F:      Documentation/driver-api/gpio/
8407 F:      drivers/gpio/
8408 F:      include/asm-generic/gpio.h
8409 F:      include/linux/gpio.h
8410 F:      include/linux/gpio/
8411 F:      include/linux/of_gpio.h
8412 F:      include/uapi/linux/gpio.h
8413 F:      tools/gpio/
8414
8415 GRE DEMULTIPLEXER DRIVER
8416 M:      Dmitry Kozlov <xeb@mail.ru>
8417 L:      netdev@vger.kernel.org
8418 S:      Maintained
8419 F:      include/net/gre.h
8420 F:      net/ipv4/gre_demux.c
8421 F:      net/ipv4/gre_offload.c
8422
8423 GRETH 10/100/1G Ethernet MAC device driver
8424 M:      Andreas Larsson <andreas@gaisler.com>
8425 L:      netdev@vger.kernel.org
8426 S:      Maintained
8427 F:      drivers/net/ethernet/aeroflex/
8428
8429 GREYBUS AUDIO PROTOCOLS DRIVERS
8430 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8431 M:      Mark Greer <mgreer@animalcreek.com>
8432 S:      Maintained
8433 F:      drivers/staging/greybus/audio_apbridgea.c
8434 F:      drivers/staging/greybus/audio_apbridgea.h
8435 F:      drivers/staging/greybus/audio_codec.c
8436 F:      drivers/staging/greybus/audio_codec.h
8437 F:      drivers/staging/greybus/audio_gb.c
8438 F:      drivers/staging/greybus/audio_manager.c
8439 F:      drivers/staging/greybus/audio_manager.h
8440 F:      drivers/staging/greybus/audio_manager_module.c
8441 F:      drivers/staging/greybus/audio_manager_private.h
8442 F:      drivers/staging/greybus/audio_manager_sysfs.c
8443 F:      drivers/staging/greybus/audio_module.c
8444 F:      drivers/staging/greybus/audio_topology.c
8445
8446 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8447 M:      Viresh Kumar <vireshk@kernel.org>
8448 S:      Maintained
8449 F:      drivers/staging/greybus/authentication.c
8450 F:      drivers/staging/greybus/bootrom.c
8451 F:      drivers/staging/greybus/firmware.h
8452 F:      drivers/staging/greybus/fw-core.c
8453 F:      drivers/staging/greybus/fw-download.c
8454 F:      drivers/staging/greybus/fw-management.c
8455 F:      drivers/staging/greybus/greybus_authentication.h
8456 F:      drivers/staging/greybus/greybus_firmware.h
8457 F:      drivers/staging/greybus/hid.c
8458 F:      drivers/staging/greybus/i2c.c
8459 F:      drivers/staging/greybus/spi.c
8460 F:      drivers/staging/greybus/spilib.c
8461 F:      drivers/staging/greybus/spilib.h
8462
8463 GREYBUS LOOPBACK DRIVER
8464 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8465 S:      Maintained
8466 F:      drivers/staging/greybus/loopback.c
8467
8468 GREYBUS PLATFORM DRIVERS
8469 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8470 S:      Maintained
8471 F:      drivers/staging/greybus/arche-apb-ctrl.c
8472 F:      drivers/staging/greybus/arche-platform.c
8473 F:      drivers/staging/greybus/arche_platform.h
8474
8475 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8476 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8477 S:      Maintained
8478 F:      drivers/staging/greybus/gpio.c
8479 F:      drivers/staging/greybus/light.c
8480 F:      drivers/staging/greybus/power_supply.c
8481 F:      drivers/staging/greybus/sdio.c
8482 F:      drivers/staging/greybus/spi.c
8483 F:      drivers/staging/greybus/spilib.c
8484
8485 GREYBUS SUBSYSTEM
8486 M:      Johan Hovold <johan@kernel.org>
8487 M:      Alex Elder <elder@kernel.org>
8488 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8489 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8490 S:      Maintained
8491 F:      drivers/greybus/
8492 F:      drivers/staging/greybus/
8493 F:      include/linux/greybus.h
8494 F:      include/linux/greybus/
8495
8496 GREYBUS UART PROTOCOLS DRIVERS
8497 M:      David Lin <dtwlin@gmail.com>
8498 S:      Maintained
8499 F:      drivers/staging/greybus/log.c
8500 F:      drivers/staging/greybus/uart.c
8501
8502 GS1662 VIDEO SERIALIZER
8503 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8504 L:      linux-media@vger.kernel.org
8505 S:      Maintained
8506 T:      git git://linuxtv.org/media_tree.git
8507 F:      drivers/media/spi/gs1662.c
8508
8509 GSPCA FINEPIX SUBDRIVER
8510 M:      Frank Zago <frank@zago.net>
8511 L:      linux-media@vger.kernel.org
8512 S:      Maintained
8513 T:      git git://linuxtv.org/media_tree.git
8514 F:      drivers/media/usb/gspca/finepix.c
8515
8516 GSPCA GL860 SUBDRIVER
8517 M:      Olivier Lorin <o.lorin@laposte.net>
8518 L:      linux-media@vger.kernel.org
8519 S:      Maintained
8520 T:      git git://linuxtv.org/media_tree.git
8521 F:      drivers/media/usb/gspca/gl860/
8522
8523 GSPCA M5602 SUBDRIVER
8524 M:      Erik Andren <erik.andren@gmail.com>
8525 L:      linux-media@vger.kernel.org
8526 S:      Maintained
8527 T:      git git://linuxtv.org/media_tree.git
8528 F:      drivers/media/usb/gspca/m5602/
8529
8530 GSPCA PAC207 SONIXB SUBDRIVER
8531 M:      Hans Verkuil <hverkuil@xs4all.nl>
8532 L:      linux-media@vger.kernel.org
8533 S:      Odd Fixes
8534 T:      git git://linuxtv.org/media_tree.git
8535 F:      drivers/media/usb/gspca/pac207.c
8536
8537 GSPCA SN9C20X SUBDRIVER
8538 M:      Brian Johnson <brijohn@gmail.com>
8539 L:      linux-media@vger.kernel.org
8540 S:      Maintained
8541 T:      git git://linuxtv.org/media_tree.git
8542 F:      drivers/media/usb/gspca/sn9c20x.c
8543
8544 GSPCA T613 SUBDRIVER
8545 M:      Leandro Costantino <lcostantino@gmail.com>
8546 L:      linux-media@vger.kernel.org
8547 S:      Maintained
8548 T:      git git://linuxtv.org/media_tree.git
8549 F:      drivers/media/usb/gspca/t613.c
8550
8551 GSPCA USB WEBCAM DRIVER
8552 M:      Hans Verkuil <hverkuil@xs4all.nl>
8553 L:      linux-media@vger.kernel.org
8554 S:      Odd Fixes
8555 T:      git git://linuxtv.org/media_tree.git
8556 F:      drivers/media/usb/gspca/
8557
8558 GTP (GPRS Tunneling Protocol)
8559 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8560 M:      Harald Welte <laforge@gnumonks.org>
8561 L:      osmocom-net-gprs@lists.osmocom.org
8562 S:      Maintained
8563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8564 F:      drivers/net/gtp.c
8565
8566 GUID PARTITION TABLE (GPT)
8567 M:      Davidlohr Bueso <dave@stgolabs.net>
8568 L:      linux-efi@vger.kernel.org
8569 S:      Maintained
8570 F:      block/partitions/efi.*
8571
8572 H8/300 ARCHITECTURE
8573 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8574 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8575 S:      Maintained
8576 W:      http://uclinux-h8.sourceforge.jp
8577 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8578 F:      arch/h8300/
8579 F:      drivers/clk/h8300/
8580 F:      drivers/clocksource/h8300_*.c
8581 F:      drivers/irqchip/irq-renesas-h8*.c
8582
8583 HABANALABS PCI DRIVER
8584 M:      Oded Gabbay <ogabbay@kernel.org>
8585 S:      Supported
8586 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8587 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8588 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8589 F:      drivers/misc/habanalabs/
8590 F:      include/uapi/misc/habanalabs.h
8591
8592 HACKRF MEDIA DRIVER
8593 M:      Antti Palosaari <crope@iki.fi>
8594 L:      linux-media@vger.kernel.org
8595 S:      Maintained
8596 W:      https://linuxtv.org
8597 W:      http://palosaari.fi/linux/
8598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8599 T:      git git://linuxtv.org/anttip/media_tree.git
8600 F:      drivers/media/usb/hackrf/
8601
8602 HANTRO VPU CODEC DRIVER
8603 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8604 M:      Philipp Zabel <p.zabel@pengutronix.de>
8605 L:      linux-media@vger.kernel.org
8606 L:      linux-rockchip@lists.infradead.org
8607 S:      Maintained
8608 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8609 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8610 F:      drivers/staging/media/hantro/
8611
8612 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8613 M:      Frank Seidel <frank@f-seidel.de>
8614 L:      platform-driver-x86@vger.kernel.org
8615 S:      Maintained
8616 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8617 F:      drivers/platform/x86/hdaps.c
8618
8619 HARDWARE MONITORING
8620 M:      Jean Delvare <jdelvare@suse.com>
8621 M:      Guenter Roeck <linux@roeck-us.net>
8622 L:      linux-hwmon@vger.kernel.org
8623 S:      Maintained
8624 W:      http://hwmon.wiki.kernel.org/
8625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8626 F:      Documentation/ABI/testing/sysfs-class-hwmon
8627 F:      Documentation/devicetree/bindings/hwmon/
8628 F:      Documentation/hwmon/
8629 F:      drivers/hwmon/
8630 F:      include/linux/hwmon*.h
8631 F:      include/trace/events/hwmon*.h
8632 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8633
8634 HARDWARE RANDOM NUMBER GENERATOR CORE
8635 M:      Matt Mackall <mpm@selenic.com>
8636 M:      Herbert Xu <herbert@gondor.apana.org.au>
8637 L:      linux-crypto@vger.kernel.org
8638 S:      Odd fixes
8639 F:      Documentation/admin-guide/hw_random.rst
8640 F:      Documentation/devicetree/bindings/rng/
8641 F:      drivers/char/hw_random/
8642 F:      include/linux/hw_random.h
8643
8644 HARDWARE SPINLOCK CORE
8645 M:      Ohad Ben-Cohen <ohad@wizery.com>
8646 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8647 R:      Baolin Wang <baolin.wang7@gmail.com>
8648 L:      linux-remoteproc@vger.kernel.org
8649 S:      Maintained
8650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8651 F:      Documentation/devicetree/bindings/hwlock/
8652 F:      Documentation/locking/hwspinlock.rst
8653 F:      drivers/hwspinlock/
8654 F:      include/linux/hwspinlock.h
8655
8656 HARDWARE TRACING FACILITIES
8657 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8658 S:      Maintained
8659 F:      drivers/hwtracing/
8660
8661 HARMONY SOUND DRIVER
8662 L:      linux-parisc@vger.kernel.org
8663 S:      Maintained
8664 F:      sound/parisc/harmony.*
8665
8666 HDPVR USB VIDEO ENCODER DRIVER
8667 M:      Hans Verkuil <hverkuil@xs4all.nl>
8668 L:      linux-media@vger.kernel.org
8669 S:      Odd Fixes
8670 W:      https://linuxtv.org
8671 T:      git git://linuxtv.org/media_tree.git
8672 F:      drivers/media/usb/hdpvr/
8673
8674 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8675 M:      Matt Hsiao <matt.hsiao@hpe.com>
8676 S:      Supported
8677 F:      drivers/misc/hpilo.[ch]
8678
8679 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8680 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8681 S:      Supported
8682 F:      Documentation/watchdog/hpwdt.rst
8683 F:      drivers/watchdog/hpwdt.c
8684
8685 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8686 M:      Don Brace <don.brace@microchip.com>
8687 L:      storagedev@microchip.com
8688 L:      linux-scsi@vger.kernel.org
8689 S:      Supported
8690 F:      Documentation/scsi/hpsa.rst
8691 F:      drivers/scsi/hpsa*.[ch]
8692 F:      include/linux/cciss*.h
8693 F:      include/uapi/linux/cciss*.h
8694
8695 HFI1 DRIVER
8696 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8697 L:      linux-rdma@vger.kernel.org
8698 S:      Supported
8699 F:      drivers/infiniband/hw/hfi1
8700
8701 HFS FILESYSTEM
8702 L:      linux-fsdevel@vger.kernel.org
8703 S:      Orphan
8704 F:      Documentation/filesystems/hfs.rst
8705 F:      fs/hfs/
8706
8707 HFSPLUS FILESYSTEM
8708 L:      linux-fsdevel@vger.kernel.org
8709 S:      Orphan
8710 F:      Documentation/filesystems/hfsplus.rst
8711 F:      fs/hfsplus/
8712
8713 HGA FRAMEBUFFER DRIVER
8714 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8715 L:      linux-nvidia@lists.surfsouth.com
8716 S:      Maintained
8717 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8718 F:      drivers/video/fbdev/hgafb.c
8719
8720 HIBERNATION (aka Software Suspend, aka swsusp)
8721 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8722 M:      Pavel Machek <pavel@ucw.cz>
8723 L:      linux-pm@vger.kernel.org
8724 S:      Supported
8725 B:      https://bugzilla.kernel.org
8726 F:      arch/*/include/asm/suspend*.h
8727 F:      arch/x86/power/
8728 F:      drivers/base/power/
8729 F:      include/linux/freezer.h
8730 F:      include/linux/pm.h
8731 F:      include/linux/suspend.h
8732 F:      kernel/power/
8733
8734 HID CORE LAYER
8735 M:      Jiri Kosina <jikos@kernel.org>
8736 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8737 L:      linux-input@vger.kernel.org
8738 S:      Maintained
8739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8740 F:      drivers/hid/
8741 F:      include/linux/hid*
8742 F:      include/uapi/linux/hid*
8743
8744 HID LOGITECH DRIVERS
8745 R:      Filipe Laíns <lains@riseup.net>
8746 L:      linux-input@vger.kernel.org
8747 S:      Maintained
8748 F:      drivers/hid/hid-logitech-*
8749
8750 HID PLAYSTATION DRIVER
8751 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8752 L:      linux-input@vger.kernel.org
8753 S:      Supported
8754 F:      drivers/hid/hid-playstation.c
8755
8756 HID SENSOR HUB DRIVERS
8757 M:      Jiri Kosina <jikos@kernel.org>
8758 M:      Jonathan Cameron <jic23@kernel.org>
8759 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8760 L:      linux-input@vger.kernel.org
8761 L:      linux-iio@vger.kernel.org
8762 S:      Maintained
8763 F:      Documentation/hid/hid-sensor*
8764 F:      drivers/hid/hid-sensor-*
8765 F:      drivers/iio/*/hid-*
8766 F:      include/linux/hid-sensor-*
8767
8768 HID WACOM DRIVER
8769 M:      Ping Cheng <ping.cheng@wacom.com>
8770 M:      Jason Gerecke  <jason.gerecke@wacom.com>
8771 L:      linux-input@vger.kernel.org
8772 S:      Maintained
8773 F:      drivers/hid/wacom.h
8774 F:      drivers/hid/wacom_*
8775
8776 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8777 M:      Thomas Gleixner <tglx@linutronix.de>
8778 L:      linux-kernel@vger.kernel.org
8779 S:      Maintained
8780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8781 F:      Documentation/timers/
8782 F:      include/linux/clockchips.h
8783 F:      include/linux/hrtimer.h
8784 F:      kernel/time/clockevents.c
8785 F:      kernel/time/hrtimer.c
8786 F:      kernel/time/timer_*.c
8787
8788 HIGH-SPEED SCC DRIVER FOR AX.25
8789 L:      linux-hams@vger.kernel.org
8790 S:      Orphan
8791 F:      drivers/net/hamradio/dmascc.c
8792 F:      drivers/net/hamradio/scc.c
8793
8794 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8795 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8796 S:      Supported
8797 W:      http://www.highpoint-tech.com
8798 F:      Documentation/scsi/hptiop.rst
8799 F:      drivers/scsi/hptiop.c
8800
8801 HIPPI
8802 M:      Jes Sorensen <jes@trained-monkey.org>
8803 L:      linux-hippi@sunsite.dk
8804 S:      Maintained
8805 F:      drivers/net/hippi/
8806 F:      include/linux/hippidevice.h
8807 F:      include/uapi/linux/if_hippi.h
8808 F:      net/802/hippi.c
8809
8810 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8811 M:      Kurt Kanzenbach <kurt@linutronix.de>
8812 L:      netdev@vger.kernel.org
8813 S:      Maintained
8814 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8815 F:      drivers/net/dsa/hirschmann/*
8816 F:      include/linux/platform_data/hirschmann-hellcreek.h
8817 F:      net/dsa/tag_hellcreek.c
8818
8819 HISILICON DMA DRIVER
8820 M:      Zhou Wang <wangzhou1@hisilicon.com>
8821 L:      dmaengine@vger.kernel.org
8822 S:      Maintained
8823 F:      drivers/dma/hisi_dma.c
8824
8825 HISILICON GPIO DRIVER
8826 M:      Luo Jiaxing <luojiaxing@huawei.com>
8827 L:      linux-gpio@vger.kernel.org
8828 S:      Maintained
8829 F:      drivers/gpio/gpio-hisi.c
8830
8831 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8832 M:      Longfang Liu <liulongfang@huawei.com>
8833 L:      linux-crypto@vger.kernel.org
8834 S:      Maintained
8835 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8836 F:      drivers/crypto/hisilicon/hpre/hpre.h
8837 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8838 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8839
8840 HISILICON I2C CONTROLLER DRIVER
8841 M:      Yicong Yang <yangyicong@hisilicon.com>
8842 L:      linux-i2c@vger.kernel.org
8843 S:      Maintained
8844 W:      https://www.hisilicon.com
8845 F:      drivers/i2c/busses/i2c-hisi.c
8846
8847 HISILICON LPC BUS DRIVER
8848 M:      john.garry@huawei.com
8849 S:      Maintained
8850 W:      http://www.hisilicon.com
8851 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8852 F:      drivers/bus/hisi_lpc.c
8853
8854 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8855 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8856 M:      Salil Mehta <salil.mehta@huawei.com>
8857 L:      netdev@vger.kernel.org
8858 S:      Maintained
8859 W:      http://www.hisilicon.com
8860 F:      drivers/net/ethernet/hisilicon/hns3/
8861
8862 HISILICON NETWORK SUBSYSTEM DRIVER
8863 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8864 M:      Salil Mehta <salil.mehta@huawei.com>
8865 L:      netdev@vger.kernel.org
8866 S:      Maintained
8867 W:      http://www.hisilicon.com
8868 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8869 F:      drivers/net/ethernet/hisilicon/
8870
8871 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8872 M:      John Stultz <jstultz@google.com>
8873 L:      linux-kernel@vger.kernel.org
8874 S:      Maintained
8875 F:      drivers/misc/hisi_hikey_usb.c
8876
8877 HISILICON PMU DRIVER
8878 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8879 M:      Qi Liu <liuqi115@huawei.com>
8880 S:      Supported
8881 W:      http://www.hisilicon.com
8882 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8883 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8884 F:      drivers/perf/hisilicon
8885
8886 HISILICON QM AND ZIP Controller DRIVER
8887 M:      Zhou Wang <wangzhou1@hisilicon.com>
8888 L:      linux-crypto@vger.kernel.org
8889 S:      Maintained
8890 F:      Documentation/ABI/testing/debugfs-hisi-zip
8891 F:      drivers/crypto/hisilicon/qm.c
8892 F:      drivers/crypto/hisilicon/sgl.c
8893 F:      drivers/crypto/hisilicon/zip/
8894 F:      include/linux/hisi_acc_qm.h
8895
8896 HISILICON ROCE DRIVER
8897 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8898 M:      Weihang Li <liweihang@huawei.com>
8899 L:      linux-rdma@vger.kernel.org
8900 S:      Maintained
8901 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8902 F:      drivers/infiniband/hw/hns/
8903
8904 HISILICON SAS Controller
8905 M:      John Garry <john.garry@huawei.com>
8906 S:      Supported
8907 W:      http://www.hisilicon.com
8908 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8909 F:      drivers/scsi/hisi_sas/
8910
8911 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8912 M:      Kai Ye <yekai13@huawei.com>
8913 M:      Longfang Liu <liulongfang@huawei.com>
8914 L:      linux-crypto@vger.kernel.org
8915 S:      Maintained
8916 F:      Documentation/ABI/testing/debugfs-hisi-sec
8917 F:      drivers/crypto/hisilicon/sec2/sec.h
8918 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8919 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8920 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8921
8922 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8923 M:      Jay Fang <f.fangjian@huawei.com>
8924 L:      linux-spi@vger.kernel.org
8925 S:      Maintained
8926 W:      http://www.hisilicon.com
8927 F:      drivers/spi/spi-hisi-kunpeng.c
8928
8929 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8930 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8931 L:      linux-kernel@vger.kernel.org
8932 S:      Maintained
8933 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8934 F:      drivers/spmi/hisi-spmi-controller.c
8935
8936 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8937 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8938 L:      linux-kernel@vger.kernel.org
8939 S:      Maintained
8940 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8941 F:      drivers/mfd/hi6421-spmi-pmic.c
8942
8943 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8944 M:      Weili Qian <qianweili@huawei.com>
8945 S:      Maintained
8946 F:      drivers/crypto/hisilicon/trng/trng.c
8947
8948 HISILICON V3XX SPI NOR FLASH Controller Driver
8949 M:      John Garry <john.garry@huawei.com>
8950 S:      Maintained
8951 W:      http://www.hisilicon.com
8952 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8953
8954 HMM - Heterogeneous Memory Management
8955 M:      Jérôme Glisse <jglisse@redhat.com>
8956 L:      linux-mm@kvack.org
8957 S:      Maintained
8958 F:      Documentation/vm/hmm.rst
8959 F:      include/linux/hmm*
8960 F:      lib/test_hmm*
8961 F:      mm/hmm*
8962 F:      tools/testing/selftests/vm/*hmm*
8963
8964 HOST AP DRIVER
8965 M:      Jouni Malinen <j@w1.fi>
8966 L:      linux-wireless@vger.kernel.org
8967 S:      Obsolete
8968 W:      http://w1.fi/hostap-driver.html
8969 F:      drivers/net/wireless/intersil/hostap/
8970
8971 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8972 L:      platform-driver-x86@vger.kernel.org
8973 S:      Orphan
8974 F:      drivers/platform/x86/tc1100-wmi.c
8975
8976 HPET:   High Precision Event Timers driver
8977 M:      Clemens Ladisch <clemens@ladisch.de>
8978 S:      Maintained
8979 F:      Documentation/timers/hpet.rst
8980 F:      drivers/char/hpet.c
8981 F:      include/linux/hpet.h
8982 F:      include/uapi/linux/hpet.h
8983
8984 HPET:   x86
8985 S:      Orphan
8986 F:      arch/x86/include/asm/hpet.h
8987 F:      arch/x86/kernel/hpet.c
8988
8989 HPFS FILESYSTEM
8990 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8991 S:      Maintained
8992 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8993 F:      fs/hpfs/
8994
8995 HSI SUBSYSTEM
8996 M:      Sebastian Reichel <sre@kernel.org>
8997 S:      Maintained
8998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8999 F:      Documentation/ABI/testing/sysfs-bus-hsi
9000 F:      Documentation/driver-api/hsi.rst
9001 F:      drivers/hsi/
9002 F:      include/linux/hsi/
9003 F:      include/uapi/linux/hsi/
9004
9005 HSO 3G MODEM DRIVER
9006 L:      linux-usb@vger.kernel.org
9007 S:      Orphan
9008 F:      drivers/net/usb/hso.c
9009
9010 HSR NETWORK PROTOCOL
9011 L:      netdev@vger.kernel.org
9012 S:      Orphan
9013 F:      net/hsr/
9014
9015 HT16K33 LED CONTROLLER DRIVER
9016 M:      Robin van der Gracht <robin@protonic.nl>
9017 S:      Maintained
9018 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9019 F:      drivers/auxdisplay/ht16k33.c
9020
9021 HTCPEN TOUCHSCREEN DRIVER
9022 M:      Pau Oliva Fora <pof@eslack.org>
9023 L:      linux-input@vger.kernel.org
9024 S:      Maintained
9025 F:      drivers/input/touchscreen/htcpen.c
9026
9027 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9028 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
9029 L:      linux-iio@vger.kernel.org
9030 S:      Maintained
9031 W:      http://www.st.com/
9032 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9033 F:      drivers/iio/humidity/hts221*
9034
9035 HUAWEI ETHERNET DRIVER
9036 L:      netdev@vger.kernel.org
9037 S:      Orphan
9038 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9039 F:      drivers/net/ethernet/huawei/hinic/
9040
9041 HUGETLB FILESYSTEM
9042 M:      Mike Kravetz <mike.kravetz@oracle.com>
9043 L:      linux-mm@kvack.org
9044 S:      Maintained
9045 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9046 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9047 F:      Documentation/vm/hugetlbfs_reserv.rst
9048 F:      fs/hugetlbfs/
9049 F:      include/linux/hugetlb.h
9050 F:      mm/hugetlb.c
9051
9052 HVA ST MEDIA DRIVER
9053 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9054 L:      linux-media@vger.kernel.org
9055 S:      Supported
9056 W:      https://linuxtv.org
9057 T:      git git://linuxtv.org/media_tree.git
9058 F:      drivers/media/platform/st/sti/hva
9059
9060 HWPOISON MEMORY FAILURE HANDLING
9061 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9062 L:      linux-mm@kvack.org
9063 S:      Maintained
9064 F:      mm/hwpoison-inject.c
9065 F:      mm/memory-failure.c
9066
9067 HYCON HY46XX TOUCHSCREEN SUPPORT
9068 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9069 L:      linux-input@vger.kernel.org
9070 S:      Maintained
9071 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9072 F:      drivers/input/touchscreen/hycon-hy46xx.c
9073
9074 HYGON PROCESSOR SUPPORT
9075 M:      Pu Wen <puwen@hygon.cn>
9076 L:      linux-kernel@vger.kernel.org
9077 S:      Maintained
9078 F:      arch/x86/kernel/cpu/hygon.c
9079
9080 HYNIX HI556 SENSOR DRIVER
9081 M:      Shawn Tu <shawnx.tu@intel.com>
9082 L:      linux-media@vger.kernel.org
9083 S:      Maintained
9084 T:      git git://linuxtv.org/media_tree.git
9085 F:      drivers/media/i2c/hi556.c
9086
9087 HYNIX HI846 SENSOR DRIVER
9088 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9089 L:      linux-media@vger.kernel.org
9090 S:      Maintained
9091 F:      drivers/media/i2c/hi846.c
9092
9093 HYNIX HI847 SENSOR DRIVER
9094 M:      Shawn Tu <shawnx.tu@intel.com>
9095 L:      linux-media@vger.kernel.org
9096 S:      Maintained
9097 F:      drivers/media/i2c/hi847.c
9098
9099 Hyper-V/Azure CORE AND DRIVERS
9100 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9101 M:      Haiyang Zhang <haiyangz@microsoft.com>
9102 M:      Stephen Hemminger <sthemmin@microsoft.com>
9103 M:      Wei Liu <wei.liu@kernel.org>
9104 M:      Dexuan Cui <decui@microsoft.com>
9105 L:      linux-hyperv@vger.kernel.org
9106 S:      Supported
9107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9108 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9109 F:      Documentation/ABI/testing/debugfs-hyperv
9110 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9111 F:      arch/arm64/hyperv
9112 F:      arch/arm64/include/asm/hyperv-tlfs.h
9113 F:      arch/arm64/include/asm/mshyperv.h
9114 F:      arch/x86/hyperv
9115 F:      arch/x86/include/asm/hyperv-tlfs.h
9116 F:      arch/x86/include/asm/mshyperv.h
9117 F:      arch/x86/include/asm/trace/hyperv.h
9118 F:      arch/x86/kernel/cpu/mshyperv.c
9119 F:      drivers/clocksource/hyperv_timer.c
9120 F:      drivers/hid/hid-hyperv.c
9121 F:      drivers/hv/
9122 F:      drivers/input/serio/hyperv-keyboard.c
9123 F:      drivers/iommu/hyperv-iommu.c
9124 F:      drivers/net/ethernet/microsoft/
9125 F:      drivers/net/hyperv/
9126 F:      drivers/pci/controller/pci-hyperv-intf.c
9127 F:      drivers/pci/controller/pci-hyperv.c
9128 F:      drivers/scsi/storvsc_drv.c
9129 F:      drivers/uio/uio_hv_generic.c
9130 F:      drivers/video/fbdev/hyperv_fb.c
9131 F:      include/asm-generic/hyperv-tlfs.h
9132 F:      include/asm-generic/mshyperv.h
9133 F:      include/clocksource/hyperv_timer.h
9134 F:      include/linux/hyperv.h
9135 F:      include/uapi/linux/hyperv.h
9136 F:      net/vmw_vsock/hyperv_transport.c
9137 F:      tools/hv/
9138
9139 HYPERBUS SUPPORT
9140 M:      Vignesh Raghavendra <vigneshr@ti.com>
9141 L:      linux-mtd@lists.infradead.org
9142 S:      Supported
9143 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9144 C:      irc://irc.oftc.net/mtd
9145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9146 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9147 F:      drivers/mtd/hyperbus/
9148 F:      include/linux/mtd/hyperbus.h
9149
9150 HYPERVISOR VIRTUAL CONSOLE DRIVER
9151 L:      linuxppc-dev@lists.ozlabs.org
9152 S:      Odd Fixes
9153 F:      drivers/tty/hvc/
9154
9155 I2C ACPI SUPPORT
9156 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9157 L:      linux-i2c@vger.kernel.org
9158 L:      linux-acpi@vger.kernel.org
9159 S:      Maintained
9160 F:      drivers/i2c/i2c-core-acpi.c
9161
9162 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9163 M:      Ajay Gupta <ajayg@nvidia.com>
9164 L:      linux-i2c@vger.kernel.org
9165 S:      Maintained
9166 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9167 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9168
9169 I2C MUXES
9170 M:      Peter Rosin <peda@axentia.se>
9171 L:      linux-i2c@vger.kernel.org
9172 S:      Maintained
9173 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9174 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9175 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9176 F:      Documentation/i2c/i2c-topology.rst
9177 F:      Documentation/i2c/muxes/
9178 F:      drivers/i2c/i2c-mux.c
9179 F:      drivers/i2c/muxes/
9180 F:      include/linux/i2c-mux.h
9181
9182 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9183 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9184 L:      linux-i2c@vger.kernel.org
9185 S:      Maintained
9186 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9187 F:      drivers/i2c/busses/i2c-mv64xxx.c
9188
9189 I2C OVER PARALLEL PORT
9190 M:      Jean Delvare <jdelvare@suse.com>
9191 L:      linux-i2c@vger.kernel.org
9192 S:      Maintained
9193 F:      Documentation/i2c/busses/i2c-parport.rst
9194 F:      drivers/i2c/busses/i2c-parport.c
9195
9196 I2C SUBSYSTEM
9197 M:      Wolfram Sang <wsa@kernel.org>
9198 L:      linux-i2c@vger.kernel.org
9199 S:      Maintained
9200 W:      https://i2c.wiki.kernel.org/
9201 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9203 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9204 F:      Documentation/i2c/
9205 F:      drivers/i2c/*
9206 F:      include/linux/i2c-dev.h
9207 F:      include/linux/i2c-smbus.h
9208 F:      include/linux/i2c.h
9209 F:      include/uapi/linux/i2c-*.h
9210 F:      include/uapi/linux/i2c.h
9211
9212 I2C SUBSYSTEM HOST DRIVERS
9213 L:      linux-i2c@vger.kernel.org
9214 S:      Odd Fixes
9215 W:      https://i2c.wiki.kernel.org/
9216 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9218 F:      Documentation/devicetree/bindings/i2c/
9219 F:      drivers/i2c/algos/
9220 F:      drivers/i2c/busses/
9221
9222 I2C-TAOS-EVM DRIVER
9223 M:      Jean Delvare <jdelvare@suse.com>
9224 L:      linux-i2c@vger.kernel.org
9225 S:      Maintained
9226 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9227 F:      drivers/i2c/busses/i2c-taos-evm.c
9228
9229 I2C-TINY-USB DRIVER
9230 M:      Till Harbaum <till@harbaum.org>
9231 L:      linux-i2c@vger.kernel.org
9232 S:      Maintained
9233 W:      http://www.harbaum.org/till/i2c_tiny_usb
9234 F:      drivers/i2c/busses/i2c-tiny-usb.c
9235
9236 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9237 M:      Jean Delvare <jdelvare@suse.com>
9238 L:      linux-i2c@vger.kernel.org
9239 S:      Maintained
9240 F:      Documentation/i2c/busses/i2c-ali1535.rst
9241 F:      Documentation/i2c/busses/i2c-ali1563.rst
9242 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9243 F:      Documentation/i2c/busses/i2c-amd756.rst
9244 F:      Documentation/i2c/busses/i2c-amd8111.rst
9245 F:      Documentation/i2c/busses/i2c-i801.rst
9246 F:      Documentation/i2c/busses/i2c-nforce2.rst
9247 F:      Documentation/i2c/busses/i2c-piix4.rst
9248 F:      Documentation/i2c/busses/i2c-sis5595.rst
9249 F:      Documentation/i2c/busses/i2c-sis630.rst
9250 F:      Documentation/i2c/busses/i2c-sis96x.rst
9251 F:      Documentation/i2c/busses/i2c-via.rst
9252 F:      Documentation/i2c/busses/i2c-viapro.rst
9253 F:      drivers/i2c/busses/i2c-ali1535.c
9254 F:      drivers/i2c/busses/i2c-ali1563.c
9255 F:      drivers/i2c/busses/i2c-ali15x3.c
9256 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9257 F:      drivers/i2c/busses/i2c-amd756.c
9258 F:      drivers/i2c/busses/i2c-amd8111.c
9259 F:      drivers/i2c/busses/i2c-i801.c
9260 F:      drivers/i2c/busses/i2c-isch.c
9261 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9262 F:      drivers/i2c/busses/i2c-nforce2.c
9263 F:      drivers/i2c/busses/i2c-piix4.c
9264 F:      drivers/i2c/busses/i2c-sis5595.c
9265 F:      drivers/i2c/busses/i2c-sis630.c
9266 F:      drivers/i2c/busses/i2c-sis96x.c
9267 F:      drivers/i2c/busses/i2c-via.c
9268 F:      drivers/i2c/busses/i2c-viapro.c
9269
9270 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9271 M:      Hans de Goede <hdegoede@redhat.com>
9272 L:      linux-i2c@vger.kernel.org
9273 S:      Maintained
9274 F:      drivers/i2c/busses/i2c-cht-wc.c
9275
9276 I2C/SMBUS ISMT DRIVER
9277 M:      Seth Heasley <seth.heasley@intel.com>
9278 M:      Neil Horman <nhorman@tuxdriver.com>
9279 L:      linux-i2c@vger.kernel.org
9280 F:      Documentation/i2c/busses/i2c-ismt.rst
9281 F:      drivers/i2c/busses/i2c-ismt.c
9282
9283 I2C/SMBUS STUB DRIVER
9284 M:      Jean Delvare <jdelvare@suse.com>
9285 L:      linux-i2c@vger.kernel.org
9286 S:      Maintained
9287 F:      drivers/i2c/i2c-stub.c
9288
9289 I3C DRIVER FOR CADENCE I3C MASTER IP
9290 M:      Przemysław Gaj <pgaj@cadence.com>
9291 S:      Maintained
9292 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
9293 F:      drivers/i3c/master/i3c-master-cdns.c
9294
9295 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9296 M:      Vitor Soares <vitor.soares@synopsys.com>
9297 S:      Maintained
9298 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
9299 F:      drivers/i3c/master/dw*
9300
9301 I3C SUBSYSTEM
9302 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9303 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9304 S:      Maintained
9305 C:      irc://chat.freenode.net/linux-i3c
9306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9307 F:      Documentation/ABI/testing/sysfs-bus-i3c
9308 F:      Documentation/devicetree/bindings/i3c/
9309 F:      Documentation/driver-api/i3c
9310 F:      drivers/i3c/
9311 F:      include/linux/i3c/
9312
9313 IA64 (Itanium) PLATFORM
9314 L:      linux-ia64@vger.kernel.org
9315 S:      Orphan
9316 F:      Documentation/ia64/
9317 F:      arch/ia64/
9318
9319 IBM Power 842 compression accelerator
9320 M:      Haren Myneni <haren@us.ibm.com>
9321 S:      Supported
9322 F:      crypto/842.c
9323 F:      drivers/crypto/nx/Kconfig
9324 F:      drivers/crypto/nx/Makefile
9325 F:      drivers/crypto/nx/nx-842*
9326 F:      include/linux/sw842.h
9327 F:      lib/842/
9328
9329 IBM Power in-Nest Crypto Acceleration
9330 M:      Breno Leitão <leitao@debian.org>
9331 M:      Nayna Jain <nayna@linux.ibm.com>
9332 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9333 L:      linux-crypto@vger.kernel.org
9334 S:      Supported
9335 F:      drivers/crypto/nx/Kconfig
9336 F:      drivers/crypto/nx/Makefile
9337 F:      drivers/crypto/nx/nx-aes*
9338 F:      drivers/crypto/nx/nx-sha*
9339 F:      drivers/crypto/nx/nx.*
9340 F:      drivers/crypto/nx/nx_csbcpb.h
9341 F:      drivers/crypto/nx/nx_debugfs.c
9342
9343 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9344 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9345 L:      linux-pci@vger.kernel.org
9346 L:      linuxppc-dev@lists.ozlabs.org
9347 S:      Supported
9348 F:      drivers/pci/hotplug/rpadlpar*
9349
9350 IBM Power Linux RAID adapter
9351 M:      Brian King <brking@us.ibm.com>
9352 S:      Supported
9353 F:      drivers/scsi/ipr.*
9354
9355 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9356 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9357 L:      linux-pci@vger.kernel.org
9358 L:      linuxppc-dev@lists.ozlabs.org
9359 S:      Supported
9360 F:      drivers/pci/hotplug/rpaphp*
9361
9362 IBM Power SRIOV Virtual NIC Device Driver
9363 M:      Dany Madden <drt@linux.ibm.com>
9364 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9365 L:      netdev@vger.kernel.org
9366 S:      Supported
9367 F:      drivers/net/ethernet/ibm/ibmvnic.*
9368
9369 IBM Power Virtual Accelerator Switchboard
9370 L:      linuxppc-dev@lists.ozlabs.org
9371 S:      Supported
9372 F:      arch/powerpc/include/asm/vas.h
9373 F:      arch/powerpc/platforms/powernv/copy-paste.h
9374 F:      arch/powerpc/platforms/powernv/vas*
9375
9376 IBM Power Virtual Ethernet Device Driver
9377 M:      Cristobal Forno <cforno12@linux.ibm.com>
9378 L:      netdev@vger.kernel.org
9379 S:      Supported
9380 F:      drivers/net/ethernet/ibm/ibmveth.*
9381
9382 IBM Power Virtual FC Device Drivers
9383 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9384 L:      linux-scsi@vger.kernel.org
9385 S:      Supported
9386 F:      drivers/scsi/ibmvscsi/ibmvfc*
9387
9388 IBM Power Virtual Management Channel Driver
9389 M:      Brad Warrum <bwarrum@linux.ibm.com>
9390 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9391 S:      Supported
9392 F:      drivers/misc/ibmvmc.*
9393
9394 IBM Power Virtual SCSI Device Drivers
9395 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9396 L:      linux-scsi@vger.kernel.org
9397 S:      Supported
9398 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9399 F:      include/scsi/viosrp.h
9400
9401 IBM Power Virtual SCSI Device Target Driver
9402 M:      Michael Cyr <mikecyr@linux.ibm.com>
9403 L:      linux-scsi@vger.kernel.org
9404 L:      target-devel@vger.kernel.org
9405 S:      Supported
9406 F:      drivers/scsi/ibmvscsi_tgt/
9407
9408 IBM Power VMX Cryptographic instructions
9409 M:      Breno Leitão <leitao@debian.org>
9410 M:      Nayna Jain <nayna@linux.ibm.com>
9411 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9412 L:      linux-crypto@vger.kernel.org
9413 S:      Supported
9414 F:      drivers/crypto/vmx/Kconfig
9415 F:      drivers/crypto/vmx/Makefile
9416 F:      drivers/crypto/vmx/aes*
9417 F:      drivers/crypto/vmx/ghash*
9418 F:      drivers/crypto/vmx/ppc-xlate.pl
9419 F:      drivers/crypto/vmx/vmx.c
9420
9421 IBM ServeRAID RAID DRIVER
9422 S:      Orphan
9423 F:      drivers/scsi/ips.*
9424
9425 ICH LPC AND GPIO DRIVER
9426 M:      Peter Tyser <ptyser@xes-inc.com>
9427 S:      Maintained
9428 F:      drivers/gpio/gpio-ich.c
9429 F:      drivers/mfd/lpc_ich.c
9430
9431 ICY I2C DRIVER
9432 M:      Max Staudt <max@enpas.org>
9433 L:      linux-i2c@vger.kernel.org
9434 S:      Maintained
9435 F:      drivers/i2c/busses/i2c-icy.c
9436
9437 IDEAPAD LAPTOP EXTRAS DRIVER
9438 M:      Ike Panhc <ike.pan@canonical.com>
9439 L:      platform-driver-x86@vger.kernel.org
9440 S:      Maintained
9441 W:      http://launchpad.net/ideapad-laptop
9442 F:      drivers/platform/x86/ideapad-laptop.c
9443
9444 IDEAPAD LAPTOP SLIDEBAR DRIVER
9445 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9446 L:      linux-input@vger.kernel.org
9447 S:      Maintained
9448 W:      https://github.com/o2genum/ideapad-slidebar
9449 F:      drivers/input/misc/ideapad_slidebar.c
9450
9451 IDMAPPED MOUNTS
9452 M:      Christian Brauner <brauner@kernel.org>
9453 L:      linux-fsdevel@vger.kernel.org
9454 S:      Maintained
9455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9456 F:      Documentation/filesystems/idmappings.rst
9457 F:      tools/testing/selftests/mount_setattr/
9458 F:      include/linux/mnt_idmapping.h
9459
9460 IDT VersaClock 5 CLOCK DRIVER
9461 M:      Luca Ceresoli <luca@lucaceresoli.net>
9462 S:      Maintained
9463 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9464 F:      drivers/clk/clk-versaclock5.c
9465
9466 IEEE 802.15.4 SUBSYSTEM
9467 M:      Alexander Aring <alex.aring@gmail.com>
9468 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9469 L:      linux-wpan@vger.kernel.org
9470 S:      Maintained
9471 W:      https://linux-wpan.org/
9472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9474 F:      Documentation/networking/ieee802154.rst
9475 F:      drivers/net/ieee802154/
9476 F:      include/linux/ieee802154.h
9477 F:      include/linux/nl802154.h
9478 F:      include/net/af_ieee802154.h
9479 F:      include/net/cfg802154.h
9480 F:      include/net/ieee802154_netdev.h
9481 F:      include/net/mac802154.h
9482 F:      include/net/nl802154.h
9483 F:      net/ieee802154/
9484 F:      net/mac802154/
9485
9486 IFE PROTOCOL
9487 M:      Yotam Gigi <yotam.gi@gmail.com>
9488 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9489 F:      include/net/ife.h
9490 F:      include/uapi/linux/ife.h
9491 F:      net/ife
9492
9493 IGORPLUG-USB IR RECEIVER
9494 M:      Sean Young <sean@mess.org>
9495 L:      linux-media@vger.kernel.org
9496 S:      Maintained
9497 F:      drivers/media/rc/igorplugusb.c
9498
9499 IGUANAWORKS USB IR TRANSCEIVER
9500 M:      Sean Young <sean@mess.org>
9501 L:      linux-media@vger.kernel.org
9502 S:      Maintained
9503 F:      drivers/media/rc/iguanair.c
9504
9505 IIO DIGITAL POTENTIOMETER DAC
9506 M:      Peter Rosin <peda@axentia.se>
9507 L:      linux-iio@vger.kernel.org
9508 S:      Maintained
9509 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9510 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9511 F:      drivers/iio/dac/dpot-dac.c
9512
9513 IIO ENVELOPE DETECTOR
9514 M:      Peter Rosin <peda@axentia.se>
9515 L:      linux-iio@vger.kernel.org
9516 S:      Maintained
9517 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9518 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9519 F:      drivers/iio/adc/envelope-detector.c
9520
9521 IIO MULTIPLEXER
9522 M:      Peter Rosin <peda@axentia.se>
9523 L:      linux-iio@vger.kernel.org
9524 S:      Maintained
9525 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9526 F:      drivers/iio/multiplexer/iio-mux.c
9527
9528 IIO SCMI BASED DRIVER
9529 M:      Jyoti Bhayana <jbhayana@google.com>
9530 L:      linux-iio@vger.kernel.org
9531 S:      Maintained
9532 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9533
9534 IIO SUBSYSTEM AND DRIVERS
9535 M:      Jonathan Cameron <jic23@kernel.org>
9536 R:      Lars-Peter Clausen <lars@metafoo.de>
9537 L:      linux-iio@vger.kernel.org
9538 S:      Maintained
9539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9540 F:      Documentation/ABI/testing/configfs-iio*
9541 F:      Documentation/ABI/testing/sysfs-bus-iio*
9542 F:      Documentation/devicetree/bindings/iio/
9543 F:      drivers/iio/
9544 F:      drivers/staging/iio/
9545 F:      include/linux/iio/
9546 F:      tools/iio/
9547
9548 IIO UNIT CONVERTER
9549 M:      Peter Rosin <peda@axentia.se>
9550 L:      linux-iio@vger.kernel.org
9551 S:      Maintained
9552 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9553 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9554 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9555 F:      drivers/iio/afe/iio-rescale.c
9556
9557 IKANOS/ADI EAGLE ADSL USB DRIVER
9558 M:      Matthieu Castet <castet.matthieu@free.fr>
9559 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9560 S:      Maintained
9561 F:      drivers/usb/atm/ueagle-atm.c
9562
9563 IMAGIS TOUCHSCREEN DRIVER
9564 M:      Markuss Broks <markuss.broks@gmail.com>
9565 S:      Maintained
9566 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9567 F:      drivers/input/touchscreen/imagis.c
9568
9569 IMGTEC ASCII LCD DRIVER
9570 M:      Paul Burton <paulburton@kernel.org>
9571 S:      Maintained
9572 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9573 F:      drivers/auxdisplay/img-ascii-lcd.c
9574
9575 IMGTEC IR DECODER DRIVER
9576 S:      Orphan
9577 F:      drivers/media/rc/img-ir/
9578
9579 IMON SOUNDGRAPH USB IR RECEIVER
9580 M:      Sean Young <sean@mess.org>
9581 L:      linux-media@vger.kernel.org
9582 S:      Maintained
9583 F:      drivers/media/rc/imon.c
9584 F:      drivers/media/rc/imon_raw.c
9585
9586 IMS TWINTURBO FRAMEBUFFER DRIVER
9587 L:      linux-fbdev@vger.kernel.org
9588 S:      Orphan
9589 F:      drivers/video/fbdev/imsttfb.c
9590
9591 INA209 HARDWARE MONITOR DRIVER
9592 M:      Guenter Roeck <linux@roeck-us.net>
9593 L:      linux-hwmon@vger.kernel.org
9594 S:      Maintained
9595 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9596 F:      Documentation/hwmon/ina209.rst
9597 F:      drivers/hwmon/ina209.c
9598
9599 INA2XX HARDWARE MONITOR DRIVER
9600 M:      Guenter Roeck <linux@roeck-us.net>
9601 L:      linux-hwmon@vger.kernel.org
9602 S:      Maintained
9603 F:      Documentation/hwmon/ina2xx.rst
9604 F:      drivers/hwmon/ina2xx.c
9605 F:      include/linux/platform_data/ina2xx.h
9606
9607 INDUSTRY PACK SUBSYSTEM (IPACK)
9608 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9609 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9610 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9611 L:      industrypack-devel@lists.sourceforge.net
9612 S:      Maintained
9613 W:      http://industrypack.sourceforge.net
9614 F:      drivers/ipack/
9615
9616 INFINEON DPS310 Driver
9617 M:      Eddie James <eajames@linux.ibm.com>
9618 L:      linux-iio@vger.kernel.org
9619 S:      Maintained
9620 F:      drivers/iio/pressure/dps310.c
9621
9622 INFINIBAND SUBSYSTEM
9623 M:      Jason Gunthorpe <jgg@nvidia.com>
9624 M:      Leon Romanovsky <leonro@nvidia.com>
9625 L:      linux-rdma@vger.kernel.org
9626 S:      Supported
9627 W:      https://github.com/linux-rdma/rdma-core
9628 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9630 F:      Documentation/devicetree/bindings/infiniband/
9631 F:      Documentation/infiniband/
9632 F:      drivers/infiniband/
9633 F:      include/rdma/
9634 F:      include/trace/events/ib_mad.h
9635 F:      include/trace/events/ib_umad.h
9636 F:      include/uapi/linux/if_infiniband.h
9637 F:      include/uapi/rdma/
9638 F:      samples/bpf/ibumad_kern.c
9639 F:      samples/bpf/ibumad_user.c
9640
9641 INGENIC JZ4780 NAND DRIVER
9642 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9643 L:      linux-mtd@lists.infradead.org
9644 L:      linux-mips@vger.kernel.org
9645 S:      Maintained
9646 F:      drivers/mtd/nand/raw/ingenic/
9647
9648 INGENIC JZ47xx SoCs
9649 M:      Paul Cercueil <paul@crapouillou.net>
9650 L:      linux-mips@vger.kernel.org
9651 S:      Maintained
9652 F:      arch/mips/boot/dts/ingenic/
9653 F:      arch/mips/generic/board-ingenic.c
9654 F:      arch/mips/include/asm/mach-ingenic/
9655 F:      arch/mips/ingenic/Kconfig
9656 F:      drivers/clk/ingenic/
9657 F:      drivers/dma/dma-jz4780.c
9658 F:      drivers/gpu/drm/ingenic/
9659 F:      drivers/i2c/busses/i2c-jz4780.c
9660 F:      drivers/iio/adc/ingenic-adc.c
9661 F:      drivers/irqchip/irq-ingenic.c
9662 F:      drivers/memory/jz4780-nemc.c
9663 F:      drivers/mmc/host/jz4740_mmc.c
9664 F:      drivers/mtd/nand/raw/ingenic/
9665 F:      drivers/pinctrl/pinctrl-ingenic.c
9666 F:      drivers/power/supply/ingenic-battery.c
9667 F:      drivers/pwm/pwm-jz4740.c
9668 F:      drivers/remoteproc/ingenic_rproc.c
9669 F:      drivers/rtc/rtc-jz4740.c
9670 F:      drivers/tty/serial/8250/8250_ingenic.c
9671 F:      drivers/usb/musb/jz4740.c
9672 F:      drivers/watchdog/jz4740_wdt.c
9673 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9674 F:      include/linux/mfd/ingenic-tcu.h
9675 F:      sound/soc/codecs/jz47*
9676 F:      sound/soc/jz4740/
9677
9678 INJOINIC IP5xxx POWER BANK IC DRIVER
9679 M:      Samuel Holland <samuel@sholland.org>
9680 S:      Maintained
9681 F:      drivers/power/supply/ip5xxx_power.c
9682
9683 INOTIFY
9684 M:      Jan Kara <jack@suse.cz>
9685 R:      Amir Goldstein <amir73il@gmail.com>
9686 L:      linux-fsdevel@vger.kernel.org
9687 S:      Maintained
9688 F:      Documentation/filesystems/inotify.rst
9689 F:      fs/notify/inotify/
9690 F:      include/linux/inotify.h
9691 F:      include/uapi/linux/inotify.h
9692
9693 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9694 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9695 L:      linux-input@vger.kernel.org
9696 S:      Maintained
9697 Q:      http://patchwork.kernel.org/project/linux-input/list/
9698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9699 F:      Documentation/devicetree/bindings/input/
9700 F:      Documentation/devicetree/bindings/serio/
9701 F:      Documentation/input/
9702 F:      drivers/input/
9703 F:      include/linux/input.h
9704 F:      include/linux/input/
9705 F:      include/uapi/linux/input-event-codes.h
9706 F:      include/uapi/linux/input.h
9707
9708 INPUT MULTITOUCH (MT) PROTOCOL
9709 M:      Henrik Rydberg <rydberg@bitmath.org>
9710 L:      linux-input@vger.kernel.org
9711 S:      Odd fixes
9712 F:      Documentation/input/multi-touch-protocol.rst
9713 F:      drivers/input/input-mt.c
9714 K:      \b(ABS|SYN)_MT_
9715
9716 INSIDE SECURE CRYPTO DRIVER
9717 M:      Antoine Tenart <atenart@kernel.org>
9718 L:      linux-crypto@vger.kernel.org
9719 S:      Maintained
9720 F:      drivers/crypto/inside-secure/
9721
9722 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9723 M:      Mimi Zohar <zohar@linux.ibm.com>
9724 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9725 L:      linux-integrity@vger.kernel.org
9726 S:      Supported
9727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9728 F:      security/integrity/ima/
9729 F:      security/integrity/
9730
9731 INTEL 810/815 FRAMEBUFFER DRIVER
9732 M:      Antonino Daplas <adaplas@gmail.com>
9733 L:      linux-fbdev@vger.kernel.org
9734 S:      Maintained
9735 F:      drivers/video/fbdev/i810/
9736
9737 INTEL ASoC DRIVERS
9738 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9739 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9740 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9741 M:      Jie Yang <yang.jie@linux.intel.com>
9742 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9743 S:      Supported
9744 F:      sound/soc/intel/
9745
9746 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9747 M:      Hans de Goede <hdegoede@redhat.com>
9748 L:      platform-driver-x86@vger.kernel.org
9749 S:      Maintained
9750 F:      drivers/platform/x86/intel/atomisp2/pm.c
9751
9752 INTEL ATOMISP2 LED DRIVER
9753 M:      Hans de Goede <hdegoede@redhat.com>
9754 L:      platform-driver-x86@vger.kernel.org
9755 S:      Maintained
9756 F:      drivers/platform/x86/intel/atomisp2/led.c
9757
9758 INTEL BIOS SAR INT1092 DRIVER
9759 M:      Shravan Sudhakar <s.shravan@intel.com>
9760 M:      Intel Corporation <linuxwwan@intel.com>
9761 L:      platform-driver-x86@vger.kernel.org
9762 S:      Maintained
9763 F:      drivers/platform/x86/intel/int1092/
9764
9765 INTEL BROXTON PMC DRIVER
9766 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9767 M:      Zha Qipeng <qipeng.zha@intel.com>
9768 S:      Maintained
9769 F:      drivers/mfd/intel_pmc_bxt.c
9770 F:      include/linux/mfd/intel_pmc_bxt.h
9771
9772 INTEL C600 SERIES SAS CONTROLLER DRIVER
9773 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9774 L:      linux-scsi@vger.kernel.org
9775 S:      Supported
9776 T:      git git://git.code.sf.net/p/intel-sas/isci
9777 F:      drivers/scsi/isci/
9778
9779 INTEL CPU family model numbers
9780 M:      Tony Luck <tony.luck@intel.com>
9781 M:      x86@kernel.org
9782 L:      linux-kernel@vger.kernel.org
9783 S:      Supported
9784 F:      arch/x86/include/asm/intel-family.h
9785
9786 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9787 M:      Jani Nikula <jani.nikula@linux.intel.com>
9788 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9789 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9790 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9791 L:      intel-gfx@lists.freedesktop.org
9792 S:      Supported
9793 W:      https://01.org/linuxgraphics/
9794 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9795 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9796 C:      irc://irc.oftc.net/intel-gfx
9797 T:      git git://anongit.freedesktop.org/drm-intel
9798 F:      Documentation/gpu/i915.rst
9799 F:      drivers/gpu/drm/i915/
9800 F:      include/drm/i915*
9801 F:      include/uapi/drm/i915_drm.h
9802
9803 INTEL ETHERNET DRIVERS
9804 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9805 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9806 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9807 S:      Supported
9808 W:      http://www.intel.com/support/feedback.htm
9809 W:      http://e1000.sourceforge.net/
9810 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9813 F:      Documentation/networking/device_drivers/ethernet/intel/
9814 F:      drivers/net/ethernet/intel/
9815 F:      drivers/net/ethernet/intel/*/
9816 F:      include/linux/avf/virtchnl.h
9817 F:      include/linux/net/intel/iidc.h
9818
9819 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9820 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9821 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9822 L:      linux-rdma@vger.kernel.org
9823 S:      Supported
9824 F:      drivers/infiniband/hw/irdma/
9825 F:      include/uapi/rdma/irdma-abi.h
9826
9827 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9828 M:      Maik Broemme <mbroemme@libmpq.org>
9829 L:      linux-fbdev@vger.kernel.org
9830 S:      Maintained
9831 F:      Documentation/fb/intelfb.rst
9832 F:      drivers/video/fbdev/intelfb/
9833
9834 INTEL GPIO DRIVERS
9835 M:      Andy Shevchenko <andy@kernel.org>
9836 L:      linux-gpio@vger.kernel.org
9837 S:      Maintained
9838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9839 F:      drivers/gpio/gpio-ich.c
9840 F:      drivers/gpio/gpio-merrifield.c
9841 F:      drivers/gpio/gpio-ml-ioh.c
9842 F:      drivers/gpio/gpio-pch.c
9843 F:      drivers/gpio/gpio-sch.c
9844 F:      drivers/gpio/gpio-sodaville.c
9845
9846 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9847 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9848 M:      Zhi Wang <zhi.a.wang@intel.com>
9849 L:      intel-gvt-dev@lists.freedesktop.org
9850 L:      intel-gfx@lists.freedesktop.org
9851 S:      Supported
9852 W:      https://01.org/igvt-g
9853 T:      git https://github.com/intel/gvt-linux.git
9854 F:      drivers/gpu/drm/i915/gvt/
9855
9856 INTEL HID EVENT DRIVER
9857 M:      Alex Hung <alex.hung@canonical.com>
9858 L:      platform-driver-x86@vger.kernel.org
9859 S:      Maintained
9860 F:      drivers/platform/x86/intel/hid.c
9861
9862 INTEL I/OAT DMA DRIVER
9863 M:      Dave Jiang <dave.jiang@intel.com>
9864 R:      Dan Williams <dan.j.williams@intel.com>
9865 L:      dmaengine@vger.kernel.org
9866 S:      Supported
9867 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9868 F:      drivers/dma/ioat*
9869
9870 INTEL IADX DRIVER
9871 M:      Dave Jiang <dave.jiang@intel.com>
9872 L:      dmaengine@vger.kernel.org
9873 S:      Supported
9874 F:      drivers/dma/idxd/*
9875 F:      include/uapi/linux/idxd.h
9876
9877 INTEL IDLE DRIVER
9878 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9879 M:      Len Brown <lenb@kernel.org>
9880 L:      linux-pm@vger.kernel.org
9881 S:      Supported
9882 B:      https://bugzilla.kernel.org
9883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9884 F:      drivers/idle/intel_idle.c
9885
9886 INTEL IN FIELD SCAN (IFS) DEVICE
9887 M:      Jithu Joseph <jithu.joseph@intel.com>
9888 R:      Ashok Raj <ashok.raj@intel.com>
9889 R:      Tony Luck <tony.luck@intel.com>
9890 S:      Maintained
9891 F:      drivers/platform/x86/intel/ifs
9892 F:      include/trace/events/intel_ifs.h
9893
9894 INTEL INTEGRATED SENSOR HUB DRIVER
9895 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9896 M:      Jiri Kosina <jikos@kernel.org>
9897 L:      linux-input@vger.kernel.org
9898 S:      Maintained
9899 F:      drivers/hid/intel-ish-hid/
9900
9901 INTEL IOMMU (VT-d)
9902 M:      David Woodhouse <dwmw2@infradead.org>
9903 M:      Lu Baolu <baolu.lu@linux.intel.com>
9904 L:      iommu@lists.linux-foundation.org
9905 S:      Supported
9906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9907 F:      drivers/iommu/intel/
9908 F:      include/linux/intel-iommu.h
9909 F:      include/linux/intel-svm.h
9910
9911 INTEL IOP-ADMA DMA DRIVER
9912 R:      Dan Williams <dan.j.williams@intel.com>
9913 S:      Odd fixes
9914 F:      drivers/dma/iop-adma.c
9915
9916 INTEL IPU3 CSI-2 CIO2 DRIVER
9917 M:      Yong Zhi <yong.zhi@intel.com>
9918 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9919 M:      Bingbu Cao <bingbu.cao@intel.com>
9920 M:      Dan Scally <djrscally@gmail.com>
9921 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9922 L:      linux-media@vger.kernel.org
9923 S:      Maintained
9924 T:      git git://linuxtv.org/media_tree.git
9925 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9926 F:      drivers/media/pci/intel/ipu3/
9927
9928 INTEL IPU3 CSI-2 IMGU DRIVER
9929 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9930 R:      Bingbu Cao <bingbu.cao@intel.com>
9931 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9932 L:      linux-media@vger.kernel.org
9933 S:      Maintained
9934 F:      Documentation/admin-guide/media/ipu3.rst
9935 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9936 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9937 F:      drivers/staging/media/ipu3/
9938
9939 INTEL IXP4XX CRYPTO SUPPORT
9940 M:      Corentin Labbe <clabbe@baylibre.com>
9941 L:      linux-crypto@vger.kernel.org
9942 S:      Maintained
9943 F:      drivers/crypto/ixp4xx_crypto.c
9944
9945 INTEL ISHTP ECLITE DRIVER
9946 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9947 L:      platform-driver-x86@vger.kernel.org
9948 S:      Supported
9949 F:      drivers/platform/x86/intel/ishtp_eclite.c
9950
9951 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9952 M:      Krzysztof Halasa <khalasa@piap.pl>
9953 S:      Maintained
9954 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9955 F:      drivers/net/wan/ixp4xx_hss.c
9956 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9957 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9958 F:      include/linux/soc/ixp4xx/npe.h
9959 F:      include/linux/soc/ixp4xx/qmgr.h
9960
9961 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9962 M:      Deepak Saxena <dsaxena@plexity.net>
9963 S:      Maintained
9964 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9965 F:      drivers/char/hw_random/ixp4xx-rng.c
9966
9967 INTEL KEEM BAY DRM DRIVER
9968 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9969 M:      Edmund Dea <edmund.j.dea@intel.com>
9970 S:      Maintained
9971 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9972 F:      drivers/gpu/drm/kmb/
9973
9974 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9975 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9976 S:      Maintained
9977 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9978 F:      drivers/crypto/keembay/Kconfig
9979 F:      drivers/crypto/keembay/Makefile
9980 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9981 F:      drivers/crypto/keembay/ocs-aes.c
9982 F:      drivers/crypto/keembay/ocs-aes.h
9983
9984 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9985 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9986 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9987 M:      Mark Gross <mgross@linux.intel.com>
9988 S:      Maintained
9989 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9990 F:      drivers/crypto/keembay/Kconfig
9991 F:      drivers/crypto/keembay/Makefile
9992 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9993
9994 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9995 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9996 M:      Declan Murphy <declan.murphy@intel.com>
9997 S:      Maintained
9998 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9999 F:      drivers/crypto/keembay/Kconfig
10000 F:      drivers/crypto/keembay/Makefile
10001 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10002 F:      drivers/crypto/keembay/ocs-hcu.c
10003 F:      drivers/crypto/keembay/ocs-hcu.h
10004
10005 INTEL THUNDER BAY EMMC PHY DRIVER
10006 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10007 M:      Rashmi A <rashmi.a@intel.com>
10008 S:      Maintained
10009 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10010 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10011
10012 INTEL MANAGEMENT ENGINE (mei)
10013 M:      Tomas Winkler <tomas.winkler@intel.com>
10014 L:      linux-kernel@vger.kernel.org
10015 S:      Supported
10016 F:      Documentation/driver-api/mei/*
10017 F:      drivers/misc/mei/
10018 F:      drivers/watchdog/mei_wdt.c
10019 F:      include/linux/mei_cl_bus.h
10020 F:      include/uapi/linux/mei.h
10021 F:      samples/mei/*
10022
10023 INTEL MAX 10 BMC MFD DRIVER
10024 M:      Xu Yilun <yilun.xu@intel.com>
10025 R:      Tom Rix <trix@redhat.com>
10026 S:      Maintained
10027 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10028 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10029 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10030 F:      drivers/mfd/intel-m10-bmc.c
10031 F:      include/linux/mfd/intel-m10-bmc.h
10032
10033 INTEL MENLOW THERMAL DRIVER
10034 M:      Sujith Thomas <sujith.thomas@intel.com>
10035 L:      linux-pm@vger.kernel.org
10036 S:      Supported
10037 W:      https://01.org/linux-acpi
10038 F:      drivers/thermal/intel/intel_menlow.c
10039
10040 INTEL P-Unit IPC DRIVER
10041 M:      Zha Qipeng <qipeng.zha@intel.com>
10042 L:      platform-driver-x86@vger.kernel.org
10043 S:      Maintained
10044 F:      arch/x86/include/asm/intel_punit_ipc.h
10045 F:      drivers/platform/x86/intel/punit_ipc.c
10046
10047 INTEL PMC CORE DRIVER
10048 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10049 M:      David E Box <david.e.box@intel.com>
10050 L:      platform-driver-x86@vger.kernel.org
10051 S:      Maintained
10052 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10053 F:      drivers/platform/x86/intel/pmc/
10054
10055 INTEL PMIC GPIO DRIVERS
10056 M:      Andy Shevchenko <andy@kernel.org>
10057 S:      Maintained
10058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10059 F:      drivers/gpio/gpio-*cove.c
10060
10061 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10062 M:      Andy Shevchenko <andy@kernel.org>
10063 S:      Maintained
10064 F:      drivers/mfd/intel_soc_pmic*
10065 F:      include/linux/mfd/intel_soc_pmic*
10066
10067 INTEL PMT DRIVERS
10068 M:      David E. Box <david.e.box@linux.intel.com>
10069 S:      Supported
10070 F:      drivers/platform/x86/intel/pmt/
10071
10072 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10073 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10074 L:      linux-wireless@vger.kernel.org
10075 S:      Maintained
10076 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10077 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10078 F:      drivers/net/wireless/intel/ipw2x00/
10079
10080 INTEL PSTATE DRIVER
10081 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10082 M:      Len Brown <lenb@kernel.org>
10083 L:      linux-pm@vger.kernel.org
10084 S:      Supported
10085 F:      drivers/cpufreq/intel_pstate.c
10086
10087 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10088 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10089 L:      linux-iio@vger.kernel.org
10090 F:      drivers/counter/intel-qep.c
10091
10092 INTEL SCU DRIVERS
10093 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10094 S:      Maintained
10095 F:      arch/x86/include/asm/intel_scu_ipc.h
10096 F:      drivers/platform/x86/intel_scu_*
10097
10098 INTEL SDSI DRIVER
10099 M:      David E. Box <david.e.box@linux.intel.com>
10100 S:      Supported
10101 F:      drivers/platform/x86/intel/sdsi.c
10102 F:      tools/arch/x86/intel_sdsi/
10103 F:      tools/testing/selftests/drivers/sdsi/
10104
10105 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10106 M:      Daniel Scally <djrscally@gmail.com>
10107 S:      Maintained
10108 F:      drivers/platform/x86/intel/int3472/
10109
10110 INTEL SPEED SELECT TECHNOLOGY
10111 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10112 L:      platform-driver-x86@vger.kernel.org
10113 S:      Maintained
10114 F:      drivers/platform/x86/intel/speed_select_if/
10115 F:      include/uapi/linux/isst_if.h
10116 F:      tools/power/x86/intel-speed-select/
10117
10118 INTEL STRATIX10 FIRMWARE DRIVERS
10119 M:      Dinh Nguyen <dinguyen@kernel.org>
10120 L:      linux-kernel@vger.kernel.org
10121 S:      Maintained
10122 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10123 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10124 F:      drivers/firmware/stratix10-rsu.c
10125 F:      drivers/firmware/stratix10-svc.c
10126 F:      include/linux/firmware/intel/stratix10-smc.h
10127 F:      include/linux/firmware/intel/stratix10-svc-client.h
10128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10129
10130 INTEL TELEMETRY DRIVER
10131 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10132 M:      "David E. Box" <david.e.box@linux.intel.com>
10133 L:      platform-driver-x86@vger.kernel.org
10134 S:      Maintained
10135 F:      arch/x86/include/asm/intel_telemetry.h
10136 F:      drivers/platform/x86/intel/telemetry/
10137
10138 INTEL UNCORE FREQUENCY CONTROL
10139 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10140 L:      platform-driver-x86@vger.kernel.org
10141 S:      Maintained
10142 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10143 F:      drivers/platform/x86/intel/uncore-frequency/
10144
10145 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10146 M:      David E. Box <david.e.box@linux.intel.com>
10147 S:      Supported
10148 F:      drivers/platform/x86/intel/vsec.*
10149
10150 INTEL VIRTUAL BUTTON DRIVER
10151 M:      AceLan Kao <acelan.kao@canonical.com>
10152 L:      platform-driver-x86@vger.kernel.org
10153 S:      Maintained
10154 F:      drivers/platform/x86/intel/vbtn.c
10155
10156 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10157 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10158 L:      linux-wireless@vger.kernel.org
10159 S:      Supported
10160 F:      drivers/net/wireless/intel/iwlegacy/
10161
10162 INTEL WIRELESS WIFI LINK (iwlwifi)
10163 M:      Gregory Greenman <gregory.greenman@intel.com>
10164 L:      linux-wireless@vger.kernel.org
10165 S:      Supported
10166 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10168 F:      drivers/net/wireless/intel/iwlwifi/
10169
10170 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10171 M:      Jithu Joseph <jithu.joseph@intel.com>
10172 R:      Maurice Ma <maurice.ma@intel.com>
10173 S:      Maintained
10174 W:      https://slimbootloader.github.io/security/firmware-update.html
10175 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10176
10177 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10178 L:      Dell.Client.Kernel@dell.com
10179 S:      Maintained
10180 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10181
10182 INTEL WWAN IOSM DRIVER
10183 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10184 M:      Intel Corporation <linuxwwan@intel.com>
10185 L:      netdev@vger.kernel.org
10186 S:      Maintained
10187 F:      drivers/net/wwan/iosm/
10188
10189 INTEL(R) TRACE HUB
10190 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10191 S:      Supported
10192 F:      Documentation/trace/intel_th.rst
10193 F:      drivers/hwtracing/intel_th/
10194 F:      include/linux/intel_th.h
10195
10196 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10197 M:      Ning Sun <ning.sun@intel.com>
10198 L:      tboot-devel@lists.sourceforge.net
10199 S:      Supported
10200 W:      http://tboot.sourceforge.net
10201 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10202 F:      Documentation/x86/intel_txt.rst
10203 F:      arch/x86/kernel/tboot.c
10204 F:      include/linux/tboot.h
10205
10206 INTEL SGX
10207 M:      Jarkko Sakkinen <jarkko@kernel.org>
10208 R:      Dave Hansen <dave.hansen@linux.intel.com>
10209 L:      linux-sgx@vger.kernel.org
10210 S:      Supported
10211 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10213 F:      Documentation/x86/sgx.rst
10214 F:      arch/x86/entry/vdso/vsgx.S
10215 F:      arch/x86/include/asm/sgx.h
10216 F:      arch/x86/include/uapi/asm/sgx.h
10217 F:      arch/x86/kernel/cpu/sgx/*
10218 F:      tools/testing/selftests/sgx/*
10219 K:      \bSGX_
10220
10221 INTERCONNECT API
10222 M:      Georgi Djakov <djakov@kernel.org>
10223 L:      linux-pm@vger.kernel.org
10224 S:      Maintained
10225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10226 F:      Documentation/devicetree/bindings/interconnect/
10227 F:      Documentation/driver-api/interconnect.rst
10228 F:      drivers/interconnect/
10229 F:      include/dt-bindings/interconnect/
10230 F:      include/linux/interconnect-provider.h
10231 F:      include/linux/interconnect.h
10232
10233 INTERRUPT COUNTER DRIVER
10234 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10235 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10236 L:      linux-iio@vger.kernel.org
10237 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10238 F:      drivers/counter/interrupt-cnt.c
10239
10240 INTERSIL ISL7998X VIDEO DECODER DRIVER
10241 M:      Michael Tretter <m.tretter@pengutronix.de>
10242 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10243 L:      linux-media@vger.kernel.org
10244 S:      Maintained
10245 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10246 F:      drivers/media/i2c/isl7998x.c
10247
10248 INVENSENSE ICM-426xx IMU DRIVER
10249 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10250 L:      linux-iio@vger.kernel.org
10251 S:      Maintained
10252 W:      https://invensense.tdk.com/
10253 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10254 F:      drivers/iio/imu/inv_icm42600/
10255
10256 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10257 M:      Linus Walleij <linus.walleij@linaro.org>
10258 L:      linux-iio@vger.kernel.org
10259 S:      Maintained
10260 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10261 F:      drivers/iio/gyro/mpu3050*
10262
10263 IOC3 ETHERNET DRIVER
10264 M:      Ralf Baechle <ralf@linux-mips.org>
10265 L:      linux-mips@vger.kernel.org
10266 S:      Maintained
10267 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10268
10269 IOMAP FILESYSTEM LIBRARY
10270 M:      Christoph Hellwig <hch@infradead.org>
10271 M:      Darrick J. Wong <djwong@kernel.org>
10272 L:      linux-xfs@vger.kernel.org
10273 L:      linux-fsdevel@vger.kernel.org
10274 S:      Supported
10275 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10276 F:      fs/iomap/
10277 F:      include/linux/iomap.h
10278
10279 IOMMU DRIVERS
10280 M:      Joerg Roedel <joro@8bytes.org>
10281 M:      Will Deacon <will@kernel.org>
10282 L:      iommu@lists.linux-foundation.org
10283 S:      Maintained
10284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10285 F:      Documentation/devicetree/bindings/iommu/
10286 F:      Documentation/userspace-api/iommu.rst
10287 F:      drivers/iommu/
10288 F:      include/linux/iommu.h
10289 F:      include/linux/iova.h
10290 F:      include/linux/of_iommu.h
10291 F:      include/uapi/linux/iommu.h
10292
10293 IOSYS-MAP HELPERS
10294 M:      Thomas Zimmermann <tzimmermann@suse.de>
10295 L:      dri-devel@lists.freedesktop.org
10296 S:      Maintained
10297 T:      git git://anongit.freedesktop.org/drm/drm-misc
10298 F:      include/linux/iosys-map.h
10299
10300 IO_URING
10301 M:      Jens Axboe <axboe@kernel.dk>
10302 R:      Pavel Begunkov <asml.silence@gmail.com>
10303 L:      io-uring@vger.kernel.org
10304 S:      Maintained
10305 T:      git git://git.kernel.dk/linux-block
10306 T:      git git://git.kernel.dk/liburing
10307 F:      fs/io-wq.c
10308 F:      fs/io-wq.h
10309 F:      fs/io_uring.c
10310 F:      include/linux/io_uring.h
10311 F:      include/uapi/linux/io_uring.h
10312 F:      tools/io_uring/
10313
10314 IPMI SUBSYSTEM
10315 M:      Corey Minyard <minyard@acm.org>
10316 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10317 S:      Supported
10318 W:      http://openipmi.sourceforge.net/
10319 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10320 F:      Documentation/driver-api/ipmi.rst
10321 F:      Documentation/devicetree/bindings/ipmi/
10322 F:      drivers/char/ipmi/
10323 F:      include/linux/ipmi*
10324 F:      include/uapi/linux/ipmi*
10325
10326 IPS SCSI RAID DRIVER
10327 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10328 L:      linux-scsi@vger.kernel.org
10329 S:      Maintained
10330 W:      http://www.adaptec.com/
10331 F:      drivers/scsi/ips*
10332
10333 IPVS
10334 M:      Simon Horman <horms@verge.net.au>
10335 M:      Julian Anastasov <ja@ssi.bg>
10336 L:      netdev@vger.kernel.org
10337 L:      lvs-devel@vger.kernel.org
10338 S:      Maintained
10339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10341 F:      Documentation/networking/ipvs-sysctl.rst
10342 F:      include/net/ip_vs.h
10343 F:      include/uapi/linux/ip_vs.h
10344 F:      net/netfilter/ipvs/
10345
10346 IPWIRELESS DRIVER
10347 M:      Jiri Kosina <jikos@kernel.org>
10348 M:      David Sterba <dsterba@suse.com>
10349 S:      Odd Fixes
10350 F:      drivers/tty/ipwireless/
10351
10352 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10353 M:      Marc Zyngier <maz@kernel.org>
10354 S:      Maintained
10355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10356 F:      Documentation/core-api/irq/irq-domain.rst
10357 F:      include/linux/irqdomain.h
10358 F:      kernel/irq/irqdomain.c
10359 F:      kernel/irq/msi.c
10360
10361 IRQ SUBSYSTEM
10362 M:      Thomas Gleixner <tglx@linutronix.de>
10363 L:      linux-kernel@vger.kernel.org
10364 S:      Maintained
10365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10366 F:      kernel/irq/
10367
10368 IRQCHIP DRIVERS
10369 M:      Thomas Gleixner <tglx@linutronix.de>
10370 M:      Marc Zyngier <maz@kernel.org>
10371 L:      linux-kernel@vger.kernel.org
10372 S:      Maintained
10373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10374 F:      Documentation/devicetree/bindings/interrupt-controller/
10375 F:      drivers/irqchip/
10376
10377 ISA
10378 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10379 S:      Maintained
10380 F:      Documentation/driver-api/isa.rst
10381 F:      drivers/base/isa.c
10382 F:      include/linux/isa.h
10383
10384 ISA RADIO MODULE
10385 M:      Hans Verkuil <hverkuil@xs4all.nl>
10386 L:      linux-media@vger.kernel.org
10387 S:      Maintained
10388 W:      https://linuxtv.org
10389 T:      git git://linuxtv.org/media_tree.git
10390 F:      drivers/media/radio/radio-isa*
10391
10392 ISAPNP
10393 M:      Jaroslav Kysela <perex@perex.cz>
10394 S:      Maintained
10395 F:      Documentation/driver-api/isapnp.rst
10396 F:      drivers/pnp/isapnp/
10397 F:      include/linux/isapnp.h
10398
10399 ISCSI
10400 M:      Lee Duncan <lduncan@suse.com>
10401 M:      Chris Leech <cleech@redhat.com>
10402 M:      Mike Christie <michael.christie@oracle.com>
10403 L:      open-iscsi@googlegroups.com
10404 L:      linux-scsi@vger.kernel.org
10405 S:      Maintained
10406 W:      www.open-iscsi.com
10407 F:      drivers/scsi/*iscsi*
10408 F:      include/scsi/*iscsi*
10409
10410 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10411 M:      Peter Jones <pjones@redhat.com>
10412 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10413 S:      Maintained
10414 F:      drivers/firmware/iscsi_ibft*
10415
10416 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10417 M:      Sagi Grimberg <sagi@grimberg.me>
10418 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10419 L:      linux-rdma@vger.kernel.org
10420 S:      Supported
10421 W:      http://www.openfabrics.org
10422 W:      www.open-iscsi.org
10423 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10424 F:      drivers/infiniband/ulp/iser/
10425
10426 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10427 M:      Sagi Grimberg <sagi@grimberg.me>
10428 L:      linux-rdma@vger.kernel.org
10429 L:      target-devel@vger.kernel.org
10430 S:      Supported
10431 W:      http://www.linux-iscsi.org
10432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10433 F:      drivers/infiniband/ulp/isert
10434
10435 ISDN/CMTP OVER BLUETOOTH
10436 M:      Karsten Keil <isdn@linux-pingi.de>
10437 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10438 L:      netdev@vger.kernel.org
10439 S:      Odd Fixes
10440 W:      http://www.isdn4linux.de
10441 F:      Documentation/isdn/
10442 F:      drivers/isdn/capi/
10443 F:      include/linux/isdn/
10444 F:      include/uapi/linux/isdn/
10445 F:      net/bluetooth/cmtp/
10446
10447 ISDN/mISDN SUBSYSTEM
10448 M:      Karsten Keil <isdn@linux-pingi.de>
10449 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10450 L:      netdev@vger.kernel.org
10451 S:      Maintained
10452 W:      http://www.isdn4linux.de
10453 F:      drivers/isdn/Kconfig
10454 F:      drivers/isdn/Makefile
10455 F:      drivers/isdn/hardware/
10456 F:      drivers/isdn/mISDN/
10457
10458 IT87 HARDWARE MONITORING DRIVER
10459 M:      Jean Delvare <jdelvare@suse.com>
10460 L:      linux-hwmon@vger.kernel.org
10461 S:      Maintained
10462 F:      Documentation/hwmon/it87.rst
10463 F:      drivers/hwmon/it87.c
10464
10465 IT913X MEDIA DRIVER
10466 M:      Antti Palosaari <crope@iki.fi>
10467 L:      linux-media@vger.kernel.org
10468 S:      Maintained
10469 W:      https://linuxtv.org
10470 W:      http://palosaari.fi/linux/
10471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10472 T:      git git://linuxtv.org/anttip/media_tree.git
10473 F:      drivers/media/tuners/it913x*
10474
10475 ITE IT66121 HDMI BRIDGE DRIVER
10476 M:      Phong LE <ple@baylibre.com>
10477 M:      Neil Armstrong <narmstrong@baylibre.com>
10478 S:      Maintained
10479 T:      git git://anongit.freedesktop.org/drm/drm-misc
10480 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10481 F:      drivers/gpu/drm/bridge/ite-it66121.c
10482
10483 IVTV VIDEO4LINUX DRIVER
10484 M:      Andy Walls <awalls@md.metrocast.net>
10485 L:      linux-media@vger.kernel.org
10486 S:      Maintained
10487 W:      https://linuxtv.org
10488 T:      git git://linuxtv.org/media_tree.git
10489 F:      Documentation/admin-guide/media/ivtv*
10490 F:      drivers/media/pci/ivtv/
10491 F:      include/uapi/linux/ivtv*
10492
10493 IX2505V MEDIA DRIVER
10494 M:      Malcolm Priestley <tvboxspy@gmail.com>
10495 L:      linux-media@vger.kernel.org
10496 S:      Maintained
10497 W:      https://linuxtv.org
10498 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10499 F:      drivers/media/dvb-frontends/ix2505v*
10500
10501 JAILHOUSE HYPERVISOR INTERFACE
10502 M:      Jan Kiszka <jan.kiszka@siemens.com>
10503 L:      jailhouse-dev@googlegroups.com
10504 S:      Maintained
10505 F:      arch/x86/include/asm/jailhouse_para.h
10506 F:      arch/x86/kernel/jailhouse.c
10507
10508 JC42.4 TEMPERATURE SENSOR DRIVER
10509 M:      Guenter Roeck <linux@roeck-us.net>
10510 L:      linux-hwmon@vger.kernel.org
10511 S:      Maintained
10512 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10513 F:      Documentation/hwmon/jc42.rst
10514 F:      drivers/hwmon/jc42.c
10515
10516 JFS FILESYSTEM
10517 M:      Dave Kleikamp <shaggy@kernel.org>
10518 L:      jfs-discussion@lists.sourceforge.net
10519 S:      Maintained
10520 W:      http://jfs.sourceforge.net/
10521 T:      git git://github.com/kleikamp/linux-shaggy.git
10522 F:      Documentation/admin-guide/jfs.rst
10523 F:      fs/jfs/
10524
10525 JME NETWORK DRIVER
10526 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10527 L:      netdev@vger.kernel.org
10528 S:      Maintained
10529 F:      drivers/net/ethernet/jme.*
10530
10531 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10532 M:      David Woodhouse <dwmw2@infradead.org>
10533 M:      Richard Weinberger <richard@nod.at>
10534 L:      linux-mtd@lists.infradead.org
10535 S:      Odd Fixes
10536 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10537 T:      git git://git.infradead.org/ubifs-2.6.git
10538 F:      fs/jffs2/
10539 F:      include/uapi/linux/jffs2.h
10540
10541 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10542 M:      "Theodore Ts'o" <tytso@mit.edu>
10543 M:      Jan Kara <jack@suse.com>
10544 L:      linux-ext4@vger.kernel.org
10545 S:      Maintained
10546 F:      fs/jbd2/
10547 F:      include/linux/jbd2.h
10548
10549 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10550 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10551 L:      linux-media@vger.kernel.org
10552 L:      linux-renesas-soc@vger.kernel.org
10553 S:      Maintained
10554 F:      drivers/media/platform/renesas/rcar_jpu.c
10555
10556 JSM Neo PCI based serial card
10557 L:      linux-serial@vger.kernel.org
10558 S:      Orphan
10559 F:      drivers/tty/serial/jsm/
10560
10561 K10TEMP HARDWARE MONITORING DRIVER
10562 M:      Clemens Ladisch <clemens@ladisch.de>
10563 L:      linux-hwmon@vger.kernel.org
10564 S:      Maintained
10565 F:      Documentation/hwmon/k10temp.rst
10566 F:      drivers/hwmon/k10temp.c
10567
10568 K8TEMP HARDWARE MONITORING DRIVER
10569 M:      Rudolf Marek <r.marek@assembler.cz>
10570 L:      linux-hwmon@vger.kernel.org
10571 S:      Maintained
10572 F:      Documentation/hwmon/k8temp.rst
10573 F:      drivers/hwmon/k8temp.c
10574
10575 KASAN
10576 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10577 R:      Alexander Potapenko <glider@google.com>
10578 R:      Andrey Konovalov <andreyknvl@gmail.com>
10579 R:      Dmitry Vyukov <dvyukov@google.com>
10580 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10581 L:      kasan-dev@googlegroups.com
10582 S:      Maintained
10583 F:      Documentation/dev-tools/kasan.rst
10584 F:      arch/*/include/asm/*kasan.h
10585 F:      arch/*/mm/kasan_init*
10586 F:      include/linux/kasan*.h
10587 F:      lib/Kconfig.kasan
10588 F:      lib/test_kasan*.c
10589 F:      mm/kasan/
10590 F:      scripts/Makefile.kasan
10591
10592 KCONFIG
10593 M:      Masahiro Yamada <masahiroy@kernel.org>
10594 L:      linux-kbuild@vger.kernel.org
10595 S:      Maintained
10596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10597 F:      Documentation/kbuild/kconfig*
10598 F:      scripts/Kconfig.include
10599 F:      scripts/kconfig/
10600
10601 KCOV
10602 R:      Dmitry Vyukov <dvyukov@google.com>
10603 R:      Andrey Konovalov <andreyknvl@gmail.com>
10604 L:      kasan-dev@googlegroups.com
10605 S:      Maintained
10606 F:      Documentation/dev-tools/kcov.rst
10607 F:      include/linux/kcov.h
10608 F:      include/uapi/linux/kcov.h
10609 F:      kernel/kcov.c
10610 F:      scripts/Makefile.kcov
10611
10612 KCSAN
10613 M:      Marco Elver <elver@google.com>
10614 R:      Dmitry Vyukov <dvyukov@google.com>
10615 L:      kasan-dev@googlegroups.com
10616 S:      Maintained
10617 F:      Documentation/dev-tools/kcsan.rst
10618 F:      include/linux/kcsan*.h
10619 F:      kernel/kcsan/
10620 F:      lib/Kconfig.kcsan
10621 F:      scripts/Makefile.kcsan
10622
10623 KDUMP
10624 M:      Baoquan He <bhe@redhat.com>
10625 R:      Vivek Goyal <vgoyal@redhat.com>
10626 R:      Dave Young <dyoung@redhat.com>
10627 L:      kexec@lists.infradead.org
10628 S:      Maintained
10629 W:      http://lse.sourceforge.net/kdump/
10630 F:      Documentation/admin-guide/kdump/
10631 F:      fs/proc/vmcore.c
10632 F:      include/linux/crash_core.h
10633 F:      include/linux/crash_dump.h
10634 F:      include/uapi/linux/vmcore.h
10635 F:      kernel/crash_*.c
10636
10637 KEENE FM RADIO TRANSMITTER DRIVER
10638 M:      Hans Verkuil <hverkuil@xs4all.nl>
10639 L:      linux-media@vger.kernel.org
10640 S:      Maintained
10641 W:      https://linuxtv.org
10642 T:      git git://linuxtv.org/media_tree.git
10643 F:      drivers/media/radio/radio-keene*
10644
10645 KERNEL AUTOMOUNTER
10646 M:      Ian Kent <raven@themaw.net>
10647 L:      autofs@vger.kernel.org
10648 S:      Maintained
10649 F:      fs/autofs/
10650
10651 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10652 M:      Masahiro Yamada <masahiroy@kernel.org>
10653 M:      Michal Marek <michal.lkml@markovi.net>
10654 R:      Nick Desaulniers <ndesaulniers@google.com>
10655 L:      linux-kbuild@vger.kernel.org
10656 S:      Maintained
10657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10658 F:      Documentation/kbuild/
10659 F:      Makefile
10660 F:      scripts/*vmlinux*
10661 F:      scripts/Kbuild*
10662 F:      scripts/Makefile*
10663 F:      scripts/basic/
10664 F:      scripts/dummy-tools/
10665 F:      scripts/mk*
10666 F:      scripts/mod/
10667 F:      scripts/package/
10668
10669 KERNEL JANITORS
10670 L:      kernel-janitors@vger.kernel.org
10671 S:      Odd Fixes
10672 W:      http://kernelnewbies.org/KernelJanitors
10673
10674 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10675 M:      Chuck Lever <chuck.lever@oracle.com>
10676 L:      linux-nfs@vger.kernel.org
10677 S:      Supported
10678 W:      http://nfs.sourceforge.net/
10679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10680 F:      fs/lockd/
10681 F:      fs/nfs_common/
10682 F:      fs/nfsd/
10683 F:      include/linux/lockd/
10684 F:      include/linux/sunrpc/
10685 F:      include/uapi/linux/nfsd/
10686 F:      include/uapi/linux/sunrpc/
10687 F:      net/sunrpc/
10688 F:      Documentation/filesystems/nfs/
10689
10690 KERNEL REGRESSIONS
10691 M:      Thorsten Leemhuis <linux@leemhuis.info>
10692 L:      regressions@lists.linux.dev
10693 S:      Supported
10694 F:      Documentation/admin-guide/reporting-regressions.rst
10695 F:      Documentation/process/handling-regressions.rst
10696
10697 KERNEL SELFTEST FRAMEWORK
10698 M:      Shuah Khan <shuah@kernel.org>
10699 M:      Shuah Khan <skhan@linuxfoundation.org>
10700 L:      linux-kselftest@vger.kernel.org
10701 S:      Maintained
10702 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10704 F:      Documentation/dev-tools/kselftest*
10705 F:      tools/testing/selftests/
10706
10707 KERNEL SMB3 SERVER (KSMBD)
10708 M:      Namjae Jeon <linkinjeon@kernel.org>
10709 M:      Steve French <sfrench@samba.org>
10710 M:      Hyunchul Lee <hyc.lee@gmail.com>
10711 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
10712 L:      linux-cifs@vger.kernel.org
10713 S:      Maintained
10714 T:      git git://git.samba.org/ksmbd.git
10715 F:      fs/ksmbd/
10716 F:      fs/smbfs_common/
10717
10718 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10719 M:      Brendan Higgins <brendanhiggins@google.com>
10720 L:      linux-kselftest@vger.kernel.org
10721 L:      kunit-dev@googlegroups.com
10722 S:      Maintained
10723 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10724 F:      Documentation/dev-tools/kunit/
10725 F:      include/kunit/
10726 F:      lib/kunit/
10727 F:      tools/testing/kunit/
10728
10729 KERNEL USERMODE HELPER
10730 M:      Luis Chamberlain <mcgrof@kernel.org>
10731 L:      linux-kernel@vger.kernel.org
10732 S:      Maintained
10733 F:      include/linux/umh.h
10734 F:      kernel/umh.c
10735
10736 KERNEL VIRTUAL MACHINE (KVM)
10737 M:      Paolo Bonzini <pbonzini@redhat.com>
10738 L:      kvm@vger.kernel.org
10739 S:      Supported
10740 W:      http://www.linux-kvm.org
10741 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10742 F:      Documentation/virt/kvm/
10743 F:      include/asm-generic/kvm*
10744 F:      include/kvm/iodev.h
10745 F:      include/linux/kvm*
10746 F:      include/trace/events/kvm.h
10747 F:      include/uapi/asm-generic/kvm*
10748 F:      include/uapi/linux/kvm*
10749 F:      tools/kvm/
10750 F:      tools/testing/selftests/kvm/
10751 F:      virt/kvm/*
10752
10753 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10754 M:      Marc Zyngier <maz@kernel.org>
10755 R:      James Morse <james.morse@arm.com>
10756 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10757 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10759 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10760 S:      Maintained
10761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10762 F:      arch/arm64/include/asm/kvm*
10763 F:      arch/arm64/include/uapi/asm/kvm*
10764 F:      arch/arm64/kvm/
10765 F:      include/kvm/arm_*
10766 F:      tools/testing/selftests/kvm/*/aarch64/
10767 F:      tools/testing/selftests/kvm/aarch64/
10768
10769 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10770 M:      Huacai Chen <chenhuacai@kernel.org>
10771 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10772 L:      linux-mips@vger.kernel.org
10773 L:      kvm@vger.kernel.org
10774 S:      Maintained
10775 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10776 F:      arch/mips/include/asm/kvm*
10777 F:      arch/mips/include/uapi/asm/kvm*
10778 F:      arch/mips/kvm/
10779
10780 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10781 L:      linuxppc-dev@lists.ozlabs.org
10782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10783 F:      arch/powerpc/include/asm/kvm*
10784 F:      arch/powerpc/include/uapi/asm/kvm*
10785 F:      arch/powerpc/kernel/kvm*
10786 F:      arch/powerpc/kvm/
10787
10788 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10789 M:      Anup Patel <anup@brainfault.org>
10790 R:      Atish Patra <atishp@atishpatra.org>
10791 L:      kvm@vger.kernel.org
10792 L:      kvm-riscv@lists.infradead.org
10793 L:      linux-riscv@lists.infradead.org
10794 S:      Maintained
10795 T:      git git://github.com/kvm-riscv/linux.git
10796 F:      arch/riscv/include/asm/kvm*
10797 F:      arch/riscv/include/uapi/asm/kvm*
10798 F:      arch/riscv/kvm/
10799
10800 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10801 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10802 M:      Janosch Frank <frankja@linux.ibm.com>
10803 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10804 R:      David Hildenbrand <david@redhat.com>
10805 L:      kvm@vger.kernel.org
10806 S:      Supported
10807 W:      http://www.ibm.com/developerworks/linux/linux390/
10808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10809 F:      Documentation/virt/kvm/s390*
10810 F:      arch/s390/include/asm/gmap.h
10811 F:      arch/s390/include/asm/kvm*
10812 F:      arch/s390/include/uapi/asm/kvm*
10813 F:      arch/s390/kernel/uv.c
10814 F:      arch/s390/kvm/
10815 F:      arch/s390/mm/gmap.c
10816 F:      tools/testing/selftests/kvm/*/s390x/
10817 F:      tools/testing/selftests/kvm/s390x/
10818
10819 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10820 M:      Paolo Bonzini <pbonzini@redhat.com>
10821 R:      Sean Christopherson <seanjc@google.com>
10822 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10823 R:      Wanpeng Li <wanpengli@tencent.com>
10824 R:      Jim Mattson <jmattson@google.com>
10825 R:      Joerg Roedel <joro@8bytes.org>
10826 L:      kvm@vger.kernel.org
10827 S:      Supported
10828 W:      http://www.linux-kvm.org
10829 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10830 F:      arch/x86/include/asm/kvm*
10831 F:      arch/x86/include/asm/pvclock-abi.h
10832 F:      arch/x86/include/asm/svm.h
10833 F:      arch/x86/include/asm/vmx*.h
10834 F:      arch/x86/include/uapi/asm/kvm*
10835 F:      arch/x86/include/uapi/asm/svm.h
10836 F:      arch/x86/include/uapi/asm/vmx.h
10837 F:      arch/x86/kernel/kvm.c
10838 F:      arch/x86/kernel/kvmclock.c
10839 F:      arch/x86/kvm/
10840 F:      arch/x86/kvm/*/
10841
10842 KERNFS
10843 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10844 M:      Tejun Heo <tj@kernel.org>
10845 S:      Supported
10846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10847 F:      fs/kernfs/
10848 F:      include/linux/kernfs.h
10849
10850 KEXEC
10851 M:      Eric Biederman <ebiederm@xmission.com>
10852 L:      kexec@lists.infradead.org
10853 S:      Maintained
10854 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10855 F:      include/linux/kexec.h
10856 F:      include/uapi/linux/kexec.h
10857 F:      kernel/kexec*
10858
10859 KEYS-ENCRYPTED
10860 M:      Mimi Zohar <zohar@linux.ibm.com>
10861 L:      linux-integrity@vger.kernel.org
10862 L:      keyrings@vger.kernel.org
10863 S:      Supported
10864 F:      Documentation/security/keys/trusted-encrypted.rst
10865 F:      include/keys/encrypted-type.h
10866 F:      security/keys/encrypted-keys/
10867
10868 KEYS-TRUSTED
10869 M:      James Bottomley <jejb@linux.ibm.com>
10870 M:      Jarkko Sakkinen <jarkko@kernel.org>
10871 M:      Mimi Zohar <zohar@linux.ibm.com>
10872 L:      linux-integrity@vger.kernel.org
10873 L:      keyrings@vger.kernel.org
10874 S:      Supported
10875 F:      Documentation/security/keys/trusted-encrypted.rst
10876 F:      include/keys/trusted-type.h
10877 F:      include/keys/trusted_tpm.h
10878 F:      security/keys/trusted-keys/
10879
10880 KEYS-TRUSTED-TEE
10881 M:      Sumit Garg <sumit.garg@linaro.org>
10882 L:      linux-integrity@vger.kernel.org
10883 L:      keyrings@vger.kernel.org
10884 S:      Supported
10885 F:      include/keys/trusted_tee.h
10886 F:      security/keys/trusted-keys/trusted_tee.c
10887
10888 KEYS-TRUSTED-CAAM
10889 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
10890 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10891 L:      linux-integrity@vger.kernel.org
10892 L:      keyrings@vger.kernel.org
10893 S:      Maintained
10894 F:      include/keys/trusted_caam.h
10895 F:      security/keys/trusted-keys/trusted_caam.c
10896
10897 KEYS/KEYRINGS
10898 M:      David Howells <dhowells@redhat.com>
10899 M:      Jarkko Sakkinen <jarkko@kernel.org>
10900 L:      keyrings@vger.kernel.org
10901 S:      Maintained
10902 F:      Documentation/security/keys/core.rst
10903 F:      include/keys/
10904 F:      include/linux/key-type.h
10905 F:      include/linux/key.h
10906 F:      include/linux/keyctl.h
10907 F:      include/uapi/linux/keyctl.h
10908 F:      security/keys/
10909
10910 KEYS/KEYRINGS_INTEGRITY
10911 M:      Jarkko Sakkinen <jarkko@kernel.org>
10912 M:      Mimi Zohar <zohar@linux.ibm.com>
10913 L:      linux-integrity@vger.kernel.org
10914 L:      keyrings@vger.kernel.org
10915 S:      Supported
10916 F:      security/integrity/platform_certs
10917
10918 KFENCE
10919 M:      Alexander Potapenko <glider@google.com>
10920 M:      Marco Elver <elver@google.com>
10921 R:      Dmitry Vyukov <dvyukov@google.com>
10922 L:      kasan-dev@googlegroups.com
10923 S:      Maintained
10924 F:      Documentation/dev-tools/kfence.rst
10925 F:      arch/*/include/asm/kfence.h
10926 F:      include/linux/kfence.h
10927 F:      lib/Kconfig.kfence
10928 F:      mm/kfence/
10929
10930 KFIFO
10931 M:      Stefani Seibold <stefani@seibold.net>
10932 S:      Maintained
10933 F:      include/linux/kfifo.h
10934 F:      lib/kfifo.c
10935 F:      samples/kfifo/
10936
10937 KGDB / KDB /debug_core
10938 M:      Jason Wessel <jason.wessel@windriver.com>
10939 M:      Daniel Thompson <daniel.thompson@linaro.org>
10940 R:      Douglas Anderson <dianders@chromium.org>
10941 L:      kgdb-bugreport@lists.sourceforge.net
10942 S:      Maintained
10943 W:      http://kgdb.wiki.kernel.org/
10944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10945 F:      Documentation/dev-tools/kgdb.rst
10946 F:      drivers/misc/kgdbts.c
10947 F:      drivers/tty/serial/kgdboc.c
10948 F:      include/linux/kdb.h
10949 F:      include/linux/kgdb.h
10950 F:      kernel/debug/
10951
10952 KHADAS MCU MFD DRIVER
10953 M:      Neil Armstrong <narmstrong@baylibre.com>
10954 L:      linux-amlogic@lists.infradead.org
10955 S:      Maintained
10956 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10957 F:      drivers/mfd/khadas-mcu.c
10958 F:      include/linux/mfd/khadas-mcu.h
10959 F:      drivers/thermal/khadas_mcu_fan.c
10960
10961 KMEMLEAK
10962 M:      Catalin Marinas <catalin.marinas@arm.com>
10963 S:      Maintained
10964 F:      Documentation/dev-tools/kmemleak.rst
10965 F:      include/linux/kmemleak.h
10966 F:      mm/kmemleak.c
10967 F:      samples/kmemleak/kmemleak-test.c
10968
10969 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10970 M:      Luis Chamberlain <mcgrof@kernel.org>
10971 L:      linux-kernel@vger.kernel.org
10972 L:      linux-modules@vger.kernel.org
10973 S:      Maintained
10974 F:      include/linux/kmod.h
10975 F:      kernel/kmod.c
10976 F:      lib/test_kmod.c
10977 F:      tools/testing/selftests/kmod/
10978
10979 KPROBES
10980 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10981 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10982 M:      "David S. Miller" <davem@davemloft.net>
10983 M:      Masami Hiramatsu <mhiramat@kernel.org>
10984 S:      Maintained
10985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10986 F:      Documentation/trace/kprobes.rst
10987 F:      include/asm-generic/kprobes.h
10988 F:      include/linux/kprobes.h
10989 F:      kernel/kprobes.c
10990 F:      lib/test_kprobes.c
10991 F:      samples/kprobes
10992
10993 KS0108 LCD CONTROLLER DRIVER
10994 M:      Miguel Ojeda <ojeda@kernel.org>
10995 S:      Maintained
10996 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10997 F:      drivers/auxdisplay/ks0108.c
10998 F:      include/linux/ks0108.h
10999
11000 KTD253 BACKLIGHT DRIVER
11001 M:      Linus Walleij <linus.walleij@linaro.org>
11002 S:      Maintained
11003 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11004 F:      drivers/video/backlight/ktd253-backlight.c
11005
11006 KTEST
11007 M:      Steven Rostedt <rostedt@goodmis.org>
11008 M:      John Hawley <warthog9@eaglescrag.net>
11009 S:      Maintained
11010 F:      tools/testing/ktest
11011
11012 L3MDEV
11013 M:      David Ahern <dsahern@kernel.org>
11014 L:      netdev@vger.kernel.org
11015 S:      Maintained
11016 F:      include/net/l3mdev.h
11017 F:      net/l3mdev
11018
11019 L7 BPF FRAMEWORK
11020 M:      John Fastabend <john.fastabend@gmail.com>
11021 M:      Daniel Borkmann <daniel@iogearbox.net>
11022 M:      Jakub Sitnicki <jakub@cloudflare.com>
11023 L:      netdev@vger.kernel.org
11024 L:      bpf@vger.kernel.org
11025 S:      Maintained
11026 F:      include/linux/skmsg.h
11027 F:      net/core/skmsg.c
11028 F:      net/core/sock_map.c
11029 F:      net/ipv4/tcp_bpf.c
11030 F:      net/ipv4/udp_bpf.c
11031 F:      net/unix/unix_bpf.c
11032
11033 LANDLOCK SECURITY MODULE
11034 M:      Mickaël Salaün <mic@digikod.net>
11035 L:      linux-security-module@vger.kernel.org
11036 S:      Supported
11037 W:      https://landlock.io
11038 T:      git https://github.com/landlock-lsm/linux.git
11039 F:      Documentation/security/landlock.rst
11040 F:      Documentation/userspace-api/landlock.rst
11041 F:      include/uapi/linux/landlock.h
11042 F:      samples/landlock/
11043 F:      security/landlock/
11044 F:      tools/testing/selftests/landlock/
11045 K:      landlock
11046 K:      LANDLOCK
11047
11048 LANTIQ / INTEL Ethernet drivers
11049 M:      Hauke Mehrtens <hauke@hauke-m.de>
11050 L:      netdev@vger.kernel.org
11051 S:      Maintained
11052 F:      drivers/net/dsa/lantiq_gswip.c
11053 F:      drivers/net/dsa/lantiq_pce.h
11054 F:      drivers/net/ethernet/lantiq_xrx200.c
11055 F:      net/dsa/tag_gswip.c
11056
11057 LANTIQ MIPS ARCHITECTURE
11058 M:      John Crispin <john@phrozen.org>
11059 L:      linux-mips@vger.kernel.org
11060 S:      Maintained
11061 F:      arch/mips/lantiq
11062 F:      drivers/soc/lantiq
11063
11064 LASI 53c700 driver for PARISC
11065 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11066 L:      linux-scsi@vger.kernel.org
11067 S:      Maintained
11068 F:      Documentation/scsi/53c700.rst
11069 F:      drivers/scsi/53c700*
11070
11071 LEAKING_ADDRESSES
11072 M:      Tobin C. Harding <me@tobin.cc>
11073 M:      Tycho Andersen <tycho@tycho.pizza>
11074 L:      linux-hardening@vger.kernel.org
11075 S:      Maintained
11076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11077 F:      scripts/leaking_addresses.pl
11078
11079 LED SUBSYSTEM
11080 M:      Pavel Machek <pavel@ucw.cz>
11081 L:      linux-leds@vger.kernel.org
11082 S:      Maintained
11083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11084 F:      Documentation/devicetree/bindings/leds/
11085 F:      drivers/leds/
11086 F:      include/linux/leds.h
11087
11088 LEGACY EEPROM DRIVER
11089 M:      Jean Delvare <jdelvare@suse.com>
11090 S:      Maintained
11091 F:      Documentation/misc-devices/eeprom.rst
11092 F:      drivers/misc/eeprom/eeprom.c
11093
11094 LEGO MINDSTORMS EV3
11095 R:      David Lechner <david@lechnology.com>
11096 S:      Maintained
11097 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11098 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11099 F:      drivers/power/supply/lego_ev3_battery.c
11100
11101 LEGO USB Tower driver
11102 M:      Juergen Stuber <starblue@users.sourceforge.net>
11103 L:      legousb-devel@lists.sourceforge.net
11104 S:      Maintained
11105 W:      http://legousb.sourceforge.net/
11106 F:      drivers/usb/misc/legousbtower.c
11107
11108 LETSKETCH HID TABLET DRIVER
11109 M:      Hans de Goede <hdegoede@redhat.com>
11110 L:      linux-input@vger.kernel.org
11111 S:      Maintained
11112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11113 F:      drivers/hid/hid-letsketch.c
11114
11115 LG LAPTOP EXTRAS
11116 M:      Matan Ziv-Av <matan@svgalib.org>
11117 L:      platform-driver-x86@vger.kernel.org
11118 S:      Maintained
11119 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11120 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11121 F:      drivers/platform/x86/lg-laptop.c
11122
11123 LG2160 MEDIA DRIVER
11124 M:      Michael Krufky <mkrufky@linuxtv.org>
11125 L:      linux-media@vger.kernel.org
11126 S:      Maintained
11127 W:      https://linuxtv.org
11128 W:      http://github.com/mkrufky
11129 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11130 T:      git git://linuxtv.org/mkrufky/tuners.git
11131 F:      drivers/media/dvb-frontends/lg2160.*
11132
11133 LGDT3305 MEDIA DRIVER
11134 M:      Michael Krufky <mkrufky@linuxtv.org>
11135 L:      linux-media@vger.kernel.org
11136 S:      Maintained
11137 W:      https://linuxtv.org
11138 W:      http://github.com/mkrufky
11139 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11140 T:      git git://linuxtv.org/mkrufky/tuners.git
11141 F:      drivers/media/dvb-frontends/lgdt3305.*
11142
11143 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11144 M:      Viresh Kumar <vireshk@kernel.org>
11145 L:      linux-ide@vger.kernel.org
11146 S:      Maintained
11147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11148 F:      drivers/ata/pata_arasan_cf.c
11149 F:      include/linux/pata_arasan_cf_data.h
11150
11151 LIBATA PATA DRIVERS
11152 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11153 L:      linux-ide@vger.kernel.org
11154 F:      drivers/ata/ata_*.c
11155 F:      drivers/ata/pata_*.c
11156
11157 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11158 M:      Linus Walleij <linus.walleij@linaro.org>
11159 L:      linux-ide@vger.kernel.org
11160 S:      Maintained
11161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11162 F:      drivers/ata/pata_ftide010.c
11163 F:      drivers/ata/sata_gemini.c
11164 F:      drivers/ata/sata_gemini.h
11165
11166 LIBATA SATA AHCI PLATFORM devices support
11167 M:      Hans de Goede <hdegoede@redhat.com>
11168 M:      Jens Axboe <axboe@kernel.dk>
11169 L:      linux-ide@vger.kernel.org
11170 S:      Maintained
11171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11172 F:      drivers/ata/ahci_platform.c
11173 F:      drivers/ata/libahci_platform.c
11174 F:      include/linux/ahci_platform.h
11175
11176 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11177 M:      Mikael Pettersson <mikpelinux@gmail.com>
11178 L:      linux-ide@vger.kernel.org
11179 S:      Maintained
11180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11181 F:      drivers/ata/sata_promise.*
11182
11183 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11184 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11185 L:      linux-ide@vger.kernel.org
11186 S:      Maintained
11187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11188 F:      Documentation/devicetree/bindings/ata/
11189 F:      drivers/ata/
11190 F:      include/linux/ata.h
11191 F:      include/linux/libata.h
11192
11193 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11194 M:      Vishal Verma <vishal.l.verma@intel.com>
11195 M:      Dan Williams <dan.j.williams@intel.com>
11196 M:      Dave Jiang <dave.jiang@intel.com>
11197 L:      nvdimm@lists.linux.dev
11198 S:      Supported
11199 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11200 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11201 F:      drivers/nvdimm/btt*
11202
11203 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11204 M:      Dan Williams <dan.j.williams@intel.com>
11205 M:      Vishal Verma <vishal.l.verma@intel.com>
11206 M:      Dave Jiang <dave.jiang@intel.com>
11207 L:      nvdimm@lists.linux.dev
11208 S:      Supported
11209 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11210 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11211 F:      drivers/nvdimm/pmem*
11212
11213 LIBNVDIMM: DEVICETREE BINDINGS
11214 M:      Oliver O'Halloran <oohall@gmail.com>
11215 L:      nvdimm@lists.linux.dev
11216 S:      Supported
11217 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11218 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11219 F:      drivers/nvdimm/of_pmem.c
11220
11221 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11222 M:      Dan Williams <dan.j.williams@intel.com>
11223 M:      Vishal Verma <vishal.l.verma@intel.com>
11224 M:      Dave Jiang <dave.jiang@intel.com>
11225 M:      Ira Weiny <ira.weiny@intel.com>
11226 L:      nvdimm@lists.linux.dev
11227 S:      Supported
11228 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11229 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11231 F:      drivers/acpi/nfit/*
11232 F:      drivers/nvdimm/*
11233 F:      include/linux/libnvdimm.h
11234 F:      include/linux/nd.h
11235 F:      include/uapi/linux/ndctl.h
11236 F:      tools/testing/nvdimm/
11237
11238 LICENSES and SPDX stuff
11239 M:      Thomas Gleixner <tglx@linutronix.de>
11240 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11241 L:      linux-spdx@vger.kernel.org
11242 S:      Maintained
11243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11244 F:      COPYING
11245 F:      Documentation/process/license-rules.rst
11246 F:      LICENSES/
11247 F:      scripts/spdxcheck-test.sh
11248 F:      scripts/spdxcheck.py
11249
11250 LINEAR RANGES HELPERS
11251 M:      Mark Brown <broonie@kernel.org>
11252 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11253 F:      lib/linear_ranges.c
11254 F:      lib/test_linear_ranges.c
11255 F:      include/linux/linear_range.h
11256
11257 LINUX FOR POWER MACINTOSH
11258 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11259 L:      linuxppc-dev@lists.ozlabs.org
11260 S:      Odd Fixes
11261 F:      arch/powerpc/platforms/powermac/
11262 F:      drivers/macintosh/
11263
11264 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11265 M:      Michael Ellerman <mpe@ellerman.id.au>
11266 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11267 R:      Paul Mackerras <paulus@samba.org>
11268 L:      linuxppc-dev@lists.ozlabs.org
11269 S:      Supported
11270 W:      https://github.com/linuxppc/wiki/wiki
11271 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11273 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11274 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11275 F:      Documentation/devicetree/bindings/powerpc/
11276 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11277 F:      Documentation/powerpc/
11278 F:      arch/powerpc/
11279 F:      drivers/*/*/*pasemi*
11280 F:      drivers/*/*pasemi*
11281 F:      drivers/char/tpm/tpm_ibmvtpm*
11282 F:      drivers/crypto/nx/
11283 F:      drivers/crypto/vmx/
11284 F:      drivers/i2c/busses/i2c-opal.c
11285 F:      drivers/net/ethernet/ibm/ibmveth.*
11286 F:      drivers/net/ethernet/ibm/ibmvnic.*
11287 F:      drivers/pci/hotplug/pnv_php.c
11288 F:      drivers/pci/hotplug/rpa*
11289 F:      drivers/rtc/rtc-opal.c
11290 F:      drivers/scsi/ibmvscsi/
11291 F:      drivers/tty/hvc/hvc_opal.c
11292 F:      drivers/watchdog/wdrtas.c
11293 F:      tools/testing/selftests/powerpc
11294 N:      /pmac
11295 N:      powermac
11296 N:      powernv
11297 N:      [^a-z0-9]ps3
11298 N:      pseries
11299
11300 LINUX FOR POWERPC EMBEDDED MPC5XXX
11301 M:      Anatolij Gustschin <agust@denx.de>
11302 L:      linuxppc-dev@lists.ozlabs.org
11303 S:      Odd Fixes
11304 F:      arch/powerpc/platforms/512x/
11305 F:      arch/powerpc/platforms/52xx/
11306
11307 LINUX FOR POWERPC EMBEDDED PPC4XX
11308 L:      linuxppc-dev@lists.ozlabs.org
11309 S:      Orphan
11310 F:      arch/powerpc/platforms/40x/
11311 F:      arch/powerpc/platforms/44x/
11312
11313 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11314 M:      Scott Wood <oss@buserror.net>
11315 L:      linuxppc-dev@lists.ozlabs.org
11316 S:      Odd fixes
11317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11318 F:      Documentation/devicetree/bindings/powerpc/fsl/
11319 F:      arch/powerpc/platforms/83xx/
11320 F:      arch/powerpc/platforms/85xx/
11321
11322 LINUX FOR POWERPC EMBEDDED PPC8XX
11323 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11324 L:      linuxppc-dev@lists.ozlabs.org
11325 S:      Maintained
11326 F:      arch/powerpc/platforms/8xx/
11327
11328 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11329 M:      Kees Cook <keescook@chromium.org>
11330 S:      Maintained
11331 F:      drivers/misc/lkdtm/*
11332 F:      tools/testing/selftests/lkdtm/*
11333
11334 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11335 M:      Alan Stern <stern@rowland.harvard.edu>
11336 M:      Andrea Parri <parri.andrea@gmail.com>
11337 M:      Will Deacon <will@kernel.org>
11338 M:      Peter Zijlstra <peterz@infradead.org>
11339 M:      Boqun Feng <boqun.feng@gmail.com>
11340 M:      Nicholas Piggin <npiggin@gmail.com>
11341 M:      David Howells <dhowells@redhat.com>
11342 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11343 M:      Luc Maranget <luc.maranget@inria.fr>
11344 M:      "Paul E. McKenney" <paulmck@kernel.org>
11345 R:      Akira Yokosawa <akiyks@gmail.com>
11346 R:      Daniel Lustig <dlustig@nvidia.com>
11347 R:      Joel Fernandes <joel@joelfernandes.org>
11348 L:      linux-kernel@vger.kernel.org
11349 L:      linux-arch@vger.kernel.org
11350 S:      Supported
11351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11352 F:      Documentation/atomic_bitops.txt
11353 F:      Documentation/atomic_t.txt
11354 F:      Documentation/core-api/refcount-vs-atomic.rst
11355 F:      Documentation/litmus-tests/
11356 F:      Documentation/memory-barriers.txt
11357 F:      tools/memory-model/
11358
11359 LIS3LV02D ACCELEROMETER DRIVER
11360 M:      Eric Piel <eric.piel@tremplin-utc.net>
11361 S:      Maintained
11362 F:      Documentation/misc-devices/lis3lv02d.rst
11363 F:      drivers/misc/lis3lv02d/
11364 F:      drivers/platform/x86/hp_accel.c
11365
11366 LIST KUNIT TEST
11367 M:      David Gow <davidgow@google.com>
11368 L:      linux-kselftest@vger.kernel.org
11369 L:      kunit-dev@googlegroups.com
11370 S:      Maintained
11371 F:      lib/list-test.c
11372
11373 LITEX PLATFORM
11374 M:      Karol Gugala <kgugala@antmicro.com>
11375 M:      Mateusz Holenko <mholenko@antmicro.com>
11376 M:      Gabriel Somlo <gsomlo@gmail.com>
11377 M:      Joel Stanley <joel@jms.id.au>
11378 S:      Maintained
11379 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11380 F:      arch/openrisc/boot/dts/or1klitex.dts
11381 F:      include/linux/litex.h
11382 F:      drivers/tty/serial/liteuart.c
11383 F:      drivers/soc/litex/*
11384 F:      drivers/net/ethernet/litex/*
11385 F:      drivers/mmc/host/litex_mmc.c
11386 N:      litex
11387
11388 LIVE PATCHING
11389 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11390 M:      Jiri Kosina <jikos@kernel.org>
11391 M:      Miroslav Benes <mbenes@suse.cz>
11392 M:      Petr Mladek <pmladek@suse.com>
11393 R:      Joe Lawrence <joe.lawrence@redhat.com>
11394 L:      live-patching@vger.kernel.org
11395 S:      Maintained
11396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11397 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11398 F:      Documentation/livepatch/
11399 F:      arch/powerpc/include/asm/livepatch.h
11400 F:      arch/s390/include/asm/livepatch.h
11401 F:      arch/x86/include/asm/livepatch.h
11402 F:      include/linux/livepatch.h
11403 F:      kernel/livepatch/
11404 F:      lib/livepatch/
11405 F:      samples/livepatch/
11406 F:      tools/testing/selftests/livepatch/
11407
11408 LLC (802.2)
11409 L:      netdev@vger.kernel.org
11410 S:      Odd fixes
11411 F:      include/linux/llc.h
11412 F:      include/net/llc*
11413 F:      include/uapi/linux/llc.h
11414 F:      net/llc/
11415
11416 LM73 HARDWARE MONITOR DRIVER
11417 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11418 L:      linux-hwmon@vger.kernel.org
11419 S:      Maintained
11420 F:      drivers/hwmon/lm73.c
11421
11422 LM78 HARDWARE MONITOR DRIVER
11423 M:      Jean Delvare <jdelvare@suse.com>
11424 L:      linux-hwmon@vger.kernel.org
11425 S:      Maintained
11426 F:      Documentation/hwmon/lm78.rst
11427 F:      drivers/hwmon/lm78.c
11428
11429 LM83 HARDWARE MONITOR DRIVER
11430 M:      Jean Delvare <jdelvare@suse.com>
11431 L:      linux-hwmon@vger.kernel.org
11432 S:      Maintained
11433 F:      Documentation/hwmon/lm83.rst
11434 F:      drivers/hwmon/lm83.c
11435
11436 LM90 HARDWARE MONITOR DRIVER
11437 M:      Jean Delvare <jdelvare@suse.com>
11438 L:      linux-hwmon@vger.kernel.org
11439 S:      Maintained
11440 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11441 F:      Documentation/hwmon/lm90.rst
11442 F:      drivers/hwmon/lm90.c
11443 F:      include/dt-bindings/thermal/lm90.h
11444
11445 LM95234 HARDWARE MONITOR DRIVER
11446 M:      Guenter Roeck <linux@roeck-us.net>
11447 L:      linux-hwmon@vger.kernel.org
11448 S:      Maintained
11449 F:      Documentation/hwmon/lm95234.rst
11450 F:      drivers/hwmon/lm95234.c
11451
11452 LME2510 MEDIA DRIVER
11453 M:      Malcolm Priestley <tvboxspy@gmail.com>
11454 L:      linux-media@vger.kernel.org
11455 S:      Maintained
11456 W:      https://linuxtv.org
11457 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11458 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11459
11460 LOADPIN SECURITY MODULE
11461 M:      Kees Cook <keescook@chromium.org>
11462 S:      Supported
11463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11464 F:      Documentation/admin-guide/LSM/LoadPin.rst
11465 F:      security/loadpin/
11466
11467 LOCKING PRIMITIVES
11468 M:      Peter Zijlstra <peterz@infradead.org>
11469 M:      Ingo Molnar <mingo@redhat.com>
11470 M:      Will Deacon <will@kernel.org>
11471 R:      Waiman Long <longman@redhat.com>
11472 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11473 L:      linux-kernel@vger.kernel.org
11474 S:      Maintained
11475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11476 F:      Documentation/locking/
11477 F:      arch/*/include/asm/spinlock*.h
11478 F:      include/linux/lockdep.h
11479 F:      include/linux/mutex*.h
11480 F:      include/linux/rwlock*.h
11481 F:      include/linux/rwsem*.h
11482 F:      include/linux/seqlock.h
11483 F:      include/linux/spinlock*.h
11484 F:      kernel/locking/
11485 F:      lib/locking*.[ch]
11486 X:      kernel/locking/locktorture.c
11487
11488 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11489 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11490 L:      linux-ntfs-dev@lists.sourceforge.net
11491 S:      Maintained
11492 W:      http://www.linux-ntfs.org/content/view/19/37/
11493 F:      Documentation/admin-guide/ldm.rst
11494 F:      block/partitions/ldm.*
11495
11496 LOGITECH HID GAMING KEYBOARDS
11497 M:      Hans de Goede <hdegoede@redhat.com>
11498 L:      linux-input@vger.kernel.org
11499 S:      Maintained
11500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11501 F:      drivers/hid/hid-lg-g15.c
11502
11503 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11504 M:      Adrien Grassein <adrien.grassein@gmail.com>
11505 S:      Maintained
11506 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11507 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11508
11509 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11510 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11511 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11512 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11513 L:      MPT-FusionLinux.pdl@broadcom.com
11514 L:      linux-scsi@vger.kernel.org
11515 S:      Supported
11516 W:      http://www.avagotech.com/support/
11517 F:      drivers/message/fusion/
11518 F:      drivers/scsi/mpt3sas/
11519
11520 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11521 M:      Matthew Wilcox <willy@infradead.org>
11522 L:      linux-scsi@vger.kernel.org
11523 S:      Maintained
11524 F:      drivers/scsi/sym53c8xx_2/
11525
11526 LTC1660 DAC DRIVER
11527 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11528 L:      linux-iio@vger.kernel.org
11529 S:      Maintained
11530 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11531 F:      drivers/iio/dac/ltc1660.c
11532
11533 LTC2688 IIO DAC DRIVER
11534 M:      Nuno Sá <nuno.sa@analog.com>
11535 L:      linux-iio@vger.kernel.org
11536 S:      Supported
11537 W:      http://ez.analog.com/community/linux-device-drivers
11538 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11539 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11540 F:      drivers/iio/dac/ltc2688.c
11541
11542 LTC2947 HARDWARE MONITOR DRIVER
11543 M:      Nuno Sá <nuno.sa@analog.com>
11544 L:      linux-hwmon@vger.kernel.org
11545 S:      Supported
11546 W:      https://ez.analog.com/linux-software-drivers
11547 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11548 F:      drivers/hwmon/ltc2947-core.c
11549 F:      drivers/hwmon/ltc2947-i2c.c
11550 F:      drivers/hwmon/ltc2947-spi.c
11551 F:      drivers/hwmon/ltc2947.h
11552
11553 LTC2983 IIO TEMPERATURE DRIVER
11554 M:      Nuno Sá <nuno.sa@analog.com>
11555 L:      linux-iio@vger.kernel.org
11556 S:      Supported
11557 W:      https://ez.analog.com/linux-software-drivers
11558 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11559 F:      drivers/iio/temperature/ltc2983.c
11560
11561 LTC4261 HARDWARE MONITOR DRIVER
11562 M:      Guenter Roeck <linux@roeck-us.net>
11563 L:      linux-hwmon@vger.kernel.org
11564 S:      Maintained
11565 F:      Documentation/hwmon/ltc4261.rst
11566 F:      drivers/hwmon/ltc4261.c
11567
11568 LTC4306 I2C MULTIPLEXER DRIVER
11569 M:      Michael Hennerich <michael.hennerich@analog.com>
11570 L:      linux-i2c@vger.kernel.org
11571 S:      Supported
11572 W:      https://ez.analog.com/linux-software-drivers
11573 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11574 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11575
11576 LTP (Linux Test Project)
11577 M:      Mike Frysinger <vapier@gentoo.org>
11578 M:      Cyril Hrubis <chrubis@suse.cz>
11579 M:      Wanlong Gao <wanlong.gao@gmail.com>
11580 M:      Jan Stancek <jstancek@redhat.com>
11581 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11582 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11583 L:      ltp@lists.linux.it (subscribers-only)
11584 S:      Maintained
11585 W:      http://linux-test-project.github.io/
11586 T:      git git://github.com/linux-test-project/ltp.git
11587
11588 LYNX 28G SERDES PHY DRIVER
11589 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11590 L:      netdev@vger.kernel.org
11591 S:      Supported
11592 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11593 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11594
11595 LYNX PCS MODULE
11596 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11597 L:      netdev@vger.kernel.org
11598 S:      Supported
11599 F:      drivers/net/pcs/pcs-lynx.c
11600 F:      include/linux/pcs-lynx.h
11601
11602 M68K ARCHITECTURE
11603 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11604 L:      linux-m68k@lists.linux-m68k.org
11605 S:      Maintained
11606 W:      http://www.linux-m68k.org/
11607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11608 F:      arch/m68k/
11609 F:      drivers/zorro/
11610
11611 M68K ON APPLE MACINTOSH
11612 M:      Joshua Thompson <funaho@jurai.org>
11613 L:      linux-m68k@lists.linux-m68k.org
11614 S:      Maintained
11615 W:      http://www.mac.linux-m68k.org/
11616 F:      arch/m68k/mac/
11617 F:      drivers/macintosh/adb-iop.c
11618 F:      drivers/macintosh/via-macii.c
11619
11620 M68K ON HP9000/300
11621 M:      Philip Blundell <philb@gnu.org>
11622 S:      Maintained
11623 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11624 F:      arch/m68k/hp300/
11625
11626 M88DS3103 MEDIA DRIVER
11627 M:      Antti Palosaari <crope@iki.fi>
11628 L:      linux-media@vger.kernel.org
11629 S:      Maintained
11630 W:      https://linuxtv.org
11631 W:      http://palosaari.fi/linux/
11632 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11633 T:      git git://linuxtv.org/anttip/media_tree.git
11634 F:      drivers/media/dvb-frontends/m88ds3103*
11635
11636 M88RS2000 MEDIA DRIVER
11637 M:      Malcolm Priestley <tvboxspy@gmail.com>
11638 L:      linux-media@vger.kernel.org
11639 S:      Maintained
11640 W:      https://linuxtv.org
11641 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11642 F:      drivers/media/dvb-frontends/m88rs2000*
11643
11644 MA901 MASTERKIT USB FM RADIO DRIVER
11645 M:      Alexey Klimov <klimov.linux@gmail.com>
11646 L:      linux-media@vger.kernel.org
11647 S:      Maintained
11648 T:      git git://linuxtv.org/media_tree.git
11649 F:      drivers/media/radio/radio-ma901.c
11650
11651 MAC80211
11652 M:      Johannes Berg <johannes@sipsolutions.net>
11653 L:      linux-wireless@vger.kernel.org
11654 S:      Maintained
11655 W:      https://wireless.wiki.kernel.org/
11656 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11659 F:      Documentation/networking/mac80211-injection.rst
11660 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11661 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11662 F:      include/net/mac80211.h
11663 F:      net/mac80211/
11664
11665 MAILBOX API
11666 M:      Jassi Brar <jassisinghbrar@gmail.com>
11667 L:      linux-kernel@vger.kernel.org
11668 S:      Maintained
11669 F:      drivers/mailbox/
11670 F:      include/linux/mailbox_client.h
11671 F:      include/linux/mailbox_controller.h
11672 F:      include/dt-bindings/mailbox/
11673 F:      Documentation/devicetree/bindings/mailbox/
11674
11675 MAILBOX ARM MHUv2
11676 M:      Viresh Kumar <viresh.kumar@linaro.org>
11677 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11678 L:      linux-kernel@vger.kernel.org
11679 S:      Maintained
11680 F:      drivers/mailbox/arm_mhuv2.c
11681 F:      include/linux/mailbox/arm_mhuv2_message.h
11682 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11683
11684 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11685 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11686 M:      Matt Johnston <matt@codeconstruct.com.au>
11687 L:      netdev@vger.kernel.org
11688 S:      Maintained
11689 F:      Documentation/networking/mctp.rst
11690 F:      drivers/net/mctp/
11691 F:      include/net/mctp.h
11692 F:      include/net/mctpdevice.h
11693 F:      include/net/netns/mctp.h
11694 F:      net/mctp/
11695
11696 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11697 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11698 L:      linux-man@vger.kernel.org
11699 S:      Maintained
11700 W:      http://www.kernel.org/doc/man-pages
11701
11702 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11703 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11704 L:      linux-mips@vger.kernel.org
11705 S:      Maintained
11706 F:      arch/mips/boot/dts/img/pistachio*
11707
11708 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11709 M:      Andrew Lunn <andrew@lunn.ch>
11710 M:      Vivien Didelot <vivien.didelot@gmail.com>
11711 L:      netdev@vger.kernel.org
11712 S:      Maintained
11713 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11714 F:      Documentation/networking/devlink/mv88e6xxx.rst
11715 F:      drivers/net/dsa/mv88e6xxx/
11716 F:      include/linux/dsa/mv88e6xxx.h
11717 F:      include/linux/platform_data/mv88e6xxx.h
11718
11719 MARVELL ARMADA 3700 PHY DRIVERS
11720 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11721 S:      Maintained
11722 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11723 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11724 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11725 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11726
11727 MARVELL ARMADA 3700 SERIAL DRIVER
11728 M:      Pali Rohár <pali@kernel.org>
11729 S:      Maintained
11730 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
11731 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
11732 F:      drivers/tty/serial/mvebu-uart.c
11733
11734 MARVELL ARMADA DRM SUPPORT
11735 M:      Russell King <linux@armlinux.org.uk>
11736 S:      Maintained
11737 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11738 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11739 F:      Documentation/devicetree/bindings/display/armada/
11740 F:      drivers/gpu/drm/armada/
11741 F:      include/uapi/drm/armada_drm.h
11742
11743 MARVELL CRYPTO DRIVER
11744 M:      Boris Brezillon <bbrezillon@kernel.org>
11745 M:      Arnaud Ebalard <arno@natisbad.org>
11746 M:      Srujana Challa <schalla@marvell.com>
11747 L:      linux-crypto@vger.kernel.org
11748 S:      Maintained
11749 F:      drivers/crypto/marvell/
11750 F:      include/linux/soc/marvell/octeontx2/
11751
11752 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11753 M:      Mirko Lindner <mlindner@marvell.com>
11754 M:      Stephen Hemminger <stephen@networkplumber.org>
11755 L:      netdev@vger.kernel.org
11756 S:      Maintained
11757 F:      drivers/net/ethernet/marvell/sk*
11758
11759 MARVELL LIBERTAS WIRELESS DRIVER
11760 L:      libertas-dev@lists.infradead.org
11761 S:      Orphan
11762 F:      drivers/net/wireless/marvell/libertas/
11763
11764 MARVELL MACCHIATOBIN SUPPORT
11765 M:      Russell King <linux@armlinux.org.uk>
11766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11767 S:      Maintained
11768 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11769
11770 MARVELL MV643XX ETHERNET DRIVER
11771 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11772 L:      netdev@vger.kernel.org
11773 S:      Maintained
11774 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11775 F:      include/linux/mv643xx.h
11776
11777 MARVELL MV88X3310 PHY DRIVER
11778 M:      Russell King <linux@armlinux.org.uk>
11779 M:      Marek Behún <kabel@kernel.org>
11780 L:      netdev@vger.kernel.org
11781 S:      Maintained
11782 F:      drivers/net/phy/marvell10g.c
11783
11784 MARVELL MVEBU THERMAL DRIVER
11785 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11786 S:      Maintained
11787 F:      drivers/thermal/armada_thermal.c
11788
11789 MARVELL MVNETA ETHERNET DRIVER
11790 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11791 L:      netdev@vger.kernel.org
11792 S:      Maintained
11793 F:      drivers/net/ethernet/marvell/mvneta.*
11794
11795 MARVELL MVPP2 ETHERNET DRIVER
11796 M:      Marcin Wojtas <mw@semihalf.com>
11797 M:      Russell King <linux@armlinux.org.uk>
11798 L:      netdev@vger.kernel.org
11799 S:      Maintained
11800 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11801 F:      drivers/net/ethernet/marvell/mvpp2/
11802
11803 MARVELL MWIFIEX WIRELESS DRIVER
11804 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11805 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11806 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11807 M:      Xinming Hu <huxinming820@gmail.com>
11808 L:      linux-wireless@vger.kernel.org
11809 S:      Maintained
11810 F:      drivers/net/wireless/marvell/mwifiex/
11811
11812 MARVELL MWL8K WIRELESS DRIVER
11813 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11814 L:      linux-wireless@vger.kernel.org
11815 S:      Odd Fixes
11816 F:      drivers/net/wireless/marvell/mwl8k.c
11817
11818 MARVELL NAND CONTROLLER DRIVER
11819 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11820 L:      linux-mtd@lists.infradead.org
11821 S:      Maintained
11822 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11823 F:      drivers/mtd/nand/raw/marvell_nand.c
11824
11825 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11826 M:      Sunil Goutham <sgoutham@marvell.com>
11827 M:      Geetha sowjanya <gakula@marvell.com>
11828 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11829 M:      hariprasad <hkelam@marvell.com>
11830 L:      netdev@vger.kernel.org
11831 S:      Supported
11832 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11833 F:      include/linux/soc/marvell/octeontx2/
11834
11835 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11836 M:      Sunil Goutham <sgoutham@marvell.com>
11837 M:      Linu Cherian <lcherian@marvell.com>
11838 M:      Geetha sowjanya <gakula@marvell.com>
11839 M:      Jerin Jacob <jerinj@marvell.com>
11840 M:      hariprasad <hkelam@marvell.com>
11841 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11842 L:      netdev@vger.kernel.org
11843 S:      Supported
11844 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11845 F:      drivers/net/ethernet/marvell/octeontx2/af/
11846
11847 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11848 M:      Taras Chornyi <tchornyi@marvell.com>
11849 S:      Supported
11850 W:      https://github.com/Marvell-switching/switchdev-prestera
11851 F:      drivers/net/ethernet/marvell/prestera/
11852
11853 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11854 M:      Nicolas Pitre <nico@fluxnic.net>
11855 S:      Odd Fixes
11856 F:      drivers/mmc/host/mvsdio.*
11857
11858 MARVELL USB MDIO CONTROLLER DRIVER
11859 M:      Tobias Waldekranz <tobias@waldekranz.com>
11860 L:      netdev@vger.kernel.org
11861 S:      Maintained
11862 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11863 F:      drivers/net/mdio/mdio-mvusb.c
11864
11865 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11866 M:      Hu Ziji <huziji@marvell.com>
11867 L:      linux-mmc@vger.kernel.org
11868 S:      Supported
11869 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
11870 F:      drivers/mmc/host/sdhci-xenon*
11871
11872 MATROX FRAMEBUFFER DRIVER
11873 L:      linux-fbdev@vger.kernel.org
11874 S:      Orphan
11875 F:      drivers/video/fbdev/matrox/matroxfb_*
11876 F:      include/uapi/linux/matroxfb.h
11877
11878 MAX15301 DRIVER
11879 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11880 L:      linux-hwmon@vger.kernel.org
11881 S:      Maintained
11882 F:      Documentation/hwmon/max15301.rst
11883 F:      drivers/hwmon/pmbus/max15301.c
11884
11885 MAX16065 HARDWARE MONITOR DRIVER
11886 M:      Guenter Roeck <linux@roeck-us.net>
11887 L:      linux-hwmon@vger.kernel.org
11888 S:      Maintained
11889 F:      Documentation/hwmon/max16065.rst
11890 F:      drivers/hwmon/max16065.c
11891
11892 MAX2175 SDR TUNER DRIVER
11893 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11894 L:      linux-media@vger.kernel.org
11895 S:      Maintained
11896 T:      git git://linuxtv.org/media_tree.git
11897 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11898 F:      Documentation/userspace-api/media/drivers/max2175.rst
11899 F:      drivers/media/i2c/max2175*
11900 F:      include/uapi/linux/max2175.h
11901
11902 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11903 L:      linux-hwmon@vger.kernel.org
11904 S:      Orphan
11905 F:      Documentation/hwmon/max6650.rst
11906 F:      drivers/hwmon/max6650.c
11907
11908 MAX6697 HARDWARE MONITOR DRIVER
11909 M:      Guenter Roeck <linux@roeck-us.net>
11910 L:      linux-hwmon@vger.kernel.org
11911 S:      Maintained
11912 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11913 F:      Documentation/hwmon/max6697.rst
11914 F:      drivers/hwmon/max6697.c
11915 F:      include/linux/platform_data/max6697.h
11916
11917 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11918 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11919 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11920 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11921 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11922 L:      linux-media@vger.kernel.org
11923 S:      Maintained
11924 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11925 F:      drivers/media/i2c/max9286.c
11926
11927 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
11928 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11929 L:      linux-media@vger.kernel.org
11930 S:      Maintained
11931 F:      drivers/staging/media/max96712/max96712.c
11932
11933 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11934 M:      Peter Rosin <peda@axentia.se>
11935 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11936 S:      Maintained
11937 F:      Documentation/devicetree/bindings/sound/max9860.txt
11938 F:      sound/soc/codecs/max9860.*
11939
11940 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11941 M:      Andreas Klinger <ak@it-klinger.de>
11942 L:      linux-iio@vger.kernel.org
11943 S:      Maintained
11944 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11945 F:      drivers/iio/proximity/mb1232.c
11946
11947 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11948 R:      Iskren Chernev <iskren.chernev@gmail.com>
11949 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
11950 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11951 R:      Matheus Castello <matheus@castello.eng.br>
11952 L:      linux-pm@vger.kernel.org
11953 S:      Maintained
11954 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11955 F:      drivers/power/supply/max17040_battery.c
11956
11957 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11958 R:      Hans de Goede <hdegoede@redhat.com>
11959 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
11960 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11961 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11962 R:      Purism Kernel Team <kernel@puri.sm>
11963 L:      linux-pm@vger.kernel.org
11964 S:      Maintained
11965 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11966 F:      drivers/power/supply/max17042_battery.c
11967
11968 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
11969 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11970 L:      linux-kernel@vger.kernel.org
11971 S:      Maintained
11972 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
11973 F:      drivers/regulator/max20086-regulator.c
11974
11975 MAXIM MAX77650 PMIC MFD DRIVER
11976 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11977 L:      linux-kernel@vger.kernel.org
11978 S:      Maintained
11979 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11980 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11981 F:      drivers/gpio/gpio-max77650.c
11982 F:      drivers/input/misc/max77650-onkey.c
11983 F:      drivers/leds/leds-max77650.c
11984 F:      drivers/mfd/max77650.c
11985 F:      drivers/power/supply/max77650-charger.c
11986 F:      drivers/regulator/max77650-regulator.c
11987 F:      include/linux/mfd/max77650.h
11988
11989 MAXIM MAX77714 PMIC MFD DRIVER
11990 M:      Luca Ceresoli <luca@lucaceresoli.net>
11991 S:      Maintained
11992 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
11993 F:      drivers/mfd/max77714.c
11994 F:      include/linux/mfd/max77714.h
11995
11996 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11997 M:      Javier Martinez Canillas <javier@dowhile0.org>
11998 L:      linux-kernel@vger.kernel.org
11999 S:      Supported
12000 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12001 F:      drivers/regulator/max77802-regulator.c
12002 F:      include/dt-bindings/*/*max77802.h
12003
12004 MAXIM MAX77976 BATTERY CHARGER
12005 M:      Luca Ceresoli <luca@lucaceresoli.net>
12006 S:      Supported
12007 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12008 F:      drivers/power/supply/max77976_charger.c
12009
12010 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12011 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12012 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12013 L:      linux-pm@vger.kernel.org
12014 S:      Supported
12015 B:      mailto:linux-samsung-soc@vger.kernel.org
12016 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12017 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12018 F:      drivers/power/supply/max14577_charger.c
12019 F:      drivers/power/supply/max77693_charger.c
12020
12021 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12022 M:      Chanwoo Choi <cw00.choi@samsung.com>
12023 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12024 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12025 L:      linux-kernel@vger.kernel.org
12026 S:      Supported
12027 B:      mailto:linux-samsung-soc@vger.kernel.org
12028 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12029 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12030 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12031 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12032 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12033 F:      Documentation/devicetree/bindings/mfd/max77693.txt
12034 F:      drivers/*/*max77843.c
12035 F:      drivers/*/max14577*.c
12036 F:      drivers/*/max77686*.c
12037 F:      drivers/*/max77693*.c
12038 F:      drivers/clk/clk-max77686.c
12039 F:      drivers/extcon/extcon-max14577.c
12040 F:      drivers/extcon/extcon-max77693.c
12041 F:      drivers/rtc/rtc-max77686.c
12042 F:      include/linux/mfd/max14577*.h
12043 F:      include/linux/mfd/max77686*.h
12044 F:      include/linux/mfd/max77693*.h
12045
12046 MAXIRADIO FM RADIO RECEIVER DRIVER
12047 M:      Hans Verkuil <hverkuil@xs4all.nl>
12048 L:      linux-media@vger.kernel.org
12049 S:      Maintained
12050 W:      https://linuxtv.org
12051 T:      git git://linuxtv.org/media_tree.git
12052 F:      drivers/media/radio/radio-maxiradio*
12053
12054 MAXLINEAR ETHERNET PHY DRIVER
12055 M:      Xu Liang <lxu@maxlinear.com>
12056 L:      netdev@vger.kernel.org
12057 S:      Supported
12058 F:      drivers/net/phy/mxl-gpy.c
12059
12060 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12061 R:      Yasushi SHOJI <yashi@spacecubics.com>
12062 L:      linux-can@vger.kernel.org
12063 S:      Maintained
12064 F:      drivers/net/can/usb/mcba_usb.c
12065
12066 MCAN MMIO DEVICE DRIVER
12067 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12068 L:      linux-can@vger.kernel.org
12069 S:      Maintained
12070 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12071 F:      drivers/net/can/m_can/m_can.c
12072 F:      drivers/net/can/m_can/m_can.h
12073 F:      drivers/net/can/m_can/m_can_platform.c
12074
12075 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12076 M:      Rishi Gupta <gupt21@gmail.com>
12077 L:      linux-i2c@vger.kernel.org
12078 L:      linux-input@vger.kernel.org
12079 S:      Maintained
12080 F:      drivers/hid/hid-mcp2221.c
12081
12082 MCP251XFD SPI-CAN NETWORK DRIVER
12083 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12084 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12085 R:      Thomas Kopp <thomas.kopp@microchip.com>
12086 L:      linux-can@vger.kernel.org
12087 S:      Maintained
12088 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12089 F:      drivers/net/can/spi/mcp251xfd/
12090
12091 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12092 M:      Peter Rosin <peda@axentia.se>
12093 L:      linux-iio@vger.kernel.org
12094 S:      Maintained
12095 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12096 F:      drivers/iio/potentiometer/mcp4018.c
12097 F:      drivers/iio/potentiometer/mcp4531.c
12098
12099 MCR20A IEEE-802.15.4 RADIO DRIVER
12100 M:      Xue Liu <liuxuenetmail@gmail.com>
12101 L:      linux-wpan@vger.kernel.org
12102 S:      Maintained
12103 W:      https://github.com/xueliu/mcr20a-linux
12104 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12105 F:      drivers/net/ieee802154/mcr20a.c
12106 F:      drivers/net/ieee802154/mcr20a.h
12107
12108 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12109 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12110 L:      linux-iio@vger.kernel.org
12111 S:      Maintained
12112 F:      drivers/iio/dac/cio-dac.c
12113
12114 MEDIA CONTROLLER FRAMEWORK
12115 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12116 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12117 L:      linux-media@vger.kernel.org
12118 S:      Supported
12119 W:      https://www.linuxtv.org
12120 T:      git git://linuxtv.org/media_tree.git
12121 F:      drivers/media/mc/
12122 F:      include/media/media-*.h
12123 F:      include/uapi/linux/media.h
12124
12125 MEDIA DRIVER FOR FREESCALE IMX PXP
12126 M:      Philipp Zabel <p.zabel@pengutronix.de>
12127 L:      linux-media@vger.kernel.org
12128 S:      Maintained
12129 T:      git git://linuxtv.org/media_tree.git
12130 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12131
12132 MEDIA DRIVERS FOR ASCOT2E
12133 M:      Sergey Kozlov <serjk@netup.ru>
12134 M:      Abylay Ospan <aospan@netup.ru>
12135 L:      linux-media@vger.kernel.org
12136 S:      Supported
12137 W:      https://linuxtv.org
12138 W:      http://netup.tv/
12139 T:      git git://linuxtv.org/media_tree.git
12140 F:      drivers/media/dvb-frontends/ascot2e*
12141
12142 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12143 M:      Jasmin Jessich <jasmin@anw.at>
12144 L:      linux-media@vger.kernel.org
12145 S:      Maintained
12146 W:      https://linuxtv.org
12147 T:      git git://linuxtv.org/media_tree.git
12148 F:      drivers/media/dvb-frontends/cxd2099*
12149
12150 MEDIA DRIVERS FOR CXD2841ER
12151 M:      Sergey Kozlov <serjk@netup.ru>
12152 M:      Abylay Ospan <aospan@netup.ru>
12153 L:      linux-media@vger.kernel.org
12154 S:      Supported
12155 W:      https://linuxtv.org
12156 W:      http://netup.tv/
12157 T:      git git://linuxtv.org/media_tree.git
12158 F:      drivers/media/dvb-frontends/cxd2841er*
12159
12160 MEDIA DRIVERS FOR CXD2880
12161 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12162 L:      linux-media@vger.kernel.org
12163 S:      Supported
12164 W:      http://linuxtv.org/
12165 T:      git git://linuxtv.org/media_tree.git
12166 F:      drivers/media/dvb-frontends/cxd2880/*
12167 F:      drivers/media/spi/cxd2880*
12168
12169 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12170 L:      linux-media@vger.kernel.org
12171 S:      Orphan
12172 W:      https://linuxtv.org
12173 T:      git git://linuxtv.org/media_tree.git
12174 F:      drivers/media/pci/ddbridge/*
12175
12176 MEDIA DRIVERS FOR FREESCALE IMX
12177 M:      Steve Longerbeam <slongerbeam@gmail.com>
12178 M:      Philipp Zabel <p.zabel@pengutronix.de>
12179 L:      linux-media@vger.kernel.org
12180 S:      Maintained
12181 T:      git git://linuxtv.org/media_tree.git
12182 F:      Documentation/admin-guide/media/imx.rst
12183 F:      Documentation/devicetree/bindings/media/imx.txt
12184 F:      drivers/staging/media/imx/
12185 F:      include/linux/imx-media.h
12186 F:      include/media/imx.h
12187
12188 MEDIA DRIVERS FOR FREESCALE IMX7
12189 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12190 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12191 L:      linux-media@vger.kernel.org
12192 S:      Maintained
12193 T:      git git://linuxtv.org/media_tree.git
12194 F:      Documentation/admin-guide/media/imx7.rst
12195 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12196 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12197 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12198 F:      drivers/staging/media/imx/imx7-media-csi.c
12199
12200 MEDIA DRIVERS FOR HELENE
12201 M:      Abylay Ospan <aospan@netup.ru>
12202 L:      linux-media@vger.kernel.org
12203 S:      Supported
12204 W:      https://linuxtv.org
12205 W:      http://netup.tv/
12206 T:      git git://linuxtv.org/media_tree.git
12207 F:      drivers/media/dvb-frontends/helene*
12208
12209 MEDIA DRIVERS FOR HORUS3A
12210 M:      Sergey Kozlov <serjk@netup.ru>
12211 M:      Abylay Ospan <aospan@netup.ru>
12212 L:      linux-media@vger.kernel.org
12213 S:      Supported
12214 W:      https://linuxtv.org
12215 W:      http://netup.tv/
12216 T:      git git://linuxtv.org/media_tree.git
12217 F:      drivers/media/dvb-frontends/horus3a*
12218
12219 MEDIA DRIVERS FOR LNBH25
12220 M:      Sergey Kozlov <serjk@netup.ru>
12221 M:      Abylay Ospan <aospan@netup.ru>
12222 L:      linux-media@vger.kernel.org
12223 S:      Supported
12224 W:      https://linuxtv.org
12225 W:      http://netup.tv/
12226 T:      git git://linuxtv.org/media_tree.git
12227 F:      drivers/media/dvb-frontends/lnbh25*
12228
12229 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12230 L:      linux-media@vger.kernel.org
12231 S:      Orphan
12232 W:      https://linuxtv.org
12233 T:      git git://linuxtv.org/media_tree.git
12234 F:      drivers/media/dvb-frontends/mxl5xx*
12235
12236 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12237 M:      Sergey Kozlov <serjk@netup.ru>
12238 M:      Abylay Ospan <aospan@netup.ru>
12239 L:      linux-media@vger.kernel.org
12240 S:      Supported
12241 W:      https://linuxtv.org
12242 W:      http://netup.tv/
12243 T:      git git://linuxtv.org/media_tree.git
12244 F:      drivers/media/pci/netup_unidvb/*
12245
12246 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12247 M:      Dmitry Osipenko <digetx@gmail.com>
12248 L:      linux-media@vger.kernel.org
12249 L:      linux-tegra@vger.kernel.org
12250 S:      Maintained
12251 T:      git git://linuxtv.org/media_tree.git
12252 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12253 F:      drivers/media/platform/nvidia/tegra-vde/
12254
12255 MEDIA DRIVERS FOR RENESAS - CEU
12256 M:      Jacopo Mondi <jacopo@jmondi.org>
12257 L:      linux-media@vger.kernel.org
12258 L:      linux-renesas-soc@vger.kernel.org
12259 S:      Supported
12260 T:      git git://linuxtv.org/media_tree.git
12261 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12262 F:      drivers/media/platform/renesas/renesas-ceu.c
12263 F:      include/media/drv-intf/renesas-ceu.h
12264
12265 MEDIA DRIVERS FOR RENESAS - DRIF
12266 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12267 L:      linux-media@vger.kernel.org
12268 L:      linux-renesas-soc@vger.kernel.org
12269 S:      Supported
12270 T:      git git://linuxtv.org/media_tree.git
12271 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12272 F:      drivers/media/platform/renesas/rcar_drif.c
12273
12274 MEDIA DRIVERS FOR RENESAS - FCP
12275 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12276 L:      linux-media@vger.kernel.org
12277 L:      linux-renesas-soc@vger.kernel.org
12278 S:      Supported
12279 T:      git git://linuxtv.org/media_tree.git
12280 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12281 F:      drivers/media/platform/renesas/rcar-fcp.c
12282 F:      include/media/rcar-fcp.h
12283
12284 MEDIA DRIVERS FOR RENESAS - FDP1
12285 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12286 L:      linux-media@vger.kernel.org
12287 L:      linux-renesas-soc@vger.kernel.org
12288 S:      Supported
12289 T:      git git://linuxtv.org/media_tree.git
12290 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12291 F:      drivers/media/platform/renesas/rcar_fdp1.c
12292
12293 MEDIA DRIVERS FOR RENESAS - VIN
12294 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12295 L:      linux-media@vger.kernel.org
12296 L:      linux-renesas-soc@vger.kernel.org
12297 S:      Supported
12298 T:      git git://linuxtv.org/media_tree.git
12299 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12300 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12301 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12302 F:      drivers/media/platform/renesas/rcar-isp.c
12303 F:      drivers/media/platform/renesas/rcar-vin/
12304
12305 MEDIA DRIVERS FOR RENESAS - VSP1
12306 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12307 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12308 L:      linux-media@vger.kernel.org
12309 L:      linux-renesas-soc@vger.kernel.org
12310 S:      Supported
12311 T:      git git://linuxtv.org/media_tree.git
12312 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12313 F:      drivers/media/platform/renesas/vsp1/
12314
12315 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12316 L:      linux-media@vger.kernel.org
12317 S:      Orphan
12318 W:      https://linuxtv.org
12319 T:      git git://linuxtv.org/media_tree.git
12320 F:      drivers/media/dvb-frontends/stv0910*
12321
12322 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12323 L:      linux-media@vger.kernel.org
12324 S:      Orphan
12325 W:      https://linuxtv.org
12326 T:      git git://linuxtv.org/media_tree.git
12327 F:      drivers/media/dvb-frontends/stv6111*
12328
12329 MEDIA DRIVERS FOR STM32 - DCMI
12330 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12331 L:      linux-media@vger.kernel.org
12332 S:      Supported
12333 T:      git git://linuxtv.org/media_tree.git
12334 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12335 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12336
12337 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12338 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12339 L:      linux-media@vger.kernel.org
12340 S:      Maintained
12341 W:      https://linuxtv.org
12342 Q:      http://patchwork.kernel.org/project/linux-media/list/
12343 T:      git git://linuxtv.org/media_tree.git
12344 F:      Documentation/admin-guide/media/
12345 F:      Documentation/devicetree/bindings/media/
12346 F:      Documentation/driver-api/media/
12347 F:      Documentation/userspace-api/media/
12348 F:      drivers/media/
12349 F:      drivers/staging/media/
12350 F:      include/linux/platform_data/media/
12351 F:      include/media/
12352 F:      include/uapi/linux/dvb/
12353 F:      include/uapi/linux/ivtv*
12354 F:      include/uapi/linux/media.h
12355 F:      include/uapi/linux/meye.h
12356 F:      include/uapi/linux/uvcvideo.h
12357 F:      include/uapi/linux/v4l2-*
12358 F:      include/uapi/linux/videodev2.h
12359
12360 MEDIATEK BLUETOOTH DRIVER
12361 M:      Sean Wang <sean.wang@mediatek.com>
12362 L:      linux-bluetooth@vger.kernel.org
12363 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12364 S:      Maintained
12365 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12366 F:      drivers/bluetooth/btmtkuart.c
12367
12368 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12369 M:      Sean Wang <sean.wang@mediatek.com>
12370 L:      linux-pm@vger.kernel.org
12371 S:      Maintained
12372 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12373 F:      drivers/power/reset/mt6323-poweroff.c
12374
12375 MEDIATEK CIR DRIVER
12376 M:      Sean Wang <sean.wang@mediatek.com>
12377 S:      Maintained
12378 F:      drivers/media/rc/mtk-cir.c
12379
12380 MEDIATEK DMA DRIVER
12381 M:      Sean Wang <sean.wang@mediatek.com>
12382 L:      dmaengine@vger.kernel.org
12383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12384 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12385 S:      Maintained
12386 F:      Documentation/devicetree/bindings/dma/mtk-*
12387 F:      drivers/dma/mediatek/
12388
12389 MEDIATEK ETHERNET DRIVER
12390 M:      Felix Fietkau <nbd@nbd.name>
12391 M:      John Crispin <john@phrozen.org>
12392 M:      Sean Wang <sean.wang@mediatek.com>
12393 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12394 L:      netdev@vger.kernel.org
12395 S:      Maintained
12396 F:      drivers/net/ethernet/mediatek/
12397
12398 MEDIATEK I2C CONTROLLER DRIVER
12399 M:      Qii Wang <qii.wang@mediatek.com>
12400 L:      linux-i2c@vger.kernel.org
12401 S:      Maintained
12402 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
12403 F:      drivers/i2c/busses/i2c-mt65xx.c
12404
12405 MEDIATEK IOMMU DRIVER
12406 M:      Yong Wu <yong.wu@mediatek.com>
12407 L:      iommu@lists.linux-foundation.org
12408 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12409 S:      Supported
12410 F:      Documentation/devicetree/bindings/iommu/mediatek*
12411 F:      drivers/iommu/mtk_iommu*
12412 F:      include/dt-bindings/memory/mt*-port.h
12413
12414 MEDIATEK JPEG DRIVER
12415 M:      Bin Liu <bin.liu@mediatek.com>
12416 S:      Supported
12417 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12418 F:      drivers/media/platform/mediatek/jpeg/
12419
12420 MEDIATEK MDP DRIVER
12421 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12422 M:      Houlong Wei <houlong.wei@mediatek.com>
12423 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12424 S:      Supported
12425 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12426 F:      drivers/media/platform/mediatek/mdp/
12427 F:      drivers/media/platform/mediatek/vpu/
12428
12429 MEDIATEK MEDIA DRIVER
12430 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12431 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12432 S:      Supported
12433 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
12434 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12435 F:      drivers/media/platform/mediatek/vcodec/
12436 F:      drivers/media/platform/mediatek/vpu/
12437
12438 MEDIATEK MMC/SD/SDIO DRIVER
12439 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12440 S:      Maintained
12441 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12442 F:      drivers/mmc/host/mtk-sd.c
12443
12444 MEDIATEK MT76 WIRELESS LAN DRIVER
12445 M:      Felix Fietkau <nbd@nbd.name>
12446 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12447 M:      Ryder Lee <ryder.lee@mediatek.com>
12448 R:      Shayne Chen <shayne.chen@mediatek.com>
12449 R:      Sean Wang <sean.wang@mediatek.com>
12450 L:      linux-wireless@vger.kernel.org
12451 S:      Maintained
12452 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12453 F:      drivers/net/wireless/mediatek/mt76/
12454
12455 MEDIATEK MT7601U WIRELESS LAN DRIVER
12456 M:      Jakub Kicinski <kubakici@wp.pl>
12457 L:      linux-wireless@vger.kernel.org
12458 S:      Maintained
12459 F:      drivers/net/wireless/mediatek/mt7601u/
12460
12461 MEDIATEK MT7621 CLOCK DRIVER
12462 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12463 S:      Maintained
12464 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12465 F:      drivers/clk/ralink/clk-mt7621.c
12466
12467 MEDIATEK MT7621/28/88 I2C DRIVER
12468 M:      Stefan Roese <sr@denx.de>
12469 L:      linux-i2c@vger.kernel.org
12470 S:      Maintained
12471 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12472 F:      drivers/i2c/busses/i2c-mt7621.c
12473
12474 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12475 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12476 S:      Maintained
12477 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12478 F:      drivers/pci/controller/pcie-mt7621.c
12479
12480 MEDIATEK MT7621 PHY PCI DRIVER
12481 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12482 S:      Maintained
12483 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12484 F:      drivers/phy/ralink/phy-mt7621-pci.c
12485
12486 MEDIATEK NAND CONTROLLER DRIVER
12487 L:      linux-mtd@lists.infradead.org
12488 S:      Orphan
12489 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12490 F:      drivers/mtd/nand/raw/mtk_*
12491
12492 MEDIATEK PMIC LED DRIVER
12493 M:      Sean Wang <sean.wang@mediatek.com>
12494 S:      Maintained
12495 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12496 F:      drivers/leds/leds-mt6323.c
12497
12498 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12499 M:      Sean Wang <sean.wang@mediatek.com>
12500 S:      Maintained
12501 F:      drivers/char/hw_random/mtk-rng.c
12502
12503 MEDIATEK SMI DRIVER
12504 M:      Yong Wu <yong.wu@mediatek.com>
12505 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12506 S:      Supported
12507 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12508 F:      drivers/memory/mtk-smi.c
12509 F:      include/soc/mediatek/smi.h
12510
12511 MEDIATEK SWITCH DRIVER
12512 M:      Sean Wang <sean.wang@mediatek.com>
12513 M:      Landen Chao <Landen.Chao@mediatek.com>
12514 M:      DENG Qingfang <dqfext@gmail.com>
12515 L:      netdev@vger.kernel.org
12516 S:      Maintained
12517 F:      drivers/net/dsa/mt7530.*
12518 F:      net/dsa/tag_mtk.c
12519
12520 MEDIATEK USB3 DRD IP DRIVER
12521 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12522 L:      linux-usb@vger.kernel.org
12523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12524 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12525 S:      Maintained
12526 F:      Documentation/devicetree/bindings/usb/mediatek,*
12527 F:      drivers/usb/host/xhci-mtk*
12528 F:      drivers/usb/mtu3/
12529
12530 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12531 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12532 M:      Martin Donnelly <martin.donnelly@ge.com>
12533 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12534 S:      Maintained
12535 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12536 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12537
12538 MEGARAID SCSI/SAS DRIVERS
12539 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12540 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12541 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12542 L:      megaraidlinux.pdl@broadcom.com
12543 L:      linux-scsi@vger.kernel.org
12544 S:      Maintained
12545 W:      http://www.avagotech.com/support/
12546 F:      Documentation/scsi/megaraid.rst
12547 F:      drivers/scsi/megaraid.*
12548 F:      drivers/scsi/megaraid/
12549
12550 MELEXIS MLX90614 DRIVER
12551 M:      Crt Mori <cmo@melexis.com>
12552 L:      linux-iio@vger.kernel.org
12553 S:      Supported
12554 W:      http://www.melexis.com
12555 F:      drivers/iio/temperature/mlx90614.c
12556
12557 MELEXIS MLX90632 DRIVER
12558 M:      Crt Mori <cmo@melexis.com>
12559 L:      linux-iio@vger.kernel.org
12560 S:      Supported
12561 W:      http://www.melexis.com
12562 F:      drivers/iio/temperature/mlx90632.c
12563
12564 MELFAS MIP4 TOUCHSCREEN DRIVER
12565 M:      Sangwon Jee <jeesw@melfas.com>
12566 S:      Supported
12567 W:      http://www.melfas.com
12568 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12569 F:      drivers/input/touchscreen/melfas_mip4.c
12570
12571 MELLANOX BLUEFIELD I2C DRIVER
12572 M:      Khalil Blaiech <kblaiech@nvidia.com>
12573 L:      linux-i2c@vger.kernel.org
12574 S:      Supported
12575 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12576 F:      drivers/i2c/busses/i2c-mlxbf.c
12577
12578 MELLANOX ETHERNET DRIVER (mlx4_en)
12579 M:      Tariq Toukan <tariqt@nvidia.com>
12580 L:      netdev@vger.kernel.org
12581 S:      Supported
12582 W:      http://www.mellanox.com
12583 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12584 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12585
12586 MELLANOX ETHERNET DRIVER (mlx5e)
12587 M:      Saeed Mahameed <saeedm@nvidia.com>
12588 L:      netdev@vger.kernel.org
12589 S:      Supported
12590 W:      http://www.mellanox.com
12591 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12592 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12593
12594 MELLANOX ETHERNET INNOVA DRIVERS
12595 R:      Boris Pismenny <borisp@nvidia.com>
12596 L:      netdev@vger.kernel.org
12597 S:      Supported
12598 W:      http://www.mellanox.com
12599 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12600 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12601 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12602 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12603 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12604
12605 MELLANOX ETHERNET SWITCH DRIVERS
12606 M:      Ido Schimmel <idosch@nvidia.com>
12607 M:      Petr Machata <petrm@nvidia.com>
12608 L:      netdev@vger.kernel.org
12609 S:      Supported
12610 W:      http://www.mellanox.com
12611 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12612 F:      drivers/net/ethernet/mellanox/mlxsw/
12613 F:      tools/testing/selftests/drivers/net/mlxsw/
12614
12615 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12616 M:      mlxsw@nvidia.com
12617 L:      netdev@vger.kernel.org
12618 S:      Supported
12619 W:      http://www.mellanox.com
12620 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12621 F:      drivers/net/ethernet/mellanox/mlxfw/
12622
12623 MELLANOX HARDWARE PLATFORM SUPPORT
12624 M:      Hans de Goede <hdegoede@redhat.com>
12625 M:      Mark Gross <markgross@kernel.org>
12626 M:      Vadim Pasternak <vadimp@nvidia.com>
12627 L:      platform-driver-x86@vger.kernel.org
12628 S:      Supported
12629 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12630 F:      drivers/platform/mellanox/
12631 F:      include/linux/platform_data/mlxreg.h
12632
12633 MELLANOX MLX4 core VPI driver
12634 M:      Tariq Toukan <tariqt@nvidia.com>
12635 L:      netdev@vger.kernel.org
12636 L:      linux-rdma@vger.kernel.org
12637 S:      Supported
12638 W:      http://www.mellanox.com
12639 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12640 F:      drivers/net/ethernet/mellanox/mlx4/
12641 F:      include/linux/mlx4/
12642
12643 MELLANOX MLX4 IB driver
12644 M:      Yishai Hadas <yishaih@nvidia.com>
12645 L:      linux-rdma@vger.kernel.org
12646 S:      Supported
12647 W:      http://www.mellanox.com
12648 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12649 F:      drivers/infiniband/hw/mlx4/
12650 F:      include/linux/mlx4/
12651 F:      include/uapi/rdma/mlx4-abi.h
12652
12653 MELLANOX MLX5 core VPI driver
12654 M:      Saeed Mahameed <saeedm@nvidia.com>
12655 M:      Leon Romanovsky <leonro@nvidia.com>
12656 L:      netdev@vger.kernel.org
12657 L:      linux-rdma@vger.kernel.org
12658 S:      Supported
12659 W:      http://www.mellanox.com
12660 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12661 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12662 F:      drivers/net/ethernet/mellanox/mlx5/core/
12663 F:      include/linux/mlx5/
12664
12665 MELLANOX MLX5 IB driver
12666 M:      Leon Romanovsky <leonro@nvidia.com>
12667 L:      linux-rdma@vger.kernel.org
12668 S:      Supported
12669 W:      http://www.mellanox.com
12670 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12671 F:      drivers/infiniband/hw/mlx5/
12672 F:      include/linux/mlx5/
12673 F:      include/uapi/rdma/mlx5-abi.h
12674
12675 MELLANOX MLXCPLD I2C AND MUX DRIVER
12676 M:      Vadim Pasternak <vadimp@nvidia.com>
12677 M:      Michael Shych <michaelsh@nvidia.com>
12678 L:      linux-i2c@vger.kernel.org
12679 S:      Supported
12680 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12681 F:      drivers/i2c/busses/i2c-mlxcpld.c
12682 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12683
12684 MELLANOX MLXCPLD LED DRIVER
12685 M:      Vadim Pasternak <vadimp@nvidia.com>
12686 L:      linux-leds@vger.kernel.org
12687 S:      Supported
12688 F:      Documentation/leds/leds-mlxcpld.rst
12689 F:      drivers/leds/leds-mlxcpld.c
12690 F:      drivers/leds/leds-mlxreg.c
12691
12692 MELLANOX PLATFORM DRIVER
12693 M:      Vadim Pasternak <vadimp@nvidia.com>
12694 L:      platform-driver-x86@vger.kernel.org
12695 S:      Supported
12696 F:      drivers/platform/x86/mlx-platform.c
12697
12698 MEMBARRIER SUPPORT
12699 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12700 M:      "Paul E. McKenney" <paulmck@kernel.org>
12701 L:      linux-kernel@vger.kernel.org
12702 S:      Supported
12703 F:      arch/powerpc/include/asm/membarrier.h
12704 F:      include/uapi/linux/membarrier.h
12705 F:      kernel/sched/membarrier.c
12706
12707 MEMBLOCK
12708 M:      Mike Rapoport <rppt@kernel.org>
12709 L:      linux-mm@kvack.org
12710 S:      Maintained
12711 F:      Documentation/core-api/boot-time-mm.rst
12712 F:      include/linux/memblock.h
12713 F:      mm/memblock.c
12714 F:      tools/testing/memblock/
12715
12716 MEMORY CONTROLLER DRIVERS
12717 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12718 L:      linux-kernel@vger.kernel.org
12719 S:      Maintained
12720 B:      mailto:krzysztof.kozlowski@linaro.org
12721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12722 F:      Documentation/devicetree/bindings/memory-controllers/
12723 F:      drivers/memory/
12724 F:      include/dt-bindings/memory/
12725 F:      include/memory/
12726
12727 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12728 M:      Dmitry Osipenko <digetx@gmail.com>
12729 L:      linux-pm@vger.kernel.org
12730 L:      linux-tegra@vger.kernel.org
12731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12732 S:      Maintained
12733 F:      drivers/devfreq/tegra30-devfreq.c
12734
12735 MEMORY MANAGEMENT
12736 M:      Andrew Morton <akpm@linux-foundation.org>
12737 L:      linux-mm@kvack.org
12738 S:      Maintained
12739 W:      http://www.linux-mm.org
12740 T:      quilt https://ozlabs.org/~akpm/mmotm/
12741 T:      quilt https://ozlabs.org/~akpm/mmots/
12742 T:      git git://github.com/hnaz/linux-mm.git
12743 F:      include/linux/gfp.h
12744 F:      include/linux/memory_hotplug.h
12745 F:      include/linux/mm.h
12746 F:      include/linux/mmzone.h
12747 F:      include/linux/pagewalk.h
12748 F:      include/linux/vmalloc.h
12749 F:      mm/
12750 F:      tools/testing/selftests/vm/
12751
12752 MEMORY TECHNOLOGY DEVICES (MTD)
12753 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12754 M:      Richard Weinberger <richard@nod.at>
12755 M:      Vignesh Raghavendra <vigneshr@ti.com>
12756 L:      linux-mtd@lists.infradead.org
12757 S:      Maintained
12758 W:      http://www.linux-mtd.infradead.org/
12759 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12760 C:      irc://irc.oftc.net/mtd
12761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12763 F:      Documentation/devicetree/bindings/mtd/
12764 F:      drivers/mtd/
12765 F:      include/linux/mtd/
12766 F:      include/uapi/mtd/
12767
12768 MEN A21 WATCHDOG DRIVER
12769 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12770 L:      linux-watchdog@vger.kernel.org
12771 S:      Maintained
12772 F:      drivers/watchdog/mena21_wdt.c
12773
12774 MEN CHAMELEON BUS (mcb)
12775 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12776 S:      Maintained
12777 F:      Documentation/driver-api/men-chameleon-bus.rst
12778 F:      drivers/mcb/
12779 F:      include/linux/mcb.h
12780
12781 MEN F21BMC (Board Management Controller)
12782 M:      Andreas Werner <andreas.werner@men.de>
12783 S:      Supported
12784 F:      Documentation/hwmon/menf21bmc.rst
12785 F:      drivers/hwmon/menf21bmc_hwmon.c
12786 F:      drivers/leds/leds-menf21bmc.c
12787 F:      drivers/mfd/menf21bmc.c
12788 F:      drivers/watchdog/menf21bmc_wdt.c
12789
12790 MEN Z069 WATCHDOG DRIVER
12791 M:      Johannes Thumshirn <jth@kernel.org>
12792 L:      linux-watchdog@vger.kernel.org
12793 S:      Maintained
12794 F:      drivers/watchdog/menz69_wdt.c
12795
12796 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12797 M:      Neil Armstrong <narmstrong@baylibre.com>
12798 L:      linux-media@vger.kernel.org
12799 L:      linux-amlogic@lists.infradead.org
12800 S:      Supported
12801 W:      http://linux-meson.com/
12802 T:      git git://linuxtv.org/media_tree.git
12803 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12804 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12805 F:      drivers/media/cec/platform/meson/ao-cec.c
12806
12807 MESON GE2D DRIVER FOR AMLOGIC SOCS
12808 M:      Neil Armstrong <narmstrong@baylibre.com>
12809 L:      linux-media@vger.kernel.org
12810 L:      linux-amlogic@lists.infradead.org
12811 S:      Supported
12812 T:      git git://linuxtv.org/media_tree.git
12813 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12814 F:      drivers/media/platform/amlogic/meson-ge2d/
12815
12816 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12817 M:      Liang Yang <liang.yang@amlogic.com>
12818 L:      linux-mtd@lists.infradead.org
12819 S:      Maintained
12820 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12821 F:      drivers/mtd/nand/raw/meson_*
12822
12823 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12824 M:      Neil Armstrong <narmstrong@baylibre.com>
12825 L:      linux-media@vger.kernel.org
12826 L:      linux-amlogic@lists.infradead.org
12827 S:      Supported
12828 T:      git git://linuxtv.org/media_tree.git
12829 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12830 F:      drivers/staging/media/meson/vdec/
12831
12832 METHODE UDPU SUPPORT
12833 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12834 S:      Maintained
12835 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12836
12837 MHI BUS
12838 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12839 R:      Hemant Kumar <hemantk@codeaurora.org>
12840 L:      mhi@lists.linux.dev
12841 L:      linux-arm-msm@vger.kernel.org
12842 S:      Maintained
12843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12844 F:      Documentation/ABI/stable/sysfs-bus-mhi
12845 F:      Documentation/mhi/
12846 F:      drivers/bus/mhi/
12847 F:      include/linux/mhi.h
12848
12849 MICROBLAZE ARCHITECTURE
12850 M:      Michal Simek <monstr@monstr.eu>
12851 S:      Supported
12852 W:      http://www.monstr.eu/fdt/
12853 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12854 F:      arch/microblaze/
12855
12856 MICROCHIP AT91 DMA DRIVERS
12857 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12858 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12860 L:      dmaengine@vger.kernel.org
12861 S:      Supported
12862 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12863 F:      drivers/dma/at_hdmac.c
12864 F:      drivers/dma/at_hdmac_regs.h
12865 F:      drivers/dma/at_xdmac.c
12866 F:      include/dt-bindings/dma/at91.h
12867
12868 MICROCHIP AT91 SERIAL DRIVER
12869 M:      Richard Genoud <richard.genoud@gmail.com>
12870 S:      Maintained
12871 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12872 F:      drivers/tty/serial/atmel_serial.c
12873 F:      drivers/tty/serial/atmel_serial.h
12874
12875 MICROCHIP AT91 USART MFD DRIVER
12876 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12877 L:      linux-kernel@vger.kernel.org
12878 S:      Supported
12879 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12880 F:      drivers/mfd/at91-usart.c
12881 F:      include/dt-bindings/mfd/at91-usart.h
12882
12883 MICROCHIP AT91 USART SPI DRIVER
12884 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12885 L:      linux-spi@vger.kernel.org
12886 S:      Supported
12887 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12888 F:      drivers/spi/spi-at91-usart.c
12889
12890 MICROCHIP AUDIO ASOC DRIVERS
12891 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12892 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12893 S:      Supported
12894 F:      sound/soc/atmel
12895
12896 MICROCHIP CSI2DC DRIVER
12897 M:      Eugen Hristev <eugen.hristev@microchip.com>
12898 L:      linux-media@vger.kernel.org
12899 S:      Supported
12900 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
12901 F:      drivers/media/platform/atmel/microchip-csi2dc.c
12902
12903 MICROCHIP ECC DRIVER
12904 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12905 L:      linux-crypto@vger.kernel.org
12906 S:      Maintained
12907 F:      drivers/crypto/atmel-ecc.*
12908
12909 MICROCHIP EIC DRIVER
12910 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12912 S:      Supported
12913 F:      drivers/irqchip/irq-mchp-eic.c
12914
12915 MICROCHIP I2C DRIVER
12916 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12917 L:      linux-i2c@vger.kernel.org
12918 S:      Supported
12919 F:      drivers/i2c/busses/i2c-at91-*.c
12920 F:      drivers/i2c/busses/i2c-at91.h
12921
12922 MICROCHIP ISC DRIVER
12923 M:      Eugen Hristev <eugen.hristev@microchip.com>
12924 L:      linux-media@vger.kernel.org
12925 S:      Supported
12926 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12927 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12928 F:      drivers/media/platform/atmel/atmel-isc*
12929 F:      drivers/media/platform/atmel/atmel-sama*-isc*
12930 F:      include/linux/atmel-isc-media.h
12931
12932 MICROCHIP ISI DRIVER
12933 M:      Eugen Hristev <eugen.hristev@microchip.com>
12934 L:      linux-media@vger.kernel.org
12935 S:      Supported
12936 F:      drivers/media/platform/atmel/atmel-isi.c
12937 F:      drivers/media/platform/atmel/atmel-isi.h
12938
12939 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12940 M:      Woojung Huh <woojung.huh@microchip.com>
12941 M:      UNGLinuxDriver@microchip.com
12942 L:      netdev@vger.kernel.org
12943 S:      Maintained
12944 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12945 F:      drivers/net/dsa/microchip/*
12946 F:      include/linux/platform_data/microchip-ksz.h
12947 F:      net/dsa/tag_ksz.c
12948
12949 MICROCHIP LAN743X ETHERNET DRIVER
12950 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12951 M:      UNGLinuxDriver@microchip.com
12952 L:      netdev@vger.kernel.org
12953 S:      Maintained
12954 F:      drivers/net/ethernet/microchip/lan743x_*
12955
12956 MICROCHIP LAN966X ETHERNET DRIVER
12957 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
12958 M:      UNGLinuxDriver@microchip.com
12959 L:      netdev@vger.kernel.org
12960 S:      Maintained
12961 F:      drivers/net/ethernet/microchip/lan966x/*
12962
12963 MICROCHIP LCDFB DRIVER
12964 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12965 L:      linux-fbdev@vger.kernel.org
12966 S:      Maintained
12967 F:      drivers/video/fbdev/atmel_lcdfb.c
12968 F:      include/video/atmel_lcdc.h
12969
12970 MICROCHIP MCP16502 PMIC DRIVER
12971 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12973 S:      Supported
12974 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12975 F:      drivers/regulator/mcp16502.c
12976
12977 MICROCHIP MCP3911 ADC DRIVER
12978 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12979 M:      Kent Gustavsson <kent@minoris.se>
12980 L:      linux-iio@vger.kernel.org
12981 S:      Supported
12982 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12983 F:      drivers/iio/adc/mcp3911.c
12984
12985 MICROCHIP MMC/SD/SDIO MCI DRIVER
12986 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12987 S:      Maintained
12988 F:      drivers/mmc/host/atmel-mci.c
12989
12990 MICROCHIP NAND DRIVER
12991 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12992 L:      linux-mtd@lists.infradead.org
12993 S:      Supported
12994 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12995 F:      drivers/mtd/nand/raw/atmel/*
12996
12997 MICROCHIP PWM DRIVER
12998 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13000 L:      linux-pwm@vger.kernel.org
13001 S:      Supported
13002 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
13003 F:      drivers/pwm/pwm-atmel.c
13004
13005 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13006 M:      Eugen Hristev <eugen.hristev@microchip.com>
13007 L:      linux-iio@vger.kernel.org
13008 S:      Supported
13009 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13010 F:      drivers/iio/adc/at91-sama5d2_adc.c
13011 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13012
13013 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13014 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13015 S:      Supported
13016 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13017
13018 MICROCHIP SPI DRIVER
13019 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13020 S:      Supported
13021 F:      drivers/spi/spi-atmel.*
13022
13023 MICROCHIP SSC DRIVER
13024 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13026 S:      Supported
13027 F:      drivers/misc/atmel-ssc.c
13028 F:      include/linux/atmel-ssc.h
13029
13030 MICROCHIP USB251XB DRIVER
13031 M:      Richard Leitner <richard.leitner@skidata.com>
13032 L:      linux-usb@vger.kernel.org
13033 S:      Maintained
13034 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13035 F:      drivers/usb/misc/usb251xb.c
13036
13037 MICROCHIP USBA UDC DRIVER
13038 M:      Cristian Birsan <cristian.birsan@microchip.com>
13039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13040 S:      Supported
13041 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13042
13043 MICROCHIP WILC1000 WIFI DRIVER
13044 M:      Ajay Singh <ajay.kathat@microchip.com>
13045 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13046 L:      linux-wireless@vger.kernel.org
13047 S:      Supported
13048 F:      drivers/net/wireless/microchip/wilc1000/
13049
13050 MICROSEMI MIPS SOCS
13051 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13052 M:      UNGLinuxDriver@microchip.com
13053 L:      linux-mips@vger.kernel.org
13054 S:      Supported
13055 F:      Documentation/devicetree/bindings/mips/mscc.txt
13056 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13057 F:      arch/mips/boot/dts/mscc/
13058 F:      arch/mips/configs/generic/board-ocelot.config
13059 F:      arch/mips/generic/board-ocelot.c
13060
13061 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13062 M:      Don Brace <don.brace@microchip.com>
13063 L:      storagedev@microchip.com
13064 L:      linux-scsi@vger.kernel.org
13065 S:      Supported
13066 F:      Documentation/scsi/smartpqi.rst
13067 F:      drivers/scsi/smartpqi/Kconfig
13068 F:      drivers/scsi/smartpqi/Makefile
13069 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13070 F:      include/linux/cciss*.h
13071 F:      include/uapi/linux/cciss*.h
13072
13073 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13074 M:      Maximilian Luz <luzmaximilian@gmail.com>
13075 L:      linux-pm@vger.kernel.org
13076 L:      platform-driver-x86@vger.kernel.org
13077 S:      Maintained
13078 F:      drivers/power/supply/surface_battery.c
13079 F:      drivers/power/supply/surface_charger.c
13080
13081 MICROSOFT SURFACE DTX DRIVER
13082 M:      Maximilian Luz <luzmaximilian@gmail.com>
13083 L:      platform-driver-x86@vger.kernel.org
13084 S:      Maintained
13085 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13086 F:      drivers/platform/surface/surface_dtx.c
13087 F:      include/uapi/linux/surface_aggregator/dtx.h
13088
13089 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13090 M:      Maximilian Luz <luzmaximilian@gmail.com>
13091 L:      platform-driver-x86@vger.kernel.org
13092 S:      Maintained
13093 F:      drivers/platform/surface/surface_gpe.c
13094
13095 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13096 M:      Hans de Goede <hdegoede@redhat.com>
13097 M:      Mark Gross <markgross@kernel.org>
13098 M:      Maximilian Luz <luzmaximilian@gmail.com>
13099 L:      platform-driver-x86@vger.kernel.org
13100 S:      Maintained
13101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13102 F:      drivers/platform/surface/
13103
13104 MICROSOFT SURFACE HID TRANSPORT DRIVER
13105 M:      Maximilian Luz <luzmaximilian@gmail.com>
13106 L:      linux-input@vger.kernel.org
13107 L:      platform-driver-x86@vger.kernel.org
13108 S:      Maintained
13109 F:      drivers/hid/surface-hid/
13110
13111 MICROSOFT SURFACE HOT-PLUG DRIVER
13112 M:      Maximilian Luz <luzmaximilian@gmail.com>
13113 L:      platform-driver-x86@vger.kernel.org
13114 S:      Maintained
13115 F:      drivers/platform/surface/surface_hotplug.c
13116
13117 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13118 M:      Maximilian Luz <luzmaximilian@gmail.com>
13119 L:      platform-driver-x86@vger.kernel.org
13120 S:      Maintained
13121 F:      drivers/platform/surface/surface_platform_profile.c
13122
13123 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13124 M:      Chen Yu <yu.c.chen@intel.com>
13125 L:      platform-driver-x86@vger.kernel.org
13126 S:      Supported
13127 F:      drivers/platform/surface/surfacepro3_button.c
13128
13129 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13130 M:      Maximilian Luz <luzmaximilian@gmail.com>
13131 L:      platform-driver-x86@vger.kernel.org
13132 S:      Maintained
13133 W:      https://github.com/linux-surface/surface-aggregator-module
13134 C:      irc://irc.libera.chat/linux-surface
13135 F:      Documentation/driver-api/surface_aggregator/
13136 F:      drivers/platform/surface/aggregator/
13137 F:      drivers/platform/surface/surface_acpi_notify.c
13138 F:      drivers/platform/surface/surface_aggregator_cdev.c
13139 F:      drivers/platform/surface/surface_aggregator_registry.c
13140 F:      include/linux/surface_acpi_notify.h
13141 F:      include/linux/surface_aggregator/
13142 F:      include/uapi/linux/surface_aggregator/
13143
13144 MICROTEK X6 SCANNER
13145 M:      Oliver Neukum <oliver@neukum.org>
13146 S:      Maintained
13147 F:      drivers/usb/image/microtek.*
13148
13149 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13150 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13151 M:      Luka Perkov <luka.perkov@sartura.hr>
13152 S:      Maintained
13153 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13154 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13155 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13156 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13157 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13158 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13159
13160 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13161 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13162 L:      linux-media@vger.kernel.org
13163 S:      Maintained
13164 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13165 F:      Documentation/driver-api/media/drivers/ccs/
13166 F:      Documentation/userspace-api/media/drivers/ccs.rst
13167 F:      drivers/media/i2c/ccs-pll.c
13168 F:      drivers/media/i2c/ccs-pll.h
13169 F:      drivers/media/i2c/ccs/
13170 F:      include/uapi/linux/ccs.h
13171 F:      include/uapi/linux/smiapp.h
13172
13173 MIPS
13174 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13175 L:      linux-mips@vger.kernel.org
13176 S:      Maintained
13177 W:      http://www.linux-mips.org/
13178 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13180 F:      Documentation/devicetree/bindings/mips/
13181 F:      Documentation/mips/
13182 F:      arch/mips/
13183 F:      drivers/platform/mips/
13184
13185 MIPS BOSTON DEVELOPMENT BOARD
13186 M:      Paul Burton <paulburton@kernel.org>
13187 L:      linux-mips@vger.kernel.org
13188 S:      Maintained
13189 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13190 F:      arch/mips/boot/dts/img/boston.dts
13191 F:      arch/mips/configs/generic/board-boston.config
13192 F:      drivers/clk/imgtec/clk-boston.c
13193 F:      include/dt-bindings/clock/boston-clock.h
13194
13195 MIPS CORE DRIVERS
13196 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13197 M:      Serge Semin <fancer.lancer@gmail.com>
13198 L:      linux-mips@vger.kernel.org
13199 S:      Supported
13200 F:      drivers/bus/mips_cdmm.c
13201 F:      drivers/clocksource/mips-gic-timer.c
13202 F:      drivers/cpuidle/cpuidle-cps.c
13203 F:      drivers/irqchip/irq-mips-cpu.c
13204 F:      drivers/irqchip/irq-mips-gic.c
13205
13206 MIPS GENERIC PLATFORM
13207 M:      Paul Burton <paulburton@kernel.org>
13208 L:      linux-mips@vger.kernel.org
13209 S:      Supported
13210 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13211 F:      arch/mips/generic/
13212 F:      arch/mips/tools/generic-board-config.sh
13213
13214 MIPS RINT INSTRUCTION EMULATION
13215 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13216 L:      linux-mips@vger.kernel.org
13217 S:      Supported
13218 F:      arch/mips/math-emu/dp_rint.c
13219 F:      arch/mips/math-emu/sp_rint.c
13220
13221 MIPS/LOONGSON1 ARCHITECTURE
13222 M:      Keguang Zhang <keguang.zhang@gmail.com>
13223 L:      linux-mips@vger.kernel.org
13224 S:      Maintained
13225 F:      arch/mips/include/asm/mach-loongson32/
13226 F:      arch/mips/loongson32/
13227 F:      drivers/*/*/*loongson1*
13228 F:      drivers/*/*loongson1*
13229
13230 MIPS/LOONGSON2EF ARCHITECTURE
13231 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13232 L:      linux-mips@vger.kernel.org
13233 S:      Maintained
13234 F:      arch/mips/include/asm/mach-loongson2ef/
13235 F:      arch/mips/loongson2ef/
13236 F:      drivers/cpufreq/loongson2_cpufreq.c
13237
13238 MIPS/LOONGSON64 ARCHITECTURE
13239 M:      Huacai Chen <chenhuacai@kernel.org>
13240 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13241 L:      linux-mips@vger.kernel.org
13242 S:      Maintained
13243 F:      arch/mips/include/asm/mach-loongson64/
13244 F:      arch/mips/loongson64/
13245 F:      drivers/irqchip/irq-loongson*
13246 F:      drivers/platform/mips/cpu_hwmon.c
13247
13248 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13249 M:      Hans Verkuil <hverkuil@xs4all.nl>
13250 L:      linux-media@vger.kernel.org
13251 S:      Odd Fixes
13252 W:      https://linuxtv.org
13253 T:      git git://linuxtv.org/media_tree.git
13254 F:      drivers/media/radio/radio-miropcm20*
13255
13256 MMP SUPPORT
13257 R:      Lubomir Rintel <lkundrak@v3.sk>
13258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13259 S:      Odd Fixes
13260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13261 F:      arch/arm/boot/dts/mmp*
13262 F:      arch/arm/mach-mmp/
13263 F:      include/linux/soc/mmp/
13264
13265 MMP USB PHY DRIVERS
13266 R:      Lubomir Rintel <lkundrak@v3.sk>
13267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13268 S:      Maintained
13269 F:      drivers/phy/marvell/phy-mmp3-usb.c
13270 F:      drivers/phy/marvell/phy-pxa-usb.c
13271
13272 MMU GATHER AND TLB INVALIDATION
13273 M:      Will Deacon <will@kernel.org>
13274 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13275 M:      Andrew Morton <akpm@linux-foundation.org>
13276 M:      Nick Piggin <npiggin@gmail.com>
13277 M:      Peter Zijlstra <peterz@infradead.org>
13278 L:      linux-arch@vger.kernel.org
13279 L:      linux-mm@kvack.org
13280 S:      Maintained
13281 F:      arch/*/include/asm/tlb.h
13282 F:      include/asm-generic/tlb.h
13283 F:      mm/mmu_gather.c
13284
13285 MN88472 MEDIA DRIVER
13286 M:      Antti Palosaari <crope@iki.fi>
13287 L:      linux-media@vger.kernel.org
13288 S:      Maintained
13289 W:      https://linuxtv.org
13290 W:      http://palosaari.fi/linux/
13291 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13292 F:      drivers/media/dvb-frontends/mn88472*
13293
13294 MN88473 MEDIA DRIVER
13295 M:      Antti Palosaari <crope@iki.fi>
13296 L:      linux-media@vger.kernel.org
13297 S:      Maintained
13298 W:      https://linuxtv.org
13299 W:      http://palosaari.fi/linux/
13300 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13301 F:      drivers/media/dvb-frontends/mn88473*
13302
13303 MODULE SUPPORT
13304 M:      Luis Chamberlain <mcgrof@kernel.org>
13305 L:      linux-modules@vger.kernel.org
13306 L:      linux-kernel@vger.kernel.org
13307 S:      Maintained
13308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13309 F:      include/linux/module.h
13310 F:      kernel/module.c
13311
13312 MONOLITHIC POWER SYSTEM PMIC DRIVER
13313 M:      Saravanan Sekar <sravanhome@gmail.com>
13314 S:      Maintained
13315 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13316 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13317 F:      drivers/iio/adc/mp2629_adc.c
13318 F:      drivers/mfd/mp2629.c
13319 F:      drivers/power/supply/mp2629_charger.c
13320 F:      drivers/regulator/mp5416.c
13321 F:      drivers/regulator/mpq7920.c
13322 F:      drivers/regulator/mpq7920.h
13323 F:      include/linux/mfd/mp2629.h
13324
13325 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13326 S:      Orphan
13327 W:      http://popies.net/meye/
13328 F:      Documentation/userspace-api/media/drivers/meye*
13329 F:      drivers/media/pci/meye/
13330 F:      include/uapi/linux/meye.h
13331
13332 MOTORCOMM PHY DRIVER
13333 M:      Peter Geis <pgwipeout@gmail.com>
13334 L:      netdev@vger.kernel.org
13335 S:      Maintained
13336 F:      drivers/net/phy/motorcomm.c
13337
13338 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13339 M:      Jiri Slaby <jirislaby@kernel.org>
13340 S:      Maintained
13341 F:      Documentation/driver-api/serial/moxa-smartio.rst
13342 F:      drivers/tty/mxser.*
13343
13344 MR800 AVERMEDIA USB FM RADIO DRIVER
13345 M:      Alexey Klimov <klimov.linux@gmail.com>
13346 L:      linux-media@vger.kernel.org
13347 S:      Maintained
13348 T:      git git://linuxtv.org/media_tree.git
13349 F:      drivers/media/radio/radio-mr800.c
13350
13351 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13352 M:      Alan Ott <alan@signal11.us>
13353 L:      linux-wpan@vger.kernel.org
13354 S:      Maintained
13355 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13356 F:      drivers/net/ieee802154/mrf24j40.c
13357
13358 MSI LAPTOP SUPPORT
13359 M:      "Lee, Chun-Yi" <jlee@suse.com>
13360 L:      platform-driver-x86@vger.kernel.org
13361 S:      Maintained
13362 F:      drivers/platform/x86/msi-laptop.c
13363
13364 MSI WMI SUPPORT
13365 L:      platform-driver-x86@vger.kernel.org
13366 S:      Orphan
13367 F:      drivers/platform/x86/msi-wmi.c
13368
13369 MSI001 MEDIA DRIVER
13370 M:      Antti Palosaari <crope@iki.fi>
13371 L:      linux-media@vger.kernel.org
13372 S:      Maintained
13373 W:      https://linuxtv.org
13374 W:      http://palosaari.fi/linux/
13375 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13376 T:      git git://linuxtv.org/anttip/media_tree.git
13377 F:      drivers/media/tuners/msi001*
13378
13379 MSI2500 MEDIA DRIVER
13380 M:      Antti Palosaari <crope@iki.fi>
13381 L:      linux-media@vger.kernel.org
13382 S:      Maintained
13383 W:      https://linuxtv.org
13384 W:      http://palosaari.fi/linux/
13385 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13386 T:      git git://linuxtv.org/anttip/media_tree.git
13387 F:      drivers/media/usb/msi2500/
13388
13389 MSTAR INTERRUPT CONTROLLER DRIVER
13390 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13391 M:      Daniel Palmer <daniel@thingy.jp>
13392 S:      Maintained
13393 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13394 F:      drivers/irqchip/irq-mst-intc.c
13395
13396 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13397 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13398 L:      linux-mtd@lists.infradead.org
13399 S:      Maintained
13400 F:      drivers/mtd/devices/docg3*
13401
13402 MT9M032 APTINA SENSOR DRIVER
13403 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13404 L:      linux-media@vger.kernel.org
13405 S:      Maintained
13406 T:      git git://linuxtv.org/media_tree.git
13407 F:      drivers/media/i2c/mt9m032.c
13408 F:      include/media/i2c/mt9m032.h
13409
13410 MT9P031 APTINA CAMERA SENSOR
13411 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13412 L:      linux-media@vger.kernel.org
13413 S:      Maintained
13414 T:      git git://linuxtv.org/media_tree.git
13415 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13416 F:      drivers/media/i2c/mt9p031.c
13417 F:      include/media/i2c/mt9p031.h
13418
13419 MT9T001 APTINA CAMERA SENSOR
13420 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13421 L:      linux-media@vger.kernel.org
13422 S:      Maintained
13423 T:      git git://linuxtv.org/media_tree.git
13424 F:      drivers/media/i2c/mt9t001.c
13425 F:      include/media/i2c/mt9t001.h
13426
13427 MT9T112 APTINA CAMERA SENSOR
13428 M:      Jacopo Mondi <jacopo@jmondi.org>
13429 L:      linux-media@vger.kernel.org
13430 S:      Odd Fixes
13431 T:      git git://linuxtv.org/media_tree.git
13432 F:      drivers/media/i2c/mt9t112.c
13433 F:      include/media/i2c/mt9t112.h
13434
13435 MT9V032 APTINA CAMERA SENSOR
13436 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13437 L:      linux-media@vger.kernel.org
13438 S:      Maintained
13439 T:      git git://linuxtv.org/media_tree.git
13440 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13441 F:      drivers/media/i2c/mt9v032.c
13442 F:      include/media/i2c/mt9v032.h
13443
13444 MT9V111 APTINA CAMERA SENSOR
13445 M:      Jacopo Mondi <jacopo@jmondi.org>
13446 L:      linux-media@vger.kernel.org
13447 S:      Maintained
13448 T:      git git://linuxtv.org/media_tree.git
13449 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13450 F:      drivers/media/i2c/mt9v111.c
13451
13452 MULTIFUNCTION DEVICES (MFD)
13453 M:      Lee Jones <lee.jones@linaro.org>
13454 S:      Supported
13455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13456 F:      Documentation/devicetree/bindings/mfd/
13457 F:      drivers/mfd/
13458 F:      include/dt-bindings/mfd/
13459 F:      include/linux/mfd/
13460
13461 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13462 S:      Orphan
13463 F:      drivers/mmc/host/mmc_spi.c
13464 F:      include/linux/spi/mmc_spi.h
13465
13466 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13467 M:      Ulf Hansson <ulf.hansson@linaro.org>
13468 L:      linux-mmc@vger.kernel.org
13469 S:      Maintained
13470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13471 F:      Documentation/devicetree/bindings/mmc/
13472 F:      drivers/mmc/
13473 F:      include/linux/mmc/
13474 F:      include/uapi/linux/mmc/
13475
13476 MULTIPLEXER SUBSYSTEM
13477 M:      Peter Rosin <peda@axentia.se>
13478 S:      Maintained
13479 F:      Documentation/ABI/testing/sysfs-class-mux*
13480 F:      Documentation/devicetree/bindings/mux/
13481 F:      drivers/mux/
13482 F:      include/dt-bindings/mux/
13483 F:      include/linux/mux/
13484
13485 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13486 M:      Bin Liu <b-liu@ti.com>
13487 L:      linux-usb@vger.kernel.org
13488 S:      Maintained
13489 F:      drivers/usb/musb/
13490
13491 MXL301RF MEDIA DRIVER
13492 M:      Akihiro Tsukada <tskd08@gmail.com>
13493 L:      linux-media@vger.kernel.org
13494 S:      Odd Fixes
13495 F:      drivers/media/tuners/mxl301rf*
13496
13497 MXL5007T MEDIA DRIVER
13498 M:      Michael Krufky <mkrufky@linuxtv.org>
13499 L:      linux-media@vger.kernel.org
13500 S:      Maintained
13501 W:      https://linuxtv.org
13502 W:      http://github.com/mkrufky
13503 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13504 T:      git git://linuxtv.org/mkrufky/tuners.git
13505 F:      drivers/media/tuners/mxl5007t.*
13506
13507 MXSFB DRM DRIVER
13508 M:      Marek Vasut <marex@denx.de>
13509 M:      Stefan Agner <stefan@agner.ch>
13510 L:      dri-devel@lists.freedesktop.org
13511 S:      Supported
13512 T:      git git://anongit.freedesktop.org/drm/drm-misc
13513 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13514 F:      drivers/gpu/drm/mxsfb/
13515
13516 MYLEX DAC960 PCI RAID Controller
13517 M:      Hannes Reinecke <hare@kernel.org>
13518 L:      linux-scsi@vger.kernel.org
13519 S:      Supported
13520 F:      drivers/scsi/myrb.*
13521 F:      drivers/scsi/myrs.*
13522
13523 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13524 M:      Chris Lee <christopher.lee@cspi.com>
13525 L:      netdev@vger.kernel.org
13526 S:      Supported
13527 W:      https://www.cspi.com/ethernet-products/support/downloads/
13528 F:      drivers/net/ethernet/myricom/myri10ge/
13529
13530 NAND FLASH SUBSYSTEM
13531 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13532 R:      Richard Weinberger <richard@nod.at>
13533 L:      linux-mtd@lists.infradead.org
13534 S:      Maintained
13535 W:      http://www.linux-mtd.infradead.org/
13536 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13537 C:      irc://irc.oftc.net/mtd
13538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13539 F:      drivers/mtd/nand/
13540 F:      include/linux/mtd/*nand*.h
13541
13542 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13543 M:      Daniel Mack <zonque@gmail.com>
13544 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13545 S:      Maintained
13546 W:      http://www.native-instruments.com
13547 F:      sound/usb/caiaq/
13548
13549 NATSEMI ETHERNET DRIVER (DP8381x)
13550 S:      Orphan
13551 F:      drivers/net/ethernet/natsemi/natsemi.c
13552
13553 NCR 5380 SCSI DRIVERS
13554 M:      Finn Thain <fthain@linux-m68k.org>
13555 M:      Michael Schmitz <schmitzmic@gmail.com>
13556 L:      linux-scsi@vger.kernel.org
13557 S:      Maintained
13558 F:      Documentation/scsi/g_NCR5380.rst
13559 F:      drivers/scsi/NCR5380.*
13560 F:      drivers/scsi/arm/cumana_1.c
13561 F:      drivers/scsi/arm/oak.c
13562 F:      drivers/scsi/atari_scsi.*
13563 F:      drivers/scsi/dmx3191d.c
13564 F:      drivers/scsi/g_NCR5380.*
13565 F:      drivers/scsi/mac_scsi.*
13566 F:      drivers/scsi/sun3_scsi.*
13567 F:      drivers/scsi/sun3_scsi_vme.c
13568
13569 NCSI LIBRARY
13570 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13571 S:      Maintained
13572 F:      net/ncsi/
13573
13574 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
13575 M:      Guenter Roeck <linux@roeck-us.net>
13576 L:      linux-hwmon@vger.kernel.org
13577 S:      Maintained
13578 F:      Documentation/hwmon/nct6775.rst
13579 F:      drivers/hwmon/nct6775-core.c
13580 F:      drivers/hwmon/nct6775-platform.c
13581 F:      drivers/hwmon/nct6775.h
13582
13583 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
13584 M:      Zev Weiss <zev@bewilderbeest.net>
13585 L:      linux-hwmon@vger.kernel.org
13586 S:      Maintained
13587 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
13588 F:      drivers/hwmon/nct6775-i2c.c
13589
13590 NETDEVSIM
13591 M:      Jakub Kicinski <kuba@kernel.org>
13592 S:      Maintained
13593 F:      drivers/net/netdevsim/*
13594
13595 NETEM NETWORK EMULATOR
13596 M:      Stephen Hemminger <stephen@networkplumber.org>
13597 L:      netdev@vger.kernel.org
13598 S:      Maintained
13599 F:      net/sched/sch_netem.c
13600
13601 NETERION 10GbE DRIVERS (s2io/vxge)
13602 M:      Jon Mason <jdmason@kudzu.us>
13603 L:      netdev@vger.kernel.org
13604 S:      Supported
13605 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13606 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13607 F:      drivers/net/ethernet/neterion/
13608
13609 NETFILTER
13610 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13611 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13612 M:      Florian Westphal <fw@strlen.de>
13613 L:      netfilter-devel@vger.kernel.org
13614 L:      coreteam@netfilter.org
13615 S:      Maintained
13616 W:      http://www.netfilter.org/
13617 W:      http://www.iptables.org/
13618 W:      http://www.nftables.org/
13619 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13620 C:      irc://irc.libera.chat/netfilter
13621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13623 F:      include/linux/netfilter*
13624 F:      include/linux/netfilter/
13625 F:      include/net/netfilter/
13626 F:      include/uapi/linux/netfilter*
13627 F:      include/uapi/linux/netfilter/
13628 F:      net/*/netfilter.c
13629 F:      net/*/netfilter/
13630 F:      net/bridge/br_netfilter*.c
13631 F:      net/netfilter/
13632
13633 NETROM NETWORK LAYER
13634 M:      Ralf Baechle <ralf@linux-mips.org>
13635 L:      linux-hams@vger.kernel.org
13636 S:      Maintained
13637 W:      http://www.linux-ax25.org/
13638 F:      include/net/netrom.h
13639 F:      include/uapi/linux/netrom.h
13640 F:      net/netrom/
13641
13642 NETRONIX EMBEDDED CONTROLLER
13643 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13644 S:      Maintained
13645 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13646 F:      drivers/mfd/ntxec.c
13647 F:      drivers/pwm/pwm-ntxec.c
13648 F:      drivers/rtc/rtc-ntxec.c
13649 F:      include/linux/mfd/ntxec.h
13650
13651 NETRONOME ETHERNET DRIVERS
13652 M:      Simon Horman <simon.horman@corigine.com>
13653 R:      Jakub Kicinski <kuba@kernel.org>
13654 L:      oss-drivers@corigine.com
13655 S:      Maintained
13656 F:      drivers/net/ethernet/netronome/
13657
13658 NETWORK BLOCK DEVICE (NBD)
13659 M:      Josef Bacik <josef@toxicpanda.com>
13660 L:      linux-block@vger.kernel.org
13661 L:      nbd@other.debian.org
13662 S:      Maintained
13663 F:      Documentation/admin-guide/blockdev/nbd.rst
13664 F:      drivers/block/nbd.c
13665 F:      include/trace/events/nbd.h
13666 F:      include/uapi/linux/nbd.h
13667
13668 NETWORK DROP MONITOR
13669 M:      Neil Horman <nhorman@tuxdriver.com>
13670 L:      netdev@vger.kernel.org
13671 S:      Maintained
13672 W:      https://fedorahosted.org/dropwatch/
13673 F:      include/uapi/linux/net_dropmon.h
13674 F:      net/core/drop_monitor.c
13675
13676 NETWORKING DRIVERS
13677 M:      "David S. Miller" <davem@davemloft.net>
13678 M:      Eric Dumazet <edumazet@google.com>
13679 M:      Jakub Kicinski <kuba@kernel.org>
13680 M:      Paolo Abeni <pabeni@redhat.com>
13681 L:      netdev@vger.kernel.org
13682 S:      Maintained
13683 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13686 F:      Documentation/devicetree/bindings/net/
13687 F:      drivers/connector/
13688 F:      drivers/net/
13689 F:      include/linux/etherdevice.h
13690 F:      include/linux/fcdevice.h
13691 F:      include/linux/fddidevice.h
13692 F:      include/linux/hippidevice.h
13693 F:      include/linux/if_*
13694 F:      include/linux/inetdevice.h
13695 F:      include/linux/netdevice.h
13696 F:      include/uapi/linux/if_*
13697 F:      include/uapi/linux/netdevice.h
13698
13699 NETWORKING DRIVERS (WIRELESS)
13700 M:      Kalle Valo <kvalo@kernel.org>
13701 L:      linux-wireless@vger.kernel.org
13702 S:      Maintained
13703 W:      https://wireless.wiki.kernel.org/
13704 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13707 F:      Documentation/devicetree/bindings/net/wireless/
13708 F:      drivers/net/wireless/
13709
13710 NETWORKING [DSA]
13711 M:      Andrew Lunn <andrew@lunn.ch>
13712 M:      Vivien Didelot <vivien.didelot@gmail.com>
13713 M:      Florian Fainelli <f.fainelli@gmail.com>
13714 M:      Vladimir Oltean <olteanv@gmail.com>
13715 S:      Maintained
13716 F:      Documentation/devicetree/bindings/net/dsa/
13717 F:      drivers/net/dsa/
13718 F:      include/linux/dsa/
13719 F:      include/linux/platform_data/dsa.h
13720 F:      include/net/dsa.h
13721 F:      net/dsa/
13722 F:      tools/testing/selftests/drivers/net/dsa/
13723
13724 NETWORKING [GENERAL]
13725 M:      "David S. Miller" <davem@davemloft.net>
13726 M:      Eric Dumazet <edumazet@google.com>
13727 M:      Jakub Kicinski <kuba@kernel.org>
13728 M:      Paolo Abeni <pabeni@redhat.com>
13729 L:      netdev@vger.kernel.org
13730 S:      Maintained
13731 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13732 B:      mailto:netdev@vger.kernel.org
13733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13735 F:      Documentation/networking/
13736 F:      Documentation/process/maintainer-netdev.rst
13737 F:      include/linux/in.h
13738 F:      include/linux/net.h
13739 F:      include/linux/netdevice.h
13740 F:      include/net/
13741 F:      include/uapi/linux/in.h
13742 F:      include/uapi/linux/net.h
13743 F:      include/uapi/linux/net_namespace.h
13744 F:      include/uapi/linux/netdevice.h
13745 F:      lib/net_utils.c
13746 F:      lib/random32.c
13747 F:      net/
13748 F:      tools/testing/selftests/net/
13749
13750 NETWORKING [IPSEC]
13751 M:      Steffen Klassert <steffen.klassert@secunet.com>
13752 M:      Herbert Xu <herbert@gondor.apana.org.au>
13753 M:      "David S. Miller" <davem@davemloft.net>
13754 L:      netdev@vger.kernel.org
13755 S:      Maintained
13756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13758 F:      include/net/xfrm.h
13759 F:      include/uapi/linux/xfrm.h
13760 F:      net/ipv4/ah4.c
13761 F:      net/ipv4/esp4*
13762 F:      net/ipv4/ip_vti.c
13763 F:      net/ipv4/ipcomp.c
13764 F:      net/ipv4/xfrm*
13765 F:      net/ipv6/ah6.c
13766 F:      net/ipv6/esp6*
13767 F:      net/ipv6/ip6_vti.c
13768 F:      net/ipv6/ipcomp6.c
13769 F:      net/ipv6/xfrm*
13770 F:      net/key/
13771 F:      net/xfrm/
13772 F:      tools/testing/selftests/net/ipsec.c
13773
13774 NETWORKING [IPv4/IPv6]
13775 M:      "David S. Miller" <davem@davemloft.net>
13776 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13777 M:      David Ahern <dsahern@kernel.org>
13778 L:      netdev@vger.kernel.org
13779 S:      Maintained
13780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13781 F:      arch/x86/net/*
13782 F:      include/linux/ip.h
13783 F:      include/linux/ipv6*
13784 F:      include/net/fib*
13785 F:      include/net/ip*
13786 F:      include/net/route.h
13787 F:      net/ipv4/
13788 F:      net/ipv6/
13789
13790 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13791 M:      Paul Moore <paul@paul-moore.com>
13792 L:      netdev@vger.kernel.org
13793 L:      linux-security-module@vger.kernel.org
13794 S:      Maintained
13795 W:      https://github.com/netlabel
13796 F:      Documentation/netlabel/
13797 F:      include/net/calipso.h
13798 F:      include/net/cipso_ipv4.h
13799 F:      include/net/netlabel.h
13800 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13801 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13802 F:      net/ipv4/cipso_ipv4.c
13803 F:      net/ipv6/calipso.c
13804 F:      net/netfilter/xt_CONNSECMARK.c
13805 F:      net/netfilter/xt_SECMARK.c
13806 F:      net/netlabel/
13807
13808 NETWORKING [MPTCP]
13809 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13810 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13811 L:      netdev@vger.kernel.org
13812 L:      mptcp@lists.linux.dev
13813 S:      Maintained
13814 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13815 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13816 F:      Documentation/networking/mptcp-sysctl.rst
13817 F:      include/net/mptcp.h
13818 F:      include/trace/events/mptcp.h
13819 F:      include/uapi/linux/mptcp.h
13820 F:      net/mptcp/
13821 F:      tools/testing/selftests/net/mptcp/
13822
13823 NETWORKING [TCP]
13824 M:      Eric Dumazet <edumazet@google.com>
13825 L:      netdev@vger.kernel.org
13826 S:      Maintained
13827 F:      include/linux/tcp.h
13828 F:      include/net/tcp.h
13829 F:      include/trace/events/tcp.h
13830 F:      include/uapi/linux/tcp.h
13831 F:      net/ipv4/syncookies.c
13832 F:      net/ipv4/tcp*.c
13833 F:      net/ipv6/syncookies.c
13834 F:      net/ipv6/tcp*.c
13835
13836 NETWORKING [TLS]
13837 M:      Boris Pismenny <borisp@nvidia.com>
13838 M:      John Fastabend <john.fastabend@gmail.com>
13839 M:      Daniel Borkmann <daniel@iogearbox.net>
13840 M:      Jakub Kicinski <kuba@kernel.org>
13841 L:      netdev@vger.kernel.org
13842 S:      Maintained
13843 F:      include/net/tls.h
13844 F:      include/uapi/linux/tls.h
13845 F:      net/tls/*
13846
13847 NETXEN (1/10) GbE SUPPORT
13848 M:      Manish Chopra <manishc@marvell.com>
13849 M:      Rahul Verma <rahulv@marvell.com>
13850 M:      GR-Linux-NIC-Dev@marvell.com
13851 L:      netdev@vger.kernel.org
13852 S:      Supported
13853 F:      drivers/net/ethernet/qlogic/netxen/
13854
13855 NET_FAILOVER MODULE
13856 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13857 L:      netdev@vger.kernel.org
13858 S:      Supported
13859 F:      Documentation/networking/net_failover.rst
13860 F:      drivers/net/net_failover.c
13861 F:      include/net/net_failover.h
13862
13863 NEXTHOP
13864 M:      David Ahern <dsahern@kernel.org>
13865 L:      netdev@vger.kernel.org
13866 S:      Maintained
13867 F:      include/net/netns/nexthop.h
13868 F:      include/net/nexthop.h
13869 F:      include/uapi/linux/nexthop.h
13870 F:      net/ipv4/nexthop.c
13871
13872 NFC SUBSYSTEM
13873 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13874 L:      linux-nfc@lists.01.org (subscribers-only)
13875 L:      netdev@vger.kernel.org
13876 S:      Maintained
13877 B:      mailto:linux-nfc@lists.01.org
13878 F:      Documentation/devicetree/bindings/net/nfc/
13879 F:      drivers/nfc/
13880 F:      include/linux/platform_data/nfcmrvl.h
13881 F:      include/net/nfc/
13882 F:      include/uapi/linux/nfc.h
13883 F:      net/nfc/
13884
13885 NFC VIRTUAL NCI DEVICE DRIVER
13886 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13887 L:      netdev@vger.kernel.org
13888 L:      linux-nfc@lists.01.org (subscribers-only)
13889 S:      Supported
13890 F:      drivers/nfc/virtual_ncidev.c
13891 F:      tools/testing/selftests/nci/
13892
13893 NFS, SUNRPC, AND LOCKD CLIENTS
13894 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13895 M:      Anna Schumaker <anna@kernel.org>
13896 L:      linux-nfs@vger.kernel.org
13897 S:      Maintained
13898 W:      http://client.linux-nfs.org
13899 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13900 F:      fs/lockd/
13901 F:      fs/nfs/
13902 F:      fs/nfs_common/
13903 F:      include/linux/lockd/
13904 F:      include/linux/nfs*
13905 F:      include/linux/sunrpc/
13906 F:      include/uapi/linux/nfs*
13907 F:      include/uapi/linux/sunrpc/
13908 F:      net/sunrpc/
13909 F:      Documentation/filesystems/nfs/
13910
13911 NILFS2 FILESYSTEM
13912 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13913 L:      linux-nilfs@vger.kernel.org
13914 S:      Supported
13915 W:      https://nilfs.sourceforge.io/
13916 W:      https://nilfs.osdn.jp/
13917 T:      git git://github.com/konis/nilfs2.git
13918 F:      Documentation/filesystems/nilfs2.rst
13919 F:      fs/nilfs2/
13920 F:      include/trace/events/nilfs2.h
13921 F:      include/uapi/linux/nilfs2_api.h
13922 F:      include/uapi/linux/nilfs2_ondisk.h
13923
13924 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13925 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13926 S:      Maintained
13927 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13928 F:      Documentation/scsi/NinjaSCSI.rst
13929 F:      drivers/scsi/pcmcia/nsp_*
13930
13931 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13932 M:      GOTO Masanori <gotom@debian.or.jp>
13933 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13934 S:      Maintained
13935 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13936 F:      Documentation/scsi/NinjaSCSI.rst
13937 F:      drivers/scsi/nsp32*
13938
13939 NINTENDO HID DRIVER
13940 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13941 L:      linux-input@vger.kernel.org
13942 S:      Maintained
13943 F:      drivers/hid/hid-nintendo*
13944
13945 NIOS2 ARCHITECTURE
13946 M:      Dinh Nguyen <dinguyen@kernel.org>
13947 S:      Maintained
13948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13949 F:      arch/nios2/
13950
13951 NITRO ENCLAVES (NE)
13952 M:      Andra Paraschiv <andraprs@amazon.com>
13953 M:      Alexandru Vasile <lexnv@amazon.com>
13954 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13955 L:      linux-kernel@vger.kernel.org
13956 S:      Supported
13957 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13958 F:      Documentation/virt/ne_overview.rst
13959 F:      drivers/virt/nitro_enclaves/
13960 F:      include/linux/nitro_enclaves.h
13961 F:      include/uapi/linux/nitro_enclaves.h
13962 F:      samples/nitro_enclaves/
13963
13964 NOHZ, DYNTICKS SUPPORT
13965 M:      Frederic Weisbecker <fweisbec@gmail.com>
13966 M:      Thomas Gleixner <tglx@linutronix.de>
13967 M:      Ingo Molnar <mingo@kernel.org>
13968 L:      linux-kernel@vger.kernel.org
13969 S:      Maintained
13970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13971 F:      include/linux/sched/nohz.h
13972 F:      include/linux/tick.h
13973 F:      kernel/time/tick*.*
13974
13975 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13976 M:      Pavel Machek <pavel@ucw.cz>
13977 M:      Sakari Ailus <sakari.ailus@iki.fi>
13978 L:      linux-media@vger.kernel.org
13979 S:      Maintained
13980 F:      drivers/media/i2c/ad5820.c
13981 F:      drivers/media/i2c/et8ek8
13982
13983 NOKIA N900 POWER SUPPLY DRIVERS
13984 R:      Pali Rohár <pali@kernel.org>
13985 F:      drivers/power/supply/bq2415x_charger.c
13986 F:      drivers/power/supply/bq27xxx_battery.c
13987 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13988 F:      drivers/power/supply/isp1704_charger.c
13989 F:      drivers/power/supply/rx51_battery.c
13990 F:      include/linux/power/bq2415x_charger.h
13991 F:      include/linux/power/bq27xxx_battery.h
13992
13993 NOLIBC HEADER FILE
13994 M:      Willy Tarreau <w@1wt.eu>
13995 S:      Maintained
13996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13997 F:      tools/include/nolibc/
13998
13999 NSDEPS
14000 M:      Matthias Maennich <maennich@google.com>
14001 S:      Maintained
14002 F:      Documentation/core-api/symbol-namespaces.rst
14003 F:      scripts/nsdeps
14004
14005 NTB AMD DRIVER
14006 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14007 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14008 L:      ntb@lists.linux.dev
14009 S:      Supported
14010 F:      drivers/ntb/hw/amd/
14011
14012 NTB DRIVER CORE
14013 M:      Jon Mason <jdmason@kudzu.us>
14014 M:      Dave Jiang <dave.jiang@intel.com>
14015 M:      Allen Hubbe <allenbh@gmail.com>
14016 L:      ntb@lists.linux.dev
14017 S:      Supported
14018 W:      https://github.com/jonmason/ntb/wiki
14019 T:      git git://github.com/jonmason/ntb.git
14020 F:      drivers/net/ntb_netdev.c
14021 F:      drivers/ntb/
14022 F:      include/linux/ntb.h
14023 F:      include/linux/ntb_transport.h
14024 F:      tools/testing/selftests/ntb/
14025
14026 NTB IDT DRIVER
14027 M:      Serge Semin <fancer.lancer@gmail.com>
14028 L:      ntb@lists.linux.dev
14029 S:      Supported
14030 F:      drivers/ntb/hw/idt/
14031
14032 NTB INTEL DRIVER
14033 M:      Dave Jiang <dave.jiang@intel.com>
14034 L:      ntb@lists.linux.dev
14035 S:      Supported
14036 W:      https://github.com/davejiang/linux/wiki
14037 T:      git https://github.com/davejiang/linux.git
14038 F:      drivers/ntb/hw/intel/
14039
14040 NTFS FILESYSTEM
14041 M:      Anton Altaparmakov <anton@tuxera.com>
14042 L:      linux-ntfs-dev@lists.sourceforge.net
14043 S:      Supported
14044 W:      http://www.tuxera.com/
14045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14046 F:      Documentation/filesystems/ntfs.rst
14047 F:      fs/ntfs/
14048
14049 NTFS3 FILESYSTEM
14050 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14051 L:      ntfs3@lists.linux.dev
14052 S:      Supported
14053 W:      http://www.paragon-software.com/
14054 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14055 F:      Documentation/filesystems/ntfs3.rst
14056 F:      fs/ntfs3/
14057
14058 NUBUS SUBSYSTEM
14059 M:      Finn Thain <fthain@linux-m68k.org>
14060 L:      linux-m68k@lists.linux-m68k.org
14061 S:      Maintained
14062 F:      arch/*/include/asm/nubus.h
14063 F:      drivers/nubus/
14064 F:      include/linux/nubus.h
14065 F:      include/uapi/linux/nubus.h
14066
14067 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14068 M:      Antonino Daplas <adaplas@gmail.com>
14069 L:      linux-fbdev@vger.kernel.org
14070 S:      Maintained
14071 F:      drivers/video/fbdev/nvidia/
14072 F:      drivers/video/fbdev/riva/
14073
14074 NVIDIA WMI EC BACKLIGHT DRIVER
14075 M:      Daniel Dadap <ddadap@nvidia.com>
14076 L:      platform-driver-x86@vger.kernel.org
14077 S:      Supported
14078 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14079
14080 NVM EXPRESS DRIVER
14081 M:      Keith Busch <kbusch@kernel.org>
14082 M:      Jens Axboe <axboe@fb.com>
14083 M:      Christoph Hellwig <hch@lst.de>
14084 M:      Sagi Grimberg <sagi@grimberg.me>
14085 L:      linux-nvme@lists.infradead.org
14086 S:      Supported
14087 W:      http://git.infradead.org/nvme.git
14088 T:      git://git.infradead.org/nvme.git
14089 F:      drivers/nvme/host/
14090 F:      include/linux/nvme.h
14091 F:      include/uapi/linux/nvme_ioctl.h
14092
14093 NVM EXPRESS FC TRANSPORT DRIVERS
14094 M:      James Smart <james.smart@broadcom.com>
14095 L:      linux-nvme@lists.infradead.org
14096 S:      Supported
14097 F:      drivers/nvme/host/fc.c
14098 F:      drivers/nvme/target/fc.c
14099 F:      drivers/nvme/target/fcloop.c
14100 F:      include/linux/nvme-fc-driver.h
14101 F:      include/linux/nvme-fc.h
14102
14103 NVM EXPRESS TARGET DRIVER
14104 M:      Christoph Hellwig <hch@lst.de>
14105 M:      Sagi Grimberg <sagi@grimberg.me>
14106 M:      Chaitanya Kulkarni <kch@nvidia.com>
14107 L:      linux-nvme@lists.infradead.org
14108 S:      Supported
14109 W:      http://git.infradead.org/nvme.git
14110 T:      git://git.infradead.org/nvme.git
14111 F:      drivers/nvme/target/
14112
14113 NVMEM FRAMEWORK
14114 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14115 S:      Maintained
14116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14117 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14118 F:      Documentation/devicetree/bindings/nvmem/
14119 F:      drivers/nvmem/
14120 F:      include/linux/nvmem-consumer.h
14121 F:      include/linux/nvmem-provider.h
14122
14123 NXP C45 TJA11XX PHY DRIVER
14124 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14125 L:      netdev@vger.kernel.org
14126 S:      Maintained
14127 F:      drivers/net/phy/nxp-c45-tja11xx.c
14128
14129 NXP FSPI DRIVER
14130 M:      Ashish Kumar <ashish.kumar@nxp.com>
14131 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14132 L:      linux-spi@vger.kernel.org
14133 S:      Maintained
14134 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14135 F:      drivers/spi/spi-nxp-fspi.c
14136
14137 NXP FXAS21002C DRIVER
14138 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14139 L:      linux-iio@vger.kernel.org
14140 S:      Maintained
14141 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14142 F:      drivers/iio/gyro/fxas21002c.h
14143 F:      drivers/iio/gyro/fxas21002c_core.c
14144 F:      drivers/iio/gyro/fxas21002c_i2c.c
14145 F:      drivers/iio/gyro/fxas21002c_spi.c
14146
14147 NXP i.MX CLOCK DRIVERS
14148 M:      Abel Vesa <abel.vesa@nxp.com>
14149 L:      linux-clk@vger.kernel.org
14150 L:      linux-imx@nxp.com
14151 S:      Maintained
14152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14153 F:      Documentation/devicetree/bindings/clock/imx*
14154 F:      drivers/clk/imx/
14155 F:      include/dt-bindings/clock/imx*
14156
14157 NXP i.MX 8MQ DCSS DRIVER
14158 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14159 R:      Lucas Stach <l.stach@pengutronix.de>
14160 L:      dri-devel@lists.freedesktop.org
14161 S:      Maintained
14162 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14163 F:      drivers/gpu/drm/imx/dcss/
14164
14165 NXP i.MX 8QXP ADC DRIVER
14166 M:      Cai Huoqing <cai.huoqing@linux.dev>
14167 M:      Haibo Chen <haibo.chen@nxp.com>
14168 L:      linux-imx@nxp.com
14169 L:      linux-iio@vger.kernel.org
14170 S:      Maintained
14171 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14172 F:      drivers/iio/adc/imx8qxp-adc.c
14173
14174 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14175 M:      Haibo Chen <haibo.chen@nxp.com>
14176 L:      linux-iio@vger.kernel.org
14177 L:      linux-imx@nxp.com
14178 S:      Maintained
14179 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14180 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14181 F:      drivers/iio/adc/imx7d_adc.c
14182 F:      drivers/iio/adc/vf610_adc.c
14183
14184 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14185 M:      Jagan Teki <jagan@amarulasolutions.com>
14186 S:      Maintained
14187 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14188 F:      drivers/regulator/pf8x00-regulator.c
14189
14190 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14191 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14192 L:      linux-kernel@vger.kernel.org
14193 S:      Maintained
14194 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14195 F:      drivers/extcon/extcon-ptn5150.c
14196
14197 NXP SGTL5000 DRIVER
14198 M:      Fabio Estevam <festevam@gmail.com>
14199 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14200 S:      Maintained
14201 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14202 F:      sound/soc/codecs/sgtl5000*
14203
14204 NXP SJA1105 ETHERNET SWITCH DRIVER
14205 M:      Vladimir Oltean <olteanv@gmail.com>
14206 L:      linux-kernel@vger.kernel.org
14207 S:      Maintained
14208 F:      drivers/net/dsa/sja1105
14209 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14210
14211 NXP TDA998X DRM DRIVER
14212 M:      Russell King <linux@armlinux.org.uk>
14213 S:      Maintained
14214 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14215 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14216 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14217 F:      include/drm/i2c/tda998x.h
14218 F:      include/dt-bindings/display/tda998x.h
14219 K:      "nxp,tda998x"
14220
14221 NXP TFA9879 DRIVER
14222 M:      Peter Rosin <peda@axentia.se>
14223 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14224 S:      Maintained
14225 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14226 F:      sound/soc/codecs/tfa9879*
14227
14228 NXP/Goodix TFA989X (TFA1) DRIVER
14229 M:      Stephan Gerhold <stephan@gerhold.net>
14230 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14231 S:      Maintained
14232 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14233 F:      sound/soc/codecs/tfa989x.c
14234
14235 NXP-NCI NFC DRIVER
14236 R:      Charles Gorand <charles.gorand@effinnov.com>
14237 L:      linux-nfc@lists.01.org (subscribers-only)
14238 S:      Supported
14239 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14240 F:      drivers/nfc/nxp-nci
14241
14242 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14243 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14244 R:      NXP Linux Team <linux-imx@nxp.com>
14245 L:      linux-media@vger.kernel.org
14246 S:      Maintained
14247 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14248 F:      drivers/media/platform/nxp/imx-jpeg
14249
14250 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14251 M:      Jonas Malaco <jonas@protocubo.io>
14252 L:      linux-hwmon@vger.kernel.org
14253 S:      Maintained
14254 F:      Documentation/hwmon/nzxt-kraken2.rst
14255 F:      drivers/hwmon/nzxt-kraken2.c
14256
14257 NZXT-SMART2 HARDWARE MONITORING DRIVER
14258 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14259 L:      linux-hwmon@vger.kernel.org
14260 S:      Maintained
14261 F:      Documentation/hwmon/nzxt-smart2.rst
14262 F:      drivers/hwmon/nzxt-smart2.c
14263
14264 OBJAGG
14265 M:      Jiri Pirko <jiri@nvidia.com>
14266 L:      netdev@vger.kernel.org
14267 S:      Supported
14268 F:      include/linux/objagg.h
14269 F:      lib/objagg.c
14270 F:      lib/test_objagg.c
14271
14272 OBJTOOL
14273 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14274 M:      Peter Zijlstra <peterz@infradead.org>
14275 S:      Supported
14276 F:      tools/objtool/
14277 F:      include/linux/objtool.h
14278
14279 OCELOT ETHERNET SWITCH DRIVER
14280 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14281 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14282 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14283 M:      UNGLinuxDriver@microchip.com
14284 L:      netdev@vger.kernel.org
14285 S:      Supported
14286 F:      drivers/net/dsa/ocelot/*
14287 F:      drivers/net/ethernet/mscc/
14288 F:      include/soc/mscc/ocelot*
14289 F:      net/dsa/tag_ocelot.c
14290 F:      net/dsa/tag_ocelot_8021q.c
14291 F:      tools/testing/selftests/drivers/net/ocelot/*
14292
14293 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14294 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14295 M:      Andrew Donnellan <ajd@linux.ibm.com>
14296 L:      linuxppc-dev@lists.ozlabs.org
14297 S:      Supported
14298 F:      Documentation/userspace-api/accelerators/ocxl.rst
14299 F:      arch/powerpc/include/asm/pnv-ocxl.h
14300 F:      arch/powerpc/platforms/powernv/ocxl.c
14301 F:      drivers/misc/ocxl/
14302 F:      include/misc/ocxl*
14303 F:      include/uapi/misc/ocxl.h
14304
14305 OMAP AUDIO SUPPORT
14306 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14307 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14308 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14309 L:      linux-omap@vger.kernel.org
14310 S:      Maintained
14311 F:      sound/soc/ti/n810.c
14312 F:      sound/soc/ti/omap*
14313 F:      sound/soc/ti/rx51.c
14314 F:      sound/soc/ti/sdma-pcm.*
14315
14316 OMAP CLOCK FRAMEWORK SUPPORT
14317 M:      Paul Walmsley <paul@pwsan.com>
14318 L:      linux-omap@vger.kernel.org
14319 S:      Maintained
14320 F:      arch/arm/*omap*/*clock*
14321
14322 OMAP DEVICE TREE SUPPORT
14323 M:      Benoît Cousson <bcousson@baylibre.com>
14324 M:      Tony Lindgren <tony@atomide.com>
14325 L:      linux-omap@vger.kernel.org
14326 L:      devicetree@vger.kernel.org
14327 S:      Maintained
14328 F:      arch/arm/boot/dts/*am3*
14329 F:      arch/arm/boot/dts/*am4*
14330 F:      arch/arm/boot/dts/*am5*
14331 F:      arch/arm/boot/dts/*dra7*
14332 F:      arch/arm/boot/dts/*omap*
14333 F:      arch/arm/boot/dts/logicpd-som-lv*
14334 F:      arch/arm/boot/dts/logicpd-torpedo*
14335
14336 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14337 L:      linux-omap@vger.kernel.org
14338 L:      linux-fbdev@vger.kernel.org
14339 S:      Orphan
14340 F:      Documentation/arm/omap/dss.rst
14341 F:      drivers/video/fbdev/omap2/
14342
14343 OMAP FRAMEBUFFER SUPPORT
14344 L:      linux-fbdev@vger.kernel.org
14345 L:      linux-omap@vger.kernel.org
14346 S:      Orphan
14347 F:      drivers/video/fbdev/omap/
14348
14349 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14350 M:      Roger Quadros <rogerq@kernel.org>
14351 M:      Tony Lindgren <tony@atomide.com>
14352 L:      linux-omap@vger.kernel.org
14353 S:      Maintained
14354 F:      arch/arm/mach-omap2/*gpmc*
14355 F:      drivers/memory/omap-gpmc.c
14356
14357 OMAP GPIO DRIVER
14358 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14359 M:      Santosh Shilimkar <ssantosh@kernel.org>
14360 M:      Kevin Hilman <khilman@kernel.org>
14361 L:      linux-omap@vger.kernel.org
14362 S:      Maintained
14363 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14364 F:      drivers/gpio/gpio-omap.c
14365
14366 OMAP HARDWARE SPINLOCK SUPPORT
14367 M:      Ohad Ben-Cohen <ohad@wizery.com>
14368 L:      linux-omap@vger.kernel.org
14369 S:      Maintained
14370 F:      drivers/hwspinlock/omap_hwspinlock.c
14371
14372 OMAP HS MMC SUPPORT
14373 L:      linux-mmc@vger.kernel.org
14374 L:      linux-omap@vger.kernel.org
14375 S:      Orphan
14376 F:      drivers/mmc/host/omap_hsmmc.c
14377
14378 OMAP HWMOD DATA
14379 M:      Paul Walmsley <paul@pwsan.com>
14380 L:      linux-omap@vger.kernel.org
14381 S:      Maintained
14382 F:      arch/arm/mach-omap2/omap_hwmod*data*
14383
14384 OMAP HWMOD SUPPORT
14385 M:      Benoît Cousson <bcousson@baylibre.com>
14386 M:      Paul Walmsley <paul@pwsan.com>
14387 L:      linux-omap@vger.kernel.org
14388 S:      Maintained
14389 F:      arch/arm/mach-omap2/omap_hwmod.*
14390
14391 OMAP I2C DRIVER
14392 M:      Vignesh R <vigneshr@ti.com>
14393 L:      linux-omap@vger.kernel.org
14394 L:      linux-i2c@vger.kernel.org
14395 S:      Maintained
14396 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14397 F:      drivers/i2c/busses/i2c-omap.c
14398
14399 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14400 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14401 L:      linux-media@vger.kernel.org
14402 S:      Maintained
14403 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14404 F:      drivers/media/platform/ti/omap3isp/
14405 F:      drivers/staging/media/omap4iss/
14406
14407 OMAP MMC SUPPORT
14408 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14409 L:      linux-omap@vger.kernel.org
14410 S:      Odd Fixes
14411 F:      drivers/mmc/host/omap.c
14412
14413 OMAP POWER MANAGEMENT SUPPORT
14414 M:      Kevin Hilman <khilman@kernel.org>
14415 L:      linux-omap@vger.kernel.org
14416 S:      Maintained
14417 F:      arch/arm/*omap*/*pm*
14418 F:      drivers/cpufreq/omap-cpufreq.c
14419
14420 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14421 M:      Paul Walmsley <paul@pwsan.com>
14422 L:      linux-omap@vger.kernel.org
14423 S:      Maintained
14424 F:      arch/arm/mach-omap2/prm*
14425
14426 OMAP RANDOM NUMBER GENERATOR SUPPORT
14427 M:      Deepak Saxena <dsaxena@plexity.net>
14428 S:      Maintained
14429 F:      drivers/char/hw_random/omap-rng.c
14430
14431 OMAP USB SUPPORT
14432 L:      linux-usb@vger.kernel.org
14433 L:      linux-omap@vger.kernel.org
14434 S:      Orphan
14435 F:      arch/arm/*omap*/usb*
14436 F:      drivers/usb/*/*omap*
14437
14438 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14439 M:      Mark Jackson <mpfj@newflow.co.uk>
14440 L:      linux-omap@vger.kernel.org
14441 S:      Maintained
14442 F:      arch/arm/boot/dts/am335x-nano.dts
14443
14444 OMAP1 SUPPORT
14445 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14446 M:      Tony Lindgren <tony@atomide.com>
14447 L:      linux-omap@vger.kernel.org
14448 S:      Maintained
14449 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14451 F:      arch/arm/configs/omap1_defconfig
14452 F:      arch/arm/mach-omap1/
14453 F:      arch/arm/plat-omap/
14454 F:      drivers/i2c/busses/i2c-omap.c
14455 F:      include/linux/platform_data/ams-delta-fiq.h
14456 F:      include/linux/platform_data/i2c-omap.h
14457
14458 OMAP2+ SUPPORT
14459 M:      Tony Lindgren <tony@atomide.com>
14460 L:      linux-omap@vger.kernel.org
14461 S:      Maintained
14462 W:      http://www.muru.com/linux/omap/
14463 W:      http://linux.omap.com/
14464 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14466 F:      arch/arm/configs/omap2plus_defconfig
14467 F:      arch/arm/mach-omap2/
14468 F:      arch/arm/plat-omap/
14469 F:      drivers/bus/ti-sysc.c
14470 F:      drivers/i2c/busses/i2c-omap.c
14471 F:      drivers/irqchip/irq-omap-intc.c
14472 F:      drivers/mfd/*omap*.c
14473 F:      drivers/mfd/menelaus.c
14474 F:      drivers/mfd/palmas.c
14475 F:      drivers/mfd/tps65217.c
14476 F:      drivers/mfd/tps65218.c
14477 F:      drivers/mfd/tps65910.c
14478 F:      drivers/mfd/twl-core.[ch]
14479 F:      drivers/mfd/twl4030*.c
14480 F:      drivers/mfd/twl6030*.c
14481 F:      drivers/mfd/twl6040*.c
14482 F:      drivers/regulator/palmas-regulator*.c
14483 F:      drivers/regulator/pbias-regulator.c
14484 F:      drivers/regulator/tps65217-regulator.c
14485 F:      drivers/regulator/tps65218-regulator.c
14486 F:      drivers/regulator/tps65910-regulator.c
14487 F:      drivers/regulator/twl-regulator.c
14488 F:      drivers/regulator/twl6030-regulator.c
14489 F:      include/linux/platform_data/i2c-omap.h
14490 F:      include/linux/platform_data/ti-sysc.h
14491
14492 OMFS FILESYSTEM
14493 M:      Bob Copeland <me@bobcopeland.com>
14494 L:      linux-karma-devel@lists.sourceforge.net
14495 S:      Maintained
14496 F:      Documentation/filesystems/omfs.rst
14497 F:      fs/omfs/
14498
14499 OMNIKEY CARDMAN 4000 DRIVER
14500 M:      Harald Welte <laforge@gnumonks.org>
14501 S:      Maintained
14502 F:      drivers/char/pcmcia/cm4000_cs.c
14503 F:      include/linux/cm4000_cs.h
14504 F:      include/uapi/linux/cm4000_cs.h
14505
14506 OMNIKEY CARDMAN 4040 DRIVER
14507 M:      Harald Welte <laforge@gnumonks.org>
14508 S:      Maintained
14509 F:      drivers/char/pcmcia/cm4040_cs.*
14510
14511 OMNIVISION OG01A1B SENSOR DRIVER
14512 M:      Shawn Tu <shawnx.tu@intel.com>
14513 L:      linux-media@vger.kernel.org
14514 S:      Maintained
14515 F:      drivers/media/i2c/og01a1b.c
14516
14517 OMNIVISION OV02A10 SENSOR DRIVER
14518 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14519 L:      linux-media@vger.kernel.org
14520 S:      Maintained
14521 T:      git git://linuxtv.org/media_tree.git
14522 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14523 F:      drivers/media/i2c/ov02a10.c
14524
14525 OMNIVISION OV08D10 SENSOR DRIVER
14526 M:      Jimmy Su <jimmy.su@intel.com>
14527 L:      linux-media@vger.kernel.org
14528 S:      Maintained
14529 T:      git git://linuxtv.org/media_tree.git
14530 F:      drivers/media/i2c/ov08d10.c
14531
14532 OMNIVISION OV13858 SENSOR DRIVER
14533 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14534 L:      linux-media@vger.kernel.org
14535 S:      Maintained
14536 T:      git git://linuxtv.org/media_tree.git
14537 F:      drivers/media/i2c/ov13858.c
14538
14539 OMNIVISION OV13B10 SENSOR DRIVER
14540 M:      Arec Kao <arec.kao@intel.com>
14541 L:      linux-media@vger.kernel.org
14542 S:      Maintained
14543 T:      git git://linuxtv.org/media_tree.git
14544 F:      drivers/media/i2c/ov13b10.c
14545
14546 OMNIVISION OV2680 SENSOR DRIVER
14547 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14548 L:      linux-media@vger.kernel.org
14549 S:      Maintained
14550 T:      git git://linuxtv.org/media_tree.git
14551 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14552 F:      drivers/media/i2c/ov2680.c
14553
14554 OMNIVISION OV2685 SENSOR DRIVER
14555 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14556 L:      linux-media@vger.kernel.org
14557 S:      Maintained
14558 T:      git git://linuxtv.org/media_tree.git
14559 F:      drivers/media/i2c/ov2685.c
14560
14561 OMNIVISION OV2740 SENSOR DRIVER
14562 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14563 R:      Shawn Tu <shawnx.tu@intel.com>
14564 R:      Bingbu Cao <bingbu.cao@intel.com>
14565 L:      linux-media@vger.kernel.org
14566 S:      Maintained
14567 T:      git git://linuxtv.org/media_tree.git
14568 F:      drivers/media/i2c/ov2740.c
14569
14570 OMNIVISION OV5640 SENSOR DRIVER
14571 M:      Steve Longerbeam <slongerbeam@gmail.com>
14572 L:      linux-media@vger.kernel.org
14573 S:      Maintained
14574 T:      git git://linuxtv.org/media_tree.git
14575 F:      drivers/media/i2c/ov5640.c
14576
14577 OMNIVISION OV5647 SENSOR DRIVER
14578 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14579 M:      Jacopo Mondi <jacopo@jmondi.org>
14580 L:      linux-media@vger.kernel.org
14581 S:      Maintained
14582 T:      git git://linuxtv.org/media_tree.git
14583 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14584 F:      drivers/media/i2c/ov5647.c
14585
14586 OMNIVISION OV5670 SENSOR DRIVER
14587 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14588 L:      linux-media@vger.kernel.org
14589 S:      Maintained
14590 T:      git git://linuxtv.org/media_tree.git
14591 F:      drivers/media/i2c/ov5670.c
14592
14593 OMNIVISION OV5675 SENSOR DRIVER
14594 M:      Shawn Tu <shawnx.tu@intel.com>
14595 L:      linux-media@vger.kernel.org
14596 S:      Maintained
14597 T:      git git://linuxtv.org/media_tree.git
14598 F:      drivers/media/i2c/ov5675.c
14599
14600 OMNIVISION OV5693 SENSOR DRIVER
14601 M:      Daniel Scally <djrscally@gmail.com>
14602 L:      linux-media@vger.kernel.org
14603 S:      Maintained
14604 T:      git git://linuxtv.org/media_tree.git
14605 F:      drivers/media/i2c/ov5693.c
14606
14607 OMNIVISION OV5695 SENSOR DRIVER
14608 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14609 L:      linux-media@vger.kernel.org
14610 S:      Maintained
14611 T:      git git://linuxtv.org/media_tree.git
14612 F:      drivers/media/i2c/ov5695.c
14613
14614 OMNIVISION OV7670 SENSOR DRIVER
14615 L:      linux-media@vger.kernel.org
14616 S:      Orphan
14617 T:      git git://linuxtv.org/media_tree.git
14618 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14619 F:      drivers/media/i2c/ov7670.c
14620
14621 OMNIVISION OV772x SENSOR DRIVER
14622 M:      Jacopo Mondi <jacopo@jmondi.org>
14623 L:      linux-media@vger.kernel.org
14624 S:      Odd fixes
14625 T:      git git://linuxtv.org/media_tree.git
14626 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14627 F:      drivers/media/i2c/ov772x.c
14628 F:      include/media/i2c/ov772x.h
14629
14630 OMNIVISION OV7740 SENSOR DRIVER
14631 M:      Wenyou Yang <wenyou.yang@microchip.com>
14632 L:      linux-media@vger.kernel.org
14633 S:      Maintained
14634 T:      git git://linuxtv.org/media_tree.git
14635 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14636 F:      drivers/media/i2c/ov7740.c
14637
14638 OMNIVISION OV8856 SENSOR DRIVER
14639 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14640 L:      linux-media@vger.kernel.org
14641 S:      Maintained
14642 T:      git git://linuxtv.org/media_tree.git
14643 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14644 F:      drivers/media/i2c/ov8856.c
14645
14646 OMNIVISION OV9282 SENSOR DRIVER
14647 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14648 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14649 L:      linux-media@vger.kernel.org
14650 S:      Maintained
14651 T:      git git://linuxtv.org/media_tree.git
14652 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14653 F:      drivers/media/i2c/ov9282.c
14654
14655 OMNIVISION OV9640 SENSOR DRIVER
14656 M:      Petr Cvek <petrcvekcz@gmail.com>
14657 L:      linux-media@vger.kernel.org
14658 S:      Maintained
14659 F:      drivers/media/i2c/ov9640.*
14660
14661 OMNIVISION OV9650 SENSOR DRIVER
14662 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14663 R:      Akinobu Mita <akinobu.mita@gmail.com>
14664 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14665 L:      linux-media@vger.kernel.org
14666 S:      Maintained
14667 T:      git git://linuxtv.org/media_tree.git
14668 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14669 F:      drivers/media/i2c/ov9650.c
14670
14671 OMNIVISION OV9734 SENSOR DRIVER
14672 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14673 R:      Bingbu Cao <bingbu.cao@intel.com>
14674 L:      linux-media@vger.kernel.org
14675 S:      Maintained
14676 T:      git git://linuxtv.org/media_tree.git
14677 F:      drivers/media/i2c/ov9734.c
14678
14679 ONENAND FLASH DRIVER
14680 M:      Kyungmin Park <kyungmin.park@samsung.com>
14681 L:      linux-mtd@lists.infradead.org
14682 S:      Maintained
14683 F:      drivers/mtd/nand/onenand/
14684 F:      include/linux/mtd/onenand*.h
14685
14686 ONION OMEGA2+ BOARD
14687 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14688 L:      linux-mips@vger.kernel.org
14689 S:      Maintained
14690 F:      arch/mips/boot/dts/ralink/omega2p.dts
14691
14692 OP-TEE DRIVER
14693 M:      Jens Wiklander <jens.wiklander@linaro.org>
14694 L:      op-tee@lists.trustedfirmware.org
14695 S:      Maintained
14696 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14697 F:      drivers/tee/optee/
14698
14699 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14700 M:      Sumit Garg <sumit.garg@linaro.org>
14701 L:      op-tee@lists.trustedfirmware.org
14702 S:      Maintained
14703 F:      drivers/char/hw_random/optee-rng.c
14704
14705 OP-TEE RTC DRIVER
14706 M:      Clément Léger <clement.leger@bootlin.com>
14707 L:      linux-rtc@vger.kernel.org
14708 S:      Maintained
14709 F:      drivers/rtc/rtc-optee.c
14710
14711 OPA-VNIC DRIVER
14712 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14713 L:      linux-rdma@vger.kernel.org
14714 S:      Supported
14715 F:      drivers/infiniband/ulp/opa_vnic
14716
14717 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14718 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14719 M:      Frank Rowand <frowand.list@gmail.com>
14720 L:      devicetree@vger.kernel.org
14721 S:      Maintained
14722 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14723 F:      Documentation/devicetree/overlay-notes.rst
14724 F:      drivers/of/overlay.c
14725 F:      drivers/of/resolver.c
14726 K:      of_overlay_notifier_
14727
14728 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14729 M:      Rob Herring <robh+dt@kernel.org>
14730 M:      Frank Rowand <frowand.list@gmail.com>
14731 L:      devicetree@vger.kernel.org
14732 S:      Maintained
14733 C:      irc://irc.libera.chat/devicetree
14734 W:      http://www.devicetree.org/
14735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14736 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14737 F:      drivers/of/
14738 F:      include/linux/of*.h
14739 F:      scripts/dtc/
14740
14741 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14742 M:      Rob Herring <robh+dt@kernel.org>
14743 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
14744 L:      devicetree@vger.kernel.org
14745 S:      Maintained
14746 C:      irc://irc.libera.chat/devicetree
14747 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14749 F:      Documentation/devicetree/
14750 F:      arch/*/boot/dts/
14751 F:      include/dt-bindings/
14752
14753 OPENCOMPUTE PTP CLOCK DRIVER
14754 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14755 L:      netdev@vger.kernel.org
14756 S:      Maintained
14757 F:      drivers/ptp/ptp_ocp.c
14758
14759 OPENCORES I2C BUS DRIVER
14760 M:      Peter Korsgaard <peter@korsgaard.com>
14761 M:      Andrew Lunn <andrew@lunn.ch>
14762 L:      linux-i2c@vger.kernel.org
14763 S:      Maintained
14764 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14765 F:      Documentation/i2c/busses/i2c-ocores.rst
14766 F:      drivers/i2c/busses/i2c-ocores.c
14767 F:      include/linux/platform_data/i2c-ocores.h
14768
14769 OPENRISC ARCHITECTURE
14770 M:      Jonas Bonn <jonas@southpole.se>
14771 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14772 M:      Stafford Horne <shorne@gmail.com>
14773 L:      openrisc@lists.librecores.org
14774 S:      Maintained
14775 W:      http://openrisc.io
14776 T:      git git://github.com/openrisc/linux.git
14777 F:      Documentation/devicetree/bindings/openrisc/
14778 F:      Documentation/openrisc/
14779 F:      arch/openrisc/
14780 F:      drivers/irqchip/irq-ompic.c
14781 F:      drivers/irqchip/irq-or1k-*
14782
14783 OPENVSWITCH
14784 M:      Pravin B Shelar <pshelar@ovn.org>
14785 L:      netdev@vger.kernel.org
14786 L:      dev@openvswitch.org
14787 S:      Maintained
14788 W:      http://openvswitch.org
14789 F:      include/uapi/linux/openvswitch.h
14790 F:      net/openvswitch/
14791
14792 OPERATING PERFORMANCE POINTS (OPP)
14793 M:      Viresh Kumar <vireshk@kernel.org>
14794 M:      Nishanth Menon <nm@ti.com>
14795 M:      Stephen Boyd <sboyd@kernel.org>
14796 L:      linux-pm@vger.kernel.org
14797 S:      Maintained
14798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14799 F:      Documentation/devicetree/bindings/opp/
14800 F:      Documentation/power/opp.rst
14801 F:      drivers/opp/
14802 F:      include/linux/pm_opp.h
14803
14804 OPL4 DRIVER
14805 M:      Clemens Ladisch <clemens@ladisch.de>
14806 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14807 S:      Maintained
14808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14809 F:      sound/drivers/opl4/
14810
14811 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14812 M:      Mark Fasheh <mark@fasheh.com>
14813 M:      Joel Becker <jlbec@evilplan.org>
14814 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14815 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14816 S:      Supported
14817 W:      http://ocfs2.wiki.kernel.org
14818 F:      Documentation/filesystems/dlmfs.rst
14819 F:      Documentation/filesystems/ocfs2.rst
14820 F:      fs/ocfs2/
14821
14822 ORANGEFS FILESYSTEM
14823 M:      Mike Marshall <hubcap@omnibond.com>
14824 R:      Martin Brandenburg <martin@omnibond.com>
14825 L:      devel@lists.orangefs.org
14826 S:      Supported
14827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14828 F:      Documentation/filesystems/orangefs.rst
14829 F:      fs/orangefs/
14830
14831 ORINOCO DRIVER
14832 L:      linux-wireless@vger.kernel.org
14833 S:      Orphan
14834 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14835 W:      http://www.nongnu.org/orinoco/
14836 F:      drivers/net/wireless/intersil/orinoco/
14837
14838 OV2659 OMNIVISION SENSOR DRIVER
14839 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14840 L:      linux-media@vger.kernel.org
14841 S:      Maintained
14842 W:      https://linuxtv.org
14843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14844 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14845 F:      drivers/media/i2c/ov2659.c
14846 F:      include/media/i2c/ov2659.h
14847
14848 OVERLAY FILESYSTEM
14849 M:      Miklos Szeredi <miklos@szeredi.hu>
14850 L:      linux-unionfs@vger.kernel.org
14851 S:      Supported
14852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14853 F:      Documentation/filesystems/overlayfs.rst
14854 F:      fs/overlayfs/
14855
14856 P54 WIRELESS DRIVER
14857 M:      Christian Lamparter <chunkeey@googlemail.com>
14858 L:      linux-wireless@vger.kernel.org
14859 S:      Maintained
14860 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14861 F:      drivers/net/wireless/intersil/p54/
14862
14863 PACKING
14864 M:      Vladimir Oltean <olteanv@gmail.com>
14865 L:      netdev@vger.kernel.org
14866 S:      Supported
14867 F:      Documentation/core-api/packing.rst
14868 F:      include/linux/packing.h
14869 F:      lib/packing.c
14870
14871 PADATA PARALLEL EXECUTION MECHANISM
14872 M:      Steffen Klassert <steffen.klassert@secunet.com>
14873 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14874 L:      linux-crypto@vger.kernel.org
14875 L:      linux-kernel@vger.kernel.org
14876 S:      Maintained
14877 F:      Documentation/core-api/padata.rst
14878 F:      include/linux/padata.h
14879 F:      kernel/padata.c
14880
14881 PAGE CACHE
14882 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
14883 L:      linux-fsdevel@vger.kernel.org
14884 S:      Supported
14885 T:      git git://git.infradead.org/users/willy/pagecache.git
14886 F:      Documentation/filesystems/locking.rst
14887 F:      Documentation/filesystems/vfs.rst
14888 F:      include/linux/pagemap.h
14889 F:      mm/filemap.c
14890 F:      mm/page-writeback.c
14891 F:      mm/readahead.c
14892 F:      mm/truncate.c
14893
14894 PAGE POOL
14895 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14896 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14897 L:      netdev@vger.kernel.org
14898 S:      Supported
14899 F:      Documentation/networking/page_pool.rst
14900 F:      include/net/page_pool.h
14901 F:      include/trace/events/page_pool.h
14902 F:      net/core/page_pool.c
14903
14904 PAGE TABLE CHECK
14905 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
14906 M:      Andrew Morton <akpm@linux-foundation.org>
14907 L:      linux-mm@kvack.org
14908 S:      Maintained
14909 F:      Documentation/vm/page_table_check.rst
14910 F:      include/linux/page_table_check.h
14911 F:      mm/page_table_check.c
14912
14913 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14914 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14915 L:      platform-driver-x86@vger.kernel.org
14916 S:      Maintained
14917 F:      drivers/platform/x86/panasonic-laptop.c
14918
14919 PARALLAX PING IIO SENSOR DRIVER
14920 M:      Andreas Klinger <ak@it-klinger.de>
14921 L:      linux-iio@vger.kernel.org
14922 S:      Maintained
14923 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14924 F:      drivers/iio/proximity/ping.c
14925
14926 PARALLEL LCD/KEYPAD PANEL DRIVER
14927 M:      Willy Tarreau <willy@haproxy.com>
14928 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14929 S:      Odd Fixes
14930 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14931 F:      drivers/auxdisplay/panel.c
14932
14933 PARALLEL PORT SUBSYSTEM
14934 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14935 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14936 L:      linux-parport@lists.infradead.org (subscribers-only)
14937 S:      Maintained
14938 F:      Documentation/driver-api/parport*.rst
14939 F:      drivers/char/ppdev.c
14940 F:      drivers/parport/
14941 F:      include/linux/parport*.h
14942 F:      include/uapi/linux/ppdev.h
14943
14944 PARAVIRT_OPS INTERFACE
14945 M:      Juergen Gross <jgross@suse.com>
14946 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
14947 R:      Alexey Makhalov <amakhalov@vmware.com>
14948 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
14949 L:      virtualization@lists.linux-foundation.org
14950 L:      x86@kernel.org
14951 S:      Supported
14952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14953 F:      Documentation/virt/paravirt_ops.rst
14954 F:      arch/*/include/asm/paravirt*.h
14955 F:      arch/*/kernel/paravirt*
14956 F:      include/linux/hypervisor.h
14957
14958 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14959 M:      Tim Waugh <tim@cyberelk.net>
14960 L:      linux-parport@lists.infradead.org (subscribers-only)
14961 S:      Maintained
14962 F:      Documentation/admin-guide/blockdev/paride.rst
14963 F:      drivers/block/paride/
14964
14965 PARISC ARCHITECTURE
14966 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14967 M:      Helge Deller <deller@gmx.de>
14968 L:      linux-parisc@vger.kernel.org
14969 S:      Maintained
14970 W:      https://parisc.wiki.kernel.org
14971 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14974 F:      Documentation/parisc/
14975 F:      arch/parisc/
14976 F:      drivers/char/agp/parisc-agp.c
14977 F:      drivers/input/misc/hp_sdc_rtc.c
14978 F:      drivers/input/serio/gscps2.c
14979 F:      drivers/input/serio/hp_sdc*
14980 F:      drivers/parisc/
14981 F:      drivers/parport/parport_gsc.*
14982 F:      drivers/tty/serial/8250/8250_gsc.c
14983 F:      drivers/video/console/sti*
14984 F:      drivers/video/fbdev/sti*
14985 F:      drivers/video/logo/logo_parisc*
14986 F:      include/linux/hp_sdc.h
14987
14988 PARMAN
14989 M:      Jiri Pirko <jiri@nvidia.com>
14990 L:      netdev@vger.kernel.org
14991 S:      Supported
14992 F:      include/linux/parman.h
14993 F:      lib/parman.c
14994 F:      lib/test_parman.c
14995
14996 PC ENGINES APU BOARD DRIVER
14997 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14998 S:      Maintained
14999 F:      drivers/platform/x86/pcengines-apuv2.c
15000
15001 PC87360 HARDWARE MONITORING DRIVER
15002 M:      Jim Cromie <jim.cromie@gmail.com>
15003 L:      linux-hwmon@vger.kernel.org
15004 S:      Maintained
15005 F:      Documentation/hwmon/pc87360.rst
15006 F:      drivers/hwmon/pc87360.c
15007
15008 PC8736x GPIO DRIVER
15009 M:      Jim Cromie <jim.cromie@gmail.com>
15010 S:      Maintained
15011 F:      drivers/char/pc8736x_gpio.c
15012
15013 PC87427 HARDWARE MONITORING DRIVER
15014 M:      Jean Delvare <jdelvare@suse.com>
15015 L:      linux-hwmon@vger.kernel.org
15016 S:      Maintained
15017 F:      Documentation/hwmon/pc87427.rst
15018 F:      drivers/hwmon/pc87427.c
15019
15020 PCA9532 LED DRIVER
15021 M:      Riku Voipio <riku.voipio@iki.fi>
15022 S:      Maintained
15023 F:      drivers/leds/leds-pca9532.c
15024 F:      include/linux/leds-pca9532.h
15025
15026 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15027 M:      Guenter Roeck <linux@roeck-us.net>
15028 L:      linux-i2c@vger.kernel.org
15029 S:      Maintained
15030 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15031
15032 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15033 M:      Khalid Aziz <khalid@gonehiking.org>
15034 S:      Maintained
15035 F:      drivers/firmware/pcdp.*
15036
15037 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15038 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15039 M:      Pali Rohár <pali@kernel.org>
15040 L:      linux-pci@vger.kernel.org
15041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15042 S:      Maintained
15043 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15044 F:      drivers/pci/controller/pci-aardvark.c
15045
15046 PCI DRIVER FOR ALTERA PCIE IP
15047 M:      Joyce Ooi <joyce.ooi@intel.com>
15048 L:      linux-pci@vger.kernel.org
15049 S:      Supported
15050 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15051 F:      drivers/pci/controller/pcie-altera.c
15052
15053 PCI DRIVER FOR APPLIEDMICRO XGENE
15054 M:      Toan Le <toan@os.amperecomputing.com>
15055 L:      linux-pci@vger.kernel.org
15056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15057 S:      Maintained
15058 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15059 F:      drivers/pci/controller/pci-xgene.c
15060
15061 PCI DRIVER FOR ARM VERSATILE PLATFORM
15062 M:      Rob Herring <robh@kernel.org>
15063 L:      linux-pci@vger.kernel.org
15064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15065 S:      Maintained
15066 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15067 F:      drivers/pci/controller/pci-versatile.c
15068
15069 PCI DRIVER FOR ARMADA 8K
15070 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15071 L:      linux-pci@vger.kernel.org
15072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15073 S:      Maintained
15074 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15075 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15076
15077 PCI DRIVER FOR CADENCE PCIE IP
15078 M:      Tom Joseph <tjoseph@cadence.com>
15079 L:      linux-pci@vger.kernel.org
15080 S:      Maintained
15081 F:      Documentation/devicetree/bindings/pci/cdns,*
15082 F:      drivers/pci/controller/cadence/
15083
15084 PCI DRIVER FOR FREESCALE LAYERSCAPE
15085 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15086 M:      Mingkai Hu <mingkai.hu@nxp.com>
15087 M:      Roy Zang <roy.zang@nxp.com>
15088 L:      linuxppc-dev@lists.ozlabs.org
15089 L:      linux-pci@vger.kernel.org
15090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15091 S:      Maintained
15092 F:      drivers/pci/controller/dwc/*layerscape*
15093
15094 PCI DRIVER FOR GENERIC OF HOSTS
15095 M:      Will Deacon <will@kernel.org>
15096 L:      linux-pci@vger.kernel.org
15097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15098 S:      Maintained
15099 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15100 F:      drivers/pci/controller/pci-host-common.c
15101 F:      drivers/pci/controller/pci-host-generic.c
15102
15103 PCI DRIVER FOR IMX6
15104 M:      Richard Zhu <hongxing.zhu@nxp.com>
15105 M:      Lucas Stach <l.stach@pengutronix.de>
15106 L:      linux-pci@vger.kernel.org
15107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15108 S:      Maintained
15109 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15110 F:      drivers/pci/controller/dwc/*imx6*
15111
15112 PCI DRIVER FOR FU740
15113 M:      Paul Walmsley <paul.walmsley@sifive.com>
15114 M:      Greentime Hu <greentime.hu@sifive.com>
15115 L:      linux-pci@vger.kernel.org
15116 S:      Maintained
15117 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15118 F:      drivers/pci/controller/dwc/pcie-fu740.c
15119
15120 PCI DRIVER FOR INTEL IXP4XX
15121 M:      Linus Walleij <linus.walleij@linaro.org>
15122 S:      Maintained
15123 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15124 F:      drivers/pci/controller/pci-ixp4xx.c
15125
15126 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15127 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15128 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15129 L:      linux-pci@vger.kernel.org
15130 S:      Supported
15131 F:      drivers/pci/controller/vmd.c
15132
15133 PCI DRIVER FOR MICROSEMI SWITCHTEC
15134 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15135 M:      Logan Gunthorpe <logang@deltatee.com>
15136 L:      linux-pci@vger.kernel.org
15137 S:      Maintained
15138 F:      Documentation/ABI/testing/sysfs-class-switchtec
15139 F:      Documentation/driver-api/switchtec.rst
15140 F:      drivers/ntb/hw/mscc/
15141 F:      drivers/pci/switch/switchtec*
15142 F:      include/linux/switchtec.h
15143 F:      include/uapi/linux/switchtec_ioctl.h
15144
15145 PCI DRIVER FOR MOBIVEIL PCIE IP
15146 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15147 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15148 L:      linux-pci@vger.kernel.org
15149 S:      Supported
15150 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15151 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15152
15153 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15154 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15155 M:      Pali Rohár <pali@kernel.org>
15156 L:      linux-pci@vger.kernel.org
15157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15158 S:      Maintained
15159 F:      drivers/pci/controller/*mvebu*
15160
15161 PCI DRIVER FOR NVIDIA TEGRA
15162 M:      Thierry Reding <thierry.reding@gmail.com>
15163 L:      linux-tegra@vger.kernel.org
15164 L:      linux-pci@vger.kernel.org
15165 S:      Supported
15166 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15167 F:      drivers/pci/controller/pci-tegra.c
15168
15169 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15170 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15171 L:      linux-pci@vger.kernel.org
15172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15173 S:      Maintained
15174 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15175 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15176
15177 PCI DRIVER FOR RENESAS R-CAR
15178 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15179 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15180 L:      linux-pci@vger.kernel.org
15181 L:      linux-renesas-soc@vger.kernel.org
15182 S:      Maintained
15183 F:      Documentation/devicetree/bindings/pci/*rcar*
15184 F:      drivers/pci/controller/*rcar*
15185
15186 PCI DRIVER FOR SAMSUNG EXYNOS
15187 M:      Jingoo Han <jingoohan1@gmail.com>
15188 L:      linux-pci@vger.kernel.org
15189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15190 L:      linux-samsung-soc@vger.kernel.org
15191 S:      Maintained
15192 F:      drivers/pci/controller/dwc/pci-exynos.c
15193
15194 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15195 M:      Jingoo Han <jingoohan1@gmail.com>
15196 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15197 L:      linux-pci@vger.kernel.org
15198 S:      Maintained
15199 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15200 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15201 F:      drivers/pci/controller/dwc/*designware*
15202
15203 PCI DRIVER FOR TI DRA7XX/J721E
15204 M:      Kishon Vijay Abraham I <kishon@ti.com>
15205 L:      linux-omap@vger.kernel.org
15206 L:      linux-pci@vger.kernel.org
15207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15208 S:      Supported
15209 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15210 F:      drivers/pci/controller/cadence/pci-j721e.c
15211 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15212
15213 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15214 M:      Linus Walleij <linus.walleij@linaro.org>
15215 L:      linux-pci@vger.kernel.org
15216 S:      Maintained
15217 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15218 F:      drivers/pci/controller/pci-v3-semi.c
15219
15220 PCI ENDPOINT SUBSYSTEM
15221 M:      Kishon Vijay Abraham I <kishon@ti.com>
15222 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15223 R:      Krzysztof Wilczyński <kw@linux.com>
15224 L:      linux-pci@vger.kernel.org
15225 S:      Supported
15226 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15227 B:      https://bugzilla.kernel.org
15228 C:      irc://irc.oftc.net/linux-pci
15229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15230 F:      Documentation/PCI/endpoint/*
15231 F:      Documentation/misc-devices/pci-endpoint-test.rst
15232 F:      drivers/misc/pci_endpoint_test.c
15233 F:      drivers/pci/endpoint/
15234 F:      tools/pci/
15235
15236 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15237 M:      Russell Currey <ruscur@russell.cc>
15238 M:      Oliver O'Halloran <oohall@gmail.com>
15239 L:      linuxppc-dev@lists.ozlabs.org
15240 S:      Supported
15241 F:      Documentation/PCI/pci-error-recovery.rst
15242 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15243 F:      arch/powerpc/include/*/eeh*.h
15244 F:      arch/powerpc/kernel/eeh*.c
15245 F:      arch/powerpc/platforms/*/eeh*.c
15246 F:      drivers/pci/pcie/aer.c
15247 F:      drivers/pci/pcie/dpc.c
15248 F:      drivers/pci/pcie/err.c
15249
15250 PCI ERROR RECOVERY
15251 M:      Linas Vepstas <linasvepstas@gmail.com>
15252 L:      linux-pci@vger.kernel.org
15253 S:      Supported
15254 F:      Documentation/PCI/pci-error-recovery.rst
15255
15256 PCI PEER-TO-PEER DMA (P2PDMA)
15257 M:      Bjorn Helgaas <bhelgaas@google.com>
15258 M:      Logan Gunthorpe <logang@deltatee.com>
15259 L:      linux-pci@vger.kernel.org
15260 S:      Supported
15261 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15262 B:      https://bugzilla.kernel.org
15263 C:      irc://irc.oftc.net/linux-pci
15264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15265 F:      Documentation/driver-api/pci/p2pdma.rst
15266 F:      drivers/pci/p2pdma.c
15267 F:      include/linux/pci-p2pdma.h
15268
15269 PCI MSI DRIVER FOR ALTERA MSI IP
15270 M:      Joyce Ooi <joyce.ooi@intel.com>
15271 L:      linux-pci@vger.kernel.org
15272 S:      Supported
15273 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15274 F:      drivers/pci/controller/pcie-altera-msi.c
15275
15276 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15277 M:      Toan Le <toan@os.amperecomputing.com>
15278 L:      linux-pci@vger.kernel.org
15279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15280 S:      Maintained
15281 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15282 F:      drivers/pci/controller/pci-xgene-msi.c
15283
15284 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15285 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15286 R:      Rob Herring <robh@kernel.org>
15287 R:      Krzysztof Wilczyński <kw@linux.com>
15288 L:      linux-pci@vger.kernel.org
15289 S:      Supported
15290 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15291 B:      https://bugzilla.kernel.org
15292 C:      irc://irc.oftc.net/linux-pci
15293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15294 F:      drivers/pci/controller/
15295 F:      drivers/pci/pci-bridge-emul.c
15296 F:      drivers/pci/pci-bridge-emul.h
15297
15298 PCI SUBSYSTEM
15299 M:      Bjorn Helgaas <bhelgaas@google.com>
15300 L:      linux-pci@vger.kernel.org
15301 S:      Supported
15302 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15303 B:      https://bugzilla.kernel.org
15304 C:      irc://irc.oftc.net/linux-pci
15305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15306 F:      Documentation/PCI/
15307 F:      Documentation/devicetree/bindings/pci/
15308 F:      arch/x86/kernel/early-quirks.c
15309 F:      arch/x86/kernel/quirks.c
15310 F:      arch/x86/pci/
15311 F:      drivers/acpi/pci*
15312 F:      drivers/pci/
15313 F:      include/asm-generic/pci*
15314 F:      include/linux/of_pci.h
15315 F:      include/linux/pci*
15316 F:      include/uapi/linux/pci*
15317 F:      lib/pci*
15318
15319 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15320 M:      Jonathan Chocron <jonnyc@amazon.com>
15321 L:      linux-pci@vger.kernel.org
15322 S:      Maintained
15323 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15324 F:      drivers/pci/controller/dwc/pcie-al.c
15325
15326 PCIE DRIVER FOR AMLOGIC MESON
15327 M:      Yue Wang <yue.wang@Amlogic.com>
15328 L:      linux-pci@vger.kernel.org
15329 L:      linux-amlogic@lists.infradead.org
15330 S:      Maintained
15331 F:      drivers/pci/controller/dwc/pci-meson.c
15332
15333 PCIE DRIVER FOR AXIS ARTPEC
15334 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15335 L:      linux-arm-kernel@axis.com
15336 L:      linux-pci@vger.kernel.org
15337 S:      Maintained
15338 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15339 F:      drivers/pci/controller/dwc/*artpec*
15340
15341 PCIE DRIVER FOR CAVIUM THUNDERX
15342 M:      Robert Richter <rric@kernel.org>
15343 L:      linux-pci@vger.kernel.org
15344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15345 S:      Odd Fixes
15346 F:      drivers/pci/controller/pci-thunder-*
15347
15348 PCIE DRIVER FOR HISILICON
15349 M:      Zhou Wang <wangzhou1@hisilicon.com>
15350 L:      linux-pci@vger.kernel.org
15351 S:      Maintained
15352 F:      drivers/pci/controller/dwc/pcie-hisi.c
15353
15354 PCIE DRIVER FOR HISILICON KIRIN
15355 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15356 M:      Binghui Wang <wangbinghui@hisilicon.com>
15357 L:      linux-pci@vger.kernel.org
15358 S:      Maintained
15359 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15360 F:      drivers/pci/controller/dwc/pcie-kirin.c
15361
15362 PCIE DRIVER FOR HISILICON STB
15363 M:      Shawn Guo <shawn.guo@linaro.org>
15364 L:      linux-pci@vger.kernel.org
15365 S:      Maintained
15366 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15367 F:      drivers/pci/controller/dwc/pcie-histb.c
15368
15369 PCIE DRIVER FOR INTEL KEEM BAY
15370 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15371 L:      linux-pci@vger.kernel.org
15372 S:      Supported
15373 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15374 F:      drivers/pci/controller/dwc/pcie-keembay.c
15375
15376 PCIE DRIVER FOR INTEL LGM GW SOC
15377 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15378 L:      linux-pci@vger.kernel.org
15379 S:      Maintained
15380 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15381 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15382
15383 PCIE DRIVER FOR MEDIATEK
15384 M:      Ryder Lee <ryder.lee@mediatek.com>
15385 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15386 L:      linux-pci@vger.kernel.org
15387 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15388 S:      Supported
15389 F:      Documentation/devicetree/bindings/pci/mediatek*
15390 F:      drivers/pci/controller/*mediatek*
15391
15392 PCIE DRIVER FOR MICROCHIP
15393 M:      Daire McNamara <daire.mcnamara@microchip.com>
15394 L:      linux-pci@vger.kernel.org
15395 S:      Supported
15396 F:      Documentation/devicetree/bindings/pci/microchip*
15397 F:      drivers/pci/controller/*microchip*
15398
15399 PCIE DRIVER FOR QUALCOMM MSM
15400 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15401 L:      linux-pci@vger.kernel.org
15402 L:      linux-arm-msm@vger.kernel.org
15403 S:      Maintained
15404 F:      drivers/pci/controller/dwc/pcie-qcom.c
15405
15406 PCIE ENDPOINT DRIVER FOR QUALCOMM
15407 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15408 L:      linux-pci@vger.kernel.org
15409 L:      linux-arm-msm@vger.kernel.org
15410 S:      Maintained
15411 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15412 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15413
15414 PCIE DRIVER FOR ROCKCHIP
15415 M:      Shawn Lin <shawn.lin@rock-chips.com>
15416 L:      linux-pci@vger.kernel.org
15417 L:      linux-rockchip@lists.infradead.org
15418 S:      Maintained
15419 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15420 F:      drivers/pci/controller/pcie-rockchip*
15421
15422 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15423 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15424 L:      linux-pci@vger.kernel.org
15425 S:      Maintained
15426 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
15427 F:      drivers/pci/controller/dwc/pcie-uniphier*
15428
15429 PCIE DRIVER FOR ST SPEAR13XX
15430 M:      Pratyush Anand <pratyush.anand@gmail.com>
15431 L:      linux-pci@vger.kernel.org
15432 S:      Maintained
15433 F:      drivers/pci/controller/dwc/*spear*
15434
15435 PCMCIA SUBSYSTEM
15436 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15437 S:      Odd Fixes
15438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15439 F:      Documentation/pcmcia/
15440 F:      drivers/pcmcia/
15441 F:      include/pcmcia/
15442 F:      tools/pcmcia/
15443
15444 PCNET32 NETWORK DRIVER
15445 M:      Don Fry <pcnet32@frontier.com>
15446 L:      netdev@vger.kernel.org
15447 S:      Maintained
15448 F:      drivers/net/ethernet/amd/pcnet32.c
15449
15450 PCRYPT PARALLEL CRYPTO ENGINE
15451 M:      Steffen Klassert <steffen.klassert@secunet.com>
15452 L:      linux-crypto@vger.kernel.org
15453 S:      Maintained
15454 F:      crypto/pcrypt.c
15455 F:      include/crypto/pcrypt.h
15456
15457 PEAQ WMI HOTKEYS DRIVER
15458 M:      Hans de Goede <hdegoede@redhat.com>
15459 L:      platform-driver-x86@vger.kernel.org
15460 S:      Maintained
15461 F:      drivers/platform/x86/peaq-wmi.c
15462
15463 PECI HARDWARE MONITORING DRIVERS
15464 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15465 L:      linux-hwmon@vger.kernel.org
15466 S:      Supported
15467 F:      Documentation/hwmon/peci-cputemp.rst
15468 F:      Documentation/hwmon/peci-dimmtemp.rst
15469 F:      drivers/hwmon/peci/
15470
15471 PECI SUBSYSTEM
15472 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15473 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15474 S:      Supported
15475 F:      Documentation/devicetree/bindings/peci/
15476 F:      Documentation/peci/
15477 F:      drivers/peci/
15478 F:      include/linux/peci-cpu.h
15479 F:      include/linux/peci.h
15480
15481 PENSANDO ETHERNET DRIVERS
15482 M:      Shannon Nelson <snelson@pensando.io>
15483 M:      drivers@pensando.io
15484 L:      netdev@vger.kernel.org
15485 S:      Supported
15486 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15487 F:      drivers/net/ethernet/pensando/
15488
15489 PER-CPU MEMORY ALLOCATOR
15490 M:      Dennis Zhou <dennis@kernel.org>
15491 M:      Tejun Heo <tj@kernel.org>
15492 M:      Christoph Lameter <cl@linux.com>
15493 L:      linux-mm@kvack.org
15494 S:      Maintained
15495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15496 F:      arch/*/include/asm/percpu.h
15497 F:      include/linux/percpu*.h
15498 F:      lib/percpu*.c
15499 F:      mm/percpu*.c
15500
15501 PER-TASK DELAY ACCOUNTING
15502 M:      Balbir Singh <bsingharora@gmail.com>
15503 S:      Maintained
15504 F:      include/linux/delayacct.h
15505 F:      kernel/delayacct.c
15506
15507 PERFORMANCE EVENTS SUBSYSTEM
15508 M:      Peter Zijlstra <peterz@infradead.org>
15509 M:      Ingo Molnar <mingo@redhat.com>
15510 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15511 R:      Mark Rutland <mark.rutland@arm.com>
15512 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15513 R:      Jiri Olsa <jolsa@kernel.org>
15514 R:      Namhyung Kim <namhyung@kernel.org>
15515 L:      linux-perf-users@vger.kernel.org
15516 L:      linux-kernel@vger.kernel.org
15517 S:      Supported
15518 W:      https://perf.wiki.kernel.org/
15519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15520 F:      arch/*/events/*
15521 F:      arch/*/events/*/*
15522 F:      arch/*/include/asm/perf_event.h
15523 F:      arch/*/kernel/*/*/perf_event*.c
15524 F:      arch/*/kernel/*/perf_event*.c
15525 F:      arch/*/kernel/perf_callchain.c
15526 F:      arch/*/kernel/perf_event*.c
15527 F:      include/linux/perf_event.h
15528 F:      include/uapi/linux/perf_event.h
15529 F:      kernel/events/*
15530 F:      tools/lib/perf/
15531 F:      tools/perf/
15532
15533 PERFORMANCE EVENTS TOOLING ARM64
15534 R:      John Garry <john.garry@huawei.com>
15535 R:      Will Deacon <will@kernel.org>
15536 R:      James Clark <james.clark@arm.com>
15537 R:      Mike Leach <mike.leach@linaro.org>
15538 R:      Leo Yan <leo.yan@linaro.org>
15539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15540 S:      Supported
15541 F:      tools/build/feature/test-libopencsd.c
15542 F:      tools/perf/arch/arm*/
15543 F:      tools/perf/pmu-events/arch/arm64/
15544 F:      tools/perf/util/arm-spe*
15545 F:      tools/perf/util/cs-etm*
15546
15547 PERSONALITY HANDLING
15548 M:      Christoph Hellwig <hch@infradead.org>
15549 L:      linux-abi-devel@lists.sourceforge.net
15550 S:      Maintained
15551 F:      include/linux/personality.h
15552 F:      include/uapi/linux/personality.h
15553
15554 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15555 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15556 L:      linux-input@vger.kernel.org
15557 S:      Maintained
15558 F:      Documentation/input/devices/pxrc.rst
15559 F:      drivers/input/joystick/pxrc.c
15560
15561 PHONET PROTOCOL
15562 M:      Remi Denis-Courmont <courmisch@gmail.com>
15563 S:      Supported
15564 F:      Documentation/networking/phonet.rst
15565 F:      include/linux/phonet.h
15566 F:      include/net/phonet/
15567 F:      include/uapi/linux/phonet.h
15568 F:      net/phonet/
15569
15570 PHRAM MTD DRIVER
15571 M:      Joern Engel <joern@lazybastard.org>
15572 L:      linux-mtd@lists.infradead.org
15573 S:      Maintained
15574 F:      drivers/mtd/devices/phram.c
15575
15576 PICOLCD HID DRIVER
15577 M:      Bruno Prémont <bonbons@linux-vserver.org>
15578 L:      linux-input@vger.kernel.org
15579 S:      Maintained
15580 F:      drivers/hid/hid-picolcd*
15581
15582 PIDFD API
15583 M:      Christian Brauner <christian@brauner.io>
15584 L:      linux-kernel@vger.kernel.org
15585 S:      Maintained
15586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15587 F:      samples/pidfd/
15588 F:      tools/testing/selftests/clone3/
15589 F:      tools/testing/selftests/pid_namespace/
15590 F:      tools/testing/selftests/pidfd/
15591 K:      (?i)pidfd
15592 K:      (?i)clone3
15593 K:      \b(clone_args|kernel_clone_args)\b
15594
15595 PIN CONTROL SUBSYSTEM
15596 M:      Linus Walleij <linus.walleij@linaro.org>
15597 L:      linux-gpio@vger.kernel.org
15598 S:      Maintained
15599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15600 F:      Documentation/devicetree/bindings/pinctrl/
15601 F:      Documentation/driver-api/pin-control.rst
15602 F:      drivers/pinctrl/
15603 F:      include/linux/pinctrl/
15604
15605 PIN CONTROLLER - AMD
15606 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15607 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15608 S:      Maintained
15609 F:      drivers/pinctrl/pinctrl-amd.c
15610
15611 PIN CONTROLLER - FREESCALE
15612 M:      Dong Aisheng <aisheng.dong@nxp.com>
15613 M:      Fabio Estevam <festevam@gmail.com>
15614 M:      Shawn Guo <shawnguo@kernel.org>
15615 M:      Stefan Agner <stefan@agner.ch>
15616 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15617 L:      linux-gpio@vger.kernel.org
15618 S:      Maintained
15619 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15620 F:      drivers/pinctrl/freescale/
15621
15622 PIN CONTROLLER - INTEL
15623 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15624 M:      Andy Shevchenko <andy@kernel.org>
15625 S:      Maintained
15626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15627 F:      drivers/pinctrl/intel/
15628
15629 PIN CONTROLLER - KEEMBAY
15630 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15631 S:      Supported
15632 F:      drivers/pinctrl/pinctrl-keembay*
15633
15634 PIN CONTROLLER - MEDIATEK
15635 M:      Sean Wang <sean.wang@kernel.org>
15636 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15637 S:      Maintained
15638 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15639 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15640 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15641 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15642 F:      drivers/pinctrl/mediatek/
15643
15644 PIN CONTROLLER - MICROCHIP AT91
15645 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15647 L:      linux-gpio@vger.kernel.org
15648 S:      Supported
15649 F:      drivers/gpio/gpio-sama5d2-piobu.c
15650 F:      drivers/pinctrl/pinctrl-at91*
15651
15652 PIN CONTROLLER - QUALCOMM
15653 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15654 L:      linux-arm-msm@vger.kernel.org
15655 S:      Maintained
15656 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15657 F:      drivers/pinctrl/qcom/
15658
15659 PIN CONTROLLER - RENESAS
15660 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15661 L:      linux-renesas-soc@vger.kernel.org
15662 S:      Supported
15663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15664 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15665 F:      drivers/pinctrl/renesas/
15666
15667 PIN CONTROLLER - SAMSUNG
15668 M:      Tomasz Figa <tomasz.figa@gmail.com>
15669 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15670 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15671 R:      Alim Akhtar <alim.akhtar@samsung.com>
15672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15673 L:      linux-samsung-soc@vger.kernel.org
15674 S:      Maintained
15675 C:      irc://irc.libera.chat/linux-exynos
15676 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15677 B:      mailto:linux-samsung-soc@vger.kernel.org
15678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15679 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15680 F:      drivers/pinctrl/samsung/
15681 F:      include/dt-bindings/pinctrl/samsung.h
15682
15683 PIN CONTROLLER - SINGLE
15684 M:      Tony Lindgren <tony@atomide.com>
15685 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15687 L:      linux-omap@vger.kernel.org
15688 S:      Maintained
15689 F:      drivers/pinctrl/pinctrl-single.c
15690
15691 PIN CONTROLLER - THUNDERBAY
15692 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15693 S:      Supported
15694 F:      drivers/pinctrl/pinctrl-thunderbay.c
15695
15696 PIN CONTROLLER - SUNPLUS / TIBBO
15697 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
15698 M:      Wells Lu <wellslutw@gmail.com>
15699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15700 S:      Maintained
15701 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
15702 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
15703 F:      drivers/pinctrl/sunplus/
15704 F:      include/dt-bindings/pinctrl/sppctl*.h
15705
15706 PKTCDVD DRIVER
15707 M:      linux-block@vger.kernel.org
15708 S:      Orphan
15709 F:      drivers/block/pktcdvd.c
15710 F:      include/linux/pktcdvd.h
15711 F:      include/uapi/linux/pktcdvd.h
15712
15713 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15714 M:      Tomasz Duszynski <tduszyns@gmail.com>
15715 S:      Maintained
15716 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15717 F:      drivers/iio/chemical/pms7003.c
15718
15719 PLDMFW LIBRARY
15720 M:      Jacob Keller <jacob.e.keller@intel.com>
15721 S:      Maintained
15722 F:      Documentation/driver-api/pldmfw/
15723 F:      include/linux/pldmfw.h
15724 F:      lib/pldmfw/
15725
15726 PLX DMA DRIVER
15727 M:      Logan Gunthorpe <logang@deltatee.com>
15728 S:      Maintained
15729 F:      drivers/dma/plx_dma.c
15730
15731 PM6764TR DRIVER
15732 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15733 L:      linux-hwmon@vger.kernel.org
15734 S:      Maintained
15735 F:      Documentation/hwmon/pm6764tr.rst
15736 F:      drivers/hwmon/pmbus/pm6764tr.c
15737
15738 PM-GRAPH UTILITY
15739 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15740 L:      linux-pm@vger.kernel.org
15741 S:      Supported
15742 W:      https://01.org/pm-graph
15743 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15744 T:      git git://github.com/intel/pm-graph
15745 F:      tools/power/pm-graph
15746
15747 PMBUS HARDWARE MONITORING DRIVERS
15748 M:      Guenter Roeck <linux@roeck-us.net>
15749 L:      linux-hwmon@vger.kernel.org
15750 S:      Maintained
15751 W:      http://hwmon.wiki.kernel.org/
15752 W:      http://www.roeck-us.net/linux/drivers/
15753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15754 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15755 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15756 F:      Documentation/hwmon/adm1275.rst
15757 F:      Documentation/hwmon/ibm-cffps.rst
15758 F:      Documentation/hwmon/ir35221.rst
15759 F:      Documentation/hwmon/lm25066.rst
15760 F:      Documentation/hwmon/ltc2978.rst
15761 F:      Documentation/hwmon/ltc3815.rst
15762 F:      Documentation/hwmon/max16064.rst
15763 F:      Documentation/hwmon/max20751.rst
15764 F:      Documentation/hwmon/max31785.rst
15765 F:      Documentation/hwmon/max34440.rst
15766 F:      Documentation/hwmon/max8688.rst
15767 F:      Documentation/hwmon/pmbus-core.rst
15768 F:      Documentation/hwmon/pmbus.rst
15769 F:      Documentation/hwmon/tps40422.rst
15770 F:      Documentation/hwmon/ucd9000.rst
15771 F:      Documentation/hwmon/ucd9200.rst
15772 F:      Documentation/hwmon/zl6100.rst
15773 F:      drivers/hwmon/pmbus/
15774 F:      include/linux/pmbus.h
15775
15776 PMC SIERRA MaxRAID DRIVER
15777 L:      linux-scsi@vger.kernel.org
15778 S:      Orphan
15779 W:      http://www.pmc-sierra.com/
15780 F:      drivers/scsi/pmcraid.*
15781
15782 PMC SIERRA PM8001 DRIVER
15783 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15784 L:      linux-scsi@vger.kernel.org
15785 S:      Supported
15786 F:      drivers/scsi/pm8001/
15787
15788 PNI RM3100 IIO DRIVER
15789 M:      Song Qiang <songqiang1304521@gmail.com>
15790 L:      linux-iio@vger.kernel.org
15791 S:      Maintained
15792 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15793 F:      drivers/iio/magnetometer/rm3100*
15794
15795 PNP SUPPORT
15796 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15797 L:      linux-acpi@vger.kernel.org
15798 S:      Maintained
15799 F:      drivers/pnp/
15800 F:      include/linux/pnp.h
15801
15802 POSIX CLOCKS and TIMERS
15803 M:      Thomas Gleixner <tglx@linutronix.de>
15804 L:      linux-kernel@vger.kernel.org
15805 S:      Maintained
15806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15807 F:      fs/timerfd.c
15808 F:      include/linux/time_namespace.h
15809 F:      include/linux/timer*
15810 F:      kernel/time/*timer*
15811 F:      kernel/time/namespace.c
15812
15813 POWER MANAGEMENT CORE
15814 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15815 L:      linux-pm@vger.kernel.org
15816 S:      Supported
15817 B:      https://bugzilla.kernel.org
15818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15819 F:      drivers/base/power/
15820 F:      drivers/powercap/
15821 F:      include/linux/intel_rapl.h
15822 F:      include/linux/pm.h
15823 F:      include/linux/pm_*
15824 F:      include/linux/powercap.h
15825 F:      kernel/configs/nopm.config
15826
15827 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15828 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15829 L:      linux-pm@vger.kernel.org
15830 S:      Supported
15831 B:      https://bugzilla.kernel.org
15832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15833 F:      drivers/powercap/dtpm*
15834 F:      include/linux/dtpm.h
15835
15836 POWER STATE COORDINATION INTERFACE (PSCI)
15837 M:      Mark Rutland <mark.rutland@arm.com>
15838 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15840 S:      Maintained
15841 F:      drivers/firmware/psci/
15842 F:      include/linux/psci.h
15843 F:      include/uapi/linux/psci.h
15844
15845 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15846 M:      Sebastian Reichel <sre@kernel.org>
15847 L:      linux-pm@vger.kernel.org
15848 S:      Maintained
15849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15850 F:      Documentation/ABI/testing/sysfs-class-power
15851 F:      Documentation/devicetree/bindings/power/supply/
15852 F:      drivers/power/supply/
15853 F:      include/linux/power/
15854 F:      include/linux/power_supply.h
15855
15856 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15857 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15858 L:      linuxppc-dev@lists.ozlabs.org
15859 S:      Maintained
15860 F:      drivers/char/powernv-op-panel.c
15861
15862 PPP OVER ATM (RFC 2364)
15863 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15864 S:      Maintained
15865 F:      include/uapi/linux/atmppp.h
15866 F:      net/atm/pppoatm.c
15867
15868 PPP OVER ETHERNET
15869 M:      Michal Ostrowski <mostrows@earthlink.net>
15870 S:      Maintained
15871 F:      drivers/net/ppp/pppoe.c
15872 F:      drivers/net/ppp/pppox.c
15873
15874 PPP OVER L2TP
15875 M:      James Chapman <jchapman@katalix.com>
15876 S:      Maintained
15877 F:      include/linux/if_pppol2tp.h
15878 F:      include/uapi/linux/if_pppol2tp.h
15879 F:      net/l2tp/l2tp_ppp.c
15880
15881 PPP PROTOCOL DRIVERS AND COMPRESSORS
15882 M:      Paul Mackerras <paulus@samba.org>
15883 L:      linux-ppp@vger.kernel.org
15884 S:      Maintained
15885 F:      drivers/net/ppp/ppp_*
15886
15887 PPS SUPPORT
15888 M:      Rodolfo Giometti <giometti@enneenne.com>
15889 L:      linuxpps@ml.enneenne.com (subscribers-only)
15890 S:      Maintained
15891 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15892 F:      Documentation/ABI/testing/sysfs-pps
15893 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15894 F:      Documentation/driver-api/pps.rst
15895 F:      drivers/pps/
15896 F:      include/linux/pps*.h
15897 F:      include/uapi/linux/pps.h
15898
15899 PPTP DRIVER
15900 M:      Dmitry Kozlov <xeb@mail.ru>
15901 L:      netdev@vger.kernel.org
15902 S:      Maintained
15903 W:      http://sourceforge.net/projects/accel-pptp
15904 F:      drivers/net/ppp/pptp.c
15905
15906 PRESSURE STALL INFORMATION (PSI)
15907 M:      Johannes Weiner <hannes@cmpxchg.org>
15908 M:      Suren Baghdasaryan <surenb@google.com>
15909 S:      Maintained
15910 F:      include/linux/psi*
15911 F:      kernel/sched/psi.c
15912
15913 PRINTK
15914 M:      Petr Mladek <pmladek@suse.com>
15915 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15916 R:      Steven Rostedt <rostedt@goodmis.org>
15917 R:      John Ogness <john.ogness@linutronix.de>
15918 S:      Maintained
15919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
15920 F:      include/linux/printk.h
15921 F:      kernel/printk/
15922
15923 PRINTK INDEXING
15924 R:      Chris Down <chris@chrisdown.name>
15925 S:      Maintained
15926 F:      kernel/printk/index.c
15927
15928 PROC FILESYSTEM
15929 L:      linux-kernel@vger.kernel.org
15930 L:      linux-fsdevel@vger.kernel.org
15931 S:      Maintained
15932 F:      Documentation/filesystems/proc.rst
15933 F:      fs/proc/
15934 F:      include/linux/proc_fs.h
15935 F:      tools/testing/selftests/proc/
15936
15937 PROC SYSCTL
15938 M:      Luis Chamberlain <mcgrof@kernel.org>
15939 M:      Kees Cook <keescook@chromium.org>
15940 M:      Iurii Zaikin <yzaikin@google.com>
15941 L:      linux-kernel@vger.kernel.org
15942 L:      linux-fsdevel@vger.kernel.org
15943 S:      Maintained
15944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
15945 F:      fs/proc/proc_sysctl.c
15946 F:      include/linux/sysctl.h
15947 F:      kernel/sysctl-test.c
15948 F:      kernel/sysctl.c
15949 F:      tools/testing/selftests/sysctl/
15950
15951 PS3 NETWORK SUPPORT
15952 M:      Geoff Levand <geoff@infradead.org>
15953 L:      netdev@vger.kernel.org
15954 L:      linuxppc-dev@lists.ozlabs.org
15955 S:      Maintained
15956 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15957
15958 PS3 PLATFORM SUPPORT
15959 M:      Geoff Levand <geoff@infradead.org>
15960 L:      linuxppc-dev@lists.ozlabs.org
15961 S:      Maintained
15962 F:      arch/powerpc/boot/ps3*
15963 F:      arch/powerpc/include/asm/lv1call.h
15964 F:      arch/powerpc/include/asm/ps3*.h
15965 F:      arch/powerpc/platforms/ps3/
15966 F:      drivers/*/ps3*
15967 F:      drivers/ps3/
15968 F:      drivers/rtc/rtc-ps3.c
15969 F:      drivers/usb/host/*ps3.c
15970 F:      sound/ppc/snd_ps3*
15971
15972 PS3VRAM DRIVER
15973 M:      Jim Paris <jim@jtan.com>
15974 M:      Geoff Levand <geoff@infradead.org>
15975 L:      linuxppc-dev@lists.ozlabs.org
15976 S:      Maintained
15977 F:      drivers/block/ps3vram.c
15978
15979 PSAMPLE PACKET SAMPLING SUPPORT
15980 M:      Yotam Gigi <yotam.gi@gmail.com>
15981 S:      Maintained
15982 F:      include/net/psample.h
15983 F:      include/uapi/linux/psample.h
15984 F:      net/psample
15985
15986 PSTORE FILESYSTEM
15987 M:      Kees Cook <keescook@chromium.org>
15988 M:      Anton Vorontsov <anton@enomsg.org>
15989 M:      Colin Cross <ccross@android.com>
15990 M:      Tony Luck <tony.luck@intel.com>
15991 S:      Maintained
15992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15993 F:      Documentation/admin-guide/ramoops.rst
15994 F:      Documentation/admin-guide/pstore-blk.rst
15995 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15996 F:      drivers/acpi/apei/erst.c
15997 F:      drivers/firmware/efi/efi-pstore.c
15998 F:      fs/pstore/
15999 F:      include/linux/pstore*
16000 K:      \b(pstore|ramoops)
16001
16002 PTP HARDWARE CLOCK SUPPORT
16003 M:      Richard Cochran <richardcochran@gmail.com>
16004 L:      netdev@vger.kernel.org
16005 S:      Maintained
16006 W:      http://linuxptp.sourceforge.net/
16007 F:      Documentation/ABI/testing/sysfs-ptp
16008 F:      Documentation/driver-api/ptp.rst
16009 F:      drivers/net/phy/dp83640*
16010 F:      drivers/ptp/*
16011 F:      include/linux/ptp_cl*
16012
16013 PTP VIRTUAL CLOCK SUPPORT
16014 M:      Yangbo Lu <yangbo.lu@nxp.com>
16015 L:      netdev@vger.kernel.org
16016 S:      Maintained
16017 F:      drivers/ptp/ptp_vclock.c
16018 F:      net/ethtool/phc_vclocks.c
16019
16020 PTRACE SUPPORT
16021 M:      Oleg Nesterov <oleg@redhat.com>
16022 S:      Maintained
16023 F:      arch/*/*/ptrace*.c
16024 F:      arch/*/include/asm/ptrace*.h
16025 F:      arch/*/ptrace*.c
16026 F:      include/asm-generic/syscall.h
16027 F:      include/linux/ptrace.h
16028 F:      include/linux/regset.h
16029 F:      include/uapi/linux/ptrace.h
16030 F:      include/uapi/linux/ptrace.h
16031 F:      kernel/ptrace.c
16032
16033 PULSE8-CEC DRIVER
16034 M:      Hans Verkuil <hverkuil@xs4all.nl>
16035 L:      linux-media@vger.kernel.org
16036 S:      Maintained
16037 T:      git git://linuxtv.org/media_tree.git
16038 F:      Documentation/admin-guide/media/pulse8-cec.rst
16039 F:      drivers/media/cec/usb/pulse8/
16040
16041 PVRUSB2 VIDEO4LINUX DRIVER
16042 M:      Mike Isely <isely@pobox.com>
16043 L:      pvrusb2@isely.net       (subscribers-only)
16044 L:      linux-media@vger.kernel.org
16045 S:      Maintained
16046 W:      http://www.isely.net/pvrusb2/
16047 T:      git git://linuxtv.org/media_tree.git
16048 F:      Documentation/driver-api/media/drivers/pvrusb2*
16049 F:      drivers/media/usb/pvrusb2/
16050
16051 PWC WEBCAM DRIVER
16052 M:      Hans Verkuil <hverkuil@xs4all.nl>
16053 L:      linux-media@vger.kernel.org
16054 S:      Odd Fixes
16055 T:      git git://linuxtv.org/media_tree.git
16056 F:      drivers/media/usb/pwc/*
16057 F:      include/trace/events/pwc.h
16058
16059 PWM FAN DRIVER
16060 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16061 L:      linux-hwmon@vger.kernel.org
16062 S:      Supported
16063 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16064 F:      Documentation/hwmon/pwm-fan.rst
16065 F:      drivers/hwmon/pwm-fan.c
16066
16067 PWM IR Transmitter
16068 M:      Sean Young <sean@mess.org>
16069 L:      linux-media@vger.kernel.org
16070 S:      Maintained
16071 F:      drivers/media/rc/pwm-ir-tx.c
16072
16073 PWM SUBSYSTEM
16074 M:      Thierry Reding <thierry.reding@gmail.com>
16075 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16076 M:      Lee Jones <lee.jones@linaro.org>
16077 L:      linux-pwm@vger.kernel.org
16078 S:      Maintained
16079 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16081 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
16082 F:      Documentation/devicetree/bindings/pwm/
16083 F:      Documentation/driver-api/pwm.rst
16084 F:      drivers/gpio/gpio-mvebu.c
16085 F:      drivers/pwm/
16086 F:      drivers/video/backlight/pwm_bl.c
16087 F:      include/linux/pwm.h
16088 F:      include/linux/pwm_backlight.h
16089 K:      pwm_(config|apply_state|ops)
16090
16091 PXA GPIO DRIVER
16092 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16093 L:      linux-gpio@vger.kernel.org
16094 S:      Maintained
16095 F:      drivers/gpio/gpio-pxa.c
16096
16097 PXA MMCI DRIVER
16098 S:      Orphan
16099
16100 PXA RTC DRIVER
16101 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16102 L:      linux-rtc@vger.kernel.org
16103 S:      Maintained
16104
16105 PXA2xx/PXA3xx SUPPORT
16106 M:      Daniel Mack <daniel@zonque.org>
16107 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16108 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16110 S:      Maintained
16111 T:      git git://github.com/hzhuang1/linux.git
16112 T:      git git://github.com/rjarzmik/linux.git
16113 F:      arch/arm/boot/dts/pxa*
16114 F:      arch/arm/mach-pxa/
16115 F:      drivers/dma/pxa*
16116 F:      drivers/pcmcia/pxa2xx*
16117 F:      drivers/pinctrl/pxa/
16118 F:      drivers/spi/spi-pxa2xx*
16119 F:      drivers/usb/gadget/udc/pxa2*
16120 F:      include/sound/pxa2xx-lib.h
16121 F:      sound/arm/pxa*
16122 F:      sound/soc/pxa/
16123
16124 QAT DRIVER
16125 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16126 L:      qat-linux@intel.com
16127 S:      Supported
16128 F:      drivers/crypto/qat/
16129
16130 QCOM AUDIO (ASoC) DRIVERS
16131 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16132 M:      Banajit Goswami <bgoswami@codeaurora.org>
16133 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16134 S:      Supported
16135 F:      sound/soc/codecs/lpass-va-macro.c
16136 F:      sound/soc/codecs/lpass-wsa-macro.*
16137 F:      sound/soc/codecs/msm8916-wcd-analog.c
16138 F:      sound/soc/codecs/msm8916-wcd-digital.c
16139 F:      sound/soc/codecs/wcd9335.*
16140 F:      sound/soc/codecs/wcd934x.c
16141 F:      sound/soc/codecs/wcd-clsh-v2.*
16142 F:      sound/soc/codecs/wsa881x.c
16143 F:      sound/soc/qcom/
16144
16145 QCOM EMBEDDED USB DEBUGGER (EUD)
16146 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16147 L:      linux-arm-msm@vger.kernel.org
16148 S:      Maintained
16149 F:      Documentation/ABI/testing/sysfs-driver-eud
16150 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16151 F:      drivers/usb/misc/qcom_eud.c
16152
16153 QCOM IPA DRIVER
16154 M:      Alex Elder <elder@kernel.org>
16155 L:      netdev@vger.kernel.org
16156 S:      Supported
16157 F:      drivers/net/ipa/
16158
16159 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16160 M:      Gabriel Somlo <somlo@cmu.edu>
16161 M:      "Michael S. Tsirkin" <mst@redhat.com>
16162 L:      qemu-devel@nongnu.org
16163 S:      Maintained
16164 F:      drivers/firmware/qemu_fw_cfg.c
16165 F:      include/uapi/linux/qemu_fw_cfg.h
16166
16167 QIB DRIVER
16168 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16169 L:      linux-rdma@vger.kernel.org
16170 S:      Supported
16171 F:      drivers/infiniband/hw/qib/
16172
16173 QLOGIC QL41xxx FCOE DRIVER
16174 M:      Saurav Kashyap <skashyap@marvell.com>
16175 M:      Javed Hasan <jhasan@marvell.com>
16176 M:      GR-QLogic-Storage-Upstream@marvell.com
16177 L:      linux-scsi@vger.kernel.org
16178 S:      Supported
16179 F:      drivers/scsi/qedf/
16180
16181 QLOGIC QL41xxx ISCSI DRIVER
16182 M:      Nilesh Javali <njavali@marvell.com>
16183 M:      Manish Rangankar <mrangankar@marvell.com>
16184 M:      GR-QLogic-Storage-Upstream@marvell.com
16185 L:      linux-scsi@vger.kernel.org
16186 S:      Supported
16187 F:      drivers/scsi/qedi/
16188
16189 QLOGIC QL4xxx ETHERNET DRIVER
16190 M:      Ariel Elior <aelior@marvell.com>
16191 M:      Manish Chopra <manishc@marvell.com>
16192 L:      netdev@vger.kernel.org
16193 S:      Supported
16194 F:      drivers/net/ethernet/qlogic/qed/
16195 F:      drivers/net/ethernet/qlogic/qede/
16196 F:      include/linux/qed/
16197
16198 QLOGIC QL4xxx RDMA DRIVER
16199 M:      Michal Kalderon <mkalderon@marvell.com>
16200 M:      Ariel Elior <aelior@marvell.com>
16201 L:      linux-rdma@vger.kernel.org
16202 S:      Supported
16203 F:      drivers/infiniband/hw/qedr/
16204 F:      include/uapi/rdma/qedr-abi.h
16205
16206 QLOGIC QLA1280 SCSI DRIVER
16207 M:      Michael Reed <mdr@sgi.com>
16208 L:      linux-scsi@vger.kernel.org
16209 S:      Maintained
16210 F:      drivers/scsi/qla1280.[ch]
16211
16212 QLOGIC QLA2XXX FC-SCSI DRIVER
16213 M:      Nilesh Javali <njavali@marvell.com>
16214 M:      GR-QLogic-Storage-Upstream@marvell.com
16215 L:      linux-scsi@vger.kernel.org
16216 S:      Supported
16217 F:      drivers/scsi/qla2xxx/
16218
16219 QLOGIC QLA3XXX NETWORK DRIVER
16220 M:      GR-Linux-NIC-Dev@marvell.com
16221 L:      netdev@vger.kernel.org
16222 S:      Supported
16223 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16224
16225 QLOGIC QLA4XXX iSCSI DRIVER
16226 M:      Nilesh Javali <njavali@marvell.com>
16227 M:      Manish Rangankar <mrangankar@marvell.com>
16228 M:      GR-QLogic-Storage-Upstream@marvell.com
16229 L:      linux-scsi@vger.kernel.org
16230 S:      Supported
16231 F:      drivers/scsi/qla4xxx/
16232
16233 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16234 M:      Shahed Shaikh <shshaikh@marvell.com>
16235 M:      Manish Chopra <manishc@marvell.com>
16236 M:      GR-Linux-NIC-Dev@marvell.com
16237 L:      netdev@vger.kernel.org
16238 S:      Supported
16239 F:      drivers/net/ethernet/qlogic/qlcnic/
16240
16241 QLOGIC QLGE 10Gb ETHERNET DRIVER
16242 M:      Manish Chopra <manishc@marvell.com>
16243 M:      GR-Linux-NIC-Dev@marvell.com
16244 M:      Coiby Xu <coiby.xu@gmail.com>
16245 L:      netdev@vger.kernel.org
16246 S:      Supported
16247 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16248 F:      drivers/staging/qlge/
16249
16250 QM1D1B0004 MEDIA DRIVER
16251 M:      Akihiro Tsukada <tskd08@gmail.com>
16252 L:      linux-media@vger.kernel.org
16253 S:      Odd Fixes
16254 F:      drivers/media/tuners/qm1d1b0004*
16255
16256 QM1D1C0042 MEDIA DRIVER
16257 M:      Akihiro Tsukada <tskd08@gmail.com>
16258 L:      linux-media@vger.kernel.org
16259 S:      Odd Fixes
16260 F:      drivers/media/tuners/qm1d1c0042*
16261
16262 QNX4 FILESYSTEM
16263 M:      Anders Larsen <al@alarsen.net>
16264 S:      Maintained
16265 W:      http://www.alarsen.net/linux/qnx4fs/
16266 F:      fs/qnx4/
16267 F:      include/uapi/linux/qnx4_fs.h
16268 F:      include/uapi/linux/qnxtypes.h
16269
16270 QORIQ DPAA2 FSL-MC BUS DRIVER
16271 M:      Stuart Yoder <stuyoder@gmail.com>
16272 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16273 L:      linux-kernel@vger.kernel.org
16274 S:      Maintained
16275 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16276 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16277 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16278 F:      drivers/bus/fsl-mc/
16279 F:      include/uapi/linux/fsl_mc.h
16280
16281 QT1010 MEDIA DRIVER
16282 M:      Antti Palosaari <crope@iki.fi>
16283 L:      linux-media@vger.kernel.org
16284 S:      Maintained
16285 W:      https://linuxtv.org
16286 W:      http://palosaari.fi/linux/
16287 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16288 T:      git git://linuxtv.org/anttip/media_tree.git
16289 F:      drivers/media/tuners/qt1010*
16290
16291 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16292 M:      Kalle Valo <kvalo@kernel.org>
16293 L:      ath10k@lists.infradead.org
16294 S:      Supported
16295 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16297 F:      drivers/net/wireless/ath/ath10k/
16298 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16299
16300 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16301 M:      Kalle Valo <kvalo@kernel.org>
16302 L:      ath11k@lists.infradead.org
16303 S:      Supported
16304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16305 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16306 F:      drivers/net/wireless/ath/ath11k/
16307
16308 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16309 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16310 L:      linux-wireless@vger.kernel.org
16311 S:      Maintained
16312 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16313 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16314 F:      drivers/net/wireless/ath/ath9k/
16315
16316 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16317 M:      Stephan Gerhold <stephan@gerhold.net>
16318 L:      netdev@vger.kernel.org
16319 L:      linux-arm-msm@vger.kernel.org
16320 S:      Maintained
16321 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16322 F:      drivers/net/wwan/qcom_bam_dmux.c
16323
16324 QUALCOMM CAMERA SUBSYSTEM DRIVER
16325 M:      Robert Foss <robert.foss@linaro.org>
16326 M:      Todor Tomov <todor.too@gmail.com>
16327 L:      linux-media@vger.kernel.org
16328 S:      Maintained
16329 F:      Documentation/admin-guide/media/qcom_camss.rst
16330 F:      Documentation/devicetree/bindings/media/*camss*
16331 F:      drivers/media/platform/qcom/camss/
16332
16333 QUALCOMM CLOCK DRIVERS
16334 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16335 L:      linux-arm-msm@vger.kernel.org
16336 S:      Supported
16337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16338 F:      Documentation/devicetree/bindings/clock/qcom,*
16339 F:      drivers/clk/qcom/
16340 F:      include/dt-bindings/clock/qcom,*
16341
16342 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16343 M:      Niklas Cassel <nks@flawful.org>
16344 L:      linux-pm@vger.kernel.org
16345 L:      linux-arm-msm@vger.kernel.org
16346 S:      Maintained
16347 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16348 F:      drivers/soc/qcom/cpr.c
16349
16350 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16351 M:      Ilia Lin <ilia.lin@kernel.org>
16352 L:      linux-pm@vger.kernel.org
16353 S:      Maintained
16354 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16355 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16356 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16357
16358 QUALCOMM CRYPTO DRIVERS
16359 M:      Thara Gopinath <thara.gopinath@linaro.org>
16360 L:      linux-crypto@vger.kernel.org
16361 L:      linux-arm-msm@vger.kernel.org
16362 S:      Maintained
16363 F:      drivers/crypto/qce/
16364
16365 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16366 M:      Timur Tabi <timur@kernel.org>
16367 L:      netdev@vger.kernel.org
16368 S:      Maintained
16369 F:      drivers/net/ethernet/qualcomm/emac/
16370
16371 QUALCOMM ETHQOS ETHERNET DRIVER
16372 M:      Vinod Koul <vkoul@kernel.org>
16373 L:      netdev@vger.kernel.org
16374 S:      Maintained
16375 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16376 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16377
16378 QUALCOMM FASTRPC DRIVER
16379 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16380 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16381 L:      linux-arm-msm@vger.kernel.org
16382 S:      Maintained
16383 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16384 F:      drivers/misc/fastrpc.c
16385 F:      include/uapi/misc/fastrpc.h
16386
16387 QUALCOMM HEXAGON ARCHITECTURE
16388 M:      Brian Cain <bcain@quicinc.com>
16389 L:      linux-hexagon@vger.kernel.org
16390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16391 S:      Supported
16392 F:      arch/hexagon/
16393
16394 QUALCOMM HIDMA DRIVER
16395 M:      Sinan Kaya <okaya@kernel.org>
16396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16397 L:      linux-arm-msm@vger.kernel.org
16398 L:      dmaengine@vger.kernel.org
16399 S:      Supported
16400 F:      drivers/dma/qcom/hidma*
16401
16402 QUALCOMM I2C CCI DRIVER
16403 M:      Loic Poulain <loic.poulain@linaro.org>
16404 M:      Robert Foss <robert.foss@linaro.org>
16405 L:      linux-i2c@vger.kernel.org
16406 L:      linux-arm-msm@vger.kernel.org
16407 S:      Maintained
16408 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16409 F:      drivers/i2c/busses/i2c-qcom-cci.c
16410
16411 QUALCOMM IOMMU
16412 M:      Rob Clark <robdclark@gmail.com>
16413 L:      iommu@lists.linux-foundation.org
16414 L:      linux-arm-msm@vger.kernel.org
16415 S:      Maintained
16416 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16417
16418 QUALCOMM IPC ROUTER (QRTR) DRIVER
16419 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16420 L:      linux-arm-msm@vger.kernel.org
16421 S:      Maintained
16422 F:      include/trace/events/qrtr.h
16423 F:      include/uapi/linux/qrtr.h
16424 F:      net/qrtr/
16425
16426 QUALCOMM IPCC MAILBOX DRIVER
16427 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16428 L:      linux-arm-msm@vger.kernel.org
16429 S:      Supported
16430 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16431 F:      drivers/mailbox/qcom-ipcc.c
16432 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16433
16434 QUALCOMM IPQ4019 USB PHY DRIVER
16435 M:      Robert Marko <robert.marko@sartura.hr>
16436 M:      Luka Perkov <luka.perkov@sartura.hr>
16437 L:      linux-arm-msm@vger.kernel.org
16438 S:      Maintained
16439 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16440 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16441
16442 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16443 M:      Robert Marko <robert.marko@sartura.hr>
16444 M:      Luka Perkov <luka.perkov@sartura.hr>
16445 L:      linux-arm-msm@vger.kernel.org
16446 S:      Maintained
16447 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16448 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16449
16450 QUALCOMM NAND CONTROLLER DRIVER
16451 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16452 L:      linux-mtd@lists.infradead.org
16453 L:      linux-arm-msm@vger.kernel.org
16454 S:      Maintained
16455 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16456 F:      drivers/mtd/nand/raw/qcom_nandc.c
16457
16458 QUALCOMM RMNET DRIVER
16459 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16460 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16461 L:      netdev@vger.kernel.org
16462 S:      Maintained
16463 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16464 F:      drivers/net/ethernet/qualcomm/rmnet/
16465 F:      include/linux/if_rmnet.h
16466
16467 QUALCOMM TSENS THERMAL DRIVER
16468 M:      Amit Kucheria <amitk@kernel.org>
16469 M:      Thara Gopinath <thara.gopinath@linaro.org>
16470 L:      linux-pm@vger.kernel.org
16471 L:      linux-arm-msm@vger.kernel.org
16472 S:      Maintained
16473 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16474 F:      drivers/thermal/qcom/
16475
16476 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16477 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16478 L:      linux-media@vger.kernel.org
16479 L:      linux-arm-msm@vger.kernel.org
16480 S:      Maintained
16481 T:      git git://linuxtv.org/media_tree.git
16482 F:      Documentation/devicetree/bindings/media/*venus*
16483 F:      drivers/media/platform/qcom/venus/
16484
16485 QUALCOMM WCN36XX WIRELESS DRIVER
16486 M:      Loic Poulain <loic.poulain@linaro.org>
16487 L:      wcn36xx@lists.infradead.org
16488 S:      Supported
16489 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16490 F:      drivers/net/wireless/ath/wcn36xx/
16491
16492 QUANTENNA QTNFMAC WIRELESS DRIVER
16493 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16494 R:      Sergey Matyukevich <geomatsi@gmail.com>
16495 L:      linux-wireless@vger.kernel.org
16496 S:      Maintained
16497 F:      drivers/net/wireless/quantenna
16498
16499 RADEON and AMDGPU DRM DRIVERS
16500 M:      Alex Deucher <alexander.deucher@amd.com>
16501 M:      Christian König <christian.koenig@amd.com>
16502 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16503 L:      amd-gfx@lists.freedesktop.org
16504 S:      Supported
16505 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16506 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16507 C:      irc://irc.oftc.net/radeon
16508 F:      drivers/gpu/drm/amd/
16509 F:      drivers/gpu/drm/radeon/
16510 F:      include/uapi/drm/amdgpu_drm.h
16511 F:      include/uapi/drm/radeon_drm.h
16512
16513 RADEON FRAMEBUFFER DISPLAY DRIVER
16514 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16515 L:      linux-fbdev@vger.kernel.org
16516 S:      Maintained
16517 F:      drivers/video/fbdev/aty/radeon*
16518 F:      include/uapi/linux/radeonfb.h
16519
16520 RADIOSHARK RADIO DRIVER
16521 M:      Hans Verkuil <hverkuil@xs4all.nl>
16522 L:      linux-media@vger.kernel.org
16523 S:      Maintained
16524 T:      git git://linuxtv.org/media_tree.git
16525 F:      drivers/media/radio/radio-shark.c
16526
16527 RADIOSHARK2 RADIO DRIVER
16528 M:      Hans Verkuil <hverkuil@xs4all.nl>
16529 L:      linux-media@vger.kernel.org
16530 S:      Maintained
16531 T:      git git://linuxtv.org/media_tree.git
16532 F:      drivers/media/radio/radio-shark2.c
16533 F:      drivers/media/radio/radio-tea5777.c
16534
16535 RADOS BLOCK DEVICE (RBD)
16536 M:      Ilya Dryomov <idryomov@gmail.com>
16537 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16538 L:      ceph-devel@vger.kernel.org
16539 S:      Supported
16540 W:      http://ceph.com/
16541 T:      git git://github.com/ceph/ceph-client.git
16542 F:      Documentation/ABI/testing/sysfs-bus-rbd
16543 F:      drivers/block/rbd.c
16544 F:      drivers/block/rbd_types.h
16545
16546 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16547 M:      Paul Mackerras <paulus@samba.org>
16548 L:      linux-fbdev@vger.kernel.org
16549 S:      Maintained
16550 F:      drivers/video/fbdev/aty/aty128fb.c
16551
16552 RAINSHADOW-CEC DRIVER
16553 M:      Hans Verkuil <hverkuil@xs4all.nl>
16554 L:      linux-media@vger.kernel.org
16555 S:      Maintained
16556 T:      git git://linuxtv.org/media_tree.git
16557 F:      drivers/media/cec/usb/rainshadow/
16558
16559 RALINK MIPS ARCHITECTURE
16560 M:      John Crispin <john@phrozen.org>
16561 L:      linux-mips@vger.kernel.org
16562 S:      Maintained
16563 F:      arch/mips/ralink
16564
16565 RALINK MT7621 MIPS ARCHITECTURE
16566 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16567 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16568 L:      linux-mips@vger.kernel.org
16569 S:      Maintained
16570 F:      arch/mips/boot/dts/ralink/mt7621*
16571
16572 RALINK RT2X00 WIRELESS LAN DRIVER
16573 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16574 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16575 L:      linux-wireless@vger.kernel.org
16576 S:      Maintained
16577 F:      drivers/net/wireless/ralink/rt2x00/
16578
16579 RAMDISK RAM BLOCK DEVICE DRIVER
16580 M:      Jens Axboe <axboe@kernel.dk>
16581 S:      Maintained
16582 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16583 F:      drivers/block/brd.c
16584
16585 RANCHU VIRTUAL BOARD FOR MIPS
16586 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16587 L:      linux-mips@vger.kernel.org
16588 S:      Supported
16589 F:      arch/mips/configs/generic/board-ranchu.config
16590 F:      arch/mips/generic/board-ranchu.c
16591
16592 RANDOM NUMBER DRIVER
16593 M:      "Theodore Ts'o" <tytso@mit.edu>
16594 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16595 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16596 S:      Maintained
16597 F:      drivers/char/random.c
16598 F:      drivers/virt/vmgenid.c
16599
16600 RAPIDIO SUBSYSTEM
16601 M:      Matt Porter <mporter@kernel.crashing.org>
16602 M:      Alexandre Bounine <alex.bou9@gmail.com>
16603 S:      Maintained
16604 F:      drivers/rapidio/
16605
16606 RAS INFRASTRUCTURE
16607 M:      Tony Luck <tony.luck@intel.com>
16608 M:      Borislav Petkov <bp@alien8.de>
16609 L:      linux-edac@vger.kernel.org
16610 S:      Maintained
16611 F:      Documentation/admin-guide/ras.rst
16612 F:      drivers/ras/
16613 F:      include/linux/ras.h
16614 F:      include/ras/ras_event.h
16615
16616 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16617 L:      linux-wireless@vger.kernel.org
16618 S:      Orphan
16619 F:      drivers/net/wireless/ray*
16620
16621 RC-CORE / LIRC FRAMEWORK
16622 M:      Sean Young <sean@mess.org>
16623 L:      linux-media@vger.kernel.org
16624 S:      Maintained
16625 W:      http://linuxtv.org
16626 T:      git git://linuxtv.org/media_tree.git
16627 F:      Documentation/driver-api/media/rc-core.rst
16628 F:      Documentation/userspace-api/media/rc/
16629 F:      drivers/media/rc/
16630 F:      include/media/rc-map.h
16631 F:      include/media/rc-core.h
16632 F:      include/uapi/linux/lirc.h
16633
16634 RCMM REMOTE CONTROLS DECODER
16635 M:      Patrick Lerda <patrick9876@free.fr>
16636 S:      Maintained
16637 F:      drivers/media/rc/ir-rcmm-decoder.c
16638
16639 RCUTORTURE TEST FRAMEWORK
16640 M:      "Paul E. McKenney" <paulmck@kernel.org>
16641 M:      Josh Triplett <josh@joshtriplett.org>
16642 R:      Steven Rostedt <rostedt@goodmis.org>
16643 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16644 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16645 L:      rcu@vger.kernel.org
16646 S:      Supported
16647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16648 F:      tools/testing/selftests/rcutorture
16649
16650 RDACM20 Camera Sensor
16651 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16652 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16653 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16654 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16655 L:      linux-media@vger.kernel.org
16656 S:      Maintained
16657 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16658 F:      drivers/media/i2c/max9271.c
16659 F:      drivers/media/i2c/max9271.h
16660 F:      drivers/media/i2c/rdacm20.c
16661
16662 RDACM21 Camera Sensor
16663 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16664 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16665 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16666 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16667 L:      linux-media@vger.kernel.org
16668 S:      Maintained
16669 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16670 F:      drivers/media/i2c/max9271.c
16671 F:      drivers/media/i2c/max9271.h
16672 F:      drivers/media/i2c/rdacm21.c
16673
16674 RDC R-321X SoC
16675 M:      Florian Fainelli <florian@openwrt.org>
16676 S:      Maintained
16677
16678 RDC R6040 FAST ETHERNET DRIVER
16679 M:      Florian Fainelli <f.fainelli@gmail.com>
16680 L:      netdev@vger.kernel.org
16681 S:      Maintained
16682 F:      drivers/net/ethernet/rdc/r6040.c
16683
16684 RDMAVT - RDMA verbs software
16685 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16686 L:      linux-rdma@vger.kernel.org
16687 S:      Supported
16688 F:      drivers/infiniband/sw/rdmavt
16689
16690 RDS - RELIABLE DATAGRAM SOCKETS
16691 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16692 L:      netdev@vger.kernel.org
16693 L:      linux-rdma@vger.kernel.org
16694 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16695 S:      Supported
16696 W:      https://oss.oracle.com/projects/rds/
16697 F:      Documentation/networking/rds.rst
16698 F:      net/rds/
16699
16700 RDT - RESOURCE ALLOCATION
16701 M:      Fenghua Yu <fenghua.yu@intel.com>
16702 M:      Reinette Chatre <reinette.chatre@intel.com>
16703 L:      linux-kernel@vger.kernel.org
16704 S:      Supported
16705 F:      Documentation/x86/resctrl*
16706 F:      arch/x86/include/asm/resctrl.h
16707 F:      arch/x86/kernel/cpu/resctrl/
16708 F:      tools/testing/selftests/resctrl/
16709
16710 READ-COPY UPDATE (RCU)
16711 M:      "Paul E. McKenney" <paulmck@kernel.org>
16712 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
16713 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
16714 M:      Josh Triplett <josh@joshtriplett.org>
16715 R:      Steven Rostedt <rostedt@goodmis.org>
16716 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16717 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16718 R:      Joel Fernandes <joel@joelfernandes.org>
16719 L:      rcu@vger.kernel.org
16720 S:      Supported
16721 W:      http://www.rdrop.com/users/paulmck/RCU/
16722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16723 F:      Documentation/RCU/
16724 F:      include/linux/rcu*
16725 F:      kernel/rcu/
16726 X:      Documentation/RCU/torture.rst
16727 X:      include/linux/srcu*.h
16728 X:      kernel/rcu/srcu*.c
16729
16730 REAL TIME CLOCK (RTC) SUBSYSTEM
16731 M:      Alessandro Zummo <a.zummo@towertech.it>
16732 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16733 L:      linux-rtc@vger.kernel.org
16734 S:      Maintained
16735 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16737 F:      Documentation/admin-guide/rtc.rst
16738 F:      Documentation/devicetree/bindings/rtc/
16739 F:      drivers/rtc/
16740 F:      include/linux/platform_data/rtc-*
16741 F:      include/linux/rtc.h
16742 F:      include/linux/rtc/
16743 F:      include/uapi/linux/rtc.h
16744 F:      tools/testing/selftests/rtc/
16745
16746 REALTEK AUDIO CODECS
16747 M:      Oder Chiou <oder_chiou@realtek.com>
16748 S:      Maintained
16749 F:      include/sound/rt*.h
16750 F:      sound/soc/codecs/rt*
16751
16752 REALTEK OTTO WATCHDOG
16753 M:      Sander Vanheule <sander@svanheule.net>
16754 L:      linux-watchdog@vger.kernel.org
16755 S:      Maintained
16756 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16757 F:      drivers/watchdog/realtek_otto_wdt.c
16758
16759 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16760 M:      Linus Walleij <linus.walleij@linaro.org>
16761 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
16762 S:      Maintained
16763 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
16764 F:      drivers/net/dsa/realtek/*
16765
16766 REALTEK WIRELESS DRIVER (rtlwifi family)
16767 M:      Ping-Ke Shih <pkshih@realtek.com>
16768 L:      linux-wireless@vger.kernel.org
16769 S:      Maintained
16770 W:      https://wireless.wiki.kernel.org/
16771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16772 F:      drivers/net/wireless/realtek/rtlwifi/
16773
16774 REALTEK WIRELESS DRIVER (rtw88)
16775 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16776 L:      linux-wireless@vger.kernel.org
16777 S:      Maintained
16778 F:      drivers/net/wireless/realtek/rtw88/
16779
16780 REALTEK WIRELESS DRIVER (rtw89)
16781 M:      Ping-Ke Shih <pkshih@realtek.com>
16782 L:      linux-wireless@vger.kernel.org
16783 S:      Maintained
16784 F:      drivers/net/wireless/realtek/rtw89/
16785
16786 REDPINE WIRELESS DRIVER
16787 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16788 M:      Siva Rebbagondla <siva8118@gmail.com>
16789 L:      linux-wireless@vger.kernel.org
16790 S:      Maintained
16791 F:      drivers/net/wireless/rsi/
16792
16793 REGISTER MAP ABSTRACTION
16794 M:      Mark Brown <broonie@kernel.org>
16795 L:      linux-kernel@vger.kernel.org
16796 S:      Supported
16797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16798 F:      Documentation/devicetree/bindings/regmap/
16799 F:      drivers/base/regmap/
16800 F:      include/linux/regmap.h
16801
16802 REISERFS FILE SYSTEM
16803 L:      reiserfs-devel@vger.kernel.org
16804 S:      Supported
16805 F:      fs/reiserfs/
16806
16807 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16808 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16809 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16810 L:      linux-remoteproc@vger.kernel.org
16811 S:      Maintained
16812 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16813 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16814 F:      Documentation/devicetree/bindings/remoteproc/
16815 F:      Documentation/staging/remoteproc.rst
16816 F:      drivers/remoteproc/
16817 F:      include/linux/remoteproc.h
16818 F:      include/linux/remoteproc/
16819
16820 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16821 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16822 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16823 L:      linux-remoteproc@vger.kernel.org
16824 S:      Maintained
16825 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16826 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16827 F:      Documentation/staging/rpmsg.rst
16828 F:      drivers/rpmsg/
16829 F:      include/linux/rpmsg.h
16830 F:      include/linux/rpmsg/
16831 F:      include/uapi/linux/rpmsg.h
16832 F:      samples/rpmsg/
16833
16834 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16835 M:      Stephan Gerhold <stephan@gerhold.net>
16836 L:      netdev@vger.kernel.org
16837 L:      linux-remoteproc@vger.kernel.org
16838 S:      Maintained
16839 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16840
16841 RENESAS CLOCK DRIVERS
16842 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16843 L:      linux-renesas-soc@vger.kernel.org
16844 S:      Supported
16845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16846 F:      Documentation/devicetree/bindings/clock/renesas,*
16847 F:      drivers/clk/renesas/
16848
16849 RENESAS EMEV2 I2C DRIVER
16850 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16851 L:      linux-renesas-soc@vger.kernel.org
16852 S:      Supported
16853 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16854 F:      drivers/i2c/busses/i2c-emev2.c
16855
16856 RENESAS ETHERNET DRIVERS
16857 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16858 L:      netdev@vger.kernel.org
16859 L:      linux-renesas-soc@vger.kernel.org
16860 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16861 F:      drivers/net/ethernet/renesas/
16862 F:      include/linux/sh_eth.h
16863
16864 RENESAS R-CAR GYROADC DRIVER
16865 M:      Marek Vasut <marek.vasut@gmail.com>
16866 L:      linux-iio@vger.kernel.org
16867 S:      Supported
16868 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16869 F:      drivers/iio/adc/rcar-gyroadc.c
16870
16871 RENESAS R-CAR I2C DRIVERS
16872 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16873 L:      linux-renesas-soc@vger.kernel.org
16874 S:      Supported
16875 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16876 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16877 F:      drivers/i2c/busses/i2c-rcar.c
16878 F:      drivers/i2c/busses/i2c-sh_mobile.c
16879
16880 RENESAS R-CAR SATA DRIVER
16881 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16882 S:      Supported
16883 L:      linux-ide@vger.kernel.org
16884 L:      linux-renesas-soc@vger.kernel.org
16885 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
16886 F:      drivers/ata/sata_rcar.c
16887
16888 RENESAS R-CAR THERMAL DRIVERS
16889 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16890 L:      linux-renesas-soc@vger.kernel.org
16891 S:      Supported
16892 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16893 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16894 F:      drivers/thermal/rcar_gen3_thermal.c
16895 F:      drivers/thermal/rcar_thermal.c
16896
16897 RENESAS RIIC DRIVER
16898 M:      Chris Brandt <chris.brandt@renesas.com>
16899 L:      linux-renesas-soc@vger.kernel.org
16900 S:      Supported
16901 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16902 F:      drivers/i2c/busses/i2c-riic.c
16903
16904 RENESAS USB PHY DRIVER
16905 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16906 L:      linux-renesas-soc@vger.kernel.org
16907 S:      Maintained
16908 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16909
16910 RENESAS RZ/G2L A/D DRIVER
16911 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16912 L:      linux-iio@vger.kernel.org
16913 L:      linux-renesas-soc@vger.kernel.org
16914 S:      Supported
16915 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16916 F:      drivers/iio/adc/rzg2l_adc.c
16917
16918 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
16919 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16920 L:      linux-mtd@lists.infradead.org
16921 L:      linux-renesas-soc@vger.kernel.org
16922 S:      Maintained
16923 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
16924 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
16925
16926 RESET CONTROLLER FRAMEWORK
16927 M:      Philipp Zabel <p.zabel@pengutronix.de>
16928 S:      Maintained
16929 T:      git git://git.pengutronix.de/git/pza/linux
16930 F:      Documentation/devicetree/bindings/reset/
16931 F:      Documentation/driver-api/reset.rst
16932 F:      drivers/reset/
16933 F:      include/dt-bindings/reset/
16934 F:      include/linux/reset-controller.h
16935 F:      include/linux/reset.h
16936 F:      include/linux/reset/
16937 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16938
16939 RESTARTABLE SEQUENCES SUPPORT
16940 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16941 M:      Peter Zijlstra <peterz@infradead.org>
16942 M:      "Paul E. McKenney" <paulmck@kernel.org>
16943 M:      Boqun Feng <boqun.feng@gmail.com>
16944 L:      linux-kernel@vger.kernel.org
16945 S:      Supported
16946 F:      include/trace/events/rseq.h
16947 F:      include/uapi/linux/rseq.h
16948 F:      kernel/rseq.c
16949 F:      tools/testing/selftests/rseq/
16950
16951 RFKILL
16952 M:      Johannes Berg <johannes@sipsolutions.net>
16953 L:      linux-wireless@vger.kernel.org
16954 S:      Maintained
16955 W:      https://wireless.wiki.kernel.org/
16956 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
16957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
16958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
16959 F:      Documentation/ABI/stable/sysfs-class-rfkill
16960 F:      Documentation/driver-api/rfkill.rst
16961 F:      include/linux/rfkill.h
16962 F:      include/uapi/linux/rfkill.h
16963 F:      net/rfkill/
16964
16965 RHASHTABLE
16966 M:      Thomas Graf <tgraf@suug.ch>
16967 M:      Herbert Xu <herbert@gondor.apana.org.au>
16968 L:      netdev@vger.kernel.org
16969 S:      Maintained
16970 F:      include/linux/rhashtable-types.h
16971 F:      include/linux/rhashtable.h
16972 F:      lib/rhashtable.c
16973 F:      lib/test_rhashtable.c
16974
16975 RICOH R5C592 MEMORYSTICK DRIVER
16976 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16977 S:      Maintained
16978 F:      drivers/memstick/host/r592.*
16979
16980 RICOH SMARTMEDIA/XD DRIVER
16981 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16982 S:      Maintained
16983 F:      drivers/mtd/nand/raw/r852.c
16984 F:      drivers/mtd/nand/raw/r852.h
16985
16986 RISC-V PMU DRIVERS
16987 M:      Atish Patra <atishp@atishpatra.org>
16988 R:      Anup Patel <anup@brainfault.org>
16989 L:      linux-riscv@lists.infradead.org
16990 S:      Supported
16991 F:      drivers/perf/riscv_pmu.c
16992 F:      drivers/perf/riscv_pmu_legacy.c
16993 F:      drivers/perf/riscv_pmu_sbi.c
16994
16995 RISC-V ARCHITECTURE
16996 M:      Paul Walmsley <paul.walmsley@sifive.com>
16997 M:      Palmer Dabbelt <palmer@dabbelt.com>
16998 M:      Albert Ou <aou@eecs.berkeley.edu>
16999 L:      linux-riscv@lists.infradead.org
17000 S:      Supported
17001 P:      Documentation/riscv/patch-acceptance.rst
17002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17003 F:      arch/riscv/
17004 N:      riscv
17005 K:      riscv
17006
17007 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
17008 M:      Lewis Hanly <lewis.hanly@microchip.com>
17009 M:      Conor Dooley <conor.dooley@microchip.com>
17010 L:      linux-riscv@lists.infradead.org
17011 S:      Supported
17012 F:      arch/riscv/boot/dts/microchip/
17013 F:      drivers/mailbox/mailbox-mpfs.c
17014 F:      drivers/soc/microchip/
17015 F:      include/soc/microchip/mpfs.h
17016
17017 RNBD BLOCK DRIVERS
17018 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17019 M:      Jack Wang <jinpu.wang@ionos.com>
17020 L:      linux-block@vger.kernel.org
17021 S:      Maintained
17022 F:      drivers/block/rnbd/
17023
17024 ROCCAT DRIVERS
17025 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17026 S:      Maintained
17027 W:      http://sourceforge.net/projects/roccat/
17028 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17029 F:      drivers/hid/hid-roccat*
17030 F:      include/linux/hid-roccat*
17031
17032 ROCKCHIP I2S TDM DRIVER
17033 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17034 L:      linux-rockchip@lists.infradead.org
17035 S:      Maintained
17036 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17037 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17038
17039 ROCKCHIP ISP V1 DRIVER
17040 M:      Dafna Hirschfeld <dafna@fastmail.com>
17041 L:      linux-media@vger.kernel.org
17042 L:      linux-rockchip@lists.infradead.org
17043 S:      Maintained
17044 F:      Documentation/admin-guide/media/rkisp1.rst
17045 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17046 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17047 F:      drivers/media/platform/rockchip/rkisp1
17048 F:      include/uapi/linux/rkisp1-config.h
17049
17050 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17051 M:      Jacob Chen <jacob-chen@iotwrt.com>
17052 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17053 L:      linux-media@vger.kernel.org
17054 L:      linux-rockchip@lists.infradead.org
17055 S:      Maintained
17056 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17057 F:      drivers/media/platform/rockchip/rga/
17058
17059 ROCKCHIP VIDEO DECODER DRIVER
17060 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17061 L:      linux-media@vger.kernel.org
17062 L:      linux-rockchip@lists.infradead.org
17063 S:      Maintained
17064 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17065 F:      drivers/staging/media/rkvdec/
17066
17067 ROCKER DRIVER
17068 M:      Jiri Pirko <jiri@resnulli.us>
17069 L:      netdev@vger.kernel.org
17070 S:      Supported
17071 F:      drivers/net/ethernet/rocker/
17072
17073 ROCKETPORT EXPRESS/INFINITY DRIVER
17074 M:      Kevin Cernekee <cernekee@gmail.com>
17075 L:      linux-serial@vger.kernel.org
17076 S:      Odd Fixes
17077 F:      drivers/tty/serial/rp2.*
17078
17079 ROHM BD99954 CHARGER IC
17080 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17081 S:      Supported
17082 F:      drivers/power/supply/bd99954-charger.c
17083 F:      drivers/power/supply/bd99954-charger.h
17084
17085 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17086 M:      Tomasz Duszynski <tduszyns@gmail.com>
17087 S:      Maintained
17088 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17089 F:      drivers/iio/light/bh1750.c
17090
17091 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17092 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17093 L:      linux-kernel@vger.kernel.org
17094 L:      linux-renesas-soc@vger.kernel.org
17095 S:      Supported
17096 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17097 F:      drivers/gpio/gpio-bd9571mwv.c
17098 F:      drivers/mfd/bd9571mwv.c
17099 F:      drivers/regulator/bd9571mwv-regulator.c
17100 F:      include/linux/mfd/bd9571mwv.h
17101
17102 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17103 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17104 S:      Supported
17105 F:      drivers/clk/clk-bd718x7.c
17106 F:      drivers/gpio/gpio-bd71815.c
17107 F:      drivers/gpio/gpio-bd71828.c
17108 F:      drivers/mfd/rohm-bd71828.c
17109 F:      drivers/mfd/rohm-bd718x7.c
17110 F:      drivers/mfd/rohm-bd9576.c
17111 F:      drivers/regulator/bd71815-regulator.c
17112 F:      drivers/regulator/bd71828-regulator.c
17113 F:      drivers/regulator/bd718x7-regulator.c
17114 F:      drivers/regulator/bd9576-regulator.c
17115 F:      drivers/regulator/rohm-regulator.c
17116 F:      drivers/rtc/rtc-bd70528.c
17117 F:      drivers/watchdog/bd9576_wdt.c
17118 F:      include/linux/mfd/rohm-bd71815.h
17119 F:      include/linux/mfd/rohm-bd71828.h
17120 F:      include/linux/mfd/rohm-bd718x7.h
17121 F:      include/linux/mfd/rohm-bd957x.h
17122 F:      include/linux/mfd/rohm-generic.h
17123 F:      include/linux/mfd/rohm-shared.h
17124
17125 ROSE NETWORK LAYER
17126 M:      Ralf Baechle <ralf@linux-mips.org>
17127 L:      linux-hams@vger.kernel.org
17128 S:      Maintained
17129 W:      http://www.linux-ax25.org/
17130 F:      include/net/rose.h
17131 F:      include/uapi/linux/rose.h
17132 F:      net/rose/
17133
17134 ROTATION DRIVER FOR ALLWINNER A83T
17135 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17136 L:      linux-media@vger.kernel.org
17137 S:      Maintained
17138 T:      git git://linuxtv.org/media_tree.git
17139 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17140 F:      drivers/media/platform/sunxi/sun8i-rotate/
17141
17142 RPMSG TTY DRIVER
17143 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17144 L:      linux-remoteproc@vger.kernel.org
17145 S:      Maintained
17146 F:      drivers/tty/rpmsg_tty.c
17147
17148 RTL2830 MEDIA DRIVER
17149 M:      Antti Palosaari <crope@iki.fi>
17150 L:      linux-media@vger.kernel.org
17151 S:      Maintained
17152 W:      https://linuxtv.org
17153 W:      http://palosaari.fi/linux/
17154 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17155 T:      git git://linuxtv.org/anttip/media_tree.git
17156 F:      drivers/media/dvb-frontends/rtl2830*
17157
17158 RTL2832 MEDIA DRIVER
17159 M:      Antti Palosaari <crope@iki.fi>
17160 L:      linux-media@vger.kernel.org
17161 S:      Maintained
17162 W:      https://linuxtv.org
17163 W:      http://palosaari.fi/linux/
17164 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17165 T:      git git://linuxtv.org/anttip/media_tree.git
17166 F:      drivers/media/dvb-frontends/rtl2832*
17167
17168 RTL2832_SDR MEDIA DRIVER
17169 M:      Antti Palosaari <crope@iki.fi>
17170 L:      linux-media@vger.kernel.org
17171 S:      Maintained
17172 W:      https://linuxtv.org
17173 W:      http://palosaari.fi/linux/
17174 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17175 T:      git git://linuxtv.org/anttip/media_tree.git
17176 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17177
17178 RTL8180 WIRELESS DRIVER
17179 L:      linux-wireless@vger.kernel.org
17180 S:      Orphan
17181 W:      https://wireless.wiki.kernel.org/
17182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17183 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17184
17185 RTL8187 WIRELESS DRIVER
17186 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17187 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17188 M:      Larry Finger <Larry.Finger@lwfinger.net>
17189 L:      linux-wireless@vger.kernel.org
17190 S:      Maintained
17191 W:      https://wireless.wiki.kernel.org/
17192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17193 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17194
17195 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17196 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17197 L:      linux-wireless@vger.kernel.org
17198 S:      Maintained
17199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17200 F:      drivers/net/wireless/realtek/rtl8xxxu/
17201
17202 RTRS TRANSPORT DRIVERS
17203 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17204 M:      Jack Wang <jinpu.wang@ionos.com>
17205 L:      linux-rdma@vger.kernel.org
17206 S:      Maintained
17207 F:      drivers/infiniband/ulp/rtrs/
17208
17209 RXRPC SOCKETS (AF_RXRPC)
17210 M:      David Howells <dhowells@redhat.com>
17211 M:      Marc Dionne <marc.dionne@auristor.com>
17212 L:      linux-afs@lists.infradead.org
17213 S:      Supported
17214 W:      https://www.infradead.org/~dhowells/kafs/
17215 F:      Documentation/networking/rxrpc.rst
17216 F:      include/keys/rxrpc-type.h
17217 F:      include/net/af_rxrpc.h
17218 F:      include/trace/events/rxrpc.h
17219 F:      include/uapi/linux/rxrpc.h
17220 F:      net/rxrpc/
17221
17222 S3 SAVAGE FRAMEBUFFER DRIVER
17223 M:      Antonino Daplas <adaplas@gmail.com>
17224 L:      linux-fbdev@vger.kernel.org
17225 S:      Maintained
17226 F:      drivers/video/fbdev/savage/
17227
17228 S390
17229 M:      Heiko Carstens <hca@linux.ibm.com>
17230 M:      Vasily Gorbik <gor@linux.ibm.com>
17231 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17232 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17233 R:      Sven Schnelle <svens@linux.ibm.com>
17234 L:      linux-s390@vger.kernel.org
17235 S:      Supported
17236 W:      http://www.ibm.com/developerworks/linux/linux390/
17237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17238 F:      Documentation/driver-api/s390-drivers.rst
17239 F:      Documentation/s390/
17240 F:      arch/s390/
17241 F:      drivers/s390/
17242
17243 S390 COMMON I/O LAYER
17244 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17245 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17246 L:      linux-s390@vger.kernel.org
17247 S:      Supported
17248 W:      http://www.ibm.com/developerworks/linux/linux390/
17249 F:      drivers/s390/cio/
17250
17251 S390 DASD DRIVER
17252 M:      Stefan Haberland <sth@linux.ibm.com>
17253 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17254 L:      linux-s390@vger.kernel.org
17255 S:      Supported
17256 W:      http://www.ibm.com/developerworks/linux/linux390/
17257 F:      block/partitions/ibm.c
17258 F:      drivers/s390/block/dasd*
17259 F:      include/linux/dasd_mod.h
17260
17261 S390 IOMMU (PCI)
17262 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17263 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17264 L:      linux-s390@vger.kernel.org
17265 S:      Supported
17266 W:      http://www.ibm.com/developerworks/linux/linux390/
17267 F:      drivers/iommu/s390-iommu.c
17268
17269 S390 IUCV NETWORK LAYER
17270 M:      Alexandra Winter <wintera@linux.ibm.com>
17271 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17272 L:      linux-s390@vger.kernel.org
17273 L:      netdev@vger.kernel.org
17274 S:      Supported
17275 W:      http://www.ibm.com/developerworks/linux/linux390/
17276 F:      drivers/s390/net/*iucv*
17277 F:      include/net/iucv/
17278 F:      net/iucv/
17279
17280 S390 NETWORK DRIVERS
17281 M:      Alexandra Winter <wintera@linux.ibm.com>
17282 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17283 L:      linux-s390@vger.kernel.org
17284 L:      netdev@vger.kernel.org
17285 S:      Supported
17286 W:      http://www.ibm.com/developerworks/linux/linux390/
17287 F:      drivers/s390/net/
17288
17289 S390 PCI SUBSYSTEM
17290 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17291 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17292 L:      linux-s390@vger.kernel.org
17293 S:      Supported
17294 W:      http://www.ibm.com/developerworks/linux/linux390/
17295 F:      arch/s390/pci/
17296 F:      drivers/pci/hotplug/s390_pci_hpc.c
17297 F:      Documentation/s390/pci.rst
17298
17299 S390 VFIO AP DRIVER
17300 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17301 M:      Halil Pasic <pasic@linux.ibm.com>
17302 M:      Jason Herne <jjherne@linux.ibm.com>
17303 L:      linux-s390@vger.kernel.org
17304 S:      Supported
17305 W:      http://www.ibm.com/developerworks/linux/linux390/
17306 F:      Documentation/s390/vfio-ap.rst
17307 F:      drivers/s390/crypto/vfio_ap*
17308
17309 S390 VFIO-CCW DRIVER
17310 M:      Eric Farman <farman@linux.ibm.com>
17311 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17312 R:      Halil Pasic <pasic@linux.ibm.com>
17313 L:      linux-s390@vger.kernel.org
17314 L:      kvm@vger.kernel.org
17315 S:      Supported
17316 F:      Documentation/s390/vfio-ccw.rst
17317 F:      drivers/s390/cio/vfio_ccw*
17318 F:      include/uapi/linux/vfio_ccw.h
17319
17320 S390 VFIO-PCI DRIVER
17321 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17322 M:      Eric Farman <farman@linux.ibm.com>
17323 L:      linux-s390@vger.kernel.org
17324 L:      kvm@vger.kernel.org
17325 S:      Supported
17326 F:      drivers/vfio/pci/vfio_pci_zdev.c
17327 F:      include/uapi/linux/vfio_zdev.h
17328
17329 S390 ZCRYPT DRIVER
17330 M:      Harald Freudenberger <freude@linux.ibm.com>
17331 L:      linux-s390@vger.kernel.org
17332 S:      Supported
17333 W:      http://www.ibm.com/developerworks/linux/linux390/
17334 F:      drivers/s390/crypto/
17335
17336 S390 ZFCP DRIVER
17337 M:      Steffen Maier <maier@linux.ibm.com>
17338 M:      Benjamin Block <bblock@linux.ibm.com>
17339 L:      linux-s390@vger.kernel.org
17340 S:      Supported
17341 W:      http://www.ibm.com/developerworks/linux/linux390/
17342 F:      drivers/s390/scsi/zfcp_*
17343
17344 S3C ADC BATTERY DRIVER
17345 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17346 L:      linux-samsung-soc@vger.kernel.org
17347 S:      Odd Fixes
17348 F:      drivers/power/supply/s3c_adc_battery.c
17349 F:      include/linux/s3c_adc_battery.h
17350
17351 S3C24XX SD/MMC Driver
17352 M:      Ben Dooks <ben-linux@fluff.org>
17353 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17354 S:      Supported
17355 F:      drivers/mmc/host/s3cmci.*
17356
17357 SAA6588 RDS RECEIVER DRIVER
17358 M:      Hans Verkuil <hverkuil@xs4all.nl>
17359 L:      linux-media@vger.kernel.org
17360 S:      Odd Fixes
17361 W:      https://linuxtv.org
17362 T:      git git://linuxtv.org/media_tree.git
17363 F:      drivers/media/i2c/saa6588*
17364
17365 SAA7134 VIDEO4LINUX DRIVER
17366 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17367 L:      linux-media@vger.kernel.org
17368 S:      Odd fixes
17369 W:      https://linuxtv.org
17370 T:      git git://linuxtv.org/media_tree.git
17371 F:      Documentation/driver-api/media/drivers/saa7134*
17372 F:      drivers/media/pci/saa7134/
17373
17374 SAA7146 VIDEO4LINUX-2 DRIVER
17375 M:      Hans Verkuil <hverkuil@xs4all.nl>
17376 L:      linux-media@vger.kernel.org
17377 S:      Maintained
17378 T:      git git://linuxtv.org/media_tree.git
17379 F:      drivers/media/common/saa7146/
17380 F:      drivers/media/pci/saa7146/
17381 F:      include/media/drv-intf/saa7146*
17382
17383 SAFESETID SECURITY MODULE
17384 M:      Micah Morton <mortonm@chromium.org>
17385 S:      Supported
17386 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17387 F:      security/safesetid/
17388
17389 SAMSUNG AUDIO (ASoC) DRIVERS
17390 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17391 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17392 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17393 S:      Supported
17394 B:      mailto:linux-samsung-soc@vger.kernel.org
17395 F:      Documentation/devicetree/bindings/sound/samsung*
17396 F:      sound/soc/samsung/
17397
17398 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17399 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17400 L:      linux-crypto@vger.kernel.org
17401 L:      linux-samsung-soc@vger.kernel.org
17402 S:      Maintained
17403 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17404 F:      drivers/crypto/exynos-rng.c
17405
17406 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17407 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17408 L:      linux-samsung-soc@vger.kernel.org
17409 S:      Maintained
17410 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17411 F:      drivers/char/hw_random/exynos-trng.c
17412
17413 SAMSUNG FRAMEBUFFER DRIVER
17414 M:      Jingoo Han <jingoohan1@gmail.com>
17415 L:      linux-fbdev@vger.kernel.org
17416 S:      Maintained
17417 F:      drivers/video/fbdev/s3c-fb.c
17418
17419 SAMSUNG INTERCONNECT DRIVERS
17420 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17421 M:      Artur Świgoń <a.swigon@samsung.com>
17422 L:      linux-pm@vger.kernel.org
17423 L:      linux-samsung-soc@vger.kernel.org
17424 S:      Supported
17425 F:      drivers/interconnect/samsung/
17426
17427 SAMSUNG LAPTOP DRIVER
17428 M:      Corentin Chary <corentin.chary@gmail.com>
17429 L:      platform-driver-x86@vger.kernel.org
17430 S:      Maintained
17431 F:      drivers/platform/x86/samsung-laptop.c
17432
17433 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17434 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17435 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17436 L:      linux-kernel@vger.kernel.org
17437 L:      linux-samsung-soc@vger.kernel.org
17438 S:      Supported
17439 B:      mailto:linux-samsung-soc@vger.kernel.org
17440 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17441 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17442 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17443 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17444 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17445 F:      drivers/clk/clk-s2mps11.c
17446 F:      drivers/mfd/sec*.c
17447 F:      drivers/regulator/s2m*.c
17448 F:      drivers/regulator/s5m*.c
17449 F:      drivers/rtc/rtc-s5m.c
17450 F:      include/linux/mfd/samsung/
17451
17452 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17453 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17454 L:      linux-media@vger.kernel.org
17455 L:      linux-samsung-soc@vger.kernel.org
17456 S:      Maintained
17457 F:      drivers/media/platform/samsung/s3c-camif/
17458 F:      include/media/drv-intf/s3c_camif.h
17459
17460 SAMSUNG S3FWRN5 NFC DRIVER
17461 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17462 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17463 L:      linux-nfc@lists.01.org (subscribers-only)
17464 S:      Maintained
17465 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17466 F:      drivers/nfc/s3fwrn5
17467
17468 SAMSUNG S5C73M3 CAMERA DRIVER
17469 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17470 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17471 L:      linux-media@vger.kernel.org
17472 S:      Supported
17473 F:      drivers/media/i2c/s5c73m3/*
17474
17475 SAMSUNG S5K5BAF CAMERA DRIVER
17476 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17477 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17478 L:      linux-media@vger.kernel.org
17479 S:      Supported
17480 F:      drivers/media/i2c/s5k5baf.c
17481
17482 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17483 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17484 M:      Vladimir Zapolskiy <vz@mleia.com>
17485 L:      linux-crypto@vger.kernel.org
17486 L:      linux-samsung-soc@vger.kernel.org
17487 S:      Maintained
17488 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17489 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17490 F:      drivers/crypto/s5p-sss.c
17491
17492 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17493 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17494 L:      linux-media@vger.kernel.org
17495 S:      Supported
17496 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17497 F:      drivers/media/platform/samsung/exynos4-is/
17498
17499 SAMSUNG SOC CLOCK DRIVERS
17500 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17501 M:      Tomasz Figa <tomasz.figa@gmail.com>
17502 M:      Chanwoo Choi <cw00.choi@samsung.com>
17503 R:      Alim Akhtar <alim.akhtar@samsung.com>
17504 L:      linux-samsung-soc@vger.kernel.org
17505 S:      Supported
17506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17507 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17508 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17509 F:      drivers/clk/samsung/
17510 F:      include/dt-bindings/clock/exynos*.h
17511 F:      include/dt-bindings/clock/s3c*.h
17512 F:      include/dt-bindings/clock/s5p*.h
17513 F:      include/dt-bindings/clock/samsung,*.h
17514 F:      include/linux/clk/samsung.h
17515 F:      include/linux/platform_data/clk-s3c2410.h
17516
17517 SAMSUNG SPI DRIVERS
17518 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17519 M:      Andi Shyti <andi@etezian.org>
17520 L:      linux-spi@vger.kernel.org
17521 L:      linux-samsung-soc@vger.kernel.org
17522 S:      Maintained
17523 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17524 F:      drivers/spi/spi-s3c*
17525 F:      include/linux/platform_data/spi-s3c64xx.h
17526 F:      include/linux/spi/s3c24xx-fiq.h
17527
17528 SAMSUNG SXGBE DRIVERS
17529 M:      Byungho An <bh74.an@samsung.com>
17530 L:      netdev@vger.kernel.org
17531 S:      Supported
17532 F:      drivers/net/ethernet/samsung/sxgbe/
17533
17534 SAMSUNG THERMAL DRIVER
17535 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17536 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17537 L:      linux-pm@vger.kernel.org
17538 L:      linux-samsung-soc@vger.kernel.org
17539 S:      Maintained
17540 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17541 F:      drivers/thermal/samsung/
17542
17543 SAMSUNG USB2 PHY DRIVER
17544 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17545 L:      linux-kernel@vger.kernel.org
17546 S:      Supported
17547 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17548 F:      Documentation/driver-api/phy/samsung-usb2.rst
17549 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17550 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17551 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17552 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17553 F:      drivers/phy/samsung/phy-samsung-usb2.c
17554 F:      drivers/phy/samsung/phy-samsung-usb2.h
17555
17556 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17557 M:      Paul Barker <paul.barker@sancloud.com>
17558 R:      Marc Murphy <marc.murphy@sancloud.com>
17559 S:      Supported
17560 F:      arch/arm/boot/dts/am335x-sancloud*
17561
17562 SC1200 WDT DRIVER
17563 M:      Zwane Mwaikambo <zwanem@gmail.com>
17564 S:      Maintained
17565 F:      drivers/watchdog/sc1200wdt.c
17566
17567 SCHEDULER
17568 M:      Ingo Molnar <mingo@redhat.com>
17569 M:      Peter Zijlstra <peterz@infradead.org>
17570 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17571 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17572 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17573 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17574 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17575 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17576 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17577 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
17578 L:      linux-kernel@vger.kernel.org
17579 S:      Maintained
17580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17581 F:      include/linux/preempt.h
17582 F:      include/linux/sched.h
17583 F:      include/linux/wait.h
17584 F:      include/uapi/linux/sched.h
17585 F:      kernel/sched/
17586
17587 SCR24X CHIP CARD INTERFACE DRIVER
17588 M:      Lubomir Rintel <lkundrak@v3.sk>
17589 S:      Supported
17590 F:      drivers/char/pcmcia/scr24x_cs.c
17591
17592 SCSI RDMA PROTOCOL (SRP) INITIATOR
17593 M:      Bart Van Assche <bvanassche@acm.org>
17594 L:      linux-rdma@vger.kernel.org
17595 S:      Supported
17596 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17597 F:      drivers/infiniband/ulp/srp/
17598 F:      include/scsi/srp.h
17599
17600 SCSI RDMA PROTOCOL (SRP) TARGET
17601 M:      Bart Van Assche <bvanassche@acm.org>
17602 L:      linux-rdma@vger.kernel.org
17603 L:      target-devel@vger.kernel.org
17604 S:      Supported
17605 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17606 F:      drivers/infiniband/ulp/srpt/
17607
17608 SCSI SG DRIVER
17609 M:      Doug Gilbert <dgilbert@interlog.com>
17610 L:      linux-scsi@vger.kernel.org
17611 S:      Maintained
17612 W:      http://sg.danny.cz/sg
17613 F:      Documentation/scsi/scsi-generic.rst
17614 F:      drivers/scsi/sg.c
17615 F:      include/scsi/sg.h
17616
17617 SCSI SUBSYSTEM
17618 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17619 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17620 L:      linux-scsi@vger.kernel.org
17621 S:      Maintained
17622 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17625 F:      Documentation/devicetree/bindings/scsi/
17626 F:      drivers/scsi/
17627 F:      include/scsi/
17628
17629 SCSI TAPE DRIVER
17630 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17631 L:      linux-scsi@vger.kernel.org
17632 S:      Maintained
17633 F:      Documentation/scsi/st.rst
17634 F:      drivers/scsi/st.*
17635 F:      drivers/scsi/st_*.h
17636
17637 SCSI TARGET CORE USER DRIVER
17638 M:      Bodo Stroesser <bostroesser@gmail.com>
17639 L:      linux-scsi@vger.kernel.org
17640 L:      target-devel@vger.kernel.org
17641 S:      Supported
17642 F:      Documentation/target/tcmu-design.rst
17643 F:      drivers/target/target_core_user.c
17644 F:      include/uapi/linux/target_core_user.h
17645
17646 SCSI TARGET SUBSYSTEM
17647 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17648 L:      linux-scsi@vger.kernel.org
17649 L:      target-devel@vger.kernel.org
17650 S:      Supported
17651 W:      http://www.linux-iscsi.org
17652 Q:      https://patchwork.kernel.org/project/target-devel/list/
17653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17654 F:      Documentation/target/
17655 F:      drivers/target/
17656 F:      include/target/
17657
17658 SCTP PROTOCOL
17659 M:      Vlad Yasevich <vyasevich@gmail.com>
17660 M:      Neil Horman <nhorman@tuxdriver.com>
17661 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17662 L:      linux-sctp@vger.kernel.org
17663 S:      Maintained
17664 W:      http://lksctp.sourceforge.net
17665 F:      Documentation/networking/sctp.rst
17666 F:      include/linux/sctp.h
17667 F:      include/net/sctp/
17668 F:      include/uapi/linux/sctp.h
17669 F:      net/sctp/
17670
17671 SCx200 CPU SUPPORT
17672 M:      Jim Cromie <jim.cromie@gmail.com>
17673 S:      Odd Fixes
17674 F:      Documentation/i2c/busses/scx200_acb.rst
17675 F:      arch/x86/platform/scx200/
17676 F:      drivers/i2c/busses/scx200*
17677 F:      drivers/mtd/maps/scx200_docflash.c
17678 F:      drivers/watchdog/scx200_wdt.c
17679 F:      include/linux/scx200.h
17680
17681 SCx200 GPIO DRIVER
17682 M:      Jim Cromie <jim.cromie@gmail.com>
17683 S:      Maintained
17684 F:      drivers/char/scx200_gpio.c
17685 F:      include/linux/scx200_gpio.h
17686
17687 SCx200 HRT CLOCKSOURCE DRIVER
17688 M:      Jim Cromie <jim.cromie@gmail.com>
17689 S:      Maintained
17690 F:      drivers/clocksource/scx200_hrt.c
17691
17692 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17693 M:      Sascha Sommer <saschasommer@freenet.de>
17694 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17695 S:      Maintained
17696 F:      drivers/mmc/host/sdricoh_cs.c
17697
17698 SECO BOARDS CEC DRIVER
17699 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17700 S:      Maintained
17701 F:      drivers/media/cec/platform/seco/seco-cec.c
17702 F:      drivers/media/cec/platform/seco/seco-cec.h
17703
17704 SECURE COMPUTING
17705 M:      Kees Cook <keescook@chromium.org>
17706 R:      Andy Lutomirski <luto@amacapital.net>
17707 R:      Will Drewry <wad@chromium.org>
17708 S:      Supported
17709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17710 F:      Documentation/userspace-api/seccomp_filter.rst
17711 F:      include/linux/seccomp.h
17712 F:      include/uapi/linux/seccomp.h
17713 F:      kernel/seccomp.c
17714 F:      tools/testing/selftests/kselftest_harness.h
17715 F:      tools/testing/selftests/seccomp/*
17716 K:      \bsecure_computing
17717 K:      \bTIF_SECCOMP\b
17718
17719 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17720 M:      Al Cooper <alcooperx@gmail.com>
17721 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
17722 L:      linux-mmc@vger.kernel.org
17723 S:      Maintained
17724 F:      drivers/mmc/host/sdhci-brcmstb*
17725
17726 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17727 M:      Adrian Hunter <adrian.hunter@intel.com>
17728 L:      linux-mmc@vger.kernel.org
17729 S:      Maintained
17730 F:      drivers/mmc/host/sdhci*
17731
17732 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17733 M:      Eugen Hristev <eugen.hristev@microchip.com>
17734 L:      linux-mmc@vger.kernel.org
17735 S:      Supported
17736 F:      drivers/mmc/host/sdhci-of-at91.c
17737
17738 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17739 M:      Ben Dooks <ben-linux@fluff.org>
17740 M:      Jaehoon Chung <jh80.chung@samsung.com>
17741 L:      linux-mmc@vger.kernel.org
17742 S:      Maintained
17743 F:      drivers/mmc/host/sdhci-s3c*
17744
17745 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17746 M:      Viresh Kumar <vireshk@kernel.org>
17747 L:      linux-mmc@vger.kernel.org
17748 S:      Maintained
17749 F:      drivers/mmc/host/sdhci-spear.c
17750
17751 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17752 M:      Kishon Vijay Abraham I <kishon@ti.com>
17753 L:      linux-mmc@vger.kernel.org
17754 S:      Maintained
17755 F:      drivers/mmc/host/sdhci-omap.c
17756
17757 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17758 M:      Haibo Chen <haibo.chen@nxp.com>
17759 L:      linux-imx@nxp.com
17760 L:      linux-mmc@vger.kernel.org
17761 S:      Maintained
17762 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17763
17764 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17765 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17766 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17767 L:      linux-block@vger.kernel.org
17768 S:      Supported
17769 F:      block/opal_proto.h
17770 F:      block/sed*
17771 F:      include/linux/sed*
17772 F:      include/uapi/linux/sed*
17773
17774 SECURITY CONTACT
17775 M:      Security Officers <security@kernel.org>
17776 S:      Supported
17777 F:      Documentation/admin-guide/security-bugs.rst
17778
17779 SECURITY SUBSYSTEM
17780 M:      James Morris <jmorris@namei.org>
17781 M:      "Serge E. Hallyn" <serge@hallyn.com>
17782 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17783 S:      Supported
17784 W:      http://kernsec.org/
17785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17786 F:      security/
17787 X:      security/selinux/
17788
17789 SELINUX SECURITY MODULE
17790 M:      Paul Moore <paul@paul-moore.com>
17791 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17792 M:      Eric Paris <eparis@parisplace.org>
17793 L:      selinux@vger.kernel.org
17794 S:      Supported
17795 W:      https://selinuxproject.org
17796 W:      https://github.com/SELinuxProject
17797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17798 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17799 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17800 F:      Documentation/admin-guide/LSM/SELinux.rst
17801 F:      include/trace/events/avc.h
17802 F:      include/uapi/linux/selinux_netlink.h
17803 F:      scripts/selinux/
17804 F:      security/selinux/
17805
17806 SENSABLE PHANTOM
17807 M:      Jiri Slaby <jirislaby@kernel.org>
17808 S:      Maintained
17809 F:      drivers/misc/phantom.c
17810 F:      include/uapi/linux/phantom.h
17811
17812 SENSEAIR SUNRISE 006-0-0007
17813 M:      Jacopo Mondi <jacopo@jmondi.org>
17814 S:      Maintained
17815 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17816 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17817 F:      drivers/iio/chemical/sunrise_co2.c
17818
17819 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17820 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17821 S:      Maintained
17822 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17823 F:      drivers/iio/chemical/scd30.h
17824 F:      drivers/iio/chemical/scd30_core.c
17825 F:      drivers/iio/chemical/scd30_i2c.c
17826 F:      drivers/iio/chemical/scd30_serial.c
17827
17828 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17829 M:      Roan van Dijk <roan@protonic.nl>
17830 S:      Maintained
17831 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17832 F:      drivers/iio/chemical/scd4x.c
17833
17834 SENSIRION SGP40 GAS SENSOR DRIVER
17835 M:      Andreas Klinger <ak@it-klinger.de>
17836 S:      Maintained
17837 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17838 F:      drivers/iio/chemical/sgp40.c
17839
17840 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17841 M:      Tomasz Duszynski <tduszyns@gmail.com>
17842 S:      Maintained
17843 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17844 F:      drivers/iio/chemical/sps30.c
17845 F:      drivers/iio/chemical/sps30_i2c.c
17846 F:      drivers/iio/chemical/sps30_serial.c
17847
17848 SERIAL DEVICE BUS
17849 M:      Rob Herring <robh@kernel.org>
17850 L:      linux-serial@vger.kernel.org
17851 S:      Maintained
17852 F:      Documentation/devicetree/bindings/serial/serial.yaml
17853 F:      drivers/tty/serdev/
17854 F:      include/linux/serdev.h
17855
17856 SERIAL DRIVERS
17857 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17858 L:      linux-serial@vger.kernel.org
17859 S:      Maintained
17860 F:      Documentation/devicetree/bindings/serial/
17861 F:      drivers/tty/serial/
17862
17863 SERIAL IR RECEIVER
17864 M:      Sean Young <sean@mess.org>
17865 L:      linux-media@vger.kernel.org
17866 S:      Maintained
17867 F:      drivers/media/rc/serial_ir.c
17868
17869 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17870 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17871 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17872 S:      Maintained
17873 F:      Documentation/devicetree/bindings/slimbus/
17874 F:      drivers/slimbus/
17875 F:      include/linux/slimbus.h
17876
17877 SFC NETWORK DRIVER
17878 M:      Edward Cree <ecree.xilinx@gmail.com>
17879 M:      Martin Habets <habetsm.xilinx@gmail.com>
17880 L:      netdev@vger.kernel.org
17881 S:      Supported
17882 F:      drivers/net/ethernet/sfc/
17883
17884 SFF/SFP/SFP+ MODULE SUPPORT
17885 M:      Russell King <linux@armlinux.org.uk>
17886 L:      netdev@vger.kernel.org
17887 S:      Maintained
17888 F:      drivers/net/phy/phylink.c
17889 F:      drivers/net/phy/sfp*
17890 F:      include/linux/mdio/mdio-i2c.h
17891 F:      include/linux/phylink.h
17892 F:      include/linux/sfp.h
17893 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)
17894
17895 SGI GRU DRIVER
17896 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17897 S:      Maintained
17898 F:      drivers/misc/sgi-gru/
17899
17900 SGI XP/XPC/XPNET DRIVER
17901 M:      Robin Holt <robinmholt@gmail.com>
17902 M:      Steve Wahl <steve.wahl@hpe.com>
17903 R:      Mike Travis <mike.travis@hpe.com>
17904 S:      Maintained
17905 F:      drivers/misc/sgi-xp/
17906
17907 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17908 M:      Karsten Graul <kgraul@linux.ibm.com>
17909 L:      linux-s390@vger.kernel.org
17910 S:      Supported
17911 W:      http://www.ibm.com/developerworks/linux/linux390/
17912 F:      net/smc/
17913
17914 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17915 M:      Linus Walleij <linus.walleij@linaro.org>
17916 L:      linux-iio@vger.kernel.org
17917 S:      Maintained
17918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17919 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17920 F:      drivers/iio/light/gp2ap002.c
17921
17922 SHARP RJ54N1CB0C SENSOR DRIVER
17923 M:      Jacopo Mondi <jacopo@jmondi.org>
17924 L:      linux-media@vger.kernel.org
17925 S:      Odd fixes
17926 T:      git git://linuxtv.org/media_tree.git
17927 F:      drivers/media/i2c/rj54n1cb0c.c
17928 F:      include/media/i2c/rj54n1cb0c.h
17929
17930 SH_VOU V4L2 OUTPUT DRIVER
17931 L:      linux-media@vger.kernel.org
17932 S:      Orphan
17933 F:      drivers/media/platform/renesas/sh_vou.c
17934 F:      include/media/drv-intf/sh_vou.h
17935
17936 SI2157 MEDIA DRIVER
17937 M:      Antti Palosaari <crope@iki.fi>
17938 L:      linux-media@vger.kernel.org
17939 S:      Maintained
17940 W:      https://linuxtv.org
17941 W:      http://palosaari.fi/linux/
17942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17943 T:      git git://linuxtv.org/anttip/media_tree.git
17944 F:      drivers/media/tuners/si2157*
17945
17946 SI2165 MEDIA DRIVER
17947 M:      Matthias Schwarzott <zzam@gentoo.org>
17948 L:      linux-media@vger.kernel.org
17949 S:      Maintained
17950 W:      https://linuxtv.org
17951 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17952 F:      drivers/media/dvb-frontends/si2165*
17953
17954 SI2168 MEDIA DRIVER
17955 M:      Antti Palosaari <crope@iki.fi>
17956 L:      linux-media@vger.kernel.org
17957 S:      Maintained
17958 W:      https://linuxtv.org
17959 W:      http://palosaari.fi/linux/
17960 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17961 T:      git git://linuxtv.org/anttip/media_tree.git
17962 F:      drivers/media/dvb-frontends/si2168*
17963
17964 SI470X FM RADIO RECEIVER I2C DRIVER
17965 M:      Hans Verkuil <hverkuil@xs4all.nl>
17966 L:      linux-media@vger.kernel.org
17967 S:      Odd Fixes
17968 W:      https://linuxtv.org
17969 T:      git git://linuxtv.org/media_tree.git
17970 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17971
17972 SI470X FM RADIO RECEIVER USB DRIVER
17973 M:      Hans Verkuil <hverkuil@xs4all.nl>
17974 L:      linux-media@vger.kernel.org
17975 S:      Maintained
17976 W:      https://linuxtv.org
17977 T:      git git://linuxtv.org/media_tree.git
17978 F:      drivers/media/radio/si470x/radio-si470x-common.c
17979 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17980 F:      drivers/media/radio/si470x/radio-si470x.h
17981
17982 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17983 M:      Eduardo Valentin <edubezval@gmail.com>
17984 L:      linux-media@vger.kernel.org
17985 S:      Odd Fixes
17986 W:      https://linuxtv.org
17987 T:      git git://linuxtv.org/media_tree.git
17988 F:      drivers/media/radio/si4713/si4713.?
17989
17990 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17991 M:      Eduardo Valentin <edubezval@gmail.com>
17992 L:      linux-media@vger.kernel.org
17993 S:      Odd Fixes
17994 W:      https://linuxtv.org
17995 T:      git git://linuxtv.org/media_tree.git
17996 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17997
17998 SI4713 FM RADIO TRANSMITTER USB DRIVER
17999 M:      Hans Verkuil <hverkuil@xs4all.nl>
18000 L:      linux-media@vger.kernel.org
18001 S:      Maintained
18002 W:      https://linuxtv.org
18003 T:      git git://linuxtv.org/media_tree.git
18004 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18005
18006 SIANO DVB DRIVER
18007 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18008 L:      linux-media@vger.kernel.org
18009 S:      Odd fixes
18010 W:      https://linuxtv.org
18011 T:      git git://linuxtv.org/media_tree.git
18012 F:      drivers/media/common/siano/
18013 F:      drivers/media/mmc/siano/
18014 F:      drivers/media/usb/siano/
18015 F:      drivers/media/usb/siano/
18016
18017 SIFIVE DRIVERS
18018 M:      Palmer Dabbelt <palmer@dabbelt.com>
18019 M:      Paul Walmsley <paul.walmsley@sifive.com>
18020 L:      linux-riscv@lists.infradead.org
18021 S:      Supported
18022 T:      git git://github.com/sifive/riscv-linux.git
18023 N:      sifive
18024 K:      [^@]sifive
18025
18026 SIFIVE FU540 SYSTEM-ON-CHIP
18027 M:      Paul Walmsley <paul.walmsley@sifive.com>
18028 M:      Palmer Dabbelt <palmer@dabbelt.com>
18029 L:      linux-riscv@lists.infradead.org
18030 S:      Supported
18031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18032 N:      fu540
18033 K:      fu540
18034
18035 SIFIVE PDMA DRIVER
18036 M:      Green Wan <green.wan@sifive.com>
18037 S:      Maintained
18038 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18039 F:      drivers/dma/sf-pdma/
18040
18041 SILEAD TOUCHSCREEN DRIVER
18042 M:      Hans de Goede <hdegoede@redhat.com>
18043 L:      linux-input@vger.kernel.org
18044 L:      platform-driver-x86@vger.kernel.org
18045 S:      Maintained
18046 F:      drivers/input/touchscreen/silead.c
18047 F:      drivers/platform/x86/touchscreen_dmi.c
18048
18049 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18050 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18051 S:      Supported
18052 F:      Documentation/devicetree/bindings/staging/net/wireless/silabs,wfx.yaml
18053 F:      drivers/staging/wfx/
18054
18055 SILICON MOTION SM712 FRAME BUFFER DRIVER
18056 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18057 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18058 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18059 L:      linux-fbdev@vger.kernel.org
18060 S:      Maintained
18061 F:      Documentation/fb/sm712fb.rst
18062 F:      drivers/video/fbdev/sm712*
18063
18064 SILVACO I3C DUAL-ROLE MASTER
18065 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18066 M:      Conor Culhane <conor.culhane@silvaco.com>
18067 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18068 S:      Maintained
18069 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18070 F:      drivers/i3c/master/svc-i3c-master.c
18071
18072 SIMPLEFB FB DRIVER
18073 M:      Hans de Goede <hdegoede@redhat.com>
18074 L:      linux-fbdev@vger.kernel.org
18075 S:      Maintained
18076 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18077 F:      drivers/video/fbdev/simplefb.c
18078 F:      include/linux/platform_data/simplefb.h
18079
18080 SIMTEC EB110ATX (Chalice CATS)
18081 M:      Simtec Linux Team <linux@simtec.co.uk>
18082 S:      Supported
18083 W:      http://www.simtec.co.uk/products/EB110ATX/
18084
18085 SIMTEC EB2410ITX (BAST)
18086 M:      Simtec Linux Team <linux@simtec.co.uk>
18087 S:      Supported
18088 W:      http://www.simtec.co.uk/products/EB2410ITX/
18089 F:      arch/arm/mach-s3c/bast-ide.c
18090 F:      arch/arm/mach-s3c/bast-irq.c
18091 F:      arch/arm/mach-s3c/mach-bast.c
18092
18093 SIOX
18094 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18095 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18096 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18097 S:      Supported
18098 F:      drivers/gpio/gpio-siox.c
18099 F:      drivers/siox/*
18100 F:      include/trace/events/siox.h
18101
18102 SIPHASH PRF ROUTINES
18103 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18104 S:      Maintained
18105 F:      include/linux/siphash.h
18106 F:      lib/siphash.c
18107 F:      lib/test_siphash.c
18108
18109 SIS 190 ETHERNET DRIVER
18110 M:      Francois Romieu <romieu@fr.zoreil.com>
18111 L:      netdev@vger.kernel.org
18112 S:      Maintained
18113 F:      drivers/net/ethernet/sis/sis190.c
18114
18115 SIS 900/7016 FAST ETHERNET DRIVER
18116 M:      Daniele Venzano <venza@brownhat.org>
18117 L:      netdev@vger.kernel.org
18118 S:      Maintained
18119 W:      http://www.brownhat.org/sis900.html
18120 F:      drivers/net/ethernet/sis/sis900.*
18121
18122 SIS FRAMEBUFFER DRIVER
18123 M:      Thomas Winischhofer <thomas@winischhofer.net>
18124 S:      Maintained
18125 W:      http://www.winischhofer.net/linuxsisvga.shtml
18126 F:      Documentation/fb/sisfb.rst
18127 F:      drivers/video/fbdev/sis/
18128 F:      include/video/sisfb.h
18129
18130 SIS I2C TOUCHSCREEN DRIVER
18131 M:      Mika Penttilä <mika.penttila@nextfour.com>
18132 L:      linux-input@vger.kernel.org
18133 S:      Maintained
18134 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18135 F:      drivers/input/touchscreen/sis_i2c.c
18136
18137 SIS USB2VGA DRIVER
18138 M:      Thomas Winischhofer <thomas@winischhofer.net>
18139 S:      Maintained
18140 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18141 F:      drivers/usb/misc/sisusbvga/
18142
18143 SL28 CPLD MFD DRIVER
18144 M:      Michael Walle <michael@walle.cc>
18145 S:      Maintained
18146 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18147 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18148 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18149 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18150 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18151 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18152 F:      drivers/gpio/gpio-sl28cpld.c
18153 F:      drivers/hwmon/sl28cpld-hwmon.c
18154 F:      drivers/irqchip/irq-sl28cpld.c
18155 F:      drivers/pwm/pwm-sl28cpld.c
18156 F:      drivers/watchdog/sl28cpld_wdt.c
18157
18158 SLAB ALLOCATOR
18159 M:      Christoph Lameter <cl@linux.com>
18160 M:      Pekka Enberg <penberg@kernel.org>
18161 M:      David Rientjes <rientjes@google.com>
18162 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18163 M:      Andrew Morton <akpm@linux-foundation.org>
18164 M:      Vlastimil Babka <vbabka@suse.cz>
18165 R:      Roman Gushchin <roman.gushchin@linux.dev>
18166 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
18167 L:      linux-mm@kvack.org
18168 S:      Maintained
18169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18170 F:      include/linux/sl?b*.h
18171 F:      mm/sl?b*
18172
18173 SLEEPABLE READ-COPY UPDATE (SRCU)
18174 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18175 M:      "Paul E. McKenney" <paulmck@kernel.org>
18176 M:      Josh Triplett <josh@joshtriplett.org>
18177 R:      Steven Rostedt <rostedt@goodmis.org>
18178 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18179 L:      rcu@vger.kernel.org
18180 S:      Supported
18181 W:      http://www.rdrop.com/users/paulmck/RCU/
18182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18183 F:      include/linux/srcu*.h
18184 F:      kernel/rcu/srcu*.c
18185
18186 SMACK SECURITY MODULE
18187 M:      Casey Schaufler <casey@schaufler-ca.com>
18188 L:      linux-security-module@vger.kernel.org
18189 S:      Maintained
18190 W:      http://schaufler-ca.com
18191 T:      git git://github.com/cschaufler/smack-next
18192 F:      Documentation/admin-guide/LSM/Smack.rst
18193 F:      security/smack/
18194
18195 SMC91x ETHERNET DRIVER
18196 M:      Nicolas Pitre <nico@fluxnic.net>
18197 S:      Odd Fixes
18198 F:      drivers/net/ethernet/smsc/smc91x.*
18199
18200 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18201 M:      Mark Rutland <mark.rutland@arm.com>
18202 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
18203 M:      Sudeep Holla <sudeep.holla@arm.com>
18204 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18205 S:      Maintained
18206 F:      drivers/firmware/smccc/
18207 F:      include/linux/arm-smccc.h
18208
18209 SMM665 HARDWARE MONITOR DRIVER
18210 M:      Guenter Roeck <linux@roeck-us.net>
18211 L:      linux-hwmon@vger.kernel.org
18212 S:      Maintained
18213 F:      Documentation/hwmon/smm665.rst
18214 F:      drivers/hwmon/smm665.c
18215
18216 SMSC EMC2103 HARDWARE MONITOR DRIVER
18217 M:      Steve Glendinning <steve.glendinning@shawell.net>
18218 L:      linux-hwmon@vger.kernel.org
18219 S:      Maintained
18220 F:      Documentation/hwmon/emc2103.rst
18221 F:      drivers/hwmon/emc2103.c
18222
18223 SMSC SCH5627 HARDWARE MONITOR DRIVER
18224 M:      Hans de Goede <hdegoede@redhat.com>
18225 L:      linux-hwmon@vger.kernel.org
18226 S:      Supported
18227 F:      Documentation/hwmon/sch5627.rst
18228 F:      drivers/hwmon/sch5627.c
18229
18230 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18231 M:      Steve Glendinning <steve.glendinning@shawell.net>
18232 L:      linux-fbdev@vger.kernel.org
18233 S:      Maintained
18234 F:      drivers/video/fbdev/smscufx.c
18235
18236 SMSC47B397 HARDWARE MONITOR DRIVER
18237 M:      Jean Delvare <jdelvare@suse.com>
18238 L:      linux-hwmon@vger.kernel.org
18239 S:      Maintained
18240 F:      Documentation/hwmon/smsc47b397.rst
18241 F:      drivers/hwmon/smsc47b397.c
18242
18243 SMSC911x ETHERNET DRIVER
18244 M:      Steve Glendinning <steve.glendinning@shawell.net>
18245 L:      netdev@vger.kernel.org
18246 S:      Maintained
18247 F:      drivers/net/ethernet/smsc/smsc911x.*
18248 F:      include/linux/smsc911x.h
18249
18250 SMSC9420 PCI ETHERNET DRIVER
18251 M:      Steve Glendinning <steve.glendinning@shawell.net>
18252 L:      netdev@vger.kernel.org
18253 S:      Maintained
18254 F:      drivers/net/ethernet/smsc/smsc9420.*
18255
18256 SOCIONEXT (SNI) AVE NETWORK DRIVER
18257 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18258 L:      netdev@vger.kernel.org
18259 S:      Maintained
18260 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18261 F:      drivers/net/ethernet/socionext/sni_ave.c
18262
18263 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18264 M:      Jassi Brar <jaswinder.singh@linaro.org>
18265 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18266 L:      netdev@vger.kernel.org
18267 S:      Maintained
18268 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18269 F:      drivers/net/ethernet/socionext/netsec.c
18270
18271 SOCIONEXT (SNI) Synquacer SPI DRIVER
18272 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18273 M:      Jassi Brar <jaswinder.singh@linaro.org>
18274 L:      linux-spi@vger.kernel.org
18275 S:      Maintained
18276 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18277 F:      drivers/spi/spi-synquacer.c
18278
18279 SOCIONEXT SYNQUACER I2C DRIVER
18280 M:      Ard Biesheuvel <ardb@kernel.org>
18281 L:      linux-i2c@vger.kernel.org
18282 S:      Maintained
18283 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18284 F:      drivers/i2c/busses/i2c-synquacer.c
18285
18286 SOCIONEXT UNIPHIER SOUND DRIVER
18287 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18288 S:      Orphan
18289 F:      sound/soc/uniphier/
18290
18291 SOEKRIS NET48XX LED SUPPORT
18292 M:      Chris Boot <bootc@bootc.net>
18293 S:      Maintained
18294 F:      drivers/leds/leds-net48xx.c
18295
18296 SOFT-IWARP DRIVER (siw)
18297 M:      Bernard Metzler <bmt@zurich.ibm.com>
18298 L:      linux-rdma@vger.kernel.org
18299 S:      Supported
18300 F:      drivers/infiniband/sw/siw/
18301 F:      include/uapi/rdma/siw-abi.h
18302
18303 SOFT-ROCE DRIVER (rxe)
18304 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18305 L:      linux-rdma@vger.kernel.org
18306 S:      Supported
18307 F:      drivers/infiniband/sw/rxe/
18308 F:      include/uapi/rdma/rdma_user_rxe.h
18309
18310 SOFTLOGIC 6x10 MPEG CODEC
18311 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18312 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18313 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18314 M:      Ismael Luceno <ismael@iodev.co.uk>
18315 L:      linux-media@vger.kernel.org
18316 S:      Supported
18317 F:      drivers/media/pci/solo6x10/
18318
18319 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18320 M:      James Morse <james.morse@arm.com>
18321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18322 S:      Maintained
18323 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18324 F:      drivers/firmware/arm_sdei.c
18325 F:      include/linux/arm_sdei.h
18326 F:      include/uapi/linux/arm_sdei.h
18327
18328 SOFTWARE NODES AND DEVICE PROPERTIES
18329 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18330 R:      Daniel Scally <djrscally@gmail.com>
18331 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18332 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18333 L:      linux-acpi@vger.kernel.org
18334 S:      Maintained
18335 F:      drivers/base/property.c
18336 F:      drivers/base/swnode.c
18337 F:      include/linux/fwnode.h
18338 F:      include/linux/property.h
18339
18340 SOFTWARE RAID (Multiple Disks) SUPPORT
18341 M:      Song Liu <song@kernel.org>
18342 L:      linux-raid@vger.kernel.org
18343 S:      Supported
18344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18345 F:      drivers/md/Kconfig
18346 F:      drivers/md/Makefile
18347 F:      drivers/md/md*
18348 F:      drivers/md/raid*
18349 F:      include/linux/raid/
18350 F:      include/uapi/linux/raid/
18351
18352 SOLIDRUN CLEARFOG SUPPORT
18353 M:      Russell King <linux@armlinux.org.uk>
18354 S:      Maintained
18355 F:      arch/arm/boot/dts/armada-388-clearfog*
18356 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18357
18358 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18359 M:      Russell King <linux@armlinux.org.uk>
18360 S:      Maintained
18361 F:      arch/arm/boot/dts/imx6*-cubox-i*
18362 F:      arch/arm/boot/dts/imx6*-hummingboard*
18363 F:      arch/arm/boot/dts/imx6*-sr-*
18364
18365 SONIC NETWORK DRIVER
18366 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18367 L:      netdev@vger.kernel.org
18368 S:      Maintained
18369 F:      drivers/net/ethernet/natsemi/sonic.*
18370
18371 SONICS SILICON BACKPLANE DRIVER (SSB)
18372 M:      Michael Buesch <m@bues.ch>
18373 L:      linux-wireless@vger.kernel.org
18374 S:      Maintained
18375 F:      drivers/ssb/
18376 F:      include/linux/ssb/
18377
18378 SONY IMX208 SENSOR DRIVER
18379 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18380 L:      linux-media@vger.kernel.org
18381 S:      Maintained
18382 T:      git git://linuxtv.org/media_tree.git
18383 F:      drivers/media/i2c/imx208.c
18384
18385 SONY IMX214 SENSOR DRIVER
18386 M:      Ricardo Ribalda <ribalda@kernel.org>
18387 L:      linux-media@vger.kernel.org
18388 S:      Maintained
18389 T:      git git://linuxtv.org/media_tree.git
18390 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18391 F:      drivers/media/i2c/imx214.c
18392
18393 SONY IMX219 SENSOR DRIVER
18394 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18395 L:      linux-media@vger.kernel.org
18396 S:      Maintained
18397 T:      git git://linuxtv.org/media_tree.git
18398 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18399 F:      drivers/media/i2c/imx219.c
18400
18401 SONY IMX258 SENSOR DRIVER
18402 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18403 L:      linux-media@vger.kernel.org
18404 S:      Maintained
18405 T:      git git://linuxtv.org/media_tree.git
18406 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18407 F:      drivers/media/i2c/imx258.c
18408
18409 SONY IMX274 SENSOR DRIVER
18410 M:      Leon Luo <leonl@leopardimaging.com>
18411 L:      linux-media@vger.kernel.org
18412 S:      Maintained
18413 T:      git git://linuxtv.org/media_tree.git
18414 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18415 F:      drivers/media/i2c/imx274.c
18416
18417 SONY IMX290 SENSOR DRIVER
18418 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18419 L:      linux-media@vger.kernel.org
18420 S:      Maintained
18421 T:      git git://linuxtv.org/media_tree.git
18422 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18423 F:      drivers/media/i2c/imx290.c
18424
18425 SONY IMX319 SENSOR DRIVER
18426 M:      Bingbu Cao <bingbu.cao@intel.com>
18427 L:      linux-media@vger.kernel.org
18428 S:      Maintained
18429 T:      git git://linuxtv.org/media_tree.git
18430 F:      drivers/media/i2c/imx319.c
18431
18432 SONY IMX334 SENSOR DRIVER
18433 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18434 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18435 L:      linux-media@vger.kernel.org
18436 S:      Maintained
18437 T:      git git://linuxtv.org/media_tree.git
18438 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18439 F:      drivers/media/i2c/imx334.c
18440
18441 SONY IMX335 SENSOR DRIVER
18442 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18443 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18444 L:      linux-media@vger.kernel.org
18445 S:      Maintained
18446 T:      git git://linuxtv.org/media_tree.git
18447 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18448 F:      drivers/media/i2c/imx335.c
18449
18450 SONY IMX355 SENSOR DRIVER
18451 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18452 L:      linux-media@vger.kernel.org
18453 S:      Maintained
18454 T:      git git://linuxtv.org/media_tree.git
18455 F:      drivers/media/i2c/imx355.c
18456
18457 SONY IMX412 SENSOR DRIVER
18458 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18459 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18460 L:      linux-media@vger.kernel.org
18461 S:      Maintained
18462 T:      git git://linuxtv.org/media_tree.git
18463 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18464 F:      drivers/media/i2c/imx412.c
18465
18466 SONY MEMORYSTICK SUBSYSTEM
18467 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18468 M:      Alex Dubov <oakad@yahoo.com>
18469 M:      Ulf Hansson <ulf.hansson@linaro.org>
18470 L:      linux-mmc@vger.kernel.org
18471 S:      Maintained
18472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18473 F:      drivers/memstick/
18474 F:      include/linux/memstick.h
18475
18476 SONY VAIO CONTROL DEVICE DRIVER
18477 M:      Mattia Dongili <malattia@linux.it>
18478 L:      platform-driver-x86@vger.kernel.org
18479 S:      Maintained
18480 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18481 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18482 F:      drivers/char/sonypi.c
18483 F:      drivers/platform/x86/sony-laptop.c
18484 F:      include/linux/sony-laptop.h
18485
18486 SOUND
18487 M:      Jaroslav Kysela <perex@perex.cz>
18488 M:      Takashi Iwai <tiwai@suse.com>
18489 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18490 S:      Maintained
18491 W:      http://www.alsa-project.org/
18492 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18494 F:      Documentation/sound/
18495 F:      include/sound/
18496 F:      include/uapi/sound/
18497 F:      sound/
18498 F:      tools/testing/selftests/alsa
18499
18500 SOUND - COMPRESSED AUDIO
18501 M:      Vinod Koul <vkoul@kernel.org>
18502 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18503 S:      Supported
18504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18505 F:      Documentation/sound/designs/compress-offload.rst
18506 F:      include/sound/compress_driver.h
18507 F:      include/uapi/sound/compress_*
18508 F:      sound/core/compress_offload.c
18509 F:      sound/soc/soc-compress.c
18510
18511 SOUND - DMAENGINE HELPERS
18512 M:      Lars-Peter Clausen <lars@metafoo.de>
18513 S:      Supported
18514 F:      include/sound/dmaengine_pcm.h
18515 F:      sound/core/pcm_dmaengine.c
18516 F:      sound/soc/soc-generic-dmaengine-pcm.c
18517
18518 SOUND - ALSA SELFTESTS
18519 M:      Mark Brown <broonie@kernel.org>
18520 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18521 L:      linux-kselftest@vger.kernel.org
18522 S:      Supported
18523 F:      tools/testing/selftests/alsa
18524
18525 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18526 M:      Liam Girdwood <lgirdwood@gmail.com>
18527 M:      Mark Brown <broonie@kernel.org>
18528 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18529 S:      Supported
18530 W:      http://alsa-project.org/main/index.php/ASoC
18531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18532 F:      Documentation/devicetree/bindings/sound/
18533 F:      Documentation/sound/soc/
18534 F:      include/dt-bindings/sound/
18535 F:      include/sound/soc*
18536 F:      sound/soc/
18537
18538 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18539 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18540 M:      Liam Girdwood <lgirdwood@gmail.com>
18541 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18542 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18543 M:      Daniel Baluta <daniel.baluta@nxp.com>
18544 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18545 S:      Supported
18546 W:      https://github.com/thesofproject/linux/
18547 F:      sound/soc/sof/
18548
18549 SOUNDWIRE SUBSYSTEM
18550 M:      Vinod Koul <vkoul@kernel.org>
18551 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18552 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18553 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18554 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18555 S:      Supported
18556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18557 F:      Documentation/driver-api/soundwire/
18558 F:      drivers/soundwire/
18559 F:      include/linux/soundwire/
18560
18561 SP2 MEDIA DRIVER
18562 M:      Olli Salonen <olli.salonen@iki.fi>
18563 L:      linux-media@vger.kernel.org
18564 S:      Maintained
18565 W:      https://linuxtv.org
18566 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18567 F:      drivers/media/dvb-frontends/sp2*
18568
18569 SPARC + UltraSPARC (sparc/sparc64)
18570 M:      "David S. Miller" <davem@davemloft.net>
18571 L:      sparclinux@vger.kernel.org
18572 S:      Maintained
18573 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18576 F:      arch/sparc/
18577 F:      drivers/sbus/
18578
18579 SPARC SERIAL DRIVERS
18580 M:      "David S. Miller" <davem@davemloft.net>
18581 L:      sparclinux@vger.kernel.org
18582 S:      Maintained
18583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18585 F:      drivers/tty/serial/suncore.c
18586 F:      drivers/tty/serial/sunhv.c
18587 F:      drivers/tty/serial/sunsab.c
18588 F:      drivers/tty/serial/sunsab.h
18589 F:      drivers/tty/serial/sunsu.c
18590 F:      drivers/tty/serial/sunzilog.c
18591 F:      drivers/tty/serial/sunzilog.h
18592 F:      drivers/tty/vcc.c
18593 F:      include/linux/sunserialcore.h
18594
18595 SPARSE CHECKER
18596 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18597 L:      linux-sparse@vger.kernel.org
18598 S:      Maintained
18599 W:      https://sparse.docs.kernel.org/
18600 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18601 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18602 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18603 F:      include/linux/compiler.h
18604
18605 SPEAKUP CONSOLE SPEECH DRIVER
18606 M:      William Hubbs <w.d.hubbs@gmail.com>
18607 M:      Chris Brannon <chris@the-brannons.com>
18608 M:      Kirk Reiser <kirk@reisers.ca>
18609 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18610 L:      speakup@linux-speakup.org
18611 S:      Odd Fixes
18612 W:      http://www.linux-speakup.org/
18613 W:      https://github.com/linux-speakup/speakup
18614 B:      https://github.com/linux-speakup/speakup/issues
18615 F:      drivers/accessibility/speakup/
18616
18617 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18618 M:      Viresh Kumar <vireshk@kernel.org>
18619 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18620 M:      soc@kernel.org
18621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18622 S:      Maintained
18623 W:      http://www.st.com/spear
18624 F:      arch/arm/boot/dts/spear*
18625 F:      arch/arm/mach-spear/
18626 F:      drivers/clk/spear/
18627 F:      drivers/pinctrl/spear/
18628
18629 SPI NOR SUBSYSTEM
18630 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18631 M:      Pratyush Yadav <p.yadav@ti.com>
18632 R:      Michael Walle <michael@walle.cc>
18633 L:      linux-mtd@lists.infradead.org
18634 S:      Maintained
18635 W:      http://www.linux-mtd.infradead.org/
18636 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18637 C:      irc://irc.oftc.net/mtd
18638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18639 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18640 F:      drivers/mtd/spi-nor/
18641 F:      include/linux/mtd/spi-nor.h
18642
18643 SPI SUBSYSTEM
18644 M:      Mark Brown <broonie@kernel.org>
18645 L:      linux-spi@vger.kernel.org
18646 S:      Maintained
18647 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18649 F:      Documentation/devicetree/bindings/spi/
18650 F:      Documentation/spi/
18651 F:      drivers/spi/
18652 F:      include/linux/spi/
18653 F:      include/uapi/linux/spi/
18654 F:      tools/spi/
18655
18656 SPIDERNET NETWORK DRIVER for CELL
18657 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18658 M:      Geoff Levand <geoff@infradead.org>
18659 L:      netdev@vger.kernel.org
18660 L:      linuxppc-dev@lists.ozlabs.org
18661 S:      Maintained
18662 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18663 F:      drivers/net/ethernet/toshiba/spider_net*
18664
18665 SPMI SUBSYSTEM
18666 M:      Stephen Boyd <sboyd@kernel.org>
18667 L:      linux-kernel@vger.kernel.org
18668 S:      Maintained
18669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18670 F:      Documentation/devicetree/bindings/spmi/
18671 F:      drivers/spmi/
18672 F:      include/dt-bindings/spmi/spmi.h
18673 F:      include/linux/spmi.h
18674 F:      include/trace/events/spmi.h
18675
18676 SPU FILE SYSTEM
18677 M:      Jeremy Kerr <jk@ozlabs.org>
18678 L:      linuxppc-dev@lists.ozlabs.org
18679 S:      Supported
18680 W:      http://www.ibm.com/developerworks/power/cell/
18681 F:      Documentation/filesystems/spufs/spufs.rst
18682 F:      arch/powerpc/platforms/cell/spufs/
18683
18684 SQUASHFS FILE SYSTEM
18685 M:      Phillip Lougher <phillip@squashfs.org.uk>
18686 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18687 S:      Maintained
18688 W:      http://squashfs.org.uk
18689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18690 F:      Documentation/filesystems/squashfs.rst
18691 F:      fs/squashfs/
18692
18693 SRM (Alpha) environment access
18694 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18695 S:      Maintained
18696 F:      arch/alpha/kernel/srm_env.c
18697
18698 ST LSM6DSx IMU IIO DRIVER
18699 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
18700 L:      linux-iio@vger.kernel.org
18701 S:      Maintained
18702 W:      http://www.st.com/
18703 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18704 F:      drivers/iio/imu/st_lsm6dsx/
18705
18706 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18707 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
18708 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
18709 L:      linux-media@vger.kernel.org
18710 S:      Maintained
18711 T:      git git://linuxtv.org/media_tree.git
18712 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18713 F:      drivers/media/i2c/st-mipid02.c
18714
18715 ST STM32 I2C/SMBUS DRIVER
18716 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18717 M:      Alain Volmat <alain.volmat@foss.st.com>
18718 L:      linux-i2c@vger.kernel.org
18719 S:      Maintained
18720 F:      drivers/i2c/busses/i2c-stm32*
18721
18722 ST STM32 SPI DRIVER
18723 M:      Alain Volmat <alain.volmat@foss.st.com>
18724 L:      linux-spi@vger.kernel.org
18725 S:      Maintained
18726 F:      drivers/spi/spi-stm32.c
18727
18728 ST STPDDC60 DRIVER
18729 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18730 L:      linux-hwmon@vger.kernel.org
18731 S:      Maintained
18732 F:      Documentation/hwmon/stpddc60.rst
18733 F:      drivers/hwmon/pmbus/stpddc60.c
18734
18735 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18736 M:      Song Qiang <songqiang1304521@gmail.com>
18737 L:      linux-iio@vger.kernel.org
18738 S:      Maintained
18739 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18740 F:      drivers/iio/proximity/vl53l0x-i2c.c
18741
18742 STABLE BRANCH
18743 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18744 M:      Sasha Levin <sashal@kernel.org>
18745 L:      stable@vger.kernel.org
18746 S:      Supported
18747 F:      Documentation/process/stable-kernel-rules.rst
18748
18749 STAGING - ATOMISP DRIVER
18750 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18751 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18752 L:      linux-media@vger.kernel.org
18753 S:      Maintained
18754 F:      drivers/staging/media/atomisp/
18755
18756 STAGING - FIELDBUS SUBSYSTEM
18757 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18758 S:      Maintained
18759 F:      drivers/staging/fieldbus/*
18760 F:      drivers/staging/fieldbus/Documentation/
18761
18762 STAGING - HMS ANYBUS-S BUS
18763 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18764 S:      Maintained
18765 F:      drivers/staging/fieldbus/anybuss/
18766
18767 STAGING - INDUSTRIAL IO
18768 M:      Jonathan Cameron <jic23@kernel.org>
18769 L:      linux-iio@vger.kernel.org
18770 S:      Odd Fixes
18771 F:      Documentation/devicetree/bindings/staging/iio/
18772 F:      drivers/staging/iio/
18773
18774 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18775 M:      Marc Dietrich <marvin24@gmx.de>
18776 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18777 L:      linux-tegra@vger.kernel.org
18778 S:      Maintained
18779 F:      drivers/staging/nvec/
18780
18781 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18782 M:      Jens Frederich <jfrederich@gmail.com>
18783 M:      Jon Nettleton <jon.nettleton@gmail.com>
18784 S:      Maintained
18785 W:      http://wiki.laptop.org/go/DCON
18786 F:      drivers/staging/olpc_dcon/
18787
18788 STAGING - REALTEK RTL8188EU DRIVERS
18789 M:      Larry Finger <Larry.Finger@lwfinger.net>
18790 M:      Phillip Potter <phil@philpotter.co.uk>
18791 S:      Supported
18792 F:      drivers/staging/r8188eu/
18793
18794 STAGING - REALTEK RTL8712U DRIVERS
18795 M:      Larry Finger <Larry.Finger@lwfinger.net>
18796 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18797 S:      Odd Fixes
18798 F:      drivers/staging/rtl8712/
18799
18800 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18801 M:      Michael Hennerich <michael.hennerich@analog.com>
18802 L:      linux-fbdev@vger.kernel.org
18803 S:      Supported
18804 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18805 F:      drivers/staging/fbtft/fb_seps525.c
18806
18807 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18808 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18809 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18810 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18811 L:      linux-fbdev@vger.kernel.org
18812 S:      Maintained
18813 F:      drivers/staging/sm750fb/
18814
18815 STAGING - VIA VT665X DRIVERS
18816 M:      Forest Bond <forest@alittletooquiet.net>
18817 S:      Odd Fixes
18818 F:      drivers/staging/vt665?/
18819
18820 STAGING SUBSYSTEM
18821 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18822 L:      linux-staging@lists.linux.dev
18823 S:      Supported
18824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18825 F:      drivers/staging/
18826
18827 STARFIRE/DURALAN NETWORK DRIVER
18828 M:      Ion Badulescu <ionut@badula.org>
18829 S:      Odd Fixes
18830 F:      drivers/net/ethernet/adaptec/starfire*
18831
18832 STARFIVE JH7100 CLOCK DRIVERS
18833 M:      Emil Renner Berthing <kernel@esmil.dk>
18834 S:      Maintained
18835 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
18836 F:      drivers/clk/starfive/clk-starfive-jh7100*
18837 F:      include/dt-bindings/clock/starfive-jh7100*.h
18838
18839 STARFIVE JH7100 PINCTRL DRIVER
18840 M:      Emil Renner Berthing <kernel@esmil.dk>
18841 L:      linux-gpio@vger.kernel.org
18842 S:      Maintained
18843 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18844 F:      drivers/pinctrl/pinctrl-starfive.c
18845 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18846
18847 STARFIVE JH7100 RESET CONTROLLER DRIVER
18848 M:      Emil Renner Berthing <kernel@esmil.dk>
18849 S:      Maintained
18850 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18851 F:      drivers/reset/reset-starfive-jh7100.c
18852 F:      include/dt-bindings/reset/starfive-jh7100.h
18853
18854 STATIC BRANCH/CALL
18855 M:      Peter Zijlstra <peterz@infradead.org>
18856 M:      Josh Poimboeuf <jpoimboe@kernel.org>
18857 M:      Jason Baron <jbaron@akamai.com>
18858 R:      Steven Rostedt <rostedt@goodmis.org>
18859 R:      Ard Biesheuvel <ardb@kernel.org>
18860 S:      Supported
18861 F:      arch/*/include/asm/jump_label*.h
18862 F:      arch/*/include/asm/static_call*.h
18863 F:      arch/*/kernel/jump_label.c
18864 F:      arch/*/kernel/static_call.c
18865 F:      include/linux/jump_label*.h
18866 F:      include/linux/static_call*.h
18867 F:      kernel/jump_label.c
18868 F:      kernel/static_call.c
18869
18870 STI AUDIO (ASoC) DRIVERS
18871 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18872 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18873 S:      Maintained
18874 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18875 F:      sound/soc/sti/
18876
18877 STI CEC DRIVER
18878 M:      Alain Volmat <alain.volmat@foss.st.com>
18879 S:      Maintained
18880 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18881 F:      drivers/media/cec/platform/sti/
18882
18883 STK1160 USB VIDEO CAPTURE DRIVER
18884 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18885 L:      linux-media@vger.kernel.org
18886 S:      Maintained
18887 T:      git git://linuxtv.org/media_tree.git
18888 F:      drivers/media/usb/stk1160/
18889
18890 STM32 AUDIO (ASoC) DRIVERS
18891 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18892 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18893 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18894 S:      Maintained
18895 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18896 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18897 F:      sound/soc/stm/
18898
18899 STM32 TIMER/LPTIMER DRIVERS
18900 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18901 S:      Maintained
18902 F:      Documentation/ABI/testing/*timer-stm32
18903 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18904 F:      drivers/*/stm32-*timer*
18905 F:      drivers/pwm/pwm-stm32*
18906 F:      include/linux/*/stm32-*tim*
18907
18908 STMMAC ETHERNET DRIVER
18909 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18910 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18911 M:      Jose Abreu <joabreu@synopsys.com>
18912 L:      netdev@vger.kernel.org
18913 S:      Supported
18914 W:      http://www.stlinux.com
18915 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18916 F:      drivers/net/ethernet/stmicro/stmmac/
18917
18918 SUN3/3X
18919 M:      Sam Creasey <sammy@sammy.net>
18920 S:      Maintained
18921 W:      http://sammy.net/sun3/
18922 F:      arch/m68k/include/asm/sun3*
18923 F:      arch/m68k/kernel/*sun3*
18924 F:      arch/m68k/sun3*/
18925 F:      drivers/net/ethernet/i825xx/sun3*
18926
18927 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18928 M:      Hans de Goede <hdegoede@redhat.com>
18929 L:      linux-input@vger.kernel.org
18930 S:      Maintained
18931 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18932 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18933
18934 SUNDANCE NETWORK DRIVER
18935 M:      Denis Kirjanov <kda@linux-powerpc.org>
18936 L:      netdev@vger.kernel.org
18937 S:      Maintained
18938 F:      drivers/net/ethernet/dlink/sundance.c
18939
18940 SUNPLUS OCOTP DRIVER
18941 M:      Vincent Shih <vincent.sunplus@gmail.com>
18942 S:      Maintained
18943 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
18944 F:      drivers/nvmem/sunplus-ocotp.c
18945
18946 SUNPLUS RTC DRIVER
18947 M:      Vincent Shih <vincent.sunplus@gmail.com>
18948 L:      linux-rtc@vger.kernel.org
18949 S:      Maintained
18950 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
18951 F:      drivers/rtc/rtc-sunplus.c
18952
18953 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
18954 M:      Li-hao Kuo <lhjeff911@gmail.com>
18955 L:      linux-spi@vger.kernel.org
18956 S:      Maintained
18957 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
18958 F:      drivers/spi/spi-sunplus-sp7021.c
18959
18960 SUNPLUS UART DRIVER
18961 M:      Hammer Hsieh <hammerh0314@gmail.com>
18962 S:      Maintained
18963 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
18964 F:      drivers/tty/serial/sunplus-uart.c
18965
18966 SUPERH
18967 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18968 M:      Rich Felker <dalias@libc.org>
18969 L:      linux-sh@vger.kernel.org
18970 S:      Maintained
18971 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18972 F:      Documentation/sh/
18973 F:      arch/sh/
18974 F:      drivers/sh/
18975
18976 SUSPEND TO RAM
18977 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18978 M:      Len Brown <len.brown@intel.com>
18979 M:      Pavel Machek <pavel@ucw.cz>
18980 L:      linux-pm@vger.kernel.org
18981 S:      Supported
18982 B:      https://bugzilla.kernel.org
18983 F:      Documentation/power/
18984 F:      arch/x86/kernel/acpi/
18985 F:      drivers/base/power/
18986 F:      include/linux/freezer.h
18987 F:      include/linux/pm.h
18988 F:      include/linux/suspend.h
18989 F:      kernel/power/
18990
18991 SVGA HANDLING
18992 M:      Martin Mares <mj@ucw.cz>
18993 L:      linux-video@atrey.karlin.mff.cuni.cz
18994 S:      Maintained
18995 F:      Documentation/admin-guide/svga.rst
18996 F:      arch/x86/boot/video*
18997
18998 SWIOTLB SUBSYSTEM
18999 M:      Christoph Hellwig <hch@infradead.org>
19000 L:      iommu@lists.linux-foundation.org
19001 S:      Supported
19002 W:      http://git.infradead.org/users/hch/dma-mapping.git
19003 T:      git git://git.infradead.org/users/hch/dma-mapping.git
19004 F:      arch/*/kernel/pci-swiotlb.c
19005 F:      include/linux/swiotlb.h
19006 F:      kernel/dma/swiotlb.c
19007
19008 SWITCHDEV
19009 M:      Jiri Pirko <jiri@resnulli.us>
19010 M:      Ivan Vecera <ivecera@redhat.com>
19011 L:      netdev@vger.kernel.org
19012 S:      Supported
19013 F:      include/net/switchdev.h
19014 F:      net/switchdev/
19015
19016 SY8106A REGULATOR DRIVER
19017 M:      Icenowy Zheng <icenowy@aosc.io>
19018 S:      Maintained
19019 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19020 F:      drivers/regulator/sy8106a-regulator.c
19021
19022 SYNC FILE FRAMEWORK
19023 M:      Sumit Semwal <sumit.semwal@linaro.org>
19024 R:      Gustavo Padovan <gustavo@padovan.org>
19025 L:      linux-media@vger.kernel.org
19026 L:      dri-devel@lists.freedesktop.org
19027 S:      Maintained
19028 T:      git git://anongit.freedesktop.org/drm/drm-misc
19029 F:      Documentation/driver-api/sync_file.rst
19030 F:      drivers/dma-buf/dma-fence*
19031 F:      drivers/dma-buf/sw_sync.c
19032 F:      drivers/dma-buf/sync_*
19033 F:      include/linux/sync_file.h
19034 F:      include/uapi/linux/sync_file.h
19035
19036 SYNOPSYS ARC ARCHITECTURE
19037 M:      Vineet Gupta <vgupta@kernel.org>
19038 L:      linux-snps-arc@lists.infradead.org
19039 S:      Supported
19040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19041 F:      Documentation/arc/
19042 F:      Documentation/devicetree/bindings/arc/*
19043 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19044 F:      arch/arc/
19045 F:      drivers/clocksource/arc_timer.c
19046 F:      drivers/tty/serial/arc_uart.c
19047
19048 SYNOPSYS ARC HSDK SDP pll clock driver
19049 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19050 S:      Supported
19051 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19052 F:      drivers/clk/clk-hsdk-pll.c
19053
19054 SYNOPSYS ARC SDP clock driver
19055 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19056 S:      Supported
19057 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19058 F:      drivers/clk/axs10x/*
19059
19060 SYNOPSYS ARC SDP platform support
19061 M:      Alexey Brodkin <abrodkin@synopsys.com>
19062 S:      Supported
19063 F:      Documentation/devicetree/bindings/arc/axs10*
19064 F:      arch/arc/boot/dts/ax*
19065 F:      arch/arc/plat-axs10x
19066
19067 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19068 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19069 S:      Supported
19070 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
19071 F:      drivers/reset/reset-axs10x.c
19072
19073 SYNOPSYS CREG GPIO DRIVER
19074 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19075 S:      Maintained
19076 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19077 F:      drivers/gpio/gpio-creg-snps.c
19078
19079 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19080 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19081 S:      Maintained
19082 F:      drivers/tty/serial/8250/8250_dw.c
19083 F:      drivers/tty/serial/8250/8250_dwlib.*
19084 F:      drivers/tty/serial/8250/8250_lpss.c
19085
19086 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19087 M:      Hoan Tran <hoan@os.amperecomputing.com>
19088 M:      Serge Semin <fancer.lancer@gmail.com>
19089 L:      linux-gpio@vger.kernel.org
19090 S:      Maintained
19091 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19092 F:      drivers/gpio/gpio-dwapb.c
19093
19094 SYNOPSYS DESIGNWARE APB SSI DRIVER
19095 M:      Serge Semin <fancer.lancer@gmail.com>
19096 L:      linux-spi@vger.kernel.org
19097 S:      Supported
19098 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19099 F:      drivers/spi/spi-dw*
19100
19101 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19102 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19103 S:      Maintained
19104 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19105 F:      drivers/dma/dw-axi-dmac/
19106
19107 SYNOPSYS DESIGNWARE DMAC DRIVER
19108 M:      Viresh Kumar <vireshk@kernel.org>
19109 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19110 S:      Maintained
19111 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19112 F:      drivers/dma/dw/
19113 F:      include/dt-bindings/dma/dw-dmac.h
19114 F:      include/linux/dma/dw.h
19115 F:      include/linux/platform_data/dma-dw.h
19116
19117 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19118 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19119 L:      netdev@vger.kernel.org
19120 S:      Supported
19121 F:      drivers/net/ethernet/synopsys/
19122
19123 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19124 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19125 L:      netdev@vger.kernel.org
19126 S:      Supported
19127 F:      drivers/net/pcs/pcs-xpcs.c
19128 F:      drivers/net/pcs/pcs-xpcs.h
19129 F:      include/linux/pcs/pcs-xpcs.h
19130
19131 SYNOPSYS DESIGNWARE I2C DRIVER
19132 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19133 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19134 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19135 R:      Jan Dabros <jsd@semihalf.com>
19136 L:      linux-i2c@vger.kernel.org
19137 S:      Maintained
19138 F:      drivers/i2c/busses/i2c-designware-*
19139
19140 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19141 M:      Jaehoon Chung <jh80.chung@samsung.com>
19142 L:      linux-mmc@vger.kernel.org
19143 S:      Maintained
19144 F:      drivers/mmc/host/dw_mmc*
19145
19146 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19147 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19148 S:      Supported
19149 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19150 F:      drivers/reset/reset-hsdk.c
19151 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19152
19153 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19154 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19155 M:      Manjunath M B <manjumb@synopsys.com>
19156 L:      linux-mmc@vger.kernel.org
19157 S:      Maintained
19158 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19159
19160 SYSTEM CONFIGURATION (SYSCON)
19161 M:      Lee Jones <lee.jones@linaro.org>
19162 M:      Arnd Bergmann <arnd@arndb.de>
19163 S:      Supported
19164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19165 F:      drivers/mfd/syscon.c
19166
19167 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19168 M:      Sudeep Holla <sudeep.holla@arm.com>
19169 R:      Cristian Marussi <cristian.marussi@arm.com>
19170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19171 S:      Maintained
19172 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19173 F:      drivers/clk/clk-sc[mp]i.c
19174 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19175 F:      drivers/firmware/arm_scmi/
19176 F:      drivers/firmware/arm_scpi.c
19177 F:      drivers/regulator/scmi-regulator.c
19178 F:      drivers/reset/reset-scmi.c
19179 F:      include/linux/sc[mp]i_protocol.h
19180 F:      include/trace/events/scmi.h
19181 F:      include/uapi/linux/virtio_scmi.h
19182
19183 SYSTEM RESET/SHUTDOWN DRIVERS
19184 M:      Sebastian Reichel <sre@kernel.org>
19185 L:      linux-pm@vger.kernel.org
19186 S:      Maintained
19187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19188 F:      Documentation/devicetree/bindings/power/reset/
19189 F:      drivers/power/reset/
19190
19191 SYSTEM TRACE MODULE CLASS
19192 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19193 S:      Maintained
19194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19195 F:      Documentation/trace/stm.rst
19196 F:      drivers/hwtracing/stm/
19197 F:      include/linux/stm.h
19198 F:      include/uapi/linux/stm.h
19199
19200 SYSTEM76 ACPI DRIVER
19201 M:      Jeremy Soller <jeremy@system76.com>
19202 M:      System76 Product Development <productdev@system76.com>
19203 L:      platform-driver-x86@vger.kernel.org
19204 S:      Maintained
19205 F:      drivers/platform/x86/system76_acpi.c
19206
19207 SYSV FILESYSTEM
19208 M:      Christoph Hellwig <hch@infradead.org>
19209 S:      Maintained
19210 F:      Documentation/filesystems/sysv-fs.rst
19211 F:      fs/sysv/
19212 F:      include/linux/sysv_fs.h
19213
19214 TASKSTATS STATISTICS INTERFACE
19215 M:      Balbir Singh <bsingharora@gmail.com>
19216 S:      Maintained
19217 F:      Documentation/accounting/taskstats*
19218 F:      include/linux/taskstats*
19219 F:      kernel/taskstats.c
19220
19221 TC subsystem
19222 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19223 M:      Cong Wang <xiyou.wangcong@gmail.com>
19224 M:      Jiri Pirko <jiri@resnulli.us>
19225 L:      netdev@vger.kernel.org
19226 S:      Maintained
19227 F:      include/net/pkt_cls.h
19228 F:      include/net/pkt_sched.h
19229 F:      include/net/tc_act/
19230 F:      include/uapi/linux/pkt_cls.h
19231 F:      include/uapi/linux/pkt_sched.h
19232 F:      include/uapi/linux/tc_act/
19233 F:      include/uapi/linux/tc_ematch/
19234 F:      net/sched/
19235 F:      tools/testing/selftests/tc-testing
19236
19237 TC90522 MEDIA DRIVER
19238 M:      Akihiro Tsukada <tskd08@gmail.com>
19239 L:      linux-media@vger.kernel.org
19240 S:      Odd Fixes
19241 F:      drivers/media/dvb-frontends/tc90522*
19242
19243 TCP LOW PRIORITY MODULE
19244 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19245 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19246 S:      Maintained
19247 W:      http://tcp-lp-mod.sourceforge.net/
19248 F:      net/ipv4/tcp_lp.c
19249
19250 TDA10071 MEDIA DRIVER
19251 M:      Antti Palosaari <crope@iki.fi>
19252 L:      linux-media@vger.kernel.org
19253 S:      Maintained
19254 W:      https://linuxtv.org
19255 W:      http://palosaari.fi/linux/
19256 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19257 T:      git git://linuxtv.org/anttip/media_tree.git
19258 F:      drivers/media/dvb-frontends/tda10071*
19259
19260 TDA18212 MEDIA DRIVER
19261 M:      Antti Palosaari <crope@iki.fi>
19262 L:      linux-media@vger.kernel.org
19263 S:      Maintained
19264 W:      https://linuxtv.org
19265 W:      http://palosaari.fi/linux/
19266 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19267 T:      git git://linuxtv.org/anttip/media_tree.git
19268 F:      drivers/media/tuners/tda18212*
19269
19270 TDA18218 MEDIA DRIVER
19271 M:      Antti Palosaari <crope@iki.fi>
19272 L:      linux-media@vger.kernel.org
19273 S:      Maintained
19274 W:      https://linuxtv.org
19275 W:      http://palosaari.fi/linux/
19276 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19277 T:      git git://linuxtv.org/anttip/media_tree.git
19278 F:      drivers/media/tuners/tda18218*
19279
19280 TDA18250 MEDIA DRIVER
19281 M:      Olli Salonen <olli.salonen@iki.fi>
19282 L:      linux-media@vger.kernel.org
19283 S:      Maintained
19284 W:      https://linuxtv.org
19285 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19286 T:      git git://linuxtv.org/media_tree.git
19287 F:      drivers/media/tuners/tda18250*
19288
19289 TDA18271 MEDIA DRIVER
19290 M:      Michael Krufky <mkrufky@linuxtv.org>
19291 L:      linux-media@vger.kernel.org
19292 S:      Maintained
19293 W:      https://linuxtv.org
19294 W:      http://github.com/mkrufky
19295 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19296 T:      git git://linuxtv.org/mkrufky/tuners.git
19297 F:      drivers/media/tuners/tda18271*
19298
19299 TDA1997x MEDIA DRIVER
19300 M:      Tim Harvey <tharvey@gateworks.com>
19301 L:      linux-media@vger.kernel.org
19302 S:      Maintained
19303 W:      https://linuxtv.org
19304 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19305 F:      drivers/media/i2c/tda1997x.*
19306
19307 TDA827x MEDIA DRIVER
19308 M:      Michael Krufky <mkrufky@linuxtv.org>
19309 L:      linux-media@vger.kernel.org
19310 S:      Maintained
19311 W:      https://linuxtv.org
19312 W:      http://github.com/mkrufky
19313 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19314 T:      git git://linuxtv.org/mkrufky/tuners.git
19315 F:      drivers/media/tuners/tda8290.*
19316
19317 TDA8290 MEDIA DRIVER
19318 M:      Michael Krufky <mkrufky@linuxtv.org>
19319 L:      linux-media@vger.kernel.org
19320 S:      Maintained
19321 W:      https://linuxtv.org
19322 W:      http://github.com/mkrufky
19323 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19324 T:      git git://linuxtv.org/mkrufky/tuners.git
19325 F:      drivers/media/tuners/tda8290.*
19326
19327 TDA9840 MEDIA DRIVER
19328 M:      Hans Verkuil <hverkuil@xs4all.nl>
19329 L:      linux-media@vger.kernel.org
19330 S:      Maintained
19331 W:      https://linuxtv.org
19332 T:      git git://linuxtv.org/media_tree.git
19333 F:      drivers/media/i2c/tda9840*
19334
19335 TEA5761 TUNER DRIVER
19336 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19337 L:      linux-media@vger.kernel.org
19338 S:      Odd fixes
19339 W:      https://linuxtv.org
19340 T:      git git://linuxtv.org/media_tree.git
19341 F:      drivers/media/tuners/tea5761.*
19342
19343 TEA5767 TUNER DRIVER
19344 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19345 L:      linux-media@vger.kernel.org
19346 S:      Maintained
19347 W:      https://linuxtv.org
19348 T:      git git://linuxtv.org/media_tree.git
19349 F:      drivers/media/tuners/tea5767.*
19350
19351 TEA6415C MEDIA DRIVER
19352 M:      Hans Verkuil <hverkuil@xs4all.nl>
19353 L:      linux-media@vger.kernel.org
19354 S:      Maintained
19355 W:      https://linuxtv.org
19356 T:      git git://linuxtv.org/media_tree.git
19357 F:      drivers/media/i2c/tea6415c*
19358
19359 TEA6420 MEDIA DRIVER
19360 M:      Hans Verkuil <hverkuil@xs4all.nl>
19361 L:      linux-media@vger.kernel.org
19362 S:      Maintained
19363 W:      https://linuxtv.org
19364 T:      git git://linuxtv.org/media_tree.git
19365 F:      drivers/media/i2c/tea6420*
19366
19367 TEAM DRIVER
19368 M:      Jiri Pirko <jiri@resnulli.us>
19369 L:      netdev@vger.kernel.org
19370 S:      Supported
19371 F:      drivers/net/team/
19372 F:      include/linux/if_team.h
19373 F:      include/uapi/linux/if_team.h
19374
19375 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19376 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19377 S:      Maintained
19378 F:      arch/x86/platform/ts5500/
19379
19380 TECHNOTREND USB IR RECEIVER
19381 M:      Sean Young <sean@mess.org>
19382 L:      linux-media@vger.kernel.org
19383 S:      Maintained
19384 F:      drivers/media/rc/ttusbir.c
19385
19386 TECHWELL TW9910 VIDEO DECODER
19387 L:      linux-media@vger.kernel.org
19388 S:      Orphan
19389 F:      drivers/media/i2c/tw9910.c
19390 F:      include/media/i2c/tw9910.h
19391
19392 TEE SUBSYSTEM
19393 M:      Jens Wiklander <jens.wiklander@linaro.org>
19394 R:      Sumit Garg <sumit.garg@linaro.org>
19395 L:      op-tee@lists.trustedfirmware.org
19396 S:      Maintained
19397 F:      Documentation/staging/tee.rst
19398 F:      drivers/tee/
19399 F:      include/linux/tee_drv.h
19400 F:      include/uapi/linux/tee.h
19401
19402 TEGRA ARCHITECTURE SUPPORT
19403 M:      Thierry Reding <thierry.reding@gmail.com>
19404 M:      Jonathan Hunter <jonathanh@nvidia.com>
19405 L:      linux-tegra@vger.kernel.org
19406 S:      Supported
19407 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19409 N:      [^a-z]tegra
19410
19411 TEGRA CLOCK DRIVER
19412 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19413 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19414 S:      Supported
19415 F:      drivers/clk/tegra/
19416
19417 TEGRA DMA DRIVERS
19418 M:      Laxman Dewangan <ldewangan@nvidia.com>
19419 M:      Jon Hunter <jonathanh@nvidia.com>
19420 S:      Supported
19421 F:      drivers/dma/tegra*
19422
19423 TEGRA I2C DRIVER
19424 M:      Laxman Dewangan <ldewangan@nvidia.com>
19425 R:      Dmitry Osipenko <digetx@gmail.com>
19426 S:      Supported
19427 F:      drivers/i2c/busses/i2c-tegra.c
19428
19429 TEGRA IOMMU DRIVERS
19430 M:      Thierry Reding <thierry.reding@gmail.com>
19431 R:      Krishna Reddy <vdumpa@nvidia.com>
19432 L:      linux-tegra@vger.kernel.org
19433 S:      Supported
19434 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19435 F:      drivers/iommu/tegra*
19436
19437 TEGRA KBC DRIVER
19438 M:      Laxman Dewangan <ldewangan@nvidia.com>
19439 S:      Supported
19440 F:      drivers/input/keyboard/tegra-kbc.c
19441
19442 TEGRA NAND DRIVER
19443 M:      Stefan Agner <stefan@agner.ch>
19444 M:      Lucas Stach <dev@lynxeye.de>
19445 S:      Maintained
19446 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19447 F:      drivers/mtd/nand/raw/tegra_nand.c
19448
19449 TEGRA PWM DRIVER
19450 M:      Thierry Reding <thierry.reding@gmail.com>
19451 S:      Supported
19452 F:      drivers/pwm/pwm-tegra.c
19453
19454 TEGRA SERIAL DRIVER
19455 M:      Laxman Dewangan <ldewangan@nvidia.com>
19456 S:      Supported
19457 F:      drivers/tty/serial/serial-tegra.c
19458
19459 TEGRA SPI DRIVER
19460 M:      Laxman Dewangan <ldewangan@nvidia.com>
19461 S:      Supported
19462 F:      drivers/spi/spi-tegra*
19463
19464 TEGRA QUAD SPI DRIVER
19465 M:      Thierry Reding <thierry.reding@gmail.com>
19466 M:      Jonathan Hunter <jonathanh@nvidia.com>
19467 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19468 L:      linux-tegra@vger.kernel.org
19469 S:      Maintained
19470 F:      drivers/spi/spi-tegra210-quad.c
19471
19472 TEGRA VIDEO DRIVER
19473 M:      Thierry Reding <thierry.reding@gmail.com>
19474 M:      Jonathan Hunter <jonathanh@nvidia.com>
19475 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19476 L:      linux-media@vger.kernel.org
19477 L:      linux-tegra@vger.kernel.org
19478 S:      Maintained
19479 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19480 F:      drivers/staging/media/tegra-video/
19481
19482 TEGRA XUSB PADCTL DRIVER
19483 M:      JC Kuo <jckuo@nvidia.com>
19484 S:      Supported
19485 F:      drivers/phy/tegra/xusb*
19486
19487 TEHUTI ETHERNET DRIVER
19488 M:      Andy Gospodarek <andy@greyhouse.net>
19489 L:      netdev@vger.kernel.org
19490 S:      Supported
19491 F:      drivers/net/ethernet/tehuti/*
19492
19493 TELECOM CLOCK DRIVER FOR MCPL0010
19494 M:      Mark Gross <markgross@kernel.org>
19495 S:      Supported
19496 F:      drivers/char/tlclk.c
19497
19498 TEMPO SEMICONDUCTOR DRIVERS
19499 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19500 S:      Maintained
19501 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19502 F:      sound/soc/codecs/tscs*.c
19503 F:      sound/soc/codecs/tscs*.h
19504
19505 TENSILICA XTENSA PORT (xtensa)
19506 M:      Chris Zankel <chris@zankel.net>
19507 M:      Max Filippov <jcmvbkbc@gmail.com>
19508 L:      linux-xtensa@linux-xtensa.org
19509 S:      Maintained
19510 T:      git git://github.com/czankel/xtensa-linux.git
19511 F:      arch/xtensa/
19512 F:      drivers/irqchip/irq-xtensa-*
19513
19514 TEXAS INSTRUMENTS ASoC DRIVERS
19515 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19516 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19517 S:      Maintained
19518 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19519 F:      sound/soc/ti/
19520
19521 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19522 M:      Ricardo Ribalda <ribalda@kernel.org>
19523 L:      linux-iio@vger.kernel.org
19524 S:      Supported
19525 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19526 F:      drivers/iio/dac/ti-dac7612.c
19527
19528 TEXAS INSTRUMENTS DMA DRIVERS
19529 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19530 L:      dmaengine@vger.kernel.org
19531 S:      Maintained
19532 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19533 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19534 F:      Documentation/devicetree/bindings/dma/ti/
19535 F:      drivers/dma/ti/
19536 X:      drivers/dma/ti/cppi41.c
19537 F:      include/linux/dma/k3-udma-glue.h
19538 F:      include/linux/dma/ti-cppi5.h
19539 F:      include/linux/dma/k3-psil.h
19540
19541 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19542 M:      Nishanth Menon <nm@ti.com>
19543 M:      Tero Kristo <kristo@kernel.org>
19544 M:      Santosh Shilimkar <ssantosh@kernel.org>
19545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19546 S:      Maintained
19547 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19548 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19549 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19550 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19551 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19552 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19553 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19554 F:      drivers/clk/keystone/sci-clk.c
19555 F:      drivers/firmware/ti_sci*
19556 F:      drivers/irqchip/irq-ti-sci-inta.c
19557 F:      drivers/irqchip/irq-ti-sci-intr.c
19558 F:      drivers/reset/reset-ti-sci.c
19559 F:      drivers/soc/ti/ti_sci_inta_msi.c
19560 F:      drivers/soc/ti/ti_sci_pm_domains.c
19561 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19562 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19563 F:      include/linux/soc/ti/ti_sci_protocol.h
19564
19565 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19566 M:      Robert Marko <robert.marko@sartura.hr>
19567 M:      Luka Perkov <luka.perkov@sartura.hr>
19568 L:      linux-hwmon@vger.kernel.org
19569 S:      Maintained
19570 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19571 F:      Documentation/hwmon/tps23861.rst
19572 F:      drivers/hwmon/tps23861.c
19573
19574 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19575 M:      Puranjay Mohan <puranjay12@gmail.com>
19576 L:      linux-iio@vger.kernel.org
19577 S:      Supported
19578 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19579 F:      drivers/iio/temperature/tmp117.c
19580
19581 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19582 M:      Hans Verkuil <hverkuil@xs4all.nl>
19583 L:      linux-media@vger.kernel.org
19584 S:      Maintained
19585 W:      https://linuxtv.org
19586 T:      git git://linuxtv.org/media_tree.git
19587 F:      drivers/media/radio/radio-raremono.c
19588
19589 THERMAL
19590 M:      Rafael J. Wysocki <rafael@kernel.org>
19591 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19592 R:      Amit Kucheria <amitk@kernel.org>
19593 R:      Zhang Rui <rui.zhang@intel.com>
19594 L:      linux-pm@vger.kernel.org
19595 S:      Supported
19596 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19598 F:      Documentation/ABI/testing/sysfs-class-thermal
19599 F:      Documentation/devicetree/bindings/thermal/
19600 F:      Documentation/driver-api/thermal/
19601 F:      drivers/thermal/
19602 F:      include/linux/cpu_cooling.h
19603 F:      include/linux/thermal.h
19604 F:      include/uapi/linux/thermal.h
19605 F:      tools/lib/thermal/
19606 F:      tools/thermal/
19607
19608 THERMAL DRIVER FOR AMLOGIC SOCS
19609 M:      Guillaume La Roque <glaroque@baylibre.com>
19610 L:      linux-pm@vger.kernel.org
19611 L:      linux-amlogic@lists.infradead.org
19612 S:      Supported
19613 W:      http://linux-meson.com/
19614 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19615 F:      drivers/thermal/amlogic_thermal.c
19616
19617 THERMAL/CPU_COOLING
19618 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19619 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19620 M:      Viresh Kumar <viresh.kumar@linaro.org>
19621 R:      Lukasz Luba <lukasz.luba@arm.com>
19622 L:      linux-pm@vger.kernel.org
19623 S:      Supported
19624 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19625 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19626 F:      drivers/thermal/cpufreq_cooling.c
19627 F:      drivers/thermal/cpuidle_cooling.c
19628 F:      include/linux/cpu_cooling.h
19629
19630 THERMAL/POWER_ALLOCATOR
19631 M:      Lukasz Luba <lukasz.luba@arm.com>
19632 L:      linux-pm@vger.kernel.org
19633 S:      Maintained
19634 F:      Documentation/driver-api/thermal/power_allocator.rst
19635 F:      drivers/thermal/gov_power_allocator.c
19636 F:      include/trace/events/thermal_power_allocator.h
19637
19638 THINKPAD ACPI EXTRAS DRIVER
19639 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19640 L:      ibm-acpi-devel@lists.sourceforge.net
19641 L:      platform-driver-x86@vger.kernel.org
19642 S:      Maintained
19643 W:      http://ibm-acpi.sourceforge.net
19644 W:      http://thinkwiki.org/wiki/Ibm-acpi
19645 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19646 F:      drivers/platform/x86/thinkpad_acpi.c
19647
19648 THINKPAD LMI DRIVER
19649 M:      Mark Pearson <markpearson@lenovo.com>
19650 L:      platform-driver-x86@vger.kernel.org
19651 S:      Maintained
19652 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19653 F:      drivers/platform/x86/think-lmi.?
19654
19655 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19656 M:      Isaac Hazan <isaac.hazan@intel.com>
19657 L:      linux-usb@vger.kernel.org
19658 S:      Maintained
19659 F:      drivers/thunderbolt/dma_test.c
19660
19661 THUNDERBOLT DRIVER
19662 M:      Andreas Noever <andreas.noever@gmail.com>
19663 M:      Michael Jamet <michael.jamet@intel.com>
19664 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19665 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19666 L:      linux-usb@vger.kernel.org
19667 S:      Maintained
19668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19669 F:      Documentation/admin-guide/thunderbolt.rst
19670 F:      drivers/thunderbolt/
19671 F:      include/linux/thunderbolt.h
19672
19673 THUNDERBOLT NETWORK DRIVER
19674 M:      Michael Jamet <michael.jamet@intel.com>
19675 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19676 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19677 L:      netdev@vger.kernel.org
19678 S:      Maintained
19679 F:      drivers/net/thunderbolt.c
19680
19681 THUNDERX GPIO DRIVER
19682 M:      Robert Richter <rric@kernel.org>
19683 S:      Odd Fixes
19684 F:      drivers/gpio/gpio-thunderx.c
19685
19686 TI ADS131E0X ADC SERIES DRIVER
19687 M:      Tomislav Denis <tomislav.denis@avl.com>
19688 L:      linux-iio@vger.kernel.org
19689 S:      Maintained
19690 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19691 F:      drivers/iio/adc/ti-ads131e08.c
19692
19693 TI AM437X VPFE DRIVER
19694 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19695 L:      linux-media@vger.kernel.org
19696 S:      Maintained
19697 W:      https://linuxtv.org
19698 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19699 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19700 F:      drivers/media/platform/ti/am437x/
19701
19702 TI BANDGAP AND THERMAL DRIVER
19703 M:      Eduardo Valentin <edubezval@gmail.com>
19704 M:      Keerthy <j-keerthy@ti.com>
19705 L:      linux-pm@vger.kernel.org
19706 L:      linux-omap@vger.kernel.org
19707 S:      Maintained
19708 F:      drivers/thermal/ti-soc-thermal/
19709
19710 TI BQ27XXX POWER SUPPLY DRIVER
19711 F:      drivers/power/supply/bq27xxx_battery.c
19712 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19713 F:      include/linux/power/bq27xxx_battery.h
19714
19715 TI CDCE706 CLOCK DRIVER
19716 M:      Max Filippov <jcmvbkbc@gmail.com>
19717 S:      Maintained
19718 F:      drivers/clk/clk-cdce706.c
19719
19720 TI CLOCK DRIVER
19721 M:      Tero Kristo <kristo@kernel.org>
19722 L:      linux-omap@vger.kernel.org
19723 S:      Odd Fixes
19724 F:      drivers/clk/ti/
19725 F:      include/linux/clk/ti.h
19726
19727 TI DAVINCI MACHINE SUPPORT
19728 M:      Sekhar Nori <nsekhar@ti.com>
19729 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19731 S:      Supported
19732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19733 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19734 F:      arch/arm/boot/dts/da850*
19735 F:      arch/arm/mach-davinci/
19736 F:      drivers/i2c/busses/i2c-davinci.c
19737
19738 TI DAVINCI SERIES CLOCK DRIVER
19739 M:      David Lechner <david@lechnology.com>
19740 R:      Sekhar Nori <nsekhar@ti.com>
19741 S:      Maintained
19742 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19743 F:      drivers/clk/davinci/
19744
19745 TI DAVINCI SERIES GPIO DRIVER
19746 M:      Keerthy <j-keerthy@ti.com>
19747 L:      linux-gpio@vger.kernel.org
19748 S:      Maintained
19749 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19750 F:      drivers/gpio/gpio-davinci.c
19751
19752 TI DAVINCI SERIES MEDIA DRIVER
19753 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19754 L:      linux-media@vger.kernel.org
19755 S:      Maintained
19756 W:      https://linuxtv.org
19757 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19758 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19759 F:      drivers/media/platform/ti/davinci/
19760 F:      include/media/davinci/
19761
19762 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19763 R:      David Lechner <david@lechnology.com>
19764 L:      linux-iio@vger.kernel.org
19765 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19766 F:      drivers/counter/ti-eqep.c
19767
19768 TI ETHERNET SWITCH DRIVER (CPSW)
19769 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19770 L:      linux-omap@vger.kernel.org
19771 L:      netdev@vger.kernel.org
19772 S:      Maintained
19773 F:      drivers/net/ethernet/ti/cpsw*
19774 F:      drivers/net/ethernet/ti/davinci*
19775
19776 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19777 M:      Alex Dubov <oakad@yahoo.com>
19778 S:      Maintained
19779 W:      http://tifmxx.berlios.de/
19780 F:      drivers/memstick/host/tifm_ms.c
19781 F:      drivers/misc/tifm*
19782 F:      drivers/mmc/host/tifm_sd.c
19783 F:      include/linux/tifm.h
19784
19785 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19786 M:      Nishanth Menon <nm@ti.com>
19787 M:      Santosh Shilimkar <ssantosh@kernel.org>
19788 L:      linux-kernel@vger.kernel.org
19789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19790 S:      Maintained
19791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19792 F:      drivers/soc/ti/*
19793
19794 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19795 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19796 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19797 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19798 S:      Maintained
19799 F:      sound/soc/codecs/isabelle*
19800 F:      sound/soc/codecs/lm49453*
19801
19802 TI PCM3060 ASoC CODEC DRIVER
19803 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19804 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19805 S:      Maintained
19806 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19807 F:      sound/soc/codecs/pcm3060*
19808
19809 TI TAS571X FAMILY ASoC CODEC DRIVER
19810 M:      Kevin Cernekee <cernekee@chromium.org>
19811 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19812 S:      Odd Fixes
19813 F:      sound/soc/codecs/tas571x*
19814
19815 TI TRF7970A NFC DRIVER
19816 M:      Mark Greer <mgreer@animalcreek.com>
19817 L:      linux-wireless@vger.kernel.org
19818 L:      linux-nfc@lists.01.org (subscribers-only)
19819 S:      Supported
19820 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19821 F:      drivers/nfc/trf7970a.c
19822
19823 TI TSC2046 ADC DRIVER
19824 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19825 R:      kernel@pengutronix.de
19826 L:      linux-iio@vger.kernel.org
19827 S:      Maintained
19828 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19829 F:      drivers/iio/adc/ti-tsc2046.c
19830
19831 TI TWL4030 SERIES SOC CODEC DRIVER
19832 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19833 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19834 S:      Maintained
19835 F:      sound/soc/codecs/twl4030*
19836
19837 TI VPE/CAL DRIVERS
19838 M:      Benoit Parrot <bparrot@ti.com>
19839 L:      linux-media@vger.kernel.org
19840 S:      Maintained
19841 W:      http://linuxtv.org/
19842 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19843 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19844 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19845 F:      drivers/media/platform/ti/cal/
19846 F:      drivers/media/platform/ti/vpe/
19847
19848 TI WILINK WIRELESS DRIVERS
19849 L:      linux-wireless@vger.kernel.org
19850 S:      Orphan
19851 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19852 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19854 F:      drivers/net/wireless/ti/
19855 F:      include/linux/wl12xx.h
19856
19857 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19858 M:      John Stultz <jstultz@google.com>
19859 M:      Thomas Gleixner <tglx@linutronix.de>
19860 R:      Stephen Boyd <sboyd@kernel.org>
19861 L:      linux-kernel@vger.kernel.org
19862 S:      Supported
19863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19864 F:      include/linux/clocksource.h
19865 F:      include/linux/time.h
19866 F:      include/linux/timex.h
19867 F:      include/uapi/linux/time.h
19868 F:      include/uapi/linux/timex.h
19869 F:      kernel/time/alarmtimer.c
19870 F:      kernel/time/clocksource.c
19871 F:      kernel/time/ntp.c
19872 F:      kernel/time/time*.c
19873 F:      tools/testing/selftests/timers/
19874
19875 TIPC NETWORK LAYER
19876 M:      Jon Maloy <jmaloy@redhat.com>
19877 M:      Ying Xue <ying.xue@windriver.com>
19878 L:      netdev@vger.kernel.org (core kernel code)
19879 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19880 S:      Maintained
19881 W:      http://tipc.sourceforge.net/
19882 F:      include/uapi/linux/tipc*.h
19883 F:      net/tipc/
19884
19885 TLAN NETWORK DRIVER
19886 M:      Samuel Chessman <chessman@tux.org>
19887 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19888 S:      Maintained
19889 W:      http://sourceforge.net/projects/tlan/
19890 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19891 F:      drivers/net/ethernet/ti/tlan.*
19892
19893 TM6000 VIDEO4LINUX DRIVER
19894 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19895 L:      linux-media@vger.kernel.org
19896 S:      Odd fixes
19897 W:      https://linuxtv.org
19898 T:      git git://linuxtv.org/media_tree.git
19899 F:      Documentation/admin-guide/media/tm6000*
19900 F:      drivers/media/usb/tm6000/
19901
19902 TMIO/SDHI MMC DRIVER
19903 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19904 L:      linux-mmc@vger.kernel.org
19905 L:      linux-renesas-soc@vger.kernel.org
19906 S:      Supported
19907 F:      drivers/mmc/host/renesas_sdhi*
19908 F:      drivers/mmc/host/tmio_mmc*
19909 F:      include/linux/mfd/tmio.h
19910
19911 TMP401 HARDWARE MONITOR DRIVER
19912 M:      Guenter Roeck <linux@roeck-us.net>
19913 L:      linux-hwmon@vger.kernel.org
19914 S:      Maintained
19915 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
19916 F:      Documentation/hwmon/tmp401.rst
19917 F:      drivers/hwmon/tmp401.c
19918
19919 TMP464 HARDWARE MONITOR DRIVER
19920 M:      Agathe Porte <agathe.porte@nokia.com>
19921 M:      Guenter Roeck <linux@roeck-us.net>
19922 L:      linux-hwmon@vger.kernel.org
19923 S:      Maintained
19924 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
19925 F:      Documentation/hwmon/tmp464.rst
19926 F:      drivers/hwmon/tmp464.c
19927
19928 TMP513 HARDWARE MONITOR DRIVER
19929 M:      Eric Tremblay <etremblay@distech-controls.com>
19930 L:      linux-hwmon@vger.kernel.org
19931 S:      Maintained
19932 F:      Documentation/hwmon/tmp513.rst
19933 F:      drivers/hwmon/tmp513.c
19934
19935 TMPFS (SHMEM FILESYSTEM)
19936 M:      Hugh Dickins <hughd@google.com>
19937 L:      linux-mm@kvack.org
19938 S:      Maintained
19939 F:      include/linux/shmem_fs.h
19940 F:      mm/shmem.c
19941
19942 TOMOYO SECURITY MODULE
19943 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19944 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19945 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19946 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19947 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19948 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19949 S:      Maintained
19950 W:      https://tomoyo.osdn.jp/
19951 F:      security/tomoyo/
19952
19953 TOPSTAR LAPTOP EXTRAS DRIVER
19954 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19955 L:      platform-driver-x86@vger.kernel.org
19956 S:      Maintained
19957 F:      drivers/platform/x86/topstar-laptop.c
19958
19959 TORTURE-TEST MODULES
19960 M:      Davidlohr Bueso <dave@stgolabs.net>
19961 M:      "Paul E. McKenney" <paulmck@kernel.org>
19962 M:      Josh Triplett <josh@joshtriplett.org>
19963 L:      linux-kernel@vger.kernel.org
19964 S:      Supported
19965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19966 F:      Documentation/RCU/torture.rst
19967 F:      kernel/locking/locktorture.c
19968 F:      kernel/rcu/rcuscale.c
19969 F:      kernel/rcu/rcutorture.c
19970 F:      kernel/rcu/refscale.c
19971 F:      kernel/torture.c
19972
19973 TOSHIBA ACPI EXTRAS DRIVER
19974 M:      Azael Avalos <coproscefalo@gmail.com>
19975 L:      platform-driver-x86@vger.kernel.org
19976 S:      Maintained
19977 F:      drivers/platform/x86/toshiba_acpi.c
19978
19979 TOSHIBA BLUETOOTH DRIVER
19980 M:      Azael Avalos <coproscefalo@gmail.com>
19981 L:      platform-driver-x86@vger.kernel.org
19982 S:      Maintained
19983 F:      drivers/platform/x86/toshiba_bluetooth.c
19984
19985 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19986 M:      Azael Avalos <coproscefalo@gmail.com>
19987 L:      platform-driver-x86@vger.kernel.org
19988 S:      Maintained
19989 F:      drivers/platform/x86/toshiba_haps.c
19990
19991 TOSHIBA SMM DRIVER
19992 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19993 S:      Maintained
19994 W:      http://www.buzzard.org.uk/toshiba/
19995 F:      drivers/char/toshiba.c
19996 F:      include/linux/toshiba.h
19997 F:      include/uapi/linux/toshiba.h
19998
19999 TOSHIBA TC358743 DRIVER
20000 M:      Mats Randgaard <matrandg@cisco.com>
20001 L:      linux-media@vger.kernel.org
20002 S:      Maintained
20003 F:      drivers/media/i2c/tc358743*
20004 F:      include/media/i2c/tc358743.h
20005
20006 TOSHIBA WMI HOTKEYS DRIVER
20007 M:      Azael Avalos <coproscefalo@gmail.com>
20008 L:      platform-driver-x86@vger.kernel.org
20009 S:      Maintained
20010 F:      drivers/platform/x86/toshiba-wmi.c
20011
20012 TPM DEVICE DRIVER
20013 M:      Peter Huewe <peterhuewe@gmx.de>
20014 M:      Jarkko Sakkinen <jarkko@kernel.org>
20015 R:      Jason Gunthorpe <jgg@ziepe.ca>
20016 L:      linux-integrity@vger.kernel.org
20017 S:      Maintained
20018 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20019 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20021 F:      drivers/char/tpm/
20022
20023 TRACING
20024 M:      Steven Rostedt <rostedt@goodmis.org>
20025 M:      Ingo Molnar <mingo@redhat.com>
20026 S:      Maintained
20027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
20028 F:      Documentation/trace/ftrace.rst
20029 F:      arch/*/*/*/ftrace.h
20030 F:      arch/*/kernel/ftrace.c
20031 F:      fs/tracefs/
20032 F:      include/*/ftrace.h
20033 F:      include/linux/trace*.h
20034 F:      include/trace/
20035 F:      kernel/trace/
20036 F:      tools/testing/selftests/ftrace/
20037
20038 TRACING MMIO ACCESSES (MMIOTRACE)
20039 M:      Steven Rostedt <rostedt@goodmis.org>
20040 M:      Ingo Molnar <mingo@kernel.org>
20041 R:      Karol Herbst <karolherbst@gmail.com>
20042 R:      Pekka Paalanen <ppaalanen@gmail.com>
20043 L:      linux-kernel@vger.kernel.org
20044 L:      nouveau@lists.freedesktop.org
20045 S:      Maintained
20046 F:      arch/x86/mm/kmmio.c
20047 F:      arch/x86/mm/mmio-mod.c
20048 F:      arch/x86/mm/testmmiotrace.c
20049 F:      include/linux/mmiotrace.h
20050 F:      kernel/trace/trace_mmiotrace.c
20051
20052 TRACING OS NOISE / LATENCY TRACERS
20053 M:      Steven Rostedt <rostedt@goodmis.org>
20054 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20055 S:      Maintained
20056 F:      kernel/trace/trace_osnoise.c
20057 F:      include/trace/events/osnoise.h
20058 F:      kernel/trace/trace_hwlat.c
20059 F:      kernel/trace/trace_irqsoff.c
20060 F:      kernel/trace/trace_sched_wakeup.c
20061 F:      Documentation/trace/osnoise-tracer.rst
20062 F:      Documentation/trace/timerlat-tracer.rst
20063 F:      Documentation/trace/hwlat_detector.rst
20064 F:      arch/*/kernel/trace.c
20065
20066 Real-time Linux Analysis (RTLA) tools
20067 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20068 M:      Steven Rostedt <rostedt@goodmis.org>
20069 L:      linux-trace-devel@vger.kernel.org
20070 S:      Maintained
20071 F:      Documentation/tools/rtla/
20072 F:      tools/tracing/rtla/
20073
20074 TRADITIONAL CHINESE DOCUMENTATION
20075 M:      Hu Haowen <src.res@email.cn>
20076 L:      linux-doc-tw-discuss@lists.sourceforge.net
20077 S:      Maintained
20078 W:      https://github.com/srcres258/linux-doc
20079 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20080 F:      Documentation/translations/zh_TW/
20081
20082 TTY LAYER
20083 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20084 M:      Jiri Slaby <jirislaby@kernel.org>
20085 S:      Supported
20086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20087 F:      Documentation/driver-api/serial/
20088 F:      drivers/tty/
20089 F:      drivers/tty/serial/serial_core.c
20090 F:      include/linux/selection.h
20091 F:      include/linux/serial.h
20092 F:      include/linux/serial_core.h
20093 F:      include/linux/sysrq.h
20094 F:      include/linux/tty*.h
20095 F:      include/linux/vt.h
20096 F:      include/linux/vt_*.h
20097 F:      include/uapi/linux/serial.h
20098 F:      include/uapi/linux/serial_core.h
20099 F:      include/uapi/linux/tty.h
20100
20101 TUA9001 MEDIA DRIVER
20102 M:      Antti Palosaari <crope@iki.fi>
20103 L:      linux-media@vger.kernel.org
20104 S:      Maintained
20105 W:      https://linuxtv.org
20106 W:      http://palosaari.fi/linux/
20107 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20108 T:      git git://linuxtv.org/anttip/media_tree.git
20109 F:      drivers/media/tuners/tua9001*
20110
20111 TULIP NETWORK DRIVERS
20112 L:      netdev@vger.kernel.org
20113 L:      linux-parisc@vger.kernel.org
20114 S:      Orphan
20115 F:      drivers/net/ethernet/dec/tulip/
20116
20117 TUN/TAP driver
20118 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20119 S:      Maintained
20120 W:      http://vtun.sourceforge.net/tun
20121 F:      Documentation/networking/tuntap.rst
20122 F:      arch/um/os-Linux/drivers/
20123
20124 TURBOCHANNEL SUBSYSTEM
20125 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20126 M:      Ralf Baechle <ralf@linux-mips.org>
20127 L:      linux-mips@vger.kernel.org
20128 S:      Maintained
20129 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20130 F:      drivers/tc/
20131 F:      include/linux/tc.h
20132
20133 TURBOSTAT UTILITY
20134 M:      "Len Brown" <lenb@kernel.org>
20135 L:      linux-pm@vger.kernel.org
20136 S:      Supported
20137 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20138 B:      https://bugzilla.kernel.org
20139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20140 F:      tools/power/x86/turbostat/
20141
20142 TW5864 VIDEO4LINUX DRIVER
20143 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20144 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20145 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20146 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20147 L:      linux-media@vger.kernel.org
20148 S:      Supported
20149 F:      drivers/media/pci/tw5864/
20150
20151 TW68 VIDEO4LINUX DRIVER
20152 M:      Hans Verkuil <hverkuil@xs4all.nl>
20153 L:      linux-media@vger.kernel.org
20154 S:      Odd Fixes
20155 W:      https://linuxtv.org
20156 T:      git git://linuxtv.org/media_tree.git
20157 F:      drivers/media/pci/tw68/
20158
20159 TW686X VIDEO4LINUX DRIVER
20160 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20161 L:      linux-media@vger.kernel.org
20162 S:      Maintained
20163 W:      http://linuxtv.org
20164 T:      git git://linuxtv.org/media_tree.git
20165 F:      drivers/media/pci/tw686x/
20166
20167 U-BOOT ENVIRONMENT VARIABLES
20168 M:      Rafał Miłecki <rafal@milecki.pl>
20169 S:      Maintained
20170 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20171
20172 UACCE ACCELERATOR FRAMEWORK
20173 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20174 M:      Zhou Wang <wangzhou1@hisilicon.com>
20175 L:      linux-accelerators@lists.ozlabs.org
20176 L:      linux-kernel@vger.kernel.org
20177 S:      Maintained
20178 F:      Documentation/ABI/testing/sysfs-driver-uacce
20179 F:      Documentation/misc-devices/uacce.rst
20180 F:      drivers/misc/uacce/
20181 F:      include/linux/uacce.h
20182 F:      include/uapi/misc/uacce/
20183
20184 UBI FILE SYSTEM (UBIFS)
20185 M:      Richard Weinberger <richard@nod.at>
20186 L:      linux-mtd@lists.infradead.org
20187 S:      Supported
20188 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20191 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20192 F:      Documentation/filesystems/ubifs-authentication.rst
20193 F:      Documentation/filesystems/ubifs.rst
20194 F:      fs/ubifs/
20195
20196 UCLINUX (M68KNOMMU AND COLDFIRE)
20197 M:      Greg Ungerer <gerg@linux-m68k.org>
20198 L:      linux-m68k@lists.linux-m68k.org
20199 L:      uclinux-dev@uclinux.org  (subscribers-only)
20200 S:      Maintained
20201 W:      http://www.linux-m68k.org/
20202 W:      http://www.uclinux.org/
20203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20204 F:      arch/m68k/*/*_no.*
20205 F:      arch/m68k/68*/
20206 F:      arch/m68k/coldfire/
20207 F:      arch/m68k/include/asm/*_no.*
20208
20209 UDF FILESYSTEM
20210 M:      Jan Kara <jack@suse.com>
20211 S:      Maintained
20212 F:      Documentation/filesystems/udf.rst
20213 F:      fs/udf/
20214
20215 UDRAW TABLET
20216 M:      Bastien Nocera <hadess@hadess.net>
20217 L:      linux-input@vger.kernel.org
20218 S:      Maintained
20219 F:      drivers/hid/hid-udraw-ps3.c
20220
20221 UFS FILESYSTEM
20222 M:      Evgeniy Dushistov <dushistov@mail.ru>
20223 S:      Maintained
20224 F:      Documentation/admin-guide/ufs.rst
20225 F:      fs/ufs/
20226
20227 UHID USERSPACE HID IO DRIVER
20228 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20229 L:      linux-input@vger.kernel.org
20230 S:      Maintained
20231 F:      drivers/hid/uhid.c
20232 F:      include/uapi/linux/uhid.h
20233
20234 ULPI BUS
20235 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20236 L:      linux-usb@vger.kernel.org
20237 S:      Maintained
20238 F:      drivers/usb/common/ulpi.c
20239 F:      include/linux/ulpi/
20240
20241 UNICODE SUBSYSTEM
20242 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20243 L:      linux-fsdevel@vger.kernel.org
20244 S:      Supported
20245 F:      fs/unicode/
20246
20247 UNIFDEF
20248 M:      Tony Finch <dot@dotat.at>
20249 S:      Maintained
20250 W:      http://dotat.at/prog/unifdef
20251 F:      scripts/unifdef.c
20252
20253 UNIFORM CDROM DRIVER
20254 M:      Phillip Potter <phil@philpotter.co.uk>
20255 S:      Maintained
20256 F:      Documentation/cdrom/
20257 F:      drivers/cdrom/cdrom.c
20258 F:      include/linux/cdrom.h
20259 F:      include/uapi/linux/cdrom.h
20260
20261 UNISYS S-PAR DRIVERS
20262 M:      David Kershner <david.kershner@unisys.com>
20263 L:      sparmaintainer@unisys.com (Unisys internal)
20264 S:      Supported
20265 F:      drivers/staging/unisys/
20266 F:      drivers/visorbus/
20267 F:      include/linux/visorbus.h
20268
20269 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20270 R:      Alim Akhtar <alim.akhtar@samsung.com>
20271 R:      Avri Altman <avri.altman@wdc.com>
20272 L:      linux-scsi@vger.kernel.org
20273 S:      Supported
20274 F:      Documentation/devicetree/bindings/ufs/
20275 F:      Documentation/scsi/ufs.rst
20276 F:      drivers/scsi/ufs/
20277
20278 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20279 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20280 L:      linux-scsi@vger.kernel.org
20281 S:      Supported
20282 F:      drivers/scsi/ufs/*dwc*
20283
20284 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20285 M:      Stanley Chu <stanley.chu@mediatek.com>
20286 L:      linux-scsi@vger.kernel.org
20287 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20288 S:      Maintained
20289 F:      drivers/scsi/ufs/ufs-mediatek*
20290
20291 UNSORTED BLOCK IMAGES (UBI)
20292 M:      Richard Weinberger <richard@nod.at>
20293 L:      linux-mtd@lists.infradead.org
20294 S:      Supported
20295 W:      http://www.linux-mtd.infradead.org/
20296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20298 F:      drivers/mtd/ubi/
20299 F:      include/linux/mtd/ubi.h
20300 F:      include/uapi/mtd/ubi-user.h
20301
20302 USB "USBNET" DRIVER FRAMEWORK
20303 M:      Oliver Neukum <oneukum@suse.com>
20304 L:      netdev@vger.kernel.org
20305 S:      Maintained
20306 W:      http://www.linux-usb.org/usbnet
20307 F:      drivers/net/usb/usbnet.c
20308 F:      include/linux/usb/usbnet.h
20309
20310 USB ACM DRIVER
20311 M:      Oliver Neukum <oneukum@suse.com>
20312 L:      linux-usb@vger.kernel.org
20313 S:      Maintained
20314 F:      Documentation/usb/acm.rst
20315 F:      drivers/usb/class/cdc-acm.*
20316
20317 USB APPLE MFI FASTCHARGE DRIVER
20318 M:      Bastien Nocera <hadess@hadess.net>
20319 L:      linux-usb@vger.kernel.org
20320 S:      Maintained
20321 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20322
20323 USB AR5523 WIRELESS DRIVER
20324 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20325 L:      linux-wireless@vger.kernel.org
20326 S:      Maintained
20327 F:      drivers/net/wireless/ath/ar5523/
20328
20329 USB ATTACHED SCSI
20330 M:      Oliver Neukum <oneukum@suse.com>
20331 L:      linux-usb@vger.kernel.org
20332 L:      linux-scsi@vger.kernel.org
20333 S:      Maintained
20334 F:      drivers/usb/storage/uas.c
20335
20336 USB CDC ETHERNET DRIVER
20337 M:      Oliver Neukum <oliver@neukum.org>
20338 L:      linux-usb@vger.kernel.org
20339 S:      Maintained
20340 F:      drivers/net/usb/cdc_*.c
20341 F:      include/uapi/linux/usb/cdc.h
20342
20343 USB CHAOSKEY DRIVER
20344 M:      Keith Packard <keithp@keithp.com>
20345 L:      linux-usb@vger.kernel.org
20346 S:      Maintained
20347 F:      drivers/usb/misc/chaoskey.c
20348
20349 USB CYPRESS C67X00 DRIVER
20350 L:      linux-usb@vger.kernel.org
20351 S:      Orphan
20352 F:      drivers/usb/c67x00/
20353
20354 USB DAVICOM DM9601 DRIVER
20355 M:      Peter Korsgaard <peter@korsgaard.com>
20356 L:      netdev@vger.kernel.org
20357 S:      Maintained
20358 W:      http://www.linux-usb.org/usbnet
20359 F:      drivers/net/usb/dm9601.c
20360
20361 USB EHCI DRIVER
20362 M:      Alan Stern <stern@rowland.harvard.edu>
20363 L:      linux-usb@vger.kernel.org
20364 S:      Maintained
20365 F:      Documentation/usb/ehci.rst
20366 F:      drivers/usb/host/ehci*
20367
20368 USB GADGET/PERIPHERAL SUBSYSTEM
20369 M:      Felipe Balbi <balbi@kernel.org>
20370 L:      linux-usb@vger.kernel.org
20371 S:      Maintained
20372 W:      http://www.linux-usb.org/gadget
20373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20374 F:      drivers/usb/gadget/
20375 F:      include/linux/usb/gadget*
20376
20377 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20378 M:      Jiri Kosina <jikos@kernel.org>
20379 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20380 L:      linux-usb@vger.kernel.org
20381 S:      Maintained
20382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20383 F:      Documentation/hid/hiddev.rst
20384 F:      drivers/hid/usbhid/
20385
20386 USB INTEL XHCI ROLE MUX DRIVER
20387 M:      Hans de Goede <hdegoede@redhat.com>
20388 L:      linux-usb@vger.kernel.org
20389 S:      Maintained
20390 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20391
20392 USB IP DRIVER FOR HISILICON KIRIN 960
20393 M:      Yu Chen <chenyu56@huawei.com>
20394 M:      Binghui Wang <wangbinghui@hisilicon.com>
20395 L:      linux-usb@vger.kernel.org
20396 S:      Maintained
20397 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20398 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20399
20400 USB IP DRIVER FOR HISILICON KIRIN 970
20401 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20402 L:      linux-usb@vger.kernel.org
20403 S:      Maintained
20404 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20405 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20406
20407 USB ISP116X DRIVER
20408 M:      Olav Kongas <ok@artecdesign.ee>
20409 L:      linux-usb@vger.kernel.org
20410 S:      Maintained
20411 F:      drivers/usb/host/isp116x*
20412 F:      include/linux/usb/isp116x.h
20413
20414 USB ISP1760 DRIVER
20415 M:      Rui Miguel Silva <rui.silva@linaro.org>
20416 L:      linux-usb@vger.kernel.org
20417 S:      Maintained
20418 F:      drivers/usb/isp1760/*
20419 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20420
20421 USB LAN78XX ETHERNET DRIVER
20422 M:      Woojung Huh <woojung.huh@microchip.com>
20423 M:      UNGLinuxDriver@microchip.com
20424 L:      netdev@vger.kernel.org
20425 S:      Maintained
20426 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20427 F:      drivers/net/usb/lan78xx.*
20428 F:      include/dt-bindings/net/microchip-lan78xx.h
20429
20430 USB MASS STORAGE DRIVER
20431 M:      Alan Stern <stern@rowland.harvard.edu>
20432 L:      linux-usb@vger.kernel.org
20433 L:      usb-storage@lists.one-eyed-alien.net
20434 S:      Maintained
20435 F:      drivers/usb/storage/
20436
20437 USB MIDI DRIVER
20438 M:      Clemens Ladisch <clemens@ladisch.de>
20439 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20440 S:      Maintained
20441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20442 F:      sound/usb/midi.*
20443
20444 USB NETWORKING DRIVERS
20445 L:      linux-usb@vger.kernel.org
20446 S:      Odd Fixes
20447 F:      drivers/net/usb/
20448
20449 USB OHCI DRIVER
20450 M:      Alan Stern <stern@rowland.harvard.edu>
20451 L:      linux-usb@vger.kernel.org
20452 S:      Maintained
20453 F:      Documentation/usb/ohci.rst
20454 F:      drivers/usb/host/ohci*
20455
20456 USB OTG FSM (Finite State Machine)
20457 M:      Peter Chen <peter.chen@kernel.org>
20458 L:      linux-usb@vger.kernel.org
20459 S:      Maintained
20460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20461 F:      drivers/usb/common/usb-otg-fsm.c
20462
20463 USB OVER IP DRIVER
20464 M:      Valentina Manea <valentina.manea.m@gmail.com>
20465 M:      Shuah Khan <shuah@kernel.org>
20466 M:      Shuah Khan <skhan@linuxfoundation.org>
20467 L:      linux-usb@vger.kernel.org
20468 S:      Maintained
20469 F:      Documentation/usb/usbip_protocol.rst
20470 F:      drivers/usb/usbip/
20471 F:      tools/testing/selftests/drivers/usb/usbip/
20472 F:      tools/usb/usbip/
20473
20474 USB PEGASUS DRIVER
20475 M:      Petko Manolov <petkan@nucleusys.com>
20476 L:      linux-usb@vger.kernel.org
20477 L:      netdev@vger.kernel.org
20478 S:      Maintained
20479 W:      https://github.com/petkan/pegasus
20480 T:      git git://github.com/petkan/pegasus.git
20481 F:      drivers/net/usb/pegasus.*
20482
20483 USB PHY LAYER
20484 M:      Felipe Balbi <balbi@kernel.org>
20485 L:      linux-usb@vger.kernel.org
20486 S:      Maintained
20487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20488 F:      drivers/usb/phy/
20489
20490 USB PRINTER DRIVER (usblp)
20491 M:      Pete Zaitcev <zaitcev@redhat.com>
20492 L:      linux-usb@vger.kernel.org
20493 S:      Supported
20494 F:      drivers/usb/class/usblp.c
20495
20496 USB RAW GADGET DRIVER
20497 R:      Andrey Konovalov <andreyknvl@gmail.com>
20498 L:      linux-usb@vger.kernel.org
20499 S:      Maintained
20500 F:      Documentation/usb/raw-gadget.rst
20501 F:      drivers/usb/gadget/legacy/raw_gadget.c
20502 F:      include/uapi/linux/usb/raw_gadget.h
20503
20504 USB QMI WWAN NETWORK DRIVER
20505 M:      Bjørn Mork <bjorn@mork.no>
20506 L:      netdev@vger.kernel.org
20507 S:      Maintained
20508 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20509 F:      drivers/net/usb/qmi_wwan.c
20510
20511 USB RTL8150 DRIVER
20512 M:      Petko Manolov <petkan@nucleusys.com>
20513 L:      linux-usb@vger.kernel.org
20514 L:      netdev@vger.kernel.org
20515 S:      Maintained
20516 W:      https://github.com/petkan/rtl8150
20517 T:      git git://github.com/petkan/rtl8150.git
20518 F:      drivers/net/usb/rtl8150.c
20519
20520 USB SERIAL SUBSYSTEM
20521 M:      Johan Hovold <johan@kernel.org>
20522 L:      linux-usb@vger.kernel.org
20523 S:      Maintained
20524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20525 F:      Documentation/usb/usb-serial.rst
20526 F:      drivers/usb/serial/
20527 F:      include/linux/usb/serial.h
20528
20529 USB SMSC75XX ETHERNET DRIVER
20530 M:      Steve Glendinning <steve.glendinning@shawell.net>
20531 L:      netdev@vger.kernel.org
20532 S:      Maintained
20533 F:      drivers/net/usb/smsc75xx.*
20534
20535 USB SMSC95XX ETHERNET DRIVER
20536 M:      Steve Glendinning <steve.glendinning@shawell.net>
20537 M:      UNGLinuxDriver@microchip.com
20538 L:      netdev@vger.kernel.org
20539 S:      Maintained
20540 F:      drivers/net/usb/smsc95xx.*
20541
20542 USB SUBSYSTEM
20543 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20544 L:      linux-usb@vger.kernel.org
20545 S:      Supported
20546 W:      http://www.linux-usb.org
20547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20548 F:      Documentation/devicetree/bindings/usb/
20549 F:      Documentation/usb/
20550 F:      drivers/usb/
20551 F:      include/linux/usb.h
20552 F:      include/linux/usb/
20553
20554 USB TYPEC BUS FOR ALTERNATE MODES
20555 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20556 L:      linux-usb@vger.kernel.org
20557 S:      Maintained
20558 F:      Documentation/ABI/testing/sysfs-bus-typec
20559 F:      Documentation/driver-api/usb/typec_bus.rst
20560 F:      drivers/usb/typec/altmodes/
20561 F:      include/linux/usb/typec_altmode.h
20562
20563 USB TYPEC CLASS
20564 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20565 L:      linux-usb@vger.kernel.org
20566 S:      Maintained
20567 F:      Documentation/ABI/testing/sysfs-class-typec
20568 F:      Documentation/driver-api/usb/typec.rst
20569 F:      drivers/usb/typec/
20570 F:      include/linux/usb/typec.h
20571
20572 USB TYPEC INTEL PMC MUX DRIVER
20573 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20574 L:      linux-usb@vger.kernel.org
20575 S:      Maintained
20576 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20577 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20578
20579 USB TYPEC PI3USB30532 MUX DRIVER
20580 M:      Hans de Goede <hdegoede@redhat.com>
20581 L:      linux-usb@vger.kernel.org
20582 S:      Maintained
20583 F:      drivers/usb/typec/mux/pi3usb30532.c
20584
20585 USB TYPEC PORT CONTROLLER DRIVERS
20586 M:      Guenter Roeck <linux@roeck-us.net>
20587 L:      linux-usb@vger.kernel.org
20588 S:      Maintained
20589 F:      drivers/usb/typec/tcpm/
20590
20591 USB UHCI DRIVER
20592 M:      Alan Stern <stern@rowland.harvard.edu>
20593 L:      linux-usb@vger.kernel.org
20594 S:      Maintained
20595 F:      drivers/usb/host/uhci*
20596
20597 USB VIDEO CLASS
20598 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20599 L:      linux-media@vger.kernel.org
20600 S:      Maintained
20601 W:      http://www.ideasonboard.org/uvc/
20602 T:      git git://linuxtv.org/media_tree.git
20603 F:      drivers/media/usb/uvc/
20604 F:      include/uapi/linux/uvcvideo.h
20605
20606 USB WEBCAM GADGET
20607 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20608 L:      linux-usb@vger.kernel.org
20609 S:      Maintained
20610 F:      drivers/usb/gadget/function/*uvc*
20611 F:      drivers/usb/gadget/legacy/webcam.c
20612 F:      include/uapi/linux/usb/g_uvc.h
20613
20614 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20615 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20616 L:      linux-wireless@vger.kernel.org
20617 S:      Maintained
20618 F:      drivers/net/wireless/rndis_wlan.c
20619
20620 USB XHCI DRIVER
20621 M:      Mathias Nyman <mathias.nyman@intel.com>
20622 L:      linux-usb@vger.kernel.org
20623 S:      Supported
20624 F:      drivers/usb/host/pci-quirks*
20625 F:      drivers/usb/host/xhci*
20626
20627 USB ZD1201 DRIVER
20628 L:      linux-wireless@vger.kernel.org
20629 S:      Orphan
20630 W:      http://linux-lc100020.sourceforge.net
20631 F:      drivers/net/wireless/zydas/zd1201.*
20632
20633 USB ZR364XX DRIVER
20634 M:      Antoine Jacquet <royale@zerezo.com>
20635 L:      linux-usb@vger.kernel.org
20636 L:      linux-media@vger.kernel.org
20637 S:      Maintained
20638 W:      http://royale.zerezo.com/zr364xx/
20639 T:      git git://linuxtv.org/media_tree.git
20640 F:      Documentation/admin-guide/media/zr364xx*
20641 F:      drivers/media/usb/zr364xx/
20642
20643 USER-MODE LINUX (UML)
20644 M:      Richard Weinberger <richard@nod.at>
20645 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20646 M:      Johannes Berg <johannes@sipsolutions.net>
20647 L:      linux-um@lists.infradead.org
20648 S:      Maintained
20649 W:      http://user-mode-linux.sourceforge.net
20650 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
20652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
20653 F:      Documentation/virt/uml/
20654 F:      arch/um/
20655 F:      arch/x86/um/
20656 F:      fs/hostfs/
20657
20658 USERSPACE COPYIN/COPYOUT (UIOVEC)
20659 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20660 S:      Maintained
20661 F:      include/linux/uio.h
20662 F:      lib/iov_iter.c
20663
20664 USERSPACE DMA BUFFER DRIVER
20665 M:      Gerd Hoffmann <kraxel@redhat.com>
20666 L:      dri-devel@lists.freedesktop.org
20667 S:      Maintained
20668 T:      git git://anongit.freedesktop.org/drm/drm-misc
20669 F:      drivers/dma-buf/udmabuf.c
20670 F:      include/uapi/linux/udmabuf.h
20671
20672 USERSPACE I/O (UIO)
20673 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20674 S:      Maintained
20675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20676 F:      Documentation/driver-api/uio-howto.rst
20677 F:      drivers/uio/
20678 F:      include/linux/uio_driver.h
20679
20680 UTIL-LINUX PACKAGE
20681 M:      Karel Zak <kzak@redhat.com>
20682 L:      util-linux@vger.kernel.org
20683 S:      Maintained
20684 W:      http://en.wikipedia.org/wiki/Util-linux
20685 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20686
20687 UUID HELPERS
20688 M:      Christoph Hellwig <hch@lst.de>
20689 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20690 L:      linux-kernel@vger.kernel.org
20691 S:      Maintained
20692 T:      git git://git.infradead.org/users/hch/uuid.git
20693 F:      include/linux/uuid.h
20694 F:      include/uapi/linux/uuid.h
20695 F:      lib/test_uuid.c
20696 F:      lib/uuid.c
20697
20698 UV SYSFS DRIVER
20699 M:      Justin Ernst <justin.ernst@hpe.com>
20700 L:      platform-driver-x86@vger.kernel.org
20701 S:      Maintained
20702 F:      drivers/platform/x86/uv_sysfs.c
20703
20704 UVESAFB DRIVER
20705 M:      Michal Januszewski <spock@gentoo.org>
20706 L:      linux-fbdev@vger.kernel.org
20707 S:      Maintained
20708 W:      https://github.com/mjanusz/v86d
20709 F:      Documentation/fb/uvesafb.rst
20710 F:      drivers/video/fbdev/uvesafb.*
20711
20712 Ux500 CLOCK DRIVERS
20713 M:      Ulf Hansson <ulf.hansson@linaro.org>
20714 L:      linux-clk@vger.kernel.org
20715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20716 S:      Maintained
20717 F:      drivers/clk/ux500/
20718
20719 VF610 NAND DRIVER
20720 M:      Stefan Agner <stefan@agner.ch>
20721 L:      linux-mtd@lists.infradead.org
20722 S:      Supported
20723 F:      drivers/mtd/nand/raw/vf610_nfc.c
20724
20725 VFAT/FAT/MSDOS FILESYSTEM
20726 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20727 S:      Maintained
20728 F:      Documentation/filesystems/vfat.rst
20729 F:      fs/fat/
20730
20731 VFIO DRIVER
20732 M:      Alex Williamson <alex.williamson@redhat.com>
20733 R:      Cornelia Huck <cohuck@redhat.com>
20734 L:      kvm@vger.kernel.org
20735 S:      Maintained
20736 T:      git git://github.com/awilliam/linux-vfio.git
20737 F:      Documentation/driver-api/vfio.rst
20738 F:      drivers/vfio/
20739 F:      include/linux/vfio.h
20740 F:      include/linux/vfio_pci_core.h
20741 F:      include/uapi/linux/vfio.h
20742
20743 VFIO FSL-MC DRIVER
20744 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20745 L:      kvm@vger.kernel.org
20746 S:      Maintained
20747 F:      drivers/vfio/fsl-mc/
20748
20749 VFIO HISILICON PCI DRIVER
20750 M:      Longfang Liu <liulongfang@huawei.com>
20751 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20752 L:      kvm@vger.kernel.org
20753 S:      Maintained
20754 F:      drivers/vfio/pci/hisilicon/
20755
20756 VFIO MEDIATED DEVICE DRIVERS
20757 M:      Kirti Wankhede <kwankhede@nvidia.com>
20758 L:      kvm@vger.kernel.org
20759 S:      Maintained
20760 F:      Documentation/driver-api/vfio-mediated-device.rst
20761 F:      drivers/vfio/mdev/
20762 F:      include/linux/mdev.h
20763 F:      samples/vfio-mdev/
20764
20765 VFIO PCI DEVICE SPECIFIC DRIVERS
20766 R:      Jason Gunthorpe <jgg@nvidia.com>
20767 R:      Yishai Hadas <yishaih@nvidia.com>
20768 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20769 R:      Kevin Tian <kevin.tian@intel.com>
20770 L:      kvm@vger.kernel.org
20771 S:      Maintained
20772 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
20773 F:      drivers/vfio/pci/*/
20774
20775 VFIO PLATFORM DRIVER
20776 M:      Eric Auger <eric.auger@redhat.com>
20777 L:      kvm@vger.kernel.org
20778 S:      Maintained
20779 F:      drivers/vfio/platform/
20780
20781 VFIO MLX5 PCI DRIVER
20782 M:      Yishai Hadas <yishaih@nvidia.com>
20783 L:      kvm@vger.kernel.org
20784 S:      Maintained
20785 F:      drivers/vfio/pci/mlx5/
20786
20787 VGA_SWITCHEROO
20788 R:      Lukas Wunner <lukas@wunner.de>
20789 S:      Maintained
20790 T:      git git://anongit.freedesktop.org/drm/drm-misc
20791 F:      Documentation/gpu/vga-switcheroo.rst
20792 F:      drivers/gpu/vga/vga_switcheroo.c
20793 F:      include/linux/vga_switcheroo.h
20794
20795 VIA RHINE NETWORK DRIVER
20796 S:      Maintained
20797 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20798 F:      drivers/net/ethernet/via/via-rhine.c
20799
20800 VIA SD/MMC CARD CONTROLLER DRIVER
20801 M:      Bruce Chang <brucechang@via.com.tw>
20802 M:      Harald Welte <HaraldWelte@viatech.com>
20803 S:      Maintained
20804 F:      drivers/mmc/host/via-sdmmc.c
20805
20806 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20807 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20808 L:      linux-fbdev@vger.kernel.org
20809 S:      Maintained
20810 F:      drivers/video/fbdev/via/
20811 F:      include/linux/via-core.h
20812 F:      include/linux/via-gpio.h
20813 F:      include/linux/via_i2c.h
20814
20815 VIA VELOCITY NETWORK DRIVER
20816 M:      Francois Romieu <romieu@fr.zoreil.com>
20817 L:      netdev@vger.kernel.org
20818 S:      Maintained
20819 F:      drivers/net/ethernet/via/via-velocity.*
20820
20821 VICODEC VIRTUAL CODEC DRIVER
20822 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20823 L:      linux-media@vger.kernel.org
20824 S:      Maintained
20825 W:      https://linuxtv.org
20826 T:      git git://linuxtv.org/media_tree.git
20827 F:      drivers/media/test-drivers/vicodec/*
20828
20829 VIDEO I2C POLLING DRIVER
20830 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20831 L:      linux-media@vger.kernel.org
20832 S:      Maintained
20833 F:      drivers/media/i2c/video-i2c.c
20834
20835 VIDEO MULTIPLEXER DRIVER
20836 M:      Philipp Zabel <p.zabel@pengutronix.de>
20837 L:      linux-media@vger.kernel.org
20838 S:      Maintained
20839 F:      drivers/media/platform/video-mux.c
20840
20841 VIDEOBUF2 FRAMEWORK
20842 M:      Tomasz Figa <tfiga@chromium.org>
20843 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20844 L:      linux-media@vger.kernel.org
20845 S:      Maintained
20846 F:      drivers/media/common/videobuf2/*
20847 F:      include/media/videobuf2-*
20848
20849 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20850 M:      Shuah Khan <skhan@linuxfoundation.org>
20851 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
20852 L:      linux-media@vger.kernel.org
20853 S:      Maintained
20854 W:      https://linuxtv.org
20855 T:      git git://linuxtv.org/media_tree.git
20856 F:      drivers/media/test-drivers/vimc/*
20857
20858 VIRT LIB
20859 M:      Alex Williamson <alex.williamson@redhat.com>
20860 M:      Paolo Bonzini <pbonzini@redhat.com>
20861 L:      kvm@vger.kernel.org
20862 S:      Supported
20863 F:      virt/lib/
20864
20865 VIRTIO AND VHOST VSOCK DRIVER
20866 M:      Stefan Hajnoczi <stefanha@redhat.com>
20867 M:      Stefano Garzarella <sgarzare@redhat.com>
20868 L:      kvm@vger.kernel.org
20869 L:      virtualization@lists.linux-foundation.org
20870 L:      netdev@vger.kernel.org
20871 S:      Maintained
20872 F:      drivers/vhost/vsock.c
20873 F:      include/linux/virtio_vsock.h
20874 F:      include/uapi/linux/virtio_vsock.h
20875 F:      net/vmw_vsock/virtio_transport.c
20876 F:      net/vmw_vsock/virtio_transport_common.c
20877
20878 VIRTIO BLOCK AND SCSI DRIVERS
20879 M:      "Michael S. Tsirkin" <mst@redhat.com>
20880 M:      Jason Wang <jasowang@redhat.com>
20881 R:      Paolo Bonzini <pbonzini@redhat.com>
20882 R:      Stefan Hajnoczi <stefanha@redhat.com>
20883 L:      virtualization@lists.linux-foundation.org
20884 S:      Maintained
20885 F:      drivers/block/virtio_blk.c
20886 F:      drivers/scsi/virtio_scsi.c
20887 F:      drivers/vhost/scsi.c
20888 F:      include/uapi/linux/virtio_blk.h
20889 F:      include/uapi/linux/virtio_scsi.h
20890
20891 VIRTIO CONSOLE DRIVER
20892 M:      Amit Shah <amit@kernel.org>
20893 L:      virtualization@lists.linux-foundation.org
20894 S:      Maintained
20895 F:      drivers/char/virtio_console.c
20896 F:      include/linux/virtio_console.h
20897 F:      include/uapi/linux/virtio_console.h
20898
20899 VIRTIO CORE AND NET DRIVERS
20900 M:      "Michael S. Tsirkin" <mst@redhat.com>
20901 M:      Jason Wang <jasowang@redhat.com>
20902 L:      virtualization@lists.linux-foundation.org
20903 S:      Maintained
20904 F:      Documentation/ABI/testing/sysfs-bus-vdpa
20905 F:      Documentation/devicetree/bindings/virtio/
20906 F:      drivers/block/virtio_blk.c
20907 F:      drivers/crypto/virtio/
20908 F:      drivers/net/virtio_net.c
20909 F:      drivers/vdpa/
20910 F:      drivers/virtio/
20911 F:      include/linux/vdpa.h
20912 F:      include/linux/virtio*.h
20913 F:      include/uapi/linux/virtio_*.h
20914 F:      tools/virtio/
20915
20916 VIRTIO BALLOON
20917 M:      "Michael S. Tsirkin" <mst@redhat.com>
20918 M:      David Hildenbrand <david@redhat.com>
20919 L:      virtualization@lists.linux-foundation.org
20920 S:      Maintained
20921 F:      drivers/virtio/virtio_balloon.c
20922 F:      include/uapi/linux/virtio_balloon.h
20923 F:      include/linux/balloon_compaction.h
20924 F:      mm/balloon_compaction.c
20925
20926 VIRTIO CRYPTO DRIVER
20927 M:      Gonglei <arei.gonglei@huawei.com>
20928 L:      virtualization@lists.linux-foundation.org
20929 L:      linux-crypto@vger.kernel.org
20930 S:      Maintained
20931 F:      drivers/crypto/virtio/
20932 F:      include/uapi/linux/virtio_crypto.h
20933
20934 VIRTIO DRIVERS FOR S390
20935 M:      Cornelia Huck <cohuck@redhat.com>
20936 M:      Halil Pasic <pasic@linux.ibm.com>
20937 L:      linux-s390@vger.kernel.org
20938 L:      virtualization@lists.linux-foundation.org
20939 L:      kvm@vger.kernel.org
20940 S:      Supported
20941 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20942 F:      drivers/s390/virtio/
20943
20944 VIRTIO FILE SYSTEM
20945 M:      Vivek Goyal <vgoyal@redhat.com>
20946 M:      Stefan Hajnoczi <stefanha@redhat.com>
20947 M:      Miklos Szeredi <miklos@szeredi.hu>
20948 L:      virtualization@lists.linux-foundation.org
20949 L:      linux-fsdevel@vger.kernel.org
20950 S:      Supported
20951 W:      https://virtio-fs.gitlab.io/
20952 F:      Documentation/filesystems/virtiofs.rst
20953 F:      fs/fuse/virtio_fs.c
20954 F:      include/uapi/linux/virtio_fs.h
20955
20956 VIRTIO GPIO DRIVER
20957 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20958 M:      Viresh Kumar <vireshk@kernel.org>
20959 L:      linux-gpio@vger.kernel.org
20960 L:      virtualization@lists.linux-foundation.org
20961 S:      Maintained
20962 F:      drivers/gpio/gpio-virtio.c
20963 F:      include/uapi/linux/virtio_gpio.h
20964
20965 VIRTIO GPU DRIVER
20966 M:      David Airlie <airlied@linux.ie>
20967 M:      Gerd Hoffmann <kraxel@redhat.com>
20968 R:      Gurchetan Singh <gurchetansingh@chromium.org>
20969 R:      Chia-I Wu <olvaffe@gmail.com>
20970 L:      dri-devel@lists.freedesktop.org
20971 L:      virtualization@lists.linux-foundation.org
20972 S:      Maintained
20973 T:      git git://anongit.freedesktop.org/drm/drm-misc
20974 F:      drivers/gpu/drm/virtio/
20975 F:      include/uapi/linux/virtio_gpu.h
20976
20977 VIRTIO HOST (VHOST)
20978 M:      "Michael S. Tsirkin" <mst@redhat.com>
20979 M:      Jason Wang <jasowang@redhat.com>
20980 L:      kvm@vger.kernel.org
20981 L:      virtualization@lists.linux-foundation.org
20982 L:      netdev@vger.kernel.org
20983 S:      Maintained
20984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20985 F:      drivers/vhost/
20986 F:      include/linux/vhost_iotlb.h
20987 F:      include/uapi/linux/vhost.h
20988
20989 VIRTIO INPUT DRIVER
20990 M:      Gerd Hoffmann <kraxel@redhat.com>
20991 S:      Maintained
20992 F:      drivers/virtio/virtio_input.c
20993 F:      include/uapi/linux/virtio_input.h
20994
20995 VIRTIO IOMMU DRIVER
20996 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20997 L:      virtualization@lists.linux-foundation.org
20998 S:      Maintained
20999 F:      drivers/iommu/virtio-iommu.c
21000 F:      include/uapi/linux/virtio_iommu.h
21001
21002 VIRTIO MEM DRIVER
21003 M:      David Hildenbrand <david@redhat.com>
21004 L:      virtualization@lists.linux-foundation.org
21005 S:      Maintained
21006 W:      https://virtio-mem.gitlab.io/
21007 F:      drivers/virtio/virtio_mem.c
21008 F:      include/uapi/linux/virtio_mem.h
21009
21010 VIRTIO SOUND DRIVER
21011 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21012 M:      "Michael S. Tsirkin" <mst@redhat.com>
21013 L:      virtualization@lists.linux-foundation.org
21014 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21015 S:      Maintained
21016 F:      include/uapi/linux/virtio_snd.h
21017 F:      sound/virtio/*
21018
21019 VIRTIO I2C DRIVER
21020 M:      Conghui Chen <conghui.chen@intel.com>
21021 M:      Viresh Kumar <viresh.kumar@linaro.org>
21022 L:      linux-i2c@vger.kernel.org
21023 L:      virtualization@lists.linux-foundation.org
21024 S:      Maintained
21025 F:      drivers/i2c/busses/i2c-virtio.c
21026 F:      include/uapi/linux/virtio_i2c.h
21027
21028 VIRTIO PMEM DRIVER
21029 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21030 L:      virtualization@lists.linux-foundation.org
21031 S:      Maintained
21032 F:      drivers/nvdimm/virtio_pmem.c
21033 F:      drivers/nvdimm/nd_virtio.c
21034
21035 VIRTUAL BOX GUEST DEVICE DRIVER
21036 M:      Hans de Goede <hdegoede@redhat.com>
21037 M:      Arnd Bergmann <arnd@arndb.de>
21038 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21039 S:      Maintained
21040 F:      drivers/virt/vboxguest/
21041 F:      include/linux/vbox_utils.h
21042 F:      include/uapi/linux/vbox*.h
21043
21044 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21045 M:      Hans de Goede <hdegoede@redhat.com>
21046 L:      linux-fsdevel@vger.kernel.org
21047 S:      Maintained
21048 F:      fs/vboxsf/*
21049
21050 VIRTUAL SERIO DEVICE DRIVER
21051 M:      Stephen Chandler Paul <thatslyude@gmail.com>
21052 S:      Maintained
21053 F:      drivers/input/serio/userio.c
21054 F:      include/uapi/linux/userio.h
21055
21056 VIVID VIRTUAL VIDEO DRIVER
21057 M:      Hans Verkuil <hverkuil@xs4all.nl>
21058 L:      linux-media@vger.kernel.org
21059 S:      Maintained
21060 W:      https://linuxtv.org
21061 T:      git git://linuxtv.org/media_tree.git
21062 F:      drivers/media/test-drivers/vivid/*
21063
21064 VIDTV VIRTUAL DIGITAL TV DRIVER
21065 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21066 L:      linux-media@vger.kernel.org
21067 S:      Maintained
21068 W:      https://linuxtv.org
21069 T:      git git://linuxtv.org/media_tree.git
21070 F:      drivers/media/test-drivers/vidtv/*
21071
21072 VLYNQ BUS
21073 M:      Florian Fainelli <f.fainelli@gmail.com>
21074 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21075 S:      Maintained
21076 F:      drivers/vlynq/vlynq.c
21077 F:      include/linux/vlynq.h
21078
21079 VME SUBSYSTEM
21080 M:      Martyn Welch <martyn@welchs.me.uk>
21081 M:      Manohar Vanga <manohar.vanga@gmail.com>
21082 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21083 L:      linux-kernel@vger.kernel.org
21084 S:      Maintained
21085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21086 F:      Documentation/driver-api/vme.rst
21087 F:      drivers/staging/vme/
21088 F:      drivers/vme/
21089 F:      include/linux/vme*
21090
21091 VM SOCKETS (AF_VSOCK)
21092 M:      Stefano Garzarella <sgarzare@redhat.com>
21093 L:      virtualization@lists.linux-foundation.org
21094 L:      netdev@vger.kernel.org
21095 S:      Maintained
21096 F:      drivers/net/vsockmon.c
21097 F:      include/net/af_vsock.h
21098 F:      include/uapi/linux/vm_sockets.h
21099 F:      include/uapi/linux/vm_sockets_diag.h
21100 F:      include/uapi/linux/vsockmon.h
21101 F:      net/vmw_vsock/
21102 F:      tools/testing/vsock/
21103
21104 VMWARE BALLOON DRIVER
21105 M:      Nadav Amit <namit@vmware.com>
21106 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21107 L:      linux-kernel@vger.kernel.org
21108 S:      Maintained
21109 F:      drivers/misc/vmw_balloon.c
21110
21111 VMWARE HYPERVISOR INTERFACE
21112 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21113 M:      Alexey Makhalov <amakhalov@vmware.com>
21114 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21115 L:      virtualization@lists.linux-foundation.org
21116 L:      x86@kernel.org
21117 S:      Supported
21118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21119 F:      arch/x86/include/asm/vmware.h
21120 F:      arch/x86/kernel/cpu/vmware.c
21121
21122 VMWARE PVRDMA DRIVER
21123 M:      Bryan Tan <bryantan@vmware.com>
21124 M:      Vishnu Dasa <vdasa@vmware.com>
21125 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21126 L:      linux-rdma@vger.kernel.org
21127 S:      Maintained
21128 F:      drivers/infiniband/hw/vmw_pvrdma/
21129
21130 VMware PVSCSI driver
21131 M:      Vishal Bhakta <vbhakta@vmware.com>
21132 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21133 L:      linux-scsi@vger.kernel.org
21134 S:      Maintained
21135 F:      drivers/scsi/vmw_pvscsi.c
21136 F:      drivers/scsi/vmw_pvscsi.h
21137
21138 VMWARE VIRTUAL PTP CLOCK DRIVER
21139 M:      Vivek Thampi <vithampi@vmware.com>
21140 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21141 L:      netdev@vger.kernel.org
21142 S:      Supported
21143 F:      drivers/ptp/ptp_vmw.c
21144
21145 VMWARE VMCI DRIVER
21146 M:      Bryan Tan <bryantan@vmware.com>
21147 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21148 M:      Vishnu Dasa <vdasa@vmware.com>
21149 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21150 L:      linux-kernel@vger.kernel.org
21151 S:      Maintained
21152 F:      drivers/misc/vmw_vmci/
21153
21154 VMWARE VMMOUSE SUBDRIVER
21155 M:      Zack Rusin <zackr@vmware.com>
21156 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21157 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21158 L:      linux-input@vger.kernel.org
21159 S:      Maintained
21160 F:      drivers/input/mouse/vmmouse.c
21161 F:      drivers/input/mouse/vmmouse.h
21162
21163 VMWARE VMXNET3 ETHERNET DRIVER
21164 M:      Ronak Doshi <doshir@vmware.com>
21165 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21166 L:      netdev@vger.kernel.org
21167 S:      Maintained
21168 F:      drivers/net/vmxnet3/
21169
21170 VOCORE VOCORE2 BOARD
21171 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21172 L:      linux-mips@vger.kernel.org
21173 S:      Maintained
21174 F:      arch/mips/boot/dts/ralink/vocore2.dts
21175
21176 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21177 M:      Liam Girdwood <lgirdwood@gmail.com>
21178 M:      Mark Brown <broonie@kernel.org>
21179 L:      linux-kernel@vger.kernel.org
21180 S:      Supported
21181 W:      http://www.slimlogic.co.uk/?p=48
21182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21183 F:      Documentation/devicetree/bindings/regulator/
21184 F:      Documentation/power/regulator/
21185 F:      drivers/regulator/
21186 F:      include/dt-bindings/regulator/
21187 F:      include/linux/regulator/
21188 K:      regulator_get_optional
21189
21190 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21191 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21192 F:      drivers/regulator/irq_helpers.c
21193
21194 VRF
21195 M:      David Ahern <dsahern@kernel.org>
21196 L:      netdev@vger.kernel.org
21197 S:      Maintained
21198 F:      Documentation/networking/vrf.rst
21199 F:      drivers/net/vrf.c
21200
21201 VSPRINTF
21202 M:      Petr Mladek <pmladek@suse.com>
21203 M:      Steven Rostedt <rostedt@goodmis.org>
21204 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21205 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21206 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21207 S:      Maintained
21208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21209 F:      Documentation/core-api/printk-formats.rst
21210 F:      lib/test_printf.c
21211 F:      lib/test_scanf.c
21212 F:      lib/vsprintf.c
21213
21214 VT1211 HARDWARE MONITOR DRIVER
21215 M:      Juerg Haefliger <juergh@gmail.com>
21216 L:      linux-hwmon@vger.kernel.org
21217 S:      Maintained
21218 F:      Documentation/hwmon/vt1211.rst
21219 F:      drivers/hwmon/vt1211.c
21220
21221 VT8231 HARDWARE MONITOR DRIVER
21222 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21223 L:      linux-hwmon@vger.kernel.org
21224 S:      Maintained
21225 F:      drivers/hwmon/vt8231.c
21226
21227 VUB300 USB to SDIO/SD/MMC bridge chip
21228 L:      linux-mmc@vger.kernel.org
21229 S:      Orphan
21230 F:      drivers/mmc/host/vub300.c
21231
21232 W1 DALLAS'S 1-WIRE BUS
21233 M:      Evgeniy Polyakov <zbr@ioremap.net>
21234 S:      Maintained
21235 F:      Documentation/devicetree/bindings/w1/
21236 F:      Documentation/w1/
21237 F:      drivers/w1/
21238 F:      include/linux/w1.h
21239
21240 W83791D HARDWARE MONITORING DRIVER
21241 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21242 L:      linux-hwmon@vger.kernel.org
21243 S:      Maintained
21244 F:      Documentation/hwmon/w83791d.rst
21245 F:      drivers/hwmon/w83791d.c
21246
21247 W83793 HARDWARE MONITORING DRIVER
21248 M:      Rudolf Marek <r.marek@assembler.cz>
21249 L:      linux-hwmon@vger.kernel.org
21250 S:      Maintained
21251 F:      Documentation/hwmon/w83793.rst
21252 F:      drivers/hwmon/w83793.c
21253
21254 W83795 HARDWARE MONITORING DRIVER
21255 M:      Jean Delvare <jdelvare@suse.com>
21256 L:      linux-hwmon@vger.kernel.org
21257 S:      Maintained
21258 F:      drivers/hwmon/w83795.c
21259
21260 W83L51xD SD/MMC CARD INTERFACE DRIVER
21261 M:      Pierre Ossman <pierre@ossman.eu>
21262 S:      Maintained
21263 F:      drivers/mmc/host/wbsd.*
21264
21265 WACOM PROTOCOL 4 SERIAL TABLETS
21266 M:      Julian Squires <julian@cipht.net>
21267 M:      Hans de Goede <hdegoede@redhat.com>
21268 L:      linux-input@vger.kernel.org
21269 S:      Maintained
21270 F:      drivers/input/tablet/wacom_serial4.c
21271
21272 WATCHDOG DEVICE DRIVERS
21273 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21274 M:      Guenter Roeck <linux@roeck-us.net>
21275 L:      linux-watchdog@vger.kernel.org
21276 S:      Maintained
21277 W:      http://www.linux-watchdog.org/
21278 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21279 F:      Documentation/devicetree/bindings/watchdog/
21280 F:      Documentation/watchdog/
21281 F:      drivers/watchdog/
21282 F:      include/linux/watchdog.h
21283 F:      include/uapi/linux/watchdog.h
21284
21285 WHISKEYCOVE PMIC GPIO DRIVER
21286 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21287 L:      linux-gpio@vger.kernel.org
21288 S:      Maintained
21289 F:      drivers/gpio/gpio-wcove.c
21290
21291 WHWAVE RTC DRIVER
21292 M:      Dianlong Li <long17.cool@163.com>
21293 L:      linux-rtc@vger.kernel.org
21294 S:      Maintained
21295 F:      drivers/rtc/rtc-sd3078.c
21296
21297 WIIMOTE HID DRIVER
21298 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21299 L:      linux-input@vger.kernel.org
21300 S:      Maintained
21301 F:      drivers/hid/hid-wiimote*
21302
21303 WILOCITY WIL6210 WIRELESS DRIVER
21304 L:      linux-wireless@vger.kernel.org
21305 S:      Orphan
21306 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21307 F:      drivers/net/wireless/ath/wil6210/
21308
21309 WINBOND CIR DRIVER
21310 M:      David Härdeman <david@hardeman.nu>
21311 S:      Maintained
21312 F:      drivers/media/rc/winbond-cir.c
21313
21314 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21315 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21316 L:      linux-watchdog@vger.kernel.org
21317 S:      Maintained
21318 F:      drivers/watchdog/ebc-c384_wdt.c
21319
21320 WINSYSTEMS WS16C48 GPIO DRIVER
21321 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21322 L:      linux-gpio@vger.kernel.org
21323 S:      Maintained
21324 F:      drivers/gpio/gpio-ws16c48.c
21325
21326 WIREGUARD SECURE NETWORK TUNNEL
21327 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21328 L:      wireguard@lists.zx2c4.com
21329 L:      netdev@vger.kernel.org
21330 S:      Maintained
21331 F:      drivers/net/wireguard/
21332 F:      tools/testing/selftests/wireguard/
21333
21334 WISTRON LAPTOP BUTTON DRIVER
21335 M:      Miloslav Trmac <mitr@volny.cz>
21336 S:      Maintained
21337 F:      drivers/input/misc/wistron_btns.c
21338
21339 WL3501 WIRELESS PCMCIA CARD DRIVER
21340 L:      linux-wireless@vger.kernel.org
21341 S:      Odd fixes
21342 F:      drivers/net/wireless/wl3501*
21343
21344 WOLFSON MICROELECTRONICS DRIVERS
21345 L:      patches@opensource.cirrus.com
21346 S:      Supported
21347 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21348 T:      git https://github.com/CirrusLogic/linux-drivers.git
21349 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21350 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21351 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21352 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21353 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21354 F:      Documentation/devicetree/bindings/sound/wm*
21355 F:      Documentation/hwmon/wm83??.rst
21356 F:      arch/arm/mach-s3c/mach-crag6410*
21357 F:      drivers/clk/clk-wm83*.c
21358 F:      drivers/gpio/gpio-*wm*.c
21359 F:      drivers/gpio/gpio-arizona.c
21360 F:      drivers/hwmon/wm83??-hwmon.c
21361 F:      drivers/input/misc/wm831x-on.c
21362 F:      drivers/input/touchscreen/wm831x-ts.c
21363 F:      drivers/input/touchscreen/wm97*.c
21364 F:      drivers/leds/leds-wm83*.c
21365 F:      drivers/mfd/arizona*
21366 F:      drivers/mfd/cs47l24*
21367 F:      drivers/mfd/wm*.c
21368 F:      drivers/power/supply/wm83*.c
21369 F:      drivers/regulator/arizona*
21370 F:      drivers/regulator/wm8*.c
21371 F:      drivers/rtc/rtc-wm83*.c
21372 F:      drivers/video/backlight/wm83*_bl.c
21373 F:      drivers/watchdog/wm83*_wdt.c
21374 F:      include/linux/mfd/arizona/
21375 F:      include/linux/mfd/wm831x/
21376 F:      include/linux/mfd/wm8350/
21377 F:      include/linux/mfd/wm8400*
21378 F:      include/linux/regulator/arizona*
21379 F:      include/linux/wm97xx.h
21380 F:      include/sound/wm????.h
21381 F:      sound/soc/codecs/arizona*
21382 F:      sound/soc/codecs/cs47l24*
21383 F:      sound/soc/codecs/wm*
21384
21385 WORKQUEUE
21386 M:      Tejun Heo <tj@kernel.org>
21387 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21388 S:      Maintained
21389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21390 F:      Documentation/core-api/workqueue.rst
21391 F:      include/linux/workqueue.h
21392 F:      kernel/workqueue.c
21393
21394 WWAN DRIVERS
21395 M:      Loic Poulain <loic.poulain@linaro.org>
21396 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21397 R:      Johannes Berg <johannes@sipsolutions.net>
21398 L:      netdev@vger.kernel.org
21399 S:      Maintained
21400 F:      drivers/net/wwan/
21401 F:      include/linux/wwan.h
21402 F:      include/uapi/linux/wwan.h
21403
21404 X-POWERS AXP288 PMIC DRIVERS
21405 M:      Hans de Goede <hdegoede@redhat.com>
21406 S:      Maintained
21407 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21408 N:      axp288
21409
21410 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21411 M:      Chen-Yu Tsai <wens@csie.org>
21412 L:      linux-kernel@vger.kernel.org
21413 S:      Maintained
21414 N:      axp[128]
21415
21416 X.25 STACK
21417 M:      Martin Schiller <ms@dev.tdt.de>
21418 L:      linux-x25@vger.kernel.org
21419 S:      Maintained
21420 F:      Documentation/networking/lapb-module.rst
21421 F:      Documentation/networking/x25*
21422 F:      drivers/net/wan/hdlc_x25.c
21423 F:      drivers/net/wan/lapbether.c
21424 F:      include/*/lapb.h
21425 F:      include/net/x25*
21426 F:      include/uapi/linux/x25.h
21427 F:      net/lapb/
21428 F:      net/x25/
21429
21430 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21431 M:      Thomas Gleixner <tglx@linutronix.de>
21432 M:      Ingo Molnar <mingo@redhat.com>
21433 M:      Borislav Petkov <bp@alien8.de>
21434 M:      Dave Hansen <dave.hansen@linux.intel.com>
21435 M:      x86@kernel.org
21436 R:      "H. Peter Anvin" <hpa@zytor.com>
21437 L:      linux-kernel@vger.kernel.org
21438 S:      Maintained
21439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21440 F:      Documentation/devicetree/bindings/x86/
21441 F:      Documentation/x86/
21442 F:      arch/x86/
21443
21444 X86 ENTRY CODE
21445 M:      Andy Lutomirski <luto@kernel.org>
21446 L:      linux-kernel@vger.kernel.org
21447 S:      Maintained
21448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21449 F:      arch/x86/entry/
21450
21451 X86 MCE INFRASTRUCTURE
21452 M:      Tony Luck <tony.luck@intel.com>
21453 M:      Borislav Petkov <bp@alien8.de>
21454 L:      linux-edac@vger.kernel.org
21455 S:      Maintained
21456 F:      Documentation/ABI/testing/sysfs-mce
21457 F:      Documentation/x86/x86_64/machinecheck.rst
21458 F:      arch/x86/kernel/cpu/mce/*
21459
21460 X86 MICROCODE UPDATE SUPPORT
21461 M:      Borislav Petkov <bp@alien8.de>
21462 S:      Maintained
21463 F:      arch/x86/kernel/cpu/microcode/*
21464
21465 X86 MM
21466 M:      Dave Hansen <dave.hansen@linux.intel.com>
21467 M:      Andy Lutomirski <luto@kernel.org>
21468 M:      Peter Zijlstra <peterz@infradead.org>
21469 L:      linux-kernel@vger.kernel.org
21470 S:      Maintained
21471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21472 F:      arch/x86/mm/
21473
21474 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21475 M:      Hans de Goede <hdegoede@redhat.com>
21476 L:      platform-driver-x86@vger.kernel.org
21477 S:      Maintained
21478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21479 F:      drivers/platform/x86/x86-android-tablets.c
21480
21481 X86 PLATFORM DRIVERS
21482 M:      Hans de Goede <hdegoede@redhat.com>
21483 M:      Mark Gross <markgross@kernel.org>
21484 L:      platform-driver-x86@vger.kernel.org
21485 S:      Maintained
21486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21487 F:      drivers/platform/olpc/
21488 F:      drivers/platform/x86/
21489
21490 X86 PLATFORM DRIVERS - ARCH
21491 R:      Darren Hart <dvhart@infradead.org>
21492 R:      Andy Shevchenko <andy@infradead.org>
21493 L:      platform-driver-x86@vger.kernel.org
21494 L:      x86@kernel.org
21495 S:      Maintained
21496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21497 F:      arch/x86/platform
21498
21499 X86 PLATFORM UV HPE SUPERDOME FLEX
21500 M:      Steve Wahl <steve.wahl@hpe.com>
21501 R:      Mike Travis <mike.travis@hpe.com>
21502 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21503 R:      Russ Anderson <russ.anderson@hpe.com>
21504 S:      Supported
21505 F:      arch/x86/include/asm/uv/
21506 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21507 F:      arch/x86/platform/uv/
21508
21509 X86 STACK UNWINDING
21510 M:      Josh Poimboeuf <jpoimboe@kernel.org>
21511 M:      Peter Zijlstra <peterz@infradead.org>
21512 S:      Supported
21513 F:      arch/x86/include/asm/unwind*.h
21514 F:      arch/x86/kernel/dumpstack.c
21515 F:      arch/x86/kernel/stacktrace.c
21516 F:      arch/x86/kernel/unwind_*.c
21517
21518 X86 VDSO
21519 M:      Andy Lutomirski <luto@kernel.org>
21520 L:      linux-kernel@vger.kernel.org
21521 S:      Maintained
21522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21523 F:      arch/x86/entry/vdso/
21524
21525 XARRAY
21526 M:      Matthew Wilcox <willy@infradead.org>
21527 L:      linux-fsdevel@vger.kernel.org
21528 S:      Supported
21529 F:      Documentation/core-api/xarray.rst
21530 F:      include/linux/idr.h
21531 F:      include/linux/xarray.h
21532 F:      lib/idr.c
21533 F:      lib/xarray.c
21534 F:      tools/testing/radix-tree
21535
21536 XBOX DVD IR REMOTE
21537 M:      Benjamin Valentin <benpicco@googlemail.com>
21538 S:      Maintained
21539 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21540 F:      drivers/media/rc/xbox_remote.c
21541
21542 XC2028/3028 TUNER DRIVER
21543 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21544 L:      linux-media@vger.kernel.org
21545 S:      Maintained
21546 W:      https://linuxtv.org
21547 T:      git git://linuxtv.org/media_tree.git
21548 F:      drivers/media/tuners/xc2028.*
21549
21550 XDP (eXpress Data Path)
21551 M:      Alexei Starovoitov <ast@kernel.org>
21552 M:      Daniel Borkmann <daniel@iogearbox.net>
21553 M:      David S. Miller <davem@davemloft.net>
21554 M:      Jakub Kicinski <kuba@kernel.org>
21555 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21556 M:      John Fastabend <john.fastabend@gmail.com>
21557 L:      netdev@vger.kernel.org
21558 L:      bpf@vger.kernel.org
21559 S:      Supported
21560 F:      include/net/xdp.h
21561 F:      include/net/xdp_priv.h
21562 F:      include/trace/events/xdp.h
21563 F:      kernel/bpf/cpumap.c
21564 F:      kernel/bpf/devmap.c
21565 F:      net/core/xdp.c
21566 F:      samples/bpf/xdp*
21567 F:      tools/testing/selftests/bpf/*xdp*
21568 F:      tools/testing/selftests/bpf/*/*xdp*
21569 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21570 F:      drivers/net/ethernet/*/*/*xdp*
21571 K:      (?:\b|_)xdp(?:\b|_)
21572
21573 XDP SOCKETS (AF_XDP)
21574 M:      Björn Töpel <bjorn@kernel.org>
21575 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21576 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21577 L:      netdev@vger.kernel.org
21578 L:      bpf@vger.kernel.org
21579 S:      Maintained
21580 F:      Documentation/networking/af_xdp.rst
21581 F:      include/net/xdp_sock*
21582 F:      include/net/xsk_buff_pool.h
21583 F:      include/uapi/linux/if_xdp.h
21584 F:      include/uapi/linux/xdp_diag.h
21585 F:      include/net/netns/xdp.h
21586 F:      net/xdp/
21587 F:      samples/bpf/xdpsock*
21588 F:      tools/lib/bpf/xsk*
21589
21590 XEN BLOCK SUBSYSTEM
21591 M:      Roger Pau Monné <roger.pau@citrix.com>
21592 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21593 S:      Supported
21594 F:      drivers/block/xen*
21595 F:      drivers/block/xen-blkback/*
21596
21597 XEN HYPERVISOR ARM
21598 M:      Stefano Stabellini <sstabellini@kernel.org>
21599 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21600 S:      Maintained
21601 F:      arch/arm/include/asm/xen/
21602 F:      arch/arm/xen/
21603
21604 XEN HYPERVISOR ARM64
21605 M:      Stefano Stabellini <sstabellini@kernel.org>
21606 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21607 S:      Maintained
21608 F:      arch/arm64/include/asm/xen/
21609 F:      arch/arm64/xen/
21610
21611 XEN HYPERVISOR INTERFACE
21612 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21613 M:      Juergen Gross <jgross@suse.com>
21614 R:      Stefano Stabellini <sstabellini@kernel.org>
21615 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21616 S:      Supported
21617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21618 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21619 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21620 F:      arch/x86/include/asm/pvclock-abi.h
21621 F:      arch/x86/include/asm/xen/
21622 F:      arch/x86/platform/pvh/
21623 F:      arch/x86/xen/
21624 F:      drivers/*/xen-*front.c
21625 F:      drivers/xen/
21626 F:      include/uapi/xen/
21627 F:      include/xen/
21628
21629 XEN NETWORK BACKEND DRIVER
21630 M:      Wei Liu <wei.liu@kernel.org>
21631 M:      Paul Durrant <paul@xen.org>
21632 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21633 L:      netdev@vger.kernel.org
21634 S:      Supported
21635 F:      drivers/net/xen-netback/*
21636
21637 XEN PCI SUBSYSTEM
21638 M:      Juergen Gross <jgross@suse.com>
21639 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21640 S:      Supported
21641 F:      arch/x86/pci/*xen*
21642 F:      drivers/pci/*xen*
21643
21644 XEN PVSCSI DRIVERS
21645 M:      Juergen Gross <jgross@suse.com>
21646 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21647 L:      linux-scsi@vger.kernel.org
21648 S:      Supported
21649 F:      drivers/scsi/xen-scsifront.c
21650 F:      drivers/xen/xen-scsiback.c
21651 F:      include/xen/interface/io/vscsiif.h
21652
21653 XEN PVUSB DRIVER
21654 M:      Juergen Gross <jgross@suse.com>
21655 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21656 L:      linux-usb@vger.kernel.org
21657 S:      Supported
21658 F:      drivers/usb/host/xen*
21659 F:      include/xen/interface/io/usbif.h
21660
21661 XEN SOUND FRONTEND DRIVER
21662 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21663 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21664 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21665 S:      Supported
21666 F:      sound/xen/*
21667
21668 XEN SWIOTLB SUBSYSTEM
21669 M:      Juergen Gross <jgross@suse.com>
21670 M:      Stefano Stabellini <sstabellini@kernel.org>
21671 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21672 L:      iommu@lists.linux-foundation.org
21673 S:      Supported
21674 F:      arch/x86/xen/*swiotlb*
21675 F:      drivers/xen/*swiotlb*
21676
21677 XFS FILESYSTEM
21678 C:      irc://irc.oftc.net/xfs
21679 M:      Darrick J. Wong <djwong@kernel.org>
21680 L:      linux-xfs@vger.kernel.org
21681 S:      Supported
21682 W:      http://xfs.org/
21683 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21684 F:      Documentation/ABI/testing/sysfs-fs-xfs
21685 F:      Documentation/admin-guide/xfs.rst
21686 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21687 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21688 F:      fs/xfs/
21689 F:      include/uapi/linux/dqblk_xfs.h
21690 F:      include/uapi/linux/fsmap.h
21691
21692 XILINX AMS DRIVER
21693 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21694 L:      linux-iio@vger.kernel.org
21695 S:      Maintained
21696 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21697 F:      drivers/iio/adc/xilinx-ams.c
21698
21699 XILINX AXI ETHERNET DRIVER
21700 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21701 S:      Maintained
21702 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21703
21704 XILINX CAN DRIVER
21705 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21706 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21707 L:      linux-can@vger.kernel.org
21708 S:      Maintained
21709 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
21710 F:      drivers/net/can/xilinx_can.c
21711
21712 XILINX GPIO DRIVER
21713 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21714 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21715 R:      Michal Simek <michal.simek@xilinx.com>
21716 S:      Maintained
21717 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21718 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21719 F:      drivers/gpio/gpio-xilinx.c
21720 F:      drivers/gpio/gpio-zynq.c
21721
21722 XILINX SD-FEC IP CORES
21723 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21724 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21725 S:      Maintained
21726 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21727 F:      Documentation/misc-devices/xilinx_sdfec.rst
21728 F:      drivers/misc/Kconfig
21729 F:      drivers/misc/Makefile
21730 F:      drivers/misc/xilinx_sdfec.c
21731 F:      include/uapi/misc/xilinx_sdfec.h
21732
21733 XILINX UARTLITE SERIAL DRIVER
21734 M:      Peter Korsgaard <jacmet@sunsite.dk>
21735 L:      linux-serial@vger.kernel.org
21736 S:      Maintained
21737 F:      drivers/tty/serial/uartlite.c
21738
21739 XILINX VIDEO IP CORES
21740 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21741 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21742 L:      linux-media@vger.kernel.org
21743 S:      Supported
21744 T:      git git://linuxtv.org/media_tree.git
21745 F:      Documentation/devicetree/bindings/media/xilinx/
21746 F:      drivers/media/platform/xilinx/
21747 F:      include/uapi/linux/xilinx-v4l2-controls.h
21748
21749 XILINX ZYNQMP DPDMA DRIVER
21750 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21751 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21752 L:      dmaengine@vger.kernel.org
21753 S:      Supported
21754 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21755 F:      drivers/dma/xilinx/xilinx_dpdma.c
21756 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21757
21758 XILINX ZYNQMP PSGTR PHY DRIVER
21759 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21760 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21761 L:      linux-kernel@vger.kernel.org
21762 S:      Supported
21763 T:      git https://github.com/Xilinx/linux-xlnx.git
21764 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21765 F:      drivers/phy/xilinx/phy-zynqmp.c
21766
21767 XILINX ZYNQMP SHA3 DRIVER
21768 M:      Harsha <harsha.harsha@xilinx.com>
21769 S:      Maintained
21770 F:      drivers/crypto/xilinx/zynqmp-sha.c
21771
21772 XILINX EVENT MANAGEMENT DRIVER
21773 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21774 S:      Maintained
21775 F:      drivers/soc/xilinx/xlnx_event_manager.c
21776 F:      include/linux/firmware/xlnx-event-manager.h
21777
21778 XILLYBUS DRIVER
21779 M:      Eli Billauer <eli.billauer@gmail.com>
21780 L:      linux-kernel@vger.kernel.org
21781 S:      Supported
21782 F:      drivers/char/xillybus/
21783
21784 XLP9XX I2C DRIVER
21785 M:      George Cherian <gcherian@marvell.com>
21786 L:      linux-i2c@vger.kernel.org
21787 S:      Supported
21788 W:      http://www.marvell.com
21789 F:      drivers/i2c/busses/i2c-xlp9xx.c
21790
21791 XRA1403 GPIO EXPANDER
21792 M:      Nandor Han <nandor.han@ge.com>
21793 M:      Semi Malinen <semi.malinen@ge.com>
21794 L:      linux-gpio@vger.kernel.org
21795 S:      Maintained
21796 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21797 F:      drivers/gpio/gpio-xra1403.c
21798
21799 XTENSA XTFPGA PLATFORM SUPPORT
21800 M:      Max Filippov <jcmvbkbc@gmail.com>
21801 L:      linux-xtensa@linux-xtensa.org
21802 S:      Maintained
21803 F:      drivers/spi/spi-xtensa-xtfpga.c
21804 F:      sound/soc/xtensa/xtfpga-i2s.c
21805
21806 YAM DRIVER FOR AX.25
21807 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21808 L:      linux-hams@vger.kernel.org
21809 S:      Maintained
21810 F:      drivers/net/hamradio/yam*
21811 F:      include/linux/yam.h
21812
21813 YAMA SECURITY MODULE
21814 M:      Kees Cook <keescook@chromium.org>
21815 S:      Supported
21816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21817 F:      Documentation/admin-guide/LSM/Yama.rst
21818 F:      security/yama/
21819
21820 YEALINK PHONE DRIVER
21821 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21822 L:      usbb2k-api-dev@nongnu.org
21823 S:      Maintained
21824 F:      Documentation/input/devices/yealink.rst
21825 F:      drivers/input/misc/yealink.*
21826
21827 Z8530 DRIVER FOR AX.25
21828 M:      Joerg Reuter <jreuter@yaina.de>
21829 L:      linux-hams@vger.kernel.org
21830 S:      Maintained
21831 W:      http://yaina.de/jreuter/
21832 W:      http://www.qsl.net/dl1bke/
21833 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21834 F:      drivers/net/hamradio/*scc.c
21835 F:      drivers/net/hamradio/z8530.h
21836
21837 ZBUD COMPRESSED PAGE ALLOCATOR
21838 M:      Seth Jennings <sjenning@redhat.com>
21839 M:      Dan Streetman <ddstreet@ieee.org>
21840 L:      linux-mm@kvack.org
21841 S:      Maintained
21842 F:      mm/zbud.c
21843
21844 ZD1211RW WIRELESS DRIVER
21845 M:      Ulrich Kunitz <kune@deine-taler.de>
21846 L:      linux-wireless@vger.kernel.org
21847 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
21848 S:      Maintained
21849 W:      http://zd1211.ath.cx/wiki/DriverRewrite
21850 F:      drivers/net/wireless/zydas/zd1211rw/
21851
21852 ZD1301 MEDIA DRIVER
21853 M:      Antti Palosaari <crope@iki.fi>
21854 L:      linux-media@vger.kernel.org
21855 S:      Maintained
21856 W:      https://linuxtv.org/
21857 W:      http://palosaari.fi/linux/
21858 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21859 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21860
21861 ZD1301_DEMOD MEDIA DRIVER
21862 M:      Antti Palosaari <crope@iki.fi>
21863 L:      linux-media@vger.kernel.org
21864 S:      Maintained
21865 W:      https://linuxtv.org/
21866 W:      http://palosaari.fi/linux/
21867 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21868 F:      drivers/media/dvb-frontends/zd1301_demod*
21869
21870 ZHAOXIN PROCESSOR SUPPORT
21871 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21872 L:      linux-kernel@vger.kernel.org
21873 S:      Maintained
21874 F:      arch/x86/kernel/cpu/zhaoxin.c
21875
21876 ZONEFS FILESYSTEM
21877 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
21878 M:      Naohiro Aota <naohiro.aota@wdc.com>
21879 R:      Johannes Thumshirn <jth@kernel.org>
21880 L:      linux-fsdevel@vger.kernel.org
21881 S:      Maintained
21882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21883 F:      Documentation/filesystems/zonefs.rst
21884 F:      fs/zonefs/
21885
21886 ZPOOL COMPRESSED PAGE STORAGE API
21887 M:      Dan Streetman <ddstreet@ieee.org>
21888 L:      linux-mm@kvack.org
21889 S:      Maintained
21890 F:      include/linux/zpool.h
21891 F:      mm/zpool.c
21892
21893 ZR36067 VIDEO FOR LINUX DRIVER
21894 M:      Corentin Labbe <clabbe@baylibre.com>
21895 L:      mjpeg-users@lists.sourceforge.net
21896 L:      linux-media@vger.kernel.org
21897 S:      Maintained
21898 W:      http://mjpeg.sourceforge.net/driver-zoran/
21899 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21900 F:      Documentation/driver-api/media/drivers/zoran.rst
21901 F:      drivers/staging/media/zoran/
21902
21903 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21904 M:      Minchan Kim <minchan@kernel.org>
21905 M:      Nitin Gupta <ngupta@vflare.org>
21906 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21907 L:      linux-kernel@vger.kernel.org
21908 S:      Maintained
21909 F:      Documentation/admin-guide/blockdev/zram.rst
21910 F:      drivers/block/zram/
21911
21912 ZS DECSTATION Z85C30 SERIAL DRIVER
21913 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21914 S:      Maintained
21915 F:      drivers/tty/serial/zs.*
21916
21917 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21918 M:      Minchan Kim <minchan@kernel.org>
21919 M:      Nitin Gupta <ngupta@vflare.org>
21920 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21921 L:      linux-mm@kvack.org
21922 S:      Maintained
21923 F:      Documentation/vm/zsmalloc.rst
21924 F:      include/linux/zsmalloc.h
21925 F:      mm/zsmalloc.c
21926
21927 ZSTD
21928 M:      Nick Terrell <terrelln@fb.com>
21929 S:      Maintained
21930 B:      https://github.com/facebook/zstd/issues
21931 T:      git git://github.com/terrelln/linux.git
21932 F:      include/linux/zstd*
21933 F:      lib/zstd/
21934 F:      lib/decompress_unzstd.c
21935 F:      crypto/zstd.c
21936 N:      zstd
21937 K:      zstd
21938
21939 ZSWAP COMPRESSED SWAP CACHING
21940 M:      Seth Jennings <sjenning@redhat.com>
21941 M:      Dan Streetman <ddstreet@ieee.org>
21942 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21943 L:      linux-mm@kvack.org
21944 S:      Maintained
21945 F:      mm/zswap.c
21946
21947 THE REST
21948 M:      Linus Torvalds <torvalds@linux-foundation.org>
21949 L:      linux-kernel@vger.kernel.org
21950 S:      Buried alive in reporters
21951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21952 F:      *
21953 F:      */