MAINTAINERS: add cpumask and nodemask files to BITMAP_API
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
196 F:      Documentation/driver-api/80211/cfg80211.rst
197 F:      Documentation/networking/regulatory.rst
198 F:      include/linux/ieee80211.h
199 F:      include/net/cfg80211.h
200 F:      include/net/ieee80211_radiotap.h
201 F:      include/net/iw_handler.h
202 F:      include/net/wext.h
203 F:      include/uapi/linux/nl80211.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A8293 MEDIA DRIVER
245 M:      Antti Palosaari <crope@iki.fi>
246 L:      linux-media@vger.kernel.org
247 S:      Maintained
248 W:      https://linuxtv.org
249 W:      http://palosaari.fi/linux/
250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
251 T:      git git://linuxtv.org/anttip/media_tree.git
252 F:      drivers/media/dvb-frontends/a8293*
253
254 AACRAID SCSI RAID DRIVER
255 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
256 L:      linux-scsi@vger.kernel.org
257 S:      Supported
258 W:      http://www.adaptec.com/
259 F:      Documentation/scsi/aacraid.rst
260 F:      drivers/scsi/aacraid/
261
262 ABI/API
263 L:      linux-api@vger.kernel.org
264 F:      include/linux/syscalls.h
265 F:      kernel/sys_ni.c
266 X:      include/uapi/
267 X:      arch/*/include/uapi/
268
269 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
270 M:      Hans de Goede <hdegoede@redhat.com>
271 L:      linux-hwmon@vger.kernel.org
272 S:      Maintained
273 F:      drivers/hwmon/abituguru.c
274
275 ABIT UGURU 3 HARDWARE MONITOR DRIVER
276 M:      Alistair John Strachan <alistair@devzero.co.uk>
277 L:      linux-hwmon@vger.kernel.org
278 S:      Maintained
279 F:      drivers/hwmon/abituguru3.c
280
281 ACCES 104-DIO-48E GPIO DRIVER
282 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
283 L:      linux-gpio@vger.kernel.org
284 S:      Maintained
285 F:      drivers/gpio/gpio-104-dio-48e.c
286
287 ACCES 104-IDI-48 GPIO DRIVER
288 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
289 L:      linux-gpio@vger.kernel.org
290 S:      Maintained
291 F:      drivers/gpio/gpio-104-idi-48.c
292
293 ACCES 104-IDIO-16 GPIO DRIVER
294 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
295 L:      linux-gpio@vger.kernel.org
296 S:      Maintained
297 F:      drivers/gpio/gpio-104-idio-16.c
298
299 ACCES 104-QUAD-8 DRIVER
300 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
301 M:      Syed Nayyar Waris <syednwaris@gmail.com>
302 L:      linux-iio@vger.kernel.org
303 S:      Maintained
304 F:      drivers/counter/104-quad-8.c
305
306 ACCES PCI-IDIO-16 GPIO DRIVER
307 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
308 L:      linux-gpio@vger.kernel.org
309 S:      Maintained
310 F:      drivers/gpio/gpio-pci-idio-16.c
311
312 ACCES PCIe-IDIO-24 GPIO DRIVER
313 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
314 L:      linux-gpio@vger.kernel.org
315 S:      Maintained
316 F:      drivers/gpio/gpio-pcie-idio-24.c
317
318 ACENIC DRIVER
319 M:      Jes Sorensen <jes@trained-monkey.org>
320 L:      linux-acenic@sunsite.dk
321 S:      Maintained
322 F:      drivers/net/ethernet/alteon/acenic*
323
324 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
325 M:      Peter Kaestle <peter@piie.net>
326 L:      platform-driver-x86@vger.kernel.org
327 S:      Maintained
328 W:      http://piie.net/?section=acerhdf
329 F:      drivers/platform/x86/acerhdf.c
330
331 ACER WMI LAPTOP EXTRAS
332 M:      "Lee, Chun-Yi" <jlee@suse.com>
333 L:      platform-driver-x86@vger.kernel.org
334 S:      Maintained
335 F:      drivers/platform/x86/acer-wmi.c
336
337 ACPI
338 M:      "Rafael J. Wysocki" <rafael@kernel.org>
339 R:      Len Brown <lenb@kernel.org>
340 L:      linux-acpi@vger.kernel.org
341 S:      Supported
342 W:      https://01.org/linux-acpi
343 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
344 B:      https://bugzilla.kernel.org
345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
346 F:      Documentation/ABI/testing/configfs-acpi
347 F:      Documentation/ABI/testing/sysfs-bus-acpi
348 F:      Documentation/firmware-guide/acpi/
349 F:      drivers/acpi/
350 F:      drivers/pci/*/*acpi*
351 F:      drivers/pci/*acpi*
352 F:      drivers/pnp/pnpacpi/
353 F:      include/acpi/
354 F:      include/linux/acpi.h
355 F:      include/linux/fwnode.h
356 F:      tools/power/acpi/
357
358 ACPI APEI
359 M:      "Rafael J. Wysocki" <rafael@kernel.org>
360 R:      Len Brown <lenb@kernel.org>
361 R:      James Morse <james.morse@arm.com>
362 R:      Tony Luck <tony.luck@intel.com>
363 R:      Borislav Petkov <bp@alien8.de>
364 L:      linux-acpi@vger.kernel.org
365 F:      drivers/acpi/apei/
366
367 ACPI COMPONENT ARCHITECTURE (ACPICA)
368 M:      Robert Moore <robert.moore@intel.com>
369 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
370 L:      linux-acpi@vger.kernel.org
371 L:      devel@acpica.org
372 S:      Supported
373 W:      https://acpica.org/
374 W:      https://github.com/acpica/acpica/
375 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
376 B:      https://bugzilla.kernel.org
377 B:      https://bugs.acpica.org
378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
379 F:      drivers/acpi/acpica/
380 F:      include/acpi/
381 F:      tools/power/acpi/
382
383 ACPI FOR ARM64 (ACPI/arm64)
384 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
385 M:      Hanjun Guo <guohanjun@huawei.com>
386 M:      Sudeep Holla <sudeep.holla@arm.com>
387 L:      linux-acpi@vger.kernel.org
388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
389 S:      Maintained
390 F:      drivers/acpi/arm64
391
392 ACPI SERIAL MULTI INSTANTIATE DRIVER
393 M:      Hans de Goede <hdegoede@redhat.com>
394 L:      platform-driver-x86@vger.kernel.org
395 S:      Maintained
396 F:      drivers/platform/x86/serial-multi-instantiate.c
397
398 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
399 M:      Sudeep Holla <sudeep.holla@arm.com>
400 L:      linux-acpi@vger.kernel.org
401 S:      Supported
402 F:      drivers/mailbox/pcc.c
403
404 ACPI PMIC DRIVERS
405 M:      "Rafael J. Wysocki" <rafael@kernel.org>
406 M:      Len Brown <lenb@kernel.org>
407 R:      Andy Shevchenko <andy@kernel.org>
408 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
409 L:      linux-acpi@vger.kernel.org
410 S:      Supported
411 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
412 B:      https://bugzilla.kernel.org
413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F:      drivers/acpi/pmic/
415
416 ACPI THERMAL DRIVER
417 M:      Rafael J. Wysocki <rafael@kernel.org>
418 R:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIOT DRIVER
426 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
427 L:      linux-acpi@vger.kernel.org
428 L:      iommu@lists.linux-foundation.org
429 S:      Maintained
430 F:      drivers/acpi/viot.c
431 F:      include/linux/acpi_viot.h
432
433 ACPI WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 ACRN HYPERVISOR SERVICE MODULE
440 M:      Fei Li <fei1.li@intel.com>
441 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
442 S:      Supported
443 W:      https://projectacrn.org
444 F:      Documentation/virt/acrn/
445 F:      drivers/virt/acrn/
446 F:      include/uapi/linux/acrn.h
447
448 AD1889 ALSA SOUND DRIVER
449 L:      linux-parisc@vger.kernel.org
450 S:      Maintained
451 W:      https://parisc.wiki.kernel.org/index.php/AD1889
452 F:      sound/pci/ad1889.*
453
454 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
455 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
456 L:      linux-iio@vger.kernel.org
457 S:      Supported
458 F:      drivers/iio/potentiometer/ad5110.c
459
460 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
461 M:      Michael Hennerich <michael.hennerich@analog.com>
462 S:      Supported
463 W:      http://wiki.analog.com/AD5254
464 W:      https://ez.analog.com/linux-software-drivers
465 F:      drivers/misc/ad525x_dpot.c
466
467 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
468 M:      Michael Hennerich <michael.hennerich@analog.com>
469 S:      Supported
470 W:      http://wiki.analog.com/AD5398
471 W:      https://ez.analog.com/linux-software-drivers
472 F:      drivers/regulator/ad5398.c
473
474 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
475 M:      Michael Hennerich <michael.hennerich@analog.com>
476 S:      Supported
477 W:      http://wiki.analog.com/AD7142
478 W:      https://ez.analog.com/linux-software-drivers
479 F:      drivers/input/misc/ad714x.c
480
481 AD7877 TOUCHSCREEN DRIVER
482 M:      Michael Hennerich <michael.hennerich@analog.com>
483 S:      Supported
484 W:      http://wiki.analog.com/AD7877
485 W:      https://ez.analog.com/linux-software-drivers
486 F:      drivers/input/touchscreen/ad7877.c
487
488 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
489 M:      Michael Hennerich <michael.hennerich@analog.com>
490 S:      Supported
491 W:      http://wiki.analog.com/AD7879
492 W:      https://ez.analog.com/linux-software-drivers
493 F:      drivers/input/touchscreen/ad7879.c
494
495 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
496 M:      Jiri Kosina <jikos@kernel.org>
497 S:      Maintained
498
499 ADF7242 IEEE 802.15.4 RADIO DRIVER
500 M:      Michael Hennerich <michael.hennerich@analog.com>
501 L:      linux-wpan@vger.kernel.org
502 S:      Supported
503 W:      https://wiki.analog.com/ADF7242
504 W:      https://ez.analog.com/linux-software-drivers
505 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
506 F:      drivers/net/ieee802154/adf7242.c
507
508 ADM1025 HARDWARE MONITOR DRIVER
509 M:      Jean Delvare <jdelvare@suse.com>
510 L:      linux-hwmon@vger.kernel.org
511 S:      Maintained
512 F:      Documentation/hwmon/adm1025.rst
513 F:      drivers/hwmon/adm1025.c
514
515 ADM1029 HARDWARE MONITOR DRIVER
516 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
517 L:      linux-hwmon@vger.kernel.org
518 S:      Maintained
519 F:      drivers/hwmon/adm1029.c
520
521 ADM8211 WIRELESS DRIVER
522 L:      linux-wireless@vger.kernel.org
523 S:      Orphan
524 W:      https://wireless.wiki.kernel.org/
525 F:      drivers/net/wireless/admtek/adm8211.*
526
527 ADP1653 FLASH CONTROLLER DRIVER
528 M:      Sakari Ailus <sakari.ailus@iki.fi>
529 L:      linux-media@vger.kernel.org
530 S:      Maintained
531 F:      drivers/media/i2c/adp1653.c
532 F:      include/media/i2c/adp1653.h
533
534 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
535 M:      Michael Hennerich <michael.hennerich@analog.com>
536 S:      Supported
537 W:      http://wiki.analog.com/ADP5520
538 W:      https://ez.analog.com/linux-software-drivers
539 F:      drivers/gpio/gpio-adp5520.c
540 F:      drivers/input/keyboard/adp5520-keys.c
541 F:      drivers/leds/leds-adp5520.c
542 F:      drivers/mfd/adp5520.c
543 F:      drivers/video/backlight/adp5520_bl.c
544
545 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
546 M:      Michael Hennerich <michael.hennerich@analog.com>
547 S:      Supported
548 W:      http://wiki.analog.com/ADP5588
549 W:      https://ez.analog.com/linux-software-drivers
550 F:      drivers/gpio/gpio-adp5588.c
551 F:      drivers/input/keyboard/adp5588-keys.c
552
553 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
554 M:      Michael Hennerich <michael.hennerich@analog.com>
555 S:      Supported
556 W:      http://wiki.analog.com/ADP8860
557 W:      https://ez.analog.com/linux-software-drivers
558 F:      drivers/video/backlight/adp8860_bl.c
559
560 ADT746X FAN DRIVER
561 M:      Colin Leroy <colin@colino.net>
562 S:      Maintained
563 F:      drivers/macintosh/therm_adt746x.c
564
565 ADT7475 HARDWARE MONITOR DRIVER
566 M:      Jean Delvare <jdelvare@suse.com>
567 L:      linux-hwmon@vger.kernel.org
568 S:      Maintained
569 F:      Documentation/hwmon/adt7475.rst
570 F:      drivers/hwmon/adt7475.c
571
572 ADVANSYS SCSI DRIVER
573 M:      Matthew Wilcox <willy@infradead.org>
574 M:      Hannes Reinecke <hare@suse.com>
575 L:      linux-scsi@vger.kernel.org
576 S:      Maintained
577 F:      Documentation/scsi/advansys.rst
578 F:      drivers/scsi/advansys.c
579
580 ADVANTECH SWBTN DRIVER
581 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
582 L:      platform-driver-x86@vger.kernel.org
583 S:      Maintained
584 F:      drivers/platform/x86/adv_swbutton.c
585
586 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
587 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
588 S:      Supported
589 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
590 F:      drivers/iio/accel/adxl313*
591
592 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
593 M:      Michael Hennerich <michael.hennerich@analog.com>
594 S:      Supported
595 W:      http://wiki.analog.com/ADXL345
596 W:      https://ez.analog.com/linux-software-drivers
597 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
598 F:      drivers/input/misc/adxl34x.c
599
600 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
601 M:      Puranjay Mohan <puranjay12@gmail.com>
602 L:      linux-iio@vger.kernel.org
603 S:      Supported
604 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
605 F:      drivers/iio/accel/adxl355.h
606 F:      drivers/iio/accel/adxl355_core.c
607 F:      drivers/iio/accel/adxl355_i2c.c
608 F:      drivers/iio/accel/adxl355_spi.c
609
610 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
611 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
612 L:      linux-iio@vger.kernel.org
613 S:      Supported
614 W:      http://ez.analog.com/community/linux-device-drivers
615 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
616 F:      drivers/iio/accel/adxl367*
617
618 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
619 M:      Michael Hennerich <michael.hennerich@analog.com>
620 S:      Supported
621 W:      https://ez.analog.com/linux-software-drivers
622 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
623 F:      drivers/iio/accel/adxl372.c
624 F:      drivers/iio/accel/adxl372_i2c.c
625 F:      drivers/iio/accel/adxl372_spi.c
626
627 AF9013 MEDIA DRIVER
628 M:      Antti Palosaari <crope@iki.fi>
629 L:      linux-media@vger.kernel.org
630 S:      Maintained
631 W:      https://linuxtv.org
632 W:      http://palosaari.fi/linux/
633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
634 T:      git git://linuxtv.org/anttip/media_tree.git
635 F:      drivers/media/dvb-frontends/af9013*
636
637 AF9033 MEDIA DRIVER
638 M:      Antti Palosaari <crope@iki.fi>
639 L:      linux-media@vger.kernel.org
640 S:      Maintained
641 W:      https://linuxtv.org
642 W:      http://palosaari.fi/linux/
643 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
644 T:      git git://linuxtv.org/anttip/media_tree.git
645 F:      drivers/media/dvb-frontends/af9033*
646
647 AFFS FILE SYSTEM
648 M:      David Sterba <dsterba@suse.com>
649 L:      linux-fsdevel@vger.kernel.org
650 S:      Odd Fixes
651 F:      Documentation/filesystems/affs.rst
652 F:      fs/affs/
653
654 AFS FILESYSTEM
655 M:      David Howells <dhowells@redhat.com>
656 M:      Marc Dionne <marc.dionne@auristor.com>
657 L:      linux-afs@lists.infradead.org
658 S:      Supported
659 W:      https://www.infradead.org/~dhowells/kafs/
660 F:      Documentation/filesystems/afs.rst
661 F:      fs/afs/
662 F:      include/trace/events/afs.h
663
664 AGPGART DRIVER
665 M:      David Airlie <airlied@linux.ie>
666 S:      Maintained
667 T:      git git://anongit.freedesktop.org/drm/drm
668 F:      drivers/char/agp/
669 F:      include/linux/agp*
670 F:      include/uapi/linux/agp*
671
672 AHA152X SCSI DRIVER
673 M:      "Juergen E. Fischer" <fischer@norbit.de>
674 L:      linux-scsi@vger.kernel.org
675 S:      Maintained
676 F:      drivers/scsi/aha152x*
677 F:      drivers/scsi/pcmcia/aha152x*
678
679 AIC7XXX / AIC79XX SCSI DRIVER
680 M:      Hannes Reinecke <hare@suse.com>
681 L:      linux-scsi@vger.kernel.org
682 S:      Maintained
683 F:      drivers/scsi/aic7xxx/
684
685 AIMSLAB FM RADIO RECEIVER DRIVER
686 M:      Hans Verkuil <hverkuil@xs4all.nl>
687 L:      linux-media@vger.kernel.org
688 S:      Maintained
689 W:      https://linuxtv.org
690 T:      git git://linuxtv.org/media_tree.git
691 F:      drivers/media/radio/radio-aimslab*
692
693 AIO
694 M:      Benjamin LaHaise <bcrl@kvack.org>
695 L:      linux-aio@kvack.org
696 S:      Supported
697 F:      fs/aio.c
698 F:      include/linux/*aio*.h
699
700 AIRSPY MEDIA DRIVER
701 M:      Antti Palosaari <crope@iki.fi>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 W:      https://linuxtv.org
705 W:      http://palosaari.fi/linux/
706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
707 T:      git git://linuxtv.org/anttip/media_tree.git
708 F:      drivers/media/usb/airspy/
709
710 ALACRITECH GIGABIT ETHERNET DRIVER
711 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
712 S:      Maintained
713 F:      drivers/net/ethernet/alacritech/*
714
715 ALCATEL SPEEDTOUCH USB DRIVER
716 M:      Duncan Sands <duncan.sands@free.fr>
717 L:      linux-usb@vger.kernel.org
718 S:      Maintained
719 W:      http://www.linux-usb.org/SpeedTouch/
720 F:      drivers/usb/atm/speedtch.c
721 F:      drivers/usb/atm/usbatm.c
722
723 ALCHEMY AU1XX0 MMC DRIVER
724 M:      Manuel Lauss <manuel.lauss@gmail.com>
725 S:      Maintained
726 F:      drivers/mmc/host/au1xmmc.c
727
728 ALI1563 I2C DRIVER
729 M:      Rudolf Marek <r.marek@assembler.cz>
730 L:      linux-i2c@vger.kernel.org
731 S:      Maintained
732 F:      Documentation/i2c/busses/i2c-ali1563.rst
733 F:      drivers/i2c/busses/i2c-ali1563.c
734
735 ALIENWARE WMI DRIVER
736 L:      Dell.Client.Kernel@dell.com
737 S:      Maintained
738 F:      drivers/platform/x86/dell/alienware-wmi.c
739
740 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
741 M:      Tomislav Denis <tomislav.denis@avl.com>
742 L:      linux-iio@vger.kernel.org
743 S:      Maintained
744 W:      http://www.allsensors.com/
745 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
746 F:      drivers/iio/pressure/dlhl60d.c
747
748 ALLEGRO DVT VIDEO IP CORE DRIVER
749 M:      Michael Tretter <m.tretter@pengutronix.de>
750 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
751 L:      linux-media@vger.kernel.org
752 S:      Maintained
753 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
754 F:      drivers/media/platform/allegro-dvt/
755
756 ALLWINNER A10 CSI DRIVER
757 M:      Maxime Ripard <mripard@kernel.org>
758 L:      linux-media@vger.kernel.org
759 S:      Maintained
760 T:      git git://linuxtv.org/media_tree.git
761 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
762 F:      drivers/media/platform/sunxi/sun4i-csi/
763
764 ALLWINNER CPUFREQ DRIVER
765 M:      Yangtao Li <tiny.windzz@gmail.com>
766 L:      linux-pm@vger.kernel.org
767 S:      Maintained
768 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
769 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
770
771 ALLWINNER CRYPTO DRIVERS
772 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
773 L:      linux-crypto@vger.kernel.org
774 S:      Maintained
775 F:      drivers/crypto/allwinner/
776
777 ALLWINNER HARDWARE SPINLOCK SUPPORT
778 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
779 S:      Maintained
780 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
781 F:      drivers/hwspinlock/sun6i_hwspinlock.c
782
783 ALLWINNER THERMAL DRIVER
784 M:      Vasily Khoruzhick <anarsoul@gmail.com>
785 M:      Yangtao Li <tiny.windzz@gmail.com>
786 L:      linux-pm@vger.kernel.org
787 S:      Maintained
788 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
789 F:      drivers/thermal/sun8i_thermal.c
790
791 ALLWINNER VPU DRIVER
792 M:      Maxime Ripard <mripard@kernel.org>
793 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
794 L:      linux-media@vger.kernel.org
795 S:      Maintained
796 F:      drivers/staging/media/sunxi/cedrus/
797
798 ALPHA PORT
799 M:      Richard Henderson <rth@twiddle.net>
800 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
801 M:      Matt Turner <mattst88@gmail.com>
802 L:      linux-alpha@vger.kernel.org
803 S:      Odd Fixes
804 F:      arch/alpha/
805
806 ALPS PS/2 TOUCHPAD DRIVER
807 R:      Pali Rohár <pali@kernel.org>
808 F:      drivers/input/mouse/alps.*
809
810 ALTERA I2C CONTROLLER DRIVER
811 M:      Thor Thayer <thor.thayer@linux.intel.com>
812 S:      Maintained
813 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
814 F:      drivers/i2c/busses/i2c-altera.c
815
816 ALTERA MAILBOX DRIVER
817 M:      Mun Yew Tham <mun.yew.tham@intel.com>
818 S:      Maintained
819 F:      drivers/mailbox/mailbox-altera.c
820
821 ALTERA MSGDMA IP CORE DRIVER
822 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
823 R:      Stefan Roese <sr@denx.de>
824 L:      dmaengine@vger.kernel.org
825 S:      Odd Fixes
826 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
827 F:      drivers/dma/altera-msgdma.c
828
829 ALTERA PIO DRIVER
830 M:      Mun Yew Tham <mun.yew.tham@intel.com>
831 L:      linux-gpio@vger.kernel.org
832 S:      Maintained
833 F:      drivers/gpio/gpio-altera.c
834
835 ALTERA SYSTEM MANAGER DRIVER
836 M:      Thor Thayer <thor.thayer@linux.intel.com>
837 S:      Maintained
838 F:      drivers/mfd/altera-sysmgr.c
839 F:      include/linux/mfd/altera-sysmgr.h
840
841 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
842 M:      Thor Thayer <thor.thayer@linux.intel.com>
843 S:      Maintained
844 F:      drivers/gpio/gpio-altera-a10sr.c
845 F:      drivers/mfd/altera-a10sr.c
846 F:      drivers/reset/reset-a10sr.c
847 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
848 F:      include/linux/mfd/altera-a10sr.h
849
850 ALTERA TRIPLE SPEED ETHERNET DRIVER
851 M:      Joyce Ooi <joyce.ooi@intel.com>
852 L:      netdev@vger.kernel.org
853 S:      Maintained
854 F:      drivers/net/ethernet/altera/
855
856 ALTERA UART/JTAG UART SERIAL DRIVERS
857 M:      Tobias Klauser <tklauser@distanz.ch>
858 L:      linux-serial@vger.kernel.org
859 S:      Maintained
860 F:      drivers/tty/serial/altera_jtaguart.c
861 F:      drivers/tty/serial/altera_uart.c
862 F:      include/linux/altera_jtaguart.h
863 F:      include/linux/altera_uart.h
864
865 AMAZON ANNAPURNA LABS FIC DRIVER
866 M:      Talel Shenhar <talel@amazon.com>
867 S:      Maintained
868 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
869 F:      drivers/irqchip/irq-al-fic.c
870
871 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
872 M:      Talel Shenhar <talel@amazon.com>
873 M:      Talel Shenhar <talelshenhar@gmail.com>
874 S:      Maintained
875 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
876 F:      drivers/edac/al_mc_edac.c
877
878 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
879 M:      Talel Shenhar <talel@amazon.com>
880 S:      Maintained
881 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
882 F:      drivers/thermal/thermal_mmio.c
883
884 AMAZON ETHERNET DRIVERS
885 M:      Shay Agroskin <shayagr@amazon.com>
886 M:      Arthur Kiyanovski <akiyano@amazon.com>
887 R:      David Arinzon <darinzon@amazon.com>
888 R:      Noam Dagan <ndagan@amazon.com>
889 R:      Saeed Bishara <saeedb@amazon.com>
890 L:      netdev@vger.kernel.org
891 S:      Supported
892 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
893 F:      drivers/net/ethernet/amazon/
894
895 AMAZON RDMA EFA DRIVER
896 M:      Gal Pressman <galpress@amazon.com>
897 R:      Yossi Leybovich <sleybo@amazon.com>
898 L:      linux-rdma@vger.kernel.org
899 S:      Supported
900 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
901 F:      drivers/infiniband/hw/efa/
902 F:      include/uapi/rdma/efa-abi.h
903
904 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
905 M:      Tom Lendacky <thomas.lendacky@amd.com>
906 M:      John Allen <john.allen@amd.com>
907 L:      linux-crypto@vger.kernel.org
908 S:      Supported
909 F:      drivers/crypto/ccp/
910 F:      include/linux/ccp.h
911
912 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
913 M:      Brijesh Singh <brijesh.singh@amd.com>
914 M:      Tom Lendacky <thomas.lendacky@amd.com>
915 L:      linux-crypto@vger.kernel.org
916 S:      Supported
917 F:      drivers/crypto/ccp/sev*
918 F:      include/uapi/linux/psp-sev.h
919
920 AMD DISPLAY CORE
921 M:      Harry Wentland <harry.wentland@amd.com>
922 M:      Leo Li <sunpeng.li@amd.com>
923 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
924 L:      amd-gfx@lists.freedesktop.org
925 S:      Supported
926 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
927 F:      drivers/gpu/drm/amd/display/
928
929 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
930 M:      Huang Rui <ray.huang@amd.com>
931 L:      linux-hwmon@vger.kernel.org
932 S:      Supported
933 F:      Documentation/hwmon/fam15h_power.rst
934 F:      drivers/hwmon/fam15h_power.c
935
936 AMD FCH GPIO DRIVER
937 M:      Enrico Weigelt, metux IT consult <info@metux.net>
938 L:      linux-gpio@vger.kernel.org
939 S:      Maintained
940 F:      drivers/gpio/gpio-amd-fch.c
941 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
942
943 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
944 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
945 S:      Orphan
946 F:      drivers/usb/gadget/udc/amd5536udc.*
947
948 AMD GEODE PROCESSOR/CHIPSET SUPPORT
949 M:      Andres Salomon <dilinger@queued.net>
950 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
951 S:      Supported
952 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
953 F:      arch/x86/include/asm/geode.h
954 F:      drivers/char/hw_random/geode-rng.c
955 F:      drivers/crypto/geode*
956 F:      drivers/video/fbdev/geode/
957
958 AMD IOMMU (AMD-VI)
959 M:      Joerg Roedel <joro@8bytes.org>
960 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
961 L:      iommu@lists.linux-foundation.org
962 S:      Maintained
963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
964 F:      drivers/iommu/amd/
965 F:      include/linux/amd-iommu.h
966
967 AMD KFD
968 M:      Felix Kuehling <Felix.Kuehling@amd.com>
969 L:      amd-gfx@lists.freedesktop.org
970 S:      Supported
971 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
972 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
973 F:      drivers/gpu/drm/amd/amdkfd/
974 F:      drivers/gpu/drm/amd/include/cik_structs.h
975 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
976 F:      drivers/gpu/drm/amd/include/v9_structs.h
977 F:      drivers/gpu/drm/amd/include/vi_structs.h
978 F:      include/uapi/linux/kfd_ioctl.h
979 F:      include/uapi/linux/kfd_sysfs.h
980
981 AMD SPI DRIVER
982 M:      Sanjay R Mehta <sanju.mehta@amd.com>
983 S:      Maintained
984 F:      drivers/spi/spi-amd.c
985
986 AMD MP2 I2C DRIVER
987 M:      Elie Morisse <syniurge@gmail.com>
988 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
989 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
990 L:      linux-i2c@vger.kernel.org
991 S:      Maintained
992 F:      drivers/i2c/busses/i2c-amd-mp2*
993
994 AMD PMC DRIVER
995 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
996 L:      platform-driver-x86@vger.kernel.org
997 S:      Maintained
998 F:      drivers/platform/x86/amd-pmc.*
999
1000 AMD HSMP DRIVER
1001 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1002 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1003 L:      platform-driver-x86@vger.kernel.org
1004 S:      Maintained
1005 F:      Documentation/x86/amd_hsmp.rst
1006 F:      arch/x86/include/asm/amd_hsmp.h
1007 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1008 F:      drivers/platform/x86/amd_hsmp.c
1009
1010 AMD POWERPLAY AND SWSMU
1011 M:      Evan Quan <evan.quan@amd.com>
1012 L:      amd-gfx@lists.freedesktop.org
1013 S:      Supported
1014 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1015 F:      drivers/gpu/drm/amd/pm/
1016
1017 AMD PSTATE DRIVER
1018 M:      Huang Rui <ray.huang@amd.com>
1019 L:      linux-pm@vger.kernel.org
1020 S:      Supported
1021 F:      Documentation/admin-guide/pm/amd-pstate.rst
1022 F:      drivers/cpufreq/amd-pstate*
1023 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1024
1025 AMD PTDMA DRIVER
1026 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1027 L:      dmaengine@vger.kernel.org
1028 S:      Maintained
1029 F:      drivers/dma/ptdma/
1030
1031 AMD SEATTLE DEVICE TREE SUPPORT
1032 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1033 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1034 M:      Tom Lendacky <thomas.lendacky@amd.com>
1035 S:      Supported
1036 F:      arch/arm64/boot/dts/amd/
1037
1038 AMD XGBE DRIVER
1039 M:      Tom Lendacky <thomas.lendacky@amd.com>
1040 L:      netdev@vger.kernel.org
1041 S:      Supported
1042 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1043 F:      drivers/net/ethernet/amd/xgbe/
1044
1045 AMD SENSOR FUSION HUB DRIVER
1046 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1047 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1048 L:      linux-input@vger.kernel.org
1049 S:      Maintained
1050 F:      Documentation/hid/amd-sfh*
1051 F:      drivers/hid/amd-sfh-hid/
1052
1053 AMPHION VPU CODEC V4L2 DRIVER
1054 M:      Ming Qian <ming.qian@nxp.com>
1055 M:      Shijie Qin <shijie.qin@nxp.com>
1056 M:      Zhou Peng <eagle.zhou@nxp.com>
1057 L:      linux-media@vger.kernel.org
1058 S:      Maintained
1059 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1060 F:      drivers/media/platform/amphion/
1061
1062 AMS AS73211 DRIVER
1063 M:      Christian Eggers <ceggers@arri.de>
1064 L:      linux-iio@vger.kernel.org
1065 S:      Maintained
1066 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1067 F:      drivers/iio/light/as73211.c
1068
1069 AMT (Automatic Multicast Tunneling)
1070 M:      Taehee Yoo <ap420073@gmail.com>
1071 L:      netdev@vger.kernel.org
1072 S:      Maintained
1073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1075 F:      drivers/net/amt.c
1076
1077 ANALOG DEVICES INC AD7192 DRIVER
1078 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1079 L:      linux-iio@vger.kernel.org
1080 S:      Supported
1081 W:      https://ez.analog.com/linux-software-drivers
1082 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1083 F:      drivers/iio/adc/ad7192.c
1084
1085 ANALOG DEVICES INC AD7292 DRIVER
1086 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      https://ez.analog.com/linux-software-drivers
1090 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1091 F:      drivers/iio/adc/ad7292.c
1092
1093 ANALOG DEVICES INC AD7293 DRIVER
1094 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 S:      Supported
1097 W:      https://ez.analog.com/linux-software-drivers
1098 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1099 F:      drivers/iio/dac/ad7293.c
1100
1101 ANALOG DEVICES INC AD7768-1 DRIVER
1102 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1103 L:      linux-iio@vger.kernel.org
1104 S:      Supported
1105 W:      https://ez.analog.com/linux-software-drivers
1106 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1107 F:      drivers/iio/adc/ad7768-1.c
1108
1109 ANALOG DEVICES INC AD7780 DRIVER
1110 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1111 M:      Renato Lui Geh <renatogeh@gmail.com>
1112 L:      linux-iio@vger.kernel.org
1113 S:      Supported
1114 W:      https://ez.analog.com/linux-software-drivers
1115 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1116 F:      drivers/iio/adc/ad7780.c
1117
1118 ANALOG DEVICES INC AD74413R DRIVER
1119 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1120 L:      linux-iio@vger.kernel.org
1121 S:      Supported
1122 W:      http://ez.analog.com/community/linux-device-drivers
1123 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1124 F:      drivers/iio/addac/ad74413r.c
1125 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1126
1127 ANALOG DEVICES INC AD9389B DRIVER
1128 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1129 L:      linux-media@vger.kernel.org
1130 S:      Maintained
1131 F:      drivers/media/i2c/ad9389b*
1132
1133 ANALOG DEVICES INC ADA4250 DRIVER
1134 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1135 L:      linux-iio@vger.kernel.org
1136 S:      Supported
1137 W:      https://ez.analog.com/linux-software-drivers
1138 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1139 F:      drivers/iio/amplifiers/ada4250.c
1140
1141 ANALOG DEVICES INC ADGS1408 DRIVER
1142 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1143 S:      Supported
1144 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1145 F:      drivers/mux/adgs1408.c
1146
1147 ANALOG DEVICES INC ADIN DRIVER
1148 M:      Michael Hennerich <michael.hennerich@analog.com>
1149 L:      netdev@vger.kernel.org
1150 S:      Supported
1151 W:      https://ez.analog.com/linux-software-drivers
1152 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1153 F:      drivers/net/phy/adin.c
1154
1155 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1156 M:      Nuno Sa <nuno.sa@analog.com>
1157 L:      linux-iio@vger.kernel.org
1158 S:      Supported
1159 F:      drivers/iio/imu/adis.c
1160 F:      drivers/iio/imu/adis_buffer.c
1161 F:      drivers/iio/imu/adis_trigger.c
1162 F:      include/linux/iio/imu/adis.h
1163
1164 ANALOG DEVICES INC ADIS16460 DRIVER
1165 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1166 L:      linux-iio@vger.kernel.org
1167 S:      Supported
1168 W:      https://ez.analog.com/linux-software-drivers
1169 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1170 F:      drivers/iio/imu/adis16460.c
1171
1172 ANALOG DEVICES INC ADIS16475 DRIVER
1173 M:      Nuno Sa <nuno.sa@analog.com>
1174 L:      linux-iio@vger.kernel.org
1175 W:      https://ez.analog.com/linux-software-drivers
1176 S:      Supported
1177 F:      drivers/iio/imu/adis16475.c
1178 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1179
1180 ANALOG DEVICES INC ADM1177 DRIVER
1181 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1182 L:      linux-hwmon@vger.kernel.org
1183 S:      Supported
1184 W:      https://ez.analog.com/linux-software-drivers
1185 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1186 F:      drivers/hwmon/adm1177.c
1187
1188 ANALOG DEVICES INC ADMV1013 DRIVER
1189 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1190 L:      linux-iio@vger.kernel.org
1191 S:      Supported
1192 W:      https://ez.analog.com/linux-software-drivers
1193 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1194 F:      drivers/iio/frequency/admv1013.c
1195
1196 ANALOG DEVICES INC ADMV8818 DRIVER
1197 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1198 L:      linux-iio@vger.kernel.org
1199 S:      Supported
1200 W:      https://ez.analog.com/linux-software-drivers
1201 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1202 F:      drivers/iio/filter/admv8818.c
1203
1204 ANALOG DEVICES INC ADMV1014 DRIVER
1205 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1206 L:      linux-iio@vger.kernel.org
1207 S:      Supported
1208 W:      https://ez.analog.com/linux-software-drivers
1209 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1210 F:      drivers/iio/frequency/admv1014.c
1211
1212 ANALOG DEVICES INC ADP5061 DRIVER
1213 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1214 L:      linux-pm@vger.kernel.org
1215 S:      Supported
1216 W:      https://ez.analog.com/linux-software-drivers
1217 F:      drivers/power/supply/adp5061.c
1218
1219 ANALOG DEVICES INC ADRF6780 DRIVER
1220 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1221 L:      linux-iio@vger.kernel.org
1222 S:      Supported
1223 W:      https://ez.analog.com/linux-software-drivers
1224 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1225 F:      drivers/iio/frequency/adrf6780.c
1226
1227 ANALOG DEVICES INC ADV7180 DRIVER
1228 M:      Lars-Peter Clausen <lars@metafoo.de>
1229 L:      linux-media@vger.kernel.org
1230 S:      Supported
1231 W:      https://ez.analog.com/linux-software-drivers
1232 F:      drivers/media/i2c/adv7180.c
1233 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1234
1235 ANALOG DEVICES INC ADV748X DRIVER
1236 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1237 L:      linux-media@vger.kernel.org
1238 S:      Maintained
1239 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1240 F:      drivers/media/i2c/adv748x/*
1241
1242 ANALOG DEVICES INC ADV7511 DRIVER
1243 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1244 L:      linux-media@vger.kernel.org
1245 S:      Maintained
1246 F:      drivers/media/i2c/adv7511*
1247
1248 ANALOG DEVICES INC ADV7604 DRIVER
1249 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1250 L:      linux-media@vger.kernel.org
1251 S:      Maintained
1252 F:      drivers/media/i2c/adv7604*
1253 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1254
1255 ANALOG DEVICES INC ADV7842 DRIVER
1256 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1257 L:      linux-media@vger.kernel.org
1258 S:      Maintained
1259 F:      drivers/media/i2c/adv7842*
1260
1261 ANALOG DEVICES INC ADXRS290 DRIVER
1262 M:      Nishant Malpani <nish.malpani25@gmail.com>
1263 L:      linux-iio@vger.kernel.org
1264 S:      Supported
1265 F:      drivers/iio/gyro/adxrs290.c
1266 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1267
1268 ANALOG DEVICES INC ASOC CODEC DRIVERS
1269 M:      Lars-Peter Clausen <lars@metafoo.de>
1270 M:      Nuno Sá <nuno.sa@analog.com>
1271 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1272 S:      Supported
1273 W:      http://wiki.analog.com/
1274 W:      https://ez.analog.com/linux-software-drivers
1275 F:      sound/soc/codecs/ad1*
1276 F:      sound/soc/codecs/ad7*
1277 F:      sound/soc/codecs/adau*
1278 F:      sound/soc/codecs/adav*
1279 F:      sound/soc/codecs/sigmadsp.*
1280 F:      sound/soc/codecs/ssm*
1281
1282 ANALOG DEVICES INC DMA DRIVERS
1283 M:      Lars-Peter Clausen <lars@metafoo.de>
1284 S:      Supported
1285 W:      https://ez.analog.com/linux-software-drivers
1286 F:      drivers/dma/dma-axi-dmac.c
1287
1288 ANALOG DEVICES INC IIO DRIVERS
1289 M:      Lars-Peter Clausen <lars@metafoo.de>
1290 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1291 S:      Supported
1292 W:      http://wiki.analog.com/
1293 W:      https://ez.analog.com/linux-software-drivers
1294 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1295 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1296 F:      Documentation/devicetree/bindings/iio/*/adi,*
1297 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1298 F:      drivers/iio/*/ad*
1299 F:      drivers/iio/adc/ltc249*
1300 F:      drivers/iio/amplifiers/hmc425a.c
1301 F:      drivers/staging/iio/*/ad*
1302 X:      drivers/iio/*/adjd*
1303
1304 ANALOGBITS PLL LIBRARIES
1305 M:      Paul Walmsley <paul.walmsley@sifive.com>
1306 S:      Supported
1307 F:      drivers/clk/analogbits/*
1308 F:      include/linux/clk/analogbits*
1309
1310 ANDROID CONFIG FRAGMENTS
1311 M:      Rob Herring <robh@kernel.org>
1312 S:      Supported
1313 F:      kernel/configs/android*
1314
1315 ANDROID DRIVERS
1316 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1317 M:      Arve Hjønnevåg <arve@android.com>
1318 M:      Todd Kjos <tkjos@android.com>
1319 M:      Martijn Coenen <maco@android.com>
1320 M:      Joel Fernandes <joel@joelfernandes.org>
1321 M:      Christian Brauner <christian@brauner.io>
1322 M:      Hridya Valsaraju <hridya@google.com>
1323 M:      Suren Baghdasaryan <surenb@google.com>
1324 L:      linux-kernel@vger.kernel.org
1325 S:      Supported
1326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1327 F:      drivers/android/
1328
1329 ANDROID GOLDFISH PIC DRIVER
1330 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1331 S:      Supported
1332 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1333 F:      drivers/irqchip/irq-goldfish-pic.c
1334
1335 ANDROID GOLDFISH RTC DRIVER
1336 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1337 S:      Supported
1338 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1339 F:      drivers/rtc/rtc-goldfish.c
1340
1341 AOA (Apple Onboard Audio) ALSA DRIVER
1342 M:      Johannes Berg <johannes@sipsolutions.net>
1343 L:      linuxppc-dev@lists.ozlabs.org
1344 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1345 S:      Maintained
1346 F:      sound/aoa/
1347
1348 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1349 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1350 L:      linux-iio@vger.kernel.org
1351 S:      Maintained
1352 F:      drivers/iio/adc/stx104.c
1353
1354 APM DRIVER
1355 M:      Jiri Kosina <jikos@kernel.org>
1356 S:      Odd fixes
1357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1358 F:      arch/x86/kernel/apm_32.c
1359 F:      drivers/char/apm-emulation.c
1360 F:      include/linux/apm_bios.h
1361 F:      include/uapi/linux/apm_bios.h
1362
1363 APPARMOR SECURITY MODULE
1364 M:      John Johansen <john.johansen@canonical.com>
1365 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1366 S:      Supported
1367 W:      wiki.apparmor.net
1368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1369 F:      Documentation/admin-guide/LSM/apparmor.rst
1370 F:      security/apparmor/
1371
1372 APPLE BCM5974 MULTITOUCH DRIVER
1373 M:      Henrik Rydberg <rydberg@bitmath.org>
1374 L:      linux-input@vger.kernel.org
1375 S:      Odd fixes
1376 F:      drivers/input/mouse/bcm5974.c
1377
1378 APPLE DART IOMMU DRIVER
1379 M:      Sven Peter <sven@svenpeter.dev>
1380 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1381 L:      iommu@lists.linux-foundation.org
1382 S:      Maintained
1383 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1384 F:      drivers/iommu/apple-dart.c
1385
1386 APPLE PCIE CONTROLLER DRIVER
1387 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1388 M:      Marc Zyngier <maz@kernel.org>
1389 L:      linux-pci@vger.kernel.org
1390 S:      Maintained
1391 F:      drivers/pci/controller/pcie-apple.c
1392
1393 APPLE SMC DRIVER
1394 M:      Henrik Rydberg <rydberg@bitmath.org>
1395 L:      linux-hwmon@vger.kernel.org
1396 S:      Odd fixes
1397 F:      drivers/hwmon/applesmc.c
1398
1399 APPLETALK NETWORK LAYER
1400 L:      netdev@vger.kernel.org
1401 S:      Odd fixes
1402 F:      drivers/net/appletalk/
1403 F:      include/linux/atalk.h
1404 F:      include/uapi/linux/atalk.h
1405 F:      net/appletalk/
1406
1407 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1408 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1409 S:      Supported
1410 F:      arch/arm64/boot/dts/apm/
1411
1412 APPLIED MICRO (APM) X-GENE SOC EDAC
1413 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1414 S:      Supported
1415 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1416 F:      drivers/edac/xgene_edac.c
1417
1418 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1419 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1420 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1421 S:      Supported
1422 F:      drivers/net/ethernet/apm/xgene-v2/
1423
1424 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1425 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1426 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1427 M:      Quan Nguyen <quan@os.amperecomputing.com>
1428 S:      Supported
1429 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1430 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1431 F:      drivers/net/ethernet/apm/xgene/
1432 F:      drivers/net/mdio/mdio-xgene.c
1433
1434 APPLIED MICRO (APM) X-GENE SOC PMU
1435 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1436 S:      Supported
1437 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1438 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1439 F:      drivers/perf/xgene_pmu.c
1440
1441 APTINA CAMERA SENSOR PLL
1442 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1443 L:      linux-media@vger.kernel.org
1444 S:      Maintained
1445 F:      drivers/media/i2c/aptina-pll.*
1446
1447 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1448 M:      Aleksa Savic <savicaleksa83@gmail.com>
1449 L:      linux-hwmon@vger.kernel.org
1450 S:      Maintained
1451 F:      Documentation/hwmon/aquacomputer_d5next.rst
1452 F:      drivers/hwmon/aquacomputer_d5next.c
1453
1454 AQUANTIA ETHERNET DRIVER (atlantic)
1455 M:      Igor Russkikh <irusskikh@marvell.com>
1456 L:      netdev@vger.kernel.org
1457 S:      Supported
1458 W:      https://www.marvell.com/
1459 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1460 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1461 F:      drivers/net/ethernet/aquantia/atlantic/
1462
1463 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1464 M:      Egor Pomozov <epomozov@marvell.com>
1465 L:      netdev@vger.kernel.org
1466 S:      Supported
1467 W:      http://www.aquantia.com
1468 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1469
1470 ARASAN NAND CONTROLLER DRIVER
1471 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1472 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1473 L:      linux-mtd@lists.infradead.org
1474 S:      Maintained
1475 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1476 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1477
1478 ARC FRAMEBUFFER DRIVER
1479 M:      Jaya Kumar <jayalk@intworks.biz>
1480 S:      Maintained
1481 F:      drivers/video/fbdev/arcfb.c
1482 F:      drivers/video/fbdev/core/fb_defio.c
1483
1484 ARC PGU DRM DRIVER
1485 M:      Alexey Brodkin <abrodkin@synopsys.com>
1486 S:      Supported
1487 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1488 F:      drivers/gpu/drm/tiny/arcpgu.c
1489
1490 ARCNET NETWORK LAYER
1491 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1492 L:      netdev@vger.kernel.org
1493 S:      Maintained
1494 F:      drivers/net/arcnet/
1495 F:      include/uapi/linux/if_arcnet.h
1496
1497 ARM ARCHITECTED TIMER DRIVER
1498 M:      Mark Rutland <mark.rutland@arm.com>
1499 M:      Marc Zyngier <maz@kernel.org>
1500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1501 S:      Maintained
1502 F:      arch/arm/include/asm/arch_timer.h
1503 F:      arch/arm64/include/asm/arch_timer.h
1504 F:      drivers/clocksource/arm_arch_timer.c
1505
1506 ARM HDLCD DRM DRIVER
1507 M:      Liviu Dudau <liviu.dudau@arm.com>
1508 S:      Supported
1509 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1510 F:      drivers/gpu/drm/arm/hdlcd_*
1511
1512 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1513 M:      Linus Walleij <linus.walleij@linaro.org>
1514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1515 S:      Maintained
1516 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1517 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1518 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1519 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1520 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1521 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1522 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1523 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1524 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1525 F:      arch/arm/boot/dts/arm-realview-*
1526 F:      arch/arm/boot/dts/integrator*
1527 F:      arch/arm/boot/dts/versatile*
1528 F:      arch/arm/mach-integrator/
1529 F:      arch/arm/mach-realview/
1530 F:      arch/arm/mach-versatile/
1531 F:      arch/arm/plat-versatile/
1532 F:      drivers/bus/arm-integrator-lm.c
1533 F:      drivers/clk/versatile/
1534 F:      drivers/i2c/busses/i2c-versatile.c
1535 F:      drivers/irqchip/irq-versatile-fpga.c
1536 F:      drivers/mtd/maps/physmap-versatile.*
1537 F:      drivers/power/reset/arm-versatile-reboot.c
1538 F:      drivers/soc/versatile/
1539
1540 ARM KOMEDA DRM-KMS DRIVER
1541 M:      James (Qian) Wang <james.qian.wang@arm.com>
1542 M:      Liviu Dudau <liviu.dudau@arm.com>
1543 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1544 L:      Mali DP Maintainers <malidp@foss.arm.com>
1545 S:      Supported
1546 T:      git git://anongit.freedesktop.org/drm/drm-misc
1547 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1548 F:      Documentation/gpu/komeda-kms.rst
1549 F:      drivers/gpu/drm/arm/display/include/
1550 F:      drivers/gpu/drm/arm/display/komeda/
1551
1552 ARM MALI PANFROST DRM DRIVER
1553 M:      Rob Herring <robh@kernel.org>
1554 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1555 R:      Steven Price <steven.price@arm.com>
1556 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1557 L:      dri-devel@lists.freedesktop.org
1558 S:      Supported
1559 T:      git git://anongit.freedesktop.org/drm/drm-misc
1560 F:      drivers/gpu/drm/panfrost/
1561 F:      include/uapi/drm/panfrost_drm.h
1562
1563 ARM MALI-DP DRM DRIVER
1564 M:      Liviu Dudau <liviu.dudau@arm.com>
1565 M:      Brian Starkey <brian.starkey@arm.com>
1566 L:      Mali DP Maintainers <malidp@foss.arm.com>
1567 S:      Supported
1568 T:      git git://anongit.freedesktop.org/drm/drm-misc
1569 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1570 F:      Documentation/gpu/afbc.rst
1571 F:      drivers/gpu/drm/arm/
1572
1573 ARM MFM AND FLOPPY DRIVERS
1574 M:      Ian Molton <spyro@f2s.com>
1575 S:      Maintained
1576 F:      arch/arm/include/asm/floppy.h
1577 F:      arch/arm/mach-rpc/floppydma.S
1578
1579 ARM PMU PROFILING AND DEBUGGING
1580 M:      Will Deacon <will@kernel.org>
1581 M:      Mark Rutland <mark.rutland@arm.com>
1582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1583 S:      Maintained
1584 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1585 F:      Documentation/devicetree/bindings/perf/
1586 F:      arch/arm*/include/asm/hw_breakpoint.h
1587 F:      arch/arm*/include/asm/perf_event.h
1588 F:      arch/arm*/kernel/hw_breakpoint.c
1589 F:      arch/arm*/kernel/perf_*
1590 F:      drivers/perf/
1591 F:      include/linux/perf/arm_pmu.h
1592
1593 ARM PORT
1594 M:      Russell King <linux@armlinux.org.uk>
1595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1596 S:      Odd Fixes
1597 W:      http://www.armlinux.org.uk/
1598 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1599 F:      arch/arm/
1600 X:      arch/arm/boot/dts/
1601
1602 ARM PRIMECELL AACI PL041 DRIVER
1603 M:      Russell King <linux@armlinux.org.uk>
1604 S:      Odd Fixes
1605 F:      sound/arm/aaci.*
1606
1607 ARM PRIMECELL BUS SUPPORT
1608 M:      Russell King <linux@armlinux.org.uk>
1609 S:      Odd Fixes
1610 F:      drivers/amba/
1611 F:      include/linux/amba/bus.h
1612
1613 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1614 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1615 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1616 L:      linux-mtd@lists.infradead.org
1617 S:      Maintained
1618 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1619 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1620
1621 ARM PRIMECELL PL35X SMC DRIVER
1622 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1623 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1625 S:      Maintained
1626 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1627 F:      drivers/memory/pl353-smc.c
1628
1629 ARM PRIMECELL CLCD PL110 DRIVER
1630 M:      Russell King <linux@armlinux.org.uk>
1631 S:      Odd Fixes
1632 F:      drivers/video/fbdev/amba-clcd.*
1633
1634 ARM PRIMECELL KMI PL050 DRIVER
1635 M:      Russell King <linux@armlinux.org.uk>
1636 S:      Odd Fixes
1637 F:      drivers/input/serio/ambakmi.*
1638 F:      include/linux/amba/kmi.h
1639
1640 ARM PRIMECELL MMCI PL180/1 DRIVER
1641 M:      Russell King <linux@armlinux.org.uk>
1642 S:      Odd Fixes
1643 F:      drivers/mmc/host/mmci.*
1644 F:      include/linux/amba/mmci.h
1645
1646 ARM PRIMECELL SSP PL022 SPI DRIVER
1647 M:      Linus Walleij <linus.walleij@linaro.org>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 S:      Maintained
1650 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1651 F:      drivers/spi/spi-pl022.c
1652
1653 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1654 M:      Russell King <linux@armlinux.org.uk>
1655 S:      Odd Fixes
1656 F:      drivers/tty/serial/amba-pl01*.c
1657 F:      include/linux/amba/serial.h
1658
1659 ARM PRIMECELL VIC PL190/PL192 DRIVER
1660 M:      Linus Walleij <linus.walleij@linaro.org>
1661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1662 S:      Maintained
1663 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1664 F:      drivers/irqchip/irq-vic.c
1665
1666 ARM SMC WATCHDOG DRIVER
1667 M:      Julius Werner <jwerner@chromium.org>
1668 R:      Evan Benn <evanbenn@chromium.org>
1669 S:      Maintained
1670 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1671 F:      drivers/watchdog/arm_smc_wdt.c
1672
1673 ARM SMMU DRIVERS
1674 M:      Will Deacon <will@kernel.org>
1675 R:      Robin Murphy <robin.murphy@arm.com>
1676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1677 S:      Maintained
1678 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1679 F:      drivers/iommu/arm/
1680 F:      drivers/iommu/io-pgtable-arm*
1681
1682 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1683 M:      Arnd Bergmann <arnd@arndb.de>
1684 M:      Olof Johansson <olof@lixom.net>
1685 M:      soc@kernel.org
1686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1687 S:      Maintained
1688 C:      irc://irc.libera.chat/armlinux
1689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1690 F:      arch/arm/boot/dts/Makefile
1691 F:      arch/arm64/boot/dts/Makefile
1692
1693 ARM SUB-ARCHITECTURES
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 C:      irc://irc.libera.chat/armlinux
1697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1698 F:      arch/arm/mach-*/
1699 F:      arch/arm/plat-*/
1700
1701 ARM/ACTIONS SEMI ARCHITECTURE
1702 M:      Andreas Färber <afaerber@suse.de>
1703 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1706 S:      Maintained
1707 F:      Documentation/devicetree/bindings/arm/actions.yaml
1708 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1709 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1710 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1711 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1712 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1713 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1714 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1715 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1716 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1717 F:      arch/arm/boot/dts/owl-*
1718 F:      arch/arm/mach-actions/
1719 F:      arch/arm64/boot/dts/actions/
1720 F:      drivers/clk/actions/
1721 F:      drivers/clocksource/timer-owl*
1722 F:      drivers/dma/owl-dma.c
1723 F:      drivers/i2c/busses/i2c-owl.c
1724 F:      drivers/irqchip/irq-owl-sirq.c
1725 F:      drivers/mmc/host/owl-mmc.c
1726 F:      drivers/net/ethernet/actions/
1727 F:      drivers/pinctrl/actions/*
1728 F:      drivers/soc/actions/
1729 F:      include/dt-bindings/power/owl-*
1730 F:      include/dt-bindings/reset/actions,*
1731 F:      include/linux/soc/actions/
1732 N:      owl
1733
1734 ARM/ADS SPHERE MACHINE SUPPORT
1735 M:      Lennert Buytenhek <kernel@wantstofly.org>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 S:      Maintained
1738
1739 ARM/AFEB9260 MACHINE SUPPORT
1740 M:      Sergey Lapin <slapin@ossfans.org>
1741 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1742 S:      Maintained
1743
1744 ARM/AJECO 1ARM MACHINE SUPPORT
1745 M:      Lennert Buytenhek <kernel@wantstofly.org>
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748
1749 ARM/Allwinner SoC Clock Support
1750 M:      Emilio López <emilio@elopez.com.ar>
1751 S:      Maintained
1752 F:      drivers/clk/sunxi/
1753
1754 ARM/Allwinner sunXi SoC support
1755 M:      Chen-Yu Tsai <wens@csie.org>
1756 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1757 M:      Samuel Holland <samuel@sholland.org>
1758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1759 S:      Maintained
1760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1761 L:      linux-sunxi@lists.linux.dev
1762 F:      arch/arm/mach-sunxi/
1763 F:      arch/arm64/boot/dts/allwinner/
1764 F:      drivers/clk/sunxi-ng/
1765 F:      drivers/pinctrl/sunxi/
1766 F:      drivers/soc/sunxi/
1767 N:      allwinner
1768 N:      sun[x456789]i
1769 N:      sun50i
1770
1771 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1772 M:      Neil Armstrong <narmstrong@baylibre.com>
1773 M:      Jerome Brunet <jbrunet@baylibre.com>
1774 L:      linux-amlogic@lists.infradead.org
1775 S:      Maintained
1776 F:      Documentation/devicetree/bindings/clock/amlogic*
1777 F:      drivers/clk/meson/
1778 F:      include/dt-bindings/clock/gxbb*
1779 F:      include/dt-bindings/clock/meson*
1780
1781 ARM/Amlogic Meson SoC Crypto Drivers
1782 M:      Corentin Labbe <clabbe@baylibre.com>
1783 L:      linux-crypto@vger.kernel.org
1784 L:      linux-amlogic@lists.infradead.org
1785 S:      Maintained
1786 F:      Documentation/devicetree/bindings/crypto/amlogic*
1787 F:      drivers/crypto/amlogic/
1788
1789 ARM/Amlogic Meson SoC Sound Drivers
1790 M:      Jerome Brunet <jbrunet@baylibre.com>
1791 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1792 S:      Maintained
1793 F:      Documentation/devicetree/bindings/sound/amlogic*
1794 F:      sound/soc/meson/
1795
1796 ARM/Amlogic Meson SoC support
1797 M:      Neil Armstrong <narmstrong@baylibre.com>
1798 M:      Kevin Hilman <khilman@baylibre.com>
1799 R:      Jerome Brunet <jbrunet@baylibre.com>
1800 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1802 L:      linux-amlogic@lists.infradead.org
1803 S:      Maintained
1804 W:      http://linux-meson.com/
1805 F:      arch/arm/boot/dts/meson*
1806 F:      arch/arm/mach-meson/
1807 F:      arch/arm64/boot/dts/amlogic/
1808 F:      drivers/mmc/host/meson*
1809 F:      drivers/pinctrl/meson/
1810 F:      drivers/rtc/rtc-meson*
1811 F:      drivers/soc/amlogic/
1812 N:      meson
1813
1814 ARM/Annapurna Labs ALPINE ARCHITECTURE
1815 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1816 M:      Antoine Tenart <atenart@kernel.org>
1817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1818 S:      Maintained
1819 F:      arch/arm/boot/dts/alpine*
1820 F:      arch/arm/mach-alpine/
1821 F:      arch/arm64/boot/dts/amazon/
1822 F:      drivers/*/*alpine*
1823
1824 ARM/APPLE MACHINE SUPPORT
1825 M:      Hector Martin <marcan@marcan.st>
1826 M:      Sven Peter <sven@svenpeter.dev>
1827 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1829 S:      Maintained
1830 W:      https://asahilinux.org
1831 B:      https://github.com/AsahiLinux/linux/issues
1832 C:      irc://irc.oftc.net/asahi-dev
1833 T:      git https://github.com/AsahiLinux/linux.git
1834 F:      Documentation/devicetree/bindings/arm/apple.yaml
1835 F:      Documentation/devicetree/bindings/arm/apple/*
1836 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1837 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1838 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1839 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1840 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1841 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1842 F:      Documentation/devicetree/bindings/power/apple*
1843 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1844 F:      arch/arm64/boot/dts/apple/
1845 F:      drivers/clk/clk-apple-nco.c
1846 F:      drivers/i2c/busses/i2c-pasemi-core.c
1847 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1848 F:      drivers/irqchip/irq-apple-aic.c
1849 F:      drivers/mailbox/apple-mailbox.c
1850 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1851 F:      drivers/soc/apple/*
1852 F:      drivers/watchdog/apple_wdt.c
1853 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1854 F:      include/dt-bindings/pinctrl/apple.h
1855 F:      include/linux/apple-mailbox.h
1856
1857 ARM/ARTPEC MACHINE SUPPORT
1858 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1859 M:      Lars Persson <lars.persson@axis.com>
1860 L:      linux-arm-kernel@axis.com
1861 S:      Maintained
1862 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1863 F:      arch/arm/boot/dts/artpec6*
1864 F:      arch/arm/mach-artpec
1865 F:      drivers/clk/axis
1866 F:      drivers/crypto/axis
1867 F:      drivers/mmc/host/usdhi6rol0.c
1868 F:      drivers/pinctrl/pinctrl-artpec*
1869
1870 ARM/ASPEED I2C DRIVER
1871 M:      Brendan Higgins <brendanhiggins@google.com>
1872 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1873 R:      Joel Stanley <joel@jms.id.au>
1874 L:      linux-i2c@vger.kernel.org
1875 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1876 S:      Maintained
1877 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1878 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1879 F:      drivers/i2c/busses/i2c-aspeed.c
1880 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1881
1882 ARM/ASPEED MACHINE SUPPORT
1883 M:      Joel Stanley <joel@jms.id.au>
1884 R:      Andrew Jeffery <andrew@aj.id.au>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1887 S:      Supported
1888 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1890 F:      arch/arm/boot/dts/aspeed-*
1891 F:      arch/arm/mach-aspeed/
1892 N:      aspeed
1893
1894 ARM/BITMAIN ARCHITECTURE
1895 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1897 S:      Maintained
1898 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1899 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1900 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1901 F:      arch/arm64/boot/dts/bitmain/
1902 F:      drivers/clk/clk-bm1880.c
1903 F:      drivers/pinctrl/pinctrl-bm1880.c
1904
1905 ARM/CALXEDA HIGHBANK ARCHITECTURE
1906 M:      Andre Przywara <andre.przywara@arm.com>
1907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1908 S:      Maintained
1909 F:      arch/arm/boot/dts/ecx-*.dts*
1910 F:      arch/arm/boot/dts/highbank.dts
1911 F:      arch/arm/mach-highbank/
1912
1913 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1914 M:      Krzysztof Halasa <khalasa@piap.pl>
1915 S:      Maintained
1916 F:      arch/arm/mach-cns3xxx/
1917
1918 ARM/CAVIUM THUNDER NETWORK DRIVER
1919 M:      Sunil Goutham <sgoutham@marvell.com>
1920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1921 S:      Supported
1922 F:      drivers/net/ethernet/cavium/thunder/
1923
1924 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1925 M:      Lukasz Majewski <lukma@denx.de>
1926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1927 S:      Maintained
1928 F:      arch/arm/mach-ep93xx/ts72xx.c
1929
1930 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1931 M:      Alexander Shiyan <shc_work@mail.ru>
1932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S:      Odd Fixes
1934 N:      clps711x
1935
1936 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1937 M:      Lennert Buytenhek <kernel@wantstofly.org>
1938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1939 S:      Maintained
1940
1941 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1942 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1943 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      arch/arm/mach-ep93xx/
1947 F:      arch/arm/mach-ep93xx/include/mach/
1948
1949 ARM/CLKDEV SUPPORT
1950 M:      Russell King <linux@armlinux.org.uk>
1951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1952 S:      Maintained
1953 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1954 F:      drivers/clk/clkdev.c
1955
1956 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1957 M:      Baruch Siach <baruch@tkos.co.il>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S:      Maintained
1960 F:      arch/arm/boot/dts/cx92755*
1961 N:      digicolor
1962
1963 ARM/CONTEC MICRO9 MACHINE SUPPORT
1964 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1965 S:      Maintained
1966 F:      arch/arm/mach-ep93xx/micro9.c
1967
1968 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1969 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1970 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1971 R:      Mike Leach <mike.leach@linaro.org>
1972 R:      Leo Yan <leo.yan@linaro.org>
1973 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1975 S:      Maintained
1976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1977 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1978 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1979 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1980 F:      Documentation/devicetree/bindings/arm/coresight.txt
1981 F:      Documentation/devicetree/bindings/arm/ete.yaml
1982 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1983 F:      Documentation/trace/coresight/*
1984 F:      drivers/hwtracing/coresight/*
1985 F:      include/dt-bindings/arm/coresight-cti-dt.h
1986 F:      include/linux/coresight*
1987 F:      samples/coresight/*
1988 F:      tools/perf/arch/arm/util/auxtrace.c
1989 F:      tools/perf/arch/arm/util/cs-etm.c
1990 F:      tools/perf/arch/arm/util/cs-etm.h
1991 F:      tools/perf/arch/arm/util/pmu.c
1992 F:      tools/perf/util/cs-etm-decoder/*
1993 F:      tools/perf/util/cs-etm.*
1994
1995 ARM/CORGI MACHINE SUPPORT
1996 M:      Richard Purdie <rpurdie@rpsys.net>
1997 S:      Maintained
1998
1999 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2000 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2001 M:      Linus Walleij <linus.walleij@linaro.org>
2002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2003 S:      Maintained
2004 T:      git git://github.com/ulli-kroll/linux.git
2005 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2006 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
2007 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2008 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2009 F:      arch/arm/boot/dts/gemini*
2010 F:      arch/arm/mach-gemini/
2011 F:      drivers/crypto/gemini/
2012 F:      drivers/net/ethernet/cortina/
2013 F:      drivers/pinctrl/pinctrl-gemini.c
2014 F:      drivers/rtc/rtc-ftrtc010.c
2015
2016 ARM/CZ.NIC TURRIS SUPPORT
2017 M:      Marek Behún <kabel@kernel.org>
2018 S:      Maintained
2019 W:      https://www.turris.cz/
2020 F:      Documentation/ABI/testing/debugfs-moxtet
2021 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2022 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2023 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2024 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2025 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2026 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2027 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2028 F:      drivers/bus/moxtet.c
2029 F:      drivers/firmware/turris-mox-rwtm.c
2030 F:      drivers/leds/leds-turris-omnia.c
2031 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2032 F:      drivers/gpio/gpio-moxtet.c
2033 F:      drivers/watchdog/armada_37xx_wdt.c
2034 F:      include/dt-bindings/bus/moxtet.h
2035 F:      include/linux/armada-37xx-rwtm-mailbox.h
2036 F:      include/linux/moxtet.h
2037
2038 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2039 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042 F:      arch/arm/mach-pxa/ezx.c
2043
2044 ARM/FARADAY FA526 PORT
2045 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 S:      Maintained
2048 T:      git git://git.berlios.de/gemini-board
2049 F:      arch/arm/mm/*-fa*
2050
2051 ARM/FOOTBRIDGE ARCHITECTURE
2052 M:      Russell King <linux@armlinux.org.uk>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 S:      Maintained
2055 W:      http://www.armlinux.org.uk/
2056 F:      arch/arm/include/asm/hardware/dec21285.h
2057 F:      arch/arm/mach-footbridge/
2058
2059 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2060 M:      Shawn Guo <shawnguo@kernel.org>
2061 M:      Sascha Hauer <s.hauer@pengutronix.de>
2062 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2063 R:      Fabio Estevam <festevam@gmail.com>
2064 R:      NXP Linux Team <linux-imx@nxp.com>
2065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2066 S:      Maintained
2067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2068 X:      drivers/media/i2c/
2069 N:      imx
2070 N:      mxs
2071
2072 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2073 M:      Shawn Guo <shawnguo@kernel.org>
2074 M:      Li Yang <leoyang.li@nxp.com>
2075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2076 S:      Maintained
2077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2078 F:      arch/arm/boot/dts/ls1021a*
2079 F:      arch/arm64/boot/dts/freescale/fsl-*
2080 F:      arch/arm64/boot/dts/freescale/qoriq-*
2081
2082 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2083 M:      Shawn Guo <shawnguo@kernel.org>
2084 M:      Sascha Hauer <s.hauer@pengutronix.de>
2085 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2086 R:      Stefan Agner <stefan@agner.ch>
2087 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2088 S:      Maintained
2089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2090 F:      arch/arm/boot/dts/vf*
2091 F:      arch/arm/mach-imx/*vf610*
2092
2093 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2094 M:      Lennert Buytenhek <kernel@wantstofly.org>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097
2098 ARM/GUMSTIX MACHINE SUPPORT
2099 M:      Steve Sakoman <sakoman@gmail.com>
2100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S:      Maintained
2102
2103 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2104 M:      Philipp Zabel <philipp.zabel@gmail.com>
2105 M:      Paul Parsons <lost.distance@yahoo.com>
2106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 S:      Maintained
2108 F:      arch/arm/mach-pxa/hx4700.c
2109 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2110 F:      sound/soc/pxa/hx4700.c
2111
2112 ARM/HISILICON SOC SUPPORT
2113 M:      Wei Xu <xuwei5@hisilicon.com>
2114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2115 S:      Supported
2116 W:      http://www.hisilicon.com
2117 T:      git git://github.com/hisilicon/linux-hisi.git
2118 F:      arch/arm/boot/dts/hi3*
2119 F:      arch/arm/boot/dts/hip*
2120 F:      arch/arm/boot/dts/hisi*
2121 F:      arch/arm/mach-hisi/
2122 F:      arch/arm64/boot/dts/hisilicon/
2123
2124 ARM/HP JORNADA 7XX MACHINE SUPPORT
2125 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2126 S:      Maintained
2127 W:      www.jlime.com
2128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2129 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2130 F:      arch/arm/mach-sa1100/jornada720.c
2131
2132 ARM/IGEP MACHINE SUPPORT
2133 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2134 M:      Javier Martinez Canillas <javier@dowhile0.org>
2135 L:      linux-omap@vger.kernel.org
2136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2137 S:      Maintained
2138 F:      arch/arm/boot/dts/omap3-igep*
2139
2140 ARM/INCOME PXA270 SUPPORT
2141 M:      Marek Vasut <marek.vasut@gmail.com>
2142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2143 S:      Maintained
2144 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2145
2146 ARM/INTEL IOP32X ARM ARCHITECTURE
2147 M:      Lennert Buytenhek <kernel@wantstofly.org>
2148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2149 S:      Maintained
2150
2151 ARM/INTEL IQ81342EX MACHINE SUPPORT
2152 M:      Lennert Buytenhek <kernel@wantstofly.org>
2153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2154 S:      Maintained
2155
2156 ARM/INTEL IXDP2850 MACHINE SUPPORT
2157 M:      Lennert Buytenhek <kernel@wantstofly.org>
2158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2159 S:      Maintained
2160
2161 ARM/INTEL IXP4XX ARM ARCHITECTURE
2162 M:      Linus Walleij <linusw@kernel.org>
2163 M:      Imre Kaloz <kaloz@openwrt.org>
2164 M:      Krzysztof Halasa <khalasa@piap.pl>
2165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2166 S:      Maintained
2167 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2168 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2169 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2170 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2171 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2172 F:      arch/arm/mach-ixp4xx/
2173 F:      drivers/bus/intel-ixp4xx-eb.c
2174 F:      drivers/clocksource/timer-ixp4xx.c
2175 F:      drivers/crypto/ixp4xx_crypto.c
2176 F:      drivers/gpio/gpio-ixp4xx.c
2177 F:      drivers/irqchip/irq-ixp4xx.c
2178 F:      include/linux/irqchip/irq-ixp4xx.h
2179 F:      include/linux/platform_data/timer-ixp4xx.h
2180
2181 ARM/INTEL KEEMBAY ARCHITECTURE
2182 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2183 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2184 S:      Maintained
2185 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2186 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2187 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2188
2189 ARM/INTEL XSC3 (MANZANO) ARM CORE
2190 M:      Lennert Buytenhek <kernel@wantstofly.org>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 S:      Maintained
2193
2194 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2195 M:      Lennert Buytenhek <kernel@wantstofly.org>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 S:      Maintained
2198
2199 ARM/LG1K ARCHITECTURE
2200 M:      Chanho Min <chanho.min@lge.com>
2201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2202 S:      Maintained
2203 F:      arch/arm64/boot/dts/lg/
2204
2205 ARM/LOGICPD PXA270 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/LPC18XX ARCHITECTURE
2211 M:      Vladimir Zapolskiy <vz@mleia.com>
2212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2213 S:      Maintained
2214 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2215 F:      arch/arm/boot/dts/lpc43*
2216 F:      drivers/i2c/busses/i2c-lpc2k.c
2217 F:      drivers/memory/pl172.c
2218 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2219 F:      drivers/rtc/rtc-lpc24xx.c
2220 N:      lpc18xx
2221
2222 ARM/LPC32XX SOC SUPPORT
2223 M:      Vladimir Zapolskiy <vz@mleia.com>
2224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2225 S:      Maintained
2226 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2227 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2228 F:      arch/arm/boot/dts/lpc32*
2229 F:      arch/arm/mach-lpc32xx/
2230 F:      drivers/i2c/busses/i2c-pnx.c
2231 F:      drivers/net/ethernet/nxp/lpc_eth.c
2232 F:      drivers/usb/host/ohci-nxp.c
2233 F:      drivers/watchdog/pnx4008_wdt.c
2234 N:      lpc32xx
2235
2236 ARM/MAGICIAN MACHINE SUPPORT
2237 M:      Philipp Zabel <philipp.zabel@gmail.com>
2238 S:      Maintained
2239
2240 ARM/Marvell Dove/MV78xx0/Orion SOC support
2241 M:      Andrew Lunn <andrew@lunn.ch>
2242 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2243 M:      Gregory Clement <gregory.clement@bootlin.com>
2244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2245 S:      Maintained
2246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2247 F:      Documentation/devicetree/bindings/soc/dove/
2248 F:      arch/arm/boot/dts/dove*
2249 F:      arch/arm/boot/dts/orion5x*
2250 F:      arch/arm/mach-dove/
2251 F:      arch/arm/mach-mv78xx0/
2252 F:      arch/arm/mach-orion5x/
2253 F:      arch/arm/plat-orion/
2254 F:      drivers/soc/dove/
2255
2256 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2257 M:      Andrew Lunn <andrew@lunn.ch>
2258 M:      Gregory Clement <gregory.clement@bootlin.com>
2259 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2261 S:      Maintained
2262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2263 F:      arch/arm/boot/dts/armada*
2264 F:      arch/arm/boot/dts/kirkwood*
2265 F:      arch/arm/configs/mvebu_*_defconfig
2266 F:      arch/arm/mach-mvebu/
2267 F:      arch/arm64/boot/dts/marvell/armada*
2268 F:      arch/arm64/boot/dts/marvell/cn913*
2269 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2270 F:      drivers/cpufreq/armada-8k-cpufreq.c
2271 F:      drivers/cpufreq/mvebu-cpufreq.c
2272 F:      drivers/irqchip/irq-armada-370-xp.c
2273 F:      drivers/irqchip/irq-mvebu-*
2274 F:      drivers/pinctrl/mvebu/
2275 F:      drivers/rtc/rtc-armada38x.c
2276
2277 ARM/Mediatek RTC DRIVER
2278 M:      Eddie Huang <eddie.huang@mediatek.com>
2279 M:      Sean Wang <sean.wang@mediatek.com>
2280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2281 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2282 S:      Maintained
2283 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2284 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2285 F:      drivers/rtc/rtc-mt2712.c
2286 F:      drivers/rtc/rtc-mt6397.c
2287 F:      drivers/rtc/rtc-mt7622.c
2288
2289 ARM/Mediatek SoC support
2290 M:      Matthias Brugger <matthias.bgg@gmail.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 W:      https://mtk.wiki.kernel.org/
2295 C:      irc://chat.freenode.net/linux-mediatek
2296 F:      arch/arm/boot/dts/mt6*
2297 F:      arch/arm/boot/dts/mt7*
2298 F:      arch/arm/boot/dts/mt8*
2299 F:      arch/arm/mach-mediatek/
2300 F:      arch/arm64/boot/dts/mediatek/
2301 F:      drivers/soc/mediatek/
2302 N:      mtk
2303 N:      mt[678]
2304 K:      mediatek
2305
2306 ARM/Mediatek USB3 PHY DRIVER
2307 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2309 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2310 S:      Maintained
2311 F:      Documentation/devicetree/bindings/phy/mediatek,*
2312 F:      drivers/phy/mediatek/
2313
2314 ARM/Microchip (AT91) SoC support
2315 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2316 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2317 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 S:      Supported
2320 W:      http://www.linux4sam.org
2321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2322 F:      arch/arm/boot/dts/at91*.dts
2323 F:      arch/arm/boot/dts/at91*.dtsi
2324 F:      arch/arm/boot/dts/sama*.dts
2325 F:      arch/arm/boot/dts/sama*.dtsi
2326 F:      arch/arm/include/debug/at91.S
2327 F:      arch/arm/mach-at91/
2328 F:      drivers/memory/atmel*
2329 F:      drivers/watchdog/sama5d4_wdt.c
2330 F:      include/soc/at91/
2331 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2332 X:      drivers/net/wireless/atmel/
2333 N:      at91
2334 N:      atmel
2335
2336 ARM/Microchip Sparx5 SoC support
2337 M:      Lars Povlsen <lars.povlsen@microchip.com>
2338 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2339 M:      UNGLinuxDriver@microchip.com
2340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2341 S:      Supported
2342 T:      git git://github.com/microchip-ung/linux-upstream.git
2343 F:      arch/arm64/boot/dts/microchip/
2344 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2345 N:      sparx5
2346
2347 Microchip Timer Counter Block (TCB) Capture Driver
2348 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 L:      linux-iio@vger.kernel.org
2351 S:      Maintained
2352 F:      drivers/counter/microchip-tcb-capture.c
2353
2354 ARM/MILBEAUT ARCHITECTURE
2355 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2356 M:      Takao Orito <orito.takao@socionext.com>
2357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2358 S:      Maintained
2359 F:      arch/arm/boot/dts/milbeaut*
2360 F:      arch/arm/mach-milbeaut/
2361 N:      milbeaut
2362
2363 ARM/MIOA701 MACHINE SUPPORT
2364 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2366 S:      Maintained
2367 F:      arch/arm/mach-pxa/mioa701.c
2368
2369 ARM/MStar/Sigmastar Armv7 SoC support
2370 M:      Daniel Palmer <daniel@thingy.jp>
2371 M:      Romain Perier <romain.perier@gmail.com>
2372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2373 S:      Maintained
2374 W:      http://linux-chenxing.org/
2375 T:      git git://github.com/linux-chenxing/linux.git
2376 F:      Documentation/devicetree/bindings/arm/mstar/*
2377 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2378 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2379 F:      arch/arm/boot/dts/mstar-*
2380 F:      arch/arm/mach-mstar/
2381 F:      drivers/clk/mstar/
2382 F:      drivers/clocksource/timer-msc313e.c
2383 F:      drivers/gpio/gpio-msc313.c
2384 F:      drivers/rtc/rtc-msc313.c
2385 F:      drivers/watchdog/msc313e_wdt.c
2386 F:      include/dt-bindings/clock/mstar-*
2387 F:      include/dt-bindings/gpio/msc313-gpio.h
2388
2389 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2390 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2391 S:      Maintained
2392
2393 ARM/NOMADIK/Ux500 ARCHITECTURES
2394 M:      Linus Walleij <linus.walleij@linaro.org>
2395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2396 S:      Maintained
2397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2398 F:      Documentation/devicetree/bindings/arm/ste-*
2399 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2400 F:      Documentation/devicetree/bindings/arm/ux500/
2401 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2402 F:      arch/arm/boot/dts/ste-*
2403 F:      arch/arm/mach-nomadik/
2404 F:      arch/arm/mach-ux500/
2405 F:      drivers/clk/clk-nomadik.c
2406 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2407 F:      drivers/dma/ste_dma40*
2408 F:      drivers/hwspinlock/u8500_hsem.c
2409 F:      drivers/i2c/busses/i2c-nomadik.c
2410 F:      drivers/iio/adc/ab8500-gpadc.c
2411 F:      drivers/mfd/ab8500*
2412 F:      drivers/mfd/abx500*
2413 F:      drivers/mfd/db8500*
2414 F:      drivers/pinctrl/nomadik/
2415 F:      drivers/rtc/rtc-ab8500.c
2416 F:      drivers/rtc/rtc-pl031.c
2417 F:      drivers/soc/ux500/
2418
2419 ARM/NUVOTON NPCM ARCHITECTURE
2420 M:      Avi Fishman <avifishman70@gmail.com>
2421 M:      Tomer Maimon <tmaimon77@gmail.com>
2422 M:      Tali Perry <tali.perry1@gmail.com>
2423 R:      Patrick Venture <venture@google.com>
2424 R:      Nancy Yuen <yuenn@google.com>
2425 R:      Benjamin Fair <benjaminfair@google.com>
2426 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2427 S:      Supported
2428 F:      Documentation/devicetree/bindings/*/*/*npcm*
2429 F:      Documentation/devicetree/bindings/*/*npcm*
2430 F:      Documentation/devicetree/bindings/arm/npcm/*
2431 F:      arch/arm/boot/dts/nuvoton-npcm*
2432 F:      arch/arm/mach-npcm/
2433 F:      drivers/*/*npcm*
2434 F:      drivers/*/*/*npcm*
2435 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2436
2437 ARM/NUVOTON WPCM450 ARCHITECTURE
2438 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2439 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2440 S:      Maintained
2441 W:      https://github.com/neuschaefer/wpcm450/wiki
2442 F:      Documentation/devicetree/bindings/*/*wpcm*
2443 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2444 F:      arch/arm/mach-npcm/wpcm450.c
2445 F:      drivers/*/*/*wpcm*
2446 F:      drivers/*/*wpcm*
2447
2448 ARM/NXP S32G ARCHITECTURE
2449 M:      Chester Lin <clin@suse.com>
2450 R:      Andreas Färber <afaerber@suse.de>
2451 R:      Matthias Brugger <mbrugger@suse.com>
2452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2453 S:      Maintained
2454 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2455
2456 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2457 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2458 S:      Orphan
2459 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2460 F:      arch/arm/mach-s3c/gta02.h
2461 F:      arch/arm/mach-s3c/mach-gta02.c
2462
2463 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2464 M:      Alexander Clouter <alex@digriz.org.uk>
2465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2466 S:      Maintained
2467 W:      http://www.digriz.org.uk/ts78xx/kernel
2468 F:      arch/arm/mach-orion5x/ts78xx-*
2469
2470 ARM/OXNAS platform support
2471 M:      Neil Armstrong <narmstrong@baylibre.com>
2472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2473 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2474 S:      Maintained
2475 F:      arch/arm/boot/dts/ox8*.dts*
2476 F:      arch/arm/mach-oxnas/
2477 F:      drivers/power/reset/oxnas-restart.c
2478 N:      oxnas
2479
2480 ARM/PALM TREO SUPPORT
2481 M:      Tomas Cech <sleep_walker@suse.com>
2482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2483 S:      Maintained
2484 W:      http://hackndev.com
2485 F:      arch/arm/mach-pxa/palmtreo.*
2486
2487 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2488 M:      Marek Vasut <marek.vasut@gmail.com>
2489 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2490 S:      Maintained
2491 W:      http://hackndev.com
2492 F:      arch/arm/mach-pxa/include/mach/palmld.h
2493 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2494 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2495 F:      arch/arm/mach-pxa/palmld.c
2496 F:      arch/arm/mach-pxa/palmt5.*
2497 F:      arch/arm/mach-pxa/palmtc.c
2498 F:      arch/arm/mach-pxa/palmte2.*
2499 F:      arch/arm/mach-pxa/palmtx.c
2500
2501 ARM/PALMZ72 SUPPORT
2502 M:      Sergey Lapin <slapin@ossfans.org>
2503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2504 S:      Maintained
2505 W:      http://hackndev.com
2506 F:      arch/arm/mach-pxa/palmz72.*
2507
2508 ARM/PLEB SUPPORT
2509 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2510 S:      Maintained
2511 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2512
2513 ARM/PT DIGITAL BOARD PORT
2514 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2516 S:      Maintained
2517 W:      http://www.armlinux.org.uk/
2518
2519 ARM/QUALCOMM SUPPORT
2520 M:      Andy Gross <agross@kernel.org>
2521 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2522 L:      linux-arm-msm@vger.kernel.org
2523 S:      Maintained
2524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2525 F:      Documentation/devicetree/bindings/*/qcom*
2526 F:      Documentation/devicetree/bindings/soc/qcom/
2527 F:      arch/arm/boot/dts/qcom-*.dts
2528 F:      arch/arm/boot/dts/qcom-*.dtsi
2529 F:      arch/arm/mach-qcom/
2530 F:      arch/arm64/boot/dts/qcom/
2531 F:      drivers/*/*/qcom*
2532 F:      drivers/*/*/qcom/
2533 F:      drivers/*/pm8???-*
2534 F:      drivers/*/qcom*
2535 F:      drivers/*/qcom/
2536 F:      drivers/bluetooth/btqcomsmd.c
2537 F:      drivers/clocksource/timer-qcom.c
2538 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2539 F:      drivers/extcon/extcon-qcom*
2540 F:      drivers/i2c/busses/i2c-qcom-geni.c
2541 F:      drivers/i2c/busses/i2c-qup.c
2542 F:      drivers/iommu/msm*
2543 F:      drivers/mfd/ssbi.c
2544 F:      drivers/mmc/host/mmci_qcom*
2545 F:      drivers/mmc/host/sdhci-msm.c
2546 F:      drivers/pci/controller/dwc/pcie-qcom.c
2547 F:      drivers/phy/qualcomm/
2548 F:      drivers/power/*/msm*
2549 F:      drivers/reset/reset-qcom-*
2550 F:      drivers/scsi/ufs/ufs-qcom*
2551 F:      drivers/spi/spi-geni-qcom.c
2552 F:      drivers/spi/spi-qcom-qspi.c
2553 F:      drivers/spi/spi-qup.c
2554 F:      drivers/tty/serial/msm_serial.c
2555 F:      drivers/usb/dwc3/dwc3-qcom.c
2556 F:      include/dt-bindings/*/qcom*
2557 F:      include/linux/*/qcom*
2558 F:      include/linux/soc/qcom/
2559
2560 ARM/RADISYS ENP2611 MACHINE SUPPORT
2561 M:      Lennert Buytenhek <kernel@wantstofly.org>
2562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2563 S:      Maintained
2564
2565 ARM/RDA MICRO ARCHITECTURE
2566 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2568 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2569 S:      Maintained
2570 F:      Documentation/devicetree/bindings/arm/rda.yaml
2571 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2572 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2573 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2574 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2575 F:      arch/arm/boot/dts/rda8810pl-*
2576 F:      drivers/clocksource/timer-rda.c
2577 F:      drivers/gpio/gpio-rda.c
2578 F:      drivers/irqchip/irq-rda-intc.c
2579 F:      drivers/tty/serial/rda-uart.c
2580
2581 ARM/REALTEK ARCHITECTURE
2582 M:      Andreas Färber <afaerber@suse.de>
2583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2584 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2585 S:      Maintained
2586 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2587 F:      arch/arm/boot/dts/rtd*
2588 F:      arch/arm/mach-realtek/
2589 F:      arch/arm64/boot/dts/realtek/
2590
2591 ARM/RENESAS ARM64 ARCHITECTURE
2592 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2593 M:      Magnus Damm <magnus.damm@gmail.com>
2594 L:      linux-renesas-soc@vger.kernel.org
2595 S:      Supported
2596 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2597 C:      irc://irc.libera.chat/renesas-soc
2598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2599 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2600 F:      arch/arm64/boot/dts/renesas/
2601 F:      drivers/soc/renesas/
2602 F:      include/linux/soc/renesas/
2603
2604 ARM/RISCPC ARCHITECTURE
2605 M:      Russell King <linux@armlinux.org.uk>
2606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2607 S:      Maintained
2608 W:      http://www.armlinux.org.uk/
2609 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2610 F:      arch/arm/include/asm/hardware/ioc.h
2611 F:      arch/arm/include/asm/hardware/iomd.h
2612 F:      arch/arm/include/asm/hardware/memc.h
2613 F:      arch/arm/mach-rpc/
2614 F:      drivers/net/ethernet/8390/etherh.c
2615 F:      drivers/net/ethernet/i825xx/ether1*
2616 F:      drivers/net/ethernet/seeq/ether3*
2617 F:      drivers/scsi/arm/
2618
2619 ARM/Rockchip SoC support
2620 M:      Heiko Stuebner <heiko@sntech.de>
2621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2622 L:      linux-rockchip@lists.infradead.org
2623 S:      Maintained
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2625 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2626 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2627 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2628 F:      arch/arm/boot/dts/rk3*
2629 F:      arch/arm/boot/dts/rv1108*
2630 F:      arch/arm/mach-rockchip/
2631 F:      drivers/*/*/*rockchip*
2632 F:      drivers/*/*rockchip*
2633 F:      drivers/clk/rockchip/
2634 F:      drivers/i2c/busses/i2c-rk3x.c
2635 F:      sound/soc/rockchip/
2636 N:      rockchip
2637
2638 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2639 M:      Krzysztof Kozlowski <krzk@kernel.org>
2640 R:      Alim Akhtar <alim.akhtar@samsung.com>
2641 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2642 L:      linux-samsung-soc@vger.kernel.org
2643 S:      Maintained
2644 C:      irc://irc.libera.chat/linux-exynos
2645 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2647 F:      Documentation/arm/samsung/
2648 F:      Documentation/devicetree/bindings/arm/samsung/
2649 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2650 F:      Documentation/devicetree/bindings/soc/samsung/
2651 F:      arch/arm/boot/dts/exynos*
2652 F:      arch/arm/boot/dts/s3c*
2653 F:      arch/arm/boot/dts/s5p*
2654 F:      arch/arm/mach-exynos*/
2655 F:      arch/arm/mach-s3c/
2656 F:      arch/arm/mach-s5p*/
2657 F:      arch/arm64/boot/dts/exynos/
2658 F:      drivers/*/*/*s3c24*
2659 F:      drivers/*/*s3c24*
2660 F:      drivers/*/*s3c64xx*
2661 F:      drivers/*/*s5pv210*
2662 F:      drivers/clocksource/samsung_pwm_timer.c
2663 F:      drivers/memory/samsung/
2664 F:      drivers/pwm/pwm-samsung.c
2665 F:      drivers/soc/samsung/
2666 F:      drivers/tty/serial/samsung*
2667 F:      include/clocksource/samsung_pwm.h
2668 F:      include/linux/platform_data/*s3c*
2669 F:      include/linux/serial_s3c.h
2670 F:      include/linux/soc/samsung/
2671 N:      exynos
2672 N:      s3c2410
2673 N:      s3c64xx
2674 N:      s5pv210
2675
2676 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2677 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2679 L:      linux-media@vger.kernel.org
2680 S:      Maintained
2681 F:      drivers/media/platform/samsung/s5p-g2d/
2682
2683 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2684 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2685 L:      linux-samsung-soc@vger.kernel.org
2686 L:      linux-media@vger.kernel.org
2687 S:      Maintained
2688 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2689 F:      drivers/media/cec/platform/s5p/
2690
2691 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2692 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2693 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2694 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2695 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2696 L:      linux-media@vger.kernel.org
2697 S:      Maintained
2698 F:      drivers/media/platform/samsung/s5p-jpeg/
2699
2700 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2701 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2702 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2704 L:      linux-media@vger.kernel.org
2705 S:      Maintained
2706 F:      drivers/media/platform/samsung/s5p-mfc/
2707
2708 ARM/SHMOBILE ARM ARCHITECTURE
2709 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2710 M:      Magnus Damm <magnus.damm@gmail.com>
2711 L:      linux-renesas-soc@vger.kernel.org
2712 S:      Supported
2713 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2714 C:      irc://irc.libera.chat/renesas-soc
2715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2716 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2717 F:      arch/arm/boot/dts/emev2*
2718 F:      arch/arm/boot/dts/gr-peach*
2719 F:      arch/arm/boot/dts/iwg20d-q7*
2720 F:      arch/arm/boot/dts/r7s*
2721 F:      arch/arm/boot/dts/r8a*
2722 F:      arch/arm/boot/dts/r9a*
2723 F:      arch/arm/boot/dts/sh*
2724 F:      arch/arm/configs/shmobile_defconfig
2725 F:      arch/arm/include/debug/renesas-scif.S
2726 F:      arch/arm/mach-shmobile/
2727 F:      drivers/soc/renesas/
2728 F:      include/linux/soc/renesas/
2729
2730 ARM/SOCFPGA ARCHITECTURE
2731 M:      Dinh Nguyen <dinguyen@kernel.org>
2732 S:      Maintained
2733 W:      http://www.rocketboards.org
2734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2735 F:      arch/arm/boot/dts/socfpga*
2736 F:      arch/arm/configs/socfpga_defconfig
2737 F:      arch/arm/mach-socfpga/
2738 F:      arch/arm64/boot/dts/altera/
2739 F:      arch/arm64/boot/dts/intel/
2740
2741 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2742 M:      Dinh Nguyen <dinguyen@kernel.org>
2743 S:      Maintained
2744 F:      drivers/clk/socfpga/
2745
2746 ARM/SOCFPGA EDAC SUPPORT
2747 M:      Dinh Nguyen <dinguyen@kernel.org>
2748 S:      Maintained
2749 F:      drivers/edac/altera_edac.[ch]
2750
2751 ARM/SPREADTRUM SoC SUPPORT
2752 M:      Orson Zhai <orsonzhai@gmail.com>
2753 M:      Baolin Wang <baolin.wang7@gmail.com>
2754 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2755 S:      Maintained
2756 F:      arch/arm64/boot/dts/sprd
2757 N:      sprd
2758 N:      sc27xx
2759 N:      sc2731
2760
2761 ARM/STI ARCHITECTURE
2762 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2764 S:      Maintained
2765 W:      http://www.stlinux.com
2766 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2767 F:      arch/arm/boot/dts/sti*
2768 F:      arch/arm/mach-sti/
2769 F:      drivers/ata/ahci_st.c
2770 F:      drivers/char/hw_random/st-rng.c
2771 F:      drivers/clocksource/arm_global_timer.c
2772 F:      drivers/clocksource/clksrc_st_lpc.c
2773 F:      drivers/cpufreq/sti-cpufreq.c
2774 F:      drivers/dma/st_fdma*
2775 F:      drivers/i2c/busses/i2c-st.c
2776 F:      drivers/media/platform/st/sti/c8sectpfe/
2777 F:      drivers/media/rc/st_rc.c
2778 F:      drivers/mmc/host/sdhci-st.c
2779 F:      drivers/phy/st/phy-miphy28lp.c
2780 F:      drivers/phy/st/phy-stih407-usb.c
2781 F:      drivers/pinctrl/pinctrl-st.c
2782 F:      drivers/remoteproc/st_remoteproc.c
2783 F:      drivers/remoteproc/st_slim_rproc.c
2784 F:      drivers/reset/sti/
2785 F:      drivers/rtc/rtc-st-lpc.c
2786 F:      drivers/tty/serial/st-asc.c
2787 F:      drivers/usb/dwc3/dwc3-st.c
2788 F:      drivers/usb/host/ehci-st.c
2789 F:      drivers/usb/host/ohci-st.c
2790 F:      drivers/watchdog/st_lpc_wdt.c
2791 F:      include/linux/remoteproc/st_slim_rproc.h
2792
2793 ARM/STM32 ARCHITECTURE
2794 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2795 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2796 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2798 S:      Maintained
2799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2800 F:      arch/arm/boot/dts/stm32*
2801 F:      arch/arm/mach-stm32/
2802 F:      drivers/clocksource/armv7m_systick.c
2803 N:      stm32
2804 N:      stm
2805
2806 ARM/Synaptics SoC support
2807 M:      Jisheng Zhang <jszhang@kernel.org>
2808 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2810 S:      Maintained
2811 F:      arch/arm/boot/dts/berlin*
2812 F:      arch/arm/mach-berlin/
2813 F:      arch/arm64/boot/dts/synaptics/
2814
2815 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2816 M:      Lennert Buytenhek <kernel@wantstofly.org>
2817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2818 S:      Maintained
2819
2820 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2821 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2822 L:      linux-tegra@vger.kernel.org
2823 L:      linux-media@vger.kernel.org
2824 S:      Maintained
2825 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2826 F:      drivers/media/cec/platform/tegra/
2827
2828 ARM/TESLA FSD SoC SUPPORT
2829 M:      Alim Akhtar <alim.akhtar@samsung.com>
2830 M:      linux-fsd@tesla.com
2831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2832 L:      linux-samsung-soc@vger.kernel.org
2833 S:      Maintained
2834 F:      arch/arm64/boot/dts/tesla*
2835
2836 ARM/TETON BGA MACHINE SUPPORT
2837 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2839 S:      Maintained
2840
2841 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2842 M:      Santosh Shilimkar <ssantosh@kernel.org>
2843 L:      linux-kernel@vger.kernel.org
2844 S:      Maintained
2845 F:      drivers/memory/*emif*
2846
2847 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2848 M:      Nishanth Menon <nm@ti.com>
2849 M:      Santosh Shilimkar <ssantosh@kernel.org>
2850 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2851 S:      Maintained
2852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2853 F:      arch/arm/boot/dts/keystone-*
2854 F:      arch/arm/mach-keystone/
2855
2856 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2857 M:      Santosh Shilimkar <ssantosh@kernel.org>
2858 L:      linux-kernel@vger.kernel.org
2859 S:      Maintained
2860 F:      drivers/clk/keystone/
2861
2862 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2863 M:      Santosh Shilimkar <ssantosh@kernel.org>
2864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2865 L:      linux-kernel@vger.kernel.org
2866 S:      Maintained
2867 F:      drivers/clocksource/timer-keystone.c
2868
2869 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2870 M:      Santosh Shilimkar <ssantosh@kernel.org>
2871 L:      linux-kernel@vger.kernel.org
2872 S:      Maintained
2873 F:      drivers/power/reset/keystone-reset.c
2874
2875 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2876 M:      Nishanth Menon <nm@ti.com>
2877 M:      Vignesh Raghavendra <vigneshr@ti.com>
2878 M:      Tero Kristo <kristo@kernel.org>
2879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2880 S:      Supported
2881 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2882 F:      arch/arm64/boot/dts/ti/Makefile
2883 F:      arch/arm64/boot/dts/ti/k3-*
2884 F:      include/dt-bindings/pinctrl/k3.h
2885
2886 ARM/THECUS N2100 MACHINE SUPPORT
2887 M:      Lennert Buytenhek <kernel@wantstofly.org>
2888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2889 S:      Maintained
2890
2891 ARM/TOSA MACHINE SUPPORT
2892 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2893 M:      Dirk Opfer <dirk@opfer-online.de>
2894 S:      Maintained
2895
2896 ARM/TOSHIBA VISCONTI ARCHITECTURE
2897 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2899 S:      Supported
2900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2901 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2902 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2903 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2904 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2905 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2906 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2907 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2908 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2909 F:      arch/arm64/boot/dts/toshiba/
2910 F:      drivers/clk/visconti/
2911 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2912 F:      drivers/gpio/gpio-visconti.c
2913 F:      drivers/pci/controller/dwc/pcie-visconti.c
2914 F:      drivers/pinctrl/visconti/
2915 F:      drivers/watchdog/visconti_wdt.c
2916 N:      visconti
2917
2918 ARM/UNIPHIER ARCHITECTURE
2919 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2920 M:      Masami Hiramatsu <mhiramat@kernel.org>
2921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2922 S:      Maintained
2923 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2924 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2925 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2926 F:      arch/arm/boot/dts/uniphier*
2927 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2928 F:      arch/arm/mach-uniphier/
2929 F:      arch/arm/mm/cache-uniphier.c
2930 F:      arch/arm64/boot/dts/socionext/uniphier*
2931 F:      drivers/bus/uniphier-system-bus.c
2932 F:      drivers/clk/uniphier/
2933 F:      drivers/dma/uniphier-mdmac.c
2934 F:      drivers/gpio/gpio-uniphier.c
2935 F:      drivers/i2c/busses/i2c-uniphier*
2936 F:      drivers/irqchip/irq-uniphier-aidet.c
2937 F:      drivers/mmc/host/uniphier-sd.c
2938 F:      drivers/pinctrl/uniphier/
2939 F:      drivers/reset/reset-uniphier.c
2940 F:      drivers/tty/serial/8250/8250_uniphier.c
2941 N:      uniphier
2942
2943 ARM/VERSATILE EXPRESS PLATFORM
2944 M:      Liviu Dudau <liviu.dudau@arm.com>
2945 M:      Sudeep Holla <sudeep.holla@arm.com>
2946 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2948 S:      Maintained
2949 F:      */*/*/vexpress*
2950 F:      */*/vexpress*
2951 F:      arch/arm/boot/dts/vexpress*
2952 F:      arch/arm/mach-vexpress/
2953 F:      arch/arm64/boot/dts/arm/
2954 F:      drivers/clk/versatile/clk-vexpress-osc.c
2955 F:      drivers/clocksource/timer-versatile.c
2956 N:      mps2
2957
2958 ARM/VFP SUPPORT
2959 M:      Russell King <linux@armlinux.org.uk>
2960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2961 S:      Maintained
2962 W:      http://www.armlinux.org.uk/
2963 F:      arch/arm/vfp/
2964
2965 ARM/VOIPAC PXA270 SUPPORT
2966 M:      Marek Vasut <marek.vasut@gmail.com>
2967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2968 S:      Maintained
2969 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2970 F:      arch/arm/mach-pxa/vpac270.c
2971
2972 ARM/VT8500 ARM ARCHITECTURE
2973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2974 S:      Orphan
2975 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2976 F:      arch/arm/mach-vt8500/
2977 F:      drivers/clocksource/timer-vt8500.c
2978 F:      drivers/i2c/busses/i2c-wmt.c
2979 F:      drivers/mmc/host/wmt-sdmmc.c
2980 F:      drivers/pwm/pwm-vt8500.c
2981 F:      drivers/rtc/rtc-vt8500.c
2982 F:      drivers/tty/serial/vt8500_serial.c
2983 F:      drivers/usb/host/ehci-platform.c
2984 F:      drivers/usb/host/uhci-platform.c
2985 F:      drivers/video/fbdev/vt8500lcdfb.*
2986 F:      drivers/video/fbdev/wm8505fb*
2987 F:      drivers/video/fbdev/wmt_ge_rops.*
2988
2989 ARM/ZIPIT Z2 SUPPORT
2990 M:      Marek Vasut <marek.vasut@gmail.com>
2991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2992 S:      Maintained
2993 F:      arch/arm/mach-pxa/include/mach/z2.h
2994 F:      arch/arm/mach-pxa/z2.c
2995
2996 ARM/ZYNQ ARCHITECTURE
2997 M:      Michal Simek <michal.simek@xilinx.com>
2998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2999 S:      Supported
3000 W:      http://wiki.xilinx.com
3001 T:      git https://github.com/Xilinx/linux-xlnx.git
3002 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3003 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3004 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3005 F:      arch/arm/mach-zynq/
3006 F:      drivers/clocksource/timer-cadence-ttc.c
3007 F:      drivers/cpuidle/cpuidle-zynq.c
3008 F:      drivers/edac/synopsys_edac.c
3009 F:      drivers/i2c/busses/i2c-cadence.c
3010 F:      drivers/i2c/busses/i2c-xiic.c
3011 F:      drivers/mmc/host/sdhci-of-arasan.c
3012 N:      zynq
3013 N:      xilinx
3014
3015 ARM64 PORT (AARCH64 ARCHITECTURE)
3016 M:      Catalin Marinas <catalin.marinas@arm.com>
3017 M:      Will Deacon <will@kernel.org>
3018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3019 S:      Maintained
3020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3021 F:      Documentation/arm64/
3022 F:      arch/arm64/
3023 F:      tools/testing/selftests/arm64/
3024 X:      arch/arm64/boot/dts/
3025
3026 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3027 M:      George McCollister <george.mccollister@gmail.com>
3028 L:      netdev@vger.kernel.org
3029 S:      Maintained
3030 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3031 F:      drivers/net/dsa/xrs700x/*
3032 F:      net/dsa/tag_xrs700x.c
3033
3034 AS3645A LED FLASH CONTROLLER DRIVER
3035 M:      Sakari Ailus <sakari.ailus@iki.fi>
3036 L:      linux-leds@vger.kernel.org
3037 S:      Maintained
3038 F:      drivers/leds/flash/leds-as3645a.c
3039
3040 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3041 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3042 L:      linux-media@vger.kernel.org
3043 S:      Maintained
3044 T:      git git://linuxtv.org/media_tree.git
3045 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3046 F:      drivers/media/i2c/ak7375.c
3047
3048 ASAHI KASEI AK8974 DRIVER
3049 M:      Linus Walleij <linus.walleij@linaro.org>
3050 L:      linux-iio@vger.kernel.org
3051 S:      Supported
3052 W:      http://www.akm.com/
3053 F:      drivers/iio/magnetometer/ak8974.c
3054
3055 ASC7621 HARDWARE MONITOR DRIVER
3056 M:      George Joseph <george.joseph@fairview5.com>
3057 L:      linux-hwmon@vger.kernel.org
3058 S:      Maintained
3059 F:      Documentation/hwmon/asc7621.rst
3060 F:      drivers/hwmon/asc7621.c
3061
3062 ASIX AX88796C SPI ETHERNET ADAPTER
3063 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3064 S:      Maintained
3065 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3066 F:      drivers/net/ethernet/asix/ax88796c_*
3067
3068 ASPEED PECI CONTROLLER
3069 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3070 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3071 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3072 S:      Supported
3073 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3074 F:      drivers/peci/controller/peci-aspeed.c
3075
3076 ASPEED PINCTRL DRIVERS
3077 M:      Andrew Jeffery <andrew@aj.id.au>
3078 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3079 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3080 L:      linux-gpio@vger.kernel.org
3081 S:      Maintained
3082 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3083 F:      drivers/pinctrl/aspeed/
3084
3085 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3086 M:      Eddie James <eajames@linux.ibm.com>
3087 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3088 S:      Maintained
3089 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3090 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3091 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3092
3093 ASPEED SD/MMC DRIVER
3094 M:      Andrew Jeffery <andrew@aj.id.au>
3095 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3096 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3097 L:      linux-mmc@vger.kernel.org
3098 S:      Maintained
3099 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3100 F:      drivers/mmc/host/sdhci-of-aspeed*
3101
3102 ASPEED VIDEO ENGINE DRIVER
3103 M:      Eddie James <eajames@linux.ibm.com>
3104 L:      linux-media@vger.kernel.org
3105 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3106 S:      Maintained
3107 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3108 F:      drivers/media/platform/aspeed/
3109
3110 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3111 M:      Corentin Chary <corentin.chary@gmail.com>
3112 L:      acpi4asus-user@lists.sourceforge.net
3113 L:      platform-driver-x86@vger.kernel.org
3114 S:      Maintained
3115 W:      http://acpi4asus.sf.net
3116 F:      drivers/platform/x86/asus*.c
3117 F:      drivers/platform/x86/eeepc*.c
3118
3119 ASUS TF103C DOCK DRIVER
3120 M:      Hans de Goede <hdegoede@redhat.com>
3121 L:      platform-driver-x86@vger.kernel.org
3122 S:      Maintained
3123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3124 F:      drivers/platform/x86/asus-tf103c-dock.c
3125
3126 ASUS WMI HARDWARE MONITOR DRIVER
3127 M:      Ed Brindley <kernel@maidavale.org>
3128 M:      Denis Pauk <pauk.denis@gmail.com>
3129 L:      linux-hwmon@vger.kernel.org
3130 S:      Maintained
3131 F:      drivers/hwmon/asus_wmi_sensors.c
3132
3133 ASUS WMI EC HARDWARE MONITOR DRIVER
3134 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3135 M:      Denis Pauk <pauk.denis@gmail.com>
3136 L:      linux-hwmon@vger.kernel.org
3137 S:      Maintained
3138 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3139
3140 ASUS EC HARDWARE MONITOR DRIVER
3141 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3142 L:      linux-hwmon@vger.kernel.org
3143 S:      Maintained
3144 F:      drivers/hwmon/asus-ec-sensors.c
3145
3146 ASUS WIRELESS RADIO CONTROL DRIVER
3147 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3148 L:      platform-driver-x86@vger.kernel.org
3149 S:      Maintained
3150 F:      drivers/platform/x86/asus-wireless.c
3151
3152 ASYMMETRIC KEYS
3153 M:      David Howells <dhowells@redhat.com>
3154 L:      keyrings@vger.kernel.org
3155 S:      Maintained
3156 F:      Documentation/crypto/asymmetric-keys.rst
3157 F:      crypto/asymmetric_keys/
3158 F:      include/crypto/pkcs7.h
3159 F:      include/crypto/public_key.h
3160 F:      include/linux/verification.h
3161
3162 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3163 R:      Dan Williams <dan.j.williams@intel.com>
3164 S:      Odd fixes
3165 W:      http://sourceforge.net/projects/xscaleiop
3166 F:      Documentation/crypto/async-tx-api.rst
3167 F:      crypto/async_tx/
3168 F:      include/linux/async_tx.h
3169
3170 AT24 EEPROM DRIVER
3171 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3172 L:      linux-i2c@vger.kernel.org
3173 S:      Maintained
3174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3175 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3176 F:      drivers/misc/eeprom/at24.c
3177
3178 ATA OVER ETHERNET (AOE) DRIVER
3179 M:      "Justin Sanders" <justin@coraid.com>
3180 S:      Supported
3181 W:      http://www.openaoe.org/
3182 F:      Documentation/admin-guide/aoe/
3183 F:      drivers/block/aoe/
3184
3185 ATC260X PMIC MFD DRIVER
3186 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3187 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3188 L:      linux-actions@lists.infradead.org
3189 S:      Maintained
3190 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3191 F:      drivers/input/misc/atc260x-onkey.c
3192 F:      drivers/mfd/atc260*
3193 F:      drivers/power/reset/atc260x-poweroff.c
3194 F:      drivers/regulator/atc260x-regulator.c
3195 F:      include/linux/mfd/atc260x/*
3196
3197 ATHEROS 71XX/9XXX GPIO DRIVER
3198 M:      Alban Bedel <albeu@free.fr>
3199 S:      Maintained
3200 W:      https://github.com/AlbanBedel/linux
3201 T:      git git://github.com/AlbanBedel/linux
3202 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3203 F:      drivers/gpio/gpio-ath79.c
3204
3205 ATHEROS 71XX/9XXX USB PHY DRIVER
3206 M:      Alban Bedel <albeu@free.fr>
3207 S:      Maintained
3208 W:      https://github.com/AlbanBedel/linux
3209 T:      git git://github.com/AlbanBedel/linux
3210 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3211 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3212
3213 ATHEROS ATH GENERIC UTILITIES
3214 M:      Kalle Valo <kvalo@kernel.org>
3215 L:      linux-wireless@vger.kernel.org
3216 S:      Supported
3217 F:      drivers/net/wireless/ath/*
3218
3219 ATHEROS ATH5K WIRELESS DRIVER
3220 M:      Jiri Slaby <jirislaby@kernel.org>
3221 M:      Nick Kossifidis <mickflemm@gmail.com>
3222 M:      Luis Chamberlain <mcgrof@kernel.org>
3223 L:      linux-wireless@vger.kernel.org
3224 S:      Maintained
3225 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3226 F:      drivers/net/wireless/ath/ath5k/
3227
3228 ATHEROS ATH6KL WIRELESS DRIVER
3229 L:      linux-wireless@vger.kernel.org
3230 S:      Orphan
3231 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3232 F:      drivers/net/wireless/ath/ath6kl/
3233
3234 ATI_REMOTE2 DRIVER
3235 M:      Ville Syrjala <syrjala@sci.fi>
3236 S:      Maintained
3237 F:      drivers/input/misc/ati_remote2.c
3238
3239 ATK0110 HWMON DRIVER
3240 M:      Luca Tettamanti <kronos.it@gmail.com>
3241 L:      linux-hwmon@vger.kernel.org
3242 S:      Maintained
3243 F:      drivers/hwmon/asus_atk0110.c
3244
3245 ATLX ETHERNET DRIVERS
3246 M:      Chris Snook <chris.snook@gmail.com>
3247 L:      netdev@vger.kernel.org
3248 S:      Maintained
3249 W:      http://sourceforge.net/projects/atl1
3250 W:      http://atl1.sourceforge.net
3251 F:      drivers/net/ethernet/atheros/
3252
3253 ATM
3254 M:      Chas Williams <3chas3@gmail.com>
3255 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3256 L:      netdev@vger.kernel.org
3257 S:      Maintained
3258 W:      http://linux-atm.sourceforge.net
3259 F:      drivers/atm/
3260 F:      include/linux/atm*
3261 F:      include/uapi/linux/atm*
3262
3263 ATMEL MACB ETHERNET DRIVER
3264 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3265 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3266 S:      Supported
3267 F:      drivers/net/ethernet/cadence/
3268
3269 ATMEL MAXTOUCH DRIVER
3270 M:      Nick Dyer <nick@shmanahar.org>
3271 S:      Maintained
3272 T:      git git://github.com/ndyer/linux.git
3273 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3274 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3275
3276 ATMEL WIRELESS DRIVER
3277 M:      Simon Kelley <simon@thekelleys.org.uk>
3278 L:      linux-wireless@vger.kernel.org
3279 S:      Maintained
3280 W:      http://www.thekelleys.org.uk/atmel
3281 W:      http://atmelwlandriver.sourceforge.net/
3282 F:      drivers/net/wireless/atmel/atmel*
3283
3284 ATOMIC INFRASTRUCTURE
3285 M:      Will Deacon <will@kernel.org>
3286 M:      Peter Zijlstra <peterz@infradead.org>
3287 R:      Boqun Feng <boqun.feng@gmail.com>
3288 R:      Mark Rutland <mark.rutland@arm.com>
3289 L:      linux-kernel@vger.kernel.org
3290 S:      Maintained
3291 F:      arch/*/include/asm/atomic*.h
3292 F:      include/*/atomic*.h
3293 F:      include/linux/refcount.h
3294 F:      Documentation/atomic_*.txt
3295 F:      scripts/atomic/
3296
3297 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3298 M:      Bradley Grove <linuxdrivers@attotech.com>
3299 L:      linux-scsi@vger.kernel.org
3300 S:      Supported
3301 W:      http://www.attotech.com
3302 F:      drivers/scsi/esas2r
3303
3304 ATUSB IEEE 802.15.4 RADIO DRIVER
3305 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3306 L:      linux-wpan@vger.kernel.org
3307 S:      Maintained
3308 F:      drivers/net/ieee802154/at86rf230.h
3309 F:      drivers/net/ieee802154/atusb.c
3310 F:      drivers/net/ieee802154/atusb.h
3311
3312 AUDIT SUBSYSTEM
3313 M:      Paul Moore <paul@paul-moore.com>
3314 M:      Eric Paris <eparis@redhat.com>
3315 L:      linux-audit@redhat.com (moderated for non-subscribers)
3316 S:      Supported
3317 W:      https://github.com/linux-audit
3318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3319 F:      include/asm-generic/audit_*.h
3320 F:      include/linux/audit.h
3321 F:      include/linux/audit_arch.h
3322 F:      include/uapi/linux/audit.h
3323 F:      kernel/audit*
3324 F:      lib/*audit.c
3325
3326 AUXILIARY DISPLAY DRIVERS
3327 M:      Miguel Ojeda <ojeda@kernel.org>
3328 S:      Maintained
3329 F:      Documentation/devicetree/bindings/auxdisplay/
3330 F:      drivers/auxdisplay/
3331 F:      include/linux/cfag12864b.h
3332
3333 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3334 M:      Andreas Klinger <ak@it-klinger.de>
3335 L:      linux-iio@vger.kernel.org
3336 S:      Maintained
3337 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3338 F:      drivers/iio/adc/hx711.c
3339
3340 AX.25 NETWORK LAYER
3341 M:      Ralf Baechle <ralf@linux-mips.org>
3342 L:      linux-hams@vger.kernel.org
3343 S:      Maintained
3344 W:      http://www.linux-ax25.org/
3345 F:      include/net/ax25.h
3346 F:      include/uapi/linux/ax25.h
3347 F:      net/ax25/
3348
3349 AXENTIA ARM DEVICES
3350 M:      Peter Rosin <peda@axentia.se>
3351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3352 S:      Maintained
3353 F:      arch/arm/boot/dts/at91-linea.dtsi
3354 F:      arch/arm/boot/dts/at91-natte.dtsi
3355 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3356 F:      arch/arm/boot/dts/at91-tse850-3.dts
3357
3358 AXENTIA ASOC DRIVERS
3359 M:      Peter Rosin <peda@axentia.se>
3360 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3361 S:      Maintained
3362 F:      Documentation/devicetree/bindings/sound/axentia,*
3363 F:      sound/soc/atmel/tse850-pcm5142.c
3364
3365 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3366 M:      Nuno Sá <nuno.sa@analog.com>
3367 L:      linux-hwmon@vger.kernel.org
3368 S:      Supported
3369 W:      https://ez.analog.com/linux-software-drivers
3370 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3371 F:      drivers/hwmon/axi-fan-control.c
3372
3373 AXXIA I2C CONTROLLER
3374 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3375 L:      linux-i2c@vger.kernel.org
3376 S:      Maintained
3377 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3378 F:      drivers/i2c/busses/i2c-axxia.c
3379
3380 AZ6007 DVB DRIVER
3381 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3382 L:      linux-media@vger.kernel.org
3383 S:      Maintained
3384 W:      https://linuxtv.org
3385 T:      git git://linuxtv.org/media_tree.git
3386 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3387
3388 AZTECH FM RADIO RECEIVER DRIVER
3389 M:      Hans Verkuil <hverkuil@xs4all.nl>
3390 L:      linux-media@vger.kernel.org
3391 S:      Maintained
3392 W:      https://linuxtv.org
3393 T:      git git://linuxtv.org/media_tree.git
3394 F:      drivers/media/radio/radio-aztech*
3395
3396 B43 WIRELESS DRIVER
3397 L:      linux-wireless@vger.kernel.org
3398 L:      b43-dev@lists.infradead.org
3399 S:      Odd Fixes
3400 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3401 F:      drivers/net/wireless/broadcom/b43/
3402
3403 B43LEGACY WIRELESS DRIVER
3404 M:      Larry Finger <Larry.Finger@lwfinger.net>
3405 L:      linux-wireless@vger.kernel.org
3406 L:      b43-dev@lists.infradead.org
3407 S:      Maintained
3408 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3409 F:      drivers/net/wireless/broadcom/b43legacy/
3410
3411 BACKLIGHT CLASS/SUBSYSTEM
3412 M:      Lee Jones <lee.jones@linaro.org>
3413 M:      Daniel Thompson <daniel.thompson@linaro.org>
3414 M:      Jingoo Han <jingoohan1@gmail.com>
3415 L:      dri-devel@lists.freedesktop.org
3416 S:      Maintained
3417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3418 F:      Documentation/ABI/stable/sysfs-class-backlight
3419 F:      Documentation/ABI/testing/sysfs-class-backlight
3420 F:      Documentation/devicetree/bindings/leds/backlight
3421 F:      drivers/video/backlight/
3422 F:      include/linux/backlight.h
3423 F:      include/linux/pwm_backlight.h
3424
3425 BARCO P50 GPIO DRIVER
3426 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3427 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3428 S:      Maintained
3429 F:      drivers/platform/x86/barco-p50-gpio.c
3430
3431 BATMAN ADVANCED
3432 M:      Marek Lindner <mareklindner@neomailbox.ch>
3433 M:      Simon Wunderlich <sw@simonwunderlich.de>
3434 M:      Antonio Quartulli <a@unstable.cc>
3435 M:      Sven Eckelmann <sven@narfation.org>
3436 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3437 S:      Maintained
3438 W:      https://www.open-mesh.org/
3439 Q:      https://patchwork.open-mesh.org/project/batman/list/
3440 B:      https://www.open-mesh.org/projects/batman-adv/issues
3441 C:      ircs://irc.hackint.org/batadv
3442 T:      git https://git.open-mesh.org/linux-merge.git
3443 F:      Documentation/networking/batman-adv.rst
3444 F:      include/uapi/linux/batadv_packet.h
3445 F:      include/uapi/linux/batman_adv.h
3446 F:      net/batman-adv/
3447
3448 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3449 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3450 L:      linux-hams@vger.kernel.org
3451 S:      Maintained
3452 W:      http://www.baycom.org/~tom/ham/ham.html
3453 F:      drivers/net/hamradio/baycom*
3454
3455 BCACHE (BLOCK LAYER CACHE)
3456 M:      Coly Li <colyli@suse.de>
3457 M:      Kent Overstreet <kent.overstreet@gmail.com>
3458 L:      linux-bcache@vger.kernel.org
3459 S:      Maintained
3460 W:      http://bcache.evilpiepirate.org
3461 C:      irc://irc.oftc.net/bcache
3462 F:      drivers/md/bcache/
3463
3464 BDISP ST MEDIA DRIVER
3465 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3466 L:      linux-media@vger.kernel.org
3467 S:      Supported
3468 W:      https://linuxtv.org
3469 T:      git git://linuxtv.org/media_tree.git
3470 F:      drivers/media/platform/st/sti/bdisp
3471
3472 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3473 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3474 L:      netdev@vger.kernel.org
3475 S:      Maintained
3476 F:      drivers/net/ethernet/ec_bhf.c
3477
3478 BEFS FILE SYSTEM
3479 M:      Luis de Bethencourt <luisbg@kernel.org>
3480 M:      Salah Triki <salah.triki@gmail.com>
3481 S:      Maintained
3482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3483 F:      Documentation/filesystems/befs.rst
3484 F:      fs/befs/
3485
3486 BFQ I/O SCHEDULER
3487 M:      Paolo Valente <paolo.valente@linaro.org>
3488 M:      Jens Axboe <axboe@kernel.dk>
3489 L:      linux-block@vger.kernel.org
3490 S:      Maintained
3491 F:      Documentation/block/bfq-iosched.rst
3492 F:      block/bfq-*
3493
3494 BFS FILE SYSTEM
3495 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3496 S:      Maintained
3497 F:      Documentation/filesystems/bfs.rst
3498 F:      fs/bfs/
3499 F:      include/uapi/linux/bfs_fs.h
3500
3501 BITMAP API
3502 M:      Yury Norov <yury.norov@gmail.com>
3503 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3504 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3505 S:      Maintained
3506 F:      include/linux/bitmap.h
3507 F:      include/linux/cpumask.h
3508 F:      include/linux/find.h
3509 F:      include/linux/nodemask.h
3510 F:      lib/bitmap.c
3511 F:      lib/cpumask.c
3512 F:      lib/find_bit.c
3513 F:      lib/find_bit_benchmark.c
3514 F:      lib/nodemask.c
3515 F:      lib/test_bitmap.c
3516 F:      tools/include/linux/bitmap.h
3517 F:      tools/include/linux/find.h
3518 F:      tools/lib/bitmap.c
3519 F:      tools/lib/find_bit.c
3520
3521 BLINKM RGB LED DRIVER
3522 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3523 S:      Maintained
3524 F:      drivers/leds/leds-blinkm.c
3525
3526 BLOCK LAYER
3527 M:      Jens Axboe <axboe@kernel.dk>
3528 L:      linux-block@vger.kernel.org
3529 S:      Maintained
3530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3531 F:      Documentation/ABI/stable/sysfs-block
3532 F:      Documentation/block/
3533 F:      block/
3534 F:      drivers/block/
3535 F:      include/linux/bio.h
3536 F:      include/linux/blk*
3537 F:      kernel/trace/blktrace.c
3538 F:      lib/sbitmap.c
3539
3540 BLOCK2MTD DRIVER
3541 M:      Joern Engel <joern@lazybastard.org>
3542 L:      linux-mtd@lists.infradead.org
3543 S:      Maintained
3544 F:      drivers/mtd/devices/block2mtd.c
3545
3546 BLUETOOTH DRIVERS
3547 M:      Marcel Holtmann <marcel@holtmann.org>
3548 M:      Johan Hedberg <johan.hedberg@gmail.com>
3549 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3550 L:      linux-bluetooth@vger.kernel.org
3551 S:      Supported
3552 W:      http://www.bluez.org/
3553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3555 F:      drivers/bluetooth/
3556
3557 BLUETOOTH SUBSYSTEM
3558 M:      Marcel Holtmann <marcel@holtmann.org>
3559 M:      Johan Hedberg <johan.hedberg@gmail.com>
3560 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3561 L:      linux-bluetooth@vger.kernel.org
3562 S:      Supported
3563 W:      http://www.bluez.org/
3564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3566 F:      include/net/bluetooth/
3567 F:      net/bluetooth/
3568
3569 BONDING DRIVER
3570 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3571 M:      Veaceslav Falico <vfalico@gmail.com>
3572 M:      Andy Gospodarek <andy@greyhouse.net>
3573 L:      netdev@vger.kernel.org
3574 S:      Supported
3575 W:      http://sourceforge.net/projects/bonding/
3576 F:      drivers/net/bonding/
3577 F:      include/net/bonding.h
3578 F:      include/uapi/linux/if_bonding.h
3579
3580 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3581 M:      Dan Robertson <dan@dlrobertson.com>
3582 L:      linux-iio@vger.kernel.org
3583 S:      Maintained
3584 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3585 F:      drivers/iio/accel/bma400*
3586
3587 BPF (Safe dynamic programs and tools)
3588 M:      Alexei Starovoitov <ast@kernel.org>
3589 M:      Daniel Borkmann <daniel@iogearbox.net>
3590 M:      Andrii Nakryiko <andrii@kernel.org>
3591 R:      Martin KaFai Lau <kafai@fb.com>
3592 R:      Song Liu <songliubraving@fb.com>
3593 R:      Yonghong Song <yhs@fb.com>
3594 R:      John Fastabend <john.fastabend@gmail.com>
3595 R:      KP Singh <kpsingh@kernel.org>
3596 L:      netdev@vger.kernel.org
3597 L:      bpf@vger.kernel.org
3598 S:      Supported
3599 W:      https://bpf.io/
3600 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3603 F:      Documentation/bpf/
3604 F:      Documentation/networking/filter.rst
3605 F:      Documentation/userspace-api/ebpf/
3606 F:      arch/*/net/*
3607 F:      include/linux/bpf*
3608 F:      include/linux/btf*
3609 F:      include/linux/filter.h
3610 F:      include/trace/events/xdp.h
3611 F:      include/uapi/linux/bpf*
3612 F:      include/uapi/linux/btf*
3613 F:      include/uapi/linux/filter.h
3614 F:      kernel/bpf/
3615 F:      kernel/trace/bpf_trace.c
3616 F:      lib/test_bpf.c
3617 F:      net/bpf/
3618 F:      net/core/filter.c
3619 F:      net/sched/act_bpf.c
3620 F:      net/sched/cls_bpf.c
3621 F:      samples/bpf/
3622 F:      scripts/bpf_doc.py
3623 F:      scripts/pahole-flags.sh
3624 F:      scripts/pahole-version.sh
3625 F:      tools/bpf/
3626 F:      tools/lib/bpf/
3627 F:      tools/testing/selftests/bpf/
3628 N:      bpf
3629 K:      bpf
3630
3631 BPF JIT for ARM
3632 M:      Shubham Bansal <illusionist.neo@gmail.com>
3633 L:      netdev@vger.kernel.org
3634 L:      bpf@vger.kernel.org
3635 S:      Maintained
3636 F:      arch/arm/net/
3637
3638 BPF JIT for ARM64
3639 M:      Daniel Borkmann <daniel@iogearbox.net>
3640 M:      Alexei Starovoitov <ast@kernel.org>
3641 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3642 L:      netdev@vger.kernel.org
3643 L:      bpf@vger.kernel.org
3644 S:      Supported
3645 F:      arch/arm64/net/
3646
3647 BPF JIT for MIPS (32-BIT AND 64-BIT)
3648 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3649 M:      Paul Burton <paulburton@kernel.org>
3650 L:      netdev@vger.kernel.org
3651 L:      bpf@vger.kernel.org
3652 S:      Maintained
3653 F:      arch/mips/net/
3654
3655 BPF JIT for NFP NICs
3656 M:      Jakub Kicinski <kuba@kernel.org>
3657 L:      netdev@vger.kernel.org
3658 L:      bpf@vger.kernel.org
3659 S:      Supported
3660 F:      drivers/net/ethernet/netronome/nfp/bpf/
3661
3662 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3663 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3664 L:      netdev@vger.kernel.org
3665 L:      bpf@vger.kernel.org
3666 S:      Maintained
3667 F:      arch/powerpc/net/
3668
3669 BPF JIT for RISC-V (32-bit)
3670 M:      Luke Nelson <luke.r.nels@gmail.com>
3671 M:      Xi Wang <xi.wang@gmail.com>
3672 L:      netdev@vger.kernel.org
3673 L:      bpf@vger.kernel.org
3674 S:      Maintained
3675 F:      arch/riscv/net/
3676 X:      arch/riscv/net/bpf_jit_comp64.c
3677
3678 BPF JIT for RISC-V (64-bit)
3679 M:      Björn Töpel <bjorn@kernel.org>
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_comp32.c
3685
3686 BPF JIT for S390
3687 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3688 M:      Heiko Carstens <hca@linux.ibm.com>
3689 M:      Vasily Gorbik <gor@linux.ibm.com>
3690 L:      netdev@vger.kernel.org
3691 L:      bpf@vger.kernel.org
3692 S:      Maintained
3693 F:      arch/s390/net/
3694 X:      arch/s390/net/pnet.c
3695
3696 BPF JIT for SPARC (32-BIT AND 64-BIT)
3697 M:      David S. Miller <davem@davemloft.net>
3698 L:      netdev@vger.kernel.org
3699 L:      bpf@vger.kernel.org
3700 S:      Maintained
3701 F:      arch/sparc/net/
3702
3703 BPF JIT for X86 32-BIT
3704 M:      Wang YanQing <udknight@gmail.com>
3705 L:      netdev@vger.kernel.org
3706 L:      bpf@vger.kernel.org
3707 S:      Maintained
3708 F:      arch/x86/net/bpf_jit_comp32.c
3709
3710 BPF JIT for X86 64-BIT
3711 M:      Alexei Starovoitov <ast@kernel.org>
3712 M:      Daniel Borkmann <daniel@iogearbox.net>
3713 L:      netdev@vger.kernel.org
3714 L:      bpf@vger.kernel.org
3715 S:      Supported
3716 F:      arch/x86/net/
3717 X:      arch/x86/net/bpf_jit_comp32.c
3718
3719 BPF LSM (Security Audit and Enforcement using BPF)
3720 M:      KP Singh <kpsingh@kernel.org>
3721 R:      Florent Revest <revest@chromium.org>
3722 R:      Brendan Jackman <jackmanb@chromium.org>
3723 L:      bpf@vger.kernel.org
3724 S:      Maintained
3725 F:      Documentation/bpf/prog_lsm.rst
3726 F:      include/linux/bpf_lsm.h
3727 F:      kernel/bpf/bpf_lsm.c
3728 F:      security/bpf/
3729
3730 BROADCOM B44 10/100 ETHERNET DRIVER
3731 M:      Michael Chan <michael.chan@broadcom.com>
3732 L:      netdev@vger.kernel.org
3733 S:      Supported
3734 F:      drivers/net/ethernet/broadcom/b44.*
3735
3736 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3737 M:      Florian Fainelli <f.fainelli@gmail.com>
3738 L:      netdev@vger.kernel.org
3739 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3740 S:      Supported
3741 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3742 F:      drivers/net/dsa/b53/*
3743 F:      drivers/net/dsa/bcm_sf2*
3744 F:      include/linux/dsa/brcm.h
3745 F:      include/linux/platform_data/b53.h
3746
3747 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3748 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3749 L:      bcm-kernel-feedback-list@broadcom.com
3750 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3752 S:      Maintained
3753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3754 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3755 F:      drivers/pci/controller/pcie-brcmstb.c
3756 F:      drivers/staging/vc04_services
3757 N:      bcm2711
3758 N:      bcm283*
3759
3760 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3761 M:      Florian Fainelli <f.fainelli@gmail.com>
3762 M:      Ray Jui <rjui@broadcom.com>
3763 M:      Scott Branden <sbranden@broadcom.com>
3764 M:      bcm-kernel-feedback-list@broadcom.com
3765 S:      Maintained
3766 T:      git git://github.com/broadcom/mach-bcm
3767 F:      arch/arm/mach-bcm/
3768 N:      bcm281*
3769 N:      bcm113*
3770 N:      bcm216*
3771 N:      kona
3772
3773 BROADCOM BCM47XX MIPS ARCHITECTURE
3774 M:      Hauke Mehrtens <hauke@hauke-m.de>
3775 M:      Rafał Miłecki <zajec5@gmail.com>
3776 L:      linux-mips@vger.kernel.org
3777 S:      Maintained
3778 F:      Documentation/devicetree/bindings/mips/brcm/
3779 F:      arch/mips/bcm47xx/*
3780 F:      arch/mips/include/asm/mach-bcm47xx/*
3781
3782 BROADCOM BCM4908 ETHERNET DRIVER
3783 M:      Rafał Miłecki <rafal@milecki.pl>
3784 M:      bcm-kernel-feedback-list@broadcom.com
3785 L:      netdev@vger.kernel.org
3786 S:      Maintained
3787 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3788 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3789 F:      drivers/net/ethernet/broadcom/unimac.h
3790
3791 BROADCOM BCM4908 PINMUX DRIVER
3792 M:      Rafał Miłecki <rafal@milecki.pl>
3793 M:      bcm-kernel-feedback-list@broadcom.com
3794 L:      linux-gpio@vger.kernel.org
3795 S:      Maintained
3796 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3797 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3798
3799 BROADCOM BCM5301X ARM ARCHITECTURE
3800 M:      Florian Fainelli <f.fainelli@gmail.com>
3801 M:      Hauke Mehrtens <hauke@hauke-m.de>
3802 M:      Rafał Miłecki <zajec5@gmail.com>
3803 M:      bcm-kernel-feedback-list@broadcom.com
3804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3805 S:      Maintained
3806 F:      arch/arm/boot/dts/bcm470*
3807 F:      arch/arm/boot/dts/bcm5301*
3808 F:      arch/arm/boot/dts/bcm953012*
3809 F:      arch/arm/mach-bcm/bcm_5301x.c
3810
3811 BROADCOM BCM53573 ARM ARCHITECTURE
3812 M:      Florian Fainelli <f.fainelli@gmail.com>
3813 M:      Rafał Miłecki <rafal@milecki.pl>
3814 L:      bcm-kernel-feedback-list@broadcom.com
3815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3816 S:      Maintained
3817 F:      arch/arm/boot/dts/bcm47189*
3818 F:      arch/arm/boot/dts/bcm53573*
3819
3820 BROADCOM BCM63XX ARM ARCHITECTURE
3821 M:      Florian Fainelli <f.fainelli@gmail.com>
3822 M:      bcm-kernel-feedback-list@broadcom.com
3823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3824 S:      Maintained
3825 T:      git git://github.com/broadcom/stblinux.git
3826 N:      bcm63xx
3827
3828 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3829 M:      Kevin Cernekee <cernekee@gmail.com>
3830 L:      linux-usb@vger.kernel.org
3831 S:      Maintained
3832 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3833
3834 BROADCOM BCM7XXX ARM ARCHITECTURE
3835 M:      Florian Fainelli <f.fainelli@gmail.com>
3836 M:      bcm-kernel-feedback-list@broadcom.com
3837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3838 S:      Maintained
3839 T:      git git://github.com/broadcom/stblinux.git
3840 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3841 F:      arch/arm/boot/dts/bcm7*.dts*
3842 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3843 F:      arch/arm/mach-bcm/*brcmstb*
3844 F:      arch/arm/mm/cache-b15-rac.c
3845 F:      drivers/bus/brcmstb_gisb.c
3846 F:      drivers/pci/controller/pcie-brcmstb.c
3847 N:      brcmstb
3848 N:      bcm7038
3849 N:      bcm7120
3850
3851 BROADCOM BDC DRIVER
3852 M:      Al Cooper <alcooperx@gmail.com>
3853 L:      linux-usb@vger.kernel.org
3854 L:      bcm-kernel-feedback-list@broadcom.com
3855 S:      Maintained
3856 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3857 F:      drivers/usb/gadget/udc/bdc/
3858
3859 BROADCOM BMIPS CPUFREQ DRIVER
3860 M:      Markus Mayer <mmayer@broadcom.com>
3861 M:      bcm-kernel-feedback-list@broadcom.com
3862 L:      linux-pm@vger.kernel.org
3863 S:      Maintained
3864 F:      drivers/cpufreq/bmips-cpufreq.c
3865
3866 BROADCOM BMIPS MIPS ARCHITECTURE
3867 M:      Florian Fainelli <f.fainelli@gmail.com>
3868 L:      bcm-kernel-feedback-list@broadcom.com
3869 L:      linux-mips@vger.kernel.org
3870 S:      Maintained
3871 T:      git git://github.com/broadcom/stblinux.git
3872 F:      arch/mips/bmips/*
3873 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3874 F:      arch/mips/include/asm/mach-bmips/*
3875 F:      arch/mips/kernel/*bmips*
3876 F:      drivers/soc/bcm/bcm63xx
3877 F:      drivers/irqchip/irq-bcm63*
3878 F:      drivers/irqchip/irq-bcm7*
3879 F:      drivers/irqchip/irq-brcmstb*
3880 F:      include/linux/bcm963xx_nvram.h
3881 F:      include/linux/bcm963xx_tag.h
3882
3883 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3884 M:      Rasesh Mody <rmody@marvell.com>
3885 M:      GR-Linux-NIC-Dev@marvell.com
3886 L:      netdev@vger.kernel.org
3887 S:      Supported
3888 F:      drivers/net/ethernet/broadcom/bnx2.*
3889 F:      drivers/net/ethernet/broadcom/bnx2_*
3890
3891 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3892 M:      Saurav Kashyap <skashyap@marvell.com>
3893 M:      Javed Hasan <jhasan@marvell.com>
3894 M:      GR-QLogic-Storage-Upstream@marvell.com
3895 L:      linux-scsi@vger.kernel.org
3896 S:      Supported
3897 F:      drivers/scsi/bnx2fc/
3898
3899 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3900 M:      Nilesh Javali <njavali@marvell.com>
3901 M:      Manish Rangankar <mrangankar@marvell.com>
3902 M:      GR-QLogic-Storage-Upstream@marvell.com
3903 L:      linux-scsi@vger.kernel.org
3904 S:      Supported
3905 F:      drivers/scsi/bnx2i/
3906
3907 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3908 M:      Ariel Elior <aelior@marvell.com>
3909 M:      Sudarsana Kalluru <skalluru@marvell.com>
3910 M:      Manish Chopra <manishc@marvell.com>
3911 L:      netdev@vger.kernel.org
3912 S:      Supported
3913 F:      drivers/net/ethernet/broadcom/bnx2x/
3914
3915 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3916 M:      Michael Chan <michael.chan@broadcom.com>
3917 L:      netdev@vger.kernel.org
3918 S:      Supported
3919 F:      drivers/net/ethernet/broadcom/bnxt/
3920
3921 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3922 M:      Arend van Spriel <aspriel@gmail.com>
3923 M:      Franky Lin <franky.lin@broadcom.com>
3924 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3925 L:      linux-wireless@vger.kernel.org
3926 L:      brcm80211-dev-list.pdl@broadcom.com
3927 L:      SHA-cyfmac-dev-list@infineon.com
3928 S:      Supported
3929 F:      drivers/net/wireless/broadcom/brcm80211/
3930
3931 BROADCOM BRCMSTB GPIO DRIVER
3932 M:      Doug Berger <opendmb@gmail.com>
3933 M:      Florian Fainelli <f.fainelli@gmail.com>
3934 L:      bcm-kernel-feedback-list@broadcom.com
3935 S:      Supported
3936 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3937 F:      drivers/gpio/gpio-brcmstb.c
3938
3939 BROADCOM BRCMSTB I2C DRIVER
3940 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3941 L:      linux-i2c@vger.kernel.org
3942 L:      bcm-kernel-feedback-list@broadcom.com
3943 S:      Supported
3944 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3945 F:      drivers/i2c/busses/i2c-brcmstb.c
3946
3947 BROADCOM BRCMSTB UART DRIVER
3948 M:      Al Cooper <alcooperx@gmail.com>
3949 L:      linux-serial@vger.kernel.org
3950 L:      bcm-kernel-feedback-list@broadcom.com
3951 S:      Maintained
3952 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3953 F:      drivers/tty/serial/8250/8250_bcm7271.c
3954
3955 BROADCOM BRCMSTB USB EHCI DRIVER
3956 M:      Al Cooper <alcooperx@gmail.com>
3957 L:      linux-usb@vger.kernel.org
3958 L:      bcm-kernel-feedback-list@broadcom.com
3959 S:      Maintained
3960 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3961 F:      drivers/usb/host/ehci-brcm.*
3962
3963 BROADCOM BRCMSTB USB PIN MAP DRIVER
3964 M:      Al Cooper <alcooperx@gmail.com>
3965 L:      linux-usb@vger.kernel.org
3966 L:      bcm-kernel-feedback-list@broadcom.com
3967 S:      Maintained
3968 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3969 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3970
3971 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3972 M:      Al Cooper <alcooperx@gmail.com>
3973 L:      linux-kernel@vger.kernel.org
3974 L:      bcm-kernel-feedback-list@broadcom.com
3975 S:      Maintained
3976 F:      drivers/phy/broadcom/phy-brcm-usb*
3977
3978 BROADCOM ETHERNET PHY DRIVERS
3979 M:      Florian Fainelli <f.fainelli@gmail.com>
3980 L:      bcm-kernel-feedback-list@broadcom.com
3981 L:      netdev@vger.kernel.org
3982 S:      Supported
3983 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3984 F:      drivers/net/phy/bcm*.[ch]
3985 F:      drivers/net/phy/broadcom.c
3986 F:      include/linux/brcmphy.h
3987
3988 BROADCOM GENET ETHERNET DRIVER
3989 M:      Doug Berger <opendmb@gmail.com>
3990 M:      Florian Fainelli <f.fainelli@gmail.com>
3991 L:      bcm-kernel-feedback-list@broadcom.com
3992 L:      netdev@vger.kernel.org
3993 S:      Supported
3994 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
3995 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3996 F:      drivers/net/ethernet/broadcom/genet/
3997 F:      drivers/net/ethernet/broadcom/unimac.h
3998 F:      drivers/net/mdio/mdio-bcm-unimac.c
3999 F:      include/linux/platform_data/bcmgenet.h
4000 F:      include/linux/platform_data/mdio-bcm-unimac.h
4001
4002 BROADCOM IPROC ARM ARCHITECTURE
4003 M:      Ray Jui <rjui@broadcom.com>
4004 M:      Scott Branden <sbranden@broadcom.com>
4005 M:      bcm-kernel-feedback-list@broadcom.com
4006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4007 S:      Maintained
4008 T:      git git://github.com/broadcom/stblinux.git
4009 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4010 F:      arch/arm64/boot/dts/broadcom/stingray/*
4011 F:      drivers/clk/bcm/clk-ns*
4012 F:      drivers/clk/bcm/clk-sr*
4013 F:      drivers/pinctrl/bcm/pinctrl-ns*
4014 F:      include/dt-bindings/clock/bcm-sr*
4015 N:      iproc
4016 N:      cygnus
4017 N:      bcm[-_]nsp
4018 N:      bcm9113*
4019 N:      bcm9583*
4020 N:      bcm9585*
4021 N:      bcm9586*
4022 N:      bcm988312
4023 N:      bcm113*
4024 N:      bcm583*
4025 N:      bcm585*
4026 N:      bcm586*
4027 N:      bcm88312
4028 N:      hr2
4029 N:      stingray
4030
4031 BROADCOM IPROC GBIT ETHERNET DRIVER
4032 M:      Rafał Miłecki <rafal@milecki.pl>
4033 M:      bcm-kernel-feedback-list@broadcom.com
4034 L:      netdev@vger.kernel.org
4035 S:      Maintained
4036 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4037 F:      drivers/net/ethernet/broadcom/bgmac*
4038 F:      drivers/net/ethernet/broadcom/unimac.h
4039
4040 BROADCOM KONA GPIO DRIVER
4041 M:      Ray Jui <rjui@broadcom.com>
4042 L:      bcm-kernel-feedback-list@broadcom.com
4043 S:      Supported
4044 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4045 F:      drivers/gpio/gpio-bcm-kona.c
4046
4047 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4048 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4049 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4050 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4051 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4052 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4053 L:      linux-scsi@vger.kernel.org
4054 S:      Supported
4055 W:      https://www.broadcom.com/support/storage
4056 F:      drivers/scsi/mpi3mr/
4057
4058 BROADCOM NETXTREME-E ROCE DRIVER
4059 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4060 L:      linux-rdma@vger.kernel.org
4061 S:      Supported
4062 W:      http://www.broadcom.com
4063 F:      drivers/infiniband/hw/bnxt_re/
4064 F:      include/uapi/rdma/bnxt_re-abi.h
4065
4066 BROADCOM NVRAM DRIVER
4067 M:      Rafał Miłecki <zajec5@gmail.com>
4068 L:      linux-mips@vger.kernel.org
4069 S:      Maintained
4070 F:      drivers/firmware/broadcom/*
4071
4072 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4073 M:      Rafał Miłecki <rafal@milecki.pl>
4074 M:      Florian Fainelli <f.fainelli@gmail.com>
4075 M:      bcm-kernel-feedback-list@broadcom.com
4076 L:      linux-pm@vger.kernel.org
4077 S:      Maintained
4078 T:      git git://github.com/broadcom/stblinux.git
4079 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4080 F:      include/dt-bindings/soc/bcm-pmb.h
4081
4082 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4083 M:      Rafał Miłecki <zajec5@gmail.com>
4084 L:      linux-wireless@vger.kernel.org
4085 S:      Maintained
4086 F:      drivers/bcma/
4087 F:      include/linux/bcma/
4088
4089 BROADCOM SPI DRIVER
4090 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4091 M:      bcm-kernel-feedback-list@broadcom.com
4092 S:      Maintained
4093 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4094 F:      drivers/spi/spi-bcm-qspi.*
4095 F:      drivers/spi/spi-brcmstb-qspi.c
4096 F:      drivers/spi/spi-iproc-qspi.c
4097
4098 BROADCOM STB AVS CPUFREQ DRIVER
4099 M:      Markus Mayer <mmayer@broadcom.com>
4100 M:      bcm-kernel-feedback-list@broadcom.com
4101 L:      linux-pm@vger.kernel.org
4102 S:      Maintained
4103 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4104 F:      drivers/cpufreq/brcmstb*
4105
4106 BROADCOM STB AVS TMON DRIVER
4107 M:      Markus Mayer <mmayer@broadcom.com>
4108 M:      bcm-kernel-feedback-list@broadcom.com
4109 L:      linux-pm@vger.kernel.org
4110 S:      Maintained
4111 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4112 F:      drivers/thermal/broadcom/brcmstb*
4113
4114 BROADCOM STB DPFE DRIVER
4115 M:      Markus Mayer <mmayer@broadcom.com>
4116 M:      bcm-kernel-feedback-list@broadcom.com
4117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4118 S:      Maintained
4119 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4120 F:      drivers/memory/brcmstb_dpfe.c
4121
4122 BROADCOM STB NAND FLASH DRIVER
4123 M:      Brian Norris <computersforpeace@gmail.com>
4124 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4125 L:      linux-mtd@lists.infradead.org
4126 L:      bcm-kernel-feedback-list@broadcom.com
4127 S:      Maintained
4128 F:      drivers/mtd/nand/raw/brcmnand/
4129 F:      include/linux/platform_data/brcmnand.h
4130
4131 BROADCOM STB PCIE DRIVER
4132 M:      Jim Quinlan <jim2101024@gmail.com>
4133 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4134 M:      Florian Fainelli <f.fainelli@gmail.com>
4135 M:      bcm-kernel-feedback-list@broadcom.com
4136 L:      linux-pci@vger.kernel.org
4137 S:      Maintained
4138 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4139 F:      drivers/pci/controller/pcie-brcmstb.c
4140
4141 BROADCOM SYSTEMPORT ETHERNET DRIVER
4142 M:      Florian Fainelli <f.fainelli@gmail.com>
4143 L:      bcm-kernel-feedback-list@broadcom.com
4144 L:      netdev@vger.kernel.org
4145 S:      Supported
4146 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4147 F:      drivers/net/ethernet/broadcom/unimac.h
4148 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4149
4150 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4151 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4152 M:      Prashant Sreedharan <prashant@broadcom.com>
4153 M:      Michael Chan <mchan@broadcom.com>
4154 L:      netdev@vger.kernel.org
4155 S:      Supported
4156 F:      drivers/net/ethernet/broadcom/tg3.*
4157
4158 BROADCOM VK DRIVER
4159 M:      Scott Branden <scott.branden@broadcom.com>
4160 L:      bcm-kernel-feedback-list@broadcom.com
4161 S:      Supported
4162 F:      drivers/misc/bcm-vk/
4163 F:      include/uapi/linux/misc/bcm_vk.h
4164
4165 BROCADE BFA FC SCSI DRIVER
4166 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4167 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4168 L:      linux-scsi@vger.kernel.org
4169 S:      Supported
4170 F:      drivers/scsi/bfa/
4171
4172 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4173 M:      Rasesh Mody <rmody@marvell.com>
4174 M:      Sudarsana Kalluru <skalluru@marvell.com>
4175 M:      GR-Linux-NIC-Dev@marvell.com
4176 L:      netdev@vger.kernel.org
4177 S:      Supported
4178 F:      drivers/net/ethernet/brocade/bna/
4179
4180 BSG (block layer generic sg v4 driver)
4181 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4182 L:      linux-scsi@vger.kernel.org
4183 S:      Supported
4184 F:      block/bsg.c
4185 F:      include/linux/bsg.h
4186 F:      include/uapi/linux/bsg.h
4187
4188 BT87X AUDIO DRIVER
4189 M:      Clemens Ladisch <clemens@ladisch.de>
4190 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4191 S:      Maintained
4192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4193 F:      Documentation/sound/cards/bt87x.rst
4194 F:      sound/pci/bt87x.c
4195
4196 BT8XXGPIO DRIVER
4197 M:      Michael Buesch <m@bues.ch>
4198 S:      Maintained
4199 W:      http://bu3sch.de/btgpio.php
4200 F:      drivers/gpio/gpio-bt8xx.c
4201
4202 BTRFS FILE SYSTEM
4203 M:      Chris Mason <clm@fb.com>
4204 M:      Josef Bacik <josef@toxicpanda.com>
4205 M:      David Sterba <dsterba@suse.com>
4206 L:      linux-btrfs@vger.kernel.org
4207 S:      Maintained
4208 W:      http://btrfs.wiki.kernel.org/
4209 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4210 C:      irc://irc.libera.chat/btrfs
4211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4212 F:      Documentation/filesystems/btrfs.rst
4213 F:      fs/btrfs/
4214 F:      include/linux/btrfs*
4215 F:      include/uapi/linux/btrfs*
4216
4217 BTTV VIDEO4LINUX DRIVER
4218 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4219 L:      linux-media@vger.kernel.org
4220 S:      Odd fixes
4221 W:      https://linuxtv.org
4222 T:      git git://linuxtv.org/media_tree.git
4223 F:      Documentation/driver-api/media/drivers/bttv*
4224 F:      drivers/media/pci/bt8xx/bttv*
4225
4226 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4227 M:      Chanwoo Choi <cw00.choi@samsung.com>
4228 L:      linux-pm@vger.kernel.org
4229 L:      linux-samsung-soc@vger.kernel.org
4230 S:      Maintained
4231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4232 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4233 F:      drivers/devfreq/exynos-bus.c
4234
4235 BUSLOGIC SCSI DRIVER
4236 M:      Khalid Aziz <khalid@gonehiking.org>
4237 L:      linux-scsi@vger.kernel.org
4238 S:      Maintained
4239 F:      drivers/scsi/BusLogic.*
4240 F:      drivers/scsi/FlashPoint.*
4241
4242 C-MEDIA CMI8788 DRIVER
4243 M:      Clemens Ladisch <clemens@ladisch.de>
4244 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4245 S:      Maintained
4246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4247 F:      sound/pci/oxygen/
4248
4249 C-SKY ARCHITECTURE
4250 M:      Guo Ren <guoren@kernel.org>
4251 L:      linux-csky@vger.kernel.org
4252 S:      Supported
4253 T:      git https://github.com/c-sky/csky-linux.git
4254 F:      Documentation/devicetree/bindings/csky/
4255 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4256 F:      Documentation/devicetree/bindings/timer/csky,*
4257 F:      arch/csky/
4258 F:      drivers/clocksource/timer-gx6605s.c
4259 F:      drivers/clocksource/timer-mp-csky.c
4260 F:      drivers/irqchip/irq-csky-*
4261 N:      csky
4262 K:      csky
4263
4264 CA8210 IEEE-802.15.4 RADIO DRIVER
4265 L:      linux-wpan@vger.kernel.org
4266 S:      Orphan
4267 W:      https://github.com/Cascoda/ca8210-linux.git
4268 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4269 F:      drivers/net/ieee802154/ca8210.c
4270
4271 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4272 M:      Damien Le Moal <damien.lemoal@wdc.com>
4273 L:      linux-riscv@lists.infradead.org
4274 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4275 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4276 F:      drivers/pinctrl/pinctrl-k210.c
4277
4278 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4279 M:      Damien Le Moal <damien.lemoal@wdc.com>
4280 L:      linux-kernel@vger.kernel.org
4281 L:      linux-riscv@lists.infradead.org
4282 S:      Maintained
4283 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4284 F:      drivers/reset/reset-k210.c
4285
4286 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4287 M:      Damien Le Moal <damien.lemoal@wdc.com>
4288 L:      linux-riscv@lists.infradead.org
4289 S:      Maintained
4290 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4291 F:      drivers/soc/canaan/
4292 F:      include/soc/canaan/
4293
4294 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4295 M:      David Howells <dhowells@redhat.com>
4296 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4297 S:      Supported
4298 F:      Documentation/filesystems/caching/cachefiles.rst
4299 F:      fs/cachefiles/
4300
4301 CADENCE MIPI-CSI2 BRIDGES
4302 M:      Maxime Ripard <mripard@kernel.org>
4303 L:      linux-media@vger.kernel.org
4304 S:      Maintained
4305 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4306 F:      drivers/media/platform/cadence/cdns-csi2*
4307
4308 CADENCE NAND DRIVER
4309 L:      linux-mtd@lists.infradead.org
4310 S:      Orphan
4311 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4312 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4313
4314 CADENCE USB3 DRD IP DRIVER
4315 M:      Peter Chen <peter.chen@kernel.org>
4316 M:      Pawel Laszczak <pawell@cadence.com>
4317 R:      Roger Quadros <rogerq@kernel.org>
4318 R:      Aswath Govindraju <a-govindraju@ti.com>
4319 L:      linux-usb@vger.kernel.org
4320 S:      Maintained
4321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4322 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4323 F:      drivers/usb/cdns3/
4324 X:      drivers/usb/cdns3/cdnsp*
4325
4326 CADENCE USBSSP DRD IP DRIVER
4327 M:      Pawel Laszczak <pawell@cadence.com>
4328 L:      linux-usb@vger.kernel.org
4329 S:      Maintained
4330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4331 F:      drivers/usb/cdns3/
4332 X:      drivers/usb/cdns3/cdns3*
4333
4334 CADET FM/AM RADIO RECEIVER DRIVER
4335 M:      Hans Verkuil <hverkuil@xs4all.nl>
4336 L:      linux-media@vger.kernel.org
4337 S:      Maintained
4338 W:      https://linuxtv.org
4339 T:      git git://linuxtv.org/media_tree.git
4340 F:      drivers/media/radio/radio-cadet*
4341
4342 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4343 L:      linux-media@vger.kernel.org
4344 S:      Orphan
4345 T:      git git://linuxtv.org/media_tree.git
4346 F:      Documentation/admin-guide/media/cafe_ccic*
4347 F:      drivers/media/platform/marvell/
4348
4349 CAIF NETWORK LAYER
4350 L:      netdev@vger.kernel.org
4351 S:      Orphan
4352 F:      Documentation/networking/caif/
4353 F:      drivers/net/caif/
4354 F:      include/net/caif/
4355 F:      include/uapi/linux/caif/
4356 F:      net/caif/
4357
4358 CAKE QDISC
4359 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4360 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4361 S:      Maintained
4362 F:      net/sched/sch_cake.c
4363
4364 CAN NETWORK DRIVERS
4365 M:      Wolfgang Grandegger <wg@grandegger.com>
4366 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4367 L:      linux-can@vger.kernel.org
4368 S:      Maintained
4369 W:      https://github.com/linux-can
4370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4372 F:      Documentation/devicetree/bindings/net/can/
4373 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4374 F:      drivers/net/can/
4375 F:      drivers/phy/phy-can-transceiver.c
4376 F:      include/linux/can/bittiming.h
4377 F:      include/linux/can/dev.h
4378 F:      include/linux/can/led.h
4379 F:      include/linux/can/length.h
4380 F:      include/linux/can/platform/
4381 F:      include/linux/can/rx-offload.h
4382 F:      include/uapi/linux/can/error.h
4383 F:      include/uapi/linux/can/netlink.h
4384 F:      include/uapi/linux/can/vxcan.h
4385
4386 CAN NETWORK LAYER
4387 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4388 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4389 L:      linux-can@vger.kernel.org
4390 S:      Maintained
4391 W:      https://github.com/linux-can
4392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4394 F:      Documentation/networking/can.rst
4395 F:      include/linux/can/can-ml.h
4396 F:      include/linux/can/core.h
4397 F:      include/linux/can/skb.h
4398 F:      include/net/netns/can.h
4399 F:      include/uapi/linux/can.h
4400 F:      include/uapi/linux/can/bcm.h
4401 F:      include/uapi/linux/can/gw.h
4402 F:      include/uapi/linux/can/isotp.h
4403 F:      include/uapi/linux/can/raw.h
4404 F:      net/can/
4405
4406 CAN-J1939 NETWORK LAYER
4407 M:      Robin van der Gracht <robin@protonic.nl>
4408 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4409 R:      kernel@pengutronix.de
4410 L:      linux-can@vger.kernel.org
4411 S:      Maintained
4412 F:      Documentation/networking/j1939.rst
4413 F:      include/uapi/linux/can/j1939.h
4414 F:      net/can/j1939/
4415
4416 CAPABILITIES
4417 M:      Serge Hallyn <serge@hallyn.com>
4418 L:      linux-security-module@vger.kernel.org
4419 S:      Supported
4420 F:      include/linux/capability.h
4421 F:      include/uapi/linux/capability.h
4422 F:      kernel/capability.c
4423 F:      security/commoncap.c
4424
4425 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4426 M:      Kevin Tsai <ktsai@capellamicro.com>
4427 S:      Maintained
4428 F:      drivers/iio/light/cm*
4429
4430 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4431 M:      Christian Lamparter <chunkeey@googlemail.com>
4432 L:      linux-wireless@vger.kernel.org
4433 S:      Maintained
4434 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4435 F:      drivers/net/wireless/ath/carl9170/
4436
4437 CAVIUM I2C DRIVER
4438 M:      Robert Richter <rric@kernel.org>
4439 S:      Odd Fixes
4440 W:      http://www.marvell.com
4441 F:      drivers/i2c/busses/i2c-octeon*
4442 F:      drivers/i2c/busses/i2c-thunderx*
4443
4444 CAVIUM LIQUIDIO NETWORK DRIVER
4445 M:      Derek Chickles <dchickles@marvell.com>
4446 M:      Satanand Burla <sburla@marvell.com>
4447 M:      Felix Manlunas <fmanlunas@marvell.com>
4448 L:      netdev@vger.kernel.org
4449 S:      Supported
4450 W:      http://www.marvell.com
4451 F:      drivers/net/ethernet/cavium/liquidio/
4452
4453 CAVIUM MMC DRIVER
4454 M:      Robert Richter <rric@kernel.org>
4455 S:      Odd Fixes
4456 W:      http://www.marvell.com
4457 F:      drivers/mmc/host/cavium*
4458
4459 CAVIUM OCTEON-TX CRYPTO DRIVER
4460 M:      George Cherian <gcherian@marvell.com>
4461 L:      linux-crypto@vger.kernel.org
4462 S:      Supported
4463 W:      http://www.marvell.com
4464 F:      drivers/crypto/cavium/cpt/
4465
4466 CAVIUM THUNDERX2 ARM64 SOC
4467 M:      Robert Richter <rric@kernel.org>
4468 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4469 S:      Odd Fixes
4470 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4471 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4472
4473 CBS/ETF/TAPRIO QDISCS
4474 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4475 S:      Maintained
4476 L:      netdev@vger.kernel.org
4477 F:      net/sched/sch_cbs.c
4478 F:      net/sched/sch_etf.c
4479 F:      net/sched/sch_taprio.c
4480
4481 CC2520 IEEE-802.15.4 RADIO DRIVER
4482 M:      Varka Bhadram <varkabhadram@gmail.com>
4483 L:      linux-wpan@vger.kernel.org
4484 S:      Maintained
4485 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4486 F:      drivers/net/ieee802154/cc2520.c
4487 F:      include/linux/spi/cc2520.h
4488
4489 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4490 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4491 L:      linux-crypto@vger.kernel.org
4492 S:      Supported
4493 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4494 F:      drivers/crypto/ccree/
4495
4496 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4497 M:      Hadar Gat <hadar.gat@arm.com>
4498 L:      linux-crypto@vger.kernel.org
4499 S:      Supported
4500 F:      drivers/char/hw_random/cctrng.c
4501 F:      drivers/char/hw_random/cctrng.h
4502 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4503 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4504
4505 CEC FRAMEWORK
4506 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4507 L:      linux-media@vger.kernel.org
4508 S:      Supported
4509 W:      http://linuxtv.org
4510 T:      git git://linuxtv.org/media_tree.git
4511 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4512 F:      Documentation/devicetree/bindings/media/cec.txt
4513 F:      Documentation/driver-api/media/cec-core.rst
4514 F:      Documentation/userspace-api/media/cec
4515 F:      drivers/media/cec/
4516 F:      drivers/media/rc/keymaps/rc-cec.c
4517 F:      include/media/cec-notifier.h
4518 F:      include/media/cec.h
4519 F:      include/uapi/linux/cec-funcs.h
4520 F:      include/uapi/linux/cec.h
4521
4522 CEC GPIO DRIVER
4523 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4524 L:      linux-media@vger.kernel.org
4525 S:      Supported
4526 W:      http://linuxtv.org
4527 T:      git git://linuxtv.org/media_tree.git
4528 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4529 F:      drivers/media/cec/platform/cec-gpio/
4530
4531 CELL BROADBAND ENGINE ARCHITECTURE
4532 M:      Arnd Bergmann <arnd@arndb.de>
4533 L:      linuxppc-dev@lists.ozlabs.org
4534 S:      Supported
4535 W:      http://www.ibm.com/developerworks/power/cell/
4536 F:      arch/powerpc/include/asm/cell*.h
4537 F:      arch/powerpc/include/asm/spu*.h
4538 F:      arch/powerpc/include/uapi/asm/spu*.h
4539 F:      arch/powerpc/platforms/cell/
4540
4541 CELLWISE CW2015 BATTERY DRIVER
4542 M:      Tobias Schrammm <t.schramm@manjaro.org>
4543 S:      Maintained
4544 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4545 F:      drivers/power/supply/cw2015_battery.c
4546
4547 CEPH COMMON CODE (LIBCEPH)
4548 M:      Ilya Dryomov <idryomov@gmail.com>
4549 M:      Jeff Layton <jlayton@kernel.org>
4550 M:      Xiubo Li <xiubli@redhat.com>
4551 L:      ceph-devel@vger.kernel.org
4552 S:      Supported
4553 W:      http://ceph.com/
4554 T:      git git://github.com/ceph/ceph-client.git
4555 F:      include/linux/ceph/
4556 F:      include/linux/crush/
4557 F:      net/ceph/
4558
4559 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4560 M:      Jeff Layton <jlayton@kernel.org>
4561 M:      Xiubo Li <xiubli@redhat.com>
4562 M:      Ilya Dryomov <idryomov@gmail.com>
4563 L:      ceph-devel@vger.kernel.org
4564 S:      Supported
4565 W:      http://ceph.com/
4566 T:      git git://github.com/ceph/ceph-client.git
4567 F:      Documentation/filesystems/ceph.rst
4568 F:      fs/ceph/
4569
4570 CERTIFICATE HANDLING
4571 M:      David Howells <dhowells@redhat.com>
4572 M:      David Woodhouse <dwmw2@infradead.org>
4573 L:      keyrings@vger.kernel.org
4574 S:      Maintained
4575 F:      Documentation/admin-guide/module-signing.rst
4576 F:      certs/
4577 F:      scripts/sign-file.c
4578
4579 CFAG12864B LCD DRIVER
4580 M:      Miguel Ojeda <ojeda@kernel.org>
4581 S:      Maintained
4582 F:      drivers/auxdisplay/cfag12864b.c
4583 F:      include/linux/cfag12864b.h
4584
4585 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4586 M:      Miguel Ojeda <ojeda@kernel.org>
4587 S:      Maintained
4588 F:      drivers/auxdisplay/cfag12864bfb.c
4589 F:      include/linux/cfag12864b.h
4590
4591 CHAR and MISC DRIVERS
4592 M:      Arnd Bergmann <arnd@arndb.de>
4593 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4594 S:      Supported
4595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4596 F:      drivers/char/
4597 F:      drivers/misc/
4598 F:      include/linux/miscdevice.h
4599 X:      drivers/char/agp/
4600 X:      drivers/char/hw_random/
4601 X:      drivers/char/ipmi/
4602 X:      drivers/char/random.c
4603 X:      drivers/char/tpm/
4604
4605 CHECKPATCH
4606 M:      Andy Whitcroft <apw@canonical.com>
4607 M:      Joe Perches <joe@perches.com>
4608 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4609 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4610 S:      Maintained
4611 F:      scripts/checkpatch.pl
4612
4613 CHECKPATCH DOCUMENTATION
4614 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4615 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4616 R:      Joe Perches <joe@perches.com>
4617 S:      Maintained
4618 F:      Documentation/dev-tools/checkpatch.rst
4619
4620 CHINESE DOCUMENTATION
4621 M:      Alex Shi <alexs@kernel.org>
4622 S:      Maintained
4623 F:      Documentation/translations/zh_CN/
4624
4625 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4626 M:      Peter Chen <peter.chen@kernel.org>
4627 L:      linux-usb@vger.kernel.org
4628 S:      Maintained
4629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4630 F:      drivers/usb/chipidea/
4631
4632 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4633 M:      Hans de Goede <hdegoede@redhat.com>
4634 L:      linux-input@vger.kernel.org
4635 S:      Maintained
4636 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4637 F:      drivers/input/touchscreen/chipone_icn8318.c
4638
4639 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4640 M:      Hans de Goede <hdegoede@redhat.com>
4641 L:      linux-input@vger.kernel.org
4642 S:      Maintained
4643 F:      drivers/input/touchscreen/chipone_icn8505.c
4644
4645 CHROME HARDWARE PLATFORM SUPPORT
4646 M:      Benson Leung <bleung@chromium.org>
4647 L:      chrome-platform@lists.linux.dev
4648 S:      Maintained
4649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4650 F:      drivers/platform/chrome/
4651
4652 CHROMEOS EC CODEC DRIVER
4653 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4654 M:      Tzung-Bi Shih <tzungbi@google.com>
4655 R:      Guenter Roeck <groeck@chromium.org>
4656 L:      chrome-platform@lists.linux.dev
4657 S:      Maintained
4658 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4659 F:      sound/soc/codecs/cros_ec_codec.*
4660
4661 CHROMEOS EC SUBDRIVERS
4662 M:      Benson Leung <bleung@chromium.org>
4663 R:      Guenter Roeck <groeck@chromium.org>
4664 L:      chrome-platform@lists.linux.dev
4665 S:      Maintained
4666 F:      drivers/power/supply/cros_usbpd-charger.c
4667 N:      cros_ec
4668 N:      cros-ec
4669
4670 CHROMEOS EC USB TYPE-C DRIVER
4671 M:      Prashant Malani <pmalani@chromium.org>
4672 L:      chrome-platform@lists.linux.dev
4673 S:      Maintained
4674 F:      drivers/platform/chrome/cros_ec_typec.c
4675
4676 CHROMEOS EC USB PD NOTIFY DRIVER
4677 M:      Prashant Malani <pmalani@chromium.org>
4678 L:      chrome-platform@lists.linux.dev
4679 S:      Maintained
4680 F:      drivers/platform/chrome/cros_usbpd_notify.c
4681 F:      include/linux/platform_data/cros_usbpd_notify.h
4682
4683 CHRONTEL CH7322 CEC DRIVER
4684 M:      Joe Tessler <jrt@google.com>
4685 L:      linux-media@vger.kernel.org
4686 S:      Maintained
4687 T:      git git://linuxtv.org/media_tree.git
4688 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4689 F:      drivers/media/cec/i2c/ch7322.c
4690
4691 CIRRUS LOGIC AUDIO CODEC DRIVERS
4692 M:      James Schulman <james.schulman@cirrus.com>
4693 M:      David Rhodes <david.rhodes@cirrus.com>
4694 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4695 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4696 L:      patches@opensource.cirrus.com
4697 S:      Maintained
4698 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4699 F:      sound/pci/hda/cs*
4700 F:      sound/soc/codecs/cs*
4701
4702 CIRRUS LOGIC DSP FIRMWARE DRIVER
4703 M:      Simon Trimmer <simont@opensource.cirrus.com>
4704 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4705 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4706 L:      patches@opensource.cirrus.com
4707 S:      Supported
4708 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4709 T:      git https://github.com/CirrusLogic/linux-drivers.git
4710 F:      drivers/firmware/cirrus/*
4711 F:      include/linux/firmware/cirrus/*
4712
4713 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4714 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4715 L:      netdev@vger.kernel.org
4716 S:      Maintained
4717 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4718
4719 CIRRUS LOGIC LOCHNAGAR DRIVER
4720 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4721 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4722 L:      patches@opensource.cirrus.com
4723 S:      Supported
4724 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4725 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4726 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4727 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4728 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4729 F:      Documentation/hwmon/lochnagar.rst
4730 F:      drivers/clk/clk-lochnagar.c
4731 F:      drivers/hwmon/lochnagar-hwmon.c
4732 F:      drivers/mfd/lochnagar-i2c.c
4733 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4734 F:      drivers/regulator/lochnagar-regulator.c
4735 F:      include/dt-bindings/clk/lochnagar.h
4736 F:      include/dt-bindings/pinctrl/lochnagar.h
4737 F:      include/linux/mfd/lochnagar*
4738 F:      sound/soc/codecs/lochnagar-sc.c
4739
4740 CIRRUS LOGIC MADERA CODEC DRIVERS
4741 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4742 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4743 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4744 L:      patches@opensource.cirrus.com
4745 S:      Supported
4746 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4747 T:      git https://github.com/CirrusLogic/linux-drivers.git
4748 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4749 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4750 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4751 F:      drivers/gpio/gpio-madera*
4752 F:      drivers/irqchip/irq-madera*
4753 F:      drivers/mfd/cs47l*
4754 F:      drivers/mfd/madera*
4755 F:      drivers/pinctrl/cirrus/*
4756 F:      include/dt-bindings/sound/madera*
4757 F:      include/linux/irqchip/irq-madera*
4758 F:      include/linux/mfd/madera/*
4759 F:      include/sound/madera*
4760 F:      sound/soc/codecs/cs47l*
4761 F:      sound/soc/codecs/madera*
4762
4763 CISCO FCOE HBA DRIVER
4764 M:      Satish Kharat <satishkh@cisco.com>
4765 M:      Sesidhar Baddela <sebaddel@cisco.com>
4766 M:      Karan Tilak Kumar <kartilak@cisco.com>
4767 L:      linux-scsi@vger.kernel.org
4768 S:      Supported
4769 F:      drivers/scsi/fnic/
4770
4771 CISCO SCSI HBA DRIVER
4772 M:      Karan Tilak Kumar <kartilak@cisco.com>
4773 M:      Sesidhar Baddela <sebaddel@cisco.com>
4774 L:      linux-scsi@vger.kernel.org
4775 S:      Supported
4776 F:      drivers/scsi/snic/
4777
4778 CISCO VIC ETHERNET NIC DRIVER
4779 M:      Christian Benvenuti <benve@cisco.com>
4780 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4781 S:      Supported
4782 F:      drivers/net/ethernet/cisco/enic/
4783
4784 CISCO VIC LOW LATENCY NIC DRIVER
4785 M:      Christian Benvenuti <benve@cisco.com>
4786 M:      Nelson Escobar <neescoba@cisco.com>
4787 S:      Supported
4788 F:      drivers/infiniband/hw/usnic/
4789
4790 CLANG-FORMAT FILE
4791 M:      Miguel Ojeda <ojeda@kernel.org>
4792 S:      Maintained
4793 F:      .clang-format
4794
4795 CLANG/LLVM BUILD SUPPORT
4796 M:      Nathan Chancellor <nathan@kernel.org>
4797 M:      Nick Desaulniers <ndesaulniers@google.com>
4798 R:      Tom Rix <trix@redhat.com>
4799 L:      llvm@lists.linux.dev
4800 S:      Supported
4801 W:      https://clangbuiltlinux.github.io/
4802 B:      https://github.com/ClangBuiltLinux/linux/issues
4803 C:      irc://irc.libera.chat/clangbuiltlinux
4804 F:      Documentation/kbuild/llvm.rst
4805 F:      include/linux/compiler-clang.h
4806 F:      scripts/Makefile.clang
4807 F:      scripts/clang-tools/
4808 K:      \b(?i:clang|llvm)\b
4809
4810 CLANG CONTROL FLOW INTEGRITY SUPPORT
4811 M:      Sami Tolvanen <samitolvanen@google.com>
4812 M:      Kees Cook <keescook@chromium.org>
4813 R:      Nathan Chancellor <nathan@kernel.org>
4814 R:      Nick Desaulniers <ndesaulniers@google.com>
4815 L:      llvm@lists.linux.dev
4816 S:      Supported
4817 B:      https://github.com/ClangBuiltLinux/linux/issues
4818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4819 F:      include/linux/cfi.h
4820 F:      kernel/cfi.c
4821
4822 CLK API
4823 M:      Russell King <linux@armlinux.org.uk>
4824 L:      linux-clk@vger.kernel.org
4825 S:      Maintained
4826 F:      include/linux/clk.h
4827
4828 CLOCKSOURCE, CLOCKEVENT DRIVERS
4829 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4830 M:      Thomas Gleixner <tglx@linutronix.de>
4831 L:      linux-kernel@vger.kernel.org
4832 S:      Supported
4833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4834 F:      Documentation/devicetree/bindings/timer/
4835 F:      drivers/clocksource/
4836
4837 CMPC ACPI DRIVER
4838 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4839 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4840 L:      platform-driver-x86@vger.kernel.org
4841 S:      Supported
4842 F:      drivers/platform/x86/classmate-laptop.c
4843
4844 COBALT MEDIA DRIVER
4845 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4846 L:      linux-media@vger.kernel.org
4847 S:      Supported
4848 W:      https://linuxtv.org
4849 T:      git git://linuxtv.org/media_tree.git
4850 F:      drivers/media/pci/cobalt/
4851
4852 COCCINELLE/Semantic Patches (SmPL)
4853 M:      Julia Lawall <Julia.Lawall@inria.fr>
4854 M:      Nicolas Palix <nicolas.palix@imag.fr>
4855 L:      cocci@inria.fr (moderated for non-subscribers)
4856 S:      Supported
4857 W:      https://coccinelle.gitlabpages.inria.fr/website/
4858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4859 F:      Documentation/dev-tools/coccinelle.rst
4860 F:      scripts/coccicheck
4861 F:      scripts/coccinelle/
4862
4863 CODA FILE SYSTEM
4864 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4865 M:      coda@cs.cmu.edu
4866 L:      codalist@coda.cs.cmu.edu
4867 S:      Maintained
4868 W:      http://www.coda.cs.cmu.edu/
4869 F:      Documentation/filesystems/coda.rst
4870 F:      fs/coda/
4871 F:      include/linux/coda*.h
4872 F:      include/uapi/linux/coda*.h
4873
4874 CODA V4L2 MEM2MEM DRIVER
4875 M:      Philipp Zabel <p.zabel@pengutronix.de>
4876 L:      linux-media@vger.kernel.org
4877 S:      Maintained
4878 F:      Documentation/devicetree/bindings/media/coda.yaml
4879 F:      drivers/media/platform/chips-media/
4880
4881 CODE OF CONDUCT
4882 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4883 S:      Supported
4884 F:      Documentation/process/code-of-conduct-interpretation.rst
4885 F:      Documentation/process/code-of-conduct.rst
4886
4887 COMEDI DRIVERS
4888 M:      Ian Abbott <abbotti@mev.co.uk>
4889 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4890 S:      Odd Fixes
4891 F:      drivers/comedi/
4892 F:      include/linux/comedi/
4893 F:      include/uapi/linux/comedi.h
4894
4895 COMMON CLK FRAMEWORK
4896 M:      Michael Turquette <mturquette@baylibre.com>
4897 M:      Stephen Boyd <sboyd@kernel.org>
4898 L:      linux-clk@vger.kernel.org
4899 S:      Maintained
4900 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4902 F:      Documentation/devicetree/bindings/clock/
4903 F:      drivers/clk/
4904 F:      include/linux/clk-pr*
4905 F:      include/linux/clk/
4906 F:      include/linux/of_clk.h
4907 X:      drivers/clk/clkdev.c
4908
4909 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4910 M:      Steve French <sfrench@samba.org>
4911 L:      linux-cifs@vger.kernel.org
4912 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4913 S:      Supported
4914 W:      http://linux-cifs.samba.org/
4915 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4916 F:      Documentation/admin-guide/cifs/
4917 F:      fs/cifs/
4918 F:      fs/smbfs_common/
4919
4920 COMPACTPCI HOTPLUG CORE
4921 M:      Scott Murray <scott@spiteful.org>
4922 L:      linux-pci@vger.kernel.org
4923 S:      Maintained
4924 F:      drivers/pci/hotplug/cpci_hotplug*
4925
4926 COMPACTPCI HOTPLUG GENERIC DRIVER
4927 M:      Scott Murray <scott@spiteful.org>
4928 L:      linux-pci@vger.kernel.org
4929 S:      Maintained
4930 F:      drivers/pci/hotplug/cpcihp_generic.c
4931
4932 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4933 M:      Scott Murray <scott@spiteful.org>
4934 L:      linux-pci@vger.kernel.org
4935 S:      Maintained
4936 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4937
4938 COMPAL LAPTOP SUPPORT
4939 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4940 L:      platform-driver-x86@vger.kernel.org
4941 S:      Maintained
4942 F:      drivers/platform/x86/compal-laptop.c
4943
4944 COMPILER ATTRIBUTES
4945 M:      Miguel Ojeda <ojeda@kernel.org>
4946 R:      Nick Desaulniers <ndesaulniers@google.com>
4947 S:      Maintained
4948 F:      include/linux/compiler_attributes.h
4949
4950 COMPUTE EXPRESS LINK (CXL)
4951 M:      Alison Schofield <alison.schofield@intel.com>
4952 M:      Vishal Verma <vishal.l.verma@intel.com>
4953 M:      Ira Weiny <ira.weiny@intel.com>
4954 M:      Ben Widawsky <ben.widawsky@intel.com>
4955 M:      Dan Williams <dan.j.williams@intel.com>
4956 L:      linux-cxl@vger.kernel.org
4957 S:      Maintained
4958 F:      drivers/cxl/
4959 F:      include/uapi/linux/cxl_mem.h
4960
4961 CONEXANT ACCESSRUNNER USB DRIVER
4962 L:      accessrunner-general@lists.sourceforge.net
4963 S:      Orphan
4964 W:      http://accessrunner.sourceforge.net/
4965 F:      drivers/usb/atm/cxacru.c
4966
4967 CONFIGFS
4968 M:      Joel Becker <jlbec@evilplan.org>
4969 M:      Christoph Hellwig <hch@lst.de>
4970 S:      Supported
4971 T:      git git://git.infradead.org/users/hch/configfs.git
4972 F:      fs/configfs/
4973 F:      include/linux/configfs.h
4974 F:      samples/configfs/
4975
4976 CONSOLE SUBSYSTEM
4977 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4978 S:      Supported
4979 F:      drivers/video/console/
4980 F:      include/linux/console*
4981
4982 CONTEXT TRACKING
4983 M:      Frederic Weisbecker <frederic@kernel.org>
4984 S:      Maintained
4985 F:      kernel/context_tracking.c
4986 F:      include/linux/context_tracking*
4987
4988 CONTROL GROUP (CGROUP)
4989 M:      Tejun Heo <tj@kernel.org>
4990 M:      Zefan Li <lizefan.x@bytedance.com>
4991 M:      Johannes Weiner <hannes@cmpxchg.org>
4992 L:      cgroups@vger.kernel.org
4993 S:      Maintained
4994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4995 F:      Documentation/admin-guide/cgroup-v1/
4996 F:      Documentation/admin-guide/cgroup-v2.rst
4997 F:      include/linux/cgroup*
4998 F:      kernel/cgroup/
4999
5000 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5001 M:      Tejun Heo <tj@kernel.org>
5002 M:      Jens Axboe <axboe@kernel.dk>
5003 L:      cgroups@vger.kernel.org
5004 L:      linux-block@vger.kernel.org
5005 T:      git git://git.kernel.dk/linux-block
5006 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5007 F:      block/bfq-cgroup.c
5008 F:      block/blk-cgroup.c
5009 F:      block/blk-iolatency.c
5010 F:      block/blk-throttle.c
5011 F:      include/linux/blk-cgroup.h
5012
5013 CONTROL GROUP - CPUSET
5014 M:      Zefan Li <lizefan.x@bytedance.com>
5015 L:      cgroups@vger.kernel.org
5016 S:      Maintained
5017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5018 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5019 F:      include/linux/cpuset.h
5020 F:      kernel/cgroup/cpuset.c
5021
5022 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5023 M:      Johannes Weiner <hannes@cmpxchg.org>
5024 M:      Michal Hocko <mhocko@kernel.org>
5025 M:      Roman Gushchin <roman.gushchin@linux.dev>
5026 M:      Shakeel Butt <shakeelb@google.com>
5027 L:      cgroups@vger.kernel.org
5028 L:      linux-mm@kvack.org
5029 S:      Maintained
5030 F:      mm/memcontrol.c
5031 F:      mm/swap_cgroup.c
5032
5033 CORETEMP HARDWARE MONITORING DRIVER
5034 M:      Fenghua Yu <fenghua.yu@intel.com>
5035 L:      linux-hwmon@vger.kernel.org
5036 S:      Maintained
5037 F:      Documentation/hwmon/coretemp.rst
5038 F:      drivers/hwmon/coretemp.c
5039
5040 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5041 M:      Marius Zachmann <mail@mariuszachmann.de>
5042 L:      linux-hwmon@vger.kernel.org
5043 S:      Maintained
5044 F:      drivers/hwmon/corsair-cpro.c
5045
5046 CORSAIR-PSU HARDWARE MONITOR DRIVER
5047 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5048 L:      linux-hwmon@vger.kernel.org
5049 S:      Maintained
5050 F:      Documentation/hwmon/corsair-psu.rst
5051 F:      drivers/hwmon/corsair-psu.c
5052
5053 COSA/SRP SYNC SERIAL DRIVER
5054 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
5055 S:      Maintained
5056 W:      http://www.fi.muni.cz/~kas/cosa/
5057 F:      drivers/net/wan/cosa*
5058
5059 COUNTER SUBSYSTEM
5060 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5061 L:      linux-iio@vger.kernel.org
5062 S:      Maintained
5063 T:      git git@gitlab.com:vilhelmgray/counter.git
5064 F:      Documentation/ABI/testing/sysfs-bus-counter
5065 F:      Documentation/driver-api/generic-counter.rst
5066 F:      drivers/counter/
5067 F:      include/linux/counter.h
5068 F:      include/uapi/linux/counter.h
5069 F:      tools/counter/
5070
5071 CP2615 I2C DRIVER
5072 M:      Bence Csókás <bence98@sch.bme.hu>
5073 S:      Maintained
5074 F:      drivers/i2c/busses/i2c-cp2615.c
5075
5076 CPMAC ETHERNET DRIVER
5077 M:      Florian Fainelli <f.fainelli@gmail.com>
5078 L:      netdev@vger.kernel.org
5079 S:      Maintained
5080 F:      drivers/net/ethernet/ti/cpmac.c
5081
5082 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5083 M:      Viresh Kumar <viresh.kumar@linaro.org>
5084 M:      Sudeep Holla <sudeep.holla@arm.com>
5085 L:      linux-pm@vger.kernel.org
5086 S:      Maintained
5087 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5088 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5089
5090 CPU FREQUENCY SCALING FRAMEWORK
5091 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5092 M:      Viresh Kumar <viresh.kumar@linaro.org>
5093 L:      linux-pm@vger.kernel.org
5094 S:      Maintained
5095 B:      https://bugzilla.kernel.org
5096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5098 F:      Documentation/admin-guide/pm/cpufreq.rst
5099 F:      Documentation/admin-guide/pm/intel_pstate.rst
5100 F:      Documentation/cpu-freq/
5101 F:      Documentation/devicetree/bindings/cpufreq/
5102 F:      drivers/cpufreq/
5103 F:      include/linux/cpufreq.h
5104 F:      include/linux/sched/cpufreq.h
5105 F:      kernel/sched/cpufreq*.c
5106 F:      tools/testing/selftests/cpufreq/
5107
5108 CPU IDLE TIME MANAGEMENT FRAMEWORK
5109 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5110 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5111 L:      linux-pm@vger.kernel.org
5112 S:      Maintained
5113 B:      https://bugzilla.kernel.org
5114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5115 F:      Documentation/admin-guide/pm/cpuidle.rst
5116 F:      Documentation/driver-api/pm/cpuidle.rst
5117 F:      drivers/cpuidle/
5118 F:      include/linux/cpuidle.h
5119
5120 CPU POWER MONITORING SUBSYSTEM
5121 M:      Thomas Renninger <trenn@suse.com>
5122 M:      Shuah Khan <shuah@kernel.org>
5123 M:      Shuah Khan <skhan@linuxfoundation.org>
5124 L:      linux-pm@vger.kernel.org
5125 S:      Maintained
5126 F:      tools/power/cpupower/
5127
5128 CPUID/MSR DRIVER
5129 M:      "H. Peter Anvin" <hpa@zytor.com>
5130 S:      Maintained
5131 F:      arch/x86/kernel/cpuid.c
5132 F:      arch/x86/kernel/msr.c
5133
5134 CPUIDLE DRIVER - ARM BIG LITTLE
5135 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5136 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5137 L:      linux-pm@vger.kernel.org
5138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5139 S:      Maintained
5140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5141 F:      drivers/cpuidle/cpuidle-big_little.c
5142
5143 CPUIDLE DRIVER - ARM EXYNOS
5144 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5145 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5146 M:      Kukjin Kim <kgene@kernel.org>
5147 L:      linux-pm@vger.kernel.org
5148 L:      linux-samsung-soc@vger.kernel.org
5149 S:      Supported
5150 F:      arch/arm/mach-exynos/pm.c
5151 F:      drivers/cpuidle/cpuidle-exynos.c
5152 F:      include/linux/platform_data/cpuidle-exynos.h
5153
5154 CPUIDLE DRIVER - ARM PSCI
5155 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5156 M:      Sudeep Holla <sudeep.holla@arm.com>
5157 L:      linux-pm@vger.kernel.org
5158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5159 S:      Supported
5160 F:      drivers/cpuidle/cpuidle-psci.c
5161
5162 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5163 M:      Ulf Hansson <ulf.hansson@linaro.org>
5164 L:      linux-pm@vger.kernel.org
5165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5166 S:      Supported
5167 F:      drivers/cpuidle/cpuidle-psci.h
5168 F:      drivers/cpuidle/cpuidle-psci-domain.c
5169
5170 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5171 M:      Ulf Hansson <ulf.hansson@linaro.org>
5172 L:      linux-pm@vger.kernel.org
5173 S:      Supported
5174 F:      drivers/cpuidle/dt_idle_genpd.c
5175 F:      drivers/cpuidle/dt_idle_genpd.h
5176
5177 CPUIDLE DRIVER - RISC-V SBI
5178 M:      Anup Patel <anup@brainfault.org>
5179 L:      linux-pm@vger.kernel.org
5180 L:      linux-riscv@lists.infradead.org
5181 S:      Maintained
5182 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5183
5184 CRAMFS FILESYSTEM
5185 M:      Nicolas Pitre <nico@fluxnic.net>
5186 S:      Maintained
5187 F:      Documentation/filesystems/cramfs.rst
5188 F:      fs/cramfs/
5189
5190 CREATIVE SB0540
5191 M:      Bastien Nocera <hadess@hadess.net>
5192 L:      linux-input@vger.kernel.org
5193 S:      Maintained
5194 F:      drivers/hid/hid-creative-sb0540.c
5195
5196 CRYPTO API
5197 M:      Herbert Xu <herbert@gondor.apana.org.au>
5198 M:      "David S. Miller" <davem@davemloft.net>
5199 L:      linux-crypto@vger.kernel.org
5200 S:      Maintained
5201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5203 F:      Documentation/crypto/
5204 F:      Documentation/devicetree/bindings/crypto/
5205 F:      arch/*/crypto/
5206 F:      crypto/
5207 F:      drivers/crypto/
5208 F:      include/crypto/
5209 F:      include/linux/crypto*
5210 F:      lib/crypto/
5211
5212 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5213 M:      Neil Horman <nhorman@tuxdriver.com>
5214 L:      linux-crypto@vger.kernel.org
5215 S:      Maintained
5216 F:      crypto/ansi_cprng.c
5217 F:      crypto/rng.c
5218
5219 CS3308 MEDIA DRIVER
5220 M:      Hans Verkuil <hverkuil@xs4all.nl>
5221 L:      linux-media@vger.kernel.org
5222 S:      Odd Fixes
5223 W:      http://linuxtv.org
5224 T:      git git://linuxtv.org/media_tree.git
5225 F:      drivers/media/i2c/cs3308.c
5226
5227 CS5535 Audio ALSA driver
5228 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5229 S:      Maintained
5230 F:      sound/pci/cs5535audio/
5231
5232 CSI DRIVERS FOR ALLWINNER V3s
5233 M:      Yong Deng <yong.deng@magewell.com>
5234 L:      linux-media@vger.kernel.org
5235 S:      Maintained
5236 T:      git git://linuxtv.org/media_tree.git
5237 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5238 F:      drivers/media/platform/sunxi/sun6i-csi/
5239
5240 CW1200 WLAN driver
5241 M:      Solomon Peachy <pizza@shaftnet.org>
5242 S:      Maintained
5243 F:      drivers/net/wireless/st/cw1200/
5244
5245 CX18 VIDEO4LINUX DRIVER
5246 M:      Andy Walls <awalls@md.metrocast.net>
5247 L:      linux-media@vger.kernel.org
5248 S:      Maintained
5249 W:      https://linuxtv.org
5250 T:      git git://linuxtv.org/media_tree.git
5251 F:      drivers/media/pci/cx18/
5252 F:      include/uapi/linux/ivtv*
5253
5254 CX2341X MPEG ENCODER HELPER MODULE
5255 M:      Hans Verkuil <hverkuil@xs4all.nl>
5256 L:      linux-media@vger.kernel.org
5257 S:      Maintained
5258 W:      https://linuxtv.org
5259 T:      git git://linuxtv.org/media_tree.git
5260 F:      drivers/media/common/cx2341x*
5261 F:      include/media/drv-intf/cx2341x.h
5262
5263 CX24120 MEDIA DRIVER
5264 M:      Jemma Denson <jdenson@gmail.com>
5265 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5266 L:      linux-media@vger.kernel.org
5267 S:      Maintained
5268 W:      https://linuxtv.org
5269 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5270 F:      drivers/media/dvb-frontends/cx24120*
5271
5272 CX88 VIDEO4LINUX DRIVER
5273 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5274 L:      linux-media@vger.kernel.org
5275 S:      Odd fixes
5276 W:      https://linuxtv.org
5277 T:      git git://linuxtv.org/media_tree.git
5278 F:      Documentation/driver-api/media/drivers/cx88*
5279 F:      drivers/media/pci/cx88/
5280
5281 CXD2820R MEDIA DRIVER
5282 M:      Antti Palosaari <crope@iki.fi>
5283 L:      linux-media@vger.kernel.org
5284 S:      Maintained
5285 W:      https://linuxtv.org
5286 W:      http://palosaari.fi/linux/
5287 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5288 T:      git git://linuxtv.org/anttip/media_tree.git
5289 F:      drivers/media/dvb-frontends/cxd2820r*
5290
5291 CXGB3 ETHERNET DRIVER (CXGB3)
5292 M:      Raju Rangoju <rajur@chelsio.com>
5293 L:      netdev@vger.kernel.org
5294 S:      Supported
5295 W:      http://www.chelsio.com
5296 F:      drivers/net/ethernet/chelsio/cxgb3/
5297
5298 CXGB3 ISCSI DRIVER (CXGB3I)
5299 M:      Karen Xie <kxie@chelsio.com>
5300 L:      linux-scsi@vger.kernel.org
5301 S:      Supported
5302 W:      http://www.chelsio.com
5303 F:      drivers/scsi/cxgbi/cxgb3i
5304
5305 CXGB4 CRYPTO DRIVER (chcr)
5306 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5307 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5308 M:      Rohit Maheshwari <rohitm@chelsio.com>
5309 L:      linux-crypto@vger.kernel.org
5310 S:      Supported
5311 W:      http://www.chelsio.com
5312 F:      drivers/crypto/chelsio
5313
5314 CXGB4 INLINE CRYPTO DRIVER
5315 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5316 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5317 M:      Rohit Maheshwari <rohitm@chelsio.com>
5318 L:      netdev@vger.kernel.org
5319 S:      Supported
5320 W:      http://www.chelsio.com
5321 F:      drivers/net/ethernet/chelsio/inline_crypto/
5322
5323 CXGB4 ETHERNET DRIVER (CXGB4)
5324 M:      Raju Rangoju <rajur@chelsio.com>
5325 L:      netdev@vger.kernel.org
5326 S:      Supported
5327 W:      http://www.chelsio.com
5328 F:      drivers/net/ethernet/chelsio/cxgb4/
5329
5330 CXGB4 ISCSI DRIVER (CXGB4I)
5331 M:      Karen Xie <kxie@chelsio.com>
5332 L:      linux-scsi@vger.kernel.org
5333 S:      Supported
5334 W:      http://www.chelsio.com
5335 F:      drivers/scsi/cxgbi/cxgb4i
5336
5337 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5338 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5339 L:      linux-rdma@vger.kernel.org
5340 S:      Supported
5341 W:      http://www.openfabrics.org
5342 F:      drivers/infiniband/hw/cxgb4/
5343 F:      include/uapi/rdma/cxgb4-abi.h
5344
5345 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5346 M:      Raju Rangoju <rajur@chelsio.com>
5347 L:      netdev@vger.kernel.org
5348 S:      Supported
5349 W:      http://www.chelsio.com
5350 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5351
5352 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5353 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5354 M:      Andrew Donnellan <ajd@linux.ibm.com>
5355 L:      linuxppc-dev@lists.ozlabs.org
5356 S:      Supported
5357 F:      Documentation/ABI/testing/sysfs-class-cxl
5358 F:      Documentation/powerpc/cxl.rst
5359 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5360 F:      drivers/misc/cxl/
5361 F:      include/misc/cxl*
5362 F:      include/uapi/misc/cxl.h
5363
5364 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5365 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5366 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5367 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5368 L:      linux-scsi@vger.kernel.org
5369 S:      Supported
5370 F:      Documentation/powerpc/cxlflash.rst
5371 F:      drivers/scsi/cxlflash/
5372 F:      include/uapi/scsi/cxlflash_ioctl.h
5373
5374 CYBERPRO FB DRIVER
5375 M:      Russell King <linux@armlinux.org.uk>
5376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5377 S:      Maintained
5378 W:      http://www.armlinux.org.uk/
5379 F:      drivers/video/fbdev/cyber2000fb.*
5380
5381 CYCLADES PC300 DRIVER
5382 S:      Orphan
5383 F:      drivers/net/wan/pc300*
5384
5385 CYPRESS_FIRMWARE MEDIA DRIVER
5386 M:      Antti Palosaari <crope@iki.fi>
5387 L:      linux-media@vger.kernel.org
5388 S:      Maintained
5389 W:      https://linuxtv.org
5390 W:      http://palosaari.fi/linux/
5391 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5392 T:      git git://linuxtv.org/anttip/media_tree.git
5393 F:      drivers/media/common/cypress_firmware*
5394
5395 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5396 M:      Linus Walleij <linus.walleij@linaro.org>
5397 L:      linux-input@vger.kernel.org
5398 S:      Maintained
5399 F:      drivers/input/touchscreen/cy8ctma140.c
5400
5401 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5402 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5403 L:      linux-input@vger.kernel.org
5404 S:      Maintained
5405 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5406 F:      drivers/input/keyboard/cypress-sf.c
5407
5408 CYTTSP TOUCHSCREEN DRIVER
5409 M:      Linus Walleij <linus.walleij@linaro.org>
5410 L:      linux-input@vger.kernel.org
5411 S:      Maintained
5412 F:      drivers/input/touchscreen/cyttsp*
5413
5414 D-LINK DIR-685 TOUCHKEYS DRIVER
5415 M:      Linus Walleij <linus.walleij@linaro.org>
5416 L:      linux-input@vger.kernel.org
5417 S:      Supported
5418 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5419
5420 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5421 M:      Joshua Kinard <kumba@gentoo.org>
5422 S:      Maintained
5423 F:      drivers/rtc/rtc-ds1685.c
5424 F:      include/linux/rtc/ds1685.h
5425
5426 DAMA SLAVE for AX.25
5427 M:      Joerg Reuter <jreuter@yaina.de>
5428 L:      linux-hams@vger.kernel.org
5429 S:      Maintained
5430 W:      http://yaina.de/jreuter/
5431 W:      http://www.qsl.net/dl1bke/
5432 F:      net/ax25/af_ax25.c
5433 F:      net/ax25/ax25_dev.c
5434 F:      net/ax25/ax25_ds_*
5435 F:      net/ax25/ax25_in.c
5436 F:      net/ax25/ax25_out.c
5437 F:      net/ax25/ax25_timer.c
5438 F:      net/ax25/sysctl_net_ax25.c
5439
5440 DATA ACCESS MONITOR
5441 M:      SeongJae Park <sj@kernel.org>
5442 L:      linux-mm@kvack.org
5443 S:      Maintained
5444 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5445 F:      Documentation/admin-guide/mm/damon/
5446 F:      Documentation/vm/damon/
5447 F:      include/linux/damon.h
5448 F:      include/trace/events/damon.h
5449 F:      mm/damon/
5450 F:      tools/testing/selftests/damon/
5451
5452 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5453 L:      netdev@vger.kernel.org
5454 S:      Orphan
5455 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5456 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5457
5458 DC390/AM53C974 SCSI driver
5459 M:      Hannes Reinecke <hare@suse.com>
5460 L:      linux-scsi@vger.kernel.org
5461 S:      Maintained
5462 F:      drivers/scsi/am53c974.c
5463
5464 DC395x SCSI driver
5465 M:      Oliver Neukum <oliver@neukum.org>
5466 M:      Ali Akcaagac <aliakc@web.de>
5467 M:      Jamie Lenehan <lenehan@twibble.org>
5468 L:      dc395x@twibble.org
5469 S:      Maintained
5470 W:      http://twibble.org/dist/dc395x/
5471 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5472 F:      Documentation/scsi/dc395x.rst
5473 F:      drivers/scsi/dc395x.*
5474
5475 DCCP PROTOCOL
5476 L:      dccp@vger.kernel.org
5477 S:      Orphan
5478 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5479 F:      include/linux/dccp.h
5480 F:      include/linux/tfrc.h
5481 F:      include/uapi/linux/dccp.h
5482 F:      net/dccp/
5483
5484 DECnet NETWORK LAYER
5485 L:      linux-decnet-user@lists.sourceforge.net
5486 S:      Orphan
5487 W:      http://linux-decnet.sourceforge.net
5488 F:      Documentation/networking/decnet.rst
5489 F:      net/decnet/
5490
5491 DECSTATION PLATFORM SUPPORT
5492 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5493 L:      linux-mips@vger.kernel.org
5494 S:      Maintained
5495 W:      http://www.linux-mips.org/wiki/DECstation
5496 F:      arch/mips/dec/
5497 F:      arch/mips/include/asm/dec/
5498 F:      arch/mips/include/asm/mach-dec/
5499
5500 DEFXX FDDI NETWORK DRIVER
5501 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5502 S:      Maintained
5503 F:      drivers/net/fddi/defxx.*
5504
5505 DEFZA FDDI NETWORK DRIVER
5506 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5507 S:      Maintained
5508 F:      drivers/net/fddi/defza.*
5509
5510 DEINTERLACE DRIVERS FOR ALLWINNER H3
5511 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5512 L:      linux-media@vger.kernel.org
5513 S:      Maintained
5514 T:      git git://linuxtv.org/media_tree.git
5515 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5516 F:      drivers/media/platform/sunxi/sun8i-di/
5517
5518 DELL LAPTOP DRIVER
5519 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5520 M:      Pali Rohár <pali@kernel.org>
5521 L:      platform-driver-x86@vger.kernel.org
5522 S:      Maintained
5523 F:      drivers/platform/x86/dell/dell-laptop.c
5524
5525 DELL LAPTOP FREEFALL DRIVER
5526 M:      Pali Rohár <pali@kernel.org>
5527 S:      Maintained
5528 F:      drivers/platform/x86/dell/dell-smo8800.c
5529
5530 DELL LAPTOP RBTN DRIVER
5531 M:      Pali Rohár <pali@kernel.org>
5532 S:      Maintained
5533 F:      drivers/platform/x86/dell/dell-rbtn.*
5534
5535 DELL LAPTOP SMM DRIVER
5536 M:      Pali Rohár <pali@kernel.org>
5537 S:      Maintained
5538 F:      Documentation/ABI/obsolete/procfs-i8k
5539 F:      drivers/hwmon/dell-smm-hwmon.c
5540 F:      include/uapi/linux/i8k.h
5541
5542 DELL REMOTE BIOS UPDATE DRIVER
5543 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5544 L:      platform-driver-x86@vger.kernel.org
5545 S:      Maintained
5546 F:      drivers/platform/x86/dell/dell_rbu.c
5547
5548 DELL SMBIOS DRIVER
5549 M:      Pali Rohár <pali@kernel.org>
5550 L:      Dell.Client.Kernel@dell.com
5551 L:      platform-driver-x86@vger.kernel.org
5552 S:      Maintained
5553 F:      drivers/platform/x86/dell/dell-smbios.*
5554
5555 DELL SMBIOS SMM DRIVER
5556 L:      Dell.Client.Kernel@dell.com
5557 L:      platform-driver-x86@vger.kernel.org
5558 S:      Maintained
5559 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5560
5561 DELL SMBIOS WMI DRIVER
5562 L:      Dell.Client.Kernel@dell.com
5563 L:      platform-driver-x86@vger.kernel.org
5564 S:      Maintained
5565 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5566 F:      tools/wmi/dell-smbios-example.c
5567
5568 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5569 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5570 L:      platform-driver-x86@vger.kernel.org
5571 S:      Maintained
5572 F:      Documentation/driver-api/dcdbas.rst
5573 F:      drivers/platform/x86/dell/dcdbas.*
5574
5575 DELL WMI DESCRIPTOR DRIVER
5576 L:      Dell.Client.Kernel@dell.com
5577 S:      Maintained
5578 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5579
5580 DELL WMI SYSMAN DRIVER
5581 M:      Divya Bharathi <divya.bharathi@dell.com>
5582 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5583 L:      Dell.Client.Kernel@dell.com
5584 L:      platform-driver-x86@vger.kernel.org
5585 S:      Maintained
5586 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5587 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5588
5589 DELL WMI NOTIFICATIONS DRIVER
5590 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5591 M:      Pali Rohár <pali@kernel.org>
5592 S:      Maintained
5593 F:      drivers/platform/x86/dell/dell-wmi-base.c
5594
5595 DELL WMI HARDWARE PRIVACY SUPPORT
5596 M:      Perry Yuan <Perry.Yuan@dell.com>
5597 L:      Dell.Client.Kernel@dell.com
5598 L:      platform-driver-x86@vger.kernel.org
5599 S:      Maintained
5600 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5601
5602 DELTA ST MEDIA DRIVER
5603 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5604 L:      linux-media@vger.kernel.org
5605 S:      Supported
5606 W:      https://linuxtv.org
5607 T:      git git://linuxtv.org/media_tree.git
5608 F:      drivers/media/platform/st/sti/delta
5609
5610 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5611 M:      Zev Weiss <zev@bewilderbeest.net>
5612 L:      linux-hwmon@vger.kernel.org
5613 S:      Maintained
5614 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5615
5616 DELTA DPS920AB PSU DRIVER
5617 M:      Robert Marko <robert.marko@sartura.hr>
5618 L:      linux-hwmon@vger.kernel.org
5619 S:      Maintained
5620 F:      Documentation/hwmon/dps920ab.rst
5621 F:      drivers/hwmon/pmbus/dps920ab.c
5622
5623 DELTA NETWORKS TN48M CPLD DRIVERS
5624 M:      Robert Marko <robert.marko@sartura.hr>
5625 S:      Maintained
5626 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5627 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5628 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5629 F:      drivers/gpio/gpio-tn48m.c
5630 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5631
5632 DENALI NAND DRIVER
5633 L:      linux-mtd@lists.infradead.org
5634 S:      Orphan
5635 F:      drivers/mtd/nand/raw/denali*
5636
5637 DESIGNWARE EDMA CORE IP DRIVER
5638 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5639 L:      dmaengine@vger.kernel.org
5640 S:      Maintained
5641 F:      drivers/dma/dw-edma/
5642 F:      include/linux/dma/edma.h
5643
5644 DESIGNWARE XDATA IP DRIVER
5645 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5646 L:      linux-pci@vger.kernel.org
5647 S:      Maintained
5648 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5649 F:      drivers/misc/dw-xdata-pcie.c
5650
5651 DESIGNWARE USB2 DRD IP DRIVER
5652 M:      Minas Harutyunyan <hminas@synopsys.com>
5653 L:      linux-usb@vger.kernel.org
5654 S:      Maintained
5655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5656 F:      drivers/usb/dwc2/
5657
5658 DESIGNWARE USB3 DRD IP DRIVER
5659 M:      Felipe Balbi <balbi@kernel.org>
5660 L:      linux-usb@vger.kernel.org
5661 S:      Maintained
5662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5663 F:      drivers/usb/dwc3/
5664
5665 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5666 M:      Andreas Klinger <ak@it-klinger.de>
5667 L:      linux-iio@vger.kernel.org
5668 S:      Maintained
5669 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5670 F:      drivers/iio/proximity/srf*.c
5671
5672 DEVICE COREDUMP (DEV_COREDUMP)
5673 M:      Johannes Berg <johannes@sipsolutions.net>
5674 L:      linux-kernel@vger.kernel.org
5675 S:      Maintained
5676 F:      drivers/base/devcoredump.c
5677 F:      include/linux/devcoredump.h
5678
5679 DEVICE DEPENDENCY HELPER SCRIPT
5680 M:      Saravana Kannan <saravanak@google.com>
5681 L:      linux-kernel@vger.kernel.org
5682 S:      Maintained
5683 F:      scripts/dev-needs.sh
5684
5685 DEVICE DIRECT ACCESS (DAX)
5686 M:      Dan Williams <dan.j.williams@intel.com>
5687 M:      Vishal Verma <vishal.l.verma@intel.com>
5688 M:      Dave Jiang <dave.jiang@intel.com>
5689 L:      nvdimm@lists.linux.dev
5690 S:      Supported
5691 F:      drivers/dax/
5692
5693 DEVICE FREQUENCY (DEVFREQ)
5694 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5695 M:      Kyungmin Park <kyungmin.park@samsung.com>
5696 M:      Chanwoo Choi <cw00.choi@samsung.com>
5697 L:      linux-pm@vger.kernel.org
5698 S:      Maintained
5699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5700 F:      Documentation/devicetree/bindings/devfreq/
5701 F:      drivers/devfreq/
5702 F:      include/linux/devfreq.h
5703 F:      include/trace/events/devfreq.h
5704
5705 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5706 M:      Chanwoo Choi <cw00.choi@samsung.com>
5707 L:      linux-pm@vger.kernel.org
5708 S:      Supported
5709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5710 F:      Documentation/devicetree/bindings/devfreq/event/
5711 F:      drivers/devfreq/devfreq-event.c
5712 F:      drivers/devfreq/event/
5713 F:      include/dt-bindings/pmu/exynos_ppmu.h
5714 F:      include/linux/devfreq-event.h
5715
5716 DEVICE NUMBER REGISTRY
5717 M:      Torben Mathiasen <device@lanana.org>
5718 S:      Maintained
5719 W:      http://lanana.org/docs/device-list/index.html
5720
5721 DEVICE RESOURCE MANAGEMENT HELPERS
5722 M:      Hans de Goede <hdegoede@redhat.com>
5723 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5724 S:      Maintained
5725 F:      include/linux/devm-helpers.h
5726
5727 DEVICE-MAPPER  (LVM)
5728 M:      Alasdair Kergon <agk@redhat.com>
5729 M:      Mike Snitzer <snitzer@kernel.org>
5730 M:      dm-devel@redhat.com
5731 L:      dm-devel@redhat.com
5732 S:      Maintained
5733 W:      http://sources.redhat.com/dm
5734 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5736 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5737 F:      Documentation/admin-guide/device-mapper/
5738 F:      drivers/md/Kconfig
5739 F:      drivers/md/Makefile
5740 F:      drivers/md/dm*
5741 F:      drivers/md/persistent-data/
5742 F:      include/linux/device-mapper.h
5743 F:      include/linux/dm-*.h
5744 F:      include/uapi/linux/dm-*.h
5745
5746 DEVLINK
5747 M:      Jiri Pirko <jiri@nvidia.com>
5748 L:      netdev@vger.kernel.org
5749 S:      Supported
5750 F:      Documentation/networking/devlink
5751 F:      include/net/devlink.h
5752 F:      include/uapi/linux/devlink.h
5753 F:      net/core/devlink.c
5754
5755 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5756 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5757 L:      kernel@dh-electronics.com
5758 S:      Maintained
5759 F:      arch/arm/boot/dts/imx6*-dhcom-*
5760
5761 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5762 M:      Marek Vasut <marex@denx.de>
5763 L:      kernel@dh-electronics.com
5764 S:      Maintained
5765 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5766 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5767
5768 DIALOG SEMICONDUCTOR DRIVERS
5769 M:      Support Opensource <support.opensource@diasemi.com>
5770 S:      Supported
5771 W:      http://www.dialog-semiconductor.com/products
5772 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5773 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5774 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5775 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5776 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5777 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5778 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5779 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5780 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5781 F:      Documentation/hwmon/da90??.rst
5782 F:      drivers/gpio/gpio-da90??.c
5783 F:      drivers/hwmon/da90??-hwmon.c
5784 F:      drivers/iio/adc/da91??-*.c
5785 F:      drivers/input/misc/da72??.[ch]
5786 F:      drivers/input/misc/da90??_onkey.c
5787 F:      drivers/input/touchscreen/da9052_tsi.c
5788 F:      drivers/leds/leds-da90??.c
5789 F:      drivers/mfd/da903x.c
5790 F:      drivers/mfd/da90??-*.c
5791 F:      drivers/mfd/da91??-*.c
5792 F:      drivers/pinctrl/pinctrl-da90??.c
5793 F:      drivers/power/supply/da9052-battery.c
5794 F:      drivers/power/supply/da91??-*.c
5795 F:      drivers/regulator/da9???-regulator.[ch]
5796 F:      drivers/regulator/slg51000-regulator.[ch]
5797 F:      drivers/rtc/rtc-da90??.c
5798 F:      drivers/thermal/da90??-thermal.c
5799 F:      drivers/video/backlight/da90??_bl.c
5800 F:      drivers/watchdog/da90??_wdt.c
5801 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5802 F:      include/linux/mfd/da903x.h
5803 F:      include/linux/mfd/da9052/
5804 F:      include/linux/mfd/da9055/
5805 F:      include/linux/mfd/da9062/
5806 F:      include/linux/mfd/da9063/
5807 F:      include/linux/mfd/da9150/
5808 F:      include/linux/regulator/da9211.h
5809 F:      include/sound/da[79]*.h
5810 F:      sound/soc/codecs/da[79]*.[ch]
5811
5812 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5813 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5814 L:      linux-gpio@vger.kernel.org
5815 S:      Maintained
5816 F:      drivers/gpio/gpio-gpio-mm.c
5817
5818 DIOLAN U2C-12 I2C DRIVER
5819 M:      Guenter Roeck <linux@roeck-us.net>
5820 L:      linux-i2c@vger.kernel.org
5821 S:      Maintained
5822 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5823
5824 DIRECTORY NOTIFICATION (DNOTIFY)
5825 M:      Jan Kara <jack@suse.cz>
5826 R:      Amir Goldstein <amir73il@gmail.com>
5827 L:      linux-fsdevel@vger.kernel.org
5828 S:      Maintained
5829 F:      Documentation/filesystems/dnotify.rst
5830 F:      fs/notify/dnotify/
5831 F:      include/linux/dnotify.h
5832
5833 DISK GEOMETRY AND PARTITION HANDLING
5834 M:      Andries Brouwer <aeb@cwi.nl>
5835 S:      Maintained
5836 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5837 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5838 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5839
5840 DISKQUOTA
5841 M:      Jan Kara <jack@suse.com>
5842 S:      Maintained
5843 F:      Documentation/filesystems/quota.rst
5844 F:      fs/quota/
5845 F:      include/linux/quota*.h
5846 F:      include/uapi/linux/quota*.h
5847
5848 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5849 M:      Bernie Thompson <bernie@plugable.com>
5850 L:      linux-fbdev@vger.kernel.org
5851 S:      Maintained
5852 W:      http://plugable.com/category/projects/udlfb/
5853 F:      Documentation/fb/udlfb.rst
5854 F:      drivers/video/fbdev/udlfb.c
5855 F:      include/video/udlfb.h
5856
5857 DISTRIBUTED LOCK MANAGER (DLM)
5858 M:      Christine Caulfield <ccaulfie@redhat.com>
5859 M:      David Teigland <teigland@redhat.com>
5860 L:      cluster-devel@redhat.com
5861 S:      Supported
5862 W:      http://sources.redhat.com/cluster/
5863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5864 F:      fs/dlm/
5865
5866 DMA BUFFER SHARING FRAMEWORK
5867 M:      Sumit Semwal <sumit.semwal@linaro.org>
5868 M:      Christian König <christian.koenig@amd.com>
5869 L:      linux-media@vger.kernel.org
5870 L:      dri-devel@lists.freedesktop.org
5871 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5872 S:      Maintained
5873 T:      git git://anongit.freedesktop.org/drm/drm-misc
5874 F:      Documentation/driver-api/dma-buf.rst
5875 F:      drivers/dma-buf/
5876 F:      include/linux/*fence.h
5877 F:      include/linux/dma-buf.h
5878 F:      include/linux/dma-resv.h
5879 K:      \bdma_(?:buf|fence|resv)\b
5880
5881 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5882 M:      Vinod Koul <vkoul@kernel.org>
5883 L:      dmaengine@vger.kernel.org
5884 S:      Maintained
5885 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5887 F:      Documentation/devicetree/bindings/dma/
5888 F:      Documentation/driver-api/dmaengine/
5889 F:      drivers/dma/
5890 F:      include/linux/dma/
5891 F:      include/linux/dmaengine.h
5892 F:      include/linux/of_dma.h
5893
5894 DMA MAPPING HELPERS
5895 M:      Christoph Hellwig <hch@lst.de>
5896 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5897 R:      Robin Murphy <robin.murphy@arm.com>
5898 L:      iommu@lists.linux-foundation.org
5899 S:      Supported
5900 W:      http://git.infradead.org/users/hch/dma-mapping.git
5901 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5902 F:      include/asm-generic/dma-mapping.h
5903 F:      include/linux/dma-direct.h
5904 F:      include/linux/dma-mapping.h
5905 F:      include/linux/dma-map-ops.h
5906 F:      kernel/dma/
5907
5908 DMA MAPPING BENCHMARK
5909 M:      Xiang Chen <chenxiang66@hisilicon.com>
5910 L:      iommu@lists.linux-foundation.org
5911 F:      kernel/dma/map_benchmark.c
5912 F:      tools/testing/selftests/dma/
5913
5914 DMA-BUF HEAPS FRAMEWORK
5915 M:      Sumit Semwal <sumit.semwal@linaro.org>
5916 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
5917 R:      Liam Mark <lmark@codeaurora.org>
5918 R:      Laura Abbott <labbott@redhat.com>
5919 R:      Brian Starkey <Brian.Starkey@arm.com>
5920 R:      John Stultz <john.stultz@linaro.org>
5921 L:      linux-media@vger.kernel.org
5922 L:      dri-devel@lists.freedesktop.org
5923 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5924 S:      Maintained
5925 T:      git git://anongit.freedesktop.org/drm/drm-misc
5926 F:      drivers/dma-buf/dma-heap.c
5927 F:      drivers/dma-buf/heaps/*
5928 F:      include/linux/dma-heap.h
5929 F:      include/uapi/linux/dma-heap.h
5930
5931 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5932 M:      Lukasz Luba <lukasz.luba@arm.com>
5933 L:      linux-pm@vger.kernel.org
5934 L:      linux-samsung-soc@vger.kernel.org
5935 S:      Maintained
5936 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5937 F:      drivers/memory/samsung/exynos5422-dmc.c
5938
5939 DME1737 HARDWARE MONITOR DRIVER
5940 M:      Juerg Haefliger <juergh@gmail.com>
5941 L:      linux-hwmon@vger.kernel.org
5942 S:      Maintained
5943 F:      Documentation/hwmon/dme1737.rst
5944 F:      drivers/hwmon/dme1737.c
5945
5946 DMI/SMBIOS SUPPORT
5947 M:      Jean Delvare <jdelvare@suse.com>
5948 S:      Maintained
5949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5950 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5951 F:      drivers/firmware/dmi-id.c
5952 F:      drivers/firmware/dmi_scan.c
5953 F:      include/linux/dmi.h
5954
5955 DOCUMENTATION
5956 M:      Jonathan Corbet <corbet@lwn.net>
5957 L:      linux-doc@vger.kernel.org
5958 S:      Maintained
5959 P:      Documentation/doc-guide/maintainer-profile.rst
5960 T:      git git://git.lwn.net/linux.git docs-next
5961 F:      Documentation/
5962 F:      scripts/documentation-file-ref-check
5963 F:      scripts/kernel-doc
5964 F:      scripts/sphinx-pre-install
5965 X:      Documentation/ABI/
5966 X:      Documentation/admin-guide/media/
5967 X:      Documentation/devicetree/
5968 X:      Documentation/driver-api/media/
5969 X:      Documentation/firmware-guide/acpi/
5970 X:      Documentation/i2c/
5971 X:      Documentation/power/
5972 X:      Documentation/spi/
5973 X:      Documentation/userspace-api/media/
5974
5975 DOCUMENTATION REPORTING ISSUES
5976 M:      Thorsten Leemhuis <linux@leemhuis.info>
5977 L:      linux-doc@vger.kernel.org
5978 S:      Maintained
5979 F:      Documentation/admin-guide/reporting-issues.rst
5980
5981 DOCUMENTATION SCRIPTS
5982 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5983 L:      linux-doc@vger.kernel.org
5984 S:      Maintained
5985 F:      Documentation/sphinx/parse-headers.pl
5986 F:      scripts/documentation-file-ref-check
5987 F:      scripts/sphinx-pre-install
5988
5989 DOCUMENTATION/ITALIAN
5990 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5991 L:      linux-doc@vger.kernel.org
5992 S:      Maintained
5993 F:      Documentation/translations/it_IT
5994
5995 DONGWOON DW9714 LENS VOICE COIL DRIVER
5996 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5997 L:      linux-media@vger.kernel.org
5998 S:      Maintained
5999 T:      git git://linuxtv.org/media_tree.git
6000 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6001 F:      drivers/media/i2c/dw9714.c
6002
6003 DONGWOON DW9768 LENS VOICE COIL DRIVER
6004 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6005 L:      linux-media@vger.kernel.org
6006 S:      Maintained
6007 T:      git git://linuxtv.org/media_tree.git
6008 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6009 F:      drivers/media/i2c/dw9768.c
6010
6011 DONGWOON DW9807 LENS VOICE COIL DRIVER
6012 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6013 L:      linux-media@vger.kernel.org
6014 S:      Maintained
6015 T:      git git://linuxtv.org/media_tree.git
6016 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
6017 F:      drivers/media/i2c/dw9807-vcm.c
6018
6019 DOUBLETALK DRIVER
6020 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6021 L:      blinux-list@redhat.com
6022 S:      Maintained
6023 F:      drivers/char/dtlk.c
6024 F:      include/linux/dtlk.h
6025
6026 DPAA2 DATAPATH I/O (DPIO) DRIVER
6027 M:      Roy Pledge <Roy.Pledge@nxp.com>
6028 L:      linux-kernel@vger.kernel.org
6029 S:      Maintained
6030 F:      drivers/soc/fsl/dpio
6031
6032 DPAA2 ETHERNET DRIVER
6033 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6034 L:      netdev@vger.kernel.org
6035 S:      Maintained
6036 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6037 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6038 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6039 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6040 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6041 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6042 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6043 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6044 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6045
6046 DPAA2 ETHERNET SWITCH DRIVER
6047 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6048 L:      netdev@vger.kernel.org
6049 S:      Maintained
6050 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6051 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6052 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6053
6054 DPT_I2O SCSI RAID DRIVER
6055 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
6056 L:      linux-scsi@vger.kernel.org
6057 S:      Maintained
6058 W:      http://www.adaptec.com/
6059 F:      drivers/scsi/dpt*
6060 F:      drivers/scsi/dpt/
6061
6062 DRBD DRIVER
6063 M:      Philipp Reisner <philipp.reisner@linbit.com>
6064 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6065 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6066 L:      drbd-dev@lists.linbit.com
6067 S:      Supported
6068 W:      http://www.drbd.org
6069 T:      git git://git.linbit.com/linux-drbd.git
6070 T:      git git://git.linbit.com/drbd-8.4.git
6071 F:      Documentation/admin-guide/blockdev/
6072 F:      drivers/block/drbd/
6073 F:      lib/lru_cache.c
6074
6075 DRIVER COMPONENT FRAMEWORK
6076 L:      dri-devel@lists.freedesktop.org
6077 F:      drivers/base/component.c
6078 F:      include/linux/component.h
6079
6080 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6081 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6082 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6083 S:      Supported
6084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6085 F:      Documentation/core-api/kobject.rst
6086 F:      drivers/base/
6087 F:      fs/debugfs/
6088 F:      fs/sysfs/
6089 F:      include/linux/debugfs.h
6090 F:      include/linux/kobj*
6091 F:      lib/kobj*
6092
6093 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6094 M:      Nishanth Menon <nm@ti.com>
6095 L:      linux-pm@vger.kernel.org
6096 S:      Maintained
6097 F:      drivers/soc/ti/smartreflex.c
6098 F:      include/linux/power/smartreflex.h
6099
6100 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6101 M:      Maxime Ripard <mripard@kernel.org>
6102 M:      Chen-Yu Tsai <wens@csie.org>
6103 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6104 L:      dri-devel@lists.freedesktop.org
6105 S:      Supported
6106 T:      git git://anongit.freedesktop.org/drm/drm-misc
6107 F:      drivers/gpu/drm/sun4i/sun8i*
6108
6109 DRM DRIVER FOR ARM PL111 CLCD
6110 M:      Emma Anholt <emma@anholt.net>
6111 S:      Supported
6112 T:      git git://anongit.freedesktop.org/drm/drm-misc
6113 F:      drivers/gpu/drm/pl111/
6114
6115 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6116 M:      Linus Walleij <linus.walleij@linaro.org>
6117 S:      Maintained
6118 T:      git git://anongit.freedesktop.org/drm/drm-misc
6119 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6120 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6121
6122 DRM DRIVER FOR ASPEED BMC GFX
6123 M:      Joel Stanley <joel@jms.id.au>
6124 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6125 S:      Supported
6126 T:      git git://anongit.freedesktop.org/drm/drm-misc
6127 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6128 F:      drivers/gpu/drm/aspeed/
6129
6130 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6131 M:      Dave Airlie <airlied@redhat.com>
6132 R:      Thomas Zimmermann <tzimmermann@suse.de>
6133 L:      dri-devel@lists.freedesktop.org
6134 S:      Supported
6135 T:      git git://anongit.freedesktop.org/drm/drm-misc
6136 F:      drivers/gpu/drm/ast/
6137
6138 DRM DRIVER FOR BOCHS VIRTUAL GPU
6139 M:      Gerd Hoffmann <kraxel@redhat.com>
6140 L:      virtualization@lists.linux-foundation.org
6141 S:      Maintained
6142 T:      git git://anongit.freedesktop.org/drm/drm-misc
6143 F:      drivers/gpu/drm/tiny/bochs.c
6144
6145 DRM DRIVER FOR BOE HIMAX8279D PANELS
6146 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6147 S:      Maintained
6148 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6149 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6150
6151 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6152 M:      Jagan Teki <jagan@amarulasolutions.com>
6153 S:      Maintained
6154 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6155 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6156
6157 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6158 M:      Linus Walleij <linus.walleij@linaro.org>
6159 S:      Maintained
6160 T:      git git://anongit.freedesktop.org/drm/drm-misc
6161 F:      drivers/gpu/drm/tve200/
6162
6163 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6164 M:      Icenowy Zheng <icenowy@aosc.io>
6165 S:      Maintained
6166 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6167 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6168
6169 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6170 M:      Jagan Teki <jagan@amarulasolutions.com>
6171 S:      Maintained
6172 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6173 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6174
6175 DRM DRIVER FOR GENERIC USB DISPLAY
6176 M:      Noralf Trønnes <noralf@tronnes.org>
6177 S:      Maintained
6178 W:      https://github.com/notro/gud/wiki
6179 T:      git git://anongit.freedesktop.org/drm/drm-misc
6180 F:      drivers/gpu/drm/gud/
6181 F:      include/drm/gud.h
6182
6183 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6184 M:      Hans de Goede <hdegoede@redhat.com>
6185 S:      Maintained
6186 T:      git git://anongit.freedesktop.org/drm/drm-misc
6187 F:      drivers/gpu/drm/tiny/gm12u320.c
6188
6189 DRM DRIVER FOR HX8357D PANELS
6190 M:      Emma Anholt <emma@anholt.net>
6191 S:      Maintained
6192 T:      git git://anongit.freedesktop.org/drm/drm-misc
6193 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6194 F:      drivers/gpu/drm/tiny/hx8357d.c
6195
6196 DRM DRIVER FOR ILITEK ILI9225 PANELS
6197 M:      David Lechner <david@lechnology.com>
6198 S:      Maintained
6199 T:      git git://anongit.freedesktop.org/drm/drm-misc
6200 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6201 F:      drivers/gpu/drm/tiny/ili9225.c
6202
6203 DRM DRIVER FOR ILITEK ILI9486 PANELS
6204 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6205 S:      Maintained
6206 T:      git git://anongit.freedesktop.org/drm/drm-misc
6207 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6208 F:      drivers/gpu/drm/tiny/ili9486.c
6209
6210 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6211 S:      Orphan / Obsolete
6212 F:      drivers/gpu/drm/i810/
6213 F:      include/uapi/drm/i810_drm.h
6214
6215 DRM DRIVER FOR LVDS PANELS
6216 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6217 L:      dri-devel@lists.freedesktop.org
6218 T:      git git://anongit.freedesktop.org/drm/drm-misc
6219 S:      Maintained
6220 F:      drivers/gpu/drm/panel/panel-lvds.c
6221 F:      Documentation/devicetree/bindings/display/lvds.yaml
6222 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6223
6224 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6225 M:      Guido Günther <agx@sigxcpu.org>
6226 R:      Purism Kernel Team <kernel@puri.sm>
6227 S:      Maintained
6228 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6229 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6230
6231 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6232 S:      Orphan / Obsolete
6233 F:      drivers/gpu/drm/mga/
6234 F:      include/uapi/drm/mga_drm.h
6235
6236 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6237 M:      Dave Airlie <airlied@redhat.com>
6238 R:      Thomas Zimmermann <tzimmermann@suse.de>
6239 L:      dri-devel@lists.freedesktop.org
6240 S:      Supported
6241 T:      git git://anongit.freedesktop.org/drm/drm-misc
6242 F:      drivers/gpu/drm/mgag200/
6243
6244 DRM DRIVER FOR MI0283QT
6245 M:      Noralf Trønnes <noralf@tronnes.org>
6246 S:      Maintained
6247 T:      git git://anongit.freedesktop.org/drm/drm-misc
6248 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6249 F:      drivers/gpu/drm/tiny/mi0283qt.c
6250
6251 DRM DRIVER FOR MIPI DBI compatible panels
6252 M:      Noralf Trønnes <noralf@tronnes.org>
6253 S:      Maintained
6254 W:      https://github.com/notro/panel-mipi-dbi/wiki
6255 T:      git git://anongit.freedesktop.org/drm/drm-misc
6256 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6257 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6258
6259 DRM DRIVER FOR MSM ADRENO GPU
6260 M:      Rob Clark <robdclark@gmail.com>
6261 M:      Sean Paul <sean@poorly.run>
6262 R:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6263 L:      linux-arm-msm@vger.kernel.org
6264 L:      dri-devel@lists.freedesktop.org
6265 L:      freedreno@lists.freedesktop.org
6266 S:      Maintained
6267 T:      git https://gitlab.freedesktop.org/drm/msm.git
6268 F:      Documentation/devicetree/bindings/display/msm/
6269 F:      drivers/gpu/drm/msm/
6270 F:      include/uapi/drm/msm_drm.h
6271
6272 DRM DRIVER FOR NOVATEK NT35510 PANELS
6273 M:      Linus Walleij <linus.walleij@linaro.org>
6274 S:      Maintained
6275 T:      git git://anongit.freedesktop.org/drm/drm-misc
6276 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6277 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6278
6279 DRM DRIVER FOR NOVATEK NT35560 PANELS
6280 M:      Linus Walleij <linus.walleij@linaro.org>
6281 S:      Maintained
6282 T:      git git://anongit.freedesktop.org/drm/drm-misc
6283 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6284 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6285
6286 DRM DRIVER FOR NOVATEK NT36672A PANELS
6287 M:      Sumit Semwal <sumit.semwal@linaro.org>
6288 S:      Maintained
6289 T:      git git://anongit.freedesktop.org/drm/drm-misc
6290 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6291 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6292
6293 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6294 M:      Ben Skeggs <bskeggs@redhat.com>
6295 M:      Karol Herbst <kherbst@redhat.com>
6296 M:      Lyude Paul <lyude@redhat.com>
6297 L:      dri-devel@lists.freedesktop.org
6298 L:      nouveau@lists.freedesktop.org
6299 S:      Supported
6300 W:      https://nouveau.freedesktop.org/
6301 Q:      https://patchwork.freedesktop.org/project/nouveau/
6302 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6303 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6304 C:      irc://irc.oftc.net/nouveau
6305 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6306 F:      drivers/gpu/drm/nouveau/
6307 F:      include/uapi/drm/nouveau_drm.h
6308
6309 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6310 M:      Stefan Mavrodiev <stefan@olimex.com>
6311 S:      Maintained
6312 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6313 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6314
6315 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6316 M:      Noralf Trønnes <noralf@tronnes.org>
6317 S:      Maintained
6318 T:      git git://anongit.freedesktop.org/drm/drm-misc
6319 F:      Documentation/devicetree/bindings/display/repaper.txt
6320 F:      drivers/gpu/drm/tiny/repaper.c
6321
6322 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6323 M:      Javier Martinez Canillas <javierm@redhat.com>
6324 S:      Maintained
6325 T:      git git://anongit.freedesktop.org/drm/drm-misc
6326 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6327 F:      drivers/gpu/drm/solomon/ssd130x*
6328
6329 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6330 M:      Dave Airlie <airlied@redhat.com>
6331 M:      Gerd Hoffmann <kraxel@redhat.com>
6332 L:      virtualization@lists.linux-foundation.org
6333 S:      Obsolete
6334 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6335 T:      git git://anongit.freedesktop.org/drm/drm-misc
6336 F:      drivers/gpu/drm/tiny/cirrus.c
6337
6338 DRM DRIVER FOR QXL VIRTUAL GPU
6339 M:      Dave Airlie <airlied@redhat.com>
6340 M:      Gerd Hoffmann <kraxel@redhat.com>
6341 L:      virtualization@lists.linux-foundation.org
6342 L:      spice-devel@lists.freedesktop.org
6343 S:      Maintained
6344 T:      git git://anongit.freedesktop.org/drm/drm-misc
6345 F:      drivers/gpu/drm/qxl/
6346 F:      include/uapi/drm/qxl_drm.h
6347
6348 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6349 S:      Orphan / Obsolete
6350 F:      drivers/gpu/drm/r128/
6351 F:      include/uapi/drm/r128_drm.h
6352
6353 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6354 M:      Robert Chiras <robert.chiras@nxp.com>
6355 S:      Maintained
6356 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6357 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6358
6359 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6360 M:      Linus Walleij <linus.walleij@linaro.org>
6361 S:      Maintained
6362 T:      git git://anongit.freedesktop.org/drm/drm-misc
6363 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6364 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6365
6366 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6367 M:      Markuss Broks <markuss.broks@gmail.com>
6368 S:      Maintained
6369 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6370 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6371
6372 DRM DRIVER FOR SITRONIX ST7703 PANELS
6373 M:      Guido Günther <agx@sigxcpu.org>
6374 R:      Purism Kernel Team <kernel@puri.sm>
6375 R:      Ondrej Jirman <megous@megous.com>
6376 S:      Maintained
6377 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6378 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6379
6380 DRM DRIVER FOR SAVAGE VIDEO CARDS
6381 S:      Orphan / Obsolete
6382 F:      drivers/gpu/drm/savage/
6383 F:      include/uapi/drm/savage_drm.h
6384
6385 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6386 M:      Thomas Zimmermann <tzimmermann@suse.de>
6387 L:      dri-devel@lists.freedesktop.org
6388 S:      Maintained
6389 T:      git git://anongit.freedesktop.org/drm/drm-misc
6390 F:      drivers/gpu/drm/tiny/simpledrm.c
6391
6392 DRM DRIVER FOR SIS VIDEO CARDS
6393 S:      Orphan / Obsolete
6394 F:      drivers/gpu/drm/sis/
6395 F:      include/uapi/drm/sis_drm.h
6396
6397 DRM DRIVER FOR SITRONIX ST7586 PANELS
6398 M:      David Lechner <david@lechnology.com>
6399 S:      Maintained
6400 T:      git git://anongit.freedesktop.org/drm/drm-misc
6401 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6402 F:      drivers/gpu/drm/tiny/st7586.c
6403
6404 DRM DRIVER FOR SITRONIX ST7701 PANELS
6405 M:      Jagan Teki <jagan@amarulasolutions.com>
6406 S:      Maintained
6407 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6408 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6409
6410 DRM DRIVER FOR SITRONIX ST7735R PANELS
6411 M:      David Lechner <david@lechnology.com>
6412 S:      Maintained
6413 T:      git git://anongit.freedesktop.org/drm/drm-misc
6414 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6415 F:      drivers/gpu/drm/tiny/st7735r.c
6416
6417 DRM DRIVER FOR ST-ERICSSON MCDE
6418 M:      Linus Walleij <linus.walleij@linaro.org>
6419 S:      Maintained
6420 T:      git git://anongit.freedesktop.org/drm/drm-misc
6421 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6422 F:      drivers/gpu/drm/mcde/
6423
6424 DRM DRIVER FOR TDFX VIDEO CARDS
6425 S:      Orphan / Obsolete
6426 F:      drivers/gpu/drm/tdfx/
6427
6428 DRM DRIVER FOR TPO TPG110 PANELS
6429 M:      Linus Walleij <linus.walleij@linaro.org>
6430 S:      Maintained
6431 T:      git git://anongit.freedesktop.org/drm/drm-misc
6432 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6433 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6434
6435 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6436 M:      Dave Airlie <airlied@redhat.com>
6437 R:      Sean Paul <sean@poorly.run>
6438 R:      Thomas Zimmermann <tzimmermann@suse.de>
6439 L:      dri-devel@lists.freedesktop.org
6440 S:      Supported
6441 T:      git git://anongit.freedesktop.org/drm/drm-misc
6442 F:      drivers/gpu/drm/udl/
6443
6444 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6445 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6446 M:      Melissa Wen <melissa.srw@gmail.com>
6447 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6448 R:      Daniel Vetter <daniel@ffwll.ch>
6449 L:      dri-devel@lists.freedesktop.org
6450 S:      Maintained
6451 T:      git git://anongit.freedesktop.org/drm/drm-misc
6452 F:      Documentation/gpu/vkms.rst
6453 F:      drivers/gpu/drm/vkms/
6454
6455 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6456 M:      Hans de Goede <hdegoede@redhat.com>
6457 L:      dri-devel@lists.freedesktop.org
6458 S:      Maintained
6459 T:      git git://anongit.freedesktop.org/drm/drm-misc
6460 F:      drivers/gpu/drm/vboxvideo/
6461
6462 DRM DRIVER FOR VMWARE VIRTUAL GPU
6463 M:      Zack Rusin <zackr@vmware.com>
6464 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6465 L:      dri-devel@lists.freedesktop.org
6466 S:      Supported
6467 T:      git git://anongit.freedesktop.org/drm/drm-misc
6468 F:      drivers/gpu/drm/vmwgfx/
6469 F:      include/uapi/drm/vmwgfx_drm.h
6470
6471 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6472 M:      Linus Walleij <linus.walleij@linaro.org>
6473 S:      Maintained
6474 T:      git git://anongit.freedesktop.org/drm/drm-misc
6475 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6476 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6477
6478 DRM DRIVERS
6479 M:      David Airlie <airlied@linux.ie>
6480 M:      Daniel Vetter <daniel@ffwll.ch>
6481 L:      dri-devel@lists.freedesktop.org
6482 S:      Maintained
6483 B:      https://gitlab.freedesktop.org/drm
6484 C:      irc://irc.oftc.net/dri-devel
6485 T:      git git://anongit.freedesktop.org/drm/drm
6486 F:      Documentation/devicetree/bindings/display/
6487 F:      Documentation/devicetree/bindings/gpu/
6488 F:      Documentation/gpu/
6489 F:      drivers/gpu/
6490 F:      include/drm/
6491 F:      include/linux/vga*
6492 F:      include/uapi/drm/
6493
6494 DRM DRIVERS AND MISC GPU PATCHES
6495 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6496 M:      Maxime Ripard <mripard@kernel.org>
6497 M:      Thomas Zimmermann <tzimmermann@suse.de>
6498 S:      Maintained
6499 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6500 T:      git git://anongit.freedesktop.org/drm/drm-misc
6501 F:      Documentation/gpu/
6502 F:      drivers/gpu/drm/*
6503 F:      drivers/gpu/vga/
6504 F:      include/drm/drm*
6505 F:      include/linux/vga*
6506 F:      include/uapi/drm/drm*
6507
6508 DRM DRIVERS FOR ALLWINNER A10
6509 M:      Maxime Ripard <mripard@kernel.org>
6510 M:      Chen-Yu Tsai <wens@csie.org>
6511 L:      dri-devel@lists.freedesktop.org
6512 S:      Supported
6513 T:      git git://anongit.freedesktop.org/drm/drm-misc
6514 F:      Documentation/devicetree/bindings/display/allwinner*
6515 F:      drivers/gpu/drm/sun4i/
6516
6517 DRM DRIVERS FOR AMLOGIC SOCS
6518 M:      Neil Armstrong <narmstrong@baylibre.com>
6519 L:      dri-devel@lists.freedesktop.org
6520 L:      linux-amlogic@lists.infradead.org
6521 S:      Supported
6522 W:      http://linux-meson.com/
6523 T:      git git://anongit.freedesktop.org/drm/drm-misc
6524 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6525 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6526 F:      Documentation/gpu/meson.rst
6527 F:      drivers/gpu/drm/meson/
6528
6529 DRM DRIVERS FOR ATMEL HLCDC
6530 M:      Sam Ravnborg <sam@ravnborg.org>
6531 M:      Boris Brezillon <bbrezillon@kernel.org>
6532 L:      dri-devel@lists.freedesktop.org
6533 S:      Supported
6534 T:      git git://anongit.freedesktop.org/drm/drm-misc
6535 F:      Documentation/devicetree/bindings/display/atmel/
6536 F:      drivers/gpu/drm/atmel-hlcdc/
6537
6538 DRM DRIVERS FOR BRIDGE CHIPS
6539 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6540 M:      Neil Armstrong <narmstrong@baylibre.com>
6541 M:      Robert Foss <robert.foss@linaro.org>
6542 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6543 R:      Jonas Karlman <jonas@kwiboo.se>
6544 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6545 S:      Maintained
6546 T:      git git://anongit.freedesktop.org/drm/drm-misc
6547 F:      drivers/gpu/drm/bridge/
6548
6549 DRM DRIVERS FOR EXYNOS
6550 M:      Inki Dae <inki.dae@samsung.com>
6551 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6552 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6553 M:      Kyungmin Park <kyungmin.park@samsung.com>
6554 L:      dri-devel@lists.freedesktop.org
6555 S:      Supported
6556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6557 F:      Documentation/devicetree/bindings/display/exynos/
6558 F:      Documentation/devicetree/bindings/display/samsung/
6559 F:      drivers/gpu/drm/exynos/
6560 F:      include/uapi/drm/exynos_drm.h
6561
6562 DRM DRIVERS FOR FREESCALE DCU
6563 M:      Stefan Agner <stefan@agner.ch>
6564 M:      Alison Wang <alison.wang@nxp.com>
6565 L:      dri-devel@lists.freedesktop.org
6566 S:      Supported
6567 T:      git git://anongit.freedesktop.org/drm/drm-misc
6568 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6569 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6570 F:      drivers/gpu/drm/fsl-dcu/
6571
6572 DRM DRIVERS FOR FREESCALE IMX
6573 M:      Philipp Zabel <p.zabel@pengutronix.de>
6574 L:      dri-devel@lists.freedesktop.org
6575 S:      Maintained
6576 F:      Documentation/devicetree/bindings/display/imx/
6577 F:      drivers/gpu/drm/imx/
6578 F:      drivers/gpu/ipu-v3/
6579
6580 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6581 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6582 L:      dri-devel@lists.freedesktop.org
6583 S:      Maintained
6584 T:      git git://github.com/patjak/drm-gma500
6585 F:      drivers/gpu/drm/gma500/
6586
6587 DRM DRIVERS FOR HISILICON
6588 M:      Xinliang Liu <xinliang.liu@linaro.org>
6589 M:      Tian Tao  <tiantao6@hisilicon.com>
6590 R:      John Stultz <john.stultz@linaro.org>
6591 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6592 R:      Chen Feng <puck.chen@hisilicon.com>
6593 L:      dri-devel@lists.freedesktop.org
6594 S:      Maintained
6595 T:      git git://anongit.freedesktop.org/drm/drm-misc
6596 F:      Documentation/devicetree/bindings/display/hisilicon/
6597 F:      drivers/gpu/drm/hisilicon/
6598
6599 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6600 M:      Deepak Rawat <drawat.floss@gmail.com>
6601 L:      linux-hyperv@vger.kernel.org
6602 L:      dri-devel@lists.freedesktop.org
6603 S:      Maintained
6604 T:      git git://anongit.freedesktop.org/drm/drm-misc
6605 F:      drivers/gpu/drm/hyperv
6606
6607 DRM DRIVERS FOR LIMA
6608 M:      Qiang Yu <yuq825@gmail.com>
6609 L:      dri-devel@lists.freedesktop.org
6610 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6611 S:      Maintained
6612 T:      git git://anongit.freedesktop.org/drm/drm-misc
6613 F:      drivers/gpu/drm/lima/
6614 F:      include/uapi/drm/lima_drm.h
6615
6616 DRM DRIVERS FOR MEDIATEK
6617 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6618 M:      Philipp Zabel <p.zabel@pengutronix.de>
6619 L:      dri-devel@lists.freedesktop.org
6620 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6621 S:      Supported
6622 F:      Documentation/devicetree/bindings/display/mediatek/
6623 F:      drivers/gpu/drm/mediatek/
6624 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6625 F:      drivers/phy/mediatek/phy-mtk-mipi*
6626
6627 DRM DRIVERS FOR NVIDIA TEGRA
6628 M:      Thierry Reding <thierry.reding@gmail.com>
6629 L:      dri-devel@lists.freedesktop.org
6630 L:      linux-tegra@vger.kernel.org
6631 S:      Supported
6632 T:      git git://anongit.freedesktop.org/tegra/linux.git
6633 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6634 F:      Documentation/devicetree/bindings/gpu/host1x/
6635 F:      drivers/gpu/drm/tegra/
6636 F:      drivers/gpu/host1x/
6637 F:      include/linux/host1x.h
6638 F:      include/uapi/drm/tegra_drm.h
6639
6640 DRM DRIVERS FOR RENESAS
6641 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6642 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6643 L:      dri-devel@lists.freedesktop.org
6644 L:      linux-renesas-soc@vger.kernel.org
6645 S:      Supported
6646 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6647 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6648 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6649 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6650 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6651 F:      drivers/gpu/drm/rcar-du/
6652 F:      drivers/gpu/drm/shmobile/
6653 F:      include/linux/platform_data/shmob_drm.h
6654
6655 DRM DRIVERS FOR ROCKCHIP
6656 M:      Sandy Huang <hjc@rock-chips.com>
6657 M:      Heiko Stübner <heiko@sntech.de>
6658 L:      dri-devel@lists.freedesktop.org
6659 S:      Maintained
6660 T:      git git://anongit.freedesktop.org/drm/drm-misc
6661 F:      Documentation/devicetree/bindings/display/rockchip/
6662 F:      drivers/gpu/drm/rockchip/
6663
6664 DRM DRIVERS FOR STI
6665 M:      Alain Volmat <alain.volmat@foss.st.com>
6666 L:      dri-devel@lists.freedesktop.org
6667 S:      Maintained
6668 T:      git git://anongit.freedesktop.org/drm/drm-misc
6669 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6670 F:      drivers/gpu/drm/sti
6671
6672 DRM DRIVERS FOR STM
6673 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6674 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6675 M:      Philippe Cornu <philippe.cornu@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,stm32-ltdc.yaml
6680 F:      drivers/gpu/drm/stm
6681
6682 DRM DRIVERS FOR TI KEYSTONE
6683 M:      Jyri Sarha <jyri.sarha@iki.fi>
6684 M:      Tomi Valkeinen <tomba@kernel.org>
6685 L:      dri-devel@lists.freedesktop.org
6686 S:      Maintained
6687 T:      git git://anongit.freedesktop.org/drm/drm-misc
6688 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6689 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6690 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6691 F:      drivers/gpu/drm/tidss/
6692
6693 DRM DRIVERS FOR TI LCDC
6694 M:      Jyri Sarha <jyri.sarha@iki.fi>
6695 R:      Tomi Valkeinen <tomba@kernel.org>
6696 L:      dri-devel@lists.freedesktop.org
6697 S:      Maintained
6698 F:      Documentation/devicetree/bindings/display/tilcdc/
6699 F:      drivers/gpu/drm/tilcdc/
6700
6701 DRM DRIVERS FOR TI OMAP
6702 M:      Tomi Valkeinen <tomba@kernel.org>
6703 L:      dri-devel@lists.freedesktop.org
6704 S:      Maintained
6705 F:      Documentation/devicetree/bindings/display/ti/
6706 F:      drivers/gpu/drm/omapdrm/
6707
6708 DRM DRIVERS FOR V3D
6709 M:      Emma Anholt <emma@anholt.net>
6710 S:      Supported
6711 T:      git git://anongit.freedesktop.org/drm/drm-misc
6712 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6713 F:      drivers/gpu/drm/v3d/
6714 F:      include/uapi/drm/v3d_drm.h
6715
6716 DRM DRIVERS FOR VC4
6717 M:      Emma Anholt <emma@anholt.net>
6718 M:      Maxime Ripard <mripard@kernel.org>
6719 S:      Supported
6720 T:      git git://github.com/anholt/linux
6721 T:      git git://anongit.freedesktop.org/drm/drm-misc
6722 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6723 F:      drivers/gpu/drm/vc4/
6724 F:      include/uapi/drm/vc4_drm.h
6725
6726 DRM DRIVERS FOR VIVANTE GPU IP
6727 M:      Lucas Stach <l.stach@pengutronix.de>
6728 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6729 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6730 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6731 L:      dri-devel@lists.freedesktop.org
6732 S:      Maintained
6733 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6734 F:      drivers/gpu/drm/etnaviv/
6735 F:      include/uapi/drm/etnaviv_drm.h
6736
6737 DRM DRIVERS FOR XEN
6738 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6739 L:      dri-devel@lists.freedesktop.org
6740 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6741 S:      Supported
6742 T:      git git://anongit.freedesktop.org/drm/drm-misc
6743 F:      Documentation/gpu/xen-front.rst
6744 F:      drivers/gpu/drm/xen/
6745
6746 DRM DRIVERS FOR XILINX
6747 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6748 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6749 L:      dri-devel@lists.freedesktop.org
6750 S:      Maintained
6751 T:      git git://anongit.freedesktop.org/drm/drm-misc
6752 F:      Documentation/devicetree/bindings/display/xlnx/
6753 F:      drivers/gpu/drm/xlnx/
6754
6755 DRM PANEL DRIVERS
6756 M:      Thierry Reding <thierry.reding@gmail.com>
6757 R:      Sam Ravnborg <sam@ravnborg.org>
6758 L:      dri-devel@lists.freedesktop.org
6759 S:      Maintained
6760 T:      git git://anongit.freedesktop.org/drm/drm-misc
6761 F:      Documentation/devicetree/bindings/display/panel/
6762 F:      drivers/gpu/drm/drm_panel.c
6763 F:      drivers/gpu/drm/panel/
6764 F:      include/drm/drm_panel.h
6765
6766 DRM PRIVACY-SCREEN CLASS
6767 M:      Hans de Goede <hdegoede@redhat.com>
6768 L:      dri-devel@lists.freedesktop.org
6769 S:      Maintained
6770 T:      git git://anongit.freedesktop.org/drm/drm-misc
6771 F:      drivers/gpu/drm/drm_privacy_screen*
6772 F:      include/drm/drm_privacy_screen*
6773
6774 DRM TTM SUBSYSTEM
6775 M:      Christian Koenig <christian.koenig@amd.com>
6776 M:      Huang Rui <ray.huang@amd.com>
6777 L:      dri-devel@lists.freedesktop.org
6778 S:      Maintained
6779 T:      git git://anongit.freedesktop.org/drm/drm-misc
6780 F:      drivers/gpu/drm/ttm/
6781 F:      include/drm/ttm/
6782
6783 DRM GPU SCHEDULER
6784 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6785 L:      dri-devel@lists.freedesktop.org
6786 S:      Maintained
6787 T:      git git://anongit.freedesktop.org/drm/drm-misc
6788 F:      drivers/gpu/drm/scheduler/
6789 F:      include/drm/gpu_scheduler.h
6790
6791 DSBR100 USB FM RADIO DRIVER
6792 M:      Alexey Klimov <klimov.linux@gmail.com>
6793 L:      linux-media@vger.kernel.org
6794 S:      Maintained
6795 T:      git git://linuxtv.org/media_tree.git
6796 F:      drivers/media/radio/dsbr100.c
6797
6798 DT3155 MEDIA DRIVER
6799 M:      Hans Verkuil <hverkuil@xs4all.nl>
6800 L:      linux-media@vger.kernel.org
6801 S:      Odd Fixes
6802 W:      https://linuxtv.org
6803 T:      git git://linuxtv.org/media_tree.git
6804 F:      drivers/media/pci/dt3155/
6805
6806 DVB_USB_AF9015 MEDIA DRIVER
6807 M:      Antti Palosaari <crope@iki.fi>
6808 L:      linux-media@vger.kernel.org
6809 S:      Maintained
6810 W:      https://linuxtv.org
6811 W:      http://palosaari.fi/linux/
6812 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6813 T:      git git://linuxtv.org/anttip/media_tree.git
6814 F:      drivers/media/usb/dvb-usb-v2/af9015*
6815
6816 DVB_USB_AF9035 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/af9035*
6825
6826 DVB_USB_ANYSEE 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/anysee*
6835
6836 DVB_USB_AU6610 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/au6610*
6845
6846 DVB_USB_CE6230 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/ce6230*
6855
6856 DVB_USB_CXUSB MEDIA DRIVER
6857 M:      Michael Krufky <mkrufky@linuxtv.org>
6858 L:      linux-media@vger.kernel.org
6859 S:      Maintained
6860 W:      https://linuxtv.org
6861 W:      http://github.com/mkrufky
6862 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6863 T:      git git://linuxtv.org/media_tree.git
6864 F:      drivers/media/usb/dvb-usb/cxusb*
6865
6866 DVB_USB_EC168 MEDIA DRIVER
6867 M:      Antti Palosaari <crope@iki.fi>
6868 L:      linux-media@vger.kernel.org
6869 S:      Maintained
6870 W:      https://linuxtv.org
6871 W:      http://palosaari.fi/linux/
6872 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6873 T:      git git://linuxtv.org/anttip/media_tree.git
6874 F:      drivers/media/usb/dvb-usb-v2/ec168*
6875
6876 DVB_USB_GL861 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 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6882 T:      git git://linuxtv.org/anttip/media_tree.git
6883 F:      drivers/media/usb/dvb-usb-v2/gl861*
6884
6885 DVB_USB_MXL111SF MEDIA DRIVER
6886 M:      Michael Krufky <mkrufky@linuxtv.org>
6887 L:      linux-media@vger.kernel.org
6888 S:      Maintained
6889 W:      https://linuxtv.org
6890 W:      http://github.com/mkrufky
6891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6892 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6893 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6894
6895 DVB_USB_RTL28XXU MEDIA DRIVER
6896 M:      Antti Palosaari <crope@iki.fi>
6897 L:      linux-media@vger.kernel.org
6898 S:      Maintained
6899 W:      https://linuxtv.org
6900 W:      http://palosaari.fi/linux/
6901 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6902 T:      git git://linuxtv.org/anttip/media_tree.git
6903 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6904
6905 DVB_USB_V2 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/dvb_usb*
6914 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6915
6916 DYNAMIC DEBUG
6917 M:      Jason Baron <jbaron@akamai.com>
6918 S:      Maintained
6919 F:      include/linux/dynamic_debug.h
6920 F:      lib/dynamic_debug.c
6921
6922 DYNAMIC INTERRUPT MODERATION
6923 M:      Tal Gilboa <talgi@nvidia.com>
6924 S:      Maintained
6925 F:      Documentation/networking/net_dim.rst
6926 F:      include/linux/dim.h
6927 F:      lib/dim/
6928
6929 DZ DECSTATION DZ11 SERIAL DRIVER
6930 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6931 S:      Maintained
6932 F:      drivers/tty/serial/dz.*
6933
6934 E3X0 POWER BUTTON DRIVER
6935 M:      Moritz Fischer <moritz.fischer@ettus.com>
6936 L:      usrp-users@lists.ettus.com
6937 S:      Supported
6938 W:      http://www.ettus.com
6939 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6940 F:      drivers/input/misc/e3x0-button.c
6941
6942 E4000 MEDIA DRIVER
6943 M:      Antti Palosaari <crope@iki.fi>
6944 L:      linux-media@vger.kernel.org
6945 S:      Maintained
6946 W:      https://linuxtv.org
6947 W:      http://palosaari.fi/linux/
6948 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6949 T:      git git://linuxtv.org/anttip/media_tree.git
6950 F:      drivers/media/tuners/e4000*
6951
6952 EARTH_PT1 MEDIA DRIVER
6953 M:      Akihiro Tsukada <tskd08@gmail.com>
6954 L:      linux-media@vger.kernel.org
6955 S:      Odd Fixes
6956 F:      drivers/media/pci/pt1/
6957
6958 EARTH_PT3 MEDIA DRIVER
6959 M:      Akihiro Tsukada <tskd08@gmail.com>
6960 L:      linux-media@vger.kernel.org
6961 S:      Odd Fixes
6962 F:      drivers/media/pci/pt3/
6963
6964 EC100 MEDIA DRIVER
6965 M:      Antti Palosaari <crope@iki.fi>
6966 L:      linux-media@vger.kernel.org
6967 S:      Maintained
6968 W:      https://linuxtv.org
6969 W:      http://palosaari.fi/linux/
6970 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6971 T:      git git://linuxtv.org/anttip/media_tree.git
6972 F:      drivers/media/dvb-frontends/ec100*
6973
6974 ECRYPT FILE SYSTEM
6975 M:      Tyler Hicks <code@tyhicks.com>
6976 L:      ecryptfs@vger.kernel.org
6977 S:      Odd Fixes
6978 W:      http://ecryptfs.org
6979 W:      https://launchpad.net/ecryptfs
6980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6981 F:      Documentation/filesystems/ecryptfs.rst
6982 F:      fs/ecryptfs/
6983
6984 EDAC-AMD64
6985 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6986 L:      linux-edac@vger.kernel.org
6987 S:      Supported
6988 F:      drivers/edac/amd64_edac*
6989 F:      drivers/edac/mce_amd*
6990
6991 EDAC-ARMADA
6992 M:      Jan Luebbe <jlu@pengutronix.de>
6993 L:      linux-edac@vger.kernel.org
6994 S:      Maintained
6995 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6996 F:      drivers/edac/armada_xp_*
6997
6998 EDAC-AST2500
6999 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7000 S:      Supported
7001 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7002 F:      drivers/edac/aspeed_edac.c
7003
7004 EDAC-BLUEFIELD
7005 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7006 S:      Supported
7007 F:      drivers/edac/bluefield_edac.c
7008
7009 EDAC-CALXEDA
7010 M:      Andre Przywara <andre.przywara@arm.com>
7011 L:      linux-edac@vger.kernel.org
7012 S:      Maintained
7013 F:      drivers/edac/highbank*
7014
7015 EDAC-CAVIUM OCTEON
7016 M:      Ralf Baechle <ralf@linux-mips.org>
7017 L:      linux-edac@vger.kernel.org
7018 L:      linux-mips@vger.kernel.org
7019 S:      Supported
7020 F:      drivers/edac/octeon_edac*
7021
7022 EDAC-CAVIUM THUNDERX
7023 M:      Robert Richter <rric@kernel.org>
7024 L:      linux-edac@vger.kernel.org
7025 S:      Odd Fixes
7026 F:      drivers/edac/thunderx_edac*
7027
7028 EDAC-CORE
7029 M:      Borislav Petkov <bp@alien8.de>
7030 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7031 M:      Tony Luck <tony.luck@intel.com>
7032 R:      James Morse <james.morse@arm.com>
7033 R:      Robert Richter <rric@kernel.org>
7034 L:      linux-edac@vger.kernel.org
7035 S:      Supported
7036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7037 F:      Documentation/admin-guide/ras.rst
7038 F:      Documentation/driver-api/edac.rst
7039 F:      drivers/edac/
7040 F:      include/linux/edac.h
7041
7042 EDAC-DMC520
7043 M:      Lei Wang <lewan@microsoft.com>
7044 L:      linux-edac@vger.kernel.org
7045 S:      Supported
7046 F:      drivers/edac/dmc520_edac.c
7047
7048 EDAC-E752X
7049 M:      Mark Gross <markgross@kernel.org>
7050 L:      linux-edac@vger.kernel.org
7051 S:      Maintained
7052 F:      drivers/edac/e752x_edac.c
7053
7054 EDAC-E7XXX
7055 L:      linux-edac@vger.kernel.org
7056 S:      Maintained
7057 F:      drivers/edac/e7xxx_edac.c
7058
7059 EDAC-FSL_DDR
7060 M:      York Sun <york.sun@nxp.com>
7061 L:      linux-edac@vger.kernel.org
7062 S:      Maintained
7063 F:      drivers/edac/fsl_ddr_edac.*
7064
7065 EDAC-GHES
7066 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7067 L:      linux-edac@vger.kernel.org
7068 S:      Maintained
7069 F:      drivers/edac/ghes_edac.c
7070
7071 EDAC-I10NM
7072 M:      Tony Luck <tony.luck@intel.com>
7073 L:      linux-edac@vger.kernel.org
7074 S:      Maintained
7075 F:      drivers/edac/i10nm_base.c
7076
7077 EDAC-I3000
7078 L:      linux-edac@vger.kernel.org
7079 S:      Orphan
7080 F:      drivers/edac/i3000_edac.c
7081
7082 EDAC-I5000
7083 L:      linux-edac@vger.kernel.org
7084 S:      Maintained
7085 F:      drivers/edac/i5000_edac.c
7086
7087 EDAC-I5400
7088 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7089 L:      linux-edac@vger.kernel.org
7090 S:      Maintained
7091 F:      drivers/edac/i5400_edac.c
7092
7093 EDAC-I7300
7094 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7095 L:      linux-edac@vger.kernel.org
7096 S:      Maintained
7097 F:      drivers/edac/i7300_edac.c
7098
7099 EDAC-I7CORE
7100 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7101 L:      linux-edac@vger.kernel.org
7102 S:      Maintained
7103 F:      drivers/edac/i7core_edac.c
7104
7105 EDAC-I82443BXGX
7106 M:      Tim Small <tim@buttersideup.com>
7107 L:      linux-edac@vger.kernel.org
7108 S:      Maintained
7109 F:      drivers/edac/i82443bxgx_edac.c
7110
7111 EDAC-I82975X
7112 M:      "Arvind R." <arvino55@gmail.com>
7113 L:      linux-edac@vger.kernel.org
7114 S:      Maintained
7115 F:      drivers/edac/i82975x_edac.c
7116
7117 EDAC-IE31200
7118 M:      Jason Baron <jbaron@akamai.com>
7119 L:      linux-edac@vger.kernel.org
7120 S:      Maintained
7121 F:      drivers/edac/ie31200_edac.c
7122
7123 EDAC-IGEN6
7124 M:      Tony Luck <tony.luck@intel.com>
7125 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7126 L:      linux-edac@vger.kernel.org
7127 S:      Maintained
7128 F:      drivers/edac/igen6_edac.c
7129
7130 EDAC-MPC85XX
7131 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7132 L:      linux-edac@vger.kernel.org
7133 S:      Maintained
7134 F:      drivers/edac/mpc85xx_edac.[ch]
7135
7136 EDAC-PASEMI
7137 M:      Egor Martovetsky <egor@pasemi.com>
7138 L:      linux-edac@vger.kernel.org
7139 S:      Maintained
7140 F:      drivers/edac/pasemi_edac.c
7141
7142 EDAC-PND2
7143 M:      Tony Luck <tony.luck@intel.com>
7144 L:      linux-edac@vger.kernel.org
7145 S:      Maintained
7146 F:      drivers/edac/pnd2_edac.[ch]
7147
7148 EDAC-QCOM
7149 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7150 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7151 L:      linux-arm-msm@vger.kernel.org
7152 L:      linux-edac@vger.kernel.org
7153 S:      Maintained
7154 F:      drivers/edac/qcom_edac.c
7155
7156 EDAC-R82600
7157 M:      Tim Small <tim@buttersideup.com>
7158 L:      linux-edac@vger.kernel.org
7159 S:      Maintained
7160 F:      drivers/edac/r82600_edac.c
7161
7162 EDAC-SBRIDGE
7163 M:      Tony Luck <tony.luck@intel.com>
7164 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7165 L:      linux-edac@vger.kernel.org
7166 S:      Maintained
7167 F:      drivers/edac/sb_edac.c
7168
7169 EDAC-SKYLAKE
7170 M:      Tony Luck <tony.luck@intel.com>
7171 L:      linux-edac@vger.kernel.org
7172 S:      Maintained
7173 F:      drivers/edac/skx_*.[ch]
7174
7175 EDAC-TI
7176 M:      Tero Kristo <kristo@kernel.org>
7177 L:      linux-edac@vger.kernel.org
7178 S:      Odd Fixes
7179 F:      drivers/edac/ti_edac.c
7180
7181 EDIROL UA-101/UA-1000 DRIVER
7182 M:      Clemens Ladisch <clemens@ladisch.de>
7183 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7184 S:      Maintained
7185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7186 F:      sound/usb/misc/ua101.c
7187
7188 EFI TEST DRIVER
7189 M:      Ivan Hu <ivan.hu@canonical.com>
7190 M:      Ard Biesheuvel <ardb@kernel.org>
7191 L:      linux-efi@vger.kernel.org
7192 S:      Maintained
7193 F:      drivers/firmware/efi/test/
7194
7195 EFI VARIABLE FILESYSTEM
7196 M:      Matthew Garrett <matthew.garrett@nebula.com>
7197 M:      Jeremy Kerr <jk@ozlabs.org>
7198 M:      Ard Biesheuvel <ardb@kernel.org>
7199 L:      linux-efi@vger.kernel.org
7200 S:      Maintained
7201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7202 F:      fs/efivarfs/
7203
7204 EFIFB FRAMEBUFFER DRIVER
7205 M:      Peter Jones <pjones@redhat.com>
7206 L:      linux-fbdev@vger.kernel.org
7207 S:      Maintained
7208 F:      drivers/video/fbdev/efifb.c
7209
7210 EFS FILESYSTEM
7211 S:      Orphan
7212 W:      http://aeschi.ch.eu.org/efs/
7213 F:      fs/efs/
7214
7215 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7216 M:      Douglas Miller <dougmill@linux.ibm.com>
7217 L:      netdev@vger.kernel.org
7218 S:      Maintained
7219 F:      drivers/net/ethernet/ibm/ehea/
7220
7221 EM28XX VIDEO4LINUX DRIVER
7222 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7223 L:      linux-media@vger.kernel.org
7224 S:      Maintained
7225 W:      https://linuxtv.org
7226 T:      git git://linuxtv.org/media_tree.git
7227 F:      Documentation/admin-guide/media/em28xx*
7228 F:      drivers/media/usb/em28xx/
7229
7230 EMBEDDED LINUX
7231 M:      Matt Mackall <mpm@selenic.com>
7232 M:      David Woodhouse <dwmw2@infradead.org>
7233 L:      linux-embedded@vger.kernel.org
7234 S:      Maintained
7235
7236 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7237 M:      Adrian Hunter <adrian.hunter@intel.com>
7238 M:      Ritesh Harjani <riteshh@codeaurora.org>
7239 M:      Asutosh Das <asutoshd@codeaurora.org>
7240 L:      linux-mmc@vger.kernel.org
7241 S:      Maintained
7242 F:      drivers/mmc/host/cqhci*
7243
7244 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7245 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7246 L:      linux-scsi@vger.kernel.org
7247 S:      Supported
7248 W:      http://www.broadcom.com
7249 F:      drivers/scsi/be2iscsi/
7250
7251 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7252 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7253 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7254 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7255 L:      netdev@vger.kernel.org
7256 S:      Supported
7257 W:      http://www.emulex.com
7258 F:      drivers/net/ethernet/emulex/benet/
7259
7260 EMULEX ONECONNECT ROCE DRIVER
7261 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7262 L:      linux-rdma@vger.kernel.org
7263 S:      Odd Fixes
7264 W:      http://www.broadcom.com
7265 F:      drivers/infiniband/hw/ocrdma/
7266 F:      include/uapi/rdma/ocrdma-abi.h
7267
7268 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7269 M:      James Smart <james.smart@broadcom.com>
7270 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7271 L:      linux-scsi@vger.kernel.org
7272 S:      Supported
7273 W:      http://www.broadcom.com
7274 F:      drivers/scsi/lpfc/
7275
7276 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7277 M:      James Smart <james.smart@broadcom.com>
7278 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7279 L:      linux-scsi@vger.kernel.org
7280 L:      target-devel@vger.kernel.org
7281 S:      Supported
7282 W:      http://www.broadcom.com
7283 F:      drivers/scsi/elx/
7284
7285 ENE CB710 FLASH CARD READER DRIVER
7286 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7287 S:      Maintained
7288 F:      drivers/misc/cb710/
7289 F:      drivers/mmc/host/cb710-mmc.*
7290 F:      include/linux/cb710.h
7291
7292 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7293 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7294 S:      Maintained
7295 F:      drivers/media/rc/ene_ir.*
7296
7297 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7298 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7299 L:      linuxppc-dev@lists.ozlabs.org
7300 S:      Maintained
7301 F:      drivers/tty/ehv_bytechan.c
7302
7303 EPSON S1D13XXX FRAMEBUFFER DRIVER
7304 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7305 S:      Maintained
7306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7307 F:      drivers/video/fbdev/s1d13xxxfb.c
7308 F:      include/video/s1d13xxxfb.h
7309
7310 EROFS FILE SYSTEM
7311 M:      Gao Xiang <xiang@kernel.org>
7312 M:      Chao Yu <chao@kernel.org>
7313 L:      linux-erofs@lists.ozlabs.org
7314 S:      Maintained
7315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7316 F:      Documentation/filesystems/erofs.rst
7317 F:      fs/erofs/
7318 F:      include/trace/events/erofs.h
7319
7320 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7321 M:      Jeff Layton <jlayton@kernel.org>
7322 S:      Maintained
7323 F:      include/linux/errseq.h
7324 F:      lib/errseq.c
7325
7326 ET131X NETWORK DRIVER
7327 M:      Mark Einon <mark.einon@gmail.com>
7328 S:      Odd Fixes
7329 F:      drivers/net/ethernet/agere/
7330
7331 ETAS ES58X CAN/USB DRIVER
7332 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7333 L:      linux-can@vger.kernel.org
7334 S:      Maintained
7335 F:      drivers/net/can/usb/etas_es58x/
7336
7337 ETHERNET BRIDGE
7338 M:      Roopa Prabhu <roopa@nvidia.com>
7339 M:      Nikolay Aleksandrov <razor@blackwall.org>
7340 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7341 L:      netdev@vger.kernel.org
7342 S:      Maintained
7343 W:      http://www.linuxfoundation.org/en/Net:Bridge
7344 F:      include/linux/netfilter_bridge/
7345 F:      net/bridge/
7346
7347 ETHERNET PHY LIBRARY
7348 M:      Andrew Lunn <andrew@lunn.ch>
7349 M:      Heiner Kallweit <hkallweit1@gmail.com>
7350 R:      Russell King <linux@armlinux.org.uk>
7351 L:      netdev@vger.kernel.org
7352 S:      Maintained
7353 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7354 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7355 F:      Documentation/devicetree/bindings/net/mdio*
7356 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7357 F:      Documentation/networking/phy.rst
7358 F:      drivers/net/mdio/
7359 F:      drivers/net/mdio/acpi_mdio.c
7360 F:      drivers/net/mdio/fwnode_mdio.c
7361 F:      drivers/net/mdio/of_mdio.c
7362 F:      drivers/net/pcs/
7363 F:      drivers/net/phy/
7364 F:      include/dt-bindings/net/qca-ar803x.h
7365 F:      include/linux/linkmode.h
7366 F:      include/linux/*mdio*.h
7367 F:      include/linux/mdio/*.h
7368 F:      include/linux/mii.h
7369 F:      include/linux/of_net.h
7370 F:      include/linux/phy.h
7371 F:      include/linux/phy_fixed.h
7372 F:      include/linux/platform_data/mdio-bcm-unimac.h
7373 F:      include/linux/platform_data/mdio-gpio.h
7374 F:      include/trace/events/mdio.h
7375 F:      include/uapi/linux/mdio.h
7376 F:      include/uapi/linux/mii.h
7377 F:      net/core/of_net.c
7378
7379 EXEC & BINFMT API
7380 R:      Eric Biederman <ebiederm@xmission.com>
7381 R:      Kees Cook <keescook@chromium.org>
7382 L:      linux-mm@kvack.org
7383 S:      Supported
7384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7385 F:      arch/alpha/kernel/binfmt_loader.c
7386 F:      arch/x86/ia32/ia32_aout.c
7387 F:      fs/*binfmt_*.c
7388 F:      fs/exec.c
7389 F:      include/linux/binfmts.h
7390 F:      include/linux/elf.h
7391 F:      include/uapi/linux/binfmts.h
7392 F:      include/uapi/linux/elf.h
7393 F:      tools/testing/selftests/exec/
7394 N:      asm/elf.h
7395 N:      binfmt
7396
7397 EXFAT FILE SYSTEM
7398 M:      Namjae Jeon <linkinjeon@kernel.org>
7399 M:      Sungjong Seo <sj1557.seo@samsung.com>
7400 L:      linux-fsdevel@vger.kernel.org
7401 S:      Maintained
7402 F:      fs/exfat/
7403
7404 EXT2 FILE SYSTEM
7405 M:      Jan Kara <jack@suse.com>
7406 L:      linux-ext4@vger.kernel.org
7407 S:      Maintained
7408 F:      Documentation/filesystems/ext2.rst
7409 F:      fs/ext2/
7410 F:      include/linux/ext2*
7411
7412 EXT4 FILE SYSTEM
7413 M:      "Theodore Ts'o" <tytso@mit.edu>
7414 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7415 L:      linux-ext4@vger.kernel.org
7416 S:      Maintained
7417 W:      http://ext4.wiki.kernel.org
7418 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7420 F:      Documentation/filesystems/ext4/
7421 F:      fs/ext4/
7422 F:      include/trace/events/ext4.h
7423
7424 Extended Verification Module (EVM)
7425 M:      Mimi Zohar <zohar@linux.ibm.com>
7426 L:      linux-integrity@vger.kernel.org
7427 S:      Supported
7428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7429 F:      security/integrity/evm/
7430 F:      security/integrity/
7431
7432 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7433 M:      Ard Biesheuvel <ardb@kernel.org>
7434 L:      linux-efi@vger.kernel.org
7435 S:      Maintained
7436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7437 F:      Documentation/admin-guide/efi-stub.rst
7438 F:      arch/*/include/asm/efi.h
7439 F:      arch/*/kernel/efi.c
7440 F:      arch/arm/boot/compressed/efi-header.S
7441 F:      arch/arm64/kernel/efi-entry.S
7442 F:      arch/x86/platform/efi/
7443 F:      drivers/firmware/efi/
7444 F:      include/linux/efi*.h
7445
7446 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7447 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7448 M:      Chanwoo Choi <cw00.choi@samsung.com>
7449 L:      linux-kernel@vger.kernel.org
7450 S:      Maintained
7451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7452 F:      Documentation/devicetree/bindings/extcon/
7453 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7454 F:      drivers/extcon/
7455 F:      include/linux/extcon.h
7456 F:      include/linux/extcon/
7457
7458 EXTRA BOOT CONFIG
7459 M:      Masami Hiramatsu <mhiramat@kernel.org>
7460 S:      Maintained
7461 F:      Documentation/admin-guide/bootconfig.rst
7462 F:      fs/proc/bootconfig.c
7463 F:      include/linux/bootconfig.h
7464 F:      lib/bootconfig.c
7465 F:      tools/bootconfig/*
7466 F:      tools/bootconfig/scripts/*
7467
7468 EXYNOS DP DRIVER
7469 M:      Jingoo Han <jingoohan1@gmail.com>
7470 L:      dri-devel@lists.freedesktop.org
7471 S:      Maintained
7472 F:      drivers/gpu/drm/exynos/exynos_dp*
7473
7474 EXYNOS SYSMMU (IOMMU) driver
7475 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7476 L:      iommu@lists.linux-foundation.org
7477 S:      Maintained
7478 F:      drivers/iommu/exynos-iommu.c
7479
7480 F2FS FILE SYSTEM
7481 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7482 M:      Chao Yu <chao@kernel.org>
7483 L:      linux-f2fs-devel@lists.sourceforge.net
7484 S:      Maintained
7485 W:      https://f2fs.wiki.kernel.org/
7486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7487 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7488 F:      Documentation/filesystems/f2fs.rst
7489 F:      fs/f2fs/
7490 F:      include/linux/f2fs_fs.h
7491 F:      include/trace/events/f2fs.h
7492 F:      include/uapi/linux/f2fs.h
7493
7494 F71805F HARDWARE MONITORING DRIVER
7495 M:      Jean Delvare <jdelvare@suse.com>
7496 L:      linux-hwmon@vger.kernel.org
7497 S:      Maintained
7498 F:      Documentation/hwmon/f71805f.rst
7499 F:      drivers/hwmon/f71805f.c
7500
7501 FADDR2LINE
7502 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7503 S:      Maintained
7504 F:      scripts/faddr2line
7505
7506 FAILOVER MODULE
7507 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7508 L:      netdev@vger.kernel.org
7509 S:      Supported
7510 F:      Documentation/networking/failover.rst
7511 F:      include/net/failover.h
7512 F:      net/core/failover.c
7513
7514 FANOTIFY
7515 M:      Jan Kara <jack@suse.cz>
7516 R:      Amir Goldstein <amir73il@gmail.com>
7517 R:      Matthew Bobrowski <repnop@google.com>
7518 L:      linux-fsdevel@vger.kernel.org
7519 S:      Maintained
7520 F:      fs/notify/fanotify/
7521 F:      include/linux/fanotify.h
7522 F:      include/uapi/linux/fanotify.h
7523
7524 FARSYNC SYNCHRONOUS DRIVER
7525 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7526 S:      Supported
7527 W:      http://www.farsite.co.uk/
7528 F:      drivers/net/wan/farsync.*
7529
7530 FAULT INJECTION SUPPORT
7531 M:      Akinobu Mita <akinobu.mita@gmail.com>
7532 S:      Supported
7533 F:      Documentation/fault-injection/
7534 F:      lib/fault-inject.c
7535
7536 FBTFT Framebuffer drivers
7537 L:      dri-devel@lists.freedesktop.org
7538 L:      linux-fbdev@vger.kernel.org
7539 S:      Orphan
7540 F:      drivers/staging/fbtft/
7541
7542 FC0011 TUNER DRIVER
7543 M:      Michael Buesch <m@bues.ch>
7544 L:      linux-media@vger.kernel.org
7545 S:      Maintained
7546 F:      drivers/media/tuners/fc0011.c
7547 F:      drivers/media/tuners/fc0011.h
7548
7549 FC2580 MEDIA DRIVER
7550 M:      Antti Palosaari <crope@iki.fi>
7551 L:      linux-media@vger.kernel.org
7552 S:      Maintained
7553 W:      https://linuxtv.org
7554 W:      http://palosaari.fi/linux/
7555 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7556 T:      git git://linuxtv.org/anttip/media_tree.git
7557 F:      drivers/media/tuners/fc2580*
7558
7559 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7560 M:      Hannes Reinecke <hare@suse.de>
7561 L:      linux-scsi@vger.kernel.org
7562 S:      Supported
7563 W:      www.Open-FCoE.org
7564 F:      drivers/scsi/fcoe/
7565 F:      drivers/scsi/libfc/
7566 F:      include/scsi/fc/
7567 F:      include/scsi/libfc.h
7568 F:      include/scsi/libfcoe.h
7569 F:      include/uapi/scsi/fc/
7570
7571 FILE LOCKING (flock() and fcntl()/lockf())
7572 M:      Jeff Layton <jlayton@kernel.org>
7573 L:      linux-fsdevel@vger.kernel.org
7574 S:      Maintained
7575 F:      fs/fcntl.c
7576 F:      fs/locks.c
7577 F:      include/linux/fcntl.h
7578 F:      include/uapi/linux/fcntl.h
7579
7580 FILESYSTEM DIRECT ACCESS (DAX)
7581 M:      Dan Williams <dan.j.williams@intel.com>
7582 R:      Matthew Wilcox <willy@infradead.org>
7583 R:      Jan Kara <jack@suse.cz>
7584 L:      linux-fsdevel@vger.kernel.org
7585 L:      nvdimm@lists.linux.dev
7586 S:      Supported
7587 F:      fs/dax.c
7588 F:      include/linux/dax.h
7589 F:      include/trace/events/fs_dax.h
7590
7591 FILESYSTEMS (VFS and infrastructure)
7592 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7593 L:      linux-fsdevel@vger.kernel.org
7594 S:      Maintained
7595 F:      fs/*
7596 F:      include/linux/fs.h
7597 F:      include/linux/fs_types.h
7598 F:      include/uapi/linux/fs.h
7599 F:      include/uapi/linux/openat2.h
7600 X:      fs/io-wq.c
7601 X:      fs/io-wq.h
7602 X:      fs/io_uring.c
7603
7604 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7605 M:      Riku Voipio <riku.voipio@iki.fi>
7606 L:      linux-hwmon@vger.kernel.org
7607 S:      Maintained
7608 F:      drivers/hwmon/f75375s.c
7609 F:      include/linux/f75375s.h
7610
7611 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7612 M:      Clemens Ladisch <clemens@ladisch.de>
7613 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7614 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7615 S:      Maintained
7616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7617 F:      include/uapi/sound/firewire.h
7618 F:      sound/firewire/
7619
7620 FIREWIRE MEDIA DRIVERS (firedtv)
7621 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7622 L:      linux-media@vger.kernel.org
7623 L:      linux1394-devel@lists.sourceforge.net
7624 S:      Maintained
7625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7626 F:      drivers/media/firewire/
7627
7628 FIREWIRE SBP-2 TARGET
7629 M:      Chris Boot <bootc@bootc.net>
7630 L:      linux-scsi@vger.kernel.org
7631 L:      target-devel@vger.kernel.org
7632 L:      linux1394-devel@lists.sourceforge.net
7633 S:      Maintained
7634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7635 F:      drivers/target/sbp/
7636
7637 FIREWIRE SUBSYSTEM
7638 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7639 L:      linux1394-devel@lists.sourceforge.net
7640 S:      Maintained
7641 W:      http://ieee1394.wiki.kernel.org/
7642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7643 F:      drivers/firewire/
7644 F:      include/linux/firewire.h
7645 F:      include/uapi/linux/firewire*.h
7646 F:      tools/firewire/
7647
7648 FIRMWARE FRAMEWORK FOR ARMV8-A
7649 M:      Sudeep Holla <sudeep.holla@arm.com>
7650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7651 S:      Maintained
7652 F:      drivers/firmware/arm_ffa/
7653 F:      include/linux/arm_ffa.h
7654
7655 FIRMWARE LOADER (request_firmware)
7656 M:      Luis Chamberlain <mcgrof@kernel.org>
7657 L:      linux-kernel@vger.kernel.org
7658 S:      Maintained
7659 F:      Documentation/firmware_class/
7660 F:      drivers/base/firmware_loader/
7661 F:      include/linux/firmware.h
7662
7663 FLEXTIMER FTM-QUADDEC DRIVER
7664 M:      Patrick Havelange <patrick.havelange@essensium.com>
7665 L:      linux-iio@vger.kernel.org
7666 S:      Maintained
7667 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7668 F:      drivers/counter/ftm-quaddec.c
7669
7670 FLOPPY DRIVER
7671 M:      Denis Efremov <efremov@linux.com>
7672 L:      linux-block@vger.kernel.org
7673 S:      Odd Fixes
7674 F:      drivers/block/floppy.c
7675
7676 FLYSKY FSIA6B RC RECEIVER
7677 M:      Markus Koch <markus@notsyncing.net>
7678 L:      linux-input@vger.kernel.org
7679 S:      Maintained
7680 F:      drivers/input/joystick/fsia6b.c
7681
7682 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7683 M:      Geoffrey D. Bennett <g@b4.vu>
7684 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7685 S:      Maintained
7686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7687 F:      sound/usb/mixer_scarlett_gen2.c
7688
7689 FORCEDETH GIGABIT ETHERNET DRIVER
7690 M:      Rain River <rain.1986.08.12@gmail.com>
7691 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7692 L:      netdev@vger.kernel.org
7693 S:      Maintained
7694 F:      drivers/net/ethernet/nvidia/*
7695
7696 FORTIFY_SOURCE
7697 M:      Kees Cook <keescook@chromium.org>
7698 L:      linux-hardening@vger.kernel.org
7699 S:      Supported
7700 F:      include/linux/fortify-string.h
7701 F:      lib/test_fortify/*
7702 F:      scripts/test_fortify.sh
7703 K:      \b__NO_FORTIFY\b
7704
7705 FPGA DFL DRIVERS
7706 M:      Wu Hao <hao.wu@intel.com>
7707 R:      Tom Rix <trix@redhat.com>
7708 L:      linux-fpga@vger.kernel.org
7709 S:      Maintained
7710 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7711 F:      Documentation/fpga/dfl.rst
7712 F:      drivers/fpga/dfl*
7713 F:      drivers/uio/uio_dfl.c
7714 F:      include/linux/dfl.h
7715 F:      include/uapi/linux/fpga-dfl.h
7716
7717 FPGA MANAGER FRAMEWORK
7718 M:      Moritz Fischer <mdf@kernel.org>
7719 M:      Wu Hao <hao.wu@intel.com>
7720 M:      Xu Yilun <yilun.xu@intel.com>
7721 R:      Tom Rix <trix@redhat.com>
7722 L:      linux-fpga@vger.kernel.org
7723 S:      Maintained
7724 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7726 F:      Documentation/devicetree/bindings/fpga/
7727 F:      Documentation/driver-api/fpga/
7728 F:      Documentation/fpga/
7729 F:      drivers/fpga/
7730 F:      include/linux/fpga/
7731
7732 FPU EMULATOR
7733 M:      Bill Metzenthen <billm@melbpc.org.au>
7734 S:      Maintained
7735 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7736 F:      arch/x86/math-emu/
7737
7738 FRAMEBUFFER CORE
7739 M:      Daniel Vetter <daniel@ffwll.ch>
7740 F:      drivers/video/fbdev/core/
7741 S:      Odd Fixes
7742 T:      git git://anongit.freedesktop.org/drm/drm-misc
7743
7744 FRAMEBUFFER LAYER
7745 M:      Helge Deller <deller@gmx.de>
7746 L:      linux-fbdev@vger.kernel.org
7747 L:      dri-devel@lists.freedesktop.org
7748 S:      Maintained
7749 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7751 F:      Documentation/fb/
7752 F:      drivers/video/
7753 F:      include/linux/fb.h
7754 F:      include/uapi/linux/fb.h
7755 F:      include/uapi/video/
7756 F:      include/video/
7757
7758 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7759 M:      Horia Geantă <horia.geanta@nxp.com>
7760 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7761 M:      Gaurav Jain <gaurav.jain@nxp.com>
7762 L:      linux-crypto@vger.kernel.org
7763 S:      Maintained
7764 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7765 F:      drivers/crypto/caam/
7766
7767 FREESCALE COLDFIRE M5441X MMC DRIVER
7768 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7769 L:      linux-mmc@vger.kernel.org
7770 S:      Maintained
7771 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7772 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7773
7774 FREESCALE DIU FRAMEBUFFER DRIVER
7775 M:      Timur Tabi <timur@kernel.org>
7776 L:      linux-fbdev@vger.kernel.org
7777 S:      Maintained
7778 F:      drivers/video/fbdev/fsl-diu-fb.*
7779
7780 FREESCALE DMA DRIVER
7781 M:      Li Yang <leoyang.li@nxp.com>
7782 M:      Zhang Wei <zw@zh-kernel.org>
7783 L:      linuxppc-dev@lists.ozlabs.org
7784 S:      Maintained
7785 F:      drivers/dma/fsldma.*
7786
7787 FREESCALE DSPI DRIVER
7788 M:      Vladimir Oltean <olteanv@gmail.com>
7789 L:      linux-spi@vger.kernel.org
7790 S:      Maintained
7791 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7792 F:      drivers/spi/spi-fsl-dspi.c
7793 F:      include/linux/spi/spi-fsl-dspi.h
7794
7795 FREESCALE ENETC ETHERNET DRIVERS
7796 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7797 L:      netdev@vger.kernel.org
7798 S:      Maintained
7799 F:      drivers/net/ethernet/freescale/enetc/
7800
7801 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7802 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7803 L:      netdev@vger.kernel.org
7804 S:      Maintained
7805 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7806 F:      drivers/net/ethernet/freescale/gianfar*
7807
7808 FREESCALE GPMI NAND DRIVER
7809 M:      Han Xu <han.xu@nxp.com>
7810 L:      linux-mtd@lists.infradead.org
7811 S:      Maintained
7812 F:      drivers/mtd/nand/raw/gpmi-nand/*
7813
7814 FREESCALE I2C CPM DRIVER
7815 M:      Jochen Friedrich <jochen@scram.de>
7816 L:      linuxppc-dev@lists.ozlabs.org
7817 L:      linux-i2c@vger.kernel.org
7818 S:      Maintained
7819 F:      drivers/i2c/busses/i2c-cpm.c
7820
7821 FREESCALE IMX / MXC FEC DRIVER
7822 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7823 L:      netdev@vger.kernel.org
7824 S:      Maintained
7825 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7826 F:      drivers/net/ethernet/freescale/fec.h
7827 F:      drivers/net/ethernet/freescale/fec_main.c
7828 F:      drivers/net/ethernet/freescale/fec_ptp.c
7829
7830 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7831 M:      Sascha Hauer <s.hauer@pengutronix.de>
7832 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7833 L:      linux-fbdev@vger.kernel.org
7834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7835 S:      Maintained
7836 F:      drivers/video/fbdev/imxfb.c
7837 F:      include/linux/platform_data/video-imxfb.h
7838
7839 FREESCALE IMX DDR PMU DRIVER
7840 M:      Frank Li <Frank.li@nxp.com>
7841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7842 S:      Maintained
7843 F:      Documentation/admin-guide/perf/imx-ddr.rst
7844 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7845 F:      drivers/perf/fsl_imx8_ddr_perf.c
7846
7847 FREESCALE IMX I2C DRIVER
7848 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7849 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7850 L:      linux-i2c@vger.kernel.org
7851 S:      Maintained
7852 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7853 F:      drivers/i2c/busses/i2c-imx.c
7854
7855 FREESCALE IMX LPI2C DRIVER
7856 M:      Dong Aisheng <aisheng.dong@nxp.com>
7857 L:      linux-i2c@vger.kernel.org
7858 L:      linux-imx@nxp.com
7859 S:      Maintained
7860 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7861 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7862
7863 FREESCALE MPC I2C DRIVER
7864 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7865 L:      linux-i2c@vger.kernel.org
7866 S:      Maintained
7867 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7868 F:      drivers/i2c/busses/i2c-mpc.c
7869
7870 FREESCALE QORIQ DPAA ETHERNET DRIVER
7871 M:      Madalin Bucur <madalin.bucur@nxp.com>
7872 L:      netdev@vger.kernel.org
7873 S:      Maintained
7874 F:      drivers/net/ethernet/freescale/dpaa
7875
7876 FREESCALE QORIQ DPAA FMAN DRIVER
7877 M:      Madalin Bucur <madalin.bucur@nxp.com>
7878 L:      netdev@vger.kernel.org
7879 S:      Maintained
7880 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7881 F:      drivers/net/ethernet/freescale/fman
7882
7883 FREESCALE QORIQ PTP CLOCK DRIVER
7884 M:      Yangbo Lu <yangbo.lu@nxp.com>
7885 L:      netdev@vger.kernel.org
7886 S:      Maintained
7887 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7888 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7889 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7890 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7891 F:      drivers/ptp/ptp_qoriq.c
7892 F:      drivers/ptp/ptp_qoriq_debugfs.c
7893 F:      include/linux/fsl/ptp_qoriq.h
7894
7895 FREESCALE QUAD SPI DRIVER
7896 M:      Han Xu <han.xu@nxp.com>
7897 L:      linux-spi@vger.kernel.org
7898 S:      Maintained
7899 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7900 F:      drivers/spi/spi-fsl-qspi.c
7901
7902 FREESCALE QUICC ENGINE LIBRARY
7903 M:      Qiang Zhao <qiang.zhao@nxp.com>
7904 L:      linuxppc-dev@lists.ozlabs.org
7905 S:      Maintained
7906 F:      drivers/soc/fsl/qe/
7907 F:      include/soc/fsl/qe/
7908
7909 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7910 M:      Li Yang <leoyang.li@nxp.com>
7911 L:      netdev@vger.kernel.org
7912 L:      linuxppc-dev@lists.ozlabs.org
7913 S:      Maintained
7914 F:      drivers/net/ethernet/freescale/ucc_geth*
7915
7916 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7917 M:      Zhao Qiang <qiang.zhao@nxp.com>
7918 L:      netdev@vger.kernel.org
7919 L:      linuxppc-dev@lists.ozlabs.org
7920 S:      Maintained
7921 F:      drivers/net/wan/fsl_ucc_hdlc*
7922
7923 FREESCALE QUICC ENGINE UCC UART DRIVER
7924 M:      Timur Tabi <timur@kernel.org>
7925 L:      linuxppc-dev@lists.ozlabs.org
7926 S:      Maintained
7927 F:      drivers/tty/serial/ucc_uart.c
7928
7929 FREESCALE SOC DRIVERS
7930 M:      Li Yang <leoyang.li@nxp.com>
7931 L:      linuxppc-dev@lists.ozlabs.org
7932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7933 S:      Maintained
7934 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7935 F:      Documentation/devicetree/bindings/soc/fsl/
7936 F:      drivers/soc/fsl/
7937 F:      include/linux/fsl/
7938 F:      include/soc/fsl/
7939
7940 FREESCALE SOC FS_ENET DRIVER
7941 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7942 L:      linuxppc-dev@lists.ozlabs.org
7943 L:      netdev@vger.kernel.org
7944 S:      Maintained
7945 F:      drivers/net/ethernet/freescale/fs_enet/
7946 F:      include/linux/fs_enet_pd.h
7947
7948 FREESCALE SOC SOUND DRIVERS
7949 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
7950 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7951 R:      Fabio Estevam <festevam@gmail.com>
7952 R:      Nicolin Chen <nicoleotsuka@gmail.com>
7953 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7954 L:      linuxppc-dev@lists.ozlabs.org
7955 S:      Maintained
7956 F:      sound/soc/fsl/fsl*
7957 F:      sound/soc/fsl/imx*
7958 F:      sound/soc/fsl/mpc8610_hpcd.c
7959
7960 FREESCALE USB PERIPHERAL DRIVERS
7961 M:      Li Yang <leoyang.li@nxp.com>
7962 L:      linux-usb@vger.kernel.org
7963 L:      linuxppc-dev@lists.ozlabs.org
7964 S:      Maintained
7965 F:      drivers/usb/gadget/udc/fsl*
7966
7967 FREESCALE USB PHY DRIVER
7968 M:      Ran Wang <ran.wang_1@nxp.com>
7969 L:      linux-usb@vger.kernel.org
7970 L:      linuxppc-dev@lists.ozlabs.org
7971 S:      Maintained
7972 F:      drivers/usb/phy/phy-fsl-usb*
7973
7974 FREEVXFS FILESYSTEM
7975 M:      Christoph Hellwig <hch@infradead.org>
7976 S:      Maintained
7977 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7978 F:      fs/freevxfs/
7979
7980 FREEZER
7981 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7982 M:      Pavel Machek <pavel@ucw.cz>
7983 L:      linux-pm@vger.kernel.org
7984 S:      Supported
7985 F:      Documentation/power/freezing-of-tasks.rst
7986 F:      include/linux/freezer.h
7987 F:      kernel/freezer.c
7988
7989 FRONTSWAP API
7990 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7991 L:      linux-kernel@vger.kernel.org
7992 S:      Maintained
7993 F:      include/linux/frontswap.h
7994 F:      mm/frontswap.c
7995
7996 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7997 M:      David Howells <dhowells@redhat.com>
7998 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7999 S:      Supported
8000 F:      Documentation/filesystems/caching/
8001 F:      fs/fscache/
8002 F:      include/linux/fscache*.h
8003
8004 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8005 M:      Theodore Y. Ts'o <tytso@mit.edu>
8006 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8007 M:      Eric Biggers <ebiggers@kernel.org>
8008 L:      linux-fscrypt@vger.kernel.org
8009 S:      Supported
8010 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8011 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8012 F:      Documentation/filesystems/fscrypt.rst
8013 F:      fs/crypto/
8014 F:      include/linux/fscrypt*.h
8015 F:      include/uapi/linux/fscrypt.h
8016
8017 FSI SUBSYSTEM
8018 M:      Jeremy Kerr <jk@ozlabs.org>
8019 M:      Joel Stanley <joel@jms.id.au>
8020 R:      Alistar Popple <alistair@popple.id.au>
8021 R:      Eddie James <eajames@linux.ibm.com>
8022 L:      linux-fsi@lists.ozlabs.org
8023 S:      Supported
8024 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8026 F:      drivers/fsi/
8027 F:      include/linux/fsi*.h
8028 F:      include/trace/events/fsi*.h
8029
8030 FSI-ATTACHED I2C DRIVER
8031 M:      Eddie James <eajames@linux.ibm.com>
8032 L:      linux-i2c@vger.kernel.org
8033 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8034 S:      Maintained
8035 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8036 F:      drivers/i2c/busses/i2c-fsi.c
8037
8038 FSI-ATTACHED SPI DRIVER
8039 M:      Eddie James <eajames@linux.ibm.com>
8040 L:      linux-spi@vger.kernel.org
8041 S:      Maintained
8042 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8043 F:      drivers/spi/spi-fsi.c
8044
8045 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8046 M:      Jan Kara <jack@suse.cz>
8047 R:      Amir Goldstein <amir73il@gmail.com>
8048 L:      linux-fsdevel@vger.kernel.org
8049 S:      Maintained
8050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8051 F:      fs/notify/
8052 F:      include/linux/fsnotify*.h
8053
8054 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8055 M:      Eric Biggers <ebiggers@kernel.org>
8056 M:      Theodore Y. Ts'o <tytso@mit.edu>
8057 L:      linux-fscrypt@vger.kernel.org
8058 S:      Supported
8059 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8060 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8061 F:      Documentation/filesystems/fsverity.rst
8062 F:      fs/verity/
8063 F:      include/linux/fsverity.h
8064 F:      include/uapi/linux/fsverity.h
8065
8066 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8067 M:      Michael Zaidman <michael.zaidman@gmail.com>
8068 L:      linux-i2c@vger.kernel.org
8069 L:      linux-input@vger.kernel.org
8070 S:      Maintained
8071 F:      drivers/hid/hid-ft260.c
8072
8073 FUJITSU LAPTOP EXTRAS
8074 M:      Jonathan Woithe <jwoithe@just42.net>
8075 L:      platform-driver-x86@vger.kernel.org
8076 S:      Maintained
8077 F:      drivers/platform/x86/fujitsu-laptop.c
8078
8079 FUJITSU M-5MO LS CAMERA ISP DRIVER
8080 M:      Kyungmin Park <kyungmin.park@samsung.com>
8081 M:      Heungjun Kim <riverful.kim@samsung.com>
8082 L:      linux-media@vger.kernel.org
8083 S:      Maintained
8084 F:      drivers/media/i2c/m5mols/
8085 F:      include/media/i2c/m5mols.h
8086
8087 FUJITSU TABLET EXTRAS
8088 M:      Robert Gerlach <khnz@gmx.de>
8089 L:      platform-driver-x86@vger.kernel.org
8090 S:      Maintained
8091 F:      drivers/platform/x86/fujitsu-tablet.c
8092
8093 FUNGIBLE ETHERNET DRIVERS
8094 M:      Dimitris Michailidis <dmichail@fungible.com>
8095 L:      netdev@vger.kernel.org
8096 S:      Supported
8097 F:      drivers/net/ethernet/fungible/
8098
8099 FUSE: FILESYSTEM IN USERSPACE
8100 M:      Miklos Szeredi <miklos@szeredi.hu>
8101 L:      linux-fsdevel@vger.kernel.org
8102 S:      Maintained
8103 W:      https://github.com/libfuse/
8104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8105 F:      Documentation/filesystems/fuse.rst
8106 F:      fs/fuse/
8107 F:      include/uapi/linux/fuse.h
8108
8109 FUTEX SUBSYSTEM
8110 M:      Thomas Gleixner <tglx@linutronix.de>
8111 M:      Ingo Molnar <mingo@redhat.com>
8112 R:      Peter Zijlstra <peterz@infradead.org>
8113 R:      Darren Hart <dvhart@infradead.org>
8114 R:      Davidlohr Bueso <dave@stgolabs.net>
8115 R:      André Almeida <andrealmeid@collabora.com>
8116 L:      linux-kernel@vger.kernel.org
8117 S:      Maintained
8118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8119 F:      Documentation/locking/*futex*
8120 F:      include/asm-generic/futex.h
8121 F:      include/linux/futex.h
8122 F:      include/uapi/linux/futex.h
8123 F:      kernel/futex/*
8124 F:      tools/perf/bench/futex*
8125 F:      tools/testing/selftests/futex/
8126
8127 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8128 M:      Tim Harvey <tharvey@gateworks.com>
8129 M:      Robert Jones <rjones@gateworks.com>
8130 S:      Maintained
8131 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8132 F:      drivers/mfd/gateworks-gsc.c
8133 F:      include/linux/mfd/gsc.h
8134 F:      Documentation/hwmon/gsc-hwmon.rst
8135 F:      drivers/hwmon/gsc-hwmon.c
8136 F:      include/linux/platform_data/gsc_hwmon.h
8137
8138 GCC PLUGINS
8139 M:      Kees Cook <keescook@chromium.org>
8140 L:      linux-hardening@vger.kernel.org
8141 S:      Maintained
8142 F:      Documentation/kbuild/gcc-plugins.rst
8143 F:      scripts/Makefile.gcc-plugins
8144 F:      scripts/gcc-plugins/
8145
8146 GCOV BASED KERNEL PROFILING
8147 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8148 S:      Maintained
8149 F:      Documentation/dev-tools/gcov.rst
8150 F:      kernel/gcov/
8151
8152 GDB KERNEL DEBUGGING HELPER SCRIPTS
8153 M:      Jan Kiszka <jan.kiszka@siemens.com>
8154 M:      Kieran Bingham <kbingham@kernel.org>
8155 S:      Supported
8156 F:      scripts/gdb/
8157
8158 GEMINI CRYPTO DRIVER
8159 M:      Corentin Labbe <clabbe@baylibre.com>
8160 L:      linux-crypto@vger.kernel.org
8161 S:      Maintained
8162 F:      drivers/crypto/gemini/
8163
8164 GEMTEK FM RADIO RECEIVER DRIVER
8165 M:      Hans Verkuil <hverkuil@xs4all.nl>
8166 L:      linux-media@vger.kernel.org
8167 S:      Maintained
8168 W:      https://linuxtv.org
8169 T:      git git://linuxtv.org/media_tree.git
8170 F:      drivers/media/radio/radio-gemtek*
8171
8172 GENERIC ARCHITECTURE TOPOLOGY
8173 M:      Sudeep Holla <sudeep.holla@arm.com>
8174 L:      linux-kernel@vger.kernel.org
8175 S:      Maintained
8176 F:      drivers/base/arch_topology.c
8177 F:      include/linux/arch_topology.h
8178
8179 GENERIC ENTRY CODE
8180 M:      Thomas Gleixner <tglx@linutronix.de>
8181 M:      Peter Zijlstra <peterz@infradead.org>
8182 M:      Andy Lutomirski <luto@kernel.org>
8183 L:      linux-kernel@vger.kernel.org
8184 S:      Maintained
8185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8186 F:      include/linux/entry-common.h
8187 F:      include/linux/entry-kvm.h
8188 F:      kernel/entry/
8189
8190 GENERIC GPIO I2C DRIVER
8191 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8192 S:      Supported
8193 F:      drivers/i2c/busses/i2c-gpio.c
8194 F:      include/linux/platform_data/i2c-gpio.h
8195
8196 GENERIC GPIO I2C MULTIPLEXER DRIVER
8197 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8198 L:      linux-i2c@vger.kernel.org
8199 S:      Supported
8200 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8201 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8202 F:      include/linux/platform_data/i2c-mux-gpio.h
8203
8204 GENERIC HDLC (WAN) DRIVERS
8205 M:      Krzysztof Halasa <khc@pm.waw.pl>
8206 S:      Maintained
8207 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8208 F:      drivers/net/wan/c101.c
8209 F:      drivers/net/wan/hd6457*
8210 F:      drivers/net/wan/hdlc*
8211 F:      drivers/net/wan/n2.c
8212 F:      drivers/net/wan/pc300too.c
8213 F:      drivers/net/wan/pci200syn.c
8214 F:      drivers/net/wan/wanxl*
8215
8216 GENERIC INCLUDE/ASM HEADER FILES
8217 M:      Arnd Bergmann <arnd@arndb.de>
8218 L:      linux-arch@vger.kernel.org
8219 S:      Maintained
8220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8221 F:      include/asm-generic/
8222 F:      include/uapi/asm-generic/
8223
8224 GENERIC PHY FRAMEWORK
8225 M:      Kishon Vijay Abraham I <kishon@ti.com>
8226 M:      Vinod Koul <vkoul@kernel.org>
8227 L:      linux-phy@lists.infradead.org
8228 S:      Supported
8229 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8231 F:      Documentation/devicetree/bindings/phy/
8232 F:      drivers/phy/
8233 F:      include/linux/phy/
8234
8235 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8236 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8237 S:      Supported
8238 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8239
8240 GENERIC PM DOMAINS
8241 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8242 M:      Kevin Hilman <khilman@kernel.org>
8243 M:      Ulf Hansson <ulf.hansson@linaro.org>
8244 L:      linux-pm@vger.kernel.org
8245 S:      Supported
8246 F:      Documentation/devicetree/bindings/power/power?domain*
8247 F:      drivers/base/power/domain*.c
8248 F:      include/linux/pm_domain.h
8249
8250 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8251 M:      Eugen Hristev <eugen.hristev@microchip.com>
8252 L:      linux-input@vger.kernel.org
8253 S:      Maintained
8254 F:      drivers/input/touchscreen/resistive-adc-touch.c
8255
8256 GENERIC STRING LIBRARY
8257 R:      Andy Shevchenko <andy@kernel.org>
8258 S:      Maintained
8259 F:      lib/string.c
8260 F:      lib/string_helpers.c
8261 F:      lib/test_string.c
8262 F:      lib/test-string_helpers.c
8263
8264 GENERIC UIO DRIVER FOR PCI DEVICES
8265 M:      "Michael S. Tsirkin" <mst@redhat.com>
8266 L:      kvm@vger.kernel.org
8267 S:      Supported
8268 F:      drivers/uio/uio_pci_generic.c
8269
8270 GENERIC VDSO LIBRARY
8271 M:      Andy Lutomirski <luto@kernel.org>
8272 M:      Thomas Gleixner <tglx@linutronix.de>
8273 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8274 L:      linux-kernel@vger.kernel.org
8275 S:      Maintained
8276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8277 F:      include/asm-generic/vdso/vsyscall.h
8278 F:      include/vdso/
8279 F:      kernel/time/vsyscall.c
8280 F:      lib/vdso/
8281
8282 GENWQE (IBM Generic Workqueue Card)
8283 M:      Frank Haverkamp <haver@linux.ibm.com>
8284 S:      Supported
8285 F:      drivers/misc/genwqe/
8286
8287 GET_MAINTAINER SCRIPT
8288 M:      Joe Perches <joe@perches.com>
8289 S:      Maintained
8290 F:      scripts/get_maintainer.pl
8291
8292 GFS2 FILE SYSTEM
8293 M:      Bob Peterson <rpeterso@redhat.com>
8294 M:      Andreas Gruenbacher <agruenba@redhat.com>
8295 L:      cluster-devel@redhat.com
8296 S:      Supported
8297 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8299 F:      Documentation/filesystems/gfs2*
8300 F:      fs/gfs2/
8301 F:      include/uapi/linux/gfs2_ondisk.h
8302
8303 GIGABYTE WMI DRIVER
8304 M:      Thomas Weißschuh <thomas@weissschuh.net>
8305 L:      platform-driver-x86@vger.kernel.org
8306 S:      Maintained
8307 F:      drivers/platform/x86/gigabyte-wmi.c
8308
8309 GNSS SUBSYSTEM
8310 M:      Johan Hovold <johan@kernel.org>
8311 S:      Maintained
8312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8313 F:      Documentation/ABI/testing/sysfs-class-gnss
8314 F:      Documentation/devicetree/bindings/gnss/
8315 F:      drivers/gnss/
8316 F:      include/linux/gnss.h
8317
8318 GO7007 MPEG CODEC
8319 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8320 L:      linux-media@vger.kernel.org
8321 S:      Maintained
8322 F:      drivers/media/usb/go7007/
8323
8324 GOODIX TOUCHSCREEN
8325 M:      Bastien Nocera <hadess@hadess.net>
8326 M:      Hans de Goede <hdegoede@redhat.com>
8327 L:      linux-input@vger.kernel.org
8328 S:      Maintained
8329 F:      drivers/input/touchscreen/goodix*
8330
8331 GOOGLE ETHERNET DRIVERS
8332 M:      Jeroen de Borst <jeroendb@google.com>
8333 R:      Catherine Sullivan <csully@google.com>
8334 R:      David Awogbemila <awogbemila@google.com>
8335 L:      netdev@vger.kernel.org
8336 S:      Supported
8337 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8338 F:      drivers/net/ethernet/google
8339
8340 GPD POCKET FAN DRIVER
8341 M:      Hans de Goede <hdegoede@redhat.com>
8342 L:      platform-driver-x86@vger.kernel.org
8343 S:      Maintained
8344 F:      drivers/platform/x86/gpd-pocket-fan.c
8345
8346 GPIO ACPI SUPPORT
8347 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8348 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8349 L:      linux-gpio@vger.kernel.org
8350 L:      linux-acpi@vger.kernel.org
8351 S:      Maintained
8352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8353 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8354 F:      drivers/gpio/gpiolib-acpi.c
8355 F:      drivers/gpio/gpiolib-acpi.h
8356
8357 GPIO AGGREGATOR
8358 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8359 L:      linux-gpio@vger.kernel.org
8360 S:      Supported
8361 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8362 F:      drivers/gpio/gpio-aggregator.c
8363
8364 GPIO IR Transmitter
8365 M:      Sean Young <sean@mess.org>
8366 L:      linux-media@vger.kernel.org
8367 S:      Maintained
8368 F:      drivers/media/rc/gpio-ir-tx.c
8369
8370 GPIO MOCKUP DRIVER
8371 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8372 L:      linux-gpio@vger.kernel.org
8373 S:      Maintained
8374 F:      drivers/gpio/gpio-mockup.c
8375 F:      tools/testing/selftests/gpio/
8376
8377 GPIO REGMAP
8378 R:      Michael Walle <michael@walle.cc>
8379 S:      Maintained
8380 F:      drivers/gpio/gpio-regmap.c
8381 F:      include/linux/gpio/regmap.h
8382
8383 GPIO SUBSYSTEM
8384 M:      Linus Walleij <linus.walleij@linaro.org>
8385 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8386 L:      linux-gpio@vger.kernel.org
8387 S:      Maintained
8388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8389 F:      Documentation/ABI/obsolete/sysfs-gpio
8390 F:      Documentation/ABI/testing/gpio-cdev
8391 F:      Documentation/admin-guide/gpio/
8392 F:      Documentation/devicetree/bindings/gpio/
8393 F:      Documentation/driver-api/gpio/
8394 F:      drivers/gpio/
8395 F:      include/asm-generic/gpio.h
8396 F:      include/linux/gpio.h
8397 F:      include/linux/gpio/
8398 F:      include/linux/of_gpio.h
8399 F:      include/uapi/linux/gpio.h
8400 F:      tools/gpio/
8401
8402 GRE DEMULTIPLEXER DRIVER
8403 M:      Dmitry Kozlov <xeb@mail.ru>
8404 L:      netdev@vger.kernel.org
8405 S:      Maintained
8406 F:      include/net/gre.h
8407 F:      net/ipv4/gre_demux.c
8408 F:      net/ipv4/gre_offload.c
8409
8410 GRETH 10/100/1G Ethernet MAC device driver
8411 M:      Andreas Larsson <andreas@gaisler.com>
8412 L:      netdev@vger.kernel.org
8413 S:      Maintained
8414 F:      drivers/net/ethernet/aeroflex/
8415
8416 GREYBUS AUDIO PROTOCOLS DRIVERS
8417 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8418 M:      Mark Greer <mgreer@animalcreek.com>
8419 S:      Maintained
8420 F:      drivers/staging/greybus/audio_apbridgea.c
8421 F:      drivers/staging/greybus/audio_apbridgea.h
8422 F:      drivers/staging/greybus/audio_codec.c
8423 F:      drivers/staging/greybus/audio_codec.h
8424 F:      drivers/staging/greybus/audio_gb.c
8425 F:      drivers/staging/greybus/audio_manager.c
8426 F:      drivers/staging/greybus/audio_manager.h
8427 F:      drivers/staging/greybus/audio_manager_module.c
8428 F:      drivers/staging/greybus/audio_manager_private.h
8429 F:      drivers/staging/greybus/audio_manager_sysfs.c
8430 F:      drivers/staging/greybus/audio_module.c
8431 F:      drivers/staging/greybus/audio_topology.c
8432
8433 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8434 M:      Viresh Kumar <vireshk@kernel.org>
8435 S:      Maintained
8436 F:      drivers/staging/greybus/authentication.c
8437 F:      drivers/staging/greybus/bootrom.c
8438 F:      drivers/staging/greybus/firmware.h
8439 F:      drivers/staging/greybus/fw-core.c
8440 F:      drivers/staging/greybus/fw-download.c
8441 F:      drivers/staging/greybus/fw-management.c
8442 F:      drivers/staging/greybus/greybus_authentication.h
8443 F:      drivers/staging/greybus/greybus_firmware.h
8444 F:      drivers/staging/greybus/hid.c
8445 F:      drivers/staging/greybus/i2c.c
8446 F:      drivers/staging/greybus/spi.c
8447 F:      drivers/staging/greybus/spilib.c
8448 F:      drivers/staging/greybus/spilib.h
8449
8450 GREYBUS LOOPBACK DRIVER
8451 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8452 S:      Maintained
8453 F:      drivers/staging/greybus/loopback.c
8454
8455 GREYBUS PLATFORM DRIVERS
8456 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8457 S:      Maintained
8458 F:      drivers/staging/greybus/arche-apb-ctrl.c
8459 F:      drivers/staging/greybus/arche-platform.c
8460 F:      drivers/staging/greybus/arche_platform.h
8461
8462 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8463 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8464 S:      Maintained
8465 F:      drivers/staging/greybus/gpio.c
8466 F:      drivers/staging/greybus/light.c
8467 F:      drivers/staging/greybus/power_supply.c
8468 F:      drivers/staging/greybus/sdio.c
8469 F:      drivers/staging/greybus/spi.c
8470 F:      drivers/staging/greybus/spilib.c
8471
8472 GREYBUS SUBSYSTEM
8473 M:      Johan Hovold <johan@kernel.org>
8474 M:      Alex Elder <elder@kernel.org>
8475 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8476 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8477 S:      Maintained
8478 F:      drivers/greybus/
8479 F:      drivers/staging/greybus/
8480 F:      include/linux/greybus.h
8481 F:      include/linux/greybus/
8482
8483 GREYBUS UART PROTOCOLS DRIVERS
8484 M:      David Lin <dtwlin@gmail.com>
8485 S:      Maintained
8486 F:      drivers/staging/greybus/log.c
8487 F:      drivers/staging/greybus/uart.c
8488
8489 GS1662 VIDEO SERIALIZER
8490 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8491 L:      linux-media@vger.kernel.org
8492 S:      Maintained
8493 T:      git git://linuxtv.org/media_tree.git
8494 F:      drivers/media/spi/gs1662.c
8495
8496 GSPCA FINEPIX SUBDRIVER
8497 M:      Frank Zago <frank@zago.net>
8498 L:      linux-media@vger.kernel.org
8499 S:      Maintained
8500 T:      git git://linuxtv.org/media_tree.git
8501 F:      drivers/media/usb/gspca/finepix.c
8502
8503 GSPCA GL860 SUBDRIVER
8504 M:      Olivier Lorin <o.lorin@laposte.net>
8505 L:      linux-media@vger.kernel.org
8506 S:      Maintained
8507 T:      git git://linuxtv.org/media_tree.git
8508 F:      drivers/media/usb/gspca/gl860/
8509
8510 GSPCA M5602 SUBDRIVER
8511 M:      Erik Andren <erik.andren@gmail.com>
8512 L:      linux-media@vger.kernel.org
8513 S:      Maintained
8514 T:      git git://linuxtv.org/media_tree.git
8515 F:      drivers/media/usb/gspca/m5602/
8516
8517 GSPCA PAC207 SONIXB SUBDRIVER
8518 M:      Hans Verkuil <hverkuil@xs4all.nl>
8519 L:      linux-media@vger.kernel.org
8520 S:      Odd Fixes
8521 T:      git git://linuxtv.org/media_tree.git
8522 F:      drivers/media/usb/gspca/pac207.c
8523
8524 GSPCA SN9C20X SUBDRIVER
8525 M:      Brian Johnson <brijohn@gmail.com>
8526 L:      linux-media@vger.kernel.org
8527 S:      Maintained
8528 T:      git git://linuxtv.org/media_tree.git
8529 F:      drivers/media/usb/gspca/sn9c20x.c
8530
8531 GSPCA T613 SUBDRIVER
8532 M:      Leandro Costantino <lcostantino@gmail.com>
8533 L:      linux-media@vger.kernel.org
8534 S:      Maintained
8535 T:      git git://linuxtv.org/media_tree.git
8536 F:      drivers/media/usb/gspca/t613.c
8537
8538 GSPCA USB WEBCAM DRIVER
8539 M:      Hans Verkuil <hverkuil@xs4all.nl>
8540 L:      linux-media@vger.kernel.org
8541 S:      Odd Fixes
8542 T:      git git://linuxtv.org/media_tree.git
8543 F:      drivers/media/usb/gspca/
8544
8545 GTP (GPRS Tunneling Protocol)
8546 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8547 M:      Harald Welte <laforge@gnumonks.org>
8548 L:      osmocom-net-gprs@lists.osmocom.org
8549 S:      Maintained
8550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8551 F:      drivers/net/gtp.c
8552
8553 GUID PARTITION TABLE (GPT)
8554 M:      Davidlohr Bueso <dave@stgolabs.net>
8555 L:      linux-efi@vger.kernel.org
8556 S:      Maintained
8557 F:      block/partitions/efi.*
8558
8559 H8/300 ARCHITECTURE
8560 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8561 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8562 S:      Maintained
8563 W:      http://uclinux-h8.sourceforge.jp
8564 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8565 F:      arch/h8300/
8566 F:      drivers/clk/h8300/
8567 F:      drivers/clocksource/h8300_*.c
8568 F:      drivers/irqchip/irq-renesas-h8*.c
8569
8570 HABANALABS PCI DRIVER
8571 M:      Oded Gabbay <ogabbay@kernel.org>
8572 S:      Supported
8573 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8574 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8575 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8576 F:      drivers/misc/habanalabs/
8577 F:      include/uapi/misc/habanalabs.h
8578
8579 HACKRF MEDIA DRIVER
8580 M:      Antti Palosaari <crope@iki.fi>
8581 L:      linux-media@vger.kernel.org
8582 S:      Maintained
8583 W:      https://linuxtv.org
8584 W:      http://palosaari.fi/linux/
8585 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8586 T:      git git://linuxtv.org/anttip/media_tree.git
8587 F:      drivers/media/usb/hackrf/
8588
8589 HANTRO VPU CODEC DRIVER
8590 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8591 M:      Philipp Zabel <p.zabel@pengutronix.de>
8592 L:      linux-media@vger.kernel.org
8593 L:      linux-rockchip@lists.infradead.org
8594 S:      Maintained
8595 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8596 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8597 F:      drivers/staging/media/hantro/
8598
8599 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8600 M:      Frank Seidel <frank@f-seidel.de>
8601 L:      platform-driver-x86@vger.kernel.org
8602 S:      Maintained
8603 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8604 F:      drivers/platform/x86/hdaps.c
8605
8606 HARDWARE MONITORING
8607 M:      Jean Delvare <jdelvare@suse.com>
8608 M:      Guenter Roeck <linux@roeck-us.net>
8609 L:      linux-hwmon@vger.kernel.org
8610 S:      Maintained
8611 W:      http://hwmon.wiki.kernel.org/
8612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8613 F:      Documentation/ABI/testing/sysfs-class-hwmon
8614 F:      Documentation/devicetree/bindings/hwmon/
8615 F:      Documentation/hwmon/
8616 F:      drivers/hwmon/
8617 F:      include/linux/hwmon*.h
8618 F:      include/trace/events/hwmon*.h
8619 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8620
8621 HARDWARE RANDOM NUMBER GENERATOR CORE
8622 M:      Matt Mackall <mpm@selenic.com>
8623 M:      Herbert Xu <herbert@gondor.apana.org.au>
8624 L:      linux-crypto@vger.kernel.org
8625 S:      Odd fixes
8626 F:      Documentation/admin-guide/hw_random.rst
8627 F:      Documentation/devicetree/bindings/rng/
8628 F:      drivers/char/hw_random/
8629 F:      include/linux/hw_random.h
8630
8631 HARDWARE SPINLOCK CORE
8632 M:      Ohad Ben-Cohen <ohad@wizery.com>
8633 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8634 R:      Baolin Wang <baolin.wang7@gmail.com>
8635 L:      linux-remoteproc@vger.kernel.org
8636 S:      Maintained
8637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8638 F:      Documentation/devicetree/bindings/hwlock/
8639 F:      Documentation/locking/hwspinlock.rst
8640 F:      drivers/hwspinlock/
8641 F:      include/linux/hwspinlock.h
8642
8643 HARDWARE TRACING FACILITIES
8644 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8645 S:      Maintained
8646 F:      drivers/hwtracing/
8647
8648 HARMONY SOUND DRIVER
8649 L:      linux-parisc@vger.kernel.org
8650 S:      Maintained
8651 F:      sound/parisc/harmony.*
8652
8653 HDPVR USB VIDEO ENCODER DRIVER
8654 M:      Hans Verkuil <hverkuil@xs4all.nl>
8655 L:      linux-media@vger.kernel.org
8656 S:      Odd Fixes
8657 W:      https://linuxtv.org
8658 T:      git git://linuxtv.org/media_tree.git
8659 F:      drivers/media/usb/hdpvr/
8660
8661 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8662 M:      Matt Hsiao <matt.hsiao@hpe.com>
8663 S:      Supported
8664 F:      drivers/misc/hpilo.[ch]
8665
8666 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8667 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8668 S:      Supported
8669 F:      Documentation/watchdog/hpwdt.rst
8670 F:      drivers/watchdog/hpwdt.c
8671
8672 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8673 M:      Don Brace <don.brace@microchip.com>
8674 L:      storagedev@microchip.com
8675 L:      linux-scsi@vger.kernel.org
8676 S:      Supported
8677 F:      Documentation/scsi/hpsa.rst
8678 F:      drivers/scsi/hpsa*.[ch]
8679 F:      include/linux/cciss*.h
8680 F:      include/uapi/linux/cciss*.h
8681
8682 HFI1 DRIVER
8683 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8684 L:      linux-rdma@vger.kernel.org
8685 S:      Supported
8686 F:      drivers/infiniband/hw/hfi1
8687
8688 HFS FILESYSTEM
8689 L:      linux-fsdevel@vger.kernel.org
8690 S:      Orphan
8691 F:      Documentation/filesystems/hfs.rst
8692 F:      fs/hfs/
8693
8694 HFSPLUS FILESYSTEM
8695 L:      linux-fsdevel@vger.kernel.org
8696 S:      Orphan
8697 F:      Documentation/filesystems/hfsplus.rst
8698 F:      fs/hfsplus/
8699
8700 HGA FRAMEBUFFER DRIVER
8701 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8702 L:      linux-nvidia@lists.surfsouth.com
8703 S:      Maintained
8704 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8705 F:      drivers/video/fbdev/hgafb.c
8706
8707 HIBERNATION (aka Software Suspend, aka swsusp)
8708 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8709 M:      Pavel Machek <pavel@ucw.cz>
8710 L:      linux-pm@vger.kernel.org
8711 S:      Supported
8712 B:      https://bugzilla.kernel.org
8713 F:      arch/*/include/asm/suspend*.h
8714 F:      arch/x86/power/
8715 F:      drivers/base/power/
8716 F:      include/linux/freezer.h
8717 F:      include/linux/pm.h
8718 F:      include/linux/suspend.h
8719 F:      kernel/power/
8720
8721 HID CORE LAYER
8722 M:      Jiri Kosina <jikos@kernel.org>
8723 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8724 L:      linux-input@vger.kernel.org
8725 S:      Maintained
8726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8727 F:      drivers/hid/
8728 F:      include/linux/hid*
8729 F:      include/uapi/linux/hid*
8730
8731 HID LOGITECH DRIVERS
8732 R:      Filipe Laíns <lains@riseup.net>
8733 L:      linux-input@vger.kernel.org
8734 S:      Maintained
8735 F:      drivers/hid/hid-logitech-*
8736
8737 HID PLAYSTATION DRIVER
8738 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8739 L:      linux-input@vger.kernel.org
8740 S:      Supported
8741 F:      drivers/hid/hid-playstation.c
8742
8743 HID SENSOR HUB DRIVERS
8744 M:      Jiri Kosina <jikos@kernel.org>
8745 M:      Jonathan Cameron <jic23@kernel.org>
8746 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8747 L:      linux-input@vger.kernel.org
8748 L:      linux-iio@vger.kernel.org
8749 S:      Maintained
8750 F:      Documentation/hid/hid-sensor*
8751 F:      drivers/hid/hid-sensor-*
8752 F:      drivers/iio/*/hid-*
8753 F:      include/linux/hid-sensor-*
8754
8755 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8756 M:      Thomas Gleixner <tglx@linutronix.de>
8757 L:      linux-kernel@vger.kernel.org
8758 S:      Maintained
8759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8760 F:      Documentation/timers/
8761 F:      include/linux/clockchips.h
8762 F:      include/linux/hrtimer.h
8763 F:      kernel/time/clockevents.c
8764 F:      kernel/time/hrtimer.c
8765 F:      kernel/time/timer_*.c
8766
8767 HIGH-SPEED SCC DRIVER FOR AX.25
8768 L:      linux-hams@vger.kernel.org
8769 S:      Orphan
8770 F:      drivers/net/hamradio/dmascc.c
8771 F:      drivers/net/hamradio/scc.c
8772
8773 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8774 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8775 S:      Supported
8776 W:      http://www.highpoint-tech.com
8777 F:      Documentation/scsi/hptiop.rst
8778 F:      drivers/scsi/hptiop.c
8779
8780 HIPPI
8781 M:      Jes Sorensen <jes@trained-monkey.org>
8782 L:      linux-hippi@sunsite.dk
8783 S:      Maintained
8784 F:      drivers/net/hippi/
8785 F:      include/linux/hippidevice.h
8786 F:      include/uapi/linux/if_hippi.h
8787 F:      net/802/hippi.c
8788
8789 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8790 M:      Kurt Kanzenbach <kurt@linutronix.de>
8791 L:      netdev@vger.kernel.org
8792 S:      Maintained
8793 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8794 F:      drivers/net/dsa/hirschmann/*
8795 F:      include/linux/platform_data/hirschmann-hellcreek.h
8796 F:      net/dsa/tag_hellcreek.c
8797
8798 HISILICON DMA DRIVER
8799 M:      Zhou Wang <wangzhou1@hisilicon.com>
8800 L:      dmaengine@vger.kernel.org
8801 S:      Maintained
8802 F:      drivers/dma/hisi_dma.c
8803
8804 HISILICON GPIO DRIVER
8805 M:      Luo Jiaxing <luojiaxing@huawei.com>
8806 L:      linux-gpio@vger.kernel.org
8807 S:      Maintained
8808 F:      drivers/gpio/gpio-hisi.c
8809
8810 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8811 M:      Longfang Liu <liulongfang@huawei.com>
8812 L:      linux-crypto@vger.kernel.org
8813 S:      Maintained
8814 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8815 F:      drivers/crypto/hisilicon/hpre/hpre.h
8816 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8817 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8818
8819 HISILICON I2C CONTROLLER DRIVER
8820 M:      Yicong Yang <yangyicong@hisilicon.com>
8821 L:      linux-i2c@vger.kernel.org
8822 S:      Maintained
8823 W:      https://www.hisilicon.com
8824 F:      drivers/i2c/busses/i2c-hisi.c
8825
8826 HISILICON LPC BUS DRIVER
8827 M:      john.garry@huawei.com
8828 S:      Maintained
8829 W:      http://www.hisilicon.com
8830 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8831 F:      drivers/bus/hisi_lpc.c
8832
8833 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8834 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8835 M:      Salil Mehta <salil.mehta@huawei.com>
8836 L:      netdev@vger.kernel.org
8837 S:      Maintained
8838 W:      http://www.hisilicon.com
8839 F:      drivers/net/ethernet/hisilicon/hns3/
8840
8841 HISILICON NETWORK SUBSYSTEM DRIVER
8842 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8843 M:      Salil Mehta <salil.mehta@huawei.com>
8844 L:      netdev@vger.kernel.org
8845 S:      Maintained
8846 W:      http://www.hisilicon.com
8847 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8848 F:      drivers/net/ethernet/hisilicon/
8849
8850 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8851 M:      John Stultz <john.stultz@linaro.org>
8852 L:      linux-kernel@vger.kernel.org
8853 S:      Maintained
8854 F:      drivers/misc/hisi_hikey_usb.c
8855
8856 HISILICON PMU DRIVER
8857 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8858 M:      Qi Liu <liuqi115@huawei.com>
8859 S:      Supported
8860 W:      http://www.hisilicon.com
8861 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8862 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8863 F:      drivers/perf/hisilicon
8864
8865 HISILICON QM AND ZIP Controller DRIVER
8866 M:      Zhou Wang <wangzhou1@hisilicon.com>
8867 L:      linux-crypto@vger.kernel.org
8868 S:      Maintained
8869 F:      Documentation/ABI/testing/debugfs-hisi-zip
8870 F:      drivers/crypto/hisilicon/qm.c
8871 F:      drivers/crypto/hisilicon/sgl.c
8872 F:      drivers/crypto/hisilicon/zip/
8873 F:      include/linux/hisi_acc_qm.h
8874
8875 HISILICON ROCE DRIVER
8876 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8877 M:      Weihang Li <liweihang@huawei.com>
8878 L:      linux-rdma@vger.kernel.org
8879 S:      Maintained
8880 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8881 F:      drivers/infiniband/hw/hns/
8882
8883 HISILICON SAS Controller
8884 M:      John Garry <john.garry@huawei.com>
8885 S:      Supported
8886 W:      http://www.hisilicon.com
8887 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8888 F:      drivers/scsi/hisi_sas/
8889
8890 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8891 M:      Kai Ye <yekai13@huawei.com>
8892 M:      Longfang Liu <liulongfang@huawei.com>
8893 L:      linux-crypto@vger.kernel.org
8894 S:      Maintained
8895 F:      Documentation/ABI/testing/debugfs-hisi-sec
8896 F:      drivers/crypto/hisilicon/sec2/sec.h
8897 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8898 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8899 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8900
8901 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8902 M:      Jay Fang <f.fangjian@huawei.com>
8903 L:      linux-spi@vger.kernel.org
8904 S:      Maintained
8905 W:      http://www.hisilicon.com
8906 F:      drivers/spi/spi-hisi-kunpeng.c
8907
8908 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8909 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8910 L:      linux-kernel@vger.kernel.org
8911 S:      Maintained
8912 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8913 F:      drivers/spmi/hisi-spmi-controller.c
8914
8915 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8916 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8917 L:      linux-kernel@vger.kernel.org
8918 S:      Maintained
8919 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8920 F:      drivers/mfd/hi6421-spmi-pmic.c
8921
8922 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8923 M:      Weili Qian <qianweili@huawei.com>
8924 S:      Maintained
8925 F:      drivers/crypto/hisilicon/trng/trng.c
8926
8927 HISILICON V3XX SPI NOR FLASH Controller Driver
8928 M:      John Garry <john.garry@huawei.com>
8929 S:      Maintained
8930 W:      http://www.hisilicon.com
8931 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8932
8933 HMM - Heterogeneous Memory Management
8934 M:      Jérôme Glisse <jglisse@redhat.com>
8935 L:      linux-mm@kvack.org
8936 S:      Maintained
8937 F:      Documentation/vm/hmm.rst
8938 F:      include/linux/hmm*
8939 F:      lib/test_hmm*
8940 F:      mm/hmm*
8941 F:      tools/testing/selftests/vm/*hmm*
8942
8943 HOST AP DRIVER
8944 M:      Jouni Malinen <j@w1.fi>
8945 L:      linux-wireless@vger.kernel.org
8946 S:      Obsolete
8947 W:      http://w1.fi/hostap-driver.html
8948 F:      drivers/net/wireless/intersil/hostap/
8949
8950 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8951 L:      platform-driver-x86@vger.kernel.org
8952 S:      Orphan
8953 F:      drivers/platform/x86/tc1100-wmi.c
8954
8955 HPET:   High Precision Event Timers driver
8956 M:      Clemens Ladisch <clemens@ladisch.de>
8957 S:      Maintained
8958 F:      Documentation/timers/hpet.rst
8959 F:      drivers/char/hpet.c
8960 F:      include/linux/hpet.h
8961 F:      include/uapi/linux/hpet.h
8962
8963 HPET:   x86
8964 S:      Orphan
8965 F:      arch/x86/include/asm/hpet.h
8966 F:      arch/x86/kernel/hpet.c
8967
8968 HPFS FILESYSTEM
8969 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8970 S:      Maintained
8971 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8972 F:      fs/hpfs/
8973
8974 HSI SUBSYSTEM
8975 M:      Sebastian Reichel <sre@kernel.org>
8976 S:      Maintained
8977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8978 F:      Documentation/ABI/testing/sysfs-bus-hsi
8979 F:      Documentation/driver-api/hsi.rst
8980 F:      drivers/hsi/
8981 F:      include/linux/hsi/
8982 F:      include/uapi/linux/hsi/
8983
8984 HSO 3G MODEM DRIVER
8985 L:      linux-usb@vger.kernel.org
8986 S:      Orphan
8987 F:      drivers/net/usb/hso.c
8988
8989 HSR NETWORK PROTOCOL
8990 L:      netdev@vger.kernel.org
8991 S:      Orphan
8992 F:      net/hsr/
8993
8994 HT16K33 LED CONTROLLER DRIVER
8995 M:      Robin van der Gracht <robin@protonic.nl>
8996 S:      Maintained
8997 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8998 F:      drivers/auxdisplay/ht16k33.c
8999
9000 HTCPEN TOUCHSCREEN DRIVER
9001 M:      Pau Oliva Fora <pof@eslack.org>
9002 L:      linux-input@vger.kernel.org
9003 S:      Maintained
9004 F:      drivers/input/touchscreen/htcpen.c
9005
9006 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9007 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
9008 L:      linux-iio@vger.kernel.org
9009 S:      Maintained
9010 W:      http://www.st.com/
9011 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9012 F:      drivers/iio/humidity/hts221*
9013
9014 HUAWEI ETHERNET DRIVER
9015 L:      netdev@vger.kernel.org
9016 S:      Orphan
9017 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9018 F:      drivers/net/ethernet/huawei/hinic/
9019
9020 HUGETLB FILESYSTEM
9021 M:      Mike Kravetz <mike.kravetz@oracle.com>
9022 L:      linux-mm@kvack.org
9023 S:      Maintained
9024 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9025 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9026 F:      Documentation/vm/hugetlbfs_reserv.rst
9027 F:      fs/hugetlbfs/
9028 F:      include/linux/hugetlb.h
9029 F:      mm/hugetlb.c
9030
9031 HVA ST MEDIA DRIVER
9032 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9033 L:      linux-media@vger.kernel.org
9034 S:      Supported
9035 W:      https://linuxtv.org
9036 T:      git git://linuxtv.org/media_tree.git
9037 F:      drivers/media/platform/st/sti/hva
9038
9039 HWPOISON MEMORY FAILURE HANDLING
9040 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9041 L:      linux-mm@kvack.org
9042 S:      Maintained
9043 F:      mm/hwpoison-inject.c
9044 F:      mm/memory-failure.c
9045
9046 HYCON HY46XX TOUCHSCREEN SUPPORT
9047 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9048 L:      linux-input@vger.kernel.org
9049 S:      Maintained
9050 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9051 F:      drivers/input/touchscreen/hycon-hy46xx.c
9052
9053 HYGON PROCESSOR SUPPORT
9054 M:      Pu Wen <puwen@hygon.cn>
9055 L:      linux-kernel@vger.kernel.org
9056 S:      Maintained
9057 F:      arch/x86/kernel/cpu/hygon.c
9058
9059 HYNIX HI556 SENSOR DRIVER
9060 M:      Shawn Tu <shawnx.tu@intel.com>
9061 L:      linux-media@vger.kernel.org
9062 S:      Maintained
9063 T:      git git://linuxtv.org/media_tree.git
9064 F:      drivers/media/i2c/hi556.c
9065
9066 HYNIX HI846 SENSOR DRIVER
9067 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9068 L:      linux-media@vger.kernel.org
9069 S:      Maintained
9070 F:      drivers/media/i2c/hi846.c
9071
9072 HYNIX HI847 SENSOR DRIVER
9073 M:      Shawn Tu <shawnx.tu@intel.com>
9074 L:      linux-media@vger.kernel.org
9075 S:      Maintained
9076 F:      drivers/media/i2c/hi847.c
9077
9078 Hyper-V/Azure CORE AND DRIVERS
9079 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9080 M:      Haiyang Zhang <haiyangz@microsoft.com>
9081 M:      Stephen Hemminger <sthemmin@microsoft.com>
9082 M:      Wei Liu <wei.liu@kernel.org>
9083 M:      Dexuan Cui <decui@microsoft.com>
9084 L:      linux-hyperv@vger.kernel.org
9085 S:      Supported
9086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9087 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9088 F:      Documentation/ABI/testing/debugfs-hyperv
9089 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9090 F:      arch/arm64/hyperv
9091 F:      arch/arm64/include/asm/hyperv-tlfs.h
9092 F:      arch/arm64/include/asm/mshyperv.h
9093 F:      arch/x86/hyperv
9094 F:      arch/x86/include/asm/hyperv-tlfs.h
9095 F:      arch/x86/include/asm/mshyperv.h
9096 F:      arch/x86/include/asm/trace/hyperv.h
9097 F:      arch/x86/kernel/cpu/mshyperv.c
9098 F:      drivers/clocksource/hyperv_timer.c
9099 F:      drivers/hid/hid-hyperv.c
9100 F:      drivers/hv/
9101 F:      drivers/input/serio/hyperv-keyboard.c
9102 F:      drivers/iommu/hyperv-iommu.c
9103 F:      drivers/net/ethernet/microsoft/
9104 F:      drivers/net/hyperv/
9105 F:      drivers/pci/controller/pci-hyperv-intf.c
9106 F:      drivers/pci/controller/pci-hyperv.c
9107 F:      drivers/scsi/storvsc_drv.c
9108 F:      drivers/uio/uio_hv_generic.c
9109 F:      drivers/video/fbdev/hyperv_fb.c
9110 F:      include/asm-generic/hyperv-tlfs.h
9111 F:      include/asm-generic/mshyperv.h
9112 F:      include/clocksource/hyperv_timer.h
9113 F:      include/linux/hyperv.h
9114 F:      include/uapi/linux/hyperv.h
9115 F:      net/vmw_vsock/hyperv_transport.c
9116 F:      tools/hv/
9117
9118 HYPERBUS SUPPORT
9119 M:      Vignesh Raghavendra <vigneshr@ti.com>
9120 L:      linux-mtd@lists.infradead.org
9121 S:      Supported
9122 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9123 C:      irc://irc.oftc.net/mtd
9124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9125 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9126 F:      drivers/mtd/hyperbus/
9127 F:      include/linux/mtd/hyperbus.h
9128
9129 HYPERVISOR VIRTUAL CONSOLE DRIVER
9130 L:      linuxppc-dev@lists.ozlabs.org
9131 S:      Odd Fixes
9132 F:      drivers/tty/hvc/
9133
9134 I2C ACPI SUPPORT
9135 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9136 L:      linux-i2c@vger.kernel.org
9137 L:      linux-acpi@vger.kernel.org
9138 S:      Maintained
9139 F:      drivers/i2c/i2c-core-acpi.c
9140
9141 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9142 M:      Ajay Gupta <ajayg@nvidia.com>
9143 L:      linux-i2c@vger.kernel.org
9144 S:      Maintained
9145 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9146 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9147
9148 I2C MUXES
9149 M:      Peter Rosin <peda@axentia.se>
9150 L:      linux-i2c@vger.kernel.org
9151 S:      Maintained
9152 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9153 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9154 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9155 F:      Documentation/i2c/i2c-topology.rst
9156 F:      Documentation/i2c/muxes/
9157 F:      drivers/i2c/i2c-mux.c
9158 F:      drivers/i2c/muxes/
9159 F:      include/linux/i2c-mux.h
9160
9161 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9162 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9163 L:      linux-i2c@vger.kernel.org
9164 S:      Maintained
9165 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9166 F:      drivers/i2c/busses/i2c-mv64xxx.c
9167
9168 I2C OVER PARALLEL PORT
9169 M:      Jean Delvare <jdelvare@suse.com>
9170 L:      linux-i2c@vger.kernel.org
9171 S:      Maintained
9172 F:      Documentation/i2c/busses/i2c-parport.rst
9173 F:      drivers/i2c/busses/i2c-parport.c
9174
9175 I2C SUBSYSTEM
9176 M:      Wolfram Sang <wsa@kernel.org>
9177 L:      linux-i2c@vger.kernel.org
9178 S:      Maintained
9179 W:      https://i2c.wiki.kernel.org/
9180 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9182 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9183 F:      Documentation/i2c/
9184 F:      drivers/i2c/*
9185 F:      include/linux/i2c-dev.h
9186 F:      include/linux/i2c-smbus.h
9187 F:      include/linux/i2c.h
9188 F:      include/uapi/linux/i2c-*.h
9189 F:      include/uapi/linux/i2c.h
9190
9191 I2C SUBSYSTEM HOST DRIVERS
9192 L:      linux-i2c@vger.kernel.org
9193 S:      Odd Fixes
9194 W:      https://i2c.wiki.kernel.org/
9195 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9197 F:      Documentation/devicetree/bindings/i2c/
9198 F:      drivers/i2c/algos/
9199 F:      drivers/i2c/busses/
9200
9201 I2C-TAOS-EVM DRIVER
9202 M:      Jean Delvare <jdelvare@suse.com>
9203 L:      linux-i2c@vger.kernel.org
9204 S:      Maintained
9205 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9206 F:      drivers/i2c/busses/i2c-taos-evm.c
9207
9208 I2C-TINY-USB DRIVER
9209 M:      Till Harbaum <till@harbaum.org>
9210 L:      linux-i2c@vger.kernel.org
9211 S:      Maintained
9212 W:      http://www.harbaum.org/till/i2c_tiny_usb
9213 F:      drivers/i2c/busses/i2c-tiny-usb.c
9214
9215 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9216 M:      Jean Delvare <jdelvare@suse.com>
9217 L:      linux-i2c@vger.kernel.org
9218 S:      Maintained
9219 F:      Documentation/i2c/busses/i2c-ali1535.rst
9220 F:      Documentation/i2c/busses/i2c-ali1563.rst
9221 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9222 F:      Documentation/i2c/busses/i2c-amd756.rst
9223 F:      Documentation/i2c/busses/i2c-amd8111.rst
9224 F:      Documentation/i2c/busses/i2c-i801.rst
9225 F:      Documentation/i2c/busses/i2c-nforce2.rst
9226 F:      Documentation/i2c/busses/i2c-piix4.rst
9227 F:      Documentation/i2c/busses/i2c-sis5595.rst
9228 F:      Documentation/i2c/busses/i2c-sis630.rst
9229 F:      Documentation/i2c/busses/i2c-sis96x.rst
9230 F:      Documentation/i2c/busses/i2c-via.rst
9231 F:      Documentation/i2c/busses/i2c-viapro.rst
9232 F:      drivers/i2c/busses/i2c-ali1535.c
9233 F:      drivers/i2c/busses/i2c-ali1563.c
9234 F:      drivers/i2c/busses/i2c-ali15x3.c
9235 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9236 F:      drivers/i2c/busses/i2c-amd756.c
9237 F:      drivers/i2c/busses/i2c-amd8111.c
9238 F:      drivers/i2c/busses/i2c-i801.c
9239 F:      drivers/i2c/busses/i2c-isch.c
9240 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9241 F:      drivers/i2c/busses/i2c-nforce2.c
9242 F:      drivers/i2c/busses/i2c-piix4.c
9243 F:      drivers/i2c/busses/i2c-sis5595.c
9244 F:      drivers/i2c/busses/i2c-sis630.c
9245 F:      drivers/i2c/busses/i2c-sis96x.c
9246 F:      drivers/i2c/busses/i2c-via.c
9247 F:      drivers/i2c/busses/i2c-viapro.c
9248
9249 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9250 M:      Hans de Goede <hdegoede@redhat.com>
9251 L:      linux-i2c@vger.kernel.org
9252 S:      Maintained
9253 F:      drivers/i2c/busses/i2c-cht-wc.c
9254
9255 I2C/SMBUS ISMT DRIVER
9256 M:      Seth Heasley <seth.heasley@intel.com>
9257 M:      Neil Horman <nhorman@tuxdriver.com>
9258 L:      linux-i2c@vger.kernel.org
9259 F:      Documentation/i2c/busses/i2c-ismt.rst
9260 F:      drivers/i2c/busses/i2c-ismt.c
9261
9262 I2C/SMBUS STUB DRIVER
9263 M:      Jean Delvare <jdelvare@suse.com>
9264 L:      linux-i2c@vger.kernel.org
9265 S:      Maintained
9266 F:      drivers/i2c/i2c-stub.c
9267
9268 I3C DRIVER FOR CADENCE I3C MASTER IP
9269 M:      Przemysław Gaj <pgaj@cadence.com>
9270 S:      Maintained
9271 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
9272 F:      drivers/i3c/master/i3c-master-cdns.c
9273
9274 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9275 M:      Vitor Soares <vitor.soares@synopsys.com>
9276 S:      Maintained
9277 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
9278 F:      drivers/i3c/master/dw*
9279
9280 I3C SUBSYSTEM
9281 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9282 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9283 S:      Maintained
9284 C:      irc://chat.freenode.net/linux-i3c
9285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9286 F:      Documentation/ABI/testing/sysfs-bus-i3c
9287 F:      Documentation/devicetree/bindings/i3c/
9288 F:      Documentation/driver-api/i3c
9289 F:      drivers/i3c/
9290 F:      include/linux/i3c/
9291
9292 IA64 (Itanium) PLATFORM
9293 L:      linux-ia64@vger.kernel.org
9294 S:      Orphan
9295 F:      Documentation/ia64/
9296 F:      arch/ia64/
9297
9298 IBM Power 842 compression accelerator
9299 M:      Haren Myneni <haren@us.ibm.com>
9300 S:      Supported
9301 F:      crypto/842.c
9302 F:      drivers/crypto/nx/Kconfig
9303 F:      drivers/crypto/nx/Makefile
9304 F:      drivers/crypto/nx/nx-842*
9305 F:      include/linux/sw842.h
9306 F:      lib/842/
9307
9308 IBM Power in-Nest Crypto Acceleration
9309 M:      Breno Leitão <leitao@debian.org>
9310 M:      Nayna Jain <nayna@linux.ibm.com>
9311 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9312 L:      linux-crypto@vger.kernel.org
9313 S:      Supported
9314 F:      drivers/crypto/nx/Kconfig
9315 F:      drivers/crypto/nx/Makefile
9316 F:      drivers/crypto/nx/nx-aes*
9317 F:      drivers/crypto/nx/nx-sha*
9318 F:      drivers/crypto/nx/nx.*
9319 F:      drivers/crypto/nx/nx_csbcpb.h
9320 F:      drivers/crypto/nx/nx_debugfs.c
9321
9322 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9323 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9324 L:      linux-pci@vger.kernel.org
9325 L:      linuxppc-dev@lists.ozlabs.org
9326 S:      Supported
9327 F:      drivers/pci/hotplug/rpadlpar*
9328
9329 IBM Power Linux RAID adapter
9330 M:      Brian King <brking@us.ibm.com>
9331 S:      Supported
9332 F:      drivers/scsi/ipr.*
9333
9334 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9335 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9336 L:      linux-pci@vger.kernel.org
9337 L:      linuxppc-dev@lists.ozlabs.org
9338 S:      Supported
9339 F:      drivers/pci/hotplug/rpaphp*
9340
9341 IBM Power SRIOV Virtual NIC Device Driver
9342 M:      Dany Madden <drt@linux.ibm.com>
9343 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9344 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9345 L:      netdev@vger.kernel.org
9346 S:      Supported
9347 F:      drivers/net/ethernet/ibm/ibmvnic.*
9348
9349 IBM Power Virtual Accelerator Switchboard
9350 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9351 L:      linuxppc-dev@lists.ozlabs.org
9352 S:      Supported
9353 F:      arch/powerpc/include/asm/vas.h
9354 F:      arch/powerpc/platforms/powernv/copy-paste.h
9355 F:      arch/powerpc/platforms/powernv/vas*
9356
9357 IBM Power Virtual Ethernet Device Driver
9358 M:      Cristobal Forno <cforno12@linux.ibm.com>
9359 L:      netdev@vger.kernel.org
9360 S:      Supported
9361 F:      drivers/net/ethernet/ibm/ibmveth.*
9362
9363 IBM Power Virtual FC Device Drivers
9364 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9365 L:      linux-scsi@vger.kernel.org
9366 S:      Supported
9367 F:      drivers/scsi/ibmvscsi/ibmvfc*
9368
9369 IBM Power Virtual Management Channel Driver
9370 M:      Brad Warrum <bwarrum@linux.ibm.com>
9371 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9372 S:      Supported
9373 F:      drivers/misc/ibmvmc.*
9374
9375 IBM Power Virtual SCSI Device Drivers
9376 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9377 L:      linux-scsi@vger.kernel.org
9378 S:      Supported
9379 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9380 F:      include/scsi/viosrp.h
9381
9382 IBM Power Virtual SCSI Device Target Driver
9383 M:      Michael Cyr <mikecyr@linux.ibm.com>
9384 L:      linux-scsi@vger.kernel.org
9385 L:      target-devel@vger.kernel.org
9386 S:      Supported
9387 F:      drivers/scsi/ibmvscsi_tgt/
9388
9389 IBM Power VMX Cryptographic instructions
9390 M:      Breno Leitão <leitao@debian.org>
9391 M:      Nayna Jain <nayna@linux.ibm.com>
9392 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9393 L:      linux-crypto@vger.kernel.org
9394 S:      Supported
9395 F:      drivers/crypto/vmx/Kconfig
9396 F:      drivers/crypto/vmx/Makefile
9397 F:      drivers/crypto/vmx/aes*
9398 F:      drivers/crypto/vmx/ghash*
9399 F:      drivers/crypto/vmx/ppc-xlate.pl
9400 F:      drivers/crypto/vmx/vmx.c
9401
9402 IBM ServeRAID RAID DRIVER
9403 S:      Orphan
9404 F:      drivers/scsi/ips.*
9405
9406 ICH LPC AND GPIO DRIVER
9407 M:      Peter Tyser <ptyser@xes-inc.com>
9408 S:      Maintained
9409 F:      drivers/gpio/gpio-ich.c
9410 F:      drivers/mfd/lpc_ich.c
9411
9412 ICY I2C DRIVER
9413 M:      Max Staudt <max@enpas.org>
9414 L:      linux-i2c@vger.kernel.org
9415 S:      Maintained
9416 F:      drivers/i2c/busses/i2c-icy.c
9417
9418 IDEAPAD LAPTOP EXTRAS DRIVER
9419 M:      Ike Panhc <ike.pan@canonical.com>
9420 L:      platform-driver-x86@vger.kernel.org
9421 S:      Maintained
9422 W:      http://launchpad.net/ideapad-laptop
9423 F:      drivers/platform/x86/ideapad-laptop.c
9424
9425 IDEAPAD LAPTOP SLIDEBAR DRIVER
9426 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9427 L:      linux-input@vger.kernel.org
9428 S:      Maintained
9429 W:      https://github.com/o2genum/ideapad-slidebar
9430 F:      drivers/input/misc/ideapad_slidebar.c
9431
9432 IDMAPPED MOUNTS
9433 M:      Christian Brauner <brauner@kernel.org>
9434 L:      linux-fsdevel@vger.kernel.org
9435 S:      Maintained
9436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9437 F:      Documentation/filesystems/idmappings.rst
9438 F:      tools/testing/selftests/mount_setattr/
9439 F:      include/linux/mnt_idmapping.h
9440
9441 IDT VersaClock 5 CLOCK DRIVER
9442 M:      Luca Ceresoli <luca@lucaceresoli.net>
9443 S:      Maintained
9444 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9445 F:      drivers/clk/clk-versaclock5.c
9446
9447 IEEE 802.15.4 SUBSYSTEM
9448 M:      Alexander Aring <alex.aring@gmail.com>
9449 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9450 L:      linux-wpan@vger.kernel.org
9451 S:      Maintained
9452 W:      https://linux-wpan.org/
9453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9455 F:      Documentation/networking/ieee802154.rst
9456 F:      drivers/net/ieee802154/
9457 F:      include/linux/ieee802154.h
9458 F:      include/linux/nl802154.h
9459 F:      include/net/af_ieee802154.h
9460 F:      include/net/cfg802154.h
9461 F:      include/net/ieee802154_netdev.h
9462 F:      include/net/mac802154.h
9463 F:      include/net/nl802154.h
9464 F:      net/ieee802154/
9465 F:      net/mac802154/
9466
9467 IFE PROTOCOL
9468 M:      Yotam Gigi <yotam.gi@gmail.com>
9469 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9470 F:      include/net/ife.h
9471 F:      include/uapi/linux/ife.h
9472 F:      net/ife
9473
9474 IGORPLUG-USB IR RECEIVER
9475 M:      Sean Young <sean@mess.org>
9476 L:      linux-media@vger.kernel.org
9477 S:      Maintained
9478 F:      drivers/media/rc/igorplugusb.c
9479
9480 IGUANAWORKS USB IR TRANSCEIVER
9481 M:      Sean Young <sean@mess.org>
9482 L:      linux-media@vger.kernel.org
9483 S:      Maintained
9484 F:      drivers/media/rc/iguanair.c
9485
9486 IIO DIGITAL POTENTIOMETER DAC
9487 M:      Peter Rosin <peda@axentia.se>
9488 L:      linux-iio@vger.kernel.org
9489 S:      Maintained
9490 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9491 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9492 F:      drivers/iio/dac/dpot-dac.c
9493
9494 IIO ENVELOPE DETECTOR
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-adc-envelope-detector
9499 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9500 F:      drivers/iio/adc/envelope-detector.c
9501
9502 IIO MULTIPLEXER
9503 M:      Peter Rosin <peda@axentia.se>
9504 L:      linux-iio@vger.kernel.org
9505 S:      Maintained
9506 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9507 F:      drivers/iio/multiplexer/iio-mux.c
9508
9509 IIO SCMI BASED DRIVER
9510 M:      Jyoti Bhayana <jbhayana@google.com>
9511 L:      linux-iio@vger.kernel.org
9512 S:      Maintained
9513 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9514
9515 IIO SUBSYSTEM AND DRIVERS
9516 M:      Jonathan Cameron <jic23@kernel.org>
9517 R:      Lars-Peter Clausen <lars@metafoo.de>
9518 L:      linux-iio@vger.kernel.org
9519 S:      Maintained
9520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9521 F:      Documentation/ABI/testing/configfs-iio*
9522 F:      Documentation/ABI/testing/sysfs-bus-iio*
9523 F:      Documentation/devicetree/bindings/iio/
9524 F:      drivers/iio/
9525 F:      drivers/staging/iio/
9526 F:      include/linux/iio/
9527 F:      tools/iio/
9528
9529 IIO UNIT CONVERTER
9530 M:      Peter Rosin <peda@axentia.se>
9531 L:      linux-iio@vger.kernel.org
9532 S:      Maintained
9533 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9534 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9535 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9536 F:      drivers/iio/afe/iio-rescale.c
9537
9538 IKANOS/ADI EAGLE ADSL USB DRIVER
9539 M:      Matthieu Castet <castet.matthieu@free.fr>
9540 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9541 S:      Maintained
9542 F:      drivers/usb/atm/ueagle-atm.c
9543
9544 IMAGIS TOUCHSCREEN DRIVER
9545 M:      Markuss Broks <markuss.broks@gmail.com>
9546 S:      Maintained
9547 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9548 F:      drivers/input/touchscreen/imagis.c
9549
9550 IMGTEC ASCII LCD DRIVER
9551 M:      Paul Burton <paulburton@kernel.org>
9552 S:      Maintained
9553 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9554 F:      drivers/auxdisplay/img-ascii-lcd.c
9555
9556 IMGTEC IR DECODER DRIVER
9557 S:      Orphan
9558 F:      drivers/media/rc/img-ir/
9559
9560 IMON SOUNDGRAPH USB IR RECEIVER
9561 M:      Sean Young <sean@mess.org>
9562 L:      linux-media@vger.kernel.org
9563 S:      Maintained
9564 F:      drivers/media/rc/imon.c
9565 F:      drivers/media/rc/imon_raw.c
9566
9567 IMS TWINTURBO FRAMEBUFFER DRIVER
9568 L:      linux-fbdev@vger.kernel.org
9569 S:      Orphan
9570 F:      drivers/video/fbdev/imsttfb.c
9571
9572 INA209 HARDWARE MONITOR DRIVER
9573 M:      Guenter Roeck <linux@roeck-us.net>
9574 L:      linux-hwmon@vger.kernel.org
9575 S:      Maintained
9576 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9577 F:      Documentation/hwmon/ina209.rst
9578 F:      drivers/hwmon/ina209.c
9579
9580 INA2XX HARDWARE MONITOR DRIVER
9581 M:      Guenter Roeck <linux@roeck-us.net>
9582 L:      linux-hwmon@vger.kernel.org
9583 S:      Maintained
9584 F:      Documentation/hwmon/ina2xx.rst
9585 F:      drivers/hwmon/ina2xx.c
9586 F:      include/linux/platform_data/ina2xx.h
9587
9588 INDUSTRY PACK SUBSYSTEM (IPACK)
9589 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9590 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9591 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9592 L:      industrypack-devel@lists.sourceforge.net
9593 S:      Maintained
9594 W:      http://industrypack.sourceforge.net
9595 F:      drivers/ipack/
9596
9597 INFINEON DPS310 Driver
9598 M:      Eddie James <eajames@linux.ibm.com>
9599 L:      linux-iio@vger.kernel.org
9600 S:      Maintained
9601 F:      drivers/iio/pressure/dps310.c
9602
9603 INFINIBAND SUBSYSTEM
9604 M:      Jason Gunthorpe <jgg@nvidia.com>
9605 M:      Leon Romanovsky <leonro@nvidia.com>
9606 L:      linux-rdma@vger.kernel.org
9607 S:      Supported
9608 W:      https://github.com/linux-rdma/rdma-core
9609 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9611 F:      Documentation/devicetree/bindings/infiniband/
9612 F:      Documentation/infiniband/
9613 F:      drivers/infiniband/
9614 F:      include/rdma/
9615 F:      include/trace/events/ib_mad.h
9616 F:      include/trace/events/ib_umad.h
9617 F:      include/uapi/linux/if_infiniband.h
9618 F:      include/uapi/rdma/
9619 F:      samples/bpf/ibumad_kern.c
9620 F:      samples/bpf/ibumad_user.c
9621
9622 INGENIC JZ4780 NAND DRIVER
9623 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9624 L:      linux-mtd@lists.infradead.org
9625 L:      linux-mips@vger.kernel.org
9626 S:      Maintained
9627 F:      drivers/mtd/nand/raw/ingenic/
9628
9629 INGENIC JZ47xx SoCs
9630 M:      Paul Cercueil <paul@crapouillou.net>
9631 L:      linux-mips@vger.kernel.org
9632 S:      Maintained
9633 F:      arch/mips/boot/dts/ingenic/
9634 F:      arch/mips/generic/board-ingenic.c
9635 F:      arch/mips/include/asm/mach-ingenic/
9636 F:      arch/mips/ingenic/Kconfig
9637 F:      drivers/clk/ingenic/
9638 F:      drivers/dma/dma-jz4780.c
9639 F:      drivers/gpu/drm/ingenic/
9640 F:      drivers/i2c/busses/i2c-jz4780.c
9641 F:      drivers/iio/adc/ingenic-adc.c
9642 F:      drivers/irqchip/irq-ingenic.c
9643 F:      drivers/memory/jz4780-nemc.c
9644 F:      drivers/mmc/host/jz4740_mmc.c
9645 F:      drivers/mtd/nand/raw/ingenic/
9646 F:      drivers/pinctrl/pinctrl-ingenic.c
9647 F:      drivers/power/supply/ingenic-battery.c
9648 F:      drivers/pwm/pwm-jz4740.c
9649 F:      drivers/remoteproc/ingenic_rproc.c
9650 F:      drivers/rtc/rtc-jz4740.c
9651 F:      drivers/tty/serial/8250/8250_ingenic.c
9652 F:      drivers/usb/musb/jz4740.c
9653 F:      drivers/watchdog/jz4740_wdt.c
9654 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9655 F:      include/linux/mfd/ingenic-tcu.h
9656 F:      sound/soc/codecs/jz47*
9657 F:      sound/soc/jz4740/
9658
9659 INJOINIC IP5xxx POWER BANK IC DRIVER
9660 M:      Samuel Holland <samuel@sholland.org>
9661 S:      Maintained
9662 F:      drivers/power/supply/ip5xxx_power.c
9663
9664 INOTIFY
9665 M:      Jan Kara <jack@suse.cz>
9666 R:      Amir Goldstein <amir73il@gmail.com>
9667 L:      linux-fsdevel@vger.kernel.org
9668 S:      Maintained
9669 F:      Documentation/filesystems/inotify.rst
9670 F:      fs/notify/inotify/
9671 F:      include/linux/inotify.h
9672 F:      include/uapi/linux/inotify.h
9673
9674 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9675 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9676 L:      linux-input@vger.kernel.org
9677 S:      Maintained
9678 Q:      http://patchwork.kernel.org/project/linux-input/list/
9679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9680 F:      Documentation/devicetree/bindings/input/
9681 F:      Documentation/devicetree/bindings/serio/
9682 F:      Documentation/input/
9683 F:      drivers/input/
9684 F:      include/linux/input.h
9685 F:      include/linux/input/
9686 F:      include/uapi/linux/input-event-codes.h
9687 F:      include/uapi/linux/input.h
9688
9689 INPUT MULTITOUCH (MT) PROTOCOL
9690 M:      Henrik Rydberg <rydberg@bitmath.org>
9691 L:      linux-input@vger.kernel.org
9692 S:      Odd fixes
9693 F:      Documentation/input/multi-touch-protocol.rst
9694 F:      drivers/input/input-mt.c
9695 K:      \b(ABS|SYN)_MT_
9696
9697 INSIDE SECURE CRYPTO DRIVER
9698 M:      Antoine Tenart <atenart@kernel.org>
9699 L:      linux-crypto@vger.kernel.org
9700 S:      Maintained
9701 F:      drivers/crypto/inside-secure/
9702
9703 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9704 M:      Mimi Zohar <zohar@linux.ibm.com>
9705 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9706 L:      linux-integrity@vger.kernel.org
9707 S:      Supported
9708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9709 F:      security/integrity/ima/
9710 F:      security/integrity/
9711
9712 INTEL 810/815 FRAMEBUFFER DRIVER
9713 M:      Antonino Daplas <adaplas@gmail.com>
9714 L:      linux-fbdev@vger.kernel.org
9715 S:      Maintained
9716 F:      drivers/video/fbdev/i810/
9717
9718 INTEL ASoC DRIVERS
9719 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9720 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9721 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9722 M:      Jie Yang <yang.jie@linux.intel.com>
9723 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9724 S:      Supported
9725 F:      sound/soc/intel/
9726
9727 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9728 M:      Hans de Goede <hdegoede@redhat.com>
9729 L:      platform-driver-x86@vger.kernel.org
9730 S:      Maintained
9731 F:      drivers/platform/x86/intel/atomisp2/pm.c
9732
9733 INTEL ATOMISP2 LED DRIVER
9734 M:      Hans de Goede <hdegoede@redhat.com>
9735 L:      platform-driver-x86@vger.kernel.org
9736 S:      Maintained
9737 F:      drivers/platform/x86/intel/atomisp2/led.c
9738
9739 INTEL BIOS SAR INT1092 DRIVER
9740 M:      Shravan Sudhakar <s.shravan@intel.com>
9741 M:      Intel Corporation <linuxwwan@intel.com>
9742 L:      platform-driver-x86@vger.kernel.org
9743 S:      Maintained
9744 F:      drivers/platform/x86/intel/int1092/
9745
9746 INTEL BROXTON PMC DRIVER
9747 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9748 M:      Zha Qipeng <qipeng.zha@intel.com>
9749 S:      Maintained
9750 F:      drivers/mfd/intel_pmc_bxt.c
9751 F:      include/linux/mfd/intel_pmc_bxt.h
9752
9753 INTEL C600 SERIES SAS CONTROLLER DRIVER
9754 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9755 L:      linux-scsi@vger.kernel.org
9756 S:      Supported
9757 T:      git git://git.code.sf.net/p/intel-sas/isci
9758 F:      drivers/scsi/isci/
9759
9760 INTEL CPU family model numbers
9761 M:      Tony Luck <tony.luck@intel.com>
9762 M:      x86@kernel.org
9763 L:      linux-kernel@vger.kernel.org
9764 S:      Supported
9765 F:      arch/x86/include/asm/intel-family.h
9766
9767 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9768 M:      Jani Nikula <jani.nikula@linux.intel.com>
9769 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9770 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9771 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9772 L:      intel-gfx@lists.freedesktop.org
9773 S:      Supported
9774 W:      https://01.org/linuxgraphics/
9775 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9776 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9777 C:      irc://irc.oftc.net/intel-gfx
9778 T:      git git://anongit.freedesktop.org/drm-intel
9779 F:      Documentation/gpu/i915.rst
9780 F:      drivers/gpu/drm/i915/
9781 F:      include/drm/i915*
9782 F:      include/uapi/drm/i915_drm.h
9783
9784 INTEL ETHERNET DRIVERS
9785 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9786 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9787 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9788 S:      Supported
9789 W:      http://www.intel.com/support/feedback.htm
9790 W:      http://e1000.sourceforge.net/
9791 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9794 F:      Documentation/networking/device_drivers/ethernet/intel/
9795 F:      drivers/net/ethernet/intel/
9796 F:      drivers/net/ethernet/intel/*/
9797 F:      include/linux/avf/virtchnl.h
9798 F:      include/linux/net/intel/iidc.h
9799
9800 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9801 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9802 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9803 L:      linux-rdma@vger.kernel.org
9804 S:      Supported
9805 F:      drivers/infiniband/hw/irdma/
9806 F:      include/uapi/rdma/irdma-abi.h
9807
9808 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9809 M:      Maik Broemme <mbroemme@libmpq.org>
9810 L:      linux-fbdev@vger.kernel.org
9811 S:      Maintained
9812 F:      Documentation/fb/intelfb.rst
9813 F:      drivers/video/fbdev/intelfb/
9814
9815 INTEL GPIO DRIVERS
9816 M:      Andy Shevchenko <andy@kernel.org>
9817 L:      linux-gpio@vger.kernel.org
9818 S:      Maintained
9819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9820 F:      drivers/gpio/gpio-ich.c
9821 F:      drivers/gpio/gpio-merrifield.c
9822 F:      drivers/gpio/gpio-ml-ioh.c
9823 F:      drivers/gpio/gpio-pch.c
9824 F:      drivers/gpio/gpio-sch.c
9825 F:      drivers/gpio/gpio-sodaville.c
9826
9827 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9828 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9829 M:      Zhi Wang <zhi.a.wang@intel.com>
9830 L:      intel-gvt-dev@lists.freedesktop.org
9831 L:      intel-gfx@lists.freedesktop.org
9832 S:      Supported
9833 W:      https://01.org/igvt-g
9834 T:      git https://github.com/intel/gvt-linux.git
9835 F:      drivers/gpu/drm/i915/gvt/
9836
9837 INTEL HID EVENT DRIVER
9838 M:      Alex Hung <alex.hung@canonical.com>
9839 L:      platform-driver-x86@vger.kernel.org
9840 S:      Maintained
9841 F:      drivers/platform/x86/intel/hid.c
9842
9843 INTEL I/OAT DMA DRIVER
9844 M:      Dave Jiang <dave.jiang@intel.com>
9845 R:      Dan Williams <dan.j.williams@intel.com>
9846 L:      dmaengine@vger.kernel.org
9847 S:      Supported
9848 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9849 F:      drivers/dma/ioat*
9850
9851 INTEL IADX DRIVER
9852 M:      Dave Jiang <dave.jiang@intel.com>
9853 L:      dmaengine@vger.kernel.org
9854 S:      Supported
9855 F:      drivers/dma/idxd/*
9856 F:      include/uapi/linux/idxd.h
9857
9858 INTEL IDLE DRIVER
9859 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9860 M:      Len Brown <lenb@kernel.org>
9861 L:      linux-pm@vger.kernel.org
9862 S:      Supported
9863 B:      https://bugzilla.kernel.org
9864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9865 F:      drivers/idle/intel_idle.c
9866
9867 INTEL INTEGRATED SENSOR HUB DRIVER
9868 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9869 M:      Jiri Kosina <jikos@kernel.org>
9870 L:      linux-input@vger.kernel.org
9871 S:      Maintained
9872 F:      drivers/hid/intel-ish-hid/
9873
9874 INTEL IOMMU (VT-d)
9875 M:      David Woodhouse <dwmw2@infradead.org>
9876 M:      Lu Baolu <baolu.lu@linux.intel.com>
9877 L:      iommu@lists.linux-foundation.org
9878 S:      Supported
9879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9880 F:      drivers/iommu/intel/
9881 F:      include/linux/intel-iommu.h
9882 F:      include/linux/intel-svm.h
9883
9884 INTEL IOP-ADMA DMA DRIVER
9885 R:      Dan Williams <dan.j.williams@intel.com>
9886 S:      Odd fixes
9887 F:      drivers/dma/iop-adma.c
9888
9889 INTEL IPU3 CSI-2 CIO2 DRIVER
9890 M:      Yong Zhi <yong.zhi@intel.com>
9891 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9892 M:      Bingbu Cao <bingbu.cao@intel.com>
9893 M:      Dan Scally <djrscally@gmail.com>
9894 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9895 L:      linux-media@vger.kernel.org
9896 S:      Maintained
9897 T:      git git://linuxtv.org/media_tree.git
9898 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9899 F:      drivers/media/pci/intel/ipu3/
9900
9901 INTEL IPU3 CSI-2 IMGU DRIVER
9902 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9903 R:      Bingbu Cao <bingbu.cao@intel.com>
9904 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9905 L:      linux-media@vger.kernel.org
9906 S:      Maintained
9907 F:      Documentation/admin-guide/media/ipu3.rst
9908 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9909 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9910 F:      drivers/staging/media/ipu3/
9911
9912 INTEL IXP4XX CRYPTO SUPPORT
9913 M:      Corentin Labbe <clabbe@baylibre.com>
9914 L:      linux-crypto@vger.kernel.org
9915 S:      Maintained
9916 F:      drivers/crypto/ixp4xx_crypto.c
9917
9918 INTEL ISHTP ECLITE DRIVER
9919 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9920 L:      platform-driver-x86@vger.kernel.org
9921 S:      Supported
9922 F:      drivers/platform/x86/intel/ishtp_eclite.c
9923
9924 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9925 M:      Krzysztof Halasa <khalasa@piap.pl>
9926 S:      Maintained
9927 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9928 F:      drivers/net/wan/ixp4xx_hss.c
9929 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9930 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9931 F:      include/linux/soc/ixp4xx/npe.h
9932 F:      include/linux/soc/ixp4xx/qmgr.h
9933
9934 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9935 M:      Deepak Saxena <dsaxena@plexity.net>
9936 S:      Maintained
9937 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9938 F:      drivers/char/hw_random/ixp4xx-rng.c
9939
9940 INTEL KEEM BAY DRM DRIVER
9941 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9942 M:      Edmund Dea <edmund.j.dea@intel.com>
9943 S:      Maintained
9944 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9945 F:      drivers/gpu/drm/kmb/
9946
9947 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9948 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9949 S:      Maintained
9950 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9951 F:      drivers/crypto/keembay/Kconfig
9952 F:      drivers/crypto/keembay/Makefile
9953 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9954 F:      drivers/crypto/keembay/ocs-aes.c
9955 F:      drivers/crypto/keembay/ocs-aes.h
9956
9957 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9958 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9959 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9960 M:      Mark Gross <mgross@linux.intel.com>
9961 S:      Maintained
9962 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9963 F:      drivers/crypto/keembay/Kconfig
9964 F:      drivers/crypto/keembay/Makefile
9965 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9966
9967 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9968 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9969 M:      Declan Murphy <declan.murphy@intel.com>
9970 S:      Maintained
9971 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9972 F:      drivers/crypto/keembay/Kconfig
9973 F:      drivers/crypto/keembay/Makefile
9974 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9975 F:      drivers/crypto/keembay/ocs-hcu.c
9976 F:      drivers/crypto/keembay/ocs-hcu.h
9977
9978 INTEL THUNDER BAY EMMC PHY DRIVER
9979 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
9980 M:      Rashmi A <rashmi.a@intel.com>
9981 S:      Maintained
9982 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
9983 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
9984
9985 INTEL MANAGEMENT ENGINE (mei)
9986 M:      Tomas Winkler <tomas.winkler@intel.com>
9987 L:      linux-kernel@vger.kernel.org
9988 S:      Supported
9989 F:      Documentation/driver-api/mei/*
9990 F:      drivers/misc/mei/
9991 F:      drivers/watchdog/mei_wdt.c
9992 F:      include/linux/mei_cl_bus.h
9993 F:      include/uapi/linux/mei.h
9994 F:      samples/mei/*
9995
9996 INTEL MAX 10 BMC MFD DRIVER
9997 M:      Xu Yilun <yilun.xu@intel.com>
9998 R:      Tom Rix <trix@redhat.com>
9999 S:      Maintained
10000 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10001 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10002 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10003 F:      drivers/mfd/intel-m10-bmc.c
10004 F:      include/linux/mfd/intel-m10-bmc.h
10005
10006 INTEL MENLOW THERMAL DRIVER
10007 M:      Sujith Thomas <sujith.thomas@intel.com>
10008 L:      linux-pm@vger.kernel.org
10009 S:      Supported
10010 W:      https://01.org/linux-acpi
10011 F:      drivers/thermal/intel/intel_menlow.c
10012
10013 INTEL P-Unit IPC DRIVER
10014 M:      Zha Qipeng <qipeng.zha@intel.com>
10015 L:      platform-driver-x86@vger.kernel.org
10016 S:      Maintained
10017 F:      arch/x86/include/asm/intel_punit_ipc.h
10018 F:      drivers/platform/x86/intel/punit_ipc.c
10019
10020 INTEL PMC CORE DRIVER
10021 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10022 M:      David E Box <david.e.box@intel.com>
10023 L:      platform-driver-x86@vger.kernel.org
10024 S:      Maintained
10025 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10026 F:      drivers/platform/x86/intel/pmc/
10027
10028 INTEL PMIC GPIO DRIVERS
10029 M:      Andy Shevchenko <andy@kernel.org>
10030 S:      Maintained
10031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10032 F:      drivers/gpio/gpio-*cove.c
10033
10034 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10035 M:      Andy Shevchenko <andy@kernel.org>
10036 S:      Maintained
10037 F:      drivers/mfd/intel_soc_pmic*
10038 F:      include/linux/mfd/intel_soc_pmic*
10039
10040 INTEL PMT DRIVERS
10041 M:      David E. Box <david.e.box@linux.intel.com>
10042 S:      Supported
10043 F:      drivers/platform/x86/intel/pmt/
10044
10045 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10046 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10047 L:      linux-wireless@vger.kernel.org
10048 S:      Maintained
10049 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10050 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10051 F:      drivers/net/wireless/intel/ipw2x00/
10052
10053 INTEL PSTATE DRIVER
10054 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10055 M:      Len Brown <lenb@kernel.org>
10056 L:      linux-pm@vger.kernel.org
10057 S:      Supported
10058 F:      drivers/cpufreq/intel_pstate.c
10059
10060 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10061 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10062 L:      linux-iio@vger.kernel.org
10063 F:      drivers/counter/intel-qep.c
10064
10065 INTEL SCU DRIVERS
10066 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10067 S:      Maintained
10068 F:      arch/x86/include/asm/intel_scu_ipc.h
10069 F:      drivers/platform/x86/intel_scu_*
10070
10071 INTEL SDSI DRIVER
10072 M:      David E. Box <david.e.box@linux.intel.com>
10073 S:      Supported
10074 F:      drivers/platform/x86/intel/sdsi.c
10075 F:      tools/arch/x86/intel_sdsi/
10076 F:      tools/testing/selftests/drivers/sdsi/
10077
10078 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10079 M:      Daniel Scally <djrscally@gmail.com>
10080 S:      Maintained
10081 F:      drivers/platform/x86/intel/int3472/
10082
10083 INTEL SPEED SELECT TECHNOLOGY
10084 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10085 L:      platform-driver-x86@vger.kernel.org
10086 S:      Maintained
10087 F:      drivers/platform/x86/intel/speed_select_if/
10088 F:      include/uapi/linux/isst_if.h
10089 F:      tools/power/x86/intel-speed-select/
10090
10091 INTEL STRATIX10 FIRMWARE DRIVERS
10092 M:      Dinh Nguyen <dinguyen@kernel.org>
10093 L:      linux-kernel@vger.kernel.org
10094 S:      Maintained
10095 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10096 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10097 F:      drivers/firmware/stratix10-rsu.c
10098 F:      drivers/firmware/stratix10-svc.c
10099 F:      include/linux/firmware/intel/stratix10-smc.h
10100 F:      include/linux/firmware/intel/stratix10-svc-client.h
10101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10102
10103 INTEL TELEMETRY DRIVER
10104 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10105 M:      "David E. Box" <david.e.box@linux.intel.com>
10106 L:      platform-driver-x86@vger.kernel.org
10107 S:      Maintained
10108 F:      arch/x86/include/asm/intel_telemetry.h
10109 F:      drivers/platform/x86/intel/telemetry/
10110
10111 INTEL UNCORE FREQUENCY CONTROL
10112 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10113 L:      platform-driver-x86@vger.kernel.org
10114 S:      Maintained
10115 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10116 F:      drivers/platform/x86/intel/uncore-frequency/
10117
10118 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10119 M:      David E. Box <david.e.box@linux.intel.com>
10120 S:      Supported
10121 F:      drivers/platform/x86/intel/vsec.*
10122
10123 INTEL VIRTUAL BUTTON DRIVER
10124 M:      AceLan Kao <acelan.kao@canonical.com>
10125 L:      platform-driver-x86@vger.kernel.org
10126 S:      Maintained
10127 F:      drivers/platform/x86/intel/vbtn.c
10128
10129 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10130 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10131 L:      linux-wireless@vger.kernel.org
10132 S:      Supported
10133 F:      drivers/net/wireless/intel/iwlegacy/
10134
10135 INTEL WIRELESS WIFI LINK (iwlwifi)
10136 M:      Luca Coelho <luciano.coelho@intel.com>
10137 L:      linux-wireless@vger.kernel.org
10138 S:      Supported
10139 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10141 F:      drivers/net/wireless/intel/iwlwifi/
10142
10143 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10144 M:      Jithu Joseph <jithu.joseph@intel.com>
10145 R:      Maurice Ma <maurice.ma@intel.com>
10146 S:      Maintained
10147 W:      https://slimbootloader.github.io/security/firmware-update.html
10148 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10149
10150 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10151 L:      Dell.Client.Kernel@dell.com
10152 S:      Maintained
10153 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10154
10155 INTEL WWAN IOSM DRIVER
10156 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10157 M:      Intel Corporation <linuxwwan@intel.com>
10158 L:      netdev@vger.kernel.org
10159 S:      Maintained
10160 F:      drivers/net/wwan/iosm/
10161
10162 INTEL(R) TRACE HUB
10163 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10164 S:      Supported
10165 F:      Documentation/trace/intel_th.rst
10166 F:      drivers/hwtracing/intel_th/
10167 F:      include/linux/intel_th.h
10168
10169 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10170 M:      Ning Sun <ning.sun@intel.com>
10171 L:      tboot-devel@lists.sourceforge.net
10172 S:      Supported
10173 W:      http://tboot.sourceforge.net
10174 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10175 F:      Documentation/x86/intel_txt.rst
10176 F:      arch/x86/kernel/tboot.c
10177 F:      include/linux/tboot.h
10178
10179 INTEL SGX
10180 M:      Jarkko Sakkinen <jarkko@kernel.org>
10181 R:      Dave Hansen <dave.hansen@linux.intel.com>
10182 L:      linux-sgx@vger.kernel.org
10183 S:      Supported
10184 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10186 F:      Documentation/x86/sgx.rst
10187 F:      arch/x86/entry/vdso/vsgx.S
10188 F:      arch/x86/include/asm/sgx.h
10189 F:      arch/x86/include/uapi/asm/sgx.h
10190 F:      arch/x86/kernel/cpu/sgx/*
10191 F:      tools/testing/selftests/sgx/*
10192 K:      \bSGX_
10193
10194 INTERCONNECT API
10195 M:      Georgi Djakov <djakov@kernel.org>
10196 L:      linux-pm@vger.kernel.org
10197 S:      Maintained
10198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10199 F:      Documentation/devicetree/bindings/interconnect/
10200 F:      Documentation/driver-api/interconnect.rst
10201 F:      drivers/interconnect/
10202 F:      include/dt-bindings/interconnect/
10203 F:      include/linux/interconnect-provider.h
10204 F:      include/linux/interconnect.h
10205
10206 INTERRUPT COUNTER DRIVER
10207 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10208 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10209 L:      linux-iio@vger.kernel.org
10210 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10211 F:      drivers/counter/interrupt-cnt.c
10212
10213 INTERSIL ISL7998X VIDEO DECODER DRIVER
10214 M:      Michael Tretter <m.tretter@pengutronix.de>
10215 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10216 L:      linux-media@vger.kernel.org
10217 S:      Maintained
10218 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10219 F:      drivers/media/i2c/isl7998x.c
10220
10221 INVENSENSE ICM-426xx IMU DRIVER
10222 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10223 L:      linux-iio@vger.kernel.org
10224 S:      Maintained
10225 W:      https://invensense.tdk.com/
10226 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10227 F:      drivers/iio/imu/inv_icm42600/
10228
10229 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10230 M:      Linus Walleij <linus.walleij@linaro.org>
10231 L:      linux-iio@vger.kernel.org
10232 S:      Maintained
10233 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10234 F:      drivers/iio/gyro/mpu3050*
10235
10236 IOC3 ETHERNET DRIVER
10237 M:      Ralf Baechle <ralf@linux-mips.org>
10238 L:      linux-mips@vger.kernel.org
10239 S:      Maintained
10240 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10241
10242 IOMAP FILESYSTEM LIBRARY
10243 M:      Christoph Hellwig <hch@infradead.org>
10244 M:      Darrick J. Wong <djwong@kernel.org>
10245 M:      linux-xfs@vger.kernel.org
10246 M:      linux-fsdevel@vger.kernel.org
10247 L:      linux-xfs@vger.kernel.org
10248 L:      linux-fsdevel@vger.kernel.org
10249 S:      Supported
10250 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10251 F:      fs/iomap/
10252 F:      include/linux/iomap.h
10253
10254 IOMMU DRIVERS
10255 M:      Joerg Roedel <joro@8bytes.org>
10256 M:      Will Deacon <will@kernel.org>
10257 L:      iommu@lists.linux-foundation.org
10258 S:      Maintained
10259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10260 F:      Documentation/devicetree/bindings/iommu/
10261 F:      Documentation/userspace-api/iommu.rst
10262 F:      drivers/iommu/
10263 F:      include/linux/iommu.h
10264 F:      include/linux/iova.h
10265 F:      include/linux/of_iommu.h
10266 F:      include/uapi/linux/iommu.h
10267
10268 IOSYS-MAP HELPERS
10269 M:      Thomas Zimmermann <tzimmermann@suse.de>
10270 L:      dri-devel@lists.freedesktop.org
10271 S:      Maintained
10272 T:      git git://anongit.freedesktop.org/drm/drm-misc
10273 F:      include/linux/iosys-map.h
10274
10275 IO_URING
10276 M:      Jens Axboe <axboe@kernel.dk>
10277 R:      Pavel Begunkov <asml.silence@gmail.com>
10278 L:      io-uring@vger.kernel.org
10279 S:      Maintained
10280 T:      git git://git.kernel.dk/linux-block
10281 T:      git git://git.kernel.dk/liburing
10282 F:      fs/io-wq.c
10283 F:      fs/io-wq.h
10284 F:      fs/io_uring.c
10285 F:      include/linux/io_uring.h
10286 F:      include/uapi/linux/io_uring.h
10287 F:      tools/io_uring/
10288
10289 IPMI SUBSYSTEM
10290 M:      Corey Minyard <minyard@acm.org>
10291 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10292 S:      Supported
10293 W:      http://openipmi.sourceforge.net/
10294 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10295 F:      Documentation/driver-api/ipmi.rst
10296 F:      Documentation/devicetree/bindings/ipmi/
10297 F:      drivers/char/ipmi/
10298 F:      include/linux/ipmi*
10299 F:      include/uapi/linux/ipmi*
10300
10301 IPS SCSI RAID DRIVER
10302 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10303 L:      linux-scsi@vger.kernel.org
10304 S:      Maintained
10305 W:      http://www.adaptec.com/
10306 F:      drivers/scsi/ips*
10307
10308 IPVS
10309 M:      Simon Horman <horms@verge.net.au>
10310 M:      Julian Anastasov <ja@ssi.bg>
10311 L:      netdev@vger.kernel.org
10312 L:      lvs-devel@vger.kernel.org
10313 S:      Maintained
10314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10316 F:      Documentation/networking/ipvs-sysctl.rst
10317 F:      include/net/ip_vs.h
10318 F:      include/uapi/linux/ip_vs.h
10319 F:      net/netfilter/ipvs/
10320
10321 IPWIRELESS DRIVER
10322 M:      Jiri Kosina <jikos@kernel.org>
10323 M:      David Sterba <dsterba@suse.com>
10324 S:      Odd Fixes
10325 F:      drivers/tty/ipwireless/
10326
10327 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10328 M:      Marc Zyngier <maz@kernel.org>
10329 S:      Maintained
10330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10331 F:      Documentation/core-api/irq/irq-domain.rst
10332 F:      include/linux/irqdomain.h
10333 F:      kernel/irq/irqdomain.c
10334 F:      kernel/irq/msi.c
10335
10336 IRQ SUBSYSTEM
10337 M:      Thomas Gleixner <tglx@linutronix.de>
10338 L:      linux-kernel@vger.kernel.org
10339 S:      Maintained
10340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10341 F:      kernel/irq/
10342
10343 IRQCHIP DRIVERS
10344 M:      Thomas Gleixner <tglx@linutronix.de>
10345 M:      Marc Zyngier <maz@kernel.org>
10346 L:      linux-kernel@vger.kernel.org
10347 S:      Maintained
10348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10349 F:      Documentation/devicetree/bindings/interrupt-controller/
10350 F:      drivers/irqchip/
10351
10352 ISA
10353 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10354 S:      Maintained
10355 F:      Documentation/driver-api/isa.rst
10356 F:      drivers/base/isa.c
10357 F:      include/linux/isa.h
10358
10359 ISA RADIO MODULE
10360 M:      Hans Verkuil <hverkuil@xs4all.nl>
10361 L:      linux-media@vger.kernel.org
10362 S:      Maintained
10363 W:      https://linuxtv.org
10364 T:      git git://linuxtv.org/media_tree.git
10365 F:      drivers/media/radio/radio-isa*
10366
10367 ISAPNP
10368 M:      Jaroslav Kysela <perex@perex.cz>
10369 S:      Maintained
10370 F:      Documentation/driver-api/isapnp.rst
10371 F:      drivers/pnp/isapnp/
10372 F:      include/linux/isapnp.h
10373
10374 ISCSI
10375 M:      Lee Duncan <lduncan@suse.com>
10376 M:      Chris Leech <cleech@redhat.com>
10377 L:      open-iscsi@googlegroups.com
10378 L:      linux-scsi@vger.kernel.org
10379 S:      Maintained
10380 W:      www.open-iscsi.com
10381 F:      drivers/scsi/*iscsi*
10382 F:      include/scsi/*iscsi*
10383
10384 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10385 M:      Peter Jones <pjones@redhat.com>
10386 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10387 S:      Maintained
10388 F:      drivers/firmware/iscsi_ibft*
10389
10390 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10391 M:      Sagi Grimberg <sagi@grimberg.me>
10392 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10393 L:      linux-rdma@vger.kernel.org
10394 S:      Supported
10395 W:      http://www.openfabrics.org
10396 W:      www.open-iscsi.org
10397 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10398 F:      drivers/infiniband/ulp/iser/
10399
10400 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10401 M:      Sagi Grimberg <sagi@grimberg.me>
10402 L:      linux-rdma@vger.kernel.org
10403 L:      target-devel@vger.kernel.org
10404 S:      Supported
10405 W:      http://www.linux-iscsi.org
10406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10407 F:      drivers/infiniband/ulp/isert
10408
10409 ISDN/CMTP OVER BLUETOOTH
10410 M:      Karsten Keil <isdn@linux-pingi.de>
10411 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10412 L:      netdev@vger.kernel.org
10413 S:      Odd Fixes
10414 W:      http://www.isdn4linux.de
10415 F:      Documentation/isdn/
10416 F:      drivers/isdn/capi/
10417 F:      include/linux/isdn/
10418 F:      include/uapi/linux/isdn/
10419 F:      net/bluetooth/cmtp/
10420
10421 ISDN/mISDN SUBSYSTEM
10422 M:      Karsten Keil <isdn@linux-pingi.de>
10423 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10424 L:      netdev@vger.kernel.org
10425 S:      Maintained
10426 W:      http://www.isdn4linux.de
10427 F:      drivers/isdn/Kconfig
10428 F:      drivers/isdn/Makefile
10429 F:      drivers/isdn/hardware/
10430 F:      drivers/isdn/mISDN/
10431
10432 IT87 HARDWARE MONITORING DRIVER
10433 M:      Jean Delvare <jdelvare@suse.com>
10434 L:      linux-hwmon@vger.kernel.org
10435 S:      Maintained
10436 F:      Documentation/hwmon/it87.rst
10437 F:      drivers/hwmon/it87.c
10438
10439 IT913X MEDIA DRIVER
10440 M:      Antti Palosaari <crope@iki.fi>
10441 L:      linux-media@vger.kernel.org
10442 S:      Maintained
10443 W:      https://linuxtv.org
10444 W:      http://palosaari.fi/linux/
10445 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10446 T:      git git://linuxtv.org/anttip/media_tree.git
10447 F:      drivers/media/tuners/it913x*
10448
10449 ITE IT66121 HDMI BRIDGE DRIVER
10450 M:      Phong LE <ple@baylibre.com>
10451 M:      Neil Armstrong <narmstrong@baylibre.com>
10452 S:      Maintained
10453 T:      git git://anongit.freedesktop.org/drm/drm-misc
10454 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10455 F:      drivers/gpu/drm/bridge/ite-it66121.c
10456
10457 IVTV VIDEO4LINUX DRIVER
10458 M:      Andy Walls <awalls@md.metrocast.net>
10459 L:      linux-media@vger.kernel.org
10460 S:      Maintained
10461 W:      https://linuxtv.org
10462 T:      git git://linuxtv.org/media_tree.git
10463 F:      Documentation/admin-guide/media/ivtv*
10464 F:      drivers/media/pci/ivtv/
10465 F:      include/uapi/linux/ivtv*
10466
10467 IX2505V MEDIA DRIVER
10468 M:      Malcolm Priestley <tvboxspy@gmail.com>
10469 L:      linux-media@vger.kernel.org
10470 S:      Maintained
10471 W:      https://linuxtv.org
10472 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10473 F:      drivers/media/dvb-frontends/ix2505v*
10474
10475 JAILHOUSE HYPERVISOR INTERFACE
10476 M:      Jan Kiszka <jan.kiszka@siemens.com>
10477 L:      jailhouse-dev@googlegroups.com
10478 S:      Maintained
10479 F:      arch/x86/include/asm/jailhouse_para.h
10480 F:      arch/x86/kernel/jailhouse.c
10481
10482 JC42.4 TEMPERATURE SENSOR DRIVER
10483 M:      Guenter Roeck <linux@roeck-us.net>
10484 L:      linux-hwmon@vger.kernel.org
10485 S:      Maintained
10486 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10487 F:      Documentation/hwmon/jc42.rst
10488 F:      drivers/hwmon/jc42.c
10489
10490 JFS FILESYSTEM
10491 M:      Dave Kleikamp <shaggy@kernel.org>
10492 L:      jfs-discussion@lists.sourceforge.net
10493 S:      Maintained
10494 W:      http://jfs.sourceforge.net/
10495 T:      git git://github.com/kleikamp/linux-shaggy.git
10496 F:      Documentation/admin-guide/jfs.rst
10497 F:      fs/jfs/
10498
10499 JME NETWORK DRIVER
10500 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10501 L:      netdev@vger.kernel.org
10502 S:      Maintained
10503 F:      drivers/net/ethernet/jme.*
10504
10505 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10506 M:      David Woodhouse <dwmw2@infradead.org>
10507 M:      Richard Weinberger <richard@nod.at>
10508 L:      linux-mtd@lists.infradead.org
10509 S:      Odd Fixes
10510 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10511 T:      git git://git.infradead.org/ubifs-2.6.git
10512 F:      fs/jffs2/
10513 F:      include/uapi/linux/jffs2.h
10514
10515 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10516 M:      "Theodore Ts'o" <tytso@mit.edu>
10517 M:      Jan Kara <jack@suse.com>
10518 L:      linux-ext4@vger.kernel.org
10519 S:      Maintained
10520 F:      fs/jbd2/
10521 F:      include/linux/jbd2.h
10522
10523 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10524 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10525 L:      linux-media@vger.kernel.org
10526 L:      linux-renesas-soc@vger.kernel.org
10527 S:      Maintained
10528 F:      drivers/media/platform/renesas/rcar_jpu.c
10529
10530 JSM Neo PCI based serial card
10531 L:      linux-serial@vger.kernel.org
10532 S:      Orphan
10533 F:      drivers/tty/serial/jsm/
10534
10535 K10TEMP HARDWARE MONITORING DRIVER
10536 M:      Clemens Ladisch <clemens@ladisch.de>
10537 L:      linux-hwmon@vger.kernel.org
10538 S:      Maintained
10539 F:      Documentation/hwmon/k10temp.rst
10540 F:      drivers/hwmon/k10temp.c
10541
10542 K8TEMP HARDWARE MONITORING DRIVER
10543 M:      Rudolf Marek <r.marek@assembler.cz>
10544 L:      linux-hwmon@vger.kernel.org
10545 S:      Maintained
10546 F:      Documentation/hwmon/k8temp.rst
10547 F:      drivers/hwmon/k8temp.c
10548
10549 KASAN
10550 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10551 R:      Alexander Potapenko <glider@google.com>
10552 R:      Andrey Konovalov <andreyknvl@gmail.com>
10553 R:      Dmitry Vyukov <dvyukov@google.com>
10554 L:      kasan-dev@googlegroups.com
10555 S:      Maintained
10556 F:      Documentation/dev-tools/kasan.rst
10557 F:      arch/*/include/asm/*kasan.h
10558 F:      arch/*/mm/kasan_init*
10559 F:      include/linux/kasan*.h
10560 F:      lib/Kconfig.kasan
10561 F:      lib/test_kasan*.c
10562 F:      mm/kasan/
10563 F:      scripts/Makefile.kasan
10564
10565 KCONFIG
10566 M:      Masahiro Yamada <masahiroy@kernel.org>
10567 L:      linux-kbuild@vger.kernel.org
10568 S:      Maintained
10569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10570 F:      Documentation/kbuild/kconfig*
10571 F:      scripts/Kconfig.include
10572 F:      scripts/kconfig/
10573
10574 KCOV
10575 R:      Dmitry Vyukov <dvyukov@google.com>
10576 R:      Andrey Konovalov <andreyknvl@gmail.com>
10577 L:      kasan-dev@googlegroups.com
10578 S:      Maintained
10579 F:      Documentation/dev-tools/kcov.rst
10580 F:      include/linux/kcov.h
10581 F:      include/uapi/linux/kcov.h
10582 F:      kernel/kcov.c
10583 F:      scripts/Makefile.kcov
10584
10585 KCSAN
10586 M:      Marco Elver <elver@google.com>
10587 R:      Dmitry Vyukov <dvyukov@google.com>
10588 L:      kasan-dev@googlegroups.com
10589 S:      Maintained
10590 F:      Documentation/dev-tools/kcsan.rst
10591 F:      include/linux/kcsan*.h
10592 F:      kernel/kcsan/
10593 F:      lib/Kconfig.kcsan
10594 F:      scripts/Makefile.kcsan
10595
10596 KDUMP
10597 M:      Baoquan He <bhe@redhat.com>
10598 R:      Vivek Goyal <vgoyal@redhat.com>
10599 R:      Dave Young <dyoung@redhat.com>
10600 L:      kexec@lists.infradead.org
10601 S:      Maintained
10602 W:      http://lse.sourceforge.net/kdump/
10603 F:      Documentation/admin-guide/kdump/
10604 F:      fs/proc/vmcore.c
10605 F:      include/linux/crash_core.h
10606 F:      include/linux/crash_dump.h
10607 F:      include/uapi/linux/vmcore.h
10608 F:      kernel/crash_*.c
10609
10610 KEENE FM RADIO TRANSMITTER DRIVER
10611 M:      Hans Verkuil <hverkuil@xs4all.nl>
10612 L:      linux-media@vger.kernel.org
10613 S:      Maintained
10614 W:      https://linuxtv.org
10615 T:      git git://linuxtv.org/media_tree.git
10616 F:      drivers/media/radio/radio-keene*
10617
10618 KERNEL AUTOMOUNTER
10619 M:      Ian Kent <raven@themaw.net>
10620 L:      autofs@vger.kernel.org
10621 S:      Maintained
10622 F:      fs/autofs/
10623
10624 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10625 M:      Masahiro Yamada <masahiroy@kernel.org>
10626 M:      Michal Marek <michal.lkml@markovi.net>
10627 R:      Nick Desaulniers <ndesaulniers@google.com>
10628 L:      linux-kbuild@vger.kernel.org
10629 S:      Maintained
10630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10631 F:      Documentation/kbuild/
10632 F:      Makefile
10633 F:      scripts/*vmlinux*
10634 F:      scripts/Kbuild*
10635 F:      scripts/Makefile*
10636 F:      scripts/basic/
10637 F:      scripts/dummy-tools/
10638 F:      scripts/mk*
10639 F:      scripts/mod/
10640 F:      scripts/package/
10641
10642 KERNEL JANITORS
10643 L:      kernel-janitors@vger.kernel.org
10644 S:      Odd Fixes
10645 W:      http://kernelnewbies.org/KernelJanitors
10646
10647 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10648 M:      Chuck Lever <chuck.lever@oracle.com>
10649 L:      linux-nfs@vger.kernel.org
10650 S:      Supported
10651 W:      http://nfs.sourceforge.net/
10652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10653 F:      fs/lockd/
10654 F:      fs/nfs_common/
10655 F:      fs/nfsd/
10656 F:      include/linux/lockd/
10657 F:      include/linux/sunrpc/
10658 F:      include/uapi/linux/nfsd/
10659 F:      include/uapi/linux/sunrpc/
10660 F:      net/sunrpc/
10661 F:      Documentation/filesystems/nfs/
10662
10663 KERNEL REGRESSIONS
10664 M:      Thorsten Leemhuis <linux@leemhuis.info>
10665 L:      regressions@lists.linux.dev
10666 S:      Supported
10667 F:      Documentation/admin-guide/reporting-regressions.rst
10668 F:      Documentation/process/handling-regressions.rst
10669
10670 KERNEL SELFTEST FRAMEWORK
10671 M:      Shuah Khan <shuah@kernel.org>
10672 M:      Shuah Khan <skhan@linuxfoundation.org>
10673 L:      linux-kselftest@vger.kernel.org
10674 S:      Maintained
10675 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10677 F:      Documentation/dev-tools/kselftest*
10678 F:      tools/testing/selftests/
10679
10680 KERNEL SMB3 SERVER (KSMBD)
10681 M:      Namjae Jeon <linkinjeon@kernel.org>
10682 M:      Steve French <sfrench@samba.org>
10683 M:      Hyunchul Lee <hyc.lee@gmail.com>
10684 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
10685 L:      linux-cifs@vger.kernel.org
10686 S:      Maintained
10687 T:      git git://git.samba.org/ksmbd.git
10688 F:      fs/ksmbd/
10689 F:      fs/smbfs_common/
10690
10691 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10692 M:      Brendan Higgins <brendanhiggins@google.com>
10693 L:      linux-kselftest@vger.kernel.org
10694 L:      kunit-dev@googlegroups.com
10695 S:      Maintained
10696 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10697 F:      Documentation/dev-tools/kunit/
10698 F:      include/kunit/
10699 F:      lib/kunit/
10700 F:      tools/testing/kunit/
10701
10702 KERNEL USERMODE HELPER
10703 M:      Luis Chamberlain <mcgrof@kernel.org>
10704 L:      linux-kernel@vger.kernel.org
10705 S:      Maintained
10706 F:      include/linux/umh.h
10707 F:      kernel/umh.c
10708
10709 KERNEL VIRTUAL MACHINE (KVM)
10710 M:      Paolo Bonzini <pbonzini@redhat.com>
10711 L:      kvm@vger.kernel.org
10712 S:      Supported
10713 W:      http://www.linux-kvm.org
10714 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10715 F:      Documentation/virt/kvm/
10716 F:      include/asm-generic/kvm*
10717 F:      include/kvm/iodev.h
10718 F:      include/linux/kvm*
10719 F:      include/trace/events/kvm.h
10720 F:      include/uapi/asm-generic/kvm*
10721 F:      include/uapi/linux/kvm*
10722 F:      tools/kvm/
10723 F:      tools/testing/selftests/kvm/
10724 F:      virt/kvm/*
10725
10726 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10727 M:      Marc Zyngier <maz@kernel.org>
10728 R:      James Morse <james.morse@arm.com>
10729 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10730 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10732 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10733 S:      Maintained
10734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10735 F:      arch/arm64/include/asm/kvm*
10736 F:      arch/arm64/include/uapi/asm/kvm*
10737 F:      arch/arm64/kvm/
10738 F:      include/kvm/arm_*
10739 F:      tools/testing/selftests/kvm/*/aarch64/
10740 F:      tools/testing/selftests/kvm/aarch64/
10741
10742 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10743 M:      Huacai Chen <chenhuacai@kernel.org>
10744 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10745 L:      linux-mips@vger.kernel.org
10746 L:      kvm@vger.kernel.org
10747 S:      Maintained
10748 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10749 F:      arch/mips/include/asm/kvm*
10750 F:      arch/mips/include/uapi/asm/kvm*
10751 F:      arch/mips/kvm/
10752
10753 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10754 L:      linuxppc-dev@lists.ozlabs.org
10755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10756 F:      arch/powerpc/include/asm/kvm*
10757 F:      arch/powerpc/include/uapi/asm/kvm*
10758 F:      arch/powerpc/kernel/kvm*
10759 F:      arch/powerpc/kvm/
10760
10761 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10762 M:      Anup Patel <anup@brainfault.org>
10763 R:      Atish Patra <atishp@atishpatra.org>
10764 L:      kvm@vger.kernel.org
10765 L:      kvm-riscv@lists.infradead.org
10766 L:      linux-riscv@lists.infradead.org
10767 S:      Maintained
10768 T:      git git://github.com/kvm-riscv/linux.git
10769 F:      arch/riscv/include/asm/kvm*
10770 F:      arch/riscv/include/uapi/asm/kvm*
10771 F:      arch/riscv/kvm/
10772
10773 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10774 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10775 M:      Janosch Frank <frankja@linux.ibm.com>
10776 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10777 R:      David Hildenbrand <david@redhat.com>
10778 L:      kvm@vger.kernel.org
10779 S:      Supported
10780 W:      http://www.ibm.com/developerworks/linux/linux390/
10781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10782 F:      Documentation/virt/kvm/s390*
10783 F:      arch/s390/include/asm/gmap.h
10784 F:      arch/s390/include/asm/kvm*
10785 F:      arch/s390/include/uapi/asm/kvm*
10786 F:      arch/s390/kernel/uv.c
10787 F:      arch/s390/kvm/
10788 F:      arch/s390/mm/gmap.c
10789 F:      tools/testing/selftests/kvm/*/s390x/
10790 F:      tools/testing/selftests/kvm/s390x/
10791
10792 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10793 M:      Paolo Bonzini <pbonzini@redhat.com>
10794 R:      Sean Christopherson <seanjc@google.com>
10795 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10796 R:      Wanpeng Li <wanpengli@tencent.com>
10797 R:      Jim Mattson <jmattson@google.com>
10798 R:      Joerg Roedel <joro@8bytes.org>
10799 L:      kvm@vger.kernel.org
10800 S:      Supported
10801 W:      http://www.linux-kvm.org
10802 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10803 F:      arch/x86/include/asm/kvm*
10804 F:      arch/x86/include/asm/pvclock-abi.h
10805 F:      arch/x86/include/asm/svm.h
10806 F:      arch/x86/include/asm/vmx*.h
10807 F:      arch/x86/include/uapi/asm/kvm*
10808 F:      arch/x86/include/uapi/asm/svm.h
10809 F:      arch/x86/include/uapi/asm/vmx.h
10810 F:      arch/x86/kernel/kvm.c
10811 F:      arch/x86/kernel/kvmclock.c
10812 F:      arch/x86/kvm/
10813 F:      arch/x86/kvm/*/
10814
10815 KERNFS
10816 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10817 M:      Tejun Heo <tj@kernel.org>
10818 S:      Supported
10819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10820 F:      fs/kernfs/
10821 F:      include/linux/kernfs.h
10822
10823 KEXEC
10824 M:      Eric Biederman <ebiederm@xmission.com>
10825 L:      kexec@lists.infradead.org
10826 S:      Maintained
10827 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10828 F:      include/linux/kexec.h
10829 F:      include/uapi/linux/kexec.h
10830 F:      kernel/kexec*
10831
10832 KEYS-ENCRYPTED
10833 M:      Mimi Zohar <zohar@linux.ibm.com>
10834 L:      linux-integrity@vger.kernel.org
10835 L:      keyrings@vger.kernel.org
10836 S:      Supported
10837 F:      Documentation/security/keys/trusted-encrypted.rst
10838 F:      include/keys/encrypted-type.h
10839 F:      security/keys/encrypted-keys/
10840
10841 KEYS-TRUSTED
10842 M:      James Bottomley <jejb@linux.ibm.com>
10843 M:      Jarkko Sakkinen <jarkko@kernel.org>
10844 M:      Mimi Zohar <zohar@linux.ibm.com>
10845 L:      linux-integrity@vger.kernel.org
10846 L:      keyrings@vger.kernel.org
10847 S:      Supported
10848 F:      Documentation/security/keys/trusted-encrypted.rst
10849 F:      include/keys/trusted-type.h
10850 F:      include/keys/trusted_tpm.h
10851 F:      security/keys/trusted-keys/
10852
10853 KEYS-TRUSTED-TEE
10854 M:      Sumit Garg <sumit.garg@linaro.org>
10855 L:      linux-integrity@vger.kernel.org
10856 L:      keyrings@vger.kernel.org
10857 S:      Supported
10858 F:      include/keys/trusted_tee.h
10859 F:      security/keys/trusted-keys/trusted_tee.c
10860
10861 KEYS/KEYRINGS
10862 M:      David Howells <dhowells@redhat.com>
10863 M:      Jarkko Sakkinen <jarkko@kernel.org>
10864 L:      keyrings@vger.kernel.org
10865 S:      Maintained
10866 F:      Documentation/security/keys/core.rst
10867 F:      include/keys/
10868 F:      include/linux/key-type.h
10869 F:      include/linux/key.h
10870 F:      include/linux/keyctl.h
10871 F:      include/uapi/linux/keyctl.h
10872 F:      security/keys/
10873
10874 KEYS/KEYRINGS_INTEGRITY
10875 M:      Jarkko Sakkinen <jarkko@kernel.org>
10876 M:      Mimi Zohar <zohar@linux.ibm.com>
10877 L:      linux-integrity@vger.kernel.org
10878 L:      keyrings@vger.kernel.org
10879 S:      Supported
10880 F:      security/integrity/platform_certs
10881
10882 KFENCE
10883 M:      Alexander Potapenko <glider@google.com>
10884 M:      Marco Elver <elver@google.com>
10885 R:      Dmitry Vyukov <dvyukov@google.com>
10886 L:      kasan-dev@googlegroups.com
10887 S:      Maintained
10888 F:      Documentation/dev-tools/kfence.rst
10889 F:      arch/*/include/asm/kfence.h
10890 F:      include/linux/kfence.h
10891 F:      lib/Kconfig.kfence
10892 F:      mm/kfence/
10893
10894 KFIFO
10895 M:      Stefani Seibold <stefani@seibold.net>
10896 S:      Maintained
10897 F:      include/linux/kfifo.h
10898 F:      lib/kfifo.c
10899 F:      samples/kfifo/
10900
10901 KGDB / KDB /debug_core
10902 M:      Jason Wessel <jason.wessel@windriver.com>
10903 M:      Daniel Thompson <daniel.thompson@linaro.org>
10904 R:      Douglas Anderson <dianders@chromium.org>
10905 L:      kgdb-bugreport@lists.sourceforge.net
10906 S:      Maintained
10907 W:      http://kgdb.wiki.kernel.org/
10908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10909 F:      Documentation/dev-tools/kgdb.rst
10910 F:      drivers/misc/kgdbts.c
10911 F:      drivers/tty/serial/kgdboc.c
10912 F:      include/linux/kdb.h
10913 F:      include/linux/kgdb.h
10914 F:      kernel/debug/
10915
10916 KHADAS MCU MFD DRIVER
10917 M:      Neil Armstrong <narmstrong@baylibre.com>
10918 L:      linux-amlogic@lists.infradead.org
10919 S:      Maintained
10920 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10921 F:      drivers/mfd/khadas-mcu.c
10922 F:      include/linux/mfd/khadas-mcu.h
10923 F:      drivers/thermal/khadas_mcu_fan.c
10924
10925 KMEMLEAK
10926 M:      Catalin Marinas <catalin.marinas@arm.com>
10927 S:      Maintained
10928 F:      Documentation/dev-tools/kmemleak.rst
10929 F:      include/linux/kmemleak.h
10930 F:      mm/kmemleak.c
10931 F:      samples/kmemleak/kmemleak-test.c
10932
10933 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10934 M:      Luis Chamberlain <mcgrof@kernel.org>
10935 L:      linux-kernel@vger.kernel.org
10936 L:      linux-modules@vger.kernel.org
10937 S:      Maintained
10938 F:      include/linux/kmod.h
10939 F:      kernel/kmod.c
10940 F:      lib/test_kmod.c
10941 F:      tools/testing/selftests/kmod/
10942
10943 KPROBES
10944 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10945 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10946 M:      "David S. Miller" <davem@davemloft.net>
10947 M:      Masami Hiramatsu <mhiramat@kernel.org>
10948 S:      Maintained
10949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10950 F:      Documentation/trace/kprobes.rst
10951 F:      include/asm-generic/kprobes.h
10952 F:      include/linux/kprobes.h
10953 F:      kernel/kprobes.c
10954 F:      lib/test_kprobes.c
10955 F:      samples/kprobes
10956
10957 KS0108 LCD CONTROLLER DRIVER
10958 M:      Miguel Ojeda <ojeda@kernel.org>
10959 S:      Maintained
10960 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10961 F:      drivers/auxdisplay/ks0108.c
10962 F:      include/linux/ks0108.h
10963
10964 KTD253 BACKLIGHT DRIVER
10965 M:      Linus Walleij <linus.walleij@linaro.org>
10966 S:      Maintained
10967 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10968 F:      drivers/video/backlight/ktd253-backlight.c
10969
10970 KTEST
10971 M:      Steven Rostedt <rostedt@goodmis.org>
10972 M:      John Hawley <warthog9@eaglescrag.net>
10973 S:      Maintained
10974 F:      tools/testing/ktest
10975
10976 L3MDEV
10977 M:      David Ahern <dsahern@kernel.org>
10978 L:      netdev@vger.kernel.org
10979 S:      Maintained
10980 F:      include/net/l3mdev.h
10981 F:      net/l3mdev
10982
10983 L7 BPF FRAMEWORK
10984 M:      John Fastabend <john.fastabend@gmail.com>
10985 M:      Daniel Borkmann <daniel@iogearbox.net>
10986 M:      Jakub Sitnicki <jakub@cloudflare.com>
10987 L:      netdev@vger.kernel.org
10988 L:      bpf@vger.kernel.org
10989 S:      Maintained
10990 F:      include/linux/skmsg.h
10991 F:      net/core/skmsg.c
10992 F:      net/core/sock_map.c
10993 F:      net/ipv4/tcp_bpf.c
10994 F:      net/ipv4/udp_bpf.c
10995 F:      net/unix/unix_bpf.c
10996
10997 LANDLOCK SECURITY MODULE
10998 M:      Mickaël Salaün <mic@digikod.net>
10999 L:      linux-security-module@vger.kernel.org
11000 S:      Supported
11001 W:      https://landlock.io
11002 T:      git https://github.com/landlock-lsm/linux.git
11003 F:      Documentation/security/landlock.rst
11004 F:      Documentation/userspace-api/landlock.rst
11005 F:      include/uapi/linux/landlock.h
11006 F:      samples/landlock/
11007 F:      security/landlock/
11008 F:      tools/testing/selftests/landlock/
11009 K:      landlock
11010 K:      LANDLOCK
11011
11012 LANTIQ / INTEL Ethernet drivers
11013 M:      Hauke Mehrtens <hauke@hauke-m.de>
11014 L:      netdev@vger.kernel.org
11015 S:      Maintained
11016 F:      drivers/net/dsa/lantiq_gswip.c
11017 F:      drivers/net/dsa/lantiq_pce.h
11018 F:      drivers/net/ethernet/lantiq_xrx200.c
11019 F:      net/dsa/tag_gswip.c
11020
11021 LANTIQ MIPS ARCHITECTURE
11022 M:      John Crispin <john@phrozen.org>
11023 L:      linux-mips@vger.kernel.org
11024 S:      Maintained
11025 F:      arch/mips/lantiq
11026 F:      drivers/soc/lantiq
11027
11028 LASI 53c700 driver for PARISC
11029 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11030 L:      linux-scsi@vger.kernel.org
11031 S:      Maintained
11032 F:      Documentation/scsi/53c700.rst
11033 F:      drivers/scsi/53c700*
11034
11035 LEAKING_ADDRESSES
11036 M:      Tobin C. Harding <me@tobin.cc>
11037 M:      Tycho Andersen <tycho@tycho.pizza>
11038 L:      linux-hardening@vger.kernel.org
11039 S:      Maintained
11040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11041 F:      scripts/leaking_addresses.pl
11042
11043 LED SUBSYSTEM
11044 M:      Pavel Machek <pavel@ucw.cz>
11045 L:      linux-leds@vger.kernel.org
11046 S:      Maintained
11047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11048 F:      Documentation/devicetree/bindings/leds/
11049 F:      drivers/leds/
11050 F:      include/linux/leds.h
11051
11052 LEGACY EEPROM DRIVER
11053 M:      Jean Delvare <jdelvare@suse.com>
11054 S:      Maintained
11055 F:      Documentation/misc-devices/eeprom.rst
11056 F:      drivers/misc/eeprom/eeprom.c
11057
11058 LEGO MINDSTORMS EV3
11059 R:      David Lechner <david@lechnology.com>
11060 S:      Maintained
11061 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11062 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11063 F:      drivers/power/supply/lego_ev3_battery.c
11064
11065 LEGO USB Tower driver
11066 M:      Juergen Stuber <starblue@users.sourceforge.net>
11067 L:      legousb-devel@lists.sourceforge.net
11068 S:      Maintained
11069 W:      http://legousb.sourceforge.net/
11070 F:      drivers/usb/misc/legousbtower.c
11071
11072 LETSKETCH HID TABLET DRIVER
11073 M:      Hans de Goede <hdegoede@redhat.com>
11074 L:      linux-input@vger.kernel.org
11075 S:      Maintained
11076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11077 F:      drivers/hid/hid-letsketch.c
11078
11079 LG LAPTOP EXTRAS
11080 M:      Matan Ziv-Av <matan@svgalib.org>
11081 L:      platform-driver-x86@vger.kernel.org
11082 S:      Maintained
11083 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11084 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11085 F:      drivers/platform/x86/lg-laptop.c
11086
11087 LG2160 MEDIA DRIVER
11088 M:      Michael Krufky <mkrufky@linuxtv.org>
11089 L:      linux-media@vger.kernel.org
11090 S:      Maintained
11091 W:      https://linuxtv.org
11092 W:      http://github.com/mkrufky
11093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11094 T:      git git://linuxtv.org/mkrufky/tuners.git
11095 F:      drivers/media/dvb-frontends/lg2160.*
11096
11097 LGDT3305 MEDIA DRIVER
11098 M:      Michael Krufky <mkrufky@linuxtv.org>
11099 L:      linux-media@vger.kernel.org
11100 S:      Maintained
11101 W:      https://linuxtv.org
11102 W:      http://github.com/mkrufky
11103 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11104 T:      git git://linuxtv.org/mkrufky/tuners.git
11105 F:      drivers/media/dvb-frontends/lgdt3305.*
11106
11107 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11108 M:      Viresh Kumar <vireshk@kernel.org>
11109 L:      linux-ide@vger.kernel.org
11110 S:      Maintained
11111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11112 F:      drivers/ata/pata_arasan_cf.c
11113 F:      include/linux/pata_arasan_cf_data.h
11114
11115 LIBATA PATA DRIVERS
11116 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11117 L:      linux-ide@vger.kernel.org
11118 F:      drivers/ata/ata_*.c
11119 F:      drivers/ata/pata_*.c
11120
11121 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11122 M:      Linus Walleij <linus.walleij@linaro.org>
11123 L:      linux-ide@vger.kernel.org
11124 S:      Maintained
11125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11126 F:      drivers/ata/pata_ftide010.c
11127 F:      drivers/ata/sata_gemini.c
11128 F:      drivers/ata/sata_gemini.h
11129
11130 LIBATA SATA AHCI PLATFORM devices support
11131 M:      Hans de Goede <hdegoede@redhat.com>
11132 M:      Jens Axboe <axboe@kernel.dk>
11133 L:      linux-ide@vger.kernel.org
11134 S:      Maintained
11135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11136 F:      drivers/ata/ahci_platform.c
11137 F:      drivers/ata/libahci_platform.c
11138 F:      include/linux/ahci_platform.h
11139
11140 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11141 M:      Mikael Pettersson <mikpelinux@gmail.com>
11142 L:      linux-ide@vger.kernel.org
11143 S:      Maintained
11144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11145 F:      drivers/ata/sata_promise.*
11146
11147 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11148 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11149 L:      linux-ide@vger.kernel.org
11150 S:      Maintained
11151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11152 F:      Documentation/devicetree/bindings/ata/
11153 F:      drivers/ata/
11154 F:      include/linux/ata.h
11155 F:      include/linux/libata.h
11156
11157 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11158 M:      Vishal Verma <vishal.l.verma@intel.com>
11159 M:      Dan Williams <dan.j.williams@intel.com>
11160 M:      Dave Jiang <dave.jiang@intel.com>
11161 L:      nvdimm@lists.linux.dev
11162 S:      Supported
11163 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11164 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11165 F:      drivers/nvdimm/btt*
11166
11167 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11168 M:      Dan Williams <dan.j.williams@intel.com>
11169 M:      Vishal Verma <vishal.l.verma@intel.com>
11170 M:      Dave Jiang <dave.jiang@intel.com>
11171 L:      nvdimm@lists.linux.dev
11172 S:      Supported
11173 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11174 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11175 F:      drivers/nvdimm/pmem*
11176
11177 LIBNVDIMM: DEVICETREE BINDINGS
11178 M:      Oliver O'Halloran <oohall@gmail.com>
11179 L:      nvdimm@lists.linux.dev
11180 S:      Supported
11181 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11182 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11183 F:      drivers/nvdimm/of_pmem.c
11184
11185 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11186 M:      Dan Williams <dan.j.williams@intel.com>
11187 M:      Vishal Verma <vishal.l.verma@intel.com>
11188 M:      Dave Jiang <dave.jiang@intel.com>
11189 M:      Ira Weiny <ira.weiny@intel.com>
11190 L:      nvdimm@lists.linux.dev
11191 S:      Supported
11192 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11193 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11195 F:      drivers/acpi/nfit/*
11196 F:      drivers/nvdimm/*
11197 F:      include/linux/libnvdimm.h
11198 F:      include/linux/nd.h
11199 F:      include/uapi/linux/ndctl.h
11200 F:      tools/testing/nvdimm/
11201
11202 LICENSES and SPDX stuff
11203 M:      Thomas Gleixner <tglx@linutronix.de>
11204 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11205 L:      linux-spdx@vger.kernel.org
11206 S:      Maintained
11207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11208 F:      COPYING
11209 F:      Documentation/process/license-rules.rst
11210 F:      LICENSES/
11211 F:      scripts/spdxcheck-test.sh
11212 F:      scripts/spdxcheck.py
11213
11214 LINEAR RANGES HELPERS
11215 M:      Mark Brown <broonie@kernel.org>
11216 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11217 F:      lib/linear_ranges.c
11218 F:      lib/test_linear_ranges.c
11219 F:      include/linux/linear_range.h
11220
11221 LINUX FOR POWER MACINTOSH
11222 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11223 L:      linuxppc-dev@lists.ozlabs.org
11224 S:      Odd Fixes
11225 F:      arch/powerpc/platforms/powermac/
11226 F:      drivers/macintosh/
11227
11228 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11229 M:      Michael Ellerman <mpe@ellerman.id.au>
11230 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11231 R:      Paul Mackerras <paulus@samba.org>
11232 L:      linuxppc-dev@lists.ozlabs.org
11233 S:      Supported
11234 W:      https://github.com/linuxppc/wiki/wiki
11235 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11237 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11238 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11239 F:      Documentation/devicetree/bindings/powerpc/
11240 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11241 F:      Documentation/powerpc/
11242 F:      arch/powerpc/
11243 F:      drivers/*/*/*pasemi*
11244 F:      drivers/*/*pasemi*
11245 F:      drivers/char/tpm/tpm_ibmvtpm*
11246 F:      drivers/crypto/nx/
11247 F:      drivers/crypto/vmx/
11248 F:      drivers/i2c/busses/i2c-opal.c
11249 F:      drivers/net/ethernet/ibm/ibmveth.*
11250 F:      drivers/net/ethernet/ibm/ibmvnic.*
11251 F:      drivers/pci/hotplug/pnv_php.c
11252 F:      drivers/pci/hotplug/rpa*
11253 F:      drivers/rtc/rtc-opal.c
11254 F:      drivers/scsi/ibmvscsi/
11255 F:      drivers/tty/hvc/hvc_opal.c
11256 F:      drivers/watchdog/wdrtas.c
11257 F:      tools/testing/selftests/powerpc
11258 N:      /pmac
11259 N:      powermac
11260 N:      powernv
11261 N:      [^a-z0-9]ps3
11262 N:      pseries
11263
11264 LINUX FOR POWERPC EMBEDDED MPC5XXX
11265 M:      Anatolij Gustschin <agust@denx.de>
11266 L:      linuxppc-dev@lists.ozlabs.org
11267 S:      Odd Fixes
11268 F:      arch/powerpc/platforms/512x/
11269 F:      arch/powerpc/platforms/52xx/
11270
11271 LINUX FOR POWERPC EMBEDDED PPC4XX
11272 L:      linuxppc-dev@lists.ozlabs.org
11273 S:      Orphan
11274 F:      arch/powerpc/platforms/40x/
11275 F:      arch/powerpc/platforms/44x/
11276
11277 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11278 M:      Scott Wood <oss@buserror.net>
11279 L:      linuxppc-dev@lists.ozlabs.org
11280 S:      Odd fixes
11281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11282 F:      Documentation/devicetree/bindings/powerpc/fsl/
11283 F:      arch/powerpc/platforms/83xx/
11284 F:      arch/powerpc/platforms/85xx/
11285
11286 LINUX FOR POWERPC EMBEDDED PPC8XX
11287 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11288 L:      linuxppc-dev@lists.ozlabs.org
11289 S:      Maintained
11290 F:      arch/powerpc/platforms/8xx/
11291
11292 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11293 M:      Kees Cook <keescook@chromium.org>
11294 S:      Maintained
11295 F:      drivers/misc/lkdtm/*
11296 F:      tools/testing/selftests/lkdtm/*
11297
11298 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11299 M:      Alan Stern <stern@rowland.harvard.edu>
11300 M:      Andrea Parri <parri.andrea@gmail.com>
11301 M:      Will Deacon <will@kernel.org>
11302 M:      Peter Zijlstra <peterz@infradead.org>
11303 M:      Boqun Feng <boqun.feng@gmail.com>
11304 M:      Nicholas Piggin <npiggin@gmail.com>
11305 M:      David Howells <dhowells@redhat.com>
11306 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11307 M:      Luc Maranget <luc.maranget@inria.fr>
11308 M:      "Paul E. McKenney" <paulmck@kernel.org>
11309 R:      Akira Yokosawa <akiyks@gmail.com>
11310 R:      Daniel Lustig <dlustig@nvidia.com>
11311 R:      Joel Fernandes <joel@joelfernandes.org>
11312 L:      linux-kernel@vger.kernel.org
11313 L:      linux-arch@vger.kernel.org
11314 S:      Supported
11315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11316 F:      Documentation/atomic_bitops.txt
11317 F:      Documentation/atomic_t.txt
11318 F:      Documentation/core-api/refcount-vs-atomic.rst
11319 F:      Documentation/litmus-tests/
11320 F:      Documentation/memory-barriers.txt
11321 F:      tools/memory-model/
11322
11323 LIS3LV02D ACCELEROMETER DRIVER
11324 M:      Eric Piel <eric.piel@tremplin-utc.net>
11325 S:      Maintained
11326 F:      Documentation/misc-devices/lis3lv02d.rst
11327 F:      drivers/misc/lis3lv02d/
11328 F:      drivers/platform/x86/hp_accel.c
11329
11330 LIST KUNIT TEST
11331 M:      David Gow <davidgow@google.com>
11332 L:      linux-kselftest@vger.kernel.org
11333 L:      kunit-dev@googlegroups.com
11334 S:      Maintained
11335 F:      lib/list-test.c
11336
11337 LITEX PLATFORM
11338 M:      Karol Gugala <kgugala@antmicro.com>
11339 M:      Mateusz Holenko <mholenko@antmicro.com>
11340 M:      Gabriel Somlo <gsomlo@gmail.com>
11341 M:      Joel Stanley <joel@jms.id.au>
11342 S:      Maintained
11343 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11344 F:      arch/openrisc/boot/dts/or1klitex.dts
11345 F:      include/linux/litex.h
11346 F:      drivers/tty/serial/liteuart.c
11347 F:      drivers/soc/litex/*
11348 F:      drivers/net/ethernet/litex/*
11349 F:      drivers/mmc/host/litex_mmc.c
11350 N:      litex
11351
11352 LIVE PATCHING
11353 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11354 M:      Jiri Kosina <jikos@kernel.org>
11355 M:      Miroslav Benes <mbenes@suse.cz>
11356 M:      Petr Mladek <pmladek@suse.com>
11357 R:      Joe Lawrence <joe.lawrence@redhat.com>
11358 L:      live-patching@vger.kernel.org
11359 S:      Maintained
11360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11361 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11362 F:      Documentation/livepatch/
11363 F:      arch/powerpc/include/asm/livepatch.h
11364 F:      arch/s390/include/asm/livepatch.h
11365 F:      arch/x86/include/asm/livepatch.h
11366 F:      include/linux/livepatch.h
11367 F:      kernel/livepatch/
11368 F:      lib/livepatch/
11369 F:      samples/livepatch/
11370 F:      tools/testing/selftests/livepatch/
11371
11372 LLC (802.2)
11373 L:      netdev@vger.kernel.org
11374 S:      Odd fixes
11375 F:      include/linux/llc.h
11376 F:      include/net/llc*
11377 F:      include/uapi/linux/llc.h
11378 F:      net/llc/
11379
11380 LM73 HARDWARE MONITOR DRIVER
11381 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11382 L:      linux-hwmon@vger.kernel.org
11383 S:      Maintained
11384 F:      drivers/hwmon/lm73.c
11385
11386 LM78 HARDWARE MONITOR DRIVER
11387 M:      Jean Delvare <jdelvare@suse.com>
11388 L:      linux-hwmon@vger.kernel.org
11389 S:      Maintained
11390 F:      Documentation/hwmon/lm78.rst
11391 F:      drivers/hwmon/lm78.c
11392
11393 LM83 HARDWARE MONITOR DRIVER
11394 M:      Jean Delvare <jdelvare@suse.com>
11395 L:      linux-hwmon@vger.kernel.org
11396 S:      Maintained
11397 F:      Documentation/hwmon/lm83.rst
11398 F:      drivers/hwmon/lm83.c
11399
11400 LM90 HARDWARE MONITOR DRIVER
11401 M:      Jean Delvare <jdelvare@suse.com>
11402 L:      linux-hwmon@vger.kernel.org
11403 S:      Maintained
11404 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11405 F:      Documentation/hwmon/lm90.rst
11406 F:      drivers/hwmon/lm90.c
11407 F:      include/dt-bindings/thermal/lm90.h
11408
11409 LM95234 HARDWARE MONITOR DRIVER
11410 M:      Guenter Roeck <linux@roeck-us.net>
11411 L:      linux-hwmon@vger.kernel.org
11412 S:      Maintained
11413 F:      Documentation/hwmon/lm95234.rst
11414 F:      drivers/hwmon/lm95234.c
11415
11416 LME2510 MEDIA DRIVER
11417 M:      Malcolm Priestley <tvboxspy@gmail.com>
11418 L:      linux-media@vger.kernel.org
11419 S:      Maintained
11420 W:      https://linuxtv.org
11421 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11422 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11423
11424 LOADPIN SECURITY MODULE
11425 M:      Kees Cook <keescook@chromium.org>
11426 S:      Supported
11427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11428 F:      Documentation/admin-guide/LSM/LoadPin.rst
11429 F:      security/loadpin/
11430
11431 LOCKING PRIMITIVES
11432 M:      Peter Zijlstra <peterz@infradead.org>
11433 M:      Ingo Molnar <mingo@redhat.com>
11434 M:      Will Deacon <will@kernel.org>
11435 R:      Waiman Long <longman@redhat.com>
11436 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11437 L:      linux-kernel@vger.kernel.org
11438 S:      Maintained
11439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11440 F:      Documentation/locking/
11441 F:      arch/*/include/asm/spinlock*.h
11442 F:      include/linux/lockdep.h
11443 F:      include/linux/mutex*.h
11444 F:      include/linux/rwlock*.h
11445 F:      include/linux/rwsem*.h
11446 F:      include/linux/seqlock.h
11447 F:      include/linux/spinlock*.h
11448 F:      kernel/locking/
11449 F:      lib/locking*.[ch]
11450 X:      kernel/locking/locktorture.c
11451
11452 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11453 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11454 L:      linux-ntfs-dev@lists.sourceforge.net
11455 S:      Maintained
11456 W:      http://www.linux-ntfs.org/content/view/19/37/
11457 F:      Documentation/admin-guide/ldm.rst
11458 F:      block/partitions/ldm.*
11459
11460 LOGITECH HID GAMING KEYBOARDS
11461 M:      Hans de Goede <hdegoede@redhat.com>
11462 L:      linux-input@vger.kernel.org
11463 S:      Maintained
11464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11465 F:      drivers/hid/hid-lg-g15.c
11466
11467 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11468 M:      Adrien Grassein <adrien.grassein@gmail.com>
11469 S:      Maintained
11470 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11471 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11472
11473 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11474 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11475 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11476 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11477 L:      MPT-FusionLinux.pdl@broadcom.com
11478 L:      linux-scsi@vger.kernel.org
11479 S:      Supported
11480 W:      http://www.avagotech.com/support/
11481 F:      drivers/message/fusion/
11482 F:      drivers/scsi/mpt3sas/
11483
11484 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11485 M:      Matthew Wilcox <willy@infradead.org>
11486 L:      linux-scsi@vger.kernel.org
11487 S:      Maintained
11488 F:      drivers/scsi/sym53c8xx_2/
11489
11490 LTC1660 DAC DRIVER
11491 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11492 L:      linux-iio@vger.kernel.org
11493 S:      Maintained
11494 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11495 F:      drivers/iio/dac/ltc1660.c
11496
11497 LTC2688 IIO DAC DRIVER
11498 M:      Nuno Sá <nuno.sa@analog.com>
11499 L:      linux-iio@vger.kernel.org
11500 S:      Supported
11501 W:      http://ez.analog.com/community/linux-device-drivers
11502 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11503 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11504 F:      drivers/iio/dac/ltc2688.c
11505
11506 LTC2947 HARDWARE MONITOR DRIVER
11507 M:      Nuno Sá <nuno.sa@analog.com>
11508 L:      linux-hwmon@vger.kernel.org
11509 S:      Supported
11510 W:      https://ez.analog.com/linux-software-drivers
11511 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11512 F:      drivers/hwmon/ltc2947-core.c
11513 F:      drivers/hwmon/ltc2947-i2c.c
11514 F:      drivers/hwmon/ltc2947-spi.c
11515 F:      drivers/hwmon/ltc2947.h
11516
11517 LTC2983 IIO TEMPERATURE DRIVER
11518 M:      Nuno Sá <nuno.sa@analog.com>
11519 L:      linux-iio@vger.kernel.org
11520 S:      Supported
11521 W:      https://ez.analog.com/linux-software-drivers
11522 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11523 F:      drivers/iio/temperature/ltc2983.c
11524
11525 LTC4261 HARDWARE MONITOR DRIVER
11526 M:      Guenter Roeck <linux@roeck-us.net>
11527 L:      linux-hwmon@vger.kernel.org
11528 S:      Maintained
11529 F:      Documentation/hwmon/ltc4261.rst
11530 F:      drivers/hwmon/ltc4261.c
11531
11532 LTC4306 I2C MULTIPLEXER DRIVER
11533 M:      Michael Hennerich <michael.hennerich@analog.com>
11534 L:      linux-i2c@vger.kernel.org
11535 S:      Supported
11536 W:      https://ez.analog.com/linux-software-drivers
11537 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11538 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11539
11540 LTP (Linux Test Project)
11541 M:      Mike Frysinger <vapier@gentoo.org>
11542 M:      Cyril Hrubis <chrubis@suse.cz>
11543 M:      Wanlong Gao <wanlong.gao@gmail.com>
11544 M:      Jan Stancek <jstancek@redhat.com>
11545 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11546 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11547 L:      ltp@lists.linux.it (subscribers-only)
11548 S:      Maintained
11549 W:      http://linux-test-project.github.io/
11550 T:      git git://github.com/linux-test-project/ltp.git
11551
11552 LYNX 28G SERDES PHY DRIVER
11553 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11554 L:      netdev@vger.kernel.org
11555 S:      Supported
11556 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11557 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11558
11559 LYNX PCS MODULE
11560 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11561 L:      netdev@vger.kernel.org
11562 S:      Supported
11563 F:      drivers/net/pcs/pcs-lynx.c
11564 F:      include/linux/pcs-lynx.h
11565
11566 M68K ARCHITECTURE
11567 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11568 L:      linux-m68k@lists.linux-m68k.org
11569 S:      Maintained
11570 W:      http://www.linux-m68k.org/
11571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11572 F:      arch/m68k/
11573 F:      drivers/zorro/
11574
11575 M68K ON APPLE MACINTOSH
11576 M:      Joshua Thompson <funaho@jurai.org>
11577 L:      linux-m68k@lists.linux-m68k.org
11578 S:      Maintained
11579 W:      http://www.mac.linux-m68k.org/
11580 F:      arch/m68k/mac/
11581 F:      drivers/macintosh/adb-iop.c
11582 F:      drivers/macintosh/via-macii.c
11583
11584 M68K ON HP9000/300
11585 M:      Philip Blundell <philb@gnu.org>
11586 S:      Maintained
11587 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11588 F:      arch/m68k/hp300/
11589
11590 M88DS3103 MEDIA DRIVER
11591 M:      Antti Palosaari <crope@iki.fi>
11592 L:      linux-media@vger.kernel.org
11593 S:      Maintained
11594 W:      https://linuxtv.org
11595 W:      http://palosaari.fi/linux/
11596 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11597 T:      git git://linuxtv.org/anttip/media_tree.git
11598 F:      drivers/media/dvb-frontends/m88ds3103*
11599
11600 M88RS2000 MEDIA DRIVER
11601 M:      Malcolm Priestley <tvboxspy@gmail.com>
11602 L:      linux-media@vger.kernel.org
11603 S:      Maintained
11604 W:      https://linuxtv.org
11605 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11606 F:      drivers/media/dvb-frontends/m88rs2000*
11607
11608 MA901 MASTERKIT USB FM RADIO DRIVER
11609 M:      Alexey Klimov <klimov.linux@gmail.com>
11610 L:      linux-media@vger.kernel.org
11611 S:      Maintained
11612 T:      git git://linuxtv.org/media_tree.git
11613 F:      drivers/media/radio/radio-ma901.c
11614
11615 MAC80211
11616 M:      Johannes Berg <johannes@sipsolutions.net>
11617 L:      linux-wireless@vger.kernel.org
11618 S:      Maintained
11619 W:      https://wireless.wiki.kernel.org/
11620 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11623 F:      Documentation/networking/mac80211-injection.rst
11624 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11625 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11626 F:      include/net/mac80211.h
11627 F:      net/mac80211/
11628
11629 MAILBOX API
11630 M:      Jassi Brar <jassisinghbrar@gmail.com>
11631 L:      linux-kernel@vger.kernel.org
11632 S:      Maintained
11633 F:      drivers/mailbox/
11634 F:      include/linux/mailbox_client.h
11635 F:      include/linux/mailbox_controller.h
11636 F:      include/dt-bindings/mailbox/
11637 F:      Documentation/devicetree/bindings/mailbox/
11638
11639 MAILBOX ARM MHUv2
11640 M:      Viresh Kumar <viresh.kumar@linaro.org>
11641 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11642 L:      linux-kernel@vger.kernel.org
11643 S:      Maintained
11644 F:      drivers/mailbox/arm_mhuv2.c
11645 F:      include/linux/mailbox/arm_mhuv2_message.h
11646 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11647
11648 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11649 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11650 M:      Matt Johnston <matt@codeconstruct.com.au>
11651 L:      netdev@vger.kernel.org
11652 S:      Maintained
11653 F:      Documentation/networking/mctp.rst
11654 F:      drivers/net/mctp/
11655 F:      include/net/mctp.h
11656 F:      include/net/mctpdevice.h
11657 F:      include/net/netns/mctp.h
11658 F:      net/mctp/
11659
11660 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11661 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11662 L:      linux-man@vger.kernel.org
11663 S:      Maintained
11664 W:      http://www.kernel.org/doc/man-pages
11665
11666 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11667 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11668 L:      linux-mips@vger.kernel.org
11669 S:      Maintained
11670 F:      arch/mips/boot/dts/img/pistachio*
11671
11672 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11673 M:      Andrew Lunn <andrew@lunn.ch>
11674 M:      Vivien Didelot <vivien.didelot@gmail.com>
11675 L:      netdev@vger.kernel.org
11676 S:      Maintained
11677 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11678 F:      Documentation/networking/devlink/mv88e6xxx.rst
11679 F:      drivers/net/dsa/mv88e6xxx/
11680 F:      include/linux/dsa/mv88e6xxx.h
11681 F:      include/linux/platform_data/mv88e6xxx.h
11682
11683 MARVELL ARMADA 3700 PHY DRIVERS
11684 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11685 S:      Maintained
11686 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11687 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11688 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11689 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11690
11691 MARVELL ARMADA 3700 SERIAL DRIVER
11692 M:      Pali Rohár <pali@kernel.org>
11693 S:      Maintained
11694 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
11695 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
11696 F:      drivers/tty/serial/mvebu-uart.c
11697
11698 MARVELL ARMADA DRM SUPPORT
11699 M:      Russell King <linux@armlinux.org.uk>
11700 S:      Maintained
11701 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11702 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11703 F:      Documentation/devicetree/bindings/display/armada/
11704 F:      drivers/gpu/drm/armada/
11705 F:      include/uapi/drm/armada_drm.h
11706
11707 MARVELL CRYPTO DRIVER
11708 M:      Boris Brezillon <bbrezillon@kernel.org>
11709 M:      Arnaud Ebalard <arno@natisbad.org>
11710 M:      Srujana Challa <schalla@marvell.com>
11711 L:      linux-crypto@vger.kernel.org
11712 S:      Maintained
11713 F:      drivers/crypto/marvell/
11714 F:      include/linux/soc/marvell/octeontx2/
11715
11716 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11717 M:      Mirko Lindner <mlindner@marvell.com>
11718 M:      Stephen Hemminger <stephen@networkplumber.org>
11719 L:      netdev@vger.kernel.org
11720 S:      Maintained
11721 F:      drivers/net/ethernet/marvell/sk*
11722
11723 MARVELL LIBERTAS WIRELESS DRIVER
11724 L:      libertas-dev@lists.infradead.org
11725 S:      Orphan
11726 F:      drivers/net/wireless/marvell/libertas/
11727
11728 MARVELL MACCHIATOBIN SUPPORT
11729 M:      Russell King <linux@armlinux.org.uk>
11730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11731 S:      Maintained
11732 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11733
11734 MARVELL MV643XX ETHERNET DRIVER
11735 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11736 L:      netdev@vger.kernel.org
11737 S:      Maintained
11738 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11739 F:      include/linux/mv643xx.h
11740
11741 MARVELL MV88X3310 PHY DRIVER
11742 M:      Russell King <linux@armlinux.org.uk>
11743 M:      Marek Behún <kabel@kernel.org>
11744 L:      netdev@vger.kernel.org
11745 S:      Maintained
11746 F:      drivers/net/phy/marvell10g.c
11747
11748 MARVELL MVEBU THERMAL DRIVER
11749 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11750 S:      Maintained
11751 F:      drivers/thermal/armada_thermal.c
11752
11753 MARVELL MVNETA ETHERNET DRIVER
11754 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11755 L:      netdev@vger.kernel.org
11756 S:      Maintained
11757 F:      drivers/net/ethernet/marvell/mvneta.*
11758
11759 MARVELL MVPP2 ETHERNET DRIVER
11760 M:      Marcin Wojtas <mw@semihalf.com>
11761 M:      Russell King <linux@armlinux.org.uk>
11762 L:      netdev@vger.kernel.org
11763 S:      Maintained
11764 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11765 F:      drivers/net/ethernet/marvell/mvpp2/
11766
11767 MARVELL MWIFIEX WIRELESS DRIVER
11768 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11769 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11770 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11771 M:      Xinming Hu <huxinming820@gmail.com>
11772 L:      linux-wireless@vger.kernel.org
11773 S:      Maintained
11774 F:      drivers/net/wireless/marvell/mwifiex/
11775
11776 MARVELL MWL8K WIRELESS DRIVER
11777 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11778 L:      linux-wireless@vger.kernel.org
11779 S:      Odd Fixes
11780 F:      drivers/net/wireless/marvell/mwl8k.c
11781
11782 MARVELL NAND CONTROLLER DRIVER
11783 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11784 L:      linux-mtd@lists.infradead.org
11785 S:      Maintained
11786 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11787 F:      drivers/mtd/nand/raw/marvell_nand.c
11788
11789 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11790 M:      Sunil Goutham <sgoutham@marvell.com>
11791 M:      Geetha sowjanya <gakula@marvell.com>
11792 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11793 M:      hariprasad <hkelam@marvell.com>
11794 L:      netdev@vger.kernel.org
11795 S:      Supported
11796 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11797 F:      include/linux/soc/marvell/octeontx2/
11798
11799 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11800 M:      Sunil Goutham <sgoutham@marvell.com>
11801 M:      Linu Cherian <lcherian@marvell.com>
11802 M:      Geetha sowjanya <gakula@marvell.com>
11803 M:      Jerin Jacob <jerinj@marvell.com>
11804 M:      hariprasad <hkelam@marvell.com>
11805 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11806 L:      netdev@vger.kernel.org
11807 S:      Supported
11808 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11809 F:      drivers/net/ethernet/marvell/octeontx2/af/
11810
11811 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11812 M:      Taras Chornyi <tchornyi@marvell.com>
11813 S:      Supported
11814 W:      https://github.com/Marvell-switching/switchdev-prestera
11815 F:      drivers/net/ethernet/marvell/prestera/
11816
11817 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11818 M:      Nicolas Pitre <nico@fluxnic.net>
11819 S:      Odd Fixes
11820 F:      drivers/mmc/host/mvsdio.*
11821
11822 MARVELL USB MDIO CONTROLLER DRIVER
11823 M:      Tobias Waldekranz <tobias@waldekranz.com>
11824 L:      netdev@vger.kernel.org
11825 S:      Maintained
11826 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11827 F:      drivers/net/mdio/mdio-mvusb.c
11828
11829 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11830 M:      Hu Ziji <huziji@marvell.com>
11831 L:      linux-mmc@vger.kernel.org
11832 S:      Supported
11833 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11834 F:      drivers/mmc/host/sdhci-xenon*
11835
11836 MATROX FRAMEBUFFER DRIVER
11837 L:      linux-fbdev@vger.kernel.org
11838 S:      Orphan
11839 F:      drivers/video/fbdev/matrox/matroxfb_*
11840 F:      include/uapi/linux/matroxfb.h
11841
11842 MAX15301 DRIVER
11843 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11844 L:      linux-hwmon@vger.kernel.org
11845 S:      Maintained
11846 F:      Documentation/hwmon/max15301.rst
11847 F:      drivers/hwmon/pmbus/max15301.c
11848
11849 MAX16065 HARDWARE MONITOR DRIVER
11850 M:      Guenter Roeck <linux@roeck-us.net>
11851 L:      linux-hwmon@vger.kernel.org
11852 S:      Maintained
11853 F:      Documentation/hwmon/max16065.rst
11854 F:      drivers/hwmon/max16065.c
11855
11856 MAX2175 SDR TUNER DRIVER
11857 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11858 L:      linux-media@vger.kernel.org
11859 S:      Maintained
11860 T:      git git://linuxtv.org/media_tree.git
11861 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11862 F:      Documentation/userspace-api/media/drivers/max2175.rst
11863 F:      drivers/media/i2c/max2175*
11864 F:      include/uapi/linux/max2175.h
11865
11866 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11867 L:      linux-hwmon@vger.kernel.org
11868 S:      Orphan
11869 F:      Documentation/hwmon/max6650.rst
11870 F:      drivers/hwmon/max6650.c
11871
11872 MAX6697 HARDWARE MONITOR DRIVER
11873 M:      Guenter Roeck <linux@roeck-us.net>
11874 L:      linux-hwmon@vger.kernel.org
11875 S:      Maintained
11876 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11877 F:      Documentation/hwmon/max6697.rst
11878 F:      drivers/hwmon/max6697.c
11879 F:      include/linux/platform_data/max6697.h
11880
11881 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11882 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11883 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11884 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11885 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11886 L:      linux-media@vger.kernel.org
11887 S:      Maintained
11888 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11889 F:      drivers/media/i2c/max9286.c
11890
11891 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
11892 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11893 L:      linux-media@vger.kernel.org
11894 S:      Maintained
11895 F:      drivers/staging/media/max96712/max96712.c
11896
11897 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11898 M:      Peter Rosin <peda@axentia.se>
11899 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11900 S:      Maintained
11901 F:      Documentation/devicetree/bindings/sound/max9860.txt
11902 F:      sound/soc/codecs/max9860.*
11903
11904 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11905 M:      Andreas Klinger <ak@it-klinger.de>
11906 L:      linux-iio@vger.kernel.org
11907 S:      Maintained
11908 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11909 F:      drivers/iio/proximity/mb1232.c
11910
11911 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11912 R:      Iskren Chernev <iskren.chernev@gmail.com>
11913 R:      Krzysztof Kozlowski <krzk@kernel.org>
11914 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11915 R:      Matheus Castello <matheus@castello.eng.br>
11916 L:      linux-pm@vger.kernel.org
11917 S:      Maintained
11918 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11919 F:      drivers/power/supply/max17040_battery.c
11920
11921 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11922 R:      Hans de Goede <hdegoede@redhat.com>
11923 R:      Krzysztof Kozlowski <krzk@kernel.org>
11924 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11925 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11926 R:      Purism Kernel Team <kernel@puri.sm>
11927 L:      linux-pm@vger.kernel.org
11928 S:      Maintained
11929 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11930 F:      drivers/power/supply/max17042_battery.c
11931
11932 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
11933 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11934 L:      linux-kernel@vger.kernel.org
11935 S:      Maintained
11936 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
11937 F:      drivers/regulator/max20086-regulator.c
11938
11939 MAXIM MAX77650 PMIC MFD DRIVER
11940 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11941 L:      linux-kernel@vger.kernel.org
11942 S:      Maintained
11943 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11944 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11945 F:      drivers/gpio/gpio-max77650.c
11946 F:      drivers/input/misc/max77650-onkey.c
11947 F:      drivers/leds/leds-max77650.c
11948 F:      drivers/mfd/max77650.c
11949 F:      drivers/power/supply/max77650-charger.c
11950 F:      drivers/regulator/max77650-regulator.c
11951 F:      include/linux/mfd/max77650.h
11952
11953 MAXIM MAX77714 PMIC MFD DRIVER
11954 M:      Luca Ceresoli <luca@lucaceresoli.net>
11955 S:      Maintained
11956 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
11957 F:      drivers/mfd/max77714.c
11958 F:      include/linux/mfd/max77714.h
11959
11960 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11961 M:      Javier Martinez Canillas <javier@dowhile0.org>
11962 L:      linux-kernel@vger.kernel.org
11963 S:      Supported
11964 F:      Documentation/devicetree/bindings/*/*max77802.yaml
11965 F:      drivers/regulator/max77802-regulator.c
11966 F:      include/dt-bindings/*/*max77802.h
11967
11968 MAXIM MAX77976 BATTERY CHARGER
11969 M:      Luca Ceresoli <luca@lucaceresoli.net>
11970 S:      Supported
11971 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
11972 F:      drivers/power/supply/max77976_charger.c
11973
11974 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11975 M:      Krzysztof Kozlowski <krzk@kernel.org>
11976 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11977 L:      linux-pm@vger.kernel.org
11978 S:      Supported
11979 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
11980 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
11981 F:      drivers/power/supply/max14577_charger.c
11982 F:      drivers/power/supply/max77693_charger.c
11983
11984 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11985 M:      Chanwoo Choi <cw00.choi@samsung.com>
11986 M:      Krzysztof Kozlowski <krzk@kernel.org>
11987 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11988 L:      linux-kernel@vger.kernel.org
11989 S:      Supported
11990 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
11991 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
11992 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
11993 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
11994 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11995 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11996 F:      drivers/*/*max77843.c
11997 F:      drivers/*/max14577*.c
11998 F:      drivers/*/max77686*.c
11999 F:      drivers/*/max77693*.c
12000 F:      drivers/clk/clk-max77686.c
12001 F:      drivers/extcon/extcon-max14577.c
12002 F:      drivers/extcon/extcon-max77693.c
12003 F:      drivers/rtc/rtc-max77686.c
12004 F:      include/linux/mfd/max14577*.h
12005 F:      include/linux/mfd/max77686*.h
12006 F:      include/linux/mfd/max77693*.h
12007
12008 MAXIRADIO FM RADIO RECEIVER DRIVER
12009 M:      Hans Verkuil <hverkuil@xs4all.nl>
12010 L:      linux-media@vger.kernel.org
12011 S:      Maintained
12012 W:      https://linuxtv.org
12013 T:      git git://linuxtv.org/media_tree.git
12014 F:      drivers/media/radio/radio-maxiradio*
12015
12016 MAXLINEAR ETHERNET PHY DRIVER
12017 M:      Xu Liang <lxu@maxlinear.com>
12018 L:      netdev@vger.kernel.org
12019 S:      Supported
12020 F:      drivers/net/phy/mxl-gpy.c
12021
12022 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12023 R:      Yasushi SHOJI <yashi@spacecubics.com>
12024 L:      linux-can@vger.kernel.org
12025 S:      Maintained
12026 F:      drivers/net/can/usb/mcba_usb.c
12027
12028 MCAN MMIO DEVICE DRIVER
12029 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12030 L:      linux-can@vger.kernel.org
12031 S:      Maintained
12032 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12033 F:      drivers/net/can/m_can/m_can.c
12034 F:      drivers/net/can/m_can/m_can.h
12035 F:      drivers/net/can/m_can/m_can_platform.c
12036
12037 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12038 M:      Rishi Gupta <gupt21@gmail.com>
12039 L:      linux-i2c@vger.kernel.org
12040 L:      linux-input@vger.kernel.org
12041 S:      Maintained
12042 F:      drivers/hid/hid-mcp2221.c
12043
12044 MCP251XFD SPI-CAN NETWORK DRIVER
12045 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12046 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12047 R:      Thomas Kopp <thomas.kopp@microchip.com>
12048 L:      linux-can@vger.kernel.org
12049 S:      Maintained
12050 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12051 F:      drivers/net/can/spi/mcp251xfd/
12052
12053 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12054 M:      Peter Rosin <peda@axentia.se>
12055 L:      linux-iio@vger.kernel.org
12056 S:      Maintained
12057 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12058 F:      drivers/iio/potentiometer/mcp4018.c
12059 F:      drivers/iio/potentiometer/mcp4531.c
12060
12061 MCR20A IEEE-802.15.4 RADIO DRIVER
12062 M:      Xue Liu <liuxuenetmail@gmail.com>
12063 L:      linux-wpan@vger.kernel.org
12064 S:      Maintained
12065 W:      https://github.com/xueliu/mcr20a-linux
12066 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12067 F:      drivers/net/ieee802154/mcr20a.c
12068 F:      drivers/net/ieee802154/mcr20a.h
12069
12070 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12071 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12072 L:      linux-iio@vger.kernel.org
12073 S:      Maintained
12074 F:      drivers/iio/dac/cio-dac.c
12075
12076 MEDIA CONTROLLER FRAMEWORK
12077 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12078 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12079 L:      linux-media@vger.kernel.org
12080 S:      Supported
12081 W:      https://www.linuxtv.org
12082 T:      git git://linuxtv.org/media_tree.git
12083 F:      drivers/media/mc/
12084 F:      include/media/media-*.h
12085 F:      include/uapi/linux/media.h
12086
12087 MEDIA DRIVER FOR FREESCALE IMX PXP
12088 M:      Philipp Zabel <p.zabel@pengutronix.de>
12089 L:      linux-media@vger.kernel.org
12090 S:      Maintained
12091 T:      git git://linuxtv.org/media_tree.git
12092 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12093
12094 MEDIA DRIVERS FOR ASCOT2E
12095 M:      Sergey Kozlov <serjk@netup.ru>
12096 M:      Abylay Ospan <aospan@netup.ru>
12097 L:      linux-media@vger.kernel.org
12098 S:      Supported
12099 W:      https://linuxtv.org
12100 W:      http://netup.tv/
12101 T:      git git://linuxtv.org/media_tree.git
12102 F:      drivers/media/dvb-frontends/ascot2e*
12103
12104 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12105 M:      Jasmin Jessich <jasmin@anw.at>
12106 L:      linux-media@vger.kernel.org
12107 S:      Maintained
12108 W:      https://linuxtv.org
12109 T:      git git://linuxtv.org/media_tree.git
12110 F:      drivers/media/dvb-frontends/cxd2099*
12111
12112 MEDIA DRIVERS FOR CXD2841ER
12113 M:      Sergey Kozlov <serjk@netup.ru>
12114 M:      Abylay Ospan <aospan@netup.ru>
12115 L:      linux-media@vger.kernel.org
12116 S:      Supported
12117 W:      https://linuxtv.org
12118 W:      http://netup.tv/
12119 T:      git git://linuxtv.org/media_tree.git
12120 F:      drivers/media/dvb-frontends/cxd2841er*
12121
12122 MEDIA DRIVERS FOR CXD2880
12123 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12124 L:      linux-media@vger.kernel.org
12125 S:      Supported
12126 W:      http://linuxtv.org/
12127 T:      git git://linuxtv.org/media_tree.git
12128 F:      drivers/media/dvb-frontends/cxd2880/*
12129 F:      drivers/media/spi/cxd2880*
12130
12131 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12132 L:      linux-media@vger.kernel.org
12133 S:      Orphan
12134 W:      https://linuxtv.org
12135 T:      git git://linuxtv.org/media_tree.git
12136 F:      drivers/media/pci/ddbridge/*
12137
12138 MEDIA DRIVERS FOR FREESCALE IMX
12139 M:      Steve Longerbeam <slongerbeam@gmail.com>
12140 M:      Philipp Zabel <p.zabel@pengutronix.de>
12141 L:      linux-media@vger.kernel.org
12142 S:      Maintained
12143 T:      git git://linuxtv.org/media_tree.git
12144 F:      Documentation/admin-guide/media/imx.rst
12145 F:      Documentation/devicetree/bindings/media/imx.txt
12146 F:      drivers/staging/media/imx/
12147 F:      include/linux/imx-media.h
12148 F:      include/media/imx.h
12149
12150 MEDIA DRIVERS FOR FREESCALE IMX7
12151 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12152 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12153 L:      linux-media@vger.kernel.org
12154 S:      Maintained
12155 T:      git git://linuxtv.org/media_tree.git
12156 F:      Documentation/admin-guide/media/imx7.rst
12157 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12158 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12159 F:      drivers/media/platform/imx/imx-mipi-csis.c
12160 F:      drivers/staging/media/imx/imx7-media-csi.c
12161
12162 MEDIA DRIVERS FOR HELENE
12163 M:      Abylay Ospan <aospan@netup.ru>
12164 L:      linux-media@vger.kernel.org
12165 S:      Supported
12166 W:      https://linuxtv.org
12167 W:      http://netup.tv/
12168 T:      git git://linuxtv.org/media_tree.git
12169 F:      drivers/media/dvb-frontends/helene*
12170
12171 MEDIA DRIVERS FOR HORUS3A
12172 M:      Sergey Kozlov <serjk@netup.ru>
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/horus3a*
12180
12181 MEDIA DRIVERS FOR LNBH25
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/lnbh25*
12190
12191 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12192 L:      linux-media@vger.kernel.org
12193 S:      Orphan
12194 W:      https://linuxtv.org
12195 T:      git git://linuxtv.org/media_tree.git
12196 F:      drivers/media/dvb-frontends/mxl5xx*
12197
12198 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12199 M:      Sergey Kozlov <serjk@netup.ru>
12200 M:      Abylay Ospan <aospan@netup.ru>
12201 L:      linux-media@vger.kernel.org
12202 S:      Supported
12203 W:      https://linuxtv.org
12204 W:      http://netup.tv/
12205 T:      git git://linuxtv.org/media_tree.git
12206 F:      drivers/media/pci/netup_unidvb/*
12207
12208 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12209 M:      Dmitry Osipenko <digetx@gmail.com>
12210 L:      linux-media@vger.kernel.org
12211 L:      linux-tegra@vger.kernel.org
12212 S:      Maintained
12213 T:      git git://linuxtv.org/media_tree.git
12214 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
12215 F:      drivers/media/platform/nvidia/tegra-vde/
12216
12217 MEDIA DRIVERS FOR RENESAS - CEU
12218 M:      Jacopo Mondi <jacopo@jmondi.org>
12219 L:      linux-media@vger.kernel.org
12220 L:      linux-renesas-soc@vger.kernel.org
12221 S:      Supported
12222 T:      git git://linuxtv.org/media_tree.git
12223 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12224 F:      drivers/media/platform/renesas/renesas-ceu.c
12225 F:      include/media/drv-intf/renesas-ceu.h
12226
12227 MEDIA DRIVERS FOR RENESAS - DRIF
12228 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
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,drif.yaml
12234 F:      drivers/media/platform/renesas/rcar_drif.c
12235
12236 MEDIA DRIVERS FOR RENESAS - FCP
12237 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12238 L:      linux-media@vger.kernel.org
12239 L:      linux-renesas-soc@vger.kernel.org
12240 S:      Supported
12241 T:      git git://linuxtv.org/media_tree.git
12242 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12243 F:      drivers/media/platform/renesas/rcar-fcp.c
12244 F:      include/media/rcar-fcp.h
12245
12246 MEDIA DRIVERS FOR RENESAS - FDP1
12247 M:      Kieran Bingham <kieran.bingham+renesas@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,fdp1.yaml
12253 F:      drivers/media/platform/renesas/rcar_fdp1.c
12254
12255 MEDIA DRIVERS FOR RENESAS - VIN
12256 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12257 L:      linux-media@vger.kernel.org
12258 L:      linux-renesas-soc@vger.kernel.org
12259 S:      Supported
12260 T:      git git://linuxtv.org/media_tree.git
12261 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12262 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12263 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12264 F:      drivers/media/platform/renesas/rcar-isp.c
12265 F:      drivers/media/platform/renesas/rcar-vin/
12266
12267 MEDIA DRIVERS FOR RENESAS - VSP1
12268 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12269 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12270 L:      linux-media@vger.kernel.org
12271 L:      linux-renesas-soc@vger.kernel.org
12272 S:      Supported
12273 T:      git git://linuxtv.org/media_tree.git
12274 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12275 F:      drivers/media/platform/renesas/vsp1/
12276
12277 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12278 L:      linux-media@vger.kernel.org
12279 S:      Orphan
12280 W:      https://linuxtv.org
12281 T:      git git://linuxtv.org/media_tree.git
12282 F:      drivers/media/dvb-frontends/stv0910*
12283
12284 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12285 L:      linux-media@vger.kernel.org
12286 S:      Orphan
12287 W:      https://linuxtv.org
12288 T:      git git://linuxtv.org/media_tree.git
12289 F:      drivers/media/dvb-frontends/stv6111*
12290
12291 MEDIA DRIVERS FOR STM32 - DCMI
12292 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12293 L:      linux-media@vger.kernel.org
12294 S:      Supported
12295 T:      git git://linuxtv.org/media_tree.git
12296 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12297 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12298
12299 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12300 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12301 L:      linux-media@vger.kernel.org
12302 S:      Maintained
12303 W:      https://linuxtv.org
12304 Q:      http://patchwork.kernel.org/project/linux-media/list/
12305 T:      git git://linuxtv.org/media_tree.git
12306 F:      Documentation/admin-guide/media/
12307 F:      Documentation/devicetree/bindings/media/
12308 F:      Documentation/driver-api/media/
12309 F:      Documentation/userspace-api/media/
12310 F:      drivers/media/
12311 F:      drivers/staging/media/
12312 F:      include/linux/platform_data/media/
12313 F:      include/media/
12314 F:      include/uapi/linux/dvb/
12315 F:      include/uapi/linux/ivtv*
12316 F:      include/uapi/linux/media.h
12317 F:      include/uapi/linux/meye.h
12318 F:      include/uapi/linux/uvcvideo.h
12319 F:      include/uapi/linux/v4l2-*
12320 F:      include/uapi/linux/videodev2.h
12321
12322 MEDIATEK BLUETOOTH DRIVER
12323 M:      Sean Wang <sean.wang@mediatek.com>
12324 L:      linux-bluetooth@vger.kernel.org
12325 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12326 S:      Maintained
12327 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12328 F:      drivers/bluetooth/btmtkuart.c
12329
12330 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12331 M:      Sean Wang <sean.wang@mediatek.com>
12332 L:      linux-pm@vger.kernel.org
12333 S:      Maintained
12334 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12335 F:      drivers/power/reset/mt6323-poweroff.c
12336
12337 MEDIATEK CIR DRIVER
12338 M:      Sean Wang <sean.wang@mediatek.com>
12339 S:      Maintained
12340 F:      drivers/media/rc/mtk-cir.c
12341
12342 MEDIATEK DMA DRIVER
12343 M:      Sean Wang <sean.wang@mediatek.com>
12344 L:      dmaengine@vger.kernel.org
12345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12346 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12347 S:      Maintained
12348 F:      Documentation/devicetree/bindings/dma/mtk-*
12349 F:      drivers/dma/mediatek/
12350
12351 MEDIATEK ETHERNET DRIVER
12352 M:      Felix Fietkau <nbd@nbd.name>
12353 M:      John Crispin <john@phrozen.org>
12354 M:      Sean Wang <sean.wang@mediatek.com>
12355 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12356 L:      netdev@vger.kernel.org
12357 S:      Maintained
12358 F:      drivers/net/ethernet/mediatek/
12359
12360 MEDIATEK I2C CONTROLLER DRIVER
12361 M:      Qii Wang <qii.wang@mediatek.com>
12362 L:      linux-i2c@vger.kernel.org
12363 S:      Maintained
12364 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
12365 F:      drivers/i2c/busses/i2c-mt65xx.c
12366
12367 MEDIATEK IOMMU DRIVER
12368 M:      Yong Wu <yong.wu@mediatek.com>
12369 L:      iommu@lists.linux-foundation.org
12370 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12371 S:      Supported
12372 F:      Documentation/devicetree/bindings/iommu/mediatek*
12373 F:      drivers/iommu/mtk_iommu*
12374 F:      include/dt-bindings/memory/mt*-port.h
12375
12376 MEDIATEK JPEG DRIVER
12377 M:      Rick Chang <rick.chang@mediatek.com>
12378 M:      Bin Liu <bin.liu@mediatek.com>
12379 S:      Supported
12380 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
12381 F:      drivers/media/platform/mediatek/jpeg/
12382
12383 MEDIATEK MDP DRIVER
12384 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12385 M:      Houlong Wei <houlong.wei@mediatek.com>
12386 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12387 S:      Supported
12388 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12389 F:      drivers/media/platform/mediatek/mdp/
12390 F:      drivers/media/platform/mediatek/vpu/
12391
12392 MEDIATEK MEDIA DRIVER
12393 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12394 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12395 S:      Supported
12396 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
12397 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12398 F:      drivers/media/platform/mediatek/vcodec/
12399 F:      drivers/media/platform/mediatek/vpu/
12400
12401 MEDIATEK MMC/SD/SDIO DRIVER
12402 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12403 S:      Maintained
12404 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12405 F:      drivers/mmc/host/mtk-sd.c
12406
12407 MEDIATEK MT76 WIRELESS LAN DRIVER
12408 M:      Felix Fietkau <nbd@nbd.name>
12409 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
12410 M:      Ryder Lee <ryder.lee@mediatek.com>
12411 R:      Shayne Chen <shayne.chen@mediatek.com>
12412 R:      Sean Wang <sean.wang@mediatek.com>
12413 L:      linux-wireless@vger.kernel.org
12414 S:      Maintained
12415 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12416 F:      drivers/net/wireless/mediatek/mt76/
12417
12418 MEDIATEK MT7601U WIRELESS LAN DRIVER
12419 M:      Jakub Kicinski <kubakici@wp.pl>
12420 L:      linux-wireless@vger.kernel.org
12421 S:      Maintained
12422 F:      drivers/net/wireless/mediatek/mt7601u/
12423
12424 MEDIATEK MT7621 CLOCK DRIVER
12425 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12426 S:      Maintained
12427 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12428 F:      drivers/clk/ralink/clk-mt7621.c
12429
12430 MEDIATEK MT7621/28/88 I2C DRIVER
12431 M:      Stefan Roese <sr@denx.de>
12432 L:      linux-i2c@vger.kernel.org
12433 S:      Maintained
12434 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12435 F:      drivers/i2c/busses/i2c-mt7621.c
12436
12437 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12438 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12439 S:      Maintained
12440 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12441 F:      drivers/pci/controller/pcie-mt7621.c
12442
12443 MEDIATEK MT7621 PHY PCI DRIVER
12444 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12445 S:      Maintained
12446 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12447 F:      drivers/phy/ralink/phy-mt7621-pci.c
12448
12449 MEDIATEK NAND CONTROLLER DRIVER
12450 L:      linux-mtd@lists.infradead.org
12451 S:      Orphan
12452 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12453 F:      drivers/mtd/nand/raw/mtk_*
12454
12455 MEDIATEK PMIC LED DRIVER
12456 M:      Sean Wang <sean.wang@mediatek.com>
12457 S:      Maintained
12458 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12459 F:      drivers/leds/leds-mt6323.c
12460
12461 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12462 M:      Sean Wang <sean.wang@mediatek.com>
12463 S:      Maintained
12464 F:      drivers/char/hw_random/mtk-rng.c
12465
12466 MEDIATEK SMI DRIVER
12467 M:      Yong Wu <yong.wu@mediatek.com>
12468 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12469 S:      Supported
12470 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12471 F:      drivers/memory/mtk-smi.c
12472 F:      include/soc/mediatek/smi.h
12473
12474 MEDIATEK SWITCH DRIVER
12475 M:      Sean Wang <sean.wang@mediatek.com>
12476 M:      Landen Chao <Landen.Chao@mediatek.com>
12477 M:      DENG Qingfang <dqfext@gmail.com>
12478 L:      netdev@vger.kernel.org
12479 S:      Maintained
12480 F:      drivers/net/dsa/mt7530.*
12481 F:      net/dsa/tag_mtk.c
12482
12483 MEDIATEK USB3 DRD IP DRIVER
12484 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12485 L:      linux-usb@vger.kernel.org
12486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12487 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12488 S:      Maintained
12489 F:      Documentation/devicetree/bindings/usb/mediatek,*
12490 F:      drivers/usb/host/xhci-mtk*
12491 F:      drivers/usb/mtu3/
12492
12493 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12494 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12495 M:      Martin Donnelly <martin.donnelly@ge.com>
12496 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12497 S:      Maintained
12498 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12499 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12500
12501 MEGARAID SCSI/SAS DRIVERS
12502 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12503 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12504 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12505 L:      megaraidlinux.pdl@broadcom.com
12506 L:      linux-scsi@vger.kernel.org
12507 S:      Maintained
12508 W:      http://www.avagotech.com/support/
12509 F:      Documentation/scsi/megaraid.rst
12510 F:      drivers/scsi/megaraid.*
12511 F:      drivers/scsi/megaraid/
12512
12513 MELEXIS MLX90614 DRIVER
12514 M:      Crt Mori <cmo@melexis.com>
12515 L:      linux-iio@vger.kernel.org
12516 S:      Supported
12517 W:      http://www.melexis.com
12518 F:      drivers/iio/temperature/mlx90614.c
12519
12520 MELEXIS MLX90632 DRIVER
12521 M:      Crt Mori <cmo@melexis.com>
12522 L:      linux-iio@vger.kernel.org
12523 S:      Supported
12524 W:      http://www.melexis.com
12525 F:      drivers/iio/temperature/mlx90632.c
12526
12527 MELFAS MIP4 TOUCHSCREEN DRIVER
12528 M:      Sangwon Jee <jeesw@melfas.com>
12529 S:      Supported
12530 W:      http://www.melfas.com
12531 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12532 F:      drivers/input/touchscreen/melfas_mip4.c
12533
12534 MELLANOX BLUEFIELD I2C DRIVER
12535 M:      Khalil Blaiech <kblaiech@nvidia.com>
12536 L:      linux-i2c@vger.kernel.org
12537 S:      Supported
12538 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12539 F:      drivers/i2c/busses/i2c-mlxbf.c
12540
12541 MELLANOX ETHERNET DRIVER (mlx4_en)
12542 M:      Tariq Toukan <tariqt@nvidia.com>
12543 L:      netdev@vger.kernel.org
12544 S:      Supported
12545 W:      http://www.mellanox.com
12546 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12547 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12548
12549 MELLANOX ETHERNET DRIVER (mlx5e)
12550 M:      Saeed Mahameed <saeedm@nvidia.com>
12551 L:      netdev@vger.kernel.org
12552 S:      Supported
12553 W:      http://www.mellanox.com
12554 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12555 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12556
12557 MELLANOX ETHERNET INNOVA DRIVERS
12558 R:      Boris Pismenny <borisp@nvidia.com>
12559 L:      netdev@vger.kernel.org
12560 S:      Supported
12561 W:      http://www.mellanox.com
12562 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12563 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12564 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12565 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12566 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12567
12568 MELLANOX ETHERNET SWITCH DRIVERS
12569 M:      Ido Schimmel <idosch@nvidia.com>
12570 M:      Petr Machata <petrm@nvidia.com>
12571 L:      netdev@vger.kernel.org
12572 S:      Supported
12573 W:      http://www.mellanox.com
12574 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12575 F:      drivers/net/ethernet/mellanox/mlxsw/
12576 F:      tools/testing/selftests/drivers/net/mlxsw/
12577
12578 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12579 M:      mlxsw@nvidia.com
12580 L:      netdev@vger.kernel.org
12581 S:      Supported
12582 W:      http://www.mellanox.com
12583 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12584 F:      drivers/net/ethernet/mellanox/mlxfw/
12585
12586 MELLANOX HARDWARE PLATFORM SUPPORT
12587 M:      Hans de Goede <hdegoede@redhat.com>
12588 M:      Mark Gross <markgross@kernel.org>
12589 M:      Vadim Pasternak <vadimp@nvidia.com>
12590 L:      platform-driver-x86@vger.kernel.org
12591 S:      Supported
12592 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12593 F:      drivers/platform/mellanox/
12594 F:      include/linux/platform_data/mlxreg.h
12595
12596 MELLANOX MLX4 core VPI driver
12597 M:      Tariq Toukan <tariqt@nvidia.com>
12598 L:      netdev@vger.kernel.org
12599 L:      linux-rdma@vger.kernel.org
12600 S:      Supported
12601 W:      http://www.mellanox.com
12602 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12603 F:      drivers/net/ethernet/mellanox/mlx4/
12604 F:      include/linux/mlx4/
12605
12606 MELLANOX MLX4 IB driver
12607 M:      Yishai Hadas <yishaih@nvidia.com>
12608 L:      linux-rdma@vger.kernel.org
12609 S:      Supported
12610 W:      http://www.mellanox.com
12611 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12612 F:      drivers/infiniband/hw/mlx4/
12613 F:      include/linux/mlx4/
12614 F:      include/uapi/rdma/mlx4-abi.h
12615
12616 MELLANOX MLX5 core VPI driver
12617 M:      Saeed Mahameed <saeedm@nvidia.com>
12618 M:      Leon Romanovsky <leonro@nvidia.com>
12619 L:      netdev@vger.kernel.org
12620 L:      linux-rdma@vger.kernel.org
12621 S:      Supported
12622 W:      http://www.mellanox.com
12623 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12624 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12625 F:      drivers/net/ethernet/mellanox/mlx5/core/
12626 F:      include/linux/mlx5/
12627
12628 MELLANOX MLX5 IB driver
12629 M:      Leon Romanovsky <leonro@nvidia.com>
12630 L:      linux-rdma@vger.kernel.org
12631 S:      Supported
12632 W:      http://www.mellanox.com
12633 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12634 F:      drivers/infiniband/hw/mlx5/
12635 F:      include/linux/mlx5/
12636 F:      include/uapi/rdma/mlx5-abi.h
12637
12638 MELLANOX MLXCPLD I2C AND MUX DRIVER
12639 M:      Vadim Pasternak <vadimp@nvidia.com>
12640 M:      Michael Shych <michaelsh@nvidia.com>
12641 L:      linux-i2c@vger.kernel.org
12642 S:      Supported
12643 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12644 F:      drivers/i2c/busses/i2c-mlxcpld.c
12645 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12646
12647 MELLANOX MLXCPLD LED DRIVER
12648 M:      Vadim Pasternak <vadimp@nvidia.com>
12649 L:      linux-leds@vger.kernel.org
12650 S:      Supported
12651 F:      Documentation/leds/leds-mlxcpld.rst
12652 F:      drivers/leds/leds-mlxcpld.c
12653 F:      drivers/leds/leds-mlxreg.c
12654
12655 MELLANOX PLATFORM DRIVER
12656 M:      Vadim Pasternak <vadimp@nvidia.com>
12657 L:      platform-driver-x86@vger.kernel.org
12658 S:      Supported
12659 F:      drivers/platform/x86/mlx-platform.c
12660
12661 MEMBARRIER SUPPORT
12662 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12663 M:      "Paul E. McKenney" <paulmck@kernel.org>
12664 L:      linux-kernel@vger.kernel.org
12665 S:      Supported
12666 F:      arch/powerpc/include/asm/membarrier.h
12667 F:      include/uapi/linux/membarrier.h
12668 F:      kernel/sched/membarrier.c
12669
12670 MEMBLOCK
12671 M:      Mike Rapoport <rppt@kernel.org>
12672 L:      linux-mm@kvack.org
12673 S:      Maintained
12674 F:      Documentation/core-api/boot-time-mm.rst
12675 F:      include/linux/memblock.h
12676 F:      mm/memblock.c
12677 F:      tools/testing/memblock/
12678
12679 MEMORY CONTROLLER DRIVERS
12680 M:      Krzysztof Kozlowski <krzk@kernel.org>
12681 L:      linux-kernel@vger.kernel.org
12682 S:      Maintained
12683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12684 F:      Documentation/devicetree/bindings/memory-controllers/
12685 F:      drivers/memory/
12686 F:      include/dt-bindings/memory/
12687 F:      include/memory/
12688
12689 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12690 M:      Dmitry Osipenko <digetx@gmail.com>
12691 L:      linux-pm@vger.kernel.org
12692 L:      linux-tegra@vger.kernel.org
12693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12694 S:      Maintained
12695 F:      drivers/devfreq/tegra30-devfreq.c
12696
12697 MEMORY MANAGEMENT
12698 M:      Andrew Morton <akpm@linux-foundation.org>
12699 L:      linux-mm@kvack.org
12700 S:      Maintained
12701 W:      http://www.linux-mm.org
12702 T:      quilt https://ozlabs.org/~akpm/mmotm/
12703 T:      quilt https://ozlabs.org/~akpm/mmots/
12704 T:      git git://github.com/hnaz/linux-mm.git
12705 F:      include/linux/gfp.h
12706 F:      include/linux/memory_hotplug.h
12707 F:      include/linux/mm.h
12708 F:      include/linux/mmzone.h
12709 F:      include/linux/pagewalk.h
12710 F:      include/linux/vmalloc.h
12711 F:      mm/
12712 F:      tools/testing/selftests/vm/
12713
12714 MEMORY TECHNOLOGY DEVICES (MTD)
12715 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12716 M:      Richard Weinberger <richard@nod.at>
12717 M:      Vignesh Raghavendra <vigneshr@ti.com>
12718 L:      linux-mtd@lists.infradead.org
12719 S:      Maintained
12720 W:      http://www.linux-mtd.infradead.org/
12721 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12722 C:      irc://irc.oftc.net/mtd
12723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12725 F:      Documentation/devicetree/bindings/mtd/
12726 F:      drivers/mtd/
12727 F:      include/linux/mtd/
12728 F:      include/uapi/mtd/
12729
12730 MEN A21 WATCHDOG DRIVER
12731 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12732 L:      linux-watchdog@vger.kernel.org
12733 S:      Maintained
12734 F:      drivers/watchdog/mena21_wdt.c
12735
12736 MEN CHAMELEON BUS (mcb)
12737 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12738 S:      Maintained
12739 F:      Documentation/driver-api/men-chameleon-bus.rst
12740 F:      drivers/mcb/
12741 F:      include/linux/mcb.h
12742
12743 MEN F21BMC (Board Management Controller)
12744 M:      Andreas Werner <andreas.werner@men.de>
12745 S:      Supported
12746 F:      Documentation/hwmon/menf21bmc.rst
12747 F:      drivers/hwmon/menf21bmc_hwmon.c
12748 F:      drivers/leds/leds-menf21bmc.c
12749 F:      drivers/mfd/menf21bmc.c
12750 F:      drivers/watchdog/menf21bmc_wdt.c
12751
12752 MEN Z069 WATCHDOG DRIVER
12753 M:      Johannes Thumshirn <jth@kernel.org>
12754 L:      linux-watchdog@vger.kernel.org
12755 S:      Maintained
12756 F:      drivers/watchdog/menz69_wdt.c
12757
12758 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12759 M:      Neil Armstrong <narmstrong@baylibre.com>
12760 L:      linux-media@vger.kernel.org
12761 L:      linux-amlogic@lists.infradead.org
12762 S:      Supported
12763 W:      http://linux-meson.com/
12764 T:      git git://linuxtv.org/media_tree.git
12765 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12766 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12767 F:      drivers/media/cec/platform/meson/ao-cec.c
12768
12769 MESON GE2D 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 T:      git git://linuxtv.org/media_tree.git
12775 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12776 F:      drivers/media/platform/amlogic/meson-ge2d/
12777
12778 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12779 M:      Liang Yang <liang.yang@amlogic.com>
12780 L:      linux-mtd@lists.infradead.org
12781 S:      Maintained
12782 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12783 F:      drivers/mtd/nand/raw/meson_*
12784
12785 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12786 M:      Neil Armstrong <narmstrong@baylibre.com>
12787 L:      linux-media@vger.kernel.org
12788 L:      linux-amlogic@lists.infradead.org
12789 S:      Supported
12790 T:      git git://linuxtv.org/media_tree.git
12791 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12792 F:      drivers/staging/media/meson/vdec/
12793
12794 METHODE UDPU SUPPORT
12795 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12796 S:      Maintained
12797 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12798
12799 MHI BUS
12800 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12801 R:      Hemant Kumar <hemantk@codeaurora.org>
12802 L:      mhi@lists.linux.dev
12803 L:      linux-arm-msm@vger.kernel.org
12804 S:      Maintained
12805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12806 F:      Documentation/ABI/stable/sysfs-bus-mhi
12807 F:      Documentation/mhi/
12808 F:      drivers/bus/mhi/
12809 F:      include/linux/mhi.h
12810
12811 MICROBLAZE ARCHITECTURE
12812 M:      Michal Simek <monstr@monstr.eu>
12813 S:      Supported
12814 W:      http://www.monstr.eu/fdt/
12815 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12816 F:      arch/microblaze/
12817
12818 MICROCHIP AT91 DMA DRIVERS
12819 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12820 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12822 L:      dmaengine@vger.kernel.org
12823 S:      Supported
12824 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12825 F:      drivers/dma/at_hdmac.c
12826 F:      drivers/dma/at_hdmac_regs.h
12827 F:      drivers/dma/at_xdmac.c
12828 F:      include/dt-bindings/dma/at91.h
12829
12830 MICROCHIP AT91 SERIAL DRIVER
12831 M:      Richard Genoud <richard.genoud@gmail.com>
12832 S:      Maintained
12833 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12834 F:      drivers/tty/serial/atmel_serial.c
12835 F:      drivers/tty/serial/atmel_serial.h
12836
12837 MICROCHIP AT91 USART MFD DRIVER
12838 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12839 L:      linux-kernel@vger.kernel.org
12840 S:      Supported
12841 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12842 F:      drivers/mfd/at91-usart.c
12843 F:      include/dt-bindings/mfd/at91-usart.h
12844
12845 MICROCHIP AT91 USART SPI DRIVER
12846 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12847 L:      linux-spi@vger.kernel.org
12848 S:      Supported
12849 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12850 F:      drivers/spi/spi-at91-usart.c
12851
12852 MICROCHIP AUDIO ASOC DRIVERS
12853 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12854 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12855 S:      Supported
12856 F:      sound/soc/atmel
12857
12858 MICROCHIP CSI2DC DRIVER
12859 M:      Eugen Hristev <eugen.hristev@microchip.com>
12860 L:      linux-media@vger.kernel.org
12861 S:      Supported
12862 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
12863 F:      drivers/media/platform/atmel/microchip-csi2dc.c
12864
12865 MICROCHIP ECC DRIVER
12866 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12867 L:      linux-crypto@vger.kernel.org
12868 S:      Maintained
12869 F:      drivers/crypto/atmel-ecc.*
12870
12871 MICROCHIP EIC DRIVER
12872 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12874 S:      Supported
12875 F:      drivers/irqchip/irq-mchp-eic.c
12876
12877 MICROCHIP I2C DRIVER
12878 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12879 L:      linux-i2c@vger.kernel.org
12880 S:      Supported
12881 F:      drivers/i2c/busses/i2c-at91-*.c
12882 F:      drivers/i2c/busses/i2c-at91.h
12883
12884 MICROCHIP ISC DRIVER
12885 M:      Eugen Hristev <eugen.hristev@microchip.com>
12886 L:      linux-media@vger.kernel.org
12887 S:      Supported
12888 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12889 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12890 F:      drivers/media/platform/atmel/atmel-isc*
12891 F:      drivers/media/platform/atmel/atmel-sama*-isc*
12892 F:      include/linux/atmel-isc-media.h
12893
12894 MICROCHIP ISI DRIVER
12895 M:      Eugen Hristev <eugen.hristev@microchip.com>
12896 L:      linux-media@vger.kernel.org
12897 S:      Supported
12898 F:      drivers/media/platform/atmel/atmel-isi.c
12899 F:      drivers/media/platform/atmel/atmel-isi.h
12900
12901 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12902 M:      Woojung Huh <woojung.huh@microchip.com>
12903 M:      UNGLinuxDriver@microchip.com
12904 L:      netdev@vger.kernel.org
12905 S:      Maintained
12906 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12907 F:      drivers/net/dsa/microchip/*
12908 F:      include/linux/platform_data/microchip-ksz.h
12909 F:      net/dsa/tag_ksz.c
12910
12911 MICROCHIP LAN743X ETHERNET DRIVER
12912 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12913 M:      UNGLinuxDriver@microchip.com
12914 L:      netdev@vger.kernel.org
12915 S:      Maintained
12916 F:      drivers/net/ethernet/microchip/lan743x_*
12917
12918 MICROCHIP LAN966X ETHERNET DRIVER
12919 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
12920 M:      UNGLinuxDriver@microchip.com
12921 L:      netdev@vger.kernel.org
12922 S:      Maintained
12923 F:      drivers/net/ethernet/microchip/lan966x/*
12924
12925 MICROCHIP LCDFB DRIVER
12926 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12927 L:      linux-fbdev@vger.kernel.org
12928 S:      Maintained
12929 F:      drivers/video/fbdev/atmel_lcdfb.c
12930 F:      include/video/atmel_lcdc.h
12931
12932 MICROCHIP MCP16502 PMIC DRIVER
12933 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12935 S:      Supported
12936 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12937 F:      drivers/regulator/mcp16502.c
12938
12939 MICROCHIP MCP3911 ADC DRIVER
12940 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12941 M:      Kent Gustavsson <kent@minoris.se>
12942 L:      linux-iio@vger.kernel.org
12943 S:      Supported
12944 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12945 F:      drivers/iio/adc/mcp3911.c
12946
12947 MICROCHIP MMC/SD/SDIO MCI DRIVER
12948 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12949 S:      Maintained
12950 F:      drivers/mmc/host/atmel-mci.c
12951
12952 MICROCHIP NAND DRIVER
12953 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12954 L:      linux-mtd@lists.infradead.org
12955 S:      Supported
12956 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12957 F:      drivers/mtd/nand/raw/atmel/*
12958
12959 MICROCHIP PWM DRIVER
12960 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12962 L:      linux-pwm@vger.kernel.org
12963 S:      Supported
12964 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12965 F:      drivers/pwm/pwm-atmel.c
12966
12967 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12968 M:      Eugen Hristev <eugen.hristev@microchip.com>
12969 L:      linux-iio@vger.kernel.org
12970 S:      Supported
12971 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12972 F:      drivers/iio/adc/at91-sama5d2_adc.c
12973 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12974
12975 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12976 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12977 S:      Supported
12978 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12979
12980 MICROCHIP SPI DRIVER
12981 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12982 S:      Supported
12983 F:      drivers/spi/spi-atmel.*
12984
12985 MICROCHIP SSC DRIVER
12986 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12988 S:      Supported
12989 F:      drivers/misc/atmel-ssc.c
12990 F:      include/linux/atmel-ssc.h
12991
12992 MICROCHIP USB251XB DRIVER
12993 M:      Richard Leitner <richard.leitner@skidata.com>
12994 L:      linux-usb@vger.kernel.org
12995 S:      Maintained
12996 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12997 F:      drivers/usb/misc/usb251xb.c
12998
12999 MICROCHIP USBA UDC DRIVER
13000 M:      Cristian Birsan <cristian.birsan@microchip.com>
13001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13002 S:      Supported
13003 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13004
13005 MICROCHIP WILC1000 WIFI DRIVER
13006 M:      Ajay Singh <ajay.kathat@microchip.com>
13007 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13008 L:      linux-wireless@vger.kernel.org
13009 S:      Supported
13010 F:      drivers/net/wireless/microchip/wilc1000/
13011
13012 MICROSEMI MIPS SOCS
13013 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13014 M:      UNGLinuxDriver@microchip.com
13015 L:      linux-mips@vger.kernel.org
13016 S:      Supported
13017 F:      Documentation/devicetree/bindings/mips/mscc.txt
13018 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13019 F:      arch/mips/boot/dts/mscc/
13020 F:      arch/mips/configs/generic/board-ocelot.config
13021 F:      arch/mips/generic/board-ocelot.c
13022
13023 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13024 M:      Don Brace <don.brace@microchip.com>
13025 L:      storagedev@microchip.com
13026 L:      linux-scsi@vger.kernel.org
13027 S:      Supported
13028 F:      Documentation/scsi/smartpqi.rst
13029 F:      drivers/scsi/smartpqi/Kconfig
13030 F:      drivers/scsi/smartpqi/Makefile
13031 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13032 F:      include/linux/cciss*.h
13033 F:      include/uapi/linux/cciss*.h
13034
13035 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13036 M:      Maximilian Luz <luzmaximilian@gmail.com>
13037 L:      linux-pm@vger.kernel.org
13038 L:      platform-driver-x86@vger.kernel.org
13039 S:      Maintained
13040 F:      drivers/power/supply/surface_battery.c
13041 F:      drivers/power/supply/surface_charger.c
13042
13043 MICROSOFT SURFACE DTX DRIVER
13044 M:      Maximilian Luz <luzmaximilian@gmail.com>
13045 L:      platform-driver-x86@vger.kernel.org
13046 S:      Maintained
13047 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13048 F:      drivers/platform/surface/surface_dtx.c
13049 F:      include/uapi/linux/surface_aggregator/dtx.h
13050
13051 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13052 M:      Maximilian Luz <luzmaximilian@gmail.com>
13053 L:      platform-driver-x86@vger.kernel.org
13054 S:      Maintained
13055 F:      drivers/platform/surface/surface_gpe.c
13056
13057 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13058 M:      Hans de Goede <hdegoede@redhat.com>
13059 M:      Mark Gross <markgross@kernel.org>
13060 M:      Maximilian Luz <luzmaximilian@gmail.com>
13061 L:      platform-driver-x86@vger.kernel.org
13062 S:      Maintained
13063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13064 F:      drivers/platform/surface/
13065
13066 MICROSOFT SURFACE HID TRANSPORT DRIVER
13067 M:      Maximilian Luz <luzmaximilian@gmail.com>
13068 L:      linux-input@vger.kernel.org
13069 L:      platform-driver-x86@vger.kernel.org
13070 S:      Maintained
13071 F:      drivers/hid/surface-hid/
13072
13073 MICROSOFT SURFACE HOT-PLUG DRIVER
13074 M:      Maximilian Luz <luzmaximilian@gmail.com>
13075 L:      platform-driver-x86@vger.kernel.org
13076 S:      Maintained
13077 F:      drivers/platform/surface/surface_hotplug.c
13078
13079 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13080 M:      Maximilian Luz <luzmaximilian@gmail.com>
13081 L:      platform-driver-x86@vger.kernel.org
13082 S:      Maintained
13083 F:      drivers/platform/surface/surface_platform_profile.c
13084
13085 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13086 M:      Chen Yu <yu.c.chen@intel.com>
13087 L:      platform-driver-x86@vger.kernel.org
13088 S:      Supported
13089 F:      drivers/platform/surface/surfacepro3_button.c
13090
13091 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13092 M:      Maximilian Luz <luzmaximilian@gmail.com>
13093 L:      platform-driver-x86@vger.kernel.org
13094 S:      Maintained
13095 W:      https://github.com/linux-surface/surface-aggregator-module
13096 C:      irc://irc.libera.chat/linux-surface
13097 F:      Documentation/driver-api/surface_aggregator/
13098 F:      drivers/platform/surface/aggregator/
13099 F:      drivers/platform/surface/surface_acpi_notify.c
13100 F:      drivers/platform/surface/surface_aggregator_cdev.c
13101 F:      drivers/platform/surface/surface_aggregator_registry.c
13102 F:      include/linux/surface_acpi_notify.h
13103 F:      include/linux/surface_aggregator/
13104 F:      include/uapi/linux/surface_aggregator/
13105
13106 MICROTEK X6 SCANNER
13107 M:      Oliver Neukum <oliver@neukum.org>
13108 S:      Maintained
13109 F:      drivers/usb/image/microtek.*
13110
13111 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13112 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13113 M:      Luka Perkov <luka.perkov@sartura.hr>
13114 S:      Maintained
13115 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13116 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13117 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13118 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13119 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13120 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13121
13122 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13123 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13124 L:      linux-media@vger.kernel.org
13125 S:      Maintained
13126 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13127 F:      Documentation/driver-api/media/drivers/ccs/
13128 F:      Documentation/userspace-api/media/drivers/ccs.rst
13129 F:      drivers/media/i2c/ccs-pll.c
13130 F:      drivers/media/i2c/ccs-pll.h
13131 F:      drivers/media/i2c/ccs/
13132 F:      include/uapi/linux/ccs.h
13133 F:      include/uapi/linux/smiapp.h
13134
13135 MIPS
13136 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13137 L:      linux-mips@vger.kernel.org
13138 S:      Maintained
13139 W:      http://www.linux-mips.org/
13140 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13142 F:      Documentation/devicetree/bindings/mips/
13143 F:      Documentation/mips/
13144 F:      arch/mips/
13145 F:      drivers/platform/mips/
13146
13147 MIPS BOSTON DEVELOPMENT BOARD
13148 M:      Paul Burton <paulburton@kernel.org>
13149 L:      linux-mips@vger.kernel.org
13150 S:      Maintained
13151 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13152 F:      arch/mips/boot/dts/img/boston.dts
13153 F:      arch/mips/configs/generic/board-boston.config
13154 F:      drivers/clk/imgtec/clk-boston.c
13155 F:      include/dt-bindings/clock/boston-clock.h
13156
13157 MIPS CORE DRIVERS
13158 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13159 M:      Serge Semin <fancer.lancer@gmail.com>
13160 L:      linux-mips@vger.kernel.org
13161 S:      Supported
13162 F:      drivers/bus/mips_cdmm.c
13163 F:      drivers/clocksource/mips-gic-timer.c
13164 F:      drivers/cpuidle/cpuidle-cps.c
13165 F:      drivers/irqchip/irq-mips-cpu.c
13166 F:      drivers/irqchip/irq-mips-gic.c
13167
13168 MIPS GENERIC PLATFORM
13169 M:      Paul Burton <paulburton@kernel.org>
13170 L:      linux-mips@vger.kernel.org
13171 S:      Supported
13172 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13173 F:      arch/mips/generic/
13174 F:      arch/mips/tools/generic-board-config.sh
13175
13176 MIPS RINT INSTRUCTION EMULATION
13177 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13178 L:      linux-mips@vger.kernel.org
13179 S:      Supported
13180 F:      arch/mips/math-emu/dp_rint.c
13181 F:      arch/mips/math-emu/sp_rint.c
13182
13183 MIPS/LOONGSON1 ARCHITECTURE
13184 M:      Keguang Zhang <keguang.zhang@gmail.com>
13185 L:      linux-mips@vger.kernel.org
13186 S:      Maintained
13187 F:      arch/mips/include/asm/mach-loongson32/
13188 F:      arch/mips/loongson32/
13189 F:      drivers/*/*/*loongson1*
13190 F:      drivers/*/*loongson1*
13191
13192 MIPS/LOONGSON2EF ARCHITECTURE
13193 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13194 L:      linux-mips@vger.kernel.org
13195 S:      Maintained
13196 F:      arch/mips/include/asm/mach-loongson2ef/
13197 F:      arch/mips/loongson2ef/
13198 F:      drivers/cpufreq/loongson2_cpufreq.c
13199
13200 MIPS/LOONGSON64 ARCHITECTURE
13201 M:      Huacai Chen <chenhuacai@kernel.org>
13202 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13203 L:      linux-mips@vger.kernel.org
13204 S:      Maintained
13205 F:      arch/mips/include/asm/mach-loongson64/
13206 F:      arch/mips/loongson64/
13207 F:      drivers/irqchip/irq-loongson*
13208 F:      drivers/platform/mips/cpu_hwmon.c
13209
13210 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13211 M:      Hans Verkuil <hverkuil@xs4all.nl>
13212 L:      linux-media@vger.kernel.org
13213 S:      Odd Fixes
13214 W:      https://linuxtv.org
13215 T:      git git://linuxtv.org/media_tree.git
13216 F:      drivers/media/radio/radio-miropcm20*
13217
13218 MMP SUPPORT
13219 R:      Lubomir Rintel <lkundrak@v3.sk>
13220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13221 S:      Odd Fixes
13222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13223 F:      arch/arm/boot/dts/mmp*
13224 F:      arch/arm/mach-mmp/
13225 F:      include/linux/soc/mmp/
13226
13227 MMP USB PHY DRIVERS
13228 R:      Lubomir Rintel <lkundrak@v3.sk>
13229 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13230 S:      Maintained
13231 F:      drivers/phy/marvell/phy-mmp3-usb.c
13232 F:      drivers/phy/marvell/phy-pxa-usb.c
13233
13234 MMU GATHER AND TLB INVALIDATION
13235 M:      Will Deacon <will@kernel.org>
13236 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13237 M:      Andrew Morton <akpm@linux-foundation.org>
13238 M:      Nick Piggin <npiggin@gmail.com>
13239 M:      Peter Zijlstra <peterz@infradead.org>
13240 L:      linux-arch@vger.kernel.org
13241 L:      linux-mm@kvack.org
13242 S:      Maintained
13243 F:      arch/*/include/asm/tlb.h
13244 F:      include/asm-generic/tlb.h
13245 F:      mm/mmu_gather.c
13246
13247 MN88472 MEDIA DRIVER
13248 M:      Antti Palosaari <crope@iki.fi>
13249 L:      linux-media@vger.kernel.org
13250 S:      Maintained
13251 W:      https://linuxtv.org
13252 W:      http://palosaari.fi/linux/
13253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13254 F:      drivers/media/dvb-frontends/mn88472*
13255
13256 MN88473 MEDIA DRIVER
13257 M:      Antti Palosaari <crope@iki.fi>
13258 L:      linux-media@vger.kernel.org
13259 S:      Maintained
13260 W:      https://linuxtv.org
13261 W:      http://palosaari.fi/linux/
13262 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13263 F:      drivers/media/dvb-frontends/mn88473*
13264
13265 MODULE SUPPORT
13266 M:      Luis Chamberlain <mcgrof@kernel.org>
13267 L:      linux-modules@vger.kernel.org
13268 L:      linux-kernel@vger.kernel.org
13269 S:      Maintained
13270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13271 F:      include/linux/module.h
13272 F:      kernel/module.c
13273
13274 MONOLITHIC POWER SYSTEM PMIC DRIVER
13275 M:      Saravanan Sekar <sravanhome@gmail.com>
13276 S:      Maintained
13277 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13278 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13279 F:      drivers/iio/adc/mp2629_adc.c
13280 F:      drivers/mfd/mp2629.c
13281 F:      drivers/power/supply/mp2629_charger.c
13282 F:      drivers/regulator/mp5416.c
13283 F:      drivers/regulator/mpq7920.c
13284 F:      drivers/regulator/mpq7920.h
13285 F:      include/linux/mfd/mp2629.h
13286
13287 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13288 S:      Orphan
13289 W:      http://popies.net/meye/
13290 F:      Documentation/userspace-api/media/drivers/meye*
13291 F:      drivers/media/pci/meye/
13292 F:      include/uapi/linux/meye.h
13293
13294 MOTORCOMM PHY DRIVER
13295 M:      Peter Geis <pgwipeout@gmail.com>
13296 L:      netdev@vger.kernel.org
13297 S:      Maintained
13298 F:      drivers/net/phy/motorcomm.c
13299
13300 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13301 M:      Jiri Slaby <jirislaby@kernel.org>
13302 S:      Maintained
13303 F:      Documentation/driver-api/serial/moxa-smartio.rst
13304 F:      drivers/tty/mxser.*
13305
13306 MR800 AVERMEDIA USB FM RADIO DRIVER
13307 M:      Alexey Klimov <klimov.linux@gmail.com>
13308 L:      linux-media@vger.kernel.org
13309 S:      Maintained
13310 T:      git git://linuxtv.org/media_tree.git
13311 F:      drivers/media/radio/radio-mr800.c
13312
13313 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13314 M:      Alan Ott <alan@signal11.us>
13315 L:      linux-wpan@vger.kernel.org
13316 S:      Maintained
13317 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13318 F:      drivers/net/ieee802154/mrf24j40.c
13319
13320 MSI LAPTOP SUPPORT
13321 M:      "Lee, Chun-Yi" <jlee@suse.com>
13322 L:      platform-driver-x86@vger.kernel.org
13323 S:      Maintained
13324 F:      drivers/platform/x86/msi-laptop.c
13325
13326 MSI WMI SUPPORT
13327 L:      platform-driver-x86@vger.kernel.org
13328 S:      Orphan
13329 F:      drivers/platform/x86/msi-wmi.c
13330
13331 MSI001 MEDIA DRIVER
13332 M:      Antti Palosaari <crope@iki.fi>
13333 L:      linux-media@vger.kernel.org
13334 S:      Maintained
13335 W:      https://linuxtv.org
13336 W:      http://palosaari.fi/linux/
13337 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13338 T:      git git://linuxtv.org/anttip/media_tree.git
13339 F:      drivers/media/tuners/msi001*
13340
13341 MSI2500 MEDIA DRIVER
13342 M:      Antti Palosaari <crope@iki.fi>
13343 L:      linux-media@vger.kernel.org
13344 S:      Maintained
13345 W:      https://linuxtv.org
13346 W:      http://palosaari.fi/linux/
13347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13348 T:      git git://linuxtv.org/anttip/media_tree.git
13349 F:      drivers/media/usb/msi2500/
13350
13351 MSTAR INTERRUPT CONTROLLER DRIVER
13352 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13353 M:      Daniel Palmer <daniel@thingy.jp>
13354 S:      Maintained
13355 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13356 F:      drivers/irqchip/irq-mst-intc.c
13357
13358 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13359 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13360 L:      linux-mtd@lists.infradead.org
13361 S:      Maintained
13362 F:      drivers/mtd/devices/docg3*
13363
13364 MT9M032 APTINA SENSOR DRIVER
13365 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13366 L:      linux-media@vger.kernel.org
13367 S:      Maintained
13368 T:      git git://linuxtv.org/media_tree.git
13369 F:      drivers/media/i2c/mt9m032.c
13370 F:      include/media/i2c/mt9m032.h
13371
13372 MT9P031 APTINA CAMERA SENSOR
13373 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13374 L:      linux-media@vger.kernel.org
13375 S:      Maintained
13376 T:      git git://linuxtv.org/media_tree.git
13377 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13378 F:      drivers/media/i2c/mt9p031.c
13379 F:      include/media/i2c/mt9p031.h
13380
13381 MT9T001 APTINA CAMERA SENSOR
13382 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13383 L:      linux-media@vger.kernel.org
13384 S:      Maintained
13385 T:      git git://linuxtv.org/media_tree.git
13386 F:      drivers/media/i2c/mt9t001.c
13387 F:      include/media/i2c/mt9t001.h
13388
13389 MT9T112 APTINA CAMERA SENSOR
13390 M:      Jacopo Mondi <jacopo@jmondi.org>
13391 L:      linux-media@vger.kernel.org
13392 S:      Odd Fixes
13393 T:      git git://linuxtv.org/media_tree.git
13394 F:      drivers/media/i2c/mt9t112.c
13395 F:      include/media/i2c/mt9t112.h
13396
13397 MT9V032 APTINA CAMERA SENSOR
13398 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13399 L:      linux-media@vger.kernel.org
13400 S:      Maintained
13401 T:      git git://linuxtv.org/media_tree.git
13402 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13403 F:      drivers/media/i2c/mt9v032.c
13404 F:      include/media/i2c/mt9v032.h
13405
13406 MT9V111 APTINA CAMERA SENSOR
13407 M:      Jacopo Mondi <jacopo@jmondi.org>
13408 L:      linux-media@vger.kernel.org
13409 S:      Maintained
13410 T:      git git://linuxtv.org/media_tree.git
13411 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13412 F:      drivers/media/i2c/mt9v111.c
13413
13414 MULTIFUNCTION DEVICES (MFD)
13415 M:      Lee Jones <lee.jones@linaro.org>
13416 S:      Supported
13417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13418 F:      Documentation/devicetree/bindings/mfd/
13419 F:      drivers/mfd/
13420 F:      include/dt-bindings/mfd/
13421 F:      include/linux/mfd/
13422
13423 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13424 S:      Orphan
13425 F:      drivers/mmc/host/mmc_spi.c
13426 F:      include/linux/spi/mmc_spi.h
13427
13428 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13429 M:      Ulf Hansson <ulf.hansson@linaro.org>
13430 L:      linux-mmc@vger.kernel.org
13431 S:      Maintained
13432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13433 F:      Documentation/devicetree/bindings/mmc/
13434 F:      drivers/mmc/
13435 F:      include/linux/mmc/
13436 F:      include/uapi/linux/mmc/
13437
13438 MULTIPLEXER SUBSYSTEM
13439 M:      Peter Rosin <peda@axentia.se>
13440 S:      Maintained
13441 F:      Documentation/ABI/testing/sysfs-class-mux*
13442 F:      Documentation/devicetree/bindings/mux/
13443 F:      drivers/mux/
13444 F:      include/dt-bindings/mux/
13445 F:      include/linux/mux/
13446
13447 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13448 M:      Bin Liu <b-liu@ti.com>
13449 L:      linux-usb@vger.kernel.org
13450 S:      Maintained
13451 F:      drivers/usb/musb/
13452
13453 MXL301RF MEDIA DRIVER
13454 M:      Akihiro Tsukada <tskd08@gmail.com>
13455 L:      linux-media@vger.kernel.org
13456 S:      Odd Fixes
13457 F:      drivers/media/tuners/mxl301rf*
13458
13459 MXL5007T MEDIA DRIVER
13460 M:      Michael Krufky <mkrufky@linuxtv.org>
13461 L:      linux-media@vger.kernel.org
13462 S:      Maintained
13463 W:      https://linuxtv.org
13464 W:      http://github.com/mkrufky
13465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13466 T:      git git://linuxtv.org/mkrufky/tuners.git
13467 F:      drivers/media/tuners/mxl5007t.*
13468
13469 MXSFB DRM DRIVER
13470 M:      Marek Vasut <marex@denx.de>
13471 M:      Stefan Agner <stefan@agner.ch>
13472 L:      dri-devel@lists.freedesktop.org
13473 S:      Supported
13474 T:      git git://anongit.freedesktop.org/drm/drm-misc
13475 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13476 F:      drivers/gpu/drm/mxsfb/
13477
13478 MYLEX DAC960 PCI RAID Controller
13479 M:      Hannes Reinecke <hare@kernel.org>
13480 L:      linux-scsi@vger.kernel.org
13481 S:      Supported
13482 F:      drivers/scsi/myrb.*
13483 F:      drivers/scsi/myrs.*
13484
13485 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13486 M:      Chris Lee <christopher.lee@cspi.com>
13487 L:      netdev@vger.kernel.org
13488 S:      Supported
13489 W:      https://www.cspi.com/ethernet-products/support/downloads/
13490 F:      drivers/net/ethernet/myricom/myri10ge/
13491
13492 NAND FLASH SUBSYSTEM
13493 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13494 R:      Richard Weinberger <richard@nod.at>
13495 L:      linux-mtd@lists.infradead.org
13496 S:      Maintained
13497 W:      http://www.linux-mtd.infradead.org/
13498 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13499 C:      irc://irc.oftc.net/mtd
13500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13501 F:      drivers/mtd/nand/
13502 F:      include/linux/mtd/*nand*.h
13503
13504 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13505 M:      Daniel Mack <zonque@gmail.com>
13506 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13507 S:      Maintained
13508 W:      http://www.native-instruments.com
13509 F:      sound/usb/caiaq/
13510
13511 NATSEMI ETHERNET DRIVER (DP8381x)
13512 S:      Orphan
13513 F:      drivers/net/ethernet/natsemi/natsemi.c
13514
13515 NCR 5380 SCSI DRIVERS
13516 M:      Finn Thain <fthain@linux-m68k.org>
13517 M:      Michael Schmitz <schmitzmic@gmail.com>
13518 L:      linux-scsi@vger.kernel.org
13519 S:      Maintained
13520 F:      Documentation/scsi/g_NCR5380.rst
13521 F:      drivers/scsi/NCR5380.*
13522 F:      drivers/scsi/arm/cumana_1.c
13523 F:      drivers/scsi/arm/oak.c
13524 F:      drivers/scsi/atari_scsi.*
13525 F:      drivers/scsi/dmx3191d.c
13526 F:      drivers/scsi/g_NCR5380.*
13527 F:      drivers/scsi/mac_scsi.*
13528 F:      drivers/scsi/sun3_scsi.*
13529 F:      drivers/scsi/sun3_scsi_vme.c
13530
13531 NCSI LIBRARY
13532 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13533 S:      Maintained
13534 F:      net/ncsi/
13535
13536 NCT6775 HARDWARE MONITOR DRIVER
13537 M:      Guenter Roeck <linux@roeck-us.net>
13538 L:      linux-hwmon@vger.kernel.org
13539 S:      Maintained
13540 F:      Documentation/hwmon/nct6775.rst
13541 F:      drivers/hwmon/nct6775.c
13542
13543 NETDEVSIM
13544 M:      Jakub Kicinski <kuba@kernel.org>
13545 S:      Maintained
13546 F:      drivers/net/netdevsim/*
13547
13548 NETEM NETWORK EMULATOR
13549 M:      Stephen Hemminger <stephen@networkplumber.org>
13550 L:      netdev@vger.kernel.org
13551 S:      Maintained
13552 F:      net/sched/sch_netem.c
13553
13554 NETERION 10GbE DRIVERS (s2io/vxge)
13555 M:      Jon Mason <jdmason@kudzu.us>
13556 L:      netdev@vger.kernel.org
13557 S:      Supported
13558 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13559 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13560 F:      drivers/net/ethernet/neterion/
13561
13562 NETFILTER
13563 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13564 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13565 M:      Florian Westphal <fw@strlen.de>
13566 L:      netfilter-devel@vger.kernel.org
13567 L:      coreteam@netfilter.org
13568 S:      Maintained
13569 W:      http://www.netfilter.org/
13570 W:      http://www.iptables.org/
13571 W:      http://www.nftables.org/
13572 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13573 C:      irc://irc.libera.chat/netfilter
13574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13576 F:      include/linux/netfilter*
13577 F:      include/linux/netfilter/
13578 F:      include/net/netfilter/
13579 F:      include/uapi/linux/netfilter*
13580 F:      include/uapi/linux/netfilter/
13581 F:      net/*/netfilter.c
13582 F:      net/*/netfilter/
13583 F:      net/bridge/br_netfilter*.c
13584 F:      net/netfilter/
13585
13586 NETROM NETWORK LAYER
13587 M:      Ralf Baechle <ralf@linux-mips.org>
13588 L:      linux-hams@vger.kernel.org
13589 S:      Maintained
13590 W:      http://www.linux-ax25.org/
13591 F:      include/net/netrom.h
13592 F:      include/uapi/linux/netrom.h
13593 F:      net/netrom/
13594
13595 NETRONIX EMBEDDED CONTROLLER
13596 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13597 S:      Maintained
13598 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13599 F:      drivers/mfd/ntxec.c
13600 F:      drivers/pwm/pwm-ntxec.c
13601 F:      drivers/rtc/rtc-ntxec.c
13602 F:      include/linux/mfd/ntxec.h
13603
13604 NETRONOME ETHERNET DRIVERS
13605 M:      Simon Horman <simon.horman@corigine.com>
13606 R:      Jakub Kicinski <kuba@kernel.org>
13607 L:      oss-drivers@corigine.com
13608 S:      Maintained
13609 F:      drivers/net/ethernet/netronome/
13610
13611 NETWORK BLOCK DEVICE (NBD)
13612 M:      Josef Bacik <josef@toxicpanda.com>
13613 L:      linux-block@vger.kernel.org
13614 L:      nbd@other.debian.org
13615 S:      Maintained
13616 F:      Documentation/admin-guide/blockdev/nbd.rst
13617 F:      drivers/block/nbd.c
13618 F:      include/trace/events/nbd.h
13619 F:      include/uapi/linux/nbd.h
13620
13621 NETWORK DROP MONITOR
13622 M:      Neil Horman <nhorman@tuxdriver.com>
13623 L:      netdev@vger.kernel.org
13624 S:      Maintained
13625 W:      https://fedorahosted.org/dropwatch/
13626 F:      include/uapi/linux/net_dropmon.h
13627 F:      net/core/drop_monitor.c
13628
13629 NETWORKING DRIVERS
13630 M:      "David S. Miller" <davem@davemloft.net>
13631 M:      Jakub Kicinski <kuba@kernel.org>
13632 M:      Paolo Abeni <pabeni@redhat.com>
13633 L:      netdev@vger.kernel.org
13634 S:      Maintained
13635 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13638 F:      Documentation/devicetree/bindings/net/
13639 F:      drivers/connector/
13640 F:      drivers/net/
13641 F:      include/linux/etherdevice.h
13642 F:      include/linux/fcdevice.h
13643 F:      include/linux/fddidevice.h
13644 F:      include/linux/hippidevice.h
13645 F:      include/linux/if_*
13646 F:      include/linux/inetdevice.h
13647 F:      include/linux/netdevice.h
13648 F:      include/uapi/linux/if_*
13649 F:      include/uapi/linux/netdevice.h
13650
13651 NETWORKING DRIVERS (WIRELESS)
13652 M:      Kalle Valo <kvalo@kernel.org>
13653 L:      linux-wireless@vger.kernel.org
13654 S:      Maintained
13655 W:      https://wireless.wiki.kernel.org/
13656 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13659 F:      Documentation/devicetree/bindings/net/wireless/
13660 F:      drivers/net/wireless/
13661
13662 NETWORKING [DSA]
13663 M:      Andrew Lunn <andrew@lunn.ch>
13664 M:      Vivien Didelot <vivien.didelot@gmail.com>
13665 M:      Florian Fainelli <f.fainelli@gmail.com>
13666 M:      Vladimir Oltean <olteanv@gmail.com>
13667 S:      Maintained
13668 F:      Documentation/devicetree/bindings/net/dsa/
13669 F:      drivers/net/dsa/
13670 F:      include/linux/dsa/
13671 F:      include/linux/platform_data/dsa.h
13672 F:      include/net/dsa.h
13673 F:      net/dsa/
13674 F:      tools/testing/selftests/drivers/net/dsa/
13675
13676 NETWORKING [GENERAL]
13677 M:      "David S. Miller" <davem@davemloft.net>
13678 M:      Jakub Kicinski <kuba@kernel.org>
13679 M:      Paolo Abeni <pabeni@redhat.com>
13680 L:      netdev@vger.kernel.org
13681 S:      Maintained
13682 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13683 B:      mailto:netdev@vger.kernel.org
13684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13686 F:      Documentation/networking/
13687 F:      Documentation/process/maintainer-netdev.rst
13688 F:      include/linux/in.h
13689 F:      include/linux/net.h
13690 F:      include/linux/netdevice.h
13691 F:      include/net/
13692 F:      include/uapi/linux/in.h
13693 F:      include/uapi/linux/net.h
13694 F:      include/uapi/linux/net_namespace.h
13695 F:      include/uapi/linux/netdevice.h
13696 F:      lib/net_utils.c
13697 F:      lib/random32.c
13698 F:      net/
13699 F:      tools/testing/selftests/net/
13700
13701 NETWORKING [IPSEC]
13702 M:      Steffen Klassert <steffen.klassert@secunet.com>
13703 M:      Herbert Xu <herbert@gondor.apana.org.au>
13704 M:      "David S. Miller" <davem@davemloft.net>
13705 L:      netdev@vger.kernel.org
13706 S:      Maintained
13707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13709 F:      include/net/xfrm.h
13710 F:      include/uapi/linux/xfrm.h
13711 F:      net/ipv4/ah4.c
13712 F:      net/ipv4/esp4*
13713 F:      net/ipv4/ip_vti.c
13714 F:      net/ipv4/ipcomp.c
13715 F:      net/ipv4/xfrm*
13716 F:      net/ipv6/ah6.c
13717 F:      net/ipv6/esp6*
13718 F:      net/ipv6/ip6_vti.c
13719 F:      net/ipv6/ipcomp6.c
13720 F:      net/ipv6/xfrm*
13721 F:      net/key/
13722 F:      net/xfrm/
13723 F:      tools/testing/selftests/net/ipsec.c
13724
13725 NETWORKING [IPv4/IPv6]
13726 M:      "David S. Miller" <davem@davemloft.net>
13727 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13728 M:      David Ahern <dsahern@kernel.org>
13729 L:      netdev@vger.kernel.org
13730 S:      Maintained
13731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13732 F:      arch/x86/net/*
13733 F:      include/linux/ip.h
13734 F:      include/linux/ipv6*
13735 F:      include/net/fib*
13736 F:      include/net/ip*
13737 F:      include/net/route.h
13738 F:      net/ipv4/
13739 F:      net/ipv6/
13740
13741 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13742 M:      Paul Moore <paul@paul-moore.com>
13743 L:      netdev@vger.kernel.org
13744 L:      linux-security-module@vger.kernel.org
13745 S:      Maintained
13746 W:      https://github.com/netlabel
13747 F:      Documentation/netlabel/
13748 F:      include/net/calipso.h
13749 F:      include/net/cipso_ipv4.h
13750 F:      include/net/netlabel.h
13751 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13752 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13753 F:      net/ipv4/cipso_ipv4.c
13754 F:      net/ipv6/calipso.c
13755 F:      net/netfilter/xt_CONNSECMARK.c
13756 F:      net/netfilter/xt_SECMARK.c
13757 F:      net/netlabel/
13758
13759 NETWORKING [MPTCP]
13760 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13761 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13762 L:      netdev@vger.kernel.org
13763 L:      mptcp@lists.linux.dev
13764 S:      Maintained
13765 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13766 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13767 F:      Documentation/networking/mptcp-sysctl.rst
13768 F:      include/net/mptcp.h
13769 F:      include/trace/events/mptcp.h
13770 F:      include/uapi/linux/mptcp.h
13771 F:      net/mptcp/
13772 F:      tools/testing/selftests/net/mptcp/
13773
13774 NETWORKING [TCP]
13775 M:      Eric Dumazet <edumazet@google.com>
13776 L:      netdev@vger.kernel.org
13777 S:      Maintained
13778 F:      include/linux/tcp.h
13779 F:      include/net/tcp.h
13780 F:      include/trace/events/tcp.h
13781 F:      include/uapi/linux/tcp.h
13782 F:      net/ipv4/syncookies.c
13783 F:      net/ipv4/tcp*.c
13784 F:      net/ipv6/syncookies.c
13785 F:      net/ipv6/tcp*.c
13786
13787 NETWORKING [TLS]
13788 M:      Boris Pismenny <borisp@nvidia.com>
13789 M:      John Fastabend <john.fastabend@gmail.com>
13790 M:      Daniel Borkmann <daniel@iogearbox.net>
13791 M:      Jakub Kicinski <kuba@kernel.org>
13792 L:      netdev@vger.kernel.org
13793 S:      Maintained
13794 F:      include/net/tls.h
13795 F:      include/uapi/linux/tls.h
13796 F:      net/tls/*
13797
13798 NETXEN (1/10) GbE SUPPORT
13799 M:      Manish Chopra <manishc@marvell.com>
13800 M:      Rahul Verma <rahulv@marvell.com>
13801 M:      GR-Linux-NIC-Dev@marvell.com
13802 L:      netdev@vger.kernel.org
13803 S:      Supported
13804 F:      drivers/net/ethernet/qlogic/netxen/
13805
13806 NET_FAILOVER MODULE
13807 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13808 L:      netdev@vger.kernel.org
13809 S:      Supported
13810 F:      Documentation/networking/net_failover.rst
13811 F:      drivers/net/net_failover.c
13812 F:      include/net/net_failover.h
13813
13814 NEXTHOP
13815 M:      David Ahern <dsahern@kernel.org>
13816 L:      netdev@vger.kernel.org
13817 S:      Maintained
13818 F:      include/net/netns/nexthop.h
13819 F:      include/net/nexthop.h
13820 F:      include/uapi/linux/nexthop.h
13821 F:      net/ipv4/nexthop.c
13822
13823 NFC SUBSYSTEM
13824 M:      Krzysztof Kozlowski <krzk@kernel.org>
13825 L:      linux-nfc@lists.01.org (subscribers-only)
13826 L:      netdev@vger.kernel.org
13827 S:      Maintained
13828 F:      Documentation/devicetree/bindings/net/nfc/
13829 F:      drivers/nfc/
13830 F:      include/linux/platform_data/nfcmrvl.h
13831 F:      include/net/nfc/
13832 F:      include/uapi/linux/nfc.h
13833 F:      net/nfc/
13834
13835 NFC VIRTUAL NCI DEVICE DRIVER
13836 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13837 L:      netdev@vger.kernel.org
13838 L:      linux-nfc@lists.01.org (subscribers-only)
13839 S:      Supported
13840 F:      drivers/nfc/virtual_ncidev.c
13841 F:      tools/testing/selftests/nci/
13842
13843 NFS, SUNRPC, AND LOCKD CLIENTS
13844 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13845 M:      Anna Schumaker <anna@kernel.org>
13846 L:      linux-nfs@vger.kernel.org
13847 S:      Maintained
13848 W:      http://client.linux-nfs.org
13849 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13850 F:      fs/lockd/
13851 F:      fs/nfs/
13852 F:      fs/nfs_common/
13853 F:      include/linux/lockd/
13854 F:      include/linux/nfs*
13855 F:      include/linux/sunrpc/
13856 F:      include/uapi/linux/nfs*
13857 F:      include/uapi/linux/sunrpc/
13858 F:      net/sunrpc/
13859 F:      Documentation/filesystems/nfs/
13860
13861 NILFS2 FILESYSTEM
13862 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13863 L:      linux-nilfs@vger.kernel.org
13864 S:      Supported
13865 W:      https://nilfs.sourceforge.io/
13866 W:      https://nilfs.osdn.jp/
13867 T:      git git://github.com/konis/nilfs2.git
13868 F:      Documentation/filesystems/nilfs2.rst
13869 F:      fs/nilfs2/
13870 F:      include/trace/events/nilfs2.h
13871 F:      include/uapi/linux/nilfs2_api.h
13872 F:      include/uapi/linux/nilfs2_ondisk.h
13873
13874 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13875 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13876 S:      Maintained
13877 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13878 F:      Documentation/scsi/NinjaSCSI.rst
13879 F:      drivers/scsi/pcmcia/nsp_*
13880
13881 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13882 M:      GOTO Masanori <gotom@debian.or.jp>
13883 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13884 S:      Maintained
13885 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13886 F:      Documentation/scsi/NinjaSCSI.rst
13887 F:      drivers/scsi/nsp32*
13888
13889 NINTENDO HID DRIVER
13890 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13891 L:      linux-input@vger.kernel.org
13892 S:      Maintained
13893 F:      drivers/hid/hid-nintendo*
13894
13895 NIOS2 ARCHITECTURE
13896 M:      Dinh Nguyen <dinguyen@kernel.org>
13897 S:      Maintained
13898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13899 F:      arch/nios2/
13900
13901 NITRO ENCLAVES (NE)
13902 M:      Andra Paraschiv <andraprs@amazon.com>
13903 M:      Alexandru Vasile <lexnv@amazon.com>
13904 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13905 L:      linux-kernel@vger.kernel.org
13906 S:      Supported
13907 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13908 F:      Documentation/virt/ne_overview.rst
13909 F:      drivers/virt/nitro_enclaves/
13910 F:      include/linux/nitro_enclaves.h
13911 F:      include/uapi/linux/nitro_enclaves.h
13912 F:      samples/nitro_enclaves/
13913
13914 NOHZ, DYNTICKS SUPPORT
13915 M:      Frederic Weisbecker <fweisbec@gmail.com>
13916 M:      Thomas Gleixner <tglx@linutronix.de>
13917 M:      Ingo Molnar <mingo@kernel.org>
13918 L:      linux-kernel@vger.kernel.org
13919 S:      Maintained
13920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13921 F:      include/linux/sched/nohz.h
13922 F:      include/linux/tick.h
13923 F:      kernel/time/tick*.*
13924
13925 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13926 M:      Pavel Machek <pavel@ucw.cz>
13927 M:      Sakari Ailus <sakari.ailus@iki.fi>
13928 L:      linux-media@vger.kernel.org
13929 S:      Maintained
13930 F:      drivers/media/i2c/ad5820.c
13931 F:      drivers/media/i2c/et8ek8
13932
13933 NOKIA N900 POWER SUPPLY DRIVERS
13934 R:      Pali Rohár <pali@kernel.org>
13935 F:      drivers/power/supply/bq2415x_charger.c
13936 F:      drivers/power/supply/bq27xxx_battery.c
13937 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13938 F:      drivers/power/supply/isp1704_charger.c
13939 F:      drivers/power/supply/rx51_battery.c
13940 F:      include/linux/power/bq2415x_charger.h
13941 F:      include/linux/power/bq27xxx_battery.h
13942
13943 NOLIBC HEADER FILE
13944 M:      Willy Tarreau <w@1wt.eu>
13945 S:      Maintained
13946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13947 F:      tools/include/nolibc/
13948
13949 NSDEPS
13950 M:      Matthias Maennich <maennich@google.com>
13951 S:      Maintained
13952 F:      Documentation/core-api/symbol-namespaces.rst
13953 F:      scripts/nsdeps
13954
13955 NTB AMD DRIVER
13956 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13957 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13958 L:      ntb@lists.linux.dev
13959 S:      Supported
13960 F:      drivers/ntb/hw/amd/
13961
13962 NTB DRIVER CORE
13963 M:      Jon Mason <jdmason@kudzu.us>
13964 M:      Dave Jiang <dave.jiang@intel.com>
13965 M:      Allen Hubbe <allenbh@gmail.com>
13966 L:      ntb@lists.linux.dev
13967 S:      Supported
13968 W:      https://github.com/jonmason/ntb/wiki
13969 T:      git git://github.com/jonmason/ntb.git
13970 F:      drivers/net/ntb_netdev.c
13971 F:      drivers/ntb/
13972 F:      include/linux/ntb.h
13973 F:      include/linux/ntb_transport.h
13974 F:      tools/testing/selftests/ntb/
13975
13976 NTB IDT DRIVER
13977 M:      Serge Semin <fancer.lancer@gmail.com>
13978 L:      ntb@lists.linux.dev
13979 S:      Supported
13980 F:      drivers/ntb/hw/idt/
13981
13982 NTB INTEL DRIVER
13983 M:      Dave Jiang <dave.jiang@intel.com>
13984 L:      ntb@lists.linux.dev
13985 S:      Supported
13986 W:      https://github.com/davejiang/linux/wiki
13987 T:      git https://github.com/davejiang/linux.git
13988 F:      drivers/ntb/hw/intel/
13989
13990 NTFS FILESYSTEM
13991 M:      Anton Altaparmakov <anton@tuxera.com>
13992 L:      linux-ntfs-dev@lists.sourceforge.net
13993 S:      Supported
13994 W:      http://www.tuxera.com/
13995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13996 F:      Documentation/filesystems/ntfs.rst
13997 F:      fs/ntfs/
13998
13999 NTFS3 FILESYSTEM
14000 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14001 L:      ntfs3@lists.linux.dev
14002 S:      Supported
14003 W:      http://www.paragon-software.com/
14004 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14005 F:      Documentation/filesystems/ntfs3.rst
14006 F:      fs/ntfs3/
14007
14008 NUBUS SUBSYSTEM
14009 M:      Finn Thain <fthain@linux-m68k.org>
14010 L:      linux-m68k@lists.linux-m68k.org
14011 S:      Maintained
14012 F:      arch/*/include/asm/nubus.h
14013 F:      drivers/nubus/
14014 F:      include/linux/nubus.h
14015 F:      include/uapi/linux/nubus.h
14016
14017 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14018 M:      Antonino Daplas <adaplas@gmail.com>
14019 L:      linux-fbdev@vger.kernel.org
14020 S:      Maintained
14021 F:      drivers/video/fbdev/nvidia/
14022 F:      drivers/video/fbdev/riva/
14023
14024 NVIDIA WMI EC BACKLIGHT DRIVER
14025 M:      Daniel Dadap <ddadap@nvidia.com>
14026 L:      platform-driver-x86@vger.kernel.org
14027 S:      Supported
14028 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14029
14030 NVM EXPRESS DRIVER
14031 M:      Keith Busch <kbusch@kernel.org>
14032 M:      Jens Axboe <axboe@fb.com>
14033 M:      Christoph Hellwig <hch@lst.de>
14034 M:      Sagi Grimberg <sagi@grimberg.me>
14035 L:      linux-nvme@lists.infradead.org
14036 S:      Supported
14037 W:      http://git.infradead.org/nvme.git
14038 T:      git://git.infradead.org/nvme.git
14039 F:      drivers/nvme/host/
14040 F:      include/linux/nvme.h
14041 F:      include/uapi/linux/nvme_ioctl.h
14042
14043 NVM EXPRESS FC TRANSPORT DRIVERS
14044 M:      James Smart <james.smart@broadcom.com>
14045 L:      linux-nvme@lists.infradead.org
14046 S:      Supported
14047 F:      drivers/nvme/host/fc.c
14048 F:      drivers/nvme/target/fc.c
14049 F:      drivers/nvme/target/fcloop.c
14050 F:      include/linux/nvme-fc-driver.h
14051 F:      include/linux/nvme-fc.h
14052
14053 NVM EXPRESS TARGET DRIVER
14054 M:      Christoph Hellwig <hch@lst.de>
14055 M:      Sagi Grimberg <sagi@grimberg.me>
14056 M:      Chaitanya Kulkarni <kch@nvidia.com>
14057 L:      linux-nvme@lists.infradead.org
14058 S:      Supported
14059 W:      http://git.infradead.org/nvme.git
14060 T:      git://git.infradead.org/nvme.git
14061 F:      drivers/nvme/target/
14062
14063 NVMEM FRAMEWORK
14064 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14065 S:      Maintained
14066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14067 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14068 F:      Documentation/devicetree/bindings/nvmem/
14069 F:      drivers/nvmem/
14070 F:      include/linux/nvmem-consumer.h
14071 F:      include/linux/nvmem-provider.h
14072
14073 NXP C45 TJA11XX PHY DRIVER
14074 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14075 L:      netdev@vger.kernel.org
14076 S:      Maintained
14077 F:      drivers/net/phy/nxp-c45-tja11xx.c
14078
14079 NXP FSPI DRIVER
14080 M:      Ashish Kumar <ashish.kumar@nxp.com>
14081 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14082 L:      linux-spi@vger.kernel.org
14083 S:      Maintained
14084 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14085 F:      drivers/spi/spi-nxp-fspi.c
14086
14087 NXP FXAS21002C DRIVER
14088 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14089 L:      linux-iio@vger.kernel.org
14090 S:      Maintained
14091 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14092 F:      drivers/iio/gyro/fxas21002c.h
14093 F:      drivers/iio/gyro/fxas21002c_core.c
14094 F:      drivers/iio/gyro/fxas21002c_i2c.c
14095 F:      drivers/iio/gyro/fxas21002c_spi.c
14096
14097 NXP i.MX CLOCK DRIVERS
14098 M:      Abel Vesa <abel.vesa@nxp.com>
14099 L:      linux-clk@vger.kernel.org
14100 L:      linux-imx@nxp.com
14101 S:      Maintained
14102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14103 F:      Documentation/devicetree/bindings/clock/imx*
14104 F:      drivers/clk/imx/
14105 F:      include/dt-bindings/clock/imx*
14106
14107 NXP i.MX 8MQ DCSS DRIVER
14108 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14109 R:      Lucas Stach <l.stach@pengutronix.de>
14110 L:      dri-devel@lists.freedesktop.org
14111 S:      Maintained
14112 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14113 F:      drivers/gpu/drm/imx/dcss/
14114
14115 NXP i.MX 8QXP ADC DRIVER
14116 M:      Cai Huoqing <cai.huoqing@linux.dev>
14117 M:      Haibo Chen <haibo.chen@nxp.com>
14118 L:      linux-imx@nxp.com
14119 L:      linux-iio@vger.kernel.org
14120 S:      Maintained
14121 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14122 F:      drivers/iio/adc/imx8qxp-adc.c
14123
14124 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14125 M:      Haibo Chen <haibo.chen@nxp.com>
14126 L:      linux-iio@vger.kernel.org
14127 L:      linux-imx@nxp.com
14128 S:      Maintained
14129 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14130 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14131 F:      drivers/iio/adc/imx7d_adc.c
14132 F:      drivers/iio/adc/vf610_adc.c
14133
14134 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14135 M:      Jagan Teki <jagan@amarulasolutions.com>
14136 S:      Maintained
14137 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14138 F:      drivers/regulator/pf8x00-regulator.c
14139
14140 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14141 M:      Krzysztof Kozlowski <krzk@kernel.org>
14142 L:      linux-kernel@vger.kernel.org
14143 S:      Maintained
14144 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14145 F:      drivers/extcon/extcon-ptn5150.c
14146
14147 NXP SGTL5000 DRIVER
14148 M:      Fabio Estevam <festevam@gmail.com>
14149 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14150 S:      Maintained
14151 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14152 F:      sound/soc/codecs/sgtl5000*
14153
14154 NXP SJA1105 ETHERNET SWITCH DRIVER
14155 M:      Vladimir Oltean <olteanv@gmail.com>
14156 L:      linux-kernel@vger.kernel.org
14157 S:      Maintained
14158 F:      drivers/net/dsa/sja1105
14159 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14160
14161 NXP TDA998X DRM DRIVER
14162 M:      Russell King <linux@armlinux.org.uk>
14163 S:      Maintained
14164 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14165 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14166 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14167 F:      include/drm/i2c/tda998x.h
14168 F:      include/dt-bindings/display/tda998x.h
14169 K:      "nxp,tda998x"
14170
14171 NXP TFA9879 DRIVER
14172 M:      Peter Rosin <peda@axentia.se>
14173 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14174 S:      Maintained
14175 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14176 F:      sound/soc/codecs/tfa9879*
14177
14178 NXP/Goodix TFA989X (TFA1) DRIVER
14179 M:      Stephan Gerhold <stephan@gerhold.net>
14180 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14181 S:      Maintained
14182 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14183 F:      sound/soc/codecs/tfa989x.c
14184
14185 NXP-NCI NFC DRIVER
14186 R:      Charles Gorand <charles.gorand@effinnov.com>
14187 L:      linux-nfc@lists.01.org (subscribers-only)
14188 S:      Supported
14189 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14190 F:      drivers/nfc/nxp-nci
14191
14192 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14193 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14194 R:      NXP Linux Team <linux-imx@nxp.com>
14195 L:      linux-media@vger.kernel.org
14196 S:      Maintained
14197 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14198 F:      drivers/media/platform/imx-jpeg
14199
14200 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14201 M:      Jonas Malaco <jonas@protocubo.io>
14202 L:      linux-hwmon@vger.kernel.org
14203 S:      Maintained
14204 F:      Documentation/hwmon/nzxt-kraken2.rst
14205 F:      drivers/hwmon/nzxt-kraken2.c
14206
14207 NZXT-SMART2 HARDWARE MONITORING DRIVER
14208 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14209 L:      linux-hwmon@vger.kernel.org
14210 S:      Maintained
14211 F:      Documentation/hwmon/nzxt-smart2.rst
14212 F:      drivers/hwmon/nzxt-smart2.c
14213
14214 OBJAGG
14215 M:      Jiri Pirko <jiri@nvidia.com>
14216 L:      netdev@vger.kernel.org
14217 S:      Supported
14218 F:      include/linux/objagg.h
14219 F:      lib/objagg.c
14220 F:      lib/test_objagg.c
14221
14222 OBJTOOL
14223 M:      Josh Poimboeuf <jpoimboe@redhat.com>
14224 M:      Peter Zijlstra <peterz@infradead.org>
14225 S:      Supported
14226 F:      tools/objtool/
14227 F:      include/linux/objtool.h
14228
14229 OCELOT ETHERNET SWITCH DRIVER
14230 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14231 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14232 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14233 M:      UNGLinuxDriver@microchip.com
14234 L:      netdev@vger.kernel.org
14235 S:      Supported
14236 F:      drivers/net/dsa/ocelot/*
14237 F:      drivers/net/ethernet/mscc/
14238 F:      include/soc/mscc/ocelot*
14239 F:      net/dsa/tag_ocelot.c
14240 F:      net/dsa/tag_ocelot_8021q.c
14241 F:      tools/testing/selftests/drivers/net/ocelot/*
14242
14243 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14244 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14245 M:      Andrew Donnellan <ajd@linux.ibm.com>
14246 L:      linuxppc-dev@lists.ozlabs.org
14247 S:      Supported
14248 F:      Documentation/userspace-api/accelerators/ocxl.rst
14249 F:      arch/powerpc/include/asm/pnv-ocxl.h
14250 F:      arch/powerpc/platforms/powernv/ocxl.c
14251 F:      drivers/misc/ocxl/
14252 F:      include/misc/ocxl*
14253 F:      include/uapi/misc/ocxl.h
14254
14255 OMAP AUDIO SUPPORT
14256 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14257 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14258 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14259 L:      linux-omap@vger.kernel.org
14260 S:      Maintained
14261 F:      sound/soc/ti/n810.c
14262 F:      sound/soc/ti/omap*
14263 F:      sound/soc/ti/rx51.c
14264 F:      sound/soc/ti/sdma-pcm.*
14265
14266 OMAP CLOCK FRAMEWORK SUPPORT
14267 M:      Paul Walmsley <paul@pwsan.com>
14268 L:      linux-omap@vger.kernel.org
14269 S:      Maintained
14270 F:      arch/arm/*omap*/*clock*
14271
14272 OMAP DEVICE TREE SUPPORT
14273 M:      Benoît Cousson <bcousson@baylibre.com>
14274 M:      Tony Lindgren <tony@atomide.com>
14275 L:      linux-omap@vger.kernel.org
14276 L:      devicetree@vger.kernel.org
14277 S:      Maintained
14278 F:      arch/arm/boot/dts/*am3*
14279 F:      arch/arm/boot/dts/*am4*
14280 F:      arch/arm/boot/dts/*am5*
14281 F:      arch/arm/boot/dts/*dra7*
14282 F:      arch/arm/boot/dts/*omap*
14283 F:      arch/arm/boot/dts/logicpd-som-lv*
14284 F:      arch/arm/boot/dts/logicpd-torpedo*
14285
14286 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14287 L:      linux-omap@vger.kernel.org
14288 L:      linux-fbdev@vger.kernel.org
14289 S:      Orphan
14290 F:      Documentation/arm/omap/dss.rst
14291 F:      drivers/video/fbdev/omap2/
14292
14293 OMAP FRAMEBUFFER SUPPORT
14294 L:      linux-fbdev@vger.kernel.org
14295 L:      linux-omap@vger.kernel.org
14296 S:      Orphan
14297 F:      drivers/video/fbdev/omap/
14298
14299 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14300 M:      Roger Quadros <rogerq@kernel.org>
14301 M:      Tony Lindgren <tony@atomide.com>
14302 L:      linux-omap@vger.kernel.org
14303 S:      Maintained
14304 F:      arch/arm/mach-omap2/*gpmc*
14305 F:      drivers/memory/omap-gpmc.c
14306
14307 OMAP GPIO DRIVER
14308 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14309 M:      Santosh Shilimkar <ssantosh@kernel.org>
14310 M:      Kevin Hilman <khilman@kernel.org>
14311 L:      linux-omap@vger.kernel.org
14312 S:      Maintained
14313 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14314 F:      drivers/gpio/gpio-omap.c
14315
14316 OMAP HARDWARE SPINLOCK SUPPORT
14317 M:      Ohad Ben-Cohen <ohad@wizery.com>
14318 L:      linux-omap@vger.kernel.org
14319 S:      Maintained
14320 F:      drivers/hwspinlock/omap_hwspinlock.c
14321
14322 OMAP HS MMC SUPPORT
14323 L:      linux-mmc@vger.kernel.org
14324 L:      linux-omap@vger.kernel.org
14325 S:      Orphan
14326 F:      drivers/mmc/host/omap_hsmmc.c
14327
14328 OMAP HWMOD DATA
14329 M:      Paul Walmsley <paul@pwsan.com>
14330 L:      linux-omap@vger.kernel.org
14331 S:      Maintained
14332 F:      arch/arm/mach-omap2/omap_hwmod*data*
14333
14334 OMAP HWMOD SUPPORT
14335 M:      Benoît Cousson <bcousson@baylibre.com>
14336 M:      Paul Walmsley <paul@pwsan.com>
14337 L:      linux-omap@vger.kernel.org
14338 S:      Maintained
14339 F:      arch/arm/mach-omap2/omap_hwmod.*
14340
14341 OMAP I2C DRIVER
14342 M:      Vignesh R <vigneshr@ti.com>
14343 L:      linux-omap@vger.kernel.org
14344 L:      linux-i2c@vger.kernel.org
14345 S:      Maintained
14346 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14347 F:      drivers/i2c/busses/i2c-omap.c
14348
14349 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14350 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14351 L:      linux-media@vger.kernel.org
14352 S:      Maintained
14353 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14354 F:      drivers/media/platform/ti/omap3isp/
14355 F:      drivers/staging/media/omap4iss/
14356
14357 OMAP MMC SUPPORT
14358 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14359 L:      linux-omap@vger.kernel.org
14360 S:      Odd Fixes
14361 F:      drivers/mmc/host/omap.c
14362
14363 OMAP POWER MANAGEMENT SUPPORT
14364 M:      Kevin Hilman <khilman@kernel.org>
14365 L:      linux-omap@vger.kernel.org
14366 S:      Maintained
14367 F:      arch/arm/*omap*/*pm*
14368 F:      drivers/cpufreq/omap-cpufreq.c
14369
14370 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14371 M:      Rajendra Nayak <rnayak@codeaurora.org>
14372 M:      Paul Walmsley <paul@pwsan.com>
14373 L:      linux-omap@vger.kernel.org
14374 S:      Maintained
14375 F:      arch/arm/mach-omap2/prm*
14376
14377 OMAP RANDOM NUMBER GENERATOR SUPPORT
14378 M:      Deepak Saxena <dsaxena@plexity.net>
14379 S:      Maintained
14380 F:      drivers/char/hw_random/omap-rng.c
14381
14382 OMAP USB SUPPORT
14383 L:      linux-usb@vger.kernel.org
14384 L:      linux-omap@vger.kernel.org
14385 S:      Orphan
14386 F:      arch/arm/*omap*/usb*
14387 F:      drivers/usb/*/*omap*
14388
14389 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14390 M:      Mark Jackson <mpfj@newflow.co.uk>
14391 L:      linux-omap@vger.kernel.org
14392 S:      Maintained
14393 F:      arch/arm/boot/dts/am335x-nano.dts
14394
14395 OMAP1 SUPPORT
14396 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14397 M:      Tony Lindgren <tony@atomide.com>
14398 L:      linux-omap@vger.kernel.org
14399 S:      Maintained
14400 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14402 F:      arch/arm/configs/omap1_defconfig
14403 F:      arch/arm/mach-omap1/
14404 F:      arch/arm/plat-omap/
14405 F:      drivers/i2c/busses/i2c-omap.c
14406 F:      include/linux/platform_data/ams-delta-fiq.h
14407 F:      include/linux/platform_data/i2c-omap.h
14408
14409 OMAP2+ SUPPORT
14410 M:      Tony Lindgren <tony@atomide.com>
14411 L:      linux-omap@vger.kernel.org
14412 S:      Maintained
14413 W:      http://www.muru.com/linux/omap/
14414 W:      http://linux.omap.com/
14415 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14417 F:      arch/arm/configs/omap2plus_defconfig
14418 F:      arch/arm/mach-omap2/
14419 F:      arch/arm/plat-omap/
14420 F:      drivers/bus/ti-sysc.c
14421 F:      drivers/i2c/busses/i2c-omap.c
14422 F:      drivers/irqchip/irq-omap-intc.c
14423 F:      drivers/mfd/*omap*.c
14424 F:      drivers/mfd/menelaus.c
14425 F:      drivers/mfd/palmas.c
14426 F:      drivers/mfd/tps65217.c
14427 F:      drivers/mfd/tps65218.c
14428 F:      drivers/mfd/tps65910.c
14429 F:      drivers/mfd/twl-core.[ch]
14430 F:      drivers/mfd/twl4030*.c
14431 F:      drivers/mfd/twl6030*.c
14432 F:      drivers/mfd/twl6040*.c
14433 F:      drivers/regulator/palmas-regulator*.c
14434 F:      drivers/regulator/pbias-regulator.c
14435 F:      drivers/regulator/tps65217-regulator.c
14436 F:      drivers/regulator/tps65218-regulator.c
14437 F:      drivers/regulator/tps65910-regulator.c
14438 F:      drivers/regulator/twl-regulator.c
14439 F:      drivers/regulator/twl6030-regulator.c
14440 F:      include/linux/platform_data/i2c-omap.h
14441 F:      include/linux/platform_data/ti-sysc.h
14442
14443 OMFS FILESYSTEM
14444 M:      Bob Copeland <me@bobcopeland.com>
14445 L:      linux-karma-devel@lists.sourceforge.net
14446 S:      Maintained
14447 F:      Documentation/filesystems/omfs.rst
14448 F:      fs/omfs/
14449
14450 OMNIKEY CARDMAN 4000 DRIVER
14451 M:      Harald Welte <laforge@gnumonks.org>
14452 S:      Maintained
14453 F:      drivers/char/pcmcia/cm4000_cs.c
14454 F:      include/linux/cm4000_cs.h
14455 F:      include/uapi/linux/cm4000_cs.h
14456
14457 OMNIKEY CARDMAN 4040 DRIVER
14458 M:      Harald Welte <laforge@gnumonks.org>
14459 S:      Maintained
14460 F:      drivers/char/pcmcia/cm4040_cs.*
14461
14462 OMNIVISION OG01A1B SENSOR DRIVER
14463 M:      Shawn Tu <shawnx.tu@intel.com>
14464 L:      linux-media@vger.kernel.org
14465 S:      Maintained
14466 F:      drivers/media/i2c/og01a1b.c
14467
14468 OMNIVISION OV02A10 SENSOR DRIVER
14469 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14470 L:      linux-media@vger.kernel.org
14471 S:      Maintained
14472 T:      git git://linuxtv.org/media_tree.git
14473 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14474 F:      drivers/media/i2c/ov02a10.c
14475
14476 OMNIVISION OV08D10 SENSOR DRIVER
14477 M:      Jimmy Su <jimmy.su@intel.com>
14478 L:      linux-media@vger.kernel.org
14479 S:      Maintained
14480 T:      git git://linuxtv.org/media_tree.git
14481 F:      drivers/media/i2c/ov08d10.c
14482
14483 OMNIVISION OV13858 SENSOR DRIVER
14484 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14485 L:      linux-media@vger.kernel.org
14486 S:      Maintained
14487 T:      git git://linuxtv.org/media_tree.git
14488 F:      drivers/media/i2c/ov13858.c
14489
14490 OMNIVISION OV13B10 SENSOR DRIVER
14491 M:      Arec Kao <arec.kao@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/ov13b10.c
14496
14497 OMNIVISION OV2680 SENSOR DRIVER
14498 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14499 L:      linux-media@vger.kernel.org
14500 S:      Maintained
14501 T:      git git://linuxtv.org/media_tree.git
14502 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14503 F:      drivers/media/i2c/ov2680.c
14504
14505 OMNIVISION OV2685 SENSOR DRIVER
14506 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14507 L:      linux-media@vger.kernel.org
14508 S:      Maintained
14509 T:      git git://linuxtv.org/media_tree.git
14510 F:      drivers/media/i2c/ov2685.c
14511
14512 OMNIVISION OV2740 SENSOR DRIVER
14513 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14514 R:      Shawn Tu <shawnx.tu@intel.com>
14515 R:      Bingbu Cao <bingbu.cao@intel.com>
14516 L:      linux-media@vger.kernel.org
14517 S:      Maintained
14518 T:      git git://linuxtv.org/media_tree.git
14519 F:      drivers/media/i2c/ov2740.c
14520
14521 OMNIVISION OV5640 SENSOR DRIVER
14522 M:      Steve Longerbeam <slongerbeam@gmail.com>
14523 L:      linux-media@vger.kernel.org
14524 S:      Maintained
14525 T:      git git://linuxtv.org/media_tree.git
14526 F:      drivers/media/i2c/ov5640.c
14527
14528 OMNIVISION OV5647 SENSOR DRIVER
14529 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14530 M:      Jacopo Mondi <jacopo@jmondi.org>
14531 L:      linux-media@vger.kernel.org
14532 S:      Maintained
14533 T:      git git://linuxtv.org/media_tree.git
14534 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14535 F:      drivers/media/i2c/ov5647.c
14536
14537 OMNIVISION OV5670 SENSOR DRIVER
14538 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14539 L:      linux-media@vger.kernel.org
14540 S:      Maintained
14541 T:      git git://linuxtv.org/media_tree.git
14542 F:      drivers/media/i2c/ov5670.c
14543
14544 OMNIVISION OV5675 SENSOR DRIVER
14545 M:      Shawn Tu <shawnx.tu@intel.com>
14546 L:      linux-media@vger.kernel.org
14547 S:      Maintained
14548 T:      git git://linuxtv.org/media_tree.git
14549 F:      drivers/media/i2c/ov5675.c
14550
14551 OMNIVISION OV5693 SENSOR DRIVER
14552 M:      Daniel Scally <djrscally@gmail.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/ov5693.c
14557
14558 OMNIVISION OV5695 SENSOR DRIVER
14559 M:      Shunqian Zheng <zhengsq@rock-chips.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/ov5695.c
14564
14565 OMNIVISION OV7670 SENSOR DRIVER
14566 L:      linux-media@vger.kernel.org
14567 S:      Orphan
14568 T:      git git://linuxtv.org/media_tree.git
14569 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14570 F:      drivers/media/i2c/ov7670.c
14571
14572 OMNIVISION OV772x SENSOR DRIVER
14573 M:      Jacopo Mondi <jacopo@jmondi.org>
14574 L:      linux-media@vger.kernel.org
14575 S:      Odd fixes
14576 T:      git git://linuxtv.org/media_tree.git
14577 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14578 F:      drivers/media/i2c/ov772x.c
14579 F:      include/media/i2c/ov772x.h
14580
14581 OMNIVISION OV7740 SENSOR DRIVER
14582 M:      Wenyou Yang <wenyou.yang@microchip.com>
14583 L:      linux-media@vger.kernel.org
14584 S:      Maintained
14585 T:      git git://linuxtv.org/media_tree.git
14586 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14587 F:      drivers/media/i2c/ov7740.c
14588
14589 OMNIVISION OV8856 SENSOR DRIVER
14590 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14591 L:      linux-media@vger.kernel.org
14592 S:      Maintained
14593 T:      git git://linuxtv.org/media_tree.git
14594 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14595 F:      drivers/media/i2c/ov8856.c
14596
14597 OMNIVISION OV9282 SENSOR DRIVER
14598 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14599 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14600 L:      linux-media@vger.kernel.org
14601 S:      Maintained
14602 T:      git git://linuxtv.org/media_tree.git
14603 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14604 F:      drivers/media/i2c/ov9282.c
14605
14606 OMNIVISION OV9640 SENSOR DRIVER
14607 M:      Petr Cvek <petrcvekcz@gmail.com>
14608 L:      linux-media@vger.kernel.org
14609 S:      Maintained
14610 F:      drivers/media/i2c/ov9640.*
14611
14612 OMNIVISION OV9650 SENSOR DRIVER
14613 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14614 R:      Akinobu Mita <akinobu.mita@gmail.com>
14615 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14616 L:      linux-media@vger.kernel.org
14617 S:      Maintained
14618 T:      git git://linuxtv.org/media_tree.git
14619 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14620 F:      drivers/media/i2c/ov9650.c
14621
14622 OMNIVISION OV9734 SENSOR DRIVER
14623 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14624 R:      Bingbu Cao <bingbu.cao@intel.com>
14625 L:      linux-media@vger.kernel.org
14626 S:      Maintained
14627 T:      git git://linuxtv.org/media_tree.git
14628 F:      drivers/media/i2c/ov9734.c
14629
14630 ONENAND FLASH DRIVER
14631 M:      Kyungmin Park <kyungmin.park@samsung.com>
14632 L:      linux-mtd@lists.infradead.org
14633 S:      Maintained
14634 F:      drivers/mtd/nand/onenand/
14635 F:      include/linux/mtd/onenand*.h
14636
14637 ONION OMEGA2+ BOARD
14638 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14639 L:      linux-mips@vger.kernel.org
14640 S:      Maintained
14641 F:      arch/mips/boot/dts/ralink/omega2p.dts
14642
14643 OP-TEE DRIVER
14644 M:      Jens Wiklander <jens.wiklander@linaro.org>
14645 L:      op-tee@lists.trustedfirmware.org
14646 S:      Maintained
14647 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14648 F:      drivers/tee/optee/
14649
14650 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14651 M:      Sumit Garg <sumit.garg@linaro.org>
14652 L:      op-tee@lists.trustedfirmware.org
14653 S:      Maintained
14654 F:      drivers/char/hw_random/optee-rng.c
14655
14656 OP-TEE RTC DRIVER
14657 M:      Clément Léger <clement.leger@bootlin.com>
14658 L:      linux-rtc@vger.kernel.org
14659 S:      Maintained
14660 F:      drivers/rtc/rtc-optee.c
14661
14662 OPA-VNIC DRIVER
14663 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14664 L:      linux-rdma@vger.kernel.org
14665 S:      Supported
14666 F:      drivers/infiniband/ulp/opa_vnic
14667
14668 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14669 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14670 M:      Frank Rowand <frowand.list@gmail.com>
14671 L:      devicetree@vger.kernel.org
14672 S:      Maintained
14673 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14674 F:      Documentation/devicetree/overlay-notes.rst
14675 F:      drivers/of/overlay.c
14676 F:      drivers/of/resolver.c
14677 K:      of_overlay_notifier_
14678
14679 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14680 M:      Rob Herring <robh+dt@kernel.org>
14681 M:      Frank Rowand <frowand.list@gmail.com>
14682 L:      devicetree@vger.kernel.org
14683 S:      Maintained
14684 C:      irc://irc.libera.chat/devicetree
14685 W:      http://www.devicetree.org/
14686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14687 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14688 F:      drivers/of/
14689 F:      include/linux/of*.h
14690 F:      scripts/dtc/
14691
14692 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14693 M:      Rob Herring <robh+dt@kernel.org>
14694 M:      Krzysztof Kozlowski <krzk+dt@kernel.org>
14695 L:      devicetree@vger.kernel.org
14696 S:      Maintained
14697 C:      irc://irc.libera.chat/devicetree
14698 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14700 F:      Documentation/devicetree/
14701 F:      arch/*/boot/dts/
14702 F:      include/dt-bindings/
14703
14704 OPENCOMPUTE PTP CLOCK DRIVER
14705 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14706 L:      netdev@vger.kernel.org
14707 S:      Maintained
14708 F:      drivers/ptp/ptp_ocp.c
14709
14710 OPENCORES I2C BUS DRIVER
14711 M:      Peter Korsgaard <peter@korsgaard.com>
14712 M:      Andrew Lunn <andrew@lunn.ch>
14713 L:      linux-i2c@vger.kernel.org
14714 S:      Maintained
14715 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14716 F:      Documentation/i2c/busses/i2c-ocores.rst
14717 F:      drivers/i2c/busses/i2c-ocores.c
14718 F:      include/linux/platform_data/i2c-ocores.h
14719
14720 OPENRISC ARCHITECTURE
14721 M:      Jonas Bonn <jonas@southpole.se>
14722 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14723 M:      Stafford Horne <shorne@gmail.com>
14724 L:      openrisc@lists.librecores.org
14725 S:      Maintained
14726 W:      http://openrisc.io
14727 T:      git git://github.com/openrisc/linux.git
14728 F:      Documentation/devicetree/bindings/openrisc/
14729 F:      Documentation/openrisc/
14730 F:      arch/openrisc/
14731 F:      drivers/irqchip/irq-ompic.c
14732 F:      drivers/irqchip/irq-or1k-*
14733
14734 OPENVSWITCH
14735 M:      Pravin B Shelar <pshelar@ovn.org>
14736 L:      netdev@vger.kernel.org
14737 L:      dev@openvswitch.org
14738 S:      Maintained
14739 W:      http://openvswitch.org
14740 F:      include/uapi/linux/openvswitch.h
14741 F:      net/openvswitch/
14742
14743 OPERATING PERFORMANCE POINTS (OPP)
14744 M:      Viresh Kumar <vireshk@kernel.org>
14745 M:      Nishanth Menon <nm@ti.com>
14746 M:      Stephen Boyd <sboyd@kernel.org>
14747 L:      linux-pm@vger.kernel.org
14748 S:      Maintained
14749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14750 F:      Documentation/devicetree/bindings/opp/
14751 F:      Documentation/power/opp.rst
14752 F:      drivers/opp/
14753 F:      include/linux/pm_opp.h
14754
14755 OPL4 DRIVER
14756 M:      Clemens Ladisch <clemens@ladisch.de>
14757 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14758 S:      Maintained
14759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14760 F:      sound/drivers/opl4/
14761
14762 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14763 M:      Mark Fasheh <mark@fasheh.com>
14764 M:      Joel Becker <jlbec@evilplan.org>
14765 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14766 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14767 S:      Supported
14768 W:      http://ocfs2.wiki.kernel.org
14769 F:      Documentation/filesystems/dlmfs.rst
14770 F:      Documentation/filesystems/ocfs2.rst
14771 F:      fs/ocfs2/
14772
14773 ORANGEFS FILESYSTEM
14774 M:      Mike Marshall <hubcap@omnibond.com>
14775 R:      Martin Brandenburg <martin@omnibond.com>
14776 L:      devel@lists.orangefs.org
14777 S:      Supported
14778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14779 F:      Documentation/filesystems/orangefs.rst
14780 F:      fs/orangefs/
14781
14782 ORINOCO DRIVER
14783 L:      linux-wireless@vger.kernel.org
14784 S:      Orphan
14785 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14786 W:      http://www.nongnu.org/orinoco/
14787 F:      drivers/net/wireless/intersil/orinoco/
14788
14789 OV2659 OMNIVISION SENSOR DRIVER
14790 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14791 L:      linux-media@vger.kernel.org
14792 S:      Maintained
14793 W:      https://linuxtv.org
14794 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14795 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14796 F:      drivers/media/i2c/ov2659.c
14797 F:      include/media/i2c/ov2659.h
14798
14799 OVERLAY FILESYSTEM
14800 M:      Miklos Szeredi <miklos@szeredi.hu>
14801 L:      linux-unionfs@vger.kernel.org
14802 S:      Supported
14803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14804 F:      Documentation/filesystems/overlayfs.rst
14805 F:      fs/overlayfs/
14806
14807 P54 WIRELESS DRIVER
14808 M:      Christian Lamparter <chunkeey@googlemail.com>
14809 L:      linux-wireless@vger.kernel.org
14810 S:      Maintained
14811 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14812 F:      drivers/net/wireless/intersil/p54/
14813
14814 PACKING
14815 M:      Vladimir Oltean <olteanv@gmail.com>
14816 L:      netdev@vger.kernel.org
14817 S:      Supported
14818 F:      Documentation/core-api/packing.rst
14819 F:      include/linux/packing.h
14820 F:      lib/packing.c
14821
14822 PADATA PARALLEL EXECUTION MECHANISM
14823 M:      Steffen Klassert <steffen.klassert@secunet.com>
14824 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14825 L:      linux-crypto@vger.kernel.org
14826 L:      linux-kernel@vger.kernel.org
14827 S:      Maintained
14828 F:      Documentation/core-api/padata.rst
14829 F:      include/linux/padata.h
14830 F:      kernel/padata.c
14831
14832 PAGE POOL
14833 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14834 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14835 L:      netdev@vger.kernel.org
14836 S:      Supported
14837 F:      Documentation/networking/page_pool.rst
14838 F:      include/net/page_pool.h
14839 F:      include/trace/events/page_pool.h
14840 F:      net/core/page_pool.c
14841
14842 PAGE TABLE CHECK
14843 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
14844 M:      Andrew Morton <akpm@linux-foundation.org>
14845 L:      linux-mm@kvack.org
14846 S:      Maintained
14847 F:      Documentation/vm/page_table_check.rst
14848 F:      include/linux/page_table_check.h
14849 F:      mm/page_table_check.c
14850
14851 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14852 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14853 L:      platform-driver-x86@vger.kernel.org
14854 S:      Maintained
14855 F:      drivers/platform/x86/panasonic-laptop.c
14856
14857 PARALLAX PING IIO SENSOR DRIVER
14858 M:      Andreas Klinger <ak@it-klinger.de>
14859 L:      linux-iio@vger.kernel.org
14860 S:      Maintained
14861 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14862 F:      drivers/iio/proximity/ping.c
14863
14864 PARALLEL LCD/KEYPAD PANEL DRIVER
14865 M:      Willy Tarreau <willy@haproxy.com>
14866 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14867 S:      Odd Fixes
14868 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14869 F:      drivers/auxdisplay/panel.c
14870
14871 PARALLEL PORT SUBSYSTEM
14872 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14873 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14874 L:      linux-parport@lists.infradead.org (subscribers-only)
14875 S:      Maintained
14876 F:      Documentation/driver-api/parport*.rst
14877 F:      drivers/char/ppdev.c
14878 F:      drivers/parport/
14879 F:      include/linux/parport*.h
14880 F:      include/uapi/linux/ppdev.h
14881
14882 PARAVIRT_OPS INTERFACE
14883 M:      Juergen Gross <jgross@suse.com>
14884 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
14885 R:      Alexey Makhalov <amakhalov@vmware.com>
14886 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
14887 L:      virtualization@lists.linux-foundation.org
14888 L:      x86@kernel.org
14889 S:      Supported
14890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14891 F:      Documentation/virt/paravirt_ops.rst
14892 F:      arch/*/include/asm/paravirt*.h
14893 F:      arch/*/kernel/paravirt*
14894 F:      include/linux/hypervisor.h
14895
14896 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14897 M:      Tim Waugh <tim@cyberelk.net>
14898 L:      linux-parport@lists.infradead.org (subscribers-only)
14899 S:      Maintained
14900 F:      Documentation/admin-guide/blockdev/paride.rst
14901 F:      drivers/block/paride/
14902
14903 PARISC ARCHITECTURE
14904 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14905 M:      Helge Deller <deller@gmx.de>
14906 L:      linux-parisc@vger.kernel.org
14907 S:      Maintained
14908 W:      https://parisc.wiki.kernel.org
14909 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14912 F:      Documentation/parisc/
14913 F:      arch/parisc/
14914 F:      drivers/char/agp/parisc-agp.c
14915 F:      drivers/input/misc/hp_sdc_rtc.c
14916 F:      drivers/input/serio/gscps2.c
14917 F:      drivers/input/serio/hp_sdc*
14918 F:      drivers/parisc/
14919 F:      drivers/parport/parport_gsc.*
14920 F:      drivers/tty/serial/8250/8250_gsc.c
14921 F:      drivers/video/console/sti*
14922 F:      drivers/video/fbdev/sti*
14923 F:      drivers/video/logo/logo_parisc*
14924 F:      include/linux/hp_sdc.h
14925
14926 PARMAN
14927 M:      Jiri Pirko <jiri@nvidia.com>
14928 L:      netdev@vger.kernel.org
14929 S:      Supported
14930 F:      include/linux/parman.h
14931 F:      lib/parman.c
14932 F:      lib/test_parman.c
14933
14934 PC ENGINES APU BOARD DRIVER
14935 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14936 S:      Maintained
14937 F:      drivers/platform/x86/pcengines-apuv2.c
14938
14939 PC87360 HARDWARE MONITORING DRIVER
14940 M:      Jim Cromie <jim.cromie@gmail.com>
14941 L:      linux-hwmon@vger.kernel.org
14942 S:      Maintained
14943 F:      Documentation/hwmon/pc87360.rst
14944 F:      drivers/hwmon/pc87360.c
14945
14946 PC8736x GPIO DRIVER
14947 M:      Jim Cromie <jim.cromie@gmail.com>
14948 S:      Maintained
14949 F:      drivers/char/pc8736x_gpio.c
14950
14951 PC87427 HARDWARE MONITORING DRIVER
14952 M:      Jean Delvare <jdelvare@suse.com>
14953 L:      linux-hwmon@vger.kernel.org
14954 S:      Maintained
14955 F:      Documentation/hwmon/pc87427.rst
14956 F:      drivers/hwmon/pc87427.c
14957
14958 PCA9532 LED DRIVER
14959 M:      Riku Voipio <riku.voipio@iki.fi>
14960 S:      Maintained
14961 F:      drivers/leds/leds-pca9532.c
14962 F:      include/linux/leds-pca9532.h
14963
14964 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14965 M:      Guenter Roeck <linux@roeck-us.net>
14966 L:      linux-i2c@vger.kernel.org
14967 S:      Maintained
14968 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14969
14970 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14971 M:      Khalid Aziz <khalid@gonehiking.org>
14972 S:      Maintained
14973 F:      drivers/firmware/pcdp.*
14974
14975 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14976 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14977 M:      Pali Rohár <pali@kernel.org>
14978 L:      linux-pci@vger.kernel.org
14979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14980 S:      Maintained
14981 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14982 F:      drivers/pci/controller/pci-aardvark.c
14983
14984 PCI DRIVER FOR ALTERA PCIE IP
14985 M:      Joyce Ooi <joyce.ooi@intel.com>
14986 L:      linux-pci@vger.kernel.org
14987 S:      Supported
14988 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14989 F:      drivers/pci/controller/pcie-altera.c
14990
14991 PCI DRIVER FOR APPLIEDMICRO XGENE
14992 M:      Toan Le <toan@os.amperecomputing.com>
14993 L:      linux-pci@vger.kernel.org
14994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14995 S:      Maintained
14996 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14997 F:      drivers/pci/controller/pci-xgene.c
14998
14999 PCI DRIVER FOR ARM VERSATILE PLATFORM
15000 M:      Rob Herring <robh@kernel.org>
15001 L:      linux-pci@vger.kernel.org
15002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15003 S:      Maintained
15004 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15005 F:      drivers/pci/controller/pci-versatile.c
15006
15007 PCI DRIVER FOR ARMADA 8K
15008 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15009 L:      linux-pci@vger.kernel.org
15010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15011 S:      Maintained
15012 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15013 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15014
15015 PCI DRIVER FOR CADENCE PCIE IP
15016 M:      Tom Joseph <tjoseph@cadence.com>
15017 L:      linux-pci@vger.kernel.org
15018 S:      Maintained
15019 F:      Documentation/devicetree/bindings/pci/cdns,*
15020 F:      drivers/pci/controller/cadence/
15021
15022 PCI DRIVER FOR FREESCALE LAYERSCAPE
15023 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15024 M:      Mingkai Hu <mingkai.hu@nxp.com>
15025 M:      Roy Zang <roy.zang@nxp.com>
15026 L:      linuxppc-dev@lists.ozlabs.org
15027 L:      linux-pci@vger.kernel.org
15028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15029 S:      Maintained
15030 F:      drivers/pci/controller/dwc/*layerscape*
15031
15032 PCI DRIVER FOR GENERIC OF HOSTS
15033 M:      Will Deacon <will@kernel.org>
15034 L:      linux-pci@vger.kernel.org
15035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15036 S:      Maintained
15037 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15038 F:      drivers/pci/controller/pci-host-common.c
15039 F:      drivers/pci/controller/pci-host-generic.c
15040
15041 PCI DRIVER FOR IMX6
15042 M:      Richard Zhu <hongxing.zhu@nxp.com>
15043 M:      Lucas Stach <l.stach@pengutronix.de>
15044 L:      linux-pci@vger.kernel.org
15045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15046 S:      Maintained
15047 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15048 F:      drivers/pci/controller/dwc/*imx6*
15049
15050 PCI DRIVER FOR FU740
15051 M:      Paul Walmsley <paul.walmsley@sifive.com>
15052 M:      Greentime Hu <greentime.hu@sifive.com>
15053 L:      linux-pci@vger.kernel.org
15054 S:      Maintained
15055 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15056 F:      drivers/pci/controller/dwc/pcie-fu740.c
15057
15058 PCI DRIVER FOR INTEL IXP4XX
15059 M:      Linus Walleij <linus.walleij@linaro.org>
15060 S:      Maintained
15061 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15062 F:      drivers/pci/controller/pci-ixp4xx.c
15063
15064 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15065 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15066 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15067 L:      linux-pci@vger.kernel.org
15068 S:      Supported
15069 F:      drivers/pci/controller/vmd.c
15070
15071 PCI DRIVER FOR MICROSEMI SWITCHTEC
15072 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15073 M:      Logan Gunthorpe <logang@deltatee.com>
15074 L:      linux-pci@vger.kernel.org
15075 S:      Maintained
15076 F:      Documentation/ABI/testing/sysfs-class-switchtec
15077 F:      Documentation/driver-api/switchtec.rst
15078 F:      drivers/ntb/hw/mscc/
15079 F:      drivers/pci/switch/switchtec*
15080 F:      include/linux/switchtec.h
15081 F:      include/uapi/linux/switchtec_ioctl.h
15082
15083 PCI DRIVER FOR MOBIVEIL PCIE IP
15084 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15085 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15086 L:      linux-pci@vger.kernel.org
15087 S:      Supported
15088 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15089 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15090
15091 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15092 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15093 M:      Pali Rohár <pali@kernel.org>
15094 L:      linux-pci@vger.kernel.org
15095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15096 S:      Maintained
15097 F:      drivers/pci/controller/*mvebu*
15098
15099 PCI DRIVER FOR NVIDIA TEGRA
15100 M:      Thierry Reding <thierry.reding@gmail.com>
15101 L:      linux-tegra@vger.kernel.org
15102 L:      linux-pci@vger.kernel.org
15103 S:      Supported
15104 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15105 F:      drivers/pci/controller/pci-tegra.c
15106
15107 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15108 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15109 L:      linux-pci@vger.kernel.org
15110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15111 S:      Maintained
15112 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15113 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15114
15115 PCI DRIVER FOR RENESAS R-CAR
15116 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15117 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15118 L:      linux-pci@vger.kernel.org
15119 L:      linux-renesas-soc@vger.kernel.org
15120 S:      Maintained
15121 F:      Documentation/devicetree/bindings/pci/*rcar*
15122 F:      drivers/pci/controller/*rcar*
15123
15124 PCI DRIVER FOR SAMSUNG EXYNOS
15125 M:      Jingoo Han <jingoohan1@gmail.com>
15126 L:      linux-pci@vger.kernel.org
15127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15128 L:      linux-samsung-soc@vger.kernel.org
15129 S:      Maintained
15130 F:      drivers/pci/controller/dwc/pci-exynos.c
15131
15132 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15133 M:      Jingoo Han <jingoohan1@gmail.com>
15134 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15135 L:      linux-pci@vger.kernel.org
15136 S:      Maintained
15137 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15138 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15139 F:      drivers/pci/controller/dwc/*designware*
15140
15141 PCI DRIVER FOR TI DRA7XX/J721E
15142 M:      Kishon Vijay Abraham I <kishon@ti.com>
15143 L:      linux-omap@vger.kernel.org
15144 L:      linux-pci@vger.kernel.org
15145 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15146 S:      Supported
15147 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15148 F:      drivers/pci/controller/cadence/pci-j721e.c
15149 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15150
15151 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15152 M:      Linus Walleij <linus.walleij@linaro.org>
15153 L:      linux-pci@vger.kernel.org
15154 S:      Maintained
15155 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15156 F:      drivers/pci/controller/pci-v3-semi.c
15157
15158 PCI ENDPOINT SUBSYSTEM
15159 M:      Kishon Vijay Abraham I <kishon@ti.com>
15160 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15161 R:      Krzysztof Wilczyński <kw@linux.com>
15162 L:      linux-pci@vger.kernel.org
15163 S:      Supported
15164 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15165 B:      https://bugzilla.kernel.org
15166 C:      irc://irc.oftc.net/linux-pci
15167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15168 F:      Documentation/PCI/endpoint/*
15169 F:      Documentation/misc-devices/pci-endpoint-test.rst
15170 F:      drivers/misc/pci_endpoint_test.c
15171 F:      drivers/pci/endpoint/
15172 F:      tools/pci/
15173
15174 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15175 M:      Russell Currey <ruscur@russell.cc>
15176 M:      Oliver O'Halloran <oohall@gmail.com>
15177 L:      linuxppc-dev@lists.ozlabs.org
15178 S:      Supported
15179 F:      Documentation/PCI/pci-error-recovery.rst
15180 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15181 F:      arch/powerpc/include/*/eeh*.h
15182 F:      arch/powerpc/kernel/eeh*.c
15183 F:      arch/powerpc/platforms/*/eeh*.c
15184 F:      drivers/pci/pcie/aer.c
15185 F:      drivers/pci/pcie/dpc.c
15186 F:      drivers/pci/pcie/err.c
15187
15188 PCI ERROR RECOVERY
15189 M:      Linas Vepstas <linasvepstas@gmail.com>
15190 L:      linux-pci@vger.kernel.org
15191 S:      Supported
15192 F:      Documentation/PCI/pci-error-recovery.rst
15193
15194 PCI PEER-TO-PEER DMA (P2PDMA)
15195 M:      Bjorn Helgaas <bhelgaas@google.com>
15196 M:      Logan Gunthorpe <logang@deltatee.com>
15197 L:      linux-pci@vger.kernel.org
15198 S:      Supported
15199 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15200 B:      https://bugzilla.kernel.org
15201 C:      irc://irc.oftc.net/linux-pci
15202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15203 F:      Documentation/driver-api/pci/p2pdma.rst
15204 F:      drivers/pci/p2pdma.c
15205 F:      include/linux/pci-p2pdma.h
15206
15207 PCI MSI DRIVER FOR ALTERA MSI IP
15208 M:      Joyce Ooi <joyce.ooi@intel.com>
15209 L:      linux-pci@vger.kernel.org
15210 S:      Supported
15211 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15212 F:      drivers/pci/controller/pcie-altera-msi.c
15213
15214 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15215 M:      Toan Le <toan@os.amperecomputing.com>
15216 L:      linux-pci@vger.kernel.org
15217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15218 S:      Maintained
15219 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15220 F:      drivers/pci/controller/pci-xgene-msi.c
15221
15222 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15223 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15224 R:      Rob Herring <robh@kernel.org>
15225 R:      Krzysztof Wilczyński <kw@linux.com>
15226 L:      linux-pci@vger.kernel.org
15227 S:      Supported
15228 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15229 B:      https://bugzilla.kernel.org
15230 C:      irc://irc.oftc.net/linux-pci
15231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15232 F:      drivers/pci/controller/
15233 F:      drivers/pci/pci-bridge-emul.c
15234 F:      drivers/pci/pci-bridge-emul.h
15235
15236 PCI SUBSYSTEM
15237 M:      Bjorn Helgaas <bhelgaas@google.com>
15238 L:      linux-pci@vger.kernel.org
15239 S:      Supported
15240 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15241 B:      https://bugzilla.kernel.org
15242 C:      irc://irc.oftc.net/linux-pci
15243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15244 F:      Documentation/PCI/
15245 F:      Documentation/devicetree/bindings/pci/
15246 F:      arch/x86/kernel/early-quirks.c
15247 F:      arch/x86/kernel/quirks.c
15248 F:      arch/x86/pci/
15249 F:      drivers/acpi/pci*
15250 F:      drivers/pci/
15251 F:      include/asm-generic/pci*
15252 F:      include/linux/of_pci.h
15253 F:      include/linux/pci*
15254 F:      include/uapi/linux/pci*
15255 F:      lib/pci*
15256
15257 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15258 M:      Jonathan Chocron <jonnyc@amazon.com>
15259 L:      linux-pci@vger.kernel.org
15260 S:      Maintained
15261 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15262 F:      drivers/pci/controller/dwc/pcie-al.c
15263
15264 PCIE DRIVER FOR AMLOGIC MESON
15265 M:      Yue Wang <yue.wang@Amlogic.com>
15266 L:      linux-pci@vger.kernel.org
15267 L:      linux-amlogic@lists.infradead.org
15268 S:      Maintained
15269 F:      drivers/pci/controller/dwc/pci-meson.c
15270
15271 PCIE DRIVER FOR AXIS ARTPEC
15272 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15273 L:      linux-arm-kernel@axis.com
15274 L:      linux-pci@vger.kernel.org
15275 S:      Maintained
15276 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15277 F:      drivers/pci/controller/dwc/*artpec*
15278
15279 PCIE DRIVER FOR CAVIUM THUNDERX
15280 M:      Robert Richter <rric@kernel.org>
15281 L:      linux-pci@vger.kernel.org
15282 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15283 S:      Odd Fixes
15284 F:      drivers/pci/controller/pci-thunder-*
15285
15286 PCIE DRIVER FOR HISILICON
15287 M:      Zhou Wang <wangzhou1@hisilicon.com>
15288 L:      linux-pci@vger.kernel.org
15289 S:      Maintained
15290 F:      drivers/pci/controller/dwc/pcie-hisi.c
15291
15292 PCIE DRIVER FOR HISILICON KIRIN
15293 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15294 M:      Binghui Wang <wangbinghui@hisilicon.com>
15295 L:      linux-pci@vger.kernel.org
15296 S:      Maintained
15297 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15298 F:      drivers/pci/controller/dwc/pcie-kirin.c
15299
15300 PCIE DRIVER FOR HISILICON STB
15301 M:      Shawn Guo <shawn.guo@linaro.org>
15302 L:      linux-pci@vger.kernel.org
15303 S:      Maintained
15304 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15305 F:      drivers/pci/controller/dwc/pcie-histb.c
15306
15307 PCIE DRIVER FOR INTEL KEEM BAY
15308 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15309 L:      linux-pci@vger.kernel.org
15310 S:      Supported
15311 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15312 F:      drivers/pci/controller/dwc/pcie-keembay.c
15313
15314 PCIE DRIVER FOR INTEL LGM GW SOC
15315 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15316 L:      linux-pci@vger.kernel.org
15317 S:      Maintained
15318 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15319 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15320
15321 PCIE DRIVER FOR MEDIATEK
15322 M:      Ryder Lee <ryder.lee@mediatek.com>
15323 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15324 L:      linux-pci@vger.kernel.org
15325 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15326 S:      Supported
15327 F:      Documentation/devicetree/bindings/pci/mediatek*
15328 F:      drivers/pci/controller/*mediatek*
15329
15330 PCIE DRIVER FOR MICROCHIP
15331 M:      Daire McNamara <daire.mcnamara@microchip.com>
15332 L:      linux-pci@vger.kernel.org
15333 S:      Supported
15334 F:      Documentation/devicetree/bindings/pci/microchip*
15335 F:      drivers/pci/controller/*microchip*
15336
15337 PCIE DRIVER FOR QUALCOMM MSM
15338 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15339 L:      linux-pci@vger.kernel.org
15340 L:      linux-arm-msm@vger.kernel.org
15341 S:      Maintained
15342 F:      drivers/pci/controller/dwc/pcie-qcom.c
15343
15344 PCIE ENDPOINT DRIVER FOR QUALCOMM
15345 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15346 L:      linux-pci@vger.kernel.org
15347 L:      linux-arm-msm@vger.kernel.org
15348 S:      Maintained
15349 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15350 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15351
15352 PCIE DRIVER FOR ROCKCHIP
15353 M:      Shawn Lin <shawn.lin@rock-chips.com>
15354 L:      linux-pci@vger.kernel.org
15355 L:      linux-rockchip@lists.infradead.org
15356 S:      Maintained
15357 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15358 F:      drivers/pci/controller/pcie-rockchip*
15359
15360 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15361 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15362 L:      linux-pci@vger.kernel.org
15363 S:      Maintained
15364 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
15365 F:      drivers/pci/controller/dwc/pcie-uniphier*
15366
15367 PCIE DRIVER FOR ST SPEAR13XX
15368 M:      Pratyush Anand <pratyush.anand@gmail.com>
15369 L:      linux-pci@vger.kernel.org
15370 S:      Maintained
15371 F:      drivers/pci/controller/dwc/*spear*
15372
15373 PCMCIA SUBSYSTEM
15374 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15375 S:      Odd Fixes
15376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15377 F:      Documentation/pcmcia/
15378 F:      drivers/pcmcia/
15379 F:      include/pcmcia/
15380 F:      tools/pcmcia/
15381
15382 PCNET32 NETWORK DRIVER
15383 M:      Don Fry <pcnet32@frontier.com>
15384 L:      netdev@vger.kernel.org
15385 S:      Maintained
15386 F:      drivers/net/ethernet/amd/pcnet32.c
15387
15388 PCRYPT PARALLEL CRYPTO ENGINE
15389 M:      Steffen Klassert <steffen.klassert@secunet.com>
15390 L:      linux-crypto@vger.kernel.org
15391 S:      Maintained
15392 F:      crypto/pcrypt.c
15393 F:      include/crypto/pcrypt.h
15394
15395 PEAQ WMI HOTKEYS DRIVER
15396 M:      Hans de Goede <hdegoede@redhat.com>
15397 L:      platform-driver-x86@vger.kernel.org
15398 S:      Maintained
15399 F:      drivers/platform/x86/peaq-wmi.c
15400
15401 PECI HARDWARE MONITORING DRIVERS
15402 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15403 L:      linux-hwmon@vger.kernel.org
15404 S:      Supported
15405 F:      Documentation/hwmon/peci-cputemp.rst
15406 F:      Documentation/hwmon/peci-dimmtemp.rst
15407 F:      drivers/hwmon/peci/
15408
15409 PECI SUBSYSTEM
15410 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15411 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15412 S:      Supported
15413 F:      Documentation/devicetree/bindings/peci/
15414 F:      Documentation/peci/
15415 F:      drivers/peci/
15416 F:      include/linux/peci-cpu.h
15417 F:      include/linux/peci.h
15418
15419 PENSANDO ETHERNET DRIVERS
15420 M:      Shannon Nelson <snelson@pensando.io>
15421 M:      drivers@pensando.io
15422 L:      netdev@vger.kernel.org
15423 S:      Supported
15424 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15425 F:      drivers/net/ethernet/pensando/
15426
15427 PER-CPU MEMORY ALLOCATOR
15428 M:      Dennis Zhou <dennis@kernel.org>
15429 M:      Tejun Heo <tj@kernel.org>
15430 M:      Christoph Lameter <cl@linux.com>
15431 L:      linux-mm@kvack.org
15432 S:      Maintained
15433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15434 F:      arch/*/include/asm/percpu.h
15435 F:      include/linux/percpu*.h
15436 F:      lib/percpu*.c
15437 F:      mm/percpu*.c
15438
15439 PER-TASK DELAY ACCOUNTING
15440 M:      Balbir Singh <bsingharora@gmail.com>
15441 S:      Maintained
15442 F:      include/linux/delayacct.h
15443 F:      kernel/delayacct.c
15444
15445 PERFORMANCE EVENTS SUBSYSTEM
15446 M:      Peter Zijlstra <peterz@infradead.org>
15447 M:      Ingo Molnar <mingo@redhat.com>
15448 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15449 R:      Mark Rutland <mark.rutland@arm.com>
15450 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15451 R:      Jiri Olsa <jolsa@kernel.org>
15452 R:      Namhyung Kim <namhyung@kernel.org>
15453 L:      linux-perf-users@vger.kernel.org
15454 L:      linux-kernel@vger.kernel.org
15455 S:      Supported
15456 W:      https://perf.wiki.kernel.org/
15457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15458 F:      arch/*/events/*
15459 F:      arch/*/events/*/*
15460 F:      arch/*/include/asm/perf_event.h
15461 F:      arch/*/kernel/*/*/perf_event*.c
15462 F:      arch/*/kernel/*/perf_event*.c
15463 F:      arch/*/kernel/perf_callchain.c
15464 F:      arch/*/kernel/perf_event*.c
15465 F:      include/linux/perf_event.h
15466 F:      include/uapi/linux/perf_event.h
15467 F:      kernel/events/*
15468 F:      tools/lib/perf/
15469 F:      tools/perf/
15470
15471 PERFORMANCE EVENTS TOOLING ARM64
15472 R:      John Garry <john.garry@huawei.com>
15473 R:      Will Deacon <will@kernel.org>
15474 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
15475 R:      Leo Yan <leo.yan@linaro.org>
15476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15477 S:      Supported
15478 F:      tools/build/feature/test-libopencsd.c
15479 F:      tools/perf/arch/arm*/
15480 F:      tools/perf/pmu-events/arch/arm64/
15481 F:      tools/perf/util/arm-spe*
15482 F:      tools/perf/util/cs-etm*
15483
15484 PERSONALITY HANDLING
15485 M:      Christoph Hellwig <hch@infradead.org>
15486 L:      linux-abi-devel@lists.sourceforge.net
15487 S:      Maintained
15488 F:      include/linux/personality.h
15489 F:      include/uapi/linux/personality.h
15490
15491 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15492 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15493 L:      linux-input@vger.kernel.org
15494 S:      Maintained
15495 F:      Documentation/input/devices/pxrc.rst
15496 F:      drivers/input/joystick/pxrc.c
15497
15498 PHONET PROTOCOL
15499 M:      Remi Denis-Courmont <courmisch@gmail.com>
15500 S:      Supported
15501 F:      Documentation/networking/phonet.rst
15502 F:      include/linux/phonet.h
15503 F:      include/net/phonet/
15504 F:      include/uapi/linux/phonet.h
15505 F:      net/phonet/
15506
15507 PHRAM MTD DRIVER
15508 M:      Joern Engel <joern@lazybastard.org>
15509 L:      linux-mtd@lists.infradead.org
15510 S:      Maintained
15511 F:      drivers/mtd/devices/phram.c
15512
15513 PICOLCD HID DRIVER
15514 M:      Bruno Prémont <bonbons@linux-vserver.org>
15515 L:      linux-input@vger.kernel.org
15516 S:      Maintained
15517 F:      drivers/hid/hid-picolcd*
15518
15519 PIDFD API
15520 M:      Christian Brauner <christian@brauner.io>
15521 L:      linux-kernel@vger.kernel.org
15522 S:      Maintained
15523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15524 F:      samples/pidfd/
15525 F:      tools/testing/selftests/clone3/
15526 F:      tools/testing/selftests/pid_namespace/
15527 F:      tools/testing/selftests/pidfd/
15528 K:      (?i)pidfd
15529 K:      (?i)clone3
15530 K:      \b(clone_args|kernel_clone_args)\b
15531
15532 PIN CONTROL SUBSYSTEM
15533 M:      Linus Walleij <linus.walleij@linaro.org>
15534 L:      linux-gpio@vger.kernel.org
15535 S:      Maintained
15536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15537 F:      Documentation/devicetree/bindings/pinctrl/
15538 F:      Documentation/driver-api/pin-control.rst
15539 F:      drivers/pinctrl/
15540 F:      include/linux/pinctrl/
15541
15542 PIN CONTROLLER - AMD
15543 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15544 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15545 S:      Maintained
15546 F:      drivers/pinctrl/pinctrl-amd.c
15547
15548 PIN CONTROLLER - FREESCALE
15549 M:      Dong Aisheng <aisheng.dong@nxp.com>
15550 M:      Fabio Estevam <festevam@gmail.com>
15551 M:      Shawn Guo <shawnguo@kernel.org>
15552 M:      Stefan Agner <stefan@agner.ch>
15553 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15554 L:      linux-gpio@vger.kernel.org
15555 S:      Maintained
15556 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15557 F:      drivers/pinctrl/freescale/
15558
15559 PIN CONTROLLER - INTEL
15560 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15561 M:      Andy Shevchenko <andy@kernel.org>
15562 S:      Maintained
15563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15564 F:      drivers/pinctrl/intel/
15565
15566 PIN CONTROLLER - KEEMBAY
15567 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15568 S:      Supported
15569 F:      drivers/pinctrl/pinctrl-keembay*
15570
15571 PIN CONTROLLER - MEDIATEK
15572 M:      Sean Wang <sean.wang@kernel.org>
15573 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15574 S:      Maintained
15575 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15576 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15577 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15578 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15579 F:      drivers/pinctrl/mediatek/
15580
15581 PIN CONTROLLER - MICROCHIP AT91
15582 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15584 L:      linux-gpio@vger.kernel.org
15585 S:      Supported
15586 F:      drivers/gpio/gpio-sama5d2-piobu.c
15587 F:      drivers/pinctrl/pinctrl-at91*
15588
15589 PIN CONTROLLER - QUALCOMM
15590 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15591 L:      linux-arm-msm@vger.kernel.org
15592 S:      Maintained
15593 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15594 F:      drivers/pinctrl/qcom/
15595
15596 PIN CONTROLLER - RENESAS
15597 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15598 L:      linux-renesas-soc@vger.kernel.org
15599 S:      Supported
15600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15601 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15602 F:      drivers/pinctrl/renesas/
15603
15604 PIN CONTROLLER - SAMSUNG
15605 M:      Tomasz Figa <tomasz.figa@gmail.com>
15606 M:      Krzysztof Kozlowski <krzk@kernel.org>
15607 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15608 R:      Alim Akhtar <alim.akhtar@samsung.com>
15609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15610 L:      linux-samsung-soc@vger.kernel.org
15611 S:      Maintained
15612 C:      irc://irc.libera.chat/linux-exynos
15613 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15615 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15616 F:      drivers/pinctrl/samsung/
15617 F:      include/dt-bindings/pinctrl/samsung.h
15618
15619 PIN CONTROLLER - SINGLE
15620 M:      Tony Lindgren <tony@atomide.com>
15621 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15623 L:      linux-omap@vger.kernel.org
15624 S:      Maintained
15625 F:      drivers/pinctrl/pinctrl-single.c
15626
15627 PIN CONTROLLER - THUNDERBAY
15628 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15629 S:      Supported
15630 F:      drivers/pinctrl/pinctrl-thunderbay.c
15631
15632 PIN CONTROLLER - SUNPLUS / TIBBO
15633 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
15634 M:      Wells Lu <wellslutw@gmail.com>
15635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15636 S:      Maintained
15637 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
15638 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
15639 F:      drivers/pinctrl/sunplus/
15640 F:      include/dt-bindings/pinctrl/sppctl*.h
15641
15642 PKTCDVD DRIVER
15643 M:      linux-block@vger.kernel.org
15644 S:      Orphan
15645 F:      drivers/block/pktcdvd.c
15646 F:      include/linux/pktcdvd.h
15647 F:      include/uapi/linux/pktcdvd.h
15648
15649 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15650 M:      Tomasz Duszynski <tduszyns@gmail.com>
15651 S:      Maintained
15652 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15653 F:      drivers/iio/chemical/pms7003.c
15654
15655 PLDMFW LIBRARY
15656 M:      Jacob Keller <jacob.e.keller@intel.com>
15657 S:      Maintained
15658 F:      Documentation/driver-api/pldmfw/
15659 F:      include/linux/pldmfw.h
15660 F:      lib/pldmfw/
15661
15662 PLX DMA DRIVER
15663 M:      Logan Gunthorpe <logang@deltatee.com>
15664 S:      Maintained
15665 F:      drivers/dma/plx_dma.c
15666
15667 PM6764TR DRIVER
15668 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15669 L:      linux-hwmon@vger.kernel.org
15670 S:      Maintained
15671 F:      Documentation/hwmon/pm6764tr.rst
15672 F:      drivers/hwmon/pmbus/pm6764tr.c
15673
15674 PM-GRAPH UTILITY
15675 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15676 L:      linux-pm@vger.kernel.org
15677 S:      Supported
15678 W:      https://01.org/pm-graph
15679 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15680 T:      git git://github.com/intel/pm-graph
15681 F:      tools/power/pm-graph
15682
15683 PMBUS HARDWARE MONITORING DRIVERS
15684 M:      Guenter Roeck <linux@roeck-us.net>
15685 L:      linux-hwmon@vger.kernel.org
15686 S:      Maintained
15687 W:      http://hwmon.wiki.kernel.org/
15688 W:      http://www.roeck-us.net/linux/drivers/
15689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15690 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15691 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15692 F:      Documentation/hwmon/adm1275.rst
15693 F:      Documentation/hwmon/ibm-cffps.rst
15694 F:      Documentation/hwmon/ir35221.rst
15695 F:      Documentation/hwmon/lm25066.rst
15696 F:      Documentation/hwmon/ltc2978.rst
15697 F:      Documentation/hwmon/ltc3815.rst
15698 F:      Documentation/hwmon/max16064.rst
15699 F:      Documentation/hwmon/max20751.rst
15700 F:      Documentation/hwmon/max31785.rst
15701 F:      Documentation/hwmon/max34440.rst
15702 F:      Documentation/hwmon/max8688.rst
15703 F:      Documentation/hwmon/pmbus-core.rst
15704 F:      Documentation/hwmon/pmbus.rst
15705 F:      Documentation/hwmon/tps40422.rst
15706 F:      Documentation/hwmon/ucd9000.rst
15707 F:      Documentation/hwmon/ucd9200.rst
15708 F:      Documentation/hwmon/zl6100.rst
15709 F:      drivers/hwmon/pmbus/
15710 F:      include/linux/pmbus.h
15711
15712 PMC SIERRA MaxRAID DRIVER
15713 L:      linux-scsi@vger.kernel.org
15714 S:      Orphan
15715 W:      http://www.pmc-sierra.com/
15716 F:      drivers/scsi/pmcraid.*
15717
15718 PMC SIERRA PM8001 DRIVER
15719 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15720 L:      linux-scsi@vger.kernel.org
15721 S:      Supported
15722 F:      drivers/scsi/pm8001/
15723
15724 PNI RM3100 IIO DRIVER
15725 M:      Song Qiang <songqiang1304521@gmail.com>
15726 L:      linux-iio@vger.kernel.org
15727 S:      Maintained
15728 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15729 F:      drivers/iio/magnetometer/rm3100*
15730
15731 PNP SUPPORT
15732 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15733 L:      linux-acpi@vger.kernel.org
15734 S:      Maintained
15735 F:      drivers/pnp/
15736 F:      include/linux/pnp.h
15737
15738 POSIX CLOCKS and TIMERS
15739 M:      Thomas Gleixner <tglx@linutronix.de>
15740 L:      linux-kernel@vger.kernel.org
15741 S:      Maintained
15742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15743 F:      fs/timerfd.c
15744 F:      include/linux/time_namespace.h
15745 F:      include/linux/timer*
15746 F:      kernel/time/*timer*
15747 F:      kernel/time/namespace.c
15748
15749 POWER MANAGEMENT CORE
15750 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15751 L:      linux-pm@vger.kernel.org
15752 S:      Supported
15753 B:      https://bugzilla.kernel.org
15754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15755 F:      drivers/base/power/
15756 F:      drivers/powercap/
15757 F:      include/linux/intel_rapl.h
15758 F:      include/linux/pm.h
15759 F:      include/linux/pm_*
15760 F:      include/linux/powercap.h
15761 F:      kernel/configs/nopm.config
15762
15763 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15764 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15765 L:      linux-pm@vger.kernel.org
15766 S:      Supported
15767 B:      https://bugzilla.kernel.org
15768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15769 F:      drivers/powercap/dtpm*
15770 F:      include/linux/dtpm.h
15771
15772 POWER STATE COORDINATION INTERFACE (PSCI)
15773 M:      Mark Rutland <mark.rutland@arm.com>
15774 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15775 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15776 S:      Maintained
15777 F:      drivers/firmware/psci/
15778 F:      include/linux/psci.h
15779 F:      include/uapi/linux/psci.h
15780
15781 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15782 M:      Sebastian Reichel <sre@kernel.org>
15783 L:      linux-pm@vger.kernel.org
15784 S:      Maintained
15785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15786 F:      Documentation/ABI/testing/sysfs-class-power
15787 F:      Documentation/devicetree/bindings/power/supply/
15788 F:      drivers/power/supply/
15789 F:      include/linux/power/
15790 F:      include/linux/power_supply.h
15791
15792 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15793 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15794 L:      linuxppc-dev@lists.ozlabs.org
15795 S:      Maintained
15796 F:      drivers/char/powernv-op-panel.c
15797
15798 PPP OVER ATM (RFC 2364)
15799 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15800 S:      Maintained
15801 F:      include/uapi/linux/atmppp.h
15802 F:      net/atm/pppoatm.c
15803
15804 PPP OVER ETHERNET
15805 M:      Michal Ostrowski <mostrows@earthlink.net>
15806 S:      Maintained
15807 F:      drivers/net/ppp/pppoe.c
15808 F:      drivers/net/ppp/pppox.c
15809
15810 PPP OVER L2TP
15811 M:      James Chapman <jchapman@katalix.com>
15812 S:      Maintained
15813 F:      include/linux/if_pppol2tp.h
15814 F:      include/uapi/linux/if_pppol2tp.h
15815 F:      net/l2tp/l2tp_ppp.c
15816
15817 PPP PROTOCOL DRIVERS AND COMPRESSORS
15818 M:      Paul Mackerras <paulus@samba.org>
15819 L:      linux-ppp@vger.kernel.org
15820 S:      Maintained
15821 F:      drivers/net/ppp/ppp_*
15822
15823 PPS SUPPORT
15824 M:      Rodolfo Giometti <giometti@enneenne.com>
15825 L:      linuxpps@ml.enneenne.com (subscribers-only)
15826 S:      Maintained
15827 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15828 F:      Documentation/ABI/testing/sysfs-pps
15829 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15830 F:      Documentation/driver-api/pps.rst
15831 F:      drivers/pps/
15832 F:      include/linux/pps*.h
15833 F:      include/uapi/linux/pps.h
15834
15835 PPTP DRIVER
15836 M:      Dmitry Kozlov <xeb@mail.ru>
15837 L:      netdev@vger.kernel.org
15838 S:      Maintained
15839 W:      http://sourceforge.net/projects/accel-pptp
15840 F:      drivers/net/ppp/pptp.c
15841
15842 PRESSURE STALL INFORMATION (PSI)
15843 M:      Johannes Weiner <hannes@cmpxchg.org>
15844 M:      Suren Baghdasaryan <surenb@google.com>
15845 S:      Maintained
15846 F:      include/linux/psi*
15847 F:      kernel/sched/psi.c
15848
15849 PRINTK
15850 M:      Petr Mladek <pmladek@suse.com>
15851 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15852 R:      Steven Rostedt <rostedt@goodmis.org>
15853 R:      John Ogness <john.ogness@linutronix.de>
15854 S:      Maintained
15855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
15856 F:      include/linux/printk.h
15857 F:      kernel/printk/
15858
15859 PRINTK INDEXING
15860 R:      Chris Down <chris@chrisdown.name>
15861 S:      Maintained
15862 F:      kernel/printk/index.c
15863
15864 PROC FILESYSTEM
15865 L:      linux-kernel@vger.kernel.org
15866 L:      linux-fsdevel@vger.kernel.org
15867 S:      Maintained
15868 F:      Documentation/filesystems/proc.rst
15869 F:      fs/proc/
15870 F:      include/linux/proc_fs.h
15871 F:      tools/testing/selftests/proc/
15872
15873 PROC SYSCTL
15874 M:      Luis Chamberlain <mcgrof@kernel.org>
15875 M:      Kees Cook <keescook@chromium.org>
15876 M:      Iurii Zaikin <yzaikin@google.com>
15877 L:      linux-kernel@vger.kernel.org
15878 L:      linux-fsdevel@vger.kernel.org
15879 S:      Maintained
15880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
15881 F:      fs/proc/proc_sysctl.c
15882 F:      include/linux/sysctl.h
15883 F:      kernel/sysctl-test.c
15884 F:      kernel/sysctl.c
15885 F:      tools/testing/selftests/sysctl/
15886
15887 PS3 NETWORK SUPPORT
15888 M:      Geoff Levand <geoff@infradead.org>
15889 L:      netdev@vger.kernel.org
15890 L:      linuxppc-dev@lists.ozlabs.org
15891 S:      Maintained
15892 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15893
15894 PS3 PLATFORM SUPPORT
15895 M:      Geoff Levand <geoff@infradead.org>
15896 L:      linuxppc-dev@lists.ozlabs.org
15897 S:      Maintained
15898 F:      arch/powerpc/boot/ps3*
15899 F:      arch/powerpc/include/asm/lv1call.h
15900 F:      arch/powerpc/include/asm/ps3*.h
15901 F:      arch/powerpc/platforms/ps3/
15902 F:      drivers/*/ps3*
15903 F:      drivers/ps3/
15904 F:      drivers/rtc/rtc-ps3.c
15905 F:      drivers/usb/host/*ps3.c
15906 F:      sound/ppc/snd_ps3*
15907
15908 PS3VRAM DRIVER
15909 M:      Jim Paris <jim@jtan.com>
15910 M:      Geoff Levand <geoff@infradead.org>
15911 L:      linuxppc-dev@lists.ozlabs.org
15912 S:      Maintained
15913 F:      drivers/block/ps3vram.c
15914
15915 PSAMPLE PACKET SAMPLING SUPPORT
15916 M:      Yotam Gigi <yotam.gi@gmail.com>
15917 S:      Maintained
15918 F:      include/net/psample.h
15919 F:      include/uapi/linux/psample.h
15920 F:      net/psample
15921
15922 PSTORE FILESYSTEM
15923 M:      Kees Cook <keescook@chromium.org>
15924 M:      Anton Vorontsov <anton@enomsg.org>
15925 M:      Colin Cross <ccross@android.com>
15926 M:      Tony Luck <tony.luck@intel.com>
15927 S:      Maintained
15928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15929 F:      Documentation/admin-guide/ramoops.rst
15930 F:      Documentation/admin-guide/pstore-blk.rst
15931 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15932 F:      drivers/acpi/apei/erst.c
15933 F:      drivers/firmware/efi/efi-pstore.c
15934 F:      fs/pstore/
15935 F:      include/linux/pstore*
15936 K:      \b(pstore|ramoops)
15937
15938 PTP HARDWARE CLOCK SUPPORT
15939 M:      Richard Cochran <richardcochran@gmail.com>
15940 L:      netdev@vger.kernel.org
15941 S:      Maintained
15942 W:      http://linuxptp.sourceforge.net/
15943 F:      Documentation/ABI/testing/sysfs-ptp
15944 F:      Documentation/driver-api/ptp.rst
15945 F:      drivers/net/phy/dp83640*
15946 F:      drivers/ptp/*
15947 F:      include/linux/ptp_cl*
15948
15949 PTP VIRTUAL CLOCK SUPPORT
15950 M:      Yangbo Lu <yangbo.lu@nxp.com>
15951 L:      netdev@vger.kernel.org
15952 S:      Maintained
15953 F:      drivers/ptp/ptp_vclock.c
15954 F:      net/ethtool/phc_vclocks.c
15955
15956 PTRACE SUPPORT
15957 M:      Oleg Nesterov <oleg@redhat.com>
15958 S:      Maintained
15959 F:      arch/*/*/ptrace*.c
15960 F:      arch/*/include/asm/ptrace*.h
15961 F:      arch/*/ptrace*.c
15962 F:      include/asm-generic/syscall.h
15963 F:      include/linux/ptrace.h
15964 F:      include/linux/regset.h
15965 F:      include/uapi/linux/ptrace.h
15966 F:      include/uapi/linux/ptrace.h
15967 F:      kernel/ptrace.c
15968
15969 PULSE8-CEC DRIVER
15970 M:      Hans Verkuil <hverkuil@xs4all.nl>
15971 L:      linux-media@vger.kernel.org
15972 S:      Maintained
15973 T:      git git://linuxtv.org/media_tree.git
15974 F:      Documentation/admin-guide/media/pulse8-cec.rst
15975 F:      drivers/media/cec/usb/pulse8/
15976
15977 PVRUSB2 VIDEO4LINUX DRIVER
15978 M:      Mike Isely <isely@pobox.com>
15979 L:      pvrusb2@isely.net       (subscribers-only)
15980 L:      linux-media@vger.kernel.org
15981 S:      Maintained
15982 W:      http://www.isely.net/pvrusb2/
15983 T:      git git://linuxtv.org/media_tree.git
15984 F:      Documentation/driver-api/media/drivers/pvrusb2*
15985 F:      drivers/media/usb/pvrusb2/
15986
15987 PWC WEBCAM DRIVER
15988 M:      Hans Verkuil <hverkuil@xs4all.nl>
15989 L:      linux-media@vger.kernel.org
15990 S:      Odd Fixes
15991 T:      git git://linuxtv.org/media_tree.git
15992 F:      drivers/media/usb/pwc/*
15993 F:      include/trace/events/pwc.h
15994
15995 PWM FAN DRIVER
15996 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15997 L:      linux-hwmon@vger.kernel.org
15998 S:      Supported
15999 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16000 F:      Documentation/hwmon/pwm-fan.rst
16001 F:      drivers/hwmon/pwm-fan.c
16002
16003 PWM IR Transmitter
16004 M:      Sean Young <sean@mess.org>
16005 L:      linux-media@vger.kernel.org
16006 S:      Maintained
16007 F:      drivers/media/rc/pwm-ir-tx.c
16008
16009 PWM SUBSYSTEM
16010 M:      Thierry Reding <thierry.reding@gmail.com>
16011 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16012 M:      Lee Jones <lee.jones@linaro.org>
16013 L:      linux-pwm@vger.kernel.org
16014 S:      Maintained
16015 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16017 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
16018 F:      Documentation/devicetree/bindings/pwm/
16019 F:      Documentation/driver-api/pwm.rst
16020 F:      drivers/gpio/gpio-mvebu.c
16021 F:      drivers/pwm/
16022 F:      drivers/video/backlight/pwm_bl.c
16023 F:      include/linux/pwm.h
16024 F:      include/linux/pwm_backlight.h
16025 K:      pwm_(config|apply_state|ops)
16026
16027 PXA GPIO DRIVER
16028 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16029 L:      linux-gpio@vger.kernel.org
16030 S:      Maintained
16031 F:      drivers/gpio/gpio-pxa.c
16032
16033 PXA MMCI DRIVER
16034 S:      Orphan
16035
16036 PXA RTC DRIVER
16037 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16038 L:      linux-rtc@vger.kernel.org
16039 S:      Maintained
16040
16041 PXA2xx/PXA3xx SUPPORT
16042 M:      Daniel Mack <daniel@zonque.org>
16043 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16044 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16046 S:      Maintained
16047 T:      git git://github.com/hzhuang1/linux.git
16048 T:      git git://github.com/rjarzmik/linux.git
16049 F:      arch/arm/boot/dts/pxa*
16050 F:      arch/arm/mach-pxa/
16051 F:      drivers/dma/pxa*
16052 F:      drivers/pcmcia/pxa2xx*
16053 F:      drivers/pinctrl/pxa/
16054 F:      drivers/spi/spi-pxa2xx*
16055 F:      drivers/usb/gadget/udc/pxa2*
16056 F:      include/sound/pxa2xx-lib.h
16057 F:      sound/arm/pxa*
16058 F:      sound/soc/pxa/
16059
16060 QAT DRIVER
16061 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16062 L:      qat-linux@intel.com
16063 S:      Supported
16064 F:      drivers/crypto/qat/
16065
16066 QCOM AUDIO (ASoC) DRIVERS
16067 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16068 M:      Banajit Goswami <bgoswami@codeaurora.org>
16069 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16070 S:      Supported
16071 F:      sound/soc/codecs/lpass-va-macro.c
16072 F:      sound/soc/codecs/lpass-wsa-macro.*
16073 F:      sound/soc/codecs/msm8916-wcd-analog.c
16074 F:      sound/soc/codecs/msm8916-wcd-digital.c
16075 F:      sound/soc/codecs/wcd9335.*
16076 F:      sound/soc/codecs/wcd934x.c
16077 F:      sound/soc/codecs/wcd-clsh-v2.*
16078 F:      sound/soc/codecs/wsa881x.c
16079 F:      sound/soc/qcom/
16080
16081 QCOM EMBEDDED USB DEBUGGER (EUD)
16082 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16083 L:      linux-arm-msm@vger.kernel.org
16084 S:      Maintained
16085 F:      Documentation/ABI/testing/sysfs-driver-eud
16086 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16087 F:      drivers/usb/misc/qcom_eud.c
16088
16089 QCOM IPA DRIVER
16090 M:      Alex Elder <elder@kernel.org>
16091 L:      netdev@vger.kernel.org
16092 S:      Supported
16093 F:      drivers/net/ipa/
16094
16095 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16096 M:      Gabriel Somlo <somlo@cmu.edu>
16097 M:      "Michael S. Tsirkin" <mst@redhat.com>
16098 L:      qemu-devel@nongnu.org
16099 S:      Maintained
16100 F:      drivers/firmware/qemu_fw_cfg.c
16101 F:      include/uapi/linux/qemu_fw_cfg.h
16102
16103 QIB DRIVER
16104 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16105 L:      linux-rdma@vger.kernel.org
16106 S:      Supported
16107 F:      drivers/infiniband/hw/qib/
16108
16109 QLOGIC QL41xxx FCOE DRIVER
16110 M:      Saurav Kashyap <skashyap@marvell.com>
16111 M:      Javed Hasan <jhasan@marvell.com>
16112 M:      GR-QLogic-Storage-Upstream@marvell.com
16113 L:      linux-scsi@vger.kernel.org
16114 S:      Supported
16115 F:      drivers/scsi/qedf/
16116
16117 QLOGIC QL41xxx ISCSI DRIVER
16118 M:      Nilesh Javali <njavali@marvell.com>
16119 M:      Manish Rangankar <mrangankar@marvell.com>
16120 M:      GR-QLogic-Storage-Upstream@marvell.com
16121 L:      linux-scsi@vger.kernel.org
16122 S:      Supported
16123 F:      drivers/scsi/qedi/
16124
16125 QLOGIC QL4xxx ETHERNET DRIVER
16126 M:      Ariel Elior <aelior@marvell.com>
16127 M:      Manish Chopra <manishc@marvell.com>
16128 L:      netdev@vger.kernel.org
16129 S:      Supported
16130 F:      drivers/net/ethernet/qlogic/qed/
16131 F:      drivers/net/ethernet/qlogic/qede/
16132 F:      include/linux/qed/
16133
16134 QLOGIC QL4xxx RDMA DRIVER
16135 M:      Michal Kalderon <mkalderon@marvell.com>
16136 M:      Ariel Elior <aelior@marvell.com>
16137 L:      linux-rdma@vger.kernel.org
16138 S:      Supported
16139 F:      drivers/infiniband/hw/qedr/
16140 F:      include/uapi/rdma/qedr-abi.h
16141
16142 QLOGIC QLA1280 SCSI DRIVER
16143 M:      Michael Reed <mdr@sgi.com>
16144 L:      linux-scsi@vger.kernel.org
16145 S:      Maintained
16146 F:      drivers/scsi/qla1280.[ch]
16147
16148 QLOGIC QLA2XXX FC-SCSI DRIVER
16149 M:      Nilesh Javali <njavali@marvell.com>
16150 M:      GR-QLogic-Storage-Upstream@marvell.com
16151 L:      linux-scsi@vger.kernel.org
16152 S:      Supported
16153 F:      drivers/scsi/qla2xxx/
16154
16155 QLOGIC QLA3XXX NETWORK DRIVER
16156 M:      GR-Linux-NIC-Dev@marvell.com
16157 L:      netdev@vger.kernel.org
16158 S:      Supported
16159 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16160
16161 QLOGIC QLA4XXX iSCSI DRIVER
16162 M:      Nilesh Javali <njavali@marvell.com>
16163 M:      Manish Rangankar <mrangankar@marvell.com>
16164 M:      GR-QLogic-Storage-Upstream@marvell.com
16165 L:      linux-scsi@vger.kernel.org
16166 S:      Supported
16167 F:      drivers/scsi/qla4xxx/
16168
16169 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16170 M:      Shahed Shaikh <shshaikh@marvell.com>
16171 M:      Manish Chopra <manishc@marvell.com>
16172 M:      GR-Linux-NIC-Dev@marvell.com
16173 L:      netdev@vger.kernel.org
16174 S:      Supported
16175 F:      drivers/net/ethernet/qlogic/qlcnic/
16176
16177 QLOGIC QLGE 10Gb ETHERNET DRIVER
16178 M:      Manish Chopra <manishc@marvell.com>
16179 M:      GR-Linux-NIC-Dev@marvell.com
16180 M:      Coiby Xu <coiby.xu@gmail.com>
16181 L:      netdev@vger.kernel.org
16182 S:      Supported
16183 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16184 F:      drivers/staging/qlge/
16185
16186 QM1D1B0004 MEDIA DRIVER
16187 M:      Akihiro Tsukada <tskd08@gmail.com>
16188 L:      linux-media@vger.kernel.org
16189 S:      Odd Fixes
16190 F:      drivers/media/tuners/qm1d1b0004*
16191
16192 QM1D1C0042 MEDIA DRIVER
16193 M:      Akihiro Tsukada <tskd08@gmail.com>
16194 L:      linux-media@vger.kernel.org
16195 S:      Odd Fixes
16196 F:      drivers/media/tuners/qm1d1c0042*
16197
16198 QNX4 FILESYSTEM
16199 M:      Anders Larsen <al@alarsen.net>
16200 S:      Maintained
16201 W:      http://www.alarsen.net/linux/qnx4fs/
16202 F:      fs/qnx4/
16203 F:      include/uapi/linux/qnx4_fs.h
16204 F:      include/uapi/linux/qnxtypes.h
16205
16206 QORIQ DPAA2 FSL-MC BUS DRIVER
16207 M:      Stuart Yoder <stuyoder@gmail.com>
16208 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16209 L:      linux-kernel@vger.kernel.org
16210 S:      Maintained
16211 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16212 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16213 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16214 F:      drivers/bus/fsl-mc/
16215 F:      include/uapi/linux/fsl_mc.h
16216
16217 QT1010 MEDIA DRIVER
16218 M:      Antti Palosaari <crope@iki.fi>
16219 L:      linux-media@vger.kernel.org
16220 S:      Maintained
16221 W:      https://linuxtv.org
16222 W:      http://palosaari.fi/linux/
16223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16224 T:      git git://linuxtv.org/anttip/media_tree.git
16225 F:      drivers/media/tuners/qt1010*
16226
16227 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16228 M:      Kalle Valo <kvalo@kernel.org>
16229 L:      ath10k@lists.infradead.org
16230 S:      Supported
16231 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16233 F:      drivers/net/wireless/ath/ath10k/
16234 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16235
16236 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16237 M:      Kalle Valo <kvalo@kernel.org>
16238 L:      ath11k@lists.infradead.org
16239 S:      Supported
16240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16241 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16242 F:      drivers/net/wireless/ath/ath11k/
16243
16244 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16245 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16246 L:      linux-wireless@vger.kernel.org
16247 S:      Maintained
16248 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16249 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16250 F:      drivers/net/wireless/ath/ath9k/
16251
16252 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16253 M:      Stephan Gerhold <stephan@gerhold.net>
16254 L:      netdev@vger.kernel.org
16255 L:      linux-arm-msm@vger.kernel.org
16256 S:      Maintained
16257 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16258 F:      drivers/net/wwan/qcom_bam_dmux.c
16259
16260 QUALCOMM CAMERA SUBSYSTEM DRIVER
16261 M:      Robert Foss <robert.foss@linaro.org>
16262 M:      Todor Tomov <todor.too@gmail.com>
16263 L:      linux-media@vger.kernel.org
16264 S:      Maintained
16265 F:      Documentation/admin-guide/media/qcom_camss.rst
16266 F:      Documentation/devicetree/bindings/media/*camss*
16267 F:      drivers/media/platform/qcom/camss/
16268
16269 QUALCOMM CLOCK DRIVERS
16270 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16271 L:      linux-arm-msm@vger.kernel.org
16272 S:      Supported
16273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16274 F:      Documentation/devicetree/bindings/clock/qcom,*
16275 F:      drivers/clk/qcom/
16276 F:      include/dt-bindings/clock/qcom,*
16277
16278 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16279 M:      Niklas Cassel <nks@flawful.org>
16280 L:      linux-pm@vger.kernel.org
16281 L:      linux-arm-msm@vger.kernel.org
16282 S:      Maintained
16283 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16284 F:      drivers/soc/qcom/cpr.c
16285
16286 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16287 M:      Ilia Lin <ilia.lin@kernel.org>
16288 L:      linux-pm@vger.kernel.org
16289 S:      Maintained
16290 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16291 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16292 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16293
16294 QUALCOMM CRYPTO DRIVERS
16295 M:      Thara Gopinath <thara.gopinath@linaro.org>
16296 L:      linux-crypto@vger.kernel.org
16297 L:      linux-arm-msm@vger.kernel.org
16298 S:      Maintained
16299 F:      drivers/crypto/qce/
16300
16301 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16302 M:      Timur Tabi <timur@kernel.org>
16303 L:      netdev@vger.kernel.org
16304 S:      Maintained
16305 F:      drivers/net/ethernet/qualcomm/emac/
16306
16307 QUALCOMM ETHQOS ETHERNET DRIVER
16308 M:      Vinod Koul <vkoul@kernel.org>
16309 L:      netdev@vger.kernel.org
16310 S:      Maintained
16311 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16312 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16313
16314 QUALCOMM FASTRPC DRIVER
16315 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16316 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16317 L:      linux-arm-msm@vger.kernel.org
16318 S:      Maintained
16319 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16320 F:      drivers/misc/fastrpc.c
16321 F:      include/uapi/misc/fastrpc.h
16322
16323 QUALCOMM HEXAGON ARCHITECTURE
16324 M:      Brian Cain <bcain@quicinc.com>
16325 L:      linux-hexagon@vger.kernel.org
16326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16327 S:      Supported
16328 F:      arch/hexagon/
16329
16330 QUALCOMM HIDMA DRIVER
16331 M:      Sinan Kaya <okaya@kernel.org>
16332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16333 L:      linux-arm-msm@vger.kernel.org
16334 L:      dmaengine@vger.kernel.org
16335 S:      Supported
16336 F:      drivers/dma/qcom/hidma*
16337
16338 QUALCOMM I2C CCI DRIVER
16339 M:      Loic Poulain <loic.poulain@linaro.org>
16340 M:      Robert Foss <robert.foss@linaro.org>
16341 L:      linux-i2c@vger.kernel.org
16342 L:      linux-arm-msm@vger.kernel.org
16343 S:      Maintained
16344 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16345 F:      drivers/i2c/busses/i2c-qcom-cci.c
16346
16347 QUALCOMM IOMMU
16348 M:      Rob Clark <robdclark@gmail.com>
16349 L:      iommu@lists.linux-foundation.org
16350 L:      linux-arm-msm@vger.kernel.org
16351 S:      Maintained
16352 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16353
16354 QUALCOMM IPC ROUTER (QRTR) DRIVER
16355 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16356 L:      linux-arm-msm@vger.kernel.org
16357 S:      Maintained
16358 F:      include/trace/events/qrtr.h
16359 F:      include/uapi/linux/qrtr.h
16360 F:      net/qrtr/
16361
16362 QUALCOMM IPCC MAILBOX DRIVER
16363 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16364 L:      linux-arm-msm@vger.kernel.org
16365 S:      Supported
16366 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16367 F:      drivers/mailbox/qcom-ipcc.c
16368 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16369
16370 QUALCOMM IPQ4019 USB PHY DRIVER
16371 M:      Robert Marko <robert.marko@sartura.hr>
16372 M:      Luka Perkov <luka.perkov@sartura.hr>
16373 L:      linux-arm-msm@vger.kernel.org
16374 S:      Maintained
16375 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16376 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16377
16378 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16379 M:      Robert Marko <robert.marko@sartura.hr>
16380 M:      Luka Perkov <luka.perkov@sartura.hr>
16381 L:      linux-arm-msm@vger.kernel.org
16382 S:      Maintained
16383 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16384 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16385
16386 QUALCOMM NAND CONTROLLER DRIVER
16387 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16388 L:      linux-mtd@lists.infradead.org
16389 L:      linux-arm-msm@vger.kernel.org
16390 S:      Maintained
16391 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16392 F:      drivers/mtd/nand/raw/qcom_nandc.c
16393
16394 QUALCOMM RMNET DRIVER
16395 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16396 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16397 L:      netdev@vger.kernel.org
16398 S:      Maintained
16399 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16400 F:      drivers/net/ethernet/qualcomm/rmnet/
16401 F:      include/linux/if_rmnet.h
16402
16403 QUALCOMM TSENS THERMAL DRIVER
16404 M:      Amit Kucheria <amitk@kernel.org>
16405 M:      Thara Gopinath <thara.gopinath@linaro.org>
16406 L:      linux-pm@vger.kernel.org
16407 L:      linux-arm-msm@vger.kernel.org
16408 S:      Maintained
16409 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16410 F:      drivers/thermal/qcom/
16411
16412 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16413 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16414 L:      linux-media@vger.kernel.org
16415 L:      linux-arm-msm@vger.kernel.org
16416 S:      Maintained
16417 T:      git git://linuxtv.org/media_tree.git
16418 F:      Documentation/devicetree/bindings/media/*venus*
16419 F:      drivers/media/platform/qcom/venus/
16420
16421 QUALCOMM WCN36XX WIRELESS DRIVER
16422 M:      Loic Poulain <loic.poulain@linaro.org>
16423 L:      wcn36xx@lists.infradead.org
16424 S:      Supported
16425 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16426 F:      drivers/net/wireless/ath/wcn36xx/
16427
16428 QUANTENNA QTNFMAC WIRELESS DRIVER
16429 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16430 R:      Sergey Matyukevich <geomatsi@gmail.com>
16431 L:      linux-wireless@vger.kernel.org
16432 S:      Maintained
16433 F:      drivers/net/wireless/quantenna
16434
16435 RADEON and AMDGPU DRM DRIVERS
16436 M:      Alex Deucher <alexander.deucher@amd.com>
16437 M:      Christian König <christian.koenig@amd.com>
16438 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16439 L:      amd-gfx@lists.freedesktop.org
16440 S:      Supported
16441 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16442 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16443 C:      irc://irc.oftc.net/radeon
16444 F:      drivers/gpu/drm/amd/
16445 F:      drivers/gpu/drm/radeon/
16446 F:      include/uapi/drm/amdgpu_drm.h
16447 F:      include/uapi/drm/radeon_drm.h
16448
16449 RADEON FRAMEBUFFER DISPLAY DRIVER
16450 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16451 L:      linux-fbdev@vger.kernel.org
16452 S:      Maintained
16453 F:      drivers/video/fbdev/aty/radeon*
16454 F:      include/uapi/linux/radeonfb.h
16455
16456 RADIOSHARK RADIO DRIVER
16457 M:      Hans Verkuil <hverkuil@xs4all.nl>
16458 L:      linux-media@vger.kernel.org
16459 S:      Maintained
16460 T:      git git://linuxtv.org/media_tree.git
16461 F:      drivers/media/radio/radio-shark.c
16462
16463 RADIOSHARK2 RADIO DRIVER
16464 M:      Hans Verkuil <hverkuil@xs4all.nl>
16465 L:      linux-media@vger.kernel.org
16466 S:      Maintained
16467 T:      git git://linuxtv.org/media_tree.git
16468 F:      drivers/media/radio/radio-shark2.c
16469 F:      drivers/media/radio/radio-tea5777.c
16470
16471 RADOS BLOCK DEVICE (RBD)
16472 M:      Ilya Dryomov <idryomov@gmail.com>
16473 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16474 L:      ceph-devel@vger.kernel.org
16475 S:      Supported
16476 W:      http://ceph.com/
16477 T:      git git://github.com/ceph/ceph-client.git
16478 F:      Documentation/ABI/testing/sysfs-bus-rbd
16479 F:      drivers/block/rbd.c
16480 F:      drivers/block/rbd_types.h
16481
16482 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16483 M:      Paul Mackerras <paulus@samba.org>
16484 L:      linux-fbdev@vger.kernel.org
16485 S:      Maintained
16486 F:      drivers/video/fbdev/aty/aty128fb.c
16487
16488 RAINSHADOW-CEC DRIVER
16489 M:      Hans Verkuil <hverkuil@xs4all.nl>
16490 L:      linux-media@vger.kernel.org
16491 S:      Maintained
16492 T:      git git://linuxtv.org/media_tree.git
16493 F:      drivers/media/cec/usb/rainshadow/
16494
16495 RALINK MIPS ARCHITECTURE
16496 M:      John Crispin <john@phrozen.org>
16497 L:      linux-mips@vger.kernel.org
16498 S:      Maintained
16499 F:      arch/mips/ralink
16500
16501 RALINK MT7621 MIPS ARCHITECTURE
16502 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16503 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16504 L:      linux-mips@vger.kernel.org
16505 S:      Maintained
16506 F:      arch/mips/boot/dts/ralink/mt7621*
16507
16508 RALINK RT2X00 WIRELESS LAN DRIVER
16509 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16510 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16511 L:      linux-wireless@vger.kernel.org
16512 S:      Maintained
16513 F:      drivers/net/wireless/ralink/rt2x00/
16514
16515 RAMDISK RAM BLOCK DEVICE DRIVER
16516 M:      Jens Axboe <axboe@kernel.dk>
16517 S:      Maintained
16518 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16519 F:      drivers/block/brd.c
16520
16521 RANCHU VIRTUAL BOARD FOR MIPS
16522 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16523 L:      linux-mips@vger.kernel.org
16524 S:      Supported
16525 F:      arch/mips/configs/generic/board-ranchu.config
16526 F:      arch/mips/generic/board-ranchu.c
16527
16528 RANDOM NUMBER DRIVER
16529 M:      "Theodore Ts'o" <tytso@mit.edu>
16530 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16531 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16532 S:      Maintained
16533 F:      drivers/char/random.c
16534 F:      drivers/virt/vmgenid.c
16535
16536 RAPIDIO SUBSYSTEM
16537 M:      Matt Porter <mporter@kernel.crashing.org>
16538 M:      Alexandre Bounine <alex.bou9@gmail.com>
16539 S:      Maintained
16540 F:      drivers/rapidio/
16541
16542 RAS INFRASTRUCTURE
16543 M:      Tony Luck <tony.luck@intel.com>
16544 M:      Borislav Petkov <bp@alien8.de>
16545 L:      linux-edac@vger.kernel.org
16546 S:      Maintained
16547 F:      Documentation/admin-guide/ras.rst
16548 F:      drivers/ras/
16549 F:      include/linux/ras.h
16550 F:      include/ras/ras_event.h
16551
16552 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16553 L:      linux-wireless@vger.kernel.org
16554 S:      Orphan
16555 F:      drivers/net/wireless/ray*
16556
16557 RC-CORE / LIRC FRAMEWORK
16558 M:      Sean Young <sean@mess.org>
16559 L:      linux-media@vger.kernel.org
16560 S:      Maintained
16561 W:      http://linuxtv.org
16562 T:      git git://linuxtv.org/media_tree.git
16563 F:      Documentation/driver-api/media/rc-core.rst
16564 F:      Documentation/userspace-api/media/rc/
16565 F:      drivers/media/rc/
16566 F:      include/media/rc-map.h
16567 F:      include/media/rc-core.h
16568 F:      include/uapi/linux/lirc.h
16569
16570 RCMM REMOTE CONTROLS DECODER
16571 M:      Patrick Lerda <patrick9876@free.fr>
16572 S:      Maintained
16573 F:      drivers/media/rc/ir-rcmm-decoder.c
16574
16575 RCUTORTURE TEST FRAMEWORK
16576 M:      "Paul E. McKenney" <paulmck@kernel.org>
16577 M:      Josh Triplett <josh@joshtriplett.org>
16578 R:      Steven Rostedt <rostedt@goodmis.org>
16579 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16580 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16581 L:      rcu@vger.kernel.org
16582 S:      Supported
16583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16584 F:      tools/testing/selftests/rcutorture
16585
16586 RDACM20 Camera Sensor
16587 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16588 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16589 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16590 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16591 L:      linux-media@vger.kernel.org
16592 S:      Maintained
16593 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16594 F:      drivers/media/i2c/max9271.c
16595 F:      drivers/media/i2c/max9271.h
16596 F:      drivers/media/i2c/rdacm20.c
16597
16598 RDACM21 Camera Sensor
16599 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16600 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16601 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16602 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16603 L:      linux-media@vger.kernel.org
16604 S:      Maintained
16605 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16606 F:      drivers/media/i2c/max9271.c
16607 F:      drivers/media/i2c/max9271.h
16608 F:      drivers/media/i2c/rdacm21.c
16609
16610 RDC R-321X SoC
16611 M:      Florian Fainelli <florian@openwrt.org>
16612 S:      Maintained
16613
16614 RDC R6040 FAST ETHERNET DRIVER
16615 M:      Florian Fainelli <f.fainelli@gmail.com>
16616 L:      netdev@vger.kernel.org
16617 S:      Maintained
16618 F:      drivers/net/ethernet/rdc/r6040.c
16619
16620 RDMAVT - RDMA verbs software
16621 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16622 L:      linux-rdma@vger.kernel.org
16623 S:      Supported
16624 F:      drivers/infiniband/sw/rdmavt
16625
16626 RDS - RELIABLE DATAGRAM SOCKETS
16627 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16628 L:      netdev@vger.kernel.org
16629 L:      linux-rdma@vger.kernel.org
16630 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16631 S:      Supported
16632 W:      https://oss.oracle.com/projects/rds/
16633 F:      Documentation/networking/rds.rst
16634 F:      net/rds/
16635
16636 RDT - RESOURCE ALLOCATION
16637 M:      Fenghua Yu <fenghua.yu@intel.com>
16638 M:      Reinette Chatre <reinette.chatre@intel.com>
16639 L:      linux-kernel@vger.kernel.org
16640 S:      Supported
16641 F:      Documentation/x86/resctrl*
16642 F:      arch/x86/include/asm/resctrl.h
16643 F:      arch/x86/kernel/cpu/resctrl/
16644 F:      tools/testing/selftests/resctrl/
16645
16646 READ-COPY UPDATE (RCU)
16647 M:      "Paul E. McKenney" <paulmck@kernel.org>
16648 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
16649 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
16650 M:      Josh Triplett <josh@joshtriplett.org>
16651 R:      Steven Rostedt <rostedt@goodmis.org>
16652 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16653 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16654 R:      Joel Fernandes <joel@joelfernandes.org>
16655 L:      rcu@vger.kernel.org
16656 S:      Supported
16657 W:      http://www.rdrop.com/users/paulmck/RCU/
16658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16659 F:      Documentation/RCU/
16660 F:      include/linux/rcu*
16661 F:      kernel/rcu/
16662 X:      Documentation/RCU/torture.rst
16663 X:      include/linux/srcu*.h
16664 X:      kernel/rcu/srcu*.c
16665
16666 REAL TIME CLOCK (RTC) SUBSYSTEM
16667 M:      Alessandro Zummo <a.zummo@towertech.it>
16668 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16669 L:      linux-rtc@vger.kernel.org
16670 S:      Maintained
16671 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16673 F:      Documentation/admin-guide/rtc.rst
16674 F:      Documentation/devicetree/bindings/rtc/
16675 F:      drivers/rtc/
16676 F:      include/linux/platform_data/rtc-*
16677 F:      include/linux/rtc.h
16678 F:      include/linux/rtc/
16679 F:      include/uapi/linux/rtc.h
16680 F:      tools/testing/selftests/rtc/
16681
16682 REALTEK AUDIO CODECS
16683 M:      Oder Chiou <oder_chiou@realtek.com>
16684 S:      Maintained
16685 F:      include/sound/rt*.h
16686 F:      sound/soc/codecs/rt*
16687
16688 REALTEK OTTO WATCHDOG
16689 M:      Sander Vanheule <sander@svanheule.net>
16690 L:      linux-watchdog@vger.kernel.org
16691 S:      Maintained
16692 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16693 F:      drivers/watchdog/realtek_otto_wdt.c
16694
16695 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16696 M:      Linus Walleij <linus.walleij@linaro.org>
16697 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
16698 S:      Maintained
16699 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
16700 F:      drivers/net/dsa/realtek/*
16701
16702 REALTEK WIRELESS DRIVER (rtlwifi family)
16703 M:      Ping-Ke Shih <pkshih@realtek.com>
16704 L:      linux-wireless@vger.kernel.org
16705 S:      Maintained
16706 W:      https://wireless.wiki.kernel.org/
16707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16708 F:      drivers/net/wireless/realtek/rtlwifi/
16709
16710 REALTEK WIRELESS DRIVER (rtw88)
16711 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16712 L:      linux-wireless@vger.kernel.org
16713 S:      Maintained
16714 F:      drivers/net/wireless/realtek/rtw88/
16715
16716 REALTEK WIRELESS DRIVER (rtw89)
16717 M:      Ping-Ke Shih <pkshih@realtek.com>
16718 L:      linux-wireless@vger.kernel.org
16719 S:      Maintained
16720 F:      drivers/net/wireless/realtek/rtw89/
16721
16722 REDPINE WIRELESS DRIVER
16723 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16724 M:      Siva Rebbagondla <siva8118@gmail.com>
16725 L:      linux-wireless@vger.kernel.org
16726 S:      Maintained
16727 F:      drivers/net/wireless/rsi/
16728
16729 REGISTER MAP ABSTRACTION
16730 M:      Mark Brown <broonie@kernel.org>
16731 L:      linux-kernel@vger.kernel.org
16732 S:      Supported
16733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16734 F:      Documentation/devicetree/bindings/regmap/
16735 F:      drivers/base/regmap/
16736 F:      include/linux/regmap.h
16737
16738 REISERFS FILE SYSTEM
16739 L:      reiserfs-devel@vger.kernel.org
16740 S:      Supported
16741 F:      fs/reiserfs/
16742
16743 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16744 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16745 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16746 L:      linux-remoteproc@vger.kernel.org
16747 S:      Maintained
16748 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16749 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16750 F:      Documentation/devicetree/bindings/remoteproc/
16751 F:      Documentation/staging/remoteproc.rst
16752 F:      drivers/remoteproc/
16753 F:      include/linux/remoteproc.h
16754 F:      include/linux/remoteproc/
16755
16756 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16757 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16758 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16759 L:      linux-remoteproc@vger.kernel.org
16760 S:      Maintained
16761 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16762 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16763 F:      Documentation/staging/rpmsg.rst
16764 F:      drivers/rpmsg/
16765 F:      include/linux/rpmsg.h
16766 F:      include/linux/rpmsg/
16767 F:      include/uapi/linux/rpmsg.h
16768 F:      samples/rpmsg/
16769
16770 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16771 M:      Stephan Gerhold <stephan@gerhold.net>
16772 L:      netdev@vger.kernel.org
16773 L:      linux-remoteproc@vger.kernel.org
16774 S:      Maintained
16775 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16776
16777 RENESAS CLOCK DRIVERS
16778 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16779 L:      linux-renesas-soc@vger.kernel.org
16780 S:      Supported
16781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16782 F:      Documentation/devicetree/bindings/clock/renesas,*
16783 F:      drivers/clk/renesas/
16784
16785 RENESAS EMEV2 I2C DRIVER
16786 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16787 L:      linux-renesas-soc@vger.kernel.org
16788 S:      Supported
16789 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16790 F:      drivers/i2c/busses/i2c-emev2.c
16791
16792 RENESAS ETHERNET DRIVERS
16793 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16794 L:      netdev@vger.kernel.org
16795 L:      linux-renesas-soc@vger.kernel.org
16796 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16797 F:      drivers/net/ethernet/renesas/
16798 F:      include/linux/sh_eth.h
16799
16800 RENESAS R-CAR GYROADC DRIVER
16801 M:      Marek Vasut <marek.vasut@gmail.com>
16802 L:      linux-iio@vger.kernel.org
16803 S:      Supported
16804 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16805 F:      drivers/iio/adc/rcar-gyroadc.c
16806
16807 RENESAS R-CAR I2C DRIVERS
16808 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16809 L:      linux-renesas-soc@vger.kernel.org
16810 S:      Supported
16811 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16812 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16813 F:      drivers/i2c/busses/i2c-rcar.c
16814 F:      drivers/i2c/busses/i2c-sh_mobile.c
16815
16816 RENESAS R-CAR SATA DRIVER
16817 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16818 S:      Supported
16819 L:      linux-ide@vger.kernel.org
16820 L:      linux-renesas-soc@vger.kernel.org
16821 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
16822 F:      drivers/ata/sata_rcar.c
16823
16824 RENESAS R-CAR THERMAL DRIVERS
16825 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16826 L:      linux-renesas-soc@vger.kernel.org
16827 S:      Supported
16828 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16829 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16830 F:      drivers/thermal/rcar_gen3_thermal.c
16831 F:      drivers/thermal/rcar_thermal.c
16832
16833 RENESAS RIIC DRIVER
16834 M:      Chris Brandt <chris.brandt@renesas.com>
16835 L:      linux-renesas-soc@vger.kernel.org
16836 S:      Supported
16837 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16838 F:      drivers/i2c/busses/i2c-riic.c
16839
16840 RENESAS USB PHY DRIVER
16841 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16842 L:      linux-renesas-soc@vger.kernel.org
16843 S:      Maintained
16844 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16845
16846 RENESAS RZ/G2L A/D DRIVER
16847 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16848 L:      linux-iio@vger.kernel.org
16849 L:      linux-renesas-soc@vger.kernel.org
16850 S:      Supported
16851 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16852 F:      drivers/iio/adc/rzg2l_adc.c
16853
16854 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
16855 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16856 L:      linux-mtd@lists.infradead.org
16857 L:      linux-renesas-soc@vger.kernel.org
16858 S:      Maintained
16859 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
16860 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
16861
16862 RESET CONTROLLER FRAMEWORK
16863 M:      Philipp Zabel <p.zabel@pengutronix.de>
16864 S:      Maintained
16865 T:      git git://git.pengutronix.de/git/pza/linux
16866 F:      Documentation/devicetree/bindings/reset/
16867 F:      Documentation/driver-api/reset.rst
16868 F:      drivers/reset/
16869 F:      include/dt-bindings/reset/
16870 F:      include/linux/reset-controller.h
16871 F:      include/linux/reset.h
16872 F:      include/linux/reset/
16873 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16874
16875 RESTARTABLE SEQUENCES SUPPORT
16876 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16877 M:      Peter Zijlstra <peterz@infradead.org>
16878 M:      "Paul E. McKenney" <paulmck@kernel.org>
16879 M:      Boqun Feng <boqun.feng@gmail.com>
16880 L:      linux-kernel@vger.kernel.org
16881 S:      Supported
16882 F:      include/trace/events/rseq.h
16883 F:      include/uapi/linux/rseq.h
16884 F:      kernel/rseq.c
16885 F:      tools/testing/selftests/rseq/
16886
16887 RFKILL
16888 M:      Johannes Berg <johannes@sipsolutions.net>
16889 L:      linux-wireless@vger.kernel.org
16890 S:      Maintained
16891 W:      https://wireless.wiki.kernel.org/
16892 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
16893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
16894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
16895 F:      Documentation/ABI/stable/sysfs-class-rfkill
16896 F:      Documentation/driver-api/rfkill.rst
16897 F:      include/linux/rfkill.h
16898 F:      include/uapi/linux/rfkill.h
16899 F:      net/rfkill/
16900
16901 RHASHTABLE
16902 M:      Thomas Graf <tgraf@suug.ch>
16903 M:      Herbert Xu <herbert@gondor.apana.org.au>
16904 L:      netdev@vger.kernel.org
16905 S:      Maintained
16906 F:      include/linux/rhashtable-types.h
16907 F:      include/linux/rhashtable.h
16908 F:      lib/rhashtable.c
16909 F:      lib/test_rhashtable.c
16910
16911 RICOH R5C592 MEMORYSTICK DRIVER
16912 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16913 S:      Maintained
16914 F:      drivers/memstick/host/r592.*
16915
16916 RICOH SMARTMEDIA/XD DRIVER
16917 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16918 S:      Maintained
16919 F:      drivers/mtd/nand/raw/r852.c
16920 F:      drivers/mtd/nand/raw/r852.h
16921
16922 RISC-V PMU DRIVERS
16923 M:      Atish Patra <atishp@atishpatra.org>
16924 R:      Anup Patel <anup@brainfault.org>
16925 L:      linux-riscv@lists.infradead.org
16926 S:      Supported
16927 F:      drivers/perf/riscv_pmu.c
16928 F:      drivers/perf/riscv_pmu_legacy.c
16929 F:      drivers/perf/riscv_pmu_sbi.c
16930
16931 RISC-V ARCHITECTURE
16932 M:      Paul Walmsley <paul.walmsley@sifive.com>
16933 M:      Palmer Dabbelt <palmer@dabbelt.com>
16934 M:      Albert Ou <aou@eecs.berkeley.edu>
16935 L:      linux-riscv@lists.infradead.org
16936 S:      Supported
16937 P:      Documentation/riscv/patch-acceptance.rst
16938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16939 F:      arch/riscv/
16940 N:      riscv
16941 K:      riscv
16942
16943 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16944 M:      Lewis Hanly <lewis.hanly@microchip.com>
16945 M:      Conor Dooley <conor.dooley@microchip.com>
16946 L:      linux-riscv@lists.infradead.org
16947 S:      Supported
16948 F:      arch/riscv/boot/dts/microchip/
16949 F:      drivers/mailbox/mailbox-mpfs.c
16950 F:      drivers/soc/microchip/
16951 F:      include/soc/microchip/mpfs.h
16952
16953 RNBD BLOCK DRIVERS
16954 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16955 M:      Jack Wang <jinpu.wang@ionos.com>
16956 L:      linux-block@vger.kernel.org
16957 S:      Maintained
16958 F:      drivers/block/rnbd/
16959
16960 ROCCAT DRIVERS
16961 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16962 S:      Maintained
16963 W:      http://sourceforge.net/projects/roccat/
16964 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16965 F:      drivers/hid/hid-roccat*
16966 F:      include/linux/hid-roccat*
16967
16968 ROCKCHIP I2S TDM DRIVER
16969 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16970 L:      linux-rockchip@lists.infradead.org
16971 S:      Maintained
16972 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16973 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16974
16975 ROCKCHIP ISP V1 DRIVER
16976 M:      Dafna Hirschfeld <dafna@fastmail.com>
16977 L:      linux-media@vger.kernel.org
16978 L:      linux-rockchip@lists.infradead.org
16979 S:      Maintained
16980 F:      Documentation/admin-guide/media/rkisp1.rst
16981 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16982 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16983 F:      drivers/media/platform/rockchip/rkisp1
16984 F:      include/uapi/linux/rkisp1-config.h
16985
16986 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16987 M:      Jacob Chen <jacob-chen@iotwrt.com>
16988 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16989 L:      linux-media@vger.kernel.org
16990 L:      linux-rockchip@lists.infradead.org
16991 S:      Maintained
16992 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16993 F:      drivers/media/platform/rockchip/rga/
16994
16995 ROCKCHIP VIDEO DECODER DRIVER
16996 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16997 L:      linux-media@vger.kernel.org
16998 L:      linux-rockchip@lists.infradead.org
16999 S:      Maintained
17000 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17001 F:      drivers/staging/media/rkvdec/
17002
17003 ROCKER DRIVER
17004 M:      Jiri Pirko <jiri@resnulli.us>
17005 L:      netdev@vger.kernel.org
17006 S:      Supported
17007 F:      drivers/net/ethernet/rocker/
17008
17009 ROCKETPORT EXPRESS/INFINITY DRIVER
17010 M:      Kevin Cernekee <cernekee@gmail.com>
17011 L:      linux-serial@vger.kernel.org
17012 S:      Odd Fixes
17013 F:      drivers/tty/serial/rp2.*
17014
17015 ROHM BD99954 CHARGER IC
17016 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17017 S:      Supported
17018 F:      drivers/power/supply/bd99954-charger.c
17019 F:      drivers/power/supply/bd99954-charger.h
17020
17021 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17022 M:      Tomasz Duszynski <tduszyns@gmail.com>
17023 S:      Maintained
17024 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17025 F:      drivers/iio/light/bh1750.c
17026
17027 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17028 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17029 L:      linux-kernel@vger.kernel.org
17030 L:      linux-renesas-soc@vger.kernel.org
17031 S:      Supported
17032 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17033 F:      drivers/gpio/gpio-bd9571mwv.c
17034 F:      drivers/mfd/bd9571mwv.c
17035 F:      drivers/regulator/bd9571mwv-regulator.c
17036 F:      include/linux/mfd/bd9571mwv.h
17037
17038 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17039 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17040 S:      Supported
17041 F:      drivers/clk/clk-bd718x7.c
17042 F:      drivers/gpio/gpio-bd71815.c
17043 F:      drivers/gpio/gpio-bd71828.c
17044 F:      drivers/mfd/rohm-bd71828.c
17045 F:      drivers/mfd/rohm-bd718x7.c
17046 F:      drivers/mfd/rohm-bd9576.c
17047 F:      drivers/regulator/bd71815-regulator.c
17048 F:      drivers/regulator/bd71828-regulator.c
17049 F:      drivers/regulator/bd718x7-regulator.c
17050 F:      drivers/regulator/bd9576-regulator.c
17051 F:      drivers/regulator/rohm-regulator.c
17052 F:      drivers/rtc/rtc-bd70528.c
17053 F:      drivers/watchdog/bd9576_wdt.c
17054 F:      include/linux/mfd/rohm-bd71815.h
17055 F:      include/linux/mfd/rohm-bd71828.h
17056 F:      include/linux/mfd/rohm-bd718x7.h
17057 F:      include/linux/mfd/rohm-bd957x.h
17058 F:      include/linux/mfd/rohm-generic.h
17059 F:      include/linux/mfd/rohm-shared.h
17060
17061 ROSE NETWORK LAYER
17062 M:      Ralf Baechle <ralf@linux-mips.org>
17063 L:      linux-hams@vger.kernel.org
17064 S:      Maintained
17065 W:      http://www.linux-ax25.org/
17066 F:      include/net/rose.h
17067 F:      include/uapi/linux/rose.h
17068 F:      net/rose/
17069
17070 ROTATION DRIVER FOR ALLWINNER A83T
17071 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17072 L:      linux-media@vger.kernel.org
17073 S:      Maintained
17074 T:      git git://linuxtv.org/media_tree.git
17075 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17076 F:      drivers/media/platform/sunxi/sun8i-rotate/
17077
17078 RPMSG TTY DRIVER
17079 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17080 L:      linux-remoteproc@vger.kernel.org
17081 S:      Maintained
17082 F:      drivers/tty/rpmsg_tty.c
17083
17084 RTL2830 MEDIA DRIVER
17085 M:      Antti Palosaari <crope@iki.fi>
17086 L:      linux-media@vger.kernel.org
17087 S:      Maintained
17088 W:      https://linuxtv.org
17089 W:      http://palosaari.fi/linux/
17090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17091 T:      git git://linuxtv.org/anttip/media_tree.git
17092 F:      drivers/media/dvb-frontends/rtl2830*
17093
17094 RTL2832 MEDIA DRIVER
17095 M:      Antti Palosaari <crope@iki.fi>
17096 L:      linux-media@vger.kernel.org
17097 S:      Maintained
17098 W:      https://linuxtv.org
17099 W:      http://palosaari.fi/linux/
17100 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17101 T:      git git://linuxtv.org/anttip/media_tree.git
17102 F:      drivers/media/dvb-frontends/rtl2832*
17103
17104 RTL2832_SDR MEDIA DRIVER
17105 M:      Antti Palosaari <crope@iki.fi>
17106 L:      linux-media@vger.kernel.org
17107 S:      Maintained
17108 W:      https://linuxtv.org
17109 W:      http://palosaari.fi/linux/
17110 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17111 T:      git git://linuxtv.org/anttip/media_tree.git
17112 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17113
17114 RTL8180 WIRELESS DRIVER
17115 L:      linux-wireless@vger.kernel.org
17116 S:      Orphan
17117 W:      https://wireless.wiki.kernel.org/
17118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17119 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17120
17121 RTL8187 WIRELESS DRIVER
17122 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17123 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17124 M:      Larry Finger <Larry.Finger@lwfinger.net>
17125 L:      linux-wireless@vger.kernel.org
17126 S:      Maintained
17127 W:      https://wireless.wiki.kernel.org/
17128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17129 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17130
17131 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17132 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17133 L:      linux-wireless@vger.kernel.org
17134 S:      Maintained
17135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17136 F:      drivers/net/wireless/realtek/rtl8xxxu/
17137
17138 RTRS TRANSPORT DRIVERS
17139 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17140 M:      Jack Wang <jinpu.wang@ionos.com>
17141 L:      linux-rdma@vger.kernel.org
17142 S:      Maintained
17143 F:      drivers/infiniband/ulp/rtrs/
17144
17145 RXRPC SOCKETS (AF_RXRPC)
17146 M:      David Howells <dhowells@redhat.com>
17147 M:      Marc Dionne <marc.dionne@auristor.com>
17148 L:      linux-afs@lists.infradead.org
17149 S:      Supported
17150 W:      https://www.infradead.org/~dhowells/kafs/
17151 F:      Documentation/networking/rxrpc.rst
17152 F:      include/keys/rxrpc-type.h
17153 F:      include/net/af_rxrpc.h
17154 F:      include/trace/events/rxrpc.h
17155 F:      include/uapi/linux/rxrpc.h
17156 F:      net/rxrpc/
17157
17158 S3 SAVAGE FRAMEBUFFER DRIVER
17159 M:      Antonino Daplas <adaplas@gmail.com>
17160 L:      linux-fbdev@vger.kernel.org
17161 S:      Maintained
17162 F:      drivers/video/fbdev/savage/
17163
17164 S390
17165 M:      Heiko Carstens <hca@linux.ibm.com>
17166 M:      Vasily Gorbik <gor@linux.ibm.com>
17167 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17168 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17169 R:      Sven Schnelle <svens@linux.ibm.com>
17170 L:      linux-s390@vger.kernel.org
17171 S:      Supported
17172 W:      http://www.ibm.com/developerworks/linux/linux390/
17173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17174 F:      Documentation/driver-api/s390-drivers.rst
17175 F:      Documentation/s390/
17176 F:      arch/s390/
17177 F:      drivers/s390/
17178
17179 S390 COMMON I/O LAYER
17180 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17181 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17182 L:      linux-s390@vger.kernel.org
17183 S:      Supported
17184 W:      http://www.ibm.com/developerworks/linux/linux390/
17185 F:      drivers/s390/cio/
17186
17187 S390 DASD DRIVER
17188 M:      Stefan Haberland <sth@linux.ibm.com>
17189 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17190 L:      linux-s390@vger.kernel.org
17191 S:      Supported
17192 W:      http://www.ibm.com/developerworks/linux/linux390/
17193 F:      block/partitions/ibm.c
17194 F:      drivers/s390/block/dasd*
17195 F:      include/linux/dasd_mod.h
17196
17197 S390 IOMMU (PCI)
17198 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17199 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17200 L:      linux-s390@vger.kernel.org
17201 S:      Supported
17202 W:      http://www.ibm.com/developerworks/linux/linux390/
17203 F:      drivers/iommu/s390-iommu.c
17204
17205 S390 IUCV NETWORK LAYER
17206 M:      Alexandra Winter <wintera@linux.ibm.com>
17207 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17208 L:      linux-s390@vger.kernel.org
17209 L:      netdev@vger.kernel.org
17210 S:      Supported
17211 W:      http://www.ibm.com/developerworks/linux/linux390/
17212 F:      drivers/s390/net/*iucv*
17213 F:      include/net/iucv/
17214 F:      net/iucv/
17215
17216 S390 NETWORK DRIVERS
17217 M:      Alexandra Winter <wintera@linux.ibm.com>
17218 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17219 L:      linux-s390@vger.kernel.org
17220 L:      netdev@vger.kernel.org
17221 S:      Supported
17222 W:      http://www.ibm.com/developerworks/linux/linux390/
17223 F:      drivers/s390/net/
17224
17225 S390 PCI SUBSYSTEM
17226 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17227 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17228 L:      linux-s390@vger.kernel.org
17229 S:      Supported
17230 W:      http://www.ibm.com/developerworks/linux/linux390/
17231 F:      arch/s390/pci/
17232 F:      drivers/pci/hotplug/s390_pci_hpc.c
17233 F:      Documentation/s390/pci.rst
17234
17235 S390 VFIO AP DRIVER
17236 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17237 M:      Halil Pasic <pasic@linux.ibm.com>
17238 M:      Jason Herne <jjherne@linux.ibm.com>
17239 L:      linux-s390@vger.kernel.org
17240 S:      Supported
17241 W:      http://www.ibm.com/developerworks/linux/linux390/
17242 F:      Documentation/s390/vfio-ap.rst
17243 F:      drivers/s390/crypto/vfio_ap*
17244
17245 S390 VFIO-CCW DRIVER
17246 M:      Eric Farman <farman@linux.ibm.com>
17247 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17248 R:      Halil Pasic <pasic@linux.ibm.com>
17249 L:      linux-s390@vger.kernel.org
17250 L:      kvm@vger.kernel.org
17251 S:      Supported
17252 F:      Documentation/s390/vfio-ccw.rst
17253 F:      drivers/s390/cio/vfio_ccw*
17254 F:      include/uapi/linux/vfio_ccw.h
17255
17256 S390 VFIO-PCI DRIVER
17257 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17258 M:      Eric Farman <farman@linux.ibm.com>
17259 L:      linux-s390@vger.kernel.org
17260 L:      kvm@vger.kernel.org
17261 S:      Supported
17262 F:      drivers/vfio/pci/vfio_pci_zdev.c
17263 F:      include/uapi/linux/vfio_zdev.h
17264
17265 S390 ZCRYPT DRIVER
17266 M:      Harald Freudenberger <freude@linux.ibm.com>
17267 L:      linux-s390@vger.kernel.org
17268 S:      Supported
17269 W:      http://www.ibm.com/developerworks/linux/linux390/
17270 F:      drivers/s390/crypto/
17271
17272 S390 ZFCP DRIVER
17273 M:      Steffen Maier <maier@linux.ibm.com>
17274 M:      Benjamin Block <bblock@linux.ibm.com>
17275 L:      linux-s390@vger.kernel.org
17276 S:      Supported
17277 W:      http://www.ibm.com/developerworks/linux/linux390/
17278 F:      drivers/s390/scsi/zfcp_*
17279
17280 S3C ADC BATTERY DRIVER
17281 M:      Krzysztof Kozlowski <krzk@kernel.org>
17282 L:      linux-samsung-soc@vger.kernel.org
17283 S:      Odd Fixes
17284 F:      drivers/power/supply/s3c_adc_battery.c
17285 F:      include/linux/s3c_adc_battery.h
17286
17287 S3C24XX SD/MMC Driver
17288 M:      Ben Dooks <ben-linux@fluff.org>
17289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17290 S:      Supported
17291 F:      drivers/mmc/host/s3cmci.*
17292
17293 SAA6588 RDS RECEIVER DRIVER
17294 M:      Hans Verkuil <hverkuil@xs4all.nl>
17295 L:      linux-media@vger.kernel.org
17296 S:      Odd Fixes
17297 W:      https://linuxtv.org
17298 T:      git git://linuxtv.org/media_tree.git
17299 F:      drivers/media/i2c/saa6588*
17300
17301 SAA7134 VIDEO4LINUX DRIVER
17302 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17303 L:      linux-media@vger.kernel.org
17304 S:      Odd fixes
17305 W:      https://linuxtv.org
17306 T:      git git://linuxtv.org/media_tree.git
17307 F:      Documentation/driver-api/media/drivers/saa7134*
17308 F:      drivers/media/pci/saa7134/
17309
17310 SAA7146 VIDEO4LINUX-2 DRIVER
17311 M:      Hans Verkuil <hverkuil@xs4all.nl>
17312 L:      linux-media@vger.kernel.org
17313 S:      Maintained
17314 T:      git git://linuxtv.org/media_tree.git
17315 F:      drivers/media/common/saa7146/
17316 F:      drivers/media/pci/saa7146/
17317 F:      include/media/drv-intf/saa7146*
17318
17319 SAFESETID SECURITY MODULE
17320 M:      Micah Morton <mortonm@chromium.org>
17321 S:      Supported
17322 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17323 F:      security/safesetid/
17324
17325 SAMSUNG AUDIO (ASoC) DRIVERS
17326 M:      Krzysztof Kozlowski <krzk@kernel.org>
17327 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17328 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17329 S:      Supported
17330 F:      Documentation/devicetree/bindings/sound/samsung*
17331 F:      sound/soc/samsung/
17332
17333 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17334 M:      Krzysztof Kozlowski <krzk@kernel.org>
17335 L:      linux-crypto@vger.kernel.org
17336 L:      linux-samsung-soc@vger.kernel.org
17337 S:      Maintained
17338 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17339 F:      drivers/crypto/exynos-rng.c
17340
17341 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17342 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17343 L:      linux-samsung-soc@vger.kernel.org
17344 S:      Maintained
17345 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17346 F:      drivers/char/hw_random/exynos-trng.c
17347
17348 SAMSUNG FRAMEBUFFER DRIVER
17349 M:      Jingoo Han <jingoohan1@gmail.com>
17350 L:      linux-fbdev@vger.kernel.org
17351 S:      Maintained
17352 F:      drivers/video/fbdev/s3c-fb.c
17353
17354 SAMSUNG INTERCONNECT DRIVERS
17355 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17356 M:      Artur Świgoń <a.swigon@samsung.com>
17357 L:      linux-pm@vger.kernel.org
17358 L:      linux-samsung-soc@vger.kernel.org
17359 S:      Supported
17360 F:      drivers/interconnect/samsung/
17361
17362 SAMSUNG LAPTOP DRIVER
17363 M:      Corentin Chary <corentin.chary@gmail.com>
17364 L:      platform-driver-x86@vger.kernel.org
17365 S:      Maintained
17366 F:      drivers/platform/x86/samsung-laptop.c
17367
17368 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17369 M:      Krzysztof Kozlowski <krzk@kernel.org>
17370 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17371 L:      linux-kernel@vger.kernel.org
17372 L:      linux-samsung-soc@vger.kernel.org
17373 S:      Supported
17374 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17375 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17376 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17377 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17378 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17379 F:      drivers/clk/clk-s2mps11.c
17380 F:      drivers/mfd/sec*.c
17381 F:      drivers/regulator/s2m*.c
17382 F:      drivers/regulator/s5m*.c
17383 F:      drivers/rtc/rtc-s5m.c
17384 F:      include/linux/mfd/samsung/
17385
17386 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17387 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17388 L:      linux-media@vger.kernel.org
17389 L:      linux-samsung-soc@vger.kernel.org
17390 S:      Maintained
17391 F:      drivers/media/platform/samsung/s3c-camif/
17392 F:      include/media/drv-intf/s3c_camif.h
17393
17394 SAMSUNG S3FWRN5 NFC DRIVER
17395 M:      Krzysztof Kozlowski <krzk@kernel.org>
17396 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17397 L:      linux-nfc@lists.01.org (subscribers-only)
17398 S:      Maintained
17399 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17400 F:      drivers/nfc/s3fwrn5
17401
17402 SAMSUNG S5C73M3 CAMERA DRIVER
17403 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17404 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17405 L:      linux-media@vger.kernel.org
17406 S:      Supported
17407 F:      drivers/media/i2c/s5c73m3/*
17408
17409 SAMSUNG S5K5BAF CAMERA DRIVER
17410 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17411 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17412 L:      linux-media@vger.kernel.org
17413 S:      Supported
17414 F:      drivers/media/i2c/s5k5baf.c
17415
17416 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17417 M:      Krzysztof Kozlowski <krzk@kernel.org>
17418 M:      Vladimir Zapolskiy <vz@mleia.com>
17419 L:      linux-crypto@vger.kernel.org
17420 L:      linux-samsung-soc@vger.kernel.org
17421 S:      Maintained
17422 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17423 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17424 F:      drivers/crypto/s5p-sss.c
17425
17426 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17427 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17428 L:      linux-media@vger.kernel.org
17429 S:      Supported
17430 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17431 F:      drivers/media/platform/samsung/exynos4-is/
17432
17433 SAMSUNG SOC CLOCK DRIVERS
17434 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17435 M:      Tomasz Figa <tomasz.figa@gmail.com>
17436 M:      Chanwoo Choi <cw00.choi@samsung.com>
17437 R:      Alim Akhtar <alim.akhtar@samsung.com>
17438 L:      linux-samsung-soc@vger.kernel.org
17439 S:      Supported
17440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17441 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17442 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17443 F:      drivers/clk/samsung/
17444 F:      include/dt-bindings/clock/exynos*.h
17445 F:      include/dt-bindings/clock/s3c*.h
17446 F:      include/dt-bindings/clock/s5p*.h
17447 F:      include/dt-bindings/clock/samsung,*.h
17448 F:      include/linux/clk/samsung.h
17449 F:      include/linux/platform_data/clk-s3c2410.h
17450
17451 SAMSUNG SPI DRIVERS
17452 M:      Krzysztof Kozlowski <krzk@kernel.org>
17453 M:      Andi Shyti <andi@etezian.org>
17454 L:      linux-spi@vger.kernel.org
17455 L:      linux-samsung-soc@vger.kernel.org
17456 S:      Maintained
17457 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17458 F:      drivers/spi/spi-s3c*
17459 F:      include/linux/platform_data/spi-s3c64xx.h
17460 F:      include/linux/spi/s3c24xx-fiq.h
17461
17462 SAMSUNG SXGBE DRIVERS
17463 M:      Byungho An <bh74.an@samsung.com>
17464 L:      netdev@vger.kernel.org
17465 S:      Supported
17466 F:      drivers/net/ethernet/samsung/sxgbe/
17467
17468 SAMSUNG THERMAL DRIVER
17469 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17470 M:      Krzysztof Kozlowski <krzk@kernel.org>
17471 L:      linux-pm@vger.kernel.org
17472 L:      linux-samsung-soc@vger.kernel.org
17473 S:      Maintained
17474 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17475 F:      drivers/thermal/samsung/
17476
17477 SAMSUNG USB2 PHY DRIVER
17478 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17479 L:      linux-kernel@vger.kernel.org
17480 S:      Supported
17481 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17482 F:      Documentation/driver-api/phy/samsung-usb2.rst
17483 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17484 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17485 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17486 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17487 F:      drivers/phy/samsung/phy-samsung-usb2.c
17488 F:      drivers/phy/samsung/phy-samsung-usb2.h
17489
17490 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17491 M:      Paul Barker <paul.barker@sancloud.com>
17492 R:      Marc Murphy <marc.murphy@sancloud.com>
17493 S:      Supported
17494 F:      arch/arm/boot/dts/am335x-sancloud*
17495
17496 SC1200 WDT DRIVER
17497 M:      Zwane Mwaikambo <zwanem@gmail.com>
17498 S:      Maintained
17499 F:      drivers/watchdog/sc1200wdt.c
17500
17501 SCHEDULER
17502 M:      Ingo Molnar <mingo@redhat.com>
17503 M:      Peter Zijlstra <peterz@infradead.org>
17504 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17505 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17506 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17507 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17508 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17509 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17510 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17511 L:      linux-kernel@vger.kernel.org
17512 S:      Maintained
17513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17514 F:      include/linux/preempt.h
17515 F:      include/linux/sched.h
17516 F:      include/linux/wait.h
17517 F:      include/uapi/linux/sched.h
17518 F:      kernel/sched/
17519
17520 SCR24X CHIP CARD INTERFACE DRIVER
17521 M:      Lubomir Rintel <lkundrak@v3.sk>
17522 S:      Supported
17523 F:      drivers/char/pcmcia/scr24x_cs.c
17524
17525 SCSI RDMA PROTOCOL (SRP) INITIATOR
17526 M:      Bart Van Assche <bvanassche@acm.org>
17527 L:      linux-rdma@vger.kernel.org
17528 S:      Supported
17529 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17530 F:      drivers/infiniband/ulp/srp/
17531 F:      include/scsi/srp.h
17532
17533 SCSI RDMA PROTOCOL (SRP) TARGET
17534 M:      Bart Van Assche <bvanassche@acm.org>
17535 L:      linux-rdma@vger.kernel.org
17536 L:      target-devel@vger.kernel.org
17537 S:      Supported
17538 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17539 F:      drivers/infiniband/ulp/srpt/
17540
17541 SCSI SG DRIVER
17542 M:      Doug Gilbert <dgilbert@interlog.com>
17543 L:      linux-scsi@vger.kernel.org
17544 S:      Maintained
17545 W:      http://sg.danny.cz/sg
17546 F:      Documentation/scsi/scsi-generic.rst
17547 F:      drivers/scsi/sg.c
17548 F:      include/scsi/sg.h
17549
17550 SCSI SUBSYSTEM
17551 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17552 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17553 L:      linux-scsi@vger.kernel.org
17554 S:      Maintained
17555 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17558 F:      Documentation/devicetree/bindings/scsi/
17559 F:      drivers/scsi/
17560 F:      include/scsi/
17561
17562 SCSI TAPE DRIVER
17563 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17564 L:      linux-scsi@vger.kernel.org
17565 S:      Maintained
17566 F:      Documentation/scsi/st.rst
17567 F:      drivers/scsi/st.*
17568 F:      drivers/scsi/st_*.h
17569
17570 SCSI TARGET CORE USER DRIVER
17571 M:      Bodo Stroesser <bostroesser@gmail.com>
17572 L:      linux-scsi@vger.kernel.org
17573 L:      target-devel@vger.kernel.org
17574 S:      Supported
17575 F:      Documentation/target/tcmu-design.rst
17576 F:      drivers/target/target_core_user.c
17577 F:      include/uapi/linux/target_core_user.h
17578
17579 SCSI TARGET SUBSYSTEM
17580 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17581 L:      linux-scsi@vger.kernel.org
17582 L:      target-devel@vger.kernel.org
17583 S:      Supported
17584 W:      http://www.linux-iscsi.org
17585 Q:      https://patchwork.kernel.org/project/target-devel/list/
17586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17587 F:      Documentation/target/
17588 F:      drivers/target/
17589 F:      include/target/
17590
17591 SCTP PROTOCOL
17592 M:      Vlad Yasevich <vyasevich@gmail.com>
17593 M:      Neil Horman <nhorman@tuxdriver.com>
17594 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17595 L:      linux-sctp@vger.kernel.org
17596 S:      Maintained
17597 W:      http://lksctp.sourceforge.net
17598 F:      Documentation/networking/sctp.rst
17599 F:      include/linux/sctp.h
17600 F:      include/net/sctp/
17601 F:      include/uapi/linux/sctp.h
17602 F:      net/sctp/
17603
17604 SCx200 CPU SUPPORT
17605 M:      Jim Cromie <jim.cromie@gmail.com>
17606 S:      Odd Fixes
17607 F:      Documentation/i2c/busses/scx200_acb.rst
17608 F:      arch/x86/platform/scx200/
17609 F:      drivers/i2c/busses/scx200*
17610 F:      drivers/mtd/maps/scx200_docflash.c
17611 F:      drivers/watchdog/scx200_wdt.c
17612 F:      include/linux/scx200.h
17613
17614 SCx200 GPIO DRIVER
17615 M:      Jim Cromie <jim.cromie@gmail.com>
17616 S:      Maintained
17617 F:      drivers/char/scx200_gpio.c
17618 F:      include/linux/scx200_gpio.h
17619
17620 SCx200 HRT CLOCKSOURCE DRIVER
17621 M:      Jim Cromie <jim.cromie@gmail.com>
17622 S:      Maintained
17623 F:      drivers/clocksource/scx200_hrt.c
17624
17625 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17626 M:      Sascha Sommer <saschasommer@freenet.de>
17627 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17628 S:      Maintained
17629 F:      drivers/mmc/host/sdricoh_cs.c
17630
17631 SECO BOARDS CEC DRIVER
17632 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17633 S:      Maintained
17634 F:      drivers/media/cec/platform/seco/seco-cec.c
17635 F:      drivers/media/cec/platform/seco/seco-cec.h
17636
17637 SECURE COMPUTING
17638 M:      Kees Cook <keescook@chromium.org>
17639 R:      Andy Lutomirski <luto@amacapital.net>
17640 R:      Will Drewry <wad@chromium.org>
17641 S:      Supported
17642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17643 F:      Documentation/userspace-api/seccomp_filter.rst
17644 F:      include/linux/seccomp.h
17645 F:      include/uapi/linux/seccomp.h
17646 F:      kernel/seccomp.c
17647 F:      tools/testing/selftests/kselftest_harness.h
17648 F:      tools/testing/selftests/seccomp/*
17649 K:      \bsecure_computing
17650 K:      \bTIF_SECCOMP\b
17651
17652 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17653 M:      Al Cooper <alcooperx@gmail.com>
17654 L:      linux-mmc@vger.kernel.org
17655 L:      bcm-kernel-feedback-list@broadcom.com
17656 S:      Maintained
17657 F:      drivers/mmc/host/sdhci-brcmstb*
17658
17659 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17660 M:      Adrian Hunter <adrian.hunter@intel.com>
17661 L:      linux-mmc@vger.kernel.org
17662 S:      Maintained
17663 F:      drivers/mmc/host/sdhci*
17664
17665 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17666 M:      Eugen Hristev <eugen.hristev@microchip.com>
17667 L:      linux-mmc@vger.kernel.org
17668 S:      Supported
17669 F:      drivers/mmc/host/sdhci-of-at91.c
17670
17671 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17672 M:      Ben Dooks <ben-linux@fluff.org>
17673 M:      Jaehoon Chung <jh80.chung@samsung.com>
17674 L:      linux-mmc@vger.kernel.org
17675 S:      Maintained
17676 F:      drivers/mmc/host/sdhci-s3c*
17677
17678 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17679 M:      Viresh Kumar <vireshk@kernel.org>
17680 L:      linux-mmc@vger.kernel.org
17681 S:      Maintained
17682 F:      drivers/mmc/host/sdhci-spear.c
17683
17684 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17685 M:      Kishon Vijay Abraham I <kishon@ti.com>
17686 L:      linux-mmc@vger.kernel.org
17687 S:      Maintained
17688 F:      drivers/mmc/host/sdhci-omap.c
17689
17690 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17691 M:      Haibo Chen <haibo.chen@nxp.com>
17692 L:      linux-imx@nxp.com
17693 L:      linux-mmc@vger.kernel.org
17694 S:      Maintained
17695 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17696
17697 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17698 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17699 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17700 L:      linux-block@vger.kernel.org
17701 S:      Supported
17702 F:      block/opal_proto.h
17703 F:      block/sed*
17704 F:      include/linux/sed*
17705 F:      include/uapi/linux/sed*
17706
17707 SECURITY CONTACT
17708 M:      Security Officers <security@kernel.org>
17709 S:      Supported
17710 F:      Documentation/admin-guide/security-bugs.rst
17711
17712 SECURITY SUBSYSTEM
17713 M:      James Morris <jmorris@namei.org>
17714 M:      "Serge E. Hallyn" <serge@hallyn.com>
17715 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17716 S:      Supported
17717 W:      http://kernsec.org/
17718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17719 F:      security/
17720 X:      security/selinux/
17721
17722 SELINUX SECURITY MODULE
17723 M:      Paul Moore <paul@paul-moore.com>
17724 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17725 M:      Eric Paris <eparis@parisplace.org>
17726 L:      selinux@vger.kernel.org
17727 S:      Supported
17728 W:      https://selinuxproject.org
17729 W:      https://github.com/SELinuxProject
17730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17731 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17732 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17733 F:      Documentation/admin-guide/LSM/SELinux.rst
17734 F:      include/trace/events/avc.h
17735 F:      include/uapi/linux/selinux_netlink.h
17736 F:      scripts/selinux/
17737 F:      security/selinux/
17738
17739 SENSABLE PHANTOM
17740 M:      Jiri Slaby <jirislaby@kernel.org>
17741 S:      Maintained
17742 F:      drivers/misc/phantom.c
17743 F:      include/uapi/linux/phantom.h
17744
17745 SENSEAIR SUNRISE 006-0-0007
17746 M:      Jacopo Mondi <jacopo@jmondi.org>
17747 S:      Maintained
17748 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17749 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17750 F:      drivers/iio/chemical/sunrise_co2.c
17751
17752 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17753 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17754 S:      Maintained
17755 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17756 F:      drivers/iio/chemical/scd30.h
17757 F:      drivers/iio/chemical/scd30_core.c
17758 F:      drivers/iio/chemical/scd30_i2c.c
17759 F:      drivers/iio/chemical/scd30_serial.c
17760
17761 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17762 M:      Roan van Dijk <roan@protonic.nl>
17763 S:      Maintained
17764 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17765 F:      drivers/iio/chemical/scd4x.c
17766
17767 SENSIRION SGP40 GAS SENSOR DRIVER
17768 M:      Andreas Klinger <ak@it-klinger.de>
17769 S:      Maintained
17770 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17771 F:      drivers/iio/chemical/sgp40.c
17772
17773 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17774 M:      Tomasz Duszynski <tduszyns@gmail.com>
17775 S:      Maintained
17776 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17777 F:      drivers/iio/chemical/sps30.c
17778 F:      drivers/iio/chemical/sps30_i2c.c
17779 F:      drivers/iio/chemical/sps30_serial.c
17780
17781 SERIAL DEVICE BUS
17782 M:      Rob Herring <robh@kernel.org>
17783 L:      linux-serial@vger.kernel.org
17784 S:      Maintained
17785 F:      Documentation/devicetree/bindings/serial/serial.yaml
17786 F:      drivers/tty/serdev/
17787 F:      include/linux/serdev.h
17788
17789 SERIAL DRIVERS
17790 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17791 L:      linux-serial@vger.kernel.org
17792 S:      Maintained
17793 F:      Documentation/devicetree/bindings/serial/
17794 F:      drivers/tty/serial/
17795
17796 SERIAL IR RECEIVER
17797 M:      Sean Young <sean@mess.org>
17798 L:      linux-media@vger.kernel.org
17799 S:      Maintained
17800 F:      drivers/media/rc/serial_ir.c
17801
17802 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17803 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17804 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17805 S:      Maintained
17806 F:      Documentation/devicetree/bindings/slimbus/
17807 F:      drivers/slimbus/
17808 F:      include/linux/slimbus.h
17809
17810 SFC NETWORK DRIVER
17811 M:      Edward Cree <ecree.xilinx@gmail.com>
17812 M:      Martin Habets <habetsm.xilinx@gmail.com>
17813 L:      netdev@vger.kernel.org
17814 S:      Supported
17815 F:      drivers/net/ethernet/sfc/
17816
17817 SFF/SFP/SFP+ MODULE SUPPORT
17818 M:      Russell King <linux@armlinux.org.uk>
17819 L:      netdev@vger.kernel.org
17820 S:      Maintained
17821 F:      drivers/net/phy/phylink.c
17822 F:      drivers/net/phy/sfp*
17823 F:      include/linux/mdio/mdio-i2c.h
17824 F:      include/linux/phylink.h
17825 F:      include/linux/sfp.h
17826 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)
17827
17828 SGI GRU DRIVER
17829 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17830 S:      Maintained
17831 F:      drivers/misc/sgi-gru/
17832
17833 SGI XP/XPC/XPNET DRIVER
17834 M:      Robin Holt <robinmholt@gmail.com>
17835 M:      Steve Wahl <steve.wahl@hpe.com>
17836 R:      Mike Travis <mike.travis@hpe.com>
17837 S:      Maintained
17838 F:      drivers/misc/sgi-xp/
17839
17840 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17841 M:      Karsten Graul <kgraul@linux.ibm.com>
17842 L:      linux-s390@vger.kernel.org
17843 S:      Supported
17844 W:      http://www.ibm.com/developerworks/linux/linux390/
17845 F:      net/smc/
17846
17847 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17848 M:      Linus Walleij <linus.walleij@linaro.org>
17849 L:      linux-iio@vger.kernel.org
17850 S:      Maintained
17851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17852 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17853 F:      drivers/iio/light/gp2ap002.c
17854
17855 SHARP RJ54N1CB0C SENSOR DRIVER
17856 M:      Jacopo Mondi <jacopo@jmondi.org>
17857 L:      linux-media@vger.kernel.org
17858 S:      Odd fixes
17859 T:      git git://linuxtv.org/media_tree.git
17860 F:      drivers/media/i2c/rj54n1cb0c.c
17861 F:      include/media/i2c/rj54n1cb0c.h
17862
17863 SH_VOU V4L2 OUTPUT DRIVER
17864 L:      linux-media@vger.kernel.org
17865 S:      Orphan
17866 F:      drivers/media/platform/renesas/sh_vou.c
17867 F:      include/media/drv-intf/sh_vou.h
17868
17869 SI2157 MEDIA DRIVER
17870 M:      Antti Palosaari <crope@iki.fi>
17871 L:      linux-media@vger.kernel.org
17872 S:      Maintained
17873 W:      https://linuxtv.org
17874 W:      http://palosaari.fi/linux/
17875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17876 T:      git git://linuxtv.org/anttip/media_tree.git
17877 F:      drivers/media/tuners/si2157*
17878
17879 SI2165 MEDIA DRIVER
17880 M:      Matthias Schwarzott <zzam@gentoo.org>
17881 L:      linux-media@vger.kernel.org
17882 S:      Maintained
17883 W:      https://linuxtv.org
17884 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17885 F:      drivers/media/dvb-frontends/si2165*
17886
17887 SI2168 MEDIA DRIVER
17888 M:      Antti Palosaari <crope@iki.fi>
17889 L:      linux-media@vger.kernel.org
17890 S:      Maintained
17891 W:      https://linuxtv.org
17892 W:      http://palosaari.fi/linux/
17893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17894 T:      git git://linuxtv.org/anttip/media_tree.git
17895 F:      drivers/media/dvb-frontends/si2168*
17896
17897 SI470X FM RADIO RECEIVER I2C DRIVER
17898 M:      Hans Verkuil <hverkuil@xs4all.nl>
17899 L:      linux-media@vger.kernel.org
17900 S:      Odd Fixes
17901 W:      https://linuxtv.org
17902 T:      git git://linuxtv.org/media_tree.git
17903 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17904
17905 SI470X FM RADIO RECEIVER USB DRIVER
17906 M:      Hans Verkuil <hverkuil@xs4all.nl>
17907 L:      linux-media@vger.kernel.org
17908 S:      Maintained
17909 W:      https://linuxtv.org
17910 T:      git git://linuxtv.org/media_tree.git
17911 F:      drivers/media/radio/si470x/radio-si470x-common.c
17912 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17913 F:      drivers/media/radio/si470x/radio-si470x.h
17914
17915 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17916 M:      Eduardo Valentin <edubezval@gmail.com>
17917 L:      linux-media@vger.kernel.org
17918 S:      Odd Fixes
17919 W:      https://linuxtv.org
17920 T:      git git://linuxtv.org/media_tree.git
17921 F:      drivers/media/radio/si4713/si4713.?
17922
17923 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17924 M:      Eduardo Valentin <edubezval@gmail.com>
17925 L:      linux-media@vger.kernel.org
17926 S:      Odd Fixes
17927 W:      https://linuxtv.org
17928 T:      git git://linuxtv.org/media_tree.git
17929 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17930
17931 SI4713 FM RADIO TRANSMITTER USB DRIVER
17932 M:      Hans Verkuil <hverkuil@xs4all.nl>
17933 L:      linux-media@vger.kernel.org
17934 S:      Maintained
17935 W:      https://linuxtv.org
17936 T:      git git://linuxtv.org/media_tree.git
17937 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17938
17939 SIANO DVB DRIVER
17940 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17941 L:      linux-media@vger.kernel.org
17942 S:      Odd fixes
17943 W:      https://linuxtv.org
17944 T:      git git://linuxtv.org/media_tree.git
17945 F:      drivers/media/common/siano/
17946 F:      drivers/media/mmc/siano/
17947 F:      drivers/media/usb/siano/
17948 F:      drivers/media/usb/siano/
17949
17950 SIFIVE DRIVERS
17951 M:      Palmer Dabbelt <palmer@dabbelt.com>
17952 M:      Paul Walmsley <paul.walmsley@sifive.com>
17953 L:      linux-riscv@lists.infradead.org
17954 S:      Supported
17955 T:      git git://github.com/sifive/riscv-linux.git
17956 N:      sifive
17957 K:      [^@]sifive
17958
17959 SIFIVE FU540 SYSTEM-ON-CHIP
17960 M:      Paul Walmsley <paul.walmsley@sifive.com>
17961 M:      Palmer Dabbelt <palmer@dabbelt.com>
17962 L:      linux-riscv@lists.infradead.org
17963 S:      Supported
17964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17965 N:      fu540
17966 K:      fu540
17967
17968 SIFIVE PDMA DRIVER
17969 M:      Green Wan <green.wan@sifive.com>
17970 S:      Maintained
17971 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17972 F:      drivers/dma/sf-pdma/
17973
17974 SILEAD TOUCHSCREEN DRIVER
17975 M:      Hans de Goede <hdegoede@redhat.com>
17976 L:      linux-input@vger.kernel.org
17977 L:      platform-driver-x86@vger.kernel.org
17978 S:      Maintained
17979 F:      drivers/input/touchscreen/silead.c
17980 F:      drivers/platform/x86/touchscreen_dmi.c
17981
17982 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17983 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17984 S:      Supported
17985 F:      Documentation/devicetree/bindings/staging/net/wireless/silabs,wfx.yaml
17986 F:      drivers/staging/wfx/
17987
17988 SILICON MOTION SM712 FRAME BUFFER DRIVER
17989 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17990 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17991 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17992 L:      linux-fbdev@vger.kernel.org
17993 S:      Maintained
17994 F:      Documentation/fb/sm712fb.rst
17995 F:      drivers/video/fbdev/sm712*
17996
17997 SILVACO I3C DUAL-ROLE MASTER
17998 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17999 M:      Conor Culhane <conor.culhane@silvaco.com>
18000 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18001 S:      Maintained
18002 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18003 F:      drivers/i3c/master/svc-i3c-master.c
18004
18005 SIMPLEFB FB DRIVER
18006 M:      Hans de Goede <hdegoede@redhat.com>
18007 L:      linux-fbdev@vger.kernel.org
18008 S:      Maintained
18009 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18010 F:      drivers/video/fbdev/simplefb.c
18011 F:      include/linux/platform_data/simplefb.h
18012
18013 SIMTEC EB110ATX (Chalice CATS)
18014 M:      Simtec Linux Team <linux@simtec.co.uk>
18015 S:      Supported
18016 W:      http://www.simtec.co.uk/products/EB110ATX/
18017
18018 SIMTEC EB2410ITX (BAST)
18019 M:      Simtec Linux Team <linux@simtec.co.uk>
18020 S:      Supported
18021 W:      http://www.simtec.co.uk/products/EB2410ITX/
18022 F:      arch/arm/mach-s3c/bast-ide.c
18023 F:      arch/arm/mach-s3c/bast-irq.c
18024 F:      arch/arm/mach-s3c/mach-bast.c
18025
18026 SIOX
18027 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18028 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18029 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18030 S:      Supported
18031 F:      drivers/gpio/gpio-siox.c
18032 F:      drivers/siox/*
18033 F:      include/trace/events/siox.h
18034
18035 SIPHASH PRF ROUTINES
18036 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18037 S:      Maintained
18038 F:      include/linux/siphash.h
18039 F:      lib/siphash.c
18040 F:      lib/test_siphash.c
18041
18042 SIS 190 ETHERNET DRIVER
18043 M:      Francois Romieu <romieu@fr.zoreil.com>
18044 L:      netdev@vger.kernel.org
18045 S:      Maintained
18046 F:      drivers/net/ethernet/sis/sis190.c
18047
18048 SIS 900/7016 FAST ETHERNET DRIVER
18049 M:      Daniele Venzano <venza@brownhat.org>
18050 L:      netdev@vger.kernel.org
18051 S:      Maintained
18052 W:      http://www.brownhat.org/sis900.html
18053 F:      drivers/net/ethernet/sis/sis900.*
18054
18055 SIS FRAMEBUFFER DRIVER
18056 M:      Thomas Winischhofer <thomas@winischhofer.net>
18057 S:      Maintained
18058 W:      http://www.winischhofer.net/linuxsisvga.shtml
18059 F:      Documentation/fb/sisfb.rst
18060 F:      drivers/video/fbdev/sis/
18061 F:      include/video/sisfb.h
18062
18063 SIS I2C TOUCHSCREEN DRIVER
18064 M:      Mika Penttilä <mika.penttila@nextfour.com>
18065 L:      linux-input@vger.kernel.org
18066 S:      Maintained
18067 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18068 F:      drivers/input/touchscreen/sis_i2c.c
18069
18070 SIS USB2VGA DRIVER
18071 M:      Thomas Winischhofer <thomas@winischhofer.net>
18072 S:      Maintained
18073 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18074 F:      drivers/usb/misc/sisusbvga/
18075
18076 SL28 CPLD MFD DRIVER
18077 M:      Michael Walle <michael@walle.cc>
18078 S:      Maintained
18079 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18080 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18081 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18082 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18083 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18084 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18085 F:      drivers/gpio/gpio-sl28cpld.c
18086 F:      drivers/hwmon/sl28cpld-hwmon.c
18087 F:      drivers/irqchip/irq-sl28cpld.c
18088 F:      drivers/pwm/pwm-sl28cpld.c
18089 F:      drivers/watchdog/sl28cpld_wdt.c
18090
18091 SLAB ALLOCATOR
18092 M:      Christoph Lameter <cl@linux.com>
18093 M:      Pekka Enberg <penberg@kernel.org>
18094 M:      David Rientjes <rientjes@google.com>
18095 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18096 M:      Andrew Morton <akpm@linux-foundation.org>
18097 M:      Vlastimil Babka <vbabka@suse.cz>
18098 R:      Roman Gushchin <roman.gushchin@linux.dev>
18099 L:      linux-mm@kvack.org
18100 S:      Maintained
18101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18102 F:      include/linux/sl?b*.h
18103 F:      mm/sl?b*
18104
18105 SLEEPABLE READ-COPY UPDATE (SRCU)
18106 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18107 M:      "Paul E. McKenney" <paulmck@kernel.org>
18108 M:      Josh Triplett <josh@joshtriplett.org>
18109 R:      Steven Rostedt <rostedt@goodmis.org>
18110 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18111 L:      rcu@vger.kernel.org
18112 S:      Supported
18113 W:      http://www.rdrop.com/users/paulmck/RCU/
18114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18115 F:      include/linux/srcu*.h
18116 F:      kernel/rcu/srcu*.c
18117
18118 SMACK SECURITY MODULE
18119 M:      Casey Schaufler <casey@schaufler-ca.com>
18120 L:      linux-security-module@vger.kernel.org
18121 S:      Maintained
18122 W:      http://schaufler-ca.com
18123 T:      git git://github.com/cschaufler/smack-next
18124 F:      Documentation/admin-guide/LSM/Smack.rst
18125 F:      security/smack/
18126
18127 SMC91x ETHERNET DRIVER
18128 M:      Nicolas Pitre <nico@fluxnic.net>
18129 S:      Odd Fixes
18130 F:      drivers/net/ethernet/smsc/smc91x.*
18131
18132 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18133 M:      Mark Rutland <mark.rutland@arm.com>
18134 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
18135 M:      Sudeep Holla <sudeep.holla@arm.com>
18136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18137 S:      Maintained
18138 F:      drivers/firmware/smccc/
18139 F:      include/linux/arm-smccc.h
18140
18141 SMM665 HARDWARE MONITOR DRIVER
18142 M:      Guenter Roeck <linux@roeck-us.net>
18143 L:      linux-hwmon@vger.kernel.org
18144 S:      Maintained
18145 F:      Documentation/hwmon/smm665.rst
18146 F:      drivers/hwmon/smm665.c
18147
18148 SMSC EMC2103 HARDWARE MONITOR DRIVER
18149 M:      Steve Glendinning <steve.glendinning@shawell.net>
18150 L:      linux-hwmon@vger.kernel.org
18151 S:      Maintained
18152 F:      Documentation/hwmon/emc2103.rst
18153 F:      drivers/hwmon/emc2103.c
18154
18155 SMSC SCH5627 HARDWARE MONITOR DRIVER
18156 M:      Hans de Goede <hdegoede@redhat.com>
18157 L:      linux-hwmon@vger.kernel.org
18158 S:      Supported
18159 F:      Documentation/hwmon/sch5627.rst
18160 F:      drivers/hwmon/sch5627.c
18161
18162 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18163 M:      Steve Glendinning <steve.glendinning@shawell.net>
18164 L:      linux-fbdev@vger.kernel.org
18165 S:      Maintained
18166 F:      drivers/video/fbdev/smscufx.c
18167
18168 SMSC47B397 HARDWARE MONITOR DRIVER
18169 M:      Jean Delvare <jdelvare@suse.com>
18170 L:      linux-hwmon@vger.kernel.org
18171 S:      Maintained
18172 F:      Documentation/hwmon/smsc47b397.rst
18173 F:      drivers/hwmon/smsc47b397.c
18174
18175 SMSC911x ETHERNET DRIVER
18176 M:      Steve Glendinning <steve.glendinning@shawell.net>
18177 L:      netdev@vger.kernel.org
18178 S:      Maintained
18179 F:      drivers/net/ethernet/smsc/smsc911x.*
18180 F:      include/linux/smsc911x.h
18181
18182 SMSC9420 PCI ETHERNET DRIVER
18183 M:      Steve Glendinning <steve.glendinning@shawell.net>
18184 L:      netdev@vger.kernel.org
18185 S:      Maintained
18186 F:      drivers/net/ethernet/smsc/smsc9420.*
18187
18188 SOCIONEXT (SNI) AVE NETWORK DRIVER
18189 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18190 L:      netdev@vger.kernel.org
18191 S:      Maintained
18192 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18193 F:      drivers/net/ethernet/socionext/sni_ave.c
18194
18195 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18196 M:      Jassi Brar <jaswinder.singh@linaro.org>
18197 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18198 L:      netdev@vger.kernel.org
18199 S:      Maintained
18200 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18201 F:      drivers/net/ethernet/socionext/netsec.c
18202
18203 SOCIONEXT (SNI) Synquacer SPI DRIVER
18204 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18205 M:      Jassi Brar <jaswinder.singh@linaro.org>
18206 L:      linux-spi@vger.kernel.org
18207 S:      Maintained
18208 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18209 F:      drivers/spi/spi-synquacer.c
18210
18211 SOCIONEXT SYNQUACER I2C DRIVER
18212 M:      Ard Biesheuvel <ardb@kernel.org>
18213 L:      linux-i2c@vger.kernel.org
18214 S:      Maintained
18215 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18216 F:      drivers/i2c/busses/i2c-synquacer.c
18217
18218 SOCIONEXT UNIPHIER SOUND DRIVER
18219 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18220 S:      Orphan
18221 F:      sound/soc/uniphier/
18222
18223 SOEKRIS NET48XX LED SUPPORT
18224 M:      Chris Boot <bootc@bootc.net>
18225 S:      Maintained
18226 F:      drivers/leds/leds-net48xx.c
18227
18228 SOFT-IWARP DRIVER (siw)
18229 M:      Bernard Metzler <bmt@zurich.ibm.com>
18230 L:      linux-rdma@vger.kernel.org
18231 S:      Supported
18232 F:      drivers/infiniband/sw/siw/
18233 F:      include/uapi/rdma/siw-abi.h
18234
18235 SOFT-ROCE DRIVER (rxe)
18236 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18237 L:      linux-rdma@vger.kernel.org
18238 S:      Supported
18239 F:      drivers/infiniband/sw/rxe/
18240 F:      include/uapi/rdma/rdma_user_rxe.h
18241
18242 SOFTLOGIC 6x10 MPEG CODEC
18243 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18244 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18245 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18246 M:      Ismael Luceno <ismael@iodev.co.uk>
18247 L:      linux-media@vger.kernel.org
18248 S:      Supported
18249 F:      drivers/media/pci/solo6x10/
18250
18251 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18252 M:      James Morse <james.morse@arm.com>
18253 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18254 S:      Maintained
18255 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18256 F:      drivers/firmware/arm_sdei.c
18257 F:      include/linux/arm_sdei.h
18258 F:      include/uapi/linux/arm_sdei.h
18259
18260 SOFTWARE NODES AND DEVICE PROPERTIES
18261 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18262 R:      Daniel Scally <djrscally@gmail.com>
18263 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18264 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18265 L:      linux-acpi@vger.kernel.org
18266 S:      Maintained
18267 F:      drivers/base/property.c
18268 F:      drivers/base/swnode.c
18269 F:      include/linux/fwnode.h
18270 F:      include/linux/property.h
18271
18272 SOFTWARE RAID (Multiple Disks) SUPPORT
18273 M:      Song Liu <song@kernel.org>
18274 L:      linux-raid@vger.kernel.org
18275 S:      Supported
18276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18277 F:      drivers/md/Kconfig
18278 F:      drivers/md/Makefile
18279 F:      drivers/md/md*
18280 F:      drivers/md/raid*
18281 F:      include/linux/raid/
18282 F:      include/uapi/linux/raid/
18283
18284 SOLIDRUN CLEARFOG SUPPORT
18285 M:      Russell King <linux@armlinux.org.uk>
18286 S:      Maintained
18287 F:      arch/arm/boot/dts/armada-388-clearfog*
18288 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18289
18290 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18291 M:      Russell King <linux@armlinux.org.uk>
18292 S:      Maintained
18293 F:      arch/arm/boot/dts/imx6*-cubox-i*
18294 F:      arch/arm/boot/dts/imx6*-hummingboard*
18295 F:      arch/arm/boot/dts/imx6*-sr-*
18296
18297 SONIC NETWORK DRIVER
18298 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18299 L:      netdev@vger.kernel.org
18300 S:      Maintained
18301 F:      drivers/net/ethernet/natsemi/sonic.*
18302
18303 SONICS SILICON BACKPLANE DRIVER (SSB)
18304 M:      Michael Buesch <m@bues.ch>
18305 L:      linux-wireless@vger.kernel.org
18306 S:      Maintained
18307 F:      drivers/ssb/
18308 F:      include/linux/ssb/
18309
18310 SONY IMX208 SENSOR DRIVER
18311 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18312 L:      linux-media@vger.kernel.org
18313 S:      Maintained
18314 T:      git git://linuxtv.org/media_tree.git
18315 F:      drivers/media/i2c/imx208.c
18316
18317 SONY IMX214 SENSOR DRIVER
18318 M:      Ricardo Ribalda <ribalda@kernel.org>
18319 L:      linux-media@vger.kernel.org
18320 S:      Maintained
18321 T:      git git://linuxtv.org/media_tree.git
18322 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18323 F:      drivers/media/i2c/imx214.c
18324
18325 SONY IMX219 SENSOR DRIVER
18326 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18327 L:      linux-media@vger.kernel.org
18328 S:      Maintained
18329 T:      git git://linuxtv.org/media_tree.git
18330 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18331 F:      drivers/media/i2c/imx219.c
18332
18333 SONY IMX258 SENSOR DRIVER
18334 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18335 L:      linux-media@vger.kernel.org
18336 S:      Maintained
18337 T:      git git://linuxtv.org/media_tree.git
18338 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18339 F:      drivers/media/i2c/imx258.c
18340
18341 SONY IMX274 SENSOR DRIVER
18342 M:      Leon Luo <leonl@leopardimaging.com>
18343 L:      linux-media@vger.kernel.org
18344 S:      Maintained
18345 T:      git git://linuxtv.org/media_tree.git
18346 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18347 F:      drivers/media/i2c/imx274.c
18348
18349 SONY IMX290 SENSOR DRIVER
18350 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18351 L:      linux-media@vger.kernel.org
18352 S:      Maintained
18353 T:      git git://linuxtv.org/media_tree.git
18354 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18355 F:      drivers/media/i2c/imx290.c
18356
18357 SONY IMX319 SENSOR DRIVER
18358 M:      Bingbu Cao <bingbu.cao@intel.com>
18359 L:      linux-media@vger.kernel.org
18360 S:      Maintained
18361 T:      git git://linuxtv.org/media_tree.git
18362 F:      drivers/media/i2c/imx319.c
18363
18364 SONY IMX334 SENSOR DRIVER
18365 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18366 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18367 L:      linux-media@vger.kernel.org
18368 S:      Maintained
18369 T:      git git://linuxtv.org/media_tree.git
18370 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18371 F:      drivers/media/i2c/imx334.c
18372
18373 SONY IMX335 SENSOR DRIVER
18374 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18375 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18376 L:      linux-media@vger.kernel.org
18377 S:      Maintained
18378 T:      git git://linuxtv.org/media_tree.git
18379 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18380 F:      drivers/media/i2c/imx335.c
18381
18382 SONY IMX355 SENSOR DRIVER
18383 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18384 L:      linux-media@vger.kernel.org
18385 S:      Maintained
18386 T:      git git://linuxtv.org/media_tree.git
18387 F:      drivers/media/i2c/imx355.c
18388
18389 SONY IMX412 SENSOR DRIVER
18390 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18391 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18392 L:      linux-media@vger.kernel.org
18393 S:      Maintained
18394 T:      git git://linuxtv.org/media_tree.git
18395 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18396 F:      drivers/media/i2c/imx412.c
18397
18398 SONY MEMORYSTICK SUBSYSTEM
18399 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18400 M:      Alex Dubov <oakad@yahoo.com>
18401 M:      Ulf Hansson <ulf.hansson@linaro.org>
18402 L:      linux-mmc@vger.kernel.org
18403 S:      Maintained
18404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18405 F:      drivers/memstick/
18406 F:      include/linux/memstick.h
18407
18408 SONY VAIO CONTROL DEVICE DRIVER
18409 M:      Mattia Dongili <malattia@linux.it>
18410 L:      platform-driver-x86@vger.kernel.org
18411 S:      Maintained
18412 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18413 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18414 F:      drivers/char/sonypi.c
18415 F:      drivers/platform/x86/sony-laptop.c
18416 F:      include/linux/sony-laptop.h
18417
18418 SOUND
18419 M:      Jaroslav Kysela <perex@perex.cz>
18420 M:      Takashi Iwai <tiwai@suse.com>
18421 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18422 S:      Maintained
18423 W:      http://www.alsa-project.org/
18424 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18426 F:      Documentation/sound/
18427 F:      include/sound/
18428 F:      include/uapi/sound/
18429 F:      sound/
18430 F:      tools/testing/selftests/alsa
18431
18432 SOUND - COMPRESSED AUDIO
18433 M:      Vinod Koul <vkoul@kernel.org>
18434 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18435 S:      Supported
18436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18437 F:      Documentation/sound/designs/compress-offload.rst
18438 F:      include/sound/compress_driver.h
18439 F:      include/uapi/sound/compress_*
18440 F:      sound/core/compress_offload.c
18441 F:      sound/soc/soc-compress.c
18442
18443 SOUND - DMAENGINE HELPERS
18444 M:      Lars-Peter Clausen <lars@metafoo.de>
18445 S:      Supported
18446 F:      include/sound/dmaengine_pcm.h
18447 F:      sound/core/pcm_dmaengine.c
18448 F:      sound/soc/soc-generic-dmaengine-pcm.c
18449
18450 SOUND - ALSA SELFTESTS
18451 M:      Mark Brown <broonie@kernel.org>
18452 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18453 L:      linux-kselftest@vger.kernel.org
18454 S:      Supported
18455 F:      tools/testing/selftests/alsa
18456
18457 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18458 M:      Liam Girdwood <lgirdwood@gmail.com>
18459 M:      Mark Brown <broonie@kernel.org>
18460 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18461 S:      Supported
18462 W:      http://alsa-project.org/main/index.php/ASoC
18463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18464 F:      Documentation/devicetree/bindings/sound/
18465 F:      Documentation/sound/soc/
18466 F:      include/dt-bindings/sound/
18467 F:      include/sound/soc*
18468 F:      sound/soc/
18469
18470 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18471 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18472 M:      Liam Girdwood <lgirdwood@gmail.com>
18473 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18474 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18475 M:      Daniel Baluta <daniel.baluta@nxp.com>
18476 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18477 S:      Supported
18478 W:      https://github.com/thesofproject/linux/
18479 F:      sound/soc/sof/
18480
18481 SOUNDWIRE SUBSYSTEM
18482 M:      Vinod Koul <vkoul@kernel.org>
18483 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18484 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18485 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18486 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18487 S:      Supported
18488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18489 F:      Documentation/driver-api/soundwire/
18490 F:      drivers/soundwire/
18491 F:      include/linux/soundwire/
18492
18493 SP2 MEDIA DRIVER
18494 M:      Olli Salonen <olli.salonen@iki.fi>
18495 L:      linux-media@vger.kernel.org
18496 S:      Maintained
18497 W:      https://linuxtv.org
18498 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18499 F:      drivers/media/dvb-frontends/sp2*
18500
18501 SPARC + UltraSPARC (sparc/sparc64)
18502 M:      "David S. Miller" <davem@davemloft.net>
18503 L:      sparclinux@vger.kernel.org
18504 S:      Maintained
18505 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18508 F:      arch/sparc/
18509 F:      drivers/sbus/
18510
18511 SPARC SERIAL DRIVERS
18512 M:      "David S. Miller" <davem@davemloft.net>
18513 L:      sparclinux@vger.kernel.org
18514 S:      Maintained
18515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18517 F:      drivers/tty/serial/suncore.c
18518 F:      drivers/tty/serial/sunhv.c
18519 F:      drivers/tty/serial/sunsab.c
18520 F:      drivers/tty/serial/sunsab.h
18521 F:      drivers/tty/serial/sunsu.c
18522 F:      drivers/tty/serial/sunzilog.c
18523 F:      drivers/tty/serial/sunzilog.h
18524 F:      drivers/tty/vcc.c
18525 F:      include/linux/sunserialcore.h
18526
18527 SPARSE CHECKER
18528 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18529 L:      linux-sparse@vger.kernel.org
18530 S:      Maintained
18531 W:      https://sparse.docs.kernel.org/
18532 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18533 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18534 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18535 F:      include/linux/compiler.h
18536
18537 SPEAKUP CONSOLE SPEECH DRIVER
18538 M:      William Hubbs <w.d.hubbs@gmail.com>
18539 M:      Chris Brannon <chris@the-brannons.com>
18540 M:      Kirk Reiser <kirk@reisers.ca>
18541 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18542 L:      speakup@linux-speakup.org
18543 S:      Odd Fixes
18544 W:      http://www.linux-speakup.org/
18545 W:      https://github.com/linux-speakup/speakup
18546 B:      https://github.com/linux-speakup/speakup/issues
18547 F:      drivers/accessibility/speakup/
18548
18549 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18550 M:      Viresh Kumar <vireshk@kernel.org>
18551 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18552 M:      soc@kernel.org
18553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18554 S:      Maintained
18555 W:      http://www.st.com/spear
18556 F:      arch/arm/boot/dts/spear*
18557 F:      arch/arm/mach-spear/
18558 F:      drivers/clk/spear/
18559 F:      drivers/pinctrl/spear/
18560
18561 SPI NOR SUBSYSTEM
18562 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18563 M:      Pratyush Yadav <p.yadav@ti.com>
18564 R:      Michael Walle <michael@walle.cc>
18565 L:      linux-mtd@lists.infradead.org
18566 S:      Maintained
18567 W:      http://www.linux-mtd.infradead.org/
18568 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18569 C:      irc://irc.oftc.net/mtd
18570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18571 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18572 F:      drivers/mtd/spi-nor/
18573 F:      include/linux/mtd/spi-nor.h
18574
18575 SPI SUBSYSTEM
18576 M:      Mark Brown <broonie@kernel.org>
18577 L:      linux-spi@vger.kernel.org
18578 S:      Maintained
18579 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18581 F:      Documentation/devicetree/bindings/spi/
18582 F:      Documentation/spi/
18583 F:      drivers/spi/
18584 F:      include/linux/spi/
18585 F:      include/uapi/linux/spi/
18586 F:      tools/spi/
18587
18588 SPIDERNET NETWORK DRIVER for CELL
18589 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18590 M:      Geoff Levand <geoff@infradead.org>
18591 L:      netdev@vger.kernel.org
18592 L:      linuxppc-dev@lists.ozlabs.org
18593 S:      Maintained
18594 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18595 F:      drivers/net/ethernet/toshiba/spider_net*
18596
18597 SPMI SUBSYSTEM
18598 M:      Stephen Boyd <sboyd@kernel.org>
18599 L:      linux-kernel@vger.kernel.org
18600 S:      Maintained
18601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18602 F:      Documentation/devicetree/bindings/spmi/
18603 F:      drivers/spmi/
18604 F:      include/dt-bindings/spmi/spmi.h
18605 F:      include/linux/spmi.h
18606 F:      include/trace/events/spmi.h
18607
18608 SPU FILE SYSTEM
18609 M:      Jeremy Kerr <jk@ozlabs.org>
18610 L:      linuxppc-dev@lists.ozlabs.org
18611 S:      Supported
18612 W:      http://www.ibm.com/developerworks/power/cell/
18613 F:      Documentation/filesystems/spufs/spufs.rst
18614 F:      arch/powerpc/platforms/cell/spufs/
18615
18616 SQUASHFS FILE SYSTEM
18617 M:      Phillip Lougher <phillip@squashfs.org.uk>
18618 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18619 S:      Maintained
18620 W:      http://squashfs.org.uk
18621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18622 F:      Documentation/filesystems/squashfs.rst
18623 F:      fs/squashfs/
18624
18625 SRM (Alpha) environment access
18626 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18627 S:      Maintained
18628 F:      arch/alpha/kernel/srm_env.c
18629
18630 ST LSM6DSx IMU IIO DRIVER
18631 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
18632 L:      linux-iio@vger.kernel.org
18633 S:      Maintained
18634 W:      http://www.st.com/
18635 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18636 F:      drivers/iio/imu/st_lsm6dsx/
18637
18638 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18639 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
18640 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
18641 L:      linux-media@vger.kernel.org
18642 S:      Maintained
18643 T:      git git://linuxtv.org/media_tree.git
18644 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18645 F:      drivers/media/i2c/st-mipid02.c
18646
18647 ST STM32 I2C/SMBUS DRIVER
18648 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18649 M:      Alain Volmat <alain.volmat@foss.st.com>
18650 L:      linux-i2c@vger.kernel.org
18651 S:      Maintained
18652 F:      drivers/i2c/busses/i2c-stm32*
18653
18654 ST STM32 SPI DRIVER
18655 M:      Alain Volmat <alain.volmat@foss.st.com>
18656 L:      linux-spi@vger.kernel.org
18657 S:      Maintained
18658 F:      drivers/spi/spi-stm32.c
18659
18660 ST STPDDC60 DRIVER
18661 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18662 L:      linux-hwmon@vger.kernel.org
18663 S:      Maintained
18664 F:      Documentation/hwmon/stpddc60.rst
18665 F:      drivers/hwmon/pmbus/stpddc60.c
18666
18667 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18668 M:      Song Qiang <songqiang1304521@gmail.com>
18669 L:      linux-iio@vger.kernel.org
18670 S:      Maintained
18671 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18672 F:      drivers/iio/proximity/vl53l0x-i2c.c
18673
18674 STABLE BRANCH
18675 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18676 M:      Sasha Levin <sashal@kernel.org>
18677 L:      stable@vger.kernel.org
18678 S:      Supported
18679 F:      Documentation/process/stable-kernel-rules.rst
18680
18681 STAGING - ATOMISP DRIVER
18682 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18683 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18684 L:      linux-media@vger.kernel.org
18685 S:      Maintained
18686 F:      drivers/staging/media/atomisp/
18687
18688 STAGING - FIELDBUS SUBSYSTEM
18689 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18690 S:      Maintained
18691 F:      drivers/staging/fieldbus/*
18692 F:      drivers/staging/fieldbus/Documentation/
18693
18694 STAGING - HMS ANYBUS-S BUS
18695 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18696 S:      Maintained
18697 F:      drivers/staging/fieldbus/anybuss/
18698
18699 STAGING - INDUSTRIAL IO
18700 M:      Jonathan Cameron <jic23@kernel.org>
18701 L:      linux-iio@vger.kernel.org
18702 S:      Odd Fixes
18703 F:      Documentation/devicetree/bindings/staging/iio/
18704 F:      drivers/staging/iio/
18705
18706 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18707 M:      Marc Dietrich <marvin24@gmx.de>
18708 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18709 L:      linux-tegra@vger.kernel.org
18710 S:      Maintained
18711 F:      drivers/staging/nvec/
18712
18713 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18714 M:      Jens Frederich <jfrederich@gmail.com>
18715 M:      Jon Nettleton <jon.nettleton@gmail.com>
18716 S:      Maintained
18717 W:      http://wiki.laptop.org/go/DCON
18718 F:      drivers/staging/olpc_dcon/
18719
18720 STAGING - REALTEK RTL8188EU DRIVERS
18721 M:      Larry Finger <Larry.Finger@lwfinger.net>
18722 M:      Phillip Potter <phil@philpotter.co.uk>
18723 S:      Supported
18724 F:      drivers/staging/r8188eu/
18725
18726 STAGING - REALTEK RTL8712U DRIVERS
18727 M:      Larry Finger <Larry.Finger@lwfinger.net>
18728 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18729 S:      Odd Fixes
18730 F:      drivers/staging/rtl8712/
18731
18732 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18733 M:      Michael Hennerich <michael.hennerich@analog.com>
18734 L:      linux-fbdev@vger.kernel.org
18735 S:      Supported
18736 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18737 F:      drivers/staging/fbtft/fb_seps525.c
18738
18739 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18740 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18741 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18742 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18743 L:      linux-fbdev@vger.kernel.org
18744 S:      Maintained
18745 F:      drivers/staging/sm750fb/
18746
18747 STAGING - VIA VT665X DRIVERS
18748 M:      Forest Bond <forest@alittletooquiet.net>
18749 S:      Odd Fixes
18750 F:      drivers/staging/vt665?/
18751
18752 STAGING SUBSYSTEM
18753 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18754 L:      linux-staging@lists.linux.dev
18755 S:      Supported
18756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18757 F:      drivers/staging/
18758
18759 STARFIRE/DURALAN NETWORK DRIVER
18760 M:      Ion Badulescu <ionut@badula.org>
18761 S:      Odd Fixes
18762 F:      drivers/net/ethernet/adaptec/starfire*
18763
18764 STARFIVE JH7100 CLOCK DRIVERS
18765 M:      Emil Renner Berthing <kernel@esmil.dk>
18766 S:      Maintained
18767 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
18768 F:      drivers/clk/starfive/clk-starfive-jh7100*
18769 F:      include/dt-bindings/clock/starfive-jh7100*.h
18770
18771 STARFIVE JH7100 PINCTRL DRIVER
18772 M:      Emil Renner Berthing <kernel@esmil.dk>
18773 L:      linux-gpio@vger.kernel.org
18774 S:      Maintained
18775 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18776 F:      drivers/pinctrl/pinctrl-starfive.c
18777 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18778
18779 STARFIVE JH7100 RESET CONTROLLER DRIVER
18780 M:      Emil Renner Berthing <kernel@esmil.dk>
18781 S:      Maintained
18782 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18783 F:      drivers/reset/reset-starfive-jh7100.c
18784 F:      include/dt-bindings/reset/starfive-jh7100.h
18785
18786 STATIC BRANCH/CALL
18787 M:      Peter Zijlstra <peterz@infradead.org>
18788 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18789 M:      Jason Baron <jbaron@akamai.com>
18790 R:      Steven Rostedt <rostedt@goodmis.org>
18791 R:      Ard Biesheuvel <ardb@kernel.org>
18792 S:      Supported
18793 F:      arch/*/include/asm/jump_label*.h
18794 F:      arch/*/include/asm/static_call*.h
18795 F:      arch/*/kernel/jump_label.c
18796 F:      arch/*/kernel/static_call.c
18797 F:      include/linux/jump_label*.h
18798 F:      include/linux/static_call*.h
18799 F:      kernel/jump_label.c
18800 F:      kernel/static_call.c
18801
18802 STI AUDIO (ASoC) DRIVERS
18803 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18804 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18805 S:      Maintained
18806 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18807 F:      sound/soc/sti/
18808
18809 STI CEC DRIVER
18810 M:      Alain Volmat <alain.volmat@foss.st.com>
18811 S:      Maintained
18812 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18813 F:      drivers/media/cec/platform/sti/
18814
18815 STK1160 USB VIDEO CAPTURE DRIVER
18816 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18817 L:      linux-media@vger.kernel.org
18818 S:      Maintained
18819 T:      git git://linuxtv.org/media_tree.git
18820 F:      drivers/media/usb/stk1160/
18821
18822 STM32 AUDIO (ASoC) DRIVERS
18823 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18824 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18825 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18826 S:      Maintained
18827 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18828 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18829 F:      sound/soc/stm/
18830
18831 STM32 TIMER/LPTIMER DRIVERS
18832 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18833 S:      Maintained
18834 F:      Documentation/ABI/testing/*timer-stm32
18835 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18836 F:      drivers/*/stm32-*timer*
18837 F:      drivers/pwm/pwm-stm32*
18838 F:      include/linux/*/stm32-*tim*
18839
18840 STMMAC ETHERNET DRIVER
18841 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18842 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18843 M:      Jose Abreu <joabreu@synopsys.com>
18844 L:      netdev@vger.kernel.org
18845 S:      Supported
18846 W:      http://www.stlinux.com
18847 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18848 F:      drivers/net/ethernet/stmicro/stmmac/
18849
18850 SUN3/3X
18851 M:      Sam Creasey <sammy@sammy.net>
18852 S:      Maintained
18853 W:      http://sammy.net/sun3/
18854 F:      arch/m68k/include/asm/sun3*
18855 F:      arch/m68k/kernel/*sun3*
18856 F:      arch/m68k/sun3*/
18857 F:      drivers/net/ethernet/i825xx/sun3*
18858
18859 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18860 M:      Hans de Goede <hdegoede@redhat.com>
18861 L:      linux-input@vger.kernel.org
18862 S:      Maintained
18863 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18864 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18865
18866 SUNDANCE NETWORK DRIVER
18867 M:      Denis Kirjanov <kda@linux-powerpc.org>
18868 L:      netdev@vger.kernel.org
18869 S:      Maintained
18870 F:      drivers/net/ethernet/dlink/sundance.c
18871
18872 SUNPLUS OCOTP DRIVER
18873 M:      Vincent Shih <vincent.sunplus@gmail.com>
18874 S:      Maintained
18875 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
18876 F:      drivers/nvmem/sunplus-ocotp.c
18877
18878 SUNPLUS RTC DRIVER
18879 M:      Vincent Shih <vincent.sunplus@gmail.com>
18880 L:      linux-rtc@vger.kernel.org
18881 S:      Maintained
18882 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
18883 F:      drivers/rtc/rtc-sunplus.c
18884
18885 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
18886 M:      Li-hao Kuo <lhjeff911@gmail.com>
18887 L:      linux-spi@vger.kernel.org
18888 S:      Maintained
18889 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
18890 F:      drivers/spi/spi-sunplus-sp7021.c
18891
18892 SUNPLUS UART DRIVER
18893 M:      Hammer Hsieh <hammerh0314@gmail.com>
18894 S:      Maintained
18895 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
18896 F:      drivers/tty/serial/sunplus-uart.c
18897
18898 SUPERH
18899 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18900 M:      Rich Felker <dalias@libc.org>
18901 L:      linux-sh@vger.kernel.org
18902 S:      Maintained
18903 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18904 F:      Documentation/sh/
18905 F:      arch/sh/
18906 F:      drivers/sh/
18907
18908 SUSPEND TO RAM
18909 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18910 M:      Len Brown <len.brown@intel.com>
18911 M:      Pavel Machek <pavel@ucw.cz>
18912 L:      linux-pm@vger.kernel.org
18913 S:      Supported
18914 B:      https://bugzilla.kernel.org
18915 F:      Documentation/power/
18916 F:      arch/x86/kernel/acpi/
18917 F:      drivers/base/power/
18918 F:      include/linux/freezer.h
18919 F:      include/linux/pm.h
18920 F:      include/linux/suspend.h
18921 F:      kernel/power/
18922
18923 SVGA HANDLING
18924 M:      Martin Mares <mj@ucw.cz>
18925 L:      linux-video@atrey.karlin.mff.cuni.cz
18926 S:      Maintained
18927 F:      Documentation/admin-guide/svga.rst
18928 F:      arch/x86/boot/video*
18929
18930 SWIOTLB SUBSYSTEM
18931 M:      Christoph Hellwig <hch@infradead.org>
18932 L:      iommu@lists.linux-foundation.org
18933 S:      Supported
18934 W:      http://git.infradead.org/users/hch/dma-mapping.git
18935 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18936 F:      arch/*/kernel/pci-swiotlb.c
18937 F:      include/linux/swiotlb.h
18938 F:      kernel/dma/swiotlb.c
18939
18940 SWITCHDEV
18941 M:      Jiri Pirko <jiri@resnulli.us>
18942 M:      Ivan Vecera <ivecera@redhat.com>
18943 L:      netdev@vger.kernel.org
18944 S:      Supported
18945 F:      include/net/switchdev.h
18946 F:      net/switchdev/
18947
18948 SY8106A REGULATOR DRIVER
18949 M:      Icenowy Zheng <icenowy@aosc.io>
18950 S:      Maintained
18951 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18952 F:      drivers/regulator/sy8106a-regulator.c
18953
18954 SYNC FILE FRAMEWORK
18955 M:      Sumit Semwal <sumit.semwal@linaro.org>
18956 R:      Gustavo Padovan <gustavo@padovan.org>
18957 L:      linux-media@vger.kernel.org
18958 L:      dri-devel@lists.freedesktop.org
18959 S:      Maintained
18960 T:      git git://anongit.freedesktop.org/drm/drm-misc
18961 F:      Documentation/driver-api/sync_file.rst
18962 F:      drivers/dma-buf/dma-fence*
18963 F:      drivers/dma-buf/sw_sync.c
18964 F:      drivers/dma-buf/sync_*
18965 F:      include/linux/sync_file.h
18966 F:      include/uapi/linux/sync_file.h
18967
18968 SYNOPSYS ARC ARCHITECTURE
18969 M:      Vineet Gupta <vgupta@kernel.org>
18970 L:      linux-snps-arc@lists.infradead.org
18971 S:      Supported
18972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18973 F:      Documentation/arc/
18974 F:      Documentation/devicetree/bindings/arc/*
18975 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18976 F:      arch/arc/
18977 F:      drivers/clocksource/arc_timer.c
18978 F:      drivers/tty/serial/arc_uart.c
18979
18980 SYNOPSYS ARC HSDK SDP pll clock driver
18981 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18982 S:      Supported
18983 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18984 F:      drivers/clk/clk-hsdk-pll.c
18985
18986 SYNOPSYS ARC SDP clock driver
18987 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18988 S:      Supported
18989 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18990 F:      drivers/clk/axs10x/*
18991
18992 SYNOPSYS ARC SDP platform support
18993 M:      Alexey Brodkin <abrodkin@synopsys.com>
18994 S:      Supported
18995 F:      Documentation/devicetree/bindings/arc/axs10*
18996 F:      arch/arc/boot/dts/ax*
18997 F:      arch/arc/plat-axs10x
18998
18999 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19000 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19001 S:      Supported
19002 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
19003 F:      drivers/reset/reset-axs10x.c
19004
19005 SYNOPSYS CREG GPIO DRIVER
19006 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19007 S:      Maintained
19008 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19009 F:      drivers/gpio/gpio-creg-snps.c
19010
19011 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19012 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19013 S:      Maintained
19014 F:      drivers/tty/serial/8250/8250_dw.c
19015 F:      drivers/tty/serial/8250/8250_dwlib.*
19016 F:      drivers/tty/serial/8250/8250_lpss.c
19017
19018 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19019 M:      Hoan Tran <hoan@os.amperecomputing.com>
19020 M:      Serge Semin <fancer.lancer@gmail.com>
19021 L:      linux-gpio@vger.kernel.org
19022 S:      Maintained
19023 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19024 F:      drivers/gpio/gpio-dwapb.c
19025
19026 SYNOPSYS DESIGNWARE APB SSI DRIVER
19027 M:      Serge Semin <fancer.lancer@gmail.com>
19028 L:      linux-spi@vger.kernel.org
19029 S:      Supported
19030 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19031 F:      drivers/spi/spi-dw*
19032
19033 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19034 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19035 S:      Maintained
19036 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19037 F:      drivers/dma/dw-axi-dmac/
19038
19039 SYNOPSYS DESIGNWARE DMAC DRIVER
19040 M:      Viresh Kumar <vireshk@kernel.org>
19041 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19042 S:      Maintained
19043 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19044 F:      drivers/dma/dw/
19045 F:      include/dt-bindings/dma/dw-dmac.h
19046 F:      include/linux/dma/dw.h
19047 F:      include/linux/platform_data/dma-dw.h
19048
19049 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19050 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19051 L:      netdev@vger.kernel.org
19052 S:      Supported
19053 F:      drivers/net/ethernet/synopsys/
19054
19055 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19056 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19057 L:      netdev@vger.kernel.org
19058 S:      Supported
19059 F:      drivers/net/pcs/pcs-xpcs.c
19060 F:      drivers/net/pcs/pcs-xpcs.h
19061 F:      include/linux/pcs/pcs-xpcs.h
19062
19063 SYNOPSYS DESIGNWARE I2C DRIVER
19064 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19065 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19066 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19067 R:      Jan Dabros <jsd@semihalf.com>
19068 L:      linux-i2c@vger.kernel.org
19069 S:      Maintained
19070 F:      drivers/i2c/busses/i2c-designware-*
19071
19072 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19073 M:      Jaehoon Chung <jh80.chung@samsung.com>
19074 L:      linux-mmc@vger.kernel.org
19075 S:      Maintained
19076 F:      drivers/mmc/host/dw_mmc*
19077
19078 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19079 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19080 S:      Supported
19081 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19082 F:      drivers/reset/reset-hsdk.c
19083 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19084
19085 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19086 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19087 M:      Manjunath M B <manjumb@synopsys.com>
19088 L:      linux-mmc@vger.kernel.org
19089 S:      Maintained
19090 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19091
19092 SYSTEM CONFIGURATION (SYSCON)
19093 M:      Lee Jones <lee.jones@linaro.org>
19094 M:      Arnd Bergmann <arnd@arndb.de>
19095 S:      Supported
19096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19097 F:      drivers/mfd/syscon.c
19098
19099 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19100 M:      Sudeep Holla <sudeep.holla@arm.com>
19101 R:      Cristian Marussi <cristian.marussi@arm.com>
19102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19103 S:      Maintained
19104 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19105 F:      drivers/clk/clk-sc[mp]i.c
19106 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19107 F:      drivers/firmware/arm_scmi/
19108 F:      drivers/firmware/arm_scpi.c
19109 F:      drivers/regulator/scmi-regulator.c
19110 F:      drivers/reset/reset-scmi.c
19111 F:      include/linux/sc[mp]i_protocol.h
19112 F:      include/trace/events/scmi.h
19113 F:      include/uapi/linux/virtio_scmi.h
19114
19115 SYSTEM RESET/SHUTDOWN DRIVERS
19116 M:      Sebastian Reichel <sre@kernel.org>
19117 L:      linux-pm@vger.kernel.org
19118 S:      Maintained
19119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19120 F:      Documentation/devicetree/bindings/power/reset/
19121 F:      drivers/power/reset/
19122
19123 SYSTEM TRACE MODULE CLASS
19124 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19125 S:      Maintained
19126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19127 F:      Documentation/trace/stm.rst
19128 F:      drivers/hwtracing/stm/
19129 F:      include/linux/stm.h
19130 F:      include/uapi/linux/stm.h
19131
19132 SYSTEM76 ACPI DRIVER
19133 M:      Jeremy Soller <jeremy@system76.com>
19134 M:      System76 Product Development <productdev@system76.com>
19135 L:      platform-driver-x86@vger.kernel.org
19136 S:      Maintained
19137 F:      drivers/platform/x86/system76_acpi.c
19138
19139 SYSV FILESYSTEM
19140 M:      Christoph Hellwig <hch@infradead.org>
19141 S:      Maintained
19142 F:      Documentation/filesystems/sysv-fs.rst
19143 F:      fs/sysv/
19144 F:      include/linux/sysv_fs.h
19145
19146 TASKSTATS STATISTICS INTERFACE
19147 M:      Balbir Singh <bsingharora@gmail.com>
19148 S:      Maintained
19149 F:      Documentation/accounting/taskstats*
19150 F:      include/linux/taskstats*
19151 F:      kernel/taskstats.c
19152
19153 TC subsystem
19154 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19155 M:      Cong Wang <xiyou.wangcong@gmail.com>
19156 M:      Jiri Pirko <jiri@resnulli.us>
19157 L:      netdev@vger.kernel.org
19158 S:      Maintained
19159 F:      include/net/pkt_cls.h
19160 F:      include/net/pkt_sched.h
19161 F:      include/net/tc_act/
19162 F:      include/uapi/linux/pkt_cls.h
19163 F:      include/uapi/linux/pkt_sched.h
19164 F:      include/uapi/linux/tc_act/
19165 F:      include/uapi/linux/tc_ematch/
19166 F:      net/sched/
19167 F:      tools/testing/selftests/tc-testing
19168
19169 TC90522 MEDIA DRIVER
19170 M:      Akihiro Tsukada <tskd08@gmail.com>
19171 L:      linux-media@vger.kernel.org
19172 S:      Odd Fixes
19173 F:      drivers/media/dvb-frontends/tc90522*
19174
19175 TCP LOW PRIORITY MODULE
19176 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19177 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19178 S:      Maintained
19179 W:      http://tcp-lp-mod.sourceforge.net/
19180 F:      net/ipv4/tcp_lp.c
19181
19182 TDA10071 MEDIA DRIVER
19183 M:      Antti Palosaari <crope@iki.fi>
19184 L:      linux-media@vger.kernel.org
19185 S:      Maintained
19186 W:      https://linuxtv.org
19187 W:      http://palosaari.fi/linux/
19188 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19189 T:      git git://linuxtv.org/anttip/media_tree.git
19190 F:      drivers/media/dvb-frontends/tda10071*
19191
19192 TDA18212 MEDIA DRIVER
19193 M:      Antti Palosaari <crope@iki.fi>
19194 L:      linux-media@vger.kernel.org
19195 S:      Maintained
19196 W:      https://linuxtv.org
19197 W:      http://palosaari.fi/linux/
19198 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19199 T:      git git://linuxtv.org/anttip/media_tree.git
19200 F:      drivers/media/tuners/tda18212*
19201
19202 TDA18218 MEDIA DRIVER
19203 M:      Antti Palosaari <crope@iki.fi>
19204 L:      linux-media@vger.kernel.org
19205 S:      Maintained
19206 W:      https://linuxtv.org
19207 W:      http://palosaari.fi/linux/
19208 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19209 T:      git git://linuxtv.org/anttip/media_tree.git
19210 F:      drivers/media/tuners/tda18218*
19211
19212 TDA18250 MEDIA DRIVER
19213 M:      Olli Salonen <olli.salonen@iki.fi>
19214 L:      linux-media@vger.kernel.org
19215 S:      Maintained
19216 W:      https://linuxtv.org
19217 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19218 T:      git git://linuxtv.org/media_tree.git
19219 F:      drivers/media/tuners/tda18250*
19220
19221 TDA18271 MEDIA DRIVER
19222 M:      Michael Krufky <mkrufky@linuxtv.org>
19223 L:      linux-media@vger.kernel.org
19224 S:      Maintained
19225 W:      https://linuxtv.org
19226 W:      http://github.com/mkrufky
19227 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19228 T:      git git://linuxtv.org/mkrufky/tuners.git
19229 F:      drivers/media/tuners/tda18271*
19230
19231 TDA1997x MEDIA DRIVER
19232 M:      Tim Harvey <tharvey@gateworks.com>
19233 L:      linux-media@vger.kernel.org
19234 S:      Maintained
19235 W:      https://linuxtv.org
19236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19237 F:      drivers/media/i2c/tda1997x.*
19238
19239 TDA827x MEDIA DRIVER
19240 M:      Michael Krufky <mkrufky@linuxtv.org>
19241 L:      linux-media@vger.kernel.org
19242 S:      Maintained
19243 W:      https://linuxtv.org
19244 W:      http://github.com/mkrufky
19245 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19246 T:      git git://linuxtv.org/mkrufky/tuners.git
19247 F:      drivers/media/tuners/tda8290.*
19248
19249 TDA8290 MEDIA DRIVER
19250 M:      Michael Krufky <mkrufky@linuxtv.org>
19251 L:      linux-media@vger.kernel.org
19252 S:      Maintained
19253 W:      https://linuxtv.org
19254 W:      http://github.com/mkrufky
19255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19256 T:      git git://linuxtv.org/mkrufky/tuners.git
19257 F:      drivers/media/tuners/tda8290.*
19258
19259 TDA9840 MEDIA DRIVER
19260 M:      Hans Verkuil <hverkuil@xs4all.nl>
19261 L:      linux-media@vger.kernel.org
19262 S:      Maintained
19263 W:      https://linuxtv.org
19264 T:      git git://linuxtv.org/media_tree.git
19265 F:      drivers/media/i2c/tda9840*
19266
19267 TEA5761 TUNER DRIVER
19268 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19269 L:      linux-media@vger.kernel.org
19270 S:      Odd fixes
19271 W:      https://linuxtv.org
19272 T:      git git://linuxtv.org/media_tree.git
19273 F:      drivers/media/tuners/tea5761.*
19274
19275 TEA5767 TUNER DRIVER
19276 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19277 L:      linux-media@vger.kernel.org
19278 S:      Maintained
19279 W:      https://linuxtv.org
19280 T:      git git://linuxtv.org/media_tree.git
19281 F:      drivers/media/tuners/tea5767.*
19282
19283 TEA6415C MEDIA DRIVER
19284 M:      Hans Verkuil <hverkuil@xs4all.nl>
19285 L:      linux-media@vger.kernel.org
19286 S:      Maintained
19287 W:      https://linuxtv.org
19288 T:      git git://linuxtv.org/media_tree.git
19289 F:      drivers/media/i2c/tea6415c*
19290
19291 TEA6420 MEDIA DRIVER
19292 M:      Hans Verkuil <hverkuil@xs4all.nl>
19293 L:      linux-media@vger.kernel.org
19294 S:      Maintained
19295 W:      https://linuxtv.org
19296 T:      git git://linuxtv.org/media_tree.git
19297 F:      drivers/media/i2c/tea6420*
19298
19299 TEAM DRIVER
19300 M:      Jiri Pirko <jiri@resnulli.us>
19301 L:      netdev@vger.kernel.org
19302 S:      Supported
19303 F:      drivers/net/team/
19304 F:      include/linux/if_team.h
19305 F:      include/uapi/linux/if_team.h
19306
19307 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19308 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19309 S:      Maintained
19310 F:      arch/x86/platform/ts5500/
19311
19312 TECHNOTREND USB IR RECEIVER
19313 M:      Sean Young <sean@mess.org>
19314 L:      linux-media@vger.kernel.org
19315 S:      Maintained
19316 F:      drivers/media/rc/ttusbir.c
19317
19318 TECHWELL TW9910 VIDEO DECODER
19319 L:      linux-media@vger.kernel.org
19320 S:      Orphan
19321 F:      drivers/media/i2c/tw9910.c
19322 F:      include/media/i2c/tw9910.h
19323
19324 TEE SUBSYSTEM
19325 M:      Jens Wiklander <jens.wiklander@linaro.org>
19326 R:      Sumit Garg <sumit.garg@linaro.org>
19327 L:      op-tee@lists.trustedfirmware.org
19328 S:      Maintained
19329 F:      Documentation/staging/tee.rst
19330 F:      drivers/tee/
19331 F:      include/linux/tee_drv.h
19332 F:      include/uapi/linux/tee.h
19333
19334 TEGRA ARCHITECTURE SUPPORT
19335 M:      Thierry Reding <thierry.reding@gmail.com>
19336 M:      Jonathan Hunter <jonathanh@nvidia.com>
19337 L:      linux-tegra@vger.kernel.org
19338 S:      Supported
19339 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19341 N:      [^a-z]tegra
19342
19343 TEGRA CLOCK DRIVER
19344 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19345 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19346 S:      Supported
19347 F:      drivers/clk/tegra/
19348
19349 TEGRA DMA DRIVERS
19350 M:      Laxman Dewangan <ldewangan@nvidia.com>
19351 M:      Jon Hunter <jonathanh@nvidia.com>
19352 S:      Supported
19353 F:      drivers/dma/tegra*
19354
19355 TEGRA I2C DRIVER
19356 M:      Laxman Dewangan <ldewangan@nvidia.com>
19357 R:      Dmitry Osipenko <digetx@gmail.com>
19358 S:      Supported
19359 F:      drivers/i2c/busses/i2c-tegra.c
19360
19361 TEGRA IOMMU DRIVERS
19362 M:      Thierry Reding <thierry.reding@gmail.com>
19363 R:      Krishna Reddy <vdumpa@nvidia.com>
19364 L:      linux-tegra@vger.kernel.org
19365 S:      Supported
19366 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19367 F:      drivers/iommu/tegra*
19368
19369 TEGRA KBC DRIVER
19370 M:      Laxman Dewangan <ldewangan@nvidia.com>
19371 S:      Supported
19372 F:      drivers/input/keyboard/tegra-kbc.c
19373
19374 TEGRA NAND DRIVER
19375 M:      Stefan Agner <stefan@agner.ch>
19376 M:      Lucas Stach <dev@lynxeye.de>
19377 S:      Maintained
19378 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19379 F:      drivers/mtd/nand/raw/tegra_nand.c
19380
19381 TEGRA PWM DRIVER
19382 M:      Thierry Reding <thierry.reding@gmail.com>
19383 S:      Supported
19384 F:      drivers/pwm/pwm-tegra.c
19385
19386 TEGRA SERIAL DRIVER
19387 M:      Laxman Dewangan <ldewangan@nvidia.com>
19388 S:      Supported
19389 F:      drivers/tty/serial/serial-tegra.c
19390
19391 TEGRA SPI DRIVER
19392 M:      Laxman Dewangan <ldewangan@nvidia.com>
19393 S:      Supported
19394 F:      drivers/spi/spi-tegra*
19395
19396 TEGRA QUAD SPI DRIVER
19397 M:      Thierry Reding <thierry.reding@gmail.com>
19398 M:      Jonathan Hunter <jonathanh@nvidia.com>
19399 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19400 L:      linux-tegra@vger.kernel.org
19401 S:      Maintained
19402 F:      drivers/spi/spi-tegra210-quad.c
19403
19404 TEGRA VIDEO DRIVER
19405 M:      Thierry Reding <thierry.reding@gmail.com>
19406 M:      Jonathan Hunter <jonathanh@nvidia.com>
19407 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19408 L:      linux-media@vger.kernel.org
19409 L:      linux-tegra@vger.kernel.org
19410 S:      Maintained
19411 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19412 F:      drivers/staging/media/tegra-video/
19413
19414 TEGRA XUSB PADCTL DRIVER
19415 M:      JC Kuo <jckuo@nvidia.com>
19416 S:      Supported
19417 F:      drivers/phy/tegra/xusb*
19418
19419 TEHUTI ETHERNET DRIVER
19420 M:      Andy Gospodarek <andy@greyhouse.net>
19421 L:      netdev@vger.kernel.org
19422 S:      Supported
19423 F:      drivers/net/ethernet/tehuti/*
19424
19425 TELECOM CLOCK DRIVER FOR MCPL0010
19426 M:      Mark Gross <markgross@kernel.org>
19427 S:      Supported
19428 F:      drivers/char/tlclk.c
19429
19430 TEMPO SEMICONDUCTOR DRIVERS
19431 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19432 S:      Maintained
19433 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19434 F:      sound/soc/codecs/tscs*.c
19435 F:      sound/soc/codecs/tscs*.h
19436
19437 TENSILICA XTENSA PORT (xtensa)
19438 M:      Chris Zankel <chris@zankel.net>
19439 M:      Max Filippov <jcmvbkbc@gmail.com>
19440 L:      linux-xtensa@linux-xtensa.org
19441 S:      Maintained
19442 T:      git git://github.com/czankel/xtensa-linux.git
19443 F:      arch/xtensa/
19444 F:      drivers/irqchip/irq-xtensa-*
19445
19446 TEXAS INSTRUMENTS ASoC DRIVERS
19447 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19448 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19449 S:      Maintained
19450 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19451 F:      sound/soc/ti/
19452
19453 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19454 M:      Ricardo Ribalda <ribalda@kernel.org>
19455 L:      linux-iio@vger.kernel.org
19456 S:      Supported
19457 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19458 F:      drivers/iio/dac/ti-dac7612.c
19459
19460 TEXAS INSTRUMENTS DMA DRIVERS
19461 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19462 L:      dmaengine@vger.kernel.org
19463 S:      Maintained
19464 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19465 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19466 F:      Documentation/devicetree/bindings/dma/ti/
19467 F:      drivers/dma/ti/
19468 X:      drivers/dma/ti/cppi41.c
19469 F:      include/linux/dma/k3-udma-glue.h
19470 F:      include/linux/dma/ti-cppi5.h
19471 F:      include/linux/dma/k3-psil.h
19472
19473 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19474 M:      Nishanth Menon <nm@ti.com>
19475 M:      Tero Kristo <kristo@kernel.org>
19476 M:      Santosh Shilimkar <ssantosh@kernel.org>
19477 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19478 S:      Maintained
19479 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19480 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19481 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19482 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19483 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19484 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19485 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19486 F:      drivers/clk/keystone/sci-clk.c
19487 F:      drivers/firmware/ti_sci*
19488 F:      drivers/irqchip/irq-ti-sci-inta.c
19489 F:      drivers/irqchip/irq-ti-sci-intr.c
19490 F:      drivers/reset/reset-ti-sci.c
19491 F:      drivers/soc/ti/ti_sci_inta_msi.c
19492 F:      drivers/soc/ti/ti_sci_pm_domains.c
19493 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19494 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19495 F:      include/linux/soc/ti/ti_sci_protocol.h
19496
19497 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19498 M:      Robert Marko <robert.marko@sartura.hr>
19499 M:      Luka Perkov <luka.perkov@sartura.hr>
19500 L:      linux-hwmon@vger.kernel.org
19501 S:      Maintained
19502 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19503 F:      Documentation/hwmon/tps23861.rst
19504 F:      drivers/hwmon/tps23861.c
19505
19506 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19507 M:      Puranjay Mohan <puranjay12@gmail.com>
19508 L:      linux-iio@vger.kernel.org
19509 S:      Supported
19510 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19511 F:      drivers/iio/temperature/tmp117.c
19512
19513 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19514 M:      Hans Verkuil <hverkuil@xs4all.nl>
19515 L:      linux-media@vger.kernel.org
19516 S:      Maintained
19517 W:      https://linuxtv.org
19518 T:      git git://linuxtv.org/media_tree.git
19519 F:      drivers/media/radio/radio-raremono.c
19520
19521 THERMAL
19522 M:      Rafael J. Wysocki <rafael@kernel.org>
19523 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19524 R:      Amit Kucheria <amitk@kernel.org>
19525 R:      Zhang Rui <rui.zhang@intel.com>
19526 L:      linux-pm@vger.kernel.org
19527 S:      Supported
19528 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19530 F:      Documentation/ABI/testing/sysfs-class-thermal
19531 F:      Documentation/devicetree/bindings/thermal/
19532 F:      Documentation/driver-api/thermal/
19533 F:      drivers/thermal/
19534 F:      include/linux/cpu_cooling.h
19535 F:      include/linux/thermal.h
19536 F:      include/uapi/linux/thermal.h
19537 F:      tools/thermal/
19538
19539 THERMAL DRIVER FOR AMLOGIC SOCS
19540 M:      Guillaume La Roque <glaroque@baylibre.com>
19541 L:      linux-pm@vger.kernel.org
19542 L:      linux-amlogic@lists.infradead.org
19543 S:      Supported
19544 W:      http://linux-meson.com/
19545 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19546 F:      drivers/thermal/amlogic_thermal.c
19547
19548 THERMAL/CPU_COOLING
19549 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19550 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19551 M:      Viresh Kumar <viresh.kumar@linaro.org>
19552 R:      Lukasz Luba <lukasz.luba@arm.com>
19553 L:      linux-pm@vger.kernel.org
19554 S:      Supported
19555 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19556 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19557 F:      drivers/thermal/cpufreq_cooling.c
19558 F:      drivers/thermal/cpuidle_cooling.c
19559 F:      include/linux/cpu_cooling.h
19560
19561 THERMAL/POWER_ALLOCATOR
19562 M:      Lukasz Luba <lukasz.luba@arm.com>
19563 L:      linux-pm@vger.kernel.org
19564 S:      Maintained
19565 F:      Documentation/driver-api/thermal/power_allocator.rst
19566 F:      drivers/thermal/gov_power_allocator.c
19567 F:      include/trace/events/thermal_power_allocator.h
19568
19569 THINKPAD ACPI EXTRAS DRIVER
19570 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19571 L:      ibm-acpi-devel@lists.sourceforge.net
19572 L:      platform-driver-x86@vger.kernel.org
19573 S:      Maintained
19574 W:      http://ibm-acpi.sourceforge.net
19575 W:      http://thinkwiki.org/wiki/Ibm-acpi
19576 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19577 F:      drivers/platform/x86/thinkpad_acpi.c
19578
19579 THINKPAD LMI DRIVER
19580 M:      Mark Pearson <markpearson@lenovo.com>
19581 L:      platform-driver-x86@vger.kernel.org
19582 S:      Maintained
19583 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19584 F:      drivers/platform/x86/think-lmi.?
19585
19586 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19587 M:      Isaac Hazan <isaac.hazan@intel.com>
19588 L:      linux-usb@vger.kernel.org
19589 S:      Maintained
19590 F:      drivers/thunderbolt/dma_test.c
19591
19592 THUNDERBOLT DRIVER
19593 M:      Andreas Noever <andreas.noever@gmail.com>
19594 M:      Michael Jamet <michael.jamet@intel.com>
19595 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19596 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19597 L:      linux-usb@vger.kernel.org
19598 S:      Maintained
19599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19600 F:      Documentation/admin-guide/thunderbolt.rst
19601 F:      drivers/thunderbolt/
19602 F:      include/linux/thunderbolt.h
19603
19604 THUNDERBOLT NETWORK DRIVER
19605 M:      Michael Jamet <michael.jamet@intel.com>
19606 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19607 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19608 L:      netdev@vger.kernel.org
19609 S:      Maintained
19610 F:      drivers/net/thunderbolt.c
19611
19612 THUNDERX GPIO DRIVER
19613 M:      Robert Richter <rric@kernel.org>
19614 S:      Odd Fixes
19615 F:      drivers/gpio/gpio-thunderx.c
19616
19617 TI ADS131E0X ADC SERIES DRIVER
19618 M:      Tomislav Denis <tomislav.denis@avl.com>
19619 L:      linux-iio@vger.kernel.org
19620 S:      Maintained
19621 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19622 F:      drivers/iio/adc/ti-ads131e08.c
19623
19624 TI AM437X VPFE DRIVER
19625 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19626 L:      linux-media@vger.kernel.org
19627 S:      Maintained
19628 W:      https://linuxtv.org
19629 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19630 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19631 F:      drivers/media/platform/ti/am437x/
19632
19633 TI BANDGAP AND THERMAL DRIVER
19634 M:      Eduardo Valentin <edubezval@gmail.com>
19635 M:      Keerthy <j-keerthy@ti.com>
19636 L:      linux-pm@vger.kernel.org
19637 L:      linux-omap@vger.kernel.org
19638 S:      Maintained
19639 F:      drivers/thermal/ti-soc-thermal/
19640
19641 TI BQ27XXX POWER SUPPLY DRIVER
19642 F:      drivers/power/supply/bq27xxx_battery.c
19643 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19644 F:      include/linux/power/bq27xxx_battery.h
19645
19646 TI CDCE706 CLOCK DRIVER
19647 M:      Max Filippov <jcmvbkbc@gmail.com>
19648 S:      Maintained
19649 F:      drivers/clk/clk-cdce706.c
19650
19651 TI CLOCK DRIVER
19652 M:      Tero Kristo <kristo@kernel.org>
19653 L:      linux-omap@vger.kernel.org
19654 S:      Odd Fixes
19655 F:      drivers/clk/ti/
19656 F:      include/linux/clk/ti.h
19657
19658 TI DAVINCI MACHINE SUPPORT
19659 M:      Sekhar Nori <nsekhar@ti.com>
19660 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19662 S:      Supported
19663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19664 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19665 F:      arch/arm/boot/dts/da850*
19666 F:      arch/arm/mach-davinci/
19667 F:      drivers/i2c/busses/i2c-davinci.c
19668
19669 TI DAVINCI SERIES CLOCK DRIVER
19670 M:      David Lechner <david@lechnology.com>
19671 R:      Sekhar Nori <nsekhar@ti.com>
19672 S:      Maintained
19673 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19674 F:      drivers/clk/davinci/
19675
19676 TI DAVINCI SERIES GPIO DRIVER
19677 M:      Keerthy <j-keerthy@ti.com>
19678 L:      linux-gpio@vger.kernel.org
19679 S:      Maintained
19680 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19681 F:      drivers/gpio/gpio-davinci.c
19682
19683 TI DAVINCI SERIES MEDIA DRIVER
19684 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19685 L:      linux-media@vger.kernel.org
19686 S:      Maintained
19687 W:      https://linuxtv.org
19688 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19689 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19690 F:      drivers/media/platform/ti/davinci/
19691 F:      include/media/davinci/
19692
19693 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19694 R:      David Lechner <david@lechnology.com>
19695 L:      linux-iio@vger.kernel.org
19696 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19697 F:      drivers/counter/ti-eqep.c
19698
19699 TI ETHERNET SWITCH DRIVER (CPSW)
19700 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19701 L:      linux-omap@vger.kernel.org
19702 L:      netdev@vger.kernel.org
19703 S:      Maintained
19704 F:      drivers/net/ethernet/ti/cpsw*
19705 F:      drivers/net/ethernet/ti/davinci*
19706
19707 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19708 M:      Alex Dubov <oakad@yahoo.com>
19709 S:      Maintained
19710 W:      http://tifmxx.berlios.de/
19711 F:      drivers/memstick/host/tifm_ms.c
19712 F:      drivers/misc/tifm*
19713 F:      drivers/mmc/host/tifm_sd.c
19714 F:      include/linux/tifm.h
19715
19716 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19717 M:      Nishanth Menon <nm@ti.com>
19718 M:      Santosh Shilimkar <ssantosh@kernel.org>
19719 L:      linux-kernel@vger.kernel.org
19720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19721 S:      Maintained
19722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19723 F:      drivers/soc/ti/*
19724
19725 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19726 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19727 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19728 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19729 S:      Maintained
19730 F:      sound/soc/codecs/isabelle*
19731 F:      sound/soc/codecs/lm49453*
19732
19733 TI PCM3060 ASoC CODEC DRIVER
19734 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19735 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19736 S:      Maintained
19737 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19738 F:      sound/soc/codecs/pcm3060*
19739
19740 TI TAS571X FAMILY ASoC CODEC DRIVER
19741 M:      Kevin Cernekee <cernekee@chromium.org>
19742 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19743 S:      Odd Fixes
19744 F:      sound/soc/codecs/tas571x*
19745
19746 TI TRF7970A NFC DRIVER
19747 M:      Mark Greer <mgreer@animalcreek.com>
19748 L:      linux-wireless@vger.kernel.org
19749 L:      linux-nfc@lists.01.org (subscribers-only)
19750 S:      Supported
19751 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19752 F:      drivers/nfc/trf7970a.c
19753
19754 TI TSC2046 ADC DRIVER
19755 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19756 R:      kernel@pengutronix.de
19757 L:      linux-iio@vger.kernel.org
19758 S:      Maintained
19759 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19760 F:      drivers/iio/adc/ti-tsc2046.c
19761
19762 TI TWL4030 SERIES SOC CODEC DRIVER
19763 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19764 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19765 S:      Maintained
19766 F:      sound/soc/codecs/twl4030*
19767
19768 TI VPE/CAL DRIVERS
19769 M:      Benoit Parrot <bparrot@ti.com>
19770 L:      linux-media@vger.kernel.org
19771 S:      Maintained
19772 W:      http://linuxtv.org/
19773 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19774 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19775 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19776 F:      drivers/media/platform/ti/cal/
19777 F:      drivers/media/platform/ti/vpe/
19778
19779 TI WILINK WIRELESS DRIVERS
19780 L:      linux-wireless@vger.kernel.org
19781 S:      Orphan
19782 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19783 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19785 F:      drivers/net/wireless/ti/
19786 F:      include/linux/wl12xx.h
19787
19788 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19789 M:      John Stultz <john.stultz@linaro.org>
19790 M:      Thomas Gleixner <tglx@linutronix.de>
19791 R:      Stephen Boyd <sboyd@kernel.org>
19792 L:      linux-kernel@vger.kernel.org
19793 S:      Supported
19794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19795 F:      include/linux/clocksource.h
19796 F:      include/linux/time.h
19797 F:      include/linux/timex.h
19798 F:      include/uapi/linux/time.h
19799 F:      include/uapi/linux/timex.h
19800 F:      kernel/time/alarmtimer.c
19801 F:      kernel/time/clocksource.c
19802 F:      kernel/time/ntp.c
19803 F:      kernel/time/time*.c
19804 F:      tools/testing/selftests/timers/
19805
19806 TIPC NETWORK LAYER
19807 M:      Jon Maloy <jmaloy@redhat.com>
19808 M:      Ying Xue <ying.xue@windriver.com>
19809 L:      netdev@vger.kernel.org (core kernel code)
19810 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19811 S:      Maintained
19812 W:      http://tipc.sourceforge.net/
19813 F:      include/uapi/linux/tipc*.h
19814 F:      net/tipc/
19815
19816 TLAN NETWORK DRIVER
19817 M:      Samuel Chessman <chessman@tux.org>
19818 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19819 S:      Maintained
19820 W:      http://sourceforge.net/projects/tlan/
19821 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19822 F:      drivers/net/ethernet/ti/tlan.*
19823
19824 TM6000 VIDEO4LINUX DRIVER
19825 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19826 L:      linux-media@vger.kernel.org
19827 S:      Odd fixes
19828 W:      https://linuxtv.org
19829 T:      git git://linuxtv.org/media_tree.git
19830 F:      Documentation/admin-guide/media/tm6000*
19831 F:      drivers/media/usb/tm6000/
19832
19833 TMIO/SDHI MMC DRIVER
19834 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19835 L:      linux-mmc@vger.kernel.org
19836 S:      Supported
19837 F:      drivers/mmc/host/renesas_sdhi*
19838 F:      drivers/mmc/host/tmio_mmc*
19839 F:      include/linux/mfd/tmio.h
19840
19841 TMP401 HARDWARE MONITOR DRIVER
19842 M:      Guenter Roeck <linux@roeck-us.net>
19843 L:      linux-hwmon@vger.kernel.org
19844 S:      Maintained
19845 F:      Documentation/hwmon/tmp401.rst
19846 F:      drivers/hwmon/tmp401.c
19847
19848 TMP464 HARDWARE MONITOR DRIVER
19849 M:      Agathe Porte <agathe.porte@nokia.com>
19850 M:      Guenter Roeck <linux@roeck-us.net>
19851 L:      linux-hwmon@vger.kernel.org
19852 S:      Maintained
19853 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
19854 F:      Documentation/hwmon/tmp464.rst
19855 F:      drivers/hwmon/tmp464.c
19856
19857 TMP513 HARDWARE MONITOR DRIVER
19858 M:      Eric Tremblay <etremblay@distech-controls.com>
19859 L:      linux-hwmon@vger.kernel.org
19860 S:      Maintained
19861 F:      Documentation/hwmon/tmp513.rst
19862 F:      drivers/hwmon/tmp513.c
19863
19864 TMPFS (SHMEM FILESYSTEM)
19865 M:      Hugh Dickins <hughd@google.com>
19866 L:      linux-mm@kvack.org
19867 S:      Maintained
19868 F:      include/linux/shmem_fs.h
19869 F:      mm/shmem.c
19870
19871 TOMOYO SECURITY MODULE
19872 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19873 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19874 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19875 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19876 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19877 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19878 S:      Maintained
19879 W:      https://tomoyo.osdn.jp/
19880 F:      security/tomoyo/
19881
19882 TOPSTAR LAPTOP EXTRAS DRIVER
19883 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19884 L:      platform-driver-x86@vger.kernel.org
19885 S:      Maintained
19886 F:      drivers/platform/x86/topstar-laptop.c
19887
19888 TORTURE-TEST MODULES
19889 M:      Davidlohr Bueso <dave@stgolabs.net>
19890 M:      "Paul E. McKenney" <paulmck@kernel.org>
19891 M:      Josh Triplett <josh@joshtriplett.org>
19892 L:      linux-kernel@vger.kernel.org
19893 S:      Supported
19894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19895 F:      Documentation/RCU/torture.rst
19896 F:      kernel/locking/locktorture.c
19897 F:      kernel/rcu/rcuscale.c
19898 F:      kernel/rcu/rcutorture.c
19899 F:      kernel/rcu/refscale.c
19900 F:      kernel/torture.c
19901
19902 TOSHIBA ACPI EXTRAS DRIVER
19903 M:      Azael Avalos <coproscefalo@gmail.com>
19904 L:      platform-driver-x86@vger.kernel.org
19905 S:      Maintained
19906 F:      drivers/platform/x86/toshiba_acpi.c
19907
19908 TOSHIBA BLUETOOTH DRIVER
19909 M:      Azael Avalos <coproscefalo@gmail.com>
19910 L:      platform-driver-x86@vger.kernel.org
19911 S:      Maintained
19912 F:      drivers/platform/x86/toshiba_bluetooth.c
19913
19914 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19915 M:      Azael Avalos <coproscefalo@gmail.com>
19916 L:      platform-driver-x86@vger.kernel.org
19917 S:      Maintained
19918 F:      drivers/platform/x86/toshiba_haps.c
19919
19920 TOSHIBA SMM DRIVER
19921 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19922 S:      Maintained
19923 W:      http://www.buzzard.org.uk/toshiba/
19924 F:      drivers/char/toshiba.c
19925 F:      include/linux/toshiba.h
19926 F:      include/uapi/linux/toshiba.h
19927
19928 TOSHIBA TC358743 DRIVER
19929 M:      Mats Randgaard <matrandg@cisco.com>
19930 L:      linux-media@vger.kernel.org
19931 S:      Maintained
19932 F:      drivers/media/i2c/tc358743*
19933 F:      include/media/i2c/tc358743.h
19934
19935 TOSHIBA WMI HOTKEYS DRIVER
19936 M:      Azael Avalos <coproscefalo@gmail.com>
19937 L:      platform-driver-x86@vger.kernel.org
19938 S:      Maintained
19939 F:      drivers/platform/x86/toshiba-wmi.c
19940
19941 TPM DEVICE DRIVER
19942 M:      Peter Huewe <peterhuewe@gmx.de>
19943 M:      Jarkko Sakkinen <jarkko@kernel.org>
19944 R:      Jason Gunthorpe <jgg@ziepe.ca>
19945 L:      linux-integrity@vger.kernel.org
19946 S:      Maintained
19947 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19948 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19950 F:      drivers/char/tpm/
19951
19952 TRACING
19953 M:      Steven Rostedt <rostedt@goodmis.org>
19954 M:      Ingo Molnar <mingo@redhat.com>
19955 S:      Maintained
19956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19957 F:      Documentation/trace/ftrace.rst
19958 F:      arch/*/*/*/ftrace.h
19959 F:      arch/*/kernel/ftrace.c
19960 F:      fs/tracefs/
19961 F:      include/*/ftrace.h
19962 F:      include/linux/trace*.h
19963 F:      include/trace/
19964 F:      kernel/trace/
19965 F:      tools/testing/selftests/ftrace/
19966
19967 TRACING MMIO ACCESSES (MMIOTRACE)
19968 M:      Steven Rostedt <rostedt@goodmis.org>
19969 M:      Ingo Molnar <mingo@kernel.org>
19970 R:      Karol Herbst <karolherbst@gmail.com>
19971 R:      Pekka Paalanen <ppaalanen@gmail.com>
19972 L:      linux-kernel@vger.kernel.org
19973 L:      nouveau@lists.freedesktop.org
19974 S:      Maintained
19975 F:      arch/x86/mm/kmmio.c
19976 F:      arch/x86/mm/mmio-mod.c
19977 F:      arch/x86/mm/testmmiotrace.c
19978 F:      include/linux/mmiotrace.h
19979 F:      kernel/trace/trace_mmiotrace.c
19980
19981 TRACING OS NOISE / LATENCY TRACERS
19982 M:      Steven Rostedt <rostedt@goodmis.org>
19983 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19984 S:      Maintained
19985 F:      kernel/trace/trace_osnoise.c
19986 F:      include/trace/events/osnoise.h
19987 F:      kernel/trace/trace_hwlat.c
19988 F:      kernel/trace/trace_irqsoff.c
19989 F:      kernel/trace/trace_sched_wakeup.c
19990 F:      Documentation/trace/osnoise-tracer.rst
19991 F:      Documentation/trace/timerlat-tracer.rst
19992 F:      Documentation/trace/hwlat_detector.rst
19993 F:      arch/*/kernel/trace.c
19994
19995 Real-time Linux Analysis (RTLA) tools
19996 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19997 M:      Steven Rostedt <rostedt@goodmis.org>
19998 L:      linux-trace-devel@vger.kernel.org
19999 S:      Maintained
20000 F:      Documentation/tools/rtla/
20001 F:      tools/tracing/rtla/
20002
20003 TRADITIONAL CHINESE DOCUMENTATION
20004 M:      Hu Haowen <src.res@email.cn>
20005 L:      linux-doc-tw-discuss@lists.sourceforge.net
20006 S:      Maintained
20007 W:      https://github.com/srcres258/linux-doc
20008 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20009 F:      Documentation/translations/zh_TW/
20010
20011 TTY LAYER
20012 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20013 M:      Jiri Slaby <jirislaby@kernel.org>
20014 S:      Supported
20015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20016 F:      Documentation/driver-api/serial/
20017 F:      drivers/tty/
20018 F:      drivers/tty/serial/serial_core.c
20019 F:      include/linux/selection.h
20020 F:      include/linux/serial.h
20021 F:      include/linux/serial_core.h
20022 F:      include/linux/sysrq.h
20023 F:      include/linux/tty*.h
20024 F:      include/linux/vt.h
20025 F:      include/linux/vt_*.h
20026 F:      include/uapi/linux/serial.h
20027 F:      include/uapi/linux/serial_core.h
20028 F:      include/uapi/linux/tty.h
20029
20030 TUA9001 MEDIA DRIVER
20031 M:      Antti Palosaari <crope@iki.fi>
20032 L:      linux-media@vger.kernel.org
20033 S:      Maintained
20034 W:      https://linuxtv.org
20035 W:      http://palosaari.fi/linux/
20036 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20037 T:      git git://linuxtv.org/anttip/media_tree.git
20038 F:      drivers/media/tuners/tua9001*
20039
20040 TULIP NETWORK DRIVERS
20041 L:      netdev@vger.kernel.org
20042 L:      linux-parisc@vger.kernel.org
20043 S:      Orphan
20044 F:      drivers/net/ethernet/dec/tulip/
20045
20046 TUN/TAP driver
20047 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20048 S:      Maintained
20049 W:      http://vtun.sourceforge.net/tun
20050 F:      Documentation/networking/tuntap.rst
20051 F:      arch/um/os-Linux/drivers/
20052
20053 TURBOCHANNEL SUBSYSTEM
20054 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20055 M:      Ralf Baechle <ralf@linux-mips.org>
20056 L:      linux-mips@vger.kernel.org
20057 S:      Maintained
20058 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20059 F:      drivers/tc/
20060 F:      include/linux/tc.h
20061
20062 TURBOSTAT UTILITY
20063 M:      "Len Brown" <lenb@kernel.org>
20064 L:      linux-pm@vger.kernel.org
20065 S:      Supported
20066 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20067 B:      https://bugzilla.kernel.org
20068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20069 F:      tools/power/x86/turbostat/
20070
20071 TW5864 VIDEO4LINUX DRIVER
20072 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20073 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20074 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20075 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20076 L:      linux-media@vger.kernel.org
20077 S:      Supported
20078 F:      drivers/media/pci/tw5864/
20079
20080 TW68 VIDEO4LINUX DRIVER
20081 M:      Hans Verkuil <hverkuil@xs4all.nl>
20082 L:      linux-media@vger.kernel.org
20083 S:      Odd Fixes
20084 W:      https://linuxtv.org
20085 T:      git git://linuxtv.org/media_tree.git
20086 F:      drivers/media/pci/tw68/
20087
20088 TW686X VIDEO4LINUX DRIVER
20089 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20090 L:      linux-media@vger.kernel.org
20091 S:      Maintained
20092 W:      http://linuxtv.org
20093 T:      git git://linuxtv.org/media_tree.git
20094 F:      drivers/media/pci/tw686x/
20095
20096 U-BOOT ENVIRONMENT VARIABLES
20097 M:      Rafał Miłecki <rafal@milecki.pl>
20098 S:      Maintained
20099 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20100
20101 UACCE ACCELERATOR FRAMEWORK
20102 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20103 M:      Zhou Wang <wangzhou1@hisilicon.com>
20104 L:      linux-accelerators@lists.ozlabs.org
20105 L:      linux-kernel@vger.kernel.org
20106 S:      Maintained
20107 F:      Documentation/ABI/testing/sysfs-driver-uacce
20108 F:      Documentation/misc-devices/uacce.rst
20109 F:      drivers/misc/uacce/
20110 F:      include/linux/uacce.h
20111 F:      include/uapi/misc/uacce/
20112
20113 UBI FILE SYSTEM (UBIFS)
20114 M:      Richard Weinberger <richard@nod.at>
20115 L:      linux-mtd@lists.infradead.org
20116 S:      Supported
20117 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20120 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20121 F:      Documentation/filesystems/ubifs-authentication.rst
20122 F:      Documentation/filesystems/ubifs.rst
20123 F:      fs/ubifs/
20124
20125 UCLINUX (M68KNOMMU AND COLDFIRE)
20126 M:      Greg Ungerer <gerg@linux-m68k.org>
20127 L:      linux-m68k@lists.linux-m68k.org
20128 L:      uclinux-dev@uclinux.org  (subscribers-only)
20129 S:      Maintained
20130 W:      http://www.linux-m68k.org/
20131 W:      http://www.uclinux.org/
20132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20133 F:      arch/m68k/*/*_no.*
20134 F:      arch/m68k/68*/
20135 F:      arch/m68k/coldfire/
20136 F:      arch/m68k/include/asm/*_no.*
20137
20138 UDF FILESYSTEM
20139 M:      Jan Kara <jack@suse.com>
20140 S:      Maintained
20141 F:      Documentation/filesystems/udf.rst
20142 F:      fs/udf/
20143
20144 UDRAW TABLET
20145 M:      Bastien Nocera <hadess@hadess.net>
20146 L:      linux-input@vger.kernel.org
20147 S:      Maintained
20148 F:      drivers/hid/hid-udraw-ps3.c
20149
20150 UFS FILESYSTEM
20151 M:      Evgeniy Dushistov <dushistov@mail.ru>
20152 S:      Maintained
20153 F:      Documentation/admin-guide/ufs.rst
20154 F:      fs/ufs/
20155
20156 UHID USERSPACE HID IO DRIVER
20157 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20158 L:      linux-input@vger.kernel.org
20159 S:      Maintained
20160 F:      drivers/hid/uhid.c
20161 F:      include/uapi/linux/uhid.h
20162
20163 ULPI BUS
20164 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20165 L:      linux-usb@vger.kernel.org
20166 S:      Maintained
20167 F:      drivers/usb/common/ulpi.c
20168 F:      include/linux/ulpi/
20169
20170 UNICODE SUBSYSTEM
20171 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20172 L:      linux-fsdevel@vger.kernel.org
20173 S:      Supported
20174 F:      fs/unicode/
20175
20176 UNIFDEF
20177 M:      Tony Finch <dot@dotat.at>
20178 S:      Maintained
20179 W:      http://dotat.at/prog/unifdef
20180 F:      scripts/unifdef.c
20181
20182 UNIFORM CDROM DRIVER
20183 M:      Phillip Potter <phil@philpotter.co.uk>
20184 S:      Maintained
20185 F:      Documentation/cdrom/
20186 F:      drivers/cdrom/cdrom.c
20187 F:      include/linux/cdrom.h
20188 F:      include/uapi/linux/cdrom.h
20189
20190 UNISYS S-PAR DRIVERS
20191 M:      David Kershner <david.kershner@unisys.com>
20192 L:      sparmaintainer@unisys.com (Unisys internal)
20193 S:      Supported
20194 F:      drivers/staging/unisys/
20195 F:      drivers/visorbus/
20196 F:      include/linux/visorbus.h
20197
20198 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20199 R:      Alim Akhtar <alim.akhtar@samsung.com>
20200 R:      Avri Altman <avri.altman@wdc.com>
20201 L:      linux-scsi@vger.kernel.org
20202 S:      Supported
20203 F:      Documentation/devicetree/bindings/ufs/
20204 F:      Documentation/scsi/ufs.rst
20205 F:      drivers/scsi/ufs/
20206
20207 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20208 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20209 L:      linux-scsi@vger.kernel.org
20210 S:      Supported
20211 F:      drivers/scsi/ufs/*dwc*
20212
20213 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20214 M:      Stanley Chu <stanley.chu@mediatek.com>
20215 L:      linux-scsi@vger.kernel.org
20216 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20217 S:      Maintained
20218 F:      drivers/scsi/ufs/ufs-mediatek*
20219
20220 UNSORTED BLOCK IMAGES (UBI)
20221 M:      Richard Weinberger <richard@nod.at>
20222 L:      linux-mtd@lists.infradead.org
20223 S:      Supported
20224 W:      http://www.linux-mtd.infradead.org/
20225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20227 F:      drivers/mtd/ubi/
20228 F:      include/linux/mtd/ubi.h
20229 F:      include/uapi/mtd/ubi-user.h
20230
20231 USB "USBNET" DRIVER FRAMEWORK
20232 M:      Oliver Neukum <oneukum@suse.com>
20233 L:      netdev@vger.kernel.org
20234 S:      Maintained
20235 W:      http://www.linux-usb.org/usbnet
20236 F:      drivers/net/usb/usbnet.c
20237 F:      include/linux/usb/usbnet.h
20238
20239 USB ACM DRIVER
20240 M:      Oliver Neukum <oneukum@suse.com>
20241 L:      linux-usb@vger.kernel.org
20242 S:      Maintained
20243 F:      Documentation/usb/acm.rst
20244 F:      drivers/usb/class/cdc-acm.*
20245
20246 USB APPLE MFI FASTCHARGE DRIVER
20247 M:      Bastien Nocera <hadess@hadess.net>
20248 L:      linux-usb@vger.kernel.org
20249 S:      Maintained
20250 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20251
20252 USB AR5523 WIRELESS DRIVER
20253 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20254 L:      linux-wireless@vger.kernel.org
20255 S:      Maintained
20256 F:      drivers/net/wireless/ath/ar5523/
20257
20258 USB ATTACHED SCSI
20259 M:      Oliver Neukum <oneukum@suse.com>
20260 L:      linux-usb@vger.kernel.org
20261 L:      linux-scsi@vger.kernel.org
20262 S:      Maintained
20263 F:      drivers/usb/storage/uas.c
20264
20265 USB CDC ETHERNET DRIVER
20266 M:      Oliver Neukum <oliver@neukum.org>
20267 L:      linux-usb@vger.kernel.org
20268 S:      Maintained
20269 F:      drivers/net/usb/cdc_*.c
20270 F:      include/uapi/linux/usb/cdc.h
20271
20272 USB CHAOSKEY DRIVER
20273 M:      Keith Packard <keithp@keithp.com>
20274 L:      linux-usb@vger.kernel.org
20275 S:      Maintained
20276 F:      drivers/usb/misc/chaoskey.c
20277
20278 USB CYPRESS C67X00 DRIVER
20279 L:      linux-usb@vger.kernel.org
20280 S:      Orphan
20281 F:      drivers/usb/c67x00/
20282
20283 USB DAVICOM DM9601 DRIVER
20284 M:      Peter Korsgaard <peter@korsgaard.com>
20285 L:      netdev@vger.kernel.org
20286 S:      Maintained
20287 W:      http://www.linux-usb.org/usbnet
20288 F:      drivers/net/usb/dm9601.c
20289
20290 USB EHCI DRIVER
20291 M:      Alan Stern <stern@rowland.harvard.edu>
20292 L:      linux-usb@vger.kernel.org
20293 S:      Maintained
20294 F:      Documentation/usb/ehci.rst
20295 F:      drivers/usb/host/ehci*
20296
20297 USB GADGET/PERIPHERAL SUBSYSTEM
20298 M:      Felipe Balbi <balbi@kernel.org>
20299 L:      linux-usb@vger.kernel.org
20300 S:      Maintained
20301 W:      http://www.linux-usb.org/gadget
20302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20303 F:      drivers/usb/gadget/
20304 F:      include/linux/usb/gadget*
20305
20306 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20307 M:      Jiri Kosina <jikos@kernel.org>
20308 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20309 L:      linux-usb@vger.kernel.org
20310 S:      Maintained
20311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20312 F:      Documentation/hid/hiddev.rst
20313 F:      drivers/hid/usbhid/
20314
20315 USB INTEL XHCI ROLE MUX DRIVER
20316 M:      Hans de Goede <hdegoede@redhat.com>
20317 L:      linux-usb@vger.kernel.org
20318 S:      Maintained
20319 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20320
20321 USB IP DRIVER FOR HISILICON KIRIN 960
20322 M:      Yu Chen <chenyu56@huawei.com>
20323 M:      Binghui Wang <wangbinghui@hisilicon.com>
20324 L:      linux-usb@vger.kernel.org
20325 S:      Maintained
20326 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20327 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20328
20329 USB IP DRIVER FOR HISILICON KIRIN 970
20330 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20331 L:      linux-usb@vger.kernel.org
20332 S:      Maintained
20333 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20334 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20335
20336 USB ISP116X DRIVER
20337 M:      Olav Kongas <ok@artecdesign.ee>
20338 L:      linux-usb@vger.kernel.org
20339 S:      Maintained
20340 F:      drivers/usb/host/isp116x*
20341 F:      include/linux/usb/isp116x.h
20342
20343 USB ISP1760 DRIVER
20344 M:      Rui Miguel Silva <rui.silva@linaro.org>
20345 L:      linux-usb@vger.kernel.org
20346 S:      Maintained
20347 F:      drivers/usb/isp1760/*
20348 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20349
20350 USB LAN78XX ETHERNET DRIVER
20351 M:      Woojung Huh <woojung.huh@microchip.com>
20352 M:      UNGLinuxDriver@microchip.com
20353 L:      netdev@vger.kernel.org
20354 S:      Maintained
20355 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20356 F:      drivers/net/usb/lan78xx.*
20357 F:      include/dt-bindings/net/microchip-lan78xx.h
20358
20359 USB MASS STORAGE DRIVER
20360 M:      Alan Stern <stern@rowland.harvard.edu>
20361 L:      linux-usb@vger.kernel.org
20362 L:      usb-storage@lists.one-eyed-alien.net
20363 S:      Maintained
20364 F:      drivers/usb/storage/
20365
20366 USB MIDI DRIVER
20367 M:      Clemens Ladisch <clemens@ladisch.de>
20368 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20369 S:      Maintained
20370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20371 F:      sound/usb/midi.*
20372
20373 USB NETWORKING DRIVERS
20374 L:      linux-usb@vger.kernel.org
20375 S:      Odd Fixes
20376 F:      drivers/net/usb/
20377
20378 USB OHCI DRIVER
20379 M:      Alan Stern <stern@rowland.harvard.edu>
20380 L:      linux-usb@vger.kernel.org
20381 S:      Maintained
20382 F:      Documentation/usb/ohci.rst
20383 F:      drivers/usb/host/ohci*
20384
20385 USB OTG FSM (Finite State Machine)
20386 M:      Peter Chen <peter.chen@kernel.org>
20387 L:      linux-usb@vger.kernel.org
20388 S:      Maintained
20389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20390 F:      drivers/usb/common/usb-otg-fsm.c
20391
20392 USB OVER IP DRIVER
20393 M:      Valentina Manea <valentina.manea.m@gmail.com>
20394 M:      Shuah Khan <shuah@kernel.org>
20395 M:      Shuah Khan <skhan@linuxfoundation.org>
20396 L:      linux-usb@vger.kernel.org
20397 S:      Maintained
20398 F:      Documentation/usb/usbip_protocol.rst
20399 F:      drivers/usb/usbip/
20400 F:      tools/testing/selftests/drivers/usb/usbip/
20401 F:      tools/usb/usbip/
20402
20403 USB PEGASUS DRIVER
20404 M:      Petko Manolov <petkan@nucleusys.com>
20405 L:      linux-usb@vger.kernel.org
20406 L:      netdev@vger.kernel.org
20407 S:      Maintained
20408 W:      https://github.com/petkan/pegasus
20409 T:      git git://github.com/petkan/pegasus.git
20410 F:      drivers/net/usb/pegasus.*
20411
20412 USB PHY LAYER
20413 M:      Felipe Balbi <balbi@kernel.org>
20414 L:      linux-usb@vger.kernel.org
20415 S:      Maintained
20416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20417 F:      drivers/usb/phy/
20418
20419 USB PRINTER DRIVER (usblp)
20420 M:      Pete Zaitcev <zaitcev@redhat.com>
20421 L:      linux-usb@vger.kernel.org
20422 S:      Supported
20423 F:      drivers/usb/class/usblp.c
20424
20425 USB RAW GADGET DRIVER
20426 R:      Andrey Konovalov <andreyknvl@gmail.com>
20427 L:      linux-usb@vger.kernel.org
20428 S:      Maintained
20429 F:      Documentation/usb/raw-gadget.rst
20430 F:      drivers/usb/gadget/legacy/raw_gadget.c
20431 F:      include/uapi/linux/usb/raw_gadget.h
20432
20433 USB QMI WWAN NETWORK DRIVER
20434 M:      Bjørn Mork <bjorn@mork.no>
20435 L:      netdev@vger.kernel.org
20436 S:      Maintained
20437 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20438 F:      drivers/net/usb/qmi_wwan.c
20439
20440 USB RTL8150 DRIVER
20441 M:      Petko Manolov <petkan@nucleusys.com>
20442 L:      linux-usb@vger.kernel.org
20443 L:      netdev@vger.kernel.org
20444 S:      Maintained
20445 W:      https://github.com/petkan/rtl8150
20446 T:      git git://github.com/petkan/rtl8150.git
20447 F:      drivers/net/usb/rtl8150.c
20448
20449 USB SERIAL SUBSYSTEM
20450 M:      Johan Hovold <johan@kernel.org>
20451 L:      linux-usb@vger.kernel.org
20452 S:      Maintained
20453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20454 F:      Documentation/usb/usb-serial.rst
20455 F:      drivers/usb/serial/
20456 F:      include/linux/usb/serial.h
20457
20458 USB SMSC75XX ETHERNET DRIVER
20459 M:      Steve Glendinning <steve.glendinning@shawell.net>
20460 L:      netdev@vger.kernel.org
20461 S:      Maintained
20462 F:      drivers/net/usb/smsc75xx.*
20463
20464 USB SMSC95XX ETHERNET DRIVER
20465 M:      Steve Glendinning <steve.glendinning@shawell.net>
20466 M:      UNGLinuxDriver@microchip.com
20467 L:      netdev@vger.kernel.org
20468 S:      Maintained
20469 F:      drivers/net/usb/smsc95xx.*
20470
20471 USB SUBSYSTEM
20472 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20473 L:      linux-usb@vger.kernel.org
20474 S:      Supported
20475 W:      http://www.linux-usb.org
20476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20477 F:      Documentation/devicetree/bindings/usb/
20478 F:      Documentation/usb/
20479 F:      drivers/usb/
20480 F:      include/linux/usb.h
20481 F:      include/linux/usb/
20482
20483 USB TYPEC BUS FOR ALTERNATE MODES
20484 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20485 L:      linux-usb@vger.kernel.org
20486 S:      Maintained
20487 F:      Documentation/ABI/testing/sysfs-bus-typec
20488 F:      Documentation/driver-api/usb/typec_bus.rst
20489 F:      drivers/usb/typec/altmodes/
20490 F:      include/linux/usb/typec_altmode.h
20491
20492 USB TYPEC CLASS
20493 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20494 L:      linux-usb@vger.kernel.org
20495 S:      Maintained
20496 F:      Documentation/ABI/testing/sysfs-class-typec
20497 F:      Documentation/driver-api/usb/typec.rst
20498 F:      drivers/usb/typec/
20499 F:      include/linux/usb/typec.h
20500
20501 USB TYPEC INTEL PMC MUX DRIVER
20502 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20503 L:      linux-usb@vger.kernel.org
20504 S:      Maintained
20505 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20506 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20507
20508 USB TYPEC PI3USB30532 MUX DRIVER
20509 M:      Hans de Goede <hdegoede@redhat.com>
20510 L:      linux-usb@vger.kernel.org
20511 S:      Maintained
20512 F:      drivers/usb/typec/mux/pi3usb30532.c
20513
20514 USB TYPEC PORT CONTROLLER DRIVERS
20515 M:      Guenter Roeck <linux@roeck-us.net>
20516 L:      linux-usb@vger.kernel.org
20517 S:      Maintained
20518 F:      drivers/usb/typec/tcpm/
20519
20520 USB UHCI DRIVER
20521 M:      Alan Stern <stern@rowland.harvard.edu>
20522 L:      linux-usb@vger.kernel.org
20523 S:      Maintained
20524 F:      drivers/usb/host/uhci*
20525
20526 USB VIDEO CLASS
20527 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20528 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
20529 L:      linux-media@vger.kernel.org
20530 S:      Maintained
20531 W:      http://www.ideasonboard.org/uvc/
20532 T:      git git://linuxtv.org/media_tree.git
20533 F:      drivers/media/usb/uvc/
20534 F:      include/uapi/linux/uvcvideo.h
20535
20536 USB WEBCAM GADGET
20537 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20538 L:      linux-usb@vger.kernel.org
20539 S:      Maintained
20540 F:      drivers/usb/gadget/function/*uvc*
20541 F:      drivers/usb/gadget/legacy/webcam.c
20542 F:      include/uapi/linux/usb/g_uvc.h
20543
20544 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20545 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20546 L:      linux-wireless@vger.kernel.org
20547 S:      Maintained
20548 F:      drivers/net/wireless/rndis_wlan.c
20549
20550 USB XHCI DRIVER
20551 M:      Mathias Nyman <mathias.nyman@intel.com>
20552 L:      linux-usb@vger.kernel.org
20553 S:      Supported
20554 F:      drivers/usb/host/pci-quirks*
20555 F:      drivers/usb/host/xhci*
20556
20557 USB ZD1201 DRIVER
20558 L:      linux-wireless@vger.kernel.org
20559 S:      Orphan
20560 W:      http://linux-lc100020.sourceforge.net
20561 F:      drivers/net/wireless/zydas/zd1201.*
20562
20563 USB ZR364XX DRIVER
20564 M:      Antoine Jacquet <royale@zerezo.com>
20565 L:      linux-usb@vger.kernel.org
20566 L:      linux-media@vger.kernel.org
20567 S:      Maintained
20568 W:      http://royale.zerezo.com/zr364xx/
20569 T:      git git://linuxtv.org/media_tree.git
20570 F:      Documentation/admin-guide/media/zr364xx*
20571 F:      drivers/media/usb/zr364xx/
20572
20573 USER-MODE LINUX (UML)
20574 M:      Richard Weinberger <richard@nod.at>
20575 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20576 M:      Johannes Berg <johannes@sipsolutions.net>
20577 L:      linux-um@lists.infradead.org
20578 S:      Maintained
20579 W:      http://user-mode-linux.sourceforge.net
20580 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
20582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
20583 F:      Documentation/virt/uml/
20584 F:      arch/um/
20585 F:      arch/x86/um/
20586 F:      fs/hostfs/
20587
20588 USERSPACE COPYIN/COPYOUT (UIOVEC)
20589 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20590 S:      Maintained
20591 F:      include/linux/uio.h
20592 F:      lib/iov_iter.c
20593
20594 USERSPACE DMA BUFFER DRIVER
20595 M:      Gerd Hoffmann <kraxel@redhat.com>
20596 L:      dri-devel@lists.freedesktop.org
20597 S:      Maintained
20598 T:      git git://anongit.freedesktop.org/drm/drm-misc
20599 F:      drivers/dma-buf/udmabuf.c
20600 F:      include/uapi/linux/udmabuf.h
20601
20602 USERSPACE I/O (UIO)
20603 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20604 S:      Maintained
20605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20606 F:      Documentation/driver-api/uio-howto.rst
20607 F:      drivers/uio/
20608 F:      include/linux/uio_driver.h
20609
20610 UTIL-LINUX PACKAGE
20611 M:      Karel Zak <kzak@redhat.com>
20612 L:      util-linux@vger.kernel.org
20613 S:      Maintained
20614 W:      http://en.wikipedia.org/wiki/Util-linux
20615 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20616
20617 UUID HELPERS
20618 M:      Christoph Hellwig <hch@lst.de>
20619 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20620 L:      linux-kernel@vger.kernel.org
20621 S:      Maintained
20622 T:      git git://git.infradead.org/users/hch/uuid.git
20623 F:      include/linux/uuid.h
20624 F:      include/uapi/linux/uuid.h
20625 F:      lib/test_uuid.c
20626 F:      lib/uuid.c
20627
20628 UV SYSFS DRIVER
20629 M:      Justin Ernst <justin.ernst@hpe.com>
20630 L:      platform-driver-x86@vger.kernel.org
20631 S:      Maintained
20632 F:      drivers/platform/x86/uv_sysfs.c
20633
20634 UVESAFB DRIVER
20635 M:      Michal Januszewski <spock@gentoo.org>
20636 L:      linux-fbdev@vger.kernel.org
20637 S:      Maintained
20638 W:      https://github.com/mjanusz/v86d
20639 F:      Documentation/fb/uvesafb.rst
20640 F:      drivers/video/fbdev/uvesafb.*
20641
20642 Ux500 CLOCK DRIVERS
20643 M:      Ulf Hansson <ulf.hansson@linaro.org>
20644 L:      linux-clk@vger.kernel.org
20645 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20646 S:      Maintained
20647 F:      drivers/clk/ux500/
20648
20649 VF610 NAND DRIVER
20650 M:      Stefan Agner <stefan@agner.ch>
20651 L:      linux-mtd@lists.infradead.org
20652 S:      Supported
20653 F:      drivers/mtd/nand/raw/vf610_nfc.c
20654
20655 VFAT/FAT/MSDOS FILESYSTEM
20656 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20657 S:      Maintained
20658 F:      Documentation/filesystems/vfat.rst
20659 F:      fs/fat/
20660
20661 VFIO DRIVER
20662 M:      Alex Williamson <alex.williamson@redhat.com>
20663 R:      Cornelia Huck <cohuck@redhat.com>
20664 L:      kvm@vger.kernel.org
20665 S:      Maintained
20666 T:      git git://github.com/awilliam/linux-vfio.git
20667 F:      Documentation/driver-api/vfio.rst
20668 F:      drivers/vfio/
20669 F:      include/linux/vfio.h
20670 F:      include/linux/vfio_pci_core.h
20671 F:      include/uapi/linux/vfio.h
20672
20673 VFIO FSL-MC DRIVER
20674 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20675 L:      kvm@vger.kernel.org
20676 S:      Maintained
20677 F:      drivers/vfio/fsl-mc/
20678
20679 VFIO HISILICON PCI DRIVER
20680 M:      Longfang Liu <liulongfang@huawei.com>
20681 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20682 L:      kvm@vger.kernel.org
20683 S:      Maintained
20684 F:      drivers/vfio/pci/hisilicon/
20685
20686 VFIO MEDIATED DEVICE DRIVERS
20687 M:      Kirti Wankhede <kwankhede@nvidia.com>
20688 L:      kvm@vger.kernel.org
20689 S:      Maintained
20690 F:      Documentation/driver-api/vfio-mediated-device.rst
20691 F:      drivers/vfio/mdev/
20692 F:      include/linux/mdev.h
20693 F:      samples/vfio-mdev/
20694
20695 VFIO PCI DEVICE SPECIFIC DRIVERS
20696 R:      Jason Gunthorpe <jgg@nvidia.com>
20697 R:      Yishai Hadas <yishaih@nvidia.com>
20698 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20699 R:      Kevin Tian <kevin.tian@intel.com>
20700 L:      kvm@vger.kernel.org
20701 S:      Maintained
20702 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
20703 F:      drivers/vfio/pci/*/
20704
20705 VFIO PLATFORM DRIVER
20706 M:      Eric Auger <eric.auger@redhat.com>
20707 L:      kvm@vger.kernel.org
20708 S:      Maintained
20709 F:      drivers/vfio/platform/
20710
20711 VFIO MLX5 PCI DRIVER
20712 M:      Yishai Hadas <yishaih@nvidia.com>
20713 L:      kvm@vger.kernel.org
20714 S:      Maintained
20715 F:      drivers/vfio/pci/mlx5/
20716
20717 VGA_SWITCHEROO
20718 R:      Lukas Wunner <lukas@wunner.de>
20719 S:      Maintained
20720 T:      git git://anongit.freedesktop.org/drm/drm-misc
20721 F:      Documentation/gpu/vga-switcheroo.rst
20722 F:      drivers/gpu/vga/vga_switcheroo.c
20723 F:      include/linux/vga_switcheroo.h
20724
20725 VIA RHINE NETWORK DRIVER
20726 S:      Maintained
20727 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20728 F:      drivers/net/ethernet/via/via-rhine.c
20729
20730 VIA SD/MMC CARD CONTROLLER DRIVER
20731 M:      Bruce Chang <brucechang@via.com.tw>
20732 M:      Harald Welte <HaraldWelte@viatech.com>
20733 S:      Maintained
20734 F:      drivers/mmc/host/via-sdmmc.c
20735
20736 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20737 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20738 L:      linux-fbdev@vger.kernel.org
20739 S:      Maintained
20740 F:      drivers/video/fbdev/via/
20741 F:      include/linux/via-core.h
20742 F:      include/linux/via-gpio.h
20743 F:      include/linux/via_i2c.h
20744
20745 VIA VELOCITY NETWORK DRIVER
20746 M:      Francois Romieu <romieu@fr.zoreil.com>
20747 L:      netdev@vger.kernel.org
20748 S:      Maintained
20749 F:      drivers/net/ethernet/via/via-velocity.*
20750
20751 VICODEC VIRTUAL CODEC DRIVER
20752 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20753 L:      linux-media@vger.kernel.org
20754 S:      Maintained
20755 W:      https://linuxtv.org
20756 T:      git git://linuxtv.org/media_tree.git
20757 F:      drivers/media/test-drivers/vicodec/*
20758
20759 VIDEO I2C POLLING DRIVER
20760 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20761 L:      linux-media@vger.kernel.org
20762 S:      Maintained
20763 F:      drivers/media/i2c/video-i2c.c
20764
20765 VIDEO MULTIPLEXER DRIVER
20766 M:      Philipp Zabel <p.zabel@pengutronix.de>
20767 L:      linux-media@vger.kernel.org
20768 S:      Maintained
20769 F:      drivers/media/platform/video-mux.c
20770
20771 VIDEOBUF2 FRAMEWORK
20772 M:      Tomasz Figa <tfiga@chromium.org>
20773 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20774 L:      linux-media@vger.kernel.org
20775 S:      Maintained
20776 F:      drivers/media/common/videobuf2/*
20777 F:      include/media/videobuf2-*
20778
20779 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20780 M:      Shuah Khan <skhan@linuxfoundation.org>
20781 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
20782 L:      linux-media@vger.kernel.org
20783 S:      Maintained
20784 W:      https://linuxtv.org
20785 T:      git git://linuxtv.org/media_tree.git
20786 F:      drivers/media/test-drivers/vimc/*
20787
20788 VIRT LIB
20789 M:      Alex Williamson <alex.williamson@redhat.com>
20790 M:      Paolo Bonzini <pbonzini@redhat.com>
20791 L:      kvm@vger.kernel.org
20792 S:      Supported
20793 F:      virt/lib/
20794
20795 VIRTIO AND VHOST VSOCK DRIVER
20796 M:      Stefan Hajnoczi <stefanha@redhat.com>
20797 M:      Stefano Garzarella <sgarzare@redhat.com>
20798 L:      kvm@vger.kernel.org
20799 L:      virtualization@lists.linux-foundation.org
20800 L:      netdev@vger.kernel.org
20801 S:      Maintained
20802 F:      drivers/vhost/vsock.c
20803 F:      include/linux/virtio_vsock.h
20804 F:      include/uapi/linux/virtio_vsock.h
20805 F:      net/vmw_vsock/virtio_transport.c
20806 F:      net/vmw_vsock/virtio_transport_common.c
20807
20808 VIRTIO BLOCK AND SCSI DRIVERS
20809 M:      "Michael S. Tsirkin" <mst@redhat.com>
20810 M:      Jason Wang <jasowang@redhat.com>
20811 R:      Paolo Bonzini <pbonzini@redhat.com>
20812 R:      Stefan Hajnoczi <stefanha@redhat.com>
20813 L:      virtualization@lists.linux-foundation.org
20814 S:      Maintained
20815 F:      drivers/block/virtio_blk.c
20816 F:      drivers/scsi/virtio_scsi.c
20817 F:      drivers/vhost/scsi.c
20818 F:      include/uapi/linux/virtio_blk.h
20819 F:      include/uapi/linux/virtio_scsi.h
20820
20821 VIRTIO CONSOLE DRIVER
20822 M:      Amit Shah <amit@kernel.org>
20823 L:      virtualization@lists.linux-foundation.org
20824 S:      Maintained
20825 F:      drivers/char/virtio_console.c
20826 F:      include/linux/virtio_console.h
20827 F:      include/uapi/linux/virtio_console.h
20828
20829 VIRTIO CORE AND NET DRIVERS
20830 M:      "Michael S. Tsirkin" <mst@redhat.com>
20831 M:      Jason Wang <jasowang@redhat.com>
20832 L:      virtualization@lists.linux-foundation.org
20833 S:      Maintained
20834 F:      Documentation/ABI/testing/sysfs-bus-vdpa
20835 F:      Documentation/devicetree/bindings/virtio/
20836 F:      drivers/block/virtio_blk.c
20837 F:      drivers/crypto/virtio/
20838 F:      drivers/net/virtio_net.c
20839 F:      drivers/vdpa/
20840 F:      drivers/virtio/
20841 F:      include/linux/vdpa.h
20842 F:      include/linux/virtio*.h
20843 F:      include/uapi/linux/virtio_*.h
20844 F:      tools/virtio/
20845
20846 VIRTIO BALLOON
20847 M:      "Michael S. Tsirkin" <mst@redhat.com>
20848 M:      David Hildenbrand <david@redhat.com>
20849 L:      virtualization@lists.linux-foundation.org
20850 S:      Maintained
20851 F:      drivers/virtio/virtio_balloon.c
20852 F:      include/uapi/linux/virtio_balloon.h
20853 F:      include/linux/balloon_compaction.h
20854 F:      mm/balloon_compaction.c
20855
20856 VIRTIO CRYPTO DRIVER
20857 M:      Gonglei <arei.gonglei@huawei.com>
20858 L:      virtualization@lists.linux-foundation.org
20859 L:      linux-crypto@vger.kernel.org
20860 S:      Maintained
20861 F:      drivers/crypto/virtio/
20862 F:      include/uapi/linux/virtio_crypto.h
20863
20864 VIRTIO DRIVERS FOR S390
20865 M:      Cornelia Huck <cohuck@redhat.com>
20866 M:      Halil Pasic <pasic@linux.ibm.com>
20867 L:      linux-s390@vger.kernel.org
20868 L:      virtualization@lists.linux-foundation.org
20869 L:      kvm@vger.kernel.org
20870 S:      Supported
20871 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20872 F:      drivers/s390/virtio/
20873
20874 VIRTIO FILE SYSTEM
20875 M:      Vivek Goyal <vgoyal@redhat.com>
20876 M:      Stefan Hajnoczi <stefanha@redhat.com>
20877 M:      Miklos Szeredi <miklos@szeredi.hu>
20878 L:      virtualization@lists.linux-foundation.org
20879 L:      linux-fsdevel@vger.kernel.org
20880 S:      Supported
20881 W:      https://virtio-fs.gitlab.io/
20882 F:      Documentation/filesystems/virtiofs.rst
20883 F:      fs/fuse/virtio_fs.c
20884 F:      include/uapi/linux/virtio_fs.h
20885
20886 VIRTIO GPIO DRIVER
20887 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20888 M:      Viresh Kumar <vireshk@kernel.org>
20889 L:      linux-gpio@vger.kernel.org
20890 L:      virtualization@lists.linux-foundation.org
20891 S:      Maintained
20892 F:      drivers/gpio/gpio-virtio.c
20893 F:      include/uapi/linux/virtio_gpio.h
20894
20895 VIRTIO GPU DRIVER
20896 M:      David Airlie <airlied@linux.ie>
20897 M:      Gerd Hoffmann <kraxel@redhat.com>
20898 R:      Gurchetan Singh <gurchetansingh@chromium.org>
20899 R:      Chia-I Wu <olvaffe@gmail.com>
20900 L:      dri-devel@lists.freedesktop.org
20901 L:      virtualization@lists.linux-foundation.org
20902 S:      Maintained
20903 T:      git git://anongit.freedesktop.org/drm/drm-misc
20904 F:      drivers/gpu/drm/virtio/
20905 F:      include/uapi/linux/virtio_gpu.h
20906
20907 VIRTIO HOST (VHOST)
20908 M:      "Michael S. Tsirkin" <mst@redhat.com>
20909 M:      Jason Wang <jasowang@redhat.com>
20910 L:      kvm@vger.kernel.org
20911 L:      virtualization@lists.linux-foundation.org
20912 L:      netdev@vger.kernel.org
20913 S:      Maintained
20914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20915 F:      drivers/vhost/
20916 F:      include/linux/vhost_iotlb.h
20917 F:      include/uapi/linux/vhost.h
20918
20919 VIRTIO INPUT DRIVER
20920 M:      Gerd Hoffmann <kraxel@redhat.com>
20921 S:      Maintained
20922 F:      drivers/virtio/virtio_input.c
20923 F:      include/uapi/linux/virtio_input.h
20924
20925 VIRTIO IOMMU DRIVER
20926 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20927 L:      virtualization@lists.linux-foundation.org
20928 S:      Maintained
20929 F:      drivers/iommu/virtio-iommu.c
20930 F:      include/uapi/linux/virtio_iommu.h
20931
20932 VIRTIO MEM DRIVER
20933 M:      David Hildenbrand <david@redhat.com>
20934 L:      virtualization@lists.linux-foundation.org
20935 S:      Maintained
20936 W:      https://virtio-mem.gitlab.io/
20937 F:      drivers/virtio/virtio_mem.c
20938 F:      include/uapi/linux/virtio_mem.h
20939
20940 VIRTIO SOUND DRIVER
20941 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20942 M:      "Michael S. Tsirkin" <mst@redhat.com>
20943 L:      virtualization@lists.linux-foundation.org
20944 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20945 S:      Maintained
20946 F:      include/uapi/linux/virtio_snd.h
20947 F:      sound/virtio/*
20948
20949 VIRTIO I2C DRIVER
20950 M:      Conghui Chen <conghui.chen@intel.com>
20951 M:      Viresh Kumar <viresh.kumar@linaro.org>
20952 L:      linux-i2c@vger.kernel.org
20953 L:      virtualization@lists.linux-foundation.org
20954 S:      Maintained
20955 F:      drivers/i2c/busses/i2c-virtio.c
20956 F:      include/uapi/linux/virtio_i2c.h
20957
20958 VIRTIO PMEM DRIVER
20959 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20960 L:      virtualization@lists.linux-foundation.org
20961 S:      Maintained
20962 F:      drivers/nvdimm/virtio_pmem.c
20963 F:      drivers/nvdimm/nd_virtio.c
20964
20965 VIRTUAL BOX GUEST DEVICE DRIVER
20966 M:      Hans de Goede <hdegoede@redhat.com>
20967 M:      Arnd Bergmann <arnd@arndb.de>
20968 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20969 S:      Maintained
20970 F:      drivers/virt/vboxguest/
20971 F:      include/linux/vbox_utils.h
20972 F:      include/uapi/linux/vbox*.h
20973
20974 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20975 M:      Hans de Goede <hdegoede@redhat.com>
20976 L:      linux-fsdevel@vger.kernel.org
20977 S:      Maintained
20978 F:      fs/vboxsf/*
20979
20980 VIRTUAL SERIO DEVICE DRIVER
20981 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20982 S:      Maintained
20983 F:      drivers/input/serio/userio.c
20984 F:      include/uapi/linux/userio.h
20985
20986 VIVID VIRTUAL VIDEO DRIVER
20987 M:      Hans Verkuil <hverkuil@xs4all.nl>
20988 L:      linux-media@vger.kernel.org
20989 S:      Maintained
20990 W:      https://linuxtv.org
20991 T:      git git://linuxtv.org/media_tree.git
20992 F:      drivers/media/test-drivers/vivid/*
20993
20994 VIDTV VIRTUAL DIGITAL TV DRIVER
20995 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20996 L:      linux-media@vger.kernel.org
20997 S:      Maintained
20998 W:      https://linuxtv.org
20999 T:      git git://linuxtv.org/media_tree.git
21000 F:      drivers/media/test-drivers/vidtv/*
21001
21002 VLYNQ BUS
21003 M:      Florian Fainelli <f.fainelli@gmail.com>
21004 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21005 S:      Maintained
21006 F:      drivers/vlynq/vlynq.c
21007 F:      include/linux/vlynq.h
21008
21009 VME SUBSYSTEM
21010 M:      Martyn Welch <martyn@welchs.me.uk>
21011 M:      Manohar Vanga <manohar.vanga@gmail.com>
21012 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21013 L:      linux-kernel@vger.kernel.org
21014 S:      Maintained
21015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21016 F:      Documentation/driver-api/vme.rst
21017 F:      drivers/staging/vme/
21018 F:      drivers/vme/
21019 F:      include/linux/vme*
21020
21021 VM SOCKETS (AF_VSOCK)
21022 M:      Stefano Garzarella <sgarzare@redhat.com>
21023 L:      virtualization@lists.linux-foundation.org
21024 L:      netdev@vger.kernel.org
21025 S:      Maintained
21026 F:      drivers/net/vsockmon.c
21027 F:      include/net/af_vsock.h
21028 F:      include/uapi/linux/vm_sockets.h
21029 F:      include/uapi/linux/vm_sockets_diag.h
21030 F:      include/uapi/linux/vsockmon.h
21031 F:      net/vmw_vsock/
21032 F:      tools/testing/vsock/
21033
21034 VMWARE BALLOON DRIVER
21035 M:      Nadav Amit <namit@vmware.com>
21036 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21037 L:      linux-kernel@vger.kernel.org
21038 S:      Maintained
21039 F:      drivers/misc/vmw_balloon.c
21040
21041 VMWARE HYPERVISOR INTERFACE
21042 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21043 M:      Alexey Makhalov <amakhalov@vmware.com>
21044 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21045 L:      virtualization@lists.linux-foundation.org
21046 L:      x86@kernel.org
21047 S:      Supported
21048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21049 F:      arch/x86/include/asm/vmware.h
21050 F:      arch/x86/kernel/cpu/vmware.c
21051
21052 VMWARE PVRDMA DRIVER
21053 M:      Bryan Tan <bryantan@vmware.com>
21054 M:      Vishnu Dasa <vdasa@vmware.com>
21055 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21056 L:      linux-rdma@vger.kernel.org
21057 S:      Maintained
21058 F:      drivers/infiniband/hw/vmw_pvrdma/
21059
21060 VMware PVSCSI driver
21061 M:      Vishal Bhakta <vbhakta@vmware.com>
21062 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21063 L:      linux-scsi@vger.kernel.org
21064 S:      Maintained
21065 F:      drivers/scsi/vmw_pvscsi.c
21066 F:      drivers/scsi/vmw_pvscsi.h
21067
21068 VMWARE VIRTUAL PTP CLOCK DRIVER
21069 M:      Vivek Thampi <vithampi@vmware.com>
21070 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21071 L:      netdev@vger.kernel.org
21072 S:      Supported
21073 F:      drivers/ptp/ptp_vmw.c
21074
21075 VMWARE VMCI DRIVER
21076 M:      Bryan Tan <bryantan@vmware.com>
21077 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21078 M:      Vishnu Dasa <vdasa@vmware.com>
21079 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21080 L:      linux-kernel@vger.kernel.org
21081 S:      Maintained
21082 F:      drivers/misc/vmw_vmci/
21083
21084 VMWARE VMMOUSE SUBDRIVER
21085 M:      Zack Rusin <zackr@vmware.com>
21086 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21087 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21088 L:      linux-input@vger.kernel.org
21089 S:      Maintained
21090 F:      drivers/input/mouse/vmmouse.c
21091 F:      drivers/input/mouse/vmmouse.h
21092
21093 VMWARE VMXNET3 ETHERNET DRIVER
21094 M:      Ronak Doshi <doshir@vmware.com>
21095 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21096 L:      netdev@vger.kernel.org
21097 S:      Maintained
21098 F:      drivers/net/vmxnet3/
21099
21100 VOCORE VOCORE2 BOARD
21101 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21102 L:      linux-mips@vger.kernel.org
21103 S:      Maintained
21104 F:      arch/mips/boot/dts/ralink/vocore2.dts
21105
21106 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21107 M:      Liam Girdwood <lgirdwood@gmail.com>
21108 M:      Mark Brown <broonie@kernel.org>
21109 L:      linux-kernel@vger.kernel.org
21110 S:      Supported
21111 W:      http://www.slimlogic.co.uk/?p=48
21112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21113 F:      Documentation/devicetree/bindings/regulator/
21114 F:      Documentation/power/regulator/
21115 F:      drivers/regulator/
21116 F:      include/dt-bindings/regulator/
21117 F:      include/linux/regulator/
21118 K:      regulator_get_optional
21119
21120 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21121 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21122 F:      drivers/regulator/irq_helpers.c
21123
21124 VRF
21125 M:      David Ahern <dsahern@kernel.org>
21126 L:      netdev@vger.kernel.org
21127 S:      Maintained
21128 F:      Documentation/networking/vrf.rst
21129 F:      drivers/net/vrf.c
21130
21131 VSPRINTF
21132 M:      Petr Mladek <pmladek@suse.com>
21133 M:      Steven Rostedt <rostedt@goodmis.org>
21134 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21135 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21136 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21137 S:      Maintained
21138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21139 F:      Documentation/core-api/printk-formats.rst
21140 F:      lib/test_printf.c
21141 F:      lib/test_scanf.c
21142 F:      lib/vsprintf.c
21143
21144 VT1211 HARDWARE MONITOR DRIVER
21145 M:      Juerg Haefliger <juergh@gmail.com>
21146 L:      linux-hwmon@vger.kernel.org
21147 S:      Maintained
21148 F:      Documentation/hwmon/vt1211.rst
21149 F:      drivers/hwmon/vt1211.c
21150
21151 VT8231 HARDWARE MONITOR DRIVER
21152 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21153 L:      linux-hwmon@vger.kernel.org
21154 S:      Maintained
21155 F:      drivers/hwmon/vt8231.c
21156
21157 VUB300 USB to SDIO/SD/MMC bridge chip
21158 L:      linux-mmc@vger.kernel.org
21159 S:      Orphan
21160 F:      drivers/mmc/host/vub300.c
21161
21162 W1 DALLAS'S 1-WIRE BUS
21163 M:      Evgeniy Polyakov <zbr@ioremap.net>
21164 S:      Maintained
21165 F:      Documentation/devicetree/bindings/w1/
21166 F:      Documentation/w1/
21167 F:      drivers/w1/
21168 F:      include/linux/w1.h
21169
21170 W83791D HARDWARE MONITORING DRIVER
21171 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21172 L:      linux-hwmon@vger.kernel.org
21173 S:      Maintained
21174 F:      Documentation/hwmon/w83791d.rst
21175 F:      drivers/hwmon/w83791d.c
21176
21177 W83793 HARDWARE MONITORING DRIVER
21178 M:      Rudolf Marek <r.marek@assembler.cz>
21179 L:      linux-hwmon@vger.kernel.org
21180 S:      Maintained
21181 F:      Documentation/hwmon/w83793.rst
21182 F:      drivers/hwmon/w83793.c
21183
21184 W83795 HARDWARE MONITORING DRIVER
21185 M:      Jean Delvare <jdelvare@suse.com>
21186 L:      linux-hwmon@vger.kernel.org
21187 S:      Maintained
21188 F:      drivers/hwmon/w83795.c
21189
21190 W83L51xD SD/MMC CARD INTERFACE DRIVER
21191 M:      Pierre Ossman <pierre@ossman.eu>
21192 S:      Maintained
21193 F:      drivers/mmc/host/wbsd.*
21194
21195 WACOM PROTOCOL 4 SERIAL TABLETS
21196 M:      Julian Squires <julian@cipht.net>
21197 M:      Hans de Goede <hdegoede@redhat.com>
21198 L:      linux-input@vger.kernel.org
21199 S:      Maintained
21200 F:      drivers/input/tablet/wacom_serial4.c
21201
21202 WATCHDOG DEVICE DRIVERS
21203 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21204 M:      Guenter Roeck <linux@roeck-us.net>
21205 L:      linux-watchdog@vger.kernel.org
21206 S:      Maintained
21207 W:      http://www.linux-watchdog.org/
21208 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21209 F:      Documentation/devicetree/bindings/watchdog/
21210 F:      Documentation/watchdog/
21211 F:      drivers/watchdog/
21212 F:      include/linux/watchdog.h
21213 F:      include/uapi/linux/watchdog.h
21214
21215 WHISKEYCOVE PMIC GPIO DRIVER
21216 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21217 L:      linux-gpio@vger.kernel.org
21218 S:      Maintained
21219 F:      drivers/gpio/gpio-wcove.c
21220
21221 WHWAVE RTC DRIVER
21222 M:      Dianlong Li <long17.cool@163.com>
21223 L:      linux-rtc@vger.kernel.org
21224 S:      Maintained
21225 F:      drivers/rtc/rtc-sd3078.c
21226
21227 WIIMOTE HID DRIVER
21228 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21229 L:      linux-input@vger.kernel.org
21230 S:      Maintained
21231 F:      drivers/hid/hid-wiimote*
21232
21233 WILOCITY WIL6210 WIRELESS DRIVER
21234 M:      Maya Erez <merez@codeaurora.org>
21235 L:      linux-wireless@vger.kernel.org
21236 L:      wil6210@qti.qualcomm.com
21237 S:      Supported
21238 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21239 F:      drivers/net/wireless/ath/wil6210/
21240
21241 WINBOND CIR DRIVER
21242 M:      David Härdeman <david@hardeman.nu>
21243 S:      Maintained
21244 F:      drivers/media/rc/winbond-cir.c
21245
21246 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21247 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21248 L:      linux-watchdog@vger.kernel.org
21249 S:      Maintained
21250 F:      drivers/watchdog/ebc-c384_wdt.c
21251
21252 WINSYSTEMS WS16C48 GPIO DRIVER
21253 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21254 L:      linux-gpio@vger.kernel.org
21255 S:      Maintained
21256 F:      drivers/gpio/gpio-ws16c48.c
21257
21258 WIREGUARD SECURE NETWORK TUNNEL
21259 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21260 L:      wireguard@lists.zx2c4.com
21261 L:      netdev@vger.kernel.org
21262 S:      Maintained
21263 F:      drivers/net/wireguard/
21264 F:      tools/testing/selftests/wireguard/
21265
21266 WISTRON LAPTOP BUTTON DRIVER
21267 M:      Miloslav Trmac <mitr@volny.cz>
21268 S:      Maintained
21269 F:      drivers/input/misc/wistron_btns.c
21270
21271 WL3501 WIRELESS PCMCIA CARD DRIVER
21272 L:      linux-wireless@vger.kernel.org
21273 S:      Odd fixes
21274 F:      drivers/net/wireless/wl3501*
21275
21276 WOLFSON MICROELECTRONICS DRIVERS
21277 L:      patches@opensource.cirrus.com
21278 S:      Supported
21279 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21280 T:      git https://github.com/CirrusLogic/linux-drivers.git
21281 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21282 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21283 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21284 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21285 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21286 F:      Documentation/devicetree/bindings/sound/wm*
21287 F:      Documentation/hwmon/wm83??.rst
21288 F:      arch/arm/mach-s3c/mach-crag6410*
21289 F:      drivers/clk/clk-wm83*.c
21290 F:      drivers/gpio/gpio-*wm*.c
21291 F:      drivers/gpio/gpio-arizona.c
21292 F:      drivers/hwmon/wm83??-hwmon.c
21293 F:      drivers/input/misc/wm831x-on.c
21294 F:      drivers/input/touchscreen/wm831x-ts.c
21295 F:      drivers/input/touchscreen/wm97*.c
21296 F:      drivers/leds/leds-wm83*.c
21297 F:      drivers/mfd/arizona*
21298 F:      drivers/mfd/cs47l24*
21299 F:      drivers/mfd/wm*.c
21300 F:      drivers/power/supply/wm83*.c
21301 F:      drivers/regulator/arizona*
21302 F:      drivers/regulator/wm8*.c
21303 F:      drivers/rtc/rtc-wm83*.c
21304 F:      drivers/video/backlight/wm83*_bl.c
21305 F:      drivers/watchdog/wm83*_wdt.c
21306 F:      include/linux/mfd/arizona/
21307 F:      include/linux/mfd/wm831x/
21308 F:      include/linux/mfd/wm8350/
21309 F:      include/linux/mfd/wm8400*
21310 F:      include/linux/regulator/arizona*
21311 F:      include/linux/wm97xx.h
21312 F:      include/sound/wm????.h
21313 F:      sound/soc/codecs/arizona*
21314 F:      sound/soc/codecs/cs47l24*
21315 F:      sound/soc/codecs/wm*
21316
21317 WORKQUEUE
21318 M:      Tejun Heo <tj@kernel.org>
21319 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21320 S:      Maintained
21321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21322 F:      Documentation/core-api/workqueue.rst
21323 F:      include/linux/workqueue.h
21324 F:      kernel/workqueue.c
21325
21326 WWAN DRIVERS
21327 M:      Loic Poulain <loic.poulain@linaro.org>
21328 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21329 R:      Johannes Berg <johannes@sipsolutions.net>
21330 L:      netdev@vger.kernel.org
21331 S:      Maintained
21332 F:      drivers/net/wwan/
21333 F:      include/linux/wwan.h
21334 F:      include/uapi/linux/wwan.h
21335
21336 X-POWERS AXP288 PMIC DRIVERS
21337 M:      Hans de Goede <hdegoede@redhat.com>
21338 S:      Maintained
21339 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21340 N:      axp288
21341
21342 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21343 M:      Chen-Yu Tsai <wens@csie.org>
21344 L:      linux-kernel@vger.kernel.org
21345 S:      Maintained
21346 N:      axp[128]
21347
21348 X.25 STACK
21349 M:      Martin Schiller <ms@dev.tdt.de>
21350 L:      linux-x25@vger.kernel.org
21351 S:      Maintained
21352 F:      Documentation/networking/lapb-module.rst
21353 F:      Documentation/networking/x25*
21354 F:      drivers/net/wan/hdlc_x25.c
21355 F:      drivers/net/wan/lapbether.c
21356 F:      include/*/lapb.h
21357 F:      include/net/x25*
21358 F:      include/uapi/linux/x25.h
21359 F:      net/lapb/
21360 F:      net/x25/
21361
21362 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21363 M:      Thomas Gleixner <tglx@linutronix.de>
21364 M:      Ingo Molnar <mingo@redhat.com>
21365 M:      Borislav Petkov <bp@alien8.de>
21366 M:      Dave Hansen <dave.hansen@linux.intel.com>
21367 M:      x86@kernel.org
21368 R:      "H. Peter Anvin" <hpa@zytor.com>
21369 L:      linux-kernel@vger.kernel.org
21370 S:      Maintained
21371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21372 F:      Documentation/devicetree/bindings/x86/
21373 F:      Documentation/x86/
21374 F:      arch/x86/
21375
21376 X86 ENTRY CODE
21377 M:      Andy Lutomirski <luto@kernel.org>
21378 L:      linux-kernel@vger.kernel.org
21379 S:      Maintained
21380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21381 F:      arch/x86/entry/
21382
21383 X86 MCE INFRASTRUCTURE
21384 M:      Tony Luck <tony.luck@intel.com>
21385 M:      Borislav Petkov <bp@alien8.de>
21386 L:      linux-edac@vger.kernel.org
21387 S:      Maintained
21388 F:      Documentation/ABI/testing/sysfs-mce
21389 F:      Documentation/x86/x86_64/machinecheck.rst
21390 F:      arch/x86/kernel/cpu/mce/*
21391
21392 X86 MICROCODE UPDATE SUPPORT
21393 M:      Borislav Petkov <bp@alien8.de>
21394 S:      Maintained
21395 F:      arch/x86/kernel/cpu/microcode/*
21396
21397 X86 MM
21398 M:      Dave Hansen <dave.hansen@linux.intel.com>
21399 M:      Andy Lutomirski <luto@kernel.org>
21400 M:      Peter Zijlstra <peterz@infradead.org>
21401 L:      linux-kernel@vger.kernel.org
21402 S:      Maintained
21403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21404 F:      arch/x86/mm/
21405
21406 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21407 M:      Hans de Goede <hdegoede@redhat.com>
21408 L:      platform-driver-x86@vger.kernel.org
21409 S:      Maintained
21410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21411 F:      drivers/platform/x86/x86-android-tablets.c
21412
21413 X86 PLATFORM DRIVERS
21414 M:      Hans de Goede <hdegoede@redhat.com>
21415 M:      Mark Gross <markgross@kernel.org>
21416 L:      platform-driver-x86@vger.kernel.org
21417 S:      Maintained
21418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21419 F:      drivers/platform/olpc/
21420 F:      drivers/platform/x86/
21421
21422 X86 PLATFORM DRIVERS - ARCH
21423 R:      Darren Hart <dvhart@infradead.org>
21424 R:      Andy Shevchenko <andy@infradead.org>
21425 L:      platform-driver-x86@vger.kernel.org
21426 L:      x86@kernel.org
21427 S:      Maintained
21428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21429 F:      arch/x86/platform
21430
21431 X86 PLATFORM UV HPE SUPERDOME FLEX
21432 M:      Steve Wahl <steve.wahl@hpe.com>
21433 R:      Mike Travis <mike.travis@hpe.com>
21434 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21435 R:      Russ Anderson <russ.anderson@hpe.com>
21436 S:      Supported
21437 F:      arch/x86/include/asm/uv/
21438 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21439 F:      arch/x86/platform/uv/
21440
21441 X86 VDSO
21442 M:      Andy Lutomirski <luto@kernel.org>
21443 L:      linux-kernel@vger.kernel.org
21444 S:      Maintained
21445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21446 F:      arch/x86/entry/vdso/
21447
21448 XARRAY
21449 M:      Matthew Wilcox <willy@infradead.org>
21450 L:      linux-fsdevel@vger.kernel.org
21451 S:      Supported
21452 F:      Documentation/core-api/xarray.rst
21453 F:      include/linux/idr.h
21454 F:      include/linux/xarray.h
21455 F:      lib/idr.c
21456 F:      lib/xarray.c
21457 F:      tools/testing/radix-tree
21458
21459 XBOX DVD IR REMOTE
21460 M:      Benjamin Valentin <benpicco@googlemail.com>
21461 S:      Maintained
21462 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21463 F:      drivers/media/rc/xbox_remote.c
21464
21465 XC2028/3028 TUNER DRIVER
21466 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21467 L:      linux-media@vger.kernel.org
21468 S:      Maintained
21469 W:      https://linuxtv.org
21470 T:      git git://linuxtv.org/media_tree.git
21471 F:      drivers/media/tuners/xc2028.*
21472
21473 XDP (eXpress Data Path)
21474 M:      Alexei Starovoitov <ast@kernel.org>
21475 M:      Daniel Borkmann <daniel@iogearbox.net>
21476 M:      David S. Miller <davem@davemloft.net>
21477 M:      Jakub Kicinski <kuba@kernel.org>
21478 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21479 M:      John Fastabend <john.fastabend@gmail.com>
21480 L:      netdev@vger.kernel.org
21481 L:      bpf@vger.kernel.org
21482 S:      Supported
21483 F:      include/net/xdp.h
21484 F:      include/net/xdp_priv.h
21485 F:      include/trace/events/xdp.h
21486 F:      kernel/bpf/cpumap.c
21487 F:      kernel/bpf/devmap.c
21488 F:      net/core/xdp.c
21489 F:      samples/bpf/xdp*
21490 F:      tools/testing/selftests/bpf/*xdp*
21491 F:      tools/testing/selftests/bpf/*/*xdp*
21492 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21493 F:      drivers/net/ethernet/*/*/*xdp*
21494 K:      (?:\b|_)xdp(?:\b|_)
21495
21496 XDP SOCKETS (AF_XDP)
21497 M:      Björn Töpel <bjorn@kernel.org>
21498 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21499 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21500 L:      netdev@vger.kernel.org
21501 L:      bpf@vger.kernel.org
21502 S:      Maintained
21503 F:      Documentation/networking/af_xdp.rst
21504 F:      include/net/xdp_sock*
21505 F:      include/net/xsk_buff_pool.h
21506 F:      include/uapi/linux/if_xdp.h
21507 F:      include/uapi/linux/xdp_diag.h
21508 F:      include/net/netns/xdp.h
21509 F:      net/xdp/
21510 F:      samples/bpf/xdpsock*
21511 F:      tools/lib/bpf/xsk*
21512
21513 XEN BLOCK SUBSYSTEM
21514 M:      Roger Pau Monné <roger.pau@citrix.com>
21515 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21516 S:      Supported
21517 F:      drivers/block/xen*
21518 F:      drivers/block/xen-blkback/*
21519
21520 XEN HYPERVISOR ARM
21521 M:      Stefano Stabellini <sstabellini@kernel.org>
21522 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21523 S:      Maintained
21524 F:      arch/arm/include/asm/xen/
21525 F:      arch/arm/xen/
21526
21527 XEN HYPERVISOR ARM64
21528 M:      Stefano Stabellini <sstabellini@kernel.org>
21529 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21530 S:      Maintained
21531 F:      arch/arm64/include/asm/xen/
21532 F:      arch/arm64/xen/
21533
21534 XEN HYPERVISOR INTERFACE
21535 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21536 M:      Juergen Gross <jgross@suse.com>
21537 R:      Stefano Stabellini <sstabellini@kernel.org>
21538 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21539 S:      Supported
21540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21541 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21542 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21543 F:      arch/x86/include/asm/pvclock-abi.h
21544 F:      arch/x86/include/asm/xen/
21545 F:      arch/x86/platform/pvh/
21546 F:      arch/x86/xen/
21547 F:      drivers/*/xen-*front.c
21548 F:      drivers/xen/
21549 F:      include/uapi/xen/
21550 F:      include/xen/
21551
21552 XEN NETWORK BACKEND DRIVER
21553 M:      Wei Liu <wei.liu@kernel.org>
21554 M:      Paul Durrant <paul@xen.org>
21555 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21556 L:      netdev@vger.kernel.org
21557 S:      Supported
21558 F:      drivers/net/xen-netback/*
21559
21560 XEN PCI SUBSYSTEM
21561 M:      Juergen Gross <jgross@suse.com>
21562 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21563 S:      Supported
21564 F:      arch/x86/pci/*xen*
21565 F:      drivers/pci/*xen*
21566
21567 XEN PVSCSI DRIVERS
21568 M:      Juergen Gross <jgross@suse.com>
21569 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21570 L:      linux-scsi@vger.kernel.org
21571 S:      Supported
21572 F:      drivers/scsi/xen-scsifront.c
21573 F:      drivers/xen/xen-scsiback.c
21574 F:      include/xen/interface/io/vscsiif.h
21575
21576 XEN PVUSB DRIVER
21577 M:      Juergen Gross <jgross@suse.com>
21578 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21579 L:      linux-usb@vger.kernel.org
21580 S:      Supported
21581 F:      drivers/usb/host/xen*
21582 F:      include/xen/interface/io/usbif.h
21583
21584 XEN SOUND FRONTEND DRIVER
21585 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21586 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21587 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21588 S:      Supported
21589 F:      sound/xen/*
21590
21591 XEN SWIOTLB SUBSYSTEM
21592 M:      Juergen Gross <jgross@suse.com>
21593 M:      Stefano Stabellini <sstabellini@kernel.org>
21594 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21595 L:      iommu@lists.linux-foundation.org
21596 S:      Supported
21597 F:      arch/x86/xen/*swiotlb*
21598 F:      drivers/xen/*swiotlb*
21599
21600 XFS FILESYSTEM
21601 C:      irc://irc.oftc.net/xfs
21602 M:      Darrick J. Wong <djwong@kernel.org>
21603 M:      linux-xfs@vger.kernel.org
21604 L:      linux-xfs@vger.kernel.org
21605 S:      Supported
21606 W:      http://xfs.org/
21607 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21608 F:      Documentation/ABI/testing/sysfs-fs-xfs
21609 F:      Documentation/admin-guide/xfs.rst
21610 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21611 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21612 F:      fs/xfs/
21613 F:      include/uapi/linux/dqblk_xfs.h
21614 F:      include/uapi/linux/fsmap.h
21615
21616 XILINX AMS DRIVER
21617 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21618 L:      linux-iio@vger.kernel.org
21619 S:      Maintained
21620 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21621 F:      drivers/iio/adc/xilinx-ams.c
21622
21623 XILINX AXI ETHERNET DRIVER
21624 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21625 S:      Maintained
21626 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21627
21628 XILINX CAN DRIVER
21629 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21630 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21631 L:      linux-can@vger.kernel.org
21632 S:      Maintained
21633 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
21634 F:      drivers/net/can/xilinx_can.c
21635
21636 XILINX GPIO DRIVER
21637 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21638 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21639 R:      Michal Simek <michal.simek@xilinx.com>
21640 S:      Maintained
21641 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21642 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21643 F:      drivers/gpio/gpio-xilinx.c
21644 F:      drivers/gpio/gpio-zynq.c
21645
21646 XILINX SD-FEC IP CORES
21647 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21648 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21649 S:      Maintained
21650 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21651 F:      Documentation/misc-devices/xilinx_sdfec.rst
21652 F:      drivers/misc/Kconfig
21653 F:      drivers/misc/Makefile
21654 F:      drivers/misc/xilinx_sdfec.c
21655 F:      include/uapi/misc/xilinx_sdfec.h
21656
21657 XILINX UARTLITE SERIAL DRIVER
21658 M:      Peter Korsgaard <jacmet@sunsite.dk>
21659 L:      linux-serial@vger.kernel.org
21660 S:      Maintained
21661 F:      drivers/tty/serial/uartlite.c
21662
21663 XILINX VIDEO IP CORES
21664 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21665 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21666 L:      linux-media@vger.kernel.org
21667 S:      Supported
21668 T:      git git://linuxtv.org/media_tree.git
21669 F:      Documentation/devicetree/bindings/media/xilinx/
21670 F:      drivers/media/platform/xilinx/
21671 F:      include/uapi/linux/xilinx-v4l2-controls.h
21672
21673 XILINX ZYNQMP DPDMA DRIVER
21674 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21675 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21676 L:      dmaengine@vger.kernel.org
21677 S:      Supported
21678 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21679 F:      drivers/dma/xilinx/xilinx_dpdma.c
21680 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21681
21682 XILINX ZYNQMP PSGTR PHY DRIVER
21683 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21684 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21685 L:      linux-kernel@vger.kernel.org
21686 S:      Supported
21687 T:      git https://github.com/Xilinx/linux-xlnx.git
21688 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21689 F:      drivers/phy/xilinx/phy-zynqmp.c
21690
21691 XILINX ZYNQMP SHA3 DRIVER
21692 M:      Harsha <harsha.harsha@xilinx.com>
21693 S:      Maintained
21694 F:      drivers/crypto/xilinx/zynqmp-sha.c
21695
21696 XILINX EVENT MANAGEMENT DRIVER
21697 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21698 S:      Maintained
21699 F:      drivers/soc/xilinx/xlnx_event_manager.c
21700 F:      include/linux/firmware/xlnx-event-manager.h
21701
21702 XILLYBUS DRIVER
21703 M:      Eli Billauer <eli.billauer@gmail.com>
21704 L:      linux-kernel@vger.kernel.org
21705 S:      Supported
21706 F:      drivers/char/xillybus/
21707
21708 XLP9XX I2C DRIVER
21709 M:      George Cherian <gcherian@marvell.com>
21710 L:      linux-i2c@vger.kernel.org
21711 S:      Supported
21712 W:      http://www.marvell.com
21713 F:      drivers/i2c/busses/i2c-xlp9xx.c
21714
21715 XRA1403 GPIO EXPANDER
21716 M:      Nandor Han <nandor.han@ge.com>
21717 M:      Semi Malinen <semi.malinen@ge.com>
21718 L:      linux-gpio@vger.kernel.org
21719 S:      Maintained
21720 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21721 F:      drivers/gpio/gpio-xra1403.c
21722
21723 XTENSA XTFPGA PLATFORM SUPPORT
21724 M:      Max Filippov <jcmvbkbc@gmail.com>
21725 L:      linux-xtensa@linux-xtensa.org
21726 S:      Maintained
21727 F:      drivers/spi/spi-xtensa-xtfpga.c
21728 F:      sound/soc/xtensa/xtfpga-i2s.c
21729
21730 YAM DRIVER FOR AX.25
21731 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21732 L:      linux-hams@vger.kernel.org
21733 S:      Maintained
21734 F:      drivers/net/hamradio/yam*
21735 F:      include/linux/yam.h
21736
21737 YAMA SECURITY MODULE
21738 M:      Kees Cook <keescook@chromium.org>
21739 S:      Supported
21740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21741 F:      Documentation/admin-guide/LSM/Yama.rst
21742 F:      security/yama/
21743
21744 YEALINK PHONE DRIVER
21745 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21746 L:      usbb2k-api-dev@nongnu.org
21747 S:      Maintained
21748 F:      Documentation/input/devices/yealink.rst
21749 F:      drivers/input/misc/yealink.*
21750
21751 Z8530 DRIVER FOR AX.25
21752 M:      Joerg Reuter <jreuter@yaina.de>
21753 L:      linux-hams@vger.kernel.org
21754 S:      Maintained
21755 W:      http://yaina.de/jreuter/
21756 W:      http://www.qsl.net/dl1bke/
21757 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21758 F:      drivers/net/hamradio/*scc.c
21759 F:      drivers/net/hamradio/z8530.h
21760
21761 ZBUD COMPRESSED PAGE ALLOCATOR
21762 M:      Seth Jennings <sjenning@redhat.com>
21763 M:      Dan Streetman <ddstreet@ieee.org>
21764 L:      linux-mm@kvack.org
21765 S:      Maintained
21766 F:      mm/zbud.c
21767
21768 ZD1211RW WIRELESS DRIVER
21769 M:      Ulrich Kunitz <kune@deine-taler.de>
21770 L:      linux-wireless@vger.kernel.org
21771 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
21772 S:      Maintained
21773 W:      http://zd1211.ath.cx/wiki/DriverRewrite
21774 F:      drivers/net/wireless/zydas/zd1211rw/
21775
21776 ZD1301 MEDIA DRIVER
21777 M:      Antti Palosaari <crope@iki.fi>
21778 L:      linux-media@vger.kernel.org
21779 S:      Maintained
21780 W:      https://linuxtv.org/
21781 W:      http://palosaari.fi/linux/
21782 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21783 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21784
21785 ZD1301_DEMOD MEDIA DRIVER
21786 M:      Antti Palosaari <crope@iki.fi>
21787 L:      linux-media@vger.kernel.org
21788 S:      Maintained
21789 W:      https://linuxtv.org/
21790 W:      http://palosaari.fi/linux/
21791 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21792 F:      drivers/media/dvb-frontends/zd1301_demod*
21793
21794 ZHAOXIN PROCESSOR SUPPORT
21795 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21796 L:      linux-kernel@vger.kernel.org
21797 S:      Maintained
21798 F:      arch/x86/kernel/cpu/zhaoxin.c
21799
21800 ZONEFS FILESYSTEM
21801 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
21802 M:      Naohiro Aota <naohiro.aota@wdc.com>
21803 R:      Johannes Thumshirn <jth@kernel.org>
21804 L:      linux-fsdevel@vger.kernel.org
21805 S:      Maintained
21806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21807 F:      Documentation/filesystems/zonefs.rst
21808 F:      fs/zonefs/
21809
21810 ZPOOL COMPRESSED PAGE STORAGE API
21811 M:      Dan Streetman <ddstreet@ieee.org>
21812 L:      linux-mm@kvack.org
21813 S:      Maintained
21814 F:      include/linux/zpool.h
21815 F:      mm/zpool.c
21816
21817 ZR36067 VIDEO FOR LINUX DRIVER
21818 M:      Corentin Labbe <clabbe@baylibre.com>
21819 L:      mjpeg-users@lists.sourceforge.net
21820 L:      linux-media@vger.kernel.org
21821 S:      Maintained
21822 W:      http://mjpeg.sourceforge.net/driver-zoran/
21823 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21824 F:      Documentation/driver-api/media/drivers/zoran.rst
21825 F:      drivers/staging/media/zoran/
21826
21827 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21828 M:      Minchan Kim <minchan@kernel.org>
21829 M:      Nitin Gupta <ngupta@vflare.org>
21830 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21831 L:      linux-kernel@vger.kernel.org
21832 S:      Maintained
21833 F:      Documentation/admin-guide/blockdev/zram.rst
21834 F:      drivers/block/zram/
21835
21836 ZS DECSTATION Z85C30 SERIAL DRIVER
21837 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21838 S:      Maintained
21839 F:      drivers/tty/serial/zs.*
21840
21841 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21842 M:      Minchan Kim <minchan@kernel.org>
21843 M:      Nitin Gupta <ngupta@vflare.org>
21844 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21845 L:      linux-mm@kvack.org
21846 S:      Maintained
21847 F:      Documentation/vm/zsmalloc.rst
21848 F:      include/linux/zsmalloc.h
21849 F:      mm/zsmalloc.c
21850
21851 ZSTD
21852 M:      Nick Terrell <terrelln@fb.com>
21853 S:      Maintained
21854 B:      https://github.com/facebook/zstd/issues
21855 T:      git git://github.com/terrelln/linux.git
21856 F:      include/linux/zstd*
21857 F:      lib/zstd/
21858 F:      lib/decompress_unzstd.c
21859 F:      crypto/zstd.c
21860 N:      zstd
21861 K:      zstd
21862
21863 ZSWAP COMPRESSED SWAP CACHING
21864 M:      Seth Jennings <sjenning@redhat.com>
21865 M:      Dan Streetman <ddstreet@ieee.org>
21866 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21867 L:      linux-mm@kvack.org
21868 S:      Maintained
21869 F:      mm/zswap.c
21870
21871 THE REST
21872 M:      Linus Torvalds <torvalds@linux-foundation.org>
21873 L:      linux-kernel@vger.kernel.org
21874 S:      Buried alive in reporters
21875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21876 F:      *
21877 F:      */