habanalabs: use NULL for eventfd
[platform/kernel/linux-starfive.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:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1048 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1049 L:      linux-input@vger.kernel.org
1050 S:      Maintained
1051 F:      Documentation/hid/amd-sfh*
1052 F:      drivers/hid/amd-sfh-hid/
1053
1054 AMPHION VPU CODEC V4L2 DRIVER
1055 M:      Ming Qian <ming.qian@nxp.com>
1056 M:      Shijie Qin <shijie.qin@nxp.com>
1057 M:      Zhou Peng <eagle.zhou@nxp.com>
1058 L:      linux-media@vger.kernel.org
1059 S:      Maintained
1060 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1061 F:      drivers/media/platform/amphion/
1062
1063 AMS AS73211 DRIVER
1064 M:      Christian Eggers <ceggers@arri.de>
1065 L:      linux-iio@vger.kernel.org
1066 S:      Maintained
1067 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1068 F:      drivers/iio/light/as73211.c
1069
1070 AMT (Automatic Multicast Tunneling)
1071 M:      Taehee Yoo <ap420073@gmail.com>
1072 L:      netdev@vger.kernel.org
1073 S:      Maintained
1074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1076 F:      drivers/net/amt.c
1077
1078 ANALOG DEVICES INC AD7192 DRIVER
1079 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1080 L:      linux-iio@vger.kernel.org
1081 S:      Supported
1082 W:      https://ez.analog.com/linux-software-drivers
1083 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1084 F:      drivers/iio/adc/ad7192.c
1085
1086 ANALOG DEVICES INC AD7292 DRIVER
1087 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1088 L:      linux-iio@vger.kernel.org
1089 S:      Supported
1090 W:      https://ez.analog.com/linux-software-drivers
1091 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1092 F:      drivers/iio/adc/ad7292.c
1093
1094 ANALOG DEVICES INC AD3552R DRIVER
1095 M:      Nuno Sá <nuno.sa@analog.com>
1096 L:      linux-iio@vger.kernel.org
1097 S:      Supported
1098 W:      https://ez.analog.com/linux-software-drivers
1099 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1100 F:      drivers/iio/dac/ad3552r.c
1101
1102 ANALOG DEVICES INC AD7293 DRIVER
1103 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1104 L:      linux-iio@vger.kernel.org
1105 S:      Supported
1106 W:      https://ez.analog.com/linux-software-drivers
1107 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1108 F:      drivers/iio/dac/ad7293.c
1109
1110 ANALOG DEVICES INC AD7768-1 DRIVER
1111 M:      Michael Hennerich <Michael.Hennerich@analog.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,ad7768-1.yaml
1116 F:      drivers/iio/adc/ad7768-1.c
1117
1118 ANALOG DEVICES INC AD7780 DRIVER
1119 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1120 M:      Renato Lui Geh <renatogeh@gmail.com>
1121 L:      linux-iio@vger.kernel.org
1122 S:      Supported
1123 W:      https://ez.analog.com/linux-software-drivers
1124 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1125 F:      drivers/iio/adc/ad7780.c
1126
1127 ANALOG DEVICES INC AD74413R DRIVER
1128 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1129 L:      linux-iio@vger.kernel.org
1130 S:      Supported
1131 W:      http://ez.analog.com/community/linux-device-drivers
1132 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1133 F:      drivers/iio/addac/ad74413r.c
1134 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1135
1136 ANALOG DEVICES INC AD9389B DRIVER
1137 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1138 L:      linux-media@vger.kernel.org
1139 S:      Maintained
1140 F:      drivers/media/i2c/ad9389b*
1141
1142 ANALOG DEVICES INC ADA4250 DRIVER
1143 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1144 L:      linux-iio@vger.kernel.org
1145 S:      Supported
1146 W:      https://ez.analog.com/linux-software-drivers
1147 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1148 F:      drivers/iio/amplifiers/ada4250.c
1149
1150 ANALOG DEVICES INC ADGS1408 DRIVER
1151 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1152 S:      Supported
1153 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1154 F:      drivers/mux/adgs1408.c
1155
1156 ANALOG DEVICES INC ADIN DRIVER
1157 M:      Michael Hennerich <michael.hennerich@analog.com>
1158 L:      netdev@vger.kernel.org
1159 S:      Supported
1160 W:      https://ez.analog.com/linux-software-drivers
1161 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1162 F:      drivers/net/phy/adin.c
1163
1164 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1165 M:      Nuno Sa <nuno.sa@analog.com>
1166 L:      linux-iio@vger.kernel.org
1167 S:      Supported
1168 F:      drivers/iio/imu/adis.c
1169 F:      drivers/iio/imu/adis_buffer.c
1170 F:      drivers/iio/imu/adis_trigger.c
1171 F:      include/linux/iio/imu/adis.h
1172
1173 ANALOG DEVICES INC ADIS16460 DRIVER
1174 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1175 L:      linux-iio@vger.kernel.org
1176 S:      Supported
1177 W:      https://ez.analog.com/linux-software-drivers
1178 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1179 F:      drivers/iio/imu/adis16460.c
1180
1181 ANALOG DEVICES INC ADIS16475 DRIVER
1182 M:      Nuno Sa <nuno.sa@analog.com>
1183 L:      linux-iio@vger.kernel.org
1184 W:      https://ez.analog.com/linux-software-drivers
1185 S:      Supported
1186 F:      drivers/iio/imu/adis16475.c
1187 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1188
1189 ANALOG DEVICES INC ADM1177 DRIVER
1190 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1191 L:      linux-hwmon@vger.kernel.org
1192 S:      Supported
1193 W:      https://ez.analog.com/linux-software-drivers
1194 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1195 F:      drivers/hwmon/adm1177.c
1196
1197 ANALOG DEVICES INC ADMV1013 DRIVER
1198 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1199 L:      linux-iio@vger.kernel.org
1200 S:      Supported
1201 W:      https://ez.analog.com/linux-software-drivers
1202 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1203 F:      drivers/iio/frequency/admv1013.c
1204
1205 ANALOG DEVICES INC ADMV8818 DRIVER
1206 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1207 L:      linux-iio@vger.kernel.org
1208 S:      Supported
1209 W:      https://ez.analog.com/linux-software-drivers
1210 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1211 F:      drivers/iio/filter/admv8818.c
1212
1213 ANALOG DEVICES INC ADMV1014 DRIVER
1214 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1215 L:      linux-iio@vger.kernel.org
1216 S:      Supported
1217 W:      https://ez.analog.com/linux-software-drivers
1218 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1219 F:      drivers/iio/frequency/admv1014.c
1220
1221 ANALOG DEVICES INC ADP5061 DRIVER
1222 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1223 L:      linux-pm@vger.kernel.org
1224 S:      Supported
1225 W:      https://ez.analog.com/linux-software-drivers
1226 F:      drivers/power/supply/adp5061.c
1227
1228 ANALOG DEVICES INC ADRF6780 DRIVER
1229 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1230 L:      linux-iio@vger.kernel.org
1231 S:      Supported
1232 W:      https://ez.analog.com/linux-software-drivers
1233 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1234 F:      drivers/iio/frequency/adrf6780.c
1235
1236 ANALOG DEVICES INC ADV7180 DRIVER
1237 M:      Lars-Peter Clausen <lars@metafoo.de>
1238 L:      linux-media@vger.kernel.org
1239 S:      Supported
1240 W:      https://ez.analog.com/linux-software-drivers
1241 F:      drivers/media/i2c/adv7180.c
1242 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1243
1244 ANALOG DEVICES INC ADV748X DRIVER
1245 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1246 L:      linux-media@vger.kernel.org
1247 S:      Maintained
1248 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1249 F:      drivers/media/i2c/adv748x/*
1250
1251 ANALOG DEVICES INC ADV7511 DRIVER
1252 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1253 L:      linux-media@vger.kernel.org
1254 S:      Maintained
1255 F:      drivers/media/i2c/adv7511*
1256
1257 ANALOG DEVICES INC ADV7604 DRIVER
1258 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1259 L:      linux-media@vger.kernel.org
1260 S:      Maintained
1261 F:      drivers/media/i2c/adv7604*
1262 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1263
1264 ANALOG DEVICES INC ADV7842 DRIVER
1265 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1266 L:      linux-media@vger.kernel.org
1267 S:      Maintained
1268 F:      drivers/media/i2c/adv7842*
1269
1270 ANALOG DEVICES INC ADXRS290 DRIVER
1271 M:      Nishant Malpani <nish.malpani25@gmail.com>
1272 L:      linux-iio@vger.kernel.org
1273 S:      Supported
1274 F:      drivers/iio/gyro/adxrs290.c
1275 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1276
1277 ANALOG DEVICES INC ASOC CODEC DRIVERS
1278 M:      Lars-Peter Clausen <lars@metafoo.de>
1279 M:      Nuno Sá <nuno.sa@analog.com>
1280 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1281 S:      Supported
1282 W:      http://wiki.analog.com/
1283 W:      https://ez.analog.com/linux-software-drivers
1284 F:      sound/soc/codecs/ad1*
1285 F:      sound/soc/codecs/ad7*
1286 F:      sound/soc/codecs/adau*
1287 F:      sound/soc/codecs/adav*
1288 F:      sound/soc/codecs/sigmadsp.*
1289 F:      sound/soc/codecs/ssm*
1290
1291 ANALOG DEVICES INC DMA DRIVERS
1292 M:      Lars-Peter Clausen <lars@metafoo.de>
1293 S:      Supported
1294 W:      https://ez.analog.com/linux-software-drivers
1295 F:      drivers/dma/dma-axi-dmac.c
1296
1297 ANALOG DEVICES INC IIO DRIVERS
1298 M:      Lars-Peter Clausen <lars@metafoo.de>
1299 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1300 S:      Supported
1301 W:      http://wiki.analog.com/
1302 W:      https://ez.analog.com/linux-software-drivers
1303 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1304 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1305 F:      Documentation/devicetree/bindings/iio/*/adi,*
1306 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1307 F:      drivers/iio/*/ad*
1308 F:      drivers/iio/adc/ltc249*
1309 F:      drivers/iio/amplifiers/hmc425a.c
1310 F:      drivers/staging/iio/*/ad*
1311 X:      drivers/iio/*/adjd*
1312
1313 ANALOGBITS PLL LIBRARIES
1314 M:      Paul Walmsley <paul.walmsley@sifive.com>
1315 S:      Supported
1316 F:      drivers/clk/analogbits/*
1317 F:      include/linux/clk/analogbits*
1318
1319 ANDROID CONFIG FRAGMENTS
1320 M:      Rob Herring <robh@kernel.org>
1321 S:      Supported
1322 F:      kernel/configs/android*
1323
1324 ANDROID DRIVERS
1325 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1326 M:      Arve Hjønnevåg <arve@android.com>
1327 M:      Todd Kjos <tkjos@android.com>
1328 M:      Martijn Coenen <maco@android.com>
1329 M:      Joel Fernandes <joel@joelfernandes.org>
1330 M:      Christian Brauner <christian@brauner.io>
1331 M:      Hridya Valsaraju <hridya@google.com>
1332 M:      Suren Baghdasaryan <surenb@google.com>
1333 L:      linux-kernel@vger.kernel.org
1334 S:      Supported
1335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1336 F:      drivers/android/
1337
1338 ANDROID GOLDFISH PIC DRIVER
1339 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1340 S:      Supported
1341 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1342 F:      drivers/irqchip/irq-goldfish-pic.c
1343
1344 ANDROID GOLDFISH RTC DRIVER
1345 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1346 S:      Supported
1347 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1348 F:      drivers/rtc/rtc-goldfish.c
1349
1350 AOA (Apple Onboard Audio) ALSA DRIVER
1351 M:      Johannes Berg <johannes@sipsolutions.net>
1352 L:      linuxppc-dev@lists.ozlabs.org
1353 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1354 S:      Maintained
1355 F:      sound/aoa/
1356
1357 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1358 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1359 L:      linux-iio@vger.kernel.org
1360 S:      Maintained
1361 F:      drivers/iio/adc/stx104.c
1362
1363 APM DRIVER
1364 M:      Jiri Kosina <jikos@kernel.org>
1365 S:      Odd fixes
1366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1367 F:      arch/x86/kernel/apm_32.c
1368 F:      drivers/char/apm-emulation.c
1369 F:      include/linux/apm_bios.h
1370 F:      include/uapi/linux/apm_bios.h
1371
1372 APPARMOR SECURITY MODULE
1373 M:      John Johansen <john.johansen@canonical.com>
1374 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1375 S:      Supported
1376 W:      wiki.apparmor.net
1377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1378 F:      Documentation/admin-guide/LSM/apparmor.rst
1379 F:      security/apparmor/
1380
1381 APPLE BCM5974 MULTITOUCH DRIVER
1382 M:      Henrik Rydberg <rydberg@bitmath.org>
1383 L:      linux-input@vger.kernel.org
1384 S:      Odd fixes
1385 F:      drivers/input/mouse/bcm5974.c
1386
1387 APPLE DART IOMMU DRIVER
1388 M:      Sven Peter <sven@svenpeter.dev>
1389 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1390 L:      iommu@lists.linux-foundation.org
1391 S:      Maintained
1392 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1393 F:      drivers/iommu/apple-dart.c
1394
1395 APPLE PCIE CONTROLLER DRIVER
1396 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1397 M:      Marc Zyngier <maz@kernel.org>
1398 L:      linux-pci@vger.kernel.org
1399 S:      Maintained
1400 F:      drivers/pci/controller/pcie-apple.c
1401
1402 APPLE SMC DRIVER
1403 M:      Henrik Rydberg <rydberg@bitmath.org>
1404 L:      linux-hwmon@vger.kernel.org
1405 S:      Odd fixes
1406 F:      drivers/hwmon/applesmc.c
1407
1408 APPLETALK NETWORK LAYER
1409 L:      netdev@vger.kernel.org
1410 S:      Odd fixes
1411 F:      drivers/net/appletalk/
1412 F:      include/linux/atalk.h
1413 F:      include/uapi/linux/atalk.h
1414 F:      net/appletalk/
1415
1416 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1417 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1418 S:      Supported
1419 F:      arch/arm64/boot/dts/apm/
1420
1421 APPLIED MICRO (APM) X-GENE SOC EDAC
1422 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1423 S:      Supported
1424 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1425 F:      drivers/edac/xgene_edac.c
1426
1427 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1428 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1429 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1430 S:      Supported
1431 F:      drivers/net/ethernet/apm/xgene-v2/
1432
1433 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1434 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1435 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1436 M:      Quan Nguyen <quan@os.amperecomputing.com>
1437 S:      Supported
1438 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1439 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1440 F:      drivers/net/ethernet/apm/xgene/
1441 F:      drivers/net/mdio/mdio-xgene.c
1442
1443 APPLIED MICRO (APM) X-GENE SOC PMU
1444 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1445 S:      Supported
1446 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1447 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1448 F:      drivers/perf/xgene_pmu.c
1449
1450 APTINA CAMERA SENSOR PLL
1451 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1452 L:      linux-media@vger.kernel.org
1453 S:      Maintained
1454 F:      drivers/media/i2c/aptina-pll.*
1455
1456 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1457 M:      Aleksa Savic <savicaleksa83@gmail.com>
1458 L:      linux-hwmon@vger.kernel.org
1459 S:      Maintained
1460 F:      Documentation/hwmon/aquacomputer_d5next.rst
1461 F:      drivers/hwmon/aquacomputer_d5next.c
1462
1463 AQUANTIA ETHERNET DRIVER (atlantic)
1464 M:      Igor Russkikh <irusskikh@marvell.com>
1465 L:      netdev@vger.kernel.org
1466 S:      Supported
1467 W:      https://www.marvell.com/
1468 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1469 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1470 F:      drivers/net/ethernet/aquantia/atlantic/
1471
1472 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1473 M:      Egor Pomozov <epomozov@marvell.com>
1474 L:      netdev@vger.kernel.org
1475 S:      Supported
1476 W:      http://www.aquantia.com
1477 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1478
1479 ARASAN NAND CONTROLLER DRIVER
1480 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1481 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1482 L:      linux-mtd@lists.infradead.org
1483 S:      Maintained
1484 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1485 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1486
1487 ARC FRAMEBUFFER DRIVER
1488 M:      Jaya Kumar <jayalk@intworks.biz>
1489 S:      Maintained
1490 F:      drivers/video/fbdev/arcfb.c
1491 F:      drivers/video/fbdev/core/fb_defio.c
1492
1493 ARC PGU DRM DRIVER
1494 M:      Alexey Brodkin <abrodkin@synopsys.com>
1495 S:      Supported
1496 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1497 F:      drivers/gpu/drm/tiny/arcpgu.c
1498
1499 ARCNET NETWORK LAYER
1500 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1501 L:      netdev@vger.kernel.org
1502 S:      Maintained
1503 F:      drivers/net/arcnet/
1504 F:      include/uapi/linux/if_arcnet.h
1505
1506 ARM ARCHITECTED TIMER DRIVER
1507 M:      Mark Rutland <mark.rutland@arm.com>
1508 M:      Marc Zyngier <maz@kernel.org>
1509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 S:      Maintained
1511 F:      arch/arm/include/asm/arch_timer.h
1512 F:      arch/arm64/include/asm/arch_timer.h
1513 F:      drivers/clocksource/arm_arch_timer.c
1514
1515 ARM HDLCD DRM DRIVER
1516 M:      Liviu Dudau <liviu.dudau@arm.com>
1517 S:      Supported
1518 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1519 F:      drivers/gpu/drm/arm/hdlcd_*
1520
1521 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1522 M:      Linus Walleij <linus.walleij@linaro.org>
1523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1524 S:      Maintained
1525 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1526 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1527 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1528 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1529 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1530 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1531 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1532 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1533 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1534 F:      arch/arm/boot/dts/arm-realview-*
1535 F:      arch/arm/boot/dts/integrator*
1536 F:      arch/arm/boot/dts/versatile*
1537 F:      arch/arm/mach-integrator/
1538 F:      arch/arm/mach-realview/
1539 F:      arch/arm/mach-versatile/
1540 F:      arch/arm/plat-versatile/
1541 F:      drivers/bus/arm-integrator-lm.c
1542 F:      drivers/clk/versatile/
1543 F:      drivers/i2c/busses/i2c-versatile.c
1544 F:      drivers/irqchip/irq-versatile-fpga.c
1545 F:      drivers/mtd/maps/physmap-versatile.*
1546 F:      drivers/power/reset/arm-versatile-reboot.c
1547 F:      drivers/soc/versatile/
1548
1549 ARM KOMEDA DRM-KMS DRIVER
1550 M:      James (Qian) Wang <james.qian.wang@arm.com>
1551 M:      Liviu Dudau <liviu.dudau@arm.com>
1552 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1553 L:      Mali DP Maintainers <malidp@foss.arm.com>
1554 S:      Supported
1555 T:      git git://anongit.freedesktop.org/drm/drm-misc
1556 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1557 F:      Documentation/gpu/komeda-kms.rst
1558 F:      drivers/gpu/drm/arm/display/include/
1559 F:      drivers/gpu/drm/arm/display/komeda/
1560
1561 ARM MALI PANFROST DRM DRIVER
1562 M:      Rob Herring <robh@kernel.org>
1563 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1564 R:      Steven Price <steven.price@arm.com>
1565 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1566 L:      dri-devel@lists.freedesktop.org
1567 S:      Supported
1568 T:      git git://anongit.freedesktop.org/drm/drm-misc
1569 F:      drivers/gpu/drm/panfrost/
1570 F:      include/uapi/drm/panfrost_drm.h
1571
1572 ARM MALI-DP DRM DRIVER
1573 M:      Liviu Dudau <liviu.dudau@arm.com>
1574 M:      Brian Starkey <brian.starkey@arm.com>
1575 L:      Mali DP Maintainers <malidp@foss.arm.com>
1576 S:      Supported
1577 T:      git git://anongit.freedesktop.org/drm/drm-misc
1578 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1579 F:      Documentation/gpu/afbc.rst
1580 F:      drivers/gpu/drm/arm/
1581
1582 ARM MFM AND FLOPPY DRIVERS
1583 M:      Ian Molton <spyro@f2s.com>
1584 S:      Maintained
1585 F:      arch/arm/include/asm/floppy.h
1586 F:      arch/arm/mach-rpc/floppydma.S
1587
1588 ARM PMU PROFILING AND DEBUGGING
1589 M:      Will Deacon <will@kernel.org>
1590 M:      Mark Rutland <mark.rutland@arm.com>
1591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1592 S:      Maintained
1593 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1594 F:      Documentation/devicetree/bindings/perf/
1595 F:      arch/arm*/include/asm/hw_breakpoint.h
1596 F:      arch/arm*/include/asm/perf_event.h
1597 F:      arch/arm*/kernel/hw_breakpoint.c
1598 F:      arch/arm*/kernel/perf_*
1599 F:      drivers/perf/
1600 F:      include/linux/perf/arm_pmu.h
1601
1602 ARM PORT
1603 M:      Russell King <linux@armlinux.org.uk>
1604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1605 S:      Odd Fixes
1606 W:      http://www.armlinux.org.uk/
1607 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1608 F:      arch/arm/
1609 X:      arch/arm/boot/dts/
1610
1611 ARM PRIMECELL AACI PL041 DRIVER
1612 M:      Russell King <linux@armlinux.org.uk>
1613 S:      Odd Fixes
1614 F:      sound/arm/aaci.*
1615
1616 ARM PRIMECELL BUS SUPPORT
1617 M:      Russell King <linux@armlinux.org.uk>
1618 S:      Odd Fixes
1619 F:      drivers/amba/
1620 F:      include/linux/amba/bus.h
1621
1622 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1623 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1624 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1625 L:      linux-mtd@lists.infradead.org
1626 S:      Maintained
1627 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1628 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1629
1630 ARM PRIMECELL PL35X SMC DRIVER
1631 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1632 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1634 S:      Maintained
1635 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1636 F:      drivers/memory/pl353-smc.c
1637
1638 ARM PRIMECELL CLCD PL110 DRIVER
1639 M:      Russell King <linux@armlinux.org.uk>
1640 S:      Odd Fixes
1641 F:      drivers/video/fbdev/amba-clcd.*
1642
1643 ARM PRIMECELL KMI PL050 DRIVER
1644 M:      Russell King <linux@armlinux.org.uk>
1645 S:      Odd Fixes
1646 F:      drivers/input/serio/ambakmi.*
1647 F:      include/linux/amba/kmi.h
1648
1649 ARM PRIMECELL MMCI PL180/1 DRIVER
1650 M:      Russell King <linux@armlinux.org.uk>
1651 S:      Odd Fixes
1652 F:      drivers/mmc/host/mmci.*
1653 F:      include/linux/amba/mmci.h
1654
1655 ARM PRIMECELL SSP PL022 SPI DRIVER
1656 M:      Linus Walleij <linus.walleij@linaro.org>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 S:      Maintained
1659 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1660 F:      drivers/spi/spi-pl022.c
1661
1662 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1663 M:      Russell King <linux@armlinux.org.uk>
1664 S:      Odd Fixes
1665 F:      drivers/tty/serial/amba-pl01*.c
1666 F:      include/linux/amba/serial.h
1667
1668 ARM PRIMECELL VIC PL190/PL192 DRIVER
1669 M:      Linus Walleij <linus.walleij@linaro.org>
1670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1671 S:      Maintained
1672 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1673 F:      drivers/irqchip/irq-vic.c
1674
1675 ARM SMC WATCHDOG DRIVER
1676 M:      Julius Werner <jwerner@chromium.org>
1677 R:      Evan Benn <evanbenn@chromium.org>
1678 S:      Maintained
1679 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1680 F:      drivers/watchdog/arm_smc_wdt.c
1681
1682 ARM SMMU DRIVERS
1683 M:      Will Deacon <will@kernel.org>
1684 R:      Robin Murphy <robin.murphy@arm.com>
1685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1686 S:      Maintained
1687 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1688 F:      drivers/iommu/arm/
1689 F:      drivers/iommu/io-pgtable-arm*
1690
1691 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1692 M:      Arnd Bergmann <arnd@arndb.de>
1693 M:      Olof Johansson <olof@lixom.net>
1694 M:      soc@kernel.org
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/boot/dts/Makefile
1700 F:      arch/arm64/boot/dts/Makefile
1701
1702 ARM SUB-ARCHITECTURES
1703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 S:      Maintained
1705 C:      irc://irc.libera.chat/armlinux
1706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1707 F:      arch/arm/mach-*/
1708 F:      arch/arm/plat-*/
1709
1710 ARM/ACTIONS SEMI ARCHITECTURE
1711 M:      Andreas Färber <afaerber@suse.de>
1712 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1715 S:      Maintained
1716 F:      Documentation/devicetree/bindings/arm/actions.yaml
1717 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1718 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1719 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1720 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1721 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1722 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1723 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1724 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1725 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1726 F:      arch/arm/boot/dts/owl-*
1727 F:      arch/arm/mach-actions/
1728 F:      arch/arm64/boot/dts/actions/
1729 F:      drivers/clk/actions/
1730 F:      drivers/clocksource/timer-owl*
1731 F:      drivers/dma/owl-dma.c
1732 F:      drivers/i2c/busses/i2c-owl.c
1733 F:      drivers/irqchip/irq-owl-sirq.c
1734 F:      drivers/mmc/host/owl-mmc.c
1735 F:      drivers/net/ethernet/actions/
1736 F:      drivers/pinctrl/actions/*
1737 F:      drivers/soc/actions/
1738 F:      include/dt-bindings/power/owl-*
1739 F:      include/dt-bindings/reset/actions,*
1740 F:      include/linux/soc/actions/
1741 N:      owl
1742
1743 ARM/ADS SPHERE MACHINE SUPPORT
1744 M:      Lennert Buytenhek <kernel@wantstofly.org>
1745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1746 S:      Maintained
1747
1748 ARM/AFEB9260 MACHINE SUPPORT
1749 M:      Sergey Lapin <slapin@ossfans.org>
1750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1751 S:      Maintained
1752
1753 ARM/AJECO 1ARM MACHINE SUPPORT
1754 M:      Lennert Buytenhek <kernel@wantstofly.org>
1755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1756 S:      Maintained
1757
1758 ARM/Allwinner SoC Clock Support
1759 M:      Emilio López <emilio@elopez.com.ar>
1760 S:      Maintained
1761 F:      drivers/clk/sunxi/
1762
1763 ARM/Allwinner sunXi SoC support
1764 M:      Chen-Yu Tsai <wens@csie.org>
1765 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1766 M:      Samuel Holland <samuel@sholland.org>
1767 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1768 S:      Maintained
1769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1770 L:      linux-sunxi@lists.linux.dev
1771 F:      arch/arm/mach-sunxi/
1772 F:      arch/arm64/boot/dts/allwinner/
1773 F:      drivers/clk/sunxi-ng/
1774 F:      drivers/pinctrl/sunxi/
1775 F:      drivers/soc/sunxi/
1776 N:      allwinner
1777 N:      sun[x456789]i
1778 N:      sun50i
1779
1780 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1781 M:      Neil Armstrong <narmstrong@baylibre.com>
1782 M:      Jerome Brunet <jbrunet@baylibre.com>
1783 L:      linux-amlogic@lists.infradead.org
1784 S:      Maintained
1785 F:      Documentation/devicetree/bindings/clock/amlogic*
1786 F:      drivers/clk/meson/
1787 F:      include/dt-bindings/clock/gxbb*
1788 F:      include/dt-bindings/clock/meson*
1789
1790 ARM/Amlogic Meson SoC Crypto Drivers
1791 M:      Corentin Labbe <clabbe@baylibre.com>
1792 L:      linux-crypto@vger.kernel.org
1793 L:      linux-amlogic@lists.infradead.org
1794 S:      Maintained
1795 F:      Documentation/devicetree/bindings/crypto/amlogic*
1796 F:      drivers/crypto/amlogic/
1797
1798 ARM/Amlogic Meson SoC Sound Drivers
1799 M:      Jerome Brunet <jbrunet@baylibre.com>
1800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1801 S:      Maintained
1802 F:      Documentation/devicetree/bindings/sound/amlogic*
1803 F:      sound/soc/meson/
1804
1805 ARM/Amlogic Meson SoC support
1806 M:      Neil Armstrong <narmstrong@baylibre.com>
1807 M:      Kevin Hilman <khilman@baylibre.com>
1808 R:      Jerome Brunet <jbrunet@baylibre.com>
1809 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1811 L:      linux-amlogic@lists.infradead.org
1812 S:      Maintained
1813 W:      http://linux-meson.com/
1814 F:      arch/arm/boot/dts/meson*
1815 F:      arch/arm/mach-meson/
1816 F:      arch/arm64/boot/dts/amlogic/
1817 F:      drivers/mmc/host/meson*
1818 F:      drivers/pinctrl/meson/
1819 F:      drivers/rtc/rtc-meson*
1820 F:      drivers/soc/amlogic/
1821 N:      meson
1822
1823 ARM/Annapurna Labs ALPINE ARCHITECTURE
1824 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1825 M:      Antoine Tenart <atenart@kernel.org>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 S:      Maintained
1828 F:      arch/arm/boot/dts/alpine*
1829 F:      arch/arm/mach-alpine/
1830 F:      arch/arm64/boot/dts/amazon/
1831 F:      drivers/*/*alpine*
1832
1833 ARM/APPLE MACHINE SUPPORT
1834 M:      Hector Martin <marcan@marcan.st>
1835 M:      Sven Peter <sven@svenpeter.dev>
1836 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Maintained
1839 W:      https://asahilinux.org
1840 B:      https://github.com/AsahiLinux/linux/issues
1841 C:      irc://irc.oftc.net/asahi-dev
1842 T:      git https://github.com/AsahiLinux/linux.git
1843 F:      Documentation/devicetree/bindings/arm/apple.yaml
1844 F:      Documentation/devicetree/bindings/arm/apple/*
1845 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1846 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1847 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1848 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1849 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1850 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1851 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1852 F:      Documentation/devicetree/bindings/power/apple*
1853 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1854 F:      arch/arm64/boot/dts/apple/
1855 F:      drivers/clk/clk-apple-nco.c
1856 F:      drivers/i2c/busses/i2c-pasemi-core.c
1857 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1858 F:      drivers/irqchip/irq-apple-aic.c
1859 F:      drivers/mailbox/apple-mailbox.c
1860 F:      drivers/nvmem/apple-efuses.c
1861 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1862 F:      drivers/soc/apple/*
1863 F:      drivers/watchdog/apple_wdt.c
1864 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1865 F:      include/dt-bindings/pinctrl/apple.h
1866 F:      include/linux/apple-mailbox.h
1867
1868 ARM/ARTPEC MACHINE SUPPORT
1869 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1870 M:      Lars Persson <lars.persson@axis.com>
1871 L:      linux-arm-kernel@axis.com
1872 S:      Maintained
1873 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1874 F:      arch/arm/boot/dts/artpec6*
1875 F:      arch/arm/mach-artpec
1876 F:      drivers/clk/axis
1877 F:      drivers/crypto/axis
1878 F:      drivers/mmc/host/usdhi6rol0.c
1879 F:      drivers/pinctrl/pinctrl-artpec*
1880
1881 ARM/ASPEED I2C DRIVER
1882 M:      Brendan Higgins <brendanhiggins@google.com>
1883 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1884 R:      Joel Stanley <joel@jms.id.au>
1885 L:      linux-i2c@vger.kernel.org
1886 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1887 S:      Maintained
1888 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1889 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1890 F:      drivers/i2c/busses/i2c-aspeed.c
1891 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1892
1893 ARM/ASPEED MACHINE SUPPORT
1894 M:      Joel Stanley <joel@jms.id.au>
1895 R:      Andrew Jeffery <andrew@aj.id.au>
1896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1897 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1898 S:      Supported
1899 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1901 F:      arch/arm/boot/dts/aspeed-*
1902 F:      arch/arm/mach-aspeed/
1903 N:      aspeed
1904
1905 ARM/BITMAIN ARCHITECTURE
1906 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1908 S:      Maintained
1909 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1910 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1911 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1912 F:      arch/arm64/boot/dts/bitmain/
1913 F:      drivers/clk/clk-bm1880.c
1914 F:      drivers/pinctrl/pinctrl-bm1880.c
1915
1916 ARM/CALXEDA HIGHBANK ARCHITECTURE
1917 M:      Andre Przywara <andre.przywara@arm.com>
1918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1919 S:      Maintained
1920 F:      arch/arm/boot/dts/ecx-*.dts*
1921 F:      arch/arm/boot/dts/highbank.dts
1922 F:      arch/arm/mach-highbank/
1923
1924 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1925 M:      Krzysztof Halasa <khalasa@piap.pl>
1926 S:      Maintained
1927 F:      arch/arm/mach-cns3xxx/
1928
1929 ARM/CAVIUM THUNDER NETWORK DRIVER
1930 M:      Sunil Goutham <sgoutham@marvell.com>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 S:      Supported
1933 F:      drivers/net/ethernet/cavium/thunder/
1934
1935 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1936 M:      Lukasz Majewski <lukma@denx.de>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S:      Maintained
1939 F:      arch/arm/mach-ep93xx/ts72xx.c
1940
1941 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1942 M:      Alexander Shiyan <shc_work@mail.ru>
1943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1944 S:      Odd Fixes
1945 N:      clps711x
1946
1947 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1948 M:      Lennert Buytenhek <kernel@wantstofly.org>
1949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1950 S:      Maintained
1951
1952 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1953 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1954 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1956 S:      Maintained
1957 F:      arch/arm/mach-ep93xx/
1958 F:      arch/arm/mach-ep93xx/include/mach/
1959
1960 ARM/CLKDEV SUPPORT
1961 M:      Russell King <linux@armlinux.org.uk>
1962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1963 S:      Maintained
1964 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1965 F:      drivers/clk/clkdev.c
1966
1967 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1968 M:      Baruch Siach <baruch@tkos.co.il>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Maintained
1971 F:      arch/arm/boot/dts/cx92755*
1972 N:      digicolor
1973
1974 ARM/CONTEC MICRO9 MACHINE SUPPORT
1975 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1976 S:      Maintained
1977 F:      arch/arm/mach-ep93xx/micro9.c
1978
1979 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1980 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1981 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1982 R:      Mike Leach <mike.leach@linaro.org>
1983 R:      Leo Yan <leo.yan@linaro.org>
1984 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1986 S:      Maintained
1987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1988 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1989 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1990 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1991 F:      Documentation/devicetree/bindings/arm/coresight.txt
1992 F:      Documentation/devicetree/bindings/arm/ete.yaml
1993 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1994 F:      Documentation/trace/coresight/*
1995 F:      drivers/hwtracing/coresight/*
1996 F:      include/dt-bindings/arm/coresight-cti-dt.h
1997 F:      include/linux/coresight*
1998 F:      samples/coresight/*
1999 F:      tools/perf/arch/arm/util/auxtrace.c
2000 F:      tools/perf/arch/arm/util/cs-etm.c
2001 F:      tools/perf/arch/arm/util/cs-etm.h
2002 F:      tools/perf/arch/arm/util/pmu.c
2003 F:      tools/perf/util/cs-etm-decoder/*
2004 F:      tools/perf/util/cs-etm.*
2005
2006 ARM/CORGI MACHINE SUPPORT
2007 M:      Richard Purdie <rpurdie@rpsys.net>
2008 S:      Maintained
2009
2010 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2011 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2012 M:      Linus Walleij <linus.walleij@linaro.org>
2013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2014 S:      Maintained
2015 T:      git git://github.com/ulli-kroll/linux.git
2016 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2017 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
2018 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2019 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2020 F:      arch/arm/boot/dts/gemini*
2021 F:      arch/arm/mach-gemini/
2022 F:      drivers/crypto/gemini/
2023 F:      drivers/net/ethernet/cortina/
2024 F:      drivers/pinctrl/pinctrl-gemini.c
2025 F:      drivers/rtc/rtc-ftrtc010.c
2026
2027 ARM/CZ.NIC TURRIS SUPPORT
2028 M:      Marek Behún <kabel@kernel.org>
2029 S:      Maintained
2030 W:      https://www.turris.cz/
2031 F:      Documentation/ABI/testing/debugfs-moxtet
2032 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2033 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2034 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2035 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2036 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2037 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2038 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2039 F:      drivers/bus/moxtet.c
2040 F:      drivers/firmware/turris-mox-rwtm.c
2041 F:      drivers/leds/leds-turris-omnia.c
2042 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2043 F:      drivers/gpio/gpio-moxtet.c
2044 F:      drivers/watchdog/armada_37xx_wdt.c
2045 F:      include/dt-bindings/bus/moxtet.h
2046 F:      include/linux/armada-37xx-rwtm-mailbox.h
2047 F:      include/linux/moxtet.h
2048
2049 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2050 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2052 S:      Maintained
2053 F:      arch/arm/mach-pxa/ezx.c
2054
2055 ARM/FARADAY FA526 PORT
2056 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 S:      Maintained
2059 T:      git git://git.berlios.de/gemini-board
2060 F:      arch/arm/mm/*-fa*
2061
2062 ARM/FOOTBRIDGE ARCHITECTURE
2063 M:      Russell King <linux@armlinux.org.uk>
2064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2065 S:      Maintained
2066 W:      http://www.armlinux.org.uk/
2067 F:      arch/arm/include/asm/hardware/dec21285.h
2068 F:      arch/arm/mach-footbridge/
2069
2070 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2071 M:      Shawn Guo <shawnguo@kernel.org>
2072 M:      Sascha Hauer <s.hauer@pengutronix.de>
2073 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2074 R:      Fabio Estevam <festevam@gmail.com>
2075 R:      NXP Linux Team <linux-imx@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 X:      drivers/media/i2c/
2080 N:      imx
2081 N:      mxs
2082
2083 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2084 M:      Shawn Guo <shawnguo@kernel.org>
2085 M:      Li Yang <leoyang.li@nxp.com>
2086 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2087 S:      Maintained
2088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2089 F:      arch/arm/boot/dts/ls1021a*
2090 F:      arch/arm64/boot/dts/freescale/fsl-*
2091 F:      arch/arm64/boot/dts/freescale/qoriq-*
2092
2093 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2094 M:      Shawn Guo <shawnguo@kernel.org>
2095 M:      Sascha Hauer <s.hauer@pengutronix.de>
2096 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2097 R:      Stefan Agner <stefan@agner.ch>
2098 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2099 S:      Maintained
2100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2101 F:      arch/arm/boot/dts/vf*
2102 F:      arch/arm/mach-imx/*vf610*
2103
2104 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2105 M:      Lennert Buytenhek <kernel@wantstofly.org>
2106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 S:      Maintained
2108
2109 ARM/GUMSTIX MACHINE SUPPORT
2110 M:      Steve Sakoman <sakoman@gmail.com>
2111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 S:      Maintained
2113
2114 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2115 M:      Philipp Zabel <philipp.zabel@gmail.com>
2116 M:      Paul Parsons <lost.distance@yahoo.com>
2117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2118 S:      Maintained
2119 F:      arch/arm/mach-pxa/hx4700.c
2120 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2121 F:      sound/soc/pxa/hx4700.c
2122
2123 ARM/HISILICON SOC SUPPORT
2124 M:      Wei Xu <xuwei5@hisilicon.com>
2125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2126 S:      Supported
2127 W:      http://www.hisilicon.com
2128 T:      git git://github.com/hisilicon/linux-hisi.git
2129 F:      arch/arm/boot/dts/hi3*
2130 F:      arch/arm/boot/dts/hip*
2131 F:      arch/arm/boot/dts/hisi*
2132 F:      arch/arm/mach-hisi/
2133 F:      arch/arm64/boot/dts/hisilicon/
2134
2135 ARM/HP JORNADA 7XX MACHINE SUPPORT
2136 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2137 S:      Maintained
2138 W:      www.jlime.com
2139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2140 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2141 F:      arch/arm/mach-sa1100/jornada720.c
2142
2143 ARM/IGEP MACHINE SUPPORT
2144 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2145 M:      Javier Martinez Canillas <javier@dowhile0.org>
2146 L:      linux-omap@vger.kernel.org
2147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2148 S:      Maintained
2149 F:      arch/arm/boot/dts/omap3-igep*
2150
2151 ARM/INCOME PXA270 SUPPORT
2152 M:      Marek Vasut <marek.vasut@gmail.com>
2153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2154 S:      Maintained
2155 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2156
2157 ARM/INTEL IOP32X ARM ARCHITECTURE
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 IQ81342EX MACHINE SUPPORT
2163 M:      Lennert Buytenhek <kernel@wantstofly.org>
2164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2165 S:      Maintained
2166
2167 ARM/INTEL IXDP2850 MACHINE SUPPORT
2168 M:      Lennert Buytenhek <kernel@wantstofly.org>
2169 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2170 S:      Maintained
2171
2172 ARM/INTEL IXP4XX ARM ARCHITECTURE
2173 M:      Linus Walleij <linusw@kernel.org>
2174 M:      Imre Kaloz <kaloz@openwrt.org>
2175 M:      Krzysztof Halasa <khalasa@piap.pl>
2176 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2177 S:      Maintained
2178 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2179 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2180 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2181 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2182 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2183 F:      arch/arm/mach-ixp4xx/
2184 F:      drivers/bus/intel-ixp4xx-eb.c
2185 F:      drivers/clocksource/timer-ixp4xx.c
2186 F:      drivers/crypto/ixp4xx_crypto.c
2187 F:      drivers/gpio/gpio-ixp4xx.c
2188 F:      drivers/irqchip/irq-ixp4xx.c
2189 F:      include/linux/irqchip/irq-ixp4xx.h
2190 F:      include/linux/platform_data/timer-ixp4xx.h
2191
2192 ARM/INTEL KEEMBAY ARCHITECTURE
2193 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2194 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2195 S:      Maintained
2196 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2197 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2198 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2199
2200 ARM/INTEL XSC3 (MANZANO) ARM CORE
2201 M:      Lennert Buytenhek <kernel@wantstofly.org>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 S:      Maintained
2204
2205 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2206 M:      Lennert Buytenhek <kernel@wantstofly.org>
2207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2208 S:      Maintained
2209
2210 ARM/LG1K ARCHITECTURE
2211 M:      Chanho Min <chanho.min@lge.com>
2212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2213 S:      Maintained
2214 F:      arch/arm64/boot/dts/lg/
2215
2216 ARM/LOGICPD PXA270 MACHINE SUPPORT
2217 M:      Lennert Buytenhek <kernel@wantstofly.org>
2218 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2219 S:      Maintained
2220
2221 ARM/LPC18XX ARCHITECTURE
2222 M:      Vladimir Zapolskiy <vz@mleia.com>
2223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2224 S:      Maintained
2225 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2226 F:      arch/arm/boot/dts/lpc43*
2227 F:      drivers/i2c/busses/i2c-lpc2k.c
2228 F:      drivers/memory/pl172.c
2229 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2230 F:      drivers/rtc/rtc-lpc24xx.c
2231 N:      lpc18xx
2232
2233 ARM/LPC32XX SOC SUPPORT
2234 M:      Vladimir Zapolskiy <vz@mleia.com>
2235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2236 S:      Maintained
2237 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2238 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2239 F:      arch/arm/boot/dts/lpc32*
2240 F:      arch/arm/mach-lpc32xx/
2241 F:      drivers/i2c/busses/i2c-pnx.c
2242 F:      drivers/net/ethernet/nxp/lpc_eth.c
2243 F:      drivers/usb/host/ohci-nxp.c
2244 F:      drivers/watchdog/pnx4008_wdt.c
2245 N:      lpc32xx
2246
2247 ARM/MAGICIAN MACHINE SUPPORT
2248 M:      Philipp Zabel <philipp.zabel@gmail.com>
2249 S:      Maintained
2250
2251 ARM/Marvell Dove/MV78xx0/Orion SOC support
2252 M:      Andrew Lunn <andrew@lunn.ch>
2253 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2254 M:      Gregory Clement <gregory.clement@bootlin.com>
2255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2256 S:      Maintained
2257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2258 F:      Documentation/devicetree/bindings/soc/dove/
2259 F:      arch/arm/boot/dts/dove*
2260 F:      arch/arm/boot/dts/orion5x*
2261 F:      arch/arm/mach-dove/
2262 F:      arch/arm/mach-mv78xx0/
2263 F:      arch/arm/mach-orion5x/
2264 F:      arch/arm/plat-orion/
2265 F:      drivers/soc/dove/
2266
2267 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2268 M:      Andrew Lunn <andrew@lunn.ch>
2269 M:      Gregory Clement <gregory.clement@bootlin.com>
2270 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2272 S:      Maintained
2273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2274 F:      arch/arm/boot/dts/armada*
2275 F:      arch/arm/boot/dts/kirkwood*
2276 F:      arch/arm/configs/mvebu_*_defconfig
2277 F:      arch/arm/mach-mvebu/
2278 F:      arch/arm64/boot/dts/marvell/armada*
2279 F:      arch/arm64/boot/dts/marvell/cn913*
2280 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2281 F:      drivers/cpufreq/armada-8k-cpufreq.c
2282 F:      drivers/cpufreq/mvebu-cpufreq.c
2283 F:      drivers/irqchip/irq-armada-370-xp.c
2284 F:      drivers/irqchip/irq-mvebu-*
2285 F:      drivers/pinctrl/mvebu/
2286 F:      drivers/rtc/rtc-armada38x.c
2287
2288 ARM/Mediatek RTC DRIVER
2289 M:      Eddie Huang <eddie.huang@mediatek.com>
2290 M:      Sean Wang <sean.wang@mediatek.com>
2291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2292 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2293 S:      Maintained
2294 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2295 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2296 F:      drivers/rtc/rtc-mt2712.c
2297 F:      drivers/rtc/rtc-mt6397.c
2298 F:      drivers/rtc/rtc-mt7622.c
2299
2300 ARM/Mediatek SoC support
2301 M:      Matthias Brugger <matthias.bgg@gmail.com>
2302 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2303 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2304 S:      Maintained
2305 W:      https://mtk.wiki.kernel.org/
2306 C:      irc://chat.freenode.net/linux-mediatek
2307 F:      arch/arm/boot/dts/mt6*
2308 F:      arch/arm/boot/dts/mt7*
2309 F:      arch/arm/boot/dts/mt8*
2310 F:      arch/arm/mach-mediatek/
2311 F:      arch/arm64/boot/dts/mediatek/
2312 F:      drivers/soc/mediatek/
2313 N:      mtk
2314 N:      mt[678]
2315 K:      mediatek
2316
2317 ARM/Mediatek USB3 PHY DRIVER
2318 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2320 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2321 S:      Maintained
2322 F:      Documentation/devicetree/bindings/phy/mediatek,*
2323 F:      drivers/phy/mediatek/
2324
2325 ARM/Microchip (AT91) SoC support
2326 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2327 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2328 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2329 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2330 S:      Supported
2331 W:      http://www.linux4sam.org
2332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2333 F:      arch/arm/boot/dts/at91*.dts
2334 F:      arch/arm/boot/dts/at91*.dtsi
2335 F:      arch/arm/boot/dts/sama*.dts
2336 F:      arch/arm/boot/dts/sama*.dtsi
2337 F:      arch/arm/include/debug/at91.S
2338 F:      arch/arm/mach-at91/
2339 F:      drivers/memory/atmel*
2340 F:      drivers/watchdog/sama5d4_wdt.c
2341 F:      include/soc/at91/
2342 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2343 X:      drivers/net/wireless/atmel/
2344 N:      at91
2345 N:      atmel
2346
2347 ARM/Microchip Sparx5 SoC support
2348 M:      Lars Povlsen <lars.povlsen@microchip.com>
2349 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2350 M:      UNGLinuxDriver@microchip.com
2351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2352 S:      Supported
2353 T:      git git://github.com/microchip-ung/linux-upstream.git
2354 F:      arch/arm64/boot/dts/microchip/
2355 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2356 N:      sparx5
2357
2358 Microchip Timer Counter Block (TCB) Capture Driver
2359 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2361 L:      linux-iio@vger.kernel.org
2362 S:      Maintained
2363 F:      drivers/counter/microchip-tcb-capture.c
2364
2365 ARM/MILBEAUT ARCHITECTURE
2366 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2367 M:      Takao Orito <orito.takao@socionext.com>
2368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2369 S:      Maintained
2370 F:      arch/arm/boot/dts/milbeaut*
2371 F:      arch/arm/mach-milbeaut/
2372 N:      milbeaut
2373
2374 ARM/MIOA701 MACHINE SUPPORT
2375 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2377 S:      Maintained
2378 F:      arch/arm/mach-pxa/mioa701.c
2379
2380 ARM/MStar/Sigmastar Armv7 SoC support
2381 M:      Daniel Palmer <daniel@thingy.jp>
2382 M:      Romain Perier <romain.perier@gmail.com>
2383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2384 S:      Maintained
2385 W:      http://linux-chenxing.org/
2386 T:      git git://github.com/linux-chenxing/linux.git
2387 F:      Documentation/devicetree/bindings/arm/mstar/*
2388 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2389 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2390 F:      arch/arm/boot/dts/mstar-*
2391 F:      arch/arm/mach-mstar/
2392 F:      drivers/clk/mstar/
2393 F:      drivers/clocksource/timer-msc313e.c
2394 F:      drivers/gpio/gpio-msc313.c
2395 F:      drivers/rtc/rtc-msc313.c
2396 F:      drivers/watchdog/msc313e_wdt.c
2397 F:      include/dt-bindings/clock/mstar-*
2398 F:      include/dt-bindings/gpio/msc313-gpio.h
2399
2400 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2401 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2402 S:      Maintained
2403
2404 ARM/NOMADIK/Ux500 ARCHITECTURES
2405 M:      Linus Walleij <linus.walleij@linaro.org>
2406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2407 S:      Maintained
2408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2409 F:      Documentation/devicetree/bindings/arm/ste-*
2410 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2411 F:      Documentation/devicetree/bindings/arm/ux500/
2412 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2413 F:      arch/arm/boot/dts/ste-*
2414 F:      arch/arm/mach-nomadik/
2415 F:      arch/arm/mach-ux500/
2416 F:      drivers/clk/clk-nomadik.c
2417 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2418 F:      drivers/dma/ste_dma40*
2419 F:      drivers/hwspinlock/u8500_hsem.c
2420 F:      drivers/i2c/busses/i2c-nomadik.c
2421 F:      drivers/iio/adc/ab8500-gpadc.c
2422 F:      drivers/mfd/ab8500*
2423 F:      drivers/mfd/abx500*
2424 F:      drivers/mfd/db8500*
2425 F:      drivers/pinctrl/nomadik/
2426 F:      drivers/rtc/rtc-ab8500.c
2427 F:      drivers/rtc/rtc-pl031.c
2428 F:      drivers/soc/ux500/
2429
2430 ARM/NUVOTON NPCM ARCHITECTURE
2431 M:      Avi Fishman <avifishman70@gmail.com>
2432 M:      Tomer Maimon <tmaimon77@gmail.com>
2433 M:      Tali Perry <tali.perry1@gmail.com>
2434 R:      Patrick Venture <venture@google.com>
2435 R:      Nancy Yuen <yuenn@google.com>
2436 R:      Benjamin Fair <benjaminfair@google.com>
2437 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2438 S:      Supported
2439 F:      Documentation/devicetree/bindings/*/*/*npcm*
2440 F:      Documentation/devicetree/bindings/*/*npcm*
2441 F:      Documentation/devicetree/bindings/arm/npcm/*
2442 F:      arch/arm/boot/dts/nuvoton-npcm*
2443 F:      arch/arm/mach-npcm/
2444 F:      drivers/*/*npcm*
2445 F:      drivers/*/*/*npcm*
2446 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2447
2448 ARM/NUVOTON WPCM450 ARCHITECTURE
2449 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2450 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2451 S:      Maintained
2452 W:      https://github.com/neuschaefer/wpcm450/wiki
2453 F:      Documentation/devicetree/bindings/*/*wpcm*
2454 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2455 F:      arch/arm/mach-npcm/wpcm450.c
2456 F:      drivers/*/*/*wpcm*
2457 F:      drivers/*/*wpcm*
2458
2459 ARM/NXP S32G ARCHITECTURE
2460 M:      Chester Lin <clin@suse.com>
2461 R:      Andreas Färber <afaerber@suse.de>
2462 R:      Matthias Brugger <mbrugger@suse.com>
2463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2464 S:      Maintained
2465 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2466
2467 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2468 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2469 S:      Orphan
2470 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2471 F:      arch/arm/mach-s3c/gta02.h
2472 F:      arch/arm/mach-s3c/mach-gta02.c
2473
2474 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2475 M:      Alexander Clouter <alex@digriz.org.uk>
2476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2477 S:      Maintained
2478 W:      http://www.digriz.org.uk/ts78xx/kernel
2479 F:      arch/arm/mach-orion5x/ts78xx-*
2480
2481 ARM/OXNAS platform support
2482 M:      Neil Armstrong <narmstrong@baylibre.com>
2483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2484 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2485 S:      Maintained
2486 F:      arch/arm/boot/dts/ox8*.dts*
2487 F:      arch/arm/mach-oxnas/
2488 F:      drivers/power/reset/oxnas-restart.c
2489 N:      oxnas
2490
2491 ARM/PALM TREO SUPPORT
2492 M:      Tomas Cech <sleep_walker@suse.com>
2493 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2494 S:      Maintained
2495 W:      http://hackndev.com
2496 F:      arch/arm/mach-pxa/palmtreo.*
2497
2498 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2499 M:      Marek Vasut <marek.vasut@gmail.com>
2500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2501 S:      Maintained
2502 W:      http://hackndev.com
2503 F:      arch/arm/mach-pxa/include/mach/palmld.h
2504 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2505 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2506 F:      arch/arm/mach-pxa/palmld.c
2507 F:      arch/arm/mach-pxa/palmt5.*
2508 F:      arch/arm/mach-pxa/palmtc.c
2509 F:      arch/arm/mach-pxa/palmte2.*
2510 F:      arch/arm/mach-pxa/palmtx.c
2511
2512 ARM/PALMZ72 SUPPORT
2513 M:      Sergey Lapin <slapin@ossfans.org>
2514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2515 S:      Maintained
2516 W:      http://hackndev.com
2517 F:      arch/arm/mach-pxa/palmz72.*
2518
2519 ARM/PLEB SUPPORT
2520 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2521 S:      Maintained
2522 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2523
2524 ARM/PT DIGITAL BOARD PORT
2525 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2527 S:      Maintained
2528 W:      http://www.armlinux.org.uk/
2529
2530 ARM/QUALCOMM SUPPORT
2531 M:      Andy Gross <agross@kernel.org>
2532 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2533 L:      linux-arm-msm@vger.kernel.org
2534 S:      Maintained
2535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2536 F:      Documentation/devicetree/bindings/*/qcom*
2537 F:      Documentation/devicetree/bindings/soc/qcom/
2538 F:      arch/arm/boot/dts/qcom-*.dts
2539 F:      arch/arm/boot/dts/qcom-*.dtsi
2540 F:      arch/arm/mach-qcom/
2541 F:      arch/arm64/boot/dts/qcom/
2542 F:      drivers/*/*/qcom*
2543 F:      drivers/*/*/qcom/
2544 F:      drivers/*/pm8???-*
2545 F:      drivers/*/qcom*
2546 F:      drivers/*/qcom/
2547 F:      drivers/bluetooth/btqcomsmd.c
2548 F:      drivers/clocksource/timer-qcom.c
2549 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2550 F:      drivers/extcon/extcon-qcom*
2551 F:      drivers/i2c/busses/i2c-qcom-geni.c
2552 F:      drivers/i2c/busses/i2c-qup.c
2553 F:      drivers/iommu/msm*
2554 F:      drivers/mfd/ssbi.c
2555 F:      drivers/mmc/host/mmci_qcom*
2556 F:      drivers/mmc/host/sdhci-msm.c
2557 F:      drivers/pci/controller/dwc/pcie-qcom.c
2558 F:      drivers/phy/qualcomm/
2559 F:      drivers/power/*/msm*
2560 F:      drivers/reset/reset-qcom-*
2561 F:      drivers/scsi/ufs/ufs-qcom*
2562 F:      drivers/spi/spi-geni-qcom.c
2563 F:      drivers/spi/spi-qcom-qspi.c
2564 F:      drivers/spi/spi-qup.c
2565 F:      drivers/tty/serial/msm_serial.c
2566 F:      drivers/usb/dwc3/dwc3-qcom.c
2567 F:      include/dt-bindings/*/qcom*
2568 F:      include/linux/*/qcom*
2569 F:      include/linux/soc/qcom/
2570
2571 ARM/RADISYS ENP2611 MACHINE SUPPORT
2572 M:      Lennert Buytenhek <kernel@wantstofly.org>
2573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2574 S:      Maintained
2575
2576 ARM/RDA MICRO ARCHITECTURE
2577 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2579 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2580 S:      Maintained
2581 F:      Documentation/devicetree/bindings/arm/rda.yaml
2582 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2583 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2584 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2585 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2586 F:      arch/arm/boot/dts/rda8810pl-*
2587 F:      drivers/clocksource/timer-rda.c
2588 F:      drivers/gpio/gpio-rda.c
2589 F:      drivers/irqchip/irq-rda-intc.c
2590 F:      drivers/tty/serial/rda-uart.c
2591
2592 ARM/REALTEK ARCHITECTURE
2593 M:      Andreas Färber <afaerber@suse.de>
2594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2595 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2596 S:      Maintained
2597 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2598 F:      arch/arm/boot/dts/rtd*
2599 F:      arch/arm/mach-realtek/
2600 F:      arch/arm64/boot/dts/realtek/
2601
2602 ARM/RENESAS ARM64 ARCHITECTURE
2603 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2604 M:      Magnus Damm <magnus.damm@gmail.com>
2605 L:      linux-renesas-soc@vger.kernel.org
2606 S:      Supported
2607 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2608 C:      irc://irc.libera.chat/renesas-soc
2609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2610 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2611 F:      arch/arm64/boot/dts/renesas/
2612 F:      drivers/soc/renesas/
2613 F:      include/linux/soc/renesas/
2614
2615 ARM/RISCPC ARCHITECTURE
2616 M:      Russell King <linux@armlinux.org.uk>
2617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2618 S:      Maintained
2619 W:      http://www.armlinux.org.uk/
2620 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2621 F:      arch/arm/include/asm/hardware/ioc.h
2622 F:      arch/arm/include/asm/hardware/iomd.h
2623 F:      arch/arm/include/asm/hardware/memc.h
2624 F:      arch/arm/mach-rpc/
2625 F:      drivers/net/ethernet/8390/etherh.c
2626 F:      drivers/net/ethernet/i825xx/ether1*
2627 F:      drivers/net/ethernet/seeq/ether3*
2628 F:      drivers/scsi/arm/
2629
2630 ARM/Rockchip SoC support
2631 M:      Heiko Stuebner <heiko@sntech.de>
2632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2633 L:      linux-rockchip@lists.infradead.org
2634 S:      Maintained
2635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2636 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2637 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2638 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2639 F:      arch/arm/boot/dts/rk3*
2640 F:      arch/arm/boot/dts/rv1108*
2641 F:      arch/arm/mach-rockchip/
2642 F:      drivers/*/*/*rockchip*
2643 F:      drivers/*/*rockchip*
2644 F:      drivers/clk/rockchip/
2645 F:      drivers/i2c/busses/i2c-rk3x.c
2646 F:      sound/soc/rockchip/
2647 N:      rockchip
2648
2649 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2650 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2651 R:      Alim Akhtar <alim.akhtar@samsung.com>
2652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2653 L:      linux-samsung-soc@vger.kernel.org
2654 S:      Maintained
2655 C:      irc://irc.libera.chat/linux-exynos
2656 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2657 B:      mailto:linux-samsung-soc@vger.kernel.org
2658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2659 F:      Documentation/arm/samsung/
2660 F:      Documentation/devicetree/bindings/arm/samsung/
2661 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2662 F:      Documentation/devicetree/bindings/soc/samsung/
2663 F:      arch/arm/boot/dts/exynos*
2664 F:      arch/arm/boot/dts/s3c*
2665 F:      arch/arm/boot/dts/s5p*
2666 F:      arch/arm/mach-exynos*/
2667 F:      arch/arm/mach-s3c/
2668 F:      arch/arm/mach-s5p*/
2669 F:      arch/arm64/boot/dts/exynos/
2670 F:      drivers/*/*/*s3c24*
2671 F:      drivers/*/*s3c24*
2672 F:      drivers/*/*s3c64xx*
2673 F:      drivers/*/*s5pv210*
2674 F:      drivers/clocksource/samsung_pwm_timer.c
2675 F:      drivers/memory/samsung/
2676 F:      drivers/pwm/pwm-samsung.c
2677 F:      drivers/soc/samsung/
2678 F:      drivers/tty/serial/samsung*
2679 F:      include/clocksource/samsung_pwm.h
2680 F:      include/linux/platform_data/*s3c*
2681 F:      include/linux/serial_s3c.h
2682 F:      include/linux/soc/samsung/
2683 N:      exynos
2684 N:      s3c2410
2685 N:      s3c64xx
2686 N:      s5pv210
2687
2688 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2689 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2691 L:      linux-media@vger.kernel.org
2692 S:      Maintained
2693 F:      drivers/media/platform/samsung/s5p-g2d/
2694
2695 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2696 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2697 L:      linux-samsung-soc@vger.kernel.org
2698 L:      linux-media@vger.kernel.org
2699 S:      Maintained
2700 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2701 F:      drivers/media/cec/platform/s5p/
2702
2703 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2704 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2705 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2706 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2708 L:      linux-media@vger.kernel.org
2709 S:      Maintained
2710 F:      drivers/media/platform/samsung/s5p-jpeg/
2711
2712 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2713 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2714 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2716 L:      linux-media@vger.kernel.org
2717 S:      Maintained
2718 F:      drivers/media/platform/samsung/s5p-mfc/
2719
2720 ARM/SHMOBILE ARM ARCHITECTURE
2721 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2722 M:      Magnus Damm <magnus.damm@gmail.com>
2723 L:      linux-renesas-soc@vger.kernel.org
2724 S:      Supported
2725 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2726 C:      irc://irc.libera.chat/renesas-soc
2727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2728 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2729 F:      arch/arm/boot/dts/emev2*
2730 F:      arch/arm/boot/dts/gr-peach*
2731 F:      arch/arm/boot/dts/iwg20d-q7*
2732 F:      arch/arm/boot/dts/r7s*
2733 F:      arch/arm/boot/dts/r8a*
2734 F:      arch/arm/boot/dts/r9a*
2735 F:      arch/arm/boot/dts/sh*
2736 F:      arch/arm/configs/shmobile_defconfig
2737 F:      arch/arm/include/debug/renesas-scif.S
2738 F:      arch/arm/mach-shmobile/
2739 F:      drivers/soc/renesas/
2740 F:      include/linux/soc/renesas/
2741
2742 ARM/SOCFPGA ARCHITECTURE
2743 M:      Dinh Nguyen <dinguyen@kernel.org>
2744 S:      Maintained
2745 W:      http://www.rocketboards.org
2746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2747 F:      arch/arm/boot/dts/socfpga*
2748 F:      arch/arm/configs/socfpga_defconfig
2749 F:      arch/arm/mach-socfpga/
2750 F:      arch/arm64/boot/dts/altera/
2751 F:      arch/arm64/boot/dts/intel/
2752
2753 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2754 M:      Dinh Nguyen <dinguyen@kernel.org>
2755 S:      Maintained
2756 F:      drivers/clk/socfpga/
2757
2758 ARM/SOCFPGA EDAC SUPPORT
2759 M:      Dinh Nguyen <dinguyen@kernel.org>
2760 S:      Maintained
2761 F:      drivers/edac/altera_edac.[ch]
2762
2763 ARM/SPREADTRUM SoC SUPPORT
2764 M:      Orson Zhai <orsonzhai@gmail.com>
2765 M:      Baolin Wang <baolin.wang7@gmail.com>
2766 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2767 S:      Maintained
2768 F:      arch/arm64/boot/dts/sprd
2769 N:      sprd
2770 N:      sc27xx
2771 N:      sc2731
2772
2773 ARM/STI ARCHITECTURE
2774 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2775 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2776 S:      Maintained
2777 W:      http://www.stlinux.com
2778 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2779 F:      arch/arm/boot/dts/sti*
2780 F:      arch/arm/mach-sti/
2781 F:      drivers/ata/ahci_st.c
2782 F:      drivers/char/hw_random/st-rng.c
2783 F:      drivers/clocksource/arm_global_timer.c
2784 F:      drivers/clocksource/clksrc_st_lpc.c
2785 F:      drivers/cpufreq/sti-cpufreq.c
2786 F:      drivers/dma/st_fdma*
2787 F:      drivers/i2c/busses/i2c-st.c
2788 F:      drivers/media/platform/st/sti/c8sectpfe/
2789 F:      drivers/media/rc/st_rc.c
2790 F:      drivers/mmc/host/sdhci-st.c
2791 F:      drivers/phy/st/phy-miphy28lp.c
2792 F:      drivers/phy/st/phy-stih407-usb.c
2793 F:      drivers/pinctrl/pinctrl-st.c
2794 F:      drivers/remoteproc/st_remoteproc.c
2795 F:      drivers/remoteproc/st_slim_rproc.c
2796 F:      drivers/reset/sti/
2797 F:      drivers/rtc/rtc-st-lpc.c
2798 F:      drivers/tty/serial/st-asc.c
2799 F:      drivers/usb/dwc3/dwc3-st.c
2800 F:      drivers/usb/host/ehci-st.c
2801 F:      drivers/usb/host/ohci-st.c
2802 F:      drivers/watchdog/st_lpc_wdt.c
2803 F:      include/linux/remoteproc/st_slim_rproc.h
2804
2805 ARM/STM32 ARCHITECTURE
2806 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2807 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2808 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2810 S:      Maintained
2811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2812 F:      arch/arm/boot/dts/stm32*
2813 F:      arch/arm/mach-stm32/
2814 F:      drivers/clocksource/armv7m_systick.c
2815 N:      stm32
2816 N:      stm
2817
2818 ARM/Synaptics SoC support
2819 M:      Jisheng Zhang <jszhang@kernel.org>
2820 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2822 S:      Maintained
2823 F:      arch/arm/boot/dts/berlin*
2824 F:      arch/arm/mach-berlin/
2825 F:      arch/arm64/boot/dts/synaptics/
2826
2827 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2828 M:      Lennert Buytenhek <kernel@wantstofly.org>
2829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2830 S:      Maintained
2831
2832 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2833 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2834 L:      linux-tegra@vger.kernel.org
2835 L:      linux-media@vger.kernel.org
2836 S:      Maintained
2837 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2838 F:      drivers/media/cec/platform/tegra/
2839
2840 ARM/TESLA FSD SoC SUPPORT
2841 M:      Alim Akhtar <alim.akhtar@samsung.com>
2842 M:      linux-fsd@tesla.com
2843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2844 L:      linux-samsung-soc@vger.kernel.org
2845 S:      Maintained
2846 F:      arch/arm64/boot/dts/tesla*
2847
2848 ARM/TETON BGA MACHINE SUPPORT
2849 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2850 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2851 S:      Maintained
2852
2853 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2854 M:      Santosh Shilimkar <ssantosh@kernel.org>
2855 L:      linux-kernel@vger.kernel.org
2856 S:      Maintained
2857 F:      drivers/memory/*emif*
2858
2859 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2860 M:      Nishanth Menon <nm@ti.com>
2861 M:      Santosh Shilimkar <ssantosh@kernel.org>
2862 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2863 S:      Maintained
2864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2865 F:      arch/arm/boot/dts/keystone-*
2866 F:      arch/arm/mach-keystone/
2867
2868 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2869 M:      Santosh Shilimkar <ssantosh@kernel.org>
2870 L:      linux-kernel@vger.kernel.org
2871 S:      Maintained
2872 F:      drivers/clk/keystone/
2873
2874 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2875 M:      Santosh Shilimkar <ssantosh@kernel.org>
2876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2877 L:      linux-kernel@vger.kernel.org
2878 S:      Maintained
2879 F:      drivers/clocksource/timer-keystone.c
2880
2881 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2882 M:      Santosh Shilimkar <ssantosh@kernel.org>
2883 L:      linux-kernel@vger.kernel.org
2884 S:      Maintained
2885 F:      drivers/power/reset/keystone-reset.c
2886
2887 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2888 M:      Nishanth Menon <nm@ti.com>
2889 M:      Vignesh Raghavendra <vigneshr@ti.com>
2890 M:      Tero Kristo <kristo@kernel.org>
2891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2892 S:      Supported
2893 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2894 F:      arch/arm64/boot/dts/ti/Makefile
2895 F:      arch/arm64/boot/dts/ti/k3-*
2896 F:      include/dt-bindings/pinctrl/k3.h
2897
2898 ARM/THECUS N2100 MACHINE SUPPORT
2899 M:      Lennert Buytenhek <kernel@wantstofly.org>
2900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2901 S:      Maintained
2902
2903 ARM/TOSA MACHINE SUPPORT
2904 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2905 M:      Dirk Opfer <dirk@opfer-online.de>
2906 S:      Maintained
2907
2908 ARM/TOSHIBA VISCONTI ARCHITECTURE
2909 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2911 S:      Supported
2912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2913 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2914 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2915 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2916 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2917 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2918 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2919 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2920 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2921 F:      arch/arm64/boot/dts/toshiba/
2922 F:      drivers/clk/visconti/
2923 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2924 F:      drivers/gpio/gpio-visconti.c
2925 F:      drivers/pci/controller/dwc/pcie-visconti.c
2926 F:      drivers/pinctrl/visconti/
2927 F:      drivers/watchdog/visconti_wdt.c
2928 N:      visconti
2929
2930 ARM/UNIPHIER ARCHITECTURE
2931 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2932 M:      Masami Hiramatsu <mhiramat@kernel.org>
2933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2934 S:      Maintained
2935 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2936 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2937 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2938 F:      arch/arm/boot/dts/uniphier*
2939 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2940 F:      arch/arm/mach-uniphier/
2941 F:      arch/arm/mm/cache-uniphier.c
2942 F:      arch/arm64/boot/dts/socionext/uniphier*
2943 F:      drivers/bus/uniphier-system-bus.c
2944 F:      drivers/clk/uniphier/
2945 F:      drivers/dma/uniphier-mdmac.c
2946 F:      drivers/gpio/gpio-uniphier.c
2947 F:      drivers/i2c/busses/i2c-uniphier*
2948 F:      drivers/irqchip/irq-uniphier-aidet.c
2949 F:      drivers/mmc/host/uniphier-sd.c
2950 F:      drivers/pinctrl/uniphier/
2951 F:      drivers/reset/reset-uniphier.c
2952 F:      drivers/tty/serial/8250/8250_uniphier.c
2953 N:      uniphier
2954
2955 ARM/VERSATILE EXPRESS PLATFORM
2956 M:      Liviu Dudau <liviu.dudau@arm.com>
2957 M:      Sudeep Holla <sudeep.holla@arm.com>
2958 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2960 S:      Maintained
2961 F:      */*/*/vexpress*
2962 F:      */*/vexpress*
2963 F:      arch/arm/boot/dts/vexpress*
2964 F:      arch/arm/mach-vexpress/
2965 F:      arch/arm64/boot/dts/arm/
2966 F:      drivers/clk/versatile/clk-vexpress-osc.c
2967 F:      drivers/clocksource/timer-versatile.c
2968 N:      mps2
2969
2970 ARM/VFP SUPPORT
2971 M:      Russell King <linux@armlinux.org.uk>
2972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2973 S:      Maintained
2974 W:      http://www.armlinux.org.uk/
2975 F:      arch/arm/vfp/
2976
2977 ARM/VOIPAC PXA270 SUPPORT
2978 M:      Marek Vasut <marek.vasut@gmail.com>
2979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2980 S:      Maintained
2981 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2982 F:      arch/arm/mach-pxa/vpac270.c
2983
2984 ARM/VT8500 ARM ARCHITECTURE
2985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2986 S:      Orphan
2987 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2988 F:      arch/arm/mach-vt8500/
2989 F:      drivers/clocksource/timer-vt8500.c
2990 F:      drivers/i2c/busses/i2c-wmt.c
2991 F:      drivers/mmc/host/wmt-sdmmc.c
2992 F:      drivers/pwm/pwm-vt8500.c
2993 F:      drivers/rtc/rtc-vt8500.c
2994 F:      drivers/tty/serial/vt8500_serial.c
2995 F:      drivers/usb/host/ehci-platform.c
2996 F:      drivers/usb/host/uhci-platform.c
2997 F:      drivers/video/fbdev/vt8500lcdfb.*
2998 F:      drivers/video/fbdev/wm8505fb*
2999 F:      drivers/video/fbdev/wmt_ge_rops.*
3000
3001 ARM/ZIPIT Z2 SUPPORT
3002 M:      Marek Vasut <marek.vasut@gmail.com>
3003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3004 S:      Maintained
3005 F:      arch/arm/mach-pxa/include/mach/z2.h
3006 F:      arch/arm/mach-pxa/z2.c
3007
3008 ARM/ZYNQ ARCHITECTURE
3009 M:      Michal Simek <michal.simek@xilinx.com>
3010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3011 S:      Supported
3012 W:      http://wiki.xilinx.com
3013 T:      git https://github.com/Xilinx/linux-xlnx.git
3014 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3015 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3016 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3017 F:      arch/arm/mach-zynq/
3018 F:      drivers/clocksource/timer-cadence-ttc.c
3019 F:      drivers/cpuidle/cpuidle-zynq.c
3020 F:      drivers/edac/synopsys_edac.c
3021 F:      drivers/i2c/busses/i2c-cadence.c
3022 F:      drivers/i2c/busses/i2c-xiic.c
3023 F:      drivers/mmc/host/sdhci-of-arasan.c
3024 N:      zynq
3025 N:      xilinx
3026
3027 ARM64 PORT (AARCH64 ARCHITECTURE)
3028 M:      Catalin Marinas <catalin.marinas@arm.com>
3029 M:      Will Deacon <will@kernel.org>
3030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3031 S:      Maintained
3032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3033 F:      Documentation/arm64/
3034 F:      arch/arm64/
3035 F:      tools/testing/selftests/arm64/
3036 X:      arch/arm64/boot/dts/
3037
3038 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3039 M:      George McCollister <george.mccollister@gmail.com>
3040 L:      netdev@vger.kernel.org
3041 S:      Maintained
3042 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3043 F:      drivers/net/dsa/xrs700x/*
3044 F:      net/dsa/tag_xrs700x.c
3045
3046 AS3645A LED FLASH CONTROLLER DRIVER
3047 M:      Sakari Ailus <sakari.ailus@iki.fi>
3048 L:      linux-leds@vger.kernel.org
3049 S:      Maintained
3050 F:      drivers/leds/flash/leds-as3645a.c
3051
3052 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3053 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3054 L:      linux-media@vger.kernel.org
3055 S:      Maintained
3056 T:      git git://linuxtv.org/media_tree.git
3057 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3058 F:      drivers/media/i2c/ak7375.c
3059
3060 ASAHI KASEI AK8974 DRIVER
3061 M:      Linus Walleij <linus.walleij@linaro.org>
3062 L:      linux-iio@vger.kernel.org
3063 S:      Supported
3064 W:      http://www.akm.com/
3065 F:      drivers/iio/magnetometer/ak8974.c
3066
3067 ASC7621 HARDWARE MONITOR DRIVER
3068 M:      George Joseph <george.joseph@fairview5.com>
3069 L:      linux-hwmon@vger.kernel.org
3070 S:      Maintained
3071 F:      Documentation/hwmon/asc7621.rst
3072 F:      drivers/hwmon/asc7621.c
3073
3074 ASIX AX88796C SPI ETHERNET ADAPTER
3075 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3076 S:      Maintained
3077 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3078 F:      drivers/net/ethernet/asix/ax88796c_*
3079
3080 ASPEED PECI CONTROLLER
3081 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3082 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3083 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3084 S:      Supported
3085 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3086 F:      drivers/peci/controller/peci-aspeed.c
3087
3088 ASPEED PINCTRL DRIVERS
3089 M:      Andrew Jeffery <andrew@aj.id.au>
3090 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3091 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3092 L:      linux-gpio@vger.kernel.org
3093 S:      Maintained
3094 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3095 F:      drivers/pinctrl/aspeed/
3096
3097 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3098 M:      Eddie James <eajames@linux.ibm.com>
3099 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3100 S:      Maintained
3101 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3102 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3103 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3104
3105 ASPEED SD/MMC DRIVER
3106 M:      Andrew Jeffery <andrew@aj.id.au>
3107 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3108 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3109 L:      linux-mmc@vger.kernel.org
3110 S:      Maintained
3111 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3112 F:      drivers/mmc/host/sdhci-of-aspeed*
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:      drivers/net/bonding/
3585 F:      include/net/bonding.h
3586 F:      include/uapi/linux/if_bonding.h
3587
3588 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3589 M:      Dan Robertson <dan@dlrobertson.com>
3590 L:      linux-iio@vger.kernel.org
3591 S:      Maintained
3592 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3593 F:      drivers/iio/accel/bma400*
3594
3595 BPF (Safe dynamic programs and tools)
3596 M:      Alexei Starovoitov <ast@kernel.org>
3597 M:      Daniel Borkmann <daniel@iogearbox.net>
3598 M:      Andrii Nakryiko <andrii@kernel.org>
3599 R:      Martin KaFai Lau <kafai@fb.com>
3600 R:      Song Liu <songliubraving@fb.com>
3601 R:      Yonghong Song <yhs@fb.com>
3602 R:      John Fastabend <john.fastabend@gmail.com>
3603 R:      KP Singh <kpsingh@kernel.org>
3604 L:      netdev@vger.kernel.org
3605 L:      bpf@vger.kernel.org
3606 S:      Supported
3607 W:      https://bpf.io/
3608 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3611 F:      Documentation/bpf/
3612 F:      Documentation/networking/filter.rst
3613 F:      Documentation/userspace-api/ebpf/
3614 F:      arch/*/net/*
3615 F:      include/linux/bpf*
3616 F:      include/linux/btf*
3617 F:      include/linux/filter.h
3618 F:      include/trace/events/xdp.h
3619 F:      include/uapi/linux/bpf*
3620 F:      include/uapi/linux/btf*
3621 F:      include/uapi/linux/filter.h
3622 F:      kernel/bpf/
3623 F:      kernel/trace/bpf_trace.c
3624 F:      lib/test_bpf.c
3625 F:      net/bpf/
3626 F:      net/core/filter.c
3627 F:      net/sched/act_bpf.c
3628 F:      net/sched/cls_bpf.c
3629 F:      samples/bpf/
3630 F:      scripts/bpf_doc.py
3631 F:      scripts/pahole-flags.sh
3632 F:      scripts/pahole-version.sh
3633 F:      tools/bpf/
3634 F:      tools/lib/bpf/
3635 F:      tools/testing/selftests/bpf/
3636 N:      bpf
3637 K:      bpf
3638
3639 BPF JIT for ARM
3640 M:      Shubham Bansal <illusionist.neo@gmail.com>
3641 L:      netdev@vger.kernel.org
3642 L:      bpf@vger.kernel.org
3643 S:      Maintained
3644 F:      arch/arm/net/
3645
3646 BPF JIT for ARM64
3647 M:      Daniel Borkmann <daniel@iogearbox.net>
3648 M:      Alexei Starovoitov <ast@kernel.org>
3649 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3650 L:      netdev@vger.kernel.org
3651 L:      bpf@vger.kernel.org
3652 S:      Supported
3653 F:      arch/arm64/net/
3654
3655 BPF JIT for MIPS (32-BIT AND 64-BIT)
3656 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3657 M:      Paul Burton <paulburton@kernel.org>
3658 L:      netdev@vger.kernel.org
3659 L:      bpf@vger.kernel.org
3660 S:      Maintained
3661 F:      arch/mips/net/
3662
3663 BPF JIT for NFP NICs
3664 M:      Jakub Kicinski <kuba@kernel.org>
3665 L:      netdev@vger.kernel.org
3666 L:      bpf@vger.kernel.org
3667 S:      Supported
3668 F:      drivers/net/ethernet/netronome/nfp/bpf/
3669
3670 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3671 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3672 L:      netdev@vger.kernel.org
3673 L:      bpf@vger.kernel.org
3674 S:      Maintained
3675 F:      arch/powerpc/net/
3676
3677 BPF JIT for RISC-V (32-bit)
3678 M:      Luke Nelson <luke.r.nels@gmail.com>
3679 M:      Xi Wang <xi.wang@gmail.com>
3680 L:      netdev@vger.kernel.org
3681 L:      bpf@vger.kernel.org
3682 S:      Maintained
3683 F:      arch/riscv/net/
3684 X:      arch/riscv/net/bpf_jit_comp64.c
3685
3686 BPF JIT for RISC-V (64-bit)
3687 M:      Björn Töpel <bjorn@kernel.org>
3688 L:      netdev@vger.kernel.org
3689 L:      bpf@vger.kernel.org
3690 S:      Maintained
3691 F:      arch/riscv/net/
3692 X:      arch/riscv/net/bpf_jit_comp32.c
3693
3694 BPF JIT for S390
3695 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3696 M:      Heiko Carstens <hca@linux.ibm.com>
3697 M:      Vasily Gorbik <gor@linux.ibm.com>
3698 L:      netdev@vger.kernel.org
3699 L:      bpf@vger.kernel.org
3700 S:      Maintained
3701 F:      arch/s390/net/
3702 X:      arch/s390/net/pnet.c
3703
3704 BPF JIT for SPARC (32-BIT AND 64-BIT)
3705 M:      David S. Miller <davem@davemloft.net>
3706 L:      netdev@vger.kernel.org
3707 L:      bpf@vger.kernel.org
3708 S:      Maintained
3709 F:      arch/sparc/net/
3710
3711 BPF JIT for X86 32-BIT
3712 M:      Wang YanQing <udknight@gmail.com>
3713 L:      netdev@vger.kernel.org
3714 L:      bpf@vger.kernel.org
3715 S:      Maintained
3716 F:      arch/x86/net/bpf_jit_comp32.c
3717
3718 BPF JIT for X86 64-BIT
3719 M:      Alexei Starovoitov <ast@kernel.org>
3720 M:      Daniel Borkmann <daniel@iogearbox.net>
3721 L:      netdev@vger.kernel.org
3722 L:      bpf@vger.kernel.org
3723 S:      Supported
3724 F:      arch/x86/net/
3725 X:      arch/x86/net/bpf_jit_comp32.c
3726
3727 BPF LSM (Security Audit and Enforcement using BPF)
3728 M:      KP Singh <kpsingh@kernel.org>
3729 R:      Florent Revest <revest@chromium.org>
3730 R:      Brendan Jackman <jackmanb@chromium.org>
3731 L:      bpf@vger.kernel.org
3732 S:      Maintained
3733 F:      Documentation/bpf/prog_lsm.rst
3734 F:      include/linux/bpf_lsm.h
3735 F:      kernel/bpf/bpf_lsm.c
3736 F:      security/bpf/
3737
3738 BROADCOM B44 10/100 ETHERNET DRIVER
3739 M:      Michael Chan <michael.chan@broadcom.com>
3740 L:      netdev@vger.kernel.org
3741 S:      Supported
3742 F:      drivers/net/ethernet/broadcom/b44.*
3743
3744 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3745 M:      Florian Fainelli <f.fainelli@gmail.com>
3746 L:      netdev@vger.kernel.org
3747 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3748 S:      Supported
3749 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3750 F:      drivers/net/dsa/b53/*
3751 F:      drivers/net/dsa/bcm_sf2*
3752 F:      include/linux/dsa/brcm.h
3753 F:      include/linux/platform_data/b53.h
3754
3755 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3756 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3757 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3758 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3760 S:      Maintained
3761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3762 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3763 F:      drivers/pci/controller/pcie-brcmstb.c
3764 F:      drivers/staging/vc04_services
3765 N:      bcm2711
3766 N:      bcm283*
3767
3768 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3769 M:      Florian Fainelli <f.fainelli@gmail.com>
3770 M:      Ray Jui <rjui@broadcom.com>
3771 M:      Scott Branden <sbranden@broadcom.com>
3772 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3773 S:      Maintained
3774 T:      git git://github.com/broadcom/mach-bcm
3775 F:      arch/arm/mach-bcm/
3776 N:      bcm281*
3777 N:      bcm113*
3778 N:      bcm216*
3779 N:      kona
3780
3781 BROADCOM BCM47XX MIPS ARCHITECTURE
3782 M:      Hauke Mehrtens <hauke@hauke-m.de>
3783 M:      Rafał Miłecki <zajec5@gmail.com>
3784 L:      linux-mips@vger.kernel.org
3785 S:      Maintained
3786 F:      Documentation/devicetree/bindings/mips/brcm/
3787 F:      arch/mips/bcm47xx/*
3788 F:      arch/mips/include/asm/mach-bcm47xx/*
3789
3790 BROADCOM BCM4908 ETHERNET DRIVER
3791 M:      Rafał Miłecki <rafal@milecki.pl>
3792 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3793 L:      netdev@vger.kernel.org
3794 S:      Maintained
3795 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3796 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3797 F:      drivers/net/ethernet/broadcom/unimac.h
3798
3799 BROADCOM BCM4908 PINMUX DRIVER
3800 M:      Rafał Miłecki <rafal@milecki.pl>
3801 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3802 L:      linux-gpio@vger.kernel.org
3803 S:      Maintained
3804 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3805 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3806
3807 BROADCOM BCM5301X ARM ARCHITECTURE
3808 M:      Florian Fainelli <f.fainelli@gmail.com>
3809 M:      Hauke Mehrtens <hauke@hauke-m.de>
3810 M:      Rafał Miłecki <zajec5@gmail.com>
3811 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3813 S:      Maintained
3814 F:      arch/arm/boot/dts/bcm470*
3815 F:      arch/arm/boot/dts/bcm5301*
3816 F:      arch/arm/boot/dts/bcm953012*
3817 F:      arch/arm/mach-bcm/bcm_5301x.c
3818
3819 BROADCOM BCM53573 ARM ARCHITECTURE
3820 M:      Florian Fainelli <f.fainelli@gmail.com>
3821 M:      Rafał Miłecki <rafal@milecki.pl>
3822 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3824 S:      Maintained
3825 F:      arch/arm/boot/dts/bcm47189*
3826 F:      arch/arm/boot/dts/bcm53573*
3827
3828 BROADCOM BCM63XX ARM ARCHITECTURE
3829 M:      Florian Fainelli <f.fainelli@gmail.com>
3830 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3832 S:      Maintained
3833 T:      git git://github.com/broadcom/stblinux.git
3834 N:      bcm63xx
3835
3836 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3837 M:      Kevin Cernekee <cernekee@gmail.com>
3838 L:      linux-usb@vger.kernel.org
3839 S:      Maintained
3840 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3841
3842 BROADCOM BCM7XXX ARM ARCHITECTURE
3843 M:      Florian Fainelli <f.fainelli@gmail.com>
3844 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3846 S:      Maintained
3847 T:      git git://github.com/broadcom/stblinux.git
3848 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3849 F:      arch/arm/boot/dts/bcm7*.dts*
3850 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3851 F:      arch/arm/mach-bcm/*brcmstb*
3852 F:      arch/arm/mm/cache-b15-rac.c
3853 F:      drivers/bus/brcmstb_gisb.c
3854 F:      drivers/pci/controller/pcie-brcmstb.c
3855 N:      brcmstb
3856 N:      bcm7038
3857 N:      bcm7120
3858
3859 BROADCOM BDC DRIVER
3860 M:      Al Cooper <alcooperx@gmail.com>
3861 L:      linux-usb@vger.kernel.org
3862 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3863 S:      Maintained
3864 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3865 F:      drivers/usb/gadget/udc/bdc/
3866
3867 BROADCOM BMIPS CPUFREQ DRIVER
3868 M:      Markus Mayer <mmayer@broadcom.com>
3869 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3870 L:      linux-pm@vger.kernel.org
3871 S:      Maintained
3872 F:      drivers/cpufreq/bmips-cpufreq.c
3873
3874 BROADCOM BMIPS MIPS ARCHITECTURE
3875 M:      Florian Fainelli <f.fainelli@gmail.com>
3876 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3877 L:      linux-mips@vger.kernel.org
3878 S:      Maintained
3879 T:      git git://github.com/broadcom/stblinux.git
3880 F:      arch/mips/bmips/*
3881 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3882 F:      arch/mips/include/asm/mach-bmips/*
3883 F:      arch/mips/kernel/*bmips*
3884 F:      drivers/soc/bcm/bcm63xx
3885 F:      drivers/irqchip/irq-bcm63*
3886 F:      drivers/irqchip/irq-bcm7*
3887 F:      drivers/irqchip/irq-brcmstb*
3888 F:      include/linux/bcm963xx_nvram.h
3889 F:      include/linux/bcm963xx_tag.h
3890
3891 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3892 M:      Rasesh Mody <rmody@marvell.com>
3893 M:      GR-Linux-NIC-Dev@marvell.com
3894 L:      netdev@vger.kernel.org
3895 S:      Supported
3896 F:      drivers/net/ethernet/broadcom/bnx2.*
3897 F:      drivers/net/ethernet/broadcom/bnx2_*
3898
3899 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3900 M:      Saurav Kashyap <skashyap@marvell.com>
3901 M:      Javed Hasan <jhasan@marvell.com>
3902 M:      GR-QLogic-Storage-Upstream@marvell.com
3903 L:      linux-scsi@vger.kernel.org
3904 S:      Supported
3905 F:      drivers/scsi/bnx2fc/
3906
3907 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3908 M:      Nilesh Javali <njavali@marvell.com>
3909 M:      Manish Rangankar <mrangankar@marvell.com>
3910 M:      GR-QLogic-Storage-Upstream@marvell.com
3911 L:      linux-scsi@vger.kernel.org
3912 S:      Supported
3913 F:      drivers/scsi/bnx2i/
3914
3915 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3916 M:      Ariel Elior <aelior@marvell.com>
3917 M:      Sudarsana Kalluru <skalluru@marvell.com>
3918 M:      Manish Chopra <manishc@marvell.com>
3919 L:      netdev@vger.kernel.org
3920 S:      Supported
3921 F:      drivers/net/ethernet/broadcom/bnx2x/
3922
3923 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3924 M:      Michael Chan <michael.chan@broadcom.com>
3925 L:      netdev@vger.kernel.org
3926 S:      Supported
3927 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
3928 F:      drivers/net/ethernet/broadcom/bnxt/
3929 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
3930
3931 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3932 M:      Arend van Spriel <aspriel@gmail.com>
3933 M:      Franky Lin <franky.lin@broadcom.com>
3934 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3935 L:      linux-wireless@vger.kernel.org
3936 L:      brcm80211-dev-list.pdl@broadcom.com
3937 L:      SHA-cyfmac-dev-list@infineon.com
3938 S:      Supported
3939 F:      drivers/net/wireless/broadcom/brcm80211/
3940
3941 BROADCOM BRCMSTB GPIO DRIVER
3942 M:      Doug Berger <opendmb@gmail.com>
3943 M:      Florian Fainelli <f.fainelli@gmail.com>
3944 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3945 S:      Supported
3946 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3947 F:      drivers/gpio/gpio-brcmstb.c
3948
3949 BROADCOM BRCMSTB I2C DRIVER
3950 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3951 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3952 L:      linux-i2c@vger.kernel.org
3953 S:      Supported
3954 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3955 F:      drivers/i2c/busses/i2c-brcmstb.c
3956
3957 BROADCOM BRCMSTB UART DRIVER
3958 M:      Al Cooper <alcooperx@gmail.com>
3959 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3960 L:      linux-serial@vger.kernel.org
3961 S:      Maintained
3962 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3963 F:      drivers/tty/serial/8250/8250_bcm7271.c
3964
3965 BROADCOM BRCMSTB USB EHCI DRIVER
3966 M:      Al Cooper <alcooperx@gmail.com>
3967 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3968 L:      linux-usb@vger.kernel.org
3969 S:      Maintained
3970 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3971 F:      drivers/usb/host/ehci-brcm.*
3972
3973 BROADCOM BRCMSTB USB PIN MAP DRIVER
3974 M:      Al Cooper <alcooperx@gmail.com>
3975 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3976 L:      linux-usb@vger.kernel.org
3977 S:      Maintained
3978 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3979 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3980
3981 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3982 M:      Al Cooper <alcooperx@gmail.com>
3983 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3984 L:      linux-kernel@vger.kernel.org
3985 S:      Maintained
3986 F:      drivers/phy/broadcom/phy-brcm-usb*
3987
3988 BROADCOM ETHERNET PHY DRIVERS
3989 M:      Florian Fainelli <f.fainelli@gmail.com>
3990 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3991 L:      netdev@vger.kernel.org
3992 S:      Supported
3993 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3994 F:      drivers/net/phy/bcm*.[ch]
3995 F:      drivers/net/phy/broadcom.c
3996 F:      include/linux/brcmphy.h
3997
3998 BROADCOM GENET ETHERNET DRIVER
3999 M:      Doug Berger <opendmb@gmail.com>
4000 M:      Florian Fainelli <f.fainelli@gmail.com>
4001 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4002 L:      netdev@vger.kernel.org
4003 S:      Supported
4004 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4005 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4006 F:      drivers/net/ethernet/broadcom/genet/
4007 F:      drivers/net/ethernet/broadcom/unimac.h
4008 F:      drivers/net/mdio/mdio-bcm-unimac.c
4009 F:      include/linux/platform_data/bcmgenet.h
4010 F:      include/linux/platform_data/mdio-bcm-unimac.h
4011
4012 BROADCOM IPROC ARM ARCHITECTURE
4013 M:      Ray Jui <rjui@broadcom.com>
4014 M:      Scott Branden <sbranden@broadcom.com>
4015 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4017 S:      Maintained
4018 T:      git git://github.com/broadcom/stblinux.git
4019 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4020 F:      arch/arm64/boot/dts/broadcom/stingray/*
4021 F:      drivers/clk/bcm/clk-ns*
4022 F:      drivers/clk/bcm/clk-sr*
4023 F:      drivers/pinctrl/bcm/pinctrl-ns*
4024 F:      include/dt-bindings/clock/bcm-sr*
4025 N:      iproc
4026 N:      cygnus
4027 N:      bcm[-_]nsp
4028 N:      bcm9113*
4029 N:      bcm9583*
4030 N:      bcm9585*
4031 N:      bcm9586*
4032 N:      bcm988312
4033 N:      bcm113*
4034 N:      bcm583*
4035 N:      bcm585*
4036 N:      bcm586*
4037 N:      bcm88312
4038 N:      hr2
4039 N:      stingray
4040
4041 BROADCOM IPROC GBIT ETHERNET DRIVER
4042 M:      Rafał Miłecki <rafal@milecki.pl>
4043 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4044 L:      netdev@vger.kernel.org
4045 S:      Maintained
4046 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4047 F:      drivers/net/ethernet/broadcom/bgmac*
4048 F:      drivers/net/ethernet/broadcom/unimac.h
4049
4050 BROADCOM KONA GPIO DRIVER
4051 M:      Ray Jui <rjui@broadcom.com>
4052 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4053 S:      Supported
4054 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4055 F:      drivers/gpio/gpio-bcm-kona.c
4056
4057 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4058 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4059 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4060 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4061 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4062 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4063 L:      linux-scsi@vger.kernel.org
4064 S:      Supported
4065 W:      https://www.broadcom.com/support/storage
4066 F:      drivers/scsi/mpi3mr/
4067
4068 BROADCOM NETXTREME-E ROCE DRIVER
4069 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4070 L:      linux-rdma@vger.kernel.org
4071 S:      Supported
4072 W:      http://www.broadcom.com
4073 F:      drivers/infiniband/hw/bnxt_re/
4074 F:      include/uapi/rdma/bnxt_re-abi.h
4075
4076 BROADCOM NVRAM DRIVER
4077 M:      Rafał Miłecki <zajec5@gmail.com>
4078 L:      linux-mips@vger.kernel.org
4079 S:      Maintained
4080 F:      drivers/firmware/broadcom/*
4081
4082 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4083 M:      Rafał Miłecki <rafal@milecki.pl>
4084 M:      Florian Fainelli <f.fainelli@gmail.com>
4085 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4086 L:      linux-pm@vger.kernel.org
4087 S:      Maintained
4088 T:      git git://github.com/broadcom/stblinux.git
4089 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4090 F:      include/dt-bindings/soc/bcm-pmb.h
4091
4092 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4093 M:      Rafał Miłecki <zajec5@gmail.com>
4094 L:      linux-wireless@vger.kernel.org
4095 S:      Maintained
4096 F:      drivers/bcma/
4097 F:      include/linux/bcma/
4098
4099 BROADCOM SPI DRIVER
4100 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4101 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4102 S:      Maintained
4103 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4104 F:      drivers/spi/spi-bcm-qspi.*
4105 F:      drivers/spi/spi-brcmstb-qspi.c
4106 F:      drivers/spi/spi-iproc-qspi.c
4107
4108 BROADCOM STB AVS CPUFREQ DRIVER
4109 M:      Markus Mayer <mmayer@broadcom.com>
4110 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4111 L:      linux-pm@vger.kernel.org
4112 S:      Maintained
4113 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4114 F:      drivers/cpufreq/brcmstb*
4115
4116 BROADCOM STB AVS TMON DRIVER
4117 M:      Markus Mayer <mmayer@broadcom.com>
4118 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4119 L:      linux-pm@vger.kernel.org
4120 S:      Maintained
4121 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4122 F:      drivers/thermal/broadcom/brcmstb*
4123
4124 BROADCOM STB DPFE DRIVER
4125 M:      Markus Mayer <mmayer@broadcom.com>
4126 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4128 S:      Maintained
4129 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4130 F:      drivers/memory/brcmstb_dpfe.c
4131
4132 BROADCOM STB NAND FLASH DRIVER
4133 M:      Brian Norris <computersforpeace@gmail.com>
4134 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4135 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4136 L:      linux-mtd@lists.infradead.org
4137 S:      Maintained
4138 F:      drivers/mtd/nand/raw/brcmnand/
4139 F:      include/linux/platform_data/brcmnand.h
4140
4141 BROADCOM STB PCIE DRIVER
4142 M:      Jim Quinlan <jim2101024@gmail.com>
4143 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4144 M:      Florian Fainelli <f.fainelli@gmail.com>
4145 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4146 L:      linux-pci@vger.kernel.org
4147 S:      Maintained
4148 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4149 F:      drivers/pci/controller/pcie-brcmstb.c
4150
4151 BROADCOM SYSTEMPORT ETHERNET DRIVER
4152 M:      Florian Fainelli <f.fainelli@gmail.com>
4153 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4154 L:      netdev@vger.kernel.org
4155 S:      Supported
4156 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4157 F:      drivers/net/ethernet/broadcom/unimac.h
4158 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4159
4160 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4161 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4162 M:      Prashant Sreedharan <prashant@broadcom.com>
4163 M:      Michael Chan <mchan@broadcom.com>
4164 L:      netdev@vger.kernel.org
4165 S:      Supported
4166 F:      drivers/net/ethernet/broadcom/tg3.*
4167
4168 BROADCOM VK DRIVER
4169 M:      Scott Branden <scott.branden@broadcom.com>
4170 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4171 S:      Supported
4172 F:      drivers/misc/bcm-vk/
4173 F:      include/uapi/linux/misc/bcm_vk.h
4174
4175 BROCADE BFA FC SCSI DRIVER
4176 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4177 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4178 L:      linux-scsi@vger.kernel.org
4179 S:      Supported
4180 F:      drivers/scsi/bfa/
4181
4182 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4183 M:      Rasesh Mody <rmody@marvell.com>
4184 M:      Sudarsana Kalluru <skalluru@marvell.com>
4185 M:      GR-Linux-NIC-Dev@marvell.com
4186 L:      netdev@vger.kernel.org
4187 S:      Supported
4188 F:      drivers/net/ethernet/brocade/bna/
4189
4190 BSG (block layer generic sg v4 driver)
4191 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4192 L:      linux-scsi@vger.kernel.org
4193 S:      Supported
4194 F:      block/bsg.c
4195 F:      include/linux/bsg.h
4196 F:      include/uapi/linux/bsg.h
4197
4198 BT87X AUDIO DRIVER
4199 M:      Clemens Ladisch <clemens@ladisch.de>
4200 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4201 S:      Maintained
4202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4203 F:      Documentation/sound/cards/bt87x.rst
4204 F:      sound/pci/bt87x.c
4205
4206 BT8XXGPIO DRIVER
4207 M:      Michael Buesch <m@bues.ch>
4208 S:      Maintained
4209 W:      http://bu3sch.de/btgpio.php
4210 F:      drivers/gpio/gpio-bt8xx.c
4211
4212 BTRFS FILE SYSTEM
4213 M:      Chris Mason <clm@fb.com>
4214 M:      Josef Bacik <josef@toxicpanda.com>
4215 M:      David Sterba <dsterba@suse.com>
4216 L:      linux-btrfs@vger.kernel.org
4217 S:      Maintained
4218 W:      http://btrfs.wiki.kernel.org/
4219 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4220 C:      irc://irc.libera.chat/btrfs
4221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4222 F:      Documentation/filesystems/btrfs.rst
4223 F:      fs/btrfs/
4224 F:      include/linux/btrfs*
4225 F:      include/uapi/linux/btrfs*
4226
4227 BTTV VIDEO4LINUX DRIVER
4228 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4229 L:      linux-media@vger.kernel.org
4230 S:      Odd fixes
4231 W:      https://linuxtv.org
4232 T:      git git://linuxtv.org/media_tree.git
4233 F:      Documentation/driver-api/media/drivers/bttv*
4234 F:      drivers/media/pci/bt8xx/bttv*
4235
4236 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4237 M:      Chanwoo Choi <cw00.choi@samsung.com>
4238 L:      linux-pm@vger.kernel.org
4239 L:      linux-samsung-soc@vger.kernel.org
4240 S:      Maintained
4241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4242 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4243 F:      drivers/devfreq/exynos-bus.c
4244
4245 BUSLOGIC SCSI DRIVER
4246 M:      Khalid Aziz <khalid@gonehiking.org>
4247 L:      linux-scsi@vger.kernel.org
4248 S:      Maintained
4249 F:      drivers/scsi/BusLogic.*
4250 F:      drivers/scsi/FlashPoint.*
4251
4252 C-MEDIA CMI8788 DRIVER
4253 M:      Clemens Ladisch <clemens@ladisch.de>
4254 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4255 S:      Maintained
4256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4257 F:      sound/pci/oxygen/
4258
4259 C-SKY ARCHITECTURE
4260 M:      Guo Ren <guoren@kernel.org>
4261 L:      linux-csky@vger.kernel.org
4262 S:      Supported
4263 T:      git https://github.com/c-sky/csky-linux.git
4264 F:      Documentation/devicetree/bindings/csky/
4265 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4266 F:      Documentation/devicetree/bindings/timer/csky,*
4267 F:      arch/csky/
4268 F:      drivers/clocksource/timer-gx6605s.c
4269 F:      drivers/clocksource/timer-mp-csky.c
4270 F:      drivers/irqchip/irq-csky-*
4271 N:      csky
4272 K:      csky
4273
4274 CA8210 IEEE-802.15.4 RADIO DRIVER
4275 L:      linux-wpan@vger.kernel.org
4276 S:      Orphan
4277 W:      https://github.com/Cascoda/ca8210-linux.git
4278 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4279 F:      drivers/net/ieee802154/ca8210.c
4280
4281 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4282 M:      Damien Le Moal <damien.lemoal@wdc.com>
4283 L:      linux-riscv@lists.infradead.org
4284 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4285 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4286 F:      drivers/pinctrl/pinctrl-k210.c
4287
4288 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4289 M:      Damien Le Moal <damien.lemoal@wdc.com>
4290 L:      linux-kernel@vger.kernel.org
4291 L:      linux-riscv@lists.infradead.org
4292 S:      Maintained
4293 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4294 F:      drivers/reset/reset-k210.c
4295
4296 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4297 M:      Damien Le Moal <damien.lemoal@wdc.com>
4298 L:      linux-riscv@lists.infradead.org
4299 S:      Maintained
4300 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4301 F:      drivers/soc/canaan/
4302 F:      include/soc/canaan/
4303
4304 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4305 M:      David Howells <dhowells@redhat.com>
4306 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4307 S:      Supported
4308 F:      Documentation/filesystems/caching/cachefiles.rst
4309 F:      fs/cachefiles/
4310
4311 CADENCE MIPI-CSI2 BRIDGES
4312 M:      Maxime Ripard <mripard@kernel.org>
4313 L:      linux-media@vger.kernel.org
4314 S:      Maintained
4315 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4316 F:      drivers/media/platform/cadence/cdns-csi2*
4317
4318 CADENCE NAND DRIVER
4319 L:      linux-mtd@lists.infradead.org
4320 S:      Orphan
4321 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4322 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4323
4324 CADENCE USB3 DRD IP DRIVER
4325 M:      Peter Chen <peter.chen@kernel.org>
4326 M:      Pawel Laszczak <pawell@cadence.com>
4327 R:      Roger Quadros <rogerq@kernel.org>
4328 R:      Aswath Govindraju <a-govindraju@ti.com>
4329 L:      linux-usb@vger.kernel.org
4330 S:      Maintained
4331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4332 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4333 F:      drivers/usb/cdns3/
4334 X:      drivers/usb/cdns3/cdnsp*
4335
4336 CADENCE USBSSP DRD IP DRIVER
4337 M:      Pawel Laszczak <pawell@cadence.com>
4338 L:      linux-usb@vger.kernel.org
4339 S:      Maintained
4340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4341 F:      drivers/usb/cdns3/
4342 X:      drivers/usb/cdns3/cdns3*
4343
4344 CADET FM/AM RADIO RECEIVER DRIVER
4345 M:      Hans Verkuil <hverkuil@xs4all.nl>
4346 L:      linux-media@vger.kernel.org
4347 S:      Maintained
4348 W:      https://linuxtv.org
4349 T:      git git://linuxtv.org/media_tree.git
4350 F:      drivers/media/radio/radio-cadet*
4351
4352 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4353 L:      linux-media@vger.kernel.org
4354 S:      Orphan
4355 T:      git git://linuxtv.org/media_tree.git
4356 F:      Documentation/admin-guide/media/cafe_ccic*
4357 F:      drivers/media/platform/marvell/
4358
4359 CAIF NETWORK LAYER
4360 L:      netdev@vger.kernel.org
4361 S:      Orphan
4362 F:      Documentation/networking/caif/
4363 F:      drivers/net/caif/
4364 F:      include/net/caif/
4365 F:      include/uapi/linux/caif/
4366 F:      net/caif/
4367
4368 CAKE QDISC
4369 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4370 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4371 S:      Maintained
4372 F:      net/sched/sch_cake.c
4373
4374 CAN NETWORK DRIVERS
4375 M:      Wolfgang Grandegger <wg@grandegger.com>
4376 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4377 L:      linux-can@vger.kernel.org
4378 S:      Maintained
4379 W:      https://github.com/linux-can
4380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4382 F:      Documentation/devicetree/bindings/net/can/
4383 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4384 F:      drivers/net/can/
4385 F:      drivers/phy/phy-can-transceiver.c
4386 F:      include/linux/can/bittiming.h
4387 F:      include/linux/can/dev.h
4388 F:      include/linux/can/led.h
4389 F:      include/linux/can/length.h
4390 F:      include/linux/can/platform/
4391 F:      include/linux/can/rx-offload.h
4392 F:      include/uapi/linux/can/error.h
4393 F:      include/uapi/linux/can/netlink.h
4394 F:      include/uapi/linux/can/vxcan.h
4395
4396 CAN NETWORK LAYER
4397 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4398 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4399 L:      linux-can@vger.kernel.org
4400 S:      Maintained
4401 W:      https://github.com/linux-can
4402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4404 F:      Documentation/networking/can.rst
4405 F:      include/linux/can/can-ml.h
4406 F:      include/linux/can/core.h
4407 F:      include/linux/can/skb.h
4408 F:      include/net/netns/can.h
4409 F:      include/uapi/linux/can.h
4410 F:      include/uapi/linux/can/bcm.h
4411 F:      include/uapi/linux/can/gw.h
4412 F:      include/uapi/linux/can/isotp.h
4413 F:      include/uapi/linux/can/raw.h
4414 F:      net/can/
4415
4416 CAN-J1939 NETWORK LAYER
4417 M:      Robin van der Gracht <robin@protonic.nl>
4418 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4419 R:      kernel@pengutronix.de
4420 L:      linux-can@vger.kernel.org
4421 S:      Maintained
4422 F:      Documentation/networking/j1939.rst
4423 F:      include/uapi/linux/can/j1939.h
4424 F:      net/can/j1939/
4425
4426 CAPABILITIES
4427 M:      Serge Hallyn <serge@hallyn.com>
4428 L:      linux-security-module@vger.kernel.org
4429 S:      Supported
4430 F:      include/linux/capability.h
4431 F:      include/uapi/linux/capability.h
4432 F:      kernel/capability.c
4433 F:      security/commoncap.c
4434
4435 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4436 M:      Kevin Tsai <ktsai@capellamicro.com>
4437 S:      Maintained
4438 F:      drivers/iio/light/cm*
4439
4440 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4441 M:      Christian Lamparter <chunkeey@googlemail.com>
4442 L:      linux-wireless@vger.kernel.org
4443 S:      Maintained
4444 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4445 F:      drivers/net/wireless/ath/carl9170/
4446
4447 CAVIUM I2C DRIVER
4448 M:      Robert Richter <rric@kernel.org>
4449 S:      Odd Fixes
4450 W:      http://www.marvell.com
4451 F:      drivers/i2c/busses/i2c-octeon*
4452 F:      drivers/i2c/busses/i2c-thunderx*
4453
4454 CAVIUM LIQUIDIO NETWORK DRIVER
4455 M:      Derek Chickles <dchickles@marvell.com>
4456 M:      Satanand Burla <sburla@marvell.com>
4457 M:      Felix Manlunas <fmanlunas@marvell.com>
4458 L:      netdev@vger.kernel.org
4459 S:      Supported
4460 W:      http://www.marvell.com
4461 F:      drivers/net/ethernet/cavium/liquidio/
4462
4463 CAVIUM MMC DRIVER
4464 M:      Robert Richter <rric@kernel.org>
4465 S:      Odd Fixes
4466 W:      http://www.marvell.com
4467 F:      drivers/mmc/host/cavium*
4468
4469 CAVIUM OCTEON-TX CRYPTO DRIVER
4470 M:      George Cherian <gcherian@marvell.com>
4471 L:      linux-crypto@vger.kernel.org
4472 S:      Supported
4473 W:      http://www.marvell.com
4474 F:      drivers/crypto/cavium/cpt/
4475
4476 CAVIUM THUNDERX2 ARM64 SOC
4477 M:      Robert Richter <rric@kernel.org>
4478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4479 S:      Odd Fixes
4480 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4481 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4482
4483 CBS/ETF/TAPRIO QDISCS
4484 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4485 S:      Maintained
4486 L:      netdev@vger.kernel.org
4487 F:      net/sched/sch_cbs.c
4488 F:      net/sched/sch_etf.c
4489 F:      net/sched/sch_taprio.c
4490
4491 CC2520 IEEE-802.15.4 RADIO DRIVER
4492 M:      Varka Bhadram <varkabhadram@gmail.com>
4493 L:      linux-wpan@vger.kernel.org
4494 S:      Maintained
4495 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4496 F:      drivers/net/ieee802154/cc2520.c
4497 F:      include/linux/spi/cc2520.h
4498
4499 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4500 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4501 L:      linux-crypto@vger.kernel.org
4502 S:      Supported
4503 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4504 F:      drivers/crypto/ccree/
4505
4506 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4507 M:      Hadar Gat <hadar.gat@arm.com>
4508 L:      linux-crypto@vger.kernel.org
4509 S:      Supported
4510 F:      drivers/char/hw_random/cctrng.c
4511 F:      drivers/char/hw_random/cctrng.h
4512 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4513 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4514
4515 CEC FRAMEWORK
4516 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4517 L:      linux-media@vger.kernel.org
4518 S:      Supported
4519 W:      http://linuxtv.org
4520 T:      git git://linuxtv.org/media_tree.git
4521 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4522 F:      Documentation/devicetree/bindings/media/cec.txt
4523 F:      Documentation/driver-api/media/cec-core.rst
4524 F:      Documentation/userspace-api/media/cec
4525 F:      drivers/media/cec/
4526 F:      drivers/media/rc/keymaps/rc-cec.c
4527 F:      include/media/cec-notifier.h
4528 F:      include/media/cec.h
4529 F:      include/uapi/linux/cec-funcs.h
4530 F:      include/uapi/linux/cec.h
4531
4532 CEC GPIO DRIVER
4533 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4534 L:      linux-media@vger.kernel.org
4535 S:      Supported
4536 W:      http://linuxtv.org
4537 T:      git git://linuxtv.org/media_tree.git
4538 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4539 F:      drivers/media/cec/platform/cec-gpio/
4540
4541 CELL BROADBAND ENGINE ARCHITECTURE
4542 M:      Arnd Bergmann <arnd@arndb.de>
4543 L:      linuxppc-dev@lists.ozlabs.org
4544 S:      Supported
4545 W:      http://www.ibm.com/developerworks/power/cell/
4546 F:      arch/powerpc/include/asm/cell*.h
4547 F:      arch/powerpc/include/asm/spu*.h
4548 F:      arch/powerpc/include/uapi/asm/spu*.h
4549 F:      arch/powerpc/platforms/cell/
4550
4551 CELLWISE CW2015 BATTERY DRIVER
4552 M:      Tobias Schrammm <t.schramm@manjaro.org>
4553 S:      Maintained
4554 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4555 F:      drivers/power/supply/cw2015_battery.c
4556
4557 CEPH COMMON CODE (LIBCEPH)
4558 M:      Ilya Dryomov <idryomov@gmail.com>
4559 M:      Jeff Layton <jlayton@kernel.org>
4560 M:      Xiubo Li <xiubli@redhat.com>
4561 L:      ceph-devel@vger.kernel.org
4562 S:      Supported
4563 W:      http://ceph.com/
4564 T:      git git://github.com/ceph/ceph-client.git
4565 F:      include/linux/ceph/
4566 F:      include/linux/crush/
4567 F:      net/ceph/
4568
4569 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4570 M:      Jeff Layton <jlayton@kernel.org>
4571 M:      Xiubo Li <xiubli@redhat.com>
4572 M:      Ilya Dryomov <idryomov@gmail.com>
4573 L:      ceph-devel@vger.kernel.org
4574 S:      Supported
4575 W:      http://ceph.com/
4576 T:      git git://github.com/ceph/ceph-client.git
4577 F:      Documentation/filesystems/ceph.rst
4578 F:      fs/ceph/
4579
4580 CERTIFICATE HANDLING
4581 M:      David Howells <dhowells@redhat.com>
4582 M:      David Woodhouse <dwmw2@infradead.org>
4583 L:      keyrings@vger.kernel.org
4584 S:      Maintained
4585 F:      Documentation/admin-guide/module-signing.rst
4586 F:      certs/
4587 F:      scripts/sign-file.c
4588
4589 CFAG12864B LCD DRIVER
4590 M:      Miguel Ojeda <ojeda@kernel.org>
4591 S:      Maintained
4592 F:      drivers/auxdisplay/cfag12864b.c
4593 F:      include/linux/cfag12864b.h
4594
4595 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4596 M:      Miguel Ojeda <ojeda@kernel.org>
4597 S:      Maintained
4598 F:      drivers/auxdisplay/cfag12864bfb.c
4599 F:      include/linux/cfag12864b.h
4600
4601 CHAR and MISC DRIVERS
4602 M:      Arnd Bergmann <arnd@arndb.de>
4603 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4604 S:      Supported
4605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4606 F:      drivers/char/
4607 F:      drivers/misc/
4608 F:      include/linux/miscdevice.h
4609 X:      drivers/char/agp/
4610 X:      drivers/char/hw_random/
4611 X:      drivers/char/ipmi/
4612 X:      drivers/char/random.c
4613 X:      drivers/char/tpm/
4614
4615 CHECKPATCH
4616 M:      Andy Whitcroft <apw@canonical.com>
4617 M:      Joe Perches <joe@perches.com>
4618 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4619 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4620 S:      Maintained
4621 F:      scripts/checkpatch.pl
4622
4623 CHECKPATCH DOCUMENTATION
4624 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4625 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4626 R:      Joe Perches <joe@perches.com>
4627 S:      Maintained
4628 F:      Documentation/dev-tools/checkpatch.rst
4629
4630 CHINESE DOCUMENTATION
4631 M:      Alex Shi <alexs@kernel.org>
4632 S:      Maintained
4633 F:      Documentation/translations/zh_CN/
4634
4635 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4636 M:      Peter Chen <peter.chen@kernel.org>
4637 L:      linux-usb@vger.kernel.org
4638 S:      Maintained
4639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4640 F:      drivers/usb/chipidea/
4641
4642 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4643 M:      Hans de Goede <hdegoede@redhat.com>
4644 L:      linux-input@vger.kernel.org
4645 S:      Maintained
4646 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4647 F:      drivers/input/touchscreen/chipone_icn8318.c
4648
4649 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4650 M:      Hans de Goede <hdegoede@redhat.com>
4651 L:      linux-input@vger.kernel.org
4652 S:      Maintained
4653 F:      drivers/input/touchscreen/chipone_icn8505.c
4654
4655 CHROME HARDWARE PLATFORM SUPPORT
4656 M:      Benson Leung <bleung@chromium.org>
4657 L:      chrome-platform@lists.linux.dev
4658 S:      Maintained
4659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4660 F:      drivers/platform/chrome/
4661
4662 CHROMEOS EC CODEC DRIVER
4663 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4664 M:      Tzung-Bi Shih <tzungbi@google.com>
4665 R:      Guenter Roeck <groeck@chromium.org>
4666 L:      chrome-platform@lists.linux.dev
4667 S:      Maintained
4668 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4669 F:      sound/soc/codecs/cros_ec_codec.*
4670
4671 CHROMEOS EC SUBDRIVERS
4672 M:      Benson Leung <bleung@chromium.org>
4673 R:      Guenter Roeck <groeck@chromium.org>
4674 L:      chrome-platform@lists.linux.dev
4675 S:      Maintained
4676 F:      drivers/power/supply/cros_usbpd-charger.c
4677 N:      cros_ec
4678 N:      cros-ec
4679
4680 CHROMEOS EC USB TYPE-C DRIVER
4681 M:      Prashant Malani <pmalani@chromium.org>
4682 L:      chrome-platform@lists.linux.dev
4683 S:      Maintained
4684 F:      drivers/platform/chrome/cros_ec_typec.c
4685
4686 CHROMEOS EC USB PD NOTIFY DRIVER
4687 M:      Prashant Malani <pmalani@chromium.org>
4688 L:      chrome-platform@lists.linux.dev
4689 S:      Maintained
4690 F:      drivers/platform/chrome/cros_usbpd_notify.c
4691 F:      include/linux/platform_data/cros_usbpd_notify.h
4692
4693 CHRONTEL CH7322 CEC DRIVER
4694 M:      Joe Tessler <jrt@google.com>
4695 L:      linux-media@vger.kernel.org
4696 S:      Maintained
4697 T:      git git://linuxtv.org/media_tree.git
4698 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4699 F:      drivers/media/cec/i2c/ch7322.c
4700
4701 CIRRUS LOGIC AUDIO CODEC DRIVERS
4702 M:      James Schulman <james.schulman@cirrus.com>
4703 M:      David Rhodes <david.rhodes@cirrus.com>
4704 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4705 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4706 L:      patches@opensource.cirrus.com
4707 S:      Maintained
4708 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4709 F:      sound/pci/hda/cs*
4710 F:      sound/soc/codecs/cs*
4711
4712 CIRRUS LOGIC DSP FIRMWARE DRIVER
4713 M:      Simon Trimmer <simont@opensource.cirrus.com>
4714 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4715 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4716 L:      patches@opensource.cirrus.com
4717 S:      Supported
4718 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4719 T:      git https://github.com/CirrusLogic/linux-drivers.git
4720 F:      drivers/firmware/cirrus/*
4721 F:      include/linux/firmware/cirrus/*
4722
4723 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4724 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4725 L:      netdev@vger.kernel.org
4726 S:      Maintained
4727 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4728
4729 CIRRUS LOGIC LOCHNAGAR DRIVER
4730 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4731 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4732 L:      patches@opensource.cirrus.com
4733 S:      Supported
4734 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4735 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4736 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4737 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4738 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4739 F:      Documentation/hwmon/lochnagar.rst
4740 F:      drivers/clk/clk-lochnagar.c
4741 F:      drivers/hwmon/lochnagar-hwmon.c
4742 F:      drivers/mfd/lochnagar-i2c.c
4743 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4744 F:      drivers/regulator/lochnagar-regulator.c
4745 F:      include/dt-bindings/clk/lochnagar.h
4746 F:      include/dt-bindings/pinctrl/lochnagar.h
4747 F:      include/linux/mfd/lochnagar*
4748 F:      sound/soc/codecs/lochnagar-sc.c
4749
4750 CIRRUS LOGIC MADERA CODEC DRIVERS
4751 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4752 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4753 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4754 L:      patches@opensource.cirrus.com
4755 S:      Supported
4756 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4757 T:      git https://github.com/CirrusLogic/linux-drivers.git
4758 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4759 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4760 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4761 F:      drivers/gpio/gpio-madera*
4762 F:      drivers/irqchip/irq-madera*
4763 F:      drivers/mfd/cs47l*
4764 F:      drivers/mfd/madera*
4765 F:      drivers/pinctrl/cirrus/*
4766 F:      include/dt-bindings/sound/madera*
4767 F:      include/linux/irqchip/irq-madera*
4768 F:      include/linux/mfd/madera/*
4769 F:      include/sound/madera*
4770 F:      sound/soc/codecs/cs47l*
4771 F:      sound/soc/codecs/madera*
4772
4773 CISCO FCOE HBA DRIVER
4774 M:      Satish Kharat <satishkh@cisco.com>
4775 M:      Sesidhar Baddela <sebaddel@cisco.com>
4776 M:      Karan Tilak Kumar <kartilak@cisco.com>
4777 L:      linux-scsi@vger.kernel.org
4778 S:      Supported
4779 F:      drivers/scsi/fnic/
4780
4781 CISCO SCSI HBA DRIVER
4782 M:      Karan Tilak Kumar <kartilak@cisco.com>
4783 M:      Sesidhar Baddela <sebaddel@cisco.com>
4784 L:      linux-scsi@vger.kernel.org
4785 S:      Supported
4786 F:      drivers/scsi/snic/
4787
4788 CISCO VIC ETHERNET NIC DRIVER
4789 M:      Christian Benvenuti <benve@cisco.com>
4790 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4791 S:      Supported
4792 F:      drivers/net/ethernet/cisco/enic/
4793
4794 CISCO VIC LOW LATENCY NIC DRIVER
4795 M:      Christian Benvenuti <benve@cisco.com>
4796 M:      Nelson Escobar <neescoba@cisco.com>
4797 S:      Supported
4798 F:      drivers/infiniband/hw/usnic/
4799
4800 CLANG-FORMAT FILE
4801 M:      Miguel Ojeda <ojeda@kernel.org>
4802 S:      Maintained
4803 F:      .clang-format
4804
4805 CLANG/LLVM BUILD SUPPORT
4806 M:      Nathan Chancellor <nathan@kernel.org>
4807 M:      Nick Desaulniers <ndesaulniers@google.com>
4808 R:      Tom Rix <trix@redhat.com>
4809 L:      llvm@lists.linux.dev
4810 S:      Supported
4811 W:      https://clangbuiltlinux.github.io/
4812 B:      https://github.com/ClangBuiltLinux/linux/issues
4813 C:      irc://irc.libera.chat/clangbuiltlinux
4814 F:      Documentation/kbuild/llvm.rst
4815 F:      include/linux/compiler-clang.h
4816 F:      scripts/Makefile.clang
4817 F:      scripts/clang-tools/
4818 K:      \b(?i:clang|llvm)\b
4819
4820 CLANG CONTROL FLOW INTEGRITY SUPPORT
4821 M:      Sami Tolvanen <samitolvanen@google.com>
4822 M:      Kees Cook <keescook@chromium.org>
4823 R:      Nathan Chancellor <nathan@kernel.org>
4824 R:      Nick Desaulniers <ndesaulniers@google.com>
4825 L:      llvm@lists.linux.dev
4826 S:      Supported
4827 B:      https://github.com/ClangBuiltLinux/linux/issues
4828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4829 F:      include/linux/cfi.h
4830 F:      kernel/cfi.c
4831
4832 CLK API
4833 M:      Russell King <linux@armlinux.org.uk>
4834 L:      linux-clk@vger.kernel.org
4835 S:      Maintained
4836 F:      include/linux/clk.h
4837
4838 CLOCKSOURCE, CLOCKEVENT DRIVERS
4839 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4840 M:      Thomas Gleixner <tglx@linutronix.de>
4841 L:      linux-kernel@vger.kernel.org
4842 S:      Supported
4843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4844 F:      Documentation/devicetree/bindings/timer/
4845 F:      drivers/clocksource/
4846
4847 CMPC ACPI DRIVER
4848 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4849 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4850 L:      platform-driver-x86@vger.kernel.org
4851 S:      Supported
4852 F:      drivers/platform/x86/classmate-laptop.c
4853
4854 COBALT MEDIA DRIVER
4855 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4856 L:      linux-media@vger.kernel.org
4857 S:      Supported
4858 W:      https://linuxtv.org
4859 T:      git git://linuxtv.org/media_tree.git
4860 F:      drivers/media/pci/cobalt/
4861
4862 COCCINELLE/Semantic Patches (SmPL)
4863 M:      Julia Lawall <Julia.Lawall@inria.fr>
4864 M:      Nicolas Palix <nicolas.palix@imag.fr>
4865 L:      cocci@inria.fr (moderated for non-subscribers)
4866 S:      Supported
4867 W:      https://coccinelle.gitlabpages.inria.fr/website/
4868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4869 F:      Documentation/dev-tools/coccinelle.rst
4870 F:      scripts/coccicheck
4871 F:      scripts/coccinelle/
4872
4873 CODA FILE SYSTEM
4874 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4875 M:      coda@cs.cmu.edu
4876 L:      codalist@coda.cs.cmu.edu
4877 S:      Maintained
4878 W:      http://www.coda.cs.cmu.edu/
4879 F:      Documentation/filesystems/coda.rst
4880 F:      fs/coda/
4881 F:      include/linux/coda*.h
4882 F:      include/uapi/linux/coda*.h
4883
4884 CODA V4L2 MEM2MEM DRIVER
4885 M:      Philipp Zabel <p.zabel@pengutronix.de>
4886 L:      linux-media@vger.kernel.org
4887 S:      Maintained
4888 F:      Documentation/devicetree/bindings/media/coda.yaml
4889 F:      drivers/media/platform/chips-media/
4890
4891 CODE OF CONDUCT
4892 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4893 S:      Supported
4894 F:      Documentation/process/code-of-conduct-interpretation.rst
4895 F:      Documentation/process/code-of-conduct.rst
4896
4897 COMEDI DRIVERS
4898 M:      Ian Abbott <abbotti@mev.co.uk>
4899 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4900 S:      Odd Fixes
4901 F:      drivers/comedi/
4902 F:      include/linux/comedi/
4903 F:      include/uapi/linux/comedi.h
4904
4905 COMMON CLK FRAMEWORK
4906 M:      Michael Turquette <mturquette@baylibre.com>
4907 M:      Stephen Boyd <sboyd@kernel.org>
4908 L:      linux-clk@vger.kernel.org
4909 S:      Maintained
4910 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4912 F:      Documentation/devicetree/bindings/clock/
4913 F:      drivers/clk/
4914 F:      include/linux/clk-pr*
4915 F:      include/linux/clk/
4916 F:      include/linux/of_clk.h
4917 X:      drivers/clk/clkdev.c
4918
4919 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4920 M:      Steve French <sfrench@samba.org>
4921 L:      linux-cifs@vger.kernel.org
4922 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4923 S:      Supported
4924 W:      http://linux-cifs.samba.org/
4925 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4926 F:      Documentation/admin-guide/cifs/
4927 F:      fs/cifs/
4928 F:      fs/smbfs_common/
4929
4930 COMPACTPCI HOTPLUG CORE
4931 M:      Scott Murray <scott@spiteful.org>
4932 L:      linux-pci@vger.kernel.org
4933 S:      Maintained
4934 F:      drivers/pci/hotplug/cpci_hotplug*
4935
4936 COMPACTPCI HOTPLUG GENERIC DRIVER
4937 M:      Scott Murray <scott@spiteful.org>
4938 L:      linux-pci@vger.kernel.org
4939 S:      Maintained
4940 F:      drivers/pci/hotplug/cpcihp_generic.c
4941
4942 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4943 M:      Scott Murray <scott@spiteful.org>
4944 L:      linux-pci@vger.kernel.org
4945 S:      Maintained
4946 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4947
4948 COMPAL LAPTOP SUPPORT
4949 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4950 L:      platform-driver-x86@vger.kernel.org
4951 S:      Maintained
4952 F:      drivers/platform/x86/compal-laptop.c
4953
4954 COMPILER ATTRIBUTES
4955 M:      Miguel Ojeda <ojeda@kernel.org>
4956 R:      Nick Desaulniers <ndesaulniers@google.com>
4957 S:      Maintained
4958 F:      include/linux/compiler_attributes.h
4959
4960 COMPUTE EXPRESS LINK (CXL)
4961 M:      Alison Schofield <alison.schofield@intel.com>
4962 M:      Vishal Verma <vishal.l.verma@intel.com>
4963 M:      Ira Weiny <ira.weiny@intel.com>
4964 M:      Ben Widawsky <ben.widawsky@intel.com>
4965 M:      Dan Williams <dan.j.williams@intel.com>
4966 L:      linux-cxl@vger.kernel.org
4967 S:      Maintained
4968 F:      drivers/cxl/
4969 F:      include/uapi/linux/cxl_mem.h
4970
4971 CONEXANT ACCESSRUNNER USB DRIVER
4972 L:      accessrunner-general@lists.sourceforge.net
4973 S:      Orphan
4974 W:      http://accessrunner.sourceforge.net/
4975 F:      drivers/usb/atm/cxacru.c
4976
4977 CONFIGFS
4978 M:      Joel Becker <jlbec@evilplan.org>
4979 M:      Christoph Hellwig <hch@lst.de>
4980 S:      Supported
4981 T:      git git://git.infradead.org/users/hch/configfs.git
4982 F:      fs/configfs/
4983 F:      include/linux/configfs.h
4984 F:      samples/configfs/
4985
4986 CONSOLE SUBSYSTEM
4987 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4988 S:      Supported
4989 F:      drivers/video/console/
4990 F:      include/linux/console*
4991
4992 CONTEXT TRACKING
4993 M:      Frederic Weisbecker <frederic@kernel.org>
4994 S:      Maintained
4995 F:      kernel/context_tracking.c
4996 F:      include/linux/context_tracking*
4997
4998 CONTROL GROUP (CGROUP)
4999 M:      Tejun Heo <tj@kernel.org>
5000 M:      Zefan Li <lizefan.x@bytedance.com>
5001 M:      Johannes Weiner <hannes@cmpxchg.org>
5002 L:      cgroups@vger.kernel.org
5003 S:      Maintained
5004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5005 F:      Documentation/admin-guide/cgroup-v1/
5006 F:      Documentation/admin-guide/cgroup-v2.rst
5007 F:      include/linux/cgroup*
5008 F:      kernel/cgroup/
5009
5010 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5011 M:      Tejun Heo <tj@kernel.org>
5012 M:      Jens Axboe <axboe@kernel.dk>
5013 L:      cgroups@vger.kernel.org
5014 L:      linux-block@vger.kernel.org
5015 T:      git git://git.kernel.dk/linux-block
5016 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5017 F:      block/bfq-cgroup.c
5018 F:      block/blk-cgroup.c
5019 F:      block/blk-iolatency.c
5020 F:      block/blk-throttle.c
5021 F:      include/linux/blk-cgroup.h
5022
5023 CONTROL GROUP - CPUSET
5024 M:      Zefan Li <lizefan.x@bytedance.com>
5025 L:      cgroups@vger.kernel.org
5026 S:      Maintained
5027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5028 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5029 F:      include/linux/cpuset.h
5030 F:      kernel/cgroup/cpuset.c
5031
5032 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5033 M:      Johannes Weiner <hannes@cmpxchg.org>
5034 M:      Michal Hocko <mhocko@kernel.org>
5035 M:      Roman Gushchin <roman.gushchin@linux.dev>
5036 M:      Shakeel Butt <shakeelb@google.com>
5037 L:      cgroups@vger.kernel.org
5038 L:      linux-mm@kvack.org
5039 S:      Maintained
5040 F:      mm/memcontrol.c
5041 F:      mm/swap_cgroup.c
5042
5043 CORETEMP HARDWARE MONITORING DRIVER
5044 M:      Fenghua Yu <fenghua.yu@intel.com>
5045 L:      linux-hwmon@vger.kernel.org
5046 S:      Maintained
5047 F:      Documentation/hwmon/coretemp.rst
5048 F:      drivers/hwmon/coretemp.c
5049
5050 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5051 M:      Marius Zachmann <mail@mariuszachmann.de>
5052 L:      linux-hwmon@vger.kernel.org
5053 S:      Maintained
5054 F:      drivers/hwmon/corsair-cpro.c
5055
5056 CORSAIR-PSU HARDWARE MONITOR DRIVER
5057 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5058 L:      linux-hwmon@vger.kernel.org
5059 S:      Maintained
5060 F:      Documentation/hwmon/corsair-psu.rst
5061 F:      drivers/hwmon/corsair-psu.c
5062
5063 COSA/SRP SYNC SERIAL DRIVER
5064 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
5065 S:      Maintained
5066 W:      http://www.fi.muni.cz/~kas/cosa/
5067 F:      drivers/net/wan/cosa*
5068
5069 COUNTER SUBSYSTEM
5070 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5071 L:      linux-iio@vger.kernel.org
5072 S:      Maintained
5073 T:      git git@gitlab.com:vilhelmgray/counter.git
5074 F:      Documentation/ABI/testing/sysfs-bus-counter
5075 F:      Documentation/driver-api/generic-counter.rst
5076 F:      drivers/counter/
5077 F:      include/linux/counter.h
5078 F:      include/uapi/linux/counter.h
5079 F:      tools/counter/
5080
5081 CP2615 I2C DRIVER
5082 M:      Bence Csókás <bence98@sch.bme.hu>
5083 S:      Maintained
5084 F:      drivers/i2c/busses/i2c-cp2615.c
5085
5086 CPMAC ETHERNET DRIVER
5087 M:      Florian Fainelli <f.fainelli@gmail.com>
5088 L:      netdev@vger.kernel.org
5089 S:      Maintained
5090 F:      drivers/net/ethernet/ti/cpmac.c
5091
5092 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5093 M:      Viresh Kumar <viresh.kumar@linaro.org>
5094 M:      Sudeep Holla <sudeep.holla@arm.com>
5095 L:      linux-pm@vger.kernel.org
5096 S:      Maintained
5097 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5098 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5099
5100 CPU FREQUENCY SCALING FRAMEWORK
5101 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5102 M:      Viresh Kumar <viresh.kumar@linaro.org>
5103 L:      linux-pm@vger.kernel.org
5104 S:      Maintained
5105 B:      https://bugzilla.kernel.org
5106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5108 F:      Documentation/admin-guide/pm/cpufreq.rst
5109 F:      Documentation/admin-guide/pm/intel_pstate.rst
5110 F:      Documentation/cpu-freq/
5111 F:      Documentation/devicetree/bindings/cpufreq/
5112 F:      drivers/cpufreq/
5113 F:      include/linux/cpufreq.h
5114 F:      include/linux/sched/cpufreq.h
5115 F:      kernel/sched/cpufreq*.c
5116 F:      tools/testing/selftests/cpufreq/
5117
5118 CPU IDLE TIME MANAGEMENT FRAMEWORK
5119 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5120 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5121 L:      linux-pm@vger.kernel.org
5122 S:      Maintained
5123 B:      https://bugzilla.kernel.org
5124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5125 F:      Documentation/admin-guide/pm/cpuidle.rst
5126 F:      Documentation/driver-api/pm/cpuidle.rst
5127 F:      drivers/cpuidle/
5128 F:      include/linux/cpuidle.h
5129
5130 CPU POWER MONITORING SUBSYSTEM
5131 M:      Thomas Renninger <trenn@suse.com>
5132 M:      Shuah Khan <shuah@kernel.org>
5133 M:      Shuah Khan <skhan@linuxfoundation.org>
5134 L:      linux-pm@vger.kernel.org
5135 S:      Maintained
5136 F:      tools/power/cpupower/
5137
5138 CPUID/MSR DRIVER
5139 M:      "H. Peter Anvin" <hpa@zytor.com>
5140 S:      Maintained
5141 F:      arch/x86/kernel/cpuid.c
5142 F:      arch/x86/kernel/msr.c
5143
5144 CPUIDLE DRIVER - ARM BIG LITTLE
5145 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5146 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5147 L:      linux-pm@vger.kernel.org
5148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5149 S:      Maintained
5150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5151 F:      drivers/cpuidle/cpuidle-big_little.c
5152
5153 CPUIDLE DRIVER - ARM EXYNOS
5154 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5155 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5156 M:      Kukjin Kim <kgene@kernel.org>
5157 L:      linux-pm@vger.kernel.org
5158 L:      linux-samsung-soc@vger.kernel.org
5159 S:      Supported
5160 F:      arch/arm/mach-exynos/pm.c
5161 F:      drivers/cpuidle/cpuidle-exynos.c
5162 F:      include/linux/platform_data/cpuidle-exynos.h
5163
5164 CPUIDLE DRIVER - ARM PSCI
5165 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5166 M:      Sudeep Holla <sudeep.holla@arm.com>
5167 L:      linux-pm@vger.kernel.org
5168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5169 S:      Supported
5170 F:      drivers/cpuidle/cpuidle-psci.c
5171
5172 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5173 M:      Ulf Hansson <ulf.hansson@linaro.org>
5174 L:      linux-pm@vger.kernel.org
5175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5176 S:      Supported
5177 F:      drivers/cpuidle/cpuidle-psci.h
5178 F:      drivers/cpuidle/cpuidle-psci-domain.c
5179
5180 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5181 M:      Ulf Hansson <ulf.hansson@linaro.org>
5182 L:      linux-pm@vger.kernel.org
5183 S:      Supported
5184 F:      drivers/cpuidle/dt_idle_genpd.c
5185 F:      drivers/cpuidle/dt_idle_genpd.h
5186
5187 CPUIDLE DRIVER - RISC-V SBI
5188 M:      Anup Patel <anup@brainfault.org>
5189 L:      linux-pm@vger.kernel.org
5190 L:      linux-riscv@lists.infradead.org
5191 S:      Maintained
5192 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5193
5194 CRAMFS FILESYSTEM
5195 M:      Nicolas Pitre <nico@fluxnic.net>
5196 S:      Maintained
5197 F:      Documentation/filesystems/cramfs.rst
5198 F:      fs/cramfs/
5199
5200 CREATIVE SB0540
5201 M:      Bastien Nocera <hadess@hadess.net>
5202 L:      linux-input@vger.kernel.org
5203 S:      Maintained
5204 F:      drivers/hid/hid-creative-sb0540.c
5205
5206 CRYPTO API
5207 M:      Herbert Xu <herbert@gondor.apana.org.au>
5208 M:      "David S. Miller" <davem@davemloft.net>
5209 L:      linux-crypto@vger.kernel.org
5210 S:      Maintained
5211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5213 F:      Documentation/crypto/
5214 F:      Documentation/devicetree/bindings/crypto/
5215 F:      arch/*/crypto/
5216 F:      crypto/
5217 F:      drivers/crypto/
5218 F:      include/crypto/
5219 F:      include/linux/crypto*
5220 F:      lib/crypto/
5221
5222 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5223 M:      Neil Horman <nhorman@tuxdriver.com>
5224 L:      linux-crypto@vger.kernel.org
5225 S:      Maintained
5226 F:      crypto/ansi_cprng.c
5227 F:      crypto/rng.c
5228
5229 CS3308 MEDIA DRIVER
5230 M:      Hans Verkuil <hverkuil@xs4all.nl>
5231 L:      linux-media@vger.kernel.org
5232 S:      Odd Fixes
5233 W:      http://linuxtv.org
5234 T:      git git://linuxtv.org/media_tree.git
5235 F:      drivers/media/i2c/cs3308.c
5236
5237 CS5535 Audio ALSA driver
5238 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5239 S:      Maintained
5240 F:      sound/pci/cs5535audio/
5241
5242 CSI DRIVERS FOR ALLWINNER V3s
5243 M:      Yong Deng <yong.deng@magewell.com>
5244 L:      linux-media@vger.kernel.org
5245 S:      Maintained
5246 T:      git git://linuxtv.org/media_tree.git
5247 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5248 F:      drivers/media/platform/sunxi/sun6i-csi/
5249
5250 CW1200 WLAN driver
5251 M:      Solomon Peachy <pizza@shaftnet.org>
5252 S:      Maintained
5253 F:      drivers/net/wireless/st/cw1200/
5254
5255 CX18 VIDEO4LINUX DRIVER
5256 M:      Andy Walls <awalls@md.metrocast.net>
5257 L:      linux-media@vger.kernel.org
5258 S:      Maintained
5259 W:      https://linuxtv.org
5260 T:      git git://linuxtv.org/media_tree.git
5261 F:      drivers/media/pci/cx18/
5262 F:      include/uapi/linux/ivtv*
5263
5264 CX2341X MPEG ENCODER HELPER MODULE
5265 M:      Hans Verkuil <hverkuil@xs4all.nl>
5266 L:      linux-media@vger.kernel.org
5267 S:      Maintained
5268 W:      https://linuxtv.org
5269 T:      git git://linuxtv.org/media_tree.git
5270 F:      drivers/media/common/cx2341x*
5271 F:      include/media/drv-intf/cx2341x.h
5272
5273 CX24120 MEDIA DRIVER
5274 M:      Jemma Denson <jdenson@gmail.com>
5275 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5276 L:      linux-media@vger.kernel.org
5277 S:      Maintained
5278 W:      https://linuxtv.org
5279 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5280 F:      drivers/media/dvb-frontends/cx24120*
5281
5282 CX88 VIDEO4LINUX DRIVER
5283 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5284 L:      linux-media@vger.kernel.org
5285 S:      Odd fixes
5286 W:      https://linuxtv.org
5287 T:      git git://linuxtv.org/media_tree.git
5288 F:      Documentation/driver-api/media/drivers/cx88*
5289 F:      drivers/media/pci/cx88/
5290
5291 CXD2820R MEDIA DRIVER
5292 M:      Antti Palosaari <crope@iki.fi>
5293 L:      linux-media@vger.kernel.org
5294 S:      Maintained
5295 W:      https://linuxtv.org
5296 W:      http://palosaari.fi/linux/
5297 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5298 T:      git git://linuxtv.org/anttip/media_tree.git
5299 F:      drivers/media/dvb-frontends/cxd2820r*
5300
5301 CXGB3 ETHERNET DRIVER (CXGB3)
5302 M:      Raju Rangoju <rajur@chelsio.com>
5303 L:      netdev@vger.kernel.org
5304 S:      Supported
5305 W:      http://www.chelsio.com
5306 F:      drivers/net/ethernet/chelsio/cxgb3/
5307
5308 CXGB3 ISCSI DRIVER (CXGB3I)
5309 M:      Karen Xie <kxie@chelsio.com>
5310 L:      linux-scsi@vger.kernel.org
5311 S:      Supported
5312 W:      http://www.chelsio.com
5313 F:      drivers/scsi/cxgbi/cxgb3i
5314
5315 CXGB4 CRYPTO DRIVER (chcr)
5316 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5317 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5318 M:      Rohit Maheshwari <rohitm@chelsio.com>
5319 L:      linux-crypto@vger.kernel.org
5320 S:      Supported
5321 W:      http://www.chelsio.com
5322 F:      drivers/crypto/chelsio
5323
5324 CXGB4 INLINE CRYPTO DRIVER
5325 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5326 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5327 M:      Rohit Maheshwari <rohitm@chelsio.com>
5328 L:      netdev@vger.kernel.org
5329 S:      Supported
5330 W:      http://www.chelsio.com
5331 F:      drivers/net/ethernet/chelsio/inline_crypto/
5332
5333 CXGB4 ETHERNET DRIVER (CXGB4)
5334 M:      Raju Rangoju <rajur@chelsio.com>
5335 L:      netdev@vger.kernel.org
5336 S:      Supported
5337 W:      http://www.chelsio.com
5338 F:      drivers/net/ethernet/chelsio/cxgb4/
5339
5340 CXGB4 ISCSI DRIVER (CXGB4I)
5341 M:      Karen Xie <kxie@chelsio.com>
5342 L:      linux-scsi@vger.kernel.org
5343 S:      Supported
5344 W:      http://www.chelsio.com
5345 F:      drivers/scsi/cxgbi/cxgb4i
5346
5347 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5348 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5349 L:      linux-rdma@vger.kernel.org
5350 S:      Supported
5351 W:      http://www.openfabrics.org
5352 F:      drivers/infiniband/hw/cxgb4/
5353 F:      include/uapi/rdma/cxgb4-abi.h
5354
5355 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5356 M:      Raju Rangoju <rajur@chelsio.com>
5357 L:      netdev@vger.kernel.org
5358 S:      Supported
5359 W:      http://www.chelsio.com
5360 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5361
5362 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5363 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5364 M:      Andrew Donnellan <ajd@linux.ibm.com>
5365 L:      linuxppc-dev@lists.ozlabs.org
5366 S:      Supported
5367 F:      Documentation/ABI/testing/sysfs-class-cxl
5368 F:      Documentation/powerpc/cxl.rst
5369 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5370 F:      drivers/misc/cxl/
5371 F:      include/misc/cxl*
5372 F:      include/uapi/misc/cxl.h
5373
5374 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5375 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5376 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5377 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5378 L:      linux-scsi@vger.kernel.org
5379 S:      Supported
5380 F:      Documentation/powerpc/cxlflash.rst
5381 F:      drivers/scsi/cxlflash/
5382 F:      include/uapi/scsi/cxlflash_ioctl.h
5383
5384 CYBERPRO FB DRIVER
5385 M:      Russell King <linux@armlinux.org.uk>
5386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5387 S:      Maintained
5388 W:      http://www.armlinux.org.uk/
5389 F:      drivers/video/fbdev/cyber2000fb.*
5390
5391 CYCLADES PC300 DRIVER
5392 S:      Orphan
5393 F:      drivers/net/wan/pc300*
5394
5395 CYPRESS_FIRMWARE MEDIA DRIVER
5396 M:      Antti Palosaari <crope@iki.fi>
5397 L:      linux-media@vger.kernel.org
5398 S:      Maintained
5399 W:      https://linuxtv.org
5400 W:      http://palosaari.fi/linux/
5401 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5402 T:      git git://linuxtv.org/anttip/media_tree.git
5403 F:      drivers/media/common/cypress_firmware*
5404
5405 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5406 M:      Linus Walleij <linus.walleij@linaro.org>
5407 L:      linux-input@vger.kernel.org
5408 S:      Maintained
5409 F:      drivers/input/touchscreen/cy8ctma140.c
5410
5411 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5412 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5413 L:      linux-input@vger.kernel.org
5414 S:      Maintained
5415 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5416 F:      drivers/input/keyboard/cypress-sf.c
5417
5418 CYTTSP TOUCHSCREEN DRIVER
5419 M:      Linus Walleij <linus.walleij@linaro.org>
5420 L:      linux-input@vger.kernel.org
5421 S:      Maintained
5422 F:      drivers/input/touchscreen/cyttsp*
5423
5424 D-LINK DIR-685 TOUCHKEYS DRIVER
5425 M:      Linus Walleij <linus.walleij@linaro.org>
5426 L:      linux-input@vger.kernel.org
5427 S:      Supported
5428 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5429
5430 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5431 M:      Joshua Kinard <kumba@gentoo.org>
5432 S:      Maintained
5433 F:      drivers/rtc/rtc-ds1685.c
5434 F:      include/linux/rtc/ds1685.h
5435
5436 DAMA SLAVE for AX.25
5437 M:      Joerg Reuter <jreuter@yaina.de>
5438 L:      linux-hams@vger.kernel.org
5439 S:      Maintained
5440 W:      http://yaina.de/jreuter/
5441 W:      http://www.qsl.net/dl1bke/
5442 F:      net/ax25/af_ax25.c
5443 F:      net/ax25/ax25_dev.c
5444 F:      net/ax25/ax25_ds_*
5445 F:      net/ax25/ax25_in.c
5446 F:      net/ax25/ax25_out.c
5447 F:      net/ax25/ax25_timer.c
5448 F:      net/ax25/sysctl_net_ax25.c
5449
5450 DATA ACCESS MONITOR
5451 M:      SeongJae Park <sj@kernel.org>
5452 L:      linux-mm@kvack.org
5453 S:      Maintained
5454 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5455 F:      Documentation/admin-guide/mm/damon/
5456 F:      Documentation/vm/damon/
5457 F:      include/linux/damon.h
5458 F:      include/trace/events/damon.h
5459 F:      mm/damon/
5460 F:      tools/testing/selftests/damon/
5461
5462 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5463 L:      netdev@vger.kernel.org
5464 S:      Orphan
5465 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5466 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5467
5468 DC390/AM53C974 SCSI driver
5469 M:      Hannes Reinecke <hare@suse.com>
5470 L:      linux-scsi@vger.kernel.org
5471 S:      Maintained
5472 F:      drivers/scsi/am53c974.c
5473
5474 DC395x SCSI driver
5475 M:      Oliver Neukum <oliver@neukum.org>
5476 M:      Ali Akcaagac <aliakc@web.de>
5477 M:      Jamie Lenehan <lenehan@twibble.org>
5478 L:      dc395x@twibble.org
5479 S:      Maintained
5480 W:      http://twibble.org/dist/dc395x/
5481 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5482 F:      Documentation/scsi/dc395x.rst
5483 F:      drivers/scsi/dc395x.*
5484
5485 DCCP PROTOCOL
5486 L:      dccp@vger.kernel.org
5487 S:      Orphan
5488 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5489 F:      include/linux/dccp.h
5490 F:      include/linux/tfrc.h
5491 F:      include/uapi/linux/dccp.h
5492 F:      net/dccp/
5493
5494 DECnet NETWORK LAYER
5495 L:      linux-decnet-user@lists.sourceforge.net
5496 S:      Orphan
5497 W:      http://linux-decnet.sourceforge.net
5498 F:      Documentation/networking/decnet.rst
5499 F:      net/decnet/
5500
5501 DECSTATION PLATFORM SUPPORT
5502 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5503 L:      linux-mips@vger.kernel.org
5504 S:      Maintained
5505 W:      http://www.linux-mips.org/wiki/DECstation
5506 F:      arch/mips/dec/
5507 F:      arch/mips/include/asm/dec/
5508 F:      arch/mips/include/asm/mach-dec/
5509
5510 DEFXX FDDI NETWORK DRIVER
5511 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5512 S:      Maintained
5513 F:      drivers/net/fddi/defxx.*
5514
5515 DEFZA FDDI NETWORK DRIVER
5516 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5517 S:      Maintained
5518 F:      drivers/net/fddi/defza.*
5519
5520 DEINTERLACE DRIVERS FOR ALLWINNER H3
5521 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5522 L:      linux-media@vger.kernel.org
5523 S:      Maintained
5524 T:      git git://linuxtv.org/media_tree.git
5525 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5526 F:      drivers/media/platform/sunxi/sun8i-di/
5527
5528 DELL LAPTOP DRIVER
5529 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5530 M:      Pali Rohár <pali@kernel.org>
5531 L:      platform-driver-x86@vger.kernel.org
5532 S:      Maintained
5533 F:      drivers/platform/x86/dell/dell-laptop.c
5534
5535 DELL LAPTOP FREEFALL DRIVER
5536 M:      Pali Rohár <pali@kernel.org>
5537 S:      Maintained
5538 F:      drivers/platform/x86/dell/dell-smo8800.c
5539
5540 DELL LAPTOP RBTN DRIVER
5541 M:      Pali Rohár <pali@kernel.org>
5542 S:      Maintained
5543 F:      drivers/platform/x86/dell/dell-rbtn.*
5544
5545 DELL LAPTOP SMM DRIVER
5546 M:      Pali Rohár <pali@kernel.org>
5547 S:      Maintained
5548 F:      Documentation/ABI/obsolete/procfs-i8k
5549 F:      drivers/hwmon/dell-smm-hwmon.c
5550 F:      include/uapi/linux/i8k.h
5551
5552 DELL REMOTE BIOS UPDATE DRIVER
5553 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5554 L:      platform-driver-x86@vger.kernel.org
5555 S:      Maintained
5556 F:      drivers/platform/x86/dell/dell_rbu.c
5557
5558 DELL SMBIOS DRIVER
5559 M:      Pali Rohár <pali@kernel.org>
5560 L:      Dell.Client.Kernel@dell.com
5561 L:      platform-driver-x86@vger.kernel.org
5562 S:      Maintained
5563 F:      drivers/platform/x86/dell/dell-smbios.*
5564
5565 DELL SMBIOS SMM DRIVER
5566 L:      Dell.Client.Kernel@dell.com
5567 L:      platform-driver-x86@vger.kernel.org
5568 S:      Maintained
5569 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5570
5571 DELL SMBIOS WMI DRIVER
5572 L:      Dell.Client.Kernel@dell.com
5573 L:      platform-driver-x86@vger.kernel.org
5574 S:      Maintained
5575 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5576 F:      tools/wmi/dell-smbios-example.c
5577
5578 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5579 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5580 L:      platform-driver-x86@vger.kernel.org
5581 S:      Maintained
5582 F:      Documentation/driver-api/dcdbas.rst
5583 F:      drivers/platform/x86/dell/dcdbas.*
5584
5585 DELL WMI DESCRIPTOR DRIVER
5586 L:      Dell.Client.Kernel@dell.com
5587 S:      Maintained
5588 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5589
5590 DELL WMI SYSMAN DRIVER
5591 M:      Divya Bharathi <divya.bharathi@dell.com>
5592 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5593 L:      Dell.Client.Kernel@dell.com
5594 L:      platform-driver-x86@vger.kernel.org
5595 S:      Maintained
5596 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5597 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5598
5599 DELL WMI NOTIFICATIONS DRIVER
5600 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5601 M:      Pali Rohár <pali@kernel.org>
5602 S:      Maintained
5603 F:      drivers/platform/x86/dell/dell-wmi-base.c
5604
5605 DELL WMI HARDWARE PRIVACY SUPPORT
5606 M:      Perry Yuan <Perry.Yuan@dell.com>
5607 L:      Dell.Client.Kernel@dell.com
5608 L:      platform-driver-x86@vger.kernel.org
5609 S:      Maintained
5610 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5611
5612 DELTA ST MEDIA DRIVER
5613 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5614 L:      linux-media@vger.kernel.org
5615 S:      Supported
5616 W:      https://linuxtv.org
5617 T:      git git://linuxtv.org/media_tree.git
5618 F:      drivers/media/platform/st/sti/delta
5619
5620 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5621 M:      Zev Weiss <zev@bewilderbeest.net>
5622 L:      linux-hwmon@vger.kernel.org
5623 S:      Maintained
5624 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5625
5626 DELTA DPS920AB PSU DRIVER
5627 M:      Robert Marko <robert.marko@sartura.hr>
5628 L:      linux-hwmon@vger.kernel.org
5629 S:      Maintained
5630 F:      Documentation/hwmon/dps920ab.rst
5631 F:      drivers/hwmon/pmbus/dps920ab.c
5632
5633 DELTA NETWORKS TN48M CPLD DRIVERS
5634 M:      Robert Marko <robert.marko@sartura.hr>
5635 S:      Maintained
5636 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5637 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5638 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5639 F:      drivers/gpio/gpio-tn48m.c
5640 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5641
5642 DENALI NAND DRIVER
5643 L:      linux-mtd@lists.infradead.org
5644 S:      Orphan
5645 F:      drivers/mtd/nand/raw/denali*
5646
5647 DESIGNWARE EDMA CORE IP DRIVER
5648 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5649 L:      dmaengine@vger.kernel.org
5650 S:      Maintained
5651 F:      drivers/dma/dw-edma/
5652 F:      include/linux/dma/edma.h
5653
5654 DESIGNWARE XDATA IP DRIVER
5655 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5656 L:      linux-pci@vger.kernel.org
5657 S:      Maintained
5658 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5659 F:      drivers/misc/dw-xdata-pcie.c
5660
5661 DESIGNWARE USB2 DRD IP DRIVER
5662 M:      Minas Harutyunyan <hminas@synopsys.com>
5663 L:      linux-usb@vger.kernel.org
5664 S:      Maintained
5665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5666 F:      drivers/usb/dwc2/
5667
5668 DESIGNWARE USB3 DRD IP DRIVER
5669 M:      Felipe Balbi <balbi@kernel.org>
5670 L:      linux-usb@vger.kernel.org
5671 S:      Maintained
5672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5673 F:      drivers/usb/dwc3/
5674
5675 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5676 M:      Andreas Klinger <ak@it-klinger.de>
5677 L:      linux-iio@vger.kernel.org
5678 S:      Maintained
5679 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5680 F:      drivers/iio/proximity/srf*.c
5681
5682 DEVICE COREDUMP (DEV_COREDUMP)
5683 M:      Johannes Berg <johannes@sipsolutions.net>
5684 L:      linux-kernel@vger.kernel.org
5685 S:      Maintained
5686 F:      drivers/base/devcoredump.c
5687 F:      include/linux/devcoredump.h
5688
5689 DEVICE DEPENDENCY HELPER SCRIPT
5690 M:      Saravana Kannan <saravanak@google.com>
5691 L:      linux-kernel@vger.kernel.org
5692 S:      Maintained
5693 F:      scripts/dev-needs.sh
5694
5695 DEVICE DIRECT ACCESS (DAX)
5696 M:      Dan Williams <dan.j.williams@intel.com>
5697 M:      Vishal Verma <vishal.l.verma@intel.com>
5698 M:      Dave Jiang <dave.jiang@intel.com>
5699 L:      nvdimm@lists.linux.dev
5700 S:      Supported
5701 F:      drivers/dax/
5702
5703 DEVICE FREQUENCY (DEVFREQ)
5704 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5705 M:      Kyungmin Park <kyungmin.park@samsung.com>
5706 M:      Chanwoo Choi <cw00.choi@samsung.com>
5707 L:      linux-pm@vger.kernel.org
5708 S:      Maintained
5709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5710 F:      Documentation/devicetree/bindings/devfreq/
5711 F:      drivers/devfreq/
5712 F:      include/linux/devfreq.h
5713 F:      include/trace/events/devfreq.h
5714
5715 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5716 M:      Chanwoo Choi <cw00.choi@samsung.com>
5717 L:      linux-pm@vger.kernel.org
5718 S:      Supported
5719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5720 F:      Documentation/devicetree/bindings/devfreq/event/
5721 F:      drivers/devfreq/devfreq-event.c
5722 F:      drivers/devfreq/event/
5723 F:      include/dt-bindings/pmu/exynos_ppmu.h
5724 F:      include/linux/devfreq-event.h
5725
5726 DEVICE NUMBER REGISTRY
5727 M:      Torben Mathiasen <device@lanana.org>
5728 S:      Maintained
5729 W:      http://lanana.org/docs/device-list/index.html
5730
5731 DEVICE RESOURCE MANAGEMENT HELPERS
5732 M:      Hans de Goede <hdegoede@redhat.com>
5733 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5734 S:      Maintained
5735 F:      include/linux/devm-helpers.h
5736
5737 DEVICE-MAPPER  (LVM)
5738 M:      Alasdair Kergon <agk@redhat.com>
5739 M:      Mike Snitzer <snitzer@kernel.org>
5740 M:      dm-devel@redhat.com
5741 L:      dm-devel@redhat.com
5742 S:      Maintained
5743 W:      http://sources.redhat.com/dm
5744 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5746 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5747 F:      Documentation/admin-guide/device-mapper/
5748 F:      drivers/md/Kconfig
5749 F:      drivers/md/Makefile
5750 F:      drivers/md/dm*
5751 F:      drivers/md/persistent-data/
5752 F:      include/linux/device-mapper.h
5753 F:      include/linux/dm-*.h
5754 F:      include/uapi/linux/dm-*.h
5755
5756 DEVLINK
5757 M:      Jiri Pirko <jiri@nvidia.com>
5758 L:      netdev@vger.kernel.org
5759 S:      Supported
5760 F:      Documentation/networking/devlink
5761 F:      include/net/devlink.h
5762 F:      include/uapi/linux/devlink.h
5763 F:      net/core/devlink.c
5764
5765 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5766 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5767 L:      kernel@dh-electronics.com
5768 S:      Maintained
5769 F:      arch/arm/boot/dts/imx6*-dhcom-*
5770
5771 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5772 M:      Marek Vasut <marex@denx.de>
5773 L:      kernel@dh-electronics.com
5774 S:      Maintained
5775 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5776 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5777
5778 DIALOG SEMICONDUCTOR DRIVERS
5779 M:      Support Opensource <support.opensource@diasemi.com>
5780 S:      Supported
5781 W:      http://www.dialog-semiconductor.com/products
5782 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5783 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5784 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5785 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5786 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5787 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5788 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5789 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5790 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5791 F:      Documentation/hwmon/da90??.rst
5792 F:      drivers/gpio/gpio-da90??.c
5793 F:      drivers/hwmon/da90??-hwmon.c
5794 F:      drivers/iio/adc/da91??-*.c
5795 F:      drivers/input/misc/da72??.[ch]
5796 F:      drivers/input/misc/da90??_onkey.c
5797 F:      drivers/input/touchscreen/da9052_tsi.c
5798 F:      drivers/leds/leds-da90??.c
5799 F:      drivers/mfd/da903x.c
5800 F:      drivers/mfd/da90??-*.c
5801 F:      drivers/mfd/da91??-*.c
5802 F:      drivers/pinctrl/pinctrl-da90??.c
5803 F:      drivers/power/supply/da9052-battery.c
5804 F:      drivers/power/supply/da91??-*.c
5805 F:      drivers/regulator/da9???-regulator.[ch]
5806 F:      drivers/regulator/slg51000-regulator.[ch]
5807 F:      drivers/rtc/rtc-da90??.c
5808 F:      drivers/thermal/da90??-thermal.c
5809 F:      drivers/video/backlight/da90??_bl.c
5810 F:      drivers/watchdog/da90??_wdt.c
5811 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5812 F:      include/linux/mfd/da903x.h
5813 F:      include/linux/mfd/da9052/
5814 F:      include/linux/mfd/da9055/
5815 F:      include/linux/mfd/da9062/
5816 F:      include/linux/mfd/da9063/
5817 F:      include/linux/mfd/da9150/
5818 F:      include/linux/regulator/da9211.h
5819 F:      include/sound/da[79]*.h
5820 F:      sound/soc/codecs/da[79]*.[ch]
5821
5822 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5823 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5824 L:      linux-gpio@vger.kernel.org
5825 S:      Maintained
5826 F:      drivers/gpio/gpio-gpio-mm.c
5827
5828 DIOLAN U2C-12 I2C DRIVER
5829 M:      Guenter Roeck <linux@roeck-us.net>
5830 L:      linux-i2c@vger.kernel.org
5831 S:      Maintained
5832 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5833
5834 DIRECTORY NOTIFICATION (DNOTIFY)
5835 M:      Jan Kara <jack@suse.cz>
5836 R:      Amir Goldstein <amir73il@gmail.com>
5837 L:      linux-fsdevel@vger.kernel.org
5838 S:      Maintained
5839 F:      Documentation/filesystems/dnotify.rst
5840 F:      fs/notify/dnotify/
5841 F:      include/linux/dnotify.h
5842
5843 DISK GEOMETRY AND PARTITION HANDLING
5844 M:      Andries Brouwer <aeb@cwi.nl>
5845 S:      Maintained
5846 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5847 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5848 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5849
5850 DISKQUOTA
5851 M:      Jan Kara <jack@suse.com>
5852 S:      Maintained
5853 F:      Documentation/filesystems/quota.rst
5854 F:      fs/quota/
5855 F:      include/linux/quota*.h
5856 F:      include/uapi/linux/quota*.h
5857
5858 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5859 M:      Bernie Thompson <bernie@plugable.com>
5860 L:      linux-fbdev@vger.kernel.org
5861 S:      Maintained
5862 W:      http://plugable.com/category/projects/udlfb/
5863 F:      Documentation/fb/udlfb.rst
5864 F:      drivers/video/fbdev/udlfb.c
5865 F:      include/video/udlfb.h
5866
5867 DISTRIBUTED LOCK MANAGER (DLM)
5868 M:      Christine Caulfield <ccaulfie@redhat.com>
5869 M:      David Teigland <teigland@redhat.com>
5870 L:      cluster-devel@redhat.com
5871 S:      Supported
5872 W:      http://sources.redhat.com/cluster/
5873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5874 F:      fs/dlm/
5875
5876 DMA BUFFER SHARING FRAMEWORK
5877 M:      Sumit Semwal <sumit.semwal@linaro.org>
5878 M:      Christian König <christian.koenig@amd.com>
5879 L:      linux-media@vger.kernel.org
5880 L:      dri-devel@lists.freedesktop.org
5881 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5882 S:      Maintained
5883 T:      git git://anongit.freedesktop.org/drm/drm-misc
5884 F:      Documentation/driver-api/dma-buf.rst
5885 F:      drivers/dma-buf/
5886 F:      include/linux/*fence.h
5887 F:      include/linux/dma-buf.h
5888 F:      include/linux/dma-resv.h
5889 K:      \bdma_(?:buf|fence|resv)\b
5890
5891 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5892 M:      Vinod Koul <vkoul@kernel.org>
5893 L:      dmaengine@vger.kernel.org
5894 S:      Maintained
5895 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5897 F:      Documentation/devicetree/bindings/dma/
5898 F:      Documentation/driver-api/dmaengine/
5899 F:      drivers/dma/
5900 F:      include/linux/dma/
5901 F:      include/linux/dmaengine.h
5902 F:      include/linux/of_dma.h
5903
5904 DMA MAPPING HELPERS
5905 M:      Christoph Hellwig <hch@lst.de>
5906 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5907 R:      Robin Murphy <robin.murphy@arm.com>
5908 L:      iommu@lists.linux-foundation.org
5909 S:      Supported
5910 W:      http://git.infradead.org/users/hch/dma-mapping.git
5911 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5912 F:      include/asm-generic/dma-mapping.h
5913 F:      include/linux/dma-direct.h
5914 F:      include/linux/dma-mapping.h
5915 F:      include/linux/dma-map-ops.h
5916 F:      kernel/dma/
5917
5918 DMA MAPPING BENCHMARK
5919 M:      Xiang Chen <chenxiang66@hisilicon.com>
5920 L:      iommu@lists.linux-foundation.org
5921 F:      kernel/dma/map_benchmark.c
5922 F:      tools/testing/selftests/dma/
5923
5924 DMA-BUF HEAPS FRAMEWORK
5925 M:      Sumit Semwal <sumit.semwal@linaro.org>
5926 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
5927 R:      Liam Mark <lmark@codeaurora.org>
5928 R:      Laura Abbott <labbott@redhat.com>
5929 R:      Brian Starkey <Brian.Starkey@arm.com>
5930 R:      John Stultz <john.stultz@linaro.org>
5931 L:      linux-media@vger.kernel.org
5932 L:      dri-devel@lists.freedesktop.org
5933 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5934 S:      Maintained
5935 T:      git git://anongit.freedesktop.org/drm/drm-misc
5936 F:      drivers/dma-buf/dma-heap.c
5937 F:      drivers/dma-buf/heaps/*
5938 F:      include/linux/dma-heap.h
5939 F:      include/uapi/linux/dma-heap.h
5940
5941 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5942 M:      Lukasz Luba <lukasz.luba@arm.com>
5943 L:      linux-pm@vger.kernel.org
5944 L:      linux-samsung-soc@vger.kernel.org
5945 S:      Maintained
5946 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5947 F:      drivers/memory/samsung/exynos5422-dmc.c
5948
5949 DME1737 HARDWARE MONITOR DRIVER
5950 M:      Juerg Haefliger <juergh@gmail.com>
5951 L:      linux-hwmon@vger.kernel.org
5952 S:      Maintained
5953 F:      Documentation/hwmon/dme1737.rst
5954 F:      drivers/hwmon/dme1737.c
5955
5956 DMI/SMBIOS SUPPORT
5957 M:      Jean Delvare <jdelvare@suse.com>
5958 S:      Maintained
5959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5960 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5961 F:      drivers/firmware/dmi-id.c
5962 F:      drivers/firmware/dmi_scan.c
5963 F:      include/linux/dmi.h
5964
5965 DOCUMENTATION
5966 M:      Jonathan Corbet <corbet@lwn.net>
5967 L:      linux-doc@vger.kernel.org
5968 S:      Maintained
5969 P:      Documentation/doc-guide/maintainer-profile.rst
5970 T:      git git://git.lwn.net/linux.git docs-next
5971 F:      Documentation/
5972 F:      scripts/documentation-file-ref-check
5973 F:      scripts/kernel-doc
5974 F:      scripts/sphinx-pre-install
5975 X:      Documentation/ABI/
5976 X:      Documentation/admin-guide/media/
5977 X:      Documentation/devicetree/
5978 X:      Documentation/driver-api/media/
5979 X:      Documentation/firmware-guide/acpi/
5980 X:      Documentation/i2c/
5981 X:      Documentation/power/
5982 X:      Documentation/spi/
5983 X:      Documentation/userspace-api/media/
5984
5985 DOCUMENTATION REPORTING ISSUES
5986 M:      Thorsten Leemhuis <linux@leemhuis.info>
5987 L:      linux-doc@vger.kernel.org
5988 S:      Maintained
5989 F:      Documentation/admin-guide/reporting-issues.rst
5990
5991 DOCUMENTATION SCRIPTS
5992 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5993 L:      linux-doc@vger.kernel.org
5994 S:      Maintained
5995 F:      Documentation/sphinx/parse-headers.pl
5996 F:      scripts/documentation-file-ref-check
5997 F:      scripts/sphinx-pre-install
5998
5999 DOCUMENTATION/ITALIAN
6000 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6001 L:      linux-doc@vger.kernel.org
6002 S:      Maintained
6003 F:      Documentation/translations/it_IT
6004
6005 DONGWOON DW9714 LENS VOICE COIL DRIVER
6006 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6007 L:      linux-media@vger.kernel.org
6008 S:      Maintained
6009 T:      git git://linuxtv.org/media_tree.git
6010 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6011 F:      drivers/media/i2c/dw9714.c
6012
6013 DONGWOON DW9768 LENS VOICE COIL DRIVER
6014 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6015 L:      linux-media@vger.kernel.org
6016 S:      Maintained
6017 T:      git git://linuxtv.org/media_tree.git
6018 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6019 F:      drivers/media/i2c/dw9768.c
6020
6021 DONGWOON DW9807 LENS VOICE COIL DRIVER
6022 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6023 L:      linux-media@vger.kernel.org
6024 S:      Maintained
6025 T:      git git://linuxtv.org/media_tree.git
6026 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
6027 F:      drivers/media/i2c/dw9807-vcm.c
6028
6029 DOUBLETALK DRIVER
6030 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6031 L:      blinux-list@redhat.com
6032 S:      Maintained
6033 F:      drivers/char/dtlk.c
6034 F:      include/linux/dtlk.h
6035
6036 DPAA2 DATAPATH I/O (DPIO) DRIVER
6037 M:      Roy Pledge <Roy.Pledge@nxp.com>
6038 L:      linux-kernel@vger.kernel.org
6039 S:      Maintained
6040 F:      drivers/soc/fsl/dpio
6041
6042 DPAA2 ETHERNET DRIVER
6043 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6044 L:      netdev@vger.kernel.org
6045 S:      Maintained
6046 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6047 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6048 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6049 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6050 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6051 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6052 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6053 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6054 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6055
6056 DPAA2 ETHERNET SWITCH DRIVER
6057 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6058 L:      netdev@vger.kernel.org
6059 S:      Maintained
6060 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6061 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6062 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6063
6064 DPT_I2O SCSI RAID DRIVER
6065 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
6066 L:      linux-scsi@vger.kernel.org
6067 S:      Maintained
6068 W:      http://www.adaptec.com/
6069 F:      drivers/scsi/dpt*
6070 F:      drivers/scsi/dpt/
6071
6072 DRBD DRIVER
6073 M:      Philipp Reisner <philipp.reisner@linbit.com>
6074 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6075 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6076 L:      drbd-dev@lists.linbit.com
6077 S:      Supported
6078 W:      http://www.drbd.org
6079 T:      git git://git.linbit.com/linux-drbd.git
6080 T:      git git://git.linbit.com/drbd-8.4.git
6081 F:      Documentation/admin-guide/blockdev/
6082 F:      drivers/block/drbd/
6083 F:      lib/lru_cache.c
6084
6085 DRIVER COMPONENT FRAMEWORK
6086 L:      dri-devel@lists.freedesktop.org
6087 F:      drivers/base/component.c
6088 F:      include/linux/component.h
6089
6090 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6091 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6092 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6093 S:      Supported
6094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6095 F:      Documentation/core-api/kobject.rst
6096 F:      drivers/base/
6097 F:      fs/debugfs/
6098 F:      fs/sysfs/
6099 F:      include/linux/debugfs.h
6100 F:      include/linux/kobj*
6101 F:      lib/kobj*
6102
6103 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6104 M:      Nishanth Menon <nm@ti.com>
6105 L:      linux-pm@vger.kernel.org
6106 S:      Maintained
6107 F:      drivers/soc/ti/smartreflex.c
6108 F:      include/linux/power/smartreflex.h
6109
6110 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6111 M:      Maxime Ripard <mripard@kernel.org>
6112 M:      Chen-Yu Tsai <wens@csie.org>
6113 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6114 L:      dri-devel@lists.freedesktop.org
6115 S:      Supported
6116 T:      git git://anongit.freedesktop.org/drm/drm-misc
6117 F:      drivers/gpu/drm/sun4i/sun8i*
6118
6119 DRM DRIVER FOR ARM PL111 CLCD
6120 M:      Emma Anholt <emma@anholt.net>
6121 S:      Supported
6122 T:      git git://anongit.freedesktop.org/drm/drm-misc
6123 F:      drivers/gpu/drm/pl111/
6124
6125 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6126 M:      Linus Walleij <linus.walleij@linaro.org>
6127 S:      Maintained
6128 T:      git git://anongit.freedesktop.org/drm/drm-misc
6129 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6130 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6131
6132 DRM DRIVER FOR ASPEED BMC GFX
6133 M:      Joel Stanley <joel@jms.id.au>
6134 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6135 S:      Supported
6136 T:      git git://anongit.freedesktop.org/drm/drm-misc
6137 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6138 F:      drivers/gpu/drm/aspeed/
6139
6140 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6141 M:      Dave Airlie <airlied@redhat.com>
6142 R:      Thomas Zimmermann <tzimmermann@suse.de>
6143 L:      dri-devel@lists.freedesktop.org
6144 S:      Supported
6145 T:      git git://anongit.freedesktop.org/drm/drm-misc
6146 F:      drivers/gpu/drm/ast/
6147
6148 DRM DRIVER FOR BOCHS VIRTUAL GPU
6149 M:      Gerd Hoffmann <kraxel@redhat.com>
6150 L:      virtualization@lists.linux-foundation.org
6151 S:      Maintained
6152 T:      git git://anongit.freedesktop.org/drm/drm-misc
6153 F:      drivers/gpu/drm/tiny/bochs.c
6154
6155 DRM DRIVER FOR BOE HIMAX8279D PANELS
6156 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6157 S:      Maintained
6158 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6159 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6160
6161 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6162 M:      Jagan Teki <jagan@amarulasolutions.com>
6163 S:      Maintained
6164 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6165 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6166
6167 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6168 M:      Linus Walleij <linus.walleij@linaro.org>
6169 S:      Maintained
6170 T:      git git://anongit.freedesktop.org/drm/drm-misc
6171 F:      drivers/gpu/drm/tve200/
6172
6173 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6174 M:      Icenowy Zheng <icenowy@aosc.io>
6175 S:      Maintained
6176 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6177 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6178
6179 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6180 M:      Jagan Teki <jagan@amarulasolutions.com>
6181 S:      Maintained
6182 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6183 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6184
6185 DRM DRIVER FOR GENERIC USB DISPLAY
6186 M:      Noralf Trønnes <noralf@tronnes.org>
6187 S:      Maintained
6188 W:      https://github.com/notro/gud/wiki
6189 T:      git git://anongit.freedesktop.org/drm/drm-misc
6190 F:      drivers/gpu/drm/gud/
6191 F:      include/drm/gud.h
6192
6193 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6194 M:      Hans de Goede <hdegoede@redhat.com>
6195 S:      Maintained
6196 T:      git git://anongit.freedesktop.org/drm/drm-misc
6197 F:      drivers/gpu/drm/tiny/gm12u320.c
6198
6199 DRM DRIVER FOR HX8357D PANELS
6200 M:      Emma Anholt <emma@anholt.net>
6201 S:      Maintained
6202 T:      git git://anongit.freedesktop.org/drm/drm-misc
6203 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6204 F:      drivers/gpu/drm/tiny/hx8357d.c
6205
6206 DRM DRIVER FOR ILITEK ILI9225 PANELS
6207 M:      David Lechner <david@lechnology.com>
6208 S:      Maintained
6209 T:      git git://anongit.freedesktop.org/drm/drm-misc
6210 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6211 F:      drivers/gpu/drm/tiny/ili9225.c
6212
6213 DRM DRIVER FOR ILITEK ILI9486 PANELS
6214 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6215 S:      Maintained
6216 T:      git git://anongit.freedesktop.org/drm/drm-misc
6217 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6218 F:      drivers/gpu/drm/tiny/ili9486.c
6219
6220 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6221 S:      Orphan / Obsolete
6222 F:      drivers/gpu/drm/i810/
6223 F:      include/uapi/drm/i810_drm.h
6224
6225 DRM DRIVER FOR LVDS PANELS
6226 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6227 L:      dri-devel@lists.freedesktop.org
6228 T:      git git://anongit.freedesktop.org/drm/drm-misc
6229 S:      Maintained
6230 F:      drivers/gpu/drm/panel/panel-lvds.c
6231 F:      Documentation/devicetree/bindings/display/lvds.yaml
6232 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6233
6234 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6235 M:      Guido Günther <agx@sigxcpu.org>
6236 R:      Purism Kernel Team <kernel@puri.sm>
6237 S:      Maintained
6238 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6239 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6240
6241 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6242 S:      Orphan / Obsolete
6243 F:      drivers/gpu/drm/mga/
6244 F:      include/uapi/drm/mga_drm.h
6245
6246 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6247 M:      Dave Airlie <airlied@redhat.com>
6248 R:      Thomas Zimmermann <tzimmermann@suse.de>
6249 L:      dri-devel@lists.freedesktop.org
6250 S:      Supported
6251 T:      git git://anongit.freedesktop.org/drm/drm-misc
6252 F:      drivers/gpu/drm/mgag200/
6253
6254 DRM DRIVER FOR MI0283QT
6255 M:      Noralf Trønnes <noralf@tronnes.org>
6256 S:      Maintained
6257 T:      git git://anongit.freedesktop.org/drm/drm-misc
6258 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6259 F:      drivers/gpu/drm/tiny/mi0283qt.c
6260
6261 DRM DRIVER FOR MIPI DBI compatible panels
6262 M:      Noralf Trønnes <noralf@tronnes.org>
6263 S:      Maintained
6264 W:      https://github.com/notro/panel-mipi-dbi/wiki
6265 T:      git git://anongit.freedesktop.org/drm/drm-misc
6266 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6267 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6268
6269 DRM DRIVER FOR MSM ADRENO GPU
6270 M:      Rob Clark <robdclark@gmail.com>
6271 M:      Sean Paul <sean@poorly.run>
6272 R:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6273 L:      linux-arm-msm@vger.kernel.org
6274 L:      dri-devel@lists.freedesktop.org
6275 L:      freedreno@lists.freedesktop.org
6276 S:      Maintained
6277 T:      git https://gitlab.freedesktop.org/drm/msm.git
6278 F:      Documentation/devicetree/bindings/display/msm/
6279 F:      drivers/gpu/drm/msm/
6280 F:      include/uapi/drm/msm_drm.h
6281
6282 DRM DRIVER FOR NOVATEK NT35510 PANELS
6283 M:      Linus Walleij <linus.walleij@linaro.org>
6284 S:      Maintained
6285 T:      git git://anongit.freedesktop.org/drm/drm-misc
6286 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6287 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6288
6289 DRM DRIVER FOR NOVATEK NT35560 PANELS
6290 M:      Linus Walleij <linus.walleij@linaro.org>
6291 S:      Maintained
6292 T:      git git://anongit.freedesktop.org/drm/drm-misc
6293 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6294 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6295
6296 DRM DRIVER FOR NOVATEK NT36672A PANELS
6297 M:      Sumit Semwal <sumit.semwal@linaro.org>
6298 S:      Maintained
6299 T:      git git://anongit.freedesktop.org/drm/drm-misc
6300 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6301 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6302
6303 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6304 M:      Ben Skeggs <bskeggs@redhat.com>
6305 M:      Karol Herbst <kherbst@redhat.com>
6306 M:      Lyude Paul <lyude@redhat.com>
6307 L:      dri-devel@lists.freedesktop.org
6308 L:      nouveau@lists.freedesktop.org
6309 S:      Supported
6310 W:      https://nouveau.freedesktop.org/
6311 Q:      https://patchwork.freedesktop.org/project/nouveau/
6312 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6313 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6314 C:      irc://irc.oftc.net/nouveau
6315 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6316 F:      drivers/gpu/drm/nouveau/
6317 F:      include/uapi/drm/nouveau_drm.h
6318
6319 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6320 M:      Stefan Mavrodiev <stefan@olimex.com>
6321 S:      Maintained
6322 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6323 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6324
6325 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6326 M:      Noralf Trønnes <noralf@tronnes.org>
6327 S:      Maintained
6328 T:      git git://anongit.freedesktop.org/drm/drm-misc
6329 F:      Documentation/devicetree/bindings/display/repaper.txt
6330 F:      drivers/gpu/drm/tiny/repaper.c
6331
6332 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6333 M:      Javier Martinez Canillas <javierm@redhat.com>
6334 S:      Maintained
6335 T:      git git://anongit.freedesktop.org/drm/drm-misc
6336 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6337 F:      drivers/gpu/drm/solomon/ssd130x*
6338
6339 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6340 M:      Dave Airlie <airlied@redhat.com>
6341 M:      Gerd Hoffmann <kraxel@redhat.com>
6342 L:      virtualization@lists.linux-foundation.org
6343 S:      Obsolete
6344 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6345 T:      git git://anongit.freedesktop.org/drm/drm-misc
6346 F:      drivers/gpu/drm/tiny/cirrus.c
6347
6348 DRM DRIVER FOR QXL VIRTUAL GPU
6349 M:      Dave Airlie <airlied@redhat.com>
6350 M:      Gerd Hoffmann <kraxel@redhat.com>
6351 L:      virtualization@lists.linux-foundation.org
6352 L:      spice-devel@lists.freedesktop.org
6353 S:      Maintained
6354 T:      git git://anongit.freedesktop.org/drm/drm-misc
6355 F:      drivers/gpu/drm/qxl/
6356 F:      include/uapi/drm/qxl_drm.h
6357
6358 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6359 S:      Orphan / Obsolete
6360 F:      drivers/gpu/drm/r128/
6361 F:      include/uapi/drm/r128_drm.h
6362
6363 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6364 M:      Robert Chiras <robert.chiras@nxp.com>
6365 S:      Maintained
6366 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6367 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6368
6369 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6370 M:      Linus Walleij <linus.walleij@linaro.org>
6371 S:      Maintained
6372 T:      git git://anongit.freedesktop.org/drm/drm-misc
6373 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6374 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6375
6376 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6377 M:      Markuss Broks <markuss.broks@gmail.com>
6378 S:      Maintained
6379 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6380 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6381
6382 DRM DRIVER FOR SITRONIX ST7703 PANELS
6383 M:      Guido Günther <agx@sigxcpu.org>
6384 R:      Purism Kernel Team <kernel@puri.sm>
6385 R:      Ondrej Jirman <megous@megous.com>
6386 S:      Maintained
6387 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6388 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6389
6390 DRM DRIVER FOR SAVAGE VIDEO CARDS
6391 S:      Orphan / Obsolete
6392 F:      drivers/gpu/drm/savage/
6393 F:      include/uapi/drm/savage_drm.h
6394
6395 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6396 M:      Thomas Zimmermann <tzimmermann@suse.de>
6397 L:      dri-devel@lists.freedesktop.org
6398 S:      Maintained
6399 T:      git git://anongit.freedesktop.org/drm/drm-misc
6400 F:      drivers/gpu/drm/tiny/simpledrm.c
6401
6402 DRM DRIVER FOR SIS VIDEO CARDS
6403 S:      Orphan / Obsolete
6404 F:      drivers/gpu/drm/sis/
6405 F:      include/uapi/drm/sis_drm.h
6406
6407 DRM DRIVER FOR SITRONIX ST7586 PANELS
6408 M:      David Lechner <david@lechnology.com>
6409 S:      Maintained
6410 T:      git git://anongit.freedesktop.org/drm/drm-misc
6411 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6412 F:      drivers/gpu/drm/tiny/st7586.c
6413
6414 DRM DRIVER FOR SITRONIX ST7701 PANELS
6415 M:      Jagan Teki <jagan@amarulasolutions.com>
6416 S:      Maintained
6417 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6418 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6419
6420 DRM DRIVER FOR SITRONIX ST7735R PANELS
6421 M:      David Lechner <david@lechnology.com>
6422 S:      Maintained
6423 T:      git git://anongit.freedesktop.org/drm/drm-misc
6424 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6425 F:      drivers/gpu/drm/tiny/st7735r.c
6426
6427 DRM DRIVER FOR ST-ERICSSON MCDE
6428 M:      Linus Walleij <linus.walleij@linaro.org>
6429 S:      Maintained
6430 T:      git git://anongit.freedesktop.org/drm/drm-misc
6431 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6432 F:      drivers/gpu/drm/mcde/
6433
6434 DRM DRIVER FOR TDFX VIDEO CARDS
6435 S:      Orphan / Obsolete
6436 F:      drivers/gpu/drm/tdfx/
6437
6438 DRM DRIVER FOR TPO TPG110 PANELS
6439 M:      Linus Walleij <linus.walleij@linaro.org>
6440 S:      Maintained
6441 T:      git git://anongit.freedesktop.org/drm/drm-misc
6442 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6443 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6444
6445 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6446 M:      Dave Airlie <airlied@redhat.com>
6447 R:      Sean Paul <sean@poorly.run>
6448 R:      Thomas Zimmermann <tzimmermann@suse.de>
6449 L:      dri-devel@lists.freedesktop.org
6450 S:      Supported
6451 T:      git git://anongit.freedesktop.org/drm/drm-misc
6452 F:      drivers/gpu/drm/udl/
6453
6454 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6455 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6456 M:      Melissa Wen <melissa.srw@gmail.com>
6457 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6458 R:      Daniel Vetter <daniel@ffwll.ch>
6459 L:      dri-devel@lists.freedesktop.org
6460 S:      Maintained
6461 T:      git git://anongit.freedesktop.org/drm/drm-misc
6462 F:      Documentation/gpu/vkms.rst
6463 F:      drivers/gpu/drm/vkms/
6464
6465 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6466 M:      Hans de Goede <hdegoede@redhat.com>
6467 L:      dri-devel@lists.freedesktop.org
6468 S:      Maintained
6469 T:      git git://anongit.freedesktop.org/drm/drm-misc
6470 F:      drivers/gpu/drm/vboxvideo/
6471
6472 DRM DRIVER FOR VMWARE VIRTUAL GPU
6473 M:      Zack Rusin <zackr@vmware.com>
6474 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6475 L:      dri-devel@lists.freedesktop.org
6476 S:      Supported
6477 T:      git git://anongit.freedesktop.org/drm/drm-misc
6478 F:      drivers/gpu/drm/vmwgfx/
6479 F:      include/uapi/drm/vmwgfx_drm.h
6480
6481 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6482 M:      Linus Walleij <linus.walleij@linaro.org>
6483 S:      Maintained
6484 T:      git git://anongit.freedesktop.org/drm/drm-misc
6485 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6486 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6487
6488 DRM DRIVERS
6489 M:      David Airlie <airlied@linux.ie>
6490 M:      Daniel Vetter <daniel@ffwll.ch>
6491 L:      dri-devel@lists.freedesktop.org
6492 S:      Maintained
6493 B:      https://gitlab.freedesktop.org/drm
6494 C:      irc://irc.oftc.net/dri-devel
6495 T:      git git://anongit.freedesktop.org/drm/drm
6496 F:      Documentation/devicetree/bindings/display/
6497 F:      Documentation/devicetree/bindings/gpu/
6498 F:      Documentation/gpu/
6499 F:      drivers/gpu/
6500 F:      include/drm/
6501 F:      include/linux/vga*
6502 F:      include/uapi/drm/
6503
6504 DRM DRIVERS AND MISC GPU PATCHES
6505 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6506 M:      Maxime Ripard <mripard@kernel.org>
6507 M:      Thomas Zimmermann <tzimmermann@suse.de>
6508 S:      Maintained
6509 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6510 T:      git git://anongit.freedesktop.org/drm/drm-misc
6511 F:      Documentation/gpu/
6512 F:      drivers/gpu/drm/*
6513 F:      drivers/gpu/vga/
6514 F:      include/drm/drm*
6515 F:      include/linux/vga*
6516 F:      include/uapi/drm/drm*
6517
6518 DRM DRIVERS FOR ALLWINNER A10
6519 M:      Maxime Ripard <mripard@kernel.org>
6520 M:      Chen-Yu Tsai <wens@csie.org>
6521 L:      dri-devel@lists.freedesktop.org
6522 S:      Supported
6523 T:      git git://anongit.freedesktop.org/drm/drm-misc
6524 F:      Documentation/devicetree/bindings/display/allwinner*
6525 F:      drivers/gpu/drm/sun4i/
6526
6527 DRM DRIVERS FOR AMLOGIC SOCS
6528 M:      Neil Armstrong <narmstrong@baylibre.com>
6529 L:      dri-devel@lists.freedesktop.org
6530 L:      linux-amlogic@lists.infradead.org
6531 S:      Supported
6532 W:      http://linux-meson.com/
6533 T:      git git://anongit.freedesktop.org/drm/drm-misc
6534 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6535 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6536 F:      Documentation/gpu/meson.rst
6537 F:      drivers/gpu/drm/meson/
6538
6539 DRM DRIVERS FOR ATMEL HLCDC
6540 M:      Sam Ravnborg <sam@ravnborg.org>
6541 M:      Boris Brezillon <bbrezillon@kernel.org>
6542 L:      dri-devel@lists.freedesktop.org
6543 S:      Supported
6544 T:      git git://anongit.freedesktop.org/drm/drm-misc
6545 F:      Documentation/devicetree/bindings/display/atmel/
6546 F:      drivers/gpu/drm/atmel-hlcdc/
6547
6548 DRM DRIVERS FOR BRIDGE CHIPS
6549 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6550 M:      Neil Armstrong <narmstrong@baylibre.com>
6551 M:      Robert Foss <robert.foss@linaro.org>
6552 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6553 R:      Jonas Karlman <jonas@kwiboo.se>
6554 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6555 S:      Maintained
6556 T:      git git://anongit.freedesktop.org/drm/drm-misc
6557 F:      drivers/gpu/drm/bridge/
6558
6559 DRM DRIVERS FOR EXYNOS
6560 M:      Inki Dae <inki.dae@samsung.com>
6561 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6562 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6563 M:      Kyungmin Park <kyungmin.park@samsung.com>
6564 L:      dri-devel@lists.freedesktop.org
6565 S:      Supported
6566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6567 F:      Documentation/devicetree/bindings/display/exynos/
6568 F:      Documentation/devicetree/bindings/display/samsung/
6569 F:      drivers/gpu/drm/exynos/
6570 F:      include/uapi/drm/exynos_drm.h
6571
6572 DRM DRIVERS FOR FREESCALE DCU
6573 M:      Stefan Agner <stefan@agner.ch>
6574 M:      Alison Wang <alison.wang@nxp.com>
6575 L:      dri-devel@lists.freedesktop.org
6576 S:      Supported
6577 T:      git git://anongit.freedesktop.org/drm/drm-misc
6578 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6579 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6580 F:      drivers/gpu/drm/fsl-dcu/
6581
6582 DRM DRIVERS FOR FREESCALE IMX
6583 M:      Philipp Zabel <p.zabel@pengutronix.de>
6584 L:      dri-devel@lists.freedesktop.org
6585 S:      Maintained
6586 F:      Documentation/devicetree/bindings/display/imx/
6587 F:      drivers/gpu/drm/imx/
6588 F:      drivers/gpu/ipu-v3/
6589
6590 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6591 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6592 L:      dri-devel@lists.freedesktop.org
6593 S:      Maintained
6594 T:      git git://github.com/patjak/drm-gma500
6595 F:      drivers/gpu/drm/gma500/
6596
6597 DRM DRIVERS FOR HISILICON
6598 M:      Xinliang Liu <xinliang.liu@linaro.org>
6599 M:      Tian Tao  <tiantao6@hisilicon.com>
6600 R:      John Stultz <john.stultz@linaro.org>
6601 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6602 R:      Chen Feng <puck.chen@hisilicon.com>
6603 L:      dri-devel@lists.freedesktop.org
6604 S:      Maintained
6605 T:      git git://anongit.freedesktop.org/drm/drm-misc
6606 F:      Documentation/devicetree/bindings/display/hisilicon/
6607 F:      drivers/gpu/drm/hisilicon/
6608
6609 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6610 M:      Deepak Rawat <drawat.floss@gmail.com>
6611 L:      linux-hyperv@vger.kernel.org
6612 L:      dri-devel@lists.freedesktop.org
6613 S:      Maintained
6614 T:      git git://anongit.freedesktop.org/drm/drm-misc
6615 F:      drivers/gpu/drm/hyperv
6616
6617 DRM DRIVERS FOR LIMA
6618 M:      Qiang Yu <yuq825@gmail.com>
6619 L:      dri-devel@lists.freedesktop.org
6620 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6621 S:      Maintained
6622 T:      git git://anongit.freedesktop.org/drm/drm-misc
6623 F:      drivers/gpu/drm/lima/
6624 F:      include/uapi/drm/lima_drm.h
6625
6626 DRM DRIVERS FOR MEDIATEK
6627 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6628 M:      Philipp Zabel <p.zabel@pengutronix.de>
6629 L:      dri-devel@lists.freedesktop.org
6630 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6631 S:      Supported
6632 F:      Documentation/devicetree/bindings/display/mediatek/
6633 F:      drivers/gpu/drm/mediatek/
6634 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6635 F:      drivers/phy/mediatek/phy-mtk-mipi*
6636
6637 DRM DRIVERS FOR NVIDIA TEGRA
6638 M:      Thierry Reding <thierry.reding@gmail.com>
6639 L:      dri-devel@lists.freedesktop.org
6640 L:      linux-tegra@vger.kernel.org
6641 S:      Supported
6642 T:      git git://anongit.freedesktop.org/tegra/linux.git
6643 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6644 F:      Documentation/devicetree/bindings/gpu/host1x/
6645 F:      drivers/gpu/drm/tegra/
6646 F:      drivers/gpu/host1x/
6647 F:      include/linux/host1x.h
6648 F:      include/uapi/drm/tegra_drm.h
6649
6650 DRM DRIVERS FOR RENESAS
6651 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6652 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6653 L:      dri-devel@lists.freedesktop.org
6654 L:      linux-renesas-soc@vger.kernel.org
6655 S:      Supported
6656 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6657 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6658 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6659 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6660 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6661 F:      drivers/gpu/drm/rcar-du/
6662 F:      drivers/gpu/drm/shmobile/
6663 F:      include/linux/platform_data/shmob_drm.h
6664
6665 DRM DRIVERS FOR ROCKCHIP
6666 M:      Sandy Huang <hjc@rock-chips.com>
6667 M:      Heiko Stübner <heiko@sntech.de>
6668 L:      dri-devel@lists.freedesktop.org
6669 S:      Maintained
6670 T:      git git://anongit.freedesktop.org/drm/drm-misc
6671 F:      Documentation/devicetree/bindings/display/rockchip/
6672 F:      drivers/gpu/drm/rockchip/
6673
6674 DRM DRIVERS FOR STI
6675 M:      Alain Volmat <alain.volmat@foss.st.com>
6676 L:      dri-devel@lists.freedesktop.org
6677 S:      Maintained
6678 T:      git git://anongit.freedesktop.org/drm/drm-misc
6679 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6680 F:      drivers/gpu/drm/sti
6681
6682 DRM DRIVERS FOR STM
6683 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6684 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6685 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6686 L:      dri-devel@lists.freedesktop.org
6687 S:      Maintained
6688 T:      git git://anongit.freedesktop.org/drm/drm-misc
6689 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6690 F:      drivers/gpu/drm/stm
6691
6692 DRM DRIVERS FOR TI KEYSTONE
6693 M:      Jyri Sarha <jyri.sarha@iki.fi>
6694 M:      Tomi Valkeinen <tomba@kernel.org>
6695 L:      dri-devel@lists.freedesktop.org
6696 S:      Maintained
6697 T:      git git://anongit.freedesktop.org/drm/drm-misc
6698 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6699 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6700 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6701 F:      drivers/gpu/drm/tidss/
6702
6703 DRM DRIVERS FOR TI LCDC
6704 M:      Jyri Sarha <jyri.sarha@iki.fi>
6705 R:      Tomi Valkeinen <tomba@kernel.org>
6706 L:      dri-devel@lists.freedesktop.org
6707 S:      Maintained
6708 F:      Documentation/devicetree/bindings/display/tilcdc/
6709 F:      drivers/gpu/drm/tilcdc/
6710
6711 DRM DRIVERS FOR TI OMAP
6712 M:      Tomi Valkeinen <tomba@kernel.org>
6713 L:      dri-devel@lists.freedesktop.org
6714 S:      Maintained
6715 F:      Documentation/devicetree/bindings/display/ti/
6716 F:      drivers/gpu/drm/omapdrm/
6717
6718 DRM DRIVERS FOR V3D
6719 M:      Emma Anholt <emma@anholt.net>
6720 S:      Supported
6721 T:      git git://anongit.freedesktop.org/drm/drm-misc
6722 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6723 F:      drivers/gpu/drm/v3d/
6724 F:      include/uapi/drm/v3d_drm.h
6725
6726 DRM DRIVERS FOR VC4
6727 M:      Emma Anholt <emma@anholt.net>
6728 M:      Maxime Ripard <mripard@kernel.org>
6729 S:      Supported
6730 T:      git git://github.com/anholt/linux
6731 T:      git git://anongit.freedesktop.org/drm/drm-misc
6732 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6733 F:      drivers/gpu/drm/vc4/
6734 F:      include/uapi/drm/vc4_drm.h
6735
6736 DRM DRIVERS FOR VIVANTE GPU IP
6737 M:      Lucas Stach <l.stach@pengutronix.de>
6738 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6739 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6740 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6741 L:      dri-devel@lists.freedesktop.org
6742 S:      Maintained
6743 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6744 F:      drivers/gpu/drm/etnaviv/
6745 F:      include/uapi/drm/etnaviv_drm.h
6746
6747 DRM DRIVERS FOR XEN
6748 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6749 L:      dri-devel@lists.freedesktop.org
6750 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6751 S:      Supported
6752 T:      git git://anongit.freedesktop.org/drm/drm-misc
6753 F:      Documentation/gpu/xen-front.rst
6754 F:      drivers/gpu/drm/xen/
6755
6756 DRM DRIVERS FOR XILINX
6757 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6758 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6759 L:      dri-devel@lists.freedesktop.org
6760 S:      Maintained
6761 T:      git git://anongit.freedesktop.org/drm/drm-misc
6762 F:      Documentation/devicetree/bindings/display/xlnx/
6763 F:      drivers/gpu/drm/xlnx/
6764
6765 DRM PANEL DRIVERS
6766 M:      Thierry Reding <thierry.reding@gmail.com>
6767 R:      Sam Ravnborg <sam@ravnborg.org>
6768 L:      dri-devel@lists.freedesktop.org
6769 S:      Maintained
6770 T:      git git://anongit.freedesktop.org/drm/drm-misc
6771 F:      Documentation/devicetree/bindings/display/panel/
6772 F:      drivers/gpu/drm/drm_panel.c
6773 F:      drivers/gpu/drm/panel/
6774 F:      include/drm/drm_panel.h
6775
6776 DRM PRIVACY-SCREEN CLASS
6777 M:      Hans de Goede <hdegoede@redhat.com>
6778 L:      dri-devel@lists.freedesktop.org
6779 S:      Maintained
6780 T:      git git://anongit.freedesktop.org/drm/drm-misc
6781 F:      drivers/gpu/drm/drm_privacy_screen*
6782 F:      include/drm/drm_privacy_screen*
6783
6784 DRM TTM SUBSYSTEM
6785 M:      Christian Koenig <christian.koenig@amd.com>
6786 M:      Huang Rui <ray.huang@amd.com>
6787 L:      dri-devel@lists.freedesktop.org
6788 S:      Maintained
6789 T:      git git://anongit.freedesktop.org/drm/drm-misc
6790 F:      drivers/gpu/drm/ttm/
6791 F:      include/drm/ttm/
6792
6793 DRM GPU SCHEDULER
6794 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6795 L:      dri-devel@lists.freedesktop.org
6796 S:      Maintained
6797 T:      git git://anongit.freedesktop.org/drm/drm-misc
6798 F:      drivers/gpu/drm/scheduler/
6799 F:      include/drm/gpu_scheduler.h
6800
6801 DSBR100 USB FM RADIO DRIVER
6802 M:      Alexey Klimov <klimov.linux@gmail.com>
6803 L:      linux-media@vger.kernel.org
6804 S:      Maintained
6805 T:      git git://linuxtv.org/media_tree.git
6806 F:      drivers/media/radio/dsbr100.c
6807
6808 DT3155 MEDIA DRIVER
6809 M:      Hans Verkuil <hverkuil@xs4all.nl>
6810 L:      linux-media@vger.kernel.org
6811 S:      Odd Fixes
6812 W:      https://linuxtv.org
6813 T:      git git://linuxtv.org/media_tree.git
6814 F:      drivers/media/pci/dt3155/
6815
6816 DVB_USB_AF9015 MEDIA DRIVER
6817 M:      Antti Palosaari <crope@iki.fi>
6818 L:      linux-media@vger.kernel.org
6819 S:      Maintained
6820 W:      https://linuxtv.org
6821 W:      http://palosaari.fi/linux/
6822 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6823 T:      git git://linuxtv.org/anttip/media_tree.git
6824 F:      drivers/media/usb/dvb-usb-v2/af9015*
6825
6826 DVB_USB_AF9035 MEDIA DRIVER
6827 M:      Antti Palosaari <crope@iki.fi>
6828 L:      linux-media@vger.kernel.org
6829 S:      Maintained
6830 W:      https://linuxtv.org
6831 W:      http://palosaari.fi/linux/
6832 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6833 T:      git git://linuxtv.org/anttip/media_tree.git
6834 F:      drivers/media/usb/dvb-usb-v2/af9035*
6835
6836 DVB_USB_ANYSEE MEDIA DRIVER
6837 M:      Antti Palosaari <crope@iki.fi>
6838 L:      linux-media@vger.kernel.org
6839 S:      Maintained
6840 W:      https://linuxtv.org
6841 W:      http://palosaari.fi/linux/
6842 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6843 T:      git git://linuxtv.org/anttip/media_tree.git
6844 F:      drivers/media/usb/dvb-usb-v2/anysee*
6845
6846 DVB_USB_AU6610 MEDIA DRIVER
6847 M:      Antti Palosaari <crope@iki.fi>
6848 L:      linux-media@vger.kernel.org
6849 S:      Maintained
6850 W:      https://linuxtv.org
6851 W:      http://palosaari.fi/linux/
6852 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6853 T:      git git://linuxtv.org/anttip/media_tree.git
6854 F:      drivers/media/usb/dvb-usb-v2/au6610*
6855
6856 DVB_USB_CE6230 MEDIA DRIVER
6857 M:      Antti Palosaari <crope@iki.fi>
6858 L:      linux-media@vger.kernel.org
6859 S:      Maintained
6860 W:      https://linuxtv.org
6861 W:      http://palosaari.fi/linux/
6862 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6863 T:      git git://linuxtv.org/anttip/media_tree.git
6864 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6865
6866 DVB_USB_CXUSB MEDIA DRIVER
6867 M:      Michael Krufky <mkrufky@linuxtv.org>
6868 L:      linux-media@vger.kernel.org
6869 S:      Maintained
6870 W:      https://linuxtv.org
6871 W:      http://github.com/mkrufky
6872 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6873 T:      git git://linuxtv.org/media_tree.git
6874 F:      drivers/media/usb/dvb-usb/cxusb*
6875
6876 DVB_USB_EC168 MEDIA DRIVER
6877 M:      Antti Palosaari <crope@iki.fi>
6878 L:      linux-media@vger.kernel.org
6879 S:      Maintained
6880 W:      https://linuxtv.org
6881 W:      http://palosaari.fi/linux/
6882 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6883 T:      git git://linuxtv.org/anttip/media_tree.git
6884 F:      drivers/media/usb/dvb-usb-v2/ec168*
6885
6886 DVB_USB_GL861 MEDIA DRIVER
6887 M:      Antti Palosaari <crope@iki.fi>
6888 L:      linux-media@vger.kernel.org
6889 S:      Maintained
6890 W:      https://linuxtv.org
6891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6892 T:      git git://linuxtv.org/anttip/media_tree.git
6893 F:      drivers/media/usb/dvb-usb-v2/gl861*
6894
6895 DVB_USB_MXL111SF MEDIA DRIVER
6896 M:      Michael Krufky <mkrufky@linuxtv.org>
6897 L:      linux-media@vger.kernel.org
6898 S:      Maintained
6899 W:      https://linuxtv.org
6900 W:      http://github.com/mkrufky
6901 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6902 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6903 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6904
6905 DVB_USB_RTL28XXU MEDIA DRIVER
6906 M:      Antti Palosaari <crope@iki.fi>
6907 L:      linux-media@vger.kernel.org
6908 S:      Maintained
6909 W:      https://linuxtv.org
6910 W:      http://palosaari.fi/linux/
6911 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6912 T:      git git://linuxtv.org/anttip/media_tree.git
6913 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6914
6915 DVB_USB_V2 MEDIA DRIVER
6916 M:      Antti Palosaari <crope@iki.fi>
6917 L:      linux-media@vger.kernel.org
6918 S:      Maintained
6919 W:      https://linuxtv.org
6920 W:      http://palosaari.fi/linux/
6921 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6922 T:      git git://linuxtv.org/anttip/media_tree.git
6923 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6924 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6925
6926 DYNAMIC DEBUG
6927 M:      Jason Baron <jbaron@akamai.com>
6928 S:      Maintained
6929 F:      include/linux/dynamic_debug.h
6930 F:      lib/dynamic_debug.c
6931
6932 DYNAMIC INTERRUPT MODERATION
6933 M:      Tal Gilboa <talgi@nvidia.com>
6934 S:      Maintained
6935 F:      Documentation/networking/net_dim.rst
6936 F:      include/linux/dim.h
6937 F:      lib/dim/
6938
6939 DZ DECSTATION DZ11 SERIAL DRIVER
6940 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6941 S:      Maintained
6942 F:      drivers/tty/serial/dz.*
6943
6944 E3X0 POWER BUTTON DRIVER
6945 M:      Moritz Fischer <moritz.fischer@ettus.com>
6946 L:      usrp-users@lists.ettus.com
6947 S:      Supported
6948 W:      http://www.ettus.com
6949 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6950 F:      drivers/input/misc/e3x0-button.c
6951
6952 E4000 MEDIA DRIVER
6953 M:      Antti Palosaari <crope@iki.fi>
6954 L:      linux-media@vger.kernel.org
6955 S:      Maintained
6956 W:      https://linuxtv.org
6957 W:      http://palosaari.fi/linux/
6958 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6959 T:      git git://linuxtv.org/anttip/media_tree.git
6960 F:      drivers/media/tuners/e4000*
6961
6962 EARTH_PT1 MEDIA DRIVER
6963 M:      Akihiro Tsukada <tskd08@gmail.com>
6964 L:      linux-media@vger.kernel.org
6965 S:      Odd Fixes
6966 F:      drivers/media/pci/pt1/
6967
6968 EARTH_PT3 MEDIA DRIVER
6969 M:      Akihiro Tsukada <tskd08@gmail.com>
6970 L:      linux-media@vger.kernel.org
6971 S:      Odd Fixes
6972 F:      drivers/media/pci/pt3/
6973
6974 EC100 MEDIA DRIVER
6975 M:      Antti Palosaari <crope@iki.fi>
6976 L:      linux-media@vger.kernel.org
6977 S:      Maintained
6978 W:      https://linuxtv.org
6979 W:      http://palosaari.fi/linux/
6980 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6981 T:      git git://linuxtv.org/anttip/media_tree.git
6982 F:      drivers/media/dvb-frontends/ec100*
6983
6984 ECRYPT FILE SYSTEM
6985 M:      Tyler Hicks <code@tyhicks.com>
6986 L:      ecryptfs@vger.kernel.org
6987 S:      Odd Fixes
6988 W:      http://ecryptfs.org
6989 W:      https://launchpad.net/ecryptfs
6990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6991 F:      Documentation/filesystems/ecryptfs.rst
6992 F:      fs/ecryptfs/
6993
6994 EDAC-AMD64
6995 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6996 L:      linux-edac@vger.kernel.org
6997 S:      Supported
6998 F:      drivers/edac/amd64_edac*
6999 F:      drivers/edac/mce_amd*
7000
7001 EDAC-ARMADA
7002 M:      Jan Luebbe <jlu@pengutronix.de>
7003 L:      linux-edac@vger.kernel.org
7004 S:      Maintained
7005 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7006 F:      drivers/edac/armada_xp_*
7007
7008 EDAC-AST2500
7009 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7010 S:      Supported
7011 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7012 F:      drivers/edac/aspeed_edac.c
7013
7014 EDAC-BLUEFIELD
7015 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7016 S:      Supported
7017 F:      drivers/edac/bluefield_edac.c
7018
7019 EDAC-CALXEDA
7020 M:      Andre Przywara <andre.przywara@arm.com>
7021 L:      linux-edac@vger.kernel.org
7022 S:      Maintained
7023 F:      drivers/edac/highbank*
7024
7025 EDAC-CAVIUM OCTEON
7026 M:      Ralf Baechle <ralf@linux-mips.org>
7027 L:      linux-edac@vger.kernel.org
7028 L:      linux-mips@vger.kernel.org
7029 S:      Supported
7030 F:      drivers/edac/octeon_edac*
7031
7032 EDAC-CAVIUM THUNDERX
7033 M:      Robert Richter <rric@kernel.org>
7034 L:      linux-edac@vger.kernel.org
7035 S:      Odd Fixes
7036 F:      drivers/edac/thunderx_edac*
7037
7038 EDAC-CORE
7039 M:      Borislav Petkov <bp@alien8.de>
7040 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7041 M:      Tony Luck <tony.luck@intel.com>
7042 R:      James Morse <james.morse@arm.com>
7043 R:      Robert Richter <rric@kernel.org>
7044 L:      linux-edac@vger.kernel.org
7045 S:      Supported
7046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7047 F:      Documentation/admin-guide/ras.rst
7048 F:      Documentation/driver-api/edac.rst
7049 F:      drivers/edac/
7050 F:      include/linux/edac.h
7051
7052 EDAC-DMC520
7053 M:      Lei Wang <lewan@microsoft.com>
7054 L:      linux-edac@vger.kernel.org
7055 S:      Supported
7056 F:      drivers/edac/dmc520_edac.c
7057
7058 EDAC-E752X
7059 M:      Mark Gross <markgross@kernel.org>
7060 L:      linux-edac@vger.kernel.org
7061 S:      Maintained
7062 F:      drivers/edac/e752x_edac.c
7063
7064 EDAC-E7XXX
7065 L:      linux-edac@vger.kernel.org
7066 S:      Maintained
7067 F:      drivers/edac/e7xxx_edac.c
7068
7069 EDAC-FSL_DDR
7070 M:      York Sun <york.sun@nxp.com>
7071 L:      linux-edac@vger.kernel.org
7072 S:      Maintained
7073 F:      drivers/edac/fsl_ddr_edac.*
7074
7075 EDAC-GHES
7076 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7077 L:      linux-edac@vger.kernel.org
7078 S:      Maintained
7079 F:      drivers/edac/ghes_edac.c
7080
7081 EDAC-I10NM
7082 M:      Tony Luck <tony.luck@intel.com>
7083 L:      linux-edac@vger.kernel.org
7084 S:      Maintained
7085 F:      drivers/edac/i10nm_base.c
7086
7087 EDAC-I3000
7088 L:      linux-edac@vger.kernel.org
7089 S:      Orphan
7090 F:      drivers/edac/i3000_edac.c
7091
7092 EDAC-I5000
7093 L:      linux-edac@vger.kernel.org
7094 S:      Maintained
7095 F:      drivers/edac/i5000_edac.c
7096
7097 EDAC-I5400
7098 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7099 L:      linux-edac@vger.kernel.org
7100 S:      Maintained
7101 F:      drivers/edac/i5400_edac.c
7102
7103 EDAC-I7300
7104 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7105 L:      linux-edac@vger.kernel.org
7106 S:      Maintained
7107 F:      drivers/edac/i7300_edac.c
7108
7109 EDAC-I7CORE
7110 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7111 L:      linux-edac@vger.kernel.org
7112 S:      Maintained
7113 F:      drivers/edac/i7core_edac.c
7114
7115 EDAC-I82443BXGX
7116 M:      Tim Small <tim@buttersideup.com>
7117 L:      linux-edac@vger.kernel.org
7118 S:      Maintained
7119 F:      drivers/edac/i82443bxgx_edac.c
7120
7121 EDAC-I82975X
7122 M:      "Arvind R." <arvino55@gmail.com>
7123 L:      linux-edac@vger.kernel.org
7124 S:      Maintained
7125 F:      drivers/edac/i82975x_edac.c
7126
7127 EDAC-IE31200
7128 M:      Jason Baron <jbaron@akamai.com>
7129 L:      linux-edac@vger.kernel.org
7130 S:      Maintained
7131 F:      drivers/edac/ie31200_edac.c
7132
7133 EDAC-IGEN6
7134 M:      Tony Luck <tony.luck@intel.com>
7135 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7136 L:      linux-edac@vger.kernel.org
7137 S:      Maintained
7138 F:      drivers/edac/igen6_edac.c
7139
7140 EDAC-MPC85XX
7141 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7142 L:      linux-edac@vger.kernel.org
7143 S:      Maintained
7144 F:      drivers/edac/mpc85xx_edac.[ch]
7145
7146 EDAC-PASEMI
7147 M:      Egor Martovetsky <egor@pasemi.com>
7148 L:      linux-edac@vger.kernel.org
7149 S:      Maintained
7150 F:      drivers/edac/pasemi_edac.c
7151
7152 EDAC-PND2
7153 M:      Tony Luck <tony.luck@intel.com>
7154 L:      linux-edac@vger.kernel.org
7155 S:      Maintained
7156 F:      drivers/edac/pnd2_edac.[ch]
7157
7158 EDAC-QCOM
7159 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7160 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7161 L:      linux-arm-msm@vger.kernel.org
7162 L:      linux-edac@vger.kernel.org
7163 S:      Maintained
7164 F:      drivers/edac/qcom_edac.c
7165
7166 EDAC-R82600
7167 M:      Tim Small <tim@buttersideup.com>
7168 L:      linux-edac@vger.kernel.org
7169 S:      Maintained
7170 F:      drivers/edac/r82600_edac.c
7171
7172 EDAC-SBRIDGE
7173 M:      Tony Luck <tony.luck@intel.com>
7174 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7175 L:      linux-edac@vger.kernel.org
7176 S:      Maintained
7177 F:      drivers/edac/sb_edac.c
7178
7179 EDAC-SKYLAKE
7180 M:      Tony Luck <tony.luck@intel.com>
7181 L:      linux-edac@vger.kernel.org
7182 S:      Maintained
7183 F:      drivers/edac/skx_*.[ch]
7184
7185 EDAC-TI
7186 M:      Tero Kristo <kristo@kernel.org>
7187 L:      linux-edac@vger.kernel.org
7188 S:      Odd Fixes
7189 F:      drivers/edac/ti_edac.c
7190
7191 EDIROL UA-101/UA-1000 DRIVER
7192 M:      Clemens Ladisch <clemens@ladisch.de>
7193 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7194 S:      Maintained
7195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7196 F:      sound/usb/misc/ua101.c
7197
7198 EFI TEST DRIVER
7199 M:      Ivan Hu <ivan.hu@canonical.com>
7200 M:      Ard Biesheuvel <ardb@kernel.org>
7201 L:      linux-efi@vger.kernel.org
7202 S:      Maintained
7203 F:      drivers/firmware/efi/test/
7204
7205 EFI VARIABLE FILESYSTEM
7206 M:      Matthew Garrett <matthew.garrett@nebula.com>
7207 M:      Jeremy Kerr <jk@ozlabs.org>
7208 M:      Ard Biesheuvel <ardb@kernel.org>
7209 L:      linux-efi@vger.kernel.org
7210 S:      Maintained
7211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7212 F:      fs/efivarfs/
7213
7214 EFIFB FRAMEBUFFER DRIVER
7215 M:      Peter Jones <pjones@redhat.com>
7216 L:      linux-fbdev@vger.kernel.org
7217 S:      Maintained
7218 F:      drivers/video/fbdev/efifb.c
7219
7220 EFS FILESYSTEM
7221 S:      Orphan
7222 W:      http://aeschi.ch.eu.org/efs/
7223 F:      fs/efs/
7224
7225 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7226 M:      Douglas Miller <dougmill@linux.ibm.com>
7227 L:      netdev@vger.kernel.org
7228 S:      Maintained
7229 F:      drivers/net/ethernet/ibm/ehea/
7230
7231 EM28XX VIDEO4LINUX DRIVER
7232 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7233 L:      linux-media@vger.kernel.org
7234 S:      Maintained
7235 W:      https://linuxtv.org
7236 T:      git git://linuxtv.org/media_tree.git
7237 F:      Documentation/admin-guide/media/em28xx*
7238 F:      drivers/media/usb/em28xx/
7239
7240 EMBEDDED LINUX
7241 M:      Matt Mackall <mpm@selenic.com>
7242 M:      David Woodhouse <dwmw2@infradead.org>
7243 L:      linux-embedded@vger.kernel.org
7244 S:      Maintained
7245
7246 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7247 M:      Adrian Hunter <adrian.hunter@intel.com>
7248 M:      Ritesh Harjani <riteshh@codeaurora.org>
7249 M:      Asutosh Das <asutoshd@codeaurora.org>
7250 L:      linux-mmc@vger.kernel.org
7251 S:      Maintained
7252 F:      drivers/mmc/host/cqhci*
7253
7254 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7255 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7256 L:      linux-scsi@vger.kernel.org
7257 S:      Supported
7258 W:      http://www.broadcom.com
7259 F:      drivers/scsi/be2iscsi/
7260
7261 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7262 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7263 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7264 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7265 L:      netdev@vger.kernel.org
7266 S:      Supported
7267 W:      http://www.emulex.com
7268 F:      drivers/net/ethernet/emulex/benet/
7269
7270 EMULEX ONECONNECT ROCE DRIVER
7271 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7272 L:      linux-rdma@vger.kernel.org
7273 S:      Odd Fixes
7274 W:      http://www.broadcom.com
7275 F:      drivers/infiniband/hw/ocrdma/
7276 F:      include/uapi/rdma/ocrdma-abi.h
7277
7278 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7279 M:      James Smart <james.smart@broadcom.com>
7280 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7281 L:      linux-scsi@vger.kernel.org
7282 S:      Supported
7283 W:      http://www.broadcom.com
7284 F:      drivers/scsi/lpfc/
7285
7286 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7287 M:      James Smart <james.smart@broadcom.com>
7288 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7289 L:      linux-scsi@vger.kernel.org
7290 L:      target-devel@vger.kernel.org
7291 S:      Supported
7292 W:      http://www.broadcom.com
7293 F:      drivers/scsi/elx/
7294
7295 ENE CB710 FLASH CARD READER DRIVER
7296 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7297 S:      Maintained
7298 F:      drivers/misc/cb710/
7299 F:      drivers/mmc/host/cb710-mmc.*
7300 F:      include/linux/cb710.h
7301
7302 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7303 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7304 S:      Maintained
7305 F:      drivers/media/rc/ene_ir.*
7306
7307 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7308 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7309 L:      linuxppc-dev@lists.ozlabs.org
7310 S:      Maintained
7311 F:      drivers/tty/ehv_bytechan.c
7312
7313 EPSON S1D13XXX FRAMEBUFFER DRIVER
7314 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7315 S:      Maintained
7316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7317 F:      drivers/video/fbdev/s1d13xxxfb.c
7318 F:      include/video/s1d13xxxfb.h
7319
7320 EROFS FILE SYSTEM
7321 M:      Gao Xiang <xiang@kernel.org>
7322 M:      Chao Yu <chao@kernel.org>
7323 L:      linux-erofs@lists.ozlabs.org
7324 S:      Maintained
7325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7326 F:      Documentation/filesystems/erofs.rst
7327 F:      fs/erofs/
7328 F:      include/trace/events/erofs.h
7329
7330 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7331 M:      Jeff Layton <jlayton@kernel.org>
7332 S:      Maintained
7333 F:      include/linux/errseq.h
7334 F:      lib/errseq.c
7335
7336 ET131X NETWORK DRIVER
7337 M:      Mark Einon <mark.einon@gmail.com>
7338 S:      Odd Fixes
7339 F:      drivers/net/ethernet/agere/
7340
7341 ETAS ES58X CAN/USB DRIVER
7342 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7343 L:      linux-can@vger.kernel.org
7344 S:      Maintained
7345 F:      drivers/net/can/usb/etas_es58x/
7346
7347 ETHERNET BRIDGE
7348 M:      Roopa Prabhu <roopa@nvidia.com>
7349 M:      Nikolay Aleksandrov <razor@blackwall.org>
7350 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7351 L:      netdev@vger.kernel.org
7352 S:      Maintained
7353 W:      http://www.linuxfoundation.org/en/Net:Bridge
7354 F:      include/linux/netfilter_bridge/
7355 F:      net/bridge/
7356
7357 ETHERNET PHY LIBRARY
7358 M:      Andrew Lunn <andrew@lunn.ch>
7359 M:      Heiner Kallweit <hkallweit1@gmail.com>
7360 R:      Russell King <linux@armlinux.org.uk>
7361 L:      netdev@vger.kernel.org
7362 S:      Maintained
7363 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7364 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7365 F:      Documentation/devicetree/bindings/net/mdio*
7366 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7367 F:      Documentation/networking/phy.rst
7368 F:      drivers/net/mdio/
7369 F:      drivers/net/mdio/acpi_mdio.c
7370 F:      drivers/net/mdio/fwnode_mdio.c
7371 F:      drivers/net/mdio/of_mdio.c
7372 F:      drivers/net/pcs/
7373 F:      drivers/net/phy/
7374 F:      include/dt-bindings/net/qca-ar803x.h
7375 F:      include/linux/linkmode.h
7376 F:      include/linux/*mdio*.h
7377 F:      include/linux/mdio/*.h
7378 F:      include/linux/mii.h
7379 F:      include/linux/of_net.h
7380 F:      include/linux/phy.h
7381 F:      include/linux/phy_fixed.h
7382 F:      include/linux/platform_data/mdio-bcm-unimac.h
7383 F:      include/linux/platform_data/mdio-gpio.h
7384 F:      include/trace/events/mdio.h
7385 F:      include/uapi/linux/mdio.h
7386 F:      include/uapi/linux/mii.h
7387 F:      net/core/of_net.c
7388
7389 EXEC & BINFMT API
7390 R:      Eric Biederman <ebiederm@xmission.com>
7391 R:      Kees Cook <keescook@chromium.org>
7392 L:      linux-mm@kvack.org
7393 S:      Supported
7394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7395 F:      arch/alpha/kernel/binfmt_loader.c
7396 F:      arch/x86/ia32/ia32_aout.c
7397 F:      fs/*binfmt_*.c
7398 F:      fs/exec.c
7399 F:      include/linux/binfmts.h
7400 F:      include/linux/elf.h
7401 F:      include/uapi/linux/binfmts.h
7402 F:      include/uapi/linux/elf.h
7403 F:      tools/testing/selftests/exec/
7404 N:      asm/elf.h
7405 N:      binfmt
7406
7407 EXFAT FILE SYSTEM
7408 M:      Namjae Jeon <linkinjeon@kernel.org>
7409 M:      Sungjong Seo <sj1557.seo@samsung.com>
7410 L:      linux-fsdevel@vger.kernel.org
7411 S:      Maintained
7412 F:      fs/exfat/
7413
7414 EXT2 FILE SYSTEM
7415 M:      Jan Kara <jack@suse.com>
7416 L:      linux-ext4@vger.kernel.org
7417 S:      Maintained
7418 F:      Documentation/filesystems/ext2.rst
7419 F:      fs/ext2/
7420 F:      include/linux/ext2*
7421
7422 EXT4 FILE SYSTEM
7423 M:      "Theodore Ts'o" <tytso@mit.edu>
7424 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7425 L:      linux-ext4@vger.kernel.org
7426 S:      Maintained
7427 W:      http://ext4.wiki.kernel.org
7428 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7430 F:      Documentation/filesystems/ext4/
7431 F:      fs/ext4/
7432 F:      include/trace/events/ext4.h
7433
7434 Extended Verification Module (EVM)
7435 M:      Mimi Zohar <zohar@linux.ibm.com>
7436 L:      linux-integrity@vger.kernel.org
7437 S:      Supported
7438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7439 F:      security/integrity/evm/
7440 F:      security/integrity/
7441
7442 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7443 M:      Ard Biesheuvel <ardb@kernel.org>
7444 L:      linux-efi@vger.kernel.org
7445 S:      Maintained
7446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7447 F:      Documentation/admin-guide/efi-stub.rst
7448 F:      arch/*/include/asm/efi.h
7449 F:      arch/*/kernel/efi.c
7450 F:      arch/arm/boot/compressed/efi-header.S
7451 F:      arch/arm64/kernel/efi-entry.S
7452 F:      arch/x86/platform/efi/
7453 F:      drivers/firmware/efi/
7454 F:      include/linux/efi*.h
7455
7456 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7457 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7458 M:      Chanwoo Choi <cw00.choi@samsung.com>
7459 L:      linux-kernel@vger.kernel.org
7460 S:      Maintained
7461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7462 F:      Documentation/devicetree/bindings/extcon/
7463 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7464 F:      drivers/extcon/
7465 F:      include/linux/extcon.h
7466 F:      include/linux/extcon/
7467
7468 EXTRA BOOT CONFIG
7469 M:      Masami Hiramatsu <mhiramat@kernel.org>
7470 S:      Maintained
7471 F:      Documentation/admin-guide/bootconfig.rst
7472 F:      fs/proc/bootconfig.c
7473 F:      include/linux/bootconfig.h
7474 F:      lib/bootconfig.c
7475 F:      tools/bootconfig/*
7476 F:      tools/bootconfig/scripts/*
7477
7478 EXYNOS DP DRIVER
7479 M:      Jingoo Han <jingoohan1@gmail.com>
7480 L:      dri-devel@lists.freedesktop.org
7481 S:      Maintained
7482 F:      drivers/gpu/drm/exynos/exynos_dp*
7483
7484 EXYNOS SYSMMU (IOMMU) driver
7485 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7486 L:      iommu@lists.linux-foundation.org
7487 S:      Maintained
7488 F:      drivers/iommu/exynos-iommu.c
7489
7490 F2FS FILE SYSTEM
7491 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7492 M:      Chao Yu <chao@kernel.org>
7493 L:      linux-f2fs-devel@lists.sourceforge.net
7494 S:      Maintained
7495 W:      https://f2fs.wiki.kernel.org/
7496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7497 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7498 F:      Documentation/filesystems/f2fs.rst
7499 F:      fs/f2fs/
7500 F:      include/linux/f2fs_fs.h
7501 F:      include/trace/events/f2fs.h
7502 F:      include/uapi/linux/f2fs.h
7503
7504 F71805F HARDWARE MONITORING DRIVER
7505 M:      Jean Delvare <jdelvare@suse.com>
7506 L:      linux-hwmon@vger.kernel.org
7507 S:      Maintained
7508 F:      Documentation/hwmon/f71805f.rst
7509 F:      drivers/hwmon/f71805f.c
7510
7511 FADDR2LINE
7512 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7513 S:      Maintained
7514 F:      scripts/faddr2line
7515
7516 FAILOVER MODULE
7517 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7518 L:      netdev@vger.kernel.org
7519 S:      Supported
7520 F:      Documentation/networking/failover.rst
7521 F:      include/net/failover.h
7522 F:      net/core/failover.c
7523
7524 FANOTIFY
7525 M:      Jan Kara <jack@suse.cz>
7526 R:      Amir Goldstein <amir73il@gmail.com>
7527 R:      Matthew Bobrowski <repnop@google.com>
7528 L:      linux-fsdevel@vger.kernel.org
7529 S:      Maintained
7530 F:      fs/notify/fanotify/
7531 F:      include/linux/fanotify.h
7532 F:      include/uapi/linux/fanotify.h
7533
7534 FARSYNC SYNCHRONOUS DRIVER
7535 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7536 S:      Supported
7537 W:      http://www.farsite.co.uk/
7538 F:      drivers/net/wan/farsync.*
7539
7540 FAULT INJECTION SUPPORT
7541 M:      Akinobu Mita <akinobu.mita@gmail.com>
7542 S:      Supported
7543 F:      Documentation/fault-injection/
7544 F:      lib/fault-inject.c
7545
7546 FBTFT Framebuffer drivers
7547 L:      dri-devel@lists.freedesktop.org
7548 L:      linux-fbdev@vger.kernel.org
7549 S:      Orphan
7550 F:      drivers/staging/fbtft/
7551
7552 FC0011 TUNER DRIVER
7553 M:      Michael Buesch <m@bues.ch>
7554 L:      linux-media@vger.kernel.org
7555 S:      Maintained
7556 F:      drivers/media/tuners/fc0011.c
7557 F:      drivers/media/tuners/fc0011.h
7558
7559 FC2580 MEDIA DRIVER
7560 M:      Antti Palosaari <crope@iki.fi>
7561 L:      linux-media@vger.kernel.org
7562 S:      Maintained
7563 W:      https://linuxtv.org
7564 W:      http://palosaari.fi/linux/
7565 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7566 T:      git git://linuxtv.org/anttip/media_tree.git
7567 F:      drivers/media/tuners/fc2580*
7568
7569 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7570 M:      Hannes Reinecke <hare@suse.de>
7571 L:      linux-scsi@vger.kernel.org
7572 S:      Supported
7573 W:      www.Open-FCoE.org
7574 F:      drivers/scsi/fcoe/
7575 F:      drivers/scsi/libfc/
7576 F:      include/scsi/fc/
7577 F:      include/scsi/libfc.h
7578 F:      include/scsi/libfcoe.h
7579 F:      include/uapi/scsi/fc/
7580
7581 FILE LOCKING (flock() and fcntl()/lockf())
7582 M:      Jeff Layton <jlayton@kernel.org>
7583 L:      linux-fsdevel@vger.kernel.org
7584 S:      Maintained
7585 F:      fs/fcntl.c
7586 F:      fs/locks.c
7587 F:      include/linux/fcntl.h
7588 F:      include/uapi/linux/fcntl.h
7589
7590 FILESYSTEM DIRECT ACCESS (DAX)
7591 M:      Dan Williams <dan.j.williams@intel.com>
7592 R:      Matthew Wilcox <willy@infradead.org>
7593 R:      Jan Kara <jack@suse.cz>
7594 L:      linux-fsdevel@vger.kernel.org
7595 L:      nvdimm@lists.linux.dev
7596 S:      Supported
7597 F:      fs/dax.c
7598 F:      include/linux/dax.h
7599 F:      include/trace/events/fs_dax.h
7600
7601 FILESYSTEMS (VFS and infrastructure)
7602 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7603 L:      linux-fsdevel@vger.kernel.org
7604 S:      Maintained
7605 F:      fs/*
7606 F:      include/linux/fs.h
7607 F:      include/linux/fs_types.h
7608 F:      include/uapi/linux/fs.h
7609 F:      include/uapi/linux/openat2.h
7610 X:      fs/io-wq.c
7611 X:      fs/io-wq.h
7612 X:      fs/io_uring.c
7613
7614 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7615 M:      Riku Voipio <riku.voipio@iki.fi>
7616 L:      linux-hwmon@vger.kernel.org
7617 S:      Maintained
7618 F:      drivers/hwmon/f75375s.c
7619 F:      include/linux/f75375s.h
7620
7621 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7622 M:      Clemens Ladisch <clemens@ladisch.de>
7623 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7624 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7625 S:      Maintained
7626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7627 F:      include/uapi/sound/firewire.h
7628 F:      sound/firewire/
7629
7630 FIREWIRE MEDIA DRIVERS (firedtv)
7631 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7632 L:      linux-media@vger.kernel.org
7633 L:      linux1394-devel@lists.sourceforge.net
7634 S:      Maintained
7635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7636 F:      drivers/media/firewire/
7637
7638 FIREWIRE SBP-2 TARGET
7639 M:      Chris Boot <bootc@bootc.net>
7640 L:      linux-scsi@vger.kernel.org
7641 L:      target-devel@vger.kernel.org
7642 L:      linux1394-devel@lists.sourceforge.net
7643 S:      Maintained
7644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7645 F:      drivers/target/sbp/
7646
7647 FIREWIRE SUBSYSTEM
7648 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7649 L:      linux1394-devel@lists.sourceforge.net
7650 S:      Maintained
7651 W:      http://ieee1394.wiki.kernel.org/
7652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7653 F:      drivers/firewire/
7654 F:      include/linux/firewire.h
7655 F:      include/uapi/linux/firewire*.h
7656 F:      tools/firewire/
7657
7658 FIRMWARE FRAMEWORK FOR ARMV8-A
7659 M:      Sudeep Holla <sudeep.holla@arm.com>
7660 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7661 S:      Maintained
7662 F:      drivers/firmware/arm_ffa/
7663 F:      include/linux/arm_ffa.h
7664
7665 FIRMWARE LOADER (request_firmware)
7666 M:      Luis Chamberlain <mcgrof@kernel.org>
7667 L:      linux-kernel@vger.kernel.org
7668 S:      Maintained
7669 F:      Documentation/firmware_class/
7670 F:      drivers/base/firmware_loader/
7671 F:      include/linux/firmware.h
7672
7673 FLEXTIMER FTM-QUADDEC DRIVER
7674 M:      Patrick Havelange <patrick.havelange@essensium.com>
7675 L:      linux-iio@vger.kernel.org
7676 S:      Maintained
7677 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7678 F:      drivers/counter/ftm-quaddec.c
7679
7680 FLOPPY DRIVER
7681 M:      Denis Efremov <efremov@linux.com>
7682 L:      linux-block@vger.kernel.org
7683 S:      Odd Fixes
7684 F:      drivers/block/floppy.c
7685
7686 FLYSKY FSIA6B RC RECEIVER
7687 M:      Markus Koch <markus@notsyncing.net>
7688 L:      linux-input@vger.kernel.org
7689 S:      Maintained
7690 F:      drivers/input/joystick/fsia6b.c
7691
7692 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7693 M:      Geoffrey D. Bennett <g@b4.vu>
7694 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7695 S:      Maintained
7696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7697 F:      sound/usb/mixer_scarlett_gen2.c
7698
7699 FORCEDETH GIGABIT ETHERNET DRIVER
7700 M:      Rain River <rain.1986.08.12@gmail.com>
7701 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7702 L:      netdev@vger.kernel.org
7703 S:      Maintained
7704 F:      drivers/net/ethernet/nvidia/*
7705
7706 FORTIFY_SOURCE
7707 M:      Kees Cook <keescook@chromium.org>
7708 L:      linux-hardening@vger.kernel.org
7709 S:      Supported
7710 F:      include/linux/fortify-string.h
7711 F:      lib/test_fortify/*
7712 F:      scripts/test_fortify.sh
7713 K:      \b__NO_FORTIFY\b
7714
7715 FPGA DFL DRIVERS
7716 M:      Wu Hao <hao.wu@intel.com>
7717 R:      Tom Rix <trix@redhat.com>
7718 L:      linux-fpga@vger.kernel.org
7719 S:      Maintained
7720 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7721 F:      Documentation/fpga/dfl.rst
7722 F:      drivers/fpga/dfl*
7723 F:      drivers/uio/uio_dfl.c
7724 F:      include/linux/dfl.h
7725 F:      include/uapi/linux/fpga-dfl.h
7726
7727 FPGA MANAGER FRAMEWORK
7728 M:      Moritz Fischer <mdf@kernel.org>
7729 M:      Wu Hao <hao.wu@intel.com>
7730 M:      Xu Yilun <yilun.xu@intel.com>
7731 R:      Tom Rix <trix@redhat.com>
7732 L:      linux-fpga@vger.kernel.org
7733 S:      Maintained
7734 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
7736 F:      Documentation/devicetree/bindings/fpga/
7737 F:      Documentation/driver-api/fpga/
7738 F:      Documentation/fpga/
7739 F:      drivers/fpga/
7740 F:      include/linux/fpga/
7741
7742 FPU EMULATOR
7743 M:      Bill Metzenthen <billm@melbpc.org.au>
7744 S:      Maintained
7745 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7746 F:      arch/x86/math-emu/
7747
7748 FRAMEBUFFER CORE
7749 M:      Daniel Vetter <daniel@ffwll.ch>
7750 F:      drivers/video/fbdev/core/
7751 S:      Odd Fixes
7752 T:      git git://anongit.freedesktop.org/drm/drm-misc
7753
7754 FRAMEBUFFER LAYER
7755 M:      Helge Deller <deller@gmx.de>
7756 L:      linux-fbdev@vger.kernel.org
7757 L:      dri-devel@lists.freedesktop.org
7758 S:      Maintained
7759 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7761 F:      Documentation/fb/
7762 F:      drivers/video/
7763 F:      include/linux/fb.h
7764 F:      include/uapi/linux/fb.h
7765 F:      include/uapi/video/
7766 F:      include/video/
7767
7768 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7769 M:      Horia Geantă <horia.geanta@nxp.com>
7770 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7771 M:      Gaurav Jain <gaurav.jain@nxp.com>
7772 L:      linux-crypto@vger.kernel.org
7773 S:      Maintained
7774 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7775 F:      drivers/crypto/caam/
7776
7777 FREESCALE COLDFIRE M5441X MMC DRIVER
7778 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7779 L:      linux-mmc@vger.kernel.org
7780 S:      Maintained
7781 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7782 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7783
7784 FREESCALE DIU FRAMEBUFFER DRIVER
7785 M:      Timur Tabi <timur@kernel.org>
7786 L:      linux-fbdev@vger.kernel.org
7787 S:      Maintained
7788 F:      drivers/video/fbdev/fsl-diu-fb.*
7789
7790 FREESCALE DMA DRIVER
7791 M:      Li Yang <leoyang.li@nxp.com>
7792 M:      Zhang Wei <zw@zh-kernel.org>
7793 L:      linuxppc-dev@lists.ozlabs.org
7794 S:      Maintained
7795 F:      drivers/dma/fsldma.*
7796
7797 FREESCALE DSPI DRIVER
7798 M:      Vladimir Oltean <olteanv@gmail.com>
7799 L:      linux-spi@vger.kernel.org
7800 S:      Maintained
7801 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7802 F:      drivers/spi/spi-fsl-dspi.c
7803 F:      include/linux/spi/spi-fsl-dspi.h
7804
7805 FREESCALE ENETC ETHERNET DRIVERS
7806 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7807 L:      netdev@vger.kernel.org
7808 S:      Maintained
7809 F:      drivers/net/ethernet/freescale/enetc/
7810
7811 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7812 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7813 L:      netdev@vger.kernel.org
7814 S:      Maintained
7815 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7816 F:      drivers/net/ethernet/freescale/gianfar*
7817
7818 FREESCALE GPMI NAND DRIVER
7819 M:      Han Xu <han.xu@nxp.com>
7820 L:      linux-mtd@lists.infradead.org
7821 S:      Maintained
7822 F:      drivers/mtd/nand/raw/gpmi-nand/*
7823
7824 FREESCALE I2C CPM DRIVER
7825 M:      Jochen Friedrich <jochen@scram.de>
7826 L:      linuxppc-dev@lists.ozlabs.org
7827 L:      linux-i2c@vger.kernel.org
7828 S:      Maintained
7829 F:      drivers/i2c/busses/i2c-cpm.c
7830
7831 FREESCALE IMX / MXC FEC DRIVER
7832 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7833 L:      netdev@vger.kernel.org
7834 S:      Maintained
7835 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7836 F:      drivers/net/ethernet/freescale/fec.h
7837 F:      drivers/net/ethernet/freescale/fec_main.c
7838 F:      drivers/net/ethernet/freescale/fec_ptp.c
7839
7840 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7841 M:      Sascha Hauer <s.hauer@pengutronix.de>
7842 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7843 L:      linux-fbdev@vger.kernel.org
7844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7845 S:      Maintained
7846 F:      drivers/video/fbdev/imxfb.c
7847 F:      include/linux/platform_data/video-imxfb.h
7848
7849 FREESCALE IMX DDR PMU DRIVER
7850 M:      Frank Li <Frank.li@nxp.com>
7851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7852 S:      Maintained
7853 F:      Documentation/admin-guide/perf/imx-ddr.rst
7854 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7855 F:      drivers/perf/fsl_imx8_ddr_perf.c
7856
7857 FREESCALE IMX I2C DRIVER
7858 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7859 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7860 L:      linux-i2c@vger.kernel.org
7861 S:      Maintained
7862 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7863 F:      drivers/i2c/busses/i2c-imx.c
7864
7865 FREESCALE IMX LPI2C DRIVER
7866 M:      Dong Aisheng <aisheng.dong@nxp.com>
7867 L:      linux-i2c@vger.kernel.org
7868 L:      linux-imx@nxp.com
7869 S:      Maintained
7870 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7871 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7872
7873 FREESCALE MPC I2C DRIVER
7874 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7875 L:      linux-i2c@vger.kernel.org
7876 S:      Maintained
7877 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7878 F:      drivers/i2c/busses/i2c-mpc.c
7879
7880 FREESCALE QORIQ DPAA ETHERNET DRIVER
7881 M:      Madalin Bucur <madalin.bucur@nxp.com>
7882 L:      netdev@vger.kernel.org
7883 S:      Maintained
7884 F:      drivers/net/ethernet/freescale/dpaa
7885
7886 FREESCALE QORIQ DPAA FMAN DRIVER
7887 M:      Madalin Bucur <madalin.bucur@nxp.com>
7888 L:      netdev@vger.kernel.org
7889 S:      Maintained
7890 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7891 F:      drivers/net/ethernet/freescale/fman
7892
7893 FREESCALE QORIQ PTP CLOCK DRIVER
7894 M:      Yangbo Lu <yangbo.lu@nxp.com>
7895 L:      netdev@vger.kernel.org
7896 S:      Maintained
7897 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7898 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7899 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7900 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7901 F:      drivers/ptp/ptp_qoriq.c
7902 F:      drivers/ptp/ptp_qoriq_debugfs.c
7903 F:      include/linux/fsl/ptp_qoriq.h
7904
7905 FREESCALE QUAD SPI DRIVER
7906 M:      Han Xu <han.xu@nxp.com>
7907 L:      linux-spi@vger.kernel.org
7908 S:      Maintained
7909 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7910 F:      drivers/spi/spi-fsl-qspi.c
7911
7912 FREESCALE QUICC ENGINE LIBRARY
7913 M:      Qiang Zhao <qiang.zhao@nxp.com>
7914 L:      linuxppc-dev@lists.ozlabs.org
7915 S:      Maintained
7916 F:      drivers/soc/fsl/qe/
7917 F:      include/soc/fsl/qe/
7918
7919 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7920 M:      Li Yang <leoyang.li@nxp.com>
7921 L:      netdev@vger.kernel.org
7922 L:      linuxppc-dev@lists.ozlabs.org
7923 S:      Maintained
7924 F:      drivers/net/ethernet/freescale/ucc_geth*
7925
7926 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7927 M:      Zhao Qiang <qiang.zhao@nxp.com>
7928 L:      netdev@vger.kernel.org
7929 L:      linuxppc-dev@lists.ozlabs.org
7930 S:      Maintained
7931 F:      drivers/net/wan/fsl_ucc_hdlc*
7932
7933 FREESCALE QUICC ENGINE UCC UART DRIVER
7934 M:      Timur Tabi <timur@kernel.org>
7935 L:      linuxppc-dev@lists.ozlabs.org
7936 S:      Maintained
7937 F:      drivers/tty/serial/ucc_uart.c
7938
7939 FREESCALE SOC DRIVERS
7940 M:      Li Yang <leoyang.li@nxp.com>
7941 L:      linuxppc-dev@lists.ozlabs.org
7942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7943 S:      Maintained
7944 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7945 F:      Documentation/devicetree/bindings/soc/fsl/
7946 F:      drivers/soc/fsl/
7947 F:      include/linux/fsl/
7948 F:      include/soc/fsl/
7949
7950 FREESCALE SOC FS_ENET DRIVER
7951 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7952 L:      linuxppc-dev@lists.ozlabs.org
7953 L:      netdev@vger.kernel.org
7954 S:      Maintained
7955 F:      drivers/net/ethernet/freescale/fs_enet/
7956 F:      include/linux/fs_enet_pd.h
7957
7958 FREESCALE SOC SOUND DRIVERS
7959 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
7960 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7961 R:      Fabio Estevam <festevam@gmail.com>
7962 R:      Nicolin Chen <nicoleotsuka@gmail.com>
7963 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7964 L:      linuxppc-dev@lists.ozlabs.org
7965 S:      Maintained
7966 F:      sound/soc/fsl/fsl*
7967 F:      sound/soc/fsl/imx*
7968 F:      sound/soc/fsl/mpc8610_hpcd.c
7969
7970 FREESCALE USB PERIPHERAL DRIVERS
7971 M:      Li Yang <leoyang.li@nxp.com>
7972 L:      linux-usb@vger.kernel.org
7973 L:      linuxppc-dev@lists.ozlabs.org
7974 S:      Maintained
7975 F:      drivers/usb/gadget/udc/fsl*
7976
7977 FREESCALE USB PHY DRIVER
7978 M:      Ran Wang <ran.wang_1@nxp.com>
7979 L:      linux-usb@vger.kernel.org
7980 L:      linuxppc-dev@lists.ozlabs.org
7981 S:      Maintained
7982 F:      drivers/usb/phy/phy-fsl-usb*
7983
7984 FREEVXFS FILESYSTEM
7985 M:      Christoph Hellwig <hch@infradead.org>
7986 S:      Maintained
7987 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7988 F:      fs/freevxfs/
7989
7990 FREEZER
7991 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7992 M:      Pavel Machek <pavel@ucw.cz>
7993 L:      linux-pm@vger.kernel.org
7994 S:      Supported
7995 F:      Documentation/power/freezing-of-tasks.rst
7996 F:      include/linux/freezer.h
7997 F:      kernel/freezer.c
7998
7999 FRONTSWAP API
8000 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8001 L:      linux-kernel@vger.kernel.org
8002 S:      Maintained
8003 F:      include/linux/frontswap.h
8004 F:      mm/frontswap.c
8005
8006 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8007 M:      David Howells <dhowells@redhat.com>
8008 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8009 S:      Supported
8010 F:      Documentation/filesystems/caching/
8011 F:      fs/fscache/
8012 F:      include/linux/fscache*.h
8013
8014 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8015 M:      Theodore Y. Ts'o <tytso@mit.edu>
8016 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8017 M:      Eric Biggers <ebiggers@kernel.org>
8018 L:      linux-fscrypt@vger.kernel.org
8019 S:      Supported
8020 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8021 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8022 F:      Documentation/filesystems/fscrypt.rst
8023 F:      fs/crypto/
8024 F:      include/linux/fscrypt*.h
8025 F:      include/uapi/linux/fscrypt.h
8026
8027 FSI SUBSYSTEM
8028 M:      Jeremy Kerr <jk@ozlabs.org>
8029 M:      Joel Stanley <joel@jms.id.au>
8030 R:      Alistar Popple <alistair@popple.id.au>
8031 R:      Eddie James <eajames@linux.ibm.com>
8032 L:      linux-fsi@lists.ozlabs.org
8033 S:      Supported
8034 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8036 F:      drivers/fsi/
8037 F:      include/linux/fsi*.h
8038 F:      include/trace/events/fsi*.h
8039
8040 FSI-ATTACHED I2C DRIVER
8041 M:      Eddie James <eajames@linux.ibm.com>
8042 L:      linux-i2c@vger.kernel.org
8043 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8044 S:      Maintained
8045 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8046 F:      drivers/i2c/busses/i2c-fsi.c
8047
8048 FSI-ATTACHED SPI DRIVER
8049 M:      Eddie James <eajames@linux.ibm.com>
8050 L:      linux-spi@vger.kernel.org
8051 S:      Maintained
8052 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8053 F:      drivers/spi/spi-fsi.c
8054
8055 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8056 M:      Jan Kara <jack@suse.cz>
8057 R:      Amir Goldstein <amir73il@gmail.com>
8058 L:      linux-fsdevel@vger.kernel.org
8059 S:      Maintained
8060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8061 F:      fs/notify/
8062 F:      include/linux/fsnotify*.h
8063
8064 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8065 M:      Eric Biggers <ebiggers@kernel.org>
8066 M:      Theodore Y. Ts'o <tytso@mit.edu>
8067 L:      linux-fscrypt@vger.kernel.org
8068 S:      Supported
8069 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8070 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8071 F:      Documentation/filesystems/fsverity.rst
8072 F:      fs/verity/
8073 F:      include/linux/fsverity.h
8074 F:      include/uapi/linux/fsverity.h
8075
8076 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8077 M:      Michael Zaidman <michael.zaidman@gmail.com>
8078 L:      linux-i2c@vger.kernel.org
8079 L:      linux-input@vger.kernel.org
8080 S:      Maintained
8081 F:      drivers/hid/hid-ft260.c
8082
8083 FUJITSU LAPTOP EXTRAS
8084 M:      Jonathan Woithe <jwoithe@just42.net>
8085 L:      platform-driver-x86@vger.kernel.org
8086 S:      Maintained
8087 F:      drivers/platform/x86/fujitsu-laptop.c
8088
8089 FUJITSU M-5MO LS CAMERA ISP DRIVER
8090 M:      Kyungmin Park <kyungmin.park@samsung.com>
8091 M:      Heungjun Kim <riverful.kim@samsung.com>
8092 L:      linux-media@vger.kernel.org
8093 S:      Maintained
8094 F:      drivers/media/i2c/m5mols/
8095 F:      include/media/i2c/m5mols.h
8096
8097 FUJITSU TABLET EXTRAS
8098 M:      Robert Gerlach <khnz@gmx.de>
8099 L:      platform-driver-x86@vger.kernel.org
8100 S:      Maintained
8101 F:      drivers/platform/x86/fujitsu-tablet.c
8102
8103 FUNGIBLE ETHERNET DRIVERS
8104 M:      Dimitris Michailidis <dmichail@fungible.com>
8105 L:      netdev@vger.kernel.org
8106 S:      Supported
8107 F:      drivers/net/ethernet/fungible/
8108
8109 FUSE: FILESYSTEM IN USERSPACE
8110 M:      Miklos Szeredi <miklos@szeredi.hu>
8111 L:      linux-fsdevel@vger.kernel.org
8112 S:      Maintained
8113 W:      https://github.com/libfuse/
8114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8115 F:      Documentation/filesystems/fuse.rst
8116 F:      fs/fuse/
8117 F:      include/uapi/linux/fuse.h
8118
8119 FUTEX SUBSYSTEM
8120 M:      Thomas Gleixner <tglx@linutronix.de>
8121 M:      Ingo Molnar <mingo@redhat.com>
8122 R:      Peter Zijlstra <peterz@infradead.org>
8123 R:      Darren Hart <dvhart@infradead.org>
8124 R:      Davidlohr Bueso <dave@stgolabs.net>
8125 R:      André Almeida <andrealmeid@collabora.com>
8126 L:      linux-kernel@vger.kernel.org
8127 S:      Maintained
8128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8129 F:      Documentation/locking/*futex*
8130 F:      include/asm-generic/futex.h
8131 F:      include/linux/futex.h
8132 F:      include/uapi/linux/futex.h
8133 F:      kernel/futex/*
8134 F:      tools/perf/bench/futex*
8135 F:      tools/testing/selftests/futex/
8136
8137 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8138 M:      Tim Harvey <tharvey@gateworks.com>
8139 M:      Robert Jones <rjones@gateworks.com>
8140 S:      Maintained
8141 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8142 F:      drivers/mfd/gateworks-gsc.c
8143 F:      include/linux/mfd/gsc.h
8144 F:      Documentation/hwmon/gsc-hwmon.rst
8145 F:      drivers/hwmon/gsc-hwmon.c
8146 F:      include/linux/platform_data/gsc_hwmon.h
8147
8148 GCC PLUGINS
8149 M:      Kees Cook <keescook@chromium.org>
8150 L:      linux-hardening@vger.kernel.org
8151 S:      Maintained
8152 F:      Documentation/kbuild/gcc-plugins.rst
8153 F:      scripts/Makefile.gcc-plugins
8154 F:      scripts/gcc-plugins/
8155
8156 GCOV BASED KERNEL PROFILING
8157 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8158 S:      Maintained
8159 F:      Documentation/dev-tools/gcov.rst
8160 F:      kernel/gcov/
8161
8162 GDB KERNEL DEBUGGING HELPER SCRIPTS
8163 M:      Jan Kiszka <jan.kiszka@siemens.com>
8164 M:      Kieran Bingham <kbingham@kernel.org>
8165 S:      Supported
8166 F:      scripts/gdb/
8167
8168 GEMINI CRYPTO DRIVER
8169 M:      Corentin Labbe <clabbe@baylibre.com>
8170 L:      linux-crypto@vger.kernel.org
8171 S:      Maintained
8172 F:      drivers/crypto/gemini/
8173
8174 GEMTEK FM RADIO RECEIVER DRIVER
8175 M:      Hans Verkuil <hverkuil@xs4all.nl>
8176 L:      linux-media@vger.kernel.org
8177 S:      Maintained
8178 W:      https://linuxtv.org
8179 T:      git git://linuxtv.org/media_tree.git
8180 F:      drivers/media/radio/radio-gemtek*
8181
8182 GENERIC ARCHITECTURE TOPOLOGY
8183 M:      Sudeep Holla <sudeep.holla@arm.com>
8184 L:      linux-kernel@vger.kernel.org
8185 S:      Maintained
8186 F:      drivers/base/arch_topology.c
8187 F:      include/linux/arch_topology.h
8188
8189 GENERIC ENTRY CODE
8190 M:      Thomas Gleixner <tglx@linutronix.de>
8191 M:      Peter Zijlstra <peterz@infradead.org>
8192 M:      Andy Lutomirski <luto@kernel.org>
8193 L:      linux-kernel@vger.kernel.org
8194 S:      Maintained
8195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8196 F:      include/linux/entry-common.h
8197 F:      include/linux/entry-kvm.h
8198 F:      kernel/entry/
8199
8200 GENERIC GPIO I2C DRIVER
8201 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8202 S:      Supported
8203 F:      drivers/i2c/busses/i2c-gpio.c
8204 F:      include/linux/platform_data/i2c-gpio.h
8205
8206 GENERIC GPIO I2C MULTIPLEXER DRIVER
8207 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8208 L:      linux-i2c@vger.kernel.org
8209 S:      Supported
8210 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8211 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8212 F:      include/linux/platform_data/i2c-mux-gpio.h
8213
8214 GENERIC HDLC (WAN) DRIVERS
8215 M:      Krzysztof Halasa <khc@pm.waw.pl>
8216 S:      Maintained
8217 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8218 F:      drivers/net/wan/c101.c
8219 F:      drivers/net/wan/hd6457*
8220 F:      drivers/net/wan/hdlc*
8221 F:      drivers/net/wan/n2.c
8222 F:      drivers/net/wan/pc300too.c
8223 F:      drivers/net/wan/pci200syn.c
8224 F:      drivers/net/wan/wanxl*
8225
8226 GENERIC INCLUDE/ASM HEADER FILES
8227 M:      Arnd Bergmann <arnd@arndb.de>
8228 L:      linux-arch@vger.kernel.org
8229 S:      Maintained
8230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8231 F:      include/asm-generic/
8232 F:      include/uapi/asm-generic/
8233
8234 GENERIC PHY FRAMEWORK
8235 M:      Kishon Vijay Abraham I <kishon@ti.com>
8236 M:      Vinod Koul <vkoul@kernel.org>
8237 L:      linux-phy@lists.infradead.org
8238 S:      Supported
8239 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8241 F:      Documentation/devicetree/bindings/phy/
8242 F:      drivers/phy/
8243 F:      include/linux/phy/
8244
8245 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8246 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8247 S:      Supported
8248 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8249
8250 GENERIC PM DOMAINS
8251 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8252 M:      Kevin Hilman <khilman@kernel.org>
8253 M:      Ulf Hansson <ulf.hansson@linaro.org>
8254 L:      linux-pm@vger.kernel.org
8255 S:      Supported
8256 F:      Documentation/devicetree/bindings/power/power?domain*
8257 F:      drivers/base/power/domain*.c
8258 F:      include/linux/pm_domain.h
8259
8260 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8261 M:      Eugen Hristev <eugen.hristev@microchip.com>
8262 L:      linux-input@vger.kernel.org
8263 S:      Maintained
8264 F:      drivers/input/touchscreen/resistive-adc-touch.c
8265
8266 GENERIC STRING LIBRARY
8267 R:      Andy Shevchenko <andy@kernel.org>
8268 S:      Maintained
8269 F:      lib/string.c
8270 F:      lib/string_helpers.c
8271 F:      lib/test_string.c
8272 F:      lib/test-string_helpers.c
8273
8274 GENERIC UIO DRIVER FOR PCI DEVICES
8275 M:      "Michael S. Tsirkin" <mst@redhat.com>
8276 L:      kvm@vger.kernel.org
8277 S:      Supported
8278 F:      drivers/uio/uio_pci_generic.c
8279
8280 GENERIC VDSO LIBRARY
8281 M:      Andy Lutomirski <luto@kernel.org>
8282 M:      Thomas Gleixner <tglx@linutronix.de>
8283 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8284 L:      linux-kernel@vger.kernel.org
8285 S:      Maintained
8286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8287 F:      include/asm-generic/vdso/vsyscall.h
8288 F:      include/vdso/
8289 F:      kernel/time/vsyscall.c
8290 F:      lib/vdso/
8291
8292 GENWQE (IBM Generic Workqueue Card)
8293 M:      Frank Haverkamp <haver@linux.ibm.com>
8294 S:      Supported
8295 F:      drivers/misc/genwqe/
8296
8297 GET_MAINTAINER SCRIPT
8298 M:      Joe Perches <joe@perches.com>
8299 S:      Maintained
8300 F:      scripts/get_maintainer.pl
8301
8302 GFS2 FILE SYSTEM
8303 M:      Bob Peterson <rpeterso@redhat.com>
8304 M:      Andreas Gruenbacher <agruenba@redhat.com>
8305 L:      cluster-devel@redhat.com
8306 S:      Supported
8307 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8309 F:      Documentation/filesystems/gfs2*
8310 F:      fs/gfs2/
8311 F:      include/uapi/linux/gfs2_ondisk.h
8312
8313 GIGABYTE WMI DRIVER
8314 M:      Thomas Weißschuh <thomas@weissschuh.net>
8315 L:      platform-driver-x86@vger.kernel.org
8316 S:      Maintained
8317 F:      drivers/platform/x86/gigabyte-wmi.c
8318
8319 GNSS SUBSYSTEM
8320 M:      Johan Hovold <johan@kernel.org>
8321 S:      Maintained
8322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8323 F:      Documentation/ABI/testing/sysfs-class-gnss
8324 F:      Documentation/devicetree/bindings/gnss/
8325 F:      drivers/gnss/
8326 F:      include/linux/gnss.h
8327
8328 GO7007 MPEG CODEC
8329 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8330 L:      linux-media@vger.kernel.org
8331 S:      Maintained
8332 F:      drivers/media/usb/go7007/
8333
8334 GOODIX TOUCHSCREEN
8335 M:      Bastien Nocera <hadess@hadess.net>
8336 M:      Hans de Goede <hdegoede@redhat.com>
8337 L:      linux-input@vger.kernel.org
8338 S:      Maintained
8339 F:      drivers/input/touchscreen/goodix*
8340
8341 GOOGLE ETHERNET DRIVERS
8342 M:      Jeroen de Borst <jeroendb@google.com>
8343 R:      Catherine Sullivan <csully@google.com>
8344 R:      David Awogbemila <awogbemila@google.com>
8345 L:      netdev@vger.kernel.org
8346 S:      Supported
8347 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8348 F:      drivers/net/ethernet/google
8349
8350 GPD POCKET FAN DRIVER
8351 M:      Hans de Goede <hdegoede@redhat.com>
8352 L:      platform-driver-x86@vger.kernel.org
8353 S:      Maintained
8354 F:      drivers/platform/x86/gpd-pocket-fan.c
8355
8356 GPIO ACPI SUPPORT
8357 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8358 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8359 L:      linux-gpio@vger.kernel.org
8360 L:      linux-acpi@vger.kernel.org
8361 S:      Maintained
8362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8363 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8364 F:      drivers/gpio/gpiolib-acpi.c
8365 F:      drivers/gpio/gpiolib-acpi.h
8366
8367 GPIO AGGREGATOR
8368 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8369 L:      linux-gpio@vger.kernel.org
8370 S:      Supported
8371 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8372 F:      drivers/gpio/gpio-aggregator.c
8373
8374 GPIO IR Transmitter
8375 M:      Sean Young <sean@mess.org>
8376 L:      linux-media@vger.kernel.org
8377 S:      Maintained
8378 F:      drivers/media/rc/gpio-ir-tx.c
8379
8380 GPIO MOCKUP DRIVER
8381 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8382 L:      linux-gpio@vger.kernel.org
8383 S:      Maintained
8384 F:      drivers/gpio/gpio-mockup.c
8385 F:      tools/testing/selftests/gpio/
8386
8387 GPIO REGMAP
8388 R:      Michael Walle <michael@walle.cc>
8389 S:      Maintained
8390 F:      drivers/gpio/gpio-regmap.c
8391 F:      include/linux/gpio/regmap.h
8392
8393 GPIO SUBSYSTEM
8394 M:      Linus Walleij <linus.walleij@linaro.org>
8395 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8396 L:      linux-gpio@vger.kernel.org
8397 S:      Maintained
8398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8399 F:      Documentation/ABI/obsolete/sysfs-gpio
8400 F:      Documentation/ABI/testing/gpio-cdev
8401 F:      Documentation/admin-guide/gpio/
8402 F:      Documentation/devicetree/bindings/gpio/
8403 F:      Documentation/driver-api/gpio/
8404 F:      drivers/gpio/
8405 F:      include/asm-generic/gpio.h
8406 F:      include/linux/gpio.h
8407 F:      include/linux/gpio/
8408 F:      include/linux/of_gpio.h
8409 F:      include/uapi/linux/gpio.h
8410 F:      tools/gpio/
8411
8412 GRE DEMULTIPLEXER DRIVER
8413 M:      Dmitry Kozlov <xeb@mail.ru>
8414 L:      netdev@vger.kernel.org
8415 S:      Maintained
8416 F:      include/net/gre.h
8417 F:      net/ipv4/gre_demux.c
8418 F:      net/ipv4/gre_offload.c
8419
8420 GRETH 10/100/1G Ethernet MAC device driver
8421 M:      Andreas Larsson <andreas@gaisler.com>
8422 L:      netdev@vger.kernel.org
8423 S:      Maintained
8424 F:      drivers/net/ethernet/aeroflex/
8425
8426 GREYBUS AUDIO PROTOCOLS DRIVERS
8427 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8428 M:      Mark Greer <mgreer@animalcreek.com>
8429 S:      Maintained
8430 F:      drivers/staging/greybus/audio_apbridgea.c
8431 F:      drivers/staging/greybus/audio_apbridgea.h
8432 F:      drivers/staging/greybus/audio_codec.c
8433 F:      drivers/staging/greybus/audio_codec.h
8434 F:      drivers/staging/greybus/audio_gb.c
8435 F:      drivers/staging/greybus/audio_manager.c
8436 F:      drivers/staging/greybus/audio_manager.h
8437 F:      drivers/staging/greybus/audio_manager_module.c
8438 F:      drivers/staging/greybus/audio_manager_private.h
8439 F:      drivers/staging/greybus/audio_manager_sysfs.c
8440 F:      drivers/staging/greybus/audio_module.c
8441 F:      drivers/staging/greybus/audio_topology.c
8442
8443 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8444 M:      Viresh Kumar <vireshk@kernel.org>
8445 S:      Maintained
8446 F:      drivers/staging/greybus/authentication.c
8447 F:      drivers/staging/greybus/bootrom.c
8448 F:      drivers/staging/greybus/firmware.h
8449 F:      drivers/staging/greybus/fw-core.c
8450 F:      drivers/staging/greybus/fw-download.c
8451 F:      drivers/staging/greybus/fw-management.c
8452 F:      drivers/staging/greybus/greybus_authentication.h
8453 F:      drivers/staging/greybus/greybus_firmware.h
8454 F:      drivers/staging/greybus/hid.c
8455 F:      drivers/staging/greybus/i2c.c
8456 F:      drivers/staging/greybus/spi.c
8457 F:      drivers/staging/greybus/spilib.c
8458 F:      drivers/staging/greybus/spilib.h
8459
8460 GREYBUS LOOPBACK DRIVER
8461 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8462 S:      Maintained
8463 F:      drivers/staging/greybus/loopback.c
8464
8465 GREYBUS PLATFORM DRIVERS
8466 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8467 S:      Maintained
8468 F:      drivers/staging/greybus/arche-apb-ctrl.c
8469 F:      drivers/staging/greybus/arche-platform.c
8470 F:      drivers/staging/greybus/arche_platform.h
8471
8472 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8473 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8474 S:      Maintained
8475 F:      drivers/staging/greybus/gpio.c
8476 F:      drivers/staging/greybus/light.c
8477 F:      drivers/staging/greybus/power_supply.c
8478 F:      drivers/staging/greybus/sdio.c
8479 F:      drivers/staging/greybus/spi.c
8480 F:      drivers/staging/greybus/spilib.c
8481
8482 GREYBUS SUBSYSTEM
8483 M:      Johan Hovold <johan@kernel.org>
8484 M:      Alex Elder <elder@kernel.org>
8485 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8486 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8487 S:      Maintained
8488 F:      drivers/greybus/
8489 F:      drivers/staging/greybus/
8490 F:      include/linux/greybus.h
8491 F:      include/linux/greybus/
8492
8493 GREYBUS UART PROTOCOLS DRIVERS
8494 M:      David Lin <dtwlin@gmail.com>
8495 S:      Maintained
8496 F:      drivers/staging/greybus/log.c
8497 F:      drivers/staging/greybus/uart.c
8498
8499 GS1662 VIDEO SERIALIZER
8500 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8501 L:      linux-media@vger.kernel.org
8502 S:      Maintained
8503 T:      git git://linuxtv.org/media_tree.git
8504 F:      drivers/media/spi/gs1662.c
8505
8506 GSPCA FINEPIX SUBDRIVER
8507 M:      Frank Zago <frank@zago.net>
8508 L:      linux-media@vger.kernel.org
8509 S:      Maintained
8510 T:      git git://linuxtv.org/media_tree.git
8511 F:      drivers/media/usb/gspca/finepix.c
8512
8513 GSPCA GL860 SUBDRIVER
8514 M:      Olivier Lorin <o.lorin@laposte.net>
8515 L:      linux-media@vger.kernel.org
8516 S:      Maintained
8517 T:      git git://linuxtv.org/media_tree.git
8518 F:      drivers/media/usb/gspca/gl860/
8519
8520 GSPCA M5602 SUBDRIVER
8521 M:      Erik Andren <erik.andren@gmail.com>
8522 L:      linux-media@vger.kernel.org
8523 S:      Maintained
8524 T:      git git://linuxtv.org/media_tree.git
8525 F:      drivers/media/usb/gspca/m5602/
8526
8527 GSPCA PAC207 SONIXB SUBDRIVER
8528 M:      Hans Verkuil <hverkuil@xs4all.nl>
8529 L:      linux-media@vger.kernel.org
8530 S:      Odd Fixes
8531 T:      git git://linuxtv.org/media_tree.git
8532 F:      drivers/media/usb/gspca/pac207.c
8533
8534 GSPCA SN9C20X SUBDRIVER
8535 M:      Brian Johnson <brijohn@gmail.com>
8536 L:      linux-media@vger.kernel.org
8537 S:      Maintained
8538 T:      git git://linuxtv.org/media_tree.git
8539 F:      drivers/media/usb/gspca/sn9c20x.c
8540
8541 GSPCA T613 SUBDRIVER
8542 M:      Leandro Costantino <lcostantino@gmail.com>
8543 L:      linux-media@vger.kernel.org
8544 S:      Maintained
8545 T:      git git://linuxtv.org/media_tree.git
8546 F:      drivers/media/usb/gspca/t613.c
8547
8548 GSPCA USB WEBCAM DRIVER
8549 M:      Hans Verkuil <hverkuil@xs4all.nl>
8550 L:      linux-media@vger.kernel.org
8551 S:      Odd Fixes
8552 T:      git git://linuxtv.org/media_tree.git
8553 F:      drivers/media/usb/gspca/
8554
8555 GTP (GPRS Tunneling Protocol)
8556 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8557 M:      Harald Welte <laforge@gnumonks.org>
8558 L:      osmocom-net-gprs@lists.osmocom.org
8559 S:      Maintained
8560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8561 F:      drivers/net/gtp.c
8562
8563 GUID PARTITION TABLE (GPT)
8564 M:      Davidlohr Bueso <dave@stgolabs.net>
8565 L:      linux-efi@vger.kernel.org
8566 S:      Maintained
8567 F:      block/partitions/efi.*
8568
8569 H8/300 ARCHITECTURE
8570 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8571 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8572 S:      Maintained
8573 W:      http://uclinux-h8.sourceforge.jp
8574 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8575 F:      arch/h8300/
8576 F:      drivers/clk/h8300/
8577 F:      drivers/clocksource/h8300_*.c
8578 F:      drivers/irqchip/irq-renesas-h8*.c
8579
8580 HABANALABS PCI DRIVER
8581 M:      Oded Gabbay <ogabbay@kernel.org>
8582 S:      Supported
8583 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8584 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8585 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8586 F:      drivers/misc/habanalabs/
8587 F:      include/uapi/misc/habanalabs.h
8588
8589 HACKRF MEDIA DRIVER
8590 M:      Antti Palosaari <crope@iki.fi>
8591 L:      linux-media@vger.kernel.org
8592 S:      Maintained
8593 W:      https://linuxtv.org
8594 W:      http://palosaari.fi/linux/
8595 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8596 T:      git git://linuxtv.org/anttip/media_tree.git
8597 F:      drivers/media/usb/hackrf/
8598
8599 HANTRO VPU CODEC DRIVER
8600 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8601 M:      Philipp Zabel <p.zabel@pengutronix.de>
8602 L:      linux-media@vger.kernel.org
8603 L:      linux-rockchip@lists.infradead.org
8604 S:      Maintained
8605 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8606 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8607 F:      drivers/staging/media/hantro/
8608
8609 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8610 M:      Frank Seidel <frank@f-seidel.de>
8611 L:      platform-driver-x86@vger.kernel.org
8612 S:      Maintained
8613 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8614 F:      drivers/platform/x86/hdaps.c
8615
8616 HARDWARE MONITORING
8617 M:      Jean Delvare <jdelvare@suse.com>
8618 M:      Guenter Roeck <linux@roeck-us.net>
8619 L:      linux-hwmon@vger.kernel.org
8620 S:      Maintained
8621 W:      http://hwmon.wiki.kernel.org/
8622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8623 F:      Documentation/ABI/testing/sysfs-class-hwmon
8624 F:      Documentation/devicetree/bindings/hwmon/
8625 F:      Documentation/hwmon/
8626 F:      drivers/hwmon/
8627 F:      include/linux/hwmon*.h
8628 F:      include/trace/events/hwmon*.h
8629 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8630
8631 HARDWARE RANDOM NUMBER GENERATOR CORE
8632 M:      Matt Mackall <mpm@selenic.com>
8633 M:      Herbert Xu <herbert@gondor.apana.org.au>
8634 L:      linux-crypto@vger.kernel.org
8635 S:      Odd fixes
8636 F:      Documentation/admin-guide/hw_random.rst
8637 F:      Documentation/devicetree/bindings/rng/
8638 F:      drivers/char/hw_random/
8639 F:      include/linux/hw_random.h
8640
8641 HARDWARE SPINLOCK CORE
8642 M:      Ohad Ben-Cohen <ohad@wizery.com>
8643 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8644 R:      Baolin Wang <baolin.wang7@gmail.com>
8645 L:      linux-remoteproc@vger.kernel.org
8646 S:      Maintained
8647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8648 F:      Documentation/devicetree/bindings/hwlock/
8649 F:      Documentation/locking/hwspinlock.rst
8650 F:      drivers/hwspinlock/
8651 F:      include/linux/hwspinlock.h
8652
8653 HARDWARE TRACING FACILITIES
8654 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8655 S:      Maintained
8656 F:      drivers/hwtracing/
8657
8658 HARMONY SOUND DRIVER
8659 L:      linux-parisc@vger.kernel.org
8660 S:      Maintained
8661 F:      sound/parisc/harmony.*
8662
8663 HDPVR USB VIDEO ENCODER DRIVER
8664 M:      Hans Verkuil <hverkuil@xs4all.nl>
8665 L:      linux-media@vger.kernel.org
8666 S:      Odd Fixes
8667 W:      https://linuxtv.org
8668 T:      git git://linuxtv.org/media_tree.git
8669 F:      drivers/media/usb/hdpvr/
8670
8671 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8672 M:      Matt Hsiao <matt.hsiao@hpe.com>
8673 S:      Supported
8674 F:      drivers/misc/hpilo.[ch]
8675
8676 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8677 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8678 S:      Supported
8679 F:      Documentation/watchdog/hpwdt.rst
8680 F:      drivers/watchdog/hpwdt.c
8681
8682 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8683 M:      Don Brace <don.brace@microchip.com>
8684 L:      storagedev@microchip.com
8685 L:      linux-scsi@vger.kernel.org
8686 S:      Supported
8687 F:      Documentation/scsi/hpsa.rst
8688 F:      drivers/scsi/hpsa*.[ch]
8689 F:      include/linux/cciss*.h
8690 F:      include/uapi/linux/cciss*.h
8691
8692 HFI1 DRIVER
8693 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8694 L:      linux-rdma@vger.kernel.org
8695 S:      Supported
8696 F:      drivers/infiniband/hw/hfi1
8697
8698 HFS FILESYSTEM
8699 L:      linux-fsdevel@vger.kernel.org
8700 S:      Orphan
8701 F:      Documentation/filesystems/hfs.rst
8702 F:      fs/hfs/
8703
8704 HFSPLUS FILESYSTEM
8705 L:      linux-fsdevel@vger.kernel.org
8706 S:      Orphan
8707 F:      Documentation/filesystems/hfsplus.rst
8708 F:      fs/hfsplus/
8709
8710 HGA FRAMEBUFFER DRIVER
8711 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8712 L:      linux-nvidia@lists.surfsouth.com
8713 S:      Maintained
8714 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8715 F:      drivers/video/fbdev/hgafb.c
8716
8717 HIBERNATION (aka Software Suspend, aka swsusp)
8718 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8719 M:      Pavel Machek <pavel@ucw.cz>
8720 L:      linux-pm@vger.kernel.org
8721 S:      Supported
8722 B:      https://bugzilla.kernel.org
8723 F:      arch/*/include/asm/suspend*.h
8724 F:      arch/x86/power/
8725 F:      drivers/base/power/
8726 F:      include/linux/freezer.h
8727 F:      include/linux/pm.h
8728 F:      include/linux/suspend.h
8729 F:      kernel/power/
8730
8731 HID CORE LAYER
8732 M:      Jiri Kosina <jikos@kernel.org>
8733 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8734 L:      linux-input@vger.kernel.org
8735 S:      Maintained
8736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8737 F:      drivers/hid/
8738 F:      include/linux/hid*
8739 F:      include/uapi/linux/hid*
8740
8741 HID LOGITECH DRIVERS
8742 R:      Filipe Laíns <lains@riseup.net>
8743 L:      linux-input@vger.kernel.org
8744 S:      Maintained
8745 F:      drivers/hid/hid-logitech-*
8746
8747 HID PLAYSTATION DRIVER
8748 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8749 L:      linux-input@vger.kernel.org
8750 S:      Supported
8751 F:      drivers/hid/hid-playstation.c
8752
8753 HID SENSOR HUB DRIVERS
8754 M:      Jiri Kosina <jikos@kernel.org>
8755 M:      Jonathan Cameron <jic23@kernel.org>
8756 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8757 L:      linux-input@vger.kernel.org
8758 L:      linux-iio@vger.kernel.org
8759 S:      Maintained
8760 F:      Documentation/hid/hid-sensor*
8761 F:      drivers/hid/hid-sensor-*
8762 F:      drivers/iio/*/hid-*
8763 F:      include/linux/hid-sensor-*
8764
8765 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8766 M:      Thomas Gleixner <tglx@linutronix.de>
8767 L:      linux-kernel@vger.kernel.org
8768 S:      Maintained
8769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8770 F:      Documentation/timers/
8771 F:      include/linux/clockchips.h
8772 F:      include/linux/hrtimer.h
8773 F:      kernel/time/clockevents.c
8774 F:      kernel/time/hrtimer.c
8775 F:      kernel/time/timer_*.c
8776
8777 HIGH-SPEED SCC DRIVER FOR AX.25
8778 L:      linux-hams@vger.kernel.org
8779 S:      Orphan
8780 F:      drivers/net/hamradio/dmascc.c
8781 F:      drivers/net/hamradio/scc.c
8782
8783 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8784 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8785 S:      Supported
8786 W:      http://www.highpoint-tech.com
8787 F:      Documentation/scsi/hptiop.rst
8788 F:      drivers/scsi/hptiop.c
8789
8790 HIPPI
8791 M:      Jes Sorensen <jes@trained-monkey.org>
8792 L:      linux-hippi@sunsite.dk
8793 S:      Maintained
8794 F:      drivers/net/hippi/
8795 F:      include/linux/hippidevice.h
8796 F:      include/uapi/linux/if_hippi.h
8797 F:      net/802/hippi.c
8798
8799 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8800 M:      Kurt Kanzenbach <kurt@linutronix.de>
8801 L:      netdev@vger.kernel.org
8802 S:      Maintained
8803 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8804 F:      drivers/net/dsa/hirschmann/*
8805 F:      include/linux/platform_data/hirschmann-hellcreek.h
8806 F:      net/dsa/tag_hellcreek.c
8807
8808 HISILICON DMA DRIVER
8809 M:      Zhou Wang <wangzhou1@hisilicon.com>
8810 L:      dmaengine@vger.kernel.org
8811 S:      Maintained
8812 F:      drivers/dma/hisi_dma.c
8813
8814 HISILICON GPIO DRIVER
8815 M:      Luo Jiaxing <luojiaxing@huawei.com>
8816 L:      linux-gpio@vger.kernel.org
8817 S:      Maintained
8818 F:      drivers/gpio/gpio-hisi.c
8819
8820 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8821 M:      Longfang Liu <liulongfang@huawei.com>
8822 L:      linux-crypto@vger.kernel.org
8823 S:      Maintained
8824 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8825 F:      drivers/crypto/hisilicon/hpre/hpre.h
8826 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8827 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8828
8829 HISILICON I2C CONTROLLER DRIVER
8830 M:      Yicong Yang <yangyicong@hisilicon.com>
8831 L:      linux-i2c@vger.kernel.org
8832 S:      Maintained
8833 W:      https://www.hisilicon.com
8834 F:      drivers/i2c/busses/i2c-hisi.c
8835
8836 HISILICON LPC BUS DRIVER
8837 M:      john.garry@huawei.com
8838 S:      Maintained
8839 W:      http://www.hisilicon.com
8840 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8841 F:      drivers/bus/hisi_lpc.c
8842
8843 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8844 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8845 M:      Salil Mehta <salil.mehta@huawei.com>
8846 L:      netdev@vger.kernel.org
8847 S:      Maintained
8848 W:      http://www.hisilicon.com
8849 F:      drivers/net/ethernet/hisilicon/hns3/
8850
8851 HISILICON NETWORK SUBSYSTEM DRIVER
8852 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8853 M:      Salil Mehta <salil.mehta@huawei.com>
8854 L:      netdev@vger.kernel.org
8855 S:      Maintained
8856 W:      http://www.hisilicon.com
8857 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8858 F:      drivers/net/ethernet/hisilicon/
8859
8860 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8861 M:      John Stultz <john.stultz@linaro.org>
8862 L:      linux-kernel@vger.kernel.org
8863 S:      Maintained
8864 F:      drivers/misc/hisi_hikey_usb.c
8865
8866 HISILICON PMU DRIVER
8867 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8868 M:      Qi Liu <liuqi115@huawei.com>
8869 S:      Supported
8870 W:      http://www.hisilicon.com
8871 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8872 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8873 F:      drivers/perf/hisilicon
8874
8875 HISILICON QM AND ZIP Controller DRIVER
8876 M:      Zhou Wang <wangzhou1@hisilicon.com>
8877 L:      linux-crypto@vger.kernel.org
8878 S:      Maintained
8879 F:      Documentation/ABI/testing/debugfs-hisi-zip
8880 F:      drivers/crypto/hisilicon/qm.c
8881 F:      drivers/crypto/hisilicon/sgl.c
8882 F:      drivers/crypto/hisilicon/zip/
8883 F:      include/linux/hisi_acc_qm.h
8884
8885 HISILICON ROCE DRIVER
8886 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8887 M:      Weihang Li <liweihang@huawei.com>
8888 L:      linux-rdma@vger.kernel.org
8889 S:      Maintained
8890 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8891 F:      drivers/infiniband/hw/hns/
8892
8893 HISILICON SAS Controller
8894 M:      John Garry <john.garry@huawei.com>
8895 S:      Supported
8896 W:      http://www.hisilicon.com
8897 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8898 F:      drivers/scsi/hisi_sas/
8899
8900 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8901 M:      Kai Ye <yekai13@huawei.com>
8902 M:      Longfang Liu <liulongfang@huawei.com>
8903 L:      linux-crypto@vger.kernel.org
8904 S:      Maintained
8905 F:      Documentation/ABI/testing/debugfs-hisi-sec
8906 F:      drivers/crypto/hisilicon/sec2/sec.h
8907 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8908 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8909 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8910
8911 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8912 M:      Jay Fang <f.fangjian@huawei.com>
8913 L:      linux-spi@vger.kernel.org
8914 S:      Maintained
8915 W:      http://www.hisilicon.com
8916 F:      drivers/spi/spi-hisi-kunpeng.c
8917
8918 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8919 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8920 L:      linux-kernel@vger.kernel.org
8921 S:      Maintained
8922 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8923 F:      drivers/spmi/hisi-spmi-controller.c
8924
8925 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8926 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8927 L:      linux-kernel@vger.kernel.org
8928 S:      Maintained
8929 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8930 F:      drivers/mfd/hi6421-spmi-pmic.c
8931
8932 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8933 M:      Weili Qian <qianweili@huawei.com>
8934 S:      Maintained
8935 F:      drivers/crypto/hisilicon/trng/trng.c
8936
8937 HISILICON V3XX SPI NOR FLASH Controller Driver
8938 M:      John Garry <john.garry@huawei.com>
8939 S:      Maintained
8940 W:      http://www.hisilicon.com
8941 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8942
8943 HMM - Heterogeneous Memory Management
8944 M:      Jérôme Glisse <jglisse@redhat.com>
8945 L:      linux-mm@kvack.org
8946 S:      Maintained
8947 F:      Documentation/vm/hmm.rst
8948 F:      include/linux/hmm*
8949 F:      lib/test_hmm*
8950 F:      mm/hmm*
8951 F:      tools/testing/selftests/vm/*hmm*
8952
8953 HOST AP DRIVER
8954 M:      Jouni Malinen <j@w1.fi>
8955 L:      linux-wireless@vger.kernel.org
8956 S:      Obsolete
8957 W:      http://w1.fi/hostap-driver.html
8958 F:      drivers/net/wireless/intersil/hostap/
8959
8960 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8961 L:      platform-driver-x86@vger.kernel.org
8962 S:      Orphan
8963 F:      drivers/platform/x86/tc1100-wmi.c
8964
8965 HPET:   High Precision Event Timers driver
8966 M:      Clemens Ladisch <clemens@ladisch.de>
8967 S:      Maintained
8968 F:      Documentation/timers/hpet.rst
8969 F:      drivers/char/hpet.c
8970 F:      include/linux/hpet.h
8971 F:      include/uapi/linux/hpet.h
8972
8973 HPET:   x86
8974 S:      Orphan
8975 F:      arch/x86/include/asm/hpet.h
8976 F:      arch/x86/kernel/hpet.c
8977
8978 HPFS FILESYSTEM
8979 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8980 S:      Maintained
8981 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8982 F:      fs/hpfs/
8983
8984 HSI SUBSYSTEM
8985 M:      Sebastian Reichel <sre@kernel.org>
8986 S:      Maintained
8987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8988 F:      Documentation/ABI/testing/sysfs-bus-hsi
8989 F:      Documentation/driver-api/hsi.rst
8990 F:      drivers/hsi/
8991 F:      include/linux/hsi/
8992 F:      include/uapi/linux/hsi/
8993
8994 HSO 3G MODEM DRIVER
8995 L:      linux-usb@vger.kernel.org
8996 S:      Orphan
8997 F:      drivers/net/usb/hso.c
8998
8999 HSR NETWORK PROTOCOL
9000 L:      netdev@vger.kernel.org
9001 S:      Orphan
9002 F:      net/hsr/
9003
9004 HT16K33 LED CONTROLLER DRIVER
9005 M:      Robin van der Gracht <robin@protonic.nl>
9006 S:      Maintained
9007 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9008 F:      drivers/auxdisplay/ht16k33.c
9009
9010 HTCPEN TOUCHSCREEN DRIVER
9011 M:      Pau Oliva Fora <pof@eslack.org>
9012 L:      linux-input@vger.kernel.org
9013 S:      Maintained
9014 F:      drivers/input/touchscreen/htcpen.c
9015
9016 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9017 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9018 L:      linux-iio@vger.kernel.org
9019 S:      Maintained
9020 W:      http://www.st.com/
9021 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9022 F:      drivers/iio/humidity/hts221*
9023
9024 HUAWEI ETHERNET DRIVER
9025 L:      netdev@vger.kernel.org
9026 S:      Orphan
9027 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9028 F:      drivers/net/ethernet/huawei/hinic/
9029
9030 HUGETLB FILESYSTEM
9031 M:      Mike Kravetz <mike.kravetz@oracle.com>
9032 L:      linux-mm@kvack.org
9033 S:      Maintained
9034 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9035 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9036 F:      Documentation/vm/hugetlbfs_reserv.rst
9037 F:      fs/hugetlbfs/
9038 F:      include/linux/hugetlb.h
9039 F:      mm/hugetlb.c
9040
9041 HVA ST MEDIA DRIVER
9042 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9043 L:      linux-media@vger.kernel.org
9044 S:      Supported
9045 W:      https://linuxtv.org
9046 T:      git git://linuxtv.org/media_tree.git
9047 F:      drivers/media/platform/st/sti/hva
9048
9049 HWPOISON MEMORY FAILURE HANDLING
9050 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9051 L:      linux-mm@kvack.org
9052 S:      Maintained
9053 F:      mm/hwpoison-inject.c
9054 F:      mm/memory-failure.c
9055
9056 HYCON HY46XX TOUCHSCREEN SUPPORT
9057 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9058 L:      linux-input@vger.kernel.org
9059 S:      Maintained
9060 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9061 F:      drivers/input/touchscreen/hycon-hy46xx.c
9062
9063 HYGON PROCESSOR SUPPORT
9064 M:      Pu Wen <puwen@hygon.cn>
9065 L:      linux-kernel@vger.kernel.org
9066 S:      Maintained
9067 F:      arch/x86/kernel/cpu/hygon.c
9068
9069 HYNIX HI556 SENSOR DRIVER
9070 M:      Shawn Tu <shawnx.tu@intel.com>
9071 L:      linux-media@vger.kernel.org
9072 S:      Maintained
9073 T:      git git://linuxtv.org/media_tree.git
9074 F:      drivers/media/i2c/hi556.c
9075
9076 HYNIX HI846 SENSOR DRIVER
9077 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9078 L:      linux-media@vger.kernel.org
9079 S:      Maintained
9080 F:      drivers/media/i2c/hi846.c
9081
9082 HYNIX HI847 SENSOR DRIVER
9083 M:      Shawn Tu <shawnx.tu@intel.com>
9084 L:      linux-media@vger.kernel.org
9085 S:      Maintained
9086 F:      drivers/media/i2c/hi847.c
9087
9088 Hyper-V/Azure CORE AND DRIVERS
9089 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9090 M:      Haiyang Zhang <haiyangz@microsoft.com>
9091 M:      Stephen Hemminger <sthemmin@microsoft.com>
9092 M:      Wei Liu <wei.liu@kernel.org>
9093 M:      Dexuan Cui <decui@microsoft.com>
9094 L:      linux-hyperv@vger.kernel.org
9095 S:      Supported
9096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9097 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9098 F:      Documentation/ABI/testing/debugfs-hyperv
9099 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9100 F:      arch/arm64/hyperv
9101 F:      arch/arm64/include/asm/hyperv-tlfs.h
9102 F:      arch/arm64/include/asm/mshyperv.h
9103 F:      arch/x86/hyperv
9104 F:      arch/x86/include/asm/hyperv-tlfs.h
9105 F:      arch/x86/include/asm/mshyperv.h
9106 F:      arch/x86/include/asm/trace/hyperv.h
9107 F:      arch/x86/kernel/cpu/mshyperv.c
9108 F:      drivers/clocksource/hyperv_timer.c
9109 F:      drivers/hid/hid-hyperv.c
9110 F:      drivers/hv/
9111 F:      drivers/input/serio/hyperv-keyboard.c
9112 F:      drivers/iommu/hyperv-iommu.c
9113 F:      drivers/net/ethernet/microsoft/
9114 F:      drivers/net/hyperv/
9115 F:      drivers/pci/controller/pci-hyperv-intf.c
9116 F:      drivers/pci/controller/pci-hyperv.c
9117 F:      drivers/scsi/storvsc_drv.c
9118 F:      drivers/uio/uio_hv_generic.c
9119 F:      drivers/video/fbdev/hyperv_fb.c
9120 F:      include/asm-generic/hyperv-tlfs.h
9121 F:      include/asm-generic/mshyperv.h
9122 F:      include/clocksource/hyperv_timer.h
9123 F:      include/linux/hyperv.h
9124 F:      include/uapi/linux/hyperv.h
9125 F:      net/vmw_vsock/hyperv_transport.c
9126 F:      tools/hv/
9127
9128 HYPERBUS SUPPORT
9129 M:      Vignesh Raghavendra <vigneshr@ti.com>
9130 L:      linux-mtd@lists.infradead.org
9131 S:      Supported
9132 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9133 C:      irc://irc.oftc.net/mtd
9134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9135 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9136 F:      drivers/mtd/hyperbus/
9137 F:      include/linux/mtd/hyperbus.h
9138
9139 HYPERVISOR VIRTUAL CONSOLE DRIVER
9140 L:      linuxppc-dev@lists.ozlabs.org
9141 S:      Odd Fixes
9142 F:      drivers/tty/hvc/
9143
9144 I2C ACPI SUPPORT
9145 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9146 L:      linux-i2c@vger.kernel.org
9147 L:      linux-acpi@vger.kernel.org
9148 S:      Maintained
9149 F:      drivers/i2c/i2c-core-acpi.c
9150
9151 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9152 M:      Ajay Gupta <ajayg@nvidia.com>
9153 L:      linux-i2c@vger.kernel.org
9154 S:      Maintained
9155 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9156 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9157
9158 I2C MUXES
9159 M:      Peter Rosin <peda@axentia.se>
9160 L:      linux-i2c@vger.kernel.org
9161 S:      Maintained
9162 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9163 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9164 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9165 F:      Documentation/i2c/i2c-topology.rst
9166 F:      Documentation/i2c/muxes/
9167 F:      drivers/i2c/i2c-mux.c
9168 F:      drivers/i2c/muxes/
9169 F:      include/linux/i2c-mux.h
9170
9171 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9172 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9173 L:      linux-i2c@vger.kernel.org
9174 S:      Maintained
9175 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9176 F:      drivers/i2c/busses/i2c-mv64xxx.c
9177
9178 I2C OVER PARALLEL PORT
9179 M:      Jean Delvare <jdelvare@suse.com>
9180 L:      linux-i2c@vger.kernel.org
9181 S:      Maintained
9182 F:      Documentation/i2c/busses/i2c-parport.rst
9183 F:      drivers/i2c/busses/i2c-parport.c
9184
9185 I2C SUBSYSTEM
9186 M:      Wolfram Sang <wsa@kernel.org>
9187 L:      linux-i2c@vger.kernel.org
9188 S:      Maintained
9189 W:      https://i2c.wiki.kernel.org/
9190 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9192 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9193 F:      Documentation/i2c/
9194 F:      drivers/i2c/*
9195 F:      include/linux/i2c-dev.h
9196 F:      include/linux/i2c-smbus.h
9197 F:      include/linux/i2c.h
9198 F:      include/uapi/linux/i2c-*.h
9199 F:      include/uapi/linux/i2c.h
9200
9201 I2C SUBSYSTEM HOST DRIVERS
9202 L:      linux-i2c@vger.kernel.org
9203 S:      Odd Fixes
9204 W:      https://i2c.wiki.kernel.org/
9205 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9207 F:      Documentation/devicetree/bindings/i2c/
9208 F:      drivers/i2c/algos/
9209 F:      drivers/i2c/busses/
9210
9211 I2C-TAOS-EVM DRIVER
9212 M:      Jean Delvare <jdelvare@suse.com>
9213 L:      linux-i2c@vger.kernel.org
9214 S:      Maintained
9215 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9216 F:      drivers/i2c/busses/i2c-taos-evm.c
9217
9218 I2C-TINY-USB DRIVER
9219 M:      Till Harbaum <till@harbaum.org>
9220 L:      linux-i2c@vger.kernel.org
9221 S:      Maintained
9222 W:      http://www.harbaum.org/till/i2c_tiny_usb
9223 F:      drivers/i2c/busses/i2c-tiny-usb.c
9224
9225 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9226 M:      Jean Delvare <jdelvare@suse.com>
9227 L:      linux-i2c@vger.kernel.org
9228 S:      Maintained
9229 F:      Documentation/i2c/busses/i2c-ali1535.rst
9230 F:      Documentation/i2c/busses/i2c-ali1563.rst
9231 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9232 F:      Documentation/i2c/busses/i2c-amd756.rst
9233 F:      Documentation/i2c/busses/i2c-amd8111.rst
9234 F:      Documentation/i2c/busses/i2c-i801.rst
9235 F:      Documentation/i2c/busses/i2c-nforce2.rst
9236 F:      Documentation/i2c/busses/i2c-piix4.rst
9237 F:      Documentation/i2c/busses/i2c-sis5595.rst
9238 F:      Documentation/i2c/busses/i2c-sis630.rst
9239 F:      Documentation/i2c/busses/i2c-sis96x.rst
9240 F:      Documentation/i2c/busses/i2c-via.rst
9241 F:      Documentation/i2c/busses/i2c-viapro.rst
9242 F:      drivers/i2c/busses/i2c-ali1535.c
9243 F:      drivers/i2c/busses/i2c-ali1563.c
9244 F:      drivers/i2c/busses/i2c-ali15x3.c
9245 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9246 F:      drivers/i2c/busses/i2c-amd756.c
9247 F:      drivers/i2c/busses/i2c-amd8111.c
9248 F:      drivers/i2c/busses/i2c-i801.c
9249 F:      drivers/i2c/busses/i2c-isch.c
9250 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9251 F:      drivers/i2c/busses/i2c-nforce2.c
9252 F:      drivers/i2c/busses/i2c-piix4.c
9253 F:      drivers/i2c/busses/i2c-sis5595.c
9254 F:      drivers/i2c/busses/i2c-sis630.c
9255 F:      drivers/i2c/busses/i2c-sis96x.c
9256 F:      drivers/i2c/busses/i2c-via.c
9257 F:      drivers/i2c/busses/i2c-viapro.c
9258
9259 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9260 M:      Hans de Goede <hdegoede@redhat.com>
9261 L:      linux-i2c@vger.kernel.org
9262 S:      Maintained
9263 F:      drivers/i2c/busses/i2c-cht-wc.c
9264
9265 I2C/SMBUS ISMT DRIVER
9266 M:      Seth Heasley <seth.heasley@intel.com>
9267 M:      Neil Horman <nhorman@tuxdriver.com>
9268 L:      linux-i2c@vger.kernel.org
9269 F:      Documentation/i2c/busses/i2c-ismt.rst
9270 F:      drivers/i2c/busses/i2c-ismt.c
9271
9272 I2C/SMBUS STUB DRIVER
9273 M:      Jean Delvare <jdelvare@suse.com>
9274 L:      linux-i2c@vger.kernel.org
9275 S:      Maintained
9276 F:      drivers/i2c/i2c-stub.c
9277
9278 I3C DRIVER FOR CADENCE I3C MASTER IP
9279 M:      Przemysław Gaj <pgaj@cadence.com>
9280 S:      Maintained
9281 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
9282 F:      drivers/i3c/master/i3c-master-cdns.c
9283
9284 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9285 M:      Vitor Soares <vitor.soares@synopsys.com>
9286 S:      Maintained
9287 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
9288 F:      drivers/i3c/master/dw*
9289
9290 I3C SUBSYSTEM
9291 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9292 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9293 S:      Maintained
9294 C:      irc://chat.freenode.net/linux-i3c
9295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9296 F:      Documentation/ABI/testing/sysfs-bus-i3c
9297 F:      Documentation/devicetree/bindings/i3c/
9298 F:      Documentation/driver-api/i3c
9299 F:      drivers/i3c/
9300 F:      include/linux/i3c/
9301
9302 IA64 (Itanium) PLATFORM
9303 L:      linux-ia64@vger.kernel.org
9304 S:      Orphan
9305 F:      Documentation/ia64/
9306 F:      arch/ia64/
9307
9308 IBM Power 842 compression accelerator
9309 M:      Haren Myneni <haren@us.ibm.com>
9310 S:      Supported
9311 F:      crypto/842.c
9312 F:      drivers/crypto/nx/Kconfig
9313 F:      drivers/crypto/nx/Makefile
9314 F:      drivers/crypto/nx/nx-842*
9315 F:      include/linux/sw842.h
9316 F:      lib/842/
9317
9318 IBM Power in-Nest Crypto Acceleration
9319 M:      Breno Leitão <leitao@debian.org>
9320 M:      Nayna Jain <nayna@linux.ibm.com>
9321 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9322 L:      linux-crypto@vger.kernel.org
9323 S:      Supported
9324 F:      drivers/crypto/nx/Kconfig
9325 F:      drivers/crypto/nx/Makefile
9326 F:      drivers/crypto/nx/nx-aes*
9327 F:      drivers/crypto/nx/nx-sha*
9328 F:      drivers/crypto/nx/nx.*
9329 F:      drivers/crypto/nx/nx_csbcpb.h
9330 F:      drivers/crypto/nx/nx_debugfs.c
9331
9332 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9333 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9334 L:      linux-pci@vger.kernel.org
9335 L:      linuxppc-dev@lists.ozlabs.org
9336 S:      Supported
9337 F:      drivers/pci/hotplug/rpadlpar*
9338
9339 IBM Power Linux RAID adapter
9340 M:      Brian King <brking@us.ibm.com>
9341 S:      Supported
9342 F:      drivers/scsi/ipr.*
9343
9344 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9345 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9346 L:      linux-pci@vger.kernel.org
9347 L:      linuxppc-dev@lists.ozlabs.org
9348 S:      Supported
9349 F:      drivers/pci/hotplug/rpaphp*
9350
9351 IBM Power SRIOV Virtual NIC Device Driver
9352 M:      Dany Madden <drt@linux.ibm.com>
9353 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9354 L:      netdev@vger.kernel.org
9355 S:      Supported
9356 F:      drivers/net/ethernet/ibm/ibmvnic.*
9357
9358 IBM Power Virtual Accelerator Switchboard
9359 L:      linuxppc-dev@lists.ozlabs.org
9360 S:      Supported
9361 F:      arch/powerpc/include/asm/vas.h
9362 F:      arch/powerpc/platforms/powernv/copy-paste.h
9363 F:      arch/powerpc/platforms/powernv/vas*
9364
9365 IBM Power Virtual Ethernet Device Driver
9366 M:      Cristobal Forno <cforno12@linux.ibm.com>
9367 L:      netdev@vger.kernel.org
9368 S:      Supported
9369 F:      drivers/net/ethernet/ibm/ibmveth.*
9370
9371 IBM Power Virtual FC Device Drivers
9372 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9373 L:      linux-scsi@vger.kernel.org
9374 S:      Supported
9375 F:      drivers/scsi/ibmvscsi/ibmvfc*
9376
9377 IBM Power Virtual Management Channel Driver
9378 M:      Brad Warrum <bwarrum@linux.ibm.com>
9379 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9380 S:      Supported
9381 F:      drivers/misc/ibmvmc.*
9382
9383 IBM Power Virtual SCSI Device Drivers
9384 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9385 L:      linux-scsi@vger.kernel.org
9386 S:      Supported
9387 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9388 F:      include/scsi/viosrp.h
9389
9390 IBM Power Virtual SCSI Device Target Driver
9391 M:      Michael Cyr <mikecyr@linux.ibm.com>
9392 L:      linux-scsi@vger.kernel.org
9393 L:      target-devel@vger.kernel.org
9394 S:      Supported
9395 F:      drivers/scsi/ibmvscsi_tgt/
9396
9397 IBM Power VMX Cryptographic instructions
9398 M:      Breno Leitão <leitao@debian.org>
9399 M:      Nayna Jain <nayna@linux.ibm.com>
9400 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9401 L:      linux-crypto@vger.kernel.org
9402 S:      Supported
9403 F:      drivers/crypto/vmx/Kconfig
9404 F:      drivers/crypto/vmx/Makefile
9405 F:      drivers/crypto/vmx/aes*
9406 F:      drivers/crypto/vmx/ghash*
9407 F:      drivers/crypto/vmx/ppc-xlate.pl
9408 F:      drivers/crypto/vmx/vmx.c
9409
9410 IBM ServeRAID RAID DRIVER
9411 S:      Orphan
9412 F:      drivers/scsi/ips.*
9413
9414 ICH LPC AND GPIO DRIVER
9415 M:      Peter Tyser <ptyser@xes-inc.com>
9416 S:      Maintained
9417 F:      drivers/gpio/gpio-ich.c
9418 F:      drivers/mfd/lpc_ich.c
9419
9420 ICY I2C DRIVER
9421 M:      Max Staudt <max@enpas.org>
9422 L:      linux-i2c@vger.kernel.org
9423 S:      Maintained
9424 F:      drivers/i2c/busses/i2c-icy.c
9425
9426 IDEAPAD LAPTOP EXTRAS DRIVER
9427 M:      Ike Panhc <ike.pan@canonical.com>
9428 L:      platform-driver-x86@vger.kernel.org
9429 S:      Maintained
9430 W:      http://launchpad.net/ideapad-laptop
9431 F:      drivers/platform/x86/ideapad-laptop.c
9432
9433 IDEAPAD LAPTOP SLIDEBAR DRIVER
9434 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9435 L:      linux-input@vger.kernel.org
9436 S:      Maintained
9437 W:      https://github.com/o2genum/ideapad-slidebar
9438 F:      drivers/input/misc/ideapad_slidebar.c
9439
9440 IDMAPPED MOUNTS
9441 M:      Christian Brauner <brauner@kernel.org>
9442 L:      linux-fsdevel@vger.kernel.org
9443 S:      Maintained
9444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9445 F:      Documentation/filesystems/idmappings.rst
9446 F:      tools/testing/selftests/mount_setattr/
9447 F:      include/linux/mnt_idmapping.h
9448
9449 IDT VersaClock 5 CLOCK DRIVER
9450 M:      Luca Ceresoli <luca@lucaceresoli.net>
9451 S:      Maintained
9452 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9453 F:      drivers/clk/clk-versaclock5.c
9454
9455 IEEE 802.15.4 SUBSYSTEM
9456 M:      Alexander Aring <alex.aring@gmail.com>
9457 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9458 L:      linux-wpan@vger.kernel.org
9459 S:      Maintained
9460 W:      https://linux-wpan.org/
9461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9463 F:      Documentation/networking/ieee802154.rst
9464 F:      drivers/net/ieee802154/
9465 F:      include/linux/ieee802154.h
9466 F:      include/linux/nl802154.h
9467 F:      include/net/af_ieee802154.h
9468 F:      include/net/cfg802154.h
9469 F:      include/net/ieee802154_netdev.h
9470 F:      include/net/mac802154.h
9471 F:      include/net/nl802154.h
9472 F:      net/ieee802154/
9473 F:      net/mac802154/
9474
9475 IFE PROTOCOL
9476 M:      Yotam Gigi <yotam.gi@gmail.com>
9477 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9478 F:      include/net/ife.h
9479 F:      include/uapi/linux/ife.h
9480 F:      net/ife
9481
9482 IGORPLUG-USB IR RECEIVER
9483 M:      Sean Young <sean@mess.org>
9484 L:      linux-media@vger.kernel.org
9485 S:      Maintained
9486 F:      drivers/media/rc/igorplugusb.c
9487
9488 IGUANAWORKS USB IR TRANSCEIVER
9489 M:      Sean Young <sean@mess.org>
9490 L:      linux-media@vger.kernel.org
9491 S:      Maintained
9492 F:      drivers/media/rc/iguanair.c
9493
9494 IIO DIGITAL POTENTIOMETER DAC
9495 M:      Peter Rosin <peda@axentia.se>
9496 L:      linux-iio@vger.kernel.org
9497 S:      Maintained
9498 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9499 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9500 F:      drivers/iio/dac/dpot-dac.c
9501
9502 IIO ENVELOPE DETECTOR
9503 M:      Peter Rosin <peda@axentia.se>
9504 L:      linux-iio@vger.kernel.org
9505 S:      Maintained
9506 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9507 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9508 F:      drivers/iio/adc/envelope-detector.c
9509
9510 IIO MULTIPLEXER
9511 M:      Peter Rosin <peda@axentia.se>
9512 L:      linux-iio@vger.kernel.org
9513 S:      Maintained
9514 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9515 F:      drivers/iio/multiplexer/iio-mux.c
9516
9517 IIO SCMI BASED DRIVER
9518 M:      Jyoti Bhayana <jbhayana@google.com>
9519 L:      linux-iio@vger.kernel.org
9520 S:      Maintained
9521 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9522
9523 IIO SUBSYSTEM AND DRIVERS
9524 M:      Jonathan Cameron <jic23@kernel.org>
9525 R:      Lars-Peter Clausen <lars@metafoo.de>
9526 L:      linux-iio@vger.kernel.org
9527 S:      Maintained
9528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9529 F:      Documentation/ABI/testing/configfs-iio*
9530 F:      Documentation/ABI/testing/sysfs-bus-iio*
9531 F:      Documentation/devicetree/bindings/iio/
9532 F:      drivers/iio/
9533 F:      drivers/staging/iio/
9534 F:      include/linux/iio/
9535 F:      tools/iio/
9536
9537 IIO UNIT CONVERTER
9538 M:      Peter Rosin <peda@axentia.se>
9539 L:      linux-iio@vger.kernel.org
9540 S:      Maintained
9541 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9542 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9543 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9544 F:      drivers/iio/afe/iio-rescale.c
9545
9546 IKANOS/ADI EAGLE ADSL USB DRIVER
9547 M:      Matthieu Castet <castet.matthieu@free.fr>
9548 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9549 S:      Maintained
9550 F:      drivers/usb/atm/ueagle-atm.c
9551
9552 IMAGIS TOUCHSCREEN DRIVER
9553 M:      Markuss Broks <markuss.broks@gmail.com>
9554 S:      Maintained
9555 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9556 F:      drivers/input/touchscreen/imagis.c
9557
9558 IMGTEC ASCII LCD DRIVER
9559 M:      Paul Burton <paulburton@kernel.org>
9560 S:      Maintained
9561 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9562 F:      drivers/auxdisplay/img-ascii-lcd.c
9563
9564 IMGTEC IR DECODER DRIVER
9565 S:      Orphan
9566 F:      drivers/media/rc/img-ir/
9567
9568 IMON SOUNDGRAPH USB IR RECEIVER
9569 M:      Sean Young <sean@mess.org>
9570 L:      linux-media@vger.kernel.org
9571 S:      Maintained
9572 F:      drivers/media/rc/imon.c
9573 F:      drivers/media/rc/imon_raw.c
9574
9575 IMS TWINTURBO FRAMEBUFFER DRIVER
9576 L:      linux-fbdev@vger.kernel.org
9577 S:      Orphan
9578 F:      drivers/video/fbdev/imsttfb.c
9579
9580 INA209 HARDWARE MONITOR DRIVER
9581 M:      Guenter Roeck <linux@roeck-us.net>
9582 L:      linux-hwmon@vger.kernel.org
9583 S:      Maintained
9584 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9585 F:      Documentation/hwmon/ina209.rst
9586 F:      drivers/hwmon/ina209.c
9587
9588 INA2XX HARDWARE MONITOR DRIVER
9589 M:      Guenter Roeck <linux@roeck-us.net>
9590 L:      linux-hwmon@vger.kernel.org
9591 S:      Maintained
9592 F:      Documentation/hwmon/ina2xx.rst
9593 F:      drivers/hwmon/ina2xx.c
9594 F:      include/linux/platform_data/ina2xx.h
9595
9596 INDUSTRY PACK SUBSYSTEM (IPACK)
9597 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9598 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9599 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9600 L:      industrypack-devel@lists.sourceforge.net
9601 S:      Maintained
9602 W:      http://industrypack.sourceforge.net
9603 F:      drivers/ipack/
9604
9605 INFINEON DPS310 Driver
9606 M:      Eddie James <eajames@linux.ibm.com>
9607 L:      linux-iio@vger.kernel.org
9608 S:      Maintained
9609 F:      drivers/iio/pressure/dps310.c
9610
9611 INFINIBAND SUBSYSTEM
9612 M:      Jason Gunthorpe <jgg@nvidia.com>
9613 M:      Leon Romanovsky <leonro@nvidia.com>
9614 L:      linux-rdma@vger.kernel.org
9615 S:      Supported
9616 W:      https://github.com/linux-rdma/rdma-core
9617 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9619 F:      Documentation/devicetree/bindings/infiniband/
9620 F:      Documentation/infiniband/
9621 F:      drivers/infiniband/
9622 F:      include/rdma/
9623 F:      include/trace/events/ib_mad.h
9624 F:      include/trace/events/ib_umad.h
9625 F:      include/uapi/linux/if_infiniband.h
9626 F:      include/uapi/rdma/
9627 F:      samples/bpf/ibumad_kern.c
9628 F:      samples/bpf/ibumad_user.c
9629
9630 INGENIC JZ4780 NAND DRIVER
9631 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9632 L:      linux-mtd@lists.infradead.org
9633 L:      linux-mips@vger.kernel.org
9634 S:      Maintained
9635 F:      drivers/mtd/nand/raw/ingenic/
9636
9637 INGENIC JZ47xx SoCs
9638 M:      Paul Cercueil <paul@crapouillou.net>
9639 L:      linux-mips@vger.kernel.org
9640 S:      Maintained
9641 F:      arch/mips/boot/dts/ingenic/
9642 F:      arch/mips/generic/board-ingenic.c
9643 F:      arch/mips/include/asm/mach-ingenic/
9644 F:      arch/mips/ingenic/Kconfig
9645 F:      drivers/clk/ingenic/
9646 F:      drivers/dma/dma-jz4780.c
9647 F:      drivers/gpu/drm/ingenic/
9648 F:      drivers/i2c/busses/i2c-jz4780.c
9649 F:      drivers/iio/adc/ingenic-adc.c
9650 F:      drivers/irqchip/irq-ingenic.c
9651 F:      drivers/memory/jz4780-nemc.c
9652 F:      drivers/mmc/host/jz4740_mmc.c
9653 F:      drivers/mtd/nand/raw/ingenic/
9654 F:      drivers/pinctrl/pinctrl-ingenic.c
9655 F:      drivers/power/supply/ingenic-battery.c
9656 F:      drivers/pwm/pwm-jz4740.c
9657 F:      drivers/remoteproc/ingenic_rproc.c
9658 F:      drivers/rtc/rtc-jz4740.c
9659 F:      drivers/tty/serial/8250/8250_ingenic.c
9660 F:      drivers/usb/musb/jz4740.c
9661 F:      drivers/watchdog/jz4740_wdt.c
9662 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9663 F:      include/linux/mfd/ingenic-tcu.h
9664 F:      sound/soc/codecs/jz47*
9665 F:      sound/soc/jz4740/
9666
9667 INJOINIC IP5xxx POWER BANK IC DRIVER
9668 M:      Samuel Holland <samuel@sholland.org>
9669 S:      Maintained
9670 F:      drivers/power/supply/ip5xxx_power.c
9671
9672 INOTIFY
9673 M:      Jan Kara <jack@suse.cz>
9674 R:      Amir Goldstein <amir73il@gmail.com>
9675 L:      linux-fsdevel@vger.kernel.org
9676 S:      Maintained
9677 F:      Documentation/filesystems/inotify.rst
9678 F:      fs/notify/inotify/
9679 F:      include/linux/inotify.h
9680 F:      include/uapi/linux/inotify.h
9681
9682 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9683 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9684 L:      linux-input@vger.kernel.org
9685 S:      Maintained
9686 Q:      http://patchwork.kernel.org/project/linux-input/list/
9687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9688 F:      Documentation/devicetree/bindings/input/
9689 F:      Documentation/devicetree/bindings/serio/
9690 F:      Documentation/input/
9691 F:      drivers/input/
9692 F:      include/linux/input.h
9693 F:      include/linux/input/
9694 F:      include/uapi/linux/input-event-codes.h
9695 F:      include/uapi/linux/input.h
9696
9697 INPUT MULTITOUCH (MT) PROTOCOL
9698 M:      Henrik Rydberg <rydberg@bitmath.org>
9699 L:      linux-input@vger.kernel.org
9700 S:      Odd fixes
9701 F:      Documentation/input/multi-touch-protocol.rst
9702 F:      drivers/input/input-mt.c
9703 K:      \b(ABS|SYN)_MT_
9704
9705 INSIDE SECURE CRYPTO DRIVER
9706 M:      Antoine Tenart <atenart@kernel.org>
9707 L:      linux-crypto@vger.kernel.org
9708 S:      Maintained
9709 F:      drivers/crypto/inside-secure/
9710
9711 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9712 M:      Mimi Zohar <zohar@linux.ibm.com>
9713 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9714 L:      linux-integrity@vger.kernel.org
9715 S:      Supported
9716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9717 F:      security/integrity/ima/
9718 F:      security/integrity/
9719
9720 INTEL 810/815 FRAMEBUFFER DRIVER
9721 M:      Antonino Daplas <adaplas@gmail.com>
9722 L:      linux-fbdev@vger.kernel.org
9723 S:      Maintained
9724 F:      drivers/video/fbdev/i810/
9725
9726 INTEL ASoC DRIVERS
9727 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9728 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9729 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9730 M:      Jie Yang <yang.jie@linux.intel.com>
9731 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9732 S:      Supported
9733 F:      sound/soc/intel/
9734
9735 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9736 M:      Hans de Goede <hdegoede@redhat.com>
9737 L:      platform-driver-x86@vger.kernel.org
9738 S:      Maintained
9739 F:      drivers/platform/x86/intel/atomisp2/pm.c
9740
9741 INTEL ATOMISP2 LED DRIVER
9742 M:      Hans de Goede <hdegoede@redhat.com>
9743 L:      platform-driver-x86@vger.kernel.org
9744 S:      Maintained
9745 F:      drivers/platform/x86/intel/atomisp2/led.c
9746
9747 INTEL BIOS SAR INT1092 DRIVER
9748 M:      Shravan Sudhakar <s.shravan@intel.com>
9749 M:      Intel Corporation <linuxwwan@intel.com>
9750 L:      platform-driver-x86@vger.kernel.org
9751 S:      Maintained
9752 F:      drivers/platform/x86/intel/int1092/
9753
9754 INTEL BROXTON PMC DRIVER
9755 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9756 M:      Zha Qipeng <qipeng.zha@intel.com>
9757 S:      Maintained
9758 F:      drivers/mfd/intel_pmc_bxt.c
9759 F:      include/linux/mfd/intel_pmc_bxt.h
9760
9761 INTEL C600 SERIES SAS CONTROLLER DRIVER
9762 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9763 L:      linux-scsi@vger.kernel.org
9764 S:      Supported
9765 T:      git git://git.code.sf.net/p/intel-sas/isci
9766 F:      drivers/scsi/isci/
9767
9768 INTEL CPU family model numbers
9769 M:      Tony Luck <tony.luck@intel.com>
9770 M:      x86@kernel.org
9771 L:      linux-kernel@vger.kernel.org
9772 S:      Supported
9773 F:      arch/x86/include/asm/intel-family.h
9774
9775 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9776 M:      Jani Nikula <jani.nikula@linux.intel.com>
9777 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9778 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9779 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9780 L:      intel-gfx@lists.freedesktop.org
9781 S:      Supported
9782 W:      https://01.org/linuxgraphics/
9783 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9784 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9785 C:      irc://irc.oftc.net/intel-gfx
9786 T:      git git://anongit.freedesktop.org/drm-intel
9787 F:      Documentation/gpu/i915.rst
9788 F:      drivers/gpu/drm/i915/
9789 F:      include/drm/i915*
9790 F:      include/uapi/drm/i915_drm.h
9791
9792 INTEL ETHERNET DRIVERS
9793 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9794 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9795 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9796 S:      Supported
9797 W:      http://www.intel.com/support/feedback.htm
9798 W:      http://e1000.sourceforge.net/
9799 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9802 F:      Documentation/networking/device_drivers/ethernet/intel/
9803 F:      drivers/net/ethernet/intel/
9804 F:      drivers/net/ethernet/intel/*/
9805 F:      include/linux/avf/virtchnl.h
9806 F:      include/linux/net/intel/iidc.h
9807
9808 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9809 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9810 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9811 L:      linux-rdma@vger.kernel.org
9812 S:      Supported
9813 F:      drivers/infiniband/hw/irdma/
9814 F:      include/uapi/rdma/irdma-abi.h
9815
9816 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9817 M:      Maik Broemme <mbroemme@libmpq.org>
9818 L:      linux-fbdev@vger.kernel.org
9819 S:      Maintained
9820 F:      Documentation/fb/intelfb.rst
9821 F:      drivers/video/fbdev/intelfb/
9822
9823 INTEL GPIO DRIVERS
9824 M:      Andy Shevchenko <andy@kernel.org>
9825 L:      linux-gpio@vger.kernel.org
9826 S:      Maintained
9827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9828 F:      drivers/gpio/gpio-ich.c
9829 F:      drivers/gpio/gpio-merrifield.c
9830 F:      drivers/gpio/gpio-ml-ioh.c
9831 F:      drivers/gpio/gpio-pch.c
9832 F:      drivers/gpio/gpio-sch.c
9833 F:      drivers/gpio/gpio-sodaville.c
9834
9835 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9836 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9837 M:      Zhi Wang <zhi.a.wang@intel.com>
9838 L:      intel-gvt-dev@lists.freedesktop.org
9839 L:      intel-gfx@lists.freedesktop.org
9840 S:      Supported
9841 W:      https://01.org/igvt-g
9842 T:      git https://github.com/intel/gvt-linux.git
9843 F:      drivers/gpu/drm/i915/gvt/
9844
9845 INTEL HID EVENT DRIVER
9846 M:      Alex Hung <alex.hung@canonical.com>
9847 L:      platform-driver-x86@vger.kernel.org
9848 S:      Maintained
9849 F:      drivers/platform/x86/intel/hid.c
9850
9851 INTEL I/OAT DMA DRIVER
9852 M:      Dave Jiang <dave.jiang@intel.com>
9853 R:      Dan Williams <dan.j.williams@intel.com>
9854 L:      dmaengine@vger.kernel.org
9855 S:      Supported
9856 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9857 F:      drivers/dma/ioat*
9858
9859 INTEL IADX DRIVER
9860 M:      Dave Jiang <dave.jiang@intel.com>
9861 L:      dmaengine@vger.kernel.org
9862 S:      Supported
9863 F:      drivers/dma/idxd/*
9864 F:      include/uapi/linux/idxd.h
9865
9866 INTEL IDLE DRIVER
9867 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9868 M:      Len Brown <lenb@kernel.org>
9869 L:      linux-pm@vger.kernel.org
9870 S:      Supported
9871 B:      https://bugzilla.kernel.org
9872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9873 F:      drivers/idle/intel_idle.c
9874
9875 INTEL INTEGRATED SENSOR HUB DRIVER
9876 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9877 M:      Jiri Kosina <jikos@kernel.org>
9878 L:      linux-input@vger.kernel.org
9879 S:      Maintained
9880 F:      drivers/hid/intel-ish-hid/
9881
9882 INTEL IOMMU (VT-d)
9883 M:      David Woodhouse <dwmw2@infradead.org>
9884 M:      Lu Baolu <baolu.lu@linux.intel.com>
9885 L:      iommu@lists.linux-foundation.org
9886 S:      Supported
9887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9888 F:      drivers/iommu/intel/
9889 F:      include/linux/intel-iommu.h
9890 F:      include/linux/intel-svm.h
9891
9892 INTEL IOP-ADMA DMA DRIVER
9893 R:      Dan Williams <dan.j.williams@intel.com>
9894 S:      Odd fixes
9895 F:      drivers/dma/iop-adma.c
9896
9897 INTEL IPU3 CSI-2 CIO2 DRIVER
9898 M:      Yong Zhi <yong.zhi@intel.com>
9899 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9900 M:      Bingbu Cao <bingbu.cao@intel.com>
9901 M:      Dan Scally <djrscally@gmail.com>
9902 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9903 L:      linux-media@vger.kernel.org
9904 S:      Maintained
9905 T:      git git://linuxtv.org/media_tree.git
9906 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9907 F:      drivers/media/pci/intel/ipu3/
9908
9909 INTEL IPU3 CSI-2 IMGU DRIVER
9910 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9911 R:      Bingbu Cao <bingbu.cao@intel.com>
9912 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9913 L:      linux-media@vger.kernel.org
9914 S:      Maintained
9915 F:      Documentation/admin-guide/media/ipu3.rst
9916 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9917 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9918 F:      drivers/staging/media/ipu3/
9919
9920 INTEL IXP4XX CRYPTO SUPPORT
9921 M:      Corentin Labbe <clabbe@baylibre.com>
9922 L:      linux-crypto@vger.kernel.org
9923 S:      Maintained
9924 F:      drivers/crypto/ixp4xx_crypto.c
9925
9926 INTEL ISHTP ECLITE DRIVER
9927 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9928 L:      platform-driver-x86@vger.kernel.org
9929 S:      Supported
9930 F:      drivers/platform/x86/intel/ishtp_eclite.c
9931
9932 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9933 M:      Krzysztof Halasa <khalasa@piap.pl>
9934 S:      Maintained
9935 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9936 F:      drivers/net/wan/ixp4xx_hss.c
9937 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9938 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9939 F:      include/linux/soc/ixp4xx/npe.h
9940 F:      include/linux/soc/ixp4xx/qmgr.h
9941
9942 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9943 M:      Deepak Saxena <dsaxena@plexity.net>
9944 S:      Maintained
9945 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9946 F:      drivers/char/hw_random/ixp4xx-rng.c
9947
9948 INTEL KEEM BAY DRM DRIVER
9949 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9950 M:      Edmund Dea <edmund.j.dea@intel.com>
9951 S:      Maintained
9952 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9953 F:      drivers/gpu/drm/kmb/
9954
9955 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9956 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9957 S:      Maintained
9958 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9959 F:      drivers/crypto/keembay/Kconfig
9960 F:      drivers/crypto/keembay/Makefile
9961 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9962 F:      drivers/crypto/keembay/ocs-aes.c
9963 F:      drivers/crypto/keembay/ocs-aes.h
9964
9965 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9966 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9967 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9968 M:      Mark Gross <mgross@linux.intel.com>
9969 S:      Maintained
9970 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9971 F:      drivers/crypto/keembay/Kconfig
9972 F:      drivers/crypto/keembay/Makefile
9973 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9974
9975 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9976 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9977 M:      Declan Murphy <declan.murphy@intel.com>
9978 S:      Maintained
9979 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9980 F:      drivers/crypto/keembay/Kconfig
9981 F:      drivers/crypto/keembay/Makefile
9982 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9983 F:      drivers/crypto/keembay/ocs-hcu.c
9984 F:      drivers/crypto/keembay/ocs-hcu.h
9985
9986 INTEL THUNDER BAY EMMC PHY DRIVER
9987 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
9988 M:      Rashmi A <rashmi.a@intel.com>
9989 S:      Maintained
9990 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
9991 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
9992
9993 INTEL MANAGEMENT ENGINE (mei)
9994 M:      Tomas Winkler <tomas.winkler@intel.com>
9995 L:      linux-kernel@vger.kernel.org
9996 S:      Supported
9997 F:      Documentation/driver-api/mei/*
9998 F:      drivers/misc/mei/
9999 F:      drivers/watchdog/mei_wdt.c
10000 F:      include/linux/mei_cl_bus.h
10001 F:      include/uapi/linux/mei.h
10002 F:      samples/mei/*
10003
10004 INTEL MAX 10 BMC MFD DRIVER
10005 M:      Xu Yilun <yilun.xu@intel.com>
10006 R:      Tom Rix <trix@redhat.com>
10007 S:      Maintained
10008 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10009 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10010 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10011 F:      drivers/mfd/intel-m10-bmc.c
10012 F:      include/linux/mfd/intel-m10-bmc.h
10013
10014 INTEL MENLOW THERMAL DRIVER
10015 M:      Sujith Thomas <sujith.thomas@intel.com>
10016 L:      linux-pm@vger.kernel.org
10017 S:      Supported
10018 W:      https://01.org/linux-acpi
10019 F:      drivers/thermal/intel/intel_menlow.c
10020
10021 INTEL P-Unit IPC DRIVER
10022 M:      Zha Qipeng <qipeng.zha@intel.com>
10023 L:      platform-driver-x86@vger.kernel.org
10024 S:      Maintained
10025 F:      arch/x86/include/asm/intel_punit_ipc.h
10026 F:      drivers/platform/x86/intel/punit_ipc.c
10027
10028 INTEL PMC CORE DRIVER
10029 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10030 M:      David E Box <david.e.box@intel.com>
10031 L:      platform-driver-x86@vger.kernel.org
10032 S:      Maintained
10033 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10034 F:      drivers/platform/x86/intel/pmc/
10035
10036 INTEL PMIC GPIO DRIVERS
10037 M:      Andy Shevchenko <andy@kernel.org>
10038 S:      Maintained
10039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10040 F:      drivers/gpio/gpio-*cove.c
10041
10042 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10043 M:      Andy Shevchenko <andy@kernel.org>
10044 S:      Maintained
10045 F:      drivers/mfd/intel_soc_pmic*
10046 F:      include/linux/mfd/intel_soc_pmic*
10047
10048 INTEL PMT DRIVERS
10049 M:      David E. Box <david.e.box@linux.intel.com>
10050 S:      Supported
10051 F:      drivers/platform/x86/intel/pmt/
10052
10053 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10054 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10055 L:      linux-wireless@vger.kernel.org
10056 S:      Maintained
10057 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10058 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10059 F:      drivers/net/wireless/intel/ipw2x00/
10060
10061 INTEL PSTATE DRIVER
10062 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10063 M:      Len Brown <lenb@kernel.org>
10064 L:      linux-pm@vger.kernel.org
10065 S:      Supported
10066 F:      drivers/cpufreq/intel_pstate.c
10067
10068 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10069 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10070 L:      linux-iio@vger.kernel.org
10071 F:      drivers/counter/intel-qep.c
10072
10073 INTEL SCU DRIVERS
10074 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10075 S:      Maintained
10076 F:      arch/x86/include/asm/intel_scu_ipc.h
10077 F:      drivers/platform/x86/intel_scu_*
10078
10079 INTEL SDSI DRIVER
10080 M:      David E. Box <david.e.box@linux.intel.com>
10081 S:      Supported
10082 F:      drivers/platform/x86/intel/sdsi.c
10083 F:      tools/arch/x86/intel_sdsi/
10084 F:      tools/testing/selftests/drivers/sdsi/
10085
10086 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10087 M:      Daniel Scally <djrscally@gmail.com>
10088 S:      Maintained
10089 F:      drivers/platform/x86/intel/int3472/
10090
10091 INTEL SPEED SELECT TECHNOLOGY
10092 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10093 L:      platform-driver-x86@vger.kernel.org
10094 S:      Maintained
10095 F:      drivers/platform/x86/intel/speed_select_if/
10096 F:      include/uapi/linux/isst_if.h
10097 F:      tools/power/x86/intel-speed-select/
10098
10099 INTEL STRATIX10 FIRMWARE DRIVERS
10100 M:      Dinh Nguyen <dinguyen@kernel.org>
10101 L:      linux-kernel@vger.kernel.org
10102 S:      Maintained
10103 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10104 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10105 F:      drivers/firmware/stratix10-rsu.c
10106 F:      drivers/firmware/stratix10-svc.c
10107 F:      include/linux/firmware/intel/stratix10-smc.h
10108 F:      include/linux/firmware/intel/stratix10-svc-client.h
10109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10110
10111 INTEL TELEMETRY DRIVER
10112 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10113 M:      "David E. Box" <david.e.box@linux.intel.com>
10114 L:      platform-driver-x86@vger.kernel.org
10115 S:      Maintained
10116 F:      arch/x86/include/asm/intel_telemetry.h
10117 F:      drivers/platform/x86/intel/telemetry/
10118
10119 INTEL UNCORE FREQUENCY CONTROL
10120 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10121 L:      platform-driver-x86@vger.kernel.org
10122 S:      Maintained
10123 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10124 F:      drivers/platform/x86/intel/uncore-frequency/
10125
10126 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10127 M:      David E. Box <david.e.box@linux.intel.com>
10128 S:      Supported
10129 F:      drivers/platform/x86/intel/vsec.*
10130
10131 INTEL VIRTUAL BUTTON DRIVER
10132 M:      AceLan Kao <acelan.kao@canonical.com>
10133 L:      platform-driver-x86@vger.kernel.org
10134 S:      Maintained
10135 F:      drivers/platform/x86/intel/vbtn.c
10136
10137 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10138 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10139 L:      linux-wireless@vger.kernel.org
10140 S:      Supported
10141 F:      drivers/net/wireless/intel/iwlegacy/
10142
10143 INTEL WIRELESS WIFI LINK (iwlwifi)
10144 M:      Luca Coelho <luciano.coelho@intel.com>
10145 L:      linux-wireless@vger.kernel.org
10146 S:      Supported
10147 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10149 F:      drivers/net/wireless/intel/iwlwifi/
10150
10151 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10152 M:      Jithu Joseph <jithu.joseph@intel.com>
10153 R:      Maurice Ma <maurice.ma@intel.com>
10154 S:      Maintained
10155 W:      https://slimbootloader.github.io/security/firmware-update.html
10156 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10157
10158 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10159 L:      Dell.Client.Kernel@dell.com
10160 S:      Maintained
10161 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10162
10163 INTEL WWAN IOSM DRIVER
10164 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10165 M:      Intel Corporation <linuxwwan@intel.com>
10166 L:      netdev@vger.kernel.org
10167 S:      Maintained
10168 F:      drivers/net/wwan/iosm/
10169
10170 INTEL(R) TRACE HUB
10171 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10172 S:      Supported
10173 F:      Documentation/trace/intel_th.rst
10174 F:      drivers/hwtracing/intel_th/
10175 F:      include/linux/intel_th.h
10176
10177 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10178 M:      Ning Sun <ning.sun@intel.com>
10179 L:      tboot-devel@lists.sourceforge.net
10180 S:      Supported
10181 W:      http://tboot.sourceforge.net
10182 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10183 F:      Documentation/x86/intel_txt.rst
10184 F:      arch/x86/kernel/tboot.c
10185 F:      include/linux/tboot.h
10186
10187 INTEL SGX
10188 M:      Jarkko Sakkinen <jarkko@kernel.org>
10189 R:      Dave Hansen <dave.hansen@linux.intel.com>
10190 L:      linux-sgx@vger.kernel.org
10191 S:      Supported
10192 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10194 F:      Documentation/x86/sgx.rst
10195 F:      arch/x86/entry/vdso/vsgx.S
10196 F:      arch/x86/include/asm/sgx.h
10197 F:      arch/x86/include/uapi/asm/sgx.h
10198 F:      arch/x86/kernel/cpu/sgx/*
10199 F:      tools/testing/selftests/sgx/*
10200 K:      \bSGX_
10201
10202 INTERCONNECT API
10203 M:      Georgi Djakov <djakov@kernel.org>
10204 L:      linux-pm@vger.kernel.org
10205 S:      Maintained
10206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10207 F:      Documentation/devicetree/bindings/interconnect/
10208 F:      Documentation/driver-api/interconnect.rst
10209 F:      drivers/interconnect/
10210 F:      include/dt-bindings/interconnect/
10211 F:      include/linux/interconnect-provider.h
10212 F:      include/linux/interconnect.h
10213
10214 INTERRUPT COUNTER DRIVER
10215 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10216 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10217 L:      linux-iio@vger.kernel.org
10218 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10219 F:      drivers/counter/interrupt-cnt.c
10220
10221 INTERSIL ISL7998X VIDEO DECODER DRIVER
10222 M:      Michael Tretter <m.tretter@pengutronix.de>
10223 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10224 L:      linux-media@vger.kernel.org
10225 S:      Maintained
10226 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10227 F:      drivers/media/i2c/isl7998x.c
10228
10229 INVENSENSE ICM-426xx IMU DRIVER
10230 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10231 L:      linux-iio@vger.kernel.org
10232 S:      Maintained
10233 W:      https://invensense.tdk.com/
10234 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10235 F:      drivers/iio/imu/inv_icm42600/
10236
10237 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10238 M:      Linus Walleij <linus.walleij@linaro.org>
10239 L:      linux-iio@vger.kernel.org
10240 S:      Maintained
10241 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10242 F:      drivers/iio/gyro/mpu3050*
10243
10244 IOC3 ETHERNET DRIVER
10245 M:      Ralf Baechle <ralf@linux-mips.org>
10246 L:      linux-mips@vger.kernel.org
10247 S:      Maintained
10248 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10249
10250 IOMAP FILESYSTEM LIBRARY
10251 M:      Christoph Hellwig <hch@infradead.org>
10252 M:      Darrick J. Wong <djwong@kernel.org>
10253 L:      linux-xfs@vger.kernel.org
10254 L:      linux-fsdevel@vger.kernel.org
10255 S:      Supported
10256 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10257 F:      fs/iomap/
10258 F:      include/linux/iomap.h
10259
10260 IOMMU DRIVERS
10261 M:      Joerg Roedel <joro@8bytes.org>
10262 M:      Will Deacon <will@kernel.org>
10263 L:      iommu@lists.linux-foundation.org
10264 S:      Maintained
10265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10266 F:      Documentation/devicetree/bindings/iommu/
10267 F:      Documentation/userspace-api/iommu.rst
10268 F:      drivers/iommu/
10269 F:      include/linux/iommu.h
10270 F:      include/linux/iova.h
10271 F:      include/linux/of_iommu.h
10272 F:      include/uapi/linux/iommu.h
10273
10274 IOSYS-MAP HELPERS
10275 M:      Thomas Zimmermann <tzimmermann@suse.de>
10276 L:      dri-devel@lists.freedesktop.org
10277 S:      Maintained
10278 T:      git git://anongit.freedesktop.org/drm/drm-misc
10279 F:      include/linux/iosys-map.h
10280
10281 IO_URING
10282 M:      Jens Axboe <axboe@kernel.dk>
10283 R:      Pavel Begunkov <asml.silence@gmail.com>
10284 L:      io-uring@vger.kernel.org
10285 S:      Maintained
10286 T:      git git://git.kernel.dk/linux-block
10287 T:      git git://git.kernel.dk/liburing
10288 F:      fs/io-wq.c
10289 F:      fs/io-wq.h
10290 F:      fs/io_uring.c
10291 F:      include/linux/io_uring.h
10292 F:      include/uapi/linux/io_uring.h
10293 F:      tools/io_uring/
10294
10295 IPMI SUBSYSTEM
10296 M:      Corey Minyard <minyard@acm.org>
10297 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10298 S:      Supported
10299 W:      http://openipmi.sourceforge.net/
10300 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10301 F:      Documentation/driver-api/ipmi.rst
10302 F:      Documentation/devicetree/bindings/ipmi/
10303 F:      drivers/char/ipmi/
10304 F:      include/linux/ipmi*
10305 F:      include/uapi/linux/ipmi*
10306
10307 IPS SCSI RAID DRIVER
10308 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10309 L:      linux-scsi@vger.kernel.org
10310 S:      Maintained
10311 W:      http://www.adaptec.com/
10312 F:      drivers/scsi/ips*
10313
10314 IPVS
10315 M:      Simon Horman <horms@verge.net.au>
10316 M:      Julian Anastasov <ja@ssi.bg>
10317 L:      netdev@vger.kernel.org
10318 L:      lvs-devel@vger.kernel.org
10319 S:      Maintained
10320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10322 F:      Documentation/networking/ipvs-sysctl.rst
10323 F:      include/net/ip_vs.h
10324 F:      include/uapi/linux/ip_vs.h
10325 F:      net/netfilter/ipvs/
10326
10327 IPWIRELESS DRIVER
10328 M:      Jiri Kosina <jikos@kernel.org>
10329 M:      David Sterba <dsterba@suse.com>
10330 S:      Odd Fixes
10331 F:      drivers/tty/ipwireless/
10332
10333 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10334 M:      Marc Zyngier <maz@kernel.org>
10335 S:      Maintained
10336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10337 F:      Documentation/core-api/irq/irq-domain.rst
10338 F:      include/linux/irqdomain.h
10339 F:      kernel/irq/irqdomain.c
10340 F:      kernel/irq/msi.c
10341
10342 IRQ SUBSYSTEM
10343 M:      Thomas Gleixner <tglx@linutronix.de>
10344 L:      linux-kernel@vger.kernel.org
10345 S:      Maintained
10346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10347 F:      kernel/irq/
10348
10349 IRQCHIP DRIVERS
10350 M:      Thomas Gleixner <tglx@linutronix.de>
10351 M:      Marc Zyngier <maz@kernel.org>
10352 L:      linux-kernel@vger.kernel.org
10353 S:      Maintained
10354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10355 F:      Documentation/devicetree/bindings/interrupt-controller/
10356 F:      drivers/irqchip/
10357
10358 ISA
10359 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10360 S:      Maintained
10361 F:      Documentation/driver-api/isa.rst
10362 F:      drivers/base/isa.c
10363 F:      include/linux/isa.h
10364
10365 ISA RADIO MODULE
10366 M:      Hans Verkuil <hverkuil@xs4all.nl>
10367 L:      linux-media@vger.kernel.org
10368 S:      Maintained
10369 W:      https://linuxtv.org
10370 T:      git git://linuxtv.org/media_tree.git
10371 F:      drivers/media/radio/radio-isa*
10372
10373 ISAPNP
10374 M:      Jaroslav Kysela <perex@perex.cz>
10375 S:      Maintained
10376 F:      Documentation/driver-api/isapnp.rst
10377 F:      drivers/pnp/isapnp/
10378 F:      include/linux/isapnp.h
10379
10380 ISCSI
10381 M:      Lee Duncan <lduncan@suse.com>
10382 M:      Chris Leech <cleech@redhat.com>
10383 M:      Mike Christie <michael.christie@oracle.com>
10384 L:      open-iscsi@googlegroups.com
10385 L:      linux-scsi@vger.kernel.org
10386 S:      Maintained
10387 W:      www.open-iscsi.com
10388 F:      drivers/scsi/*iscsi*
10389 F:      include/scsi/*iscsi*
10390
10391 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10392 M:      Peter Jones <pjones@redhat.com>
10393 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10394 S:      Maintained
10395 F:      drivers/firmware/iscsi_ibft*
10396
10397 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10398 M:      Sagi Grimberg <sagi@grimberg.me>
10399 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10400 L:      linux-rdma@vger.kernel.org
10401 S:      Supported
10402 W:      http://www.openfabrics.org
10403 W:      www.open-iscsi.org
10404 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10405 F:      drivers/infiniband/ulp/iser/
10406
10407 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10408 M:      Sagi Grimberg <sagi@grimberg.me>
10409 L:      linux-rdma@vger.kernel.org
10410 L:      target-devel@vger.kernel.org
10411 S:      Supported
10412 W:      http://www.linux-iscsi.org
10413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10414 F:      drivers/infiniband/ulp/isert
10415
10416 ISDN/CMTP OVER BLUETOOTH
10417 M:      Karsten Keil <isdn@linux-pingi.de>
10418 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10419 L:      netdev@vger.kernel.org
10420 S:      Odd Fixes
10421 W:      http://www.isdn4linux.de
10422 F:      Documentation/isdn/
10423 F:      drivers/isdn/capi/
10424 F:      include/linux/isdn/
10425 F:      include/uapi/linux/isdn/
10426 F:      net/bluetooth/cmtp/
10427
10428 ISDN/mISDN SUBSYSTEM
10429 M:      Karsten Keil <isdn@linux-pingi.de>
10430 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10431 L:      netdev@vger.kernel.org
10432 S:      Maintained
10433 W:      http://www.isdn4linux.de
10434 F:      drivers/isdn/Kconfig
10435 F:      drivers/isdn/Makefile
10436 F:      drivers/isdn/hardware/
10437 F:      drivers/isdn/mISDN/
10438
10439 IT87 HARDWARE MONITORING DRIVER
10440 M:      Jean Delvare <jdelvare@suse.com>
10441 L:      linux-hwmon@vger.kernel.org
10442 S:      Maintained
10443 F:      Documentation/hwmon/it87.rst
10444 F:      drivers/hwmon/it87.c
10445
10446 IT913X MEDIA DRIVER
10447 M:      Antti Palosaari <crope@iki.fi>
10448 L:      linux-media@vger.kernel.org
10449 S:      Maintained
10450 W:      https://linuxtv.org
10451 W:      http://palosaari.fi/linux/
10452 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10453 T:      git git://linuxtv.org/anttip/media_tree.git
10454 F:      drivers/media/tuners/it913x*
10455
10456 ITE IT66121 HDMI BRIDGE DRIVER
10457 M:      Phong LE <ple@baylibre.com>
10458 M:      Neil Armstrong <narmstrong@baylibre.com>
10459 S:      Maintained
10460 T:      git git://anongit.freedesktop.org/drm/drm-misc
10461 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10462 F:      drivers/gpu/drm/bridge/ite-it66121.c
10463
10464 IVTV VIDEO4LINUX DRIVER
10465 M:      Andy Walls <awalls@md.metrocast.net>
10466 L:      linux-media@vger.kernel.org
10467 S:      Maintained
10468 W:      https://linuxtv.org
10469 T:      git git://linuxtv.org/media_tree.git
10470 F:      Documentation/admin-guide/media/ivtv*
10471 F:      drivers/media/pci/ivtv/
10472 F:      include/uapi/linux/ivtv*
10473
10474 IX2505V MEDIA DRIVER
10475 M:      Malcolm Priestley <tvboxspy@gmail.com>
10476 L:      linux-media@vger.kernel.org
10477 S:      Maintained
10478 W:      https://linuxtv.org
10479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10480 F:      drivers/media/dvb-frontends/ix2505v*
10481
10482 JAILHOUSE HYPERVISOR INTERFACE
10483 M:      Jan Kiszka <jan.kiszka@siemens.com>
10484 L:      jailhouse-dev@googlegroups.com
10485 S:      Maintained
10486 F:      arch/x86/include/asm/jailhouse_para.h
10487 F:      arch/x86/kernel/jailhouse.c
10488
10489 JC42.4 TEMPERATURE SENSOR DRIVER
10490 M:      Guenter Roeck <linux@roeck-us.net>
10491 L:      linux-hwmon@vger.kernel.org
10492 S:      Maintained
10493 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10494 F:      Documentation/hwmon/jc42.rst
10495 F:      drivers/hwmon/jc42.c
10496
10497 JFS FILESYSTEM
10498 M:      Dave Kleikamp <shaggy@kernel.org>
10499 L:      jfs-discussion@lists.sourceforge.net
10500 S:      Maintained
10501 W:      http://jfs.sourceforge.net/
10502 T:      git git://github.com/kleikamp/linux-shaggy.git
10503 F:      Documentation/admin-guide/jfs.rst
10504 F:      fs/jfs/
10505
10506 JME NETWORK DRIVER
10507 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10508 L:      netdev@vger.kernel.org
10509 S:      Maintained
10510 F:      drivers/net/ethernet/jme.*
10511
10512 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10513 M:      David Woodhouse <dwmw2@infradead.org>
10514 M:      Richard Weinberger <richard@nod.at>
10515 L:      linux-mtd@lists.infradead.org
10516 S:      Odd Fixes
10517 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10518 T:      git git://git.infradead.org/ubifs-2.6.git
10519 F:      fs/jffs2/
10520 F:      include/uapi/linux/jffs2.h
10521
10522 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10523 M:      "Theodore Ts'o" <tytso@mit.edu>
10524 M:      Jan Kara <jack@suse.com>
10525 L:      linux-ext4@vger.kernel.org
10526 S:      Maintained
10527 F:      fs/jbd2/
10528 F:      include/linux/jbd2.h
10529
10530 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10531 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10532 L:      linux-media@vger.kernel.org
10533 L:      linux-renesas-soc@vger.kernel.org
10534 S:      Maintained
10535 F:      drivers/media/platform/renesas/rcar_jpu.c
10536
10537 JSM Neo PCI based serial card
10538 L:      linux-serial@vger.kernel.org
10539 S:      Orphan
10540 F:      drivers/tty/serial/jsm/
10541
10542 K10TEMP HARDWARE MONITORING DRIVER
10543 M:      Clemens Ladisch <clemens@ladisch.de>
10544 L:      linux-hwmon@vger.kernel.org
10545 S:      Maintained
10546 F:      Documentation/hwmon/k10temp.rst
10547 F:      drivers/hwmon/k10temp.c
10548
10549 K8TEMP HARDWARE MONITORING DRIVER
10550 M:      Rudolf Marek <r.marek@assembler.cz>
10551 L:      linux-hwmon@vger.kernel.org
10552 S:      Maintained
10553 F:      Documentation/hwmon/k8temp.rst
10554 F:      drivers/hwmon/k8temp.c
10555
10556 KASAN
10557 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10558 R:      Alexander Potapenko <glider@google.com>
10559 R:      Andrey Konovalov <andreyknvl@gmail.com>
10560 R:      Dmitry Vyukov <dvyukov@google.com>
10561 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10562 L:      kasan-dev@googlegroups.com
10563 S:      Maintained
10564 F:      Documentation/dev-tools/kasan.rst
10565 F:      arch/*/include/asm/*kasan.h
10566 F:      arch/*/mm/kasan_init*
10567 F:      include/linux/kasan*.h
10568 F:      lib/Kconfig.kasan
10569 F:      lib/test_kasan*.c
10570 F:      mm/kasan/
10571 F:      scripts/Makefile.kasan
10572
10573 KCONFIG
10574 M:      Masahiro Yamada <masahiroy@kernel.org>
10575 L:      linux-kbuild@vger.kernel.org
10576 S:      Maintained
10577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10578 F:      Documentation/kbuild/kconfig*
10579 F:      scripts/Kconfig.include
10580 F:      scripts/kconfig/
10581
10582 KCOV
10583 R:      Dmitry Vyukov <dvyukov@google.com>
10584 R:      Andrey Konovalov <andreyknvl@gmail.com>
10585 L:      kasan-dev@googlegroups.com
10586 S:      Maintained
10587 F:      Documentation/dev-tools/kcov.rst
10588 F:      include/linux/kcov.h
10589 F:      include/uapi/linux/kcov.h
10590 F:      kernel/kcov.c
10591 F:      scripts/Makefile.kcov
10592
10593 KCSAN
10594 M:      Marco Elver <elver@google.com>
10595 R:      Dmitry Vyukov <dvyukov@google.com>
10596 L:      kasan-dev@googlegroups.com
10597 S:      Maintained
10598 F:      Documentation/dev-tools/kcsan.rst
10599 F:      include/linux/kcsan*.h
10600 F:      kernel/kcsan/
10601 F:      lib/Kconfig.kcsan
10602 F:      scripts/Makefile.kcsan
10603
10604 KDUMP
10605 M:      Baoquan He <bhe@redhat.com>
10606 R:      Vivek Goyal <vgoyal@redhat.com>
10607 R:      Dave Young <dyoung@redhat.com>
10608 L:      kexec@lists.infradead.org
10609 S:      Maintained
10610 W:      http://lse.sourceforge.net/kdump/
10611 F:      Documentation/admin-guide/kdump/
10612 F:      fs/proc/vmcore.c
10613 F:      include/linux/crash_core.h
10614 F:      include/linux/crash_dump.h
10615 F:      include/uapi/linux/vmcore.h
10616 F:      kernel/crash_*.c
10617
10618 KEENE FM RADIO TRANSMITTER DRIVER
10619 M:      Hans Verkuil <hverkuil@xs4all.nl>
10620 L:      linux-media@vger.kernel.org
10621 S:      Maintained
10622 W:      https://linuxtv.org
10623 T:      git git://linuxtv.org/media_tree.git
10624 F:      drivers/media/radio/radio-keene*
10625
10626 KERNEL AUTOMOUNTER
10627 M:      Ian Kent <raven@themaw.net>
10628 L:      autofs@vger.kernel.org
10629 S:      Maintained
10630 F:      fs/autofs/
10631
10632 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10633 M:      Masahiro Yamada <masahiroy@kernel.org>
10634 M:      Michal Marek <michal.lkml@markovi.net>
10635 R:      Nick Desaulniers <ndesaulniers@google.com>
10636 L:      linux-kbuild@vger.kernel.org
10637 S:      Maintained
10638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10639 F:      Documentation/kbuild/
10640 F:      Makefile
10641 F:      scripts/*vmlinux*
10642 F:      scripts/Kbuild*
10643 F:      scripts/Makefile*
10644 F:      scripts/basic/
10645 F:      scripts/dummy-tools/
10646 F:      scripts/mk*
10647 F:      scripts/mod/
10648 F:      scripts/package/
10649
10650 KERNEL JANITORS
10651 L:      kernel-janitors@vger.kernel.org
10652 S:      Odd Fixes
10653 W:      http://kernelnewbies.org/KernelJanitors
10654
10655 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10656 M:      Chuck Lever <chuck.lever@oracle.com>
10657 L:      linux-nfs@vger.kernel.org
10658 S:      Supported
10659 W:      http://nfs.sourceforge.net/
10660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10661 F:      fs/lockd/
10662 F:      fs/nfs_common/
10663 F:      fs/nfsd/
10664 F:      include/linux/lockd/
10665 F:      include/linux/sunrpc/
10666 F:      include/uapi/linux/nfsd/
10667 F:      include/uapi/linux/sunrpc/
10668 F:      net/sunrpc/
10669 F:      Documentation/filesystems/nfs/
10670
10671 KERNEL REGRESSIONS
10672 M:      Thorsten Leemhuis <linux@leemhuis.info>
10673 L:      regressions@lists.linux.dev
10674 S:      Supported
10675 F:      Documentation/admin-guide/reporting-regressions.rst
10676 F:      Documentation/process/handling-regressions.rst
10677
10678 KERNEL SELFTEST FRAMEWORK
10679 M:      Shuah Khan <shuah@kernel.org>
10680 M:      Shuah Khan <skhan@linuxfoundation.org>
10681 L:      linux-kselftest@vger.kernel.org
10682 S:      Maintained
10683 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10685 F:      Documentation/dev-tools/kselftest*
10686 F:      tools/testing/selftests/
10687
10688 KERNEL SMB3 SERVER (KSMBD)
10689 M:      Namjae Jeon <linkinjeon@kernel.org>
10690 M:      Steve French <sfrench@samba.org>
10691 M:      Hyunchul Lee <hyc.lee@gmail.com>
10692 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
10693 L:      linux-cifs@vger.kernel.org
10694 S:      Maintained
10695 T:      git git://git.samba.org/ksmbd.git
10696 F:      fs/ksmbd/
10697 F:      fs/smbfs_common/
10698
10699 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10700 M:      Brendan Higgins <brendanhiggins@google.com>
10701 L:      linux-kselftest@vger.kernel.org
10702 L:      kunit-dev@googlegroups.com
10703 S:      Maintained
10704 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10705 F:      Documentation/dev-tools/kunit/
10706 F:      include/kunit/
10707 F:      lib/kunit/
10708 F:      tools/testing/kunit/
10709
10710 KERNEL USERMODE HELPER
10711 M:      Luis Chamberlain <mcgrof@kernel.org>
10712 L:      linux-kernel@vger.kernel.org
10713 S:      Maintained
10714 F:      include/linux/umh.h
10715 F:      kernel/umh.c
10716
10717 KERNEL VIRTUAL MACHINE (KVM)
10718 M:      Paolo Bonzini <pbonzini@redhat.com>
10719 L:      kvm@vger.kernel.org
10720 S:      Supported
10721 W:      http://www.linux-kvm.org
10722 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10723 F:      Documentation/virt/kvm/
10724 F:      include/asm-generic/kvm*
10725 F:      include/kvm/iodev.h
10726 F:      include/linux/kvm*
10727 F:      include/trace/events/kvm.h
10728 F:      include/uapi/asm-generic/kvm*
10729 F:      include/uapi/linux/kvm*
10730 F:      tools/kvm/
10731 F:      tools/testing/selftests/kvm/
10732 F:      virt/kvm/*
10733
10734 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10735 M:      Marc Zyngier <maz@kernel.org>
10736 R:      James Morse <james.morse@arm.com>
10737 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10738 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10740 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10741 S:      Maintained
10742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10743 F:      arch/arm64/include/asm/kvm*
10744 F:      arch/arm64/include/uapi/asm/kvm*
10745 F:      arch/arm64/kvm/
10746 F:      include/kvm/arm_*
10747 F:      tools/testing/selftests/kvm/*/aarch64/
10748 F:      tools/testing/selftests/kvm/aarch64/
10749
10750 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10751 M:      Huacai Chen <chenhuacai@kernel.org>
10752 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10753 L:      linux-mips@vger.kernel.org
10754 L:      kvm@vger.kernel.org
10755 S:      Maintained
10756 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10757 F:      arch/mips/include/asm/kvm*
10758 F:      arch/mips/include/uapi/asm/kvm*
10759 F:      arch/mips/kvm/
10760
10761 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10762 L:      linuxppc-dev@lists.ozlabs.org
10763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10764 F:      arch/powerpc/include/asm/kvm*
10765 F:      arch/powerpc/include/uapi/asm/kvm*
10766 F:      arch/powerpc/kernel/kvm*
10767 F:      arch/powerpc/kvm/
10768
10769 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10770 M:      Anup Patel <anup@brainfault.org>
10771 R:      Atish Patra <atishp@atishpatra.org>
10772 L:      kvm@vger.kernel.org
10773 L:      kvm-riscv@lists.infradead.org
10774 L:      linux-riscv@lists.infradead.org
10775 S:      Maintained
10776 T:      git git://github.com/kvm-riscv/linux.git
10777 F:      arch/riscv/include/asm/kvm*
10778 F:      arch/riscv/include/uapi/asm/kvm*
10779 F:      arch/riscv/kvm/
10780
10781 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10782 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10783 M:      Janosch Frank <frankja@linux.ibm.com>
10784 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10785 R:      David Hildenbrand <david@redhat.com>
10786 L:      kvm@vger.kernel.org
10787 S:      Supported
10788 W:      http://www.ibm.com/developerworks/linux/linux390/
10789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10790 F:      Documentation/virt/kvm/s390*
10791 F:      arch/s390/include/asm/gmap.h
10792 F:      arch/s390/include/asm/kvm*
10793 F:      arch/s390/include/uapi/asm/kvm*
10794 F:      arch/s390/kernel/uv.c
10795 F:      arch/s390/kvm/
10796 F:      arch/s390/mm/gmap.c
10797 F:      tools/testing/selftests/kvm/*/s390x/
10798 F:      tools/testing/selftests/kvm/s390x/
10799
10800 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10801 M:      Paolo Bonzini <pbonzini@redhat.com>
10802 R:      Sean Christopherson <seanjc@google.com>
10803 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10804 R:      Wanpeng Li <wanpengli@tencent.com>
10805 R:      Jim Mattson <jmattson@google.com>
10806 R:      Joerg Roedel <joro@8bytes.org>
10807 L:      kvm@vger.kernel.org
10808 S:      Supported
10809 W:      http://www.linux-kvm.org
10810 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10811 F:      arch/x86/include/asm/kvm*
10812 F:      arch/x86/include/asm/pvclock-abi.h
10813 F:      arch/x86/include/asm/svm.h
10814 F:      arch/x86/include/asm/vmx*.h
10815 F:      arch/x86/include/uapi/asm/kvm*
10816 F:      arch/x86/include/uapi/asm/svm.h
10817 F:      arch/x86/include/uapi/asm/vmx.h
10818 F:      arch/x86/kernel/kvm.c
10819 F:      arch/x86/kernel/kvmclock.c
10820 F:      arch/x86/kvm/
10821 F:      arch/x86/kvm/*/
10822
10823 KERNFS
10824 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10825 M:      Tejun Heo <tj@kernel.org>
10826 S:      Supported
10827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10828 F:      fs/kernfs/
10829 F:      include/linux/kernfs.h
10830
10831 KEXEC
10832 M:      Eric Biederman <ebiederm@xmission.com>
10833 L:      kexec@lists.infradead.org
10834 S:      Maintained
10835 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10836 F:      include/linux/kexec.h
10837 F:      include/uapi/linux/kexec.h
10838 F:      kernel/kexec*
10839
10840 KEYS-ENCRYPTED
10841 M:      Mimi Zohar <zohar@linux.ibm.com>
10842 L:      linux-integrity@vger.kernel.org
10843 L:      keyrings@vger.kernel.org
10844 S:      Supported
10845 F:      Documentation/security/keys/trusted-encrypted.rst
10846 F:      include/keys/encrypted-type.h
10847 F:      security/keys/encrypted-keys/
10848
10849 KEYS-TRUSTED
10850 M:      James Bottomley <jejb@linux.ibm.com>
10851 M:      Jarkko Sakkinen <jarkko@kernel.org>
10852 M:      Mimi Zohar <zohar@linux.ibm.com>
10853 L:      linux-integrity@vger.kernel.org
10854 L:      keyrings@vger.kernel.org
10855 S:      Supported
10856 F:      Documentation/security/keys/trusted-encrypted.rst
10857 F:      include/keys/trusted-type.h
10858 F:      include/keys/trusted_tpm.h
10859 F:      security/keys/trusted-keys/
10860
10861 KEYS-TRUSTED-TEE
10862 M:      Sumit Garg <sumit.garg@linaro.org>
10863 L:      linux-integrity@vger.kernel.org
10864 L:      keyrings@vger.kernel.org
10865 S:      Supported
10866 F:      include/keys/trusted_tee.h
10867 F:      security/keys/trusted-keys/trusted_tee.c
10868
10869 KEYS/KEYRINGS
10870 M:      David Howells <dhowells@redhat.com>
10871 M:      Jarkko Sakkinen <jarkko@kernel.org>
10872 L:      keyrings@vger.kernel.org
10873 S:      Maintained
10874 F:      Documentation/security/keys/core.rst
10875 F:      include/keys/
10876 F:      include/linux/key-type.h
10877 F:      include/linux/key.h
10878 F:      include/linux/keyctl.h
10879 F:      include/uapi/linux/keyctl.h
10880 F:      security/keys/
10881
10882 KEYS/KEYRINGS_INTEGRITY
10883 M:      Jarkko Sakkinen <jarkko@kernel.org>
10884 M:      Mimi Zohar <zohar@linux.ibm.com>
10885 L:      linux-integrity@vger.kernel.org
10886 L:      keyrings@vger.kernel.org
10887 S:      Supported
10888 F:      security/integrity/platform_certs
10889
10890 KFENCE
10891 M:      Alexander Potapenko <glider@google.com>
10892 M:      Marco Elver <elver@google.com>
10893 R:      Dmitry Vyukov <dvyukov@google.com>
10894 L:      kasan-dev@googlegroups.com
10895 S:      Maintained
10896 F:      Documentation/dev-tools/kfence.rst
10897 F:      arch/*/include/asm/kfence.h
10898 F:      include/linux/kfence.h
10899 F:      lib/Kconfig.kfence
10900 F:      mm/kfence/
10901
10902 KFIFO
10903 M:      Stefani Seibold <stefani@seibold.net>
10904 S:      Maintained
10905 F:      include/linux/kfifo.h
10906 F:      lib/kfifo.c
10907 F:      samples/kfifo/
10908
10909 KGDB / KDB /debug_core
10910 M:      Jason Wessel <jason.wessel@windriver.com>
10911 M:      Daniel Thompson <daniel.thompson@linaro.org>
10912 R:      Douglas Anderson <dianders@chromium.org>
10913 L:      kgdb-bugreport@lists.sourceforge.net
10914 S:      Maintained
10915 W:      http://kgdb.wiki.kernel.org/
10916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10917 F:      Documentation/dev-tools/kgdb.rst
10918 F:      drivers/misc/kgdbts.c
10919 F:      drivers/tty/serial/kgdboc.c
10920 F:      include/linux/kdb.h
10921 F:      include/linux/kgdb.h
10922 F:      kernel/debug/
10923
10924 KHADAS MCU MFD DRIVER
10925 M:      Neil Armstrong <narmstrong@baylibre.com>
10926 L:      linux-amlogic@lists.infradead.org
10927 S:      Maintained
10928 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10929 F:      drivers/mfd/khadas-mcu.c
10930 F:      include/linux/mfd/khadas-mcu.h
10931 F:      drivers/thermal/khadas_mcu_fan.c
10932
10933 KMEMLEAK
10934 M:      Catalin Marinas <catalin.marinas@arm.com>
10935 S:      Maintained
10936 F:      Documentation/dev-tools/kmemleak.rst
10937 F:      include/linux/kmemleak.h
10938 F:      mm/kmemleak.c
10939 F:      samples/kmemleak/kmemleak-test.c
10940
10941 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10942 M:      Luis Chamberlain <mcgrof@kernel.org>
10943 L:      linux-kernel@vger.kernel.org
10944 L:      linux-modules@vger.kernel.org
10945 S:      Maintained
10946 F:      include/linux/kmod.h
10947 F:      kernel/kmod.c
10948 F:      lib/test_kmod.c
10949 F:      tools/testing/selftests/kmod/
10950
10951 KPROBES
10952 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10953 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10954 M:      "David S. Miller" <davem@davemloft.net>
10955 M:      Masami Hiramatsu <mhiramat@kernel.org>
10956 S:      Maintained
10957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10958 F:      Documentation/trace/kprobes.rst
10959 F:      include/asm-generic/kprobes.h
10960 F:      include/linux/kprobes.h
10961 F:      kernel/kprobes.c
10962 F:      lib/test_kprobes.c
10963 F:      samples/kprobes
10964
10965 KS0108 LCD CONTROLLER DRIVER
10966 M:      Miguel Ojeda <ojeda@kernel.org>
10967 S:      Maintained
10968 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10969 F:      drivers/auxdisplay/ks0108.c
10970 F:      include/linux/ks0108.h
10971
10972 KTD253 BACKLIGHT DRIVER
10973 M:      Linus Walleij <linus.walleij@linaro.org>
10974 S:      Maintained
10975 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10976 F:      drivers/video/backlight/ktd253-backlight.c
10977
10978 KTEST
10979 M:      Steven Rostedt <rostedt@goodmis.org>
10980 M:      John Hawley <warthog9@eaglescrag.net>
10981 S:      Maintained
10982 F:      tools/testing/ktest
10983
10984 L3MDEV
10985 M:      David Ahern <dsahern@kernel.org>
10986 L:      netdev@vger.kernel.org
10987 S:      Maintained
10988 F:      include/net/l3mdev.h
10989 F:      net/l3mdev
10990
10991 L7 BPF FRAMEWORK
10992 M:      John Fastabend <john.fastabend@gmail.com>
10993 M:      Daniel Borkmann <daniel@iogearbox.net>
10994 M:      Jakub Sitnicki <jakub@cloudflare.com>
10995 L:      netdev@vger.kernel.org
10996 L:      bpf@vger.kernel.org
10997 S:      Maintained
10998 F:      include/linux/skmsg.h
10999 F:      net/core/skmsg.c
11000 F:      net/core/sock_map.c
11001 F:      net/ipv4/tcp_bpf.c
11002 F:      net/ipv4/udp_bpf.c
11003 F:      net/unix/unix_bpf.c
11004
11005 LANDLOCK SECURITY MODULE
11006 M:      Mickaël Salaün <mic@digikod.net>
11007 L:      linux-security-module@vger.kernel.org
11008 S:      Supported
11009 W:      https://landlock.io
11010 T:      git https://github.com/landlock-lsm/linux.git
11011 F:      Documentation/security/landlock.rst
11012 F:      Documentation/userspace-api/landlock.rst
11013 F:      include/uapi/linux/landlock.h
11014 F:      samples/landlock/
11015 F:      security/landlock/
11016 F:      tools/testing/selftests/landlock/
11017 K:      landlock
11018 K:      LANDLOCK
11019
11020 LANTIQ / INTEL Ethernet drivers
11021 M:      Hauke Mehrtens <hauke@hauke-m.de>
11022 L:      netdev@vger.kernel.org
11023 S:      Maintained
11024 F:      drivers/net/dsa/lantiq_gswip.c
11025 F:      drivers/net/dsa/lantiq_pce.h
11026 F:      drivers/net/ethernet/lantiq_xrx200.c
11027 F:      net/dsa/tag_gswip.c
11028
11029 LANTIQ MIPS ARCHITECTURE
11030 M:      John Crispin <john@phrozen.org>
11031 L:      linux-mips@vger.kernel.org
11032 S:      Maintained
11033 F:      arch/mips/lantiq
11034 F:      drivers/soc/lantiq
11035
11036 LASI 53c700 driver for PARISC
11037 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11038 L:      linux-scsi@vger.kernel.org
11039 S:      Maintained
11040 F:      Documentation/scsi/53c700.rst
11041 F:      drivers/scsi/53c700*
11042
11043 LEAKING_ADDRESSES
11044 M:      Tobin C. Harding <me@tobin.cc>
11045 M:      Tycho Andersen <tycho@tycho.pizza>
11046 L:      linux-hardening@vger.kernel.org
11047 S:      Maintained
11048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11049 F:      scripts/leaking_addresses.pl
11050
11051 LED SUBSYSTEM
11052 M:      Pavel Machek <pavel@ucw.cz>
11053 L:      linux-leds@vger.kernel.org
11054 S:      Maintained
11055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11056 F:      Documentation/devicetree/bindings/leds/
11057 F:      drivers/leds/
11058 F:      include/linux/leds.h
11059
11060 LEGACY EEPROM DRIVER
11061 M:      Jean Delvare <jdelvare@suse.com>
11062 S:      Maintained
11063 F:      Documentation/misc-devices/eeprom.rst
11064 F:      drivers/misc/eeprom/eeprom.c
11065
11066 LEGO MINDSTORMS EV3
11067 R:      David Lechner <david@lechnology.com>
11068 S:      Maintained
11069 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11070 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11071 F:      drivers/power/supply/lego_ev3_battery.c
11072
11073 LEGO USB Tower driver
11074 M:      Juergen Stuber <starblue@users.sourceforge.net>
11075 L:      legousb-devel@lists.sourceforge.net
11076 S:      Maintained
11077 W:      http://legousb.sourceforge.net/
11078 F:      drivers/usb/misc/legousbtower.c
11079
11080 LETSKETCH HID TABLET DRIVER
11081 M:      Hans de Goede <hdegoede@redhat.com>
11082 L:      linux-input@vger.kernel.org
11083 S:      Maintained
11084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11085 F:      drivers/hid/hid-letsketch.c
11086
11087 LG LAPTOP EXTRAS
11088 M:      Matan Ziv-Av <matan@svgalib.org>
11089 L:      platform-driver-x86@vger.kernel.org
11090 S:      Maintained
11091 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11092 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11093 F:      drivers/platform/x86/lg-laptop.c
11094
11095 LG2160 MEDIA DRIVER
11096 M:      Michael Krufky <mkrufky@linuxtv.org>
11097 L:      linux-media@vger.kernel.org
11098 S:      Maintained
11099 W:      https://linuxtv.org
11100 W:      http://github.com/mkrufky
11101 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11102 T:      git git://linuxtv.org/mkrufky/tuners.git
11103 F:      drivers/media/dvb-frontends/lg2160.*
11104
11105 LGDT3305 MEDIA DRIVER
11106 M:      Michael Krufky <mkrufky@linuxtv.org>
11107 L:      linux-media@vger.kernel.org
11108 S:      Maintained
11109 W:      https://linuxtv.org
11110 W:      http://github.com/mkrufky
11111 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11112 T:      git git://linuxtv.org/mkrufky/tuners.git
11113 F:      drivers/media/dvb-frontends/lgdt3305.*
11114
11115 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11116 M:      Viresh Kumar <vireshk@kernel.org>
11117 L:      linux-ide@vger.kernel.org
11118 S:      Maintained
11119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11120 F:      drivers/ata/pata_arasan_cf.c
11121 F:      include/linux/pata_arasan_cf_data.h
11122
11123 LIBATA PATA DRIVERS
11124 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11125 L:      linux-ide@vger.kernel.org
11126 F:      drivers/ata/ata_*.c
11127 F:      drivers/ata/pata_*.c
11128
11129 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11130 M:      Linus Walleij <linus.walleij@linaro.org>
11131 L:      linux-ide@vger.kernel.org
11132 S:      Maintained
11133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11134 F:      drivers/ata/pata_ftide010.c
11135 F:      drivers/ata/sata_gemini.c
11136 F:      drivers/ata/sata_gemini.h
11137
11138 LIBATA SATA AHCI PLATFORM devices support
11139 M:      Hans de Goede <hdegoede@redhat.com>
11140 M:      Jens Axboe <axboe@kernel.dk>
11141 L:      linux-ide@vger.kernel.org
11142 S:      Maintained
11143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11144 F:      drivers/ata/ahci_platform.c
11145 F:      drivers/ata/libahci_platform.c
11146 F:      include/linux/ahci_platform.h
11147
11148 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11149 M:      Mikael Pettersson <mikpelinux@gmail.com>
11150 L:      linux-ide@vger.kernel.org
11151 S:      Maintained
11152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11153 F:      drivers/ata/sata_promise.*
11154
11155 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11156 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11157 L:      linux-ide@vger.kernel.org
11158 S:      Maintained
11159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11160 F:      Documentation/devicetree/bindings/ata/
11161 F:      drivers/ata/
11162 F:      include/linux/ata.h
11163 F:      include/linux/libata.h
11164
11165 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11166 M:      Vishal Verma <vishal.l.verma@intel.com>
11167 M:      Dan Williams <dan.j.williams@intel.com>
11168 M:      Dave Jiang <dave.jiang@intel.com>
11169 L:      nvdimm@lists.linux.dev
11170 S:      Supported
11171 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11172 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11173 F:      drivers/nvdimm/btt*
11174
11175 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11176 M:      Dan Williams <dan.j.williams@intel.com>
11177 M:      Vishal Verma <vishal.l.verma@intel.com>
11178 M:      Dave Jiang <dave.jiang@intel.com>
11179 L:      nvdimm@lists.linux.dev
11180 S:      Supported
11181 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11182 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11183 F:      drivers/nvdimm/pmem*
11184
11185 LIBNVDIMM: DEVICETREE BINDINGS
11186 M:      Oliver O'Halloran <oohall@gmail.com>
11187 L:      nvdimm@lists.linux.dev
11188 S:      Supported
11189 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11190 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11191 F:      drivers/nvdimm/of_pmem.c
11192
11193 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11194 M:      Dan Williams <dan.j.williams@intel.com>
11195 M:      Vishal Verma <vishal.l.verma@intel.com>
11196 M:      Dave Jiang <dave.jiang@intel.com>
11197 M:      Ira Weiny <ira.weiny@intel.com>
11198 L:      nvdimm@lists.linux.dev
11199 S:      Supported
11200 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11201 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11203 F:      drivers/acpi/nfit/*
11204 F:      drivers/nvdimm/*
11205 F:      include/linux/libnvdimm.h
11206 F:      include/linux/nd.h
11207 F:      include/uapi/linux/ndctl.h
11208 F:      tools/testing/nvdimm/
11209
11210 LICENSES and SPDX stuff
11211 M:      Thomas Gleixner <tglx@linutronix.de>
11212 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11213 L:      linux-spdx@vger.kernel.org
11214 S:      Maintained
11215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11216 F:      COPYING
11217 F:      Documentation/process/license-rules.rst
11218 F:      LICENSES/
11219 F:      scripts/spdxcheck-test.sh
11220 F:      scripts/spdxcheck.py
11221
11222 LINEAR RANGES HELPERS
11223 M:      Mark Brown <broonie@kernel.org>
11224 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11225 F:      lib/linear_ranges.c
11226 F:      lib/test_linear_ranges.c
11227 F:      include/linux/linear_range.h
11228
11229 LINUX FOR POWER MACINTOSH
11230 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11231 L:      linuxppc-dev@lists.ozlabs.org
11232 S:      Odd Fixes
11233 F:      arch/powerpc/platforms/powermac/
11234 F:      drivers/macintosh/
11235
11236 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11237 M:      Michael Ellerman <mpe@ellerman.id.au>
11238 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11239 R:      Paul Mackerras <paulus@samba.org>
11240 L:      linuxppc-dev@lists.ozlabs.org
11241 S:      Supported
11242 W:      https://github.com/linuxppc/wiki/wiki
11243 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11245 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11246 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11247 F:      Documentation/devicetree/bindings/powerpc/
11248 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11249 F:      Documentation/powerpc/
11250 F:      arch/powerpc/
11251 F:      drivers/*/*/*pasemi*
11252 F:      drivers/*/*pasemi*
11253 F:      drivers/char/tpm/tpm_ibmvtpm*
11254 F:      drivers/crypto/nx/
11255 F:      drivers/crypto/vmx/
11256 F:      drivers/i2c/busses/i2c-opal.c
11257 F:      drivers/net/ethernet/ibm/ibmveth.*
11258 F:      drivers/net/ethernet/ibm/ibmvnic.*
11259 F:      drivers/pci/hotplug/pnv_php.c
11260 F:      drivers/pci/hotplug/rpa*
11261 F:      drivers/rtc/rtc-opal.c
11262 F:      drivers/scsi/ibmvscsi/
11263 F:      drivers/tty/hvc/hvc_opal.c
11264 F:      drivers/watchdog/wdrtas.c
11265 F:      tools/testing/selftests/powerpc
11266 N:      /pmac
11267 N:      powermac
11268 N:      powernv
11269 N:      [^a-z0-9]ps3
11270 N:      pseries
11271
11272 LINUX FOR POWERPC EMBEDDED MPC5XXX
11273 M:      Anatolij Gustschin <agust@denx.de>
11274 L:      linuxppc-dev@lists.ozlabs.org
11275 S:      Odd Fixes
11276 F:      arch/powerpc/platforms/512x/
11277 F:      arch/powerpc/platforms/52xx/
11278
11279 LINUX FOR POWERPC EMBEDDED PPC4XX
11280 L:      linuxppc-dev@lists.ozlabs.org
11281 S:      Orphan
11282 F:      arch/powerpc/platforms/40x/
11283 F:      arch/powerpc/platforms/44x/
11284
11285 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11286 M:      Scott Wood <oss@buserror.net>
11287 L:      linuxppc-dev@lists.ozlabs.org
11288 S:      Odd fixes
11289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11290 F:      Documentation/devicetree/bindings/powerpc/fsl/
11291 F:      arch/powerpc/platforms/83xx/
11292 F:      arch/powerpc/platforms/85xx/
11293
11294 LINUX FOR POWERPC EMBEDDED PPC8XX
11295 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11296 L:      linuxppc-dev@lists.ozlabs.org
11297 S:      Maintained
11298 F:      arch/powerpc/platforms/8xx/
11299
11300 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11301 M:      Kees Cook <keescook@chromium.org>
11302 S:      Maintained
11303 F:      drivers/misc/lkdtm/*
11304 F:      tools/testing/selftests/lkdtm/*
11305
11306 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11307 M:      Alan Stern <stern@rowland.harvard.edu>
11308 M:      Andrea Parri <parri.andrea@gmail.com>
11309 M:      Will Deacon <will@kernel.org>
11310 M:      Peter Zijlstra <peterz@infradead.org>
11311 M:      Boqun Feng <boqun.feng@gmail.com>
11312 M:      Nicholas Piggin <npiggin@gmail.com>
11313 M:      David Howells <dhowells@redhat.com>
11314 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11315 M:      Luc Maranget <luc.maranget@inria.fr>
11316 M:      "Paul E. McKenney" <paulmck@kernel.org>
11317 R:      Akira Yokosawa <akiyks@gmail.com>
11318 R:      Daniel Lustig <dlustig@nvidia.com>
11319 R:      Joel Fernandes <joel@joelfernandes.org>
11320 L:      linux-kernel@vger.kernel.org
11321 L:      linux-arch@vger.kernel.org
11322 S:      Supported
11323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11324 F:      Documentation/atomic_bitops.txt
11325 F:      Documentation/atomic_t.txt
11326 F:      Documentation/core-api/refcount-vs-atomic.rst
11327 F:      Documentation/litmus-tests/
11328 F:      Documentation/memory-barriers.txt
11329 F:      tools/memory-model/
11330
11331 LIS3LV02D ACCELEROMETER DRIVER
11332 M:      Eric Piel <eric.piel@tremplin-utc.net>
11333 S:      Maintained
11334 F:      Documentation/misc-devices/lis3lv02d.rst
11335 F:      drivers/misc/lis3lv02d/
11336 F:      drivers/platform/x86/hp_accel.c
11337
11338 LIST KUNIT TEST
11339 M:      David Gow <davidgow@google.com>
11340 L:      linux-kselftest@vger.kernel.org
11341 L:      kunit-dev@googlegroups.com
11342 S:      Maintained
11343 F:      lib/list-test.c
11344
11345 LITEX PLATFORM
11346 M:      Karol Gugala <kgugala@antmicro.com>
11347 M:      Mateusz Holenko <mholenko@antmicro.com>
11348 M:      Gabriel Somlo <gsomlo@gmail.com>
11349 M:      Joel Stanley <joel@jms.id.au>
11350 S:      Maintained
11351 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11352 F:      arch/openrisc/boot/dts/or1klitex.dts
11353 F:      include/linux/litex.h
11354 F:      drivers/tty/serial/liteuart.c
11355 F:      drivers/soc/litex/*
11356 F:      drivers/net/ethernet/litex/*
11357 F:      drivers/mmc/host/litex_mmc.c
11358 N:      litex
11359
11360 LIVE PATCHING
11361 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11362 M:      Jiri Kosina <jikos@kernel.org>
11363 M:      Miroslav Benes <mbenes@suse.cz>
11364 M:      Petr Mladek <pmladek@suse.com>
11365 R:      Joe Lawrence <joe.lawrence@redhat.com>
11366 L:      live-patching@vger.kernel.org
11367 S:      Maintained
11368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11369 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11370 F:      Documentation/livepatch/
11371 F:      arch/powerpc/include/asm/livepatch.h
11372 F:      arch/s390/include/asm/livepatch.h
11373 F:      arch/x86/include/asm/livepatch.h
11374 F:      include/linux/livepatch.h
11375 F:      kernel/livepatch/
11376 F:      lib/livepatch/
11377 F:      samples/livepatch/
11378 F:      tools/testing/selftests/livepatch/
11379
11380 LLC (802.2)
11381 L:      netdev@vger.kernel.org
11382 S:      Odd fixes
11383 F:      include/linux/llc.h
11384 F:      include/net/llc*
11385 F:      include/uapi/linux/llc.h
11386 F:      net/llc/
11387
11388 LM73 HARDWARE MONITOR DRIVER
11389 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11390 L:      linux-hwmon@vger.kernel.org
11391 S:      Maintained
11392 F:      drivers/hwmon/lm73.c
11393
11394 LM78 HARDWARE MONITOR DRIVER
11395 M:      Jean Delvare <jdelvare@suse.com>
11396 L:      linux-hwmon@vger.kernel.org
11397 S:      Maintained
11398 F:      Documentation/hwmon/lm78.rst
11399 F:      drivers/hwmon/lm78.c
11400
11401 LM83 HARDWARE MONITOR DRIVER
11402 M:      Jean Delvare <jdelvare@suse.com>
11403 L:      linux-hwmon@vger.kernel.org
11404 S:      Maintained
11405 F:      Documentation/hwmon/lm83.rst
11406 F:      drivers/hwmon/lm83.c
11407
11408 LM90 HARDWARE MONITOR DRIVER
11409 M:      Jean Delvare <jdelvare@suse.com>
11410 L:      linux-hwmon@vger.kernel.org
11411 S:      Maintained
11412 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11413 F:      Documentation/hwmon/lm90.rst
11414 F:      drivers/hwmon/lm90.c
11415 F:      include/dt-bindings/thermal/lm90.h
11416
11417 LM95234 HARDWARE MONITOR DRIVER
11418 M:      Guenter Roeck <linux@roeck-us.net>
11419 L:      linux-hwmon@vger.kernel.org
11420 S:      Maintained
11421 F:      Documentation/hwmon/lm95234.rst
11422 F:      drivers/hwmon/lm95234.c
11423
11424 LME2510 MEDIA DRIVER
11425 M:      Malcolm Priestley <tvboxspy@gmail.com>
11426 L:      linux-media@vger.kernel.org
11427 S:      Maintained
11428 W:      https://linuxtv.org
11429 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11430 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11431
11432 LOADPIN SECURITY MODULE
11433 M:      Kees Cook <keescook@chromium.org>
11434 S:      Supported
11435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11436 F:      Documentation/admin-guide/LSM/LoadPin.rst
11437 F:      security/loadpin/
11438
11439 LOCKING PRIMITIVES
11440 M:      Peter Zijlstra <peterz@infradead.org>
11441 M:      Ingo Molnar <mingo@redhat.com>
11442 M:      Will Deacon <will@kernel.org>
11443 R:      Waiman Long <longman@redhat.com>
11444 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11445 L:      linux-kernel@vger.kernel.org
11446 S:      Maintained
11447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11448 F:      Documentation/locking/
11449 F:      arch/*/include/asm/spinlock*.h
11450 F:      include/linux/lockdep.h
11451 F:      include/linux/mutex*.h
11452 F:      include/linux/rwlock*.h
11453 F:      include/linux/rwsem*.h
11454 F:      include/linux/seqlock.h
11455 F:      include/linux/spinlock*.h
11456 F:      kernel/locking/
11457 F:      lib/locking*.[ch]
11458 X:      kernel/locking/locktorture.c
11459
11460 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11461 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11462 L:      linux-ntfs-dev@lists.sourceforge.net
11463 S:      Maintained
11464 W:      http://www.linux-ntfs.org/content/view/19/37/
11465 F:      Documentation/admin-guide/ldm.rst
11466 F:      block/partitions/ldm.*
11467
11468 LOGITECH HID GAMING KEYBOARDS
11469 M:      Hans de Goede <hdegoede@redhat.com>
11470 L:      linux-input@vger.kernel.org
11471 S:      Maintained
11472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11473 F:      drivers/hid/hid-lg-g15.c
11474
11475 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11476 M:      Adrien Grassein <adrien.grassein@gmail.com>
11477 S:      Maintained
11478 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11479 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11480
11481 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11482 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11483 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11484 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11485 L:      MPT-FusionLinux.pdl@broadcom.com
11486 L:      linux-scsi@vger.kernel.org
11487 S:      Supported
11488 W:      http://www.avagotech.com/support/
11489 F:      drivers/message/fusion/
11490 F:      drivers/scsi/mpt3sas/
11491
11492 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11493 M:      Matthew Wilcox <willy@infradead.org>
11494 L:      linux-scsi@vger.kernel.org
11495 S:      Maintained
11496 F:      drivers/scsi/sym53c8xx_2/
11497
11498 LTC1660 DAC DRIVER
11499 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11500 L:      linux-iio@vger.kernel.org
11501 S:      Maintained
11502 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11503 F:      drivers/iio/dac/ltc1660.c
11504
11505 LTC2688 IIO DAC DRIVER
11506 M:      Nuno Sá <nuno.sa@analog.com>
11507 L:      linux-iio@vger.kernel.org
11508 S:      Supported
11509 W:      http://ez.analog.com/community/linux-device-drivers
11510 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11511 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11512 F:      drivers/iio/dac/ltc2688.c
11513
11514 LTC2947 HARDWARE MONITOR DRIVER
11515 M:      Nuno Sá <nuno.sa@analog.com>
11516 L:      linux-hwmon@vger.kernel.org
11517 S:      Supported
11518 W:      https://ez.analog.com/linux-software-drivers
11519 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11520 F:      drivers/hwmon/ltc2947-core.c
11521 F:      drivers/hwmon/ltc2947-i2c.c
11522 F:      drivers/hwmon/ltc2947-spi.c
11523 F:      drivers/hwmon/ltc2947.h
11524
11525 LTC2983 IIO TEMPERATURE DRIVER
11526 M:      Nuno Sá <nuno.sa@analog.com>
11527 L:      linux-iio@vger.kernel.org
11528 S:      Supported
11529 W:      https://ez.analog.com/linux-software-drivers
11530 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11531 F:      drivers/iio/temperature/ltc2983.c
11532
11533 LTC4261 HARDWARE MONITOR DRIVER
11534 M:      Guenter Roeck <linux@roeck-us.net>
11535 L:      linux-hwmon@vger.kernel.org
11536 S:      Maintained
11537 F:      Documentation/hwmon/ltc4261.rst
11538 F:      drivers/hwmon/ltc4261.c
11539
11540 LTC4306 I2C MULTIPLEXER DRIVER
11541 M:      Michael Hennerich <michael.hennerich@analog.com>
11542 L:      linux-i2c@vger.kernel.org
11543 S:      Supported
11544 W:      https://ez.analog.com/linux-software-drivers
11545 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11546 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11547
11548 LTP (Linux Test Project)
11549 M:      Mike Frysinger <vapier@gentoo.org>
11550 M:      Cyril Hrubis <chrubis@suse.cz>
11551 M:      Wanlong Gao <wanlong.gao@gmail.com>
11552 M:      Jan Stancek <jstancek@redhat.com>
11553 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11554 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11555 L:      ltp@lists.linux.it (subscribers-only)
11556 S:      Maintained
11557 W:      http://linux-test-project.github.io/
11558 T:      git git://github.com/linux-test-project/ltp.git
11559
11560 LYNX 28G SERDES PHY DRIVER
11561 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11562 L:      netdev@vger.kernel.org
11563 S:      Supported
11564 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11565 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11566
11567 LYNX PCS MODULE
11568 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11569 L:      netdev@vger.kernel.org
11570 S:      Supported
11571 F:      drivers/net/pcs/pcs-lynx.c
11572 F:      include/linux/pcs-lynx.h
11573
11574 M68K ARCHITECTURE
11575 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11576 L:      linux-m68k@lists.linux-m68k.org
11577 S:      Maintained
11578 W:      http://www.linux-m68k.org/
11579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11580 F:      arch/m68k/
11581 F:      drivers/zorro/
11582
11583 M68K ON APPLE MACINTOSH
11584 M:      Joshua Thompson <funaho@jurai.org>
11585 L:      linux-m68k@lists.linux-m68k.org
11586 S:      Maintained
11587 W:      http://www.mac.linux-m68k.org/
11588 F:      arch/m68k/mac/
11589 F:      drivers/macintosh/adb-iop.c
11590 F:      drivers/macintosh/via-macii.c
11591
11592 M68K ON HP9000/300
11593 M:      Philip Blundell <philb@gnu.org>
11594 S:      Maintained
11595 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11596 F:      arch/m68k/hp300/
11597
11598 M88DS3103 MEDIA DRIVER
11599 M:      Antti Palosaari <crope@iki.fi>
11600 L:      linux-media@vger.kernel.org
11601 S:      Maintained
11602 W:      https://linuxtv.org
11603 W:      http://palosaari.fi/linux/
11604 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11605 T:      git git://linuxtv.org/anttip/media_tree.git
11606 F:      drivers/media/dvb-frontends/m88ds3103*
11607
11608 M88RS2000 MEDIA DRIVER
11609 M:      Malcolm Priestley <tvboxspy@gmail.com>
11610 L:      linux-media@vger.kernel.org
11611 S:      Maintained
11612 W:      https://linuxtv.org
11613 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11614 F:      drivers/media/dvb-frontends/m88rs2000*
11615
11616 MA901 MASTERKIT USB FM RADIO DRIVER
11617 M:      Alexey Klimov <klimov.linux@gmail.com>
11618 L:      linux-media@vger.kernel.org
11619 S:      Maintained
11620 T:      git git://linuxtv.org/media_tree.git
11621 F:      drivers/media/radio/radio-ma901.c
11622
11623 MAC80211
11624 M:      Johannes Berg <johannes@sipsolutions.net>
11625 L:      linux-wireless@vger.kernel.org
11626 S:      Maintained
11627 W:      https://wireless.wiki.kernel.org/
11628 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11631 F:      Documentation/networking/mac80211-injection.rst
11632 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11633 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11634 F:      include/net/mac80211.h
11635 F:      net/mac80211/
11636
11637 MAILBOX API
11638 M:      Jassi Brar <jassisinghbrar@gmail.com>
11639 L:      linux-kernel@vger.kernel.org
11640 S:      Maintained
11641 F:      drivers/mailbox/
11642 F:      include/linux/mailbox_client.h
11643 F:      include/linux/mailbox_controller.h
11644 F:      include/dt-bindings/mailbox/
11645 F:      Documentation/devicetree/bindings/mailbox/
11646
11647 MAILBOX ARM MHUv2
11648 M:      Viresh Kumar <viresh.kumar@linaro.org>
11649 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11650 L:      linux-kernel@vger.kernel.org
11651 S:      Maintained
11652 F:      drivers/mailbox/arm_mhuv2.c
11653 F:      include/linux/mailbox/arm_mhuv2_message.h
11654 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11655
11656 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11657 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11658 M:      Matt Johnston <matt@codeconstruct.com.au>
11659 L:      netdev@vger.kernel.org
11660 S:      Maintained
11661 F:      Documentation/networking/mctp.rst
11662 F:      drivers/net/mctp/
11663 F:      include/net/mctp.h
11664 F:      include/net/mctpdevice.h
11665 F:      include/net/netns/mctp.h
11666 F:      net/mctp/
11667
11668 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11669 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11670 L:      linux-man@vger.kernel.org
11671 S:      Maintained
11672 W:      http://www.kernel.org/doc/man-pages
11673
11674 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11675 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11676 L:      linux-mips@vger.kernel.org
11677 S:      Maintained
11678 F:      arch/mips/boot/dts/img/pistachio*
11679
11680 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11681 M:      Andrew Lunn <andrew@lunn.ch>
11682 M:      Vivien Didelot <vivien.didelot@gmail.com>
11683 L:      netdev@vger.kernel.org
11684 S:      Maintained
11685 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11686 F:      Documentation/networking/devlink/mv88e6xxx.rst
11687 F:      drivers/net/dsa/mv88e6xxx/
11688 F:      include/linux/dsa/mv88e6xxx.h
11689 F:      include/linux/platform_data/mv88e6xxx.h
11690
11691 MARVELL ARMADA 3700 PHY DRIVERS
11692 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11693 S:      Maintained
11694 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11695 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11696 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11697 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11698
11699 MARVELL ARMADA 3700 SERIAL DRIVER
11700 M:      Pali Rohár <pali@kernel.org>
11701 S:      Maintained
11702 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
11703 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
11704 F:      drivers/tty/serial/mvebu-uart.c
11705
11706 MARVELL ARMADA DRM SUPPORT
11707 M:      Russell King <linux@armlinux.org.uk>
11708 S:      Maintained
11709 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11710 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11711 F:      Documentation/devicetree/bindings/display/armada/
11712 F:      drivers/gpu/drm/armada/
11713 F:      include/uapi/drm/armada_drm.h
11714
11715 MARVELL CRYPTO DRIVER
11716 M:      Boris Brezillon <bbrezillon@kernel.org>
11717 M:      Arnaud Ebalard <arno@natisbad.org>
11718 M:      Srujana Challa <schalla@marvell.com>
11719 L:      linux-crypto@vger.kernel.org
11720 S:      Maintained
11721 F:      drivers/crypto/marvell/
11722 F:      include/linux/soc/marvell/octeontx2/
11723
11724 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11725 M:      Mirko Lindner <mlindner@marvell.com>
11726 M:      Stephen Hemminger <stephen@networkplumber.org>
11727 L:      netdev@vger.kernel.org
11728 S:      Maintained
11729 F:      drivers/net/ethernet/marvell/sk*
11730
11731 MARVELL LIBERTAS WIRELESS DRIVER
11732 L:      libertas-dev@lists.infradead.org
11733 S:      Orphan
11734 F:      drivers/net/wireless/marvell/libertas/
11735
11736 MARVELL MACCHIATOBIN SUPPORT
11737 M:      Russell King <linux@armlinux.org.uk>
11738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11739 S:      Maintained
11740 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11741
11742 MARVELL MV643XX ETHERNET DRIVER
11743 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11744 L:      netdev@vger.kernel.org
11745 S:      Maintained
11746 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11747 F:      include/linux/mv643xx.h
11748
11749 MARVELL MV88X3310 PHY DRIVER
11750 M:      Russell King <linux@armlinux.org.uk>
11751 M:      Marek Behún <kabel@kernel.org>
11752 L:      netdev@vger.kernel.org
11753 S:      Maintained
11754 F:      drivers/net/phy/marvell10g.c
11755
11756 MARVELL MVEBU THERMAL DRIVER
11757 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11758 S:      Maintained
11759 F:      drivers/thermal/armada_thermal.c
11760
11761 MARVELL MVNETA ETHERNET DRIVER
11762 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11763 L:      netdev@vger.kernel.org
11764 S:      Maintained
11765 F:      drivers/net/ethernet/marvell/mvneta.*
11766
11767 MARVELL MVPP2 ETHERNET DRIVER
11768 M:      Marcin Wojtas <mw@semihalf.com>
11769 M:      Russell King <linux@armlinux.org.uk>
11770 L:      netdev@vger.kernel.org
11771 S:      Maintained
11772 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11773 F:      drivers/net/ethernet/marvell/mvpp2/
11774
11775 MARVELL MWIFIEX WIRELESS DRIVER
11776 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11777 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11778 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11779 M:      Xinming Hu <huxinming820@gmail.com>
11780 L:      linux-wireless@vger.kernel.org
11781 S:      Maintained
11782 F:      drivers/net/wireless/marvell/mwifiex/
11783
11784 MARVELL MWL8K WIRELESS DRIVER
11785 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11786 L:      linux-wireless@vger.kernel.org
11787 S:      Odd Fixes
11788 F:      drivers/net/wireless/marvell/mwl8k.c
11789
11790 MARVELL NAND CONTROLLER DRIVER
11791 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11792 L:      linux-mtd@lists.infradead.org
11793 S:      Maintained
11794 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11795 F:      drivers/mtd/nand/raw/marvell_nand.c
11796
11797 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11798 M:      Sunil Goutham <sgoutham@marvell.com>
11799 M:      Geetha sowjanya <gakula@marvell.com>
11800 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11801 M:      hariprasad <hkelam@marvell.com>
11802 L:      netdev@vger.kernel.org
11803 S:      Supported
11804 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11805 F:      include/linux/soc/marvell/octeontx2/
11806
11807 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11808 M:      Sunil Goutham <sgoutham@marvell.com>
11809 M:      Linu Cherian <lcherian@marvell.com>
11810 M:      Geetha sowjanya <gakula@marvell.com>
11811 M:      Jerin Jacob <jerinj@marvell.com>
11812 M:      hariprasad <hkelam@marvell.com>
11813 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11814 L:      netdev@vger.kernel.org
11815 S:      Supported
11816 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11817 F:      drivers/net/ethernet/marvell/octeontx2/af/
11818
11819 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11820 M:      Taras Chornyi <tchornyi@marvell.com>
11821 S:      Supported
11822 W:      https://github.com/Marvell-switching/switchdev-prestera
11823 F:      drivers/net/ethernet/marvell/prestera/
11824
11825 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11826 M:      Nicolas Pitre <nico@fluxnic.net>
11827 S:      Odd Fixes
11828 F:      drivers/mmc/host/mvsdio.*
11829
11830 MARVELL USB MDIO CONTROLLER DRIVER
11831 M:      Tobias Waldekranz <tobias@waldekranz.com>
11832 L:      netdev@vger.kernel.org
11833 S:      Maintained
11834 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11835 F:      drivers/net/mdio/mdio-mvusb.c
11836
11837 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11838 M:      Hu Ziji <huziji@marvell.com>
11839 L:      linux-mmc@vger.kernel.org
11840 S:      Supported
11841 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11842 F:      drivers/mmc/host/sdhci-xenon*
11843
11844 MATROX FRAMEBUFFER DRIVER
11845 L:      linux-fbdev@vger.kernel.org
11846 S:      Orphan
11847 F:      drivers/video/fbdev/matrox/matroxfb_*
11848 F:      include/uapi/linux/matroxfb.h
11849
11850 MAX15301 DRIVER
11851 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11852 L:      linux-hwmon@vger.kernel.org
11853 S:      Maintained
11854 F:      Documentation/hwmon/max15301.rst
11855 F:      drivers/hwmon/pmbus/max15301.c
11856
11857 MAX16065 HARDWARE MONITOR DRIVER
11858 M:      Guenter Roeck <linux@roeck-us.net>
11859 L:      linux-hwmon@vger.kernel.org
11860 S:      Maintained
11861 F:      Documentation/hwmon/max16065.rst
11862 F:      drivers/hwmon/max16065.c
11863
11864 MAX2175 SDR TUNER DRIVER
11865 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11866 L:      linux-media@vger.kernel.org
11867 S:      Maintained
11868 T:      git git://linuxtv.org/media_tree.git
11869 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11870 F:      Documentation/userspace-api/media/drivers/max2175.rst
11871 F:      drivers/media/i2c/max2175*
11872 F:      include/uapi/linux/max2175.h
11873
11874 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11875 L:      linux-hwmon@vger.kernel.org
11876 S:      Orphan
11877 F:      Documentation/hwmon/max6650.rst
11878 F:      drivers/hwmon/max6650.c
11879
11880 MAX6697 HARDWARE MONITOR DRIVER
11881 M:      Guenter Roeck <linux@roeck-us.net>
11882 L:      linux-hwmon@vger.kernel.org
11883 S:      Maintained
11884 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11885 F:      Documentation/hwmon/max6697.rst
11886 F:      drivers/hwmon/max6697.c
11887 F:      include/linux/platform_data/max6697.h
11888
11889 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11890 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11891 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11892 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11893 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11894 L:      linux-media@vger.kernel.org
11895 S:      Maintained
11896 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11897 F:      drivers/media/i2c/max9286.c
11898
11899 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
11900 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11901 L:      linux-media@vger.kernel.org
11902 S:      Maintained
11903 F:      drivers/staging/media/max96712/max96712.c
11904
11905 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11906 M:      Peter Rosin <peda@axentia.se>
11907 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11908 S:      Maintained
11909 F:      Documentation/devicetree/bindings/sound/max9860.txt
11910 F:      sound/soc/codecs/max9860.*
11911
11912 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11913 M:      Andreas Klinger <ak@it-klinger.de>
11914 L:      linux-iio@vger.kernel.org
11915 S:      Maintained
11916 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11917 F:      drivers/iio/proximity/mb1232.c
11918
11919 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11920 R:      Iskren Chernev <iskren.chernev@gmail.com>
11921 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
11922 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11923 R:      Matheus Castello <matheus@castello.eng.br>
11924 L:      linux-pm@vger.kernel.org
11925 S:      Maintained
11926 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11927 F:      drivers/power/supply/max17040_battery.c
11928
11929 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11930 R:      Hans de Goede <hdegoede@redhat.com>
11931 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
11932 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11933 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11934 R:      Purism Kernel Team <kernel@puri.sm>
11935 L:      linux-pm@vger.kernel.org
11936 S:      Maintained
11937 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11938 F:      drivers/power/supply/max17042_battery.c
11939
11940 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
11941 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11942 L:      linux-kernel@vger.kernel.org
11943 S:      Maintained
11944 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
11945 F:      drivers/regulator/max20086-regulator.c
11946
11947 MAXIM MAX77650 PMIC MFD DRIVER
11948 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11949 L:      linux-kernel@vger.kernel.org
11950 S:      Maintained
11951 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11952 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11953 F:      drivers/gpio/gpio-max77650.c
11954 F:      drivers/input/misc/max77650-onkey.c
11955 F:      drivers/leds/leds-max77650.c
11956 F:      drivers/mfd/max77650.c
11957 F:      drivers/power/supply/max77650-charger.c
11958 F:      drivers/regulator/max77650-regulator.c
11959 F:      include/linux/mfd/max77650.h
11960
11961 MAXIM MAX77714 PMIC MFD DRIVER
11962 M:      Luca Ceresoli <luca@lucaceresoli.net>
11963 S:      Maintained
11964 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
11965 F:      drivers/mfd/max77714.c
11966 F:      include/linux/mfd/max77714.h
11967
11968 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11969 M:      Javier Martinez Canillas <javier@dowhile0.org>
11970 L:      linux-kernel@vger.kernel.org
11971 S:      Supported
11972 F:      Documentation/devicetree/bindings/*/*max77802.yaml
11973 F:      drivers/regulator/max77802-regulator.c
11974 F:      include/dt-bindings/*/*max77802.h
11975
11976 MAXIM MAX77976 BATTERY CHARGER
11977 M:      Luca Ceresoli <luca@lucaceresoli.net>
11978 S:      Supported
11979 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
11980 F:      drivers/power/supply/max77976_charger.c
11981
11982 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11983 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
11984 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11985 L:      linux-pm@vger.kernel.org
11986 S:      Supported
11987 B:      mailto:linux-samsung-soc@vger.kernel.org
11988 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
11989 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
11990 F:      drivers/power/supply/max14577_charger.c
11991 F:      drivers/power/supply/max77693_charger.c
11992
11993 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11994 M:      Chanwoo Choi <cw00.choi@samsung.com>
11995 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
11996 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11997 L:      linux-kernel@vger.kernel.org
11998 S:      Supported
11999 B:      mailto:linux-samsung-soc@vger.kernel.org
12000 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12001 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12002 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12003 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12004 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12005 F:      Documentation/devicetree/bindings/mfd/max77693.txt
12006 F:      drivers/*/*max77843.c
12007 F:      drivers/*/max14577*.c
12008 F:      drivers/*/max77686*.c
12009 F:      drivers/*/max77693*.c
12010 F:      drivers/clk/clk-max77686.c
12011 F:      drivers/extcon/extcon-max14577.c
12012 F:      drivers/extcon/extcon-max77693.c
12013 F:      drivers/rtc/rtc-max77686.c
12014 F:      include/linux/mfd/max14577*.h
12015 F:      include/linux/mfd/max77686*.h
12016 F:      include/linux/mfd/max77693*.h
12017
12018 MAXIRADIO FM RADIO RECEIVER DRIVER
12019 M:      Hans Verkuil <hverkuil@xs4all.nl>
12020 L:      linux-media@vger.kernel.org
12021 S:      Maintained
12022 W:      https://linuxtv.org
12023 T:      git git://linuxtv.org/media_tree.git
12024 F:      drivers/media/radio/radio-maxiradio*
12025
12026 MAXLINEAR ETHERNET PHY DRIVER
12027 M:      Xu Liang <lxu@maxlinear.com>
12028 L:      netdev@vger.kernel.org
12029 S:      Supported
12030 F:      drivers/net/phy/mxl-gpy.c
12031
12032 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12033 R:      Yasushi SHOJI <yashi@spacecubics.com>
12034 L:      linux-can@vger.kernel.org
12035 S:      Maintained
12036 F:      drivers/net/can/usb/mcba_usb.c
12037
12038 MCAN MMIO DEVICE DRIVER
12039 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12040 L:      linux-can@vger.kernel.org
12041 S:      Maintained
12042 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12043 F:      drivers/net/can/m_can/m_can.c
12044 F:      drivers/net/can/m_can/m_can.h
12045 F:      drivers/net/can/m_can/m_can_platform.c
12046
12047 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12048 M:      Rishi Gupta <gupt21@gmail.com>
12049 L:      linux-i2c@vger.kernel.org
12050 L:      linux-input@vger.kernel.org
12051 S:      Maintained
12052 F:      drivers/hid/hid-mcp2221.c
12053
12054 MCP251XFD SPI-CAN NETWORK DRIVER
12055 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12056 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12057 R:      Thomas Kopp <thomas.kopp@microchip.com>
12058 L:      linux-can@vger.kernel.org
12059 S:      Maintained
12060 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12061 F:      drivers/net/can/spi/mcp251xfd/
12062
12063 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12064 M:      Peter Rosin <peda@axentia.se>
12065 L:      linux-iio@vger.kernel.org
12066 S:      Maintained
12067 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12068 F:      drivers/iio/potentiometer/mcp4018.c
12069 F:      drivers/iio/potentiometer/mcp4531.c
12070
12071 MCR20A IEEE-802.15.4 RADIO DRIVER
12072 M:      Xue Liu <liuxuenetmail@gmail.com>
12073 L:      linux-wpan@vger.kernel.org
12074 S:      Maintained
12075 W:      https://github.com/xueliu/mcr20a-linux
12076 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12077 F:      drivers/net/ieee802154/mcr20a.c
12078 F:      drivers/net/ieee802154/mcr20a.h
12079
12080 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12081 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12082 L:      linux-iio@vger.kernel.org
12083 S:      Maintained
12084 F:      drivers/iio/dac/cio-dac.c
12085
12086 MEDIA CONTROLLER FRAMEWORK
12087 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12088 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12089 L:      linux-media@vger.kernel.org
12090 S:      Supported
12091 W:      https://www.linuxtv.org
12092 T:      git git://linuxtv.org/media_tree.git
12093 F:      drivers/media/mc/
12094 F:      include/media/media-*.h
12095 F:      include/uapi/linux/media.h
12096
12097 MEDIA DRIVER FOR FREESCALE IMX PXP
12098 M:      Philipp Zabel <p.zabel@pengutronix.de>
12099 L:      linux-media@vger.kernel.org
12100 S:      Maintained
12101 T:      git git://linuxtv.org/media_tree.git
12102 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12103
12104 MEDIA DRIVERS FOR ASCOT2E
12105 M:      Sergey Kozlov <serjk@netup.ru>
12106 M:      Abylay Ospan <aospan@netup.ru>
12107 L:      linux-media@vger.kernel.org
12108 S:      Supported
12109 W:      https://linuxtv.org
12110 W:      http://netup.tv/
12111 T:      git git://linuxtv.org/media_tree.git
12112 F:      drivers/media/dvb-frontends/ascot2e*
12113
12114 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12115 M:      Jasmin Jessich <jasmin@anw.at>
12116 L:      linux-media@vger.kernel.org
12117 S:      Maintained
12118 W:      https://linuxtv.org
12119 T:      git git://linuxtv.org/media_tree.git
12120 F:      drivers/media/dvb-frontends/cxd2099*
12121
12122 MEDIA DRIVERS FOR CXD2841ER
12123 M:      Sergey Kozlov <serjk@netup.ru>
12124 M:      Abylay Ospan <aospan@netup.ru>
12125 L:      linux-media@vger.kernel.org
12126 S:      Supported
12127 W:      https://linuxtv.org
12128 W:      http://netup.tv/
12129 T:      git git://linuxtv.org/media_tree.git
12130 F:      drivers/media/dvb-frontends/cxd2841er*
12131
12132 MEDIA DRIVERS FOR CXD2880
12133 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12134 L:      linux-media@vger.kernel.org
12135 S:      Supported
12136 W:      http://linuxtv.org/
12137 T:      git git://linuxtv.org/media_tree.git
12138 F:      drivers/media/dvb-frontends/cxd2880/*
12139 F:      drivers/media/spi/cxd2880*
12140
12141 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12142 L:      linux-media@vger.kernel.org
12143 S:      Orphan
12144 W:      https://linuxtv.org
12145 T:      git git://linuxtv.org/media_tree.git
12146 F:      drivers/media/pci/ddbridge/*
12147
12148 MEDIA DRIVERS FOR FREESCALE IMX
12149 M:      Steve Longerbeam <slongerbeam@gmail.com>
12150 M:      Philipp Zabel <p.zabel@pengutronix.de>
12151 L:      linux-media@vger.kernel.org
12152 S:      Maintained
12153 T:      git git://linuxtv.org/media_tree.git
12154 F:      Documentation/admin-guide/media/imx.rst
12155 F:      Documentation/devicetree/bindings/media/imx.txt
12156 F:      drivers/staging/media/imx/
12157 F:      include/linux/imx-media.h
12158 F:      include/media/imx.h
12159
12160 MEDIA DRIVERS FOR FREESCALE IMX7
12161 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12162 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12163 L:      linux-media@vger.kernel.org
12164 S:      Maintained
12165 T:      git git://linuxtv.org/media_tree.git
12166 F:      Documentation/admin-guide/media/imx7.rst
12167 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12168 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12169 F:      drivers/media/platform/imx/imx-mipi-csis.c
12170 F:      drivers/staging/media/imx/imx7-media-csi.c
12171
12172 MEDIA DRIVERS FOR HELENE
12173 M:      Abylay Ospan <aospan@netup.ru>
12174 L:      linux-media@vger.kernel.org
12175 S:      Supported
12176 W:      https://linuxtv.org
12177 W:      http://netup.tv/
12178 T:      git git://linuxtv.org/media_tree.git
12179 F:      drivers/media/dvb-frontends/helene*
12180
12181 MEDIA DRIVERS FOR HORUS3A
12182 M:      Sergey Kozlov <serjk@netup.ru>
12183 M:      Abylay Ospan <aospan@netup.ru>
12184 L:      linux-media@vger.kernel.org
12185 S:      Supported
12186 W:      https://linuxtv.org
12187 W:      http://netup.tv/
12188 T:      git git://linuxtv.org/media_tree.git
12189 F:      drivers/media/dvb-frontends/horus3a*
12190
12191 MEDIA DRIVERS FOR LNBH25
12192 M:      Sergey Kozlov <serjk@netup.ru>
12193 M:      Abylay Ospan <aospan@netup.ru>
12194 L:      linux-media@vger.kernel.org
12195 S:      Supported
12196 W:      https://linuxtv.org
12197 W:      http://netup.tv/
12198 T:      git git://linuxtv.org/media_tree.git
12199 F:      drivers/media/dvb-frontends/lnbh25*
12200
12201 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12202 L:      linux-media@vger.kernel.org
12203 S:      Orphan
12204 W:      https://linuxtv.org
12205 T:      git git://linuxtv.org/media_tree.git
12206 F:      drivers/media/dvb-frontends/mxl5xx*
12207
12208 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12209 M:      Sergey Kozlov <serjk@netup.ru>
12210 M:      Abylay Ospan <aospan@netup.ru>
12211 L:      linux-media@vger.kernel.org
12212 S:      Supported
12213 W:      https://linuxtv.org
12214 W:      http://netup.tv/
12215 T:      git git://linuxtv.org/media_tree.git
12216 F:      drivers/media/pci/netup_unidvb/*
12217
12218 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12219 M:      Dmitry Osipenko <digetx@gmail.com>
12220 L:      linux-media@vger.kernel.org
12221 L:      linux-tegra@vger.kernel.org
12222 S:      Maintained
12223 T:      git git://linuxtv.org/media_tree.git
12224 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
12225 F:      drivers/media/platform/nvidia/tegra-vde/
12226
12227 MEDIA DRIVERS FOR RENESAS - CEU
12228 M:      Jacopo Mondi <jacopo@jmondi.org>
12229 L:      linux-media@vger.kernel.org
12230 L:      linux-renesas-soc@vger.kernel.org
12231 S:      Supported
12232 T:      git git://linuxtv.org/media_tree.git
12233 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12234 F:      drivers/media/platform/renesas/renesas-ceu.c
12235 F:      include/media/drv-intf/renesas-ceu.h
12236
12237 MEDIA DRIVERS FOR RENESAS - DRIF
12238 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12239 L:      linux-media@vger.kernel.org
12240 L:      linux-renesas-soc@vger.kernel.org
12241 S:      Supported
12242 T:      git git://linuxtv.org/media_tree.git
12243 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12244 F:      drivers/media/platform/renesas/rcar_drif.c
12245
12246 MEDIA DRIVERS FOR RENESAS - FCP
12247 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12248 L:      linux-media@vger.kernel.org
12249 L:      linux-renesas-soc@vger.kernel.org
12250 S:      Supported
12251 T:      git git://linuxtv.org/media_tree.git
12252 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12253 F:      drivers/media/platform/renesas/rcar-fcp.c
12254 F:      include/media/rcar-fcp.h
12255
12256 MEDIA DRIVERS FOR RENESAS - FDP1
12257 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12258 L:      linux-media@vger.kernel.org
12259 L:      linux-renesas-soc@vger.kernel.org
12260 S:      Supported
12261 T:      git git://linuxtv.org/media_tree.git
12262 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12263 F:      drivers/media/platform/renesas/rcar_fdp1.c
12264
12265 MEDIA DRIVERS FOR RENESAS - VIN
12266 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
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,csi2.yaml
12272 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12273 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12274 F:      drivers/media/platform/renesas/rcar-isp.c
12275 F:      drivers/media/platform/renesas/rcar-vin/
12276
12277 MEDIA DRIVERS FOR RENESAS - VSP1
12278 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12279 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12280 L:      linux-media@vger.kernel.org
12281 L:      linux-renesas-soc@vger.kernel.org
12282 S:      Supported
12283 T:      git git://linuxtv.org/media_tree.git
12284 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12285 F:      drivers/media/platform/renesas/vsp1/
12286
12287 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12288 L:      linux-media@vger.kernel.org
12289 S:      Orphan
12290 W:      https://linuxtv.org
12291 T:      git git://linuxtv.org/media_tree.git
12292 F:      drivers/media/dvb-frontends/stv0910*
12293
12294 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12295 L:      linux-media@vger.kernel.org
12296 S:      Orphan
12297 W:      https://linuxtv.org
12298 T:      git git://linuxtv.org/media_tree.git
12299 F:      drivers/media/dvb-frontends/stv6111*
12300
12301 MEDIA DRIVERS FOR STM32 - DCMI
12302 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12303 L:      linux-media@vger.kernel.org
12304 S:      Supported
12305 T:      git git://linuxtv.org/media_tree.git
12306 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12307 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12308
12309 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12310 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12311 L:      linux-media@vger.kernel.org
12312 S:      Maintained
12313 W:      https://linuxtv.org
12314 Q:      http://patchwork.kernel.org/project/linux-media/list/
12315 T:      git git://linuxtv.org/media_tree.git
12316 F:      Documentation/admin-guide/media/
12317 F:      Documentation/devicetree/bindings/media/
12318 F:      Documentation/driver-api/media/
12319 F:      Documentation/userspace-api/media/
12320 F:      drivers/media/
12321 F:      drivers/staging/media/
12322 F:      include/linux/platform_data/media/
12323 F:      include/media/
12324 F:      include/uapi/linux/dvb/
12325 F:      include/uapi/linux/ivtv*
12326 F:      include/uapi/linux/media.h
12327 F:      include/uapi/linux/meye.h
12328 F:      include/uapi/linux/uvcvideo.h
12329 F:      include/uapi/linux/v4l2-*
12330 F:      include/uapi/linux/videodev2.h
12331
12332 MEDIATEK BLUETOOTH DRIVER
12333 M:      Sean Wang <sean.wang@mediatek.com>
12334 L:      linux-bluetooth@vger.kernel.org
12335 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12336 S:      Maintained
12337 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12338 F:      drivers/bluetooth/btmtkuart.c
12339
12340 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12341 M:      Sean Wang <sean.wang@mediatek.com>
12342 L:      linux-pm@vger.kernel.org
12343 S:      Maintained
12344 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12345 F:      drivers/power/reset/mt6323-poweroff.c
12346
12347 MEDIATEK CIR DRIVER
12348 M:      Sean Wang <sean.wang@mediatek.com>
12349 S:      Maintained
12350 F:      drivers/media/rc/mtk-cir.c
12351
12352 MEDIATEK DMA DRIVER
12353 M:      Sean Wang <sean.wang@mediatek.com>
12354 L:      dmaengine@vger.kernel.org
12355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12356 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12357 S:      Maintained
12358 F:      Documentation/devicetree/bindings/dma/mtk-*
12359 F:      drivers/dma/mediatek/
12360
12361 MEDIATEK ETHERNET DRIVER
12362 M:      Felix Fietkau <nbd@nbd.name>
12363 M:      John Crispin <john@phrozen.org>
12364 M:      Sean Wang <sean.wang@mediatek.com>
12365 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12366 L:      netdev@vger.kernel.org
12367 S:      Maintained
12368 F:      drivers/net/ethernet/mediatek/
12369
12370 MEDIATEK I2C CONTROLLER DRIVER
12371 M:      Qii Wang <qii.wang@mediatek.com>
12372 L:      linux-i2c@vger.kernel.org
12373 S:      Maintained
12374 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
12375 F:      drivers/i2c/busses/i2c-mt65xx.c
12376
12377 MEDIATEK IOMMU DRIVER
12378 M:      Yong Wu <yong.wu@mediatek.com>
12379 L:      iommu@lists.linux-foundation.org
12380 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12381 S:      Supported
12382 F:      Documentation/devicetree/bindings/iommu/mediatek*
12383 F:      drivers/iommu/mtk_iommu*
12384 F:      include/dt-bindings/memory/mt*-port.h
12385
12386 MEDIATEK JPEG DRIVER
12387 M:      Rick Chang <rick.chang@mediatek.com>
12388 M:      Bin Liu <bin.liu@mediatek.com>
12389 S:      Supported
12390 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
12391 F:      drivers/media/platform/mediatek/jpeg/
12392
12393 MEDIATEK MDP DRIVER
12394 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12395 M:      Houlong Wei <houlong.wei@mediatek.com>
12396 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12397 S:      Supported
12398 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12399 F:      drivers/media/platform/mediatek/mdp/
12400 F:      drivers/media/platform/mediatek/vpu/
12401
12402 MEDIATEK MEDIA DRIVER
12403 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12404 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12405 S:      Supported
12406 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
12407 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12408 F:      drivers/media/platform/mediatek/vcodec/
12409 F:      drivers/media/platform/mediatek/vpu/
12410
12411 MEDIATEK MMC/SD/SDIO DRIVER
12412 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12413 S:      Maintained
12414 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12415 F:      drivers/mmc/host/mtk-sd.c
12416
12417 MEDIATEK MT76 WIRELESS LAN DRIVER
12418 M:      Felix Fietkau <nbd@nbd.name>
12419 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12420 M:      Ryder Lee <ryder.lee@mediatek.com>
12421 R:      Shayne Chen <shayne.chen@mediatek.com>
12422 R:      Sean Wang <sean.wang@mediatek.com>
12423 L:      linux-wireless@vger.kernel.org
12424 S:      Maintained
12425 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12426 F:      drivers/net/wireless/mediatek/mt76/
12427
12428 MEDIATEK MT7601U WIRELESS LAN DRIVER
12429 M:      Jakub Kicinski <kubakici@wp.pl>
12430 L:      linux-wireless@vger.kernel.org
12431 S:      Maintained
12432 F:      drivers/net/wireless/mediatek/mt7601u/
12433
12434 MEDIATEK MT7621 CLOCK DRIVER
12435 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12436 S:      Maintained
12437 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12438 F:      drivers/clk/ralink/clk-mt7621.c
12439
12440 MEDIATEK MT7621/28/88 I2C DRIVER
12441 M:      Stefan Roese <sr@denx.de>
12442 L:      linux-i2c@vger.kernel.org
12443 S:      Maintained
12444 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12445 F:      drivers/i2c/busses/i2c-mt7621.c
12446
12447 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12448 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12449 S:      Maintained
12450 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12451 F:      drivers/pci/controller/pcie-mt7621.c
12452
12453 MEDIATEK MT7621 PHY PCI DRIVER
12454 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12455 S:      Maintained
12456 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12457 F:      drivers/phy/ralink/phy-mt7621-pci.c
12458
12459 MEDIATEK NAND CONTROLLER DRIVER
12460 L:      linux-mtd@lists.infradead.org
12461 S:      Orphan
12462 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12463 F:      drivers/mtd/nand/raw/mtk_*
12464
12465 MEDIATEK PMIC LED DRIVER
12466 M:      Sean Wang <sean.wang@mediatek.com>
12467 S:      Maintained
12468 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12469 F:      drivers/leds/leds-mt6323.c
12470
12471 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12472 M:      Sean Wang <sean.wang@mediatek.com>
12473 S:      Maintained
12474 F:      drivers/char/hw_random/mtk-rng.c
12475
12476 MEDIATEK SMI DRIVER
12477 M:      Yong Wu <yong.wu@mediatek.com>
12478 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12479 S:      Supported
12480 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12481 F:      drivers/memory/mtk-smi.c
12482 F:      include/soc/mediatek/smi.h
12483
12484 MEDIATEK SWITCH DRIVER
12485 M:      Sean Wang <sean.wang@mediatek.com>
12486 M:      Landen Chao <Landen.Chao@mediatek.com>
12487 M:      DENG Qingfang <dqfext@gmail.com>
12488 L:      netdev@vger.kernel.org
12489 S:      Maintained
12490 F:      drivers/net/dsa/mt7530.*
12491 F:      net/dsa/tag_mtk.c
12492
12493 MEDIATEK USB3 DRD IP DRIVER
12494 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12495 L:      linux-usb@vger.kernel.org
12496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12497 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12498 S:      Maintained
12499 F:      Documentation/devicetree/bindings/usb/mediatek,*
12500 F:      drivers/usb/host/xhci-mtk*
12501 F:      drivers/usb/mtu3/
12502
12503 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12504 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12505 M:      Martin Donnelly <martin.donnelly@ge.com>
12506 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12507 S:      Maintained
12508 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12509 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12510
12511 MEGARAID SCSI/SAS DRIVERS
12512 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12513 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12514 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12515 L:      megaraidlinux.pdl@broadcom.com
12516 L:      linux-scsi@vger.kernel.org
12517 S:      Maintained
12518 W:      http://www.avagotech.com/support/
12519 F:      Documentation/scsi/megaraid.rst
12520 F:      drivers/scsi/megaraid.*
12521 F:      drivers/scsi/megaraid/
12522
12523 MELEXIS MLX90614 DRIVER
12524 M:      Crt Mori <cmo@melexis.com>
12525 L:      linux-iio@vger.kernel.org
12526 S:      Supported
12527 W:      http://www.melexis.com
12528 F:      drivers/iio/temperature/mlx90614.c
12529
12530 MELEXIS MLX90632 DRIVER
12531 M:      Crt Mori <cmo@melexis.com>
12532 L:      linux-iio@vger.kernel.org
12533 S:      Supported
12534 W:      http://www.melexis.com
12535 F:      drivers/iio/temperature/mlx90632.c
12536
12537 MELFAS MIP4 TOUCHSCREEN DRIVER
12538 M:      Sangwon Jee <jeesw@melfas.com>
12539 S:      Supported
12540 W:      http://www.melfas.com
12541 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12542 F:      drivers/input/touchscreen/melfas_mip4.c
12543
12544 MELLANOX BLUEFIELD I2C DRIVER
12545 M:      Khalil Blaiech <kblaiech@nvidia.com>
12546 L:      linux-i2c@vger.kernel.org
12547 S:      Supported
12548 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12549 F:      drivers/i2c/busses/i2c-mlxbf.c
12550
12551 MELLANOX ETHERNET DRIVER (mlx4_en)
12552 M:      Tariq Toukan <tariqt@nvidia.com>
12553 L:      netdev@vger.kernel.org
12554 S:      Supported
12555 W:      http://www.mellanox.com
12556 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12557 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12558
12559 MELLANOX ETHERNET DRIVER (mlx5e)
12560 M:      Saeed Mahameed <saeedm@nvidia.com>
12561 L:      netdev@vger.kernel.org
12562 S:      Supported
12563 W:      http://www.mellanox.com
12564 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12565 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12566
12567 MELLANOX ETHERNET INNOVA DRIVERS
12568 R:      Boris Pismenny <borisp@nvidia.com>
12569 L:      netdev@vger.kernel.org
12570 S:      Supported
12571 W:      http://www.mellanox.com
12572 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12573 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12574 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12575 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12576 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12577
12578 MELLANOX ETHERNET SWITCH DRIVERS
12579 M:      Ido Schimmel <idosch@nvidia.com>
12580 M:      Petr Machata <petrm@nvidia.com>
12581 L:      netdev@vger.kernel.org
12582 S:      Supported
12583 W:      http://www.mellanox.com
12584 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12585 F:      drivers/net/ethernet/mellanox/mlxsw/
12586 F:      tools/testing/selftests/drivers/net/mlxsw/
12587
12588 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12589 M:      mlxsw@nvidia.com
12590 L:      netdev@vger.kernel.org
12591 S:      Supported
12592 W:      http://www.mellanox.com
12593 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12594 F:      drivers/net/ethernet/mellanox/mlxfw/
12595
12596 MELLANOX HARDWARE PLATFORM SUPPORT
12597 M:      Hans de Goede <hdegoede@redhat.com>
12598 M:      Mark Gross <markgross@kernel.org>
12599 M:      Vadim Pasternak <vadimp@nvidia.com>
12600 L:      platform-driver-x86@vger.kernel.org
12601 S:      Supported
12602 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12603 F:      drivers/platform/mellanox/
12604 F:      include/linux/platform_data/mlxreg.h
12605
12606 MELLANOX MLX4 core VPI driver
12607 M:      Tariq Toukan <tariqt@nvidia.com>
12608 L:      netdev@vger.kernel.org
12609 L:      linux-rdma@vger.kernel.org
12610 S:      Supported
12611 W:      http://www.mellanox.com
12612 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12613 F:      drivers/net/ethernet/mellanox/mlx4/
12614 F:      include/linux/mlx4/
12615
12616 MELLANOX MLX4 IB driver
12617 M:      Yishai Hadas <yishaih@nvidia.com>
12618 L:      linux-rdma@vger.kernel.org
12619 S:      Supported
12620 W:      http://www.mellanox.com
12621 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12622 F:      drivers/infiniband/hw/mlx4/
12623 F:      include/linux/mlx4/
12624 F:      include/uapi/rdma/mlx4-abi.h
12625
12626 MELLANOX MLX5 core VPI driver
12627 M:      Saeed Mahameed <saeedm@nvidia.com>
12628 M:      Leon Romanovsky <leonro@nvidia.com>
12629 L:      netdev@vger.kernel.org
12630 L:      linux-rdma@vger.kernel.org
12631 S:      Supported
12632 W:      http://www.mellanox.com
12633 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12634 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12635 F:      drivers/net/ethernet/mellanox/mlx5/core/
12636 F:      include/linux/mlx5/
12637
12638 MELLANOX MLX5 IB driver
12639 M:      Leon Romanovsky <leonro@nvidia.com>
12640 L:      linux-rdma@vger.kernel.org
12641 S:      Supported
12642 W:      http://www.mellanox.com
12643 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12644 F:      drivers/infiniband/hw/mlx5/
12645 F:      include/linux/mlx5/
12646 F:      include/uapi/rdma/mlx5-abi.h
12647
12648 MELLANOX MLXCPLD I2C AND MUX DRIVER
12649 M:      Vadim Pasternak <vadimp@nvidia.com>
12650 M:      Michael Shych <michaelsh@nvidia.com>
12651 L:      linux-i2c@vger.kernel.org
12652 S:      Supported
12653 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12654 F:      drivers/i2c/busses/i2c-mlxcpld.c
12655 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12656
12657 MELLANOX MLXCPLD LED DRIVER
12658 M:      Vadim Pasternak <vadimp@nvidia.com>
12659 L:      linux-leds@vger.kernel.org
12660 S:      Supported
12661 F:      Documentation/leds/leds-mlxcpld.rst
12662 F:      drivers/leds/leds-mlxcpld.c
12663 F:      drivers/leds/leds-mlxreg.c
12664
12665 MELLANOX PLATFORM DRIVER
12666 M:      Vadim Pasternak <vadimp@nvidia.com>
12667 L:      platform-driver-x86@vger.kernel.org
12668 S:      Supported
12669 F:      drivers/platform/x86/mlx-platform.c
12670
12671 MEMBARRIER SUPPORT
12672 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12673 M:      "Paul E. McKenney" <paulmck@kernel.org>
12674 L:      linux-kernel@vger.kernel.org
12675 S:      Supported
12676 F:      arch/powerpc/include/asm/membarrier.h
12677 F:      include/uapi/linux/membarrier.h
12678 F:      kernel/sched/membarrier.c
12679
12680 MEMBLOCK
12681 M:      Mike Rapoport <rppt@kernel.org>
12682 L:      linux-mm@kvack.org
12683 S:      Maintained
12684 F:      Documentation/core-api/boot-time-mm.rst
12685 F:      include/linux/memblock.h
12686 F:      mm/memblock.c
12687 F:      tools/testing/memblock/
12688
12689 MEMORY CONTROLLER DRIVERS
12690 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12691 L:      linux-kernel@vger.kernel.org
12692 S:      Maintained
12693 B:      mailto:krzysztof.kozlowski@linaro.org
12694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12695 F:      Documentation/devicetree/bindings/memory-controllers/
12696 F:      drivers/memory/
12697 F:      include/dt-bindings/memory/
12698 F:      include/memory/
12699
12700 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12701 M:      Dmitry Osipenko <digetx@gmail.com>
12702 L:      linux-pm@vger.kernel.org
12703 L:      linux-tegra@vger.kernel.org
12704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12705 S:      Maintained
12706 F:      drivers/devfreq/tegra30-devfreq.c
12707
12708 MEMORY MANAGEMENT
12709 M:      Andrew Morton <akpm@linux-foundation.org>
12710 L:      linux-mm@kvack.org
12711 S:      Maintained
12712 W:      http://www.linux-mm.org
12713 T:      quilt https://ozlabs.org/~akpm/mmotm/
12714 T:      quilt https://ozlabs.org/~akpm/mmots/
12715 T:      git git://github.com/hnaz/linux-mm.git
12716 F:      include/linux/gfp.h
12717 F:      include/linux/memory_hotplug.h
12718 F:      include/linux/mm.h
12719 F:      include/linux/mmzone.h
12720 F:      include/linux/pagewalk.h
12721 F:      include/linux/vmalloc.h
12722 F:      mm/
12723 F:      tools/testing/selftests/vm/
12724
12725 MEMORY TECHNOLOGY DEVICES (MTD)
12726 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12727 M:      Richard Weinberger <richard@nod.at>
12728 M:      Vignesh Raghavendra <vigneshr@ti.com>
12729 L:      linux-mtd@lists.infradead.org
12730 S:      Maintained
12731 W:      http://www.linux-mtd.infradead.org/
12732 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12733 C:      irc://irc.oftc.net/mtd
12734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12736 F:      Documentation/devicetree/bindings/mtd/
12737 F:      drivers/mtd/
12738 F:      include/linux/mtd/
12739 F:      include/uapi/mtd/
12740
12741 MEN A21 WATCHDOG DRIVER
12742 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12743 L:      linux-watchdog@vger.kernel.org
12744 S:      Maintained
12745 F:      drivers/watchdog/mena21_wdt.c
12746
12747 MEN CHAMELEON BUS (mcb)
12748 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12749 S:      Maintained
12750 F:      Documentation/driver-api/men-chameleon-bus.rst
12751 F:      drivers/mcb/
12752 F:      include/linux/mcb.h
12753
12754 MEN F21BMC (Board Management Controller)
12755 M:      Andreas Werner <andreas.werner@men.de>
12756 S:      Supported
12757 F:      Documentation/hwmon/menf21bmc.rst
12758 F:      drivers/hwmon/menf21bmc_hwmon.c
12759 F:      drivers/leds/leds-menf21bmc.c
12760 F:      drivers/mfd/menf21bmc.c
12761 F:      drivers/watchdog/menf21bmc_wdt.c
12762
12763 MEN Z069 WATCHDOG DRIVER
12764 M:      Johannes Thumshirn <jth@kernel.org>
12765 L:      linux-watchdog@vger.kernel.org
12766 S:      Maintained
12767 F:      drivers/watchdog/menz69_wdt.c
12768
12769 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12770 M:      Neil Armstrong <narmstrong@baylibre.com>
12771 L:      linux-media@vger.kernel.org
12772 L:      linux-amlogic@lists.infradead.org
12773 S:      Supported
12774 W:      http://linux-meson.com/
12775 T:      git git://linuxtv.org/media_tree.git
12776 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12777 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12778 F:      drivers/media/cec/platform/meson/ao-cec.c
12779
12780 MESON GE2D DRIVER FOR AMLOGIC SOCS
12781 M:      Neil Armstrong <narmstrong@baylibre.com>
12782 L:      linux-media@vger.kernel.org
12783 L:      linux-amlogic@lists.infradead.org
12784 S:      Supported
12785 T:      git git://linuxtv.org/media_tree.git
12786 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12787 F:      drivers/media/platform/amlogic/meson-ge2d/
12788
12789 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12790 M:      Liang Yang <liang.yang@amlogic.com>
12791 L:      linux-mtd@lists.infradead.org
12792 S:      Maintained
12793 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12794 F:      drivers/mtd/nand/raw/meson_*
12795
12796 MESON VIDEO DECODER 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 T:      git git://linuxtv.org/media_tree.git
12802 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12803 F:      drivers/staging/media/meson/vdec/
12804
12805 METHODE UDPU SUPPORT
12806 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12807 S:      Maintained
12808 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12809
12810 MHI BUS
12811 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12812 R:      Hemant Kumar <quic_hemantk@quicinc.com>
12813 L:      mhi@lists.linux.dev
12814 L:      linux-arm-msm@vger.kernel.org
12815 S:      Maintained
12816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12817 F:      Documentation/ABI/stable/sysfs-bus-mhi
12818 F:      Documentation/mhi/
12819 F:      drivers/bus/mhi/
12820 F:      include/linux/mhi.h
12821
12822 MICROBLAZE ARCHITECTURE
12823 M:      Michal Simek <monstr@monstr.eu>
12824 S:      Supported
12825 W:      http://www.monstr.eu/fdt/
12826 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12827 F:      arch/microblaze/
12828
12829 MICROCHIP AT91 DMA DRIVERS
12830 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12831 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12833 L:      dmaengine@vger.kernel.org
12834 S:      Supported
12835 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12836 F:      drivers/dma/at_hdmac.c
12837 F:      drivers/dma/at_hdmac_regs.h
12838 F:      drivers/dma/at_xdmac.c
12839 F:      include/dt-bindings/dma/at91.h
12840
12841 MICROCHIP AT91 SERIAL DRIVER
12842 M:      Richard Genoud <richard.genoud@gmail.com>
12843 S:      Maintained
12844 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12845 F:      drivers/tty/serial/atmel_serial.c
12846 F:      drivers/tty/serial/atmel_serial.h
12847
12848 MICROCHIP AT91 USART MFD DRIVER
12849 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12850 L:      linux-kernel@vger.kernel.org
12851 S:      Supported
12852 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12853 F:      drivers/mfd/at91-usart.c
12854 F:      include/dt-bindings/mfd/at91-usart.h
12855
12856 MICROCHIP AT91 USART SPI DRIVER
12857 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12858 L:      linux-spi@vger.kernel.org
12859 S:      Supported
12860 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12861 F:      drivers/spi/spi-at91-usart.c
12862
12863 MICROCHIP AUDIO ASOC DRIVERS
12864 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12865 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12866 S:      Supported
12867 F:      sound/soc/atmel
12868
12869 MICROCHIP CSI2DC DRIVER
12870 M:      Eugen Hristev <eugen.hristev@microchip.com>
12871 L:      linux-media@vger.kernel.org
12872 S:      Supported
12873 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
12874 F:      drivers/media/platform/atmel/microchip-csi2dc.c
12875
12876 MICROCHIP ECC DRIVER
12877 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12878 L:      linux-crypto@vger.kernel.org
12879 S:      Maintained
12880 F:      drivers/crypto/atmel-ecc.*
12881
12882 MICROCHIP EIC DRIVER
12883 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12885 S:      Supported
12886 F:      drivers/irqchip/irq-mchp-eic.c
12887
12888 MICROCHIP I2C DRIVER
12889 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12890 L:      linux-i2c@vger.kernel.org
12891 S:      Supported
12892 F:      drivers/i2c/busses/i2c-at91-*.c
12893 F:      drivers/i2c/busses/i2c-at91.h
12894
12895 MICROCHIP ISC DRIVER
12896 M:      Eugen Hristev <eugen.hristev@microchip.com>
12897 L:      linux-media@vger.kernel.org
12898 S:      Supported
12899 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12900 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12901 F:      drivers/media/platform/atmel/atmel-isc*
12902 F:      drivers/media/platform/atmel/atmel-sama*-isc*
12903 F:      include/linux/atmel-isc-media.h
12904
12905 MICROCHIP ISI DRIVER
12906 M:      Eugen Hristev <eugen.hristev@microchip.com>
12907 L:      linux-media@vger.kernel.org
12908 S:      Supported
12909 F:      drivers/media/platform/atmel/atmel-isi.c
12910 F:      drivers/media/platform/atmel/atmel-isi.h
12911
12912 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12913 M:      Woojung Huh <woojung.huh@microchip.com>
12914 M:      UNGLinuxDriver@microchip.com
12915 L:      netdev@vger.kernel.org
12916 S:      Maintained
12917 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12918 F:      drivers/net/dsa/microchip/*
12919 F:      include/linux/platform_data/microchip-ksz.h
12920 F:      net/dsa/tag_ksz.c
12921
12922 MICROCHIP LAN743X ETHERNET DRIVER
12923 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12924 M:      UNGLinuxDriver@microchip.com
12925 L:      netdev@vger.kernel.org
12926 S:      Maintained
12927 F:      drivers/net/ethernet/microchip/lan743x_*
12928
12929 MICROCHIP LAN966X ETHERNET DRIVER
12930 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
12931 M:      UNGLinuxDriver@microchip.com
12932 L:      netdev@vger.kernel.org
12933 S:      Maintained
12934 F:      drivers/net/ethernet/microchip/lan966x/*
12935
12936 MICROCHIP LCDFB DRIVER
12937 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12938 L:      linux-fbdev@vger.kernel.org
12939 S:      Maintained
12940 F:      drivers/video/fbdev/atmel_lcdfb.c
12941 F:      include/video/atmel_lcdc.h
12942
12943 MICROCHIP MCP16502 PMIC DRIVER
12944 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12946 S:      Supported
12947 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12948 F:      drivers/regulator/mcp16502.c
12949
12950 MICROCHIP MCP3911 ADC DRIVER
12951 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12952 M:      Kent Gustavsson <kent@minoris.se>
12953 L:      linux-iio@vger.kernel.org
12954 S:      Supported
12955 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12956 F:      drivers/iio/adc/mcp3911.c
12957
12958 MICROCHIP MMC/SD/SDIO MCI DRIVER
12959 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12960 S:      Maintained
12961 F:      drivers/mmc/host/atmel-mci.c
12962
12963 MICROCHIP NAND DRIVER
12964 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12965 L:      linux-mtd@lists.infradead.org
12966 S:      Supported
12967 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12968 F:      drivers/mtd/nand/raw/atmel/*
12969
12970 MICROCHIP PWM DRIVER
12971 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12973 L:      linux-pwm@vger.kernel.org
12974 S:      Supported
12975 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12976 F:      drivers/pwm/pwm-atmel.c
12977
12978 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12979 M:      Eugen Hristev <eugen.hristev@microchip.com>
12980 L:      linux-iio@vger.kernel.org
12981 S:      Supported
12982 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12983 F:      drivers/iio/adc/at91-sama5d2_adc.c
12984 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12985
12986 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12987 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12988 S:      Supported
12989 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12990
12991 MICROCHIP SPI DRIVER
12992 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12993 S:      Supported
12994 F:      drivers/spi/spi-atmel.*
12995
12996 MICROCHIP SSC DRIVER
12997 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12999 S:      Supported
13000 F:      drivers/misc/atmel-ssc.c
13001 F:      include/linux/atmel-ssc.h
13002
13003 MICROCHIP USB251XB DRIVER
13004 M:      Richard Leitner <richard.leitner@skidata.com>
13005 L:      linux-usb@vger.kernel.org
13006 S:      Maintained
13007 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13008 F:      drivers/usb/misc/usb251xb.c
13009
13010 MICROCHIP USBA UDC DRIVER
13011 M:      Cristian Birsan <cristian.birsan@microchip.com>
13012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13013 S:      Supported
13014 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13015
13016 MICROCHIP WILC1000 WIFI DRIVER
13017 M:      Ajay Singh <ajay.kathat@microchip.com>
13018 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13019 L:      linux-wireless@vger.kernel.org
13020 S:      Supported
13021 F:      drivers/net/wireless/microchip/wilc1000/
13022
13023 MICROSEMI MIPS SOCS
13024 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13025 M:      UNGLinuxDriver@microchip.com
13026 L:      linux-mips@vger.kernel.org
13027 S:      Supported
13028 F:      Documentation/devicetree/bindings/mips/mscc.txt
13029 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13030 F:      arch/mips/boot/dts/mscc/
13031 F:      arch/mips/configs/generic/board-ocelot.config
13032 F:      arch/mips/generic/board-ocelot.c
13033
13034 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13035 M:      Don Brace <don.brace@microchip.com>
13036 L:      storagedev@microchip.com
13037 L:      linux-scsi@vger.kernel.org
13038 S:      Supported
13039 F:      Documentation/scsi/smartpqi.rst
13040 F:      drivers/scsi/smartpqi/Kconfig
13041 F:      drivers/scsi/smartpqi/Makefile
13042 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13043 F:      include/linux/cciss*.h
13044 F:      include/uapi/linux/cciss*.h
13045
13046 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13047 M:      Maximilian Luz <luzmaximilian@gmail.com>
13048 L:      linux-pm@vger.kernel.org
13049 L:      platform-driver-x86@vger.kernel.org
13050 S:      Maintained
13051 F:      drivers/power/supply/surface_battery.c
13052 F:      drivers/power/supply/surface_charger.c
13053
13054 MICROSOFT SURFACE DTX DRIVER
13055 M:      Maximilian Luz <luzmaximilian@gmail.com>
13056 L:      platform-driver-x86@vger.kernel.org
13057 S:      Maintained
13058 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13059 F:      drivers/platform/surface/surface_dtx.c
13060 F:      include/uapi/linux/surface_aggregator/dtx.h
13061
13062 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13063 M:      Maximilian Luz <luzmaximilian@gmail.com>
13064 L:      platform-driver-x86@vger.kernel.org
13065 S:      Maintained
13066 F:      drivers/platform/surface/surface_gpe.c
13067
13068 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13069 M:      Hans de Goede <hdegoede@redhat.com>
13070 M:      Mark Gross <markgross@kernel.org>
13071 M:      Maximilian Luz <luzmaximilian@gmail.com>
13072 L:      platform-driver-x86@vger.kernel.org
13073 S:      Maintained
13074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13075 F:      drivers/platform/surface/
13076
13077 MICROSOFT SURFACE HID TRANSPORT DRIVER
13078 M:      Maximilian Luz <luzmaximilian@gmail.com>
13079 L:      linux-input@vger.kernel.org
13080 L:      platform-driver-x86@vger.kernel.org
13081 S:      Maintained
13082 F:      drivers/hid/surface-hid/
13083
13084 MICROSOFT SURFACE HOT-PLUG DRIVER
13085 M:      Maximilian Luz <luzmaximilian@gmail.com>
13086 L:      platform-driver-x86@vger.kernel.org
13087 S:      Maintained
13088 F:      drivers/platform/surface/surface_hotplug.c
13089
13090 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13091 M:      Maximilian Luz <luzmaximilian@gmail.com>
13092 L:      platform-driver-x86@vger.kernel.org
13093 S:      Maintained
13094 F:      drivers/platform/surface/surface_platform_profile.c
13095
13096 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13097 M:      Chen Yu <yu.c.chen@intel.com>
13098 L:      platform-driver-x86@vger.kernel.org
13099 S:      Supported
13100 F:      drivers/platform/surface/surfacepro3_button.c
13101
13102 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13103 M:      Maximilian Luz <luzmaximilian@gmail.com>
13104 L:      platform-driver-x86@vger.kernel.org
13105 S:      Maintained
13106 W:      https://github.com/linux-surface/surface-aggregator-module
13107 C:      irc://irc.libera.chat/linux-surface
13108 F:      Documentation/driver-api/surface_aggregator/
13109 F:      drivers/platform/surface/aggregator/
13110 F:      drivers/platform/surface/surface_acpi_notify.c
13111 F:      drivers/platform/surface/surface_aggregator_cdev.c
13112 F:      drivers/platform/surface/surface_aggregator_registry.c
13113 F:      include/linux/surface_acpi_notify.h
13114 F:      include/linux/surface_aggregator/
13115 F:      include/uapi/linux/surface_aggregator/
13116
13117 MICROTEK X6 SCANNER
13118 M:      Oliver Neukum <oliver@neukum.org>
13119 S:      Maintained
13120 F:      drivers/usb/image/microtek.*
13121
13122 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13123 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13124 M:      Luka Perkov <luka.perkov@sartura.hr>
13125 S:      Maintained
13126 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13127 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13128 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13129 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13130 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13131 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13132
13133 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13134 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13135 L:      linux-media@vger.kernel.org
13136 S:      Maintained
13137 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13138 F:      Documentation/driver-api/media/drivers/ccs/
13139 F:      Documentation/userspace-api/media/drivers/ccs.rst
13140 F:      drivers/media/i2c/ccs-pll.c
13141 F:      drivers/media/i2c/ccs-pll.h
13142 F:      drivers/media/i2c/ccs/
13143 F:      include/uapi/linux/ccs.h
13144 F:      include/uapi/linux/smiapp.h
13145
13146 MIPS
13147 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13148 L:      linux-mips@vger.kernel.org
13149 S:      Maintained
13150 W:      http://www.linux-mips.org/
13151 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13153 F:      Documentation/devicetree/bindings/mips/
13154 F:      Documentation/mips/
13155 F:      arch/mips/
13156 F:      drivers/platform/mips/
13157
13158 MIPS BOSTON DEVELOPMENT BOARD
13159 M:      Paul Burton <paulburton@kernel.org>
13160 L:      linux-mips@vger.kernel.org
13161 S:      Maintained
13162 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13163 F:      arch/mips/boot/dts/img/boston.dts
13164 F:      arch/mips/configs/generic/board-boston.config
13165 F:      drivers/clk/imgtec/clk-boston.c
13166 F:      include/dt-bindings/clock/boston-clock.h
13167
13168 MIPS CORE DRIVERS
13169 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13170 M:      Serge Semin <fancer.lancer@gmail.com>
13171 L:      linux-mips@vger.kernel.org
13172 S:      Supported
13173 F:      drivers/bus/mips_cdmm.c
13174 F:      drivers/clocksource/mips-gic-timer.c
13175 F:      drivers/cpuidle/cpuidle-cps.c
13176 F:      drivers/irqchip/irq-mips-cpu.c
13177 F:      drivers/irqchip/irq-mips-gic.c
13178
13179 MIPS GENERIC PLATFORM
13180 M:      Paul Burton <paulburton@kernel.org>
13181 L:      linux-mips@vger.kernel.org
13182 S:      Supported
13183 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13184 F:      arch/mips/generic/
13185 F:      arch/mips/tools/generic-board-config.sh
13186
13187 MIPS RINT INSTRUCTION EMULATION
13188 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13189 L:      linux-mips@vger.kernel.org
13190 S:      Supported
13191 F:      arch/mips/math-emu/dp_rint.c
13192 F:      arch/mips/math-emu/sp_rint.c
13193
13194 MIPS/LOONGSON1 ARCHITECTURE
13195 M:      Keguang Zhang <keguang.zhang@gmail.com>
13196 L:      linux-mips@vger.kernel.org
13197 S:      Maintained
13198 F:      arch/mips/include/asm/mach-loongson32/
13199 F:      arch/mips/loongson32/
13200 F:      drivers/*/*/*loongson1*
13201 F:      drivers/*/*loongson1*
13202
13203 MIPS/LOONGSON2EF ARCHITECTURE
13204 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13205 L:      linux-mips@vger.kernel.org
13206 S:      Maintained
13207 F:      arch/mips/include/asm/mach-loongson2ef/
13208 F:      arch/mips/loongson2ef/
13209 F:      drivers/cpufreq/loongson2_cpufreq.c
13210
13211 MIPS/LOONGSON64 ARCHITECTURE
13212 M:      Huacai Chen <chenhuacai@kernel.org>
13213 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13214 L:      linux-mips@vger.kernel.org
13215 S:      Maintained
13216 F:      arch/mips/include/asm/mach-loongson64/
13217 F:      arch/mips/loongson64/
13218 F:      drivers/irqchip/irq-loongson*
13219 F:      drivers/platform/mips/cpu_hwmon.c
13220
13221 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13222 M:      Hans Verkuil <hverkuil@xs4all.nl>
13223 L:      linux-media@vger.kernel.org
13224 S:      Odd Fixes
13225 W:      https://linuxtv.org
13226 T:      git git://linuxtv.org/media_tree.git
13227 F:      drivers/media/radio/radio-miropcm20*
13228
13229 MMP SUPPORT
13230 R:      Lubomir Rintel <lkundrak@v3.sk>
13231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13232 S:      Odd Fixes
13233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13234 F:      arch/arm/boot/dts/mmp*
13235 F:      arch/arm/mach-mmp/
13236 F:      include/linux/soc/mmp/
13237
13238 MMP USB PHY DRIVERS
13239 R:      Lubomir Rintel <lkundrak@v3.sk>
13240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13241 S:      Maintained
13242 F:      drivers/phy/marvell/phy-mmp3-usb.c
13243 F:      drivers/phy/marvell/phy-pxa-usb.c
13244
13245 MMU GATHER AND TLB INVALIDATION
13246 M:      Will Deacon <will@kernel.org>
13247 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13248 M:      Andrew Morton <akpm@linux-foundation.org>
13249 M:      Nick Piggin <npiggin@gmail.com>
13250 M:      Peter Zijlstra <peterz@infradead.org>
13251 L:      linux-arch@vger.kernel.org
13252 L:      linux-mm@kvack.org
13253 S:      Maintained
13254 F:      arch/*/include/asm/tlb.h
13255 F:      include/asm-generic/tlb.h
13256 F:      mm/mmu_gather.c
13257
13258 MN88472 MEDIA DRIVER
13259 M:      Antti Palosaari <crope@iki.fi>
13260 L:      linux-media@vger.kernel.org
13261 S:      Maintained
13262 W:      https://linuxtv.org
13263 W:      http://palosaari.fi/linux/
13264 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13265 F:      drivers/media/dvb-frontends/mn88472*
13266
13267 MN88473 MEDIA DRIVER
13268 M:      Antti Palosaari <crope@iki.fi>
13269 L:      linux-media@vger.kernel.org
13270 S:      Maintained
13271 W:      https://linuxtv.org
13272 W:      http://palosaari.fi/linux/
13273 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13274 F:      drivers/media/dvb-frontends/mn88473*
13275
13276 MODULE SUPPORT
13277 M:      Luis Chamberlain <mcgrof@kernel.org>
13278 L:      linux-modules@vger.kernel.org
13279 L:      linux-kernel@vger.kernel.org
13280 S:      Maintained
13281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13282 F:      include/linux/module.h
13283 F:      kernel/module.c
13284
13285 MONOLITHIC POWER SYSTEM PMIC DRIVER
13286 M:      Saravanan Sekar <sravanhome@gmail.com>
13287 S:      Maintained
13288 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13289 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13290 F:      drivers/iio/adc/mp2629_adc.c
13291 F:      drivers/mfd/mp2629.c
13292 F:      drivers/power/supply/mp2629_charger.c
13293 F:      drivers/regulator/mp5416.c
13294 F:      drivers/regulator/mpq7920.c
13295 F:      drivers/regulator/mpq7920.h
13296 F:      include/linux/mfd/mp2629.h
13297
13298 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13299 S:      Orphan
13300 W:      http://popies.net/meye/
13301 F:      Documentation/userspace-api/media/drivers/meye*
13302 F:      drivers/media/pci/meye/
13303 F:      include/uapi/linux/meye.h
13304
13305 MOTORCOMM PHY DRIVER
13306 M:      Peter Geis <pgwipeout@gmail.com>
13307 L:      netdev@vger.kernel.org
13308 S:      Maintained
13309 F:      drivers/net/phy/motorcomm.c
13310
13311 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13312 M:      Jiri Slaby <jirislaby@kernel.org>
13313 S:      Maintained
13314 F:      Documentation/driver-api/serial/moxa-smartio.rst
13315 F:      drivers/tty/mxser.*
13316
13317 MR800 AVERMEDIA USB FM RADIO DRIVER
13318 M:      Alexey Klimov <klimov.linux@gmail.com>
13319 L:      linux-media@vger.kernel.org
13320 S:      Maintained
13321 T:      git git://linuxtv.org/media_tree.git
13322 F:      drivers/media/radio/radio-mr800.c
13323
13324 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13325 M:      Alan Ott <alan@signal11.us>
13326 L:      linux-wpan@vger.kernel.org
13327 S:      Maintained
13328 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13329 F:      drivers/net/ieee802154/mrf24j40.c
13330
13331 MSI LAPTOP SUPPORT
13332 M:      "Lee, Chun-Yi" <jlee@suse.com>
13333 L:      platform-driver-x86@vger.kernel.org
13334 S:      Maintained
13335 F:      drivers/platform/x86/msi-laptop.c
13336
13337 MSI WMI SUPPORT
13338 L:      platform-driver-x86@vger.kernel.org
13339 S:      Orphan
13340 F:      drivers/platform/x86/msi-wmi.c
13341
13342 MSI001 MEDIA DRIVER
13343 M:      Antti Palosaari <crope@iki.fi>
13344 L:      linux-media@vger.kernel.org
13345 S:      Maintained
13346 W:      https://linuxtv.org
13347 W:      http://palosaari.fi/linux/
13348 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13349 T:      git git://linuxtv.org/anttip/media_tree.git
13350 F:      drivers/media/tuners/msi001*
13351
13352 MSI2500 MEDIA DRIVER
13353 M:      Antti Palosaari <crope@iki.fi>
13354 L:      linux-media@vger.kernel.org
13355 S:      Maintained
13356 W:      https://linuxtv.org
13357 W:      http://palosaari.fi/linux/
13358 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13359 T:      git git://linuxtv.org/anttip/media_tree.git
13360 F:      drivers/media/usb/msi2500/
13361
13362 MSTAR INTERRUPT CONTROLLER DRIVER
13363 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13364 M:      Daniel Palmer <daniel@thingy.jp>
13365 S:      Maintained
13366 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13367 F:      drivers/irqchip/irq-mst-intc.c
13368
13369 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13370 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13371 L:      linux-mtd@lists.infradead.org
13372 S:      Maintained
13373 F:      drivers/mtd/devices/docg3*
13374
13375 MT9M032 APTINA SENSOR DRIVER
13376 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13377 L:      linux-media@vger.kernel.org
13378 S:      Maintained
13379 T:      git git://linuxtv.org/media_tree.git
13380 F:      drivers/media/i2c/mt9m032.c
13381 F:      include/media/i2c/mt9m032.h
13382
13383 MT9P031 APTINA CAMERA SENSOR
13384 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13385 L:      linux-media@vger.kernel.org
13386 S:      Maintained
13387 T:      git git://linuxtv.org/media_tree.git
13388 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13389 F:      drivers/media/i2c/mt9p031.c
13390 F:      include/media/i2c/mt9p031.h
13391
13392 MT9T001 APTINA CAMERA SENSOR
13393 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13394 L:      linux-media@vger.kernel.org
13395 S:      Maintained
13396 T:      git git://linuxtv.org/media_tree.git
13397 F:      drivers/media/i2c/mt9t001.c
13398 F:      include/media/i2c/mt9t001.h
13399
13400 MT9T112 APTINA CAMERA SENSOR
13401 M:      Jacopo Mondi <jacopo@jmondi.org>
13402 L:      linux-media@vger.kernel.org
13403 S:      Odd Fixes
13404 T:      git git://linuxtv.org/media_tree.git
13405 F:      drivers/media/i2c/mt9t112.c
13406 F:      include/media/i2c/mt9t112.h
13407
13408 MT9V032 APTINA CAMERA SENSOR
13409 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13410 L:      linux-media@vger.kernel.org
13411 S:      Maintained
13412 T:      git git://linuxtv.org/media_tree.git
13413 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13414 F:      drivers/media/i2c/mt9v032.c
13415 F:      include/media/i2c/mt9v032.h
13416
13417 MT9V111 APTINA CAMERA SENSOR
13418 M:      Jacopo Mondi <jacopo@jmondi.org>
13419 L:      linux-media@vger.kernel.org
13420 S:      Maintained
13421 T:      git git://linuxtv.org/media_tree.git
13422 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13423 F:      drivers/media/i2c/mt9v111.c
13424
13425 MULTIFUNCTION DEVICES (MFD)
13426 M:      Lee Jones <lee.jones@linaro.org>
13427 S:      Supported
13428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13429 F:      Documentation/devicetree/bindings/mfd/
13430 F:      drivers/mfd/
13431 F:      include/dt-bindings/mfd/
13432 F:      include/linux/mfd/
13433
13434 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13435 S:      Orphan
13436 F:      drivers/mmc/host/mmc_spi.c
13437 F:      include/linux/spi/mmc_spi.h
13438
13439 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13440 M:      Ulf Hansson <ulf.hansson@linaro.org>
13441 L:      linux-mmc@vger.kernel.org
13442 S:      Maintained
13443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13444 F:      Documentation/devicetree/bindings/mmc/
13445 F:      drivers/mmc/
13446 F:      include/linux/mmc/
13447 F:      include/uapi/linux/mmc/
13448
13449 MULTIPLEXER SUBSYSTEM
13450 M:      Peter Rosin <peda@axentia.se>
13451 S:      Maintained
13452 F:      Documentation/ABI/testing/sysfs-class-mux*
13453 F:      Documentation/devicetree/bindings/mux/
13454 F:      drivers/mux/
13455 F:      include/dt-bindings/mux/
13456 F:      include/linux/mux/
13457
13458 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13459 M:      Bin Liu <b-liu@ti.com>
13460 L:      linux-usb@vger.kernel.org
13461 S:      Maintained
13462 F:      drivers/usb/musb/
13463
13464 MXL301RF MEDIA DRIVER
13465 M:      Akihiro Tsukada <tskd08@gmail.com>
13466 L:      linux-media@vger.kernel.org
13467 S:      Odd Fixes
13468 F:      drivers/media/tuners/mxl301rf*
13469
13470 MXL5007T MEDIA DRIVER
13471 M:      Michael Krufky <mkrufky@linuxtv.org>
13472 L:      linux-media@vger.kernel.org
13473 S:      Maintained
13474 W:      https://linuxtv.org
13475 W:      http://github.com/mkrufky
13476 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13477 T:      git git://linuxtv.org/mkrufky/tuners.git
13478 F:      drivers/media/tuners/mxl5007t.*
13479
13480 MXSFB DRM DRIVER
13481 M:      Marek Vasut <marex@denx.de>
13482 M:      Stefan Agner <stefan@agner.ch>
13483 L:      dri-devel@lists.freedesktop.org
13484 S:      Supported
13485 T:      git git://anongit.freedesktop.org/drm/drm-misc
13486 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13487 F:      drivers/gpu/drm/mxsfb/
13488
13489 MYLEX DAC960 PCI RAID Controller
13490 M:      Hannes Reinecke <hare@kernel.org>
13491 L:      linux-scsi@vger.kernel.org
13492 S:      Supported
13493 F:      drivers/scsi/myrb.*
13494 F:      drivers/scsi/myrs.*
13495
13496 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13497 M:      Chris Lee <christopher.lee@cspi.com>
13498 L:      netdev@vger.kernel.org
13499 S:      Supported
13500 W:      https://www.cspi.com/ethernet-products/support/downloads/
13501 F:      drivers/net/ethernet/myricom/myri10ge/
13502
13503 NAND FLASH SUBSYSTEM
13504 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13505 R:      Richard Weinberger <richard@nod.at>
13506 L:      linux-mtd@lists.infradead.org
13507 S:      Maintained
13508 W:      http://www.linux-mtd.infradead.org/
13509 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13510 C:      irc://irc.oftc.net/mtd
13511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13512 F:      drivers/mtd/nand/
13513 F:      include/linux/mtd/*nand*.h
13514
13515 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13516 M:      Daniel Mack <zonque@gmail.com>
13517 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13518 S:      Maintained
13519 W:      http://www.native-instruments.com
13520 F:      sound/usb/caiaq/
13521
13522 NATSEMI ETHERNET DRIVER (DP8381x)
13523 S:      Orphan
13524 F:      drivers/net/ethernet/natsemi/natsemi.c
13525
13526 NCR 5380 SCSI DRIVERS
13527 M:      Finn Thain <fthain@linux-m68k.org>
13528 M:      Michael Schmitz <schmitzmic@gmail.com>
13529 L:      linux-scsi@vger.kernel.org
13530 S:      Maintained
13531 F:      Documentation/scsi/g_NCR5380.rst
13532 F:      drivers/scsi/NCR5380.*
13533 F:      drivers/scsi/arm/cumana_1.c
13534 F:      drivers/scsi/arm/oak.c
13535 F:      drivers/scsi/atari_scsi.*
13536 F:      drivers/scsi/dmx3191d.c
13537 F:      drivers/scsi/g_NCR5380.*
13538 F:      drivers/scsi/mac_scsi.*
13539 F:      drivers/scsi/sun3_scsi.*
13540 F:      drivers/scsi/sun3_scsi_vme.c
13541
13542 NCSI LIBRARY
13543 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13544 S:      Maintained
13545 F:      net/ncsi/
13546
13547 NCT6775 HARDWARE MONITOR DRIVER
13548 M:      Guenter Roeck <linux@roeck-us.net>
13549 L:      linux-hwmon@vger.kernel.org
13550 S:      Maintained
13551 F:      Documentation/hwmon/nct6775.rst
13552 F:      drivers/hwmon/nct6775.c
13553
13554 NETDEVSIM
13555 M:      Jakub Kicinski <kuba@kernel.org>
13556 S:      Maintained
13557 F:      drivers/net/netdevsim/*
13558
13559 NETEM NETWORK EMULATOR
13560 M:      Stephen Hemminger <stephen@networkplumber.org>
13561 L:      netdev@vger.kernel.org
13562 S:      Maintained
13563 F:      net/sched/sch_netem.c
13564
13565 NETERION 10GbE DRIVERS (s2io/vxge)
13566 M:      Jon Mason <jdmason@kudzu.us>
13567 L:      netdev@vger.kernel.org
13568 S:      Supported
13569 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13570 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13571 F:      drivers/net/ethernet/neterion/
13572
13573 NETFILTER
13574 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13575 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13576 M:      Florian Westphal <fw@strlen.de>
13577 L:      netfilter-devel@vger.kernel.org
13578 L:      coreteam@netfilter.org
13579 S:      Maintained
13580 W:      http://www.netfilter.org/
13581 W:      http://www.iptables.org/
13582 W:      http://www.nftables.org/
13583 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13584 C:      irc://irc.libera.chat/netfilter
13585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13587 F:      include/linux/netfilter*
13588 F:      include/linux/netfilter/
13589 F:      include/net/netfilter/
13590 F:      include/uapi/linux/netfilter*
13591 F:      include/uapi/linux/netfilter/
13592 F:      net/*/netfilter.c
13593 F:      net/*/netfilter/
13594 F:      net/bridge/br_netfilter*.c
13595 F:      net/netfilter/
13596
13597 NETROM NETWORK LAYER
13598 M:      Ralf Baechle <ralf@linux-mips.org>
13599 L:      linux-hams@vger.kernel.org
13600 S:      Maintained
13601 W:      http://www.linux-ax25.org/
13602 F:      include/net/netrom.h
13603 F:      include/uapi/linux/netrom.h
13604 F:      net/netrom/
13605
13606 NETRONIX EMBEDDED CONTROLLER
13607 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13608 S:      Maintained
13609 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13610 F:      drivers/mfd/ntxec.c
13611 F:      drivers/pwm/pwm-ntxec.c
13612 F:      drivers/rtc/rtc-ntxec.c
13613 F:      include/linux/mfd/ntxec.h
13614
13615 NETRONOME ETHERNET DRIVERS
13616 M:      Simon Horman <simon.horman@corigine.com>
13617 R:      Jakub Kicinski <kuba@kernel.org>
13618 L:      oss-drivers@corigine.com
13619 S:      Maintained
13620 F:      drivers/net/ethernet/netronome/
13621
13622 NETWORK BLOCK DEVICE (NBD)
13623 M:      Josef Bacik <josef@toxicpanda.com>
13624 L:      linux-block@vger.kernel.org
13625 L:      nbd@other.debian.org
13626 S:      Maintained
13627 F:      Documentation/admin-guide/blockdev/nbd.rst
13628 F:      drivers/block/nbd.c
13629 F:      include/trace/events/nbd.h
13630 F:      include/uapi/linux/nbd.h
13631
13632 NETWORK DROP MONITOR
13633 M:      Neil Horman <nhorman@tuxdriver.com>
13634 L:      netdev@vger.kernel.org
13635 S:      Maintained
13636 W:      https://fedorahosted.org/dropwatch/
13637 F:      include/uapi/linux/net_dropmon.h
13638 F:      net/core/drop_monitor.c
13639
13640 NETWORKING DRIVERS
13641 M:      "David S. Miller" <davem@davemloft.net>
13642 M:      Eric Dumazet <edumazet@google.com>
13643 M:      Jakub Kicinski <kuba@kernel.org>
13644 M:      Paolo Abeni <pabeni@redhat.com>
13645 L:      netdev@vger.kernel.org
13646 S:      Maintained
13647 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13650 F:      Documentation/devicetree/bindings/net/
13651 F:      drivers/connector/
13652 F:      drivers/net/
13653 F:      include/linux/etherdevice.h
13654 F:      include/linux/fcdevice.h
13655 F:      include/linux/fddidevice.h
13656 F:      include/linux/hippidevice.h
13657 F:      include/linux/if_*
13658 F:      include/linux/inetdevice.h
13659 F:      include/linux/netdevice.h
13660 F:      include/uapi/linux/if_*
13661 F:      include/uapi/linux/netdevice.h
13662
13663 NETWORKING DRIVERS (WIRELESS)
13664 M:      Kalle Valo <kvalo@kernel.org>
13665 L:      linux-wireless@vger.kernel.org
13666 S:      Maintained
13667 W:      https://wireless.wiki.kernel.org/
13668 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13671 F:      Documentation/devicetree/bindings/net/wireless/
13672 F:      drivers/net/wireless/
13673
13674 NETWORKING [DSA]
13675 M:      Andrew Lunn <andrew@lunn.ch>
13676 M:      Vivien Didelot <vivien.didelot@gmail.com>
13677 M:      Florian Fainelli <f.fainelli@gmail.com>
13678 M:      Vladimir Oltean <olteanv@gmail.com>
13679 S:      Maintained
13680 F:      Documentation/devicetree/bindings/net/dsa/
13681 F:      drivers/net/dsa/
13682 F:      include/linux/dsa/
13683 F:      include/linux/platform_data/dsa.h
13684 F:      include/net/dsa.h
13685 F:      net/dsa/
13686 F:      tools/testing/selftests/drivers/net/dsa/
13687
13688 NETWORKING [GENERAL]
13689 M:      "David S. Miller" <davem@davemloft.net>
13690 M:      Eric Dumazet <edumazet@google.com>
13691 M:      Jakub Kicinski <kuba@kernel.org>
13692 M:      Paolo Abeni <pabeni@redhat.com>
13693 L:      netdev@vger.kernel.org
13694 S:      Maintained
13695 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13696 B:      mailto:netdev@vger.kernel.org
13697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13699 F:      Documentation/networking/
13700 F:      Documentation/process/maintainer-netdev.rst
13701 F:      include/linux/in.h
13702 F:      include/linux/net.h
13703 F:      include/linux/netdevice.h
13704 F:      include/net/
13705 F:      include/uapi/linux/in.h
13706 F:      include/uapi/linux/net.h
13707 F:      include/uapi/linux/net_namespace.h
13708 F:      include/uapi/linux/netdevice.h
13709 F:      lib/net_utils.c
13710 F:      lib/random32.c
13711 F:      net/
13712 F:      tools/testing/selftests/net/
13713
13714 NETWORKING [IPSEC]
13715 M:      Steffen Klassert <steffen.klassert@secunet.com>
13716 M:      Herbert Xu <herbert@gondor.apana.org.au>
13717 M:      "David S. Miller" <davem@davemloft.net>
13718 L:      netdev@vger.kernel.org
13719 S:      Maintained
13720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13722 F:      include/net/xfrm.h
13723 F:      include/uapi/linux/xfrm.h
13724 F:      net/ipv4/ah4.c
13725 F:      net/ipv4/esp4*
13726 F:      net/ipv4/ip_vti.c
13727 F:      net/ipv4/ipcomp.c
13728 F:      net/ipv4/xfrm*
13729 F:      net/ipv6/ah6.c
13730 F:      net/ipv6/esp6*
13731 F:      net/ipv6/ip6_vti.c
13732 F:      net/ipv6/ipcomp6.c
13733 F:      net/ipv6/xfrm*
13734 F:      net/key/
13735 F:      net/xfrm/
13736 F:      tools/testing/selftests/net/ipsec.c
13737
13738 NETWORKING [IPv4/IPv6]
13739 M:      "David S. Miller" <davem@davemloft.net>
13740 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13741 M:      David Ahern <dsahern@kernel.org>
13742 L:      netdev@vger.kernel.org
13743 S:      Maintained
13744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13745 F:      arch/x86/net/*
13746 F:      include/linux/ip.h
13747 F:      include/linux/ipv6*
13748 F:      include/net/fib*
13749 F:      include/net/ip*
13750 F:      include/net/route.h
13751 F:      net/ipv4/
13752 F:      net/ipv6/
13753
13754 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13755 M:      Paul Moore <paul@paul-moore.com>
13756 L:      netdev@vger.kernel.org
13757 L:      linux-security-module@vger.kernel.org
13758 S:      Maintained
13759 W:      https://github.com/netlabel
13760 F:      Documentation/netlabel/
13761 F:      include/net/calipso.h
13762 F:      include/net/cipso_ipv4.h
13763 F:      include/net/netlabel.h
13764 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13765 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13766 F:      net/ipv4/cipso_ipv4.c
13767 F:      net/ipv6/calipso.c
13768 F:      net/netfilter/xt_CONNSECMARK.c
13769 F:      net/netfilter/xt_SECMARK.c
13770 F:      net/netlabel/
13771
13772 NETWORKING [MPTCP]
13773 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13774 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13775 L:      netdev@vger.kernel.org
13776 L:      mptcp@lists.linux.dev
13777 S:      Maintained
13778 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13779 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13780 F:      Documentation/networking/mptcp-sysctl.rst
13781 F:      include/net/mptcp.h
13782 F:      include/trace/events/mptcp.h
13783 F:      include/uapi/linux/mptcp.h
13784 F:      net/mptcp/
13785 F:      tools/testing/selftests/net/mptcp/
13786
13787 NETWORKING [TCP]
13788 M:      Eric Dumazet <edumazet@google.com>
13789 L:      netdev@vger.kernel.org
13790 S:      Maintained
13791 F:      include/linux/tcp.h
13792 F:      include/net/tcp.h
13793 F:      include/trace/events/tcp.h
13794 F:      include/uapi/linux/tcp.h
13795 F:      net/ipv4/syncookies.c
13796 F:      net/ipv4/tcp*.c
13797 F:      net/ipv6/syncookies.c
13798 F:      net/ipv6/tcp*.c
13799
13800 NETWORKING [TLS]
13801 M:      Boris Pismenny <borisp@nvidia.com>
13802 M:      John Fastabend <john.fastabend@gmail.com>
13803 M:      Daniel Borkmann <daniel@iogearbox.net>
13804 M:      Jakub Kicinski <kuba@kernel.org>
13805 L:      netdev@vger.kernel.org
13806 S:      Maintained
13807 F:      include/net/tls.h
13808 F:      include/uapi/linux/tls.h
13809 F:      net/tls/*
13810
13811 NETXEN (1/10) GbE SUPPORT
13812 M:      Manish Chopra <manishc@marvell.com>
13813 M:      Rahul Verma <rahulv@marvell.com>
13814 M:      GR-Linux-NIC-Dev@marvell.com
13815 L:      netdev@vger.kernel.org
13816 S:      Supported
13817 F:      drivers/net/ethernet/qlogic/netxen/
13818
13819 NET_FAILOVER MODULE
13820 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13821 L:      netdev@vger.kernel.org
13822 S:      Supported
13823 F:      Documentation/networking/net_failover.rst
13824 F:      drivers/net/net_failover.c
13825 F:      include/net/net_failover.h
13826
13827 NEXTHOP
13828 M:      David Ahern <dsahern@kernel.org>
13829 L:      netdev@vger.kernel.org
13830 S:      Maintained
13831 F:      include/net/netns/nexthop.h
13832 F:      include/net/nexthop.h
13833 F:      include/uapi/linux/nexthop.h
13834 F:      net/ipv4/nexthop.c
13835
13836 NFC SUBSYSTEM
13837 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13838 L:      linux-nfc@lists.01.org (subscribers-only)
13839 L:      netdev@vger.kernel.org
13840 S:      Maintained
13841 B:      mailto:linux-nfc@lists.01.org
13842 F:      Documentation/devicetree/bindings/net/nfc/
13843 F:      drivers/nfc/
13844 F:      include/linux/platform_data/nfcmrvl.h
13845 F:      include/net/nfc/
13846 F:      include/uapi/linux/nfc.h
13847 F:      net/nfc/
13848
13849 NFC VIRTUAL NCI DEVICE DRIVER
13850 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13851 L:      netdev@vger.kernel.org
13852 L:      linux-nfc@lists.01.org (subscribers-only)
13853 S:      Supported
13854 F:      drivers/nfc/virtual_ncidev.c
13855 F:      tools/testing/selftests/nci/
13856
13857 NFS, SUNRPC, AND LOCKD CLIENTS
13858 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13859 M:      Anna Schumaker <anna@kernel.org>
13860 L:      linux-nfs@vger.kernel.org
13861 S:      Maintained
13862 W:      http://client.linux-nfs.org
13863 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13864 F:      fs/lockd/
13865 F:      fs/nfs/
13866 F:      fs/nfs_common/
13867 F:      include/linux/lockd/
13868 F:      include/linux/nfs*
13869 F:      include/linux/sunrpc/
13870 F:      include/uapi/linux/nfs*
13871 F:      include/uapi/linux/sunrpc/
13872 F:      net/sunrpc/
13873 F:      Documentation/filesystems/nfs/
13874
13875 NILFS2 FILESYSTEM
13876 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13877 L:      linux-nilfs@vger.kernel.org
13878 S:      Supported
13879 W:      https://nilfs.sourceforge.io/
13880 W:      https://nilfs.osdn.jp/
13881 T:      git git://github.com/konis/nilfs2.git
13882 F:      Documentation/filesystems/nilfs2.rst
13883 F:      fs/nilfs2/
13884 F:      include/trace/events/nilfs2.h
13885 F:      include/uapi/linux/nilfs2_api.h
13886 F:      include/uapi/linux/nilfs2_ondisk.h
13887
13888 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13889 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13890 S:      Maintained
13891 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13892 F:      Documentation/scsi/NinjaSCSI.rst
13893 F:      drivers/scsi/pcmcia/nsp_*
13894
13895 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13896 M:      GOTO Masanori <gotom@debian.or.jp>
13897 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13898 S:      Maintained
13899 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13900 F:      Documentation/scsi/NinjaSCSI.rst
13901 F:      drivers/scsi/nsp32*
13902
13903 NINTENDO HID DRIVER
13904 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13905 L:      linux-input@vger.kernel.org
13906 S:      Maintained
13907 F:      drivers/hid/hid-nintendo*
13908
13909 NIOS2 ARCHITECTURE
13910 M:      Dinh Nguyen <dinguyen@kernel.org>
13911 S:      Maintained
13912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13913 F:      arch/nios2/
13914
13915 NITRO ENCLAVES (NE)
13916 M:      Andra Paraschiv <andraprs@amazon.com>
13917 M:      Alexandru Vasile <lexnv@amazon.com>
13918 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13919 L:      linux-kernel@vger.kernel.org
13920 S:      Supported
13921 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13922 F:      Documentation/virt/ne_overview.rst
13923 F:      drivers/virt/nitro_enclaves/
13924 F:      include/linux/nitro_enclaves.h
13925 F:      include/uapi/linux/nitro_enclaves.h
13926 F:      samples/nitro_enclaves/
13927
13928 NOHZ, DYNTICKS SUPPORT
13929 M:      Frederic Weisbecker <fweisbec@gmail.com>
13930 M:      Thomas Gleixner <tglx@linutronix.de>
13931 M:      Ingo Molnar <mingo@kernel.org>
13932 L:      linux-kernel@vger.kernel.org
13933 S:      Maintained
13934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13935 F:      include/linux/sched/nohz.h
13936 F:      include/linux/tick.h
13937 F:      kernel/time/tick*.*
13938
13939 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13940 M:      Pavel Machek <pavel@ucw.cz>
13941 M:      Sakari Ailus <sakari.ailus@iki.fi>
13942 L:      linux-media@vger.kernel.org
13943 S:      Maintained
13944 F:      drivers/media/i2c/ad5820.c
13945 F:      drivers/media/i2c/et8ek8
13946
13947 NOKIA N900 POWER SUPPLY DRIVERS
13948 R:      Pali Rohár <pali@kernel.org>
13949 F:      drivers/power/supply/bq2415x_charger.c
13950 F:      drivers/power/supply/bq27xxx_battery.c
13951 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13952 F:      drivers/power/supply/isp1704_charger.c
13953 F:      drivers/power/supply/rx51_battery.c
13954 F:      include/linux/power/bq2415x_charger.h
13955 F:      include/linux/power/bq27xxx_battery.h
13956
13957 NOLIBC HEADER FILE
13958 M:      Willy Tarreau <w@1wt.eu>
13959 S:      Maintained
13960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13961 F:      tools/include/nolibc/
13962
13963 NSDEPS
13964 M:      Matthias Maennich <maennich@google.com>
13965 S:      Maintained
13966 F:      Documentation/core-api/symbol-namespaces.rst
13967 F:      scripts/nsdeps
13968
13969 NTB AMD DRIVER
13970 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13971 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13972 L:      ntb@lists.linux.dev
13973 S:      Supported
13974 F:      drivers/ntb/hw/amd/
13975
13976 NTB DRIVER CORE
13977 M:      Jon Mason <jdmason@kudzu.us>
13978 M:      Dave Jiang <dave.jiang@intel.com>
13979 M:      Allen Hubbe <allenbh@gmail.com>
13980 L:      ntb@lists.linux.dev
13981 S:      Supported
13982 W:      https://github.com/jonmason/ntb/wiki
13983 T:      git git://github.com/jonmason/ntb.git
13984 F:      drivers/net/ntb_netdev.c
13985 F:      drivers/ntb/
13986 F:      include/linux/ntb.h
13987 F:      include/linux/ntb_transport.h
13988 F:      tools/testing/selftests/ntb/
13989
13990 NTB IDT DRIVER
13991 M:      Serge Semin <fancer.lancer@gmail.com>
13992 L:      ntb@lists.linux.dev
13993 S:      Supported
13994 F:      drivers/ntb/hw/idt/
13995
13996 NTB INTEL DRIVER
13997 M:      Dave Jiang <dave.jiang@intel.com>
13998 L:      ntb@lists.linux.dev
13999 S:      Supported
14000 W:      https://github.com/davejiang/linux/wiki
14001 T:      git https://github.com/davejiang/linux.git
14002 F:      drivers/ntb/hw/intel/
14003
14004 NTFS FILESYSTEM
14005 M:      Anton Altaparmakov <anton@tuxera.com>
14006 L:      linux-ntfs-dev@lists.sourceforge.net
14007 S:      Supported
14008 W:      http://www.tuxera.com/
14009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14010 F:      Documentation/filesystems/ntfs.rst
14011 F:      fs/ntfs/
14012
14013 NTFS3 FILESYSTEM
14014 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14015 L:      ntfs3@lists.linux.dev
14016 S:      Supported
14017 W:      http://www.paragon-software.com/
14018 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14019 F:      Documentation/filesystems/ntfs3.rst
14020 F:      fs/ntfs3/
14021
14022 NUBUS SUBSYSTEM
14023 M:      Finn Thain <fthain@linux-m68k.org>
14024 L:      linux-m68k@lists.linux-m68k.org
14025 S:      Maintained
14026 F:      arch/*/include/asm/nubus.h
14027 F:      drivers/nubus/
14028 F:      include/linux/nubus.h
14029 F:      include/uapi/linux/nubus.h
14030
14031 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14032 M:      Antonino Daplas <adaplas@gmail.com>
14033 L:      linux-fbdev@vger.kernel.org
14034 S:      Maintained
14035 F:      drivers/video/fbdev/nvidia/
14036 F:      drivers/video/fbdev/riva/
14037
14038 NVIDIA WMI EC BACKLIGHT DRIVER
14039 M:      Daniel Dadap <ddadap@nvidia.com>
14040 L:      platform-driver-x86@vger.kernel.org
14041 S:      Supported
14042 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14043
14044 NVM EXPRESS DRIVER
14045 M:      Keith Busch <kbusch@kernel.org>
14046 M:      Jens Axboe <axboe@fb.com>
14047 M:      Christoph Hellwig <hch@lst.de>
14048 M:      Sagi Grimberg <sagi@grimberg.me>
14049 L:      linux-nvme@lists.infradead.org
14050 S:      Supported
14051 W:      http://git.infradead.org/nvme.git
14052 T:      git://git.infradead.org/nvme.git
14053 F:      drivers/nvme/host/
14054 F:      include/linux/nvme.h
14055 F:      include/uapi/linux/nvme_ioctl.h
14056
14057 NVM EXPRESS FC TRANSPORT DRIVERS
14058 M:      James Smart <james.smart@broadcom.com>
14059 L:      linux-nvme@lists.infradead.org
14060 S:      Supported
14061 F:      drivers/nvme/host/fc.c
14062 F:      drivers/nvme/target/fc.c
14063 F:      drivers/nvme/target/fcloop.c
14064 F:      include/linux/nvme-fc-driver.h
14065 F:      include/linux/nvme-fc.h
14066
14067 NVM EXPRESS TARGET DRIVER
14068 M:      Christoph Hellwig <hch@lst.de>
14069 M:      Sagi Grimberg <sagi@grimberg.me>
14070 M:      Chaitanya Kulkarni <kch@nvidia.com>
14071 L:      linux-nvme@lists.infradead.org
14072 S:      Supported
14073 W:      http://git.infradead.org/nvme.git
14074 T:      git://git.infradead.org/nvme.git
14075 F:      drivers/nvme/target/
14076
14077 NVMEM FRAMEWORK
14078 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14079 S:      Maintained
14080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14081 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14082 F:      Documentation/devicetree/bindings/nvmem/
14083 F:      drivers/nvmem/
14084 F:      include/linux/nvmem-consumer.h
14085 F:      include/linux/nvmem-provider.h
14086
14087 NXP C45 TJA11XX PHY DRIVER
14088 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14089 L:      netdev@vger.kernel.org
14090 S:      Maintained
14091 F:      drivers/net/phy/nxp-c45-tja11xx.c
14092
14093 NXP FSPI DRIVER
14094 M:      Ashish Kumar <ashish.kumar@nxp.com>
14095 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14096 L:      linux-spi@vger.kernel.org
14097 S:      Maintained
14098 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14099 F:      drivers/spi/spi-nxp-fspi.c
14100
14101 NXP FXAS21002C DRIVER
14102 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14103 L:      linux-iio@vger.kernel.org
14104 S:      Maintained
14105 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14106 F:      drivers/iio/gyro/fxas21002c.h
14107 F:      drivers/iio/gyro/fxas21002c_core.c
14108 F:      drivers/iio/gyro/fxas21002c_i2c.c
14109 F:      drivers/iio/gyro/fxas21002c_spi.c
14110
14111 NXP i.MX CLOCK DRIVERS
14112 M:      Abel Vesa <abel.vesa@nxp.com>
14113 L:      linux-clk@vger.kernel.org
14114 L:      linux-imx@nxp.com
14115 S:      Maintained
14116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14117 F:      Documentation/devicetree/bindings/clock/imx*
14118 F:      drivers/clk/imx/
14119 F:      include/dt-bindings/clock/imx*
14120
14121 NXP i.MX 8MQ DCSS DRIVER
14122 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14123 R:      Lucas Stach <l.stach@pengutronix.de>
14124 L:      dri-devel@lists.freedesktop.org
14125 S:      Maintained
14126 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14127 F:      drivers/gpu/drm/imx/dcss/
14128
14129 NXP i.MX 8QXP ADC DRIVER
14130 M:      Cai Huoqing <cai.huoqing@linux.dev>
14131 M:      Haibo Chen <haibo.chen@nxp.com>
14132 L:      linux-imx@nxp.com
14133 L:      linux-iio@vger.kernel.org
14134 S:      Maintained
14135 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14136 F:      drivers/iio/adc/imx8qxp-adc.c
14137
14138 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14139 M:      Haibo Chen <haibo.chen@nxp.com>
14140 L:      linux-iio@vger.kernel.org
14141 L:      linux-imx@nxp.com
14142 S:      Maintained
14143 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14144 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14145 F:      drivers/iio/adc/imx7d_adc.c
14146 F:      drivers/iio/adc/vf610_adc.c
14147
14148 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14149 M:      Jagan Teki <jagan@amarulasolutions.com>
14150 S:      Maintained
14151 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14152 F:      drivers/regulator/pf8x00-regulator.c
14153
14154 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14155 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14156 L:      linux-kernel@vger.kernel.org
14157 S:      Maintained
14158 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14159 F:      drivers/extcon/extcon-ptn5150.c
14160
14161 NXP SGTL5000 DRIVER
14162 M:      Fabio Estevam <festevam@gmail.com>
14163 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14164 S:      Maintained
14165 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14166 F:      sound/soc/codecs/sgtl5000*
14167
14168 NXP SJA1105 ETHERNET SWITCH DRIVER
14169 M:      Vladimir Oltean <olteanv@gmail.com>
14170 L:      linux-kernel@vger.kernel.org
14171 S:      Maintained
14172 F:      drivers/net/dsa/sja1105
14173 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14174
14175 NXP TDA998X DRM DRIVER
14176 M:      Russell King <linux@armlinux.org.uk>
14177 S:      Maintained
14178 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14179 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14180 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14181 F:      include/drm/i2c/tda998x.h
14182 F:      include/dt-bindings/display/tda998x.h
14183 K:      "nxp,tda998x"
14184
14185 NXP TFA9879 DRIVER
14186 M:      Peter Rosin <peda@axentia.se>
14187 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14188 S:      Maintained
14189 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14190 F:      sound/soc/codecs/tfa9879*
14191
14192 NXP/Goodix TFA989X (TFA1) DRIVER
14193 M:      Stephan Gerhold <stephan@gerhold.net>
14194 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14195 S:      Maintained
14196 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14197 F:      sound/soc/codecs/tfa989x.c
14198
14199 NXP-NCI NFC DRIVER
14200 R:      Charles Gorand <charles.gorand@effinnov.com>
14201 L:      linux-nfc@lists.01.org (subscribers-only)
14202 S:      Supported
14203 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14204 F:      drivers/nfc/nxp-nci
14205
14206 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14207 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14208 R:      NXP Linux Team <linux-imx@nxp.com>
14209 L:      linux-media@vger.kernel.org
14210 S:      Maintained
14211 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14212 F:      drivers/media/platform/imx-jpeg
14213
14214 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14215 M:      Jonas Malaco <jonas@protocubo.io>
14216 L:      linux-hwmon@vger.kernel.org
14217 S:      Maintained
14218 F:      Documentation/hwmon/nzxt-kraken2.rst
14219 F:      drivers/hwmon/nzxt-kraken2.c
14220
14221 NZXT-SMART2 HARDWARE MONITORING DRIVER
14222 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14223 L:      linux-hwmon@vger.kernel.org
14224 S:      Maintained
14225 F:      Documentation/hwmon/nzxt-smart2.rst
14226 F:      drivers/hwmon/nzxt-smart2.c
14227
14228 OBJAGG
14229 M:      Jiri Pirko <jiri@nvidia.com>
14230 L:      netdev@vger.kernel.org
14231 S:      Supported
14232 F:      include/linux/objagg.h
14233 F:      lib/objagg.c
14234 F:      lib/test_objagg.c
14235
14236 OBJTOOL
14237 M:      Josh Poimboeuf <jpoimboe@redhat.com>
14238 M:      Peter Zijlstra <peterz@infradead.org>
14239 S:      Supported
14240 F:      tools/objtool/
14241 F:      include/linux/objtool.h
14242
14243 OCELOT ETHERNET SWITCH DRIVER
14244 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14245 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14246 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14247 M:      UNGLinuxDriver@microchip.com
14248 L:      netdev@vger.kernel.org
14249 S:      Supported
14250 F:      drivers/net/dsa/ocelot/*
14251 F:      drivers/net/ethernet/mscc/
14252 F:      include/soc/mscc/ocelot*
14253 F:      net/dsa/tag_ocelot.c
14254 F:      net/dsa/tag_ocelot_8021q.c
14255 F:      tools/testing/selftests/drivers/net/ocelot/*
14256
14257 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14258 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14259 M:      Andrew Donnellan <ajd@linux.ibm.com>
14260 L:      linuxppc-dev@lists.ozlabs.org
14261 S:      Supported
14262 F:      Documentation/userspace-api/accelerators/ocxl.rst
14263 F:      arch/powerpc/include/asm/pnv-ocxl.h
14264 F:      arch/powerpc/platforms/powernv/ocxl.c
14265 F:      drivers/misc/ocxl/
14266 F:      include/misc/ocxl*
14267 F:      include/uapi/misc/ocxl.h
14268
14269 OMAP AUDIO SUPPORT
14270 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14271 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14272 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14273 L:      linux-omap@vger.kernel.org
14274 S:      Maintained
14275 F:      sound/soc/ti/n810.c
14276 F:      sound/soc/ti/omap*
14277 F:      sound/soc/ti/rx51.c
14278 F:      sound/soc/ti/sdma-pcm.*
14279
14280 OMAP CLOCK FRAMEWORK SUPPORT
14281 M:      Paul Walmsley <paul@pwsan.com>
14282 L:      linux-omap@vger.kernel.org
14283 S:      Maintained
14284 F:      arch/arm/*omap*/*clock*
14285
14286 OMAP DEVICE TREE SUPPORT
14287 M:      Benoît Cousson <bcousson@baylibre.com>
14288 M:      Tony Lindgren <tony@atomide.com>
14289 L:      linux-omap@vger.kernel.org
14290 L:      devicetree@vger.kernel.org
14291 S:      Maintained
14292 F:      arch/arm/boot/dts/*am3*
14293 F:      arch/arm/boot/dts/*am4*
14294 F:      arch/arm/boot/dts/*am5*
14295 F:      arch/arm/boot/dts/*dra7*
14296 F:      arch/arm/boot/dts/*omap*
14297 F:      arch/arm/boot/dts/logicpd-som-lv*
14298 F:      arch/arm/boot/dts/logicpd-torpedo*
14299
14300 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14301 L:      linux-omap@vger.kernel.org
14302 L:      linux-fbdev@vger.kernel.org
14303 S:      Orphan
14304 F:      Documentation/arm/omap/dss.rst
14305 F:      drivers/video/fbdev/omap2/
14306
14307 OMAP FRAMEBUFFER SUPPORT
14308 L:      linux-fbdev@vger.kernel.org
14309 L:      linux-omap@vger.kernel.org
14310 S:      Orphan
14311 F:      drivers/video/fbdev/omap/
14312
14313 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14314 M:      Roger Quadros <rogerq@kernel.org>
14315 M:      Tony Lindgren <tony@atomide.com>
14316 L:      linux-omap@vger.kernel.org
14317 S:      Maintained
14318 F:      arch/arm/mach-omap2/*gpmc*
14319 F:      drivers/memory/omap-gpmc.c
14320
14321 OMAP GPIO DRIVER
14322 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14323 M:      Santosh Shilimkar <ssantosh@kernel.org>
14324 M:      Kevin Hilman <khilman@kernel.org>
14325 L:      linux-omap@vger.kernel.org
14326 S:      Maintained
14327 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14328 F:      drivers/gpio/gpio-omap.c
14329
14330 OMAP HARDWARE SPINLOCK SUPPORT
14331 M:      Ohad Ben-Cohen <ohad@wizery.com>
14332 L:      linux-omap@vger.kernel.org
14333 S:      Maintained
14334 F:      drivers/hwspinlock/omap_hwspinlock.c
14335
14336 OMAP HS MMC SUPPORT
14337 L:      linux-mmc@vger.kernel.org
14338 L:      linux-omap@vger.kernel.org
14339 S:      Orphan
14340 F:      drivers/mmc/host/omap_hsmmc.c
14341
14342 OMAP HWMOD DATA
14343 M:      Paul Walmsley <paul@pwsan.com>
14344 L:      linux-omap@vger.kernel.org
14345 S:      Maintained
14346 F:      arch/arm/mach-omap2/omap_hwmod*data*
14347
14348 OMAP HWMOD SUPPORT
14349 M:      Benoît Cousson <bcousson@baylibre.com>
14350 M:      Paul Walmsley <paul@pwsan.com>
14351 L:      linux-omap@vger.kernel.org
14352 S:      Maintained
14353 F:      arch/arm/mach-omap2/omap_hwmod.*
14354
14355 OMAP I2C DRIVER
14356 M:      Vignesh R <vigneshr@ti.com>
14357 L:      linux-omap@vger.kernel.org
14358 L:      linux-i2c@vger.kernel.org
14359 S:      Maintained
14360 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14361 F:      drivers/i2c/busses/i2c-omap.c
14362
14363 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14364 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14365 L:      linux-media@vger.kernel.org
14366 S:      Maintained
14367 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14368 F:      drivers/media/platform/ti/omap3isp/
14369 F:      drivers/staging/media/omap4iss/
14370
14371 OMAP MMC SUPPORT
14372 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14373 L:      linux-omap@vger.kernel.org
14374 S:      Odd Fixes
14375 F:      drivers/mmc/host/omap.c
14376
14377 OMAP POWER MANAGEMENT SUPPORT
14378 M:      Kevin Hilman <khilman@kernel.org>
14379 L:      linux-omap@vger.kernel.org
14380 S:      Maintained
14381 F:      arch/arm/*omap*/*pm*
14382 F:      drivers/cpufreq/omap-cpufreq.c
14383
14384 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14385 M:      Rajendra Nayak <rnayak@codeaurora.org>
14386 M:      Paul Walmsley <paul@pwsan.com>
14387 L:      linux-omap@vger.kernel.org
14388 S:      Maintained
14389 F:      arch/arm/mach-omap2/prm*
14390
14391 OMAP RANDOM NUMBER GENERATOR SUPPORT
14392 M:      Deepak Saxena <dsaxena@plexity.net>
14393 S:      Maintained
14394 F:      drivers/char/hw_random/omap-rng.c
14395
14396 OMAP USB SUPPORT
14397 L:      linux-usb@vger.kernel.org
14398 L:      linux-omap@vger.kernel.org
14399 S:      Orphan
14400 F:      arch/arm/*omap*/usb*
14401 F:      drivers/usb/*/*omap*
14402
14403 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14404 M:      Mark Jackson <mpfj@newflow.co.uk>
14405 L:      linux-omap@vger.kernel.org
14406 S:      Maintained
14407 F:      arch/arm/boot/dts/am335x-nano.dts
14408
14409 OMAP1 SUPPORT
14410 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14411 M:      Tony Lindgren <tony@atomide.com>
14412 L:      linux-omap@vger.kernel.org
14413 S:      Maintained
14414 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14416 F:      arch/arm/configs/omap1_defconfig
14417 F:      arch/arm/mach-omap1/
14418 F:      arch/arm/plat-omap/
14419 F:      drivers/i2c/busses/i2c-omap.c
14420 F:      include/linux/platform_data/ams-delta-fiq.h
14421 F:      include/linux/platform_data/i2c-omap.h
14422
14423 OMAP2+ SUPPORT
14424 M:      Tony Lindgren <tony@atomide.com>
14425 L:      linux-omap@vger.kernel.org
14426 S:      Maintained
14427 W:      http://www.muru.com/linux/omap/
14428 W:      http://linux.omap.com/
14429 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14431 F:      arch/arm/configs/omap2plus_defconfig
14432 F:      arch/arm/mach-omap2/
14433 F:      arch/arm/plat-omap/
14434 F:      drivers/bus/ti-sysc.c
14435 F:      drivers/i2c/busses/i2c-omap.c
14436 F:      drivers/irqchip/irq-omap-intc.c
14437 F:      drivers/mfd/*omap*.c
14438 F:      drivers/mfd/menelaus.c
14439 F:      drivers/mfd/palmas.c
14440 F:      drivers/mfd/tps65217.c
14441 F:      drivers/mfd/tps65218.c
14442 F:      drivers/mfd/tps65910.c
14443 F:      drivers/mfd/twl-core.[ch]
14444 F:      drivers/mfd/twl4030*.c
14445 F:      drivers/mfd/twl6030*.c
14446 F:      drivers/mfd/twl6040*.c
14447 F:      drivers/regulator/palmas-regulator*.c
14448 F:      drivers/regulator/pbias-regulator.c
14449 F:      drivers/regulator/tps65217-regulator.c
14450 F:      drivers/regulator/tps65218-regulator.c
14451 F:      drivers/regulator/tps65910-regulator.c
14452 F:      drivers/regulator/twl-regulator.c
14453 F:      drivers/regulator/twl6030-regulator.c
14454 F:      include/linux/platform_data/i2c-omap.h
14455 F:      include/linux/platform_data/ti-sysc.h
14456
14457 OMFS FILESYSTEM
14458 M:      Bob Copeland <me@bobcopeland.com>
14459 L:      linux-karma-devel@lists.sourceforge.net
14460 S:      Maintained
14461 F:      Documentation/filesystems/omfs.rst
14462 F:      fs/omfs/
14463
14464 OMNIKEY CARDMAN 4000 DRIVER
14465 M:      Harald Welte <laforge@gnumonks.org>
14466 S:      Maintained
14467 F:      drivers/char/pcmcia/cm4000_cs.c
14468 F:      include/linux/cm4000_cs.h
14469 F:      include/uapi/linux/cm4000_cs.h
14470
14471 OMNIKEY CARDMAN 4040 DRIVER
14472 M:      Harald Welte <laforge@gnumonks.org>
14473 S:      Maintained
14474 F:      drivers/char/pcmcia/cm4040_cs.*
14475
14476 OMNIVISION OG01A1B SENSOR DRIVER
14477 M:      Shawn Tu <shawnx.tu@intel.com>
14478 L:      linux-media@vger.kernel.org
14479 S:      Maintained
14480 F:      drivers/media/i2c/og01a1b.c
14481
14482 OMNIVISION OV02A10 SENSOR DRIVER
14483 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14484 L:      linux-media@vger.kernel.org
14485 S:      Maintained
14486 T:      git git://linuxtv.org/media_tree.git
14487 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14488 F:      drivers/media/i2c/ov02a10.c
14489
14490 OMNIVISION OV08D10 SENSOR DRIVER
14491 M:      Jimmy Su <jimmy.su@intel.com>
14492 L:      linux-media@vger.kernel.org
14493 S:      Maintained
14494 T:      git git://linuxtv.org/media_tree.git
14495 F:      drivers/media/i2c/ov08d10.c
14496
14497 OMNIVISION OV13858 SENSOR DRIVER
14498 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14499 L:      linux-media@vger.kernel.org
14500 S:      Maintained
14501 T:      git git://linuxtv.org/media_tree.git
14502 F:      drivers/media/i2c/ov13858.c
14503
14504 OMNIVISION OV13B10 SENSOR DRIVER
14505 M:      Arec Kao <arec.kao@intel.com>
14506 L:      linux-media@vger.kernel.org
14507 S:      Maintained
14508 T:      git git://linuxtv.org/media_tree.git
14509 F:      drivers/media/i2c/ov13b10.c
14510
14511 OMNIVISION OV2680 SENSOR DRIVER
14512 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14513 L:      linux-media@vger.kernel.org
14514 S:      Maintained
14515 T:      git git://linuxtv.org/media_tree.git
14516 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14517 F:      drivers/media/i2c/ov2680.c
14518
14519 OMNIVISION OV2685 SENSOR DRIVER
14520 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14521 L:      linux-media@vger.kernel.org
14522 S:      Maintained
14523 T:      git git://linuxtv.org/media_tree.git
14524 F:      drivers/media/i2c/ov2685.c
14525
14526 OMNIVISION OV2740 SENSOR DRIVER
14527 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14528 R:      Shawn Tu <shawnx.tu@intel.com>
14529 R:      Bingbu Cao <bingbu.cao@intel.com>
14530 L:      linux-media@vger.kernel.org
14531 S:      Maintained
14532 T:      git git://linuxtv.org/media_tree.git
14533 F:      drivers/media/i2c/ov2740.c
14534
14535 OMNIVISION OV5640 SENSOR DRIVER
14536 M:      Steve Longerbeam <slongerbeam@gmail.com>
14537 L:      linux-media@vger.kernel.org
14538 S:      Maintained
14539 T:      git git://linuxtv.org/media_tree.git
14540 F:      drivers/media/i2c/ov5640.c
14541
14542 OMNIVISION OV5647 SENSOR DRIVER
14543 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14544 M:      Jacopo Mondi <jacopo@jmondi.org>
14545 L:      linux-media@vger.kernel.org
14546 S:      Maintained
14547 T:      git git://linuxtv.org/media_tree.git
14548 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14549 F:      drivers/media/i2c/ov5647.c
14550
14551 OMNIVISION OV5670 SENSOR DRIVER
14552 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14553 L:      linux-media@vger.kernel.org
14554 S:      Maintained
14555 T:      git git://linuxtv.org/media_tree.git
14556 F:      drivers/media/i2c/ov5670.c
14557
14558 OMNIVISION OV5675 SENSOR DRIVER
14559 M:      Shawn Tu <shawnx.tu@intel.com>
14560 L:      linux-media@vger.kernel.org
14561 S:      Maintained
14562 T:      git git://linuxtv.org/media_tree.git
14563 F:      drivers/media/i2c/ov5675.c
14564
14565 OMNIVISION OV5693 SENSOR DRIVER
14566 M:      Daniel Scally <djrscally@gmail.com>
14567 L:      linux-media@vger.kernel.org
14568 S:      Maintained
14569 T:      git git://linuxtv.org/media_tree.git
14570 F:      drivers/media/i2c/ov5693.c
14571
14572 OMNIVISION OV5695 SENSOR DRIVER
14573 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14574 L:      linux-media@vger.kernel.org
14575 S:      Maintained
14576 T:      git git://linuxtv.org/media_tree.git
14577 F:      drivers/media/i2c/ov5695.c
14578
14579 OMNIVISION OV7670 SENSOR DRIVER
14580 L:      linux-media@vger.kernel.org
14581 S:      Orphan
14582 T:      git git://linuxtv.org/media_tree.git
14583 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14584 F:      drivers/media/i2c/ov7670.c
14585
14586 OMNIVISION OV772x SENSOR DRIVER
14587 M:      Jacopo Mondi <jacopo@jmondi.org>
14588 L:      linux-media@vger.kernel.org
14589 S:      Odd fixes
14590 T:      git git://linuxtv.org/media_tree.git
14591 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14592 F:      drivers/media/i2c/ov772x.c
14593 F:      include/media/i2c/ov772x.h
14594
14595 OMNIVISION OV7740 SENSOR DRIVER
14596 M:      Wenyou Yang <wenyou.yang@microchip.com>
14597 L:      linux-media@vger.kernel.org
14598 S:      Maintained
14599 T:      git git://linuxtv.org/media_tree.git
14600 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14601 F:      drivers/media/i2c/ov7740.c
14602
14603 OMNIVISION OV8856 SENSOR DRIVER
14604 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14605 L:      linux-media@vger.kernel.org
14606 S:      Maintained
14607 T:      git git://linuxtv.org/media_tree.git
14608 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14609 F:      drivers/media/i2c/ov8856.c
14610
14611 OMNIVISION OV9282 SENSOR DRIVER
14612 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14613 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14614 L:      linux-media@vger.kernel.org
14615 S:      Maintained
14616 T:      git git://linuxtv.org/media_tree.git
14617 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14618 F:      drivers/media/i2c/ov9282.c
14619
14620 OMNIVISION OV9640 SENSOR DRIVER
14621 M:      Petr Cvek <petrcvekcz@gmail.com>
14622 L:      linux-media@vger.kernel.org
14623 S:      Maintained
14624 F:      drivers/media/i2c/ov9640.*
14625
14626 OMNIVISION OV9650 SENSOR DRIVER
14627 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14628 R:      Akinobu Mita <akinobu.mita@gmail.com>
14629 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14630 L:      linux-media@vger.kernel.org
14631 S:      Maintained
14632 T:      git git://linuxtv.org/media_tree.git
14633 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14634 F:      drivers/media/i2c/ov9650.c
14635
14636 OMNIVISION OV9734 SENSOR DRIVER
14637 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14638 R:      Bingbu Cao <bingbu.cao@intel.com>
14639 L:      linux-media@vger.kernel.org
14640 S:      Maintained
14641 T:      git git://linuxtv.org/media_tree.git
14642 F:      drivers/media/i2c/ov9734.c
14643
14644 ONENAND FLASH DRIVER
14645 M:      Kyungmin Park <kyungmin.park@samsung.com>
14646 L:      linux-mtd@lists.infradead.org
14647 S:      Maintained
14648 F:      drivers/mtd/nand/onenand/
14649 F:      include/linux/mtd/onenand*.h
14650
14651 ONION OMEGA2+ BOARD
14652 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14653 L:      linux-mips@vger.kernel.org
14654 S:      Maintained
14655 F:      arch/mips/boot/dts/ralink/omega2p.dts
14656
14657 OP-TEE DRIVER
14658 M:      Jens Wiklander <jens.wiklander@linaro.org>
14659 L:      op-tee@lists.trustedfirmware.org
14660 S:      Maintained
14661 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14662 F:      drivers/tee/optee/
14663
14664 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14665 M:      Sumit Garg <sumit.garg@linaro.org>
14666 L:      op-tee@lists.trustedfirmware.org
14667 S:      Maintained
14668 F:      drivers/char/hw_random/optee-rng.c
14669
14670 OP-TEE RTC DRIVER
14671 M:      Clément Léger <clement.leger@bootlin.com>
14672 L:      linux-rtc@vger.kernel.org
14673 S:      Maintained
14674 F:      drivers/rtc/rtc-optee.c
14675
14676 OPA-VNIC DRIVER
14677 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14678 L:      linux-rdma@vger.kernel.org
14679 S:      Supported
14680 F:      drivers/infiniband/ulp/opa_vnic
14681
14682 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14683 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14684 M:      Frank Rowand <frowand.list@gmail.com>
14685 L:      devicetree@vger.kernel.org
14686 S:      Maintained
14687 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14688 F:      Documentation/devicetree/overlay-notes.rst
14689 F:      drivers/of/overlay.c
14690 F:      drivers/of/resolver.c
14691 K:      of_overlay_notifier_
14692
14693 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14694 M:      Rob Herring <robh+dt@kernel.org>
14695 M:      Frank Rowand <frowand.list@gmail.com>
14696 L:      devicetree@vger.kernel.org
14697 S:      Maintained
14698 C:      irc://irc.libera.chat/devicetree
14699 W:      http://www.devicetree.org/
14700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14701 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14702 F:      drivers/of/
14703 F:      include/linux/of*.h
14704 F:      scripts/dtc/
14705
14706 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14707 M:      Rob Herring <robh+dt@kernel.org>
14708 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
14709 L:      devicetree@vger.kernel.org
14710 S:      Maintained
14711 C:      irc://irc.libera.chat/devicetree
14712 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14714 F:      Documentation/devicetree/
14715 F:      arch/*/boot/dts/
14716 F:      include/dt-bindings/
14717
14718 OPENCOMPUTE PTP CLOCK DRIVER
14719 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14720 L:      netdev@vger.kernel.org
14721 S:      Maintained
14722 F:      drivers/ptp/ptp_ocp.c
14723
14724 OPENCORES I2C BUS DRIVER
14725 M:      Peter Korsgaard <peter@korsgaard.com>
14726 M:      Andrew Lunn <andrew@lunn.ch>
14727 L:      linux-i2c@vger.kernel.org
14728 S:      Maintained
14729 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14730 F:      Documentation/i2c/busses/i2c-ocores.rst
14731 F:      drivers/i2c/busses/i2c-ocores.c
14732 F:      include/linux/platform_data/i2c-ocores.h
14733
14734 OPENRISC ARCHITECTURE
14735 M:      Jonas Bonn <jonas@southpole.se>
14736 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14737 M:      Stafford Horne <shorne@gmail.com>
14738 L:      openrisc@lists.librecores.org
14739 S:      Maintained
14740 W:      http://openrisc.io
14741 T:      git git://github.com/openrisc/linux.git
14742 F:      Documentation/devicetree/bindings/openrisc/
14743 F:      Documentation/openrisc/
14744 F:      arch/openrisc/
14745 F:      drivers/irqchip/irq-ompic.c
14746 F:      drivers/irqchip/irq-or1k-*
14747
14748 OPENVSWITCH
14749 M:      Pravin B Shelar <pshelar@ovn.org>
14750 L:      netdev@vger.kernel.org
14751 L:      dev@openvswitch.org
14752 S:      Maintained
14753 W:      http://openvswitch.org
14754 F:      include/uapi/linux/openvswitch.h
14755 F:      net/openvswitch/
14756
14757 OPERATING PERFORMANCE POINTS (OPP)
14758 M:      Viresh Kumar <vireshk@kernel.org>
14759 M:      Nishanth Menon <nm@ti.com>
14760 M:      Stephen Boyd <sboyd@kernel.org>
14761 L:      linux-pm@vger.kernel.org
14762 S:      Maintained
14763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14764 F:      Documentation/devicetree/bindings/opp/
14765 F:      Documentation/power/opp.rst
14766 F:      drivers/opp/
14767 F:      include/linux/pm_opp.h
14768
14769 OPL4 DRIVER
14770 M:      Clemens Ladisch <clemens@ladisch.de>
14771 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14772 S:      Maintained
14773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14774 F:      sound/drivers/opl4/
14775
14776 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14777 M:      Mark Fasheh <mark@fasheh.com>
14778 M:      Joel Becker <jlbec@evilplan.org>
14779 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14780 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14781 S:      Supported
14782 W:      http://ocfs2.wiki.kernel.org
14783 F:      Documentation/filesystems/dlmfs.rst
14784 F:      Documentation/filesystems/ocfs2.rst
14785 F:      fs/ocfs2/
14786
14787 ORANGEFS FILESYSTEM
14788 M:      Mike Marshall <hubcap@omnibond.com>
14789 R:      Martin Brandenburg <martin@omnibond.com>
14790 L:      devel@lists.orangefs.org
14791 S:      Supported
14792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14793 F:      Documentation/filesystems/orangefs.rst
14794 F:      fs/orangefs/
14795
14796 ORINOCO DRIVER
14797 L:      linux-wireless@vger.kernel.org
14798 S:      Orphan
14799 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14800 W:      http://www.nongnu.org/orinoco/
14801 F:      drivers/net/wireless/intersil/orinoco/
14802
14803 OV2659 OMNIVISION SENSOR DRIVER
14804 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14805 L:      linux-media@vger.kernel.org
14806 S:      Maintained
14807 W:      https://linuxtv.org
14808 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14809 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14810 F:      drivers/media/i2c/ov2659.c
14811 F:      include/media/i2c/ov2659.h
14812
14813 OVERLAY FILESYSTEM
14814 M:      Miklos Szeredi <miklos@szeredi.hu>
14815 L:      linux-unionfs@vger.kernel.org
14816 S:      Supported
14817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14818 F:      Documentation/filesystems/overlayfs.rst
14819 F:      fs/overlayfs/
14820
14821 P54 WIRELESS DRIVER
14822 M:      Christian Lamparter <chunkeey@googlemail.com>
14823 L:      linux-wireless@vger.kernel.org
14824 S:      Maintained
14825 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14826 F:      drivers/net/wireless/intersil/p54/
14827
14828 PACKING
14829 M:      Vladimir Oltean <olteanv@gmail.com>
14830 L:      netdev@vger.kernel.org
14831 S:      Supported
14832 F:      Documentation/core-api/packing.rst
14833 F:      include/linux/packing.h
14834 F:      lib/packing.c
14835
14836 PADATA PARALLEL EXECUTION MECHANISM
14837 M:      Steffen Klassert <steffen.klassert@secunet.com>
14838 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14839 L:      linux-crypto@vger.kernel.org
14840 L:      linux-kernel@vger.kernel.org
14841 S:      Maintained
14842 F:      Documentation/core-api/padata.rst
14843 F:      include/linux/padata.h
14844 F:      kernel/padata.c
14845
14846 PAGE POOL
14847 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14848 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14849 L:      netdev@vger.kernel.org
14850 S:      Supported
14851 F:      Documentation/networking/page_pool.rst
14852 F:      include/net/page_pool.h
14853 F:      include/trace/events/page_pool.h
14854 F:      net/core/page_pool.c
14855
14856 PAGE TABLE CHECK
14857 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
14858 M:      Andrew Morton <akpm@linux-foundation.org>
14859 L:      linux-mm@kvack.org
14860 S:      Maintained
14861 F:      Documentation/vm/page_table_check.rst
14862 F:      include/linux/page_table_check.h
14863 F:      mm/page_table_check.c
14864
14865 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14866 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14867 L:      platform-driver-x86@vger.kernel.org
14868 S:      Maintained
14869 F:      drivers/platform/x86/panasonic-laptop.c
14870
14871 PARALLAX PING IIO SENSOR DRIVER
14872 M:      Andreas Klinger <ak@it-klinger.de>
14873 L:      linux-iio@vger.kernel.org
14874 S:      Maintained
14875 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14876 F:      drivers/iio/proximity/ping.c
14877
14878 PARALLEL LCD/KEYPAD PANEL DRIVER
14879 M:      Willy Tarreau <willy@haproxy.com>
14880 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14881 S:      Odd Fixes
14882 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14883 F:      drivers/auxdisplay/panel.c
14884
14885 PARALLEL PORT SUBSYSTEM
14886 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14887 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14888 L:      linux-parport@lists.infradead.org (subscribers-only)
14889 S:      Maintained
14890 F:      Documentation/driver-api/parport*.rst
14891 F:      drivers/char/ppdev.c
14892 F:      drivers/parport/
14893 F:      include/linux/parport*.h
14894 F:      include/uapi/linux/ppdev.h
14895
14896 PARAVIRT_OPS INTERFACE
14897 M:      Juergen Gross <jgross@suse.com>
14898 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
14899 R:      Alexey Makhalov <amakhalov@vmware.com>
14900 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
14901 L:      virtualization@lists.linux-foundation.org
14902 L:      x86@kernel.org
14903 S:      Supported
14904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14905 F:      Documentation/virt/paravirt_ops.rst
14906 F:      arch/*/include/asm/paravirt*.h
14907 F:      arch/*/kernel/paravirt*
14908 F:      include/linux/hypervisor.h
14909
14910 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14911 M:      Tim Waugh <tim@cyberelk.net>
14912 L:      linux-parport@lists.infradead.org (subscribers-only)
14913 S:      Maintained
14914 F:      Documentation/admin-guide/blockdev/paride.rst
14915 F:      drivers/block/paride/
14916
14917 PARISC ARCHITECTURE
14918 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14919 M:      Helge Deller <deller@gmx.de>
14920 L:      linux-parisc@vger.kernel.org
14921 S:      Maintained
14922 W:      https://parisc.wiki.kernel.org
14923 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14926 F:      Documentation/parisc/
14927 F:      arch/parisc/
14928 F:      drivers/char/agp/parisc-agp.c
14929 F:      drivers/input/misc/hp_sdc_rtc.c
14930 F:      drivers/input/serio/gscps2.c
14931 F:      drivers/input/serio/hp_sdc*
14932 F:      drivers/parisc/
14933 F:      drivers/parport/parport_gsc.*
14934 F:      drivers/tty/serial/8250/8250_gsc.c
14935 F:      drivers/video/console/sti*
14936 F:      drivers/video/fbdev/sti*
14937 F:      drivers/video/logo/logo_parisc*
14938 F:      include/linux/hp_sdc.h
14939
14940 PARMAN
14941 M:      Jiri Pirko <jiri@nvidia.com>
14942 L:      netdev@vger.kernel.org
14943 S:      Supported
14944 F:      include/linux/parman.h
14945 F:      lib/parman.c
14946 F:      lib/test_parman.c
14947
14948 PC ENGINES APU BOARD DRIVER
14949 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14950 S:      Maintained
14951 F:      drivers/platform/x86/pcengines-apuv2.c
14952
14953 PC87360 HARDWARE MONITORING DRIVER
14954 M:      Jim Cromie <jim.cromie@gmail.com>
14955 L:      linux-hwmon@vger.kernel.org
14956 S:      Maintained
14957 F:      Documentation/hwmon/pc87360.rst
14958 F:      drivers/hwmon/pc87360.c
14959
14960 PC8736x GPIO DRIVER
14961 M:      Jim Cromie <jim.cromie@gmail.com>
14962 S:      Maintained
14963 F:      drivers/char/pc8736x_gpio.c
14964
14965 PC87427 HARDWARE MONITORING DRIVER
14966 M:      Jean Delvare <jdelvare@suse.com>
14967 L:      linux-hwmon@vger.kernel.org
14968 S:      Maintained
14969 F:      Documentation/hwmon/pc87427.rst
14970 F:      drivers/hwmon/pc87427.c
14971
14972 PCA9532 LED DRIVER
14973 M:      Riku Voipio <riku.voipio@iki.fi>
14974 S:      Maintained
14975 F:      drivers/leds/leds-pca9532.c
14976 F:      include/linux/leds-pca9532.h
14977
14978 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14979 M:      Guenter Roeck <linux@roeck-us.net>
14980 L:      linux-i2c@vger.kernel.org
14981 S:      Maintained
14982 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14983
14984 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14985 M:      Khalid Aziz <khalid@gonehiking.org>
14986 S:      Maintained
14987 F:      drivers/firmware/pcdp.*
14988
14989 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14990 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14991 M:      Pali Rohár <pali@kernel.org>
14992 L:      linux-pci@vger.kernel.org
14993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14994 S:      Maintained
14995 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14996 F:      drivers/pci/controller/pci-aardvark.c
14997
14998 PCI DRIVER FOR ALTERA PCIE IP
14999 M:      Joyce Ooi <joyce.ooi@intel.com>
15000 L:      linux-pci@vger.kernel.org
15001 S:      Supported
15002 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15003 F:      drivers/pci/controller/pcie-altera.c
15004
15005 PCI DRIVER FOR APPLIEDMICRO XGENE
15006 M:      Toan Le <toan@os.amperecomputing.com>
15007 L:      linux-pci@vger.kernel.org
15008 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15009 S:      Maintained
15010 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15011 F:      drivers/pci/controller/pci-xgene.c
15012
15013 PCI DRIVER FOR ARM VERSATILE PLATFORM
15014 M:      Rob Herring <robh@kernel.org>
15015 L:      linux-pci@vger.kernel.org
15016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15017 S:      Maintained
15018 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15019 F:      drivers/pci/controller/pci-versatile.c
15020
15021 PCI DRIVER FOR ARMADA 8K
15022 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15023 L:      linux-pci@vger.kernel.org
15024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15025 S:      Maintained
15026 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15027 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15028
15029 PCI DRIVER FOR CADENCE PCIE IP
15030 M:      Tom Joseph <tjoseph@cadence.com>
15031 L:      linux-pci@vger.kernel.org
15032 S:      Maintained
15033 F:      Documentation/devicetree/bindings/pci/cdns,*
15034 F:      drivers/pci/controller/cadence/
15035
15036 PCI DRIVER FOR FREESCALE LAYERSCAPE
15037 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15038 M:      Mingkai Hu <mingkai.hu@nxp.com>
15039 M:      Roy Zang <roy.zang@nxp.com>
15040 L:      linuxppc-dev@lists.ozlabs.org
15041 L:      linux-pci@vger.kernel.org
15042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15043 S:      Maintained
15044 F:      drivers/pci/controller/dwc/*layerscape*
15045
15046 PCI DRIVER FOR GENERIC OF HOSTS
15047 M:      Will Deacon <will@kernel.org>
15048 L:      linux-pci@vger.kernel.org
15049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15050 S:      Maintained
15051 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15052 F:      drivers/pci/controller/pci-host-common.c
15053 F:      drivers/pci/controller/pci-host-generic.c
15054
15055 PCI DRIVER FOR IMX6
15056 M:      Richard Zhu <hongxing.zhu@nxp.com>
15057 M:      Lucas Stach <l.stach@pengutronix.de>
15058 L:      linux-pci@vger.kernel.org
15059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15060 S:      Maintained
15061 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15062 F:      drivers/pci/controller/dwc/*imx6*
15063
15064 PCI DRIVER FOR FU740
15065 M:      Paul Walmsley <paul.walmsley@sifive.com>
15066 M:      Greentime Hu <greentime.hu@sifive.com>
15067 L:      linux-pci@vger.kernel.org
15068 S:      Maintained
15069 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15070 F:      drivers/pci/controller/dwc/pcie-fu740.c
15071
15072 PCI DRIVER FOR INTEL IXP4XX
15073 M:      Linus Walleij <linus.walleij@linaro.org>
15074 S:      Maintained
15075 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15076 F:      drivers/pci/controller/pci-ixp4xx.c
15077
15078 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15079 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15080 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15081 L:      linux-pci@vger.kernel.org
15082 S:      Supported
15083 F:      drivers/pci/controller/vmd.c
15084
15085 PCI DRIVER FOR MICROSEMI SWITCHTEC
15086 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15087 M:      Logan Gunthorpe <logang@deltatee.com>
15088 L:      linux-pci@vger.kernel.org
15089 S:      Maintained
15090 F:      Documentation/ABI/testing/sysfs-class-switchtec
15091 F:      Documentation/driver-api/switchtec.rst
15092 F:      drivers/ntb/hw/mscc/
15093 F:      drivers/pci/switch/switchtec*
15094 F:      include/linux/switchtec.h
15095 F:      include/uapi/linux/switchtec_ioctl.h
15096
15097 PCI DRIVER FOR MOBIVEIL PCIE IP
15098 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15099 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15100 L:      linux-pci@vger.kernel.org
15101 S:      Supported
15102 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15103 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15104
15105 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15106 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15107 M:      Pali Rohár <pali@kernel.org>
15108 L:      linux-pci@vger.kernel.org
15109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15110 S:      Maintained
15111 F:      drivers/pci/controller/*mvebu*
15112
15113 PCI DRIVER FOR NVIDIA TEGRA
15114 M:      Thierry Reding <thierry.reding@gmail.com>
15115 L:      linux-tegra@vger.kernel.org
15116 L:      linux-pci@vger.kernel.org
15117 S:      Supported
15118 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15119 F:      drivers/pci/controller/pci-tegra.c
15120
15121 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15122 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15123 L:      linux-pci@vger.kernel.org
15124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15125 S:      Maintained
15126 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15127 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15128
15129 PCI DRIVER FOR RENESAS R-CAR
15130 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15131 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15132 L:      linux-pci@vger.kernel.org
15133 L:      linux-renesas-soc@vger.kernel.org
15134 S:      Maintained
15135 F:      Documentation/devicetree/bindings/pci/*rcar*
15136 F:      drivers/pci/controller/*rcar*
15137
15138 PCI DRIVER FOR SAMSUNG EXYNOS
15139 M:      Jingoo Han <jingoohan1@gmail.com>
15140 L:      linux-pci@vger.kernel.org
15141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15142 L:      linux-samsung-soc@vger.kernel.org
15143 S:      Maintained
15144 F:      drivers/pci/controller/dwc/pci-exynos.c
15145
15146 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15147 M:      Jingoo Han <jingoohan1@gmail.com>
15148 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15149 L:      linux-pci@vger.kernel.org
15150 S:      Maintained
15151 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15152 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15153 F:      drivers/pci/controller/dwc/*designware*
15154
15155 PCI DRIVER FOR TI DRA7XX/J721E
15156 M:      Kishon Vijay Abraham I <kishon@ti.com>
15157 L:      linux-omap@vger.kernel.org
15158 L:      linux-pci@vger.kernel.org
15159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15160 S:      Supported
15161 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15162 F:      drivers/pci/controller/cadence/pci-j721e.c
15163 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15164
15165 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15166 M:      Linus Walleij <linus.walleij@linaro.org>
15167 L:      linux-pci@vger.kernel.org
15168 S:      Maintained
15169 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15170 F:      drivers/pci/controller/pci-v3-semi.c
15171
15172 PCI ENDPOINT SUBSYSTEM
15173 M:      Kishon Vijay Abraham I <kishon@ti.com>
15174 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15175 R:      Krzysztof Wilczyński <kw@linux.com>
15176 L:      linux-pci@vger.kernel.org
15177 S:      Supported
15178 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15179 B:      https://bugzilla.kernel.org
15180 C:      irc://irc.oftc.net/linux-pci
15181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15182 F:      Documentation/PCI/endpoint/*
15183 F:      Documentation/misc-devices/pci-endpoint-test.rst
15184 F:      drivers/misc/pci_endpoint_test.c
15185 F:      drivers/pci/endpoint/
15186 F:      tools/pci/
15187
15188 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15189 M:      Russell Currey <ruscur@russell.cc>
15190 M:      Oliver O'Halloran <oohall@gmail.com>
15191 L:      linuxppc-dev@lists.ozlabs.org
15192 S:      Supported
15193 F:      Documentation/PCI/pci-error-recovery.rst
15194 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15195 F:      arch/powerpc/include/*/eeh*.h
15196 F:      arch/powerpc/kernel/eeh*.c
15197 F:      arch/powerpc/platforms/*/eeh*.c
15198 F:      drivers/pci/pcie/aer.c
15199 F:      drivers/pci/pcie/dpc.c
15200 F:      drivers/pci/pcie/err.c
15201
15202 PCI ERROR RECOVERY
15203 M:      Linas Vepstas <linasvepstas@gmail.com>
15204 L:      linux-pci@vger.kernel.org
15205 S:      Supported
15206 F:      Documentation/PCI/pci-error-recovery.rst
15207
15208 PCI PEER-TO-PEER DMA (P2PDMA)
15209 M:      Bjorn Helgaas <bhelgaas@google.com>
15210 M:      Logan Gunthorpe <logang@deltatee.com>
15211 L:      linux-pci@vger.kernel.org
15212 S:      Supported
15213 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15214 B:      https://bugzilla.kernel.org
15215 C:      irc://irc.oftc.net/linux-pci
15216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15217 F:      Documentation/driver-api/pci/p2pdma.rst
15218 F:      drivers/pci/p2pdma.c
15219 F:      include/linux/pci-p2pdma.h
15220
15221 PCI MSI DRIVER FOR ALTERA MSI IP
15222 M:      Joyce Ooi <joyce.ooi@intel.com>
15223 L:      linux-pci@vger.kernel.org
15224 S:      Supported
15225 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15226 F:      drivers/pci/controller/pcie-altera-msi.c
15227
15228 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15229 M:      Toan Le <toan@os.amperecomputing.com>
15230 L:      linux-pci@vger.kernel.org
15231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15232 S:      Maintained
15233 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15234 F:      drivers/pci/controller/pci-xgene-msi.c
15235
15236 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15237 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15238 R:      Rob Herring <robh@kernel.org>
15239 R:      Krzysztof Wilczyński <kw@linux.com>
15240 L:      linux-pci@vger.kernel.org
15241 S:      Supported
15242 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15243 B:      https://bugzilla.kernel.org
15244 C:      irc://irc.oftc.net/linux-pci
15245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15246 F:      drivers/pci/controller/
15247 F:      drivers/pci/pci-bridge-emul.c
15248 F:      drivers/pci/pci-bridge-emul.h
15249
15250 PCI SUBSYSTEM
15251 M:      Bjorn Helgaas <bhelgaas@google.com>
15252 L:      linux-pci@vger.kernel.org
15253 S:      Supported
15254 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15255 B:      https://bugzilla.kernel.org
15256 C:      irc://irc.oftc.net/linux-pci
15257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15258 F:      Documentation/PCI/
15259 F:      Documentation/devicetree/bindings/pci/
15260 F:      arch/x86/kernel/early-quirks.c
15261 F:      arch/x86/kernel/quirks.c
15262 F:      arch/x86/pci/
15263 F:      drivers/acpi/pci*
15264 F:      drivers/pci/
15265 F:      include/asm-generic/pci*
15266 F:      include/linux/of_pci.h
15267 F:      include/linux/pci*
15268 F:      include/uapi/linux/pci*
15269 F:      lib/pci*
15270
15271 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15272 M:      Jonathan Chocron <jonnyc@amazon.com>
15273 L:      linux-pci@vger.kernel.org
15274 S:      Maintained
15275 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15276 F:      drivers/pci/controller/dwc/pcie-al.c
15277
15278 PCIE DRIVER FOR AMLOGIC MESON
15279 M:      Yue Wang <yue.wang@Amlogic.com>
15280 L:      linux-pci@vger.kernel.org
15281 L:      linux-amlogic@lists.infradead.org
15282 S:      Maintained
15283 F:      drivers/pci/controller/dwc/pci-meson.c
15284
15285 PCIE DRIVER FOR AXIS ARTPEC
15286 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15287 L:      linux-arm-kernel@axis.com
15288 L:      linux-pci@vger.kernel.org
15289 S:      Maintained
15290 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15291 F:      drivers/pci/controller/dwc/*artpec*
15292
15293 PCIE DRIVER FOR CAVIUM THUNDERX
15294 M:      Robert Richter <rric@kernel.org>
15295 L:      linux-pci@vger.kernel.org
15296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15297 S:      Odd Fixes
15298 F:      drivers/pci/controller/pci-thunder-*
15299
15300 PCIE DRIVER FOR HISILICON
15301 M:      Zhou Wang <wangzhou1@hisilicon.com>
15302 L:      linux-pci@vger.kernel.org
15303 S:      Maintained
15304 F:      drivers/pci/controller/dwc/pcie-hisi.c
15305
15306 PCIE DRIVER FOR HISILICON KIRIN
15307 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15308 M:      Binghui Wang <wangbinghui@hisilicon.com>
15309 L:      linux-pci@vger.kernel.org
15310 S:      Maintained
15311 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15312 F:      drivers/pci/controller/dwc/pcie-kirin.c
15313
15314 PCIE DRIVER FOR HISILICON STB
15315 M:      Shawn Guo <shawn.guo@linaro.org>
15316 L:      linux-pci@vger.kernel.org
15317 S:      Maintained
15318 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15319 F:      drivers/pci/controller/dwc/pcie-histb.c
15320
15321 PCIE DRIVER FOR INTEL KEEM BAY
15322 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15323 L:      linux-pci@vger.kernel.org
15324 S:      Supported
15325 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15326 F:      drivers/pci/controller/dwc/pcie-keembay.c
15327
15328 PCIE DRIVER FOR INTEL LGM GW SOC
15329 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15330 L:      linux-pci@vger.kernel.org
15331 S:      Maintained
15332 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15333 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15334
15335 PCIE DRIVER FOR MEDIATEK
15336 M:      Ryder Lee <ryder.lee@mediatek.com>
15337 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15338 L:      linux-pci@vger.kernel.org
15339 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15340 S:      Supported
15341 F:      Documentation/devicetree/bindings/pci/mediatek*
15342 F:      drivers/pci/controller/*mediatek*
15343
15344 PCIE DRIVER FOR MICROCHIP
15345 M:      Daire McNamara <daire.mcnamara@microchip.com>
15346 L:      linux-pci@vger.kernel.org
15347 S:      Supported
15348 F:      Documentation/devicetree/bindings/pci/microchip*
15349 F:      drivers/pci/controller/*microchip*
15350
15351 PCIE DRIVER FOR QUALCOMM MSM
15352 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15353 L:      linux-pci@vger.kernel.org
15354 L:      linux-arm-msm@vger.kernel.org
15355 S:      Maintained
15356 F:      drivers/pci/controller/dwc/pcie-qcom.c
15357
15358 PCIE ENDPOINT DRIVER FOR QUALCOMM
15359 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15360 L:      linux-pci@vger.kernel.org
15361 L:      linux-arm-msm@vger.kernel.org
15362 S:      Maintained
15363 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15364 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15365
15366 PCIE DRIVER FOR ROCKCHIP
15367 M:      Shawn Lin <shawn.lin@rock-chips.com>
15368 L:      linux-pci@vger.kernel.org
15369 L:      linux-rockchip@lists.infradead.org
15370 S:      Maintained
15371 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15372 F:      drivers/pci/controller/pcie-rockchip*
15373
15374 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15375 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15376 L:      linux-pci@vger.kernel.org
15377 S:      Maintained
15378 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
15379 F:      drivers/pci/controller/dwc/pcie-uniphier*
15380
15381 PCIE DRIVER FOR ST SPEAR13XX
15382 M:      Pratyush Anand <pratyush.anand@gmail.com>
15383 L:      linux-pci@vger.kernel.org
15384 S:      Maintained
15385 F:      drivers/pci/controller/dwc/*spear*
15386
15387 PCMCIA SUBSYSTEM
15388 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15389 S:      Odd Fixes
15390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15391 F:      Documentation/pcmcia/
15392 F:      drivers/pcmcia/
15393 F:      include/pcmcia/
15394 F:      tools/pcmcia/
15395
15396 PCNET32 NETWORK DRIVER
15397 M:      Don Fry <pcnet32@frontier.com>
15398 L:      netdev@vger.kernel.org
15399 S:      Maintained
15400 F:      drivers/net/ethernet/amd/pcnet32.c
15401
15402 PCRYPT PARALLEL CRYPTO ENGINE
15403 M:      Steffen Klassert <steffen.klassert@secunet.com>
15404 L:      linux-crypto@vger.kernel.org
15405 S:      Maintained
15406 F:      crypto/pcrypt.c
15407 F:      include/crypto/pcrypt.h
15408
15409 PEAQ WMI HOTKEYS DRIVER
15410 M:      Hans de Goede <hdegoede@redhat.com>
15411 L:      platform-driver-x86@vger.kernel.org
15412 S:      Maintained
15413 F:      drivers/platform/x86/peaq-wmi.c
15414
15415 PECI HARDWARE MONITORING DRIVERS
15416 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15417 L:      linux-hwmon@vger.kernel.org
15418 S:      Supported
15419 F:      Documentation/hwmon/peci-cputemp.rst
15420 F:      Documentation/hwmon/peci-dimmtemp.rst
15421 F:      drivers/hwmon/peci/
15422
15423 PECI SUBSYSTEM
15424 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15425 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15426 S:      Supported
15427 F:      Documentation/devicetree/bindings/peci/
15428 F:      Documentation/peci/
15429 F:      drivers/peci/
15430 F:      include/linux/peci-cpu.h
15431 F:      include/linux/peci.h
15432
15433 PENSANDO ETHERNET DRIVERS
15434 M:      Shannon Nelson <snelson@pensando.io>
15435 M:      drivers@pensando.io
15436 L:      netdev@vger.kernel.org
15437 S:      Supported
15438 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15439 F:      drivers/net/ethernet/pensando/
15440
15441 PER-CPU MEMORY ALLOCATOR
15442 M:      Dennis Zhou <dennis@kernel.org>
15443 M:      Tejun Heo <tj@kernel.org>
15444 M:      Christoph Lameter <cl@linux.com>
15445 L:      linux-mm@kvack.org
15446 S:      Maintained
15447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15448 F:      arch/*/include/asm/percpu.h
15449 F:      include/linux/percpu*.h
15450 F:      lib/percpu*.c
15451 F:      mm/percpu*.c
15452
15453 PER-TASK DELAY ACCOUNTING
15454 M:      Balbir Singh <bsingharora@gmail.com>
15455 S:      Maintained
15456 F:      include/linux/delayacct.h
15457 F:      kernel/delayacct.c
15458
15459 PERFORMANCE EVENTS SUBSYSTEM
15460 M:      Peter Zijlstra <peterz@infradead.org>
15461 M:      Ingo Molnar <mingo@redhat.com>
15462 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15463 R:      Mark Rutland <mark.rutland@arm.com>
15464 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15465 R:      Jiri Olsa <jolsa@kernel.org>
15466 R:      Namhyung Kim <namhyung@kernel.org>
15467 L:      linux-perf-users@vger.kernel.org
15468 L:      linux-kernel@vger.kernel.org
15469 S:      Supported
15470 W:      https://perf.wiki.kernel.org/
15471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15472 F:      arch/*/events/*
15473 F:      arch/*/events/*/*
15474 F:      arch/*/include/asm/perf_event.h
15475 F:      arch/*/kernel/*/*/perf_event*.c
15476 F:      arch/*/kernel/*/perf_event*.c
15477 F:      arch/*/kernel/perf_callchain.c
15478 F:      arch/*/kernel/perf_event*.c
15479 F:      include/linux/perf_event.h
15480 F:      include/uapi/linux/perf_event.h
15481 F:      kernel/events/*
15482 F:      tools/lib/perf/
15483 F:      tools/perf/
15484
15485 PERFORMANCE EVENTS TOOLING ARM64
15486 R:      John Garry <john.garry@huawei.com>
15487 R:      Will Deacon <will@kernel.org>
15488 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
15489 R:      Leo Yan <leo.yan@linaro.org>
15490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15491 S:      Supported
15492 F:      tools/build/feature/test-libopencsd.c
15493 F:      tools/perf/arch/arm*/
15494 F:      tools/perf/pmu-events/arch/arm64/
15495 F:      tools/perf/util/arm-spe*
15496 F:      tools/perf/util/cs-etm*
15497
15498 PERSONALITY HANDLING
15499 M:      Christoph Hellwig <hch@infradead.org>
15500 L:      linux-abi-devel@lists.sourceforge.net
15501 S:      Maintained
15502 F:      include/linux/personality.h
15503 F:      include/uapi/linux/personality.h
15504
15505 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15506 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15507 L:      linux-input@vger.kernel.org
15508 S:      Maintained
15509 F:      Documentation/input/devices/pxrc.rst
15510 F:      drivers/input/joystick/pxrc.c
15511
15512 PHONET PROTOCOL
15513 M:      Remi Denis-Courmont <courmisch@gmail.com>
15514 S:      Supported
15515 F:      Documentation/networking/phonet.rst
15516 F:      include/linux/phonet.h
15517 F:      include/net/phonet/
15518 F:      include/uapi/linux/phonet.h
15519 F:      net/phonet/
15520
15521 PHRAM MTD DRIVER
15522 M:      Joern Engel <joern@lazybastard.org>
15523 L:      linux-mtd@lists.infradead.org
15524 S:      Maintained
15525 F:      drivers/mtd/devices/phram.c
15526
15527 PICOLCD HID DRIVER
15528 M:      Bruno Prémont <bonbons@linux-vserver.org>
15529 L:      linux-input@vger.kernel.org
15530 S:      Maintained
15531 F:      drivers/hid/hid-picolcd*
15532
15533 PIDFD API
15534 M:      Christian Brauner <christian@brauner.io>
15535 L:      linux-kernel@vger.kernel.org
15536 S:      Maintained
15537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15538 F:      samples/pidfd/
15539 F:      tools/testing/selftests/clone3/
15540 F:      tools/testing/selftests/pid_namespace/
15541 F:      tools/testing/selftests/pidfd/
15542 K:      (?i)pidfd
15543 K:      (?i)clone3
15544 K:      \b(clone_args|kernel_clone_args)\b
15545
15546 PIN CONTROL SUBSYSTEM
15547 M:      Linus Walleij <linus.walleij@linaro.org>
15548 L:      linux-gpio@vger.kernel.org
15549 S:      Maintained
15550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15551 F:      Documentation/devicetree/bindings/pinctrl/
15552 F:      Documentation/driver-api/pin-control.rst
15553 F:      drivers/pinctrl/
15554 F:      include/linux/pinctrl/
15555
15556 PIN CONTROLLER - AMD
15557 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15558 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15559 S:      Maintained
15560 F:      drivers/pinctrl/pinctrl-amd.c
15561
15562 PIN CONTROLLER - FREESCALE
15563 M:      Dong Aisheng <aisheng.dong@nxp.com>
15564 M:      Fabio Estevam <festevam@gmail.com>
15565 M:      Shawn Guo <shawnguo@kernel.org>
15566 M:      Stefan Agner <stefan@agner.ch>
15567 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15568 L:      linux-gpio@vger.kernel.org
15569 S:      Maintained
15570 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15571 F:      drivers/pinctrl/freescale/
15572
15573 PIN CONTROLLER - INTEL
15574 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15575 M:      Andy Shevchenko <andy@kernel.org>
15576 S:      Maintained
15577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15578 F:      drivers/pinctrl/intel/
15579
15580 PIN CONTROLLER - KEEMBAY
15581 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15582 S:      Supported
15583 F:      drivers/pinctrl/pinctrl-keembay*
15584
15585 PIN CONTROLLER - MEDIATEK
15586 M:      Sean Wang <sean.wang@kernel.org>
15587 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15588 S:      Maintained
15589 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15590 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15591 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15592 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15593 F:      drivers/pinctrl/mediatek/
15594
15595 PIN CONTROLLER - MICROCHIP AT91
15596 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15598 L:      linux-gpio@vger.kernel.org
15599 S:      Supported
15600 F:      drivers/gpio/gpio-sama5d2-piobu.c
15601 F:      drivers/pinctrl/pinctrl-at91*
15602
15603 PIN CONTROLLER - QUALCOMM
15604 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15605 L:      linux-arm-msm@vger.kernel.org
15606 S:      Maintained
15607 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15608 F:      drivers/pinctrl/qcom/
15609
15610 PIN CONTROLLER - RENESAS
15611 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15612 L:      linux-renesas-soc@vger.kernel.org
15613 S:      Supported
15614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15615 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15616 F:      drivers/pinctrl/renesas/
15617
15618 PIN CONTROLLER - SAMSUNG
15619 M:      Tomasz Figa <tomasz.figa@gmail.com>
15620 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15621 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15622 R:      Alim Akhtar <alim.akhtar@samsung.com>
15623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15624 L:      linux-samsung-soc@vger.kernel.org
15625 S:      Maintained
15626 C:      irc://irc.libera.chat/linux-exynos
15627 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15628 B:      mailto:linux-samsung-soc@vger.kernel.org
15629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15630 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15631 F:      drivers/pinctrl/samsung/
15632 F:      include/dt-bindings/pinctrl/samsung.h
15633
15634 PIN CONTROLLER - SINGLE
15635 M:      Tony Lindgren <tony@atomide.com>
15636 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15638 L:      linux-omap@vger.kernel.org
15639 S:      Maintained
15640 F:      drivers/pinctrl/pinctrl-single.c
15641
15642 PIN CONTROLLER - THUNDERBAY
15643 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15644 S:      Supported
15645 F:      drivers/pinctrl/pinctrl-thunderbay.c
15646
15647 PIN CONTROLLER - SUNPLUS / TIBBO
15648 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
15649 M:      Wells Lu <wellslutw@gmail.com>
15650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15651 S:      Maintained
15652 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
15653 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
15654 F:      drivers/pinctrl/sunplus/
15655 F:      include/dt-bindings/pinctrl/sppctl*.h
15656
15657 PKTCDVD DRIVER
15658 M:      linux-block@vger.kernel.org
15659 S:      Orphan
15660 F:      drivers/block/pktcdvd.c
15661 F:      include/linux/pktcdvd.h
15662 F:      include/uapi/linux/pktcdvd.h
15663
15664 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15665 M:      Tomasz Duszynski <tduszyns@gmail.com>
15666 S:      Maintained
15667 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15668 F:      drivers/iio/chemical/pms7003.c
15669
15670 PLDMFW LIBRARY
15671 M:      Jacob Keller <jacob.e.keller@intel.com>
15672 S:      Maintained
15673 F:      Documentation/driver-api/pldmfw/
15674 F:      include/linux/pldmfw.h
15675 F:      lib/pldmfw/
15676
15677 PLX DMA DRIVER
15678 M:      Logan Gunthorpe <logang@deltatee.com>
15679 S:      Maintained
15680 F:      drivers/dma/plx_dma.c
15681
15682 PM6764TR DRIVER
15683 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15684 L:      linux-hwmon@vger.kernel.org
15685 S:      Maintained
15686 F:      Documentation/hwmon/pm6764tr.rst
15687 F:      drivers/hwmon/pmbus/pm6764tr.c
15688
15689 PM-GRAPH UTILITY
15690 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15691 L:      linux-pm@vger.kernel.org
15692 S:      Supported
15693 W:      https://01.org/pm-graph
15694 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15695 T:      git git://github.com/intel/pm-graph
15696 F:      tools/power/pm-graph
15697
15698 PMBUS HARDWARE MONITORING DRIVERS
15699 M:      Guenter Roeck <linux@roeck-us.net>
15700 L:      linux-hwmon@vger.kernel.org
15701 S:      Maintained
15702 W:      http://hwmon.wiki.kernel.org/
15703 W:      http://www.roeck-us.net/linux/drivers/
15704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15705 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15706 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15707 F:      Documentation/hwmon/adm1275.rst
15708 F:      Documentation/hwmon/ibm-cffps.rst
15709 F:      Documentation/hwmon/ir35221.rst
15710 F:      Documentation/hwmon/lm25066.rst
15711 F:      Documentation/hwmon/ltc2978.rst
15712 F:      Documentation/hwmon/ltc3815.rst
15713 F:      Documentation/hwmon/max16064.rst
15714 F:      Documentation/hwmon/max20751.rst
15715 F:      Documentation/hwmon/max31785.rst
15716 F:      Documentation/hwmon/max34440.rst
15717 F:      Documentation/hwmon/max8688.rst
15718 F:      Documentation/hwmon/pmbus-core.rst
15719 F:      Documentation/hwmon/pmbus.rst
15720 F:      Documentation/hwmon/tps40422.rst
15721 F:      Documentation/hwmon/ucd9000.rst
15722 F:      Documentation/hwmon/ucd9200.rst
15723 F:      Documentation/hwmon/zl6100.rst
15724 F:      drivers/hwmon/pmbus/
15725 F:      include/linux/pmbus.h
15726
15727 PMC SIERRA MaxRAID DRIVER
15728 L:      linux-scsi@vger.kernel.org
15729 S:      Orphan
15730 W:      http://www.pmc-sierra.com/
15731 F:      drivers/scsi/pmcraid.*
15732
15733 PMC SIERRA PM8001 DRIVER
15734 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15735 L:      linux-scsi@vger.kernel.org
15736 S:      Supported
15737 F:      drivers/scsi/pm8001/
15738
15739 PNI RM3100 IIO DRIVER
15740 M:      Song Qiang <songqiang1304521@gmail.com>
15741 L:      linux-iio@vger.kernel.org
15742 S:      Maintained
15743 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15744 F:      drivers/iio/magnetometer/rm3100*
15745
15746 PNP SUPPORT
15747 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15748 L:      linux-acpi@vger.kernel.org
15749 S:      Maintained
15750 F:      drivers/pnp/
15751 F:      include/linux/pnp.h
15752
15753 POSIX CLOCKS and TIMERS
15754 M:      Thomas Gleixner <tglx@linutronix.de>
15755 L:      linux-kernel@vger.kernel.org
15756 S:      Maintained
15757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15758 F:      fs/timerfd.c
15759 F:      include/linux/time_namespace.h
15760 F:      include/linux/timer*
15761 F:      kernel/time/*timer*
15762 F:      kernel/time/namespace.c
15763
15764 POWER MANAGEMENT CORE
15765 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15766 L:      linux-pm@vger.kernel.org
15767 S:      Supported
15768 B:      https://bugzilla.kernel.org
15769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15770 F:      drivers/base/power/
15771 F:      drivers/powercap/
15772 F:      include/linux/intel_rapl.h
15773 F:      include/linux/pm.h
15774 F:      include/linux/pm_*
15775 F:      include/linux/powercap.h
15776 F:      kernel/configs/nopm.config
15777
15778 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15779 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15780 L:      linux-pm@vger.kernel.org
15781 S:      Supported
15782 B:      https://bugzilla.kernel.org
15783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15784 F:      drivers/powercap/dtpm*
15785 F:      include/linux/dtpm.h
15786
15787 POWER STATE COORDINATION INTERFACE (PSCI)
15788 M:      Mark Rutland <mark.rutland@arm.com>
15789 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15791 S:      Maintained
15792 F:      drivers/firmware/psci/
15793 F:      include/linux/psci.h
15794 F:      include/uapi/linux/psci.h
15795
15796 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15797 M:      Sebastian Reichel <sre@kernel.org>
15798 L:      linux-pm@vger.kernel.org
15799 S:      Maintained
15800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15801 F:      Documentation/ABI/testing/sysfs-class-power
15802 F:      Documentation/devicetree/bindings/power/supply/
15803 F:      drivers/power/supply/
15804 F:      include/linux/power/
15805 F:      include/linux/power_supply.h
15806
15807 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15808 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15809 L:      linuxppc-dev@lists.ozlabs.org
15810 S:      Maintained
15811 F:      drivers/char/powernv-op-panel.c
15812
15813 PPP OVER ATM (RFC 2364)
15814 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15815 S:      Maintained
15816 F:      include/uapi/linux/atmppp.h
15817 F:      net/atm/pppoatm.c
15818
15819 PPP OVER ETHERNET
15820 M:      Michal Ostrowski <mostrows@earthlink.net>
15821 S:      Maintained
15822 F:      drivers/net/ppp/pppoe.c
15823 F:      drivers/net/ppp/pppox.c
15824
15825 PPP OVER L2TP
15826 M:      James Chapman <jchapman@katalix.com>
15827 S:      Maintained
15828 F:      include/linux/if_pppol2tp.h
15829 F:      include/uapi/linux/if_pppol2tp.h
15830 F:      net/l2tp/l2tp_ppp.c
15831
15832 PPP PROTOCOL DRIVERS AND COMPRESSORS
15833 M:      Paul Mackerras <paulus@samba.org>
15834 L:      linux-ppp@vger.kernel.org
15835 S:      Maintained
15836 F:      drivers/net/ppp/ppp_*
15837
15838 PPS SUPPORT
15839 M:      Rodolfo Giometti <giometti@enneenne.com>
15840 L:      linuxpps@ml.enneenne.com (subscribers-only)
15841 S:      Maintained
15842 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15843 F:      Documentation/ABI/testing/sysfs-pps
15844 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15845 F:      Documentation/driver-api/pps.rst
15846 F:      drivers/pps/
15847 F:      include/linux/pps*.h
15848 F:      include/uapi/linux/pps.h
15849
15850 PPTP DRIVER
15851 M:      Dmitry Kozlov <xeb@mail.ru>
15852 L:      netdev@vger.kernel.org
15853 S:      Maintained
15854 W:      http://sourceforge.net/projects/accel-pptp
15855 F:      drivers/net/ppp/pptp.c
15856
15857 PRESSURE STALL INFORMATION (PSI)
15858 M:      Johannes Weiner <hannes@cmpxchg.org>
15859 M:      Suren Baghdasaryan <surenb@google.com>
15860 S:      Maintained
15861 F:      include/linux/psi*
15862 F:      kernel/sched/psi.c
15863
15864 PRINTK
15865 M:      Petr Mladek <pmladek@suse.com>
15866 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15867 R:      Steven Rostedt <rostedt@goodmis.org>
15868 R:      John Ogness <john.ogness@linutronix.de>
15869 S:      Maintained
15870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
15871 F:      include/linux/printk.h
15872 F:      kernel/printk/
15873
15874 PRINTK INDEXING
15875 R:      Chris Down <chris@chrisdown.name>
15876 S:      Maintained
15877 F:      kernel/printk/index.c
15878
15879 PROC FILESYSTEM
15880 L:      linux-kernel@vger.kernel.org
15881 L:      linux-fsdevel@vger.kernel.org
15882 S:      Maintained
15883 F:      Documentation/filesystems/proc.rst
15884 F:      fs/proc/
15885 F:      include/linux/proc_fs.h
15886 F:      tools/testing/selftests/proc/
15887
15888 PROC SYSCTL
15889 M:      Luis Chamberlain <mcgrof@kernel.org>
15890 M:      Kees Cook <keescook@chromium.org>
15891 M:      Iurii Zaikin <yzaikin@google.com>
15892 L:      linux-kernel@vger.kernel.org
15893 L:      linux-fsdevel@vger.kernel.org
15894 S:      Maintained
15895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
15896 F:      fs/proc/proc_sysctl.c
15897 F:      include/linux/sysctl.h
15898 F:      kernel/sysctl-test.c
15899 F:      kernel/sysctl.c
15900 F:      tools/testing/selftests/sysctl/
15901
15902 PS3 NETWORK SUPPORT
15903 M:      Geoff Levand <geoff@infradead.org>
15904 L:      netdev@vger.kernel.org
15905 L:      linuxppc-dev@lists.ozlabs.org
15906 S:      Maintained
15907 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15908
15909 PS3 PLATFORM SUPPORT
15910 M:      Geoff Levand <geoff@infradead.org>
15911 L:      linuxppc-dev@lists.ozlabs.org
15912 S:      Maintained
15913 F:      arch/powerpc/boot/ps3*
15914 F:      arch/powerpc/include/asm/lv1call.h
15915 F:      arch/powerpc/include/asm/ps3*.h
15916 F:      arch/powerpc/platforms/ps3/
15917 F:      drivers/*/ps3*
15918 F:      drivers/ps3/
15919 F:      drivers/rtc/rtc-ps3.c
15920 F:      drivers/usb/host/*ps3.c
15921 F:      sound/ppc/snd_ps3*
15922
15923 PS3VRAM DRIVER
15924 M:      Jim Paris <jim@jtan.com>
15925 M:      Geoff Levand <geoff@infradead.org>
15926 L:      linuxppc-dev@lists.ozlabs.org
15927 S:      Maintained
15928 F:      drivers/block/ps3vram.c
15929
15930 PSAMPLE PACKET SAMPLING SUPPORT
15931 M:      Yotam Gigi <yotam.gi@gmail.com>
15932 S:      Maintained
15933 F:      include/net/psample.h
15934 F:      include/uapi/linux/psample.h
15935 F:      net/psample
15936
15937 PSTORE FILESYSTEM
15938 M:      Kees Cook <keescook@chromium.org>
15939 M:      Anton Vorontsov <anton@enomsg.org>
15940 M:      Colin Cross <ccross@android.com>
15941 M:      Tony Luck <tony.luck@intel.com>
15942 S:      Maintained
15943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15944 F:      Documentation/admin-guide/ramoops.rst
15945 F:      Documentation/admin-guide/pstore-blk.rst
15946 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15947 F:      drivers/acpi/apei/erst.c
15948 F:      drivers/firmware/efi/efi-pstore.c
15949 F:      fs/pstore/
15950 F:      include/linux/pstore*
15951 K:      \b(pstore|ramoops)
15952
15953 PTP HARDWARE CLOCK SUPPORT
15954 M:      Richard Cochran <richardcochran@gmail.com>
15955 L:      netdev@vger.kernel.org
15956 S:      Maintained
15957 W:      http://linuxptp.sourceforge.net/
15958 F:      Documentation/ABI/testing/sysfs-ptp
15959 F:      Documentation/driver-api/ptp.rst
15960 F:      drivers/net/phy/dp83640*
15961 F:      drivers/ptp/*
15962 F:      include/linux/ptp_cl*
15963
15964 PTP VIRTUAL CLOCK SUPPORT
15965 M:      Yangbo Lu <yangbo.lu@nxp.com>
15966 L:      netdev@vger.kernel.org
15967 S:      Maintained
15968 F:      drivers/ptp/ptp_vclock.c
15969 F:      net/ethtool/phc_vclocks.c
15970
15971 PTRACE SUPPORT
15972 M:      Oleg Nesterov <oleg@redhat.com>
15973 S:      Maintained
15974 F:      arch/*/*/ptrace*.c
15975 F:      arch/*/include/asm/ptrace*.h
15976 F:      arch/*/ptrace*.c
15977 F:      include/asm-generic/syscall.h
15978 F:      include/linux/ptrace.h
15979 F:      include/linux/regset.h
15980 F:      include/uapi/linux/ptrace.h
15981 F:      include/uapi/linux/ptrace.h
15982 F:      kernel/ptrace.c
15983
15984 PULSE8-CEC DRIVER
15985 M:      Hans Verkuil <hverkuil@xs4all.nl>
15986 L:      linux-media@vger.kernel.org
15987 S:      Maintained
15988 T:      git git://linuxtv.org/media_tree.git
15989 F:      Documentation/admin-guide/media/pulse8-cec.rst
15990 F:      drivers/media/cec/usb/pulse8/
15991
15992 PVRUSB2 VIDEO4LINUX DRIVER
15993 M:      Mike Isely <isely@pobox.com>
15994 L:      pvrusb2@isely.net       (subscribers-only)
15995 L:      linux-media@vger.kernel.org
15996 S:      Maintained
15997 W:      http://www.isely.net/pvrusb2/
15998 T:      git git://linuxtv.org/media_tree.git
15999 F:      Documentation/driver-api/media/drivers/pvrusb2*
16000 F:      drivers/media/usb/pvrusb2/
16001
16002 PWC WEBCAM DRIVER
16003 M:      Hans Verkuil <hverkuil@xs4all.nl>
16004 L:      linux-media@vger.kernel.org
16005 S:      Odd Fixes
16006 T:      git git://linuxtv.org/media_tree.git
16007 F:      drivers/media/usb/pwc/*
16008 F:      include/trace/events/pwc.h
16009
16010 PWM FAN DRIVER
16011 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16012 L:      linux-hwmon@vger.kernel.org
16013 S:      Supported
16014 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16015 F:      Documentation/hwmon/pwm-fan.rst
16016 F:      drivers/hwmon/pwm-fan.c
16017
16018 PWM IR Transmitter
16019 M:      Sean Young <sean@mess.org>
16020 L:      linux-media@vger.kernel.org
16021 S:      Maintained
16022 F:      drivers/media/rc/pwm-ir-tx.c
16023
16024 PWM SUBSYSTEM
16025 M:      Thierry Reding <thierry.reding@gmail.com>
16026 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16027 M:      Lee Jones <lee.jones@linaro.org>
16028 L:      linux-pwm@vger.kernel.org
16029 S:      Maintained
16030 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16032 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
16033 F:      Documentation/devicetree/bindings/pwm/
16034 F:      Documentation/driver-api/pwm.rst
16035 F:      drivers/gpio/gpio-mvebu.c
16036 F:      drivers/pwm/
16037 F:      drivers/video/backlight/pwm_bl.c
16038 F:      include/linux/pwm.h
16039 F:      include/linux/pwm_backlight.h
16040 K:      pwm_(config|apply_state|ops)
16041
16042 PXA GPIO DRIVER
16043 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16044 L:      linux-gpio@vger.kernel.org
16045 S:      Maintained
16046 F:      drivers/gpio/gpio-pxa.c
16047
16048 PXA MMCI DRIVER
16049 S:      Orphan
16050
16051 PXA RTC DRIVER
16052 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16053 L:      linux-rtc@vger.kernel.org
16054 S:      Maintained
16055
16056 PXA2xx/PXA3xx SUPPORT
16057 M:      Daniel Mack <daniel@zonque.org>
16058 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16059 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16061 S:      Maintained
16062 T:      git git://github.com/hzhuang1/linux.git
16063 T:      git git://github.com/rjarzmik/linux.git
16064 F:      arch/arm/boot/dts/pxa*
16065 F:      arch/arm/mach-pxa/
16066 F:      drivers/dma/pxa*
16067 F:      drivers/pcmcia/pxa2xx*
16068 F:      drivers/pinctrl/pxa/
16069 F:      drivers/spi/spi-pxa2xx*
16070 F:      drivers/usb/gadget/udc/pxa2*
16071 F:      include/sound/pxa2xx-lib.h
16072 F:      sound/arm/pxa*
16073 F:      sound/soc/pxa/
16074
16075 QAT DRIVER
16076 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16077 L:      qat-linux@intel.com
16078 S:      Supported
16079 F:      drivers/crypto/qat/
16080
16081 QCOM AUDIO (ASoC) DRIVERS
16082 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16083 M:      Banajit Goswami <bgoswami@codeaurora.org>
16084 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16085 S:      Supported
16086 F:      sound/soc/codecs/lpass-va-macro.c
16087 F:      sound/soc/codecs/lpass-wsa-macro.*
16088 F:      sound/soc/codecs/msm8916-wcd-analog.c
16089 F:      sound/soc/codecs/msm8916-wcd-digital.c
16090 F:      sound/soc/codecs/wcd9335.*
16091 F:      sound/soc/codecs/wcd934x.c
16092 F:      sound/soc/codecs/wcd-clsh-v2.*
16093 F:      sound/soc/codecs/wsa881x.c
16094 F:      sound/soc/qcom/
16095
16096 QCOM EMBEDDED USB DEBUGGER (EUD)
16097 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16098 L:      linux-arm-msm@vger.kernel.org
16099 S:      Maintained
16100 F:      Documentation/ABI/testing/sysfs-driver-eud
16101 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16102 F:      drivers/usb/misc/qcom_eud.c
16103
16104 QCOM IPA DRIVER
16105 M:      Alex Elder <elder@kernel.org>
16106 L:      netdev@vger.kernel.org
16107 S:      Supported
16108 F:      drivers/net/ipa/
16109
16110 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16111 M:      Gabriel Somlo <somlo@cmu.edu>
16112 M:      "Michael S. Tsirkin" <mst@redhat.com>
16113 L:      qemu-devel@nongnu.org
16114 S:      Maintained
16115 F:      drivers/firmware/qemu_fw_cfg.c
16116 F:      include/uapi/linux/qemu_fw_cfg.h
16117
16118 QIB DRIVER
16119 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16120 L:      linux-rdma@vger.kernel.org
16121 S:      Supported
16122 F:      drivers/infiniband/hw/qib/
16123
16124 QLOGIC QL41xxx FCOE DRIVER
16125 M:      Saurav Kashyap <skashyap@marvell.com>
16126 M:      Javed Hasan <jhasan@marvell.com>
16127 M:      GR-QLogic-Storage-Upstream@marvell.com
16128 L:      linux-scsi@vger.kernel.org
16129 S:      Supported
16130 F:      drivers/scsi/qedf/
16131
16132 QLOGIC QL41xxx ISCSI DRIVER
16133 M:      Nilesh Javali <njavali@marvell.com>
16134 M:      Manish Rangankar <mrangankar@marvell.com>
16135 M:      GR-QLogic-Storage-Upstream@marvell.com
16136 L:      linux-scsi@vger.kernel.org
16137 S:      Supported
16138 F:      drivers/scsi/qedi/
16139
16140 QLOGIC QL4xxx ETHERNET DRIVER
16141 M:      Ariel Elior <aelior@marvell.com>
16142 M:      Manish Chopra <manishc@marvell.com>
16143 L:      netdev@vger.kernel.org
16144 S:      Supported
16145 F:      drivers/net/ethernet/qlogic/qed/
16146 F:      drivers/net/ethernet/qlogic/qede/
16147 F:      include/linux/qed/
16148
16149 QLOGIC QL4xxx RDMA DRIVER
16150 M:      Michal Kalderon <mkalderon@marvell.com>
16151 M:      Ariel Elior <aelior@marvell.com>
16152 L:      linux-rdma@vger.kernel.org
16153 S:      Supported
16154 F:      drivers/infiniband/hw/qedr/
16155 F:      include/uapi/rdma/qedr-abi.h
16156
16157 QLOGIC QLA1280 SCSI DRIVER
16158 M:      Michael Reed <mdr@sgi.com>
16159 L:      linux-scsi@vger.kernel.org
16160 S:      Maintained
16161 F:      drivers/scsi/qla1280.[ch]
16162
16163 QLOGIC QLA2XXX FC-SCSI DRIVER
16164 M:      Nilesh Javali <njavali@marvell.com>
16165 M:      GR-QLogic-Storage-Upstream@marvell.com
16166 L:      linux-scsi@vger.kernel.org
16167 S:      Supported
16168 F:      drivers/scsi/qla2xxx/
16169
16170 QLOGIC QLA3XXX NETWORK DRIVER
16171 M:      GR-Linux-NIC-Dev@marvell.com
16172 L:      netdev@vger.kernel.org
16173 S:      Supported
16174 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16175
16176 QLOGIC QLA4XXX iSCSI DRIVER
16177 M:      Nilesh Javali <njavali@marvell.com>
16178 M:      Manish Rangankar <mrangankar@marvell.com>
16179 M:      GR-QLogic-Storage-Upstream@marvell.com
16180 L:      linux-scsi@vger.kernel.org
16181 S:      Supported
16182 F:      drivers/scsi/qla4xxx/
16183
16184 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16185 M:      Shahed Shaikh <shshaikh@marvell.com>
16186 M:      Manish Chopra <manishc@marvell.com>
16187 M:      GR-Linux-NIC-Dev@marvell.com
16188 L:      netdev@vger.kernel.org
16189 S:      Supported
16190 F:      drivers/net/ethernet/qlogic/qlcnic/
16191
16192 QLOGIC QLGE 10Gb ETHERNET DRIVER
16193 M:      Manish Chopra <manishc@marvell.com>
16194 M:      GR-Linux-NIC-Dev@marvell.com
16195 M:      Coiby Xu <coiby.xu@gmail.com>
16196 L:      netdev@vger.kernel.org
16197 S:      Supported
16198 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16199 F:      drivers/staging/qlge/
16200
16201 QM1D1B0004 MEDIA DRIVER
16202 M:      Akihiro Tsukada <tskd08@gmail.com>
16203 L:      linux-media@vger.kernel.org
16204 S:      Odd Fixes
16205 F:      drivers/media/tuners/qm1d1b0004*
16206
16207 QM1D1C0042 MEDIA DRIVER
16208 M:      Akihiro Tsukada <tskd08@gmail.com>
16209 L:      linux-media@vger.kernel.org
16210 S:      Odd Fixes
16211 F:      drivers/media/tuners/qm1d1c0042*
16212
16213 QNX4 FILESYSTEM
16214 M:      Anders Larsen <al@alarsen.net>
16215 S:      Maintained
16216 W:      http://www.alarsen.net/linux/qnx4fs/
16217 F:      fs/qnx4/
16218 F:      include/uapi/linux/qnx4_fs.h
16219 F:      include/uapi/linux/qnxtypes.h
16220
16221 QORIQ DPAA2 FSL-MC BUS DRIVER
16222 M:      Stuart Yoder <stuyoder@gmail.com>
16223 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16224 L:      linux-kernel@vger.kernel.org
16225 S:      Maintained
16226 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16227 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16228 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16229 F:      drivers/bus/fsl-mc/
16230 F:      include/uapi/linux/fsl_mc.h
16231
16232 QT1010 MEDIA DRIVER
16233 M:      Antti Palosaari <crope@iki.fi>
16234 L:      linux-media@vger.kernel.org
16235 S:      Maintained
16236 W:      https://linuxtv.org
16237 W:      http://palosaari.fi/linux/
16238 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16239 T:      git git://linuxtv.org/anttip/media_tree.git
16240 F:      drivers/media/tuners/qt1010*
16241
16242 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16243 M:      Kalle Valo <kvalo@kernel.org>
16244 L:      ath10k@lists.infradead.org
16245 S:      Supported
16246 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16248 F:      drivers/net/wireless/ath/ath10k/
16249 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16250
16251 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16252 M:      Kalle Valo <kvalo@kernel.org>
16253 L:      ath11k@lists.infradead.org
16254 S:      Supported
16255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16256 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16257 F:      drivers/net/wireless/ath/ath11k/
16258
16259 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16260 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16261 L:      linux-wireless@vger.kernel.org
16262 S:      Maintained
16263 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16264 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16265 F:      drivers/net/wireless/ath/ath9k/
16266
16267 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16268 M:      Stephan Gerhold <stephan@gerhold.net>
16269 L:      netdev@vger.kernel.org
16270 L:      linux-arm-msm@vger.kernel.org
16271 S:      Maintained
16272 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16273 F:      drivers/net/wwan/qcom_bam_dmux.c
16274
16275 QUALCOMM CAMERA SUBSYSTEM DRIVER
16276 M:      Robert Foss <robert.foss@linaro.org>
16277 M:      Todor Tomov <todor.too@gmail.com>
16278 L:      linux-media@vger.kernel.org
16279 S:      Maintained
16280 F:      Documentation/admin-guide/media/qcom_camss.rst
16281 F:      Documentation/devicetree/bindings/media/*camss*
16282 F:      drivers/media/platform/qcom/camss/
16283
16284 QUALCOMM CLOCK DRIVERS
16285 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16286 L:      linux-arm-msm@vger.kernel.org
16287 S:      Supported
16288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16289 F:      Documentation/devicetree/bindings/clock/qcom,*
16290 F:      drivers/clk/qcom/
16291 F:      include/dt-bindings/clock/qcom,*
16292
16293 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16294 M:      Niklas Cassel <nks@flawful.org>
16295 L:      linux-pm@vger.kernel.org
16296 L:      linux-arm-msm@vger.kernel.org
16297 S:      Maintained
16298 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16299 F:      drivers/soc/qcom/cpr.c
16300
16301 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16302 M:      Ilia Lin <ilia.lin@kernel.org>
16303 L:      linux-pm@vger.kernel.org
16304 S:      Maintained
16305 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16306 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16307 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16308
16309 QUALCOMM CRYPTO DRIVERS
16310 M:      Thara Gopinath <thara.gopinath@linaro.org>
16311 L:      linux-crypto@vger.kernel.org
16312 L:      linux-arm-msm@vger.kernel.org
16313 S:      Maintained
16314 F:      drivers/crypto/qce/
16315
16316 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16317 M:      Timur Tabi <timur@kernel.org>
16318 L:      netdev@vger.kernel.org
16319 S:      Maintained
16320 F:      drivers/net/ethernet/qualcomm/emac/
16321
16322 QUALCOMM ETHQOS ETHERNET DRIVER
16323 M:      Vinod Koul <vkoul@kernel.org>
16324 L:      netdev@vger.kernel.org
16325 S:      Maintained
16326 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16327 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16328
16329 QUALCOMM FASTRPC DRIVER
16330 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16331 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16332 L:      linux-arm-msm@vger.kernel.org
16333 S:      Maintained
16334 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16335 F:      drivers/misc/fastrpc.c
16336 F:      include/uapi/misc/fastrpc.h
16337
16338 QUALCOMM HEXAGON ARCHITECTURE
16339 M:      Brian Cain <bcain@quicinc.com>
16340 L:      linux-hexagon@vger.kernel.org
16341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16342 S:      Supported
16343 F:      arch/hexagon/
16344
16345 QUALCOMM HIDMA DRIVER
16346 M:      Sinan Kaya <okaya@kernel.org>
16347 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16348 L:      linux-arm-msm@vger.kernel.org
16349 L:      dmaengine@vger.kernel.org
16350 S:      Supported
16351 F:      drivers/dma/qcom/hidma*
16352
16353 QUALCOMM I2C CCI DRIVER
16354 M:      Loic Poulain <loic.poulain@linaro.org>
16355 M:      Robert Foss <robert.foss@linaro.org>
16356 L:      linux-i2c@vger.kernel.org
16357 L:      linux-arm-msm@vger.kernel.org
16358 S:      Maintained
16359 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16360 F:      drivers/i2c/busses/i2c-qcom-cci.c
16361
16362 QUALCOMM IOMMU
16363 M:      Rob Clark <robdclark@gmail.com>
16364 L:      iommu@lists.linux-foundation.org
16365 L:      linux-arm-msm@vger.kernel.org
16366 S:      Maintained
16367 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16368
16369 QUALCOMM IPC ROUTER (QRTR) DRIVER
16370 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16371 L:      linux-arm-msm@vger.kernel.org
16372 S:      Maintained
16373 F:      include/trace/events/qrtr.h
16374 F:      include/uapi/linux/qrtr.h
16375 F:      net/qrtr/
16376
16377 QUALCOMM IPCC MAILBOX DRIVER
16378 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16379 L:      linux-arm-msm@vger.kernel.org
16380 S:      Supported
16381 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16382 F:      drivers/mailbox/qcom-ipcc.c
16383 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16384
16385 QUALCOMM IPQ4019 USB PHY DRIVER
16386 M:      Robert Marko <robert.marko@sartura.hr>
16387 M:      Luka Perkov <luka.perkov@sartura.hr>
16388 L:      linux-arm-msm@vger.kernel.org
16389 S:      Maintained
16390 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16391 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16392
16393 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16394 M:      Robert Marko <robert.marko@sartura.hr>
16395 M:      Luka Perkov <luka.perkov@sartura.hr>
16396 L:      linux-arm-msm@vger.kernel.org
16397 S:      Maintained
16398 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16399 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16400
16401 QUALCOMM NAND CONTROLLER DRIVER
16402 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16403 L:      linux-mtd@lists.infradead.org
16404 L:      linux-arm-msm@vger.kernel.org
16405 S:      Maintained
16406 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16407 F:      drivers/mtd/nand/raw/qcom_nandc.c
16408
16409 QUALCOMM RMNET DRIVER
16410 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16411 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16412 L:      netdev@vger.kernel.org
16413 S:      Maintained
16414 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16415 F:      drivers/net/ethernet/qualcomm/rmnet/
16416 F:      include/linux/if_rmnet.h
16417
16418 QUALCOMM TSENS THERMAL DRIVER
16419 M:      Amit Kucheria <amitk@kernel.org>
16420 M:      Thara Gopinath <thara.gopinath@linaro.org>
16421 L:      linux-pm@vger.kernel.org
16422 L:      linux-arm-msm@vger.kernel.org
16423 S:      Maintained
16424 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16425 F:      drivers/thermal/qcom/
16426
16427 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16428 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16429 L:      linux-media@vger.kernel.org
16430 L:      linux-arm-msm@vger.kernel.org
16431 S:      Maintained
16432 T:      git git://linuxtv.org/media_tree.git
16433 F:      Documentation/devicetree/bindings/media/*venus*
16434 F:      drivers/media/platform/qcom/venus/
16435
16436 QUALCOMM WCN36XX WIRELESS DRIVER
16437 M:      Loic Poulain <loic.poulain@linaro.org>
16438 L:      wcn36xx@lists.infradead.org
16439 S:      Supported
16440 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16441 F:      drivers/net/wireless/ath/wcn36xx/
16442
16443 QUANTENNA QTNFMAC WIRELESS DRIVER
16444 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16445 R:      Sergey Matyukevich <geomatsi@gmail.com>
16446 L:      linux-wireless@vger.kernel.org
16447 S:      Maintained
16448 F:      drivers/net/wireless/quantenna
16449
16450 RADEON and AMDGPU DRM DRIVERS
16451 M:      Alex Deucher <alexander.deucher@amd.com>
16452 M:      Christian König <christian.koenig@amd.com>
16453 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16454 L:      amd-gfx@lists.freedesktop.org
16455 S:      Supported
16456 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16457 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16458 C:      irc://irc.oftc.net/radeon
16459 F:      drivers/gpu/drm/amd/
16460 F:      drivers/gpu/drm/radeon/
16461 F:      include/uapi/drm/amdgpu_drm.h
16462 F:      include/uapi/drm/radeon_drm.h
16463
16464 RADEON FRAMEBUFFER DISPLAY DRIVER
16465 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16466 L:      linux-fbdev@vger.kernel.org
16467 S:      Maintained
16468 F:      drivers/video/fbdev/aty/radeon*
16469 F:      include/uapi/linux/radeonfb.h
16470
16471 RADIOSHARK RADIO DRIVER
16472 M:      Hans Verkuil <hverkuil@xs4all.nl>
16473 L:      linux-media@vger.kernel.org
16474 S:      Maintained
16475 T:      git git://linuxtv.org/media_tree.git
16476 F:      drivers/media/radio/radio-shark.c
16477
16478 RADIOSHARK2 RADIO DRIVER
16479 M:      Hans Verkuil <hverkuil@xs4all.nl>
16480 L:      linux-media@vger.kernel.org
16481 S:      Maintained
16482 T:      git git://linuxtv.org/media_tree.git
16483 F:      drivers/media/radio/radio-shark2.c
16484 F:      drivers/media/radio/radio-tea5777.c
16485
16486 RADOS BLOCK DEVICE (RBD)
16487 M:      Ilya Dryomov <idryomov@gmail.com>
16488 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16489 L:      ceph-devel@vger.kernel.org
16490 S:      Supported
16491 W:      http://ceph.com/
16492 T:      git git://github.com/ceph/ceph-client.git
16493 F:      Documentation/ABI/testing/sysfs-bus-rbd
16494 F:      drivers/block/rbd.c
16495 F:      drivers/block/rbd_types.h
16496
16497 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16498 M:      Paul Mackerras <paulus@samba.org>
16499 L:      linux-fbdev@vger.kernel.org
16500 S:      Maintained
16501 F:      drivers/video/fbdev/aty/aty128fb.c
16502
16503 RAINSHADOW-CEC DRIVER
16504 M:      Hans Verkuil <hverkuil@xs4all.nl>
16505 L:      linux-media@vger.kernel.org
16506 S:      Maintained
16507 T:      git git://linuxtv.org/media_tree.git
16508 F:      drivers/media/cec/usb/rainshadow/
16509
16510 RALINK MIPS ARCHITECTURE
16511 M:      John Crispin <john@phrozen.org>
16512 L:      linux-mips@vger.kernel.org
16513 S:      Maintained
16514 F:      arch/mips/ralink
16515
16516 RALINK MT7621 MIPS ARCHITECTURE
16517 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16518 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16519 L:      linux-mips@vger.kernel.org
16520 S:      Maintained
16521 F:      arch/mips/boot/dts/ralink/mt7621*
16522
16523 RALINK RT2X00 WIRELESS LAN DRIVER
16524 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16525 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16526 L:      linux-wireless@vger.kernel.org
16527 S:      Maintained
16528 F:      drivers/net/wireless/ralink/rt2x00/
16529
16530 RAMDISK RAM BLOCK DEVICE DRIVER
16531 M:      Jens Axboe <axboe@kernel.dk>
16532 S:      Maintained
16533 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16534 F:      drivers/block/brd.c
16535
16536 RANCHU VIRTUAL BOARD FOR MIPS
16537 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16538 L:      linux-mips@vger.kernel.org
16539 S:      Supported
16540 F:      arch/mips/configs/generic/board-ranchu.config
16541 F:      arch/mips/generic/board-ranchu.c
16542
16543 RANDOM NUMBER DRIVER
16544 M:      "Theodore Ts'o" <tytso@mit.edu>
16545 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16546 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16547 S:      Maintained
16548 F:      drivers/char/random.c
16549 F:      drivers/virt/vmgenid.c
16550
16551 RAPIDIO SUBSYSTEM
16552 M:      Matt Porter <mporter@kernel.crashing.org>
16553 M:      Alexandre Bounine <alex.bou9@gmail.com>
16554 S:      Maintained
16555 F:      drivers/rapidio/
16556
16557 RAS INFRASTRUCTURE
16558 M:      Tony Luck <tony.luck@intel.com>
16559 M:      Borislav Petkov <bp@alien8.de>
16560 L:      linux-edac@vger.kernel.org
16561 S:      Maintained
16562 F:      Documentation/admin-guide/ras.rst
16563 F:      drivers/ras/
16564 F:      include/linux/ras.h
16565 F:      include/ras/ras_event.h
16566
16567 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16568 L:      linux-wireless@vger.kernel.org
16569 S:      Orphan
16570 F:      drivers/net/wireless/ray*
16571
16572 RC-CORE / LIRC FRAMEWORK
16573 M:      Sean Young <sean@mess.org>
16574 L:      linux-media@vger.kernel.org
16575 S:      Maintained
16576 W:      http://linuxtv.org
16577 T:      git git://linuxtv.org/media_tree.git
16578 F:      Documentation/driver-api/media/rc-core.rst
16579 F:      Documentation/userspace-api/media/rc/
16580 F:      drivers/media/rc/
16581 F:      include/media/rc-map.h
16582 F:      include/media/rc-core.h
16583 F:      include/uapi/linux/lirc.h
16584
16585 RCMM REMOTE CONTROLS DECODER
16586 M:      Patrick Lerda <patrick9876@free.fr>
16587 S:      Maintained
16588 F:      drivers/media/rc/ir-rcmm-decoder.c
16589
16590 RCUTORTURE TEST FRAMEWORK
16591 M:      "Paul E. McKenney" <paulmck@kernel.org>
16592 M:      Josh Triplett <josh@joshtriplett.org>
16593 R:      Steven Rostedt <rostedt@goodmis.org>
16594 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16595 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16596 L:      rcu@vger.kernel.org
16597 S:      Supported
16598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16599 F:      tools/testing/selftests/rcutorture
16600
16601 RDACM20 Camera Sensor
16602 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16603 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16604 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16605 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16606 L:      linux-media@vger.kernel.org
16607 S:      Maintained
16608 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16609 F:      drivers/media/i2c/max9271.c
16610 F:      drivers/media/i2c/max9271.h
16611 F:      drivers/media/i2c/rdacm20.c
16612
16613 RDACM21 Camera Sensor
16614 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16615 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16616 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16617 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16618 L:      linux-media@vger.kernel.org
16619 S:      Maintained
16620 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16621 F:      drivers/media/i2c/max9271.c
16622 F:      drivers/media/i2c/max9271.h
16623 F:      drivers/media/i2c/rdacm21.c
16624
16625 RDC R-321X SoC
16626 M:      Florian Fainelli <florian@openwrt.org>
16627 S:      Maintained
16628
16629 RDC R6040 FAST ETHERNET DRIVER
16630 M:      Florian Fainelli <f.fainelli@gmail.com>
16631 L:      netdev@vger.kernel.org
16632 S:      Maintained
16633 F:      drivers/net/ethernet/rdc/r6040.c
16634
16635 RDMAVT - RDMA verbs software
16636 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16637 L:      linux-rdma@vger.kernel.org
16638 S:      Supported
16639 F:      drivers/infiniband/sw/rdmavt
16640
16641 RDS - RELIABLE DATAGRAM SOCKETS
16642 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16643 L:      netdev@vger.kernel.org
16644 L:      linux-rdma@vger.kernel.org
16645 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16646 S:      Supported
16647 W:      https://oss.oracle.com/projects/rds/
16648 F:      Documentation/networking/rds.rst
16649 F:      net/rds/
16650
16651 RDT - RESOURCE ALLOCATION
16652 M:      Fenghua Yu <fenghua.yu@intel.com>
16653 M:      Reinette Chatre <reinette.chatre@intel.com>
16654 L:      linux-kernel@vger.kernel.org
16655 S:      Supported
16656 F:      Documentation/x86/resctrl*
16657 F:      arch/x86/include/asm/resctrl.h
16658 F:      arch/x86/kernel/cpu/resctrl/
16659 F:      tools/testing/selftests/resctrl/
16660
16661 READ-COPY UPDATE (RCU)
16662 M:      "Paul E. McKenney" <paulmck@kernel.org>
16663 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
16664 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
16665 M:      Josh Triplett <josh@joshtriplett.org>
16666 R:      Steven Rostedt <rostedt@goodmis.org>
16667 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16668 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16669 R:      Joel Fernandes <joel@joelfernandes.org>
16670 L:      rcu@vger.kernel.org
16671 S:      Supported
16672 W:      http://www.rdrop.com/users/paulmck/RCU/
16673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16674 F:      Documentation/RCU/
16675 F:      include/linux/rcu*
16676 F:      kernel/rcu/
16677 X:      Documentation/RCU/torture.rst
16678 X:      include/linux/srcu*.h
16679 X:      kernel/rcu/srcu*.c
16680
16681 REAL TIME CLOCK (RTC) SUBSYSTEM
16682 M:      Alessandro Zummo <a.zummo@towertech.it>
16683 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16684 L:      linux-rtc@vger.kernel.org
16685 S:      Maintained
16686 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16688 F:      Documentation/admin-guide/rtc.rst
16689 F:      Documentation/devicetree/bindings/rtc/
16690 F:      drivers/rtc/
16691 F:      include/linux/platform_data/rtc-*
16692 F:      include/linux/rtc.h
16693 F:      include/linux/rtc/
16694 F:      include/uapi/linux/rtc.h
16695 F:      tools/testing/selftests/rtc/
16696
16697 REALTEK AUDIO CODECS
16698 M:      Oder Chiou <oder_chiou@realtek.com>
16699 S:      Maintained
16700 F:      include/sound/rt*.h
16701 F:      sound/soc/codecs/rt*
16702
16703 REALTEK OTTO WATCHDOG
16704 M:      Sander Vanheule <sander@svanheule.net>
16705 L:      linux-watchdog@vger.kernel.org
16706 S:      Maintained
16707 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16708 F:      drivers/watchdog/realtek_otto_wdt.c
16709
16710 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16711 M:      Linus Walleij <linus.walleij@linaro.org>
16712 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
16713 S:      Maintained
16714 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
16715 F:      drivers/net/dsa/realtek/*
16716
16717 REALTEK WIRELESS DRIVER (rtlwifi family)
16718 M:      Ping-Ke Shih <pkshih@realtek.com>
16719 L:      linux-wireless@vger.kernel.org
16720 S:      Maintained
16721 W:      https://wireless.wiki.kernel.org/
16722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16723 F:      drivers/net/wireless/realtek/rtlwifi/
16724
16725 REALTEK WIRELESS DRIVER (rtw88)
16726 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16727 L:      linux-wireless@vger.kernel.org
16728 S:      Maintained
16729 F:      drivers/net/wireless/realtek/rtw88/
16730
16731 REALTEK WIRELESS DRIVER (rtw89)
16732 M:      Ping-Ke Shih <pkshih@realtek.com>
16733 L:      linux-wireless@vger.kernel.org
16734 S:      Maintained
16735 F:      drivers/net/wireless/realtek/rtw89/
16736
16737 REDPINE WIRELESS DRIVER
16738 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16739 M:      Siva Rebbagondla <siva8118@gmail.com>
16740 L:      linux-wireless@vger.kernel.org
16741 S:      Maintained
16742 F:      drivers/net/wireless/rsi/
16743
16744 REGISTER MAP ABSTRACTION
16745 M:      Mark Brown <broonie@kernel.org>
16746 L:      linux-kernel@vger.kernel.org
16747 S:      Supported
16748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16749 F:      Documentation/devicetree/bindings/regmap/
16750 F:      drivers/base/regmap/
16751 F:      include/linux/regmap.h
16752
16753 REISERFS FILE SYSTEM
16754 L:      reiserfs-devel@vger.kernel.org
16755 S:      Supported
16756 F:      fs/reiserfs/
16757
16758 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16759 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16760 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16761 L:      linux-remoteproc@vger.kernel.org
16762 S:      Maintained
16763 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16764 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16765 F:      Documentation/devicetree/bindings/remoteproc/
16766 F:      Documentation/staging/remoteproc.rst
16767 F:      drivers/remoteproc/
16768 F:      include/linux/remoteproc.h
16769 F:      include/linux/remoteproc/
16770
16771 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16772 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16773 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16774 L:      linux-remoteproc@vger.kernel.org
16775 S:      Maintained
16776 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16777 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16778 F:      Documentation/staging/rpmsg.rst
16779 F:      drivers/rpmsg/
16780 F:      include/linux/rpmsg.h
16781 F:      include/linux/rpmsg/
16782 F:      include/uapi/linux/rpmsg.h
16783 F:      samples/rpmsg/
16784
16785 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16786 M:      Stephan Gerhold <stephan@gerhold.net>
16787 L:      netdev@vger.kernel.org
16788 L:      linux-remoteproc@vger.kernel.org
16789 S:      Maintained
16790 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16791
16792 RENESAS CLOCK DRIVERS
16793 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16794 L:      linux-renesas-soc@vger.kernel.org
16795 S:      Supported
16796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16797 F:      Documentation/devicetree/bindings/clock/renesas,*
16798 F:      drivers/clk/renesas/
16799
16800 RENESAS EMEV2 I2C DRIVER
16801 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16802 L:      linux-renesas-soc@vger.kernel.org
16803 S:      Supported
16804 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16805 F:      drivers/i2c/busses/i2c-emev2.c
16806
16807 RENESAS ETHERNET DRIVERS
16808 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16809 L:      netdev@vger.kernel.org
16810 L:      linux-renesas-soc@vger.kernel.org
16811 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16812 F:      drivers/net/ethernet/renesas/
16813 F:      include/linux/sh_eth.h
16814
16815 RENESAS R-CAR GYROADC DRIVER
16816 M:      Marek Vasut <marek.vasut@gmail.com>
16817 L:      linux-iio@vger.kernel.org
16818 S:      Supported
16819 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16820 F:      drivers/iio/adc/rcar-gyroadc.c
16821
16822 RENESAS R-CAR I2C DRIVERS
16823 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16824 L:      linux-renesas-soc@vger.kernel.org
16825 S:      Supported
16826 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16827 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16828 F:      drivers/i2c/busses/i2c-rcar.c
16829 F:      drivers/i2c/busses/i2c-sh_mobile.c
16830
16831 RENESAS R-CAR SATA DRIVER
16832 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16833 S:      Supported
16834 L:      linux-ide@vger.kernel.org
16835 L:      linux-renesas-soc@vger.kernel.org
16836 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
16837 F:      drivers/ata/sata_rcar.c
16838
16839 RENESAS R-CAR THERMAL DRIVERS
16840 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16841 L:      linux-renesas-soc@vger.kernel.org
16842 S:      Supported
16843 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16844 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16845 F:      drivers/thermal/rcar_gen3_thermal.c
16846 F:      drivers/thermal/rcar_thermal.c
16847
16848 RENESAS RIIC DRIVER
16849 M:      Chris Brandt <chris.brandt@renesas.com>
16850 L:      linux-renesas-soc@vger.kernel.org
16851 S:      Supported
16852 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16853 F:      drivers/i2c/busses/i2c-riic.c
16854
16855 RENESAS USB PHY DRIVER
16856 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16857 L:      linux-renesas-soc@vger.kernel.org
16858 S:      Maintained
16859 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16860
16861 RENESAS RZ/G2L A/D DRIVER
16862 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16863 L:      linux-iio@vger.kernel.org
16864 L:      linux-renesas-soc@vger.kernel.org
16865 S:      Supported
16866 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16867 F:      drivers/iio/adc/rzg2l_adc.c
16868
16869 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
16870 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16871 L:      linux-mtd@lists.infradead.org
16872 L:      linux-renesas-soc@vger.kernel.org
16873 S:      Maintained
16874 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
16875 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
16876
16877 RESET CONTROLLER FRAMEWORK
16878 M:      Philipp Zabel <p.zabel@pengutronix.de>
16879 S:      Maintained
16880 T:      git git://git.pengutronix.de/git/pza/linux
16881 F:      Documentation/devicetree/bindings/reset/
16882 F:      Documentation/driver-api/reset.rst
16883 F:      drivers/reset/
16884 F:      include/dt-bindings/reset/
16885 F:      include/linux/reset-controller.h
16886 F:      include/linux/reset.h
16887 F:      include/linux/reset/
16888 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16889
16890 RESTARTABLE SEQUENCES SUPPORT
16891 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16892 M:      Peter Zijlstra <peterz@infradead.org>
16893 M:      "Paul E. McKenney" <paulmck@kernel.org>
16894 M:      Boqun Feng <boqun.feng@gmail.com>
16895 L:      linux-kernel@vger.kernel.org
16896 S:      Supported
16897 F:      include/trace/events/rseq.h
16898 F:      include/uapi/linux/rseq.h
16899 F:      kernel/rseq.c
16900 F:      tools/testing/selftests/rseq/
16901
16902 RFKILL
16903 M:      Johannes Berg <johannes@sipsolutions.net>
16904 L:      linux-wireless@vger.kernel.org
16905 S:      Maintained
16906 W:      https://wireless.wiki.kernel.org/
16907 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
16908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
16909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
16910 F:      Documentation/ABI/stable/sysfs-class-rfkill
16911 F:      Documentation/driver-api/rfkill.rst
16912 F:      include/linux/rfkill.h
16913 F:      include/uapi/linux/rfkill.h
16914 F:      net/rfkill/
16915
16916 RHASHTABLE
16917 M:      Thomas Graf <tgraf@suug.ch>
16918 M:      Herbert Xu <herbert@gondor.apana.org.au>
16919 L:      netdev@vger.kernel.org
16920 S:      Maintained
16921 F:      include/linux/rhashtable-types.h
16922 F:      include/linux/rhashtable.h
16923 F:      lib/rhashtable.c
16924 F:      lib/test_rhashtable.c
16925
16926 RICOH R5C592 MEMORYSTICK DRIVER
16927 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16928 S:      Maintained
16929 F:      drivers/memstick/host/r592.*
16930
16931 RICOH SMARTMEDIA/XD DRIVER
16932 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16933 S:      Maintained
16934 F:      drivers/mtd/nand/raw/r852.c
16935 F:      drivers/mtd/nand/raw/r852.h
16936
16937 RISC-V PMU DRIVERS
16938 M:      Atish Patra <atishp@atishpatra.org>
16939 R:      Anup Patel <anup@brainfault.org>
16940 L:      linux-riscv@lists.infradead.org
16941 S:      Supported
16942 F:      drivers/perf/riscv_pmu.c
16943 F:      drivers/perf/riscv_pmu_legacy.c
16944 F:      drivers/perf/riscv_pmu_sbi.c
16945
16946 RISC-V ARCHITECTURE
16947 M:      Paul Walmsley <paul.walmsley@sifive.com>
16948 M:      Palmer Dabbelt <palmer@dabbelt.com>
16949 M:      Albert Ou <aou@eecs.berkeley.edu>
16950 L:      linux-riscv@lists.infradead.org
16951 S:      Supported
16952 P:      Documentation/riscv/patch-acceptance.rst
16953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16954 F:      arch/riscv/
16955 N:      riscv
16956 K:      riscv
16957
16958 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16959 M:      Lewis Hanly <lewis.hanly@microchip.com>
16960 M:      Conor Dooley <conor.dooley@microchip.com>
16961 L:      linux-riscv@lists.infradead.org
16962 S:      Supported
16963 F:      arch/riscv/boot/dts/microchip/
16964 F:      drivers/mailbox/mailbox-mpfs.c
16965 F:      drivers/soc/microchip/
16966 F:      include/soc/microchip/mpfs.h
16967
16968 RNBD BLOCK DRIVERS
16969 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16970 M:      Jack Wang <jinpu.wang@ionos.com>
16971 L:      linux-block@vger.kernel.org
16972 S:      Maintained
16973 F:      drivers/block/rnbd/
16974
16975 ROCCAT DRIVERS
16976 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16977 S:      Maintained
16978 W:      http://sourceforge.net/projects/roccat/
16979 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16980 F:      drivers/hid/hid-roccat*
16981 F:      include/linux/hid-roccat*
16982
16983 ROCKCHIP I2S TDM DRIVER
16984 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16985 L:      linux-rockchip@lists.infradead.org
16986 S:      Maintained
16987 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16988 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16989
16990 ROCKCHIP ISP V1 DRIVER
16991 M:      Dafna Hirschfeld <dafna@fastmail.com>
16992 L:      linux-media@vger.kernel.org
16993 L:      linux-rockchip@lists.infradead.org
16994 S:      Maintained
16995 F:      Documentation/admin-guide/media/rkisp1.rst
16996 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16997 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16998 F:      drivers/media/platform/rockchip/rkisp1
16999 F:      include/uapi/linux/rkisp1-config.h
17000
17001 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17002 M:      Jacob Chen <jacob-chen@iotwrt.com>
17003 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17004 L:      linux-media@vger.kernel.org
17005 L:      linux-rockchip@lists.infradead.org
17006 S:      Maintained
17007 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17008 F:      drivers/media/platform/rockchip/rga/
17009
17010 ROCKCHIP VIDEO DECODER DRIVER
17011 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17012 L:      linux-media@vger.kernel.org
17013 L:      linux-rockchip@lists.infradead.org
17014 S:      Maintained
17015 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17016 F:      drivers/staging/media/rkvdec/
17017
17018 ROCKER DRIVER
17019 M:      Jiri Pirko <jiri@resnulli.us>
17020 L:      netdev@vger.kernel.org
17021 S:      Supported
17022 F:      drivers/net/ethernet/rocker/
17023
17024 ROCKETPORT EXPRESS/INFINITY DRIVER
17025 M:      Kevin Cernekee <cernekee@gmail.com>
17026 L:      linux-serial@vger.kernel.org
17027 S:      Odd Fixes
17028 F:      drivers/tty/serial/rp2.*
17029
17030 ROHM BD99954 CHARGER IC
17031 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17032 S:      Supported
17033 F:      drivers/power/supply/bd99954-charger.c
17034 F:      drivers/power/supply/bd99954-charger.h
17035
17036 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17037 M:      Tomasz Duszynski <tduszyns@gmail.com>
17038 S:      Maintained
17039 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17040 F:      drivers/iio/light/bh1750.c
17041
17042 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17043 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17044 L:      linux-kernel@vger.kernel.org
17045 L:      linux-renesas-soc@vger.kernel.org
17046 S:      Supported
17047 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17048 F:      drivers/gpio/gpio-bd9571mwv.c
17049 F:      drivers/mfd/bd9571mwv.c
17050 F:      drivers/regulator/bd9571mwv-regulator.c
17051 F:      include/linux/mfd/bd9571mwv.h
17052
17053 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17054 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17055 S:      Supported
17056 F:      drivers/clk/clk-bd718x7.c
17057 F:      drivers/gpio/gpio-bd71815.c
17058 F:      drivers/gpio/gpio-bd71828.c
17059 F:      drivers/mfd/rohm-bd71828.c
17060 F:      drivers/mfd/rohm-bd718x7.c
17061 F:      drivers/mfd/rohm-bd9576.c
17062 F:      drivers/regulator/bd71815-regulator.c
17063 F:      drivers/regulator/bd71828-regulator.c
17064 F:      drivers/regulator/bd718x7-regulator.c
17065 F:      drivers/regulator/bd9576-regulator.c
17066 F:      drivers/regulator/rohm-regulator.c
17067 F:      drivers/rtc/rtc-bd70528.c
17068 F:      drivers/watchdog/bd9576_wdt.c
17069 F:      include/linux/mfd/rohm-bd71815.h
17070 F:      include/linux/mfd/rohm-bd71828.h
17071 F:      include/linux/mfd/rohm-bd718x7.h
17072 F:      include/linux/mfd/rohm-bd957x.h
17073 F:      include/linux/mfd/rohm-generic.h
17074 F:      include/linux/mfd/rohm-shared.h
17075
17076 ROSE NETWORK LAYER
17077 M:      Ralf Baechle <ralf@linux-mips.org>
17078 L:      linux-hams@vger.kernel.org
17079 S:      Maintained
17080 W:      http://www.linux-ax25.org/
17081 F:      include/net/rose.h
17082 F:      include/uapi/linux/rose.h
17083 F:      net/rose/
17084
17085 ROTATION DRIVER FOR ALLWINNER A83T
17086 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17087 L:      linux-media@vger.kernel.org
17088 S:      Maintained
17089 T:      git git://linuxtv.org/media_tree.git
17090 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17091 F:      drivers/media/platform/sunxi/sun8i-rotate/
17092
17093 RPMSG TTY DRIVER
17094 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17095 L:      linux-remoteproc@vger.kernel.org
17096 S:      Maintained
17097 F:      drivers/tty/rpmsg_tty.c
17098
17099 RTL2830 MEDIA DRIVER
17100 M:      Antti Palosaari <crope@iki.fi>
17101 L:      linux-media@vger.kernel.org
17102 S:      Maintained
17103 W:      https://linuxtv.org
17104 W:      http://palosaari.fi/linux/
17105 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17106 T:      git git://linuxtv.org/anttip/media_tree.git
17107 F:      drivers/media/dvb-frontends/rtl2830*
17108
17109 RTL2832 MEDIA DRIVER
17110 M:      Antti Palosaari <crope@iki.fi>
17111 L:      linux-media@vger.kernel.org
17112 S:      Maintained
17113 W:      https://linuxtv.org
17114 W:      http://palosaari.fi/linux/
17115 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17116 T:      git git://linuxtv.org/anttip/media_tree.git
17117 F:      drivers/media/dvb-frontends/rtl2832*
17118
17119 RTL2832_SDR MEDIA DRIVER
17120 M:      Antti Palosaari <crope@iki.fi>
17121 L:      linux-media@vger.kernel.org
17122 S:      Maintained
17123 W:      https://linuxtv.org
17124 W:      http://palosaari.fi/linux/
17125 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17126 T:      git git://linuxtv.org/anttip/media_tree.git
17127 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17128
17129 RTL8180 WIRELESS DRIVER
17130 L:      linux-wireless@vger.kernel.org
17131 S:      Orphan
17132 W:      https://wireless.wiki.kernel.org/
17133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17134 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17135
17136 RTL8187 WIRELESS DRIVER
17137 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17138 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17139 M:      Larry Finger <Larry.Finger@lwfinger.net>
17140 L:      linux-wireless@vger.kernel.org
17141 S:      Maintained
17142 W:      https://wireless.wiki.kernel.org/
17143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17144 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17145
17146 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17147 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17148 L:      linux-wireless@vger.kernel.org
17149 S:      Maintained
17150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17151 F:      drivers/net/wireless/realtek/rtl8xxxu/
17152
17153 RTRS TRANSPORT DRIVERS
17154 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17155 M:      Jack Wang <jinpu.wang@ionos.com>
17156 L:      linux-rdma@vger.kernel.org
17157 S:      Maintained
17158 F:      drivers/infiniband/ulp/rtrs/
17159
17160 RXRPC SOCKETS (AF_RXRPC)
17161 M:      David Howells <dhowells@redhat.com>
17162 M:      Marc Dionne <marc.dionne@auristor.com>
17163 L:      linux-afs@lists.infradead.org
17164 S:      Supported
17165 W:      https://www.infradead.org/~dhowells/kafs/
17166 F:      Documentation/networking/rxrpc.rst
17167 F:      include/keys/rxrpc-type.h
17168 F:      include/net/af_rxrpc.h
17169 F:      include/trace/events/rxrpc.h
17170 F:      include/uapi/linux/rxrpc.h
17171 F:      net/rxrpc/
17172
17173 S3 SAVAGE FRAMEBUFFER DRIVER
17174 M:      Antonino Daplas <adaplas@gmail.com>
17175 L:      linux-fbdev@vger.kernel.org
17176 S:      Maintained
17177 F:      drivers/video/fbdev/savage/
17178
17179 S390
17180 M:      Heiko Carstens <hca@linux.ibm.com>
17181 M:      Vasily Gorbik <gor@linux.ibm.com>
17182 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17183 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17184 R:      Sven Schnelle <svens@linux.ibm.com>
17185 L:      linux-s390@vger.kernel.org
17186 S:      Supported
17187 W:      http://www.ibm.com/developerworks/linux/linux390/
17188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17189 F:      Documentation/driver-api/s390-drivers.rst
17190 F:      Documentation/s390/
17191 F:      arch/s390/
17192 F:      drivers/s390/
17193
17194 S390 COMMON I/O LAYER
17195 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17196 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17197 L:      linux-s390@vger.kernel.org
17198 S:      Supported
17199 W:      http://www.ibm.com/developerworks/linux/linux390/
17200 F:      drivers/s390/cio/
17201
17202 S390 DASD DRIVER
17203 M:      Stefan Haberland <sth@linux.ibm.com>
17204 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17205 L:      linux-s390@vger.kernel.org
17206 S:      Supported
17207 W:      http://www.ibm.com/developerworks/linux/linux390/
17208 F:      block/partitions/ibm.c
17209 F:      drivers/s390/block/dasd*
17210 F:      include/linux/dasd_mod.h
17211
17212 S390 IOMMU (PCI)
17213 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17214 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17215 L:      linux-s390@vger.kernel.org
17216 S:      Supported
17217 W:      http://www.ibm.com/developerworks/linux/linux390/
17218 F:      drivers/iommu/s390-iommu.c
17219
17220 S390 IUCV NETWORK LAYER
17221 M:      Alexandra Winter <wintera@linux.ibm.com>
17222 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17223 L:      linux-s390@vger.kernel.org
17224 L:      netdev@vger.kernel.org
17225 S:      Supported
17226 W:      http://www.ibm.com/developerworks/linux/linux390/
17227 F:      drivers/s390/net/*iucv*
17228 F:      include/net/iucv/
17229 F:      net/iucv/
17230
17231 S390 NETWORK DRIVERS
17232 M:      Alexandra Winter <wintera@linux.ibm.com>
17233 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17234 L:      linux-s390@vger.kernel.org
17235 L:      netdev@vger.kernel.org
17236 S:      Supported
17237 W:      http://www.ibm.com/developerworks/linux/linux390/
17238 F:      drivers/s390/net/
17239
17240 S390 PCI SUBSYSTEM
17241 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17242 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17243 L:      linux-s390@vger.kernel.org
17244 S:      Supported
17245 W:      http://www.ibm.com/developerworks/linux/linux390/
17246 F:      arch/s390/pci/
17247 F:      drivers/pci/hotplug/s390_pci_hpc.c
17248 F:      Documentation/s390/pci.rst
17249
17250 S390 VFIO AP DRIVER
17251 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17252 M:      Halil Pasic <pasic@linux.ibm.com>
17253 M:      Jason Herne <jjherne@linux.ibm.com>
17254 L:      linux-s390@vger.kernel.org
17255 S:      Supported
17256 W:      http://www.ibm.com/developerworks/linux/linux390/
17257 F:      Documentation/s390/vfio-ap.rst
17258 F:      drivers/s390/crypto/vfio_ap*
17259
17260 S390 VFIO-CCW DRIVER
17261 M:      Eric Farman <farman@linux.ibm.com>
17262 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17263 R:      Halil Pasic <pasic@linux.ibm.com>
17264 L:      linux-s390@vger.kernel.org
17265 L:      kvm@vger.kernel.org
17266 S:      Supported
17267 F:      Documentation/s390/vfio-ccw.rst
17268 F:      drivers/s390/cio/vfio_ccw*
17269 F:      include/uapi/linux/vfio_ccw.h
17270
17271 S390 VFIO-PCI DRIVER
17272 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17273 M:      Eric Farman <farman@linux.ibm.com>
17274 L:      linux-s390@vger.kernel.org
17275 L:      kvm@vger.kernel.org
17276 S:      Supported
17277 F:      drivers/vfio/pci/vfio_pci_zdev.c
17278 F:      include/uapi/linux/vfio_zdev.h
17279
17280 S390 ZCRYPT DRIVER
17281 M:      Harald Freudenberger <freude@linux.ibm.com>
17282 L:      linux-s390@vger.kernel.org
17283 S:      Supported
17284 W:      http://www.ibm.com/developerworks/linux/linux390/
17285 F:      drivers/s390/crypto/
17286
17287 S390 ZFCP DRIVER
17288 M:      Steffen Maier <maier@linux.ibm.com>
17289 M:      Benjamin Block <bblock@linux.ibm.com>
17290 L:      linux-s390@vger.kernel.org
17291 S:      Supported
17292 W:      http://www.ibm.com/developerworks/linux/linux390/
17293 F:      drivers/s390/scsi/zfcp_*
17294
17295 S3C ADC BATTERY DRIVER
17296 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17297 L:      linux-samsung-soc@vger.kernel.org
17298 S:      Odd Fixes
17299 F:      drivers/power/supply/s3c_adc_battery.c
17300 F:      include/linux/s3c_adc_battery.h
17301
17302 S3C24XX SD/MMC Driver
17303 M:      Ben Dooks <ben-linux@fluff.org>
17304 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17305 S:      Supported
17306 F:      drivers/mmc/host/s3cmci.*
17307
17308 SAA6588 RDS RECEIVER DRIVER
17309 M:      Hans Verkuil <hverkuil@xs4all.nl>
17310 L:      linux-media@vger.kernel.org
17311 S:      Odd Fixes
17312 W:      https://linuxtv.org
17313 T:      git git://linuxtv.org/media_tree.git
17314 F:      drivers/media/i2c/saa6588*
17315
17316 SAA7134 VIDEO4LINUX DRIVER
17317 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17318 L:      linux-media@vger.kernel.org
17319 S:      Odd fixes
17320 W:      https://linuxtv.org
17321 T:      git git://linuxtv.org/media_tree.git
17322 F:      Documentation/driver-api/media/drivers/saa7134*
17323 F:      drivers/media/pci/saa7134/
17324
17325 SAA7146 VIDEO4LINUX-2 DRIVER
17326 M:      Hans Verkuil <hverkuil@xs4all.nl>
17327 L:      linux-media@vger.kernel.org
17328 S:      Maintained
17329 T:      git git://linuxtv.org/media_tree.git
17330 F:      drivers/media/common/saa7146/
17331 F:      drivers/media/pci/saa7146/
17332 F:      include/media/drv-intf/saa7146*
17333
17334 SAFESETID SECURITY MODULE
17335 M:      Micah Morton <mortonm@chromium.org>
17336 S:      Supported
17337 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17338 F:      security/safesetid/
17339
17340 SAMSUNG AUDIO (ASoC) DRIVERS
17341 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17342 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17343 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17344 S:      Supported
17345 B:      mailto:linux-samsung-soc@vger.kernel.org
17346 F:      Documentation/devicetree/bindings/sound/samsung*
17347 F:      sound/soc/samsung/
17348
17349 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17350 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17351 L:      linux-crypto@vger.kernel.org
17352 L:      linux-samsung-soc@vger.kernel.org
17353 S:      Maintained
17354 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17355 F:      drivers/crypto/exynos-rng.c
17356
17357 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17358 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17359 L:      linux-samsung-soc@vger.kernel.org
17360 S:      Maintained
17361 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17362 F:      drivers/char/hw_random/exynos-trng.c
17363
17364 SAMSUNG FRAMEBUFFER DRIVER
17365 M:      Jingoo Han <jingoohan1@gmail.com>
17366 L:      linux-fbdev@vger.kernel.org
17367 S:      Maintained
17368 F:      drivers/video/fbdev/s3c-fb.c
17369
17370 SAMSUNG INTERCONNECT DRIVERS
17371 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17372 M:      Artur Świgoń <a.swigon@samsung.com>
17373 L:      linux-pm@vger.kernel.org
17374 L:      linux-samsung-soc@vger.kernel.org
17375 S:      Supported
17376 F:      drivers/interconnect/samsung/
17377
17378 SAMSUNG LAPTOP DRIVER
17379 M:      Corentin Chary <corentin.chary@gmail.com>
17380 L:      platform-driver-x86@vger.kernel.org
17381 S:      Maintained
17382 F:      drivers/platform/x86/samsung-laptop.c
17383
17384 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17385 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17386 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17387 L:      linux-kernel@vger.kernel.org
17388 L:      linux-samsung-soc@vger.kernel.org
17389 S:      Supported
17390 B:      mailto:linux-samsung-soc@vger.kernel.org
17391 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17392 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17393 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17394 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17395 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17396 F:      drivers/clk/clk-s2mps11.c
17397 F:      drivers/mfd/sec*.c
17398 F:      drivers/regulator/s2m*.c
17399 F:      drivers/regulator/s5m*.c
17400 F:      drivers/rtc/rtc-s5m.c
17401 F:      include/linux/mfd/samsung/
17402
17403 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17404 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17405 L:      linux-media@vger.kernel.org
17406 L:      linux-samsung-soc@vger.kernel.org
17407 S:      Maintained
17408 F:      drivers/media/platform/samsung/s3c-camif/
17409 F:      include/media/drv-intf/s3c_camif.h
17410
17411 SAMSUNG S3FWRN5 NFC DRIVER
17412 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17413 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17414 L:      linux-nfc@lists.01.org (subscribers-only)
17415 S:      Maintained
17416 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17417 F:      drivers/nfc/s3fwrn5
17418
17419 SAMSUNG S5C73M3 CAMERA DRIVER
17420 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17421 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17422 L:      linux-media@vger.kernel.org
17423 S:      Supported
17424 F:      drivers/media/i2c/s5c73m3/*
17425
17426 SAMSUNG S5K5BAF CAMERA DRIVER
17427 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17428 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17429 L:      linux-media@vger.kernel.org
17430 S:      Supported
17431 F:      drivers/media/i2c/s5k5baf.c
17432
17433 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17434 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17435 M:      Vladimir Zapolskiy <vz@mleia.com>
17436 L:      linux-crypto@vger.kernel.org
17437 L:      linux-samsung-soc@vger.kernel.org
17438 S:      Maintained
17439 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17440 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17441 F:      drivers/crypto/s5p-sss.c
17442
17443 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17444 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17445 L:      linux-media@vger.kernel.org
17446 S:      Supported
17447 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17448 F:      drivers/media/platform/samsung/exynos4-is/
17449
17450 SAMSUNG SOC CLOCK DRIVERS
17451 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17452 M:      Tomasz Figa <tomasz.figa@gmail.com>
17453 M:      Chanwoo Choi <cw00.choi@samsung.com>
17454 R:      Alim Akhtar <alim.akhtar@samsung.com>
17455 L:      linux-samsung-soc@vger.kernel.org
17456 S:      Supported
17457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17458 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17459 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17460 F:      drivers/clk/samsung/
17461 F:      include/dt-bindings/clock/exynos*.h
17462 F:      include/dt-bindings/clock/s3c*.h
17463 F:      include/dt-bindings/clock/s5p*.h
17464 F:      include/dt-bindings/clock/samsung,*.h
17465 F:      include/linux/clk/samsung.h
17466 F:      include/linux/platform_data/clk-s3c2410.h
17467
17468 SAMSUNG SPI DRIVERS
17469 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17470 M:      Andi Shyti <andi@etezian.org>
17471 L:      linux-spi@vger.kernel.org
17472 L:      linux-samsung-soc@vger.kernel.org
17473 S:      Maintained
17474 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17475 F:      drivers/spi/spi-s3c*
17476 F:      include/linux/platform_data/spi-s3c64xx.h
17477 F:      include/linux/spi/s3c24xx-fiq.h
17478
17479 SAMSUNG SXGBE DRIVERS
17480 M:      Byungho An <bh74.an@samsung.com>
17481 L:      netdev@vger.kernel.org
17482 S:      Supported
17483 F:      drivers/net/ethernet/samsung/sxgbe/
17484
17485 SAMSUNG THERMAL DRIVER
17486 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17487 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17488 L:      linux-pm@vger.kernel.org
17489 L:      linux-samsung-soc@vger.kernel.org
17490 S:      Maintained
17491 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17492 F:      drivers/thermal/samsung/
17493
17494 SAMSUNG USB2 PHY DRIVER
17495 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17496 L:      linux-kernel@vger.kernel.org
17497 S:      Supported
17498 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17499 F:      Documentation/driver-api/phy/samsung-usb2.rst
17500 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17501 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17502 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17503 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17504 F:      drivers/phy/samsung/phy-samsung-usb2.c
17505 F:      drivers/phy/samsung/phy-samsung-usb2.h
17506
17507 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17508 M:      Paul Barker <paul.barker@sancloud.com>
17509 R:      Marc Murphy <marc.murphy@sancloud.com>
17510 S:      Supported
17511 F:      arch/arm/boot/dts/am335x-sancloud*
17512
17513 SC1200 WDT DRIVER
17514 M:      Zwane Mwaikambo <zwanem@gmail.com>
17515 S:      Maintained
17516 F:      drivers/watchdog/sc1200wdt.c
17517
17518 SCHEDULER
17519 M:      Ingo Molnar <mingo@redhat.com>
17520 M:      Peter Zijlstra <peterz@infradead.org>
17521 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17522 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17523 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17524 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17525 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17526 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17527 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17528 L:      linux-kernel@vger.kernel.org
17529 S:      Maintained
17530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17531 F:      include/linux/preempt.h
17532 F:      include/linux/sched.h
17533 F:      include/linux/wait.h
17534 F:      include/uapi/linux/sched.h
17535 F:      kernel/sched/
17536
17537 SCR24X CHIP CARD INTERFACE DRIVER
17538 M:      Lubomir Rintel <lkundrak@v3.sk>
17539 S:      Supported
17540 F:      drivers/char/pcmcia/scr24x_cs.c
17541
17542 SCSI RDMA PROTOCOL (SRP) INITIATOR
17543 M:      Bart Van Assche <bvanassche@acm.org>
17544 L:      linux-rdma@vger.kernel.org
17545 S:      Supported
17546 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17547 F:      drivers/infiniband/ulp/srp/
17548 F:      include/scsi/srp.h
17549
17550 SCSI RDMA PROTOCOL (SRP) TARGET
17551 M:      Bart Van Assche <bvanassche@acm.org>
17552 L:      linux-rdma@vger.kernel.org
17553 L:      target-devel@vger.kernel.org
17554 S:      Supported
17555 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17556 F:      drivers/infiniband/ulp/srpt/
17557
17558 SCSI SG DRIVER
17559 M:      Doug Gilbert <dgilbert@interlog.com>
17560 L:      linux-scsi@vger.kernel.org
17561 S:      Maintained
17562 W:      http://sg.danny.cz/sg
17563 F:      Documentation/scsi/scsi-generic.rst
17564 F:      drivers/scsi/sg.c
17565 F:      include/scsi/sg.h
17566
17567 SCSI SUBSYSTEM
17568 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17569 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17570 L:      linux-scsi@vger.kernel.org
17571 S:      Maintained
17572 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17575 F:      Documentation/devicetree/bindings/scsi/
17576 F:      drivers/scsi/
17577 F:      include/scsi/
17578
17579 SCSI TAPE DRIVER
17580 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17581 L:      linux-scsi@vger.kernel.org
17582 S:      Maintained
17583 F:      Documentation/scsi/st.rst
17584 F:      drivers/scsi/st.*
17585 F:      drivers/scsi/st_*.h
17586
17587 SCSI TARGET CORE USER DRIVER
17588 M:      Bodo Stroesser <bostroesser@gmail.com>
17589 L:      linux-scsi@vger.kernel.org
17590 L:      target-devel@vger.kernel.org
17591 S:      Supported
17592 F:      Documentation/target/tcmu-design.rst
17593 F:      drivers/target/target_core_user.c
17594 F:      include/uapi/linux/target_core_user.h
17595
17596 SCSI TARGET SUBSYSTEM
17597 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17598 L:      linux-scsi@vger.kernel.org
17599 L:      target-devel@vger.kernel.org
17600 S:      Supported
17601 W:      http://www.linux-iscsi.org
17602 Q:      https://patchwork.kernel.org/project/target-devel/list/
17603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17604 F:      Documentation/target/
17605 F:      drivers/target/
17606 F:      include/target/
17607
17608 SCTP PROTOCOL
17609 M:      Vlad Yasevich <vyasevich@gmail.com>
17610 M:      Neil Horman <nhorman@tuxdriver.com>
17611 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17612 L:      linux-sctp@vger.kernel.org
17613 S:      Maintained
17614 W:      http://lksctp.sourceforge.net
17615 F:      Documentation/networking/sctp.rst
17616 F:      include/linux/sctp.h
17617 F:      include/net/sctp/
17618 F:      include/uapi/linux/sctp.h
17619 F:      net/sctp/
17620
17621 SCx200 CPU SUPPORT
17622 M:      Jim Cromie <jim.cromie@gmail.com>
17623 S:      Odd Fixes
17624 F:      Documentation/i2c/busses/scx200_acb.rst
17625 F:      arch/x86/platform/scx200/
17626 F:      drivers/i2c/busses/scx200*
17627 F:      drivers/mtd/maps/scx200_docflash.c
17628 F:      drivers/watchdog/scx200_wdt.c
17629 F:      include/linux/scx200.h
17630
17631 SCx200 GPIO DRIVER
17632 M:      Jim Cromie <jim.cromie@gmail.com>
17633 S:      Maintained
17634 F:      drivers/char/scx200_gpio.c
17635 F:      include/linux/scx200_gpio.h
17636
17637 SCx200 HRT CLOCKSOURCE DRIVER
17638 M:      Jim Cromie <jim.cromie@gmail.com>
17639 S:      Maintained
17640 F:      drivers/clocksource/scx200_hrt.c
17641
17642 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17643 M:      Sascha Sommer <saschasommer@freenet.de>
17644 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17645 S:      Maintained
17646 F:      drivers/mmc/host/sdricoh_cs.c
17647
17648 SECO BOARDS CEC DRIVER
17649 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17650 S:      Maintained
17651 F:      drivers/media/cec/platform/seco/seco-cec.c
17652 F:      drivers/media/cec/platform/seco/seco-cec.h
17653
17654 SECURE COMPUTING
17655 M:      Kees Cook <keescook@chromium.org>
17656 R:      Andy Lutomirski <luto@amacapital.net>
17657 R:      Will Drewry <wad@chromium.org>
17658 S:      Supported
17659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17660 F:      Documentation/userspace-api/seccomp_filter.rst
17661 F:      include/linux/seccomp.h
17662 F:      include/uapi/linux/seccomp.h
17663 F:      kernel/seccomp.c
17664 F:      tools/testing/selftests/kselftest_harness.h
17665 F:      tools/testing/selftests/seccomp/*
17666 K:      \bsecure_computing
17667 K:      \bTIF_SECCOMP\b
17668
17669 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17670 M:      Al Cooper <alcooperx@gmail.com>
17671 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
17672 L:      linux-mmc@vger.kernel.org
17673 S:      Maintained
17674 F:      drivers/mmc/host/sdhci-brcmstb*
17675
17676 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17677 M:      Adrian Hunter <adrian.hunter@intel.com>
17678 L:      linux-mmc@vger.kernel.org
17679 S:      Maintained
17680 F:      drivers/mmc/host/sdhci*
17681
17682 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17683 M:      Eugen Hristev <eugen.hristev@microchip.com>
17684 L:      linux-mmc@vger.kernel.org
17685 S:      Supported
17686 F:      drivers/mmc/host/sdhci-of-at91.c
17687
17688 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17689 M:      Ben Dooks <ben-linux@fluff.org>
17690 M:      Jaehoon Chung <jh80.chung@samsung.com>
17691 L:      linux-mmc@vger.kernel.org
17692 S:      Maintained
17693 F:      drivers/mmc/host/sdhci-s3c*
17694
17695 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17696 M:      Viresh Kumar <vireshk@kernel.org>
17697 L:      linux-mmc@vger.kernel.org
17698 S:      Maintained
17699 F:      drivers/mmc/host/sdhci-spear.c
17700
17701 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17702 M:      Kishon Vijay Abraham I <kishon@ti.com>
17703 L:      linux-mmc@vger.kernel.org
17704 S:      Maintained
17705 F:      drivers/mmc/host/sdhci-omap.c
17706
17707 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17708 M:      Haibo Chen <haibo.chen@nxp.com>
17709 L:      linux-imx@nxp.com
17710 L:      linux-mmc@vger.kernel.org
17711 S:      Maintained
17712 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17713
17714 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17715 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17716 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17717 L:      linux-block@vger.kernel.org
17718 S:      Supported
17719 F:      block/opal_proto.h
17720 F:      block/sed*
17721 F:      include/linux/sed*
17722 F:      include/uapi/linux/sed*
17723
17724 SECURITY CONTACT
17725 M:      Security Officers <security@kernel.org>
17726 S:      Supported
17727 F:      Documentation/admin-guide/security-bugs.rst
17728
17729 SECURITY SUBSYSTEM
17730 M:      James Morris <jmorris@namei.org>
17731 M:      "Serge E. Hallyn" <serge@hallyn.com>
17732 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17733 S:      Supported
17734 W:      http://kernsec.org/
17735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17736 F:      security/
17737 X:      security/selinux/
17738
17739 SELINUX SECURITY MODULE
17740 M:      Paul Moore <paul@paul-moore.com>
17741 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17742 M:      Eric Paris <eparis@parisplace.org>
17743 L:      selinux@vger.kernel.org
17744 S:      Supported
17745 W:      https://selinuxproject.org
17746 W:      https://github.com/SELinuxProject
17747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17748 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17749 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17750 F:      Documentation/admin-guide/LSM/SELinux.rst
17751 F:      include/trace/events/avc.h
17752 F:      include/uapi/linux/selinux_netlink.h
17753 F:      scripts/selinux/
17754 F:      security/selinux/
17755
17756 SENSABLE PHANTOM
17757 M:      Jiri Slaby <jirislaby@kernel.org>
17758 S:      Maintained
17759 F:      drivers/misc/phantom.c
17760 F:      include/uapi/linux/phantom.h
17761
17762 SENSEAIR SUNRISE 006-0-0007
17763 M:      Jacopo Mondi <jacopo@jmondi.org>
17764 S:      Maintained
17765 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17766 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17767 F:      drivers/iio/chemical/sunrise_co2.c
17768
17769 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17770 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17771 S:      Maintained
17772 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17773 F:      drivers/iio/chemical/scd30.h
17774 F:      drivers/iio/chemical/scd30_core.c
17775 F:      drivers/iio/chemical/scd30_i2c.c
17776 F:      drivers/iio/chemical/scd30_serial.c
17777
17778 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17779 M:      Roan van Dijk <roan@protonic.nl>
17780 S:      Maintained
17781 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17782 F:      drivers/iio/chemical/scd4x.c
17783
17784 SENSIRION SGP40 GAS SENSOR DRIVER
17785 M:      Andreas Klinger <ak@it-klinger.de>
17786 S:      Maintained
17787 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17788 F:      drivers/iio/chemical/sgp40.c
17789
17790 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17791 M:      Tomasz Duszynski <tduszyns@gmail.com>
17792 S:      Maintained
17793 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17794 F:      drivers/iio/chemical/sps30.c
17795 F:      drivers/iio/chemical/sps30_i2c.c
17796 F:      drivers/iio/chemical/sps30_serial.c
17797
17798 SERIAL DEVICE BUS
17799 M:      Rob Herring <robh@kernel.org>
17800 L:      linux-serial@vger.kernel.org
17801 S:      Maintained
17802 F:      Documentation/devicetree/bindings/serial/serial.yaml
17803 F:      drivers/tty/serdev/
17804 F:      include/linux/serdev.h
17805
17806 SERIAL DRIVERS
17807 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17808 L:      linux-serial@vger.kernel.org
17809 S:      Maintained
17810 F:      Documentation/devicetree/bindings/serial/
17811 F:      drivers/tty/serial/
17812
17813 SERIAL IR RECEIVER
17814 M:      Sean Young <sean@mess.org>
17815 L:      linux-media@vger.kernel.org
17816 S:      Maintained
17817 F:      drivers/media/rc/serial_ir.c
17818
17819 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17820 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17821 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17822 S:      Maintained
17823 F:      Documentation/devicetree/bindings/slimbus/
17824 F:      drivers/slimbus/
17825 F:      include/linux/slimbus.h
17826
17827 SFC NETWORK DRIVER
17828 M:      Edward Cree <ecree.xilinx@gmail.com>
17829 M:      Martin Habets <habetsm.xilinx@gmail.com>
17830 L:      netdev@vger.kernel.org
17831 S:      Supported
17832 F:      drivers/net/ethernet/sfc/
17833
17834 SFF/SFP/SFP+ MODULE SUPPORT
17835 M:      Russell King <linux@armlinux.org.uk>
17836 L:      netdev@vger.kernel.org
17837 S:      Maintained
17838 F:      drivers/net/phy/phylink.c
17839 F:      drivers/net/phy/sfp*
17840 F:      include/linux/mdio/mdio-i2c.h
17841 F:      include/linux/phylink.h
17842 F:      include/linux/sfp.h
17843 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)
17844
17845 SGI GRU DRIVER
17846 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17847 S:      Maintained
17848 F:      drivers/misc/sgi-gru/
17849
17850 SGI XP/XPC/XPNET DRIVER
17851 M:      Robin Holt <robinmholt@gmail.com>
17852 M:      Steve Wahl <steve.wahl@hpe.com>
17853 R:      Mike Travis <mike.travis@hpe.com>
17854 S:      Maintained
17855 F:      drivers/misc/sgi-xp/
17856
17857 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17858 M:      Karsten Graul <kgraul@linux.ibm.com>
17859 L:      linux-s390@vger.kernel.org
17860 S:      Supported
17861 W:      http://www.ibm.com/developerworks/linux/linux390/
17862 F:      net/smc/
17863
17864 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17865 M:      Linus Walleij <linus.walleij@linaro.org>
17866 L:      linux-iio@vger.kernel.org
17867 S:      Maintained
17868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17869 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17870 F:      drivers/iio/light/gp2ap002.c
17871
17872 SHARP RJ54N1CB0C SENSOR DRIVER
17873 M:      Jacopo Mondi <jacopo@jmondi.org>
17874 L:      linux-media@vger.kernel.org
17875 S:      Odd fixes
17876 T:      git git://linuxtv.org/media_tree.git
17877 F:      drivers/media/i2c/rj54n1cb0c.c
17878 F:      include/media/i2c/rj54n1cb0c.h
17879
17880 SH_VOU V4L2 OUTPUT DRIVER
17881 L:      linux-media@vger.kernel.org
17882 S:      Orphan
17883 F:      drivers/media/platform/renesas/sh_vou.c
17884 F:      include/media/drv-intf/sh_vou.h
17885
17886 SI2157 MEDIA DRIVER
17887 M:      Antti Palosaari <crope@iki.fi>
17888 L:      linux-media@vger.kernel.org
17889 S:      Maintained
17890 W:      https://linuxtv.org
17891 W:      http://palosaari.fi/linux/
17892 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17893 T:      git git://linuxtv.org/anttip/media_tree.git
17894 F:      drivers/media/tuners/si2157*
17895
17896 SI2165 MEDIA DRIVER
17897 M:      Matthias Schwarzott <zzam@gentoo.org>
17898 L:      linux-media@vger.kernel.org
17899 S:      Maintained
17900 W:      https://linuxtv.org
17901 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17902 F:      drivers/media/dvb-frontends/si2165*
17903
17904 SI2168 MEDIA DRIVER
17905 M:      Antti Palosaari <crope@iki.fi>
17906 L:      linux-media@vger.kernel.org
17907 S:      Maintained
17908 W:      https://linuxtv.org
17909 W:      http://palosaari.fi/linux/
17910 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17911 T:      git git://linuxtv.org/anttip/media_tree.git
17912 F:      drivers/media/dvb-frontends/si2168*
17913
17914 SI470X FM RADIO RECEIVER I2C DRIVER
17915 M:      Hans Verkuil <hverkuil@xs4all.nl>
17916 L:      linux-media@vger.kernel.org
17917 S:      Odd Fixes
17918 W:      https://linuxtv.org
17919 T:      git git://linuxtv.org/media_tree.git
17920 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17921
17922 SI470X FM RADIO RECEIVER USB DRIVER
17923 M:      Hans Verkuil <hverkuil@xs4all.nl>
17924 L:      linux-media@vger.kernel.org
17925 S:      Maintained
17926 W:      https://linuxtv.org
17927 T:      git git://linuxtv.org/media_tree.git
17928 F:      drivers/media/radio/si470x/radio-si470x-common.c
17929 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17930 F:      drivers/media/radio/si470x/radio-si470x.h
17931
17932 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17933 M:      Eduardo Valentin <edubezval@gmail.com>
17934 L:      linux-media@vger.kernel.org
17935 S:      Odd Fixes
17936 W:      https://linuxtv.org
17937 T:      git git://linuxtv.org/media_tree.git
17938 F:      drivers/media/radio/si4713/si4713.?
17939
17940 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17941 M:      Eduardo Valentin <edubezval@gmail.com>
17942 L:      linux-media@vger.kernel.org
17943 S:      Odd Fixes
17944 W:      https://linuxtv.org
17945 T:      git git://linuxtv.org/media_tree.git
17946 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17947
17948 SI4713 FM RADIO TRANSMITTER USB DRIVER
17949 M:      Hans Verkuil <hverkuil@xs4all.nl>
17950 L:      linux-media@vger.kernel.org
17951 S:      Maintained
17952 W:      https://linuxtv.org
17953 T:      git git://linuxtv.org/media_tree.git
17954 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17955
17956 SIANO DVB DRIVER
17957 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17958 L:      linux-media@vger.kernel.org
17959 S:      Odd fixes
17960 W:      https://linuxtv.org
17961 T:      git git://linuxtv.org/media_tree.git
17962 F:      drivers/media/common/siano/
17963 F:      drivers/media/mmc/siano/
17964 F:      drivers/media/usb/siano/
17965 F:      drivers/media/usb/siano/
17966
17967 SIFIVE DRIVERS
17968 M:      Palmer Dabbelt <palmer@dabbelt.com>
17969 M:      Paul Walmsley <paul.walmsley@sifive.com>
17970 L:      linux-riscv@lists.infradead.org
17971 S:      Supported
17972 T:      git git://github.com/sifive/riscv-linux.git
17973 N:      sifive
17974 K:      [^@]sifive
17975
17976 SIFIVE FU540 SYSTEM-ON-CHIP
17977 M:      Paul Walmsley <paul.walmsley@sifive.com>
17978 M:      Palmer Dabbelt <palmer@dabbelt.com>
17979 L:      linux-riscv@lists.infradead.org
17980 S:      Supported
17981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17982 N:      fu540
17983 K:      fu540
17984
17985 SIFIVE PDMA DRIVER
17986 M:      Green Wan <green.wan@sifive.com>
17987 S:      Maintained
17988 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17989 F:      drivers/dma/sf-pdma/
17990
17991 SILEAD TOUCHSCREEN DRIVER
17992 M:      Hans de Goede <hdegoede@redhat.com>
17993 L:      linux-input@vger.kernel.org
17994 L:      platform-driver-x86@vger.kernel.org
17995 S:      Maintained
17996 F:      drivers/input/touchscreen/silead.c
17997 F:      drivers/platform/x86/touchscreen_dmi.c
17998
17999 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18000 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18001 S:      Supported
18002 F:      Documentation/devicetree/bindings/staging/net/wireless/silabs,wfx.yaml
18003 F:      drivers/staging/wfx/
18004
18005 SILICON MOTION SM712 FRAME BUFFER DRIVER
18006 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18007 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18008 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18009 L:      linux-fbdev@vger.kernel.org
18010 S:      Maintained
18011 F:      Documentation/fb/sm712fb.rst
18012 F:      drivers/video/fbdev/sm712*
18013
18014 SILVACO I3C DUAL-ROLE MASTER
18015 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18016 M:      Conor Culhane <conor.culhane@silvaco.com>
18017 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18018 S:      Maintained
18019 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18020 F:      drivers/i3c/master/svc-i3c-master.c
18021
18022 SIMPLEFB FB DRIVER
18023 M:      Hans de Goede <hdegoede@redhat.com>
18024 L:      linux-fbdev@vger.kernel.org
18025 S:      Maintained
18026 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18027 F:      drivers/video/fbdev/simplefb.c
18028 F:      include/linux/platform_data/simplefb.h
18029
18030 SIMTEC EB110ATX (Chalice CATS)
18031 M:      Simtec Linux Team <linux@simtec.co.uk>
18032 S:      Supported
18033 W:      http://www.simtec.co.uk/products/EB110ATX/
18034
18035 SIMTEC EB2410ITX (BAST)
18036 M:      Simtec Linux Team <linux@simtec.co.uk>
18037 S:      Supported
18038 W:      http://www.simtec.co.uk/products/EB2410ITX/
18039 F:      arch/arm/mach-s3c/bast-ide.c
18040 F:      arch/arm/mach-s3c/bast-irq.c
18041 F:      arch/arm/mach-s3c/mach-bast.c
18042
18043 SIOX
18044 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18045 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18046 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18047 S:      Supported
18048 F:      drivers/gpio/gpio-siox.c
18049 F:      drivers/siox/*
18050 F:      include/trace/events/siox.h
18051
18052 SIPHASH PRF ROUTINES
18053 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18054 S:      Maintained
18055 F:      include/linux/siphash.h
18056 F:      lib/siphash.c
18057 F:      lib/test_siphash.c
18058
18059 SIS 190 ETHERNET DRIVER
18060 M:      Francois Romieu <romieu@fr.zoreil.com>
18061 L:      netdev@vger.kernel.org
18062 S:      Maintained
18063 F:      drivers/net/ethernet/sis/sis190.c
18064
18065 SIS 900/7016 FAST ETHERNET DRIVER
18066 M:      Daniele Venzano <venza@brownhat.org>
18067 L:      netdev@vger.kernel.org
18068 S:      Maintained
18069 W:      http://www.brownhat.org/sis900.html
18070 F:      drivers/net/ethernet/sis/sis900.*
18071
18072 SIS FRAMEBUFFER DRIVER
18073 M:      Thomas Winischhofer <thomas@winischhofer.net>
18074 S:      Maintained
18075 W:      http://www.winischhofer.net/linuxsisvga.shtml
18076 F:      Documentation/fb/sisfb.rst
18077 F:      drivers/video/fbdev/sis/
18078 F:      include/video/sisfb.h
18079
18080 SIS I2C TOUCHSCREEN DRIVER
18081 M:      Mika Penttilä <mika.penttila@nextfour.com>
18082 L:      linux-input@vger.kernel.org
18083 S:      Maintained
18084 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18085 F:      drivers/input/touchscreen/sis_i2c.c
18086
18087 SIS USB2VGA DRIVER
18088 M:      Thomas Winischhofer <thomas@winischhofer.net>
18089 S:      Maintained
18090 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18091 F:      drivers/usb/misc/sisusbvga/
18092
18093 SL28 CPLD MFD DRIVER
18094 M:      Michael Walle <michael@walle.cc>
18095 S:      Maintained
18096 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18097 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18098 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18099 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18100 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18101 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18102 F:      drivers/gpio/gpio-sl28cpld.c
18103 F:      drivers/hwmon/sl28cpld-hwmon.c
18104 F:      drivers/irqchip/irq-sl28cpld.c
18105 F:      drivers/pwm/pwm-sl28cpld.c
18106 F:      drivers/watchdog/sl28cpld_wdt.c
18107
18108 SLAB ALLOCATOR
18109 M:      Christoph Lameter <cl@linux.com>
18110 M:      Pekka Enberg <penberg@kernel.org>
18111 M:      David Rientjes <rientjes@google.com>
18112 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18113 M:      Andrew Morton <akpm@linux-foundation.org>
18114 M:      Vlastimil Babka <vbabka@suse.cz>
18115 R:      Roman Gushchin <roman.gushchin@linux.dev>
18116 L:      linux-mm@kvack.org
18117 S:      Maintained
18118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18119 F:      include/linux/sl?b*.h
18120 F:      mm/sl?b*
18121
18122 SLEEPABLE READ-COPY UPDATE (SRCU)
18123 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18124 M:      "Paul E. McKenney" <paulmck@kernel.org>
18125 M:      Josh Triplett <josh@joshtriplett.org>
18126 R:      Steven Rostedt <rostedt@goodmis.org>
18127 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18128 L:      rcu@vger.kernel.org
18129 S:      Supported
18130 W:      http://www.rdrop.com/users/paulmck/RCU/
18131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18132 F:      include/linux/srcu*.h
18133 F:      kernel/rcu/srcu*.c
18134
18135 SMACK SECURITY MODULE
18136 M:      Casey Schaufler <casey@schaufler-ca.com>
18137 L:      linux-security-module@vger.kernel.org
18138 S:      Maintained
18139 W:      http://schaufler-ca.com
18140 T:      git git://github.com/cschaufler/smack-next
18141 F:      Documentation/admin-guide/LSM/Smack.rst
18142 F:      security/smack/
18143
18144 SMC91x ETHERNET DRIVER
18145 M:      Nicolas Pitre <nico@fluxnic.net>
18146 S:      Odd Fixes
18147 F:      drivers/net/ethernet/smsc/smc91x.*
18148
18149 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18150 M:      Mark Rutland <mark.rutland@arm.com>
18151 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
18152 M:      Sudeep Holla <sudeep.holla@arm.com>
18153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18154 S:      Maintained
18155 F:      drivers/firmware/smccc/
18156 F:      include/linux/arm-smccc.h
18157
18158 SMM665 HARDWARE MONITOR DRIVER
18159 M:      Guenter Roeck <linux@roeck-us.net>
18160 L:      linux-hwmon@vger.kernel.org
18161 S:      Maintained
18162 F:      Documentation/hwmon/smm665.rst
18163 F:      drivers/hwmon/smm665.c
18164
18165 SMSC EMC2103 HARDWARE MONITOR DRIVER
18166 M:      Steve Glendinning <steve.glendinning@shawell.net>
18167 L:      linux-hwmon@vger.kernel.org
18168 S:      Maintained
18169 F:      Documentation/hwmon/emc2103.rst
18170 F:      drivers/hwmon/emc2103.c
18171
18172 SMSC SCH5627 HARDWARE MONITOR DRIVER
18173 M:      Hans de Goede <hdegoede@redhat.com>
18174 L:      linux-hwmon@vger.kernel.org
18175 S:      Supported
18176 F:      Documentation/hwmon/sch5627.rst
18177 F:      drivers/hwmon/sch5627.c
18178
18179 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18180 M:      Steve Glendinning <steve.glendinning@shawell.net>
18181 L:      linux-fbdev@vger.kernel.org
18182 S:      Maintained
18183 F:      drivers/video/fbdev/smscufx.c
18184
18185 SMSC47B397 HARDWARE MONITOR DRIVER
18186 M:      Jean Delvare <jdelvare@suse.com>
18187 L:      linux-hwmon@vger.kernel.org
18188 S:      Maintained
18189 F:      Documentation/hwmon/smsc47b397.rst
18190 F:      drivers/hwmon/smsc47b397.c
18191
18192 SMSC911x ETHERNET DRIVER
18193 M:      Steve Glendinning <steve.glendinning@shawell.net>
18194 L:      netdev@vger.kernel.org
18195 S:      Maintained
18196 F:      drivers/net/ethernet/smsc/smsc911x.*
18197 F:      include/linux/smsc911x.h
18198
18199 SMSC9420 PCI ETHERNET DRIVER
18200 M:      Steve Glendinning <steve.glendinning@shawell.net>
18201 L:      netdev@vger.kernel.org
18202 S:      Maintained
18203 F:      drivers/net/ethernet/smsc/smsc9420.*
18204
18205 SOCIONEXT (SNI) AVE NETWORK DRIVER
18206 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18207 L:      netdev@vger.kernel.org
18208 S:      Maintained
18209 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18210 F:      drivers/net/ethernet/socionext/sni_ave.c
18211
18212 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18213 M:      Jassi Brar <jaswinder.singh@linaro.org>
18214 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18215 L:      netdev@vger.kernel.org
18216 S:      Maintained
18217 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18218 F:      drivers/net/ethernet/socionext/netsec.c
18219
18220 SOCIONEXT (SNI) Synquacer SPI DRIVER
18221 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18222 M:      Jassi Brar <jaswinder.singh@linaro.org>
18223 L:      linux-spi@vger.kernel.org
18224 S:      Maintained
18225 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18226 F:      drivers/spi/spi-synquacer.c
18227
18228 SOCIONEXT SYNQUACER I2C DRIVER
18229 M:      Ard Biesheuvel <ardb@kernel.org>
18230 L:      linux-i2c@vger.kernel.org
18231 S:      Maintained
18232 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18233 F:      drivers/i2c/busses/i2c-synquacer.c
18234
18235 SOCIONEXT UNIPHIER SOUND DRIVER
18236 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18237 S:      Orphan
18238 F:      sound/soc/uniphier/
18239
18240 SOEKRIS NET48XX LED SUPPORT
18241 M:      Chris Boot <bootc@bootc.net>
18242 S:      Maintained
18243 F:      drivers/leds/leds-net48xx.c
18244
18245 SOFT-IWARP DRIVER (siw)
18246 M:      Bernard Metzler <bmt@zurich.ibm.com>
18247 L:      linux-rdma@vger.kernel.org
18248 S:      Supported
18249 F:      drivers/infiniband/sw/siw/
18250 F:      include/uapi/rdma/siw-abi.h
18251
18252 SOFT-ROCE DRIVER (rxe)
18253 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18254 L:      linux-rdma@vger.kernel.org
18255 S:      Supported
18256 F:      drivers/infiniband/sw/rxe/
18257 F:      include/uapi/rdma/rdma_user_rxe.h
18258
18259 SOFTLOGIC 6x10 MPEG CODEC
18260 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18261 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18262 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18263 M:      Ismael Luceno <ismael@iodev.co.uk>
18264 L:      linux-media@vger.kernel.org
18265 S:      Supported
18266 F:      drivers/media/pci/solo6x10/
18267
18268 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18269 M:      James Morse <james.morse@arm.com>
18270 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18271 S:      Maintained
18272 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18273 F:      drivers/firmware/arm_sdei.c
18274 F:      include/linux/arm_sdei.h
18275 F:      include/uapi/linux/arm_sdei.h
18276
18277 SOFTWARE NODES AND DEVICE PROPERTIES
18278 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18279 R:      Daniel Scally <djrscally@gmail.com>
18280 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18281 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18282 L:      linux-acpi@vger.kernel.org
18283 S:      Maintained
18284 F:      drivers/base/property.c
18285 F:      drivers/base/swnode.c
18286 F:      include/linux/fwnode.h
18287 F:      include/linux/property.h
18288
18289 SOFTWARE RAID (Multiple Disks) SUPPORT
18290 M:      Song Liu <song@kernel.org>
18291 L:      linux-raid@vger.kernel.org
18292 S:      Supported
18293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18294 F:      drivers/md/Kconfig
18295 F:      drivers/md/Makefile
18296 F:      drivers/md/md*
18297 F:      drivers/md/raid*
18298 F:      include/linux/raid/
18299 F:      include/uapi/linux/raid/
18300
18301 SOLIDRUN CLEARFOG SUPPORT
18302 M:      Russell King <linux@armlinux.org.uk>
18303 S:      Maintained
18304 F:      arch/arm/boot/dts/armada-388-clearfog*
18305 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18306
18307 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18308 M:      Russell King <linux@armlinux.org.uk>
18309 S:      Maintained
18310 F:      arch/arm/boot/dts/imx6*-cubox-i*
18311 F:      arch/arm/boot/dts/imx6*-hummingboard*
18312 F:      arch/arm/boot/dts/imx6*-sr-*
18313
18314 SONIC NETWORK DRIVER
18315 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18316 L:      netdev@vger.kernel.org
18317 S:      Maintained
18318 F:      drivers/net/ethernet/natsemi/sonic.*
18319
18320 SONICS SILICON BACKPLANE DRIVER (SSB)
18321 M:      Michael Buesch <m@bues.ch>
18322 L:      linux-wireless@vger.kernel.org
18323 S:      Maintained
18324 F:      drivers/ssb/
18325 F:      include/linux/ssb/
18326
18327 SONY IMX208 SENSOR DRIVER
18328 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18329 L:      linux-media@vger.kernel.org
18330 S:      Maintained
18331 T:      git git://linuxtv.org/media_tree.git
18332 F:      drivers/media/i2c/imx208.c
18333
18334 SONY IMX214 SENSOR DRIVER
18335 M:      Ricardo Ribalda <ribalda@kernel.org>
18336 L:      linux-media@vger.kernel.org
18337 S:      Maintained
18338 T:      git git://linuxtv.org/media_tree.git
18339 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18340 F:      drivers/media/i2c/imx214.c
18341
18342 SONY IMX219 SENSOR DRIVER
18343 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18344 L:      linux-media@vger.kernel.org
18345 S:      Maintained
18346 T:      git git://linuxtv.org/media_tree.git
18347 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18348 F:      drivers/media/i2c/imx219.c
18349
18350 SONY IMX258 SENSOR DRIVER
18351 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18352 L:      linux-media@vger.kernel.org
18353 S:      Maintained
18354 T:      git git://linuxtv.org/media_tree.git
18355 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18356 F:      drivers/media/i2c/imx258.c
18357
18358 SONY IMX274 SENSOR DRIVER
18359 M:      Leon Luo <leonl@leopardimaging.com>
18360 L:      linux-media@vger.kernel.org
18361 S:      Maintained
18362 T:      git git://linuxtv.org/media_tree.git
18363 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18364 F:      drivers/media/i2c/imx274.c
18365
18366 SONY IMX290 SENSOR DRIVER
18367 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18368 L:      linux-media@vger.kernel.org
18369 S:      Maintained
18370 T:      git git://linuxtv.org/media_tree.git
18371 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18372 F:      drivers/media/i2c/imx290.c
18373
18374 SONY IMX319 SENSOR DRIVER
18375 M:      Bingbu Cao <bingbu.cao@intel.com>
18376 L:      linux-media@vger.kernel.org
18377 S:      Maintained
18378 T:      git git://linuxtv.org/media_tree.git
18379 F:      drivers/media/i2c/imx319.c
18380
18381 SONY IMX334 SENSOR DRIVER
18382 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18383 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18384 L:      linux-media@vger.kernel.org
18385 S:      Maintained
18386 T:      git git://linuxtv.org/media_tree.git
18387 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18388 F:      drivers/media/i2c/imx334.c
18389
18390 SONY IMX335 SENSOR DRIVER
18391 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18392 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18393 L:      linux-media@vger.kernel.org
18394 S:      Maintained
18395 T:      git git://linuxtv.org/media_tree.git
18396 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18397 F:      drivers/media/i2c/imx335.c
18398
18399 SONY IMX355 SENSOR DRIVER
18400 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18401 L:      linux-media@vger.kernel.org
18402 S:      Maintained
18403 T:      git git://linuxtv.org/media_tree.git
18404 F:      drivers/media/i2c/imx355.c
18405
18406 SONY IMX412 SENSOR DRIVER
18407 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18408 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18409 L:      linux-media@vger.kernel.org
18410 S:      Maintained
18411 T:      git git://linuxtv.org/media_tree.git
18412 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18413 F:      drivers/media/i2c/imx412.c
18414
18415 SONY MEMORYSTICK SUBSYSTEM
18416 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18417 M:      Alex Dubov <oakad@yahoo.com>
18418 M:      Ulf Hansson <ulf.hansson@linaro.org>
18419 L:      linux-mmc@vger.kernel.org
18420 S:      Maintained
18421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18422 F:      drivers/memstick/
18423 F:      include/linux/memstick.h
18424
18425 SONY VAIO CONTROL DEVICE DRIVER
18426 M:      Mattia Dongili <malattia@linux.it>
18427 L:      platform-driver-x86@vger.kernel.org
18428 S:      Maintained
18429 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18430 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18431 F:      drivers/char/sonypi.c
18432 F:      drivers/platform/x86/sony-laptop.c
18433 F:      include/linux/sony-laptop.h
18434
18435 SOUND
18436 M:      Jaroslav Kysela <perex@perex.cz>
18437 M:      Takashi Iwai <tiwai@suse.com>
18438 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18439 S:      Maintained
18440 W:      http://www.alsa-project.org/
18441 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18443 F:      Documentation/sound/
18444 F:      include/sound/
18445 F:      include/uapi/sound/
18446 F:      sound/
18447 F:      tools/testing/selftests/alsa
18448
18449 SOUND - COMPRESSED AUDIO
18450 M:      Vinod Koul <vkoul@kernel.org>
18451 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18452 S:      Supported
18453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18454 F:      Documentation/sound/designs/compress-offload.rst
18455 F:      include/sound/compress_driver.h
18456 F:      include/uapi/sound/compress_*
18457 F:      sound/core/compress_offload.c
18458 F:      sound/soc/soc-compress.c
18459
18460 SOUND - DMAENGINE HELPERS
18461 M:      Lars-Peter Clausen <lars@metafoo.de>
18462 S:      Supported
18463 F:      include/sound/dmaengine_pcm.h
18464 F:      sound/core/pcm_dmaengine.c
18465 F:      sound/soc/soc-generic-dmaengine-pcm.c
18466
18467 SOUND - ALSA SELFTESTS
18468 M:      Mark Brown <broonie@kernel.org>
18469 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18470 L:      linux-kselftest@vger.kernel.org
18471 S:      Supported
18472 F:      tools/testing/selftests/alsa
18473
18474 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18475 M:      Liam Girdwood <lgirdwood@gmail.com>
18476 M:      Mark Brown <broonie@kernel.org>
18477 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18478 S:      Supported
18479 W:      http://alsa-project.org/main/index.php/ASoC
18480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18481 F:      Documentation/devicetree/bindings/sound/
18482 F:      Documentation/sound/soc/
18483 F:      include/dt-bindings/sound/
18484 F:      include/sound/soc*
18485 F:      sound/soc/
18486
18487 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18488 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18489 M:      Liam Girdwood <lgirdwood@gmail.com>
18490 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18491 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18492 M:      Daniel Baluta <daniel.baluta@nxp.com>
18493 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18494 S:      Supported
18495 W:      https://github.com/thesofproject/linux/
18496 F:      sound/soc/sof/
18497
18498 SOUNDWIRE SUBSYSTEM
18499 M:      Vinod Koul <vkoul@kernel.org>
18500 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18501 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18502 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18503 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18504 S:      Supported
18505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18506 F:      Documentation/driver-api/soundwire/
18507 F:      drivers/soundwire/
18508 F:      include/linux/soundwire/
18509
18510 SP2 MEDIA DRIVER
18511 M:      Olli Salonen <olli.salonen@iki.fi>
18512 L:      linux-media@vger.kernel.org
18513 S:      Maintained
18514 W:      https://linuxtv.org
18515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18516 F:      drivers/media/dvb-frontends/sp2*
18517
18518 SPARC + UltraSPARC (sparc/sparc64)
18519 M:      "David S. Miller" <davem@davemloft.net>
18520 L:      sparclinux@vger.kernel.org
18521 S:      Maintained
18522 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18525 F:      arch/sparc/
18526 F:      drivers/sbus/
18527
18528 SPARC SERIAL DRIVERS
18529 M:      "David S. Miller" <davem@davemloft.net>
18530 L:      sparclinux@vger.kernel.org
18531 S:      Maintained
18532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18534 F:      drivers/tty/serial/suncore.c
18535 F:      drivers/tty/serial/sunhv.c
18536 F:      drivers/tty/serial/sunsab.c
18537 F:      drivers/tty/serial/sunsab.h
18538 F:      drivers/tty/serial/sunsu.c
18539 F:      drivers/tty/serial/sunzilog.c
18540 F:      drivers/tty/serial/sunzilog.h
18541 F:      drivers/tty/vcc.c
18542 F:      include/linux/sunserialcore.h
18543
18544 SPARSE CHECKER
18545 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18546 L:      linux-sparse@vger.kernel.org
18547 S:      Maintained
18548 W:      https://sparse.docs.kernel.org/
18549 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18550 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18551 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18552 F:      include/linux/compiler.h
18553
18554 SPEAKUP CONSOLE SPEECH DRIVER
18555 M:      William Hubbs <w.d.hubbs@gmail.com>
18556 M:      Chris Brannon <chris@the-brannons.com>
18557 M:      Kirk Reiser <kirk@reisers.ca>
18558 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18559 L:      speakup@linux-speakup.org
18560 S:      Odd Fixes
18561 W:      http://www.linux-speakup.org/
18562 W:      https://github.com/linux-speakup/speakup
18563 B:      https://github.com/linux-speakup/speakup/issues
18564 F:      drivers/accessibility/speakup/
18565
18566 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18567 M:      Viresh Kumar <vireshk@kernel.org>
18568 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18569 M:      soc@kernel.org
18570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18571 S:      Maintained
18572 W:      http://www.st.com/spear
18573 F:      arch/arm/boot/dts/spear*
18574 F:      arch/arm/mach-spear/
18575 F:      drivers/clk/spear/
18576 F:      drivers/pinctrl/spear/
18577
18578 SPI NOR SUBSYSTEM
18579 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18580 M:      Pratyush Yadav <p.yadav@ti.com>
18581 R:      Michael Walle <michael@walle.cc>
18582 L:      linux-mtd@lists.infradead.org
18583 S:      Maintained
18584 W:      http://www.linux-mtd.infradead.org/
18585 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18586 C:      irc://irc.oftc.net/mtd
18587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18588 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18589 F:      drivers/mtd/spi-nor/
18590 F:      include/linux/mtd/spi-nor.h
18591
18592 SPI SUBSYSTEM
18593 M:      Mark Brown <broonie@kernel.org>
18594 L:      linux-spi@vger.kernel.org
18595 S:      Maintained
18596 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18598 F:      Documentation/devicetree/bindings/spi/
18599 F:      Documentation/spi/
18600 F:      drivers/spi/
18601 F:      include/linux/spi/
18602 F:      include/uapi/linux/spi/
18603 F:      tools/spi/
18604
18605 SPIDERNET NETWORK DRIVER for CELL
18606 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18607 M:      Geoff Levand <geoff@infradead.org>
18608 L:      netdev@vger.kernel.org
18609 L:      linuxppc-dev@lists.ozlabs.org
18610 S:      Maintained
18611 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18612 F:      drivers/net/ethernet/toshiba/spider_net*
18613
18614 SPMI SUBSYSTEM
18615 M:      Stephen Boyd <sboyd@kernel.org>
18616 L:      linux-kernel@vger.kernel.org
18617 S:      Maintained
18618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18619 F:      Documentation/devicetree/bindings/spmi/
18620 F:      drivers/spmi/
18621 F:      include/dt-bindings/spmi/spmi.h
18622 F:      include/linux/spmi.h
18623 F:      include/trace/events/spmi.h
18624
18625 SPU FILE SYSTEM
18626 M:      Jeremy Kerr <jk@ozlabs.org>
18627 L:      linuxppc-dev@lists.ozlabs.org
18628 S:      Supported
18629 W:      http://www.ibm.com/developerworks/power/cell/
18630 F:      Documentation/filesystems/spufs/spufs.rst
18631 F:      arch/powerpc/platforms/cell/spufs/
18632
18633 SQUASHFS FILE SYSTEM
18634 M:      Phillip Lougher <phillip@squashfs.org.uk>
18635 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18636 S:      Maintained
18637 W:      http://squashfs.org.uk
18638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18639 F:      Documentation/filesystems/squashfs.rst
18640 F:      fs/squashfs/
18641
18642 SRM (Alpha) environment access
18643 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18644 S:      Maintained
18645 F:      arch/alpha/kernel/srm_env.c
18646
18647 ST LSM6DSx IMU IIO DRIVER
18648 M:      Lorenzo Bianconi <lorenzo@kernel.org>
18649 L:      linux-iio@vger.kernel.org
18650 S:      Maintained
18651 W:      http://www.st.com/
18652 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18653 F:      drivers/iio/imu/st_lsm6dsx/
18654
18655 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18656 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
18657 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
18658 L:      linux-media@vger.kernel.org
18659 S:      Maintained
18660 T:      git git://linuxtv.org/media_tree.git
18661 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18662 F:      drivers/media/i2c/st-mipid02.c
18663
18664 ST STM32 I2C/SMBUS DRIVER
18665 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18666 M:      Alain Volmat <alain.volmat@foss.st.com>
18667 L:      linux-i2c@vger.kernel.org
18668 S:      Maintained
18669 F:      drivers/i2c/busses/i2c-stm32*
18670
18671 ST STM32 SPI DRIVER
18672 M:      Alain Volmat <alain.volmat@foss.st.com>
18673 L:      linux-spi@vger.kernel.org
18674 S:      Maintained
18675 F:      drivers/spi/spi-stm32.c
18676
18677 ST STPDDC60 DRIVER
18678 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18679 L:      linux-hwmon@vger.kernel.org
18680 S:      Maintained
18681 F:      Documentation/hwmon/stpddc60.rst
18682 F:      drivers/hwmon/pmbus/stpddc60.c
18683
18684 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18685 M:      Song Qiang <songqiang1304521@gmail.com>
18686 L:      linux-iio@vger.kernel.org
18687 S:      Maintained
18688 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18689 F:      drivers/iio/proximity/vl53l0x-i2c.c
18690
18691 STABLE BRANCH
18692 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18693 M:      Sasha Levin <sashal@kernel.org>
18694 L:      stable@vger.kernel.org
18695 S:      Supported
18696 F:      Documentation/process/stable-kernel-rules.rst
18697
18698 STAGING - ATOMISP DRIVER
18699 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18700 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18701 L:      linux-media@vger.kernel.org
18702 S:      Maintained
18703 F:      drivers/staging/media/atomisp/
18704
18705 STAGING - FIELDBUS SUBSYSTEM
18706 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18707 S:      Maintained
18708 F:      drivers/staging/fieldbus/*
18709 F:      drivers/staging/fieldbus/Documentation/
18710
18711 STAGING - HMS ANYBUS-S BUS
18712 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18713 S:      Maintained
18714 F:      drivers/staging/fieldbus/anybuss/
18715
18716 STAGING - INDUSTRIAL IO
18717 M:      Jonathan Cameron <jic23@kernel.org>
18718 L:      linux-iio@vger.kernel.org
18719 S:      Odd Fixes
18720 F:      Documentation/devicetree/bindings/staging/iio/
18721 F:      drivers/staging/iio/
18722
18723 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18724 M:      Marc Dietrich <marvin24@gmx.de>
18725 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18726 L:      linux-tegra@vger.kernel.org
18727 S:      Maintained
18728 F:      drivers/staging/nvec/
18729
18730 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18731 M:      Jens Frederich <jfrederich@gmail.com>
18732 M:      Jon Nettleton <jon.nettleton@gmail.com>
18733 S:      Maintained
18734 W:      http://wiki.laptop.org/go/DCON
18735 F:      drivers/staging/olpc_dcon/
18736
18737 STAGING - REALTEK RTL8188EU DRIVERS
18738 M:      Larry Finger <Larry.Finger@lwfinger.net>
18739 M:      Phillip Potter <phil@philpotter.co.uk>
18740 S:      Supported
18741 F:      drivers/staging/r8188eu/
18742
18743 STAGING - REALTEK RTL8712U DRIVERS
18744 M:      Larry Finger <Larry.Finger@lwfinger.net>
18745 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18746 S:      Odd Fixes
18747 F:      drivers/staging/rtl8712/
18748
18749 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18750 M:      Michael Hennerich <michael.hennerich@analog.com>
18751 L:      linux-fbdev@vger.kernel.org
18752 S:      Supported
18753 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18754 F:      drivers/staging/fbtft/fb_seps525.c
18755
18756 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18757 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18758 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18759 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18760 L:      linux-fbdev@vger.kernel.org
18761 S:      Maintained
18762 F:      drivers/staging/sm750fb/
18763
18764 STAGING - VIA VT665X DRIVERS
18765 M:      Forest Bond <forest@alittletooquiet.net>
18766 S:      Odd Fixes
18767 F:      drivers/staging/vt665?/
18768
18769 STAGING SUBSYSTEM
18770 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18771 L:      linux-staging@lists.linux.dev
18772 S:      Supported
18773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18774 F:      drivers/staging/
18775
18776 STARFIRE/DURALAN NETWORK DRIVER
18777 M:      Ion Badulescu <ionut@badula.org>
18778 S:      Odd Fixes
18779 F:      drivers/net/ethernet/adaptec/starfire*
18780
18781 STARFIVE JH7100 CLOCK DRIVERS
18782 M:      Emil Renner Berthing <kernel@esmil.dk>
18783 S:      Maintained
18784 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
18785 F:      drivers/clk/starfive/clk-starfive-jh7100*
18786 F:      include/dt-bindings/clock/starfive-jh7100*.h
18787
18788 STARFIVE JH7100 PINCTRL DRIVER
18789 M:      Emil Renner Berthing <kernel@esmil.dk>
18790 L:      linux-gpio@vger.kernel.org
18791 S:      Maintained
18792 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18793 F:      drivers/pinctrl/pinctrl-starfive.c
18794 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18795
18796 STARFIVE JH7100 RESET CONTROLLER DRIVER
18797 M:      Emil Renner Berthing <kernel@esmil.dk>
18798 S:      Maintained
18799 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18800 F:      drivers/reset/reset-starfive-jh7100.c
18801 F:      include/dt-bindings/reset/starfive-jh7100.h
18802
18803 STATIC BRANCH/CALL
18804 M:      Peter Zijlstra <peterz@infradead.org>
18805 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18806 M:      Jason Baron <jbaron@akamai.com>
18807 R:      Steven Rostedt <rostedt@goodmis.org>
18808 R:      Ard Biesheuvel <ardb@kernel.org>
18809 S:      Supported
18810 F:      arch/*/include/asm/jump_label*.h
18811 F:      arch/*/include/asm/static_call*.h
18812 F:      arch/*/kernel/jump_label.c
18813 F:      arch/*/kernel/static_call.c
18814 F:      include/linux/jump_label*.h
18815 F:      include/linux/static_call*.h
18816 F:      kernel/jump_label.c
18817 F:      kernel/static_call.c
18818
18819 STI AUDIO (ASoC) DRIVERS
18820 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18821 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18822 S:      Maintained
18823 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18824 F:      sound/soc/sti/
18825
18826 STI CEC DRIVER
18827 M:      Alain Volmat <alain.volmat@foss.st.com>
18828 S:      Maintained
18829 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18830 F:      drivers/media/cec/platform/sti/
18831
18832 STK1160 USB VIDEO CAPTURE DRIVER
18833 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18834 L:      linux-media@vger.kernel.org
18835 S:      Maintained
18836 T:      git git://linuxtv.org/media_tree.git
18837 F:      drivers/media/usb/stk1160/
18838
18839 STM32 AUDIO (ASoC) DRIVERS
18840 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18841 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18842 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18843 S:      Maintained
18844 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18845 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18846 F:      sound/soc/stm/
18847
18848 STM32 TIMER/LPTIMER DRIVERS
18849 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18850 S:      Maintained
18851 F:      Documentation/ABI/testing/*timer-stm32
18852 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18853 F:      drivers/*/stm32-*timer*
18854 F:      drivers/pwm/pwm-stm32*
18855 F:      include/linux/*/stm32-*tim*
18856
18857 STMMAC ETHERNET DRIVER
18858 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18859 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18860 M:      Jose Abreu <joabreu@synopsys.com>
18861 L:      netdev@vger.kernel.org
18862 S:      Supported
18863 W:      http://www.stlinux.com
18864 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18865 F:      drivers/net/ethernet/stmicro/stmmac/
18866
18867 SUN3/3X
18868 M:      Sam Creasey <sammy@sammy.net>
18869 S:      Maintained
18870 W:      http://sammy.net/sun3/
18871 F:      arch/m68k/include/asm/sun3*
18872 F:      arch/m68k/kernel/*sun3*
18873 F:      arch/m68k/sun3*/
18874 F:      drivers/net/ethernet/i825xx/sun3*
18875
18876 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18877 M:      Hans de Goede <hdegoede@redhat.com>
18878 L:      linux-input@vger.kernel.org
18879 S:      Maintained
18880 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18881 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18882
18883 SUNDANCE NETWORK DRIVER
18884 M:      Denis Kirjanov <kda@linux-powerpc.org>
18885 L:      netdev@vger.kernel.org
18886 S:      Maintained
18887 F:      drivers/net/ethernet/dlink/sundance.c
18888
18889 SUNPLUS OCOTP DRIVER
18890 M:      Vincent Shih <vincent.sunplus@gmail.com>
18891 S:      Maintained
18892 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
18893 F:      drivers/nvmem/sunplus-ocotp.c
18894
18895 SUNPLUS RTC DRIVER
18896 M:      Vincent Shih <vincent.sunplus@gmail.com>
18897 L:      linux-rtc@vger.kernel.org
18898 S:      Maintained
18899 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
18900 F:      drivers/rtc/rtc-sunplus.c
18901
18902 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
18903 M:      Li-hao Kuo <lhjeff911@gmail.com>
18904 L:      linux-spi@vger.kernel.org
18905 S:      Maintained
18906 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
18907 F:      drivers/spi/spi-sunplus-sp7021.c
18908
18909 SUNPLUS UART DRIVER
18910 M:      Hammer Hsieh <hammerh0314@gmail.com>
18911 S:      Maintained
18912 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
18913 F:      drivers/tty/serial/sunplus-uart.c
18914
18915 SUPERH
18916 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18917 M:      Rich Felker <dalias@libc.org>
18918 L:      linux-sh@vger.kernel.org
18919 S:      Maintained
18920 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18921 F:      Documentation/sh/
18922 F:      arch/sh/
18923 F:      drivers/sh/
18924
18925 SUSPEND TO RAM
18926 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18927 M:      Len Brown <len.brown@intel.com>
18928 M:      Pavel Machek <pavel@ucw.cz>
18929 L:      linux-pm@vger.kernel.org
18930 S:      Supported
18931 B:      https://bugzilla.kernel.org
18932 F:      Documentation/power/
18933 F:      arch/x86/kernel/acpi/
18934 F:      drivers/base/power/
18935 F:      include/linux/freezer.h
18936 F:      include/linux/pm.h
18937 F:      include/linux/suspend.h
18938 F:      kernel/power/
18939
18940 SVGA HANDLING
18941 M:      Martin Mares <mj@ucw.cz>
18942 L:      linux-video@atrey.karlin.mff.cuni.cz
18943 S:      Maintained
18944 F:      Documentation/admin-guide/svga.rst
18945 F:      arch/x86/boot/video*
18946
18947 SWIOTLB SUBSYSTEM
18948 M:      Christoph Hellwig <hch@infradead.org>
18949 L:      iommu@lists.linux-foundation.org
18950 S:      Supported
18951 W:      http://git.infradead.org/users/hch/dma-mapping.git
18952 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18953 F:      arch/*/kernel/pci-swiotlb.c
18954 F:      include/linux/swiotlb.h
18955 F:      kernel/dma/swiotlb.c
18956
18957 SWITCHDEV
18958 M:      Jiri Pirko <jiri@resnulli.us>
18959 M:      Ivan Vecera <ivecera@redhat.com>
18960 L:      netdev@vger.kernel.org
18961 S:      Supported
18962 F:      include/net/switchdev.h
18963 F:      net/switchdev/
18964
18965 SY8106A REGULATOR DRIVER
18966 M:      Icenowy Zheng <icenowy@aosc.io>
18967 S:      Maintained
18968 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18969 F:      drivers/regulator/sy8106a-regulator.c
18970
18971 SYNC FILE FRAMEWORK
18972 M:      Sumit Semwal <sumit.semwal@linaro.org>
18973 R:      Gustavo Padovan <gustavo@padovan.org>
18974 L:      linux-media@vger.kernel.org
18975 L:      dri-devel@lists.freedesktop.org
18976 S:      Maintained
18977 T:      git git://anongit.freedesktop.org/drm/drm-misc
18978 F:      Documentation/driver-api/sync_file.rst
18979 F:      drivers/dma-buf/dma-fence*
18980 F:      drivers/dma-buf/sw_sync.c
18981 F:      drivers/dma-buf/sync_*
18982 F:      include/linux/sync_file.h
18983 F:      include/uapi/linux/sync_file.h
18984
18985 SYNOPSYS ARC ARCHITECTURE
18986 M:      Vineet Gupta <vgupta@kernel.org>
18987 L:      linux-snps-arc@lists.infradead.org
18988 S:      Supported
18989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18990 F:      Documentation/arc/
18991 F:      Documentation/devicetree/bindings/arc/*
18992 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18993 F:      arch/arc/
18994 F:      drivers/clocksource/arc_timer.c
18995 F:      drivers/tty/serial/arc_uart.c
18996
18997 SYNOPSYS ARC HSDK SDP pll clock driver
18998 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18999 S:      Supported
19000 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19001 F:      drivers/clk/clk-hsdk-pll.c
19002
19003 SYNOPSYS ARC SDP clock driver
19004 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19005 S:      Supported
19006 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19007 F:      drivers/clk/axs10x/*
19008
19009 SYNOPSYS ARC SDP platform support
19010 M:      Alexey Brodkin <abrodkin@synopsys.com>
19011 S:      Supported
19012 F:      Documentation/devicetree/bindings/arc/axs10*
19013 F:      arch/arc/boot/dts/ax*
19014 F:      arch/arc/plat-axs10x
19015
19016 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19017 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19018 S:      Supported
19019 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
19020 F:      drivers/reset/reset-axs10x.c
19021
19022 SYNOPSYS CREG GPIO DRIVER
19023 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19024 S:      Maintained
19025 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19026 F:      drivers/gpio/gpio-creg-snps.c
19027
19028 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19029 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19030 S:      Maintained
19031 F:      drivers/tty/serial/8250/8250_dw.c
19032 F:      drivers/tty/serial/8250/8250_dwlib.*
19033 F:      drivers/tty/serial/8250/8250_lpss.c
19034
19035 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19036 M:      Hoan Tran <hoan@os.amperecomputing.com>
19037 M:      Serge Semin <fancer.lancer@gmail.com>
19038 L:      linux-gpio@vger.kernel.org
19039 S:      Maintained
19040 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19041 F:      drivers/gpio/gpio-dwapb.c
19042
19043 SYNOPSYS DESIGNWARE APB SSI DRIVER
19044 M:      Serge Semin <fancer.lancer@gmail.com>
19045 L:      linux-spi@vger.kernel.org
19046 S:      Supported
19047 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19048 F:      drivers/spi/spi-dw*
19049
19050 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19051 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19052 S:      Maintained
19053 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19054 F:      drivers/dma/dw-axi-dmac/
19055
19056 SYNOPSYS DESIGNWARE DMAC DRIVER
19057 M:      Viresh Kumar <vireshk@kernel.org>
19058 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19059 S:      Maintained
19060 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19061 F:      drivers/dma/dw/
19062 F:      include/dt-bindings/dma/dw-dmac.h
19063 F:      include/linux/dma/dw.h
19064 F:      include/linux/platform_data/dma-dw.h
19065
19066 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19067 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19068 L:      netdev@vger.kernel.org
19069 S:      Supported
19070 F:      drivers/net/ethernet/synopsys/
19071
19072 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19073 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19074 L:      netdev@vger.kernel.org
19075 S:      Supported
19076 F:      drivers/net/pcs/pcs-xpcs.c
19077 F:      drivers/net/pcs/pcs-xpcs.h
19078 F:      include/linux/pcs/pcs-xpcs.h
19079
19080 SYNOPSYS DESIGNWARE I2C DRIVER
19081 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19082 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19083 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19084 R:      Jan Dabros <jsd@semihalf.com>
19085 L:      linux-i2c@vger.kernel.org
19086 S:      Maintained
19087 F:      drivers/i2c/busses/i2c-designware-*
19088
19089 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19090 M:      Jaehoon Chung <jh80.chung@samsung.com>
19091 L:      linux-mmc@vger.kernel.org
19092 S:      Maintained
19093 F:      drivers/mmc/host/dw_mmc*
19094
19095 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19096 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19097 S:      Supported
19098 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19099 F:      drivers/reset/reset-hsdk.c
19100 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19101
19102 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19103 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19104 M:      Manjunath M B <manjumb@synopsys.com>
19105 L:      linux-mmc@vger.kernel.org
19106 S:      Maintained
19107 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19108
19109 SYSTEM CONFIGURATION (SYSCON)
19110 M:      Lee Jones <lee.jones@linaro.org>
19111 M:      Arnd Bergmann <arnd@arndb.de>
19112 S:      Supported
19113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19114 F:      drivers/mfd/syscon.c
19115
19116 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19117 M:      Sudeep Holla <sudeep.holla@arm.com>
19118 R:      Cristian Marussi <cristian.marussi@arm.com>
19119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19120 S:      Maintained
19121 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19122 F:      drivers/clk/clk-sc[mp]i.c
19123 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19124 F:      drivers/firmware/arm_scmi/
19125 F:      drivers/firmware/arm_scpi.c
19126 F:      drivers/regulator/scmi-regulator.c
19127 F:      drivers/reset/reset-scmi.c
19128 F:      include/linux/sc[mp]i_protocol.h
19129 F:      include/trace/events/scmi.h
19130 F:      include/uapi/linux/virtio_scmi.h
19131
19132 SYSTEM RESET/SHUTDOWN DRIVERS
19133 M:      Sebastian Reichel <sre@kernel.org>
19134 L:      linux-pm@vger.kernel.org
19135 S:      Maintained
19136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19137 F:      Documentation/devicetree/bindings/power/reset/
19138 F:      drivers/power/reset/
19139
19140 SYSTEM TRACE MODULE CLASS
19141 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19142 S:      Maintained
19143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19144 F:      Documentation/trace/stm.rst
19145 F:      drivers/hwtracing/stm/
19146 F:      include/linux/stm.h
19147 F:      include/uapi/linux/stm.h
19148
19149 SYSTEM76 ACPI DRIVER
19150 M:      Jeremy Soller <jeremy@system76.com>
19151 M:      System76 Product Development <productdev@system76.com>
19152 L:      platform-driver-x86@vger.kernel.org
19153 S:      Maintained
19154 F:      drivers/platform/x86/system76_acpi.c
19155
19156 SYSV FILESYSTEM
19157 M:      Christoph Hellwig <hch@infradead.org>
19158 S:      Maintained
19159 F:      Documentation/filesystems/sysv-fs.rst
19160 F:      fs/sysv/
19161 F:      include/linux/sysv_fs.h
19162
19163 TASKSTATS STATISTICS INTERFACE
19164 M:      Balbir Singh <bsingharora@gmail.com>
19165 S:      Maintained
19166 F:      Documentation/accounting/taskstats*
19167 F:      include/linux/taskstats*
19168 F:      kernel/taskstats.c
19169
19170 TC subsystem
19171 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19172 M:      Cong Wang <xiyou.wangcong@gmail.com>
19173 M:      Jiri Pirko <jiri@resnulli.us>
19174 L:      netdev@vger.kernel.org
19175 S:      Maintained
19176 F:      include/net/pkt_cls.h
19177 F:      include/net/pkt_sched.h
19178 F:      include/net/tc_act/
19179 F:      include/uapi/linux/pkt_cls.h
19180 F:      include/uapi/linux/pkt_sched.h
19181 F:      include/uapi/linux/tc_act/
19182 F:      include/uapi/linux/tc_ematch/
19183 F:      net/sched/
19184 F:      tools/testing/selftests/tc-testing
19185
19186 TC90522 MEDIA DRIVER
19187 M:      Akihiro Tsukada <tskd08@gmail.com>
19188 L:      linux-media@vger.kernel.org
19189 S:      Odd Fixes
19190 F:      drivers/media/dvb-frontends/tc90522*
19191
19192 TCP LOW PRIORITY MODULE
19193 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19194 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19195 S:      Maintained
19196 W:      http://tcp-lp-mod.sourceforge.net/
19197 F:      net/ipv4/tcp_lp.c
19198
19199 TDA10071 MEDIA DRIVER
19200 M:      Antti Palosaari <crope@iki.fi>
19201 L:      linux-media@vger.kernel.org
19202 S:      Maintained
19203 W:      https://linuxtv.org
19204 W:      http://palosaari.fi/linux/
19205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19206 T:      git git://linuxtv.org/anttip/media_tree.git
19207 F:      drivers/media/dvb-frontends/tda10071*
19208
19209 TDA18212 MEDIA DRIVER
19210 M:      Antti Palosaari <crope@iki.fi>
19211 L:      linux-media@vger.kernel.org
19212 S:      Maintained
19213 W:      https://linuxtv.org
19214 W:      http://palosaari.fi/linux/
19215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19216 T:      git git://linuxtv.org/anttip/media_tree.git
19217 F:      drivers/media/tuners/tda18212*
19218
19219 TDA18218 MEDIA DRIVER
19220 M:      Antti Palosaari <crope@iki.fi>
19221 L:      linux-media@vger.kernel.org
19222 S:      Maintained
19223 W:      https://linuxtv.org
19224 W:      http://palosaari.fi/linux/
19225 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19226 T:      git git://linuxtv.org/anttip/media_tree.git
19227 F:      drivers/media/tuners/tda18218*
19228
19229 TDA18250 MEDIA DRIVER
19230 M:      Olli Salonen <olli.salonen@iki.fi>
19231 L:      linux-media@vger.kernel.org
19232 S:      Maintained
19233 W:      https://linuxtv.org
19234 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19235 T:      git git://linuxtv.org/media_tree.git
19236 F:      drivers/media/tuners/tda18250*
19237
19238 TDA18271 MEDIA DRIVER
19239 M:      Michael Krufky <mkrufky@linuxtv.org>
19240 L:      linux-media@vger.kernel.org
19241 S:      Maintained
19242 W:      https://linuxtv.org
19243 W:      http://github.com/mkrufky
19244 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19245 T:      git git://linuxtv.org/mkrufky/tuners.git
19246 F:      drivers/media/tuners/tda18271*
19247
19248 TDA1997x MEDIA DRIVER
19249 M:      Tim Harvey <tharvey@gateworks.com>
19250 L:      linux-media@vger.kernel.org
19251 S:      Maintained
19252 W:      https://linuxtv.org
19253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19254 F:      drivers/media/i2c/tda1997x.*
19255
19256 TDA827x MEDIA DRIVER
19257 M:      Michael Krufky <mkrufky@linuxtv.org>
19258 L:      linux-media@vger.kernel.org
19259 S:      Maintained
19260 W:      https://linuxtv.org
19261 W:      http://github.com/mkrufky
19262 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19263 T:      git git://linuxtv.org/mkrufky/tuners.git
19264 F:      drivers/media/tuners/tda8290.*
19265
19266 TDA8290 MEDIA DRIVER
19267 M:      Michael Krufky <mkrufky@linuxtv.org>
19268 L:      linux-media@vger.kernel.org
19269 S:      Maintained
19270 W:      https://linuxtv.org
19271 W:      http://github.com/mkrufky
19272 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19273 T:      git git://linuxtv.org/mkrufky/tuners.git
19274 F:      drivers/media/tuners/tda8290.*
19275
19276 TDA9840 MEDIA DRIVER
19277 M:      Hans Verkuil <hverkuil@xs4all.nl>
19278 L:      linux-media@vger.kernel.org
19279 S:      Maintained
19280 W:      https://linuxtv.org
19281 T:      git git://linuxtv.org/media_tree.git
19282 F:      drivers/media/i2c/tda9840*
19283
19284 TEA5761 TUNER DRIVER
19285 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19286 L:      linux-media@vger.kernel.org
19287 S:      Odd fixes
19288 W:      https://linuxtv.org
19289 T:      git git://linuxtv.org/media_tree.git
19290 F:      drivers/media/tuners/tea5761.*
19291
19292 TEA5767 TUNER DRIVER
19293 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19294 L:      linux-media@vger.kernel.org
19295 S:      Maintained
19296 W:      https://linuxtv.org
19297 T:      git git://linuxtv.org/media_tree.git
19298 F:      drivers/media/tuners/tea5767.*
19299
19300 TEA6415C MEDIA DRIVER
19301 M:      Hans Verkuil <hverkuil@xs4all.nl>
19302 L:      linux-media@vger.kernel.org
19303 S:      Maintained
19304 W:      https://linuxtv.org
19305 T:      git git://linuxtv.org/media_tree.git
19306 F:      drivers/media/i2c/tea6415c*
19307
19308 TEA6420 MEDIA DRIVER
19309 M:      Hans Verkuil <hverkuil@xs4all.nl>
19310 L:      linux-media@vger.kernel.org
19311 S:      Maintained
19312 W:      https://linuxtv.org
19313 T:      git git://linuxtv.org/media_tree.git
19314 F:      drivers/media/i2c/tea6420*
19315
19316 TEAM DRIVER
19317 M:      Jiri Pirko <jiri@resnulli.us>
19318 L:      netdev@vger.kernel.org
19319 S:      Supported
19320 F:      drivers/net/team/
19321 F:      include/linux/if_team.h
19322 F:      include/uapi/linux/if_team.h
19323
19324 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19325 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19326 S:      Maintained
19327 F:      arch/x86/platform/ts5500/
19328
19329 TECHNOTREND USB IR RECEIVER
19330 M:      Sean Young <sean@mess.org>
19331 L:      linux-media@vger.kernel.org
19332 S:      Maintained
19333 F:      drivers/media/rc/ttusbir.c
19334
19335 TECHWELL TW9910 VIDEO DECODER
19336 L:      linux-media@vger.kernel.org
19337 S:      Orphan
19338 F:      drivers/media/i2c/tw9910.c
19339 F:      include/media/i2c/tw9910.h
19340
19341 TEE SUBSYSTEM
19342 M:      Jens Wiklander <jens.wiklander@linaro.org>
19343 R:      Sumit Garg <sumit.garg@linaro.org>
19344 L:      op-tee@lists.trustedfirmware.org
19345 S:      Maintained
19346 F:      Documentation/staging/tee.rst
19347 F:      drivers/tee/
19348 F:      include/linux/tee_drv.h
19349 F:      include/uapi/linux/tee.h
19350
19351 TEGRA ARCHITECTURE SUPPORT
19352 M:      Thierry Reding <thierry.reding@gmail.com>
19353 M:      Jonathan Hunter <jonathanh@nvidia.com>
19354 L:      linux-tegra@vger.kernel.org
19355 S:      Supported
19356 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19358 N:      [^a-z]tegra
19359
19360 TEGRA CLOCK DRIVER
19361 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19362 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19363 S:      Supported
19364 F:      drivers/clk/tegra/
19365
19366 TEGRA DMA DRIVERS
19367 M:      Laxman Dewangan <ldewangan@nvidia.com>
19368 M:      Jon Hunter <jonathanh@nvidia.com>
19369 S:      Supported
19370 F:      drivers/dma/tegra*
19371
19372 TEGRA I2C DRIVER
19373 M:      Laxman Dewangan <ldewangan@nvidia.com>
19374 R:      Dmitry Osipenko <digetx@gmail.com>
19375 S:      Supported
19376 F:      drivers/i2c/busses/i2c-tegra.c
19377
19378 TEGRA IOMMU DRIVERS
19379 M:      Thierry Reding <thierry.reding@gmail.com>
19380 R:      Krishna Reddy <vdumpa@nvidia.com>
19381 L:      linux-tegra@vger.kernel.org
19382 S:      Supported
19383 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19384 F:      drivers/iommu/tegra*
19385
19386 TEGRA KBC DRIVER
19387 M:      Laxman Dewangan <ldewangan@nvidia.com>
19388 S:      Supported
19389 F:      drivers/input/keyboard/tegra-kbc.c
19390
19391 TEGRA NAND DRIVER
19392 M:      Stefan Agner <stefan@agner.ch>
19393 M:      Lucas Stach <dev@lynxeye.de>
19394 S:      Maintained
19395 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19396 F:      drivers/mtd/nand/raw/tegra_nand.c
19397
19398 TEGRA PWM DRIVER
19399 M:      Thierry Reding <thierry.reding@gmail.com>
19400 S:      Supported
19401 F:      drivers/pwm/pwm-tegra.c
19402
19403 TEGRA SERIAL DRIVER
19404 M:      Laxman Dewangan <ldewangan@nvidia.com>
19405 S:      Supported
19406 F:      drivers/tty/serial/serial-tegra.c
19407
19408 TEGRA SPI DRIVER
19409 M:      Laxman Dewangan <ldewangan@nvidia.com>
19410 S:      Supported
19411 F:      drivers/spi/spi-tegra*
19412
19413 TEGRA QUAD SPI DRIVER
19414 M:      Thierry Reding <thierry.reding@gmail.com>
19415 M:      Jonathan Hunter <jonathanh@nvidia.com>
19416 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19417 L:      linux-tegra@vger.kernel.org
19418 S:      Maintained
19419 F:      drivers/spi/spi-tegra210-quad.c
19420
19421 TEGRA VIDEO DRIVER
19422 M:      Thierry Reding <thierry.reding@gmail.com>
19423 M:      Jonathan Hunter <jonathanh@nvidia.com>
19424 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19425 L:      linux-media@vger.kernel.org
19426 L:      linux-tegra@vger.kernel.org
19427 S:      Maintained
19428 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19429 F:      drivers/staging/media/tegra-video/
19430
19431 TEGRA XUSB PADCTL DRIVER
19432 M:      JC Kuo <jckuo@nvidia.com>
19433 S:      Supported
19434 F:      drivers/phy/tegra/xusb*
19435
19436 TEHUTI ETHERNET DRIVER
19437 M:      Andy Gospodarek <andy@greyhouse.net>
19438 L:      netdev@vger.kernel.org
19439 S:      Supported
19440 F:      drivers/net/ethernet/tehuti/*
19441
19442 TELECOM CLOCK DRIVER FOR MCPL0010
19443 M:      Mark Gross <markgross@kernel.org>
19444 S:      Supported
19445 F:      drivers/char/tlclk.c
19446
19447 TEMPO SEMICONDUCTOR DRIVERS
19448 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19449 S:      Maintained
19450 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19451 F:      sound/soc/codecs/tscs*.c
19452 F:      sound/soc/codecs/tscs*.h
19453
19454 TENSILICA XTENSA PORT (xtensa)
19455 M:      Chris Zankel <chris@zankel.net>
19456 M:      Max Filippov <jcmvbkbc@gmail.com>
19457 L:      linux-xtensa@linux-xtensa.org
19458 S:      Maintained
19459 T:      git git://github.com/czankel/xtensa-linux.git
19460 F:      arch/xtensa/
19461 F:      drivers/irqchip/irq-xtensa-*
19462
19463 TEXAS INSTRUMENTS ASoC DRIVERS
19464 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19465 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19466 S:      Maintained
19467 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19468 F:      sound/soc/ti/
19469
19470 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19471 M:      Ricardo Ribalda <ribalda@kernel.org>
19472 L:      linux-iio@vger.kernel.org
19473 S:      Supported
19474 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19475 F:      drivers/iio/dac/ti-dac7612.c
19476
19477 TEXAS INSTRUMENTS DMA DRIVERS
19478 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19479 L:      dmaengine@vger.kernel.org
19480 S:      Maintained
19481 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19482 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19483 F:      Documentation/devicetree/bindings/dma/ti/
19484 F:      drivers/dma/ti/
19485 X:      drivers/dma/ti/cppi41.c
19486 F:      include/linux/dma/k3-udma-glue.h
19487 F:      include/linux/dma/ti-cppi5.h
19488 F:      include/linux/dma/k3-psil.h
19489
19490 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19491 M:      Nishanth Menon <nm@ti.com>
19492 M:      Tero Kristo <kristo@kernel.org>
19493 M:      Santosh Shilimkar <ssantosh@kernel.org>
19494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19495 S:      Maintained
19496 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19497 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19498 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19499 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19500 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19501 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19502 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19503 F:      drivers/clk/keystone/sci-clk.c
19504 F:      drivers/firmware/ti_sci*
19505 F:      drivers/irqchip/irq-ti-sci-inta.c
19506 F:      drivers/irqchip/irq-ti-sci-intr.c
19507 F:      drivers/reset/reset-ti-sci.c
19508 F:      drivers/soc/ti/ti_sci_inta_msi.c
19509 F:      drivers/soc/ti/ti_sci_pm_domains.c
19510 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19511 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19512 F:      include/linux/soc/ti/ti_sci_protocol.h
19513
19514 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19515 M:      Robert Marko <robert.marko@sartura.hr>
19516 M:      Luka Perkov <luka.perkov@sartura.hr>
19517 L:      linux-hwmon@vger.kernel.org
19518 S:      Maintained
19519 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19520 F:      Documentation/hwmon/tps23861.rst
19521 F:      drivers/hwmon/tps23861.c
19522
19523 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19524 M:      Puranjay Mohan <puranjay12@gmail.com>
19525 L:      linux-iio@vger.kernel.org
19526 S:      Supported
19527 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19528 F:      drivers/iio/temperature/tmp117.c
19529
19530 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19531 M:      Hans Verkuil <hverkuil@xs4all.nl>
19532 L:      linux-media@vger.kernel.org
19533 S:      Maintained
19534 W:      https://linuxtv.org
19535 T:      git git://linuxtv.org/media_tree.git
19536 F:      drivers/media/radio/radio-raremono.c
19537
19538 THERMAL
19539 M:      Rafael J. Wysocki <rafael@kernel.org>
19540 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19541 R:      Amit Kucheria <amitk@kernel.org>
19542 R:      Zhang Rui <rui.zhang@intel.com>
19543 L:      linux-pm@vger.kernel.org
19544 S:      Supported
19545 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19547 F:      Documentation/ABI/testing/sysfs-class-thermal
19548 F:      Documentation/devicetree/bindings/thermal/
19549 F:      Documentation/driver-api/thermal/
19550 F:      drivers/thermal/
19551 F:      include/linux/cpu_cooling.h
19552 F:      include/linux/thermal.h
19553 F:      include/uapi/linux/thermal.h
19554 F:      tools/thermal/
19555
19556 THERMAL DRIVER FOR AMLOGIC SOCS
19557 M:      Guillaume La Roque <glaroque@baylibre.com>
19558 L:      linux-pm@vger.kernel.org
19559 L:      linux-amlogic@lists.infradead.org
19560 S:      Supported
19561 W:      http://linux-meson.com/
19562 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19563 F:      drivers/thermal/amlogic_thermal.c
19564
19565 THERMAL/CPU_COOLING
19566 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19567 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19568 M:      Viresh Kumar <viresh.kumar@linaro.org>
19569 R:      Lukasz Luba <lukasz.luba@arm.com>
19570 L:      linux-pm@vger.kernel.org
19571 S:      Supported
19572 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19573 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19574 F:      drivers/thermal/cpufreq_cooling.c
19575 F:      drivers/thermal/cpuidle_cooling.c
19576 F:      include/linux/cpu_cooling.h
19577
19578 THERMAL/POWER_ALLOCATOR
19579 M:      Lukasz Luba <lukasz.luba@arm.com>
19580 L:      linux-pm@vger.kernel.org
19581 S:      Maintained
19582 F:      Documentation/driver-api/thermal/power_allocator.rst
19583 F:      drivers/thermal/gov_power_allocator.c
19584 F:      include/trace/events/thermal_power_allocator.h
19585
19586 THINKPAD ACPI EXTRAS DRIVER
19587 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19588 L:      ibm-acpi-devel@lists.sourceforge.net
19589 L:      platform-driver-x86@vger.kernel.org
19590 S:      Maintained
19591 W:      http://ibm-acpi.sourceforge.net
19592 W:      http://thinkwiki.org/wiki/Ibm-acpi
19593 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19594 F:      drivers/platform/x86/thinkpad_acpi.c
19595
19596 THINKPAD LMI DRIVER
19597 M:      Mark Pearson <markpearson@lenovo.com>
19598 L:      platform-driver-x86@vger.kernel.org
19599 S:      Maintained
19600 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19601 F:      drivers/platform/x86/think-lmi.?
19602
19603 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19604 M:      Isaac Hazan <isaac.hazan@intel.com>
19605 L:      linux-usb@vger.kernel.org
19606 S:      Maintained
19607 F:      drivers/thunderbolt/dma_test.c
19608
19609 THUNDERBOLT DRIVER
19610 M:      Andreas Noever <andreas.noever@gmail.com>
19611 M:      Michael Jamet <michael.jamet@intel.com>
19612 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19613 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19614 L:      linux-usb@vger.kernel.org
19615 S:      Maintained
19616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19617 F:      Documentation/admin-guide/thunderbolt.rst
19618 F:      drivers/thunderbolt/
19619 F:      include/linux/thunderbolt.h
19620
19621 THUNDERBOLT NETWORK DRIVER
19622 M:      Michael Jamet <michael.jamet@intel.com>
19623 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19624 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19625 L:      netdev@vger.kernel.org
19626 S:      Maintained
19627 F:      drivers/net/thunderbolt.c
19628
19629 THUNDERX GPIO DRIVER
19630 M:      Robert Richter <rric@kernel.org>
19631 S:      Odd Fixes
19632 F:      drivers/gpio/gpio-thunderx.c
19633
19634 TI ADS131E0X ADC SERIES DRIVER
19635 M:      Tomislav Denis <tomislav.denis@avl.com>
19636 L:      linux-iio@vger.kernel.org
19637 S:      Maintained
19638 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19639 F:      drivers/iio/adc/ti-ads131e08.c
19640
19641 TI AM437X VPFE DRIVER
19642 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19643 L:      linux-media@vger.kernel.org
19644 S:      Maintained
19645 W:      https://linuxtv.org
19646 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19647 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19648 F:      drivers/media/platform/ti/am437x/
19649
19650 TI BANDGAP AND THERMAL DRIVER
19651 M:      Eduardo Valentin <edubezval@gmail.com>
19652 M:      Keerthy <j-keerthy@ti.com>
19653 L:      linux-pm@vger.kernel.org
19654 L:      linux-omap@vger.kernel.org
19655 S:      Maintained
19656 F:      drivers/thermal/ti-soc-thermal/
19657
19658 TI BQ27XXX POWER SUPPLY DRIVER
19659 F:      drivers/power/supply/bq27xxx_battery.c
19660 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19661 F:      include/linux/power/bq27xxx_battery.h
19662
19663 TI CDCE706 CLOCK DRIVER
19664 M:      Max Filippov <jcmvbkbc@gmail.com>
19665 S:      Maintained
19666 F:      drivers/clk/clk-cdce706.c
19667
19668 TI CLOCK DRIVER
19669 M:      Tero Kristo <kristo@kernel.org>
19670 L:      linux-omap@vger.kernel.org
19671 S:      Odd Fixes
19672 F:      drivers/clk/ti/
19673 F:      include/linux/clk/ti.h
19674
19675 TI DAVINCI MACHINE SUPPORT
19676 M:      Sekhar Nori <nsekhar@ti.com>
19677 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19679 S:      Supported
19680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19681 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19682 F:      arch/arm/boot/dts/da850*
19683 F:      arch/arm/mach-davinci/
19684 F:      drivers/i2c/busses/i2c-davinci.c
19685
19686 TI DAVINCI SERIES CLOCK DRIVER
19687 M:      David Lechner <david@lechnology.com>
19688 R:      Sekhar Nori <nsekhar@ti.com>
19689 S:      Maintained
19690 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19691 F:      drivers/clk/davinci/
19692
19693 TI DAVINCI SERIES GPIO DRIVER
19694 M:      Keerthy <j-keerthy@ti.com>
19695 L:      linux-gpio@vger.kernel.org
19696 S:      Maintained
19697 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19698 F:      drivers/gpio/gpio-davinci.c
19699
19700 TI DAVINCI SERIES MEDIA DRIVER
19701 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19702 L:      linux-media@vger.kernel.org
19703 S:      Maintained
19704 W:      https://linuxtv.org
19705 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19706 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19707 F:      drivers/media/platform/ti/davinci/
19708 F:      include/media/davinci/
19709
19710 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19711 R:      David Lechner <david@lechnology.com>
19712 L:      linux-iio@vger.kernel.org
19713 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19714 F:      drivers/counter/ti-eqep.c
19715
19716 TI ETHERNET SWITCH DRIVER (CPSW)
19717 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19718 L:      linux-omap@vger.kernel.org
19719 L:      netdev@vger.kernel.org
19720 S:      Maintained
19721 F:      drivers/net/ethernet/ti/cpsw*
19722 F:      drivers/net/ethernet/ti/davinci*
19723
19724 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19725 M:      Alex Dubov <oakad@yahoo.com>
19726 S:      Maintained
19727 W:      http://tifmxx.berlios.de/
19728 F:      drivers/memstick/host/tifm_ms.c
19729 F:      drivers/misc/tifm*
19730 F:      drivers/mmc/host/tifm_sd.c
19731 F:      include/linux/tifm.h
19732
19733 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19734 M:      Nishanth Menon <nm@ti.com>
19735 M:      Santosh Shilimkar <ssantosh@kernel.org>
19736 L:      linux-kernel@vger.kernel.org
19737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19738 S:      Maintained
19739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19740 F:      drivers/soc/ti/*
19741
19742 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19743 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19744 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19745 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19746 S:      Maintained
19747 F:      sound/soc/codecs/isabelle*
19748 F:      sound/soc/codecs/lm49453*
19749
19750 TI PCM3060 ASoC CODEC DRIVER
19751 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19752 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19753 S:      Maintained
19754 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19755 F:      sound/soc/codecs/pcm3060*
19756
19757 TI TAS571X FAMILY ASoC CODEC DRIVER
19758 M:      Kevin Cernekee <cernekee@chromium.org>
19759 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19760 S:      Odd Fixes
19761 F:      sound/soc/codecs/tas571x*
19762
19763 TI TRF7970A NFC DRIVER
19764 M:      Mark Greer <mgreer@animalcreek.com>
19765 L:      linux-wireless@vger.kernel.org
19766 L:      linux-nfc@lists.01.org (subscribers-only)
19767 S:      Supported
19768 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19769 F:      drivers/nfc/trf7970a.c
19770
19771 TI TSC2046 ADC DRIVER
19772 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19773 R:      kernel@pengutronix.de
19774 L:      linux-iio@vger.kernel.org
19775 S:      Maintained
19776 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19777 F:      drivers/iio/adc/ti-tsc2046.c
19778
19779 TI TWL4030 SERIES SOC CODEC DRIVER
19780 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19781 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19782 S:      Maintained
19783 F:      sound/soc/codecs/twl4030*
19784
19785 TI VPE/CAL DRIVERS
19786 M:      Benoit Parrot <bparrot@ti.com>
19787 L:      linux-media@vger.kernel.org
19788 S:      Maintained
19789 W:      http://linuxtv.org/
19790 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19791 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19792 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19793 F:      drivers/media/platform/ti/cal/
19794 F:      drivers/media/platform/ti/vpe/
19795
19796 TI WILINK WIRELESS DRIVERS
19797 L:      linux-wireless@vger.kernel.org
19798 S:      Orphan
19799 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19800 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19802 F:      drivers/net/wireless/ti/
19803 F:      include/linux/wl12xx.h
19804
19805 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19806 M:      John Stultz <john.stultz@linaro.org>
19807 M:      Thomas Gleixner <tglx@linutronix.de>
19808 R:      Stephen Boyd <sboyd@kernel.org>
19809 L:      linux-kernel@vger.kernel.org
19810 S:      Supported
19811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19812 F:      include/linux/clocksource.h
19813 F:      include/linux/time.h
19814 F:      include/linux/timex.h
19815 F:      include/uapi/linux/time.h
19816 F:      include/uapi/linux/timex.h
19817 F:      kernel/time/alarmtimer.c
19818 F:      kernel/time/clocksource.c
19819 F:      kernel/time/ntp.c
19820 F:      kernel/time/time*.c
19821 F:      tools/testing/selftests/timers/
19822
19823 TIPC NETWORK LAYER
19824 M:      Jon Maloy <jmaloy@redhat.com>
19825 M:      Ying Xue <ying.xue@windriver.com>
19826 L:      netdev@vger.kernel.org (core kernel code)
19827 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19828 S:      Maintained
19829 W:      http://tipc.sourceforge.net/
19830 F:      include/uapi/linux/tipc*.h
19831 F:      net/tipc/
19832
19833 TLAN NETWORK DRIVER
19834 M:      Samuel Chessman <chessman@tux.org>
19835 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19836 S:      Maintained
19837 W:      http://sourceforge.net/projects/tlan/
19838 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19839 F:      drivers/net/ethernet/ti/tlan.*
19840
19841 TM6000 VIDEO4LINUX DRIVER
19842 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19843 L:      linux-media@vger.kernel.org
19844 S:      Odd fixes
19845 W:      https://linuxtv.org
19846 T:      git git://linuxtv.org/media_tree.git
19847 F:      Documentation/admin-guide/media/tm6000*
19848 F:      drivers/media/usb/tm6000/
19849
19850 TMIO/SDHI MMC DRIVER
19851 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19852 L:      linux-mmc@vger.kernel.org
19853 S:      Supported
19854 F:      drivers/mmc/host/renesas_sdhi*
19855 F:      drivers/mmc/host/tmio_mmc*
19856 F:      include/linux/mfd/tmio.h
19857
19858 TMP401 HARDWARE MONITOR DRIVER
19859 M:      Guenter Roeck <linux@roeck-us.net>
19860 L:      linux-hwmon@vger.kernel.org
19861 S:      Maintained
19862 F:      Documentation/hwmon/tmp401.rst
19863 F:      drivers/hwmon/tmp401.c
19864
19865 TMP464 HARDWARE MONITOR DRIVER
19866 M:      Agathe Porte <agathe.porte@nokia.com>
19867 M:      Guenter Roeck <linux@roeck-us.net>
19868 L:      linux-hwmon@vger.kernel.org
19869 S:      Maintained
19870 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
19871 F:      Documentation/hwmon/tmp464.rst
19872 F:      drivers/hwmon/tmp464.c
19873
19874 TMP513 HARDWARE MONITOR DRIVER
19875 M:      Eric Tremblay <etremblay@distech-controls.com>
19876 L:      linux-hwmon@vger.kernel.org
19877 S:      Maintained
19878 F:      Documentation/hwmon/tmp513.rst
19879 F:      drivers/hwmon/tmp513.c
19880
19881 TMPFS (SHMEM FILESYSTEM)
19882 M:      Hugh Dickins <hughd@google.com>
19883 L:      linux-mm@kvack.org
19884 S:      Maintained
19885 F:      include/linux/shmem_fs.h
19886 F:      mm/shmem.c
19887
19888 TOMOYO SECURITY MODULE
19889 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19890 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19891 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19892 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19893 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19894 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19895 S:      Maintained
19896 W:      https://tomoyo.osdn.jp/
19897 F:      security/tomoyo/
19898
19899 TOPSTAR LAPTOP EXTRAS DRIVER
19900 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19901 L:      platform-driver-x86@vger.kernel.org
19902 S:      Maintained
19903 F:      drivers/platform/x86/topstar-laptop.c
19904
19905 TORTURE-TEST MODULES
19906 M:      Davidlohr Bueso <dave@stgolabs.net>
19907 M:      "Paul E. McKenney" <paulmck@kernel.org>
19908 M:      Josh Triplett <josh@joshtriplett.org>
19909 L:      linux-kernel@vger.kernel.org
19910 S:      Supported
19911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19912 F:      Documentation/RCU/torture.rst
19913 F:      kernel/locking/locktorture.c
19914 F:      kernel/rcu/rcuscale.c
19915 F:      kernel/rcu/rcutorture.c
19916 F:      kernel/rcu/refscale.c
19917 F:      kernel/torture.c
19918
19919 TOSHIBA ACPI EXTRAS DRIVER
19920 M:      Azael Avalos <coproscefalo@gmail.com>
19921 L:      platform-driver-x86@vger.kernel.org
19922 S:      Maintained
19923 F:      drivers/platform/x86/toshiba_acpi.c
19924
19925 TOSHIBA BLUETOOTH DRIVER
19926 M:      Azael Avalos <coproscefalo@gmail.com>
19927 L:      platform-driver-x86@vger.kernel.org
19928 S:      Maintained
19929 F:      drivers/platform/x86/toshiba_bluetooth.c
19930
19931 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19932 M:      Azael Avalos <coproscefalo@gmail.com>
19933 L:      platform-driver-x86@vger.kernel.org
19934 S:      Maintained
19935 F:      drivers/platform/x86/toshiba_haps.c
19936
19937 TOSHIBA SMM DRIVER
19938 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19939 S:      Maintained
19940 W:      http://www.buzzard.org.uk/toshiba/
19941 F:      drivers/char/toshiba.c
19942 F:      include/linux/toshiba.h
19943 F:      include/uapi/linux/toshiba.h
19944
19945 TOSHIBA TC358743 DRIVER
19946 M:      Mats Randgaard <matrandg@cisco.com>
19947 L:      linux-media@vger.kernel.org
19948 S:      Maintained
19949 F:      drivers/media/i2c/tc358743*
19950 F:      include/media/i2c/tc358743.h
19951
19952 TOSHIBA WMI HOTKEYS DRIVER
19953 M:      Azael Avalos <coproscefalo@gmail.com>
19954 L:      platform-driver-x86@vger.kernel.org
19955 S:      Maintained
19956 F:      drivers/platform/x86/toshiba-wmi.c
19957
19958 TPM DEVICE DRIVER
19959 M:      Peter Huewe <peterhuewe@gmx.de>
19960 M:      Jarkko Sakkinen <jarkko@kernel.org>
19961 R:      Jason Gunthorpe <jgg@ziepe.ca>
19962 L:      linux-integrity@vger.kernel.org
19963 S:      Maintained
19964 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19965 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19967 F:      drivers/char/tpm/
19968
19969 TRACING
19970 M:      Steven Rostedt <rostedt@goodmis.org>
19971 M:      Ingo Molnar <mingo@redhat.com>
19972 S:      Maintained
19973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19974 F:      Documentation/trace/ftrace.rst
19975 F:      arch/*/*/*/ftrace.h
19976 F:      arch/*/kernel/ftrace.c
19977 F:      fs/tracefs/
19978 F:      include/*/ftrace.h
19979 F:      include/linux/trace*.h
19980 F:      include/trace/
19981 F:      kernel/trace/
19982 F:      tools/testing/selftests/ftrace/
19983
19984 TRACING MMIO ACCESSES (MMIOTRACE)
19985 M:      Steven Rostedt <rostedt@goodmis.org>
19986 M:      Ingo Molnar <mingo@kernel.org>
19987 R:      Karol Herbst <karolherbst@gmail.com>
19988 R:      Pekka Paalanen <ppaalanen@gmail.com>
19989 L:      linux-kernel@vger.kernel.org
19990 L:      nouveau@lists.freedesktop.org
19991 S:      Maintained
19992 F:      arch/x86/mm/kmmio.c
19993 F:      arch/x86/mm/mmio-mod.c
19994 F:      arch/x86/mm/testmmiotrace.c
19995 F:      include/linux/mmiotrace.h
19996 F:      kernel/trace/trace_mmiotrace.c
19997
19998 TRACING OS NOISE / LATENCY TRACERS
19999 M:      Steven Rostedt <rostedt@goodmis.org>
20000 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20001 S:      Maintained
20002 F:      kernel/trace/trace_osnoise.c
20003 F:      include/trace/events/osnoise.h
20004 F:      kernel/trace/trace_hwlat.c
20005 F:      kernel/trace/trace_irqsoff.c
20006 F:      kernel/trace/trace_sched_wakeup.c
20007 F:      Documentation/trace/osnoise-tracer.rst
20008 F:      Documentation/trace/timerlat-tracer.rst
20009 F:      Documentation/trace/hwlat_detector.rst
20010 F:      arch/*/kernel/trace.c
20011
20012 Real-time Linux Analysis (RTLA) tools
20013 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20014 M:      Steven Rostedt <rostedt@goodmis.org>
20015 L:      linux-trace-devel@vger.kernel.org
20016 S:      Maintained
20017 F:      Documentation/tools/rtla/
20018 F:      tools/tracing/rtla/
20019
20020 TRADITIONAL CHINESE DOCUMENTATION
20021 M:      Hu Haowen <src.res@email.cn>
20022 L:      linux-doc-tw-discuss@lists.sourceforge.net
20023 S:      Maintained
20024 W:      https://github.com/srcres258/linux-doc
20025 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20026 F:      Documentation/translations/zh_TW/
20027
20028 TTY LAYER
20029 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20030 M:      Jiri Slaby <jirislaby@kernel.org>
20031 S:      Supported
20032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20033 F:      Documentation/driver-api/serial/
20034 F:      drivers/tty/
20035 F:      drivers/tty/serial/serial_core.c
20036 F:      include/linux/selection.h
20037 F:      include/linux/serial.h
20038 F:      include/linux/serial_core.h
20039 F:      include/linux/sysrq.h
20040 F:      include/linux/tty*.h
20041 F:      include/linux/vt.h
20042 F:      include/linux/vt_*.h
20043 F:      include/uapi/linux/serial.h
20044 F:      include/uapi/linux/serial_core.h
20045 F:      include/uapi/linux/tty.h
20046
20047 TUA9001 MEDIA DRIVER
20048 M:      Antti Palosaari <crope@iki.fi>
20049 L:      linux-media@vger.kernel.org
20050 S:      Maintained
20051 W:      https://linuxtv.org
20052 W:      http://palosaari.fi/linux/
20053 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20054 T:      git git://linuxtv.org/anttip/media_tree.git
20055 F:      drivers/media/tuners/tua9001*
20056
20057 TULIP NETWORK DRIVERS
20058 L:      netdev@vger.kernel.org
20059 L:      linux-parisc@vger.kernel.org
20060 S:      Orphan
20061 F:      drivers/net/ethernet/dec/tulip/
20062
20063 TUN/TAP driver
20064 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20065 S:      Maintained
20066 W:      http://vtun.sourceforge.net/tun
20067 F:      Documentation/networking/tuntap.rst
20068 F:      arch/um/os-Linux/drivers/
20069
20070 TURBOCHANNEL SUBSYSTEM
20071 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20072 M:      Ralf Baechle <ralf@linux-mips.org>
20073 L:      linux-mips@vger.kernel.org
20074 S:      Maintained
20075 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20076 F:      drivers/tc/
20077 F:      include/linux/tc.h
20078
20079 TURBOSTAT UTILITY
20080 M:      "Len Brown" <lenb@kernel.org>
20081 L:      linux-pm@vger.kernel.org
20082 S:      Supported
20083 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20084 B:      https://bugzilla.kernel.org
20085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20086 F:      tools/power/x86/turbostat/
20087
20088 TW5864 VIDEO4LINUX DRIVER
20089 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20090 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20091 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20092 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20093 L:      linux-media@vger.kernel.org
20094 S:      Supported
20095 F:      drivers/media/pci/tw5864/
20096
20097 TW68 VIDEO4LINUX DRIVER
20098 M:      Hans Verkuil <hverkuil@xs4all.nl>
20099 L:      linux-media@vger.kernel.org
20100 S:      Odd Fixes
20101 W:      https://linuxtv.org
20102 T:      git git://linuxtv.org/media_tree.git
20103 F:      drivers/media/pci/tw68/
20104
20105 TW686X VIDEO4LINUX DRIVER
20106 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20107 L:      linux-media@vger.kernel.org
20108 S:      Maintained
20109 W:      http://linuxtv.org
20110 T:      git git://linuxtv.org/media_tree.git
20111 F:      drivers/media/pci/tw686x/
20112
20113 U-BOOT ENVIRONMENT VARIABLES
20114 M:      Rafał Miłecki <rafal@milecki.pl>
20115 S:      Maintained
20116 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20117
20118 UACCE ACCELERATOR FRAMEWORK
20119 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20120 M:      Zhou Wang <wangzhou1@hisilicon.com>
20121 L:      linux-accelerators@lists.ozlabs.org
20122 L:      linux-kernel@vger.kernel.org
20123 S:      Maintained
20124 F:      Documentation/ABI/testing/sysfs-driver-uacce
20125 F:      Documentation/misc-devices/uacce.rst
20126 F:      drivers/misc/uacce/
20127 F:      include/linux/uacce.h
20128 F:      include/uapi/misc/uacce/
20129
20130 UBI FILE SYSTEM (UBIFS)
20131 M:      Richard Weinberger <richard@nod.at>
20132 L:      linux-mtd@lists.infradead.org
20133 S:      Supported
20134 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20137 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20138 F:      Documentation/filesystems/ubifs-authentication.rst
20139 F:      Documentation/filesystems/ubifs.rst
20140 F:      fs/ubifs/
20141
20142 UCLINUX (M68KNOMMU AND COLDFIRE)
20143 M:      Greg Ungerer <gerg@linux-m68k.org>
20144 L:      linux-m68k@lists.linux-m68k.org
20145 L:      uclinux-dev@uclinux.org  (subscribers-only)
20146 S:      Maintained
20147 W:      http://www.linux-m68k.org/
20148 W:      http://www.uclinux.org/
20149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20150 F:      arch/m68k/*/*_no.*
20151 F:      arch/m68k/68*/
20152 F:      arch/m68k/coldfire/
20153 F:      arch/m68k/include/asm/*_no.*
20154
20155 UDF FILESYSTEM
20156 M:      Jan Kara <jack@suse.com>
20157 S:      Maintained
20158 F:      Documentation/filesystems/udf.rst
20159 F:      fs/udf/
20160
20161 UDRAW TABLET
20162 M:      Bastien Nocera <hadess@hadess.net>
20163 L:      linux-input@vger.kernel.org
20164 S:      Maintained
20165 F:      drivers/hid/hid-udraw-ps3.c
20166
20167 UFS FILESYSTEM
20168 M:      Evgeniy Dushistov <dushistov@mail.ru>
20169 S:      Maintained
20170 F:      Documentation/admin-guide/ufs.rst
20171 F:      fs/ufs/
20172
20173 UHID USERSPACE HID IO DRIVER
20174 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20175 L:      linux-input@vger.kernel.org
20176 S:      Maintained
20177 F:      drivers/hid/uhid.c
20178 F:      include/uapi/linux/uhid.h
20179
20180 ULPI BUS
20181 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20182 L:      linux-usb@vger.kernel.org
20183 S:      Maintained
20184 F:      drivers/usb/common/ulpi.c
20185 F:      include/linux/ulpi/
20186
20187 UNICODE SUBSYSTEM
20188 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20189 L:      linux-fsdevel@vger.kernel.org
20190 S:      Supported
20191 F:      fs/unicode/
20192
20193 UNIFDEF
20194 M:      Tony Finch <dot@dotat.at>
20195 S:      Maintained
20196 W:      http://dotat.at/prog/unifdef
20197 F:      scripts/unifdef.c
20198
20199 UNIFORM CDROM DRIVER
20200 M:      Phillip Potter <phil@philpotter.co.uk>
20201 S:      Maintained
20202 F:      Documentation/cdrom/
20203 F:      drivers/cdrom/cdrom.c
20204 F:      include/linux/cdrom.h
20205 F:      include/uapi/linux/cdrom.h
20206
20207 UNISYS S-PAR DRIVERS
20208 M:      David Kershner <david.kershner@unisys.com>
20209 L:      sparmaintainer@unisys.com (Unisys internal)
20210 S:      Supported
20211 F:      drivers/staging/unisys/
20212 F:      drivers/visorbus/
20213 F:      include/linux/visorbus.h
20214
20215 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20216 R:      Alim Akhtar <alim.akhtar@samsung.com>
20217 R:      Avri Altman <avri.altman@wdc.com>
20218 L:      linux-scsi@vger.kernel.org
20219 S:      Supported
20220 F:      Documentation/devicetree/bindings/ufs/
20221 F:      Documentation/scsi/ufs.rst
20222 F:      drivers/scsi/ufs/
20223
20224 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20225 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20226 L:      linux-scsi@vger.kernel.org
20227 S:      Supported
20228 F:      drivers/scsi/ufs/*dwc*
20229
20230 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20231 M:      Stanley Chu <stanley.chu@mediatek.com>
20232 L:      linux-scsi@vger.kernel.org
20233 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20234 S:      Maintained
20235 F:      drivers/scsi/ufs/ufs-mediatek*
20236
20237 UNSORTED BLOCK IMAGES (UBI)
20238 M:      Richard Weinberger <richard@nod.at>
20239 L:      linux-mtd@lists.infradead.org
20240 S:      Supported
20241 W:      http://www.linux-mtd.infradead.org/
20242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20244 F:      drivers/mtd/ubi/
20245 F:      include/linux/mtd/ubi.h
20246 F:      include/uapi/mtd/ubi-user.h
20247
20248 USB "USBNET" DRIVER FRAMEWORK
20249 M:      Oliver Neukum <oneukum@suse.com>
20250 L:      netdev@vger.kernel.org
20251 S:      Maintained
20252 W:      http://www.linux-usb.org/usbnet
20253 F:      drivers/net/usb/usbnet.c
20254 F:      include/linux/usb/usbnet.h
20255
20256 USB ACM DRIVER
20257 M:      Oliver Neukum <oneukum@suse.com>
20258 L:      linux-usb@vger.kernel.org
20259 S:      Maintained
20260 F:      Documentation/usb/acm.rst
20261 F:      drivers/usb/class/cdc-acm.*
20262
20263 USB APPLE MFI FASTCHARGE DRIVER
20264 M:      Bastien Nocera <hadess@hadess.net>
20265 L:      linux-usb@vger.kernel.org
20266 S:      Maintained
20267 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20268
20269 USB AR5523 WIRELESS DRIVER
20270 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20271 L:      linux-wireless@vger.kernel.org
20272 S:      Maintained
20273 F:      drivers/net/wireless/ath/ar5523/
20274
20275 USB ATTACHED SCSI
20276 M:      Oliver Neukum <oneukum@suse.com>
20277 L:      linux-usb@vger.kernel.org
20278 L:      linux-scsi@vger.kernel.org
20279 S:      Maintained
20280 F:      drivers/usb/storage/uas.c
20281
20282 USB CDC ETHERNET DRIVER
20283 M:      Oliver Neukum <oliver@neukum.org>
20284 L:      linux-usb@vger.kernel.org
20285 S:      Maintained
20286 F:      drivers/net/usb/cdc_*.c
20287 F:      include/uapi/linux/usb/cdc.h
20288
20289 USB CHAOSKEY DRIVER
20290 M:      Keith Packard <keithp@keithp.com>
20291 L:      linux-usb@vger.kernel.org
20292 S:      Maintained
20293 F:      drivers/usb/misc/chaoskey.c
20294
20295 USB CYPRESS C67X00 DRIVER
20296 L:      linux-usb@vger.kernel.org
20297 S:      Orphan
20298 F:      drivers/usb/c67x00/
20299
20300 USB DAVICOM DM9601 DRIVER
20301 M:      Peter Korsgaard <peter@korsgaard.com>
20302 L:      netdev@vger.kernel.org
20303 S:      Maintained
20304 W:      http://www.linux-usb.org/usbnet
20305 F:      drivers/net/usb/dm9601.c
20306
20307 USB EHCI DRIVER
20308 M:      Alan Stern <stern@rowland.harvard.edu>
20309 L:      linux-usb@vger.kernel.org
20310 S:      Maintained
20311 F:      Documentation/usb/ehci.rst
20312 F:      drivers/usb/host/ehci*
20313
20314 USB GADGET/PERIPHERAL SUBSYSTEM
20315 M:      Felipe Balbi <balbi@kernel.org>
20316 L:      linux-usb@vger.kernel.org
20317 S:      Maintained
20318 W:      http://www.linux-usb.org/gadget
20319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20320 F:      drivers/usb/gadget/
20321 F:      include/linux/usb/gadget*
20322
20323 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20324 M:      Jiri Kosina <jikos@kernel.org>
20325 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20326 L:      linux-usb@vger.kernel.org
20327 S:      Maintained
20328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20329 F:      Documentation/hid/hiddev.rst
20330 F:      drivers/hid/usbhid/
20331
20332 USB INTEL XHCI ROLE MUX DRIVER
20333 M:      Hans de Goede <hdegoede@redhat.com>
20334 L:      linux-usb@vger.kernel.org
20335 S:      Maintained
20336 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20337
20338 USB IP DRIVER FOR HISILICON KIRIN 960
20339 M:      Yu Chen <chenyu56@huawei.com>
20340 M:      Binghui Wang <wangbinghui@hisilicon.com>
20341 L:      linux-usb@vger.kernel.org
20342 S:      Maintained
20343 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20344 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20345
20346 USB IP DRIVER FOR HISILICON KIRIN 970
20347 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20348 L:      linux-usb@vger.kernel.org
20349 S:      Maintained
20350 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20351 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20352
20353 USB ISP116X DRIVER
20354 M:      Olav Kongas <ok@artecdesign.ee>
20355 L:      linux-usb@vger.kernel.org
20356 S:      Maintained
20357 F:      drivers/usb/host/isp116x*
20358 F:      include/linux/usb/isp116x.h
20359
20360 USB ISP1760 DRIVER
20361 M:      Rui Miguel Silva <rui.silva@linaro.org>
20362 L:      linux-usb@vger.kernel.org
20363 S:      Maintained
20364 F:      drivers/usb/isp1760/*
20365 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20366
20367 USB LAN78XX ETHERNET DRIVER
20368 M:      Woojung Huh <woojung.huh@microchip.com>
20369 M:      UNGLinuxDriver@microchip.com
20370 L:      netdev@vger.kernel.org
20371 S:      Maintained
20372 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20373 F:      drivers/net/usb/lan78xx.*
20374 F:      include/dt-bindings/net/microchip-lan78xx.h
20375
20376 USB MASS STORAGE DRIVER
20377 M:      Alan Stern <stern@rowland.harvard.edu>
20378 L:      linux-usb@vger.kernel.org
20379 L:      usb-storage@lists.one-eyed-alien.net
20380 S:      Maintained
20381 F:      drivers/usb/storage/
20382
20383 USB MIDI DRIVER
20384 M:      Clemens Ladisch <clemens@ladisch.de>
20385 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20386 S:      Maintained
20387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20388 F:      sound/usb/midi.*
20389
20390 USB NETWORKING DRIVERS
20391 L:      linux-usb@vger.kernel.org
20392 S:      Odd Fixes
20393 F:      drivers/net/usb/
20394
20395 USB OHCI DRIVER
20396 M:      Alan Stern <stern@rowland.harvard.edu>
20397 L:      linux-usb@vger.kernel.org
20398 S:      Maintained
20399 F:      Documentation/usb/ohci.rst
20400 F:      drivers/usb/host/ohci*
20401
20402 USB OTG FSM (Finite State Machine)
20403 M:      Peter Chen <peter.chen@kernel.org>
20404 L:      linux-usb@vger.kernel.org
20405 S:      Maintained
20406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20407 F:      drivers/usb/common/usb-otg-fsm.c
20408
20409 USB OVER IP DRIVER
20410 M:      Valentina Manea <valentina.manea.m@gmail.com>
20411 M:      Shuah Khan <shuah@kernel.org>
20412 M:      Shuah Khan <skhan@linuxfoundation.org>
20413 L:      linux-usb@vger.kernel.org
20414 S:      Maintained
20415 F:      Documentation/usb/usbip_protocol.rst
20416 F:      drivers/usb/usbip/
20417 F:      tools/testing/selftests/drivers/usb/usbip/
20418 F:      tools/usb/usbip/
20419
20420 USB PEGASUS DRIVER
20421 M:      Petko Manolov <petkan@nucleusys.com>
20422 L:      linux-usb@vger.kernel.org
20423 L:      netdev@vger.kernel.org
20424 S:      Maintained
20425 W:      https://github.com/petkan/pegasus
20426 T:      git git://github.com/petkan/pegasus.git
20427 F:      drivers/net/usb/pegasus.*
20428
20429 USB PHY LAYER
20430 M:      Felipe Balbi <balbi@kernel.org>
20431 L:      linux-usb@vger.kernel.org
20432 S:      Maintained
20433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20434 F:      drivers/usb/phy/
20435
20436 USB PRINTER DRIVER (usblp)
20437 M:      Pete Zaitcev <zaitcev@redhat.com>
20438 L:      linux-usb@vger.kernel.org
20439 S:      Supported
20440 F:      drivers/usb/class/usblp.c
20441
20442 USB RAW GADGET DRIVER
20443 R:      Andrey Konovalov <andreyknvl@gmail.com>
20444 L:      linux-usb@vger.kernel.org
20445 S:      Maintained
20446 F:      Documentation/usb/raw-gadget.rst
20447 F:      drivers/usb/gadget/legacy/raw_gadget.c
20448 F:      include/uapi/linux/usb/raw_gadget.h
20449
20450 USB QMI WWAN NETWORK DRIVER
20451 M:      Bjørn Mork <bjorn@mork.no>
20452 L:      netdev@vger.kernel.org
20453 S:      Maintained
20454 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20455 F:      drivers/net/usb/qmi_wwan.c
20456
20457 USB RTL8150 DRIVER
20458 M:      Petko Manolov <petkan@nucleusys.com>
20459 L:      linux-usb@vger.kernel.org
20460 L:      netdev@vger.kernel.org
20461 S:      Maintained
20462 W:      https://github.com/petkan/rtl8150
20463 T:      git git://github.com/petkan/rtl8150.git
20464 F:      drivers/net/usb/rtl8150.c
20465
20466 USB SERIAL SUBSYSTEM
20467 M:      Johan Hovold <johan@kernel.org>
20468 L:      linux-usb@vger.kernel.org
20469 S:      Maintained
20470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20471 F:      Documentation/usb/usb-serial.rst
20472 F:      drivers/usb/serial/
20473 F:      include/linux/usb/serial.h
20474
20475 USB SMSC75XX ETHERNET DRIVER
20476 M:      Steve Glendinning <steve.glendinning@shawell.net>
20477 L:      netdev@vger.kernel.org
20478 S:      Maintained
20479 F:      drivers/net/usb/smsc75xx.*
20480
20481 USB SMSC95XX ETHERNET DRIVER
20482 M:      Steve Glendinning <steve.glendinning@shawell.net>
20483 M:      UNGLinuxDriver@microchip.com
20484 L:      netdev@vger.kernel.org
20485 S:      Maintained
20486 F:      drivers/net/usb/smsc95xx.*
20487
20488 USB SUBSYSTEM
20489 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20490 L:      linux-usb@vger.kernel.org
20491 S:      Supported
20492 W:      http://www.linux-usb.org
20493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20494 F:      Documentation/devicetree/bindings/usb/
20495 F:      Documentation/usb/
20496 F:      drivers/usb/
20497 F:      include/linux/usb.h
20498 F:      include/linux/usb/
20499
20500 USB TYPEC BUS FOR ALTERNATE MODES
20501 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20502 L:      linux-usb@vger.kernel.org
20503 S:      Maintained
20504 F:      Documentation/ABI/testing/sysfs-bus-typec
20505 F:      Documentation/driver-api/usb/typec_bus.rst
20506 F:      drivers/usb/typec/altmodes/
20507 F:      include/linux/usb/typec_altmode.h
20508
20509 USB TYPEC CLASS
20510 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20511 L:      linux-usb@vger.kernel.org
20512 S:      Maintained
20513 F:      Documentation/ABI/testing/sysfs-class-typec
20514 F:      Documentation/driver-api/usb/typec.rst
20515 F:      drivers/usb/typec/
20516 F:      include/linux/usb/typec.h
20517
20518 USB TYPEC INTEL PMC MUX DRIVER
20519 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20520 L:      linux-usb@vger.kernel.org
20521 S:      Maintained
20522 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20523 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20524
20525 USB TYPEC PI3USB30532 MUX DRIVER
20526 M:      Hans de Goede <hdegoede@redhat.com>
20527 L:      linux-usb@vger.kernel.org
20528 S:      Maintained
20529 F:      drivers/usb/typec/mux/pi3usb30532.c
20530
20531 USB TYPEC PORT CONTROLLER DRIVERS
20532 M:      Guenter Roeck <linux@roeck-us.net>
20533 L:      linux-usb@vger.kernel.org
20534 S:      Maintained
20535 F:      drivers/usb/typec/tcpm/
20536
20537 USB UHCI DRIVER
20538 M:      Alan Stern <stern@rowland.harvard.edu>
20539 L:      linux-usb@vger.kernel.org
20540 S:      Maintained
20541 F:      drivers/usb/host/uhci*
20542
20543 USB VIDEO CLASS
20544 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20545 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
20546 L:      linux-media@vger.kernel.org
20547 S:      Maintained
20548 W:      http://www.ideasonboard.org/uvc/
20549 T:      git git://linuxtv.org/media_tree.git
20550 F:      drivers/media/usb/uvc/
20551 F:      include/uapi/linux/uvcvideo.h
20552
20553 USB WEBCAM GADGET
20554 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20555 L:      linux-usb@vger.kernel.org
20556 S:      Maintained
20557 F:      drivers/usb/gadget/function/*uvc*
20558 F:      drivers/usb/gadget/legacy/webcam.c
20559 F:      include/uapi/linux/usb/g_uvc.h
20560
20561 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20562 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20563 L:      linux-wireless@vger.kernel.org
20564 S:      Maintained
20565 F:      drivers/net/wireless/rndis_wlan.c
20566
20567 USB XHCI DRIVER
20568 M:      Mathias Nyman <mathias.nyman@intel.com>
20569 L:      linux-usb@vger.kernel.org
20570 S:      Supported
20571 F:      drivers/usb/host/pci-quirks*
20572 F:      drivers/usb/host/xhci*
20573
20574 USB ZD1201 DRIVER
20575 L:      linux-wireless@vger.kernel.org
20576 S:      Orphan
20577 W:      http://linux-lc100020.sourceforge.net
20578 F:      drivers/net/wireless/zydas/zd1201.*
20579
20580 USB ZR364XX DRIVER
20581 M:      Antoine Jacquet <royale@zerezo.com>
20582 L:      linux-usb@vger.kernel.org
20583 L:      linux-media@vger.kernel.org
20584 S:      Maintained
20585 W:      http://royale.zerezo.com/zr364xx/
20586 T:      git git://linuxtv.org/media_tree.git
20587 F:      Documentation/admin-guide/media/zr364xx*
20588 F:      drivers/media/usb/zr364xx/
20589
20590 USER-MODE LINUX (UML)
20591 M:      Richard Weinberger <richard@nod.at>
20592 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20593 M:      Johannes Berg <johannes@sipsolutions.net>
20594 L:      linux-um@lists.infradead.org
20595 S:      Maintained
20596 W:      http://user-mode-linux.sourceforge.net
20597 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
20599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
20600 F:      Documentation/virt/uml/
20601 F:      arch/um/
20602 F:      arch/x86/um/
20603 F:      fs/hostfs/
20604
20605 USERSPACE COPYIN/COPYOUT (UIOVEC)
20606 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20607 S:      Maintained
20608 F:      include/linux/uio.h
20609 F:      lib/iov_iter.c
20610
20611 USERSPACE DMA BUFFER DRIVER
20612 M:      Gerd Hoffmann <kraxel@redhat.com>
20613 L:      dri-devel@lists.freedesktop.org
20614 S:      Maintained
20615 T:      git git://anongit.freedesktop.org/drm/drm-misc
20616 F:      drivers/dma-buf/udmabuf.c
20617 F:      include/uapi/linux/udmabuf.h
20618
20619 USERSPACE I/O (UIO)
20620 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20621 S:      Maintained
20622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20623 F:      Documentation/driver-api/uio-howto.rst
20624 F:      drivers/uio/
20625 F:      include/linux/uio_driver.h
20626
20627 UTIL-LINUX PACKAGE
20628 M:      Karel Zak <kzak@redhat.com>
20629 L:      util-linux@vger.kernel.org
20630 S:      Maintained
20631 W:      http://en.wikipedia.org/wiki/Util-linux
20632 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20633
20634 UUID HELPERS
20635 M:      Christoph Hellwig <hch@lst.de>
20636 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20637 L:      linux-kernel@vger.kernel.org
20638 S:      Maintained
20639 T:      git git://git.infradead.org/users/hch/uuid.git
20640 F:      include/linux/uuid.h
20641 F:      include/uapi/linux/uuid.h
20642 F:      lib/test_uuid.c
20643 F:      lib/uuid.c
20644
20645 UV SYSFS DRIVER
20646 M:      Justin Ernst <justin.ernst@hpe.com>
20647 L:      platform-driver-x86@vger.kernel.org
20648 S:      Maintained
20649 F:      drivers/platform/x86/uv_sysfs.c
20650
20651 UVESAFB DRIVER
20652 M:      Michal Januszewski <spock@gentoo.org>
20653 L:      linux-fbdev@vger.kernel.org
20654 S:      Maintained
20655 W:      https://github.com/mjanusz/v86d
20656 F:      Documentation/fb/uvesafb.rst
20657 F:      drivers/video/fbdev/uvesafb.*
20658
20659 Ux500 CLOCK DRIVERS
20660 M:      Ulf Hansson <ulf.hansson@linaro.org>
20661 L:      linux-clk@vger.kernel.org
20662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20663 S:      Maintained
20664 F:      drivers/clk/ux500/
20665
20666 VF610 NAND DRIVER
20667 M:      Stefan Agner <stefan@agner.ch>
20668 L:      linux-mtd@lists.infradead.org
20669 S:      Supported
20670 F:      drivers/mtd/nand/raw/vf610_nfc.c
20671
20672 VFAT/FAT/MSDOS FILESYSTEM
20673 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20674 S:      Maintained
20675 F:      Documentation/filesystems/vfat.rst
20676 F:      fs/fat/
20677
20678 VFIO DRIVER
20679 M:      Alex Williamson <alex.williamson@redhat.com>
20680 R:      Cornelia Huck <cohuck@redhat.com>
20681 L:      kvm@vger.kernel.org
20682 S:      Maintained
20683 T:      git git://github.com/awilliam/linux-vfio.git
20684 F:      Documentation/driver-api/vfio.rst
20685 F:      drivers/vfio/
20686 F:      include/linux/vfio.h
20687 F:      include/linux/vfio_pci_core.h
20688 F:      include/uapi/linux/vfio.h
20689
20690 VFIO FSL-MC DRIVER
20691 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20692 L:      kvm@vger.kernel.org
20693 S:      Maintained
20694 F:      drivers/vfio/fsl-mc/
20695
20696 VFIO HISILICON PCI DRIVER
20697 M:      Longfang Liu <liulongfang@huawei.com>
20698 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20699 L:      kvm@vger.kernel.org
20700 S:      Maintained
20701 F:      drivers/vfio/pci/hisilicon/
20702
20703 VFIO MEDIATED DEVICE DRIVERS
20704 M:      Kirti Wankhede <kwankhede@nvidia.com>
20705 L:      kvm@vger.kernel.org
20706 S:      Maintained
20707 F:      Documentation/driver-api/vfio-mediated-device.rst
20708 F:      drivers/vfio/mdev/
20709 F:      include/linux/mdev.h
20710 F:      samples/vfio-mdev/
20711
20712 VFIO PCI DEVICE SPECIFIC DRIVERS
20713 R:      Jason Gunthorpe <jgg@nvidia.com>
20714 R:      Yishai Hadas <yishaih@nvidia.com>
20715 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20716 R:      Kevin Tian <kevin.tian@intel.com>
20717 L:      kvm@vger.kernel.org
20718 S:      Maintained
20719 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
20720 F:      drivers/vfio/pci/*/
20721
20722 VFIO PLATFORM DRIVER
20723 M:      Eric Auger <eric.auger@redhat.com>
20724 L:      kvm@vger.kernel.org
20725 S:      Maintained
20726 F:      drivers/vfio/platform/
20727
20728 VFIO MLX5 PCI DRIVER
20729 M:      Yishai Hadas <yishaih@nvidia.com>
20730 L:      kvm@vger.kernel.org
20731 S:      Maintained
20732 F:      drivers/vfio/pci/mlx5/
20733
20734 VGA_SWITCHEROO
20735 R:      Lukas Wunner <lukas@wunner.de>
20736 S:      Maintained
20737 T:      git git://anongit.freedesktop.org/drm/drm-misc
20738 F:      Documentation/gpu/vga-switcheroo.rst
20739 F:      drivers/gpu/vga/vga_switcheroo.c
20740 F:      include/linux/vga_switcheroo.h
20741
20742 VIA RHINE NETWORK DRIVER
20743 S:      Maintained
20744 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20745 F:      drivers/net/ethernet/via/via-rhine.c
20746
20747 VIA SD/MMC CARD CONTROLLER DRIVER
20748 M:      Bruce Chang <brucechang@via.com.tw>
20749 M:      Harald Welte <HaraldWelte@viatech.com>
20750 S:      Maintained
20751 F:      drivers/mmc/host/via-sdmmc.c
20752
20753 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20754 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20755 L:      linux-fbdev@vger.kernel.org
20756 S:      Maintained
20757 F:      drivers/video/fbdev/via/
20758 F:      include/linux/via-core.h
20759 F:      include/linux/via-gpio.h
20760 F:      include/linux/via_i2c.h
20761
20762 VIA VELOCITY NETWORK DRIVER
20763 M:      Francois Romieu <romieu@fr.zoreil.com>
20764 L:      netdev@vger.kernel.org
20765 S:      Maintained
20766 F:      drivers/net/ethernet/via/via-velocity.*
20767
20768 VICODEC VIRTUAL CODEC DRIVER
20769 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20770 L:      linux-media@vger.kernel.org
20771 S:      Maintained
20772 W:      https://linuxtv.org
20773 T:      git git://linuxtv.org/media_tree.git
20774 F:      drivers/media/test-drivers/vicodec/*
20775
20776 VIDEO I2C POLLING DRIVER
20777 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20778 L:      linux-media@vger.kernel.org
20779 S:      Maintained
20780 F:      drivers/media/i2c/video-i2c.c
20781
20782 VIDEO MULTIPLEXER DRIVER
20783 M:      Philipp Zabel <p.zabel@pengutronix.de>
20784 L:      linux-media@vger.kernel.org
20785 S:      Maintained
20786 F:      drivers/media/platform/video-mux.c
20787
20788 VIDEOBUF2 FRAMEWORK
20789 M:      Tomasz Figa <tfiga@chromium.org>
20790 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20791 L:      linux-media@vger.kernel.org
20792 S:      Maintained
20793 F:      drivers/media/common/videobuf2/*
20794 F:      include/media/videobuf2-*
20795
20796 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20797 M:      Shuah Khan <skhan@linuxfoundation.org>
20798 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
20799 L:      linux-media@vger.kernel.org
20800 S:      Maintained
20801 W:      https://linuxtv.org
20802 T:      git git://linuxtv.org/media_tree.git
20803 F:      drivers/media/test-drivers/vimc/*
20804
20805 VIRT LIB
20806 M:      Alex Williamson <alex.williamson@redhat.com>
20807 M:      Paolo Bonzini <pbonzini@redhat.com>
20808 L:      kvm@vger.kernel.org
20809 S:      Supported
20810 F:      virt/lib/
20811
20812 VIRTIO AND VHOST VSOCK DRIVER
20813 M:      Stefan Hajnoczi <stefanha@redhat.com>
20814 M:      Stefano Garzarella <sgarzare@redhat.com>
20815 L:      kvm@vger.kernel.org
20816 L:      virtualization@lists.linux-foundation.org
20817 L:      netdev@vger.kernel.org
20818 S:      Maintained
20819 F:      drivers/vhost/vsock.c
20820 F:      include/linux/virtio_vsock.h
20821 F:      include/uapi/linux/virtio_vsock.h
20822 F:      net/vmw_vsock/virtio_transport.c
20823 F:      net/vmw_vsock/virtio_transport_common.c
20824
20825 VIRTIO BLOCK AND SCSI DRIVERS
20826 M:      "Michael S. Tsirkin" <mst@redhat.com>
20827 M:      Jason Wang <jasowang@redhat.com>
20828 R:      Paolo Bonzini <pbonzini@redhat.com>
20829 R:      Stefan Hajnoczi <stefanha@redhat.com>
20830 L:      virtualization@lists.linux-foundation.org
20831 S:      Maintained
20832 F:      drivers/block/virtio_blk.c
20833 F:      drivers/scsi/virtio_scsi.c
20834 F:      drivers/vhost/scsi.c
20835 F:      include/uapi/linux/virtio_blk.h
20836 F:      include/uapi/linux/virtio_scsi.h
20837
20838 VIRTIO CONSOLE DRIVER
20839 M:      Amit Shah <amit@kernel.org>
20840 L:      virtualization@lists.linux-foundation.org
20841 S:      Maintained
20842 F:      drivers/char/virtio_console.c
20843 F:      include/linux/virtio_console.h
20844 F:      include/uapi/linux/virtio_console.h
20845
20846 VIRTIO CORE AND NET DRIVERS
20847 M:      "Michael S. Tsirkin" <mst@redhat.com>
20848 M:      Jason Wang <jasowang@redhat.com>
20849 L:      virtualization@lists.linux-foundation.org
20850 S:      Maintained
20851 F:      Documentation/ABI/testing/sysfs-bus-vdpa
20852 F:      Documentation/devicetree/bindings/virtio/
20853 F:      drivers/block/virtio_blk.c
20854 F:      drivers/crypto/virtio/
20855 F:      drivers/net/virtio_net.c
20856 F:      drivers/vdpa/
20857 F:      drivers/virtio/
20858 F:      include/linux/vdpa.h
20859 F:      include/linux/virtio*.h
20860 F:      include/uapi/linux/virtio_*.h
20861 F:      tools/virtio/
20862
20863 VIRTIO BALLOON
20864 M:      "Michael S. Tsirkin" <mst@redhat.com>
20865 M:      David Hildenbrand <david@redhat.com>
20866 L:      virtualization@lists.linux-foundation.org
20867 S:      Maintained
20868 F:      drivers/virtio/virtio_balloon.c
20869 F:      include/uapi/linux/virtio_balloon.h
20870 F:      include/linux/balloon_compaction.h
20871 F:      mm/balloon_compaction.c
20872
20873 VIRTIO CRYPTO DRIVER
20874 M:      Gonglei <arei.gonglei@huawei.com>
20875 L:      virtualization@lists.linux-foundation.org
20876 L:      linux-crypto@vger.kernel.org
20877 S:      Maintained
20878 F:      drivers/crypto/virtio/
20879 F:      include/uapi/linux/virtio_crypto.h
20880
20881 VIRTIO DRIVERS FOR S390
20882 M:      Cornelia Huck <cohuck@redhat.com>
20883 M:      Halil Pasic <pasic@linux.ibm.com>
20884 L:      linux-s390@vger.kernel.org
20885 L:      virtualization@lists.linux-foundation.org
20886 L:      kvm@vger.kernel.org
20887 S:      Supported
20888 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20889 F:      drivers/s390/virtio/
20890
20891 VIRTIO FILE SYSTEM
20892 M:      Vivek Goyal <vgoyal@redhat.com>
20893 M:      Stefan Hajnoczi <stefanha@redhat.com>
20894 M:      Miklos Szeredi <miklos@szeredi.hu>
20895 L:      virtualization@lists.linux-foundation.org
20896 L:      linux-fsdevel@vger.kernel.org
20897 S:      Supported
20898 W:      https://virtio-fs.gitlab.io/
20899 F:      Documentation/filesystems/virtiofs.rst
20900 F:      fs/fuse/virtio_fs.c
20901 F:      include/uapi/linux/virtio_fs.h
20902
20903 VIRTIO GPIO DRIVER
20904 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20905 M:      Viresh Kumar <vireshk@kernel.org>
20906 L:      linux-gpio@vger.kernel.org
20907 L:      virtualization@lists.linux-foundation.org
20908 S:      Maintained
20909 F:      drivers/gpio/gpio-virtio.c
20910 F:      include/uapi/linux/virtio_gpio.h
20911
20912 VIRTIO GPU DRIVER
20913 M:      David Airlie <airlied@linux.ie>
20914 M:      Gerd Hoffmann <kraxel@redhat.com>
20915 R:      Gurchetan Singh <gurchetansingh@chromium.org>
20916 R:      Chia-I Wu <olvaffe@gmail.com>
20917 L:      dri-devel@lists.freedesktop.org
20918 L:      virtualization@lists.linux-foundation.org
20919 S:      Maintained
20920 T:      git git://anongit.freedesktop.org/drm/drm-misc
20921 F:      drivers/gpu/drm/virtio/
20922 F:      include/uapi/linux/virtio_gpu.h
20923
20924 VIRTIO HOST (VHOST)
20925 M:      "Michael S. Tsirkin" <mst@redhat.com>
20926 M:      Jason Wang <jasowang@redhat.com>
20927 L:      kvm@vger.kernel.org
20928 L:      virtualization@lists.linux-foundation.org
20929 L:      netdev@vger.kernel.org
20930 S:      Maintained
20931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20932 F:      drivers/vhost/
20933 F:      include/linux/vhost_iotlb.h
20934 F:      include/uapi/linux/vhost.h
20935
20936 VIRTIO INPUT DRIVER
20937 M:      Gerd Hoffmann <kraxel@redhat.com>
20938 S:      Maintained
20939 F:      drivers/virtio/virtio_input.c
20940 F:      include/uapi/linux/virtio_input.h
20941
20942 VIRTIO IOMMU DRIVER
20943 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20944 L:      virtualization@lists.linux-foundation.org
20945 S:      Maintained
20946 F:      drivers/iommu/virtio-iommu.c
20947 F:      include/uapi/linux/virtio_iommu.h
20948
20949 VIRTIO MEM DRIVER
20950 M:      David Hildenbrand <david@redhat.com>
20951 L:      virtualization@lists.linux-foundation.org
20952 S:      Maintained
20953 W:      https://virtio-mem.gitlab.io/
20954 F:      drivers/virtio/virtio_mem.c
20955 F:      include/uapi/linux/virtio_mem.h
20956
20957 VIRTIO SOUND DRIVER
20958 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20959 M:      "Michael S. Tsirkin" <mst@redhat.com>
20960 L:      virtualization@lists.linux-foundation.org
20961 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20962 S:      Maintained
20963 F:      include/uapi/linux/virtio_snd.h
20964 F:      sound/virtio/*
20965
20966 VIRTIO I2C DRIVER
20967 M:      Conghui Chen <conghui.chen@intel.com>
20968 M:      Viresh Kumar <viresh.kumar@linaro.org>
20969 L:      linux-i2c@vger.kernel.org
20970 L:      virtualization@lists.linux-foundation.org
20971 S:      Maintained
20972 F:      drivers/i2c/busses/i2c-virtio.c
20973 F:      include/uapi/linux/virtio_i2c.h
20974
20975 VIRTIO PMEM DRIVER
20976 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20977 L:      virtualization@lists.linux-foundation.org
20978 S:      Maintained
20979 F:      drivers/nvdimm/virtio_pmem.c
20980 F:      drivers/nvdimm/nd_virtio.c
20981
20982 VIRTUAL BOX GUEST DEVICE DRIVER
20983 M:      Hans de Goede <hdegoede@redhat.com>
20984 M:      Arnd Bergmann <arnd@arndb.de>
20985 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20986 S:      Maintained
20987 F:      drivers/virt/vboxguest/
20988 F:      include/linux/vbox_utils.h
20989 F:      include/uapi/linux/vbox*.h
20990
20991 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20992 M:      Hans de Goede <hdegoede@redhat.com>
20993 L:      linux-fsdevel@vger.kernel.org
20994 S:      Maintained
20995 F:      fs/vboxsf/*
20996
20997 VIRTUAL SERIO DEVICE DRIVER
20998 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20999 S:      Maintained
21000 F:      drivers/input/serio/userio.c
21001 F:      include/uapi/linux/userio.h
21002
21003 VIVID VIRTUAL VIDEO DRIVER
21004 M:      Hans Verkuil <hverkuil@xs4all.nl>
21005 L:      linux-media@vger.kernel.org
21006 S:      Maintained
21007 W:      https://linuxtv.org
21008 T:      git git://linuxtv.org/media_tree.git
21009 F:      drivers/media/test-drivers/vivid/*
21010
21011 VIDTV VIRTUAL DIGITAL TV DRIVER
21012 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21013 L:      linux-media@vger.kernel.org
21014 S:      Maintained
21015 W:      https://linuxtv.org
21016 T:      git git://linuxtv.org/media_tree.git
21017 F:      drivers/media/test-drivers/vidtv/*
21018
21019 VLYNQ BUS
21020 M:      Florian Fainelli <f.fainelli@gmail.com>
21021 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21022 S:      Maintained
21023 F:      drivers/vlynq/vlynq.c
21024 F:      include/linux/vlynq.h
21025
21026 VME SUBSYSTEM
21027 M:      Martyn Welch <martyn@welchs.me.uk>
21028 M:      Manohar Vanga <manohar.vanga@gmail.com>
21029 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21030 L:      linux-kernel@vger.kernel.org
21031 S:      Maintained
21032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21033 F:      Documentation/driver-api/vme.rst
21034 F:      drivers/staging/vme/
21035 F:      drivers/vme/
21036 F:      include/linux/vme*
21037
21038 VM SOCKETS (AF_VSOCK)
21039 M:      Stefano Garzarella <sgarzare@redhat.com>
21040 L:      virtualization@lists.linux-foundation.org
21041 L:      netdev@vger.kernel.org
21042 S:      Maintained
21043 F:      drivers/net/vsockmon.c
21044 F:      include/net/af_vsock.h
21045 F:      include/uapi/linux/vm_sockets.h
21046 F:      include/uapi/linux/vm_sockets_diag.h
21047 F:      include/uapi/linux/vsockmon.h
21048 F:      net/vmw_vsock/
21049 F:      tools/testing/vsock/
21050
21051 VMWARE BALLOON DRIVER
21052 M:      Nadav Amit <namit@vmware.com>
21053 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21054 L:      linux-kernel@vger.kernel.org
21055 S:      Maintained
21056 F:      drivers/misc/vmw_balloon.c
21057
21058 VMWARE HYPERVISOR INTERFACE
21059 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21060 M:      Alexey Makhalov <amakhalov@vmware.com>
21061 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21062 L:      virtualization@lists.linux-foundation.org
21063 L:      x86@kernel.org
21064 S:      Supported
21065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21066 F:      arch/x86/include/asm/vmware.h
21067 F:      arch/x86/kernel/cpu/vmware.c
21068
21069 VMWARE PVRDMA DRIVER
21070 M:      Bryan Tan <bryantan@vmware.com>
21071 M:      Vishnu Dasa <vdasa@vmware.com>
21072 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21073 L:      linux-rdma@vger.kernel.org
21074 S:      Maintained
21075 F:      drivers/infiniband/hw/vmw_pvrdma/
21076
21077 VMware PVSCSI driver
21078 M:      Vishal Bhakta <vbhakta@vmware.com>
21079 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21080 L:      linux-scsi@vger.kernel.org
21081 S:      Maintained
21082 F:      drivers/scsi/vmw_pvscsi.c
21083 F:      drivers/scsi/vmw_pvscsi.h
21084
21085 VMWARE VIRTUAL PTP CLOCK DRIVER
21086 M:      Vivek Thampi <vithampi@vmware.com>
21087 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21088 L:      netdev@vger.kernel.org
21089 S:      Supported
21090 F:      drivers/ptp/ptp_vmw.c
21091
21092 VMWARE VMCI DRIVER
21093 M:      Bryan Tan <bryantan@vmware.com>
21094 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21095 M:      Vishnu Dasa <vdasa@vmware.com>
21096 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21097 L:      linux-kernel@vger.kernel.org
21098 S:      Maintained
21099 F:      drivers/misc/vmw_vmci/
21100
21101 VMWARE VMMOUSE SUBDRIVER
21102 M:      Zack Rusin <zackr@vmware.com>
21103 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21104 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21105 L:      linux-input@vger.kernel.org
21106 S:      Maintained
21107 F:      drivers/input/mouse/vmmouse.c
21108 F:      drivers/input/mouse/vmmouse.h
21109
21110 VMWARE VMXNET3 ETHERNET DRIVER
21111 M:      Ronak Doshi <doshir@vmware.com>
21112 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21113 L:      netdev@vger.kernel.org
21114 S:      Maintained
21115 F:      drivers/net/vmxnet3/
21116
21117 VOCORE VOCORE2 BOARD
21118 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21119 L:      linux-mips@vger.kernel.org
21120 S:      Maintained
21121 F:      arch/mips/boot/dts/ralink/vocore2.dts
21122
21123 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21124 M:      Liam Girdwood <lgirdwood@gmail.com>
21125 M:      Mark Brown <broonie@kernel.org>
21126 L:      linux-kernel@vger.kernel.org
21127 S:      Supported
21128 W:      http://www.slimlogic.co.uk/?p=48
21129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21130 F:      Documentation/devicetree/bindings/regulator/
21131 F:      Documentation/power/regulator/
21132 F:      drivers/regulator/
21133 F:      include/dt-bindings/regulator/
21134 F:      include/linux/regulator/
21135 K:      regulator_get_optional
21136
21137 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21138 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21139 F:      drivers/regulator/irq_helpers.c
21140
21141 VRF
21142 M:      David Ahern <dsahern@kernel.org>
21143 L:      netdev@vger.kernel.org
21144 S:      Maintained
21145 F:      Documentation/networking/vrf.rst
21146 F:      drivers/net/vrf.c
21147
21148 VSPRINTF
21149 M:      Petr Mladek <pmladek@suse.com>
21150 M:      Steven Rostedt <rostedt@goodmis.org>
21151 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21152 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21153 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21154 S:      Maintained
21155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21156 F:      Documentation/core-api/printk-formats.rst
21157 F:      lib/test_printf.c
21158 F:      lib/test_scanf.c
21159 F:      lib/vsprintf.c
21160
21161 VT1211 HARDWARE MONITOR DRIVER
21162 M:      Juerg Haefliger <juergh@gmail.com>
21163 L:      linux-hwmon@vger.kernel.org
21164 S:      Maintained
21165 F:      Documentation/hwmon/vt1211.rst
21166 F:      drivers/hwmon/vt1211.c
21167
21168 VT8231 HARDWARE MONITOR DRIVER
21169 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21170 L:      linux-hwmon@vger.kernel.org
21171 S:      Maintained
21172 F:      drivers/hwmon/vt8231.c
21173
21174 VUB300 USB to SDIO/SD/MMC bridge chip
21175 L:      linux-mmc@vger.kernel.org
21176 S:      Orphan
21177 F:      drivers/mmc/host/vub300.c
21178
21179 W1 DALLAS'S 1-WIRE BUS
21180 M:      Evgeniy Polyakov <zbr@ioremap.net>
21181 S:      Maintained
21182 F:      Documentation/devicetree/bindings/w1/
21183 F:      Documentation/w1/
21184 F:      drivers/w1/
21185 F:      include/linux/w1.h
21186
21187 W83791D HARDWARE MONITORING DRIVER
21188 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21189 L:      linux-hwmon@vger.kernel.org
21190 S:      Maintained
21191 F:      Documentation/hwmon/w83791d.rst
21192 F:      drivers/hwmon/w83791d.c
21193
21194 W83793 HARDWARE MONITORING DRIVER
21195 M:      Rudolf Marek <r.marek@assembler.cz>
21196 L:      linux-hwmon@vger.kernel.org
21197 S:      Maintained
21198 F:      Documentation/hwmon/w83793.rst
21199 F:      drivers/hwmon/w83793.c
21200
21201 W83795 HARDWARE MONITORING DRIVER
21202 M:      Jean Delvare <jdelvare@suse.com>
21203 L:      linux-hwmon@vger.kernel.org
21204 S:      Maintained
21205 F:      drivers/hwmon/w83795.c
21206
21207 W83L51xD SD/MMC CARD INTERFACE DRIVER
21208 M:      Pierre Ossman <pierre@ossman.eu>
21209 S:      Maintained
21210 F:      drivers/mmc/host/wbsd.*
21211
21212 WACOM PROTOCOL 4 SERIAL TABLETS
21213 M:      Julian Squires <julian@cipht.net>
21214 M:      Hans de Goede <hdegoede@redhat.com>
21215 L:      linux-input@vger.kernel.org
21216 S:      Maintained
21217 F:      drivers/input/tablet/wacom_serial4.c
21218
21219 WATCHDOG DEVICE DRIVERS
21220 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21221 M:      Guenter Roeck <linux@roeck-us.net>
21222 L:      linux-watchdog@vger.kernel.org
21223 S:      Maintained
21224 W:      http://www.linux-watchdog.org/
21225 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21226 F:      Documentation/devicetree/bindings/watchdog/
21227 F:      Documentation/watchdog/
21228 F:      drivers/watchdog/
21229 F:      include/linux/watchdog.h
21230 F:      include/uapi/linux/watchdog.h
21231
21232 WHISKEYCOVE PMIC GPIO DRIVER
21233 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21234 L:      linux-gpio@vger.kernel.org
21235 S:      Maintained
21236 F:      drivers/gpio/gpio-wcove.c
21237
21238 WHWAVE RTC DRIVER
21239 M:      Dianlong Li <long17.cool@163.com>
21240 L:      linux-rtc@vger.kernel.org
21241 S:      Maintained
21242 F:      drivers/rtc/rtc-sd3078.c
21243
21244 WIIMOTE HID DRIVER
21245 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21246 L:      linux-input@vger.kernel.org
21247 S:      Maintained
21248 F:      drivers/hid/hid-wiimote*
21249
21250 WILOCITY WIL6210 WIRELESS DRIVER
21251 L:      linux-wireless@vger.kernel.org
21252 S:      Orphan
21253 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21254 F:      drivers/net/wireless/ath/wil6210/
21255
21256 WINBOND CIR DRIVER
21257 M:      David Härdeman <david@hardeman.nu>
21258 S:      Maintained
21259 F:      drivers/media/rc/winbond-cir.c
21260
21261 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21262 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21263 L:      linux-watchdog@vger.kernel.org
21264 S:      Maintained
21265 F:      drivers/watchdog/ebc-c384_wdt.c
21266
21267 WINSYSTEMS WS16C48 GPIO DRIVER
21268 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21269 L:      linux-gpio@vger.kernel.org
21270 S:      Maintained
21271 F:      drivers/gpio/gpio-ws16c48.c
21272
21273 WIREGUARD SECURE NETWORK TUNNEL
21274 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21275 L:      wireguard@lists.zx2c4.com
21276 L:      netdev@vger.kernel.org
21277 S:      Maintained
21278 F:      drivers/net/wireguard/
21279 F:      tools/testing/selftests/wireguard/
21280
21281 WISTRON LAPTOP BUTTON DRIVER
21282 M:      Miloslav Trmac <mitr@volny.cz>
21283 S:      Maintained
21284 F:      drivers/input/misc/wistron_btns.c
21285
21286 WL3501 WIRELESS PCMCIA CARD DRIVER
21287 L:      linux-wireless@vger.kernel.org
21288 S:      Odd fixes
21289 F:      drivers/net/wireless/wl3501*
21290
21291 WOLFSON MICROELECTRONICS DRIVERS
21292 L:      patches@opensource.cirrus.com
21293 S:      Supported
21294 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21295 T:      git https://github.com/CirrusLogic/linux-drivers.git
21296 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21297 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21298 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21299 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21300 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21301 F:      Documentation/devicetree/bindings/sound/wm*
21302 F:      Documentation/hwmon/wm83??.rst
21303 F:      arch/arm/mach-s3c/mach-crag6410*
21304 F:      drivers/clk/clk-wm83*.c
21305 F:      drivers/gpio/gpio-*wm*.c
21306 F:      drivers/gpio/gpio-arizona.c
21307 F:      drivers/hwmon/wm83??-hwmon.c
21308 F:      drivers/input/misc/wm831x-on.c
21309 F:      drivers/input/touchscreen/wm831x-ts.c
21310 F:      drivers/input/touchscreen/wm97*.c
21311 F:      drivers/leds/leds-wm83*.c
21312 F:      drivers/mfd/arizona*
21313 F:      drivers/mfd/cs47l24*
21314 F:      drivers/mfd/wm*.c
21315 F:      drivers/power/supply/wm83*.c
21316 F:      drivers/regulator/arizona*
21317 F:      drivers/regulator/wm8*.c
21318 F:      drivers/rtc/rtc-wm83*.c
21319 F:      drivers/video/backlight/wm83*_bl.c
21320 F:      drivers/watchdog/wm83*_wdt.c
21321 F:      include/linux/mfd/arizona/
21322 F:      include/linux/mfd/wm831x/
21323 F:      include/linux/mfd/wm8350/
21324 F:      include/linux/mfd/wm8400*
21325 F:      include/linux/regulator/arizona*
21326 F:      include/linux/wm97xx.h
21327 F:      include/sound/wm????.h
21328 F:      sound/soc/codecs/arizona*
21329 F:      sound/soc/codecs/cs47l24*
21330 F:      sound/soc/codecs/wm*
21331
21332 WORKQUEUE
21333 M:      Tejun Heo <tj@kernel.org>
21334 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21335 S:      Maintained
21336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21337 F:      Documentation/core-api/workqueue.rst
21338 F:      include/linux/workqueue.h
21339 F:      kernel/workqueue.c
21340
21341 WWAN DRIVERS
21342 M:      Loic Poulain <loic.poulain@linaro.org>
21343 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21344 R:      Johannes Berg <johannes@sipsolutions.net>
21345 L:      netdev@vger.kernel.org
21346 S:      Maintained
21347 F:      drivers/net/wwan/
21348 F:      include/linux/wwan.h
21349 F:      include/uapi/linux/wwan.h
21350
21351 X-POWERS AXP288 PMIC DRIVERS
21352 M:      Hans de Goede <hdegoede@redhat.com>
21353 S:      Maintained
21354 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21355 N:      axp288
21356
21357 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21358 M:      Chen-Yu Tsai <wens@csie.org>
21359 L:      linux-kernel@vger.kernel.org
21360 S:      Maintained
21361 N:      axp[128]
21362
21363 X.25 STACK
21364 M:      Martin Schiller <ms@dev.tdt.de>
21365 L:      linux-x25@vger.kernel.org
21366 S:      Maintained
21367 F:      Documentation/networking/lapb-module.rst
21368 F:      Documentation/networking/x25*
21369 F:      drivers/net/wan/hdlc_x25.c
21370 F:      drivers/net/wan/lapbether.c
21371 F:      include/*/lapb.h
21372 F:      include/net/x25*
21373 F:      include/uapi/linux/x25.h
21374 F:      net/lapb/
21375 F:      net/x25/
21376
21377 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21378 M:      Thomas Gleixner <tglx@linutronix.de>
21379 M:      Ingo Molnar <mingo@redhat.com>
21380 M:      Borislav Petkov <bp@alien8.de>
21381 M:      Dave Hansen <dave.hansen@linux.intel.com>
21382 M:      x86@kernel.org
21383 R:      "H. Peter Anvin" <hpa@zytor.com>
21384 L:      linux-kernel@vger.kernel.org
21385 S:      Maintained
21386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21387 F:      Documentation/devicetree/bindings/x86/
21388 F:      Documentation/x86/
21389 F:      arch/x86/
21390
21391 X86 ENTRY CODE
21392 M:      Andy Lutomirski <luto@kernel.org>
21393 L:      linux-kernel@vger.kernel.org
21394 S:      Maintained
21395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21396 F:      arch/x86/entry/
21397
21398 X86 MCE INFRASTRUCTURE
21399 M:      Tony Luck <tony.luck@intel.com>
21400 M:      Borislav Petkov <bp@alien8.de>
21401 L:      linux-edac@vger.kernel.org
21402 S:      Maintained
21403 F:      Documentation/ABI/testing/sysfs-mce
21404 F:      Documentation/x86/x86_64/machinecheck.rst
21405 F:      arch/x86/kernel/cpu/mce/*
21406
21407 X86 MICROCODE UPDATE SUPPORT
21408 M:      Borislav Petkov <bp@alien8.de>
21409 S:      Maintained
21410 F:      arch/x86/kernel/cpu/microcode/*
21411
21412 X86 MM
21413 M:      Dave Hansen <dave.hansen@linux.intel.com>
21414 M:      Andy Lutomirski <luto@kernel.org>
21415 M:      Peter Zijlstra <peterz@infradead.org>
21416 L:      linux-kernel@vger.kernel.org
21417 S:      Maintained
21418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21419 F:      arch/x86/mm/
21420
21421 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21422 M:      Hans de Goede <hdegoede@redhat.com>
21423 L:      platform-driver-x86@vger.kernel.org
21424 S:      Maintained
21425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21426 F:      drivers/platform/x86/x86-android-tablets.c
21427
21428 X86 PLATFORM DRIVERS
21429 M:      Hans de Goede <hdegoede@redhat.com>
21430 M:      Mark Gross <markgross@kernel.org>
21431 L:      platform-driver-x86@vger.kernel.org
21432 S:      Maintained
21433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21434 F:      drivers/platform/olpc/
21435 F:      drivers/platform/x86/
21436
21437 X86 PLATFORM DRIVERS - ARCH
21438 R:      Darren Hart <dvhart@infradead.org>
21439 R:      Andy Shevchenko <andy@infradead.org>
21440 L:      platform-driver-x86@vger.kernel.org
21441 L:      x86@kernel.org
21442 S:      Maintained
21443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21444 F:      arch/x86/platform
21445
21446 X86 PLATFORM UV HPE SUPERDOME FLEX
21447 M:      Steve Wahl <steve.wahl@hpe.com>
21448 R:      Mike Travis <mike.travis@hpe.com>
21449 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21450 R:      Russ Anderson <russ.anderson@hpe.com>
21451 S:      Supported
21452 F:      arch/x86/include/asm/uv/
21453 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21454 F:      arch/x86/platform/uv/
21455
21456 X86 STACK UNWINDING
21457 M:      Josh Poimboeuf <jpoimboe@redhat.com>
21458 M:      Peter Zijlstra <peterz@infradead.org>
21459 S:      Supported
21460 F:      arch/x86/include/asm/unwind*.h
21461 F:      arch/x86/kernel/dumpstack.c
21462 F:      arch/x86/kernel/stacktrace.c
21463 F:      arch/x86/kernel/unwind_*.c
21464
21465 X86 VDSO
21466 M:      Andy Lutomirski <luto@kernel.org>
21467 L:      linux-kernel@vger.kernel.org
21468 S:      Maintained
21469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21470 F:      arch/x86/entry/vdso/
21471
21472 XARRAY
21473 M:      Matthew Wilcox <willy@infradead.org>
21474 L:      linux-fsdevel@vger.kernel.org
21475 S:      Supported
21476 F:      Documentation/core-api/xarray.rst
21477 F:      include/linux/idr.h
21478 F:      include/linux/xarray.h
21479 F:      lib/idr.c
21480 F:      lib/xarray.c
21481 F:      tools/testing/radix-tree
21482
21483 XBOX DVD IR REMOTE
21484 M:      Benjamin Valentin <benpicco@googlemail.com>
21485 S:      Maintained
21486 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21487 F:      drivers/media/rc/xbox_remote.c
21488
21489 XC2028/3028 TUNER DRIVER
21490 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21491 L:      linux-media@vger.kernel.org
21492 S:      Maintained
21493 W:      https://linuxtv.org
21494 T:      git git://linuxtv.org/media_tree.git
21495 F:      drivers/media/tuners/xc2028.*
21496
21497 XDP (eXpress Data Path)
21498 M:      Alexei Starovoitov <ast@kernel.org>
21499 M:      Daniel Borkmann <daniel@iogearbox.net>
21500 M:      David S. Miller <davem@davemloft.net>
21501 M:      Jakub Kicinski <kuba@kernel.org>
21502 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21503 M:      John Fastabend <john.fastabend@gmail.com>
21504 L:      netdev@vger.kernel.org
21505 L:      bpf@vger.kernel.org
21506 S:      Supported
21507 F:      include/net/xdp.h
21508 F:      include/net/xdp_priv.h
21509 F:      include/trace/events/xdp.h
21510 F:      kernel/bpf/cpumap.c
21511 F:      kernel/bpf/devmap.c
21512 F:      net/core/xdp.c
21513 F:      samples/bpf/xdp*
21514 F:      tools/testing/selftests/bpf/*xdp*
21515 F:      tools/testing/selftests/bpf/*/*xdp*
21516 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21517 F:      drivers/net/ethernet/*/*/*xdp*
21518 K:      (?:\b|_)xdp(?:\b|_)
21519
21520 XDP SOCKETS (AF_XDP)
21521 M:      Björn Töpel <bjorn@kernel.org>
21522 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21523 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21524 L:      netdev@vger.kernel.org
21525 L:      bpf@vger.kernel.org
21526 S:      Maintained
21527 F:      Documentation/networking/af_xdp.rst
21528 F:      include/net/xdp_sock*
21529 F:      include/net/xsk_buff_pool.h
21530 F:      include/uapi/linux/if_xdp.h
21531 F:      include/uapi/linux/xdp_diag.h
21532 F:      include/net/netns/xdp.h
21533 F:      net/xdp/
21534 F:      samples/bpf/xdpsock*
21535 F:      tools/lib/bpf/xsk*
21536
21537 XEN BLOCK SUBSYSTEM
21538 M:      Roger Pau Monné <roger.pau@citrix.com>
21539 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21540 S:      Supported
21541 F:      drivers/block/xen*
21542 F:      drivers/block/xen-blkback/*
21543
21544 XEN HYPERVISOR ARM
21545 M:      Stefano Stabellini <sstabellini@kernel.org>
21546 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21547 S:      Maintained
21548 F:      arch/arm/include/asm/xen/
21549 F:      arch/arm/xen/
21550
21551 XEN HYPERVISOR ARM64
21552 M:      Stefano Stabellini <sstabellini@kernel.org>
21553 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21554 S:      Maintained
21555 F:      arch/arm64/include/asm/xen/
21556 F:      arch/arm64/xen/
21557
21558 XEN HYPERVISOR INTERFACE
21559 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21560 M:      Juergen Gross <jgross@suse.com>
21561 R:      Stefano Stabellini <sstabellini@kernel.org>
21562 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21563 S:      Supported
21564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21565 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21566 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21567 F:      arch/x86/include/asm/pvclock-abi.h
21568 F:      arch/x86/include/asm/xen/
21569 F:      arch/x86/platform/pvh/
21570 F:      arch/x86/xen/
21571 F:      drivers/*/xen-*front.c
21572 F:      drivers/xen/
21573 F:      include/uapi/xen/
21574 F:      include/xen/
21575
21576 XEN NETWORK BACKEND DRIVER
21577 M:      Wei Liu <wei.liu@kernel.org>
21578 M:      Paul Durrant <paul@xen.org>
21579 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21580 L:      netdev@vger.kernel.org
21581 S:      Supported
21582 F:      drivers/net/xen-netback/*
21583
21584 XEN PCI SUBSYSTEM
21585 M:      Juergen Gross <jgross@suse.com>
21586 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21587 S:      Supported
21588 F:      arch/x86/pci/*xen*
21589 F:      drivers/pci/*xen*
21590
21591 XEN PVSCSI DRIVERS
21592 M:      Juergen Gross <jgross@suse.com>
21593 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21594 L:      linux-scsi@vger.kernel.org
21595 S:      Supported
21596 F:      drivers/scsi/xen-scsifront.c
21597 F:      drivers/xen/xen-scsiback.c
21598 F:      include/xen/interface/io/vscsiif.h
21599
21600 XEN PVUSB DRIVER
21601 M:      Juergen Gross <jgross@suse.com>
21602 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21603 L:      linux-usb@vger.kernel.org
21604 S:      Supported
21605 F:      drivers/usb/host/xen*
21606 F:      include/xen/interface/io/usbif.h
21607
21608 XEN SOUND FRONTEND DRIVER
21609 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21610 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21611 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21612 S:      Supported
21613 F:      sound/xen/*
21614
21615 XEN SWIOTLB SUBSYSTEM
21616 M:      Juergen Gross <jgross@suse.com>
21617 M:      Stefano Stabellini <sstabellini@kernel.org>
21618 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21619 L:      iommu@lists.linux-foundation.org
21620 S:      Supported
21621 F:      arch/x86/xen/*swiotlb*
21622 F:      drivers/xen/*swiotlb*
21623
21624 XFS FILESYSTEM
21625 C:      irc://irc.oftc.net/xfs
21626 M:      Darrick J. Wong <djwong@kernel.org>
21627 L:      linux-xfs@vger.kernel.org
21628 S:      Supported
21629 W:      http://xfs.org/
21630 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21631 F:      Documentation/ABI/testing/sysfs-fs-xfs
21632 F:      Documentation/admin-guide/xfs.rst
21633 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21634 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21635 F:      fs/xfs/
21636 F:      include/uapi/linux/dqblk_xfs.h
21637 F:      include/uapi/linux/fsmap.h
21638
21639 XILINX AMS DRIVER
21640 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21641 L:      linux-iio@vger.kernel.org
21642 S:      Maintained
21643 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21644 F:      drivers/iio/adc/xilinx-ams.c
21645
21646 XILINX AXI ETHERNET DRIVER
21647 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21648 S:      Maintained
21649 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21650
21651 XILINX CAN DRIVER
21652 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21653 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21654 L:      linux-can@vger.kernel.org
21655 S:      Maintained
21656 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
21657 F:      drivers/net/can/xilinx_can.c
21658
21659 XILINX GPIO DRIVER
21660 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21661 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21662 R:      Michal Simek <michal.simek@xilinx.com>
21663 S:      Maintained
21664 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21665 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21666 F:      drivers/gpio/gpio-xilinx.c
21667 F:      drivers/gpio/gpio-zynq.c
21668
21669 XILINX SD-FEC IP CORES
21670 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21671 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21672 S:      Maintained
21673 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21674 F:      Documentation/misc-devices/xilinx_sdfec.rst
21675 F:      drivers/misc/Kconfig
21676 F:      drivers/misc/Makefile
21677 F:      drivers/misc/xilinx_sdfec.c
21678 F:      include/uapi/misc/xilinx_sdfec.h
21679
21680 XILINX UARTLITE SERIAL DRIVER
21681 M:      Peter Korsgaard <jacmet@sunsite.dk>
21682 L:      linux-serial@vger.kernel.org
21683 S:      Maintained
21684 F:      drivers/tty/serial/uartlite.c
21685
21686 XILINX VIDEO IP CORES
21687 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21688 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21689 L:      linux-media@vger.kernel.org
21690 S:      Supported
21691 T:      git git://linuxtv.org/media_tree.git
21692 F:      Documentation/devicetree/bindings/media/xilinx/
21693 F:      drivers/media/platform/xilinx/
21694 F:      include/uapi/linux/xilinx-v4l2-controls.h
21695
21696 XILINX ZYNQMP DPDMA DRIVER
21697 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21698 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21699 L:      dmaengine@vger.kernel.org
21700 S:      Supported
21701 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21702 F:      drivers/dma/xilinx/xilinx_dpdma.c
21703 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21704
21705 XILINX ZYNQMP PSGTR PHY DRIVER
21706 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21707 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21708 L:      linux-kernel@vger.kernel.org
21709 S:      Supported
21710 T:      git https://github.com/Xilinx/linux-xlnx.git
21711 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21712 F:      drivers/phy/xilinx/phy-zynqmp.c
21713
21714 XILINX ZYNQMP SHA3 DRIVER
21715 M:      Harsha <harsha.harsha@xilinx.com>
21716 S:      Maintained
21717 F:      drivers/crypto/xilinx/zynqmp-sha.c
21718
21719 XILINX EVENT MANAGEMENT DRIVER
21720 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21721 S:      Maintained
21722 F:      drivers/soc/xilinx/xlnx_event_manager.c
21723 F:      include/linux/firmware/xlnx-event-manager.h
21724
21725 XILLYBUS DRIVER
21726 M:      Eli Billauer <eli.billauer@gmail.com>
21727 L:      linux-kernel@vger.kernel.org
21728 S:      Supported
21729 F:      drivers/char/xillybus/
21730
21731 XLP9XX I2C DRIVER
21732 M:      George Cherian <gcherian@marvell.com>
21733 L:      linux-i2c@vger.kernel.org
21734 S:      Supported
21735 W:      http://www.marvell.com
21736 F:      drivers/i2c/busses/i2c-xlp9xx.c
21737
21738 XRA1403 GPIO EXPANDER
21739 M:      Nandor Han <nandor.han@ge.com>
21740 M:      Semi Malinen <semi.malinen@ge.com>
21741 L:      linux-gpio@vger.kernel.org
21742 S:      Maintained
21743 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21744 F:      drivers/gpio/gpio-xra1403.c
21745
21746 XTENSA XTFPGA PLATFORM SUPPORT
21747 M:      Max Filippov <jcmvbkbc@gmail.com>
21748 L:      linux-xtensa@linux-xtensa.org
21749 S:      Maintained
21750 F:      drivers/spi/spi-xtensa-xtfpga.c
21751 F:      sound/soc/xtensa/xtfpga-i2s.c
21752
21753 YAM DRIVER FOR AX.25
21754 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21755 L:      linux-hams@vger.kernel.org
21756 S:      Maintained
21757 F:      drivers/net/hamradio/yam*
21758 F:      include/linux/yam.h
21759
21760 YAMA SECURITY MODULE
21761 M:      Kees Cook <keescook@chromium.org>
21762 S:      Supported
21763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21764 F:      Documentation/admin-guide/LSM/Yama.rst
21765 F:      security/yama/
21766
21767 YEALINK PHONE DRIVER
21768 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21769 L:      usbb2k-api-dev@nongnu.org
21770 S:      Maintained
21771 F:      Documentation/input/devices/yealink.rst
21772 F:      drivers/input/misc/yealink.*
21773
21774 Z8530 DRIVER FOR AX.25
21775 M:      Joerg Reuter <jreuter@yaina.de>
21776 L:      linux-hams@vger.kernel.org
21777 S:      Maintained
21778 W:      http://yaina.de/jreuter/
21779 W:      http://www.qsl.net/dl1bke/
21780 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21781 F:      drivers/net/hamradio/*scc.c
21782 F:      drivers/net/hamradio/z8530.h
21783
21784 ZBUD COMPRESSED PAGE ALLOCATOR
21785 M:      Seth Jennings <sjenning@redhat.com>
21786 M:      Dan Streetman <ddstreet@ieee.org>
21787 L:      linux-mm@kvack.org
21788 S:      Maintained
21789 F:      mm/zbud.c
21790
21791 ZD1211RW WIRELESS DRIVER
21792 M:      Ulrich Kunitz <kune@deine-taler.de>
21793 L:      linux-wireless@vger.kernel.org
21794 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
21795 S:      Maintained
21796 W:      http://zd1211.ath.cx/wiki/DriverRewrite
21797 F:      drivers/net/wireless/zydas/zd1211rw/
21798
21799 ZD1301 MEDIA DRIVER
21800 M:      Antti Palosaari <crope@iki.fi>
21801 L:      linux-media@vger.kernel.org
21802 S:      Maintained
21803 W:      https://linuxtv.org/
21804 W:      http://palosaari.fi/linux/
21805 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21806 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21807
21808 ZD1301_DEMOD MEDIA DRIVER
21809 M:      Antti Palosaari <crope@iki.fi>
21810 L:      linux-media@vger.kernel.org
21811 S:      Maintained
21812 W:      https://linuxtv.org/
21813 W:      http://palosaari.fi/linux/
21814 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21815 F:      drivers/media/dvb-frontends/zd1301_demod*
21816
21817 ZHAOXIN PROCESSOR SUPPORT
21818 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21819 L:      linux-kernel@vger.kernel.org
21820 S:      Maintained
21821 F:      arch/x86/kernel/cpu/zhaoxin.c
21822
21823 ZONEFS FILESYSTEM
21824 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
21825 M:      Naohiro Aota <naohiro.aota@wdc.com>
21826 R:      Johannes Thumshirn <jth@kernel.org>
21827 L:      linux-fsdevel@vger.kernel.org
21828 S:      Maintained
21829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21830 F:      Documentation/filesystems/zonefs.rst
21831 F:      fs/zonefs/
21832
21833 ZPOOL COMPRESSED PAGE STORAGE API
21834 M:      Dan Streetman <ddstreet@ieee.org>
21835 L:      linux-mm@kvack.org
21836 S:      Maintained
21837 F:      include/linux/zpool.h
21838 F:      mm/zpool.c
21839
21840 ZR36067 VIDEO FOR LINUX DRIVER
21841 M:      Corentin Labbe <clabbe@baylibre.com>
21842 L:      mjpeg-users@lists.sourceforge.net
21843 L:      linux-media@vger.kernel.org
21844 S:      Maintained
21845 W:      http://mjpeg.sourceforge.net/driver-zoran/
21846 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21847 F:      Documentation/driver-api/media/drivers/zoran.rst
21848 F:      drivers/staging/media/zoran/
21849
21850 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21851 M:      Minchan Kim <minchan@kernel.org>
21852 M:      Nitin Gupta <ngupta@vflare.org>
21853 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21854 L:      linux-kernel@vger.kernel.org
21855 S:      Maintained
21856 F:      Documentation/admin-guide/blockdev/zram.rst
21857 F:      drivers/block/zram/
21858
21859 ZS DECSTATION Z85C30 SERIAL DRIVER
21860 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21861 S:      Maintained
21862 F:      drivers/tty/serial/zs.*
21863
21864 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21865 M:      Minchan Kim <minchan@kernel.org>
21866 M:      Nitin Gupta <ngupta@vflare.org>
21867 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21868 L:      linux-mm@kvack.org
21869 S:      Maintained
21870 F:      Documentation/vm/zsmalloc.rst
21871 F:      include/linux/zsmalloc.h
21872 F:      mm/zsmalloc.c
21873
21874 ZSTD
21875 M:      Nick Terrell <terrelln@fb.com>
21876 S:      Maintained
21877 B:      https://github.com/facebook/zstd/issues
21878 T:      git git://github.com/terrelln/linux.git
21879 F:      include/linux/zstd*
21880 F:      lib/zstd/
21881 F:      lib/decompress_unzstd.c
21882 F:      crypto/zstd.c
21883 N:      zstd
21884 K:      zstd
21885
21886 ZSWAP COMPRESSED SWAP CACHING
21887 M:      Seth Jennings <sjenning@redhat.com>
21888 M:      Dan Streetman <ddstreet@ieee.org>
21889 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21890 L:      linux-mm@kvack.org
21891 S:      Maintained
21892 F:      mm/zswap.c
21893
21894 THE REST
21895 M:      Linus Torvalds <torvalds@linux-foundation.org>
21896 L:      linux-kernel@vger.kernel.org
21897 S:      Buried alive in reporters
21898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21899 F:      *
21900 F:      */