net: bridge: rename br_fdb_insert to br_fdb_add_local
[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 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rafael@kernel.org>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rafael@kernel.org>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L:      linux-acpi@vger.kernel.org
369 L:      devel@acpica.org
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FAN DRIVER
382 M:      Zhang Rui <rui.zhang@intel.com>
383 L:      linux-acpi@vger.kernel.org
384 S:      Supported
385 W:      https://01.org/linux-acpi
386 B:      https://bugzilla.kernel.org
387 F:      drivers/acpi/fan.c
388
389 ACPI FOR ARM64 (ACPI/arm64)
390 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
391 M:      Hanjun Guo <guohanjun@huawei.com>
392 M:      Sudeep Holla <sudeep.holla@arm.com>
393 L:      linux-acpi@vger.kernel.org
394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
395 S:      Maintained
396 F:      drivers/acpi/arm64
397
398 ACPI I2C MULTI INSTANTIATE DRIVER
399 M:      Hans de Goede <hdegoede@redhat.com>
400 L:      platform-driver-x86@vger.kernel.org
401 S:      Maintained
402 F:      drivers/platform/x86/i2c-multi-instantiate.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 VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI VIOT DRIVER
434 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
435 L:      linux-acpi@vger.kernel.org
436 L:      iommu@lists.linux-foundation.org
437 S:      Maintained
438 F:      drivers/acpi/viot.c
439 F:      include/linux/acpi_viot.h
440
441 ACPI WMI DRIVER
442 L:      platform-driver-x86@vger.kernel.org
443 S:      Orphan
444 F:      drivers/platform/x86/wmi.c
445 F:      include/uapi/linux/wmi.h
446
447 ACRN HYPERVISOR SERVICE MODULE
448 M:      Fei Li <fei1.li@intel.com>
449 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
450 S:      Supported
451 W:      https://projectacrn.org
452 F:      Documentation/virt/acrn/
453 F:      drivers/virt/acrn/
454 F:      include/uapi/linux/acrn.h
455
456 AD1889 ALSA SOUND DRIVER
457 L:      linux-parisc@vger.kernel.org
458 S:      Maintained
459 W:      https://parisc.wiki.kernel.org/index.php/AD1889
460 F:      sound/pci/ad1889.*
461
462 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
463 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
464 L:      linux-iio@vger.kernel.org
465 S:      Supported
466 F:      drivers/iio/potentiometer/ad5110.c
467
468 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
469 M:      Michael Hennerich <michael.hennerich@analog.com>
470 S:      Supported
471 W:      http://wiki.analog.com/AD5254
472 W:      http://ez.analog.com/community/linux-device-drivers
473 F:      drivers/misc/ad525x_dpot.c
474
475 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
476 M:      Michael Hennerich <michael.hennerich@analog.com>
477 S:      Supported
478 W:      http://wiki.analog.com/AD5398
479 W:      http://ez.analog.com/community/linux-device-drivers
480 F:      drivers/regulator/ad5398.c
481
482 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
483 M:      Michael Hennerich <michael.hennerich@analog.com>
484 S:      Supported
485 W:      http://wiki.analog.com/AD7142
486 W:      http://ez.analog.com/community/linux-device-drivers
487 F:      drivers/input/misc/ad714x.c
488
489 AD7877 TOUCHSCREEN DRIVER
490 M:      Michael Hennerich <michael.hennerich@analog.com>
491 S:      Supported
492 W:      http://wiki.analog.com/AD7877
493 W:      http://ez.analog.com/community/linux-device-drivers
494 F:      drivers/input/touchscreen/ad7877.c
495
496 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
497 M:      Michael Hennerich <michael.hennerich@analog.com>
498 S:      Supported
499 W:      http://wiki.analog.com/AD7879
500 W:      http://ez.analog.com/community/linux-device-drivers
501 F:      drivers/input/touchscreen/ad7879.c
502
503 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
504 M:      Jiri Kosina <jikos@kernel.org>
505 S:      Maintained
506
507 ADF7242 IEEE 802.15.4 RADIO DRIVER
508 M:      Michael Hennerich <michael.hennerich@analog.com>
509 L:      linux-wpan@vger.kernel.org
510 S:      Supported
511 W:      https://wiki.analog.com/ADF7242
512 W:      http://ez.analog.com/community/linux-device-drivers
513 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
514 F:      drivers/net/ieee802154/adf7242.c
515
516 ADM1025 HARDWARE MONITOR DRIVER
517 M:      Jean Delvare <jdelvare@suse.com>
518 L:      linux-hwmon@vger.kernel.org
519 S:      Maintained
520 F:      Documentation/hwmon/adm1025.rst
521 F:      drivers/hwmon/adm1025.c
522
523 ADM1029 HARDWARE MONITOR DRIVER
524 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
525 L:      linux-hwmon@vger.kernel.org
526 S:      Maintained
527 F:      drivers/hwmon/adm1029.c
528
529 ADM8211 WIRELESS DRIVER
530 L:      linux-wireless@vger.kernel.org
531 S:      Orphan
532 W:      https://wireless.wiki.kernel.org/
533 F:      drivers/net/wireless/admtek/adm8211.*
534
535 ADP1653 FLASH CONTROLLER DRIVER
536 M:      Sakari Ailus <sakari.ailus@iki.fi>
537 L:      linux-media@vger.kernel.org
538 S:      Maintained
539 F:      drivers/media/i2c/adp1653.c
540 F:      include/media/i2c/adp1653.h
541
542 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
543 M:      Michael Hennerich <michael.hennerich@analog.com>
544 S:      Supported
545 W:      http://wiki.analog.com/ADP5520
546 W:      http://ez.analog.com/community/linux-device-drivers
547 F:      drivers/gpio/gpio-adp5520.c
548 F:      drivers/input/keyboard/adp5520-keys.c
549 F:      drivers/leds/leds-adp5520.c
550 F:      drivers/mfd/adp5520.c
551 F:      drivers/video/backlight/adp5520_bl.c
552
553 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
554 M:      Michael Hennerich <michael.hennerich@analog.com>
555 S:      Supported
556 W:      http://wiki.analog.com/ADP5588
557 W:      http://ez.analog.com/community/linux-device-drivers
558 F:      drivers/gpio/gpio-adp5588.c
559 F:      drivers/input/keyboard/adp5588-keys.c
560
561 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
562 M:      Michael Hennerich <michael.hennerich@analog.com>
563 S:      Supported
564 W:      http://wiki.analog.com/ADP8860
565 W:      http://ez.analog.com/community/linux-device-drivers
566 F:      drivers/video/backlight/adp8860_bl.c
567
568 ADT746X FAN DRIVER
569 M:      Colin Leroy <colin@colino.net>
570 S:      Maintained
571 F:      drivers/macintosh/therm_adt746x.c
572
573 ADT7475 HARDWARE MONITOR DRIVER
574 M:      Jean Delvare <jdelvare@suse.com>
575 L:      linux-hwmon@vger.kernel.org
576 S:      Maintained
577 F:      Documentation/hwmon/adt7475.rst
578 F:      drivers/hwmon/adt7475.c
579
580 ADVANSYS SCSI DRIVER
581 M:      Matthew Wilcox <willy@infradead.org>
582 M:      Hannes Reinecke <hare@suse.com>
583 L:      linux-scsi@vger.kernel.org
584 S:      Maintained
585 F:      Documentation/scsi/advansys.rst
586 F:      drivers/scsi/advansys.c
587
588 ADVANTECH SWBTN DRIVER
589 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
590 L:      platform-driver-x86@vger.kernel.org
591 S:      Maintained
592 F:      drivers/platform/x86/adv_swbutton.c
593
594 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
595 M:      Michael Hennerich <michael.hennerich@analog.com>
596 S:      Supported
597 W:      http://wiki.analog.com/ADXL345
598 W:      http://ez.analog.com/community/linux-device-drivers
599 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
600 F:      drivers/input/misc/adxl34x.c
601
602 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
603 M:      Michael Hennerich <michael.hennerich@analog.com>
604 S:      Supported
605 W:      http://ez.analog.com/community/linux-device-drivers
606 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
607 F:      drivers/iio/accel/adxl372.c
608 F:      drivers/iio/accel/adxl372_i2c.c
609 F:      drivers/iio/accel/adxl372_spi.c
610
611 AF9013 MEDIA DRIVER
612 M:      Antti Palosaari <crope@iki.fi>
613 L:      linux-media@vger.kernel.org
614 S:      Maintained
615 W:      https://linuxtv.org
616 W:      http://palosaari.fi/linux/
617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
618 T:      git git://linuxtv.org/anttip/media_tree.git
619 F:      drivers/media/dvb-frontends/af9013*
620
621 AF9033 MEDIA DRIVER
622 M:      Antti Palosaari <crope@iki.fi>
623 L:      linux-media@vger.kernel.org
624 S:      Maintained
625 W:      https://linuxtv.org
626 W:      http://palosaari.fi/linux/
627 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
628 T:      git git://linuxtv.org/anttip/media_tree.git
629 F:      drivers/media/dvb-frontends/af9033*
630
631 AFFS FILE SYSTEM
632 M:      David Sterba <dsterba@suse.com>
633 L:      linux-fsdevel@vger.kernel.org
634 S:      Odd Fixes
635 F:      Documentation/filesystems/affs.rst
636 F:      fs/affs/
637
638 AFS FILESYSTEM
639 M:      David Howells <dhowells@redhat.com>
640 M:      Marc Dionne <marc.dionne@auristor.com>
641 L:      linux-afs@lists.infradead.org
642 S:      Supported
643 W:      https://www.infradead.org/~dhowells/kafs/
644 F:      Documentation/filesystems/afs.rst
645 F:      fs/afs/
646 F:      include/trace/events/afs.h
647
648 AGPGART DRIVER
649 M:      David Airlie <airlied@linux.ie>
650 S:      Maintained
651 T:      git git://anongit.freedesktop.org/drm/drm
652 F:      drivers/char/agp/
653 F:      include/linux/agp*
654 F:      include/uapi/linux/agp*
655
656 AHA152X SCSI DRIVER
657 M:      "Juergen E. Fischer" <fischer@norbit.de>
658 L:      linux-scsi@vger.kernel.org
659 S:      Maintained
660 F:      drivers/scsi/aha152x*
661 F:      drivers/scsi/pcmcia/aha152x*
662
663 AIC7XXX / AIC79XX SCSI DRIVER
664 M:      Hannes Reinecke <hare@suse.com>
665 L:      linux-scsi@vger.kernel.org
666 S:      Maintained
667 F:      drivers/scsi/aic7xxx/
668
669 AIMSLAB FM RADIO RECEIVER DRIVER
670 M:      Hans Verkuil <hverkuil@xs4all.nl>
671 L:      linux-media@vger.kernel.org
672 S:      Maintained
673 W:      https://linuxtv.org
674 T:      git git://linuxtv.org/media_tree.git
675 F:      drivers/media/radio/radio-aimslab*
676
677 AIO
678 M:      Benjamin LaHaise <bcrl@kvack.org>
679 L:      linux-aio@kvack.org
680 S:      Supported
681 F:      fs/aio.c
682 F:      include/linux/*aio*.h
683
684 AIRSPY MEDIA DRIVER
685 M:      Antti Palosaari <crope@iki.fi>
686 L:      linux-media@vger.kernel.org
687 S:      Maintained
688 W:      https://linuxtv.org
689 W:      http://palosaari.fi/linux/
690 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
691 T:      git git://linuxtv.org/anttip/media_tree.git
692 F:      drivers/media/usb/airspy/
693
694 ALACRITECH GIGABIT ETHERNET DRIVER
695 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
696 S:      Maintained
697 F:      drivers/net/ethernet/alacritech/*
698
699 ALCATEL SPEEDTOUCH USB DRIVER
700 M:      Duncan Sands <duncan.sands@free.fr>
701 L:      linux-usb@vger.kernel.org
702 S:      Maintained
703 W:      http://www.linux-usb.org/SpeedTouch/
704 F:      drivers/usb/atm/speedtch.c
705 F:      drivers/usb/atm/usbatm.c
706
707 ALCHEMY AU1XX0 MMC DRIVER
708 M:      Manuel Lauss <manuel.lauss@gmail.com>
709 S:      Maintained
710 F:      drivers/mmc/host/au1xmmc.c
711
712 ALI1563 I2C DRIVER
713 M:      Rudolf Marek <r.marek@assembler.cz>
714 L:      linux-i2c@vger.kernel.org
715 S:      Maintained
716 F:      Documentation/i2c/busses/i2c-ali1563.rst
717 F:      drivers/i2c/busses/i2c-ali1563.c
718
719 ALIENWARE WMI DRIVER
720 L:      Dell.Client.Kernel@dell.com
721 S:      Maintained
722 F:      drivers/platform/x86/dell/alienware-wmi.c
723
724 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
725 M:      Tomislav Denis <tomislav.denis@avl.com>
726 L:      linux-iio@vger.kernel.org
727 S:      Maintained
728 W:      http://www.allsensors.com/
729 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
730 F:      drivers/iio/pressure/dlhl60d.c
731
732 ALLEGRO DVT VIDEO IP CORE DRIVER
733 M:      Michael Tretter <m.tretter@pengutronix.de>
734 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
735 L:      linux-media@vger.kernel.org
736 S:      Maintained
737 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
738 F:      drivers/media/platform/allegro-dvt/
739
740 ALLWINNER A10 CSI DRIVER
741 M:      Maxime Ripard <mripard@kernel.org>
742 L:      linux-media@vger.kernel.org
743 S:      Maintained
744 T:      git git://linuxtv.org/media_tree.git
745 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
746 F:      drivers/media/platform/sunxi/sun4i-csi/
747
748 ALLWINNER CPUFREQ DRIVER
749 M:      Yangtao Li <tiny.windzz@gmail.com>
750 L:      linux-pm@vger.kernel.org
751 S:      Maintained
752 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
753 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
754
755 ALLWINNER CRYPTO DRIVERS
756 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
757 L:      linux-crypto@vger.kernel.org
758 S:      Maintained
759 F:      drivers/crypto/allwinner/
760
761 ALLWINNER HARDWARE SPINLOCK SUPPORT
762 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
763 S:      Maintained
764 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
765 F:      drivers/hwspinlock/sun6i_hwspinlock.c
766
767 ALLWINNER THERMAL DRIVER
768 M:      Vasily Khoruzhick <anarsoul@gmail.com>
769 M:      Yangtao Li <tiny.windzz@gmail.com>
770 L:      linux-pm@vger.kernel.org
771 S:      Maintained
772 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
773 F:      drivers/thermal/sun8i_thermal.c
774
775 ALLWINNER VPU DRIVER
776 M:      Maxime Ripard <mripard@kernel.org>
777 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
778 L:      linux-media@vger.kernel.org
779 S:      Maintained
780 F:      drivers/staging/media/sunxi/cedrus/
781
782 ALPHA PORT
783 M:      Richard Henderson <rth@twiddle.net>
784 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
785 M:      Matt Turner <mattst88@gmail.com>
786 L:      linux-alpha@vger.kernel.org
787 S:      Odd Fixes
788 F:      arch/alpha/
789
790 ALPS PS/2 TOUCHPAD DRIVER
791 R:      Pali Rohár <pali@kernel.org>
792 F:      drivers/input/mouse/alps.*
793
794 ALTERA I2C CONTROLLER DRIVER
795 M:      Thor Thayer <thor.thayer@linux.intel.com>
796 S:      Maintained
797 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
798 F:      drivers/i2c/busses/i2c-altera.c
799
800 ALTERA MAILBOX DRIVER
801 M:      Joyce Ooi <joyce.ooi@intel.com>
802 S:      Maintained
803 F:      drivers/mailbox/mailbox-altera.c
804
805 ALTERA MSGDMA IP CORE DRIVER
806 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
807 R:      Stefan Roese <sr@denx.de>
808 L:      dmaengine@vger.kernel.org
809 S:      Odd Fixes
810 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
811 F:      drivers/dma/altera-msgdma.c
812
813 ALTERA PIO DRIVER
814 M:      Mun Yew Tham <mun.yew.tham@intel.com>
815 L:      linux-gpio@vger.kernel.org
816 S:      Maintained
817 F:      drivers/gpio/gpio-altera.c
818
819 ALTERA SYSTEM MANAGER DRIVER
820 M:      Thor Thayer <thor.thayer@linux.intel.com>
821 S:      Maintained
822 F:      drivers/mfd/altera-sysmgr.c
823 F:      include/linux/mfd/altera-sysmgr.h
824
825 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
826 M:      Thor Thayer <thor.thayer@linux.intel.com>
827 S:      Maintained
828 F:      drivers/gpio/gpio-altera-a10sr.c
829 F:      drivers/mfd/altera-a10sr.c
830 F:      drivers/reset/reset-a10sr.c
831 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
832 F:      include/linux/mfd/altera-a10sr.h
833
834 ALTERA TRIPLE SPEED ETHERNET DRIVER
835 M:      Joyce Ooi <joyce.ooi@intel.com>
836 L:      netdev@vger.kernel.org
837 S:      Maintained
838 F:      drivers/net/ethernet/altera/
839
840 ALTERA UART/JTAG UART SERIAL DRIVERS
841 M:      Tobias Klauser <tklauser@distanz.ch>
842 L:      linux-serial@vger.kernel.org
843 S:      Maintained
844 F:      drivers/tty/serial/altera_jtaguart.c
845 F:      drivers/tty/serial/altera_uart.c
846 F:      include/linux/altera_jtaguart.h
847 F:      include/linux/altera_uart.h
848
849 AMAZON ANNAPURNA LABS FIC DRIVER
850 M:      Talel Shenhar <talel@amazon.com>
851 S:      Maintained
852 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
853 F:      drivers/irqchip/irq-al-fic.c
854
855 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
856 M:      Talel Shenhar <talel@amazon.com>
857 M:      Talel Shenhar <talelshenhar@gmail.com>
858 S:      Maintained
859 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
860 F:      drivers/edac/al_mc_edac.c
861
862 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
863 M:      Talel Shenhar <talel@amazon.com>
864 S:      Maintained
865 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
866 F:      drivers/thermal/thermal_mmio.c
867
868 AMAZON ETHERNET DRIVERS
869 M:      Netanel Belgazal <netanel@amazon.com>
870 M:      Arthur Kiyanovski <akiyano@amazon.com>
871 R:      Guy Tzalik <gtzalik@amazon.com>
872 R:      Saeed Bishara <saeedb@amazon.com>
873 L:      netdev@vger.kernel.org
874 S:      Supported
875 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
876 F:      drivers/net/ethernet/amazon/
877
878 AMAZON RDMA EFA DRIVER
879 M:      Gal Pressman <galpress@amazon.com>
880 R:      Yossi Leybovich <sleybo@amazon.com>
881 L:      linux-rdma@vger.kernel.org
882 S:      Supported
883 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
884 F:      drivers/infiniband/hw/efa/
885 F:      include/uapi/rdma/efa-abi.h
886
887 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
888 M:      Tom Lendacky <thomas.lendacky@amd.com>
889 M:      John Allen <john.allen@amd.com>
890 L:      linux-crypto@vger.kernel.org
891 S:      Supported
892 F:      drivers/crypto/ccp/
893 F:      include/linux/ccp.h
894
895 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
896 M:      Brijesh Singh <brijesh.singh@amd.com>
897 M:      Tom Lendacky <thomas.lendacky@amd.com>
898 L:      linux-crypto@vger.kernel.org
899 S:      Supported
900 F:      drivers/crypto/ccp/sev*
901 F:      include/uapi/linux/psp-sev.h
902
903 AMD DISPLAY CORE
904 M:      Harry Wentland <harry.wentland@amd.com>
905 M:      Leo Li <sunpeng.li@amd.com>
906 L:      amd-gfx@lists.freedesktop.org
907 S:      Supported
908 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
909 F:      drivers/gpu/drm/amd/display/
910
911 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
912 M:      Huang Rui <ray.huang@amd.com>
913 L:      linux-hwmon@vger.kernel.org
914 S:      Supported
915 F:      Documentation/hwmon/fam15h_power.rst
916 F:      drivers/hwmon/fam15h_power.c
917
918 AMD FCH GPIO DRIVER
919 M:      Enrico Weigelt, metux IT consult <info@metux.net>
920 L:      linux-gpio@vger.kernel.org
921 S:      Maintained
922 F:      drivers/gpio/gpio-amd-fch.c
923 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
924
925 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
926 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
927 S:      Orphan
928 F:      drivers/usb/gadget/udc/amd5536udc.*
929
930 AMD GEODE PROCESSOR/CHIPSET SUPPORT
931 M:      Andres Salomon <dilinger@queued.net>
932 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
933 S:      Supported
934 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
935 F:      arch/x86/include/asm/geode.h
936 F:      drivers/char/hw_random/geode-rng.c
937 F:      drivers/crypto/geode*
938 F:      drivers/video/fbdev/geode/
939
940 AMD IOMMU (AMD-VI)
941 M:      Joerg Roedel <joro@8bytes.org>
942 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
943 L:      iommu@lists.linux-foundation.org
944 S:      Maintained
945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
946 F:      drivers/iommu/amd/
947 F:      include/linux/amd-iommu.h
948
949 AMD KFD
950 M:      Felix Kuehling <Felix.Kuehling@amd.com>
951 L:      amd-gfx@lists.freedesktop.org
952 S:      Supported
953 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
954 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
955 F:      drivers/gpu/drm/amd/amdkfd/
956 F:      drivers/gpu/drm/amd/include/cik_structs.h
957 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
958 F:      drivers/gpu/drm/amd/include/v9_structs.h
959 F:      drivers/gpu/drm/amd/include/vi_structs.h
960 F:      include/uapi/linux/kfd_ioctl.h
961
962 AMD SPI DRIVER
963 M:      Sanjay R Mehta <sanju.mehta@amd.com>
964 S:      Maintained
965 F:      drivers/spi/spi-amd.c
966
967 AMD MP2 I2C DRIVER
968 M:      Elie Morisse <syniurge@gmail.com>
969 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
970 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
971 L:      linux-i2c@vger.kernel.org
972 S:      Maintained
973 F:      drivers/i2c/busses/i2c-amd-mp2*
974
975 AMD PMC DRIVER
976 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
977 L:      platform-driver-x86@vger.kernel.org
978 S:      Maintained
979 F:      drivers/platform/x86/amd-pmc.*
980
981 AMD POWERPLAY AND SWSMU
982 M:      Evan Quan <evan.quan@amd.com>
983 L:      amd-gfx@lists.freedesktop.org
984 S:      Supported
985 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
986 F:      drivers/gpu/drm/amd/pm/
987
988 AMD PTDMA DRIVER
989 M:      Sanjay R Mehta <sanju.mehta@amd.com>
990 L:      dmaengine@vger.kernel.org
991 S:      Maintained
992 F:      drivers/dma/ptdma/
993
994 AMD SEATTLE DEVICE TREE SUPPORT
995 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
996 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
997 M:      Tom Lendacky <thomas.lendacky@amd.com>
998 S:      Supported
999 F:      arch/arm64/boot/dts/amd/
1000
1001 AMD XGBE DRIVER
1002 M:      Tom Lendacky <thomas.lendacky@amd.com>
1003 L:      netdev@vger.kernel.org
1004 S:      Supported
1005 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1006 F:      drivers/net/ethernet/amd/xgbe/
1007
1008 AMD SENSOR FUSION HUB DRIVER
1009 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1010 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1011 L:      linux-input@vger.kernel.org
1012 S:      Maintained
1013 F:      Documentation/hid/amd-sfh*
1014 F:      drivers/hid/amd-sfh-hid/
1015
1016 AMS AS73211 DRIVER
1017 M:      Christian Eggers <ceggers@arri.de>
1018 L:      linux-iio@vger.kernel.org
1019 S:      Maintained
1020 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1021 F:      drivers/iio/light/as73211.c
1022
1023 ANALOG DEVICES INC AD7192 DRIVER
1024 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1025 L:      linux-iio@vger.kernel.org
1026 S:      Supported
1027 W:      http://ez.analog.com/community/linux-device-drivers
1028 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1029 F:      drivers/iio/adc/ad7192.c
1030
1031 ANALOG DEVICES INC AD7292 DRIVER
1032 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1033 L:      linux-iio@vger.kernel.org
1034 S:      Supported
1035 W:      http://ez.analog.com/community/linux-device-drivers
1036 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1037 F:      drivers/iio/adc/ad7292.c
1038
1039 ANALOG DEVICES INC AD7768-1 DRIVER
1040 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1041 L:      linux-iio@vger.kernel.org
1042 S:      Supported
1043 W:      http://ez.analog.com/community/linux-device-drivers
1044 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1045 F:      drivers/iio/adc/ad7768-1.c
1046
1047 ANALOG DEVICES INC AD7780 DRIVER
1048 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1049 M:      Renato Lui Geh <renatogeh@gmail.com>
1050 L:      linux-iio@vger.kernel.org
1051 S:      Supported
1052 W:      http://ez.analog.com/community/linux-device-drivers
1053 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1054 F:      drivers/iio/adc/ad7780.c
1055
1056 ANALOG DEVICES INC AD9389B DRIVER
1057 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1058 L:      linux-media@vger.kernel.org
1059 S:      Maintained
1060 F:      drivers/media/i2c/ad9389b*
1061
1062 ANALOG DEVICES INC ADGS1408 DRIVER
1063 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1064 S:      Supported
1065 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1066 F:      drivers/mux/adgs1408.c
1067
1068 ANALOG DEVICES INC ADIN DRIVER
1069 M:      Michael Hennerich <michael.hennerich@analog.com>
1070 L:      netdev@vger.kernel.org
1071 S:      Supported
1072 W:      http://ez.analog.com/community/linux-device-drivers
1073 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1074 F:      drivers/net/phy/adin.c
1075
1076 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1077 M:      Nuno Sa <nuno.sa@analog.com>
1078 L:      linux-iio@vger.kernel.org
1079 S:      Supported
1080 F:      drivers/iio/imu/adis.c
1081 F:      include/linux/iio/imu/adis.h
1082
1083 ANALOG DEVICES INC ADIS16460 DRIVER
1084 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1085 L:      linux-iio@vger.kernel.org
1086 S:      Supported
1087 W:      http://ez.analog.com/community/linux-device-drivers
1088 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1089 F:      drivers/iio/imu/adis16460.c
1090
1091 ANALOG DEVICES INC ADIS16475 DRIVER
1092 M:      Nuno Sa <nuno.sa@analog.com>
1093 L:      linux-iio@vger.kernel.org
1094 W:      http://ez.analog.com/community/linux-device-drivers
1095 S:      Supported
1096 F:      drivers/iio/imu/adis16475.c
1097 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1098
1099 ANALOG DEVICES INC ADM1177 DRIVER
1100 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1101 L:      linux-hwmon@vger.kernel.org
1102 S:      Supported
1103 W:      http://ez.analog.com/community/linux-device-drivers
1104 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1105 F:      drivers/hwmon/adm1177.c
1106
1107 ANALOG DEVICES INC ADP5061 DRIVER
1108 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1109 L:      linux-pm@vger.kernel.org
1110 S:      Supported
1111 W:      http://ez.analog.com/community/linux-device-drivers
1112 F:      drivers/power/supply/adp5061.c
1113
1114 ANALOG DEVICES INC ADV7180 DRIVER
1115 M:      Lars-Peter Clausen <lars@metafoo.de>
1116 L:      linux-media@vger.kernel.org
1117 S:      Supported
1118 W:      http://ez.analog.com/community/linux-device-drivers
1119 F:      drivers/media/i2c/adv7180.c
1120 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1121
1122 ANALOG DEVICES INC ADV748X DRIVER
1123 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1124 L:      linux-media@vger.kernel.org
1125 S:      Maintained
1126 F:      drivers/media/i2c/adv748x/*
1127
1128 ANALOG DEVICES INC ADV7511 DRIVER
1129 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1130 L:      linux-media@vger.kernel.org
1131 S:      Maintained
1132 F:      drivers/media/i2c/adv7511*
1133
1134 ANALOG DEVICES INC ADV7604 DRIVER
1135 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1136 L:      linux-media@vger.kernel.org
1137 S:      Maintained
1138 F:      drivers/media/i2c/adv7604*
1139 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1140
1141 ANALOG DEVICES INC ADV7842 DRIVER
1142 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1143 L:      linux-media@vger.kernel.org
1144 S:      Maintained
1145 F:      drivers/media/i2c/adv7842*
1146
1147 ANALOG DEVICES INC ADXRS290 DRIVER
1148 M:      Nishant Malpani <nish.malpani25@gmail.com>
1149 L:      linux-iio@vger.kernel.org
1150 S:      Supported
1151 F:      drivers/iio/gyro/adxrs290.c
1152 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1153
1154 ANALOG DEVICES INC ASOC CODEC DRIVERS
1155 M:      Lars-Peter Clausen <lars@metafoo.de>
1156 M:      Nuno Sá <nuno.sa@analog.com>
1157 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1158 S:      Supported
1159 W:      http://wiki.analog.com/
1160 W:      http://ez.analog.com/community/linux-device-drivers
1161 F:      sound/soc/codecs/ad1*
1162 F:      sound/soc/codecs/ad7*
1163 F:      sound/soc/codecs/adau*
1164 F:      sound/soc/codecs/adav*
1165 F:      sound/soc/codecs/sigmadsp.*
1166 F:      sound/soc/codecs/ssm*
1167
1168 ANALOG DEVICES INC DMA DRIVERS
1169 M:      Lars-Peter Clausen <lars@metafoo.de>
1170 S:      Supported
1171 W:      http://ez.analog.com/community/linux-device-drivers
1172 F:      drivers/dma/dma-axi-dmac.c
1173
1174 ANALOG DEVICES INC IIO DRIVERS
1175 M:      Lars-Peter Clausen <lars@metafoo.de>
1176 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1177 S:      Supported
1178 W:      http://wiki.analog.com/
1179 W:      http://ez.analog.com/community/linux-device-drivers
1180 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1181 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1182 F:      Documentation/devicetree/bindings/iio/*/adi,*
1183 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1184 F:      drivers/iio/*/ad*
1185 F:      drivers/iio/adc/ltc249*
1186 F:      drivers/iio/amplifiers/hmc425a.c
1187 F:      drivers/staging/iio/*/ad*
1188 X:      drivers/iio/*/adjd*
1189
1190 ANALOGBITS PLL LIBRARIES
1191 M:      Paul Walmsley <paul.walmsley@sifive.com>
1192 S:      Supported
1193 F:      drivers/clk/analogbits/*
1194 F:      include/linux/clk/analogbits*
1195
1196 ANDES ARCHITECTURE
1197 M:      Nick Hu <nickhu@andestech.com>
1198 M:      Greentime Hu <green.hu@gmail.com>
1199 M:      Vincent Chen <deanbo422@gmail.com>
1200 S:      Supported
1201 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1202 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1203 F:      Documentation/devicetree/bindings/nds32/
1204 F:      arch/nds32/
1205 N:      nds32
1206 K:      nds32
1207
1208 ANDROID CONFIG FRAGMENTS
1209 M:      Rob Herring <robh@kernel.org>
1210 S:      Supported
1211 F:      kernel/configs/android*
1212
1213 ANDROID DRIVERS
1214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1215 M:      Arve Hjønnevåg <arve@android.com>
1216 M:      Todd Kjos <tkjos@android.com>
1217 M:      Martijn Coenen <maco@android.com>
1218 M:      Joel Fernandes <joel@joelfernandes.org>
1219 M:      Christian Brauner <christian@brauner.io>
1220 M:      Hridya Valsaraju <hridya@google.com>
1221 M:      Suren Baghdasaryan <surenb@google.com>
1222 L:      linux-kernel@vger.kernel.org
1223 S:      Supported
1224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1225 F:      drivers/android/
1226 F:      drivers/staging/android/
1227
1228 ANDROID GOLDFISH PIC DRIVER
1229 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1230 S:      Supported
1231 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1232 F:      drivers/irqchip/irq-goldfish-pic.c
1233
1234 ANDROID GOLDFISH RTC DRIVER
1235 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1236 S:      Supported
1237 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1238 F:      drivers/rtc/rtc-goldfish.c
1239
1240 AOA (Apple Onboard Audio) ALSA DRIVER
1241 M:      Johannes Berg <johannes@sipsolutions.net>
1242 L:      linuxppc-dev@lists.ozlabs.org
1243 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1244 S:      Maintained
1245 F:      sound/aoa/
1246
1247 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1248 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1249 L:      linux-iio@vger.kernel.org
1250 S:      Maintained
1251 F:      drivers/iio/adc/stx104.c
1252
1253 APM DRIVER
1254 M:      Jiri Kosina <jikos@kernel.org>
1255 S:      Odd fixes
1256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1257 F:      arch/x86/kernel/apm_32.c
1258 F:      drivers/char/apm-emulation.c
1259 F:      include/linux/apm_bios.h
1260 F:      include/uapi/linux/apm_bios.h
1261
1262 APPARMOR SECURITY MODULE
1263 M:      John Johansen <john.johansen@canonical.com>
1264 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1265 S:      Supported
1266 W:      wiki.apparmor.net
1267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1268 F:      Documentation/admin-guide/LSM/apparmor.rst
1269 F:      security/apparmor/
1270
1271 APPLE BCM5974 MULTITOUCH DRIVER
1272 M:      Henrik Rydberg <rydberg@bitmath.org>
1273 L:      linux-input@vger.kernel.org
1274 S:      Odd fixes
1275 F:      drivers/input/mouse/bcm5974.c
1276
1277 APPLE DART IOMMU DRIVER
1278 M:      Sven Peter <sven@svenpeter.dev>
1279 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1280 L:      iommu@lists.linux-foundation.org
1281 S:      Maintained
1282 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1283 F:      drivers/iommu/apple-dart.c
1284
1285 APPLE SMC DRIVER
1286 M:      Henrik Rydberg <rydberg@bitmath.org>
1287 L:      linux-hwmon@vger.kernel.org
1288 S:      Odd fixes
1289 F:      drivers/hwmon/applesmc.c
1290
1291 APPLETALK NETWORK LAYER
1292 L:      netdev@vger.kernel.org
1293 S:      Odd fixes
1294 F:      drivers/net/appletalk/
1295 F:      include/linux/atalk.h
1296 F:      include/uapi/linux/atalk.h
1297 F:      net/appletalk/
1298
1299 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1300 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1301 S:      Supported
1302 F:      arch/arm64/boot/dts/apm/
1303
1304 APPLIED MICRO (APM) X-GENE SOC EDAC
1305 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1306 S:      Supported
1307 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1308 F:      drivers/edac/xgene_edac.c
1309
1310 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1311 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1312 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1313 S:      Supported
1314 F:      drivers/net/ethernet/apm/xgene-v2/
1315
1316 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1317 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1318 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1319 M:      Quan Nguyen <quan@os.amperecomputing.com>
1320 S:      Supported
1321 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1322 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1323 F:      drivers/net/ethernet/apm/xgene/
1324 F:      drivers/net/mdio/mdio-xgene.c
1325
1326 APPLIED MICRO (APM) X-GENE SOC PMU
1327 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1328 S:      Supported
1329 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1330 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1331 F:      drivers/perf/xgene_pmu.c
1332
1333 APTINA CAMERA SENSOR PLL
1334 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1335 L:      linux-media@vger.kernel.org
1336 S:      Maintained
1337 F:      drivers/media/i2c/aptina-pll.*
1338
1339 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1340 M:      Aleksa Savic <savicaleksa83@gmail.com>
1341 L:      linux-hwmon@vger.kernel.org
1342 S:      Maintained
1343 F:      Documentation/hwmon/aquacomputer_d5next.rst
1344 F:      drivers/hwmon/aquacomputer_d5next.c
1345
1346 AQUANTIA ETHERNET DRIVER (atlantic)
1347 M:      Igor Russkikh <irusskikh@marvell.com>
1348 L:      netdev@vger.kernel.org
1349 S:      Supported
1350 W:      https://www.marvell.com/
1351 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1352 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1353 F:      drivers/net/ethernet/aquantia/atlantic/
1354
1355 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1356 M:      Egor Pomozov <epomozov@marvell.com>
1357 L:      netdev@vger.kernel.org
1358 S:      Supported
1359 W:      http://www.aquantia.com
1360 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1361
1362 ARASAN NAND CONTROLLER DRIVER
1363 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1364 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1365 L:      linux-mtd@lists.infradead.org
1366 S:      Maintained
1367 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1368 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1369
1370 ARC FRAMEBUFFER DRIVER
1371 M:      Jaya Kumar <jayalk@intworks.biz>
1372 S:      Maintained
1373 F:      drivers/video/fbdev/arcfb.c
1374 F:      drivers/video/fbdev/core/fb_defio.c
1375
1376 ARC PGU DRM DRIVER
1377 M:      Alexey Brodkin <abrodkin@synopsys.com>
1378 S:      Supported
1379 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1380 F:      drivers/gpu/drm/tiny/arcpgu.c
1381
1382 ARCNET NETWORK LAYER
1383 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1384 L:      netdev@vger.kernel.org
1385 S:      Maintained
1386 F:      drivers/net/arcnet/
1387 F:      include/uapi/linux/if_arcnet.h
1388
1389 ARM ARCHITECTED TIMER DRIVER
1390 M:      Mark Rutland <mark.rutland@arm.com>
1391 M:      Marc Zyngier <maz@kernel.org>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 S:      Maintained
1394 F:      arch/arm/include/asm/arch_timer.h
1395 F:      arch/arm64/include/asm/arch_timer.h
1396 F:      drivers/clocksource/arm_arch_timer.c
1397
1398 ARM HDLCD DRM DRIVER
1399 M:      Liviu Dudau <liviu.dudau@arm.com>
1400 S:      Supported
1401 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1402 F:      drivers/gpu/drm/arm/hdlcd_*
1403
1404 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1405 M:      Linus Walleij <linus.walleij@linaro.org>
1406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1407 S:      Maintained
1408 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1409 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1410 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1411 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1412 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1413 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1414 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1415 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1416 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1417 F:      arch/arm/boot/dts/arm-realview-*
1418 F:      arch/arm/boot/dts/integrator*
1419 F:      arch/arm/boot/dts/versatile*
1420 F:      arch/arm/mach-integrator/
1421 F:      arch/arm/mach-realview/
1422 F:      arch/arm/mach-versatile/
1423 F:      arch/arm/plat-versatile/
1424 F:      drivers/bus/arm-integrator-lm.c
1425 F:      drivers/clk/versatile/
1426 F:      drivers/i2c/busses/i2c-versatile.c
1427 F:      drivers/irqchip/irq-versatile-fpga.c
1428 F:      drivers/mtd/maps/physmap-versatile.*
1429 F:      drivers/power/reset/arm-versatile-reboot.c
1430 F:      drivers/soc/versatile/
1431
1432 ARM KOMEDA DRM-KMS DRIVER
1433 M:      James (Qian) Wang <james.qian.wang@arm.com>
1434 M:      Liviu Dudau <liviu.dudau@arm.com>
1435 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1436 L:      Mali DP Maintainers <malidp@foss.arm.com>
1437 S:      Supported
1438 T:      git git://anongit.freedesktop.org/drm/drm-misc
1439 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1440 F:      Documentation/gpu/komeda-kms.rst
1441 F:      drivers/gpu/drm/arm/display/include/
1442 F:      drivers/gpu/drm/arm/display/komeda/
1443
1444 ARM MALI PANFROST DRM DRIVER
1445 M:      Rob Herring <robh@kernel.org>
1446 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1447 R:      Steven Price <steven.price@arm.com>
1448 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1449 L:      dri-devel@lists.freedesktop.org
1450 S:      Supported
1451 T:      git git://anongit.freedesktop.org/drm/drm-misc
1452 F:      drivers/gpu/drm/panfrost/
1453 F:      include/uapi/drm/panfrost_drm.h
1454
1455 ARM MALI-DP DRM DRIVER
1456 M:      Liviu Dudau <liviu.dudau@arm.com>
1457 M:      Brian Starkey <brian.starkey@arm.com>
1458 L:      Mali DP Maintainers <malidp@foss.arm.com>
1459 S:      Supported
1460 T:      git git://anongit.freedesktop.org/drm/drm-misc
1461 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1462 F:      Documentation/gpu/afbc.rst
1463 F:      drivers/gpu/drm/arm/
1464
1465 ARM MFM AND FLOPPY DRIVERS
1466 M:      Ian Molton <spyro@f2s.com>
1467 S:      Maintained
1468 F:      arch/arm/include/asm/floppy.h
1469 F:      arch/arm/mach-rpc/floppydma.S
1470
1471 ARM PMU PROFILING AND DEBUGGING
1472 M:      Will Deacon <will@kernel.org>
1473 M:      Mark Rutland <mark.rutland@arm.com>
1474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1475 S:      Maintained
1476 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1477 F:      Documentation/devicetree/bindings/perf/
1478 F:      arch/arm*/include/asm/hw_breakpoint.h
1479 F:      arch/arm*/include/asm/perf_event.h
1480 F:      arch/arm*/kernel/hw_breakpoint.c
1481 F:      arch/arm*/kernel/perf_*
1482 F:      drivers/perf/
1483 F:      include/linux/perf/arm_pmu.h
1484
1485 ARM PORT
1486 M:      Russell King <linux@armlinux.org.uk>
1487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488 S:      Odd Fixes
1489 W:      http://www.armlinux.org.uk/
1490 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1491 F:      arch/arm/
1492 X:      arch/arm/boot/dts/
1493
1494 ARM PRIMECELL AACI PL041 DRIVER
1495 M:      Russell King <linux@armlinux.org.uk>
1496 S:      Odd Fixes
1497 F:      sound/arm/aaci.*
1498
1499 ARM PRIMECELL BUS SUPPORT
1500 M:      Russell King <linux@armlinux.org.uk>
1501 S:      Odd Fixes
1502 F:      drivers/amba/
1503 F:      include/linux/amba/bus.h
1504
1505 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1506 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1507 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1508 L:      linux-mtd@lists.infradead.org
1509 S:      Maintained
1510 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1511 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1512
1513 ARM PRIMECELL PL35X SMC DRIVER
1514 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1515 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1517 S:      Maintained
1518 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1519 F:      drivers/memory/pl353-smc.c
1520
1521 ARM PRIMECELL CLCD PL110 DRIVER
1522 M:      Russell King <linux@armlinux.org.uk>
1523 S:      Odd Fixes
1524 F:      drivers/video/fbdev/amba-clcd.*
1525
1526 ARM PRIMECELL KMI PL050 DRIVER
1527 M:      Russell King <linux@armlinux.org.uk>
1528 S:      Odd Fixes
1529 F:      drivers/input/serio/ambakmi.*
1530 F:      include/linux/amba/kmi.h
1531
1532 ARM PRIMECELL MMCI PL180/1 DRIVER
1533 M:      Russell King <linux@armlinux.org.uk>
1534 S:      Odd Fixes
1535 F:      drivers/mmc/host/mmci.*
1536 F:      include/linux/amba/mmci.h
1537
1538 ARM PRIMECELL SSP PL022 SPI DRIVER
1539 M:      Linus Walleij <linus.walleij@linaro.org>
1540 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1541 S:      Maintained
1542 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1543 F:      drivers/spi/spi-pl022.c
1544
1545 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1546 M:      Russell King <linux@armlinux.org.uk>
1547 S:      Odd Fixes
1548 F:      drivers/tty/serial/amba-pl01*.c
1549 F:      include/linux/amba/serial.h
1550
1551 ARM PRIMECELL VIC PL190/PL192 DRIVER
1552 M:      Linus Walleij <linus.walleij@linaro.org>
1553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554 S:      Maintained
1555 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1556 F:      drivers/irqchip/irq-vic.c
1557
1558 ARM SMC WATCHDOG DRIVER
1559 M:      Julius Werner <jwerner@chromium.org>
1560 R:      Evan Benn <evanbenn@chromium.org>
1561 S:      Maintained
1562 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1563 F:      drivers/watchdog/arm_smc_wdt.c
1564
1565 ARM SMMU DRIVERS
1566 M:      Will Deacon <will@kernel.org>
1567 R:      Robin Murphy <robin.murphy@arm.com>
1568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1569 S:      Maintained
1570 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1571 F:      drivers/iommu/arm/
1572 F:      drivers/iommu/io-pgtable-arm*
1573
1574 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1575 M:      Arnd Bergmann <arnd@arndb.de>
1576 M:      Olof Johansson <olof@lixom.net>
1577 M:      soc@kernel.org
1578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1579 S:      Maintained
1580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1581 F:      arch/arm/boot/dts/Makefile
1582 F:      arch/arm64/boot/dts/Makefile
1583
1584 ARM SUB-ARCHITECTURES
1585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1586 S:      Maintained
1587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1588 F:      arch/arm/mach-*/
1589 F:      arch/arm/plat-*/
1590
1591 ARM/ACTIONS SEMI ARCHITECTURE
1592 M:      Andreas Färber <afaerber@suse.de>
1593 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1596 S:      Maintained
1597 F:      Documentation/devicetree/bindings/arm/actions.yaml
1598 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1599 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1600 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1601 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1602 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1603 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1604 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1605 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1606 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1607 F:      arch/arm/boot/dts/owl-*
1608 F:      arch/arm/mach-actions/
1609 F:      arch/arm64/boot/dts/actions/
1610 F:      drivers/clk/actions/
1611 F:      drivers/clocksource/timer-owl*
1612 F:      drivers/dma/owl-dma.c
1613 F:      drivers/i2c/busses/i2c-owl.c
1614 F:      drivers/irqchip/irq-owl-sirq.c
1615 F:      drivers/mmc/host/owl-mmc.c
1616 F:      drivers/net/ethernet/actions/
1617 F:      drivers/pinctrl/actions/*
1618 F:      drivers/soc/actions/
1619 F:      include/dt-bindings/power/owl-*
1620 F:      include/dt-bindings/reset/actions,*
1621 F:      include/linux/soc/actions/
1622 N:      owl
1623
1624 ARM/ADS SPHERE MACHINE SUPPORT
1625 M:      Lennert Buytenhek <kernel@wantstofly.org>
1626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1627 S:      Maintained
1628
1629 ARM/AFEB9260 MACHINE SUPPORT
1630 M:      Sergey Lapin <slapin@ossfans.org>
1631 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1632 S:      Maintained
1633
1634 ARM/AJECO 1ARM MACHINE SUPPORT
1635 M:      Lennert Buytenhek <kernel@wantstofly.org>
1636 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1637 S:      Maintained
1638
1639 ARM/Allwinner SoC Clock Support
1640 M:      Emilio López <emilio@elopez.com.ar>
1641 S:      Maintained
1642 F:      drivers/clk/sunxi/
1643
1644 ARM/Allwinner sunXi SoC support
1645 M:      Maxime Ripard <mripard@kernel.org>
1646 M:      Chen-Yu Tsai <wens@csie.org>
1647 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 S:      Maintained
1650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1651 L:      linux-sunxi@lists.linux.dev
1652 F:      arch/arm/mach-sunxi/
1653 F:      arch/arm64/boot/dts/allwinner/
1654 F:      drivers/clk/sunxi-ng/
1655 F:      drivers/pinctrl/sunxi/
1656 F:      drivers/soc/sunxi/
1657 N:      allwinner
1658 N:      sun[x456789]i
1659 N:      sun50i
1660
1661 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1662 M:      Neil Armstrong <narmstrong@baylibre.com>
1663 M:      Jerome Brunet <jbrunet@baylibre.com>
1664 L:      linux-amlogic@lists.infradead.org
1665 S:      Maintained
1666 F:      Documentation/devicetree/bindings/clock/amlogic*
1667 F:      drivers/clk/meson/
1668 F:      include/dt-bindings/clock/gxbb*
1669 F:      include/dt-bindings/clock/meson*
1670
1671 ARM/Amlogic Meson SoC Crypto Drivers
1672 M:      Corentin Labbe <clabbe@baylibre.com>
1673 L:      linux-crypto@vger.kernel.org
1674 L:      linux-amlogic@lists.infradead.org
1675 S:      Maintained
1676 F:      Documentation/devicetree/bindings/crypto/amlogic*
1677 F:      drivers/crypto/amlogic/
1678
1679 ARM/Amlogic Meson SoC Sound Drivers
1680 M:      Jerome Brunet <jbrunet@baylibre.com>
1681 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1682 S:      Maintained
1683 F:      Documentation/devicetree/bindings/sound/amlogic*
1684 F:      sound/soc/meson/
1685
1686 ARM/Amlogic Meson SoC support
1687 M:      Neil Armstrong <narmstrong@baylibre.com>
1688 M:      Kevin Hilman <khilman@baylibre.com>
1689 R:      Jerome Brunet <jbrunet@baylibre.com>
1690 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692 L:      linux-amlogic@lists.infradead.org
1693 S:      Maintained
1694 W:      http://linux-meson.com/
1695 F:      arch/arm/boot/dts/meson*
1696 F:      arch/arm/mach-meson/
1697 F:      arch/arm64/boot/dts/amlogic/
1698 F:      drivers/mmc/host/meson*
1699 F:      drivers/pinctrl/meson/
1700 F:      drivers/rtc/rtc-meson*
1701 F:      drivers/soc/amlogic/
1702 N:      meson
1703
1704 ARM/Annapurna Labs ALPINE ARCHITECTURE
1705 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1706 M:      Antoine Tenart <atenart@kernel.org>
1707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708 S:      Maintained
1709 F:      arch/arm/boot/dts/alpine*
1710 F:      arch/arm/mach-alpine/
1711 F:      arch/arm64/boot/dts/amazon/
1712 F:      drivers/*/*alpine*
1713
1714 ARM/APPLE MACHINE SUPPORT
1715 M:      Hector Martin <marcan@marcan.st>
1716 M:      Sven Peter <sven@svenpeter.dev>
1717 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1719 S:      Maintained
1720 W:      https://asahilinux.org
1721 B:      https://github.com/AsahiLinux/linux/issues
1722 C:      irc://irc.oftc.net/asahi-dev
1723 T:      git https://github.com/AsahiLinux/linux.git
1724 F:      Documentation/devicetree/bindings/arm/apple.yaml
1725 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1726 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1727 F:      arch/arm64/boot/dts/apple/
1728 F:      drivers/irqchip/irq-apple-aic.c
1729 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1730 F:      include/dt-bindings/pinctrl/apple.h
1731
1732 ARM/ARTPEC MACHINE SUPPORT
1733 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1734 M:      Lars Persson <lars.persson@axis.com>
1735 L:      linux-arm-kernel@axis.com
1736 S:      Maintained
1737 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1738 F:      arch/arm/boot/dts/artpec6*
1739 F:      arch/arm/mach-artpec
1740 F:      drivers/clk/axis
1741 F:      drivers/crypto/axis
1742 F:      drivers/mmc/host/usdhi6rol0.c
1743 F:      drivers/pinctrl/pinctrl-artpec*
1744
1745 ARM/ASPEED I2C DRIVER
1746 M:      Brendan Higgins <brendanhiggins@google.com>
1747 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1748 R:      Joel Stanley <joel@jms.id.au>
1749 L:      linux-i2c@vger.kernel.org
1750 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1751 S:      Maintained
1752 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1753 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1754 F:      drivers/i2c/busses/i2c-aspeed.c
1755 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1756
1757 ARM/ASPEED MACHINE SUPPORT
1758 M:      Joel Stanley <joel@jms.id.au>
1759 R:      Andrew Jeffery <andrew@aj.id.au>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1762 S:      Supported
1763 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1765 F:      arch/arm/boot/dts/aspeed-*
1766 F:      arch/arm/mach-aspeed/
1767 N:      aspeed
1768
1769 ARM/BITMAIN ARCHITECTURE
1770 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 S:      Maintained
1773 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1774 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1775 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1776 F:      arch/arm64/boot/dts/bitmain/
1777 F:      drivers/clk/clk-bm1880.c
1778 F:      drivers/pinctrl/pinctrl-bm1880.c
1779
1780 ARM/CALXEDA HIGHBANK ARCHITECTURE
1781 M:      Andre Przywara <andre.przywara@arm.com>
1782 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1783 S:      Maintained
1784 F:      arch/arm/boot/dts/ecx-*.dts*
1785 F:      arch/arm/boot/dts/highbank.dts
1786 F:      arch/arm/mach-highbank/
1787
1788 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1789 M:      Krzysztof Halasa <khalasa@piap.pl>
1790 S:      Maintained
1791 F:      arch/arm/mach-cns3xxx/
1792
1793 ARM/CAVIUM THUNDER NETWORK DRIVER
1794 M:      Sunil Goutham <sgoutham@marvell.com>
1795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1796 S:      Supported
1797 F:      drivers/net/ethernet/cavium/thunder/
1798
1799 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1800 M:      Lukasz Majewski <lukma@denx.de>
1801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1802 S:      Maintained
1803 F:      arch/arm/mach-ep93xx/ts72xx.c
1804
1805 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1806 M:      Alexander Shiyan <shc_work@mail.ru>
1807 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1808 S:      Odd Fixes
1809 N:      clps711x
1810
1811 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1812 M:      Lennert Buytenhek <kernel@wantstofly.org>
1813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S:      Maintained
1815
1816 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1817 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1818 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/mach-ep93xx/
1822 F:      arch/arm/mach-ep93xx/include/mach/
1823
1824 ARM/CLKDEV SUPPORT
1825 M:      Russell King <linux@armlinux.org.uk>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 S:      Maintained
1828 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1829 F:      drivers/clk/clkdev.c
1830
1831 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1832 M:      Baruch Siach <baruch@tkos.co.il>
1833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1834 S:      Maintained
1835 F:      arch/arm/boot/dts/cx92755*
1836 N:      digicolor
1837
1838 ARM/CONTEC MICRO9 MACHINE SUPPORT
1839 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1840 S:      Maintained
1841 F:      arch/arm/mach-ep93xx/micro9.c
1842
1843 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1844 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1845 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1846 R:      Mike Leach <mike.leach@linaro.org>
1847 R:      Leo Yan <leo.yan@linaro.org>
1848 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 S:      Maintained
1851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1852 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1853 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1854 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1855 F:      Documentation/devicetree/bindings/arm/coresight.txt
1856 F:      Documentation/devicetree/bindings/arm/ete.yaml
1857 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1858 F:      Documentation/trace/coresight/*
1859 F:      drivers/hwtracing/coresight/*
1860 F:      include/dt-bindings/arm/coresight-cti-dt.h
1861 F:      include/linux/coresight*
1862 F:      tools/perf/arch/arm/util/auxtrace.c
1863 F:      tools/perf/arch/arm/util/cs-etm.c
1864 F:      tools/perf/arch/arm/util/cs-etm.h
1865 F:      tools/perf/arch/arm/util/pmu.c
1866 F:      tools/perf/util/cs-etm-decoder/*
1867 F:      tools/perf/util/cs-etm.*
1868
1869 ARM/CORGI MACHINE SUPPORT
1870 M:      Richard Purdie <rpurdie@rpsys.net>
1871 S:      Maintained
1872
1873 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1874 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1875 M:      Linus Walleij <linus.walleij@linaro.org>
1876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1877 S:      Maintained
1878 T:      git git://github.com/ulli-kroll/linux.git
1879 F:      Documentation/devicetree/bindings/arm/gemini.txt
1880 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1881 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1882 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1883 F:      arch/arm/boot/dts/gemini*
1884 F:      arch/arm/mach-gemini/
1885 F:      drivers/crypto/gemini/
1886 F:      drivers/net/ethernet/cortina/
1887 F:      drivers/pinctrl/pinctrl-gemini.c
1888 F:      drivers/rtc/rtc-ftrtc010.c
1889
1890 ARM/CZ.NIC TURRIS SUPPORT
1891 M:      Marek Behún <kabel@kernel.org>
1892 S:      Maintained
1893 W:      https://www.turris.cz/
1894 F:      Documentation/ABI/testing/debugfs-moxtet
1895 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1896 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1897 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1898 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1899 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1900 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1901 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1902 F:      drivers/bus/moxtet.c
1903 F:      drivers/firmware/turris-mox-rwtm.c
1904 F:      drivers/leds/leds-turris-omnia.c
1905 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1906 F:      drivers/gpio/gpio-moxtet.c
1907 F:      drivers/watchdog/armada_37xx_wdt.c
1908 F:      include/dt-bindings/bus/moxtet.h
1909 F:      include/linux/armada-37xx-rwtm-mailbox.h
1910 F:      include/linux/moxtet.h
1911
1912 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1913 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1915 S:      Maintained
1916 F:      arch/arm/mach-pxa/ezx.c
1917
1918 ARM/FARADAY FA526 PORT
1919 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1921 S:      Maintained
1922 T:      git git://git.berlios.de/gemini-board
1923 F:      arch/arm/mm/*-fa*
1924
1925 ARM/FOOTBRIDGE ARCHITECTURE
1926 M:      Russell King <linux@armlinux.org.uk>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929 W:      http://www.armlinux.org.uk/
1930 F:      arch/arm/include/asm/hardware/dec21285.h
1931 F:      arch/arm/mach-footbridge/
1932
1933 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1934 M:      Shawn Guo <shawnguo@kernel.org>
1935 M:      Sascha Hauer <s.hauer@pengutronix.de>
1936 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1937 R:      Fabio Estevam <festevam@gmail.com>
1938 R:      NXP Linux Team <linux-imx@nxp.com>
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S:      Maintained
1941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1942 X:      drivers/media/i2c/
1943 N:      imx
1944 N:      mxs
1945
1946 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1947 M:      Shawn Guo <shawnguo@kernel.org>
1948 M:      Li Yang <leoyang.li@nxp.com>
1949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1950 S:      Maintained
1951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1952 F:      arch/arm/boot/dts/ls1021a*
1953 F:      arch/arm64/boot/dts/freescale/fsl-*
1954 F:      arch/arm64/boot/dts/freescale/qoriq-*
1955
1956 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1957 M:      Shawn Guo <shawnguo@kernel.org>
1958 M:      Sascha Hauer <s.hauer@pengutronix.de>
1959 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1960 R:      Stefan Agner <stefan@agner.ch>
1961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1962 S:      Maintained
1963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1964 F:      arch/arm/boot/dts/vf*
1965 F:      arch/arm/mach-imx/*vf610*
1966
1967 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1968 M:      Lennert Buytenhek <kernel@wantstofly.org>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Maintained
1971
1972 ARM/GUMSTIX MACHINE SUPPORT
1973 M:      Steve Sakoman <sakoman@gmail.com>
1974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1975 S:      Maintained
1976
1977 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1978 M:      Philipp Zabel <philipp.zabel@gmail.com>
1979 M:      Paul Parsons <lost.distance@yahoo.com>
1980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1981 S:      Maintained
1982 F:      arch/arm/mach-pxa/hx4700.c
1983 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1984 F:      sound/soc/pxa/hx4700.c
1985
1986 ARM/HISILICON SOC SUPPORT
1987 M:      Wei Xu <xuwei5@hisilicon.com>
1988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1989 S:      Supported
1990 W:      http://www.hisilicon.com
1991 T:      git git://github.com/hisilicon/linux-hisi.git
1992 F:      arch/arm/boot/dts/hi3*
1993 F:      arch/arm/boot/dts/hip*
1994 F:      arch/arm/boot/dts/hisi*
1995 F:      arch/arm/mach-hisi/
1996 F:      arch/arm64/boot/dts/hisilicon/
1997
1998 ARM/HP JORNADA 7XX MACHINE SUPPORT
1999 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2000 S:      Maintained
2001 W:      www.jlime.com
2002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2003 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2004 F:      arch/arm/mach-sa1100/jornada720.c
2005
2006 ARM/IGEP MACHINE SUPPORT
2007 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2008 M:      Javier Martinez Canillas <javier@dowhile0.org>
2009 L:      linux-omap@vger.kernel.org
2010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S:      Maintained
2012 F:      arch/arm/boot/dts/omap3-igep*
2013
2014 ARM/INCOME PXA270 SUPPORT
2015 M:      Marek Vasut <marek.vasut@gmail.com>
2016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2017 S:      Maintained
2018 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2019
2020 ARM/INTEL IOP32X ARM ARCHITECTURE
2021 M:      Lennert Buytenhek <kernel@wantstofly.org>
2022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2023 S:      Maintained
2024
2025 ARM/INTEL IQ81342EX MACHINE SUPPORT
2026 M:      Lennert Buytenhek <kernel@wantstofly.org>
2027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028 S:      Maintained
2029
2030 ARM/INTEL IXDP2850 MACHINE SUPPORT
2031 M:      Lennert Buytenhek <kernel@wantstofly.org>
2032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2033 S:      Maintained
2034
2035 ARM/INTEL IXP4XX ARM ARCHITECTURE
2036 M:      Linus Walleij <linusw@kernel.org>
2037 M:      Imre Kaloz <kaloz@openwrt.org>
2038 M:      Krzysztof Halasa <khalasa@piap.pl>
2039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2040 S:      Maintained
2041 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2042 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2043 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2044 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2045 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2046 F:      arch/arm/mach-ixp4xx/
2047 F:      drivers/bus/intel-ixp4xx-eb.c
2048 F:      drivers/clocksource/timer-ixp4xx.c
2049 F:      drivers/crypto/ixp4xx_crypto.c
2050 F:      drivers/gpio/gpio-ixp4xx.c
2051 F:      drivers/irqchip/irq-ixp4xx.c
2052 F:      include/linux/irqchip/irq-ixp4xx.h
2053 F:      include/linux/platform_data/timer-ixp4xx.h
2054
2055 ARM/INTEL KEEMBAY ARCHITECTURE
2056 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2057 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2058 S:      Maintained
2059 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2060 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2061 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2062
2063 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2064 M:      Jonathan Cameron <jic23@cam.ac.uk>
2065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2066 S:      Maintained
2067 F:      arch/arm/mach-pxa/stargate2.c
2068 F:      drivers/pcmcia/pxa2xx_stargate2.c
2069
2070 ARM/INTEL XSC3 (MANZANO) ARM CORE
2071 M:      Lennert Buytenhek <kernel@wantstofly.org>
2072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2073 S:      Maintained
2074
2075 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2076 M:      Lennert Buytenhek <kernel@wantstofly.org>
2077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2078 S:      Maintained
2079
2080 ARM/LG1K ARCHITECTURE
2081 M:      Chanho Min <chanho.min@lge.com>
2082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2083 S:      Maintained
2084 F:      arch/arm64/boot/dts/lg/
2085
2086 ARM/LOGICPD PXA270 MACHINE SUPPORT
2087 M:      Lennert Buytenhek <kernel@wantstofly.org>
2088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2089 S:      Maintained
2090
2091 ARM/LPC18XX ARCHITECTURE
2092 M:      Vladimir Zapolskiy <vz@mleia.com>
2093 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2094 S:      Maintained
2095 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2096 F:      arch/arm/boot/dts/lpc43*
2097 F:      drivers/i2c/busses/i2c-lpc2k.c
2098 F:      drivers/memory/pl172.c
2099 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2100 F:      drivers/rtc/rtc-lpc24xx.c
2101 N:      lpc18xx
2102
2103 ARM/LPC32XX SOC SUPPORT
2104 M:      Vladimir Zapolskiy <vz@mleia.com>
2105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2106 S:      Maintained
2107 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2108 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2109 F:      arch/arm/boot/dts/lpc32*
2110 F:      arch/arm/mach-lpc32xx/
2111 F:      drivers/i2c/busses/i2c-pnx.c
2112 F:      drivers/net/ethernet/nxp/lpc_eth.c
2113 F:      drivers/usb/host/ohci-nxp.c
2114 F:      drivers/watchdog/pnx4008_wdt.c
2115 N:      lpc32xx
2116
2117 ARM/MAGICIAN MACHINE SUPPORT
2118 M:      Philipp Zabel <philipp.zabel@gmail.com>
2119 S:      Maintained
2120
2121 ARM/Marvell Dove/MV78xx0/Orion SOC support
2122 M:      Andrew Lunn <andrew@lunn.ch>
2123 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2124 M:      Gregory Clement <gregory.clement@bootlin.com>
2125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2126 S:      Maintained
2127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2128 F:      Documentation/devicetree/bindings/soc/dove/
2129 F:      arch/arm/boot/dts/dove*
2130 F:      arch/arm/boot/dts/orion5x*
2131 F:      arch/arm/mach-dove/
2132 F:      arch/arm/mach-mv78xx0/
2133 F:      arch/arm/mach-orion5x/
2134 F:      arch/arm/plat-orion/
2135 F:      drivers/soc/dove/
2136
2137 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2138 M:      Andrew Lunn <andrew@lunn.ch>
2139 M:      Gregory Clement <gregory.clement@bootlin.com>
2140 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2142 S:      Maintained
2143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2144 F:      arch/arm/boot/dts/armada*
2145 F:      arch/arm/boot/dts/kirkwood*
2146 F:      arch/arm/configs/mvebu_*_defconfig
2147 F:      arch/arm/mach-mvebu/
2148 F:      arch/arm64/boot/dts/marvell/armada*
2149 F:      arch/arm64/boot/dts/marvell/cn913*
2150 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2151 F:      drivers/cpufreq/armada-8k-cpufreq.c
2152 F:      drivers/cpufreq/mvebu-cpufreq.c
2153 F:      drivers/irqchip/irq-armada-370-xp.c
2154 F:      drivers/irqchip/irq-mvebu-*
2155 F:      drivers/pinctrl/mvebu/
2156 F:      drivers/rtc/rtc-armada38x.c
2157
2158 ARM/Mediatek RTC DRIVER
2159 M:      Eddie Huang <eddie.huang@mediatek.com>
2160 M:      Sean Wang <sean.wang@mediatek.com>
2161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2162 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2163 S:      Maintained
2164 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2165 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2166 F:      drivers/rtc/rtc-mt2712.c
2167 F:      drivers/rtc/rtc-mt6397.c
2168 F:      drivers/rtc/rtc-mt7622.c
2169
2170 ARM/Mediatek SoC support
2171 M:      Matthias Brugger <matthias.bgg@gmail.com>
2172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2173 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2174 S:      Maintained
2175 W:      https://mtk.wiki.kernel.org/
2176 C:      irc://chat.freenode.net/linux-mediatek
2177 F:      arch/arm/boot/dts/mt6*
2178 F:      arch/arm/boot/dts/mt7*
2179 F:      arch/arm/boot/dts/mt8*
2180 F:      arch/arm/mach-mediatek/
2181 F:      arch/arm64/boot/dts/mediatek/
2182 F:      drivers/soc/mediatek/
2183 N:      mtk
2184 N:      mt[678]
2185 K:      mediatek
2186
2187 ARM/Mediatek USB3 PHY DRIVER
2188 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2190 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2191 S:      Maintained
2192 F:      Documentation/devicetree/bindings/phy/mediatek,*
2193 F:      drivers/phy/mediatek/
2194
2195 ARM/Microchip (AT91) SoC support
2196 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2197 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2198 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2199 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2200 S:      Supported
2201 W:      http://www.linux4sam.org
2202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2203 F:      arch/arm/boot/dts/at91*.dts
2204 F:      arch/arm/boot/dts/at91*.dtsi
2205 F:      arch/arm/boot/dts/sama*.dts
2206 F:      arch/arm/boot/dts/sama*.dtsi
2207 F:      arch/arm/include/debug/at91.S
2208 F:      arch/arm/mach-at91/
2209 F:      drivers/memory/atmel*
2210 F:      drivers/watchdog/sama5d4_wdt.c
2211 F:      include/soc/at91/
2212 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2213 X:      drivers/net/wireless/atmel/
2214 N:      at91
2215 N:      atmel
2216
2217 ARM/Microchip Sparx5 SoC support
2218 M:      Lars Povlsen <lars.povlsen@microchip.com>
2219 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2220 M:      UNGLinuxDriver@microchip.com
2221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222 S:      Supported
2223 T:      git git://github.com/microchip-ung/linux-upstream.git
2224 F:      arch/arm64/boot/dts/microchip/
2225 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2226 N:      sparx5
2227
2228 Microchip Timer Counter Block (TCB) Capture Driver
2229 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2231 L:      linux-iio@vger.kernel.org
2232 S:      Maintained
2233 F:      drivers/counter/microchip-tcb-capture.c
2234
2235 ARM/MIOA701 MACHINE SUPPORT
2236 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2238 S:      Maintained
2239 F:      arch/arm/mach-pxa/mioa701.c
2240
2241 ARM/MStar/Sigmastar Armv7 SoC support
2242 M:      Daniel Palmer <daniel@thingy.jp>
2243 M:      Romain Perier <romain.perier@gmail.com>
2244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2245 S:      Maintained
2246 W:      http://linux-chenxing.org/
2247 T:      git git://github.com/linux-chenxing/linux.git
2248 F:      Documentation/devicetree/bindings/arm/mstar/*
2249 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2250 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2251 F:      arch/arm/boot/dts/mstar-*
2252 F:      arch/arm/mach-mstar/
2253 F:      drivers/clk/mstar/
2254 F:      drivers/gpio/gpio-msc313.c
2255 F:      drivers/watchdog/msc313e_wdt.c
2256 F:      include/dt-bindings/clock/mstar-*
2257 F:      include/dt-bindings/gpio/msc313-gpio.h
2258
2259 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2260 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2261 S:      Maintained
2262
2263 ARM/NOMADIK/Ux500 ARCHITECTURES
2264 M:      Linus Walleij <linus.walleij@linaro.org>
2265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2266 S:      Maintained
2267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2268 F:      Documentation/devicetree/bindings/arm/ste-*
2269 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2270 F:      Documentation/devicetree/bindings/arm/ux500/
2271 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2272 F:      arch/arm/boot/dts/ste-*
2273 F:      arch/arm/mach-nomadik/
2274 F:      arch/arm/mach-ux500/
2275 F:      drivers/clk/clk-nomadik.c
2276 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2277 F:      drivers/dma/ste_dma40*
2278 F:      drivers/hwspinlock/u8500_hsem.c
2279 F:      drivers/i2c/busses/i2c-nomadik.c
2280 F:      drivers/iio/adc/ab8500-gpadc.c
2281 F:      drivers/mfd/ab8500*
2282 F:      drivers/mfd/abx500*
2283 F:      drivers/mfd/db8500*
2284 F:      drivers/pinctrl/nomadik/
2285 F:      drivers/rtc/rtc-ab8500.c
2286 F:      drivers/rtc/rtc-pl031.c
2287 F:      drivers/soc/ux500/
2288
2289 ARM/NUVOTON NPCM ARCHITECTURE
2290 M:      Avi Fishman <avifishman70@gmail.com>
2291 M:      Tomer Maimon <tmaimon77@gmail.com>
2292 M:      Tali Perry <tali.perry1@gmail.com>
2293 R:      Patrick Venture <venture@google.com>
2294 R:      Nancy Yuen <yuenn@google.com>
2295 R:      Benjamin Fair <benjaminfair@google.com>
2296 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2297 S:      Supported
2298 F:      Documentation/devicetree/bindings/*/*/*npcm*
2299 F:      Documentation/devicetree/bindings/*/*npcm*
2300 F:      arch/arm/boot/dts/nuvoton-npcm*
2301 F:      arch/arm/mach-npcm/
2302 F:      drivers/*/*npcm*
2303 F:      drivers/*/*/*npcm*
2304 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2305
2306 ARM/NUVOTON WPCM450 ARCHITECTURE
2307 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2308 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2309 S:      Maintained
2310 F:      Documentation/devicetree/bindings/*/*wpcm*
2311 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2312 F:      arch/arm/mach-npcm/wpcm450.c
2313 F:      drivers/*/*wpcm*
2314
2315 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2316 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2317 S:      Orphan
2318 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2319 F:      arch/arm/mach-s3c/gta02.h
2320 F:      arch/arm/mach-s3c/mach-gta02.c
2321
2322 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2323 M:      Alexander Clouter <alex@digriz.org.uk>
2324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2325 S:      Maintained
2326 W:      http://www.digriz.org.uk/ts78xx/kernel
2327 F:      arch/arm/mach-orion5x/ts78xx-*
2328
2329 ARM/OXNAS platform support
2330 M:      Neil Armstrong <narmstrong@baylibre.com>
2331 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2332 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2333 S:      Maintained
2334 F:      arch/arm/boot/dts/ox8*.dts*
2335 F:      arch/arm/mach-oxnas/
2336 F:      drivers/power/reset/oxnas-restart.c
2337 N:      oxnas
2338
2339 ARM/PALM TREO SUPPORT
2340 M:      Tomas Cech <sleep_walker@suse.com>
2341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 S:      Maintained
2343 W:      http://hackndev.com
2344 F:      arch/arm/mach-pxa/palmtreo.*
2345
2346 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2347 M:      Marek Vasut <marek.vasut@gmail.com>
2348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2349 S:      Maintained
2350 W:      http://hackndev.com
2351 F:      arch/arm/mach-pxa/include/mach/palmld.h
2352 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2353 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2354 F:      arch/arm/mach-pxa/palmld.c
2355 F:      arch/arm/mach-pxa/palmt5.*
2356 F:      arch/arm/mach-pxa/palmtc.c
2357 F:      arch/arm/mach-pxa/palmte2.*
2358 F:      arch/arm/mach-pxa/palmtx.c
2359
2360 ARM/PALMZ72 SUPPORT
2361 M:      Sergey Lapin <slapin@ossfans.org>
2362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2363 S:      Maintained
2364 W:      http://hackndev.com
2365 F:      arch/arm/mach-pxa/palmz72.*
2366
2367 ARM/PLEB SUPPORT
2368 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2369 S:      Maintained
2370 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2371
2372 ARM/PT DIGITAL BOARD PORT
2373 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2375 S:      Maintained
2376 W:      http://www.armlinux.org.uk/
2377
2378 ARM/QUALCOMM SUPPORT
2379 M:      Andy Gross <agross@kernel.org>
2380 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2381 L:      linux-arm-msm@vger.kernel.org
2382 S:      Maintained
2383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2384 F:      Documentation/devicetree/bindings/*/qcom*
2385 F:      Documentation/devicetree/bindings/soc/qcom/
2386 F:      arch/arm/boot/dts/qcom-*.dts
2387 F:      arch/arm/boot/dts/qcom-*.dtsi
2388 F:      arch/arm/mach-qcom/
2389 F:      arch/arm64/boot/dts/qcom/
2390 F:      drivers/*/*/qcom*
2391 F:      drivers/*/*/qcom/
2392 F:      drivers/*/pm8???-*
2393 F:      drivers/*/qcom*
2394 F:      drivers/*/qcom/
2395 F:      drivers/bluetooth/btqcomsmd.c
2396 F:      drivers/clocksource/timer-qcom.c
2397 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2398 F:      drivers/extcon/extcon-qcom*
2399 F:      drivers/i2c/busses/i2c-qcom-geni.c
2400 F:      drivers/i2c/busses/i2c-qup.c
2401 F:      drivers/iommu/msm*
2402 F:      drivers/mfd/ssbi.c
2403 F:      drivers/mmc/host/mmci_qcom*
2404 F:      drivers/mmc/host/sdhci-msm.c
2405 F:      drivers/pci/controller/dwc/pcie-qcom.c
2406 F:      drivers/phy/qualcomm/
2407 F:      drivers/power/*/msm*
2408 F:      drivers/reset/reset-qcom-*
2409 F:      drivers/scsi/ufs/ufs-qcom*
2410 F:      drivers/spi/spi-geni-qcom.c
2411 F:      drivers/spi/spi-qcom-qspi.c
2412 F:      drivers/spi/spi-qup.c
2413 F:      drivers/tty/serial/msm_serial.c
2414 F:      drivers/usb/dwc3/dwc3-qcom.c
2415 F:      include/dt-bindings/*/qcom*
2416 F:      include/linux/*/qcom*
2417 F:      include/linux/soc/qcom/
2418
2419 ARM/RADISYS ENP2611 MACHINE SUPPORT
2420 M:      Lennert Buytenhek <kernel@wantstofly.org>
2421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2422 S:      Maintained
2423
2424 ARM/RDA MICRO ARCHITECTURE
2425 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2426 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2427 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2428 S:      Maintained
2429 F:      Documentation/devicetree/bindings/arm/rda.yaml
2430 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2431 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2432 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2433 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2434 F:      arch/arm/boot/dts/rda8810pl-*
2435 F:      drivers/clocksource/timer-rda.c
2436 F:      drivers/gpio/gpio-rda.c
2437 F:      drivers/irqchip/irq-rda-intc.c
2438 F:      drivers/tty/serial/rda-uart.c
2439
2440 ARM/REALTEK ARCHITECTURE
2441 M:      Andreas Färber <afaerber@suse.de>
2442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2443 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2444 S:      Maintained
2445 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2446 F:      arch/arm/boot/dts/rtd*
2447 F:      arch/arm/mach-realtek/
2448 F:      arch/arm64/boot/dts/realtek/
2449
2450 ARM/RENESAS ARM64 ARCHITECTURE
2451 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2452 M:      Magnus Damm <magnus.damm@gmail.com>
2453 L:      linux-renesas-soc@vger.kernel.org
2454 S:      Supported
2455 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2457 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2458 F:      arch/arm64/boot/dts/renesas/
2459 F:      drivers/soc/renesas/
2460 F:      include/linux/soc/renesas/
2461
2462 ARM/RISCPC ARCHITECTURE
2463 M:      Russell King <linux@armlinux.org.uk>
2464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2465 S:      Maintained
2466 W:      http://www.armlinux.org.uk/
2467 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2468 F:      arch/arm/include/asm/hardware/ioc.h
2469 F:      arch/arm/include/asm/hardware/iomd.h
2470 F:      arch/arm/include/asm/hardware/memc.h
2471 F:      arch/arm/mach-rpc/
2472 F:      drivers/net/ethernet/8390/etherh.c
2473 F:      drivers/net/ethernet/i825xx/ether1*
2474 F:      drivers/net/ethernet/seeq/ether3*
2475 F:      drivers/scsi/arm/
2476
2477 ARM/Rockchip SoC support
2478 M:      Heiko Stuebner <heiko@sntech.de>
2479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2480 L:      linux-rockchip@lists.infradead.org
2481 S:      Maintained
2482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2483 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2484 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2485 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2486 F:      arch/arm/boot/dts/rk3*
2487 F:      arch/arm/boot/dts/rv1108*
2488 F:      arch/arm/mach-rockchip/
2489 F:      drivers/*/*/*rockchip*
2490 F:      drivers/*/*rockchip*
2491 F:      drivers/clk/rockchip/
2492 F:      drivers/i2c/busses/i2c-rk3x.c
2493 F:      sound/soc/rockchip/
2494 N:      rockchip
2495
2496 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2497 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2499 L:      linux-samsung-soc@vger.kernel.org
2500 S:      Maintained
2501 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2502 F:      Documentation/arm/samsung/
2503 F:      Documentation/devicetree/bindings/arm/samsung/
2504 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2505 F:      arch/arm/boot/dts/exynos*
2506 F:      arch/arm/boot/dts/s3c*
2507 F:      arch/arm/boot/dts/s5p*
2508 F:      arch/arm/mach-exynos*/
2509 F:      arch/arm/mach-s3c/
2510 F:      arch/arm/mach-s5p*/
2511 F:      arch/arm64/boot/dts/exynos/
2512 F:      drivers/*/*/*s3c24*
2513 F:      drivers/*/*s3c24*
2514 F:      drivers/*/*s3c64xx*
2515 F:      drivers/*/*s5pv210*
2516 F:      drivers/clocksource/samsung_pwm_timer.c
2517 F:      drivers/memory/samsung/
2518 F:      drivers/pwm/pwm-samsung.c
2519 F:      drivers/soc/samsung/
2520 F:      drivers/tty/serial/samsung*
2521 F:      include/clocksource/samsung_pwm.h
2522 F:      include/linux/platform_data/*s3c*
2523 F:      include/linux/serial_s3c.h
2524 F:      include/linux/soc/samsung/
2525 N:      exynos
2526 N:      s3c2410
2527 N:      s3c64xx
2528 N:      s5pv210
2529
2530 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2531 M:      Andrzej Hajda <a.hajda@samsung.com>
2532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2533 L:      linux-media@vger.kernel.org
2534 S:      Maintained
2535 F:      drivers/media/platform/s5p-g2d/
2536
2537 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2538 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2539 L:      linux-samsung-soc@vger.kernel.org
2540 L:      linux-media@vger.kernel.org
2541 S:      Maintained
2542 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2543 F:      drivers/media/cec/platform/s5p/
2544
2545 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2546 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2547 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2548 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2550 L:      linux-media@vger.kernel.org
2551 S:      Maintained
2552 F:      drivers/media/platform/s5p-jpeg/
2553
2554 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2555 M:      Andrzej Hajda <a.hajda@samsung.com>
2556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2557 L:      linux-media@vger.kernel.org
2558 S:      Maintained
2559 F:      drivers/media/platform/s5p-mfc/
2560
2561 ARM/SHMOBILE ARM ARCHITECTURE
2562 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2563 M:      Magnus Damm <magnus.damm@gmail.com>
2564 L:      linux-renesas-soc@vger.kernel.org
2565 S:      Supported
2566 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2568 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2569 F:      arch/arm/boot/dts/emev2*
2570 F:      arch/arm/boot/dts/gr-peach*
2571 F:      arch/arm/boot/dts/iwg20d-q7*
2572 F:      arch/arm/boot/dts/r7s*
2573 F:      arch/arm/boot/dts/r8a*
2574 F:      arch/arm/boot/dts/r9a*
2575 F:      arch/arm/boot/dts/sh*
2576 F:      arch/arm/configs/shmobile_defconfig
2577 F:      arch/arm/include/debug/renesas-scif.S
2578 F:      arch/arm/mach-shmobile/
2579 F:      drivers/soc/renesas/
2580 F:      include/linux/soc/renesas/
2581
2582 ARM/SOCFPGA ARCHITECTURE
2583 M:      Dinh Nguyen <dinguyen@kernel.org>
2584 S:      Maintained
2585 W:      http://www.rocketboards.org
2586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2587 F:      arch/arm/boot/dts/socfpga*
2588 F:      arch/arm/configs/socfpga_defconfig
2589 F:      arch/arm/mach-socfpga/
2590 F:      arch/arm64/boot/dts/altera/
2591 F:      arch/arm64/boot/dts/intel/
2592
2593 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2594 M:      Dinh Nguyen <dinguyen@kernel.org>
2595 S:      Maintained
2596 F:      drivers/clk/socfpga/
2597
2598 ARM/SOCFPGA EDAC SUPPORT
2599 M:      Dinh Nguyen <dinguyen@kernel.org>
2600 S:      Maintained
2601 F:      drivers/edac/altera_edac.[ch]
2602
2603 ARM/SPREADTRUM SoC SUPPORT
2604 M:      Orson Zhai <orsonzhai@gmail.com>
2605 M:      Baolin Wang <baolin.wang7@gmail.com>
2606 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2607 S:      Maintained
2608 F:      arch/arm64/boot/dts/sprd
2609 N:      sprd
2610 N:      sc27xx
2611 N:      sc2731
2612
2613 ARM/STI ARCHITECTURE
2614 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2616 S:      Maintained
2617 W:      http://www.stlinux.com
2618 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2619 F:      arch/arm/boot/dts/sti*
2620 F:      arch/arm/mach-sti/
2621 F:      drivers/ata/ahci_st.c
2622 F:      drivers/char/hw_random/st-rng.c
2623 F:      drivers/clocksource/arm_global_timer.c
2624 F:      drivers/clocksource/clksrc_st_lpc.c
2625 F:      drivers/cpufreq/sti-cpufreq.c
2626 F:      drivers/dma/st_fdma*
2627 F:      drivers/i2c/busses/i2c-st.c
2628 F:      drivers/media/platform/sti/c8sectpfe/
2629 F:      drivers/media/rc/st_rc.c
2630 F:      drivers/mmc/host/sdhci-st.c
2631 F:      drivers/phy/st/phy-miphy28lp.c
2632 F:      drivers/phy/st/phy-stih407-usb.c
2633 F:      drivers/pinctrl/pinctrl-st.c
2634 F:      drivers/remoteproc/st_remoteproc.c
2635 F:      drivers/remoteproc/st_slim_rproc.c
2636 F:      drivers/reset/sti/
2637 F:      drivers/rtc/rtc-st-lpc.c
2638 F:      drivers/tty/serial/st-asc.c
2639 F:      drivers/usb/dwc3/dwc3-st.c
2640 F:      drivers/usb/host/ehci-st.c
2641 F:      drivers/usb/host/ohci-st.c
2642 F:      drivers/watchdog/st_lpc_wdt.c
2643 F:      include/linux/remoteproc/st_slim_rproc.h
2644
2645 ARM/STM32 ARCHITECTURE
2646 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2647 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2648 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2650 S:      Maintained
2651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2652 F:      arch/arm/boot/dts/stm32*
2653 F:      arch/arm/mach-stm32/
2654 F:      drivers/clocksource/armv7m_systick.c
2655 N:      stm32
2656 N:      stm
2657
2658 ARM/Synaptics SoC support
2659 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2660 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2662 S:      Maintained
2663 F:      arch/arm/boot/dts/berlin*
2664 F:      arch/arm/mach-berlin/
2665 F:      arch/arm64/boot/dts/synaptics/
2666
2667 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2668 M:      Lennert Buytenhek <kernel@wantstofly.org>
2669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2670 S:      Maintained
2671
2672 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2673 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2674 L:      linux-tegra@vger.kernel.org
2675 L:      linux-media@vger.kernel.org
2676 S:      Maintained
2677 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2678 F:      drivers/media/cec/platform/tegra/
2679
2680 ARM/TETON BGA MACHINE SUPPORT
2681 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2683 S:      Maintained
2684
2685 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2686 M:      Santosh Shilimkar <ssantosh@kernel.org>
2687 L:      linux-kernel@vger.kernel.org
2688 S:      Maintained
2689 F:      drivers/memory/*emif*
2690
2691 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2692 M:      Santosh Shilimkar <ssantosh@kernel.org>
2693 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2694 S:      Maintained
2695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2696 F:      arch/arm/boot/dts/keystone-*
2697 F:      arch/arm/mach-keystone/
2698
2699 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2700 M:      Santosh Shilimkar <ssantosh@kernel.org>
2701 L:      linux-kernel@vger.kernel.org
2702 S:      Maintained
2703 F:      drivers/clk/keystone/
2704
2705 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2706 M:      Santosh Shilimkar <ssantosh@kernel.org>
2707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2708 L:      linux-kernel@vger.kernel.org
2709 S:      Maintained
2710 F:      drivers/clocksource/timer-keystone.c
2711
2712 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2713 M:      Santosh Shilimkar <ssantosh@kernel.org>
2714 L:      linux-kernel@vger.kernel.org
2715 S:      Maintained
2716 F:      drivers/power/reset/keystone-reset.c
2717
2718 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2719 M:      Nishanth Menon <nm@ti.com>
2720 M:      Vignesh Raghavendra <vigneshr@ti.com>
2721 M:      Tero Kristo <kristo@kernel.org>
2722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2723 S:      Supported
2724 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2725 F:      arch/arm64/boot/dts/ti/Makefile
2726 F:      arch/arm64/boot/dts/ti/k3-*
2727 F:      include/dt-bindings/pinctrl/k3.h
2728
2729 ARM/THECUS N2100 MACHINE SUPPORT
2730 M:      Lennert Buytenhek <kernel@wantstofly.org>
2731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2732 S:      Maintained
2733
2734 ARM/TOSA MACHINE SUPPORT
2735 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2736 M:      Dirk Opfer <dirk@opfer-online.de>
2737 S:      Maintained
2738
2739 ARM/TOSHIBA VISCONTI ARCHITECTURE
2740 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2741 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2742 S:      Supported
2743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2744 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2745 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2746 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2747 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2748 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2749 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2750 F:      arch/arm64/boot/dts/toshiba/
2751 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2752 F:      drivers/gpio/gpio-visconti.c
2753 F:      drivers/pci/controller/dwc/pcie-visconti.c
2754 F:      drivers/pinctrl/visconti/
2755 F:      drivers/watchdog/visconti_wdt.c
2756 N:      visconti
2757
2758 ARM/UNIPHIER ARCHITECTURE
2759 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2760 M:      Masami Hiramatsu <mhiramat@kernel.org>
2761 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2762 S:      Maintained
2763 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2764 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2765 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2766 F:      arch/arm/boot/dts/uniphier*
2767 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2768 F:      arch/arm/mach-uniphier/
2769 F:      arch/arm/mm/cache-uniphier.c
2770 F:      arch/arm64/boot/dts/socionext/uniphier*
2771 F:      drivers/bus/uniphier-system-bus.c
2772 F:      drivers/clk/uniphier/
2773 F:      drivers/dma/uniphier-mdmac.c
2774 F:      drivers/gpio/gpio-uniphier.c
2775 F:      drivers/i2c/busses/i2c-uniphier*
2776 F:      drivers/irqchip/irq-uniphier-aidet.c
2777 F:      drivers/mmc/host/uniphier-sd.c
2778 F:      drivers/pinctrl/uniphier/
2779 F:      drivers/reset/reset-uniphier.c
2780 F:      drivers/tty/serial/8250/8250_uniphier.c
2781 N:      uniphier
2782
2783 ARM/VERSATILE EXPRESS PLATFORM
2784 M:      Liviu Dudau <liviu.dudau@arm.com>
2785 M:      Sudeep Holla <sudeep.holla@arm.com>
2786 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2788 S:      Maintained
2789 F:      */*/*/vexpress*
2790 F:      */*/vexpress*
2791 F:      arch/arm/boot/dts/vexpress*
2792 F:      arch/arm/mach-vexpress/
2793 F:      arch/arm64/boot/dts/arm/
2794 F:      drivers/clk/versatile/clk-vexpress-osc.c
2795 F:      drivers/clocksource/timer-versatile.c
2796 N:      mps2
2797
2798 ARM/VFP SUPPORT
2799 M:      Russell King <linux@armlinux.org.uk>
2800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2801 S:      Maintained
2802 W:      http://www.armlinux.org.uk/
2803 F:      arch/arm/vfp/
2804
2805 ARM/VOIPAC PXA270 SUPPORT
2806 M:      Marek Vasut <marek.vasut@gmail.com>
2807 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2808 S:      Maintained
2809 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2810 F:      arch/arm/mach-pxa/vpac270.c
2811
2812 ARM/VT8500 ARM ARCHITECTURE
2813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2814 S:      Orphan
2815 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2816 F:      arch/arm/mach-vt8500/
2817 F:      drivers/clocksource/timer-vt8500.c
2818 F:      drivers/i2c/busses/i2c-wmt.c
2819 F:      drivers/mmc/host/wmt-sdmmc.c
2820 F:      drivers/pwm/pwm-vt8500.c
2821 F:      drivers/rtc/rtc-vt8500.c
2822 F:      drivers/tty/serial/vt8500_serial.c
2823 F:      drivers/usb/host/ehci-platform.c
2824 F:      drivers/usb/host/uhci-platform.c
2825 F:      drivers/video/fbdev/vt8500lcdfb.*
2826 F:      drivers/video/fbdev/wm8505fb*
2827 F:      drivers/video/fbdev/wmt_ge_rops.*
2828
2829 ARM/ZIPIT Z2 SUPPORT
2830 M:      Marek Vasut <marek.vasut@gmail.com>
2831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2832 S:      Maintained
2833 F:      arch/arm/mach-pxa/include/mach/z2.h
2834 F:      arch/arm/mach-pxa/z2.c
2835
2836 ARM/ZYNQ ARCHITECTURE
2837 M:      Michal Simek <michal.simek@xilinx.com>
2838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2839 S:      Supported
2840 W:      http://wiki.xilinx.com
2841 T:      git https://github.com/Xilinx/linux-xlnx.git
2842 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2843 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2844 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2845 F:      arch/arm/mach-zynq/
2846 F:      drivers/clocksource/timer-cadence-ttc.c
2847 F:      drivers/cpuidle/cpuidle-zynq.c
2848 F:      drivers/edac/synopsys_edac.c
2849 F:      drivers/i2c/busses/i2c-cadence.c
2850 F:      drivers/i2c/busses/i2c-xiic.c
2851 F:      drivers/mmc/host/sdhci-of-arasan.c
2852 N:      zynq
2853 N:      xilinx
2854
2855 ARM64 PORT (AARCH64 ARCHITECTURE)
2856 M:      Catalin Marinas <catalin.marinas@arm.com>
2857 M:      Will Deacon <will@kernel.org>
2858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2859 S:      Maintained
2860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2861 F:      Documentation/arm64/
2862 F:      arch/arm64/
2863 F:      tools/testing/selftests/arm64/
2864 X:      arch/arm64/boot/dts/
2865
2866 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2867 M:      George McCollister <george.mccollister@gmail.com>
2868 L:      netdev@vger.kernel.org
2869 S:      Maintained
2870 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2871 F:      drivers/net/dsa/xrs700x/*
2872 F:      net/dsa/tag_xrs700x.c
2873
2874 AS3645A LED FLASH CONTROLLER DRIVER
2875 M:      Sakari Ailus <sakari.ailus@iki.fi>
2876 L:      linux-leds@vger.kernel.org
2877 S:      Maintained
2878 F:      drivers/leds/flash/leds-as3645a.c
2879
2880 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2881 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2882 L:      linux-media@vger.kernel.org
2883 S:      Maintained
2884 T:      git git://linuxtv.org/media_tree.git
2885 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2886 F:      drivers/media/i2c/ak7375.c
2887
2888 ASAHI KASEI AK8974 DRIVER
2889 M:      Linus Walleij <linus.walleij@linaro.org>
2890 L:      linux-iio@vger.kernel.org
2891 S:      Supported
2892 W:      http://www.akm.com/
2893 F:      drivers/iio/magnetometer/ak8974.c
2894
2895 ASC7621 HARDWARE MONITOR DRIVER
2896 M:      George Joseph <george.joseph@fairview5.com>
2897 L:      linux-hwmon@vger.kernel.org
2898 S:      Maintained
2899 F:      Documentation/hwmon/asc7621.rst
2900 F:      drivers/hwmon/asc7621.c
2901
2902 ASIX AX88796C SPI ETHERNET ADAPTER
2903 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2904 S:      Maintained
2905 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2906 F:      drivers/net/ethernet/asix/ax88796c_*
2907
2908 ASPEED PINCTRL DRIVERS
2909 M:      Andrew Jeffery <andrew@aj.id.au>
2910 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2911 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2912 L:      linux-gpio@vger.kernel.org
2913 S:      Maintained
2914 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2915 F:      drivers/pinctrl/aspeed/
2916
2917 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2918 M:      Eddie James <eajames@linux.ibm.com>
2919 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2920 S:      Maintained
2921 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2922 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2923 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2924
2925 ASPEED SD/MMC DRIVER
2926 M:      Andrew Jeffery <andrew@aj.id.au>
2927 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2928 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2929 L:      linux-mmc@vger.kernel.org
2930 S:      Maintained
2931 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2932 F:      drivers/mmc/host/sdhci-of-aspeed*
2933
2934 ASPEED VIDEO ENGINE DRIVER
2935 M:      Eddie James <eajames@linux.ibm.com>
2936 L:      linux-media@vger.kernel.org
2937 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2938 S:      Maintained
2939 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2940 F:      drivers/media/platform/aspeed-video.c
2941
2942 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2943 M:      Corentin Chary <corentin.chary@gmail.com>
2944 L:      acpi4asus-user@lists.sourceforge.net
2945 L:      platform-driver-x86@vger.kernel.org
2946 S:      Maintained
2947 W:      http://acpi4asus.sf.net
2948 F:      drivers/platform/x86/asus*.c
2949 F:      drivers/platform/x86/eeepc*.c
2950
2951 ASUS WIRELESS RADIO CONTROL DRIVER
2952 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2953 L:      platform-driver-x86@vger.kernel.org
2954 S:      Maintained
2955 F:      drivers/platform/x86/asus-wireless.c
2956
2957 ASYMMETRIC KEYS
2958 M:      David Howells <dhowells@redhat.com>
2959 L:      keyrings@vger.kernel.org
2960 S:      Maintained
2961 F:      Documentation/crypto/asymmetric-keys.rst
2962 F:      crypto/asymmetric_keys/
2963 F:      include/crypto/pkcs7.h
2964 F:      include/crypto/public_key.h
2965 F:      include/linux/verification.h
2966
2967 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2968 R:      Dan Williams <dan.j.williams@intel.com>
2969 S:      Odd fixes
2970 W:      http://sourceforge.net/projects/xscaleiop
2971 F:      Documentation/crypto/async-tx-api.rst
2972 F:      crypto/async_tx/
2973 F:      include/linux/async_tx.h
2974
2975 AT24 EEPROM DRIVER
2976 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2977 L:      linux-i2c@vger.kernel.org
2978 S:      Maintained
2979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2980 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2981 F:      drivers/misc/eeprom/at24.c
2982
2983 ATA OVER ETHERNET (AOE) DRIVER
2984 M:      "Justin Sanders" <justin@coraid.com>
2985 S:      Supported
2986 W:      http://www.openaoe.org/
2987 F:      Documentation/admin-guide/aoe/
2988 F:      drivers/block/aoe/
2989
2990 ATC260X PMIC MFD DRIVER
2991 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2992 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2993 L:      linux-actions@lists.infradead.org
2994 S:      Maintained
2995 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2996 F:      drivers/input/misc/atc260x-onkey.c
2997 F:      drivers/mfd/atc260*
2998 F:      drivers/power/reset/atc260x-poweroff.c
2999 F:      drivers/regulator/atc260x-regulator.c
3000 F:      include/linux/mfd/atc260x/*
3001
3002 ATHEROS 71XX/9XXX GPIO DRIVER
3003 M:      Alban Bedel <albeu@free.fr>
3004 S:      Maintained
3005 W:      https://github.com/AlbanBedel/linux
3006 T:      git git://github.com/AlbanBedel/linux
3007 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3008 F:      drivers/gpio/gpio-ath79.c
3009
3010 ATHEROS 71XX/9XXX USB PHY DRIVER
3011 M:      Alban Bedel <albeu@free.fr>
3012 S:      Maintained
3013 W:      https://github.com/AlbanBedel/linux
3014 T:      git git://github.com/AlbanBedel/linux
3015 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3016 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3017
3018 ATHEROS ATH GENERIC UTILITIES
3019 M:      Kalle Valo <kvalo@codeaurora.org>
3020 L:      linux-wireless@vger.kernel.org
3021 S:      Supported
3022 F:      drivers/net/wireless/ath/*
3023
3024 ATHEROS ATH5K WIRELESS DRIVER
3025 M:      Jiri Slaby <jirislaby@kernel.org>
3026 M:      Nick Kossifidis <mickflemm@gmail.com>
3027 M:      Luis Chamberlain <mcgrof@kernel.org>
3028 L:      linux-wireless@vger.kernel.org
3029 S:      Maintained
3030 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3031 F:      drivers/net/wireless/ath/ath5k/
3032
3033 ATHEROS ATH6KL WIRELESS DRIVER
3034 M:      Kalle Valo <kvalo@codeaurora.org>
3035 L:      linux-wireless@vger.kernel.org
3036 S:      Supported
3037 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3039 F:      drivers/net/wireless/ath/ath6kl/
3040
3041 ATI_REMOTE2 DRIVER
3042 M:      Ville Syrjala <syrjala@sci.fi>
3043 S:      Maintained
3044 F:      drivers/input/misc/ati_remote2.c
3045
3046 ATK0110 HWMON DRIVER
3047 M:      Luca Tettamanti <kronos.it@gmail.com>
3048 L:      linux-hwmon@vger.kernel.org
3049 S:      Maintained
3050 F:      drivers/hwmon/asus_atk0110.c
3051
3052 ATLX ETHERNET DRIVERS
3053 M:      Chris Snook <chris.snook@gmail.com>
3054 L:      netdev@vger.kernel.org
3055 S:      Maintained
3056 W:      http://sourceforge.net/projects/atl1
3057 W:      http://atl1.sourceforge.net
3058 F:      drivers/net/ethernet/atheros/
3059
3060 ATM
3061 M:      Chas Williams <3chas3@gmail.com>
3062 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3063 L:      netdev@vger.kernel.org
3064 S:      Maintained
3065 W:      http://linux-atm.sourceforge.net
3066 F:      drivers/atm/
3067 F:      include/linux/atm*
3068 F:      include/uapi/linux/atm*
3069
3070 ATMEL MACB ETHERNET DRIVER
3071 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3072 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3073 S:      Supported
3074 F:      drivers/net/ethernet/cadence/
3075
3076 ATMEL MAXTOUCH DRIVER
3077 M:      Nick Dyer <nick@shmanahar.org>
3078 S:      Maintained
3079 T:      git git://github.com/ndyer/linux.git
3080 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3081 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3082
3083 ATMEL WIRELESS DRIVER
3084 M:      Simon Kelley <simon@thekelleys.org.uk>
3085 L:      linux-wireless@vger.kernel.org
3086 S:      Maintained
3087 W:      http://www.thekelleys.org.uk/atmel
3088 W:      http://atmelwlandriver.sourceforge.net/
3089 F:      drivers/net/wireless/atmel/atmel*
3090
3091 ATOMIC INFRASTRUCTURE
3092 M:      Will Deacon <will@kernel.org>
3093 M:      Peter Zijlstra <peterz@infradead.org>
3094 R:      Boqun Feng <boqun.feng@gmail.com>
3095 L:      linux-kernel@vger.kernel.org
3096 S:      Maintained
3097 F:      arch/*/include/asm/atomic*.h
3098 F:      include/*/atomic*.h
3099 F:      include/linux/refcount.h
3100 F:      Documentation/atomic_*.txt
3101 F:      scripts/atomic/
3102
3103 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3104 M:      Bradley Grove <linuxdrivers@attotech.com>
3105 L:      linux-scsi@vger.kernel.org
3106 S:      Supported
3107 W:      http://www.attotech.com
3108 F:      drivers/scsi/esas2r
3109
3110 ATUSB IEEE 802.15.4 RADIO DRIVER
3111 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3112 L:      linux-wpan@vger.kernel.org
3113 S:      Maintained
3114 F:      drivers/net/ieee802154/at86rf230.h
3115 F:      drivers/net/ieee802154/atusb.c
3116 F:      drivers/net/ieee802154/atusb.h
3117
3118 AUDIT SUBSYSTEM
3119 M:      Paul Moore <paul@paul-moore.com>
3120 M:      Eric Paris <eparis@redhat.com>
3121 L:      linux-audit@redhat.com (moderated for non-subscribers)
3122 S:      Supported
3123 W:      https://github.com/linux-audit
3124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3125 F:      include/asm-generic/audit_*.h
3126 F:      include/linux/audit.h
3127 F:      include/uapi/linux/audit.h
3128 F:      kernel/audit*
3129 F:      lib/*audit.c
3130
3131 AUXILIARY DISPLAY DRIVERS
3132 M:      Miguel Ojeda <ojeda@kernel.org>
3133 S:      Maintained
3134 F:      drivers/auxdisplay/
3135 F:      include/linux/cfag12864b.h
3136
3137 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3138 M:      Andreas Klinger <ak@it-klinger.de>
3139 L:      linux-iio@vger.kernel.org
3140 S:      Maintained
3141 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3142 F:      drivers/iio/adc/hx711.c
3143
3144 AX.25 NETWORK LAYER
3145 M:      Ralf Baechle <ralf@linux-mips.org>
3146 L:      linux-hams@vger.kernel.org
3147 S:      Maintained
3148 W:      http://www.linux-ax25.org/
3149 F:      include/net/ax25.h
3150 F:      include/uapi/linux/ax25.h
3151 F:      net/ax25/
3152
3153 AXENTIA ARM DEVICES
3154 M:      Peter Rosin <peda@axentia.se>
3155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3156 S:      Maintained
3157 F:      arch/arm/boot/dts/at91-linea.dtsi
3158 F:      arch/arm/boot/dts/at91-natte.dtsi
3159 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3160 F:      arch/arm/boot/dts/at91-tse850-3.dts
3161
3162 AXENTIA ASOC DRIVERS
3163 M:      Peter Rosin <peda@axentia.se>
3164 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3165 S:      Maintained
3166 F:      Documentation/devicetree/bindings/sound/axentia,*
3167 F:      sound/soc/atmel/tse850-pcm5142.c
3168
3169 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3170 M:      Nuno Sá <nuno.sa@analog.com>
3171 L:      linux-hwmon@vger.kernel.org
3172 S:      Supported
3173 W:      http://ez.analog.com/community/linux-device-drivers
3174 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3175 F:      drivers/hwmon/axi-fan-control.c
3176
3177 AXXIA I2C CONTROLLER
3178 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3179 L:      linux-i2c@vger.kernel.org
3180 S:      Maintained
3181 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3182 F:      drivers/i2c/busses/i2c-axxia.c
3183
3184 AZ6007 DVB DRIVER
3185 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3186 L:      linux-media@vger.kernel.org
3187 S:      Maintained
3188 W:      https://linuxtv.org
3189 T:      git git://linuxtv.org/media_tree.git
3190 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3191
3192 AZTECH FM RADIO RECEIVER DRIVER
3193 M:      Hans Verkuil <hverkuil@xs4all.nl>
3194 L:      linux-media@vger.kernel.org
3195 S:      Maintained
3196 W:      https://linuxtv.org
3197 T:      git git://linuxtv.org/media_tree.git
3198 F:      drivers/media/radio/radio-aztech*
3199
3200 B43 WIRELESS DRIVER
3201 L:      linux-wireless@vger.kernel.org
3202 L:      b43-dev@lists.infradead.org
3203 S:      Odd Fixes
3204 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3205 F:      drivers/net/wireless/broadcom/b43/
3206
3207 B43LEGACY WIRELESS DRIVER
3208 M:      Larry Finger <Larry.Finger@lwfinger.net>
3209 L:      linux-wireless@vger.kernel.org
3210 L:      b43-dev@lists.infradead.org
3211 S:      Maintained
3212 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3213 F:      drivers/net/wireless/broadcom/b43legacy/
3214
3215 BACKLIGHT CLASS/SUBSYSTEM
3216 M:      Lee Jones <lee.jones@linaro.org>
3217 M:      Daniel Thompson <daniel.thompson@linaro.org>
3218 M:      Jingoo Han <jingoohan1@gmail.com>
3219 L:      dri-devel@lists.freedesktop.org
3220 S:      Maintained
3221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3222 F:      Documentation/ABI/stable/sysfs-class-backlight
3223 F:      Documentation/ABI/testing/sysfs-class-backlight
3224 F:      Documentation/devicetree/bindings/leds/backlight
3225 F:      drivers/video/backlight/
3226 F:      include/linux/backlight.h
3227 F:      include/linux/pwm_backlight.h
3228
3229 BATMAN ADVANCED
3230 M:      Marek Lindner <mareklindner@neomailbox.ch>
3231 M:      Simon Wunderlich <sw@simonwunderlich.de>
3232 M:      Antonio Quartulli <a@unstable.cc>
3233 M:      Sven Eckelmann <sven@narfation.org>
3234 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3235 S:      Maintained
3236 W:      https://www.open-mesh.org/
3237 Q:      https://patchwork.open-mesh.org/project/batman/list/
3238 B:      https://www.open-mesh.org/projects/batman-adv/issues
3239 C:      ircs://irc.hackint.org/batadv
3240 T:      git https://git.open-mesh.org/linux-merge.git
3241 F:      Documentation/networking/batman-adv.rst
3242 F:      include/uapi/linux/batadv_packet.h
3243 F:      include/uapi/linux/batman_adv.h
3244 F:      net/batman-adv/
3245
3246 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3247 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3248 L:      linux-hams@vger.kernel.org
3249 S:      Maintained
3250 W:      http://www.baycom.org/~tom/ham/ham.html
3251 F:      drivers/net/hamradio/baycom*
3252
3253 BCACHE (BLOCK LAYER CACHE)
3254 M:      Coly Li <colyli@suse.de>
3255 M:      Kent Overstreet <kent.overstreet@gmail.com>
3256 L:      linux-bcache@vger.kernel.org
3257 S:      Maintained
3258 W:      http://bcache.evilpiepirate.org
3259 C:      irc://irc.oftc.net/bcache
3260 F:      drivers/md/bcache/
3261
3262 BDISP ST MEDIA DRIVER
3263 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3264 L:      linux-media@vger.kernel.org
3265 S:      Supported
3266 W:      https://linuxtv.org
3267 T:      git git://linuxtv.org/media_tree.git
3268 F:      drivers/media/platform/sti/bdisp
3269
3270 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3271 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3272 L:      netdev@vger.kernel.org
3273 S:      Maintained
3274 F:      drivers/net/ethernet/ec_bhf.c
3275
3276 BEFS FILE SYSTEM
3277 M:      Luis de Bethencourt <luisbg@kernel.org>
3278 M:      Salah Triki <salah.triki@gmail.com>
3279 S:      Maintained
3280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3281 F:      Documentation/filesystems/befs.rst
3282 F:      fs/befs/
3283
3284 BFQ I/O SCHEDULER
3285 M:      Paolo Valente <paolo.valente@linaro.org>
3286 M:      Jens Axboe <axboe@kernel.dk>
3287 L:      linux-block@vger.kernel.org
3288 S:      Maintained
3289 F:      Documentation/block/bfq-iosched.rst
3290 F:      block/bfq-*
3291
3292 BFS FILE SYSTEM
3293 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3294 S:      Maintained
3295 F:      Documentation/filesystems/bfs.rst
3296 F:      fs/bfs/
3297 F:      include/uapi/linux/bfs_fs.h
3298
3299 BITMAP API
3300 M:      Yury Norov <yury.norov@gmail.com>
3301 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3302 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3303 S:      Maintained
3304 F:      include/asm-generic/bitops/find.h
3305 F:      include/linux/bitmap.h
3306 F:      lib/bitmap.c
3307 F:      lib/find_bit.c
3308 F:      lib/find_bit_benchmark.c
3309 F:      lib/test_bitmap.c
3310 F:      tools/include/asm-generic/bitops/find.h
3311 F:      tools/include/linux/bitmap.h
3312 F:      tools/lib/bitmap.c
3313 F:      tools/lib/find_bit.c
3314
3315 BLINKM RGB LED DRIVER
3316 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3317 S:      Maintained
3318 F:      drivers/leds/leds-blinkm.c
3319
3320 BLOCK LAYER
3321 M:      Jens Axboe <axboe@kernel.dk>
3322 L:      linux-block@vger.kernel.org
3323 S:      Maintained
3324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3325 F:      block/
3326 F:      drivers/block/
3327 F:      include/linux/blk*
3328 F:      kernel/trace/blktrace.c
3329 F:      lib/sbitmap.c
3330
3331 BLOCK2MTD DRIVER
3332 M:      Joern Engel <joern@lazybastard.org>
3333 L:      linux-mtd@lists.infradead.org
3334 S:      Maintained
3335 F:      drivers/mtd/devices/block2mtd.c
3336
3337 BLUETOOTH DRIVERS
3338 M:      Marcel Holtmann <marcel@holtmann.org>
3339 M:      Johan Hedberg <johan.hedberg@gmail.com>
3340 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3341 L:      linux-bluetooth@vger.kernel.org
3342 S:      Supported
3343 W:      http://www.bluez.org/
3344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3346 F:      drivers/bluetooth/
3347
3348 BLUETOOTH SUBSYSTEM
3349 M:      Marcel Holtmann <marcel@holtmann.org>
3350 M:      Johan Hedberg <johan.hedberg@gmail.com>
3351 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3352 L:      linux-bluetooth@vger.kernel.org
3353 S:      Supported
3354 W:      http://www.bluez.org/
3355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3357 F:      include/net/bluetooth/
3358 F:      net/bluetooth/
3359
3360 BONDING DRIVER
3361 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3362 M:      Veaceslav Falico <vfalico@gmail.com>
3363 M:      Andy Gospodarek <andy@greyhouse.net>
3364 L:      netdev@vger.kernel.org
3365 S:      Supported
3366 W:      http://sourceforge.net/projects/bonding/
3367 F:      drivers/net/bonding/
3368 F:      include/net/bonding.h
3369 F:      include/uapi/linux/if_bonding.h
3370
3371 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3372 M:      Dan Robertson <dan@dlrobertson.com>
3373 L:      linux-iio@vger.kernel.org
3374 S:      Maintained
3375 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3376 F:      drivers/iio/accel/bma400*
3377
3378 BPF (Safe dynamic programs and tools)
3379 M:      Alexei Starovoitov <ast@kernel.org>
3380 M:      Daniel Borkmann <daniel@iogearbox.net>
3381 M:      Andrii Nakryiko <andrii@kernel.org>
3382 R:      Martin KaFai Lau <kafai@fb.com>
3383 R:      Song Liu <songliubraving@fb.com>
3384 R:      Yonghong Song <yhs@fb.com>
3385 R:      John Fastabend <john.fastabend@gmail.com>
3386 R:      KP Singh <kpsingh@kernel.org>
3387 L:      netdev@vger.kernel.org
3388 L:      bpf@vger.kernel.org
3389 S:      Supported
3390 W:      https://bpf.io/
3391 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3394 F:      Documentation/bpf/
3395 F:      Documentation/networking/filter.rst
3396 F:      Documentation/userspace-api/ebpf/
3397 F:      arch/*/net/*
3398 F:      include/linux/bpf*
3399 F:      include/linux/btf*
3400 F:      include/linux/filter.h
3401 F:      include/trace/events/xdp.h
3402 F:      include/uapi/linux/bpf*
3403 F:      include/uapi/linux/btf*
3404 F:      include/uapi/linux/filter.h
3405 F:      kernel/bpf/
3406 F:      kernel/trace/bpf_trace.c
3407 F:      lib/test_bpf.c
3408 F:      net/bpf/
3409 F:      net/core/filter.c
3410 F:      net/sched/act_bpf.c
3411 F:      net/sched/cls_bpf.c
3412 F:      samples/bpf/
3413 F:      scripts/bpf_doc.py
3414 F:      tools/bpf/
3415 F:      tools/lib/bpf/
3416 F:      tools/testing/selftests/bpf/
3417 N:      bpf
3418 K:      bpf
3419
3420 BPF JIT for ARM
3421 M:      Shubham Bansal <illusionist.neo@gmail.com>
3422 L:      netdev@vger.kernel.org
3423 L:      bpf@vger.kernel.org
3424 S:      Maintained
3425 F:      arch/arm/net/
3426
3427 BPF JIT for ARM64
3428 M:      Daniel Borkmann <daniel@iogearbox.net>
3429 M:      Alexei Starovoitov <ast@kernel.org>
3430 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3431 L:      netdev@vger.kernel.org
3432 L:      bpf@vger.kernel.org
3433 S:      Supported
3434 F:      arch/arm64/net/
3435
3436 BPF JIT for MIPS (32-BIT AND 64-BIT)
3437 M:      Paul Burton <paulburton@kernel.org>
3438 L:      netdev@vger.kernel.org
3439 L:      bpf@vger.kernel.org
3440 S:      Maintained
3441 F:      arch/mips/net/
3442
3443 BPF JIT for NFP NICs
3444 M:      Jakub Kicinski <kuba@kernel.org>
3445 L:      netdev@vger.kernel.org
3446 L:      bpf@vger.kernel.org
3447 S:      Supported
3448 F:      drivers/net/ethernet/netronome/nfp/bpf/
3449
3450 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3451 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3452 L:      netdev@vger.kernel.org
3453 L:      bpf@vger.kernel.org
3454 S:      Maintained
3455 F:      arch/powerpc/net/
3456
3457 BPF JIT for RISC-V (32-bit)
3458 M:      Luke Nelson <luke.r.nels@gmail.com>
3459 M:      Xi Wang <xi.wang@gmail.com>
3460 L:      netdev@vger.kernel.org
3461 L:      bpf@vger.kernel.org
3462 S:      Maintained
3463 F:      arch/riscv/net/
3464 X:      arch/riscv/net/bpf_jit_comp64.c
3465
3466 BPF JIT for RISC-V (64-bit)
3467 M:      Björn Töpel <bjorn@kernel.org>
3468 L:      netdev@vger.kernel.org
3469 L:      bpf@vger.kernel.org
3470 S:      Maintained
3471 F:      arch/riscv/net/
3472 X:      arch/riscv/net/bpf_jit_comp32.c
3473
3474 BPF JIT for S390
3475 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3476 M:      Heiko Carstens <hca@linux.ibm.com>
3477 M:      Vasily Gorbik <gor@linux.ibm.com>
3478 L:      netdev@vger.kernel.org
3479 L:      bpf@vger.kernel.org
3480 S:      Maintained
3481 F:      arch/s390/net/
3482 X:      arch/s390/net/pnet.c
3483
3484 BPF JIT for SPARC (32-BIT AND 64-BIT)
3485 M:      David S. Miller <davem@davemloft.net>
3486 L:      netdev@vger.kernel.org
3487 L:      bpf@vger.kernel.org
3488 S:      Maintained
3489 F:      arch/sparc/net/
3490
3491 BPF JIT for X86 32-BIT
3492 M:      Wang YanQing <udknight@gmail.com>
3493 L:      netdev@vger.kernel.org
3494 L:      bpf@vger.kernel.org
3495 S:      Maintained
3496 F:      arch/x86/net/bpf_jit_comp32.c
3497
3498 BPF JIT for X86 64-BIT
3499 M:      Alexei Starovoitov <ast@kernel.org>
3500 M:      Daniel Borkmann <daniel@iogearbox.net>
3501 L:      netdev@vger.kernel.org
3502 L:      bpf@vger.kernel.org
3503 S:      Supported
3504 F:      arch/x86/net/
3505 X:      arch/x86/net/bpf_jit_comp32.c
3506
3507 BPF LSM (Security Audit and Enforcement using BPF)
3508 M:      KP Singh <kpsingh@kernel.org>
3509 R:      Florent Revest <revest@chromium.org>
3510 R:      Brendan Jackman <jackmanb@chromium.org>
3511 L:      bpf@vger.kernel.org
3512 S:      Maintained
3513 F:      Documentation/bpf/bpf_lsm.rst
3514 F:      include/linux/bpf_lsm.h
3515 F:      kernel/bpf/bpf_lsm.c
3516 F:      security/bpf/
3517
3518 BROADCOM B44 10/100 ETHERNET DRIVER
3519 M:      Michael Chan <michael.chan@broadcom.com>
3520 L:      netdev@vger.kernel.org
3521 S:      Supported
3522 F:      drivers/net/ethernet/broadcom/b44.*
3523
3524 BROADCOM B53 ETHERNET SWITCH DRIVER
3525 M:      Florian Fainelli <f.fainelli@gmail.com>
3526 L:      netdev@vger.kernel.org
3527 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3528 S:      Supported
3529 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3530 F:      drivers/net/dsa/b53/*
3531 F:      include/linux/dsa/brcm.h
3532 F:      include/linux/platform_data/b53.h
3533
3534 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3535 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3536 L:      bcm-kernel-feedback-list@broadcom.com
3537 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3539 S:      Maintained
3540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3541 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3542 F:      drivers/pci/controller/pcie-brcmstb.c
3543 F:      drivers/staging/vc04_services
3544 N:      bcm2711
3545 N:      bcm283*
3546
3547 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3548 M:      Florian Fainelli <f.fainelli@gmail.com>
3549 M:      Ray Jui <rjui@broadcom.com>
3550 M:      Scott Branden <sbranden@broadcom.com>
3551 M:      bcm-kernel-feedback-list@broadcom.com
3552 S:      Maintained
3553 T:      git git://github.com/broadcom/mach-bcm
3554 F:      arch/arm/mach-bcm/
3555 N:      bcm281*
3556 N:      bcm113*
3557 N:      bcm216*
3558 N:      kona
3559
3560 BROADCOM BCM47XX MIPS ARCHITECTURE
3561 M:      Hauke Mehrtens <hauke@hauke-m.de>
3562 M:      Rafał Miłecki <zajec5@gmail.com>
3563 L:      linux-mips@vger.kernel.org
3564 S:      Maintained
3565 F:      Documentation/devicetree/bindings/mips/brcm/
3566 F:      arch/mips/bcm47xx/*
3567 F:      arch/mips/include/asm/mach-bcm47xx/*
3568
3569 BROADCOM BCM4908 ETHERNET DRIVER
3570 M:      Rafał Miłecki <rafal@milecki.pl>
3571 M:      bcm-kernel-feedback-list@broadcom.com
3572 L:      netdev@vger.kernel.org
3573 S:      Maintained
3574 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3575 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3576 F:      drivers/net/ethernet/broadcom/unimac.h
3577
3578 BROADCOM BCM5301X ARM ARCHITECTURE
3579 M:      Hauke Mehrtens <hauke@hauke-m.de>
3580 M:      Rafał Miłecki <zajec5@gmail.com>
3581 M:      bcm-kernel-feedback-list@broadcom.com
3582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3583 S:      Maintained
3584 F:      arch/arm/boot/dts/bcm470*
3585 F:      arch/arm/boot/dts/bcm5301*
3586 F:      arch/arm/boot/dts/bcm953012*
3587 F:      arch/arm/mach-bcm/bcm_5301x.c
3588
3589 BROADCOM BCM53573 ARM ARCHITECTURE
3590 M:      Rafał Miłecki <rafal@milecki.pl>
3591 L:      bcm-kernel-feedback-list@broadcom.com
3592 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3593 S:      Maintained
3594 F:      arch/arm/boot/dts/bcm47189*
3595 F:      arch/arm/boot/dts/bcm53573*
3596
3597 BROADCOM BCM63XX ARM ARCHITECTURE
3598 M:      Florian Fainelli <f.fainelli@gmail.com>
3599 M:      bcm-kernel-feedback-list@broadcom.com
3600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3601 S:      Maintained
3602 T:      git git://github.com/broadcom/stblinux.git
3603 N:      bcm63xx
3604
3605 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3606 M:      Kevin Cernekee <cernekee@gmail.com>
3607 L:      linux-usb@vger.kernel.org
3608 S:      Maintained
3609 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3610
3611 BROADCOM BCM7XXX ARM ARCHITECTURE
3612 M:      Florian Fainelli <f.fainelli@gmail.com>
3613 M:      bcm-kernel-feedback-list@broadcom.com
3614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3615 S:      Maintained
3616 T:      git git://github.com/broadcom/stblinux.git
3617 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3618 F:      arch/arm/boot/dts/bcm7*.dts*
3619 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3620 F:      arch/arm/mach-bcm/*brcmstb*
3621 F:      arch/arm/mm/cache-b15-rac.c
3622 F:      drivers/bus/brcmstb_gisb.c
3623 F:      drivers/pci/controller/pcie-brcmstb.c
3624 N:      brcmstb
3625
3626 BROADCOM BDC DRIVER
3627 M:      Al Cooper <alcooperx@gmail.com>
3628 L:      linux-usb@vger.kernel.org
3629 L:      bcm-kernel-feedback-list@broadcom.com
3630 S:      Maintained
3631 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3632 F:      drivers/usb/gadget/udc/bdc/
3633
3634 BROADCOM BMIPS CPUFREQ DRIVER
3635 M:      Markus Mayer <mmayer@broadcom.com>
3636 M:      bcm-kernel-feedback-list@broadcom.com
3637 L:      linux-pm@vger.kernel.org
3638 S:      Maintained
3639 F:      drivers/cpufreq/bmips-cpufreq.c
3640
3641 BROADCOM BMIPS MIPS ARCHITECTURE
3642 M:      Florian Fainelli <f.fainelli@gmail.com>
3643 L:      bcm-kernel-feedback-list@broadcom.com
3644 L:      linux-mips@vger.kernel.org
3645 S:      Maintained
3646 T:      git git://github.com/broadcom/stblinux.git
3647 F:      arch/mips/bmips/*
3648 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3649 F:      arch/mips/include/asm/mach-bmips/*
3650 F:      arch/mips/kernel/*bmips*
3651 F:      drivers/soc/bcm/bcm63xx
3652 F:      drivers/irqchip/irq-bcm63*
3653 F:      drivers/irqchip/irq-bcm7*
3654 F:      drivers/irqchip/irq-brcmstb*
3655 F:      include/linux/bcm963xx_nvram.h
3656 F:      include/linux/bcm963xx_tag.h
3657
3658 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3659 M:      Rasesh Mody <rmody@marvell.com>
3660 M:      GR-Linux-NIC-Dev@marvell.com
3661 L:      netdev@vger.kernel.org
3662 S:      Supported
3663 F:      drivers/net/ethernet/broadcom/bnx2.*
3664 F:      drivers/net/ethernet/broadcom/bnx2_*
3665
3666 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3667 M:      Saurav Kashyap <skashyap@marvell.com>
3668 M:      Javed Hasan <jhasan@marvell.com>
3669 M:      GR-QLogic-Storage-Upstream@marvell.com
3670 L:      linux-scsi@vger.kernel.org
3671 S:      Supported
3672 F:      drivers/scsi/bnx2fc/
3673
3674 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3675 M:      Nilesh Javali <njavali@marvell.com>
3676 M:      Manish Rangankar <mrangankar@marvell.com>
3677 M:      GR-QLogic-Storage-Upstream@marvell.com
3678 L:      linux-scsi@vger.kernel.org
3679 S:      Supported
3680 F:      drivers/scsi/bnx2i/
3681
3682 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3683 M:      Ariel Elior <aelior@marvell.com>
3684 M:      Sudarsana Kalluru <skalluru@marvell.com>
3685 M:      GR-everest-linux-l2@marvell.com
3686 L:      netdev@vger.kernel.org
3687 S:      Supported
3688 F:      drivers/net/ethernet/broadcom/bnx2x/
3689
3690 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3691 M:      Michael Chan <michael.chan@broadcom.com>
3692 L:      netdev@vger.kernel.org
3693 S:      Supported
3694 F:      drivers/net/ethernet/broadcom/bnxt/
3695
3696 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3697 M:      Arend van Spriel <aspriel@gmail.com>
3698 M:      Franky Lin <franky.lin@broadcom.com>
3699 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3700 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3701 M:      Wright Feng <wright.feng@infineon.com>
3702 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3703 L:      linux-wireless@vger.kernel.org
3704 L:      brcm80211-dev-list.pdl@broadcom.com
3705 L:      SHA-cyfmac-dev-list@infineon.com
3706 S:      Supported
3707 F:      drivers/net/wireless/broadcom/brcm80211/
3708
3709 BROADCOM BRCMSTB GPIO DRIVER
3710 M:      Gregory Fong <gregory.0xf0@gmail.com>
3711 L:      bcm-kernel-feedback-list@broadcom.com
3712 S:      Supported
3713 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3714 F:      drivers/gpio/gpio-brcmstb.c
3715
3716 BROADCOM BRCMSTB I2C DRIVER
3717 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3718 L:      linux-i2c@vger.kernel.org
3719 L:      bcm-kernel-feedback-list@broadcom.com
3720 S:      Supported
3721 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3722 F:      drivers/i2c/busses/i2c-brcmstb.c
3723
3724 BROADCOM BRCMSTB UART DRIVER
3725 M:      Al Cooper <alcooperx@gmail.com>
3726 L:      linux-serial@vger.kernel.org
3727 L:      bcm-kernel-feedback-list@broadcom.com
3728 S:      Maintained
3729 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3730 F:      drivers/tty/serial/8250/8250_bcm7271.c
3731
3732 BROADCOM BRCMSTB USB EHCI DRIVER
3733 M:      Al Cooper <alcooperx@gmail.com>
3734 L:      linux-usb@vger.kernel.org
3735 L:      bcm-kernel-feedback-list@broadcom.com
3736 S:      Maintained
3737 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3738 F:      drivers/usb/host/ehci-brcm.*
3739
3740 BROADCOM BRCMSTB USB PIN MAP DRIVER
3741 M:      Al Cooper <alcooperx@gmail.com>
3742 L:      linux-usb@vger.kernel.org
3743 L:      bcm-kernel-feedback-list@broadcom.com
3744 S:      Maintained
3745 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3746 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3747
3748 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3749 M:      Al Cooper <alcooperx@gmail.com>
3750 L:      linux-kernel@vger.kernel.org
3751 L:      bcm-kernel-feedback-list@broadcom.com
3752 S:      Maintained
3753 F:      drivers/phy/broadcom/phy-brcm-usb*
3754
3755 BROADCOM ETHERNET PHY DRIVERS
3756 M:      Florian Fainelli <f.fainelli@gmail.com>
3757 L:      bcm-kernel-feedback-list@broadcom.com
3758 L:      netdev@vger.kernel.org
3759 S:      Supported
3760 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3761 F:      drivers/net/phy/bcm*.[ch]
3762 F:      drivers/net/phy/broadcom.c
3763 F:      include/linux/brcmphy.h
3764
3765 BROADCOM GENET ETHERNET DRIVER
3766 M:      Doug Berger <opendmb@gmail.com>
3767 M:      Florian Fainelli <f.fainelli@gmail.com>
3768 L:      bcm-kernel-feedback-list@broadcom.com
3769 L:      netdev@vger.kernel.org
3770 S:      Supported
3771 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3772 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3773 F:      drivers/net/ethernet/broadcom/genet/
3774 F:      drivers/net/ethernet/broadcom/unimac.h
3775 F:      drivers/net/mdio/mdio-bcm-unimac.c
3776 F:      include/linux/platform_data/bcmgenet.h
3777 F:      include/linux/platform_data/mdio-bcm-unimac.h
3778
3779 BROADCOM IPROC ARM ARCHITECTURE
3780 M:      Ray Jui <rjui@broadcom.com>
3781 M:      Scott Branden <sbranden@broadcom.com>
3782 M:      bcm-kernel-feedback-list@broadcom.com
3783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3784 S:      Maintained
3785 T:      git git://github.com/broadcom/cygnus-linux.git
3786 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3787 F:      arch/arm64/boot/dts/broadcom/stingray/*
3788 F:      drivers/clk/bcm/clk-ns*
3789 F:      drivers/clk/bcm/clk-sr*
3790 F:      drivers/pinctrl/bcm/pinctrl-ns*
3791 F:      include/dt-bindings/clock/bcm-sr*
3792 N:      iproc
3793 N:      cygnus
3794 N:      bcm[-_]nsp
3795 N:      bcm9113*
3796 N:      bcm9583*
3797 N:      bcm9585*
3798 N:      bcm9586*
3799 N:      bcm988312
3800 N:      bcm113*
3801 N:      bcm583*
3802 N:      bcm585*
3803 N:      bcm586*
3804 N:      bcm88312
3805 N:      hr2
3806 N:      stingray
3807
3808 BROADCOM IPROC GBIT ETHERNET DRIVER
3809 M:      Rafał Miłecki <rafal@milecki.pl>
3810 M:      bcm-kernel-feedback-list@broadcom.com
3811 L:      netdev@vger.kernel.org
3812 S:      Maintained
3813 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3814 F:      drivers/net/ethernet/broadcom/bgmac*
3815 F:      drivers/net/ethernet/broadcom/unimac.h
3816
3817 BROADCOM KONA GPIO DRIVER
3818 M:      Ray Jui <rjui@broadcom.com>
3819 L:      bcm-kernel-feedback-list@broadcom.com
3820 S:      Supported
3821 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3822 F:      drivers/gpio/gpio-bcm-kona.c
3823
3824 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3825 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3826 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3827 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3828 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3829 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3830 L:      linux-scsi@vger.kernel.org
3831 S:      Supported
3832 W:      https://www.broadcom.com/support/storage
3833 F:      drivers/scsi/mpi3mr/
3834
3835 BROADCOM NETXTREME-E ROCE DRIVER
3836 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3837 L:      linux-rdma@vger.kernel.org
3838 S:      Supported
3839 W:      http://www.broadcom.com
3840 F:      drivers/infiniband/hw/bnxt_re/
3841 F:      include/uapi/rdma/bnxt_re-abi.h
3842
3843 BROADCOM NVRAM DRIVER
3844 M:      Rafał Miłecki <zajec5@gmail.com>
3845 L:      linux-mips@vger.kernel.org
3846 S:      Maintained
3847 F:      drivers/firmware/broadcom/*
3848
3849 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3850 M:      Rafał Miłecki <rafal@milecki.pl>
3851 M:      Florian Fainelli <f.fainelli@gmail.com>
3852 M:      bcm-kernel-feedback-list@broadcom.com
3853 L:      linux-pm@vger.kernel.org
3854 S:      Maintained
3855 T:      git git://github.com/broadcom/stblinux.git
3856 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3857 F:      include/dt-bindings/soc/bcm-pmb.h
3858
3859 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3860 M:      Rafał Miłecki <zajec5@gmail.com>
3861 L:      linux-wireless@vger.kernel.org
3862 S:      Maintained
3863 F:      drivers/bcma/
3864 F:      include/linux/bcma/
3865
3866 BROADCOM SPI DRIVER
3867 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3868 M:      bcm-kernel-feedback-list@broadcom.com
3869 S:      Maintained
3870 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3871 F:      drivers/spi/spi-bcm-qspi.*
3872 F:      drivers/spi/spi-brcmstb-qspi.c
3873 F:      drivers/spi/spi-iproc-qspi.c
3874
3875 BROADCOM STB AVS CPUFREQ DRIVER
3876 M:      Markus Mayer <mmayer@broadcom.com>
3877 M:      bcm-kernel-feedback-list@broadcom.com
3878 L:      linux-pm@vger.kernel.org
3879 S:      Maintained
3880 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3881 F:      drivers/cpufreq/brcmstb*
3882
3883 BROADCOM STB AVS TMON DRIVER
3884 M:      Markus Mayer <mmayer@broadcom.com>
3885 M:      bcm-kernel-feedback-list@broadcom.com
3886 L:      linux-pm@vger.kernel.org
3887 S:      Maintained
3888 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3889 F:      drivers/thermal/broadcom/brcmstb*
3890
3891 BROADCOM STB DPFE DRIVER
3892 M:      Markus Mayer <mmayer@broadcom.com>
3893 M:      bcm-kernel-feedback-list@broadcom.com
3894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3895 S:      Maintained
3896 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3897 F:      drivers/memory/brcmstb_dpfe.c
3898
3899 BROADCOM STB NAND FLASH DRIVER
3900 M:      Brian Norris <computersforpeace@gmail.com>
3901 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3902 L:      linux-mtd@lists.infradead.org
3903 L:      bcm-kernel-feedback-list@broadcom.com
3904 S:      Maintained
3905 F:      drivers/mtd/nand/raw/brcmnand/
3906
3907 BROADCOM STB PCIE DRIVER
3908 M:      Jim Quinlan <jim2101024@gmail.com>
3909 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3910 M:      Florian Fainelli <f.fainelli@gmail.com>
3911 M:      bcm-kernel-feedback-list@broadcom.com
3912 L:      linux-pci@vger.kernel.org
3913 S:      Maintained
3914 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3915 F:      drivers/pci/controller/pcie-brcmstb.c
3916
3917 BROADCOM SYSTEMPORT ETHERNET DRIVER
3918 M:      Florian Fainelli <f.fainelli@gmail.com>
3919 L:      bcm-kernel-feedback-list@broadcom.com
3920 L:      netdev@vger.kernel.org
3921 S:      Supported
3922 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3923 F:      drivers/net/ethernet/broadcom/unimac.h
3924
3925 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3926 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3927 M:      Prashant Sreedharan <prashant@broadcom.com>
3928 M:      Michael Chan <mchan@broadcom.com>
3929 L:      netdev@vger.kernel.org
3930 S:      Supported
3931 F:      drivers/net/ethernet/broadcom/tg3.*
3932
3933 BROADCOM VK DRIVER
3934 M:      Scott Branden <scott.branden@broadcom.com>
3935 L:      bcm-kernel-feedback-list@broadcom.com
3936 S:      Supported
3937 F:      drivers/misc/bcm-vk/
3938 F:      include/uapi/linux/misc/bcm_vk.h
3939
3940 BROCADE BFA FC SCSI DRIVER
3941 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3942 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3943 L:      linux-scsi@vger.kernel.org
3944 S:      Supported
3945 F:      drivers/scsi/bfa/
3946
3947 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3948 M:      Rasesh Mody <rmody@marvell.com>
3949 M:      Sudarsana Kalluru <skalluru@marvell.com>
3950 M:      GR-Linux-NIC-Dev@marvell.com
3951 L:      netdev@vger.kernel.org
3952 S:      Supported
3953 F:      drivers/net/ethernet/brocade/bna/
3954
3955 BSG (block layer generic sg v4 driver)
3956 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3957 L:      linux-scsi@vger.kernel.org
3958 S:      Supported
3959 F:      block/bsg.c
3960 F:      include/linux/bsg.h
3961 F:      include/uapi/linux/bsg.h
3962
3963 BT87X AUDIO DRIVER
3964 M:      Clemens Ladisch <clemens@ladisch.de>
3965 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3966 S:      Maintained
3967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3968 F:      Documentation/sound/cards/bt87x.rst
3969 F:      sound/pci/bt87x.c
3970
3971 BT8XXGPIO DRIVER
3972 M:      Michael Buesch <m@bues.ch>
3973 S:      Maintained
3974 W:      http://bu3sch.de/btgpio.php
3975 F:      drivers/gpio/gpio-bt8xx.c
3976
3977 BTRFS FILE SYSTEM
3978 M:      Chris Mason <clm@fb.com>
3979 M:      Josef Bacik <josef@toxicpanda.com>
3980 M:      David Sterba <dsterba@suse.com>
3981 L:      linux-btrfs@vger.kernel.org
3982 S:      Maintained
3983 W:      http://btrfs.wiki.kernel.org/
3984 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3985 C:      irc://irc.libera.chat/btrfs
3986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3987 F:      Documentation/filesystems/btrfs.rst
3988 F:      fs/btrfs/
3989 F:      include/linux/btrfs*
3990 F:      include/uapi/linux/btrfs*
3991
3992 BTTV VIDEO4LINUX DRIVER
3993 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3994 L:      linux-media@vger.kernel.org
3995 S:      Odd fixes
3996 W:      https://linuxtv.org
3997 T:      git git://linuxtv.org/media_tree.git
3998 F:      Documentation/driver-api/media/drivers/bttv*
3999 F:      drivers/media/pci/bt8xx/bttv*
4000
4001 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4002 M:      Chanwoo Choi <cw00.choi@samsung.com>
4003 L:      linux-pm@vger.kernel.org
4004 L:      linux-samsung-soc@vger.kernel.org
4005 S:      Maintained
4006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4007 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4008 F:      drivers/devfreq/exynos-bus.c
4009
4010 BUSLOGIC SCSI DRIVER
4011 M:      Khalid Aziz <khalid@gonehiking.org>
4012 L:      linux-scsi@vger.kernel.org
4013 S:      Maintained
4014 F:      drivers/scsi/BusLogic.*
4015 F:      drivers/scsi/FlashPoint.*
4016
4017 C-MEDIA CMI8788 DRIVER
4018 M:      Clemens Ladisch <clemens@ladisch.de>
4019 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4020 S:      Maintained
4021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4022 F:      sound/pci/oxygen/
4023
4024 C-SKY ARCHITECTURE
4025 M:      Guo Ren <guoren@kernel.org>
4026 L:      linux-csky@vger.kernel.org
4027 S:      Supported
4028 T:      git https://github.com/c-sky/csky-linux.git
4029 F:      Documentation/devicetree/bindings/csky/
4030 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4031 F:      Documentation/devicetree/bindings/timer/csky,*
4032 F:      arch/csky/
4033 F:      drivers/clocksource/timer-gx6605s.c
4034 F:      drivers/clocksource/timer-mp-csky.c
4035 F:      drivers/irqchip/irq-csky-*
4036 N:      csky
4037 K:      csky
4038
4039 CA8210 IEEE-802.15.4 RADIO DRIVER
4040 M:      Harry Morris <h.morris@cascoda.com>
4041 L:      linux-wpan@vger.kernel.org
4042 S:      Maintained
4043 W:      https://github.com/Cascoda/ca8210-linux.git
4044 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4045 F:      drivers/net/ieee802154/ca8210.c
4046
4047 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4048 M:      Damien Le Moal <damien.lemoal@wdc.com>
4049 L:      linux-riscv@lists.infradead.org
4050 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4051 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4052 F:      drivers/pinctrl/pinctrl-k210.c
4053
4054 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4055 M:      Damien Le Moal <damien.lemoal@wdc.com>
4056 L:      linux-kernel@vger.kernel.org
4057 L:      linux-riscv@lists.infradead.org
4058 S:      Maintained
4059 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4060 F:      drivers/reset/reset-k210.c
4061
4062 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4063 M:      Damien Le Moal <damien.lemoal@wdc.com>
4064 L:      linux-riscv@lists.infradead.org
4065 S:      Maintained
4066 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4067 F:      drivers/soc/canaan/
4068 F:      include/soc/canaan/
4069
4070 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4071 M:      David Howells <dhowells@redhat.com>
4072 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4073 S:      Supported
4074 F:      Documentation/filesystems/caching/cachefiles.rst
4075 F:      fs/cachefiles/
4076
4077 CADENCE MIPI-CSI2 BRIDGES
4078 M:      Maxime Ripard <mripard@kernel.org>
4079 L:      linux-media@vger.kernel.org
4080 S:      Maintained
4081 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4082 F:      drivers/media/platform/cadence/cdns-csi2*
4083
4084 CADENCE NAND DRIVER
4085 L:      linux-mtd@lists.infradead.org
4086 S:      Orphan
4087 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4088 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4089
4090 CADENCE USB3 DRD IP DRIVER
4091 M:      Peter Chen <peter.chen@kernel.org>
4092 M:      Pawel Laszczak <pawell@cadence.com>
4093 R:      Roger Quadros <rogerq@kernel.org>
4094 R:      Aswath Govindraju <a-govindraju@ti.com>
4095 L:      linux-usb@vger.kernel.org
4096 S:      Maintained
4097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4098 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4099 F:      drivers/usb/cdns3/
4100 X:      drivers/usb/cdns3/cdnsp*
4101
4102 CADENCE USBSSP DRD IP DRIVER
4103 M:      Pawel Laszczak <pawell@cadence.com>
4104 L:      linux-usb@vger.kernel.org
4105 S:      Maintained
4106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4107 F:      drivers/usb/cdns3/
4108 X:      drivers/usb/cdns3/cdns3*
4109
4110 CADET FM/AM RADIO RECEIVER DRIVER
4111 M:      Hans Verkuil <hverkuil@xs4all.nl>
4112 L:      linux-media@vger.kernel.org
4113 S:      Maintained
4114 W:      https://linuxtv.org
4115 T:      git git://linuxtv.org/media_tree.git
4116 F:      drivers/media/radio/radio-cadet*
4117
4118 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4119 L:      linux-media@vger.kernel.org
4120 S:      Orphan
4121 T:      git git://linuxtv.org/media_tree.git
4122 F:      Documentation/admin-guide/media/cafe_ccic*
4123 F:      drivers/media/platform/marvell-ccic/
4124
4125 CAIF NETWORK LAYER
4126 L:      netdev@vger.kernel.org
4127 S:      Orphan
4128 F:      Documentation/networking/caif/
4129 F:      drivers/net/caif/
4130 F:      include/net/caif/
4131 F:      include/uapi/linux/caif/
4132 F:      net/caif/
4133
4134 CAKE QDISC
4135 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4136 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4137 S:      Maintained
4138 F:      net/sched/sch_cake.c
4139
4140 CAN NETWORK DRIVERS
4141 M:      Wolfgang Grandegger <wg@grandegger.com>
4142 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4143 L:      linux-can@vger.kernel.org
4144 S:      Maintained
4145 W:      https://github.com/linux-can
4146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4148 F:      Documentation/devicetree/bindings/net/can/
4149 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4150 F:      drivers/net/can/
4151 F:      drivers/phy/phy-can-transceiver.c
4152 F:      include/linux/can/bittiming.h
4153 F:      include/linux/can/dev.h
4154 F:      include/linux/can/led.h
4155 F:      include/linux/can/length.h
4156 F:      include/linux/can/platform/
4157 F:      include/linux/can/rx-offload.h
4158 F:      include/uapi/linux/can/error.h
4159 F:      include/uapi/linux/can/netlink.h
4160 F:      include/uapi/linux/can/vxcan.h
4161
4162 CAN NETWORK LAYER
4163 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4164 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4165 L:      linux-can@vger.kernel.org
4166 S:      Maintained
4167 W:      https://github.com/linux-can
4168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4170 F:      Documentation/networking/can.rst
4171 F:      include/linux/can/can-ml.h
4172 F:      include/linux/can/core.h
4173 F:      include/linux/can/skb.h
4174 F:      include/net/netns/can.h
4175 F:      include/uapi/linux/can.h
4176 F:      include/uapi/linux/can/bcm.h
4177 F:      include/uapi/linux/can/gw.h
4178 F:      include/uapi/linux/can/isotp.h
4179 F:      include/uapi/linux/can/raw.h
4180 F:      net/can/
4181
4182 CAN-J1939 NETWORK LAYER
4183 M:      Robin van der Gracht <robin@protonic.nl>
4184 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4185 R:      kernel@pengutronix.de
4186 L:      linux-can@vger.kernel.org
4187 S:      Maintained
4188 F:      Documentation/networking/j1939.rst
4189 F:      include/uapi/linux/can/j1939.h
4190 F:      net/can/j1939/
4191
4192 CAPABILITIES
4193 M:      Serge Hallyn <serge@hallyn.com>
4194 L:      linux-security-module@vger.kernel.org
4195 S:      Supported
4196 F:      include/linux/capability.h
4197 F:      include/uapi/linux/capability.h
4198 F:      kernel/capability.c
4199 F:      security/commoncap.c
4200
4201 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4202 M:      Kevin Tsai <ktsai@capellamicro.com>
4203 S:      Maintained
4204 F:      drivers/iio/light/cm*
4205
4206 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4207 M:      Christian Lamparter <chunkeey@googlemail.com>
4208 L:      linux-wireless@vger.kernel.org
4209 S:      Maintained
4210 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4211 F:      drivers/net/wireless/ath/carl9170/
4212
4213 CAVIUM I2C DRIVER
4214 M:      Robert Richter <rric@kernel.org>
4215 S:      Odd Fixes
4216 W:      http://www.marvell.com
4217 F:      drivers/i2c/busses/i2c-octeon*
4218 F:      drivers/i2c/busses/i2c-thunderx*
4219
4220 CAVIUM LIQUIDIO NETWORK DRIVER
4221 M:      Derek Chickles <dchickles@marvell.com>
4222 M:      Satanand Burla <sburla@marvell.com>
4223 M:      Felix Manlunas <fmanlunas@marvell.com>
4224 L:      netdev@vger.kernel.org
4225 S:      Supported
4226 W:      http://www.marvell.com
4227 F:      drivers/net/ethernet/cavium/liquidio/
4228
4229 CAVIUM MMC DRIVER
4230 M:      Robert Richter <rric@kernel.org>
4231 S:      Odd Fixes
4232 W:      http://www.marvell.com
4233 F:      drivers/mmc/host/cavium*
4234
4235 CAVIUM OCTEON-TX CRYPTO DRIVER
4236 M:      George Cherian <gcherian@marvell.com>
4237 L:      linux-crypto@vger.kernel.org
4238 S:      Supported
4239 W:      http://www.marvell.com
4240 F:      drivers/crypto/cavium/cpt/
4241
4242 CAVIUM THUNDERX2 ARM64 SOC
4243 M:      Robert Richter <rric@kernel.org>
4244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4245 S:      Odd Fixes
4246 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4247 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4248
4249 CBS/ETF/TAPRIO QDISCS
4250 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4251 S:      Maintained
4252 L:      netdev@vger.kernel.org
4253 F:      net/sched/sch_cbs.c
4254 F:      net/sched/sch_etf.c
4255 F:      net/sched/sch_taprio.c
4256
4257 CC2520 IEEE-802.15.4 RADIO DRIVER
4258 M:      Varka Bhadram <varkabhadram@gmail.com>
4259 L:      linux-wpan@vger.kernel.org
4260 S:      Maintained
4261 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4262 F:      drivers/net/ieee802154/cc2520.c
4263 F:      include/linux/spi/cc2520.h
4264
4265 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4266 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4267 L:      linux-crypto@vger.kernel.org
4268 S:      Supported
4269 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4270 F:      drivers/crypto/ccree/
4271
4272 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4273 M:      Hadar Gat <hadar.gat@arm.com>
4274 L:      linux-crypto@vger.kernel.org
4275 S:      Supported
4276 F:      drivers/char/hw_random/cctrng.c
4277 F:      drivers/char/hw_random/cctrng.h
4278 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4279 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4280
4281 CEC FRAMEWORK
4282 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4283 L:      linux-media@vger.kernel.org
4284 S:      Supported
4285 W:      http://linuxtv.org
4286 T:      git git://linuxtv.org/media_tree.git
4287 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4288 F:      Documentation/devicetree/bindings/media/cec.txt
4289 F:      Documentation/driver-api/media/cec-core.rst
4290 F:      Documentation/userspace-api/media/cec
4291 F:      drivers/media/cec/
4292 F:      drivers/media/rc/keymaps/rc-cec.c
4293 F:      include/media/cec-notifier.h
4294 F:      include/media/cec.h
4295 F:      include/uapi/linux/cec-funcs.h
4296 F:      include/uapi/linux/cec.h
4297
4298 CEC GPIO DRIVER
4299 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4300 L:      linux-media@vger.kernel.org
4301 S:      Supported
4302 W:      http://linuxtv.org
4303 T:      git git://linuxtv.org/media_tree.git
4304 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4305 F:      drivers/media/cec/platform/cec-gpio/
4306
4307 CELL BROADBAND ENGINE ARCHITECTURE
4308 M:      Arnd Bergmann <arnd@arndb.de>
4309 L:      linuxppc-dev@lists.ozlabs.org
4310 S:      Supported
4311 W:      http://www.ibm.com/developerworks/power/cell/
4312 F:      arch/powerpc/include/asm/cell*.h
4313 F:      arch/powerpc/include/asm/spu*.h
4314 F:      arch/powerpc/include/uapi/asm/spu*.h
4315 F:      arch/powerpc/platforms/cell/
4316
4317 CELLWISE CW2015 BATTERY DRIVER
4318 M:      Tobias Schrammm <t.schramm@manjaro.org>
4319 S:      Maintained
4320 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4321 F:      drivers/power/supply/cw2015_battery.c
4322
4323 CEPH COMMON CODE (LIBCEPH)
4324 M:      Ilya Dryomov <idryomov@gmail.com>
4325 M:      Jeff Layton <jlayton@kernel.org>
4326 L:      ceph-devel@vger.kernel.org
4327 S:      Supported
4328 W:      http://ceph.com/
4329 T:      git git://github.com/ceph/ceph-client.git
4330 F:      include/linux/ceph/
4331 F:      include/linux/crush/
4332 F:      net/ceph/
4333
4334 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4335 M:      Jeff Layton <jlayton@kernel.org>
4336 M:      Ilya Dryomov <idryomov@gmail.com>
4337 L:      ceph-devel@vger.kernel.org
4338 S:      Supported
4339 W:      http://ceph.com/
4340 T:      git git://github.com/ceph/ceph-client.git
4341 F:      Documentation/filesystems/ceph.rst
4342 F:      fs/ceph/
4343
4344 CERTIFICATE HANDLING
4345 M:      David Howells <dhowells@redhat.com>
4346 M:      David Woodhouse <dwmw2@infradead.org>
4347 L:      keyrings@vger.kernel.org
4348 S:      Maintained
4349 F:      Documentation/admin-guide/module-signing.rst
4350 F:      certs/
4351 F:      scripts/extract-cert.c
4352 F:      scripts/sign-file.c
4353
4354 CFAG12864B LCD DRIVER
4355 M:      Miguel Ojeda <ojeda@kernel.org>
4356 S:      Maintained
4357 F:      drivers/auxdisplay/cfag12864b.c
4358 F:      include/linux/cfag12864b.h
4359
4360 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4361 M:      Miguel Ojeda <ojeda@kernel.org>
4362 S:      Maintained
4363 F:      drivers/auxdisplay/cfag12864bfb.c
4364 F:      include/linux/cfag12864b.h
4365
4366 CHAR and MISC DRIVERS
4367 M:      Arnd Bergmann <arnd@arndb.de>
4368 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4369 S:      Supported
4370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4371 F:      drivers/char/
4372 F:      drivers/misc/
4373 F:      include/linux/miscdevice.h
4374 X:      drivers/char/agp/
4375 X:      drivers/char/hw_random/
4376 X:      drivers/char/ipmi/
4377 X:      drivers/char/random.c
4378 X:      drivers/char/tpm/
4379
4380 CHECKPATCH
4381 M:      Andy Whitcroft <apw@canonical.com>
4382 M:      Joe Perches <joe@perches.com>
4383 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4384 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4385 S:      Maintained
4386 F:      scripts/checkpatch.pl
4387
4388 CHECKPATCH DOCUMENTATION
4389 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4390 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4391 R:      Joe Perches <joe@perches.com>
4392 S:      Maintained
4393 F:      Documentation/dev-tools/checkpatch.rst
4394
4395 CHINESE DOCUMENTATION
4396 M:      Alex Shi <alexs@kernel.org>
4397 S:      Maintained
4398 F:      Documentation/translations/zh_CN/
4399
4400 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4401 M:      Peter Chen <peter.chen@kernel.org>
4402 L:      linux-usb@vger.kernel.org
4403 S:      Maintained
4404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4405 F:      drivers/usb/chipidea/
4406
4407 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4408 M:      Hans de Goede <hdegoede@redhat.com>
4409 L:      linux-input@vger.kernel.org
4410 S:      Maintained
4411 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4412 F:      drivers/input/touchscreen/chipone_icn8318.c
4413
4414 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4415 M:      Hans de Goede <hdegoede@redhat.com>
4416 L:      linux-input@vger.kernel.org
4417 S:      Maintained
4418 F:      drivers/input/touchscreen/chipone_icn8505.c
4419
4420 CHROME HARDWARE PLATFORM SUPPORT
4421 M:      Benson Leung <bleung@chromium.org>
4422 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4423 S:      Maintained
4424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4425 F:      drivers/platform/chrome/
4426
4427 CHROMEOS EC CODEC DRIVER
4428 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4429 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4430 R:      Guenter Roeck <groeck@chromium.org>
4431 S:      Maintained
4432 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4433 F:      sound/soc/codecs/cros_ec_codec.*
4434
4435 CHROMEOS EC SUBDRIVERS
4436 M:      Benson Leung <bleung@chromium.org>
4437 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4438 R:      Guenter Roeck <groeck@chromium.org>
4439 S:      Maintained
4440 F:      drivers/power/supply/cros_usbpd-charger.c
4441 N:      cros_ec
4442 N:      cros-ec
4443
4444 CHRONTEL CH7322 CEC DRIVER
4445 M:      Jeff Chase <jnchase@google.com>
4446 L:      linux-media@vger.kernel.org
4447 S:      Maintained
4448 T:      git git://linuxtv.org/media_tree.git
4449 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4450 F:      drivers/media/cec/i2c/ch7322.c
4451
4452 CIRRUS LOGIC AUDIO CODEC DRIVERS
4453 M:      James Schulman <james.schulman@cirrus.com>
4454 M:      David Rhodes <david.rhodes@cirrus.com>
4455 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4456 L:      patches@opensource.cirrus.com
4457 S:      Maintained
4458 F:      sound/soc/codecs/cs*
4459
4460 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4461 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4462 L:      netdev@vger.kernel.org
4463 S:      Maintained
4464 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4465
4466 CIRRUS LOGIC LOCHNAGAR DRIVER
4467 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4468 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4469 L:      patches@opensource.cirrus.com
4470 S:      Supported
4471 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4472 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4473 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4474 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4475 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4476 F:      Documentation/hwmon/lochnagar.rst
4477 F:      drivers/clk/clk-lochnagar.c
4478 F:      drivers/hwmon/lochnagar-hwmon.c
4479 F:      drivers/mfd/lochnagar-i2c.c
4480 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4481 F:      drivers/regulator/lochnagar-regulator.c
4482 F:      include/dt-bindings/clk/lochnagar.h
4483 F:      include/dt-bindings/pinctrl/lochnagar.h
4484 F:      include/linux/mfd/lochnagar*
4485 F:      sound/soc/codecs/lochnagar-sc.c
4486
4487 CIRRUS LOGIC MADERA CODEC DRIVERS
4488 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4489 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4490 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4491 L:      patches@opensource.cirrus.com
4492 S:      Supported
4493 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4494 T:      git https://github.com/CirrusLogic/linux-drivers.git
4495 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4496 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4497 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4498 F:      drivers/gpio/gpio-madera*
4499 F:      drivers/irqchip/irq-madera*
4500 F:      drivers/mfd/cs47l*
4501 F:      drivers/mfd/madera*
4502 F:      drivers/pinctrl/cirrus/*
4503 F:      include/dt-bindings/sound/madera*
4504 F:      include/linux/irqchip/irq-madera*
4505 F:      include/linux/mfd/madera/*
4506 F:      include/sound/madera*
4507 F:      sound/soc/codecs/cs47l*
4508 F:      sound/soc/codecs/madera*
4509
4510 CISCO FCOE HBA DRIVER
4511 M:      Satish Kharat <satishkh@cisco.com>
4512 M:      Sesidhar Baddela <sebaddel@cisco.com>
4513 M:      Karan Tilak Kumar <kartilak@cisco.com>
4514 L:      linux-scsi@vger.kernel.org
4515 S:      Supported
4516 F:      drivers/scsi/fnic/
4517
4518 CISCO SCSI HBA DRIVER
4519 M:      Karan Tilak Kumar <kartilak@cisco.com>
4520 M:      Sesidhar Baddela <sebaddel@cisco.com>
4521 L:      linux-scsi@vger.kernel.org
4522 S:      Supported
4523 F:      drivers/scsi/snic/
4524
4525 CISCO VIC ETHERNET NIC DRIVER
4526 M:      Christian Benvenuti <benve@cisco.com>
4527 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4528 S:      Supported
4529 F:      drivers/net/ethernet/cisco/enic/
4530
4531 CISCO VIC LOW LATENCY NIC DRIVER
4532 M:      Christian Benvenuti <benve@cisco.com>
4533 M:      Nelson Escobar <neescoba@cisco.com>
4534 S:      Supported
4535 F:      drivers/infiniband/hw/usnic/
4536
4537 CLANG-FORMAT FILE
4538 M:      Miguel Ojeda <ojeda@kernel.org>
4539 S:      Maintained
4540 F:      .clang-format
4541
4542 CLANG/LLVM BUILD SUPPORT
4543 M:      Nathan Chancellor <nathan@kernel.org>
4544 M:      Nick Desaulniers <ndesaulniers@google.com>
4545 L:      llvm@lists.linux.dev
4546 S:      Supported
4547 W:      https://clangbuiltlinux.github.io/
4548 B:      https://github.com/ClangBuiltLinux/linux/issues
4549 C:      irc://irc.libera.chat/clangbuiltlinux
4550 F:      Documentation/kbuild/llvm.rst
4551 F:      include/linux/compiler-clang.h
4552 F:      scripts/Makefile.clang
4553 F:      scripts/clang-tools/
4554 K:      \b(?i:clang|llvm)\b
4555
4556 CLANG CONTROL FLOW INTEGRITY SUPPORT
4557 M:      Sami Tolvanen <samitolvanen@google.com>
4558 M:      Kees Cook <keescook@chromium.org>
4559 R:      Nathan Chancellor <nathan@kernel.org>
4560 R:      Nick Desaulniers <ndesaulniers@google.com>
4561 L:      llvm@lists.linux.dev
4562 S:      Supported
4563 B:      https://github.com/ClangBuiltLinux/linux/issues
4564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4565 F:      include/linux/cfi.h
4566 F:      kernel/cfi.c
4567
4568 CLEANCACHE API
4569 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4570 L:      linux-kernel@vger.kernel.org
4571 S:      Maintained
4572 F:      include/linux/cleancache.h
4573 F:      mm/cleancache.c
4574
4575 CLK API
4576 M:      Russell King <linux@armlinux.org.uk>
4577 L:      linux-clk@vger.kernel.org
4578 S:      Maintained
4579 F:      include/linux/clk.h
4580
4581 CLOCKSOURCE, CLOCKEVENT DRIVERS
4582 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4583 M:      Thomas Gleixner <tglx@linutronix.de>
4584 L:      linux-kernel@vger.kernel.org
4585 S:      Supported
4586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4587 F:      Documentation/devicetree/bindings/timer/
4588 F:      drivers/clocksource/
4589
4590 CMPC ACPI DRIVER
4591 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4592 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4593 L:      platform-driver-x86@vger.kernel.org
4594 S:      Supported
4595 F:      drivers/platform/x86/classmate-laptop.c
4596
4597 COBALT MEDIA DRIVER
4598 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4599 L:      linux-media@vger.kernel.org
4600 S:      Supported
4601 W:      https://linuxtv.org
4602 T:      git git://linuxtv.org/media_tree.git
4603 F:      drivers/media/pci/cobalt/
4604
4605 COCCINELLE/Semantic Patches (SmPL)
4606 M:      Julia Lawall <Julia.Lawall@inria.fr>
4607 M:      Gilles Muller <Gilles.Muller@inria.fr>
4608 M:      Nicolas Palix <nicolas.palix@imag.fr>
4609 M:      Michal Marek <michal.lkml@markovi.net>
4610 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4611 S:      Supported
4612 W:      http://coccinelle.lip6.fr/
4613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4614 F:      Documentation/dev-tools/coccinelle.rst
4615 F:      scripts/coccicheck
4616 F:      scripts/coccinelle/
4617
4618 CODA FILE SYSTEM
4619 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4620 M:      coda@cs.cmu.edu
4621 L:      codalist@coda.cs.cmu.edu
4622 S:      Maintained
4623 W:      http://www.coda.cs.cmu.edu/
4624 F:      Documentation/filesystems/coda.rst
4625 F:      fs/coda/
4626 F:      include/linux/coda*.h
4627 F:      include/uapi/linux/coda*.h
4628
4629 CODA V4L2 MEM2MEM DRIVER
4630 M:      Philipp Zabel <p.zabel@pengutronix.de>
4631 L:      linux-media@vger.kernel.org
4632 S:      Maintained
4633 F:      Documentation/devicetree/bindings/media/coda.yaml
4634 F:      drivers/media/platform/coda/
4635
4636 CODE OF CONDUCT
4637 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4638 S:      Supported
4639 F:      Documentation/process/code-of-conduct-interpretation.rst
4640 F:      Documentation/process/code-of-conduct.rst
4641
4642 COMEDI DRIVERS
4643 M:      Ian Abbott <abbotti@mev.co.uk>
4644 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4645 S:      Odd Fixes
4646 F:      drivers/comedi/
4647
4648 COMMON CLK FRAMEWORK
4649 M:      Michael Turquette <mturquette@baylibre.com>
4650 M:      Stephen Boyd <sboyd@kernel.org>
4651 L:      linux-clk@vger.kernel.org
4652 S:      Maintained
4653 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4655 F:      Documentation/devicetree/bindings/clock/
4656 F:      drivers/clk/
4657 F:      include/linux/clk-pr*
4658 F:      include/linux/clk/
4659 F:      include/linux/of_clk.h
4660 X:      drivers/clk/clkdev.c
4661
4662 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4663 M:      Steve French <sfrench@samba.org>
4664 L:      linux-cifs@vger.kernel.org
4665 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4666 S:      Supported
4667 W:      http://linux-cifs.samba.org/
4668 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4669 F:      Documentation/admin-guide/cifs/
4670 F:      fs/cifs/
4671 F:      fs/smbfs_common/
4672
4673 COMPACTPCI HOTPLUG CORE
4674 M:      Scott Murray <scott@spiteful.org>
4675 L:      linux-pci@vger.kernel.org
4676 S:      Maintained
4677 F:      drivers/pci/hotplug/cpci_hotplug*
4678
4679 COMPACTPCI HOTPLUG GENERIC DRIVER
4680 M:      Scott Murray <scott@spiteful.org>
4681 L:      linux-pci@vger.kernel.org
4682 S:      Maintained
4683 F:      drivers/pci/hotplug/cpcihp_generic.c
4684
4685 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4686 M:      Scott Murray <scott@spiteful.org>
4687 L:      linux-pci@vger.kernel.org
4688 S:      Maintained
4689 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4690
4691 COMPAL LAPTOP SUPPORT
4692 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4693 L:      platform-driver-x86@vger.kernel.org
4694 S:      Maintained
4695 F:      drivers/platform/x86/compal-laptop.c
4696
4697 COMPILER ATTRIBUTES
4698 M:      Miguel Ojeda <ojeda@kernel.org>
4699 R:      Nick Desaulniers <ndesaulniers@google.com>
4700 S:      Maintained
4701 F:      include/linux/compiler_attributes.h
4702
4703 COMPUTE EXPRESS LINK (CXL)
4704 M:      Alison Schofield <alison.schofield@intel.com>
4705 M:      Vishal Verma <vishal.l.verma@intel.com>
4706 M:      Ira Weiny <ira.weiny@intel.com>
4707 M:      Ben Widawsky <ben.widawsky@intel.com>
4708 M:      Dan Williams <dan.j.williams@intel.com>
4709 L:      linux-cxl@vger.kernel.org
4710 S:      Maintained
4711 F:      drivers/cxl/
4712 F:      include/uapi/linux/cxl_mem.h
4713
4714 CONEXANT ACCESSRUNNER USB DRIVER
4715 L:      accessrunner-general@lists.sourceforge.net
4716 S:      Orphan
4717 W:      http://accessrunner.sourceforge.net/
4718 F:      drivers/usb/atm/cxacru.c
4719
4720 CONFIGFS
4721 M:      Joel Becker <jlbec@evilplan.org>
4722 M:      Christoph Hellwig <hch@lst.de>
4723 S:      Supported
4724 T:      git git://git.infradead.org/users/hch/configfs.git
4725 F:      fs/configfs/
4726 F:      include/linux/configfs.h
4727 F:      samples/configfs/
4728
4729 CONSOLE SUBSYSTEM
4730 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4731 S:      Supported
4732 F:      drivers/video/console/
4733 F:      include/linux/console*
4734
4735 CONTEXT TRACKING
4736 M:      Frederic Weisbecker <frederic@kernel.org>
4737 S:      Maintained
4738 F:      kernel/context_tracking.c
4739 F:      include/linux/context_tracking*
4740
4741 CONTROL GROUP (CGROUP)
4742 M:      Tejun Heo <tj@kernel.org>
4743 M:      Zefan Li <lizefan.x@bytedance.com>
4744 M:      Johannes Weiner <hannes@cmpxchg.org>
4745 L:      cgroups@vger.kernel.org
4746 S:      Maintained
4747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4748 F:      Documentation/admin-guide/cgroup-v1/
4749 F:      Documentation/admin-guide/cgroup-v2.rst
4750 F:      include/linux/cgroup*
4751 F:      kernel/cgroup/
4752
4753 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4754 M:      Tejun Heo <tj@kernel.org>
4755 M:      Jens Axboe <axboe@kernel.dk>
4756 L:      cgroups@vger.kernel.org
4757 L:      linux-block@vger.kernel.org
4758 T:      git git://git.kernel.dk/linux-block
4759 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4760 F:      block/bfq-cgroup.c
4761 F:      block/blk-cgroup.c
4762 F:      block/blk-iolatency.c
4763 F:      block/blk-throttle.c
4764 F:      include/linux/blk-cgroup.h
4765
4766 CONTROL GROUP - CPUSET
4767 M:      Zefan Li <lizefan.x@bytedance.com>
4768 L:      cgroups@vger.kernel.org
4769 S:      Maintained
4770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4771 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4772 F:      include/linux/cpuset.h
4773 F:      kernel/cgroup/cpuset.c
4774
4775 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4776 M:      Johannes Weiner <hannes@cmpxchg.org>
4777 M:      Michal Hocko <mhocko@kernel.org>
4778 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4779 L:      cgroups@vger.kernel.org
4780 L:      linux-mm@kvack.org
4781 S:      Maintained
4782 F:      mm/memcontrol.c
4783 F:      mm/swap_cgroup.c
4784
4785 CORETEMP HARDWARE MONITORING DRIVER
4786 M:      Fenghua Yu <fenghua.yu@intel.com>
4787 L:      linux-hwmon@vger.kernel.org
4788 S:      Maintained
4789 F:      Documentation/hwmon/coretemp.rst
4790 F:      drivers/hwmon/coretemp.c
4791
4792 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4793 M:      Marius Zachmann <mail@mariuszachmann.de>
4794 L:      linux-hwmon@vger.kernel.org
4795 S:      Maintained
4796 F:      drivers/hwmon/corsair-cpro.c
4797
4798 CORSAIR-PSU HARDWARE MONITOR DRIVER
4799 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4800 L:      linux-hwmon@vger.kernel.org
4801 S:      Maintained
4802 F:      Documentation/hwmon/corsair-psu.rst
4803 F:      drivers/hwmon/corsair-psu.c
4804
4805 COSA/SRP SYNC SERIAL DRIVER
4806 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4807 S:      Maintained
4808 W:      http://www.fi.muni.cz/~kas/cosa/
4809 F:      drivers/net/wan/cosa*
4810
4811 COUNTER SUBSYSTEM
4812 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4813 L:      linux-iio@vger.kernel.org
4814 S:      Maintained
4815 F:      Documentation/ABI/testing/sysfs-bus-counter
4816 F:      Documentation/driver-api/generic-counter.rst
4817 F:      drivers/counter/
4818 F:      include/linux/counter.h
4819 F:      include/linux/counter_enum.h
4820
4821 CP2615 I2C DRIVER
4822 M:      Bence Csókás <bence98@sch.bme.hu>
4823 S:      Maintained
4824 F:      drivers/i2c/busses/i2c-cp2615.c
4825
4826 CPMAC ETHERNET DRIVER
4827 M:      Florian Fainelli <f.fainelli@gmail.com>
4828 L:      netdev@vger.kernel.org
4829 S:      Maintained
4830 F:      drivers/net/ethernet/ti/cpmac.c
4831
4832 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4833 M:      Viresh Kumar <viresh.kumar@linaro.org>
4834 M:      Sudeep Holla <sudeep.holla@arm.com>
4835 L:      linux-pm@vger.kernel.org
4836 S:      Maintained
4837 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4838 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4839
4840 CPU FREQUENCY SCALING FRAMEWORK
4841 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4842 M:      Viresh Kumar <viresh.kumar@linaro.org>
4843 L:      linux-pm@vger.kernel.org
4844 S:      Maintained
4845 B:      https://bugzilla.kernel.org
4846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4848 F:      Documentation/admin-guide/pm/cpufreq.rst
4849 F:      Documentation/admin-guide/pm/intel_pstate.rst
4850 F:      Documentation/cpu-freq/
4851 F:      Documentation/devicetree/bindings/cpufreq/
4852 F:      drivers/cpufreq/
4853 F:      include/linux/cpufreq.h
4854 F:      include/linux/sched/cpufreq.h
4855 F:      kernel/sched/cpufreq*.c
4856 F:      tools/testing/selftests/cpufreq/
4857
4858 CPU IDLE TIME MANAGEMENT FRAMEWORK
4859 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4860 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4861 L:      linux-pm@vger.kernel.org
4862 S:      Maintained
4863 B:      https://bugzilla.kernel.org
4864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4865 F:      Documentation/admin-guide/pm/cpuidle.rst
4866 F:      Documentation/driver-api/pm/cpuidle.rst
4867 F:      drivers/cpuidle/
4868 F:      include/linux/cpuidle.h
4869
4870 CPU POWER MONITORING SUBSYSTEM
4871 M:      Thomas Renninger <trenn@suse.com>
4872 M:      Shuah Khan <shuah@kernel.org>
4873 M:      Shuah Khan <skhan@linuxfoundation.org>
4874 L:      linux-pm@vger.kernel.org
4875 S:      Maintained
4876 F:      tools/power/cpupower/
4877
4878 CPUID/MSR DRIVER
4879 M:      "H. Peter Anvin" <hpa@zytor.com>
4880 S:      Maintained
4881 F:      arch/x86/kernel/cpuid.c
4882 F:      arch/x86/kernel/msr.c
4883
4884 CPUIDLE DRIVER - ARM BIG LITTLE
4885 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4886 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4887 L:      linux-pm@vger.kernel.org
4888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4889 S:      Maintained
4890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4891 F:      drivers/cpuidle/cpuidle-big_little.c
4892
4893 CPUIDLE DRIVER - ARM EXYNOS
4894 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4895 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4896 M:      Kukjin Kim <kgene@kernel.org>
4897 L:      linux-pm@vger.kernel.org
4898 L:      linux-samsung-soc@vger.kernel.org
4899 S:      Supported
4900 F:      arch/arm/mach-exynos/pm.c
4901 F:      drivers/cpuidle/cpuidle-exynos.c
4902 F:      include/linux/platform_data/cpuidle-exynos.h
4903
4904 CPUIDLE DRIVER - ARM PSCI
4905 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4906 M:      Sudeep Holla <sudeep.holla@arm.com>
4907 L:      linux-pm@vger.kernel.org
4908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4909 S:      Supported
4910 F:      drivers/cpuidle/cpuidle-psci.c
4911
4912 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4913 M:      Ulf Hansson <ulf.hansson@linaro.org>
4914 L:      linux-pm@vger.kernel.org
4915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4916 S:      Supported
4917 F:      drivers/cpuidle/cpuidle-psci.h
4918 F:      drivers/cpuidle/cpuidle-psci-domain.c
4919
4920 CRAMFS FILESYSTEM
4921 M:      Nicolas Pitre <nico@fluxnic.net>
4922 S:      Maintained
4923 F:      Documentation/filesystems/cramfs.rst
4924 F:      fs/cramfs/
4925
4926 CREATIVE SB0540
4927 M:      Bastien Nocera <hadess@hadess.net>
4928 L:      linux-input@vger.kernel.org
4929 S:      Maintained
4930 F:      drivers/hid/hid-creative-sb0540.c
4931
4932 CRYPTO API
4933 M:      Herbert Xu <herbert@gondor.apana.org.au>
4934 M:      "David S. Miller" <davem@davemloft.net>
4935 L:      linux-crypto@vger.kernel.org
4936 S:      Maintained
4937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4939 F:      Documentation/crypto/
4940 F:      Documentation/devicetree/bindings/crypto/
4941 F:      arch/*/crypto/
4942 F:      crypto/
4943 F:      drivers/crypto/
4944 F:      include/crypto/
4945 F:      include/linux/crypto*
4946 F:      lib/crypto/
4947
4948 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4949 M:      Neil Horman <nhorman@tuxdriver.com>
4950 L:      linux-crypto@vger.kernel.org
4951 S:      Maintained
4952 F:      crypto/ansi_cprng.c
4953 F:      crypto/rng.c
4954
4955 CS3308 MEDIA DRIVER
4956 M:      Hans Verkuil <hverkuil@xs4all.nl>
4957 L:      linux-media@vger.kernel.org
4958 S:      Odd Fixes
4959 W:      http://linuxtv.org
4960 T:      git git://linuxtv.org/media_tree.git
4961 F:      drivers/media/i2c/cs3308.c
4962
4963 CS5535 Audio ALSA driver
4964 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4965 S:      Maintained
4966 F:      sound/pci/cs5535audio/
4967
4968 CSI DRIVERS FOR ALLWINNER V3s
4969 M:      Yong Deng <yong.deng@magewell.com>
4970 L:      linux-media@vger.kernel.org
4971 S:      Maintained
4972 T:      git git://linuxtv.org/media_tree.git
4973 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4974 F:      drivers/media/platform/sunxi/sun6i-csi/
4975
4976 CW1200 WLAN driver
4977 M:      Solomon Peachy <pizza@shaftnet.org>
4978 S:      Maintained
4979 F:      drivers/net/wireless/st/cw1200/
4980
4981 CX18 VIDEO4LINUX DRIVER
4982 M:      Andy Walls <awalls@md.metrocast.net>
4983 L:      linux-media@vger.kernel.org
4984 S:      Maintained
4985 W:      https://linuxtv.org
4986 T:      git git://linuxtv.org/media_tree.git
4987 F:      drivers/media/pci/cx18/
4988 F:      include/uapi/linux/ivtv*
4989
4990 CX2341X MPEG ENCODER HELPER MODULE
4991 M:      Hans Verkuil <hverkuil@xs4all.nl>
4992 L:      linux-media@vger.kernel.org
4993 S:      Maintained
4994 W:      https://linuxtv.org
4995 T:      git git://linuxtv.org/media_tree.git
4996 F:      drivers/media/common/cx2341x*
4997 F:      include/media/drv-intf/cx2341x.h
4998
4999 CX24120 MEDIA DRIVER
5000 M:      Jemma Denson <jdenson@gmail.com>
5001 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5002 L:      linux-media@vger.kernel.org
5003 S:      Maintained
5004 W:      https://linuxtv.org
5005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5006 F:      drivers/media/dvb-frontends/cx24120*
5007
5008 CX88 VIDEO4LINUX DRIVER
5009 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5010 L:      linux-media@vger.kernel.org
5011 S:      Odd fixes
5012 W:      https://linuxtv.org
5013 T:      git git://linuxtv.org/media_tree.git
5014 F:      Documentation/driver-api/media/drivers/cx88*
5015 F:      drivers/media/pci/cx88/
5016
5017 CXD2820R MEDIA DRIVER
5018 M:      Antti Palosaari <crope@iki.fi>
5019 L:      linux-media@vger.kernel.org
5020 S:      Maintained
5021 W:      https://linuxtv.org
5022 W:      http://palosaari.fi/linux/
5023 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5024 T:      git git://linuxtv.org/anttip/media_tree.git
5025 F:      drivers/media/dvb-frontends/cxd2820r*
5026
5027 CXGB3 ETHERNET DRIVER (CXGB3)
5028 M:      Raju Rangoju <rajur@chelsio.com>
5029 L:      netdev@vger.kernel.org
5030 S:      Supported
5031 W:      http://www.chelsio.com
5032 F:      drivers/net/ethernet/chelsio/cxgb3/
5033
5034 CXGB3 ISCSI DRIVER (CXGB3I)
5035 M:      Karen Xie <kxie@chelsio.com>
5036 L:      linux-scsi@vger.kernel.org
5037 S:      Supported
5038 W:      http://www.chelsio.com
5039 F:      drivers/scsi/cxgbi/cxgb3i
5040
5041 CXGB4 CRYPTO DRIVER (chcr)
5042 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5043 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5044 M:      Rohit Maheshwari <rohitm@chelsio.com>
5045 L:      linux-crypto@vger.kernel.org
5046 S:      Supported
5047 W:      http://www.chelsio.com
5048 F:      drivers/crypto/chelsio
5049
5050 CXGB4 INLINE CRYPTO DRIVER
5051 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5052 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5053 M:      Rohit Maheshwari <rohitm@chelsio.com>
5054 L:      netdev@vger.kernel.org
5055 S:      Supported
5056 W:      http://www.chelsio.com
5057 F:      drivers/net/ethernet/chelsio/inline_crypto/
5058
5059 CXGB4 ETHERNET DRIVER (CXGB4)
5060 M:      Raju Rangoju <rajur@chelsio.com>
5061 L:      netdev@vger.kernel.org
5062 S:      Supported
5063 W:      http://www.chelsio.com
5064 F:      drivers/net/ethernet/chelsio/cxgb4/
5065
5066 CXGB4 ISCSI DRIVER (CXGB4I)
5067 M:      Karen Xie <kxie@chelsio.com>
5068 L:      linux-scsi@vger.kernel.org
5069 S:      Supported
5070 W:      http://www.chelsio.com
5071 F:      drivers/scsi/cxgbi/cxgb4i
5072
5073 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5074 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5075 L:      linux-rdma@vger.kernel.org
5076 S:      Supported
5077 W:      http://www.openfabrics.org
5078 F:      drivers/infiniband/hw/cxgb4/
5079 F:      include/uapi/rdma/cxgb4-abi.h
5080
5081 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5082 M:      Raju Rangoju <rajur@chelsio.com>
5083 L:      netdev@vger.kernel.org
5084 S:      Supported
5085 W:      http://www.chelsio.com
5086 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5087
5088 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5089 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5090 M:      Andrew Donnellan <ajd@linux.ibm.com>
5091 L:      linuxppc-dev@lists.ozlabs.org
5092 S:      Supported
5093 F:      Documentation/ABI/testing/sysfs-class-cxl
5094 F:      Documentation/powerpc/cxl.rst
5095 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5096 F:      drivers/misc/cxl/
5097 F:      include/misc/cxl*
5098 F:      include/uapi/misc/cxl.h
5099
5100 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5101 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5102 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5103 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5104 L:      linux-scsi@vger.kernel.org
5105 S:      Supported
5106 F:      Documentation/powerpc/cxlflash.rst
5107 F:      drivers/scsi/cxlflash/
5108 F:      include/uapi/scsi/cxlflash_ioctl.h
5109
5110 CYBERPRO FB DRIVER
5111 M:      Russell King <linux@armlinux.org.uk>
5112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5113 S:      Maintained
5114 W:      http://www.armlinux.org.uk/
5115 F:      drivers/video/fbdev/cyber2000fb.*
5116
5117 CYCLADES PC300 DRIVER
5118 S:      Orphan
5119 F:      drivers/net/wan/pc300*
5120
5121 CYPRESS_FIRMWARE MEDIA DRIVER
5122 M:      Antti Palosaari <crope@iki.fi>
5123 L:      linux-media@vger.kernel.org
5124 S:      Maintained
5125 W:      https://linuxtv.org
5126 W:      http://palosaari.fi/linux/
5127 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5128 T:      git git://linuxtv.org/anttip/media_tree.git
5129 F:      drivers/media/common/cypress_firmware*
5130
5131 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5132 M:      Linus Walleij <linus.walleij@linaro.org>
5133 L:      linux-input@vger.kernel.org
5134 S:      Maintained
5135 F:      drivers/input/touchscreen/cy8ctma140.c
5136
5137 CYTTSP TOUCHSCREEN DRIVER
5138 M:      Linus Walleij <linus.walleij@linaro.org>
5139 L:      linux-input@vger.kernel.org
5140 S:      Maintained
5141 F:      drivers/input/touchscreen/cyttsp*
5142
5143 D-LINK DIR-685 TOUCHKEYS DRIVER
5144 M:      Linus Walleij <linus.walleij@linaro.org>
5145 L:      linux-input@vger.kernel.org
5146 S:      Supported
5147 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5148
5149 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5150 M:      Joshua Kinard <kumba@gentoo.org>
5151 S:      Maintained
5152 F:      drivers/rtc/rtc-ds1685.c
5153 F:      include/linux/rtc/ds1685.h
5154
5155 DAMA SLAVE for AX.25
5156 M:      Joerg Reuter <jreuter@yaina.de>
5157 L:      linux-hams@vger.kernel.org
5158 S:      Maintained
5159 W:      http://yaina.de/jreuter/
5160 W:      http://www.qsl.net/dl1bke/
5161 F:      net/ax25/af_ax25.c
5162 F:      net/ax25/ax25_dev.c
5163 F:      net/ax25/ax25_ds_*
5164 F:      net/ax25/ax25_in.c
5165 F:      net/ax25/ax25_out.c
5166 F:      net/ax25/ax25_timer.c
5167 F:      net/ax25/sysctl_net_ax25.c
5168
5169 DATA ACCESS MONITOR
5170 M:      SeongJae Park <sjpark@amazon.de>
5171 L:      linux-mm@kvack.org
5172 S:      Maintained
5173 F:      Documentation/admin-guide/mm/damon/
5174 F:      Documentation/vm/damon/
5175 F:      include/linux/damon.h
5176 F:      include/trace/events/damon.h
5177 F:      mm/damon/
5178 F:      tools/testing/selftests/damon/
5179
5180 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5181 L:      netdev@vger.kernel.org
5182 S:      Orphan
5183 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5184 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5185
5186 DC390/AM53C974 SCSI driver
5187 M:      Hannes Reinecke <hare@suse.com>
5188 L:      linux-scsi@vger.kernel.org
5189 S:      Maintained
5190 F:      drivers/scsi/am53c974.c
5191
5192 DC395x SCSI driver
5193 M:      Oliver Neukum <oliver@neukum.org>
5194 M:      Ali Akcaagac <aliakc@web.de>
5195 M:      Jamie Lenehan <lenehan@twibble.org>
5196 L:      dc395x@twibble.org
5197 S:      Maintained
5198 W:      http://twibble.org/dist/dc395x/
5199 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5200 F:      Documentation/scsi/dc395x.rst
5201 F:      drivers/scsi/dc395x.*
5202
5203 DCCP PROTOCOL
5204 L:      dccp@vger.kernel.org
5205 S:      Orphan
5206 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5207 F:      include/linux/dccp.h
5208 F:      include/linux/tfrc.h
5209 F:      include/uapi/linux/dccp.h
5210 F:      net/dccp/
5211
5212 DECnet NETWORK LAYER
5213 L:      linux-decnet-user@lists.sourceforge.net
5214 S:      Orphan
5215 W:      http://linux-decnet.sourceforge.net
5216 F:      Documentation/networking/decnet.rst
5217 F:      net/decnet/
5218
5219 DECSTATION PLATFORM SUPPORT
5220 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5221 L:      linux-mips@vger.kernel.org
5222 S:      Maintained
5223 W:      http://www.linux-mips.org/wiki/DECstation
5224 F:      arch/mips/dec/
5225 F:      arch/mips/include/asm/dec/
5226 F:      arch/mips/include/asm/mach-dec/
5227
5228 DEFXX FDDI NETWORK DRIVER
5229 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5230 S:      Maintained
5231 F:      drivers/net/fddi/defxx.*
5232
5233 DEFZA FDDI NETWORK DRIVER
5234 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5235 S:      Maintained
5236 F:      drivers/net/fddi/defza.*
5237
5238 DEINTERLACE DRIVERS FOR ALLWINNER H3
5239 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5240 L:      linux-media@vger.kernel.org
5241 S:      Maintained
5242 T:      git git://linuxtv.org/media_tree.git
5243 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5244 F:      drivers/media/platform/sunxi/sun8i-di/
5245
5246 DELL LAPTOP DRIVER
5247 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5248 M:      Pali Rohár <pali@kernel.org>
5249 L:      platform-driver-x86@vger.kernel.org
5250 S:      Maintained
5251 F:      drivers/platform/x86/dell/dell-laptop.c
5252
5253 DELL LAPTOP FREEFALL DRIVER
5254 M:      Pali Rohár <pali@kernel.org>
5255 S:      Maintained
5256 F:      drivers/platform/x86/dell/dell-smo8800.c
5257
5258 DELL LAPTOP RBTN DRIVER
5259 M:      Pali Rohár <pali@kernel.org>
5260 S:      Maintained
5261 F:      drivers/platform/x86/dell/dell-rbtn.*
5262
5263 DELL LAPTOP SMM DRIVER
5264 M:      Pali Rohár <pali@kernel.org>
5265 S:      Maintained
5266 F:      drivers/hwmon/dell-smm-hwmon.c
5267 F:      include/uapi/linux/i8k.h
5268
5269 DELL REMOTE BIOS UPDATE DRIVER
5270 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5271 L:      platform-driver-x86@vger.kernel.org
5272 S:      Maintained
5273 F:      drivers/platform/x86/dell/dell_rbu.c
5274
5275 DELL SMBIOS DRIVER
5276 M:      Pali Rohár <pali@kernel.org>
5277 L:      Dell.Client.Kernel@dell.com
5278 L:      platform-driver-x86@vger.kernel.org
5279 S:      Maintained
5280 F:      drivers/platform/x86/dell/dell-smbios.*
5281
5282 DELL SMBIOS SMM DRIVER
5283 L:      Dell.Client.Kernel@dell.com
5284 L:      platform-driver-x86@vger.kernel.org
5285 S:      Maintained
5286 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5287
5288 DELL SMBIOS WMI DRIVER
5289 L:      Dell.Client.Kernel@dell.com
5290 L:      platform-driver-x86@vger.kernel.org
5291 S:      Maintained
5292 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5293 F:      tools/wmi/dell-smbios-example.c
5294
5295 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5296 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5297 L:      platform-driver-x86@vger.kernel.org
5298 S:      Maintained
5299 F:      Documentation/driver-api/dcdbas.rst
5300 F:      drivers/platform/x86/dell/dcdbas.*
5301
5302 DELL WMI DESCRIPTOR DRIVER
5303 L:      Dell.Client.Kernel@dell.com
5304 S:      Maintained
5305 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5306
5307 DELL WMI SYSMAN DRIVER
5308 M:      Divya Bharathi <divya.bharathi@dell.com>
5309 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5310 L:      Dell.Client.Kernel@dell.com
5311 L:      platform-driver-x86@vger.kernel.org
5312 S:      Maintained
5313 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5314 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5315
5316 DELL WMI NOTIFICATIONS DRIVER
5317 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5318 M:      Pali Rohár <pali@kernel.org>
5319 S:      Maintained
5320 F:      drivers/platform/x86/dell/dell-wmi-base.c
5321
5322 DELL WMI HARDWARE PRIVACY SUPPORT
5323 M:      Perry Yuan <Perry.Yuan@dell.com>
5324 L:      Dell.Client.Kernel@dell.com
5325 L:      platform-driver-x86@vger.kernel.org
5326 S:      Maintained
5327 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5328
5329 DELTA ST MEDIA DRIVER
5330 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5331 L:      linux-media@vger.kernel.org
5332 S:      Supported
5333 W:      https://linuxtv.org
5334 T:      git git://linuxtv.org/media_tree.git
5335 F:      drivers/media/platform/sti/delta
5336
5337 DELTA DPS920AB PSU DRIVER
5338 M:      Robert Marko <robert.marko@sartura.hr>
5339 L:      linux-hwmon@vger.kernel.org
5340 S:      Maintained
5341 F:      Documentation/hwmon/dps920ab.rst
5342 F:      drivers/hwmon/pmbus/dps920ab.c
5343
5344 DENALI NAND DRIVER
5345 L:      linux-mtd@lists.infradead.org
5346 S:      Orphan
5347 F:      drivers/mtd/nand/raw/denali*
5348
5349 DESIGNWARE EDMA CORE IP DRIVER
5350 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5351 L:      dmaengine@vger.kernel.org
5352 S:      Maintained
5353 F:      drivers/dma/dw-edma/
5354 F:      include/linux/dma/edma.h
5355
5356 DESIGNWARE XDATA IP DRIVER
5357 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5358 L:      linux-pci@vger.kernel.org
5359 S:      Maintained
5360 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5361 F:      drivers/misc/dw-xdata-pcie.c
5362
5363 DESIGNWARE USB2 DRD IP DRIVER
5364 M:      Minas Harutyunyan <hminas@synopsys.com>
5365 L:      linux-usb@vger.kernel.org
5366 S:      Maintained
5367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5368 F:      drivers/usb/dwc2/
5369
5370 DESIGNWARE USB3 DRD IP DRIVER
5371 M:      Felipe Balbi <balbi@kernel.org>
5372 L:      linux-usb@vger.kernel.org
5373 S:      Maintained
5374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5375 F:      drivers/usb/dwc3/
5376
5377 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5378 M:      Andreas Klinger <ak@it-klinger.de>
5379 L:      linux-iio@vger.kernel.org
5380 S:      Maintained
5381 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5382 F:      drivers/iio/proximity/srf*.c
5383
5384 DEVICE COREDUMP (DEV_COREDUMP)
5385 M:      Johannes Berg <johannes@sipsolutions.net>
5386 L:      linux-kernel@vger.kernel.org
5387 S:      Maintained
5388 F:      drivers/base/devcoredump.c
5389 F:      include/linux/devcoredump.h
5390
5391 DEVICE DEPENDENCY HELPER SCRIPT
5392 M:      Saravana Kannan <saravanak@google.com>
5393 L:      linux-kernel@vger.kernel.org
5394 S:      Maintained
5395 F:      scripts/dev-needs.sh
5396
5397 DEVICE DIRECT ACCESS (DAX)
5398 M:      Dan Williams <dan.j.williams@intel.com>
5399 M:      Vishal Verma <vishal.l.verma@intel.com>
5400 M:      Dave Jiang <dave.jiang@intel.com>
5401 L:      nvdimm@lists.linux.dev
5402 S:      Supported
5403 F:      drivers/dax/
5404
5405 DEVICE FREQUENCY (DEVFREQ)
5406 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5407 M:      Kyungmin Park <kyungmin.park@samsung.com>
5408 M:      Chanwoo Choi <cw00.choi@samsung.com>
5409 L:      linux-pm@vger.kernel.org
5410 S:      Maintained
5411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5412 F:      Documentation/devicetree/bindings/devfreq/
5413 F:      drivers/devfreq/
5414 F:      include/linux/devfreq.h
5415 F:      include/trace/events/devfreq.h
5416
5417 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5418 M:      Chanwoo Choi <cw00.choi@samsung.com>
5419 L:      linux-pm@vger.kernel.org
5420 S:      Supported
5421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5422 F:      Documentation/devicetree/bindings/devfreq/event/
5423 F:      drivers/devfreq/devfreq-event.c
5424 F:      drivers/devfreq/event/
5425 F:      include/dt-bindings/pmu/exynos_ppmu.h
5426 F:      include/linux/devfreq-event.h
5427
5428 DEVICE NUMBER REGISTRY
5429 M:      Torben Mathiasen <device@lanana.org>
5430 S:      Maintained
5431 W:      http://lanana.org/docs/device-list/index.html
5432
5433 DEVICE RESOURCE MANAGEMENT HELPERS
5434 M:      Hans de Goede <hdegoede@redhat.com>
5435 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5436 S:      Maintained
5437 F:      include/linux/devm-helpers.h
5438
5439 DEVICE-MAPPER  (LVM)
5440 M:      Alasdair Kergon <agk@redhat.com>
5441 M:      Mike Snitzer <snitzer@redhat.com>
5442 M:      dm-devel@redhat.com
5443 L:      dm-devel@redhat.com
5444 S:      Maintained
5445 W:      http://sources.redhat.com/dm
5446 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5448 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5449 F:      Documentation/admin-guide/device-mapper/
5450 F:      drivers/md/Kconfig
5451 F:      drivers/md/Makefile
5452 F:      drivers/md/dm*
5453 F:      drivers/md/persistent-data/
5454 F:      include/linux/device-mapper.h
5455 F:      include/linux/dm-*.h
5456 F:      include/uapi/linux/dm-*.h
5457
5458 DEVLINK
5459 M:      Jiri Pirko <jiri@nvidia.com>
5460 L:      netdev@vger.kernel.org
5461 S:      Supported
5462 F:      Documentation/networking/devlink
5463 F:      include/net/devlink.h
5464 F:      include/uapi/linux/devlink.h
5465 F:      net/core/devlink.c
5466
5467 DIALOG SEMICONDUCTOR DRIVERS
5468 M:      Support Opensource <support.opensource@diasemi.com>
5469 S:      Supported
5470 W:      http://www.dialog-semiconductor.com/products
5471 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5472 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5473 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5474 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5475 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5476 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5477 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5478 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5479 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5480 F:      Documentation/hwmon/da90??.rst
5481 F:      drivers/gpio/gpio-da90??.c
5482 F:      drivers/hwmon/da90??-hwmon.c
5483 F:      drivers/iio/adc/da91??-*.c
5484 F:      drivers/input/misc/da72??.[ch]
5485 F:      drivers/input/misc/da90??_onkey.c
5486 F:      drivers/input/touchscreen/da9052_tsi.c
5487 F:      drivers/leds/leds-da90??.c
5488 F:      drivers/mfd/da903x.c
5489 F:      drivers/mfd/da90??-*.c
5490 F:      drivers/mfd/da91??-*.c
5491 F:      drivers/pinctrl/pinctrl-da90??.c
5492 F:      drivers/power/supply/da9052-battery.c
5493 F:      drivers/power/supply/da91??-*.c
5494 F:      drivers/regulator/da9???-regulator.[ch]
5495 F:      drivers/regulator/slg51000-regulator.[ch]
5496 F:      drivers/rtc/rtc-da90??.c
5497 F:      drivers/thermal/da90??-thermal.c
5498 F:      drivers/video/backlight/da90??_bl.c
5499 F:      drivers/watchdog/da90??_wdt.c
5500 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5501 F:      include/linux/mfd/da903x.h
5502 F:      include/linux/mfd/da9052/
5503 F:      include/linux/mfd/da9055/
5504 F:      include/linux/mfd/da9062/
5505 F:      include/linux/mfd/da9063/
5506 F:      include/linux/mfd/da9150/
5507 F:      include/linux/regulator/da9211.h
5508 F:      include/sound/da[79]*.h
5509 F:      sound/soc/codecs/da[79]*.[ch]
5510
5511 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5512 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5513 L:      linux-gpio@vger.kernel.org
5514 S:      Maintained
5515 F:      drivers/gpio/gpio-gpio-mm.c
5516
5517 DIOLAN U2C-12 I2C DRIVER
5518 M:      Guenter Roeck <linux@roeck-us.net>
5519 L:      linux-i2c@vger.kernel.org
5520 S:      Maintained
5521 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5522
5523 DIRECTORY NOTIFICATION (DNOTIFY)
5524 M:      Jan Kara <jack@suse.cz>
5525 R:      Amir Goldstein <amir73il@gmail.com>
5526 L:      linux-fsdevel@vger.kernel.org
5527 S:      Maintained
5528 F:      Documentation/filesystems/dnotify.rst
5529 F:      fs/notify/dnotify/
5530 F:      include/linux/dnotify.h
5531
5532 DISK GEOMETRY AND PARTITION HANDLING
5533 M:      Andries Brouwer <aeb@cwi.nl>
5534 S:      Maintained
5535 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5536 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5537 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5538
5539 DISKQUOTA
5540 M:      Jan Kara <jack@suse.com>
5541 S:      Maintained
5542 F:      Documentation/filesystems/quota.rst
5543 F:      fs/quota/
5544 F:      include/linux/quota*.h
5545 F:      include/uapi/linux/quota*.h
5546
5547 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5548 M:      Bernie Thompson <bernie@plugable.com>
5549 L:      linux-fbdev@vger.kernel.org
5550 S:      Maintained
5551 W:      http://plugable.com/category/projects/udlfb/
5552 F:      Documentation/fb/udlfb.rst
5553 F:      drivers/video/fbdev/udlfb.c
5554 F:      include/video/udlfb.h
5555
5556 DISTRIBUTED LOCK MANAGER (DLM)
5557 M:      Christine Caulfield <ccaulfie@redhat.com>
5558 M:      David Teigland <teigland@redhat.com>
5559 L:      cluster-devel@redhat.com
5560 S:      Supported
5561 W:      http://sources.redhat.com/cluster/
5562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5563 F:      fs/dlm/
5564
5565 DMA BUFFER SHARING FRAMEWORK
5566 M:      Sumit Semwal <sumit.semwal@linaro.org>
5567 M:      Christian König <christian.koenig@amd.com>
5568 L:      linux-media@vger.kernel.org
5569 L:      dri-devel@lists.freedesktop.org
5570 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5571 S:      Maintained
5572 T:      git git://anongit.freedesktop.org/drm/drm-misc
5573 F:      Documentation/driver-api/dma-buf.rst
5574 F:      drivers/dma-buf/
5575 F:      include/linux/*fence.h
5576 F:      include/linux/dma-buf*
5577 F:      include/linux/dma-resv.h
5578 K:      \bdma_(?:buf|fence|resv)\b
5579
5580 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5581 M:      Vinod Koul <vkoul@kernel.org>
5582 L:      dmaengine@vger.kernel.org
5583 S:      Maintained
5584 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5586 F:      Documentation/devicetree/bindings/dma/
5587 F:      Documentation/driver-api/dmaengine/
5588 F:      drivers/dma/
5589 F:      include/linux/dma/
5590 F:      include/linux/dmaengine.h
5591 F:      include/linux/of_dma.h
5592
5593 DMA MAPPING HELPERS
5594 M:      Christoph Hellwig <hch@lst.de>
5595 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5596 R:      Robin Murphy <robin.murphy@arm.com>
5597 L:      iommu@lists.linux-foundation.org
5598 S:      Supported
5599 W:      http://git.infradead.org/users/hch/dma-mapping.git
5600 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5601 F:      include/asm-generic/dma-mapping.h
5602 F:      include/linux/dma-direct.h
5603 F:      include/linux/dma-mapping.h
5604 F:      include/linux/dma-map-ops.h
5605 F:      kernel/dma/
5606
5607 DMA MAPPING BENCHMARK
5608 M:      Barry Song <song.bao.hua@hisilicon.com>
5609 L:      iommu@lists.linux-foundation.org
5610 F:      kernel/dma/map_benchmark.c
5611 F:      tools/testing/selftests/dma/
5612
5613 DMA-BUF HEAPS FRAMEWORK
5614 M:      Sumit Semwal <sumit.semwal@linaro.org>
5615 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5616 R:      Liam Mark <lmark@codeaurora.org>
5617 R:      Laura Abbott <labbott@redhat.com>
5618 R:      Brian Starkey <Brian.Starkey@arm.com>
5619 R:      John Stultz <john.stultz@linaro.org>
5620 L:      linux-media@vger.kernel.org
5621 L:      dri-devel@lists.freedesktop.org
5622 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5623 S:      Maintained
5624 T:      git git://anongit.freedesktop.org/drm/drm-misc
5625 F:      drivers/dma-buf/dma-heap.c
5626 F:      drivers/dma-buf/heaps/*
5627 F:      include/linux/dma-heap.h
5628 F:      include/uapi/linux/dma-heap.h
5629
5630 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5631 M:      Lukasz Luba <lukasz.luba@arm.com>
5632 L:      linux-pm@vger.kernel.org
5633 L:      linux-samsung-soc@vger.kernel.org
5634 S:      Maintained
5635 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5636 F:      drivers/memory/samsung/exynos5422-dmc.c
5637
5638 DME1737 HARDWARE MONITOR DRIVER
5639 M:      Juerg Haefliger <juergh@gmail.com>
5640 L:      linux-hwmon@vger.kernel.org
5641 S:      Maintained
5642 F:      Documentation/hwmon/dme1737.rst
5643 F:      drivers/hwmon/dme1737.c
5644
5645 DMI/SMBIOS SUPPORT
5646 M:      Jean Delvare <jdelvare@suse.com>
5647 S:      Maintained
5648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5649 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5650 F:      drivers/firmware/dmi-id.c
5651 F:      drivers/firmware/dmi_scan.c
5652 F:      include/linux/dmi.h
5653
5654 DOCUMENTATION
5655 M:      Jonathan Corbet <corbet@lwn.net>
5656 L:      linux-doc@vger.kernel.org
5657 S:      Maintained
5658 P:      Documentation/doc-guide/maintainer-profile.rst
5659 T:      git git://git.lwn.net/linux.git docs-next
5660 F:      Documentation/
5661 F:      scripts/documentation-file-ref-check
5662 F:      scripts/kernel-doc
5663 F:      scripts/sphinx-pre-install
5664 X:      Documentation/ABI/
5665 X:      Documentation/admin-guide/media/
5666 X:      Documentation/devicetree/
5667 X:      Documentation/driver-api/media/
5668 X:      Documentation/firmware-guide/acpi/
5669 X:      Documentation/i2c/
5670 X:      Documentation/power/
5671 X:      Documentation/spi/
5672 X:      Documentation/userspace-api/media/
5673
5674 DOCUMENTATION REPORTING ISSUES
5675 M:      Thorsten Leemhuis <linux@leemhuis.info>
5676 L:      linux-doc@vger.kernel.org
5677 S:      Maintained
5678 F:      Documentation/admin-guide/reporting-issues.rst
5679
5680 DOCUMENTATION SCRIPTS
5681 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5682 L:      linux-doc@vger.kernel.org
5683 S:      Maintained
5684 F:      Documentation/sphinx/parse-headers.pl
5685 F:      scripts/documentation-file-ref-check
5686 F:      scripts/sphinx-pre-install
5687
5688 DOCUMENTATION/ITALIAN
5689 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5690 L:      linux-doc@vger.kernel.org
5691 S:      Maintained
5692 F:      Documentation/translations/it_IT
5693
5694 DONGWOON DW9714 LENS VOICE COIL DRIVER
5695 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5696 L:      linux-media@vger.kernel.org
5697 S:      Maintained
5698 T:      git git://linuxtv.org/media_tree.git
5699 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5700 F:      drivers/media/i2c/dw9714.c
5701
5702 DONGWOON DW9768 LENS VOICE COIL DRIVER
5703 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5704 L:      linux-media@vger.kernel.org
5705 S:      Maintained
5706 T:      git git://linuxtv.org/media_tree.git
5707 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5708 F:      drivers/media/i2c/dw9768.c
5709
5710 DONGWOON DW9807 LENS VOICE COIL DRIVER
5711 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5712 L:      linux-media@vger.kernel.org
5713 S:      Maintained
5714 T:      git git://linuxtv.org/media_tree.git
5715 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5716 F:      drivers/media/i2c/dw9807-vcm.c
5717
5718 DOUBLETALK DRIVER
5719 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5720 L:      blinux-list@redhat.com
5721 S:      Maintained
5722 F:      drivers/char/dtlk.c
5723 F:      include/linux/dtlk.h
5724
5725 DPAA2 DATAPATH I/O (DPIO) DRIVER
5726 M:      Roy Pledge <Roy.Pledge@nxp.com>
5727 L:      linux-kernel@vger.kernel.org
5728 S:      Maintained
5729 F:      drivers/soc/fsl/dpio
5730
5731 DPAA2 ETHERNET DRIVER
5732 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5733 L:      netdev@vger.kernel.org
5734 S:      Maintained
5735 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5736 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5737 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5738 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5739 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5740 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5741 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5742 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5743 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5744
5745 DPAA2 ETHERNET SWITCH DRIVER
5746 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5747 L:      netdev@vger.kernel.org
5748 S:      Maintained
5749 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5750 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5751 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5752
5753 DPT_I2O SCSI RAID DRIVER
5754 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5755 L:      linux-scsi@vger.kernel.org
5756 S:      Maintained
5757 W:      http://www.adaptec.com/
5758 F:      drivers/scsi/dpt*
5759 F:      drivers/scsi/dpt/
5760
5761 DRBD DRIVER
5762 M:      Philipp Reisner <philipp.reisner@linbit.com>
5763 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5764 L:      drbd-dev@lists.linbit.com
5765 S:      Supported
5766 W:      http://www.drbd.org
5767 T:      git git://git.linbit.com/linux-drbd.git
5768 T:      git git://git.linbit.com/drbd-8.4.git
5769 F:      Documentation/admin-guide/blockdev/
5770 F:      drivers/block/drbd/
5771 F:      lib/lru_cache.c
5772
5773 DRIVER COMPONENT FRAMEWORK
5774 L:      dri-devel@lists.freedesktop.org
5775 F:      drivers/base/component.c
5776 F:      include/linux/component.h
5777
5778 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5779 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5780 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5781 S:      Supported
5782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5783 F:      Documentation/core-api/kobject.rst
5784 F:      drivers/base/
5785 F:      fs/debugfs/
5786 F:      fs/sysfs/
5787 F:      include/linux/debugfs.h
5788 F:      include/linux/kobj*
5789 F:      lib/kobj*
5790
5791 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5792 M:      Nishanth Menon <nm@ti.com>
5793 L:      linux-pm@vger.kernel.org
5794 S:      Maintained
5795 F:      drivers/soc/ti/smartreflex.c
5796 F:      include/linux/power/smartreflex.h
5797
5798 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5799 M:      Maxime Ripard <mripard@kernel.org>
5800 M:      Chen-Yu Tsai <wens@csie.org>
5801 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5802 L:      dri-devel@lists.freedesktop.org
5803 S:      Supported
5804 T:      git git://anongit.freedesktop.org/drm/drm-misc
5805 F:      drivers/gpu/drm/sun4i/sun8i*
5806
5807 DRM DRIVER FOR ARM PL111 CLCD
5808 M:      Emma Anholt <emma@anholt.net>
5809 S:      Supported
5810 T:      git git://anongit.freedesktop.org/drm/drm-misc
5811 F:      drivers/gpu/drm/pl111/
5812
5813 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5814 M:      Linus Walleij <linus.walleij@linaro.org>
5815 S:      Maintained
5816 T:      git git://anongit.freedesktop.org/drm/drm-misc
5817 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5818 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5819
5820 DRM DRIVER FOR ASPEED BMC GFX
5821 M:      Joel Stanley <joel@jms.id.au>
5822 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5823 S:      Supported
5824 T:      git git://anongit.freedesktop.org/drm/drm-misc
5825 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5826 F:      drivers/gpu/drm/aspeed/
5827
5828 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5829 M:      Dave Airlie <airlied@redhat.com>
5830 R:      Thomas Zimmermann <tzimmermann@suse.de>
5831 L:      dri-devel@lists.freedesktop.org
5832 S:      Supported
5833 T:      git git://anongit.freedesktop.org/drm/drm-misc
5834 F:      drivers/gpu/drm/ast/
5835
5836 DRM DRIVER FOR BOCHS VIRTUAL GPU
5837 M:      Gerd Hoffmann <kraxel@redhat.com>
5838 L:      virtualization@lists.linux-foundation.org
5839 S:      Maintained
5840 T:      git git://anongit.freedesktop.org/drm/drm-misc
5841 F:      drivers/gpu/drm/tiny/bochs.c
5842
5843 DRM DRIVER FOR BOE HIMAX8279D PANELS
5844 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5845 S:      Maintained
5846 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5847 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5848
5849 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5850 M:      Jagan Teki <jagan@amarulasolutions.com>
5851 S:      Maintained
5852 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5853 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5854
5855 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5856 M:      Linus Walleij <linus.walleij@linaro.org>
5857 S:      Maintained
5858 T:      git git://anongit.freedesktop.org/drm/drm-misc
5859 F:      drivers/gpu/drm/tve200/
5860
5861 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5862 M:      Icenowy Zheng <icenowy@aosc.io>
5863 S:      Maintained
5864 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5865 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5866
5867 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5868 M:      Jagan Teki <jagan@amarulasolutions.com>
5869 S:      Maintained
5870 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5871 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5872
5873 DRM DRIVER FOR GENERIC USB DISPLAY
5874 M:      Noralf Trønnes <noralf@tronnes.org>
5875 S:      Maintained
5876 W:      https://github.com/notro/gud/wiki
5877 T:      git git://anongit.freedesktop.org/drm/drm-misc
5878 F:      drivers/gpu/drm/gud/
5879 F:      include/drm/gud.h
5880
5881 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5882 M:      Hans de Goede <hdegoede@redhat.com>
5883 S:      Maintained
5884 T:      git git://anongit.freedesktop.org/drm/drm-misc
5885 F:      drivers/gpu/drm/tiny/gm12u320.c
5886
5887 DRM DRIVER FOR HX8357D PANELS
5888 M:      Emma Anholt <emma@anholt.net>
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5892 F:      drivers/gpu/drm/tiny/hx8357d.c
5893
5894 DRM DRIVER FOR ILITEK ILI9225 PANELS
5895 M:      David Lechner <david@lechnology.com>
5896 S:      Maintained
5897 T:      git git://anongit.freedesktop.org/drm/drm-misc
5898 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5899 F:      drivers/gpu/drm/tiny/ili9225.c
5900
5901 DRM DRIVER FOR ILITEK ILI9486 PANELS
5902 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5903 S:      Maintained
5904 T:      git git://anongit.freedesktop.org/drm/drm-misc
5905 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5906 F:      drivers/gpu/drm/tiny/ili9486.c
5907
5908 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5909 S:      Orphan / Obsolete
5910 F:      drivers/gpu/drm/i810/
5911 F:      include/uapi/drm/i810_drm.h
5912
5913 DRM DRIVER FOR LVDS PANELS
5914 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5915 L:      dri-devel@lists.freedesktop.org
5916 T:      git git://anongit.freedesktop.org/drm/drm-misc
5917 S:      Maintained
5918 F:      drivers/gpu/drm/panel/panel-lvds.c
5919 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5920
5921 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5922 M:      Guido Günther <agx@sigxcpu.org>
5923 R:      Purism Kernel Team <kernel@puri.sm>
5924 S:      Maintained
5925 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5926 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5927
5928 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5929 S:      Orphan / Obsolete
5930 F:      drivers/gpu/drm/mga/
5931 F:      include/uapi/drm/mga_drm.h
5932
5933 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5934 M:      Dave Airlie <airlied@redhat.com>
5935 R:      Thomas Zimmermann <tzimmermann@suse.de>
5936 L:      dri-devel@lists.freedesktop.org
5937 S:      Supported
5938 T:      git git://anongit.freedesktop.org/drm/drm-misc
5939 F:      drivers/gpu/drm/mgag200/
5940
5941 DRM DRIVER FOR MI0283QT
5942 M:      Noralf Trønnes <noralf@tronnes.org>
5943 S:      Maintained
5944 T:      git git://anongit.freedesktop.org/drm/drm-misc
5945 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5946 F:      drivers/gpu/drm/tiny/mi0283qt.c
5947
5948 DRM DRIVER FOR MSM ADRENO GPU
5949 M:      Rob Clark <robdclark@gmail.com>
5950 M:      Sean Paul <sean@poorly.run>
5951 L:      linux-arm-msm@vger.kernel.org
5952 L:      dri-devel@lists.freedesktop.org
5953 L:      freedreno@lists.freedesktop.org
5954 S:      Maintained
5955 T:      git https://gitlab.freedesktop.org/drm/msm.git
5956 F:      Documentation/devicetree/bindings/display/msm/
5957 F:      drivers/gpu/drm/msm/
5958 F:      include/uapi/drm/msm_drm.h
5959
5960 DRM DRIVER FOR NOVATEK NT35510 PANELS
5961 M:      Linus Walleij <linus.walleij@linaro.org>
5962 S:      Maintained
5963 T:      git git://anongit.freedesktop.org/drm/drm-misc
5964 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5965 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5966
5967 DRM DRIVER FOR NOVATEK NT36672A PANELS
5968 M:      Sumit Semwal <sumit.semwal@linaro.org>
5969 S:      Maintained
5970 T:      git git://anongit.freedesktop.org/drm/drm-misc
5971 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5972 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5973
5974 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5975 M:      Ben Skeggs <bskeggs@redhat.com>
5976 L:      dri-devel@lists.freedesktop.org
5977 L:      nouveau@lists.freedesktop.org
5978 S:      Supported
5979 T:      git git://github.com/skeggsb/linux
5980 F:      drivers/gpu/drm/nouveau/
5981 F:      include/uapi/drm/nouveau_drm.h
5982
5983 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5984 M:      Stefan Mavrodiev <stefan@olimex.com>
5985 S:      Maintained
5986 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5987 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5988
5989 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5990 M:      Noralf Trønnes <noralf@tronnes.org>
5991 S:      Maintained
5992 T:      git git://anongit.freedesktop.org/drm/drm-misc
5993 F:      Documentation/devicetree/bindings/display/repaper.txt
5994 F:      drivers/gpu/drm/tiny/repaper.c
5995
5996 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5997 M:      Dave Airlie <airlied@redhat.com>
5998 M:      Gerd Hoffmann <kraxel@redhat.com>
5999 L:      virtualization@lists.linux-foundation.org
6000 S:      Obsolete
6001 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6002 T:      git git://anongit.freedesktop.org/drm/drm-misc
6003 F:      drivers/gpu/drm/tiny/cirrus.c
6004
6005 DRM DRIVER FOR QXL VIRTUAL GPU
6006 M:      Dave Airlie <airlied@redhat.com>
6007 M:      Gerd Hoffmann <kraxel@redhat.com>
6008 L:      virtualization@lists.linux-foundation.org
6009 L:      spice-devel@lists.freedesktop.org
6010 S:      Maintained
6011 T:      git git://anongit.freedesktop.org/drm/drm-misc
6012 F:      drivers/gpu/drm/qxl/
6013 F:      include/uapi/drm/qxl_drm.h
6014
6015 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6016 S:      Orphan / Obsolete
6017 F:      drivers/gpu/drm/r128/
6018 F:      include/uapi/drm/r128_drm.h
6019
6020 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6021 M:      Robert Chiras <robert.chiras@nxp.com>
6022 S:      Maintained
6023 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6024 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6025
6026 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6027 M:      Linus Walleij <linus.walleij@linaro.org>
6028 S:      Maintained
6029 T:      git git://anongit.freedesktop.org/drm/drm-misc
6030 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6031 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6032
6033 DRM DRIVER FOR SITRONIX ST7703 PANELS
6034 M:      Guido Günther <agx@sigxcpu.org>
6035 R:      Purism Kernel Team <kernel@puri.sm>
6036 R:      Ondrej Jirman <megous@megous.com>
6037 S:      Maintained
6038 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6039 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6040
6041 DRM DRIVER FOR SAVAGE VIDEO CARDS
6042 S:      Orphan / Obsolete
6043 F:      drivers/gpu/drm/savage/
6044 F:      include/uapi/drm/savage_drm.h
6045
6046 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6047 M:      Thomas Zimmermann <tzimmermann@suse.de>
6048 L:      dri-devel@lists.freedesktop.org
6049 S:      Maintained
6050 T:      git git://anongit.freedesktop.org/drm/drm-misc
6051 F:      drivers/gpu/drm/tiny/simpledrm.c
6052
6053 DRM DRIVER FOR SIS VIDEO CARDS
6054 S:      Orphan / Obsolete
6055 F:      drivers/gpu/drm/sis/
6056 F:      include/uapi/drm/sis_drm.h
6057
6058 DRM DRIVER FOR SITRONIX ST7586 PANELS
6059 M:      David Lechner <david@lechnology.com>
6060 S:      Maintained
6061 T:      git git://anongit.freedesktop.org/drm/drm-misc
6062 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6063 F:      drivers/gpu/drm/tiny/st7586.c
6064
6065 DRM DRIVER FOR SITRONIX ST7701 PANELS
6066 M:      Jagan Teki <jagan@amarulasolutions.com>
6067 S:      Maintained
6068 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6069 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6070
6071 DRM DRIVER FOR SITRONIX ST7735R PANELS
6072 M:      David Lechner <david@lechnology.com>
6073 S:      Maintained
6074 T:      git git://anongit.freedesktop.org/drm/drm-misc
6075 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6076 F:      drivers/gpu/drm/tiny/st7735r.c
6077
6078 DRM DRIVER FOR SONY ACX424AKP PANELS
6079 M:      Linus Walleij <linus.walleij@linaro.org>
6080 S:      Maintained
6081 T:      git git://anongit.freedesktop.org/drm/drm-misc
6082 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6083
6084 DRM DRIVER FOR ST-ERICSSON MCDE
6085 M:      Linus Walleij <linus.walleij@linaro.org>
6086 S:      Maintained
6087 T:      git git://anongit.freedesktop.org/drm/drm-misc
6088 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6089 F:      drivers/gpu/drm/mcde/
6090
6091 DRM DRIVER FOR TDFX VIDEO CARDS
6092 S:      Orphan / Obsolete
6093 F:      drivers/gpu/drm/tdfx/
6094
6095 DRM DRIVER FOR TPO TPG110 PANELS
6096 M:      Linus Walleij <linus.walleij@linaro.org>
6097 S:      Maintained
6098 T:      git git://anongit.freedesktop.org/drm/drm-misc
6099 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6100 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6101
6102 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6103 M:      Dave Airlie <airlied@redhat.com>
6104 R:      Sean Paul <sean@poorly.run>
6105 R:      Thomas Zimmermann <tzimmermann@suse.de>
6106 L:      dri-devel@lists.freedesktop.org
6107 S:      Supported
6108 T:      git git://anongit.freedesktop.org/drm/drm-misc
6109 F:      drivers/gpu/drm/udl/
6110
6111 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6112 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6113 M:      Melissa Wen <melissa.srw@gmail.com>
6114 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6115 R:      Daniel Vetter <daniel@ffwll.ch>
6116 L:      dri-devel@lists.freedesktop.org
6117 S:      Maintained
6118 T:      git git://anongit.freedesktop.org/drm/drm-misc
6119 F:      Documentation/gpu/vkms.rst
6120 F:      drivers/gpu/drm/vkms/
6121
6122 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6123 M:      Hans de Goede <hdegoede@redhat.com>
6124 L:      dri-devel@lists.freedesktop.org
6125 S:      Maintained
6126 T:      git git://anongit.freedesktop.org/drm/drm-misc
6127 F:      drivers/gpu/drm/vboxvideo/
6128
6129 DRM DRIVER FOR VMWARE VIRTUAL GPU
6130 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6131 M:      Zack Rusin <zackr@vmware.com>
6132 L:      dri-devel@lists.freedesktop.org
6133 S:      Supported
6134 T:      git git://anongit.freedesktop.org/drm/drm-misc
6135 F:      drivers/gpu/drm/vmwgfx/
6136 F:      include/uapi/drm/vmwgfx_drm.h
6137
6138 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6139 M:      Linus Walleij <linus.walleij@linaro.org>
6140 S:      Maintained
6141 T:      git git://anongit.freedesktop.org/drm/drm-misc
6142 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6143 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6144
6145 DRM DRIVERS
6146 M:      David Airlie <airlied@linux.ie>
6147 M:      Daniel Vetter <daniel@ffwll.ch>
6148 L:      dri-devel@lists.freedesktop.org
6149 S:      Maintained
6150 B:      https://gitlab.freedesktop.org/drm
6151 C:      irc://irc.oftc.net/dri-devel
6152 T:      git git://anongit.freedesktop.org/drm/drm
6153 F:      Documentation/devicetree/bindings/display/
6154 F:      Documentation/devicetree/bindings/gpu/
6155 F:      Documentation/gpu/
6156 F:      drivers/gpu/drm/
6157 F:      drivers/gpu/vga/
6158 F:      include/drm/
6159 F:      include/linux/vga*
6160 F:      include/uapi/drm/
6161
6162 DRM DRIVERS AND MISC GPU PATCHES
6163 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6164 M:      Maxime Ripard <mripard@kernel.org>
6165 M:      Thomas Zimmermann <tzimmermann@suse.de>
6166 S:      Maintained
6167 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6168 T:      git git://anongit.freedesktop.org/drm/drm-misc
6169 F:      Documentation/gpu/
6170 F:      drivers/gpu/drm/*
6171 F:      drivers/gpu/vga/
6172 F:      include/drm/drm*
6173 F:      include/linux/vga*
6174 F:      include/uapi/drm/drm*
6175
6176 DRM DRIVERS FOR ALLWINNER A10
6177 M:      Maxime Ripard <mripard@kernel.org>
6178 M:      Chen-Yu Tsai <wens@csie.org>
6179 L:      dri-devel@lists.freedesktop.org
6180 S:      Supported
6181 T:      git git://anongit.freedesktop.org/drm/drm-misc
6182 F:      Documentation/devicetree/bindings/display/allwinner*
6183 F:      drivers/gpu/drm/sun4i/
6184
6185 DRM DRIVERS FOR AMLOGIC SOCS
6186 M:      Neil Armstrong <narmstrong@baylibre.com>
6187 L:      dri-devel@lists.freedesktop.org
6188 L:      linux-amlogic@lists.infradead.org
6189 S:      Supported
6190 W:      http://linux-meson.com/
6191 T:      git git://anongit.freedesktop.org/drm/drm-misc
6192 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6193 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6194 F:      Documentation/gpu/meson.rst
6195 F:      drivers/gpu/drm/meson/
6196
6197 DRM DRIVERS FOR ATMEL HLCDC
6198 M:      Sam Ravnborg <sam@ravnborg.org>
6199 M:      Boris Brezillon <bbrezillon@kernel.org>
6200 L:      dri-devel@lists.freedesktop.org
6201 S:      Supported
6202 T:      git git://anongit.freedesktop.org/drm/drm-misc
6203 F:      Documentation/devicetree/bindings/display/atmel/
6204 F:      drivers/gpu/drm/atmel-hlcdc/
6205
6206 DRM DRIVERS FOR BRIDGE CHIPS
6207 M:      Andrzej Hajda <a.hajda@samsung.com>
6208 M:      Neil Armstrong <narmstrong@baylibre.com>
6209 M:      Robert Foss <robert.foss@linaro.org>
6210 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6211 R:      Jonas Karlman <jonas@kwiboo.se>
6212 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6213 S:      Maintained
6214 T:      git git://anongit.freedesktop.org/drm/drm-misc
6215 F:      drivers/gpu/drm/bridge/
6216
6217 DRM DRIVERS FOR EXYNOS
6218 M:      Inki Dae <inki.dae@samsung.com>
6219 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6220 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6221 M:      Kyungmin Park <kyungmin.park@samsung.com>
6222 L:      dri-devel@lists.freedesktop.org
6223 S:      Supported
6224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6225 F:      Documentation/devicetree/bindings/display/exynos/
6226 F:      drivers/gpu/drm/exynos/
6227 F:      include/uapi/drm/exynos_drm.h
6228
6229 DRM DRIVERS FOR FREESCALE DCU
6230 M:      Stefan Agner <stefan@agner.ch>
6231 M:      Alison Wang <alison.wang@nxp.com>
6232 L:      dri-devel@lists.freedesktop.org
6233 S:      Supported
6234 T:      git git://anongit.freedesktop.org/drm/drm-misc
6235 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6236 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6237 F:      drivers/gpu/drm/fsl-dcu/
6238
6239 DRM DRIVERS FOR FREESCALE IMX
6240 M:      Philipp Zabel <p.zabel@pengutronix.de>
6241 L:      dri-devel@lists.freedesktop.org
6242 S:      Maintained
6243 F:      Documentation/devicetree/bindings/display/imx/
6244 F:      drivers/gpu/drm/imx/
6245 F:      drivers/gpu/ipu-v3/
6246
6247 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6248 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6249 L:      dri-devel@lists.freedesktop.org
6250 S:      Maintained
6251 T:      git git://github.com/patjak/drm-gma500
6252 F:      drivers/gpu/drm/gma500/
6253
6254 DRM DRIVERS FOR HISILICON
6255 M:      Xinliang Liu <xinliang.liu@linaro.org>
6256 M:      Tian Tao  <tiantao6@hisilicon.com>
6257 R:      John Stultz <john.stultz@linaro.org>
6258 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6259 R:      Chen Feng <puck.chen@hisilicon.com>
6260 L:      dri-devel@lists.freedesktop.org
6261 S:      Maintained
6262 T:      git git://anongit.freedesktop.org/drm/drm-misc
6263 F:      Documentation/devicetree/bindings/display/hisilicon/
6264 F:      drivers/gpu/drm/hisilicon/
6265
6266 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6267 M:      Deepak Rawat <drawat.floss@gmail.com>
6268 L:      linux-hyperv@vger.kernel.org
6269 L:      dri-devel@lists.freedesktop.org
6270 S:      Maintained
6271 T:      git git://anongit.freedesktop.org/drm/drm-misc
6272 F:      drivers/gpu/drm/hyperv
6273
6274 DRM DRIVERS FOR LIMA
6275 M:      Qiang Yu <yuq825@gmail.com>
6276 L:      dri-devel@lists.freedesktop.org
6277 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6278 S:      Maintained
6279 T:      git git://anongit.freedesktop.org/drm/drm-misc
6280 F:      drivers/gpu/drm/lima/
6281 F:      include/uapi/drm/lima_drm.h
6282
6283 DRM DRIVERS FOR MEDIATEK
6284 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6285 M:      Philipp Zabel <p.zabel@pengutronix.de>
6286 L:      dri-devel@lists.freedesktop.org
6287 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6288 S:      Supported
6289 F:      Documentation/devicetree/bindings/display/mediatek/
6290 F:      drivers/gpu/drm/mediatek/
6291 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6292 F:      drivers/phy/mediatek/phy-mtk-mipi*
6293
6294 DRM DRIVERS FOR NVIDIA TEGRA
6295 M:      Thierry Reding <thierry.reding@gmail.com>
6296 L:      dri-devel@lists.freedesktop.org
6297 L:      linux-tegra@vger.kernel.org
6298 S:      Supported
6299 T:      git git://anongit.freedesktop.org/tegra/linux.git
6300 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6301 F:      drivers/gpu/drm/tegra/
6302 F:      drivers/gpu/host1x/
6303 F:      include/linux/host1x.h
6304 F:      include/uapi/drm/tegra_drm.h
6305
6306 DRM DRIVERS FOR RENESAS
6307 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6308 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6309 L:      dri-devel@lists.freedesktop.org
6310 L:      linux-renesas-soc@vger.kernel.org
6311 S:      Supported
6312 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6313 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6314 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6315 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6316 F:      drivers/gpu/drm/rcar-du/
6317 F:      drivers/gpu/drm/shmobile/
6318 F:      include/linux/platform_data/shmob_drm.h
6319
6320 DRM DRIVERS FOR ROCKCHIP
6321 M:      Sandy Huang <hjc@rock-chips.com>
6322 M:      Heiko Stübner <heiko@sntech.de>
6323 L:      dri-devel@lists.freedesktop.org
6324 S:      Maintained
6325 T:      git git://anongit.freedesktop.org/drm/drm-misc
6326 F:      Documentation/devicetree/bindings/display/rockchip/
6327 F:      drivers/gpu/drm/rockchip/
6328
6329 DRM DRIVERS FOR STI
6330 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6331 L:      dri-devel@lists.freedesktop.org
6332 S:      Maintained
6333 T:      git git://anongit.freedesktop.org/drm/drm-misc
6334 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6335 F:      drivers/gpu/drm/sti
6336
6337 DRM DRIVERS FOR STM
6338 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6339 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6340 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6341 L:      dri-devel@lists.freedesktop.org
6342 S:      Maintained
6343 T:      git git://anongit.freedesktop.org/drm/drm-misc
6344 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6345 F:      drivers/gpu/drm/stm
6346
6347 DRM DRIVERS FOR TI KEYSTONE
6348 M:      Jyri Sarha <jyri.sarha@iki.fi>
6349 M:      Tomi Valkeinen <tomba@kernel.org>
6350 L:      dri-devel@lists.freedesktop.org
6351 S:      Maintained
6352 T:      git git://anongit.freedesktop.org/drm/drm-misc
6353 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6354 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6355 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6356 F:      drivers/gpu/drm/tidss/
6357
6358 DRM DRIVERS FOR TI LCDC
6359 M:      Jyri Sarha <jyri.sarha@iki.fi>
6360 R:      Tomi Valkeinen <tomba@kernel.org>
6361 L:      dri-devel@lists.freedesktop.org
6362 S:      Maintained
6363 F:      Documentation/devicetree/bindings/display/tilcdc/
6364 F:      drivers/gpu/drm/tilcdc/
6365
6366 DRM DRIVERS FOR TI OMAP
6367 M:      Tomi Valkeinen <tomba@kernel.org>
6368 L:      dri-devel@lists.freedesktop.org
6369 S:      Maintained
6370 F:      Documentation/devicetree/bindings/display/ti/
6371 F:      drivers/gpu/drm/omapdrm/
6372
6373 DRM DRIVERS FOR V3D
6374 M:      Emma Anholt <emma@anholt.net>
6375 S:      Supported
6376 T:      git git://anongit.freedesktop.org/drm/drm-misc
6377 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6378 F:      drivers/gpu/drm/v3d/
6379 F:      include/uapi/drm/v3d_drm.h
6380
6381 DRM DRIVERS FOR VC4
6382 M:      Emma Anholt <emma@anholt.net>
6383 M:      Maxime Ripard <mripard@kernel.org>
6384 S:      Supported
6385 T:      git git://github.com/anholt/linux
6386 T:      git git://anongit.freedesktop.org/drm/drm-misc
6387 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6388 F:      drivers/gpu/drm/vc4/
6389 F:      include/uapi/drm/vc4_drm.h
6390
6391 DRM DRIVERS FOR VIVANTE GPU IP
6392 M:      Lucas Stach <l.stach@pengutronix.de>
6393 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6394 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6395 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6396 L:      dri-devel@lists.freedesktop.org
6397 S:      Maintained
6398 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6399 F:      drivers/gpu/drm/etnaviv/
6400 F:      include/uapi/drm/etnaviv_drm.h
6401
6402 DRM DRIVERS FOR XEN
6403 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6404 L:      dri-devel@lists.freedesktop.org
6405 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6406 S:      Supported
6407 T:      git git://anongit.freedesktop.org/drm/drm-misc
6408 F:      Documentation/gpu/xen-front.rst
6409 F:      drivers/gpu/drm/xen/
6410
6411 DRM DRIVERS FOR XILINX
6412 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6413 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6414 L:      dri-devel@lists.freedesktop.org
6415 S:      Maintained
6416 T:      git git://anongit.freedesktop.org/drm/drm-misc
6417 F:      Documentation/devicetree/bindings/display/xlnx/
6418 F:      drivers/gpu/drm/xlnx/
6419
6420 DRM PANEL DRIVERS
6421 M:      Thierry Reding <thierry.reding@gmail.com>
6422 R:      Sam Ravnborg <sam@ravnborg.org>
6423 L:      dri-devel@lists.freedesktop.org
6424 S:      Maintained
6425 T:      git git://anongit.freedesktop.org/drm/drm-misc
6426 F:      Documentation/devicetree/bindings/display/panel/
6427 F:      drivers/gpu/drm/drm_panel.c
6428 F:      drivers/gpu/drm/panel/
6429 F:      include/drm/drm_panel.h
6430
6431 DRM TTM SUBSYSTEM
6432 M:      Christian Koenig <christian.koenig@amd.com>
6433 M:      Huang Rui <ray.huang@amd.com>
6434 L:      dri-devel@lists.freedesktop.org
6435 S:      Maintained
6436 T:      git git://anongit.freedesktop.org/drm/drm-misc
6437 F:      drivers/gpu/drm/ttm/
6438 F:      include/drm/ttm/
6439
6440 DSBR100 USB FM RADIO DRIVER
6441 M:      Alexey Klimov <klimov.linux@gmail.com>
6442 L:      linux-media@vger.kernel.org
6443 S:      Maintained
6444 T:      git git://linuxtv.org/media_tree.git
6445 F:      drivers/media/radio/dsbr100.c
6446
6447 DT3155 MEDIA DRIVER
6448 M:      Hans Verkuil <hverkuil@xs4all.nl>
6449 L:      linux-media@vger.kernel.org
6450 S:      Odd Fixes
6451 W:      https://linuxtv.org
6452 T:      git git://linuxtv.org/media_tree.git
6453 F:      drivers/media/pci/dt3155/
6454
6455 DVB_USB_AF9015 MEDIA DRIVER
6456 M:      Antti Palosaari <crope@iki.fi>
6457 L:      linux-media@vger.kernel.org
6458 S:      Maintained
6459 W:      https://linuxtv.org
6460 W:      http://palosaari.fi/linux/
6461 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6462 T:      git git://linuxtv.org/anttip/media_tree.git
6463 F:      drivers/media/usb/dvb-usb-v2/af9015*
6464
6465 DVB_USB_AF9035 MEDIA DRIVER
6466 M:      Antti Palosaari <crope@iki.fi>
6467 L:      linux-media@vger.kernel.org
6468 S:      Maintained
6469 W:      https://linuxtv.org
6470 W:      http://palosaari.fi/linux/
6471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6472 T:      git git://linuxtv.org/anttip/media_tree.git
6473 F:      drivers/media/usb/dvb-usb-v2/af9035*
6474
6475 DVB_USB_ANYSEE MEDIA DRIVER
6476 M:      Antti Palosaari <crope@iki.fi>
6477 L:      linux-media@vger.kernel.org
6478 S:      Maintained
6479 W:      https://linuxtv.org
6480 W:      http://palosaari.fi/linux/
6481 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6482 T:      git git://linuxtv.org/anttip/media_tree.git
6483 F:      drivers/media/usb/dvb-usb-v2/anysee*
6484
6485 DVB_USB_AU6610 MEDIA DRIVER
6486 M:      Antti Palosaari <crope@iki.fi>
6487 L:      linux-media@vger.kernel.org
6488 S:      Maintained
6489 W:      https://linuxtv.org
6490 W:      http://palosaari.fi/linux/
6491 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6492 T:      git git://linuxtv.org/anttip/media_tree.git
6493 F:      drivers/media/usb/dvb-usb-v2/au6610*
6494
6495 DVB_USB_CE6230 MEDIA DRIVER
6496 M:      Antti Palosaari <crope@iki.fi>
6497 L:      linux-media@vger.kernel.org
6498 S:      Maintained
6499 W:      https://linuxtv.org
6500 W:      http://palosaari.fi/linux/
6501 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6502 T:      git git://linuxtv.org/anttip/media_tree.git
6503 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6504
6505 DVB_USB_CXUSB MEDIA DRIVER
6506 M:      Michael Krufky <mkrufky@linuxtv.org>
6507 L:      linux-media@vger.kernel.org
6508 S:      Maintained
6509 W:      https://linuxtv.org
6510 W:      http://github.com/mkrufky
6511 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6512 T:      git git://linuxtv.org/media_tree.git
6513 F:      drivers/media/usb/dvb-usb/cxusb*
6514
6515 DVB_USB_EC168 MEDIA DRIVER
6516 M:      Antti Palosaari <crope@iki.fi>
6517 L:      linux-media@vger.kernel.org
6518 S:      Maintained
6519 W:      https://linuxtv.org
6520 W:      http://palosaari.fi/linux/
6521 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6522 T:      git git://linuxtv.org/anttip/media_tree.git
6523 F:      drivers/media/usb/dvb-usb-v2/ec168*
6524
6525 DVB_USB_GL861 MEDIA DRIVER
6526 M:      Antti Palosaari <crope@iki.fi>
6527 L:      linux-media@vger.kernel.org
6528 S:      Maintained
6529 W:      https://linuxtv.org
6530 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6531 T:      git git://linuxtv.org/anttip/media_tree.git
6532 F:      drivers/media/usb/dvb-usb-v2/gl861*
6533
6534 DVB_USB_MXL111SF MEDIA DRIVER
6535 M:      Michael Krufky <mkrufky@linuxtv.org>
6536 L:      linux-media@vger.kernel.org
6537 S:      Maintained
6538 W:      https://linuxtv.org
6539 W:      http://github.com/mkrufky
6540 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6541 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6542 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6543
6544 DVB_USB_RTL28XXU MEDIA DRIVER
6545 M:      Antti Palosaari <crope@iki.fi>
6546 L:      linux-media@vger.kernel.org
6547 S:      Maintained
6548 W:      https://linuxtv.org
6549 W:      http://palosaari.fi/linux/
6550 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6551 T:      git git://linuxtv.org/anttip/media_tree.git
6552 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6553
6554 DVB_USB_V2 MEDIA DRIVER
6555 M:      Antti Palosaari <crope@iki.fi>
6556 L:      linux-media@vger.kernel.org
6557 S:      Maintained
6558 W:      https://linuxtv.org
6559 W:      http://palosaari.fi/linux/
6560 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6561 T:      git git://linuxtv.org/anttip/media_tree.git
6562 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6563 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6564
6565 DYNAMIC DEBUG
6566 M:      Jason Baron <jbaron@akamai.com>
6567 S:      Maintained
6568 F:      include/linux/dynamic_debug.h
6569 F:      lib/dynamic_debug.c
6570
6571 DYNAMIC INTERRUPT MODERATION
6572 M:      Tal Gilboa <talgi@nvidia.com>
6573 S:      Maintained
6574 F:      Documentation/networking/net_dim.rst
6575 F:      include/linux/dim.h
6576 F:      lib/dim/
6577
6578 DZ DECSTATION DZ11 SERIAL DRIVER
6579 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6580 S:      Maintained
6581 F:      drivers/tty/serial/dz.*
6582
6583 E3X0 POWER BUTTON DRIVER
6584 M:      Moritz Fischer <moritz.fischer@ettus.com>
6585 L:      usrp-users@lists.ettus.com
6586 S:      Supported
6587 W:      http://www.ettus.com
6588 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6589 F:      drivers/input/misc/e3x0-button.c
6590
6591 E4000 MEDIA DRIVER
6592 M:      Antti Palosaari <crope@iki.fi>
6593 L:      linux-media@vger.kernel.org
6594 S:      Maintained
6595 W:      https://linuxtv.org
6596 W:      http://palosaari.fi/linux/
6597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6598 T:      git git://linuxtv.org/anttip/media_tree.git
6599 F:      drivers/media/tuners/e4000*
6600
6601 EARTH_PT1 MEDIA DRIVER
6602 M:      Akihiro Tsukada <tskd08@gmail.com>
6603 L:      linux-media@vger.kernel.org
6604 S:      Odd Fixes
6605 F:      drivers/media/pci/pt1/
6606
6607 EARTH_PT3 MEDIA DRIVER
6608 M:      Akihiro Tsukada <tskd08@gmail.com>
6609 L:      linux-media@vger.kernel.org
6610 S:      Odd Fixes
6611 F:      drivers/media/pci/pt3/
6612
6613 EC100 MEDIA DRIVER
6614 M:      Antti Palosaari <crope@iki.fi>
6615 L:      linux-media@vger.kernel.org
6616 S:      Maintained
6617 W:      https://linuxtv.org
6618 W:      http://palosaari.fi/linux/
6619 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6620 T:      git git://linuxtv.org/anttip/media_tree.git
6621 F:      drivers/media/dvb-frontends/ec100*
6622
6623 ECRYPT FILE SYSTEM
6624 M:      Tyler Hicks <code@tyhicks.com>
6625 L:      ecryptfs@vger.kernel.org
6626 S:      Odd Fixes
6627 W:      http://ecryptfs.org
6628 W:      https://launchpad.net/ecryptfs
6629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6630 F:      Documentation/filesystems/ecryptfs.rst
6631 F:      fs/ecryptfs/
6632
6633 EDAC-AMD64
6634 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6635 L:      linux-edac@vger.kernel.org
6636 S:      Supported
6637 F:      drivers/edac/amd64_edac*
6638 F:      drivers/edac/mce_amd*
6639
6640 EDAC-ARMADA
6641 M:      Jan Luebbe <jlu@pengutronix.de>
6642 L:      linux-edac@vger.kernel.org
6643 S:      Maintained
6644 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6645 F:      drivers/edac/armada_xp_*
6646
6647 EDAC-AST2500
6648 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6649 S:      Supported
6650 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6651 F:      drivers/edac/aspeed_edac.c
6652
6653 EDAC-BLUEFIELD
6654 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6655 S:      Supported
6656 F:      drivers/edac/bluefield_edac.c
6657
6658 EDAC-CALXEDA
6659 M:      Andre Przywara <andre.przywara@arm.com>
6660 L:      linux-edac@vger.kernel.org
6661 S:      Maintained
6662 F:      drivers/edac/highbank*
6663
6664 EDAC-CAVIUM OCTEON
6665 M:      Ralf Baechle <ralf@linux-mips.org>
6666 L:      linux-edac@vger.kernel.org
6667 L:      linux-mips@vger.kernel.org
6668 S:      Supported
6669 F:      drivers/edac/octeon_edac*
6670
6671 EDAC-CAVIUM THUNDERX
6672 M:      Robert Richter <rric@kernel.org>
6673 L:      linux-edac@vger.kernel.org
6674 S:      Odd Fixes
6675 F:      drivers/edac/thunderx_edac*
6676
6677 EDAC-CORE
6678 M:      Borislav Petkov <bp@alien8.de>
6679 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6680 M:      Tony Luck <tony.luck@intel.com>
6681 R:      James Morse <james.morse@arm.com>
6682 R:      Robert Richter <rric@kernel.org>
6683 L:      linux-edac@vger.kernel.org
6684 S:      Supported
6685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6686 F:      Documentation/admin-guide/ras.rst
6687 F:      Documentation/driver-api/edac.rst
6688 F:      drivers/edac/
6689 F:      include/linux/edac.h
6690
6691 EDAC-DMC520
6692 M:      Lei Wang <lewan@microsoft.com>
6693 L:      linux-edac@vger.kernel.org
6694 S:      Supported
6695 F:      drivers/edac/dmc520_edac.c
6696
6697 EDAC-E752X
6698 M:      Mark Gross <mark.gross@intel.com>
6699 L:      linux-edac@vger.kernel.org
6700 S:      Maintained
6701 F:      drivers/edac/e752x_edac.c
6702
6703 EDAC-E7XXX
6704 L:      linux-edac@vger.kernel.org
6705 S:      Maintained
6706 F:      drivers/edac/e7xxx_edac.c
6707
6708 EDAC-FSL_DDR
6709 M:      York Sun <york.sun@nxp.com>
6710 L:      linux-edac@vger.kernel.org
6711 S:      Maintained
6712 F:      drivers/edac/fsl_ddr_edac.*
6713
6714 EDAC-GHES
6715 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6716 L:      linux-edac@vger.kernel.org
6717 S:      Maintained
6718 F:      drivers/edac/ghes_edac.c
6719
6720 EDAC-I10NM
6721 M:      Tony Luck <tony.luck@intel.com>
6722 L:      linux-edac@vger.kernel.org
6723 S:      Maintained
6724 F:      drivers/edac/i10nm_base.c
6725
6726 EDAC-I3000
6727 L:      linux-edac@vger.kernel.org
6728 S:      Orphan
6729 F:      drivers/edac/i3000_edac.c
6730
6731 EDAC-I5000
6732 L:      linux-edac@vger.kernel.org
6733 S:      Maintained
6734 F:      drivers/edac/i5000_edac.c
6735
6736 EDAC-I5400
6737 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6738 L:      linux-edac@vger.kernel.org
6739 S:      Maintained
6740 F:      drivers/edac/i5400_edac.c
6741
6742 EDAC-I7300
6743 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6744 L:      linux-edac@vger.kernel.org
6745 S:      Maintained
6746 F:      drivers/edac/i7300_edac.c
6747
6748 EDAC-I7CORE
6749 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6750 L:      linux-edac@vger.kernel.org
6751 S:      Maintained
6752 F:      drivers/edac/i7core_edac.c
6753
6754 EDAC-I82443BXGX
6755 M:      Tim Small <tim@buttersideup.com>
6756 L:      linux-edac@vger.kernel.org
6757 S:      Maintained
6758 F:      drivers/edac/i82443bxgx_edac.c
6759
6760 EDAC-I82975X
6761 M:      "Arvind R." <arvino55@gmail.com>
6762 L:      linux-edac@vger.kernel.org
6763 S:      Maintained
6764 F:      drivers/edac/i82975x_edac.c
6765
6766 EDAC-IE31200
6767 M:      Jason Baron <jbaron@akamai.com>
6768 L:      linux-edac@vger.kernel.org
6769 S:      Maintained
6770 F:      drivers/edac/ie31200_edac.c
6771
6772 EDAC-IGEN6
6773 M:      Tony Luck <tony.luck@intel.com>
6774 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6775 L:      linux-edac@vger.kernel.org
6776 S:      Maintained
6777 F:      drivers/edac/igen6_edac.c
6778
6779 EDAC-MPC85XX
6780 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6781 L:      linux-edac@vger.kernel.org
6782 S:      Maintained
6783 F:      drivers/edac/mpc85xx_edac.[ch]
6784
6785 EDAC-PASEMI
6786 M:      Egor Martovetsky <egor@pasemi.com>
6787 L:      linux-edac@vger.kernel.org
6788 S:      Maintained
6789 F:      drivers/edac/pasemi_edac.c
6790
6791 EDAC-PND2
6792 M:      Tony Luck <tony.luck@intel.com>
6793 L:      linux-edac@vger.kernel.org
6794 S:      Maintained
6795 F:      drivers/edac/pnd2_edac.[ch]
6796
6797 EDAC-QCOM
6798 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6799 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6800 L:      linux-arm-msm@vger.kernel.org
6801 L:      linux-edac@vger.kernel.org
6802 S:      Maintained
6803 F:      drivers/edac/qcom_edac.c
6804
6805 EDAC-R82600
6806 M:      Tim Small <tim@buttersideup.com>
6807 L:      linux-edac@vger.kernel.org
6808 S:      Maintained
6809 F:      drivers/edac/r82600_edac.c
6810
6811 EDAC-SBRIDGE
6812 M:      Tony Luck <tony.luck@intel.com>
6813 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6814 L:      linux-edac@vger.kernel.org
6815 S:      Maintained
6816 F:      drivers/edac/sb_edac.c
6817
6818 EDAC-SIFIVE
6819 M:      Yash Shah <yash.shah@sifive.com>
6820 L:      linux-edac@vger.kernel.org
6821 S:      Supported
6822 F:      drivers/edac/sifive_edac.c
6823
6824 EDAC-SKYLAKE
6825 M:      Tony Luck <tony.luck@intel.com>
6826 L:      linux-edac@vger.kernel.org
6827 S:      Maintained
6828 F:      drivers/edac/skx_*.[ch]
6829
6830 EDAC-TI
6831 M:      Tero Kristo <kristo@kernel.org>
6832 L:      linux-edac@vger.kernel.org
6833 S:      Odd Fixes
6834 F:      drivers/edac/ti_edac.c
6835
6836 EDIROL UA-101/UA-1000 DRIVER
6837 M:      Clemens Ladisch <clemens@ladisch.de>
6838 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6839 S:      Maintained
6840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6841 F:      sound/usb/misc/ua101.c
6842
6843 EFI TEST DRIVER
6844 M:      Ivan Hu <ivan.hu@canonical.com>
6845 M:      Ard Biesheuvel <ardb@kernel.org>
6846 L:      linux-efi@vger.kernel.org
6847 S:      Maintained
6848 F:      drivers/firmware/efi/test/
6849
6850 EFI VARIABLE FILESYSTEM
6851 M:      Matthew Garrett <matthew.garrett@nebula.com>
6852 M:      Jeremy Kerr <jk@ozlabs.org>
6853 M:      Ard Biesheuvel <ardb@kernel.org>
6854 L:      linux-efi@vger.kernel.org
6855 S:      Maintained
6856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6857 F:      fs/efivarfs/
6858
6859 EFIFB FRAMEBUFFER DRIVER
6860 M:      Peter Jones <pjones@redhat.com>
6861 L:      linux-fbdev@vger.kernel.org
6862 S:      Maintained
6863 F:      drivers/video/fbdev/efifb.c
6864
6865 EFS FILESYSTEM
6866 S:      Orphan
6867 W:      http://aeschi.ch.eu.org/efs/
6868 F:      fs/efs/
6869
6870 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6871 M:      Douglas Miller <dougmill@linux.ibm.com>
6872 L:      netdev@vger.kernel.org
6873 S:      Maintained
6874 F:      drivers/net/ethernet/ibm/ehea/
6875
6876 EM28XX VIDEO4LINUX DRIVER
6877 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6878 L:      linux-media@vger.kernel.org
6879 S:      Maintained
6880 W:      https://linuxtv.org
6881 T:      git git://linuxtv.org/media_tree.git
6882 F:      Documentation/admin-guide/media/em28xx*
6883 F:      drivers/media/usb/em28xx/
6884
6885 EMBEDDED LINUX
6886 M:      Matt Mackall <mpm@selenic.com>
6887 M:      David Woodhouse <dwmw2@infradead.org>
6888 L:      linux-embedded@vger.kernel.org
6889 S:      Maintained
6890
6891 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6892 M:      Adrian Hunter <adrian.hunter@intel.com>
6893 M:      Ritesh Harjani <riteshh@codeaurora.org>
6894 M:      Asutosh Das <asutoshd@codeaurora.org>
6895 L:      linux-mmc@vger.kernel.org
6896 S:      Maintained
6897 F:      drivers/mmc/host/cqhci*
6898
6899 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6900 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6901 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6902 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6903 L:      linux-scsi@vger.kernel.org
6904 S:      Supported
6905 W:      http://www.broadcom.com
6906 F:      drivers/scsi/be2iscsi/
6907
6908 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6909 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6910 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6911 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6912 L:      netdev@vger.kernel.org
6913 S:      Supported
6914 W:      http://www.emulex.com
6915 F:      drivers/net/ethernet/emulex/benet/
6916
6917 EMULEX ONECONNECT ROCE DRIVER
6918 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6919 L:      linux-rdma@vger.kernel.org
6920 S:      Odd Fixes
6921 W:      http://www.broadcom.com
6922 F:      drivers/infiniband/hw/ocrdma/
6923 F:      include/uapi/rdma/ocrdma-abi.h
6924
6925 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6926 M:      James Smart <james.smart@broadcom.com>
6927 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6928 L:      linux-scsi@vger.kernel.org
6929 S:      Supported
6930 W:      http://www.broadcom.com
6931 F:      drivers/scsi/lpfc/
6932
6933 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6934 M:      James Smart <james.smart@broadcom.com>
6935 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6936 L:      linux-scsi@vger.kernel.org
6937 L:      target-devel@vger.kernel.org
6938 S:      Supported
6939 W:      http://www.broadcom.com
6940 F:      drivers/scsi/elx/
6941
6942 ENE CB710 FLASH CARD READER DRIVER
6943 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6944 S:      Maintained
6945 F:      drivers/misc/cb710/
6946 F:      drivers/mmc/host/cb710-mmc.*
6947 F:      include/linux/cb710.h
6948
6949 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6950 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6951 S:      Maintained
6952 F:      drivers/media/rc/ene_ir.*
6953
6954 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6955 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6956 L:      linuxppc-dev@lists.ozlabs.org
6957 S:      Maintained
6958 F:      drivers/tty/ehv_bytechan.c
6959
6960 EPSON S1D13XXX FRAMEBUFFER DRIVER
6961 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6962 S:      Maintained
6963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6964 F:      drivers/video/fbdev/s1d13xxxfb.c
6965 F:      include/video/s1d13xxxfb.h
6966
6967 EROFS FILE SYSTEM
6968 M:      Gao Xiang <xiang@kernel.org>
6969 M:      Chao Yu <chao@kernel.org>
6970 L:      linux-erofs@lists.ozlabs.org
6971 S:      Maintained
6972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6973 F:      Documentation/filesystems/erofs.rst
6974 F:      fs/erofs/
6975 F:      include/trace/events/erofs.h
6976
6977 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6978 M:      Jeff Layton <jlayton@kernel.org>
6979 S:      Maintained
6980 F:      include/linux/errseq.h
6981 F:      lib/errseq.c
6982
6983 ET131X NETWORK DRIVER
6984 M:      Mark Einon <mark.einon@gmail.com>
6985 S:      Odd Fixes
6986 F:      drivers/net/ethernet/agere/
6987
6988 ETAS ES58X CAN/USB DRIVER
6989 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
6990 L:      linux-can@vger.kernel.org
6991 S:      Maintained
6992 F:      drivers/net/can/usb/etas_es58x/
6993
6994 ETHERNET BRIDGE
6995 M:      Roopa Prabhu <roopa@nvidia.com>
6996 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6997 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6998 L:      netdev@vger.kernel.org
6999 S:      Maintained
7000 W:      http://www.linuxfoundation.org/en/Net:Bridge
7001 F:      include/linux/netfilter_bridge/
7002 F:      net/bridge/
7003
7004 ETHERNET PHY LIBRARY
7005 M:      Andrew Lunn <andrew@lunn.ch>
7006 M:      Heiner Kallweit <hkallweit1@gmail.com>
7007 R:      Russell King <linux@armlinux.org.uk>
7008 L:      netdev@vger.kernel.org
7009 S:      Maintained
7010 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7011 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7012 F:      Documentation/devicetree/bindings/net/mdio*
7013 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7014 F:      Documentation/networking/phy.rst
7015 F:      drivers/net/mdio/
7016 F:      drivers/net/mdio/acpi_mdio.c
7017 F:      drivers/net/mdio/fwnode_mdio.c
7018 F:      drivers/net/mdio/of_mdio.c
7019 F:      drivers/net/pcs/
7020 F:      drivers/net/phy/
7021 F:      include/dt-bindings/net/qca-ar803x.h
7022 F:      include/linux/*mdio*.h
7023 F:      include/linux/mdio/*.h
7024 F:      include/linux/of_net.h
7025 F:      include/linux/phy.h
7026 F:      include/linux/phy_fixed.h
7027 F:      include/linux/platform_data/mdio-bcm-unimac.h
7028 F:      include/linux/platform_data/mdio-gpio.h
7029 F:      include/trace/events/mdio.h
7030 F:      include/uapi/linux/mdio.h
7031 F:      include/uapi/linux/mii.h
7032 F:      net/core/of_net.c
7033
7034 EXFAT FILE SYSTEM
7035 M:      Namjae Jeon <linkinjeon@kernel.org>
7036 M:      Sungjong Seo <sj1557.seo@samsung.com>
7037 L:      linux-fsdevel@vger.kernel.org
7038 S:      Maintained
7039 F:      fs/exfat/
7040
7041 EXT2 FILE SYSTEM
7042 M:      Jan Kara <jack@suse.com>
7043 L:      linux-ext4@vger.kernel.org
7044 S:      Maintained
7045 F:      Documentation/filesystems/ext2.rst
7046 F:      fs/ext2/
7047 F:      include/linux/ext2*
7048
7049 EXT4 FILE SYSTEM
7050 M:      "Theodore Ts'o" <tytso@mit.edu>
7051 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7052 L:      linux-ext4@vger.kernel.org
7053 S:      Maintained
7054 W:      http://ext4.wiki.kernel.org
7055 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7057 F:      Documentation/filesystems/ext4/
7058 F:      fs/ext4/
7059 F:      include/trace/events/ext4.h
7060
7061 Extended Verification Module (EVM)
7062 M:      Mimi Zohar <zohar@linux.ibm.com>
7063 L:      linux-integrity@vger.kernel.org
7064 S:      Supported
7065 F:      security/integrity/evm/
7066
7067 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7068 M:      Ard Biesheuvel <ardb@kernel.org>
7069 L:      linux-efi@vger.kernel.org
7070 S:      Maintained
7071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7072 F:      Documentation/admin-guide/efi-stub.rst
7073 F:      arch/*/include/asm/efi.h
7074 F:      arch/*/kernel/efi.c
7075 F:      arch/arm/boot/compressed/efi-header.S
7076 F:      arch/arm64/kernel/efi-entry.S
7077 F:      arch/x86/platform/efi/
7078 F:      drivers/firmware/efi/
7079 F:      include/linux/efi*.h
7080
7081 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7082 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7083 M:      Chanwoo Choi <cw00.choi@samsung.com>
7084 L:      linux-kernel@vger.kernel.org
7085 S:      Maintained
7086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7087 F:      Documentation/devicetree/bindings/extcon/
7088 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7089 F:      drivers/extcon/
7090 F:      include/linux/extcon.h
7091 F:      include/linux/extcon/
7092
7093 EXTRA BOOT CONFIG
7094 M:      Masami Hiramatsu <mhiramat@kernel.org>
7095 S:      Maintained
7096 F:      Documentation/admin-guide/bootconfig.rst
7097 F:      fs/proc/bootconfig.c
7098 F:      include/linux/bootconfig.h
7099 F:      lib/bootconfig.c
7100 F:      tools/bootconfig/*
7101 F:      tools/bootconfig/scripts/*
7102
7103 EXYNOS DP DRIVER
7104 M:      Jingoo Han <jingoohan1@gmail.com>
7105 L:      dri-devel@lists.freedesktop.org
7106 S:      Maintained
7107 F:      drivers/gpu/drm/exynos/exynos_dp*
7108
7109 EXYNOS SYSMMU (IOMMU) driver
7110 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7111 L:      iommu@lists.linux-foundation.org
7112 S:      Maintained
7113 F:      drivers/iommu/exynos-iommu.c
7114
7115 F2FS FILE SYSTEM
7116 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7117 M:      Chao Yu <chao@kernel.org>
7118 L:      linux-f2fs-devel@lists.sourceforge.net
7119 S:      Maintained
7120 W:      https://f2fs.wiki.kernel.org/
7121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7122 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7123 F:      Documentation/filesystems/f2fs.rst
7124 F:      fs/f2fs/
7125 F:      include/linux/f2fs_fs.h
7126 F:      include/trace/events/f2fs.h
7127 F:      include/uapi/linux/f2fs.h
7128
7129 F71805F HARDWARE MONITORING DRIVER
7130 M:      Jean Delvare <jdelvare@suse.com>
7131 L:      linux-hwmon@vger.kernel.org
7132 S:      Maintained
7133 F:      Documentation/hwmon/f71805f.rst
7134 F:      drivers/hwmon/f71805f.c
7135
7136 FADDR2LINE
7137 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7138 S:      Maintained
7139 F:      scripts/faddr2line
7140
7141 FAILOVER MODULE
7142 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7143 L:      netdev@vger.kernel.org
7144 S:      Supported
7145 F:      Documentation/networking/failover.rst
7146 F:      include/net/failover.h
7147 F:      net/core/failover.c
7148
7149 FANOTIFY
7150 M:      Jan Kara <jack@suse.cz>
7151 R:      Amir Goldstein <amir73il@gmail.com>
7152 R:      Matthew Bobrowski <repnop@google.com>
7153 L:      linux-fsdevel@vger.kernel.org
7154 S:      Maintained
7155 F:      fs/notify/fanotify/
7156 F:      include/linux/fanotify.h
7157 F:      include/uapi/linux/fanotify.h
7158
7159 FARSYNC SYNCHRONOUS DRIVER
7160 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7161 S:      Supported
7162 W:      http://www.farsite.co.uk/
7163 F:      drivers/net/wan/farsync.*
7164
7165 FAULT INJECTION SUPPORT
7166 M:      Akinobu Mita <akinobu.mita@gmail.com>
7167 S:      Supported
7168 F:      Documentation/fault-injection/
7169 F:      lib/fault-inject.c
7170
7171 FBTFT Framebuffer drivers
7172 L:      dri-devel@lists.freedesktop.org
7173 L:      linux-fbdev@vger.kernel.org
7174 S:      Orphan
7175 F:      drivers/staging/fbtft/
7176
7177 FC0011 TUNER DRIVER
7178 M:      Michael Buesch <m@bues.ch>
7179 L:      linux-media@vger.kernel.org
7180 S:      Maintained
7181 F:      drivers/media/tuners/fc0011.c
7182 F:      drivers/media/tuners/fc0011.h
7183
7184 FC2580 MEDIA DRIVER
7185 M:      Antti Palosaari <crope@iki.fi>
7186 L:      linux-media@vger.kernel.org
7187 S:      Maintained
7188 W:      https://linuxtv.org
7189 W:      http://palosaari.fi/linux/
7190 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7191 T:      git git://linuxtv.org/anttip/media_tree.git
7192 F:      drivers/media/tuners/fc2580*
7193
7194 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7195 M:      Hannes Reinecke <hare@suse.de>
7196 L:      linux-scsi@vger.kernel.org
7197 S:      Supported
7198 W:      www.Open-FCoE.org
7199 F:      drivers/scsi/fcoe/
7200 F:      drivers/scsi/libfc/
7201 F:      include/scsi/fc/
7202 F:      include/scsi/libfc.h
7203 F:      include/scsi/libfcoe.h
7204 F:      include/uapi/scsi/fc/
7205
7206 FILE LOCKING (flock() and fcntl()/lockf())
7207 M:      Jeff Layton <jlayton@kernel.org>
7208 M:      "J. Bruce Fields" <bfields@fieldses.org>
7209 L:      linux-fsdevel@vger.kernel.org
7210 S:      Maintained
7211 F:      fs/fcntl.c
7212 F:      fs/locks.c
7213 F:      include/linux/fcntl.h
7214 F:      include/uapi/linux/fcntl.h
7215
7216 FILESYSTEM DIRECT ACCESS (DAX)
7217 M:      Dan Williams <dan.j.williams@intel.com>
7218 R:      Matthew Wilcox <willy@infradead.org>
7219 R:      Jan Kara <jack@suse.cz>
7220 L:      linux-fsdevel@vger.kernel.org
7221 L:      nvdimm@lists.linux.dev
7222 S:      Supported
7223 F:      fs/dax.c
7224 F:      include/linux/dax.h
7225 F:      include/trace/events/fs_dax.h
7226
7227 FILESYSTEMS (VFS and infrastructure)
7228 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7229 L:      linux-fsdevel@vger.kernel.org
7230 S:      Maintained
7231 F:      fs/*
7232 F:      include/linux/fs.h
7233 F:      include/linux/fs_types.h
7234 F:      include/uapi/linux/fs.h
7235 F:      include/uapi/linux/openat2.h
7236 X:      fs/io-wq.c
7237 X:      fs/io-wq.h
7238 X:      fs/io_uring.c
7239
7240 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7241 M:      Riku Voipio <riku.voipio@iki.fi>
7242 L:      linux-hwmon@vger.kernel.org
7243 S:      Maintained
7244 F:      drivers/hwmon/f75375s.c
7245 F:      include/linux/f75375s.h
7246
7247 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7248 M:      Clemens Ladisch <clemens@ladisch.de>
7249 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7250 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7251 S:      Maintained
7252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7253 F:      include/uapi/sound/firewire.h
7254 F:      sound/firewire/
7255
7256 FIREWIRE MEDIA DRIVERS (firedtv)
7257 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7258 L:      linux-media@vger.kernel.org
7259 L:      linux1394-devel@lists.sourceforge.net
7260 S:      Maintained
7261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7262 F:      drivers/media/firewire/
7263
7264 FIREWIRE SBP-2 TARGET
7265 M:      Chris Boot <bootc@bootc.net>
7266 L:      linux-scsi@vger.kernel.org
7267 L:      target-devel@vger.kernel.org
7268 L:      linux1394-devel@lists.sourceforge.net
7269 S:      Maintained
7270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7271 F:      drivers/target/sbp/
7272
7273 FIREWIRE SUBSYSTEM
7274 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7275 L:      linux1394-devel@lists.sourceforge.net
7276 S:      Maintained
7277 W:      http://ieee1394.wiki.kernel.org/
7278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7279 F:      drivers/firewire/
7280 F:      include/linux/firewire.h
7281 F:      include/uapi/linux/firewire*.h
7282 F:      tools/firewire/
7283
7284 FIRMWARE FRAMEWORK FOR ARMV8-A
7285 M:      Sudeep Holla <sudeep.holla@arm.com>
7286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7287 S:      Maintained
7288 F:      drivers/firmware/arm_ffa/
7289 F:      include/linux/arm_ffa.h
7290
7291 FIRMWARE LOADER (request_firmware)
7292 M:      Luis Chamberlain <mcgrof@kernel.org>
7293 L:      linux-kernel@vger.kernel.org
7294 S:      Maintained
7295 F:      Documentation/firmware_class/
7296 F:      drivers/base/firmware_loader/
7297 F:      include/linux/firmware.h
7298
7299 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7300 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7301 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7302 S:      Maintained
7303 F:      drivers/block/rsxx/
7304
7305 FLEXTIMER FTM-QUADDEC DRIVER
7306 M:      Patrick Havelange <patrick.havelange@essensium.com>
7307 L:      linux-iio@vger.kernel.org
7308 S:      Maintained
7309 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7310 F:      drivers/counter/ftm-quaddec.c
7311
7312 FLOPPY DRIVER
7313 M:      Denis Efremov <efremov@linux.com>
7314 L:      linux-block@vger.kernel.org
7315 S:      Odd Fixes
7316 F:      drivers/block/floppy.c
7317
7318 FLYSKY FSIA6B RC RECEIVER
7319 M:      Markus Koch <markus@notsyncing.net>
7320 L:      linux-input@vger.kernel.org
7321 S:      Maintained
7322 F:      drivers/input/joystick/fsia6b.c
7323
7324 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7325 M:      Geoffrey D. Bennett <g@b4.vu>
7326 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7327 S:      Maintained
7328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7329 F:      sound/usb/mixer_scarlett_gen2.c
7330
7331 FORCEDETH GIGABIT ETHERNET DRIVER
7332 M:      Rain River <rain.1986.08.12@gmail.com>
7333 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7334 L:      netdev@vger.kernel.org
7335 S:      Maintained
7336 F:      drivers/net/ethernet/nvidia/*
7337
7338 FPGA DFL DRIVERS
7339 M:      Wu Hao <hao.wu@intel.com>
7340 R:      Tom Rix <trix@redhat.com>
7341 L:      linux-fpga@vger.kernel.org
7342 S:      Maintained
7343 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7344 F:      Documentation/fpga/dfl.rst
7345 F:      drivers/fpga/dfl*
7346 F:      drivers/uio/uio_dfl.c
7347 F:      include/linux/dfl.h
7348 F:      include/uapi/linux/fpga-dfl.h
7349
7350 FPGA MANAGER FRAMEWORK
7351 M:      Moritz Fischer <mdf@kernel.org>
7352 M:      Wu Hao <hao.wu@intel.com>
7353 M:      Xu Yilun <yilun.xu@intel.com>
7354 R:      Tom Rix <trix@redhat.com>
7355 L:      linux-fpga@vger.kernel.org
7356 S:      Maintained
7357 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7359 F:      Documentation/devicetree/bindings/fpga/
7360 F:      Documentation/driver-api/fpga/
7361 F:      Documentation/fpga/
7362 F:      drivers/fpga/
7363 F:      include/linux/fpga/
7364
7365 FPU EMULATOR
7366 M:      Bill Metzenthen <billm@melbpc.org.au>
7367 S:      Maintained
7368 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7369 F:      arch/x86/math-emu/
7370
7371 FRAMEBUFFER LAYER
7372 L:      dri-devel@lists.freedesktop.org
7373 L:      linux-fbdev@vger.kernel.org
7374 S:      Orphan
7375 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7376 T:      git git://anongit.freedesktop.org/drm/drm-misc
7377 F:      Documentation/fb/
7378 F:      drivers/video/
7379 F:      include/linux/fb.h
7380 F:      include/uapi/linux/fb.h
7381 F:      include/uapi/video/
7382 F:      include/video/
7383
7384 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7385 M:      Horia Geantă <horia.geanta@nxp.com>
7386 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7387 L:      linux-crypto@vger.kernel.org
7388 S:      Maintained
7389 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7390 F:      drivers/crypto/caam/
7391
7392 FREESCALE COLDFIRE M5441X MMC DRIVER
7393 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7394 L:      linux-mmc@vger.kernel.org
7395 S:      Maintained
7396 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7397 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7398
7399 FREESCALE DIU FRAMEBUFFER DRIVER
7400 M:      Timur Tabi <timur@kernel.org>
7401 L:      linux-fbdev@vger.kernel.org
7402 S:      Maintained
7403 F:      drivers/video/fbdev/fsl-diu-fb.*
7404
7405 FREESCALE DMA DRIVER
7406 M:      Li Yang <leoyang.li@nxp.com>
7407 M:      Zhang Wei <zw@zh-kernel.org>
7408 L:      linuxppc-dev@lists.ozlabs.org
7409 S:      Maintained
7410 F:      drivers/dma/fsldma.*
7411
7412 FREESCALE DSPI DRIVER
7413 M:      Vladimir Oltean <olteanv@gmail.com>
7414 L:      linux-spi@vger.kernel.org
7415 S:      Maintained
7416 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7417 F:      drivers/spi/spi-fsl-dspi.c
7418 F:      include/linux/spi/spi-fsl-dspi.h
7419
7420 FREESCALE ENETC ETHERNET DRIVERS
7421 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7422 L:      netdev@vger.kernel.org
7423 S:      Maintained
7424 F:      drivers/net/ethernet/freescale/enetc/
7425
7426 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7427 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7428 L:      netdev@vger.kernel.org
7429 S:      Maintained
7430 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7431 F:      drivers/net/ethernet/freescale/gianfar*
7432
7433 FREESCALE GPMI NAND DRIVER
7434 M:      Han Xu <han.xu@nxp.com>
7435 L:      linux-mtd@lists.infradead.org
7436 S:      Maintained
7437 F:      drivers/mtd/nand/raw/gpmi-nand/*
7438
7439 FREESCALE I2C CPM DRIVER
7440 M:      Jochen Friedrich <jochen@scram.de>
7441 L:      linuxppc-dev@lists.ozlabs.org
7442 L:      linux-i2c@vger.kernel.org
7443 S:      Maintained
7444 F:      drivers/i2c/busses/i2c-cpm.c
7445
7446 FREESCALE IMX / MXC FEC DRIVER
7447 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7448 L:      netdev@vger.kernel.org
7449 S:      Maintained
7450 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7451 F:      drivers/net/ethernet/freescale/fec.h
7452 F:      drivers/net/ethernet/freescale/fec_main.c
7453 F:      drivers/net/ethernet/freescale/fec_ptp.c
7454
7455 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7456 M:      Sascha Hauer <s.hauer@pengutronix.de>
7457 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7458 L:      linux-fbdev@vger.kernel.org
7459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7460 S:      Maintained
7461 F:      drivers/video/fbdev/imxfb.c
7462 F:      include/linux/platform_data/video-imxfb.h
7463
7464 FREESCALE IMX DDR PMU DRIVER
7465 M:      Frank Li <Frank.li@nxp.com>
7466 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7467 S:      Maintained
7468 F:      Documentation/admin-guide/perf/imx-ddr.rst
7469 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7470 F:      drivers/perf/fsl_imx8_ddr_perf.c
7471
7472 FREESCALE IMX I2C DRIVER
7473 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7474 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7475 L:      linux-i2c@vger.kernel.org
7476 S:      Maintained
7477 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7478 F:      drivers/i2c/busses/i2c-imx.c
7479
7480 FREESCALE IMX LPI2C DRIVER
7481 M:      Dong Aisheng <aisheng.dong@nxp.com>
7482 L:      linux-i2c@vger.kernel.org
7483 L:      linux-imx@nxp.com
7484 S:      Maintained
7485 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7486 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7487
7488 FREESCALE MPC I2C DRIVER
7489 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7490 L:      linux-i2c@vger.kernel.org
7491 S:      Maintained
7492 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7493 F:      drivers/i2c/busses/i2c-mpc.c
7494
7495 FREESCALE QORIQ DPAA ETHERNET DRIVER
7496 M:      Madalin Bucur <madalin.bucur@nxp.com>
7497 L:      netdev@vger.kernel.org
7498 S:      Maintained
7499 F:      drivers/net/ethernet/freescale/dpaa
7500
7501 FREESCALE QORIQ DPAA FMAN DRIVER
7502 M:      Madalin Bucur <madalin.bucur@nxp.com>
7503 L:      netdev@vger.kernel.org
7504 S:      Maintained
7505 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7506 F:      drivers/net/ethernet/freescale/fman
7507
7508 FREESCALE QORIQ PTP CLOCK DRIVER
7509 M:      Yangbo Lu <yangbo.lu@nxp.com>
7510 L:      netdev@vger.kernel.org
7511 S:      Maintained
7512 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7513 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7514 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7515 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7516 F:      drivers/ptp/ptp_qoriq.c
7517 F:      drivers/ptp/ptp_qoriq_debugfs.c
7518 F:      include/linux/fsl/ptp_qoriq.h
7519
7520 FREESCALE QUAD SPI DRIVER
7521 M:      Han Xu <han.xu@nxp.com>
7522 L:      linux-spi@vger.kernel.org
7523 S:      Maintained
7524 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7525 F:      drivers/spi/spi-fsl-qspi.c
7526
7527 FREESCALE QUICC ENGINE LIBRARY
7528 M:      Qiang Zhao <qiang.zhao@nxp.com>
7529 L:      linuxppc-dev@lists.ozlabs.org
7530 S:      Maintained
7531 F:      drivers/soc/fsl/qe/
7532 F:      include/soc/fsl/*qe*.h
7533 F:      include/soc/fsl/*ucc*.h
7534
7535 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7536 M:      Li Yang <leoyang.li@nxp.com>
7537 L:      netdev@vger.kernel.org
7538 L:      linuxppc-dev@lists.ozlabs.org
7539 S:      Maintained
7540 F:      drivers/net/ethernet/freescale/ucc_geth*
7541
7542 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7543 M:      Zhao Qiang <qiang.zhao@nxp.com>
7544 L:      netdev@vger.kernel.org
7545 L:      linuxppc-dev@lists.ozlabs.org
7546 S:      Maintained
7547 F:      drivers/net/wan/fsl_ucc_hdlc*
7548
7549 FREESCALE QUICC ENGINE UCC UART DRIVER
7550 M:      Timur Tabi <timur@kernel.org>
7551 L:      linuxppc-dev@lists.ozlabs.org
7552 S:      Maintained
7553 F:      drivers/tty/serial/ucc_uart.c
7554
7555 FREESCALE SOC DRIVERS
7556 M:      Li Yang <leoyang.li@nxp.com>
7557 L:      linuxppc-dev@lists.ozlabs.org
7558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7559 S:      Maintained
7560 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7561 F:      Documentation/devicetree/bindings/soc/fsl/
7562 F:      drivers/soc/fsl/
7563 F:      include/linux/fsl/
7564
7565 FREESCALE SOC FS_ENET DRIVER
7566 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7567 L:      linuxppc-dev@lists.ozlabs.org
7568 L:      netdev@vger.kernel.org
7569 S:      Maintained
7570 F:      drivers/net/ethernet/freescale/fs_enet/
7571 F:      include/linux/fs_enet_pd.h
7572
7573 FREESCALE SOC SOUND DRIVERS
7574 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7575 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7576 R:      Fabio Estevam <festevam@gmail.com>
7577 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7578 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7579 L:      linuxppc-dev@lists.ozlabs.org
7580 S:      Maintained
7581 F:      sound/soc/fsl/fsl*
7582 F:      sound/soc/fsl/imx*
7583 F:      sound/soc/fsl/mpc8610_hpcd.c
7584
7585 FREESCALE USB PERIPHERAL DRIVERS
7586 M:      Li Yang <leoyang.li@nxp.com>
7587 L:      linux-usb@vger.kernel.org
7588 L:      linuxppc-dev@lists.ozlabs.org
7589 S:      Maintained
7590 F:      drivers/usb/gadget/udc/fsl*
7591
7592 FREESCALE USB PHY DRIVER
7593 M:      Ran Wang <ran.wang_1@nxp.com>
7594 L:      linux-usb@vger.kernel.org
7595 L:      linuxppc-dev@lists.ozlabs.org
7596 S:      Maintained
7597 F:      drivers/usb/phy/phy-fsl-usb*
7598
7599 FREEVXFS FILESYSTEM
7600 M:      Christoph Hellwig <hch@infradead.org>
7601 S:      Maintained
7602 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7603 F:      fs/freevxfs/
7604
7605 FREEZER
7606 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7607 M:      Pavel Machek <pavel@ucw.cz>
7608 L:      linux-pm@vger.kernel.org
7609 S:      Supported
7610 F:      Documentation/power/freezing-of-tasks.rst
7611 F:      include/linux/freezer.h
7612 F:      kernel/freezer.c
7613
7614 FRONTSWAP API
7615 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7616 L:      linux-kernel@vger.kernel.org
7617 S:      Maintained
7618 F:      include/linux/frontswap.h
7619 F:      mm/frontswap.c
7620
7621 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7622 M:      David Howells <dhowells@redhat.com>
7623 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7624 S:      Supported
7625 F:      Documentation/filesystems/caching/
7626 F:      fs/fscache/
7627 F:      include/linux/fscache*.h
7628
7629 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7630 M:      Theodore Y. Ts'o <tytso@mit.edu>
7631 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7632 M:      Eric Biggers <ebiggers@kernel.org>
7633 L:      linux-fscrypt@vger.kernel.org
7634 S:      Supported
7635 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7636 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7637 F:      Documentation/filesystems/fscrypt.rst
7638 F:      fs/crypto/
7639 F:      include/linux/fscrypt*.h
7640 F:      include/uapi/linux/fscrypt.h
7641
7642 FSI SUBSYSTEM
7643 M:      Jeremy Kerr <jk@ozlabs.org>
7644 M:      Joel Stanley <joel@jms.id.au>
7645 R:      Alistar Popple <alistair@popple.id.au>
7646 R:      Eddie James <eajames@linux.ibm.com>
7647 L:      linux-fsi@lists.ozlabs.org
7648 S:      Supported
7649 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7651 F:      drivers/fsi/
7652 F:      include/linux/fsi*.h
7653 F:      include/trace/events/fsi*.h
7654
7655 FSI-ATTACHED I2C DRIVER
7656 M:      Eddie James <eajames@linux.ibm.com>
7657 L:      linux-i2c@vger.kernel.org
7658 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7659 S:      Maintained
7660 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7661 F:      drivers/i2c/busses/i2c-fsi.c
7662
7663 FSI-ATTACHED SPI DRIVER
7664 M:      Eddie James <eajames@linux.ibm.com>
7665 L:      linux-spi@vger.kernel.org
7666 S:      Maintained
7667 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7668 F:      drivers/spi/spi-fsi.c
7669
7670 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7671 M:      Jan Kara <jack@suse.cz>
7672 R:      Amir Goldstein <amir73il@gmail.com>
7673 L:      linux-fsdevel@vger.kernel.org
7674 S:      Maintained
7675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7676 F:      fs/notify/
7677 F:      include/linux/fsnotify*.h
7678
7679 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7680 M:      Eric Biggers <ebiggers@kernel.org>
7681 M:      Theodore Y. Ts'o <tytso@mit.edu>
7682 L:      linux-fscrypt@vger.kernel.org
7683 S:      Supported
7684 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7685 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7686 F:      Documentation/filesystems/fsverity.rst
7687 F:      fs/verity/
7688 F:      include/linux/fsverity.h
7689 F:      include/uapi/linux/fsverity.h
7690
7691 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7692 M:      Michael Zaidman <michael.zaidman@gmail.com>
7693 L:      linux-i2c@vger.kernel.org
7694 L:      linux-input@vger.kernel.org
7695 S:      Maintained
7696 F:      drivers/hid/hid-ft260.c
7697
7698 FUJITSU LAPTOP EXTRAS
7699 M:      Jonathan Woithe <jwoithe@just42.net>
7700 L:      platform-driver-x86@vger.kernel.org
7701 S:      Maintained
7702 F:      drivers/platform/x86/fujitsu-laptop.c
7703
7704 FUJITSU M-5MO LS CAMERA ISP DRIVER
7705 M:      Kyungmin Park <kyungmin.park@samsung.com>
7706 M:      Heungjun Kim <riverful.kim@samsung.com>
7707 L:      linux-media@vger.kernel.org
7708 S:      Maintained
7709 F:      drivers/media/i2c/m5mols/
7710 F:      include/media/i2c/m5mols.h
7711
7712 FUJITSU TABLET EXTRAS
7713 M:      Robert Gerlach <khnz@gmx.de>
7714 L:      platform-driver-x86@vger.kernel.org
7715 S:      Maintained
7716 F:      drivers/platform/x86/fujitsu-tablet.c
7717
7718 FUSE: FILESYSTEM IN USERSPACE
7719 M:      Miklos Szeredi <miklos@szeredi.hu>
7720 L:      linux-fsdevel@vger.kernel.org
7721 S:      Maintained
7722 W:      https://github.com/libfuse/
7723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7724 F:      Documentation/filesystems/fuse.rst
7725 F:      fs/fuse/
7726 F:      include/uapi/linux/fuse.h
7727
7728 FUTEX SUBSYSTEM
7729 M:      Thomas Gleixner <tglx@linutronix.de>
7730 M:      Ingo Molnar <mingo@redhat.com>
7731 R:      Peter Zijlstra <peterz@infradead.org>
7732 R:      Darren Hart <dvhart@infradead.org>
7733 R:      Davidlohr Bueso <dave@stgolabs.net>
7734 L:      linux-kernel@vger.kernel.org
7735 S:      Maintained
7736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7737 F:      Documentation/locking/*futex*
7738 F:      include/asm-generic/futex.h
7739 F:      include/linux/futex.h
7740 F:      include/uapi/linux/futex.h
7741 F:      kernel/futex.c
7742 F:      tools/perf/bench/futex*
7743 F:      tools/testing/selftests/futex/
7744
7745 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7746 M:      Tim Harvey <tharvey@gateworks.com>
7747 M:      Robert Jones <rjones@gateworks.com>
7748 S:      Maintained
7749 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7750 F:      drivers/mfd/gateworks-gsc.c
7751 F:      include/linux/mfd/gsc.h
7752 F:      Documentation/hwmon/gsc-hwmon.rst
7753 F:      drivers/hwmon/gsc-hwmon.c
7754 F:      include/linux/platform_data/gsc_hwmon.h
7755
7756 GCC PLUGINS
7757 M:      Kees Cook <keescook@chromium.org>
7758 L:      linux-hardening@vger.kernel.org
7759 S:      Maintained
7760 F:      Documentation/kbuild/gcc-plugins.rst
7761 F:      scripts/Makefile.gcc-plugins
7762 F:      scripts/gcc-plugins/
7763
7764 GCOV BASED KERNEL PROFILING
7765 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7766 S:      Maintained
7767 F:      Documentation/dev-tools/gcov.rst
7768 F:      kernel/gcov/
7769
7770 GDB KERNEL DEBUGGING HELPER SCRIPTS
7771 M:      Jan Kiszka <jan.kiszka@siemens.com>
7772 M:      Kieran Bingham <kbingham@kernel.org>
7773 S:      Supported
7774 F:      scripts/gdb/
7775
7776 GEMINI CRYPTO DRIVER
7777 M:      Corentin Labbe <clabbe@baylibre.com>
7778 L:      linux-crypto@vger.kernel.org
7779 S:      Maintained
7780 F:      drivers/crypto/gemini/
7781
7782 GEMTEK FM RADIO RECEIVER DRIVER
7783 M:      Hans Verkuil <hverkuil@xs4all.nl>
7784 L:      linux-media@vger.kernel.org
7785 S:      Maintained
7786 W:      https://linuxtv.org
7787 T:      git git://linuxtv.org/media_tree.git
7788 F:      drivers/media/radio/radio-gemtek*
7789
7790 GENERIC ARCHITECTURE TOPOLOGY
7791 M:      Sudeep Holla <sudeep.holla@arm.com>
7792 L:      linux-kernel@vger.kernel.org
7793 S:      Maintained
7794 F:      drivers/base/arch_topology.c
7795 F:      include/linux/arch_topology.h
7796
7797 GENERIC ENTRY CODE
7798 M:      Thomas Gleixner <tglx@linutronix.de>
7799 M:      Peter Zijlstra <peterz@infradead.org>
7800 M:      Andy Lutomirski <luto@kernel.org>
7801 L:      linux-kernel@vger.kernel.org
7802 S:      Maintained
7803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7804 F:      include/linux/entry-common.h
7805 F:      include/linux/entry-kvm.h
7806 F:      kernel/entry/
7807
7808 GENERIC GPIO I2C DRIVER
7809 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7810 S:      Supported
7811 F:      drivers/i2c/busses/i2c-gpio.c
7812 F:      include/linux/platform_data/i2c-gpio.h
7813
7814 GENERIC GPIO I2C MULTIPLEXER DRIVER
7815 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7816 L:      linux-i2c@vger.kernel.org
7817 S:      Supported
7818 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7819 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7820 F:      include/linux/platform_data/i2c-mux-gpio.h
7821
7822 GENERIC HDLC (WAN) DRIVERS
7823 M:      Krzysztof Halasa <khc@pm.waw.pl>
7824 S:      Maintained
7825 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7826 F:      drivers/net/wan/c101.c
7827 F:      drivers/net/wan/hd6457*
7828 F:      drivers/net/wan/hdlc*
7829 F:      drivers/net/wan/n2.c
7830 F:      drivers/net/wan/pc300too.c
7831 F:      drivers/net/wan/pci200syn.c
7832 F:      drivers/net/wan/wanxl*
7833
7834 GENERIC INCLUDE/ASM HEADER FILES
7835 M:      Arnd Bergmann <arnd@arndb.de>
7836 L:      linux-arch@vger.kernel.org
7837 S:      Maintained
7838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7839 F:      include/asm-generic/
7840 F:      include/uapi/asm-generic/
7841
7842 GENERIC PHY FRAMEWORK
7843 M:      Kishon Vijay Abraham I <kishon@ti.com>
7844 M:      Vinod Koul <vkoul@kernel.org>
7845 L:      linux-phy@lists.infradead.org
7846 S:      Supported
7847 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7849 F:      Documentation/devicetree/bindings/phy/
7850 F:      drivers/phy/
7851 F:      include/linux/phy/
7852
7853 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7854 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7855 S:      Supported
7856 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7857
7858 GENERIC PM DOMAINS
7859 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7860 M:      Kevin Hilman <khilman@kernel.org>
7861 M:      Ulf Hansson <ulf.hansson@linaro.org>
7862 L:      linux-pm@vger.kernel.org
7863 S:      Supported
7864 F:      Documentation/devicetree/bindings/power/power?domain*
7865 F:      drivers/base/power/domain*.c
7866 F:      include/linux/pm_domain.h
7867
7868 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7869 M:      Eugen Hristev <eugen.hristev@microchip.com>
7870 L:      linux-input@vger.kernel.org
7871 S:      Maintained
7872 F:      drivers/input/touchscreen/resistive-adc-touch.c
7873
7874 GENERIC STRING LIBRARY
7875 R:      Andy Shevchenko <andy@kernel.org>
7876 S:      Maintained
7877 F:      lib/string.c
7878 F:      lib/string_helpers.c
7879 F:      lib/test_string.c
7880 F:      lib/test-string_helpers.c
7881
7882 GENERIC UIO DRIVER FOR PCI DEVICES
7883 M:      "Michael S. Tsirkin" <mst@redhat.com>
7884 L:      kvm@vger.kernel.org
7885 S:      Supported
7886 F:      drivers/uio/uio_pci_generic.c
7887
7888 GENERIC VDSO LIBRARY
7889 M:      Andy Lutomirski <luto@kernel.org>
7890 M:      Thomas Gleixner <tglx@linutronix.de>
7891 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7892 L:      linux-kernel@vger.kernel.org
7893 S:      Maintained
7894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7895 F:      include/asm-generic/vdso/vsyscall.h
7896 F:      include/vdso/
7897 F:      kernel/time/vsyscall.c
7898 F:      lib/vdso/
7899
7900 GENWQE (IBM Generic Workqueue Card)
7901 M:      Frank Haverkamp <haver@linux.ibm.com>
7902 S:      Supported
7903 F:      drivers/misc/genwqe/
7904
7905 GET_MAINTAINER SCRIPT
7906 M:      Joe Perches <joe@perches.com>
7907 S:      Maintained
7908 F:      scripts/get_maintainer.pl
7909
7910 GFS2 FILE SYSTEM
7911 M:      Bob Peterson <rpeterso@redhat.com>
7912 M:      Andreas Gruenbacher <agruenba@redhat.com>
7913 L:      cluster-devel@redhat.com
7914 S:      Supported
7915 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7917 F:      Documentation/filesystems/gfs2*
7918 F:      fs/gfs2/
7919 F:      include/uapi/linux/gfs2_ondisk.h
7920
7921 GIGABYTE WMI DRIVER
7922 M:      Thomas Weißschuh <thomas@weissschuh.net>
7923 L:      platform-driver-x86@vger.kernel.org
7924 S:      Maintained
7925 F:      drivers/platform/x86/gigabyte-wmi.c
7926
7927 GNSS SUBSYSTEM
7928 M:      Johan Hovold <johan@kernel.org>
7929 S:      Maintained
7930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7931 F:      Documentation/ABI/testing/sysfs-class-gnss
7932 F:      Documentation/devicetree/bindings/gnss/
7933 F:      drivers/gnss/
7934 F:      include/linux/gnss.h
7935
7936 GO7007 MPEG CODEC
7937 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7938 L:      linux-media@vger.kernel.org
7939 S:      Maintained
7940 F:      drivers/media/usb/go7007/
7941
7942 GOODIX TOUCHSCREEN
7943 M:      Bastien Nocera <hadess@hadess.net>
7944 L:      linux-input@vger.kernel.org
7945 S:      Maintained
7946 F:      drivers/input/touchscreen/goodix.c
7947
7948 GOOGLE ETHERNET DRIVERS
7949 M:      Jeroen de Borst <jeroendb@google.com>
7950 R:      Catherine Sullivan <csully@google.com>
7951 R:      David Awogbemila <awogbemila@google.com>
7952 L:      netdev@vger.kernel.org
7953 S:      Supported
7954 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7955 F:      drivers/net/ethernet/google
7956
7957 GPD POCKET FAN DRIVER
7958 M:      Hans de Goede <hdegoede@redhat.com>
7959 L:      platform-driver-x86@vger.kernel.org
7960 S:      Maintained
7961 F:      drivers/platform/x86/gpd-pocket-fan.c
7962
7963 GPIO ACPI SUPPORT
7964 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7965 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7966 L:      linux-gpio@vger.kernel.org
7967 L:      linux-acpi@vger.kernel.org
7968 S:      Maintained
7969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7970 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7971 F:      drivers/gpio/gpiolib-acpi.c
7972 F:      drivers/gpio/gpiolib-acpi.h
7973
7974 GPIO AGGREGATOR
7975 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7976 L:      linux-gpio@vger.kernel.org
7977 S:      Supported
7978 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7979 F:      drivers/gpio/gpio-aggregator.c
7980
7981 GPIO IR Transmitter
7982 M:      Sean Young <sean@mess.org>
7983 L:      linux-media@vger.kernel.org
7984 S:      Maintained
7985 F:      drivers/media/rc/gpio-ir-tx.c
7986
7987 GPIO MOCKUP DRIVER
7988 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7989 L:      linux-gpio@vger.kernel.org
7990 S:      Maintained
7991 F:      drivers/gpio/gpio-mockup.c
7992 F:      tools/testing/selftests/gpio/
7993
7994 GPIO REGMAP
7995 R:      Michael Walle <michael@walle.cc>
7996 S:      Maintained
7997 F:      drivers/gpio/gpio-regmap.c
7998 F:      include/linux/gpio/regmap.h
7999
8000 GPIO SUBSYSTEM
8001 M:      Linus Walleij <linus.walleij@linaro.org>
8002 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8003 L:      linux-gpio@vger.kernel.org
8004 S:      Maintained
8005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8006 F:      Documentation/ABI/obsolete/sysfs-gpio
8007 F:      Documentation/ABI/testing/gpio-cdev
8008 F:      Documentation/admin-guide/gpio/
8009 F:      Documentation/devicetree/bindings/gpio/
8010 F:      Documentation/driver-api/gpio/
8011 F:      drivers/gpio/
8012 F:      include/asm-generic/gpio.h
8013 F:      include/linux/gpio.h
8014 F:      include/linux/gpio/
8015 F:      include/linux/of_gpio.h
8016 F:      include/uapi/linux/gpio.h
8017 F:      tools/gpio/
8018
8019 GRE DEMULTIPLEXER DRIVER
8020 M:      Dmitry Kozlov <xeb@mail.ru>
8021 L:      netdev@vger.kernel.org
8022 S:      Maintained
8023 F:      include/net/gre.h
8024 F:      net/ipv4/gre_demux.c
8025 F:      net/ipv4/gre_offload.c
8026
8027 GRETH 10/100/1G Ethernet MAC device driver
8028 M:      Andreas Larsson <andreas@gaisler.com>
8029 L:      netdev@vger.kernel.org
8030 S:      Maintained
8031 F:      drivers/net/ethernet/aeroflex/
8032
8033 GREYBUS AUDIO PROTOCOLS DRIVERS
8034 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8035 M:      Mark Greer <mgreer@animalcreek.com>
8036 S:      Maintained
8037 F:      drivers/staging/greybus/audio_apbridgea.c
8038 F:      drivers/staging/greybus/audio_apbridgea.h
8039 F:      drivers/staging/greybus/audio_codec.c
8040 F:      drivers/staging/greybus/audio_codec.h
8041 F:      drivers/staging/greybus/audio_gb.c
8042 F:      drivers/staging/greybus/audio_manager.c
8043 F:      drivers/staging/greybus/audio_manager.h
8044 F:      drivers/staging/greybus/audio_manager_module.c
8045 F:      drivers/staging/greybus/audio_manager_private.h
8046 F:      drivers/staging/greybus/audio_manager_sysfs.c
8047 F:      drivers/staging/greybus/audio_module.c
8048 F:      drivers/staging/greybus/audio_topology.c
8049
8050 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8051 M:      Viresh Kumar <vireshk@kernel.org>
8052 S:      Maintained
8053 F:      drivers/staging/greybus/authentication.c
8054 F:      drivers/staging/greybus/bootrom.c
8055 F:      drivers/staging/greybus/firmware.h
8056 F:      drivers/staging/greybus/fw-core.c
8057 F:      drivers/staging/greybus/fw-download.c
8058 F:      drivers/staging/greybus/fw-management.c
8059 F:      drivers/staging/greybus/greybus_authentication.h
8060 F:      drivers/staging/greybus/greybus_firmware.h
8061 F:      drivers/staging/greybus/hid.c
8062 F:      drivers/staging/greybus/i2c.c
8063 F:      drivers/staging/greybus/spi.c
8064 F:      drivers/staging/greybus/spilib.c
8065 F:      drivers/staging/greybus/spilib.h
8066
8067 GREYBUS LOOPBACK DRIVER
8068 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8069 S:      Maintained
8070 F:      drivers/staging/greybus/loopback.c
8071
8072 GREYBUS PLATFORM DRIVERS
8073 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8074 S:      Maintained
8075 F:      drivers/staging/greybus/arche-apb-ctrl.c
8076 F:      drivers/staging/greybus/arche-platform.c
8077 F:      drivers/staging/greybus/arche_platform.h
8078
8079 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8080 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8081 S:      Maintained
8082 F:      drivers/staging/greybus/gpio.c
8083 F:      drivers/staging/greybus/light.c
8084 F:      drivers/staging/greybus/power_supply.c
8085 F:      drivers/staging/greybus/sdio.c
8086 F:      drivers/staging/greybus/spi.c
8087 F:      drivers/staging/greybus/spilib.c
8088
8089 GREYBUS SUBSYSTEM
8090 M:      Johan Hovold <johan@kernel.org>
8091 M:      Alex Elder <elder@kernel.org>
8092 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8093 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8094 S:      Maintained
8095 F:      drivers/greybus/
8096 F:      drivers/staging/greybus/
8097 F:      include/linux/greybus.h
8098 F:      include/linux/greybus/
8099
8100 GREYBUS UART PROTOCOLS DRIVERS
8101 M:      David Lin <dtwlin@gmail.com>
8102 S:      Maintained
8103 F:      drivers/staging/greybus/log.c
8104 F:      drivers/staging/greybus/uart.c
8105
8106 GS1662 VIDEO SERIALIZER
8107 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8108 L:      linux-media@vger.kernel.org
8109 S:      Maintained
8110 T:      git git://linuxtv.org/media_tree.git
8111 F:      drivers/media/spi/gs1662.c
8112
8113 GSPCA FINEPIX SUBDRIVER
8114 M:      Frank Zago <frank@zago.net>
8115 L:      linux-media@vger.kernel.org
8116 S:      Maintained
8117 T:      git git://linuxtv.org/media_tree.git
8118 F:      drivers/media/usb/gspca/finepix.c
8119
8120 GSPCA GL860 SUBDRIVER
8121 M:      Olivier Lorin <o.lorin@laposte.net>
8122 L:      linux-media@vger.kernel.org
8123 S:      Maintained
8124 T:      git git://linuxtv.org/media_tree.git
8125 F:      drivers/media/usb/gspca/gl860/
8126
8127 GSPCA M5602 SUBDRIVER
8128 M:      Erik Andren <erik.andren@gmail.com>
8129 L:      linux-media@vger.kernel.org
8130 S:      Maintained
8131 T:      git git://linuxtv.org/media_tree.git
8132 F:      drivers/media/usb/gspca/m5602/
8133
8134 GSPCA PAC207 SONIXB SUBDRIVER
8135 M:      Hans Verkuil <hverkuil@xs4all.nl>
8136 L:      linux-media@vger.kernel.org
8137 S:      Odd Fixes
8138 T:      git git://linuxtv.org/media_tree.git
8139 F:      drivers/media/usb/gspca/pac207.c
8140
8141 GSPCA SN9C20X SUBDRIVER
8142 M:      Brian Johnson <brijohn@gmail.com>
8143 L:      linux-media@vger.kernel.org
8144 S:      Maintained
8145 T:      git git://linuxtv.org/media_tree.git
8146 F:      drivers/media/usb/gspca/sn9c20x.c
8147
8148 GSPCA T613 SUBDRIVER
8149 M:      Leandro Costantino <lcostantino@gmail.com>
8150 L:      linux-media@vger.kernel.org
8151 S:      Maintained
8152 T:      git git://linuxtv.org/media_tree.git
8153 F:      drivers/media/usb/gspca/t613.c
8154
8155 GSPCA USB WEBCAM DRIVER
8156 M:      Hans Verkuil <hverkuil@xs4all.nl>
8157 L:      linux-media@vger.kernel.org
8158 S:      Odd Fixes
8159 T:      git git://linuxtv.org/media_tree.git
8160 F:      drivers/media/usb/gspca/
8161
8162 GTP (GPRS Tunneling Protocol)
8163 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8164 M:      Harald Welte <laforge@gnumonks.org>
8165 L:      osmocom-net-gprs@lists.osmocom.org
8166 S:      Maintained
8167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8168 F:      drivers/net/gtp.c
8169
8170 GUID PARTITION TABLE (GPT)
8171 M:      Davidlohr Bueso <dave@stgolabs.net>
8172 L:      linux-efi@vger.kernel.org
8173 S:      Maintained
8174 F:      block/partitions/efi.*
8175
8176 H8/300 ARCHITECTURE
8177 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8178 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8179 S:      Maintained
8180 W:      http://uclinux-h8.sourceforge.jp
8181 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8182 F:      arch/h8300/
8183 F:      drivers/clk/h8300/
8184 F:      drivers/clocksource/h8300_*.c
8185 F:      drivers/irqchip/irq-renesas-h8*.c
8186
8187 HABANALABS PCI DRIVER
8188 M:      Oded Gabbay <ogabbay@kernel.org>
8189 S:      Supported
8190 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8191 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8192 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8193 F:      drivers/misc/habanalabs/
8194 F:      include/uapi/misc/habanalabs.h
8195
8196 HACKRF MEDIA DRIVER
8197 M:      Antti Palosaari <crope@iki.fi>
8198 L:      linux-media@vger.kernel.org
8199 S:      Maintained
8200 W:      https://linuxtv.org
8201 W:      http://palosaari.fi/linux/
8202 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8203 T:      git git://linuxtv.org/anttip/media_tree.git
8204 F:      drivers/media/usb/hackrf/
8205
8206 HANTRO VPU CODEC DRIVER
8207 M:      Ezequiel Garcia <ezequiel@collabora.com>
8208 M:      Philipp Zabel <p.zabel@pengutronix.de>
8209 L:      linux-media@vger.kernel.org
8210 L:      linux-rockchip@lists.infradead.org
8211 S:      Maintained
8212 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8213 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8214 F:      drivers/staging/media/hantro/
8215
8216 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8217 M:      Frank Seidel <frank@f-seidel.de>
8218 L:      platform-driver-x86@vger.kernel.org
8219 S:      Maintained
8220 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8221 F:      drivers/platform/x86/hdaps.c
8222
8223 HARDWARE MONITORING
8224 M:      Jean Delvare <jdelvare@suse.com>
8225 M:      Guenter Roeck <linux@roeck-us.net>
8226 L:      linux-hwmon@vger.kernel.org
8227 S:      Maintained
8228 W:      http://hwmon.wiki.kernel.org/
8229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8230 F:      Documentation/devicetree/bindings/hwmon/
8231 F:      Documentation/hwmon/
8232 F:      drivers/hwmon/
8233 F:      include/linux/hwmon*.h
8234 F:      include/trace/events/hwmon*.h
8235 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8236
8237 HARDWARE RANDOM NUMBER GENERATOR CORE
8238 M:      Matt Mackall <mpm@selenic.com>
8239 M:      Herbert Xu <herbert@gondor.apana.org.au>
8240 L:      linux-crypto@vger.kernel.org
8241 S:      Odd fixes
8242 F:      Documentation/admin-guide/hw_random.rst
8243 F:      Documentation/devicetree/bindings/rng/
8244 F:      drivers/char/hw_random/
8245 F:      include/linux/hw_random.h
8246
8247 HARDWARE SPINLOCK CORE
8248 M:      Ohad Ben-Cohen <ohad@wizery.com>
8249 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8250 R:      Baolin Wang <baolin.wang7@gmail.com>
8251 L:      linux-remoteproc@vger.kernel.org
8252 S:      Maintained
8253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8254 F:      Documentation/devicetree/bindings/hwlock/
8255 F:      Documentation/locking/hwspinlock.rst
8256 F:      drivers/hwspinlock/
8257 F:      include/linux/hwspinlock.h
8258
8259 HARDWARE TRACING FACILITIES
8260 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8261 S:      Maintained
8262 F:      drivers/hwtracing/
8263
8264 HARMONY SOUND DRIVER
8265 L:      linux-parisc@vger.kernel.org
8266 S:      Maintained
8267 F:      sound/parisc/harmony.*
8268
8269 HDPVR USB VIDEO ENCODER DRIVER
8270 M:      Hans Verkuil <hverkuil@xs4all.nl>
8271 L:      linux-media@vger.kernel.org
8272 S:      Odd Fixes
8273 W:      https://linuxtv.org
8274 T:      git git://linuxtv.org/media_tree.git
8275 F:      drivers/media/usb/hdpvr/
8276
8277 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8278 M:      Matt Hsiao <matt.hsiao@hpe.com>
8279 S:      Supported
8280 F:      drivers/misc/hpilo.[ch]
8281
8282 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8283 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8284 S:      Supported
8285 F:      Documentation/watchdog/hpwdt.rst
8286 F:      drivers/watchdog/hpwdt.c
8287
8288 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8289 M:      Don Brace <don.brace@microchip.com>
8290 L:      storagedev@microchip.com
8291 L:      linux-scsi@vger.kernel.org
8292 S:      Supported
8293 F:      Documentation/scsi/hpsa.rst
8294 F:      drivers/scsi/hpsa*.[ch]
8295 F:      include/linux/cciss*.h
8296 F:      include/uapi/linux/cciss*.h
8297
8298 HFI1 DRIVER
8299 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8300 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8301 L:      linux-rdma@vger.kernel.org
8302 S:      Supported
8303 F:      drivers/infiniband/hw/hfi1
8304
8305 HFS FILESYSTEM
8306 L:      linux-fsdevel@vger.kernel.org
8307 S:      Orphan
8308 F:      Documentation/filesystems/hfs.rst
8309 F:      fs/hfs/
8310
8311 HFSPLUS FILESYSTEM
8312 L:      linux-fsdevel@vger.kernel.org
8313 S:      Orphan
8314 F:      Documentation/filesystems/hfsplus.rst
8315 F:      fs/hfsplus/
8316
8317 HGA FRAMEBUFFER DRIVER
8318 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8319 L:      linux-nvidia@lists.surfsouth.com
8320 S:      Maintained
8321 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8322 F:      drivers/video/fbdev/hgafb.c
8323
8324 HIBERNATION (aka Software Suspend, aka swsusp)
8325 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8326 M:      Pavel Machek <pavel@ucw.cz>
8327 L:      linux-pm@vger.kernel.org
8328 S:      Supported
8329 B:      https://bugzilla.kernel.org
8330 F:      arch/*/include/asm/suspend*.h
8331 F:      arch/x86/power/
8332 F:      drivers/base/power/
8333 F:      include/linux/freezer.h
8334 F:      include/linux/pm.h
8335 F:      include/linux/suspend.h
8336 F:      kernel/power/
8337
8338 HID CORE LAYER
8339 M:      Jiri Kosina <jikos@kernel.org>
8340 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8341 L:      linux-input@vger.kernel.org
8342 S:      Maintained
8343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8344 F:      drivers/hid/
8345 F:      include/linux/hid*
8346 F:      include/uapi/linux/hid*
8347
8348 HID PLAYSTATION DRIVER
8349 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8350 L:      linux-input@vger.kernel.org
8351 S:      Supported
8352 F:      drivers/hid/hid-playstation.c
8353
8354 HID SENSOR HUB DRIVERS
8355 M:      Jiri Kosina <jikos@kernel.org>
8356 M:      Jonathan Cameron <jic23@kernel.org>
8357 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8358 L:      linux-input@vger.kernel.org
8359 L:      linux-iio@vger.kernel.org
8360 S:      Maintained
8361 F:      Documentation/hid/hid-sensor*
8362 F:      drivers/hid/hid-sensor-*
8363 F:      drivers/iio/*/hid-*
8364 F:      include/linux/hid-sensor-*
8365
8366 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8367 M:      Thomas Gleixner <tglx@linutronix.de>
8368 L:      linux-kernel@vger.kernel.org
8369 S:      Maintained
8370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8371 F:      Documentation/timers/
8372 F:      include/linux/clockchips.h
8373 F:      include/linux/hrtimer.h
8374 F:      kernel/time/clockevents.c
8375 F:      kernel/time/hrtimer.c
8376 F:      kernel/time/timer_*.c
8377
8378 HIGH-SPEED SCC DRIVER FOR AX.25
8379 L:      linux-hams@vger.kernel.org
8380 S:      Orphan
8381 F:      drivers/net/hamradio/dmascc.c
8382 F:      drivers/net/hamradio/scc.c
8383
8384 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8385 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8386 S:      Supported
8387 W:      http://www.highpoint-tech.com
8388 F:      Documentation/scsi/hptiop.rst
8389 F:      drivers/scsi/hptiop.c
8390
8391 HIPPI
8392 M:      Jes Sorensen <jes@trained-monkey.org>
8393 L:      linux-hippi@sunsite.dk
8394 S:      Maintained
8395 F:      drivers/net/hippi/
8396 F:      include/linux/hippidevice.h
8397 F:      include/uapi/linux/if_hippi.h
8398 F:      net/802/hippi.c
8399
8400 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8401 M:      Kurt Kanzenbach <kurt@linutronix.de>
8402 L:      netdev@vger.kernel.org
8403 S:      Maintained
8404 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8405 F:      drivers/net/dsa/hirschmann/*
8406 F:      include/linux/platform_data/hirschmann-hellcreek.h
8407 F:      net/dsa/tag_hellcreek.c
8408
8409 HISILICON DMA DRIVER
8410 M:      Zhou Wang <wangzhou1@hisilicon.com>
8411 L:      dmaengine@vger.kernel.org
8412 S:      Maintained
8413 F:      drivers/dma/hisi_dma.c
8414
8415 HISILICON GPIO DRIVER
8416 M:      Luo Jiaxing <luojiaxing@huawei.com>
8417 L:      linux-gpio@vger.kernel.org
8418 S:      Maintained
8419 F:      drivers/gpio/gpio-hisi.c
8420
8421 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8422 M:      Zaibo Xu <xuzaibo@huawei.com>
8423 L:      linux-crypto@vger.kernel.org
8424 S:      Maintained
8425 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8426 F:      drivers/crypto/hisilicon/hpre/hpre.h
8427 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8428 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8429
8430 HISILICON I2C CONTROLLER DRIVER
8431 M:      Yicong Yang <yangyicong@hisilicon.com>
8432 L:      linux-i2c@vger.kernel.org
8433 S:      Maintained
8434 W:      https://www.hisilicon.com
8435 F:      drivers/i2c/busses/i2c-hisi.c
8436
8437 HISILICON LPC BUS DRIVER
8438 M:      john.garry@huawei.com
8439 S:      Maintained
8440 W:      http://www.hisilicon.com
8441 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8442 F:      drivers/bus/hisi_lpc.c
8443
8444 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8445 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8446 M:      Salil Mehta <salil.mehta@huawei.com>
8447 L:      netdev@vger.kernel.org
8448 S:      Maintained
8449 W:      http://www.hisilicon.com
8450 F:      drivers/net/ethernet/hisilicon/hns3/
8451
8452 HISILICON NETWORK SUBSYSTEM DRIVER
8453 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8454 M:      Salil Mehta <salil.mehta@huawei.com>
8455 L:      netdev@vger.kernel.org
8456 S:      Maintained
8457 W:      http://www.hisilicon.com
8458 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8459 F:      drivers/net/ethernet/hisilicon/
8460
8461 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8462 M:      John Stultz <john.stultz@linaro.org>
8463 L:      linux-kernel@vger.kernel.org
8464 S:      Maintained
8465 F:      drivers/misc/hisi_hikey_usb.c
8466 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8467
8468 HISILICON PMU DRIVER
8469 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8470 S:      Supported
8471 W:      http://www.hisilicon.com
8472 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8473 F:      drivers/perf/hisilicon
8474
8475 HISILICON QM AND ZIP Controller DRIVER
8476 M:      Zhou Wang <wangzhou1@hisilicon.com>
8477 L:      linux-crypto@vger.kernel.org
8478 S:      Maintained
8479 F:      Documentation/ABI/testing/debugfs-hisi-zip
8480 F:      drivers/crypto/hisilicon/qm.c
8481 F:      drivers/crypto/hisilicon/qm.h
8482 F:      drivers/crypto/hisilicon/sgl.c
8483 F:      drivers/crypto/hisilicon/zip/
8484
8485 HISILICON ROCE DRIVER
8486 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8487 M:      Weihang Li <liweihang@huawei.com>
8488 L:      linux-rdma@vger.kernel.org
8489 S:      Maintained
8490 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8491 F:      drivers/infiniband/hw/hns/
8492
8493 HISILICON SAS Controller
8494 M:      John Garry <john.garry@huawei.com>
8495 S:      Supported
8496 W:      http://www.hisilicon.com
8497 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8498 F:      drivers/scsi/hisi_sas/
8499
8500 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8501 M:      Zaibo Xu <xuzaibo@huawei.com>
8502 L:      linux-crypto@vger.kernel.org
8503 S:      Maintained
8504 F:      Documentation/ABI/testing/debugfs-hisi-sec
8505 F:      drivers/crypto/hisilicon/sec2/sec.h
8506 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8507 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8508 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8509
8510 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8511 M:      Jay Fang <f.fangjian@huawei.com>
8512 L:      linux-spi@vger.kernel.org
8513 S:      Maintained
8514 W:      http://www.hisilicon.com
8515 F:      drivers/spi/spi-hisi-kunpeng.c
8516
8517 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8518 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8519 L:      linux-kernel@vger.kernel.org
8520 S:      Maintained
8521 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8522 F:      drivers/spmi/hisi-spmi-controller.c
8523
8524 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8525 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8526 L:      linux-kernel@vger.kernel.org
8527 S:      Maintained
8528 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8529 F:      drivers/mfd/hi6421-spmi-pmic.c
8530
8531 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8532 M:      Zaibo Xu <xuzaibo@huawei.com>
8533 S:      Maintained
8534 F:      drivers/crypto/hisilicon/trng/trng.c
8535
8536 HISILICON V3XX SPI NOR FLASH Controller Driver
8537 M:      John Garry <john.garry@huawei.com>
8538 S:      Maintained
8539 W:      http://www.hisilicon.com
8540 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8541
8542 HMM - Heterogeneous Memory Management
8543 M:      Jérôme Glisse <jglisse@redhat.com>
8544 L:      linux-mm@kvack.org
8545 S:      Maintained
8546 F:      Documentation/vm/hmm.rst
8547 F:      include/linux/hmm*
8548 F:      lib/test_hmm*
8549 F:      mm/hmm*
8550 F:      tools/testing/selftests/vm/*hmm*
8551
8552 HOST AP DRIVER
8553 M:      Jouni Malinen <j@w1.fi>
8554 L:      linux-wireless@vger.kernel.org
8555 S:      Obsolete
8556 W:      http://w1.fi/hostap-driver.html
8557 F:      drivers/net/wireless/intersil/hostap/
8558
8559 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8560 L:      platform-driver-x86@vger.kernel.org
8561 S:      Orphan
8562 F:      drivers/platform/x86/tc1100-wmi.c
8563
8564 HPET:   High Precision Event Timers driver
8565 M:      Clemens Ladisch <clemens@ladisch.de>
8566 S:      Maintained
8567 F:      Documentation/timers/hpet.rst
8568 F:      drivers/char/hpet.c
8569 F:      include/linux/hpet.h
8570 F:      include/uapi/linux/hpet.h
8571
8572 HPET:   x86
8573 S:      Orphan
8574 F:      arch/x86/include/asm/hpet.h
8575 F:      arch/x86/kernel/hpet.c
8576
8577 HPFS FILESYSTEM
8578 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8579 S:      Maintained
8580 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8581 F:      fs/hpfs/
8582
8583 HSI SUBSYSTEM
8584 M:      Sebastian Reichel <sre@kernel.org>
8585 S:      Maintained
8586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8587 F:      Documentation/ABI/testing/sysfs-bus-hsi
8588 F:      Documentation/driver-api/hsi.rst
8589 F:      drivers/hsi/
8590 F:      include/linux/hsi/
8591 F:      include/uapi/linux/hsi/
8592
8593 HSO 3G MODEM DRIVER
8594 L:      linux-usb@vger.kernel.org
8595 S:      Orphan
8596 F:      drivers/net/usb/hso.c
8597
8598 HSR NETWORK PROTOCOL
8599 L:      netdev@vger.kernel.org
8600 S:      Orphan
8601 F:      net/hsr/
8602
8603 HT16K33 LED CONTROLLER DRIVER
8604 M:      Robin van der Gracht <robin@protonic.nl>
8605 S:      Maintained
8606 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8607 F:      drivers/auxdisplay/ht16k33.c
8608
8609 HTCPEN TOUCHSCREEN DRIVER
8610 M:      Pau Oliva Fora <pof@eslack.org>
8611 L:      linux-input@vger.kernel.org
8612 S:      Maintained
8613 F:      drivers/input/touchscreen/htcpen.c
8614
8615 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8616 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8617 L:      linux-iio@vger.kernel.org
8618 S:      Maintained
8619 W:      http://www.st.com/
8620 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8621 F:      drivers/iio/humidity/hts221*
8622
8623 HUAWEI ETHERNET DRIVER
8624 L:      netdev@vger.kernel.org
8625 S:      Orphan
8626 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8627 F:      drivers/net/ethernet/huawei/hinic/
8628
8629 HUGETLB FILESYSTEM
8630 M:      Mike Kravetz <mike.kravetz@oracle.com>
8631 L:      linux-mm@kvack.org
8632 S:      Maintained
8633 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8634 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8635 F:      Documentation/vm/hugetlbfs_reserv.rst
8636 F:      fs/hugetlbfs/
8637 F:      include/linux/hugetlb.h
8638 F:      mm/hugetlb.c
8639
8640 HVA ST MEDIA DRIVER
8641 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8642 L:      linux-media@vger.kernel.org
8643 S:      Supported
8644 W:      https://linuxtv.org
8645 T:      git git://linuxtv.org/media_tree.git
8646 F:      drivers/media/platform/sti/hva
8647
8648 HWPOISON MEMORY FAILURE HANDLING
8649 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8650 L:      linux-mm@kvack.org
8651 S:      Maintained
8652 F:      mm/hwpoison-inject.c
8653 F:      mm/memory-failure.c
8654
8655 HYCON HY46XX TOUCHSCREEN SUPPORT
8656 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8657 L:      linux-input@vger.kernel.org
8658 S:      Maintained
8659 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8660 F:      drivers/input/touchscreen/hycon-hy46xx.c
8661
8662 HYGON PROCESSOR SUPPORT
8663 M:      Pu Wen <puwen@hygon.cn>
8664 L:      linux-kernel@vger.kernel.org
8665 S:      Maintained
8666 F:      arch/x86/kernel/cpu/hygon.c
8667
8668 HYNIX HI556 SENSOR DRIVER
8669 M:      Shawn Tu <shawnx.tu@intel.com>
8670 L:      linux-media@vger.kernel.org
8671 S:      Maintained
8672 T:      git git://linuxtv.org/media_tree.git
8673 F:      drivers/media/i2c/hi556.c
8674
8675 Hyper-V/Azure CORE AND DRIVERS
8676 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8677 M:      Haiyang Zhang <haiyangz@microsoft.com>
8678 M:      Stephen Hemminger <sthemmin@microsoft.com>
8679 M:      Wei Liu <wei.liu@kernel.org>
8680 M:      Dexuan Cui <decui@microsoft.com>
8681 L:      linux-hyperv@vger.kernel.org
8682 S:      Supported
8683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8684 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8685 F:      Documentation/ABI/testing/debugfs-hyperv
8686 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8687 F:      arch/arm64/hyperv
8688 F:      arch/arm64/include/asm/hyperv-tlfs.h
8689 F:      arch/arm64/include/asm/mshyperv.h
8690 F:      arch/x86/hyperv
8691 F:      arch/x86/include/asm/hyperv-tlfs.h
8692 F:      arch/x86/include/asm/mshyperv.h
8693 F:      arch/x86/include/asm/trace/hyperv.h
8694 F:      arch/x86/kernel/cpu/mshyperv.c
8695 F:      drivers/clocksource/hyperv_timer.c
8696 F:      drivers/hid/hid-hyperv.c
8697 F:      drivers/hv/
8698 F:      drivers/input/serio/hyperv-keyboard.c
8699 F:      drivers/iommu/hyperv-iommu.c
8700 F:      drivers/net/ethernet/microsoft/
8701 F:      drivers/net/hyperv/
8702 F:      drivers/pci/controller/pci-hyperv-intf.c
8703 F:      drivers/pci/controller/pci-hyperv.c
8704 F:      drivers/scsi/storvsc_drv.c
8705 F:      drivers/uio/uio_hv_generic.c
8706 F:      drivers/video/fbdev/hyperv_fb.c
8707 F:      include/asm-generic/hyperv-tlfs.h
8708 F:      include/asm-generic/mshyperv.h
8709 F:      include/clocksource/hyperv_timer.h
8710 F:      include/linux/hyperv.h
8711 F:      include/uapi/linux/hyperv.h
8712 F:      net/vmw_vsock/hyperv_transport.c
8713 F:      tools/hv/
8714
8715 HYPERBUS SUPPORT
8716 M:      Vignesh Raghavendra <vigneshr@ti.com>
8717 L:      linux-mtd@lists.infradead.org
8718 S:      Supported
8719 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8720 C:      irc://irc.oftc.net/mtd
8721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8722 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8723 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8724 F:      drivers/mtd/hyperbus/
8725 F:      include/linux/mtd/hyperbus.h
8726
8727 HYPERVISOR VIRTUAL CONSOLE DRIVER
8728 L:      linuxppc-dev@lists.ozlabs.org
8729 S:      Odd Fixes
8730 F:      drivers/tty/hvc/
8731
8732 I2C ACPI SUPPORT
8733 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8734 L:      linux-i2c@vger.kernel.org
8735 L:      linux-acpi@vger.kernel.org
8736 S:      Maintained
8737 F:      drivers/i2c/i2c-core-acpi.c
8738
8739 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8740 M:      Ajay Gupta <ajayg@nvidia.com>
8741 L:      linux-i2c@vger.kernel.org
8742 S:      Maintained
8743 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8744 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8745
8746 I2C MUXES
8747 M:      Peter Rosin <peda@axentia.se>
8748 L:      linux-i2c@vger.kernel.org
8749 S:      Maintained
8750 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8751 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8752 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8753 F:      Documentation/i2c/i2c-topology.rst
8754 F:      Documentation/i2c/muxes/
8755 F:      drivers/i2c/i2c-mux.c
8756 F:      drivers/i2c/muxes/
8757 F:      include/linux/i2c-mux.h
8758
8759 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8760 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8761 L:      linux-i2c@vger.kernel.org
8762 S:      Maintained
8763 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8764 F:      drivers/i2c/busses/i2c-mv64xxx.c
8765
8766 I2C OVER PARALLEL PORT
8767 M:      Jean Delvare <jdelvare@suse.com>
8768 L:      linux-i2c@vger.kernel.org
8769 S:      Maintained
8770 F:      Documentation/i2c/busses/i2c-parport.rst
8771 F:      drivers/i2c/busses/i2c-parport.c
8772
8773 I2C SUBSYSTEM
8774 M:      Wolfram Sang <wsa@kernel.org>
8775 L:      linux-i2c@vger.kernel.org
8776 S:      Maintained
8777 W:      https://i2c.wiki.kernel.org/
8778 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8780 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8781 F:      Documentation/i2c/
8782 F:      drivers/i2c/*
8783 F:      include/linux/i2c-dev.h
8784 F:      include/linux/i2c-smbus.h
8785 F:      include/linux/i2c.h
8786 F:      include/uapi/linux/i2c-*.h
8787 F:      include/uapi/linux/i2c.h
8788
8789 I2C SUBSYSTEM HOST DRIVERS
8790 L:      linux-i2c@vger.kernel.org
8791 S:      Odd Fixes
8792 W:      https://i2c.wiki.kernel.org/
8793 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8795 F:      Documentation/devicetree/bindings/i2c/
8796 F:      drivers/i2c/algos/
8797 F:      drivers/i2c/busses/
8798
8799 I2C-TAOS-EVM DRIVER
8800 M:      Jean Delvare <jdelvare@suse.com>
8801 L:      linux-i2c@vger.kernel.org
8802 S:      Maintained
8803 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8804 F:      drivers/i2c/busses/i2c-taos-evm.c
8805
8806 I2C-TINY-USB DRIVER
8807 M:      Till Harbaum <till@harbaum.org>
8808 L:      linux-i2c@vger.kernel.org
8809 S:      Maintained
8810 W:      http://www.harbaum.org/till/i2c_tiny_usb
8811 F:      drivers/i2c/busses/i2c-tiny-usb.c
8812
8813 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8814 M:      Jean Delvare <jdelvare@suse.com>
8815 L:      linux-i2c@vger.kernel.org
8816 S:      Maintained
8817 F:      Documentation/i2c/busses/i2c-ali1535.rst
8818 F:      Documentation/i2c/busses/i2c-ali1563.rst
8819 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8820 F:      Documentation/i2c/busses/i2c-amd756.rst
8821 F:      Documentation/i2c/busses/i2c-amd8111.rst
8822 F:      Documentation/i2c/busses/i2c-i801.rst
8823 F:      Documentation/i2c/busses/i2c-nforce2.rst
8824 F:      Documentation/i2c/busses/i2c-piix4.rst
8825 F:      Documentation/i2c/busses/i2c-sis5595.rst
8826 F:      Documentation/i2c/busses/i2c-sis630.rst
8827 F:      Documentation/i2c/busses/i2c-sis96x.rst
8828 F:      Documentation/i2c/busses/i2c-via.rst
8829 F:      Documentation/i2c/busses/i2c-viapro.rst
8830 F:      drivers/i2c/busses/i2c-ali1535.c
8831 F:      drivers/i2c/busses/i2c-ali1563.c
8832 F:      drivers/i2c/busses/i2c-ali15x3.c
8833 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8834 F:      drivers/i2c/busses/i2c-amd756.c
8835 F:      drivers/i2c/busses/i2c-amd8111.c
8836 F:      drivers/i2c/busses/i2c-i801.c
8837 F:      drivers/i2c/busses/i2c-isch.c
8838 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8839 F:      drivers/i2c/busses/i2c-nforce2.c
8840 F:      drivers/i2c/busses/i2c-piix4.c
8841 F:      drivers/i2c/busses/i2c-sis5595.c
8842 F:      drivers/i2c/busses/i2c-sis630.c
8843 F:      drivers/i2c/busses/i2c-sis96x.c
8844 F:      drivers/i2c/busses/i2c-via.c
8845 F:      drivers/i2c/busses/i2c-viapro.c
8846
8847 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8848 M:      Hans de Goede <hdegoede@redhat.com>
8849 L:      linux-i2c@vger.kernel.org
8850 S:      Maintained
8851 F:      drivers/i2c/busses/i2c-cht-wc.c
8852
8853 I2C/SMBUS ISMT DRIVER
8854 M:      Seth Heasley <seth.heasley@intel.com>
8855 M:      Neil Horman <nhorman@tuxdriver.com>
8856 L:      linux-i2c@vger.kernel.org
8857 F:      Documentation/i2c/busses/i2c-ismt.rst
8858 F:      drivers/i2c/busses/i2c-ismt.c
8859
8860 I2C/SMBUS STUB DRIVER
8861 M:      Jean Delvare <jdelvare@suse.com>
8862 L:      linux-i2c@vger.kernel.org
8863 S:      Maintained
8864 F:      drivers/i2c/i2c-stub.c
8865
8866 I3C DRIVER FOR CADENCE I3C MASTER IP
8867 M:      Przemysław Gaj <pgaj@cadence.com>
8868 S:      Maintained
8869 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8870 F:      drivers/i3c/master/i3c-master-cdns.c
8871
8872 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8873 M:      Vitor Soares <vitor.soares@synopsys.com>
8874 S:      Maintained
8875 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8876 F:      drivers/i3c/master/dw*
8877
8878 I3C SUBSYSTEM
8879 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8880 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8881 S:      Maintained
8882 C:      irc://chat.freenode.net/linux-i3c
8883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8884 F:      Documentation/ABI/testing/sysfs-bus-i3c
8885 F:      Documentation/devicetree/bindings/i3c/
8886 F:      Documentation/driver-api/i3c
8887 F:      drivers/i3c/
8888 F:      include/linux/i3c/
8889
8890 IA64 (Itanium) PLATFORM
8891 L:      linux-ia64@vger.kernel.org
8892 S:      Orphan
8893 F:      Documentation/ia64/
8894 F:      arch/ia64/
8895
8896 IBM Power 842 compression accelerator
8897 M:      Haren Myneni <haren@us.ibm.com>
8898 S:      Supported
8899 F:      crypto/842.c
8900 F:      drivers/crypto/nx/Kconfig
8901 F:      drivers/crypto/nx/Makefile
8902 F:      drivers/crypto/nx/nx-842*
8903 F:      include/linux/sw842.h
8904 F:      lib/842/
8905
8906 IBM Power in-Nest Crypto Acceleration
8907 M:      Breno Leitão <leitao@debian.org>
8908 M:      Nayna Jain <nayna@linux.ibm.com>
8909 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8910 L:      linux-crypto@vger.kernel.org
8911 S:      Supported
8912 F:      drivers/crypto/nx/Kconfig
8913 F:      drivers/crypto/nx/Makefile
8914 F:      drivers/crypto/nx/nx-aes*
8915 F:      drivers/crypto/nx/nx-sha*
8916 F:      drivers/crypto/nx/nx.*
8917 F:      drivers/crypto/nx/nx_csbcpb.h
8918 F:      drivers/crypto/nx/nx_debugfs.c
8919
8920 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8921 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8922 L:      linux-pci@vger.kernel.org
8923 L:      linuxppc-dev@lists.ozlabs.org
8924 S:      Supported
8925 F:      drivers/pci/hotplug/rpadlpar*
8926
8927 IBM Power Linux RAID adapter
8928 M:      Brian King <brking@us.ibm.com>
8929 S:      Supported
8930 F:      drivers/scsi/ipr.*
8931
8932 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8933 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8934 L:      linux-pci@vger.kernel.org
8935 L:      linuxppc-dev@lists.ozlabs.org
8936 S:      Supported
8937 F:      drivers/pci/hotplug/rpaphp*
8938
8939 IBM Power SRIOV Virtual NIC Device Driver
8940 M:      Dany Madden <drt@linux.ibm.com>
8941 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8942 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8943 L:      netdev@vger.kernel.org
8944 S:      Supported
8945 F:      drivers/net/ethernet/ibm/ibmvnic.*
8946
8947 IBM Power Virtual Accelerator Switchboard
8948 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8949 L:      linuxppc-dev@lists.ozlabs.org
8950 S:      Supported
8951 F:      arch/powerpc/include/asm/vas.h
8952 F:      arch/powerpc/platforms/powernv/copy-paste.h
8953 F:      arch/powerpc/platforms/powernv/vas*
8954
8955 IBM Power Virtual Ethernet Device Driver
8956 M:      Cristobal Forno <cforno12@linux.ibm.com>
8957 L:      netdev@vger.kernel.org
8958 S:      Supported
8959 F:      drivers/net/ethernet/ibm/ibmveth.*
8960
8961 IBM Power Virtual FC Device Drivers
8962 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8963 L:      linux-scsi@vger.kernel.org
8964 S:      Supported
8965 F:      drivers/scsi/ibmvscsi/ibmvfc*
8966
8967 IBM Power Virtual Management Channel Driver
8968 M:      Brad Warrum <bwarrum@linux.ibm.com>
8969 M:      Ritu Agarwal <rituagar@linux.ibm.com>
8970 S:      Supported
8971 F:      drivers/misc/ibmvmc.*
8972
8973 IBM Power Virtual SCSI Device Drivers
8974 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8975 L:      linux-scsi@vger.kernel.org
8976 S:      Supported
8977 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8978 F:      include/scsi/viosrp.h
8979
8980 IBM Power Virtual SCSI Device Target Driver
8981 M:      Michael Cyr <mikecyr@linux.ibm.com>
8982 L:      linux-scsi@vger.kernel.org
8983 L:      target-devel@vger.kernel.org
8984 S:      Supported
8985 F:      drivers/scsi/ibmvscsi_tgt/
8986
8987 IBM Power VMX Cryptographic instructions
8988 M:      Breno Leitão <leitao@debian.org>
8989 M:      Nayna Jain <nayna@linux.ibm.com>
8990 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8991 L:      linux-crypto@vger.kernel.org
8992 S:      Supported
8993 F:      drivers/crypto/vmx/Kconfig
8994 F:      drivers/crypto/vmx/Makefile
8995 F:      drivers/crypto/vmx/aes*
8996 F:      drivers/crypto/vmx/ghash*
8997 F:      drivers/crypto/vmx/ppc-xlate.pl
8998 F:      drivers/crypto/vmx/vmx.c
8999
9000 IBM ServeRAID RAID DRIVER
9001 S:      Orphan
9002 F:      drivers/scsi/ips.*
9003
9004 ICH LPC AND GPIO DRIVER
9005 M:      Peter Tyser <ptyser@xes-inc.com>
9006 S:      Maintained
9007 F:      drivers/gpio/gpio-ich.c
9008 F:      drivers/mfd/lpc_ich.c
9009
9010 ICY I2C DRIVER
9011 M:      Max Staudt <max@enpas.org>
9012 L:      linux-i2c@vger.kernel.org
9013 S:      Maintained
9014 F:      drivers/i2c/busses/i2c-icy.c
9015
9016 IDEAPAD LAPTOP EXTRAS DRIVER
9017 M:      Ike Panhc <ike.pan@canonical.com>
9018 L:      platform-driver-x86@vger.kernel.org
9019 S:      Maintained
9020 W:      http://launchpad.net/ideapad-laptop
9021 F:      drivers/platform/x86/ideapad-laptop.c
9022
9023 IDEAPAD LAPTOP SLIDEBAR DRIVER
9024 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9025 L:      linux-input@vger.kernel.org
9026 S:      Maintained
9027 W:      https://github.com/o2genum/ideapad-slidebar
9028 F:      drivers/input/misc/ideapad_slidebar.c
9029
9030 IDT VersaClock 5 CLOCK DRIVER
9031 M:      Luca Ceresoli <luca@lucaceresoli.net>
9032 S:      Maintained
9033 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9034 F:      drivers/clk/clk-versaclock5.c
9035
9036 IEEE 802.15.4 SUBSYSTEM
9037 M:      Alexander Aring <alex.aring@gmail.com>
9038 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9039 L:      linux-wpan@vger.kernel.org
9040 S:      Maintained
9041 W:      https://linux-wpan.org/
9042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9044 F:      Documentation/networking/ieee802154.rst
9045 F:      drivers/net/ieee802154/
9046 F:      include/linux/ieee802154.h
9047 F:      include/linux/nl802154.h
9048 F:      include/net/af_ieee802154.h
9049 F:      include/net/cfg802154.h
9050 F:      include/net/ieee802154_netdev.h
9051 F:      include/net/mac802154.h
9052 F:      include/net/nl802154.h
9053 F:      net/ieee802154/
9054 F:      net/mac802154/
9055
9056 IFE PROTOCOL
9057 M:      Yotam Gigi <yotam.gi@gmail.com>
9058 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9059 F:      include/net/ife.h
9060 F:      include/uapi/linux/ife.h
9061 F:      net/ife
9062
9063 IGORPLUG-USB IR RECEIVER
9064 M:      Sean Young <sean@mess.org>
9065 L:      linux-media@vger.kernel.org
9066 S:      Maintained
9067 F:      drivers/media/rc/igorplugusb.c
9068
9069 IGUANAWORKS USB IR TRANSCEIVER
9070 M:      Sean Young <sean@mess.org>
9071 L:      linux-media@vger.kernel.org
9072 S:      Maintained
9073 F:      drivers/media/rc/iguanair.c
9074
9075 IIO DIGITAL POTENTIOMETER DAC
9076 M:      Peter Rosin <peda@axentia.se>
9077 L:      linux-iio@vger.kernel.org
9078 S:      Maintained
9079 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9080 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9081 F:      drivers/iio/dac/dpot-dac.c
9082
9083 IIO ENVELOPE DETECTOR
9084 M:      Peter Rosin <peda@axentia.se>
9085 L:      linux-iio@vger.kernel.org
9086 S:      Maintained
9087 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9088 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9089 F:      drivers/iio/adc/envelope-detector.c
9090
9091 IIO MULTIPLEXER
9092 M:      Peter Rosin <peda@axentia.se>
9093 L:      linux-iio@vger.kernel.org
9094 S:      Maintained
9095 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9096 F:      drivers/iio/multiplexer/iio-mux.c
9097
9098 IIO SCMI BASED DRIVER
9099 M:      Jyoti Bhayana <jbhayana@google.com>
9100 L:      linux-iio@vger.kernel.org
9101 S:      Maintained
9102 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9103
9104 IIO SUBSYSTEM AND DRIVERS
9105 M:      Jonathan Cameron <jic23@kernel.org>
9106 R:      Lars-Peter Clausen <lars@metafoo.de>
9107 L:      linux-iio@vger.kernel.org
9108 S:      Maintained
9109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9110 F:      Documentation/ABI/testing/configfs-iio*
9111 F:      Documentation/ABI/testing/sysfs-bus-iio*
9112 F:      Documentation/devicetree/bindings/iio/
9113 F:      drivers/iio/
9114 F:      drivers/staging/iio/
9115 F:      include/linux/iio/
9116 F:      tools/iio/
9117
9118 IIO UNIT CONVERTER
9119 M:      Peter Rosin <peda@axentia.se>
9120 L:      linux-iio@vger.kernel.org
9121 S:      Maintained
9122 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9123 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9124 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9125 F:      drivers/iio/afe/iio-rescale.c
9126
9127 IKANOS/ADI EAGLE ADSL USB DRIVER
9128 M:      Matthieu Castet <castet.matthieu@free.fr>
9129 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9130 S:      Maintained
9131 F:      drivers/usb/atm/ueagle-atm.c
9132
9133 IMGTEC ASCII LCD DRIVER
9134 M:      Paul Burton <paulburton@kernel.org>
9135 S:      Maintained
9136 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9137 F:      drivers/auxdisplay/img-ascii-lcd.c
9138
9139 IMGTEC IR DECODER DRIVER
9140 S:      Orphan
9141 F:      drivers/media/rc/img-ir/
9142
9143 IMON SOUNDGRAPH USB IR RECEIVER
9144 M:      Sean Young <sean@mess.org>
9145 L:      linux-media@vger.kernel.org
9146 S:      Maintained
9147 F:      drivers/media/rc/imon.c
9148 F:      drivers/media/rc/imon_raw.c
9149
9150 IMS TWINTURBO FRAMEBUFFER DRIVER
9151 L:      linux-fbdev@vger.kernel.org
9152 S:      Orphan
9153 F:      drivers/video/fbdev/imsttfb.c
9154
9155 INA209 HARDWARE MONITOR DRIVER
9156 M:      Guenter Roeck <linux@roeck-us.net>
9157 L:      linux-hwmon@vger.kernel.org
9158 S:      Maintained
9159 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9160 F:      Documentation/hwmon/ina209.rst
9161 F:      drivers/hwmon/ina209.c
9162
9163 INA2XX HARDWARE MONITOR DRIVER
9164 M:      Guenter Roeck <linux@roeck-us.net>
9165 L:      linux-hwmon@vger.kernel.org
9166 S:      Maintained
9167 F:      Documentation/hwmon/ina2xx.rst
9168 F:      drivers/hwmon/ina2xx.c
9169 F:      include/linux/platform_data/ina2xx.h
9170
9171 INDUSTRY PACK SUBSYSTEM (IPACK)
9172 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9173 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9174 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9175 L:      industrypack-devel@lists.sourceforge.net
9176 S:      Maintained
9177 W:      http://industrypack.sourceforge.net
9178 F:      drivers/ipack/
9179
9180 INFINEON DPS310 Driver
9181 M:      Eddie James <eajames@linux.ibm.com>
9182 L:      linux-iio@vger.kernel.org
9183 S:      Maintained
9184 F:      drivers/iio/pressure/dps310.c
9185
9186 INFINIBAND SUBSYSTEM
9187 M:      Doug Ledford <dledford@redhat.com>
9188 M:      Jason Gunthorpe <jgg@nvidia.com>
9189 L:      linux-rdma@vger.kernel.org
9190 S:      Supported
9191 W:      https://github.com/linux-rdma/rdma-core
9192 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9194 F:      Documentation/devicetree/bindings/infiniband/
9195 F:      Documentation/infiniband/
9196 F:      drivers/infiniband/
9197 F:      include/rdma/
9198 F:      include/trace/events/ib_mad.h
9199 F:      include/trace/events/ib_umad.h
9200 F:      include/uapi/linux/if_infiniband.h
9201 F:      include/uapi/rdma/
9202 F:      samples/bpf/ibumad_kern.c
9203 F:      samples/bpf/ibumad_user.c
9204
9205 INGENIC JZ4780 NAND DRIVER
9206 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9207 L:      linux-mtd@lists.infradead.org
9208 L:      linux-mips@vger.kernel.org
9209 S:      Maintained
9210 F:      drivers/mtd/nand/raw/ingenic/
9211
9212 INGENIC JZ47xx SoCs
9213 M:      Paul Cercueil <paul@crapouillou.net>
9214 L:      linux-mips@vger.kernel.org
9215 S:      Maintained
9216 F:      arch/mips/boot/dts/ingenic/
9217 F:      arch/mips/generic/board-ingenic.c
9218 F:      arch/mips/include/asm/mach-ingenic/
9219 F:      arch/mips/ingenic/Kconfig
9220 F:      drivers/clk/ingenic/
9221 F:      drivers/dma/dma-jz4780.c
9222 F:      drivers/gpu/drm/ingenic/
9223 F:      drivers/i2c/busses/i2c-jz4780.c
9224 F:      drivers/iio/adc/ingenic-adc.c
9225 F:      drivers/irqchip/irq-ingenic.c
9226 F:      drivers/memory/jz4780-nemc.c
9227 F:      drivers/mmc/host/jz4740_mmc.c
9228 F:      drivers/mtd/nand/raw/ingenic/
9229 F:      drivers/pinctrl/pinctrl-ingenic.c
9230 F:      drivers/power/supply/ingenic-battery.c
9231 F:      drivers/pwm/pwm-jz4740.c
9232 F:      drivers/remoteproc/ingenic_rproc.c
9233 F:      drivers/rtc/rtc-jz4740.c
9234 F:      drivers/tty/serial/8250/8250_ingenic.c
9235 F:      drivers/usb/musb/jz4740.c
9236 F:      drivers/watchdog/jz4740_wdt.c
9237 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9238 F:      include/linux/mfd/ingenic-tcu.h
9239 F:      sound/soc/codecs/jz47*
9240 F:      sound/soc/jz4740/
9241
9242 INOTIFY
9243 M:      Jan Kara <jack@suse.cz>
9244 R:      Amir Goldstein <amir73il@gmail.com>
9245 L:      linux-fsdevel@vger.kernel.org
9246 S:      Maintained
9247 F:      Documentation/filesystems/inotify.rst
9248 F:      fs/notify/inotify/
9249 F:      include/linux/inotify.h
9250 F:      include/uapi/linux/inotify.h
9251
9252 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9253 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9254 L:      linux-input@vger.kernel.org
9255 S:      Maintained
9256 Q:      http://patchwork.kernel.org/project/linux-input/list/
9257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9258 F:      Documentation/devicetree/bindings/input/
9259 F:      Documentation/devicetree/bindings/serio/
9260 F:      Documentation/input/
9261 F:      drivers/input/
9262 F:      include/linux/input.h
9263 F:      include/linux/input/
9264 F:      include/uapi/linux/input-event-codes.h
9265 F:      include/uapi/linux/input.h
9266
9267 INPUT MULTITOUCH (MT) PROTOCOL
9268 M:      Henrik Rydberg <rydberg@bitmath.org>
9269 L:      linux-input@vger.kernel.org
9270 S:      Odd fixes
9271 F:      Documentation/input/multi-touch-protocol.rst
9272 F:      drivers/input/input-mt.c
9273 K:      \b(ABS|SYN)_MT_
9274
9275 INSIDE SECURE CRYPTO DRIVER
9276 M:      Antoine Tenart <atenart@kernel.org>
9277 L:      linux-crypto@vger.kernel.org
9278 S:      Maintained
9279 F:      drivers/crypto/inside-secure/
9280
9281 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9282 M:      Mimi Zohar <zohar@linux.ibm.com>
9283 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9284 L:      linux-integrity@vger.kernel.org
9285 S:      Supported
9286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9287 F:      security/integrity/ima/
9288
9289 INTEL 810/815 FRAMEBUFFER DRIVER
9290 M:      Antonino Daplas <adaplas@gmail.com>
9291 L:      linux-fbdev@vger.kernel.org
9292 S:      Maintained
9293 F:      drivers/video/fbdev/i810/
9294
9295 INTEL ASoC DRIVERS
9296 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9297 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9298 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9299 M:      Jie Yang <yang.jie@linux.intel.com>
9300 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9301 S:      Supported
9302 F:      sound/soc/intel/
9303
9304 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9305 M:      Hans de Goede <hdegoede@redhat.com>
9306 L:      platform-driver-x86@vger.kernel.org
9307 S:      Maintained
9308 F:      drivers/platform/x86/intel/atomisp2/pm.c
9309
9310 INTEL ATOMISP2 LED DRIVER
9311 M:      Hans de Goede <hdegoede@redhat.com>
9312 L:      platform-driver-x86@vger.kernel.org
9313 S:      Maintained
9314 F:      drivers/platform/x86/intel/atomisp2/led.c
9315
9316 INTEL BIOS SAR INT1092 DRIVER
9317 M:      Shravan Sudhakar <s.shravan@intel.com>
9318 M:      Intel Corporation <linuxwwan@intel.com>
9319 L:      platform-driver-x86@vger.kernel.org
9320 S:      Maintained
9321 F:      drivers/platform/x86/intel/int1092/
9322
9323 INTEL BROXTON PMC DRIVER
9324 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9325 M:      Zha Qipeng <qipeng.zha@intel.com>
9326 S:      Maintained
9327 F:      drivers/mfd/intel_pmc_bxt.c
9328 F:      include/linux/mfd/intel_pmc_bxt.h
9329
9330 INTEL C600 SERIES SAS CONTROLLER DRIVER
9331 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9332 L:      linux-scsi@vger.kernel.org
9333 S:      Supported
9334 T:      git git://git.code.sf.net/p/intel-sas/isci
9335 F:      drivers/scsi/isci/
9336
9337 INTEL CPU family model numbers
9338 M:      Tony Luck <tony.luck@intel.com>
9339 M:      x86@kernel.org
9340 L:      linux-kernel@vger.kernel.org
9341 S:      Supported
9342 F:      arch/x86/include/asm/intel-family.h
9343
9344 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9345 M:      Jani Nikula <jani.nikula@linux.intel.com>
9346 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9347 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9348 L:      intel-gfx@lists.freedesktop.org
9349 S:      Supported
9350 W:      https://01.org/linuxgraphics/
9351 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9352 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9353 C:      irc://irc.oftc.net/intel-gfx
9354 T:      git git://anongit.freedesktop.org/drm-intel
9355 F:      Documentation/gpu/i915.rst
9356 F:      drivers/gpu/drm/i915/
9357 F:      include/drm/i915*
9358 F:      include/uapi/drm/i915_drm.h
9359
9360 INTEL ETHERNET DRIVERS
9361 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9362 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9363 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9364 S:      Supported
9365 W:      http://www.intel.com/support/feedback.htm
9366 W:      http://e1000.sourceforge.net/
9367 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9370 F:      Documentation/networking/device_drivers/ethernet/intel/
9371 F:      drivers/net/ethernet/intel/
9372 F:      drivers/net/ethernet/intel/*/
9373 F:      include/linux/avf/virtchnl.h
9374 F:      include/linux/net/intel/iidc.h
9375
9376 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9377 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9378 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9379 L:      linux-rdma@vger.kernel.org
9380 S:      Supported
9381 F:      drivers/infiniband/hw/irdma/
9382 F:      include/uapi/rdma/irdma-abi.h
9383
9384 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9385 M:      Maik Broemme <mbroemme@libmpq.org>
9386 L:      linux-fbdev@vger.kernel.org
9387 S:      Maintained
9388 F:      Documentation/fb/intelfb.rst
9389 F:      drivers/video/fbdev/intelfb/
9390
9391 INTEL GPIO DRIVERS
9392 M:      Andy Shevchenko <andy@kernel.org>
9393 L:      linux-gpio@vger.kernel.org
9394 S:      Maintained
9395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9396 F:      drivers/gpio/gpio-ich.c
9397 F:      drivers/gpio/gpio-merrifield.c
9398 F:      drivers/gpio/gpio-ml-ioh.c
9399 F:      drivers/gpio/gpio-pch.c
9400 F:      drivers/gpio/gpio-sch.c
9401 F:      drivers/gpio/gpio-sodaville.c
9402
9403 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9404 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9405 M:      Zhi Wang <zhi.a.wang@intel.com>
9406 L:      intel-gvt-dev@lists.freedesktop.org
9407 L:      intel-gfx@lists.freedesktop.org
9408 S:      Supported
9409 W:      https://01.org/igvt-g
9410 T:      git https://github.com/intel/gvt-linux.git
9411 F:      drivers/gpu/drm/i915/gvt/
9412
9413 INTEL HID EVENT DRIVER
9414 M:      Alex Hung <alex.hung@canonical.com>
9415 L:      platform-driver-x86@vger.kernel.org
9416 S:      Maintained
9417 F:      drivers/platform/x86/intel/hid.c
9418
9419 INTEL I/OAT DMA DRIVER
9420 M:      Dave Jiang <dave.jiang@intel.com>
9421 R:      Dan Williams <dan.j.williams@intel.com>
9422 L:      dmaengine@vger.kernel.org
9423 S:      Supported
9424 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9425 F:      drivers/dma/ioat*
9426
9427 INTEL IADX DRIVER
9428 M:      Dave Jiang <dave.jiang@intel.com>
9429 L:      dmaengine@vger.kernel.org
9430 S:      Supported
9431 F:      drivers/dma/idxd/*
9432 F:      include/uapi/linux/idxd.h
9433
9434 INTEL IDLE DRIVER
9435 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9436 M:      Len Brown <lenb@kernel.org>
9437 L:      linux-pm@vger.kernel.org
9438 S:      Supported
9439 B:      https://bugzilla.kernel.org
9440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9441 F:      drivers/idle/intel_idle.c
9442
9443 INTEL INTEGRATED SENSOR HUB DRIVER
9444 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9445 M:      Jiri Kosina <jikos@kernel.org>
9446 L:      linux-input@vger.kernel.org
9447 S:      Maintained
9448 F:      drivers/hid/intel-ish-hid/
9449
9450 INTEL IOMMU (VT-d)
9451 M:      David Woodhouse <dwmw2@infradead.org>
9452 M:      Lu Baolu <baolu.lu@linux.intel.com>
9453 L:      iommu@lists.linux-foundation.org
9454 S:      Supported
9455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9456 F:      drivers/iommu/intel/
9457 F:      include/linux/intel-iommu.h
9458 F:      include/linux/intel-svm.h
9459
9460 INTEL IOP-ADMA DMA DRIVER
9461 R:      Dan Williams <dan.j.williams@intel.com>
9462 S:      Odd fixes
9463 F:      drivers/dma/iop-adma.c
9464
9465 INTEL IPU3 CSI-2 CIO2 DRIVER
9466 M:      Yong Zhi <yong.zhi@intel.com>
9467 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9468 M:      Bingbu Cao <bingbu.cao@intel.com>
9469 M:      Dan Scally <djrscally@gmail.com>
9470 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9471 L:      linux-media@vger.kernel.org
9472 S:      Maintained
9473 T:      git git://linuxtv.org/media_tree.git
9474 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9475 F:      drivers/media/pci/intel/ipu3/
9476
9477 INTEL IPU3 CSI-2 IMGU DRIVER
9478 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9479 R:      Bingbu Cao <bingbu.cao@intel.com>
9480 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9481 L:      linux-media@vger.kernel.org
9482 S:      Maintained
9483 F:      Documentation/admin-guide/media/ipu3.rst
9484 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9485 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9486 F:      drivers/staging/media/ipu3/
9487
9488 INTEL IXP4XX CRYPTO SUPPORT
9489 M:      Corentin Labbe <clabbe@baylibre.com>
9490 L:      linux-crypto@vger.kernel.org
9491 S:      Maintained
9492 F:      drivers/crypto/ixp4xx_crypto.c
9493
9494 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9495 M:      Krzysztof Halasa <khalasa@piap.pl>
9496 S:      Maintained
9497 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9498 F:      drivers/net/wan/ixp4xx_hss.c
9499 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9500 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9501 F:      include/linux/soc/ixp4xx/npe.h
9502 F:      include/linux/soc/ixp4xx/qmgr.h
9503
9504 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9505 M:      Deepak Saxena <dsaxena@plexity.net>
9506 S:      Maintained
9507 F:      Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9508 F:      drivers/char/hw_random/ixp4xx-rng.c
9509
9510 INTEL KEEM BAY DRM DRIVER
9511 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9512 M:      Edmund Dea <edmund.j.dea@intel.com>
9513 S:      Maintained
9514 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9515 F:      drivers/gpu/drm/kmb/
9516
9517 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9518 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9519 S:      Maintained
9520 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9521 F:      drivers/crypto/keembay/Kconfig
9522 F:      drivers/crypto/keembay/Makefile
9523 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9524 F:      drivers/crypto/keembay/ocs-aes.c
9525 F:      drivers/crypto/keembay/ocs-aes.h
9526
9527 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9528 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9529 M:      Declan Murphy <declan.murphy@intel.com>
9530 S:      Maintained
9531 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9532 F:      drivers/crypto/keembay/Kconfig
9533 F:      drivers/crypto/keembay/Makefile
9534 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9535 F:      drivers/crypto/keembay/ocs-hcu.c
9536 F:      drivers/crypto/keembay/ocs-hcu.h
9537
9538 INTEL MANAGEMENT ENGINE (mei)
9539 M:      Tomas Winkler <tomas.winkler@intel.com>
9540 L:      linux-kernel@vger.kernel.org
9541 S:      Supported
9542 F:      Documentation/driver-api/mei/*
9543 F:      drivers/misc/mei/
9544 F:      drivers/watchdog/mei_wdt.c
9545 F:      include/linux/mei_cl_bus.h
9546 F:      include/uapi/linux/mei.h
9547 F:      samples/mei/*
9548
9549 INTEL MAX 10 BMC MFD DRIVER
9550 M:      Xu Yilun <yilun.xu@intel.com>
9551 R:      Tom Rix <trix@redhat.com>
9552 S:      Maintained
9553 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9554 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9555 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9556 F:      drivers/mfd/intel-m10-bmc.c
9557 F:      include/linux/mfd/intel-m10-bmc.h
9558
9559 INTEL MENLOW THERMAL DRIVER
9560 M:      Sujith Thomas <sujith.thomas@intel.com>
9561 L:      linux-pm@vger.kernel.org
9562 S:      Supported
9563 W:      https://01.org/linux-acpi
9564 F:      drivers/thermal/intel/intel_menlow.c
9565
9566 INTEL P-Unit IPC DRIVER
9567 M:      Zha Qipeng <qipeng.zha@intel.com>
9568 L:      platform-driver-x86@vger.kernel.org
9569 S:      Maintained
9570 F:      arch/x86/include/asm/intel_punit_ipc.h
9571 F:      drivers/platform/x86/intel/punit_ipc.c
9572
9573 INTEL PMC CORE DRIVER
9574 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9575 M:      David E Box <david.e.box@intel.com>
9576 L:      platform-driver-x86@vger.kernel.org
9577 S:      Maintained
9578 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9579 F:      drivers/platform/x86/intel/pmc/
9580
9581 INTEL PMIC GPIO DRIVERS
9582 M:      Andy Shevchenko <andy@kernel.org>
9583 S:      Maintained
9584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9585 F:      drivers/gpio/gpio-*cove.c
9586
9587 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9588 M:      Andy Shevchenko <andy@kernel.org>
9589 S:      Maintained
9590 F:      drivers/mfd/intel_soc_pmic*
9591 F:      include/linux/mfd/intel_soc_pmic*
9592
9593 INTEL PMT DRIVER
9594 M:      "David E. Box" <david.e.box@linux.intel.com>
9595 S:      Maintained
9596 F:      drivers/mfd/intel_pmt.c
9597 F:      drivers/platform/x86/intel/pmt/
9598
9599 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9600 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9601 L:      linux-wireless@vger.kernel.org
9602 S:      Maintained
9603 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9604 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9605 F:      drivers/net/wireless/intel/ipw2x00/
9606
9607 INTEL PSTATE DRIVER
9608 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9609 M:      Len Brown <lenb@kernel.org>
9610 L:      linux-pm@vger.kernel.org
9611 S:      Supported
9612 F:      drivers/cpufreq/intel_pstate.c
9613
9614 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9615 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9616 L:      linux-iio@vger.kernel.org
9617 F:      drivers/counter/intel-qep.c
9618
9619 INTEL SCU DRIVERS
9620 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9621 S:      Maintained
9622 F:      arch/x86/include/asm/intel_scu_ipc.h
9623 F:      drivers/platform/x86/intel_scu_*
9624
9625 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9626 M:      Daniel Scally <djrscally@gmail.com>
9627 S:      Maintained
9628 F:      drivers/platform/x86/intel/int3472/
9629
9630 INTEL SPEED SELECT TECHNOLOGY
9631 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9632 L:      platform-driver-x86@vger.kernel.org
9633 S:      Maintained
9634 F:      drivers/platform/x86/intel/speed_select_if/
9635 F:      include/uapi/linux/isst_if.h
9636 F:      tools/power/x86/intel-speed-select/
9637
9638 INTEL STRATIX10 FIRMWARE DRIVERS
9639 M:      Dinh Nguyen <dinguyen@kernel.org>
9640 L:      linux-kernel@vger.kernel.org
9641 S:      Maintained
9642 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9643 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9644 F:      drivers/firmware/stratix10-rsu.c
9645 F:      drivers/firmware/stratix10-svc.c
9646 F:      include/linux/firmware/intel/stratix10-smc.h
9647 F:      include/linux/firmware/intel/stratix10-svc-client.h
9648
9649 INTEL TELEMETRY DRIVER
9650 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9651 M:      "David E. Box" <david.e.box@linux.intel.com>
9652 L:      platform-driver-x86@vger.kernel.org
9653 S:      Maintained
9654 F:      arch/x86/include/asm/intel_telemetry.h
9655 F:      drivers/platform/x86/intel/telemetry/
9656
9657 INTEL UNCORE FREQUENCY CONTROL
9658 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9659 L:      platform-driver-x86@vger.kernel.org
9660 S:      Maintained
9661 F:      drivers/platform/x86/intel/uncore-frequency.c
9662
9663 INTEL VIRTUAL BUTTON DRIVER
9664 M:      AceLan Kao <acelan.kao@canonical.com>
9665 L:      platform-driver-x86@vger.kernel.org
9666 S:      Maintained
9667 F:      drivers/platform/x86/intel/vbtn.c
9668
9669 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9670 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9671 L:      linux-wireless@vger.kernel.org
9672 S:      Supported
9673 F:      drivers/net/wireless/intel/iwlegacy/
9674
9675 INTEL WIRELESS WIFI LINK (iwlwifi)
9676 M:      Luca Coelho <luciano.coelho@intel.com>
9677 L:      linux-wireless@vger.kernel.org
9678 S:      Supported
9679 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9681 F:      drivers/net/wireless/intel/iwlwifi/
9682
9683 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9684 M:      Jithu Joseph <jithu.joseph@intel.com>
9685 R:      Maurice Ma <maurice.ma@intel.com>
9686 S:      Maintained
9687 W:      https://slimbootloader.github.io/security/firmware-update.html
9688 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9689
9690 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9691 L:      Dell.Client.Kernel@dell.com
9692 S:      Maintained
9693 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9694
9695 INTEL WWAN IOSM DRIVER
9696 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9697 M:      Intel Corporation <linuxwwan@intel.com>
9698 L:      netdev@vger.kernel.org
9699 S:      Maintained
9700 F:      drivers/net/wwan/iosm/
9701
9702 INTEL(R) TRACE HUB
9703 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9704 S:      Supported
9705 F:      Documentation/trace/intel_th.rst
9706 F:      drivers/hwtracing/intel_th/
9707 F:      include/linux/intel_th.h
9708
9709 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9710 M:      Ning Sun <ning.sun@intel.com>
9711 L:      tboot-devel@lists.sourceforge.net
9712 S:      Supported
9713 W:      http://tboot.sourceforge.net
9714 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9715 F:      Documentation/x86/intel_txt.rst
9716 F:      arch/x86/kernel/tboot.c
9717 F:      include/linux/tboot.h
9718
9719 INTEL SGX
9720 M:      Jarkko Sakkinen <jarkko@kernel.org>
9721 R:      Dave Hansen <dave.hansen@linux.intel.com>
9722 L:      linux-sgx@vger.kernel.org
9723 S:      Supported
9724 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9726 F:      Documentation/x86/sgx.rst
9727 F:      arch/x86/entry/vdso/vsgx.S
9728 F:      arch/x86/include/asm/sgx.h
9729 F:      arch/x86/include/uapi/asm/sgx.h
9730 F:      arch/x86/kernel/cpu/sgx/*
9731 F:      tools/testing/selftests/sgx/*
9732 K:      \bSGX_
9733
9734 INTERCONNECT API
9735 M:      Georgi Djakov <djakov@kernel.org>
9736 L:      linux-pm@vger.kernel.org
9737 S:      Maintained
9738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9739 F:      Documentation/devicetree/bindings/interconnect/
9740 F:      Documentation/driver-api/interconnect.rst
9741 F:      drivers/interconnect/
9742 F:      include/dt-bindings/interconnect/
9743 F:      include/linux/interconnect-provider.h
9744 F:      include/linux/interconnect.h
9745
9746 INTERRUPT COUNTER DRIVER
9747 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9748 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9749 L:      linux-iio@vger.kernel.org
9750 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9751 F:      drivers/counter/interrupt-cnt.c
9752
9753 INVENSENSE ICM-426xx IMU DRIVER
9754 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9755 L:      linux-iio@vger.kernel.org
9756 S:      Maintained
9757 W:      https://invensense.tdk.com/
9758 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9759 F:      drivers/iio/imu/inv_icm42600/
9760
9761 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9762 M:      Linus Walleij <linus.walleij@linaro.org>
9763 L:      linux-iio@vger.kernel.org
9764 S:      Maintained
9765 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9766 F:      drivers/iio/gyro/mpu3050*
9767
9768 IOC3 ETHERNET DRIVER
9769 M:      Ralf Baechle <ralf@linux-mips.org>
9770 L:      linux-mips@vger.kernel.org
9771 S:      Maintained
9772 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9773
9774 IOMAP FILESYSTEM LIBRARY
9775 M:      Christoph Hellwig <hch@infradead.org>
9776 M:      Darrick J. Wong <djwong@kernel.org>
9777 M:      linux-xfs@vger.kernel.org
9778 M:      linux-fsdevel@vger.kernel.org
9779 L:      linux-xfs@vger.kernel.org
9780 L:      linux-fsdevel@vger.kernel.org
9781 S:      Supported
9782 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9783 F:      fs/iomap/
9784 F:      include/linux/iomap.h
9785
9786 IOMMU DRIVERS
9787 M:      Joerg Roedel <joro@8bytes.org>
9788 M:      Will Deacon <will@kernel.org>
9789 L:      iommu@lists.linux-foundation.org
9790 S:      Maintained
9791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9792 F:      Documentation/devicetree/bindings/iommu/
9793 F:      Documentation/userspace-api/iommu.rst
9794 F:      drivers/iommu/
9795 F:      include/linux/iommu.h
9796 F:      include/linux/iova.h
9797 F:      include/linux/of_iommu.h
9798 F:      include/uapi/linux/iommu.h
9799
9800 IO_URING
9801 M:      Jens Axboe <axboe@kernel.dk>
9802 R:      Pavel Begunkov <asml.silence@gmail.com>
9803 L:      io-uring@vger.kernel.org
9804 S:      Maintained
9805 T:      git git://git.kernel.dk/linux-block
9806 T:      git git://git.kernel.dk/liburing
9807 F:      fs/io-wq.c
9808 F:      fs/io-wq.h
9809 F:      fs/io_uring.c
9810 F:      include/linux/io_uring.h
9811 F:      include/uapi/linux/io_uring.h
9812 F:      tools/io_uring/
9813
9814 IPMI SUBSYSTEM
9815 M:      Corey Minyard <minyard@acm.org>
9816 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9817 S:      Supported
9818 W:      http://openipmi.sourceforge.net/
9819 F:      Documentation/driver-api/ipmi.rst
9820 F:      Documentation/devicetree/bindings/ipmi/
9821 F:      drivers/char/ipmi/
9822 F:      include/linux/ipmi*
9823 F:      include/uapi/linux/ipmi*
9824
9825 IPS SCSI RAID DRIVER
9826 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9827 L:      linux-scsi@vger.kernel.org
9828 S:      Maintained
9829 W:      http://www.adaptec.com/
9830 F:      drivers/scsi/ips*
9831
9832 IPVS
9833 M:      Simon Horman <horms@verge.net.au>
9834 M:      Julian Anastasov <ja@ssi.bg>
9835 L:      netdev@vger.kernel.org
9836 L:      lvs-devel@vger.kernel.org
9837 S:      Maintained
9838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9840 F:      Documentation/networking/ipvs-sysctl.rst
9841 F:      include/net/ip_vs.h
9842 F:      include/uapi/linux/ip_vs.h
9843 F:      net/netfilter/ipvs/
9844
9845 IPWIRELESS DRIVER
9846 M:      Jiri Kosina <jikos@kernel.org>
9847 M:      David Sterba <dsterba@suse.com>
9848 S:      Odd Fixes
9849 F:      drivers/tty/ipwireless/
9850
9851 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9852 M:      Marc Zyngier <maz@kernel.org>
9853 S:      Maintained
9854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9855 F:      Documentation/core-api/irq/irq-domain.rst
9856 F:      include/linux/irqdomain.h
9857 F:      kernel/irq/irqdomain.c
9858 F:      kernel/irq/msi.c
9859
9860 IRQ SUBSYSTEM
9861 M:      Thomas Gleixner <tglx@linutronix.de>
9862 L:      linux-kernel@vger.kernel.org
9863 S:      Maintained
9864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9865 F:      kernel/irq/
9866
9867 IRQCHIP DRIVERS
9868 M:      Thomas Gleixner <tglx@linutronix.de>
9869 M:      Marc Zyngier <maz@kernel.org>
9870 L:      linux-kernel@vger.kernel.org
9871 S:      Maintained
9872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9873 F:      Documentation/devicetree/bindings/interrupt-controller/
9874 F:      drivers/irqchip/
9875
9876 ISA
9877 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9878 S:      Maintained
9879 F:      Documentation/driver-api/isa.rst
9880 F:      drivers/base/isa.c
9881 F:      include/linux/isa.h
9882
9883 ISA RADIO MODULE
9884 M:      Hans Verkuil <hverkuil@xs4all.nl>
9885 L:      linux-media@vger.kernel.org
9886 S:      Maintained
9887 W:      https://linuxtv.org
9888 T:      git git://linuxtv.org/media_tree.git
9889 F:      drivers/media/radio/radio-isa*
9890
9891 ISAPNP
9892 M:      Jaroslav Kysela <perex@perex.cz>
9893 S:      Maintained
9894 F:      Documentation/driver-api/isapnp.rst
9895 F:      drivers/pnp/isapnp/
9896 F:      include/linux/isapnp.h
9897
9898 ISCSI
9899 M:      Lee Duncan <lduncan@suse.com>
9900 M:      Chris Leech <cleech@redhat.com>
9901 L:      open-iscsi@googlegroups.com
9902 L:      linux-scsi@vger.kernel.org
9903 S:      Maintained
9904 W:      www.open-iscsi.com
9905 F:      drivers/scsi/*iscsi*
9906 F:      include/scsi/*iscsi*
9907
9908 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9909 M:      Peter Jones <pjones@redhat.com>
9910 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9911 S:      Maintained
9912 F:      drivers/firmware/iscsi_ibft*
9913
9914 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9915 M:      Sagi Grimberg <sagi@grimberg.me>
9916 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9917 L:      linux-rdma@vger.kernel.org
9918 S:      Supported
9919 W:      http://www.openfabrics.org
9920 W:      www.open-iscsi.org
9921 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9922 F:      drivers/infiniband/ulp/iser/
9923
9924 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9925 M:      Sagi Grimberg <sagi@grimberg.me>
9926 L:      linux-rdma@vger.kernel.org
9927 L:      target-devel@vger.kernel.org
9928 S:      Supported
9929 W:      http://www.linux-iscsi.org
9930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9931 F:      drivers/infiniband/ulp/isert
9932
9933 ISDN/CMTP OVER BLUETOOTH
9934 M:      Karsten Keil <isdn@linux-pingi.de>
9935 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9936 L:      netdev@vger.kernel.org
9937 S:      Odd Fixes
9938 W:      http://www.isdn4linux.de
9939 F:      Documentation/isdn/
9940 F:      drivers/isdn/capi/
9941 F:      include/linux/isdn/
9942 F:      include/uapi/linux/isdn/
9943 F:      net/bluetooth/cmtp/
9944
9945 ISDN/mISDN SUBSYSTEM
9946 M:      Karsten Keil <isdn@linux-pingi.de>
9947 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9948 L:      netdev@vger.kernel.org
9949 S:      Maintained
9950 W:      http://www.isdn4linux.de
9951 F:      drivers/isdn/Kconfig
9952 F:      drivers/isdn/Makefile
9953 F:      drivers/isdn/hardware/
9954 F:      drivers/isdn/mISDN/
9955
9956 IT87 HARDWARE MONITORING DRIVER
9957 M:      Jean Delvare <jdelvare@suse.com>
9958 L:      linux-hwmon@vger.kernel.org
9959 S:      Maintained
9960 F:      Documentation/hwmon/it87.rst
9961 F:      drivers/hwmon/it87.c
9962
9963 IT913X MEDIA DRIVER
9964 M:      Antti Palosaari <crope@iki.fi>
9965 L:      linux-media@vger.kernel.org
9966 S:      Maintained
9967 W:      https://linuxtv.org
9968 W:      http://palosaari.fi/linux/
9969 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9970 T:      git git://linuxtv.org/anttip/media_tree.git
9971 F:      drivers/media/tuners/it913x*
9972
9973 ITE IT66121 HDMI BRIDGE DRIVER
9974 M:      Phong LE <ple@baylibre.com>
9975 M:      Neil Armstrong <narmstrong@baylibre.com>
9976 S:      Maintained
9977 T:      git git://anongit.freedesktop.org/drm/drm-misc
9978 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
9979 F:      drivers/gpu/drm/bridge/ite-it66121.c
9980
9981 IVTV VIDEO4LINUX DRIVER
9982 M:      Andy Walls <awalls@md.metrocast.net>
9983 L:      linux-media@vger.kernel.org
9984 S:      Maintained
9985 W:      https://linuxtv.org
9986 T:      git git://linuxtv.org/media_tree.git
9987 F:      Documentation/admin-guide/media/ivtv*
9988 F:      drivers/media/pci/ivtv/
9989 F:      include/uapi/linux/ivtv*
9990
9991 IX2505V MEDIA DRIVER
9992 M:      Malcolm Priestley <tvboxspy@gmail.com>
9993 L:      linux-media@vger.kernel.org
9994 S:      Maintained
9995 W:      https://linuxtv.org
9996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9997 F:      drivers/media/dvb-frontends/ix2505v*
9998
9999 JAILHOUSE HYPERVISOR INTERFACE
10000 M:      Jan Kiszka <jan.kiszka@siemens.com>
10001 L:      jailhouse-dev@googlegroups.com
10002 S:      Maintained
10003 F:      arch/x86/include/asm/jailhouse_para.h
10004 F:      arch/x86/kernel/jailhouse.c
10005
10006 JC42.4 TEMPERATURE SENSOR DRIVER
10007 M:      Guenter Roeck <linux@roeck-us.net>
10008 L:      linux-hwmon@vger.kernel.org
10009 S:      Maintained
10010 F:      Documentation/hwmon/jc42.rst
10011 F:      drivers/hwmon/jc42.c
10012
10013 JFS FILESYSTEM
10014 M:      Dave Kleikamp <shaggy@kernel.org>
10015 L:      jfs-discussion@lists.sourceforge.net
10016 S:      Maintained
10017 W:      http://jfs.sourceforge.net/
10018 T:      git git://github.com/kleikamp/linux-shaggy.git
10019 F:      Documentation/admin-guide/jfs.rst
10020 F:      fs/jfs/
10021
10022 JME NETWORK DRIVER
10023 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10024 L:      netdev@vger.kernel.org
10025 S:      Maintained
10026 F:      drivers/net/ethernet/jme.*
10027
10028 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10029 M:      David Woodhouse <dwmw2@infradead.org>
10030 M:      Richard Weinberger <richard@nod.at>
10031 L:      linux-mtd@lists.infradead.org
10032 S:      Odd Fixes
10033 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10034 T:      git git://git.infradead.org/ubifs-2.6.git
10035 F:      fs/jffs2/
10036 F:      include/uapi/linux/jffs2.h
10037
10038 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10039 M:      "Theodore Ts'o" <tytso@mit.edu>
10040 M:      Jan Kara <jack@suse.com>
10041 L:      linux-ext4@vger.kernel.org
10042 S:      Maintained
10043 F:      fs/jbd2/
10044 F:      include/linux/jbd2.h
10045
10046 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10047 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10048 L:      linux-media@vger.kernel.org
10049 S:      Maintained
10050 F:      drivers/media/platform/rcar_jpu.c
10051
10052 JSM Neo PCI based serial card
10053 L:      linux-serial@vger.kernel.org
10054 S:      Orphan
10055 F:      drivers/tty/serial/jsm/
10056
10057 K10TEMP HARDWARE MONITORING DRIVER
10058 M:      Clemens Ladisch <clemens@ladisch.de>
10059 L:      linux-hwmon@vger.kernel.org
10060 S:      Maintained
10061 F:      Documentation/hwmon/k10temp.rst
10062 F:      drivers/hwmon/k10temp.c
10063
10064 K8TEMP HARDWARE MONITORING DRIVER
10065 M:      Rudolf Marek <r.marek@assembler.cz>
10066 L:      linux-hwmon@vger.kernel.org
10067 S:      Maintained
10068 F:      Documentation/hwmon/k8temp.rst
10069 F:      drivers/hwmon/k8temp.c
10070
10071 KASAN
10072 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10073 R:      Alexander Potapenko <glider@google.com>
10074 R:      Andrey Konovalov <andreyknvl@gmail.com>
10075 R:      Dmitry Vyukov <dvyukov@google.com>
10076 L:      kasan-dev@googlegroups.com
10077 S:      Maintained
10078 F:      Documentation/dev-tools/kasan.rst
10079 F:      arch/*/include/asm/*kasan.h
10080 F:      arch/*/mm/kasan_init*
10081 F:      include/linux/kasan*.h
10082 F:      lib/Kconfig.kasan
10083 F:      lib/test_kasan*.c
10084 F:      mm/kasan/
10085 F:      scripts/Makefile.kasan
10086
10087 KCONFIG
10088 M:      Masahiro Yamada <masahiroy@kernel.org>
10089 L:      linux-kbuild@vger.kernel.org
10090 S:      Maintained
10091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10092 F:      Documentation/kbuild/kconfig*
10093 F:      scripts/Kconfig.include
10094 F:      scripts/kconfig/
10095
10096 KCOV
10097 R:      Dmitry Vyukov <dvyukov@google.com>
10098 R:      Andrey Konovalov <andreyknvl@gmail.com>
10099 L:      kasan-dev@googlegroups.com
10100 S:      Maintained
10101 F:      Documentation/dev-tools/kcov.rst
10102 F:      include/linux/kcov.h
10103 F:      include/uapi/linux/kcov.h
10104 F:      kernel/kcov.c
10105 F:      scripts/Makefile.kcov
10106
10107 KCSAN
10108 M:      Marco Elver <elver@google.com>
10109 R:      Dmitry Vyukov <dvyukov@google.com>
10110 L:      kasan-dev@googlegroups.com
10111 S:      Maintained
10112 F:      Documentation/dev-tools/kcsan.rst
10113 F:      include/linux/kcsan*.h
10114 F:      kernel/kcsan/
10115 F:      lib/Kconfig.kcsan
10116 F:      scripts/Makefile.kcsan
10117
10118 KDUMP
10119 M:      Dave Young <dyoung@redhat.com>
10120 M:      Baoquan He <bhe@redhat.com>
10121 R:      Vivek Goyal <vgoyal@redhat.com>
10122 L:      kexec@lists.infradead.org
10123 S:      Maintained
10124 W:      http://lse.sourceforge.net/kdump/
10125 F:      Documentation/admin-guide/kdump/
10126 F:      fs/proc/vmcore.c
10127 F:      include/linux/crash_core.h
10128 F:      include/linux/crash_dump.h
10129 F:      include/uapi/linux/vmcore.h
10130 F:      kernel/crash_*.c
10131
10132 KEENE FM RADIO TRANSMITTER DRIVER
10133 M:      Hans Verkuil <hverkuil@xs4all.nl>
10134 L:      linux-media@vger.kernel.org
10135 S:      Maintained
10136 W:      https://linuxtv.org
10137 T:      git git://linuxtv.org/media_tree.git
10138 F:      drivers/media/radio/radio-keene*
10139
10140 KERNEL AUTOMOUNTER
10141 M:      Ian Kent <raven@themaw.net>
10142 L:      autofs@vger.kernel.org
10143 S:      Maintained
10144 F:      fs/autofs/
10145
10146 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10147 M:      Masahiro Yamada <masahiroy@kernel.org>
10148 M:      Michal Marek <michal.lkml@markovi.net>
10149 R:      Nick Desaulniers <ndesaulniers@google.com>
10150 L:      linux-kbuild@vger.kernel.org
10151 S:      Maintained
10152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10153 F:      Documentation/kbuild/
10154 F:      Makefile
10155 F:      scripts/*vmlinux*
10156 F:      scripts/Kbuild*
10157 F:      scripts/Makefile*
10158 F:      scripts/basic/
10159 F:      scripts/dummy-tools/
10160 F:      scripts/mk*
10161 F:      scripts/mod/
10162 F:      scripts/package/
10163
10164 KERNEL JANITORS
10165 L:      kernel-janitors@vger.kernel.org
10166 S:      Odd Fixes
10167 W:      http://kernelnewbies.org/KernelJanitors
10168
10169 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10170 M:      "J. Bruce Fields" <bfields@fieldses.org>
10171 M:      Chuck Lever <chuck.lever@oracle.com>
10172 L:      linux-nfs@vger.kernel.org
10173 S:      Supported
10174 W:      http://nfs.sourceforge.net/
10175 T:      git git://linux-nfs.org/~bfields/linux.git
10176 F:      fs/lockd/
10177 F:      fs/nfs_common/
10178 F:      fs/nfsd/
10179 F:      include/linux/lockd/
10180 F:      include/linux/sunrpc/
10181 F:      include/uapi/linux/nfsd/
10182 F:      include/uapi/linux/sunrpc/
10183 F:      net/sunrpc/
10184 F:      Documentation/filesystems/nfs/
10185
10186 KERNEL REGRESSIONS
10187 M:      Thorsten Leemhuis <linux@leemhuis.info>
10188 L:      regressions@lists.linux.dev
10189 S:      Supported
10190
10191 KERNEL SELFTEST FRAMEWORK
10192 M:      Shuah Khan <shuah@kernel.org>
10193 M:      Shuah Khan <skhan@linuxfoundation.org>
10194 L:      linux-kselftest@vger.kernel.org
10195 S:      Maintained
10196 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10198 F:      Documentation/dev-tools/kselftest*
10199 F:      tools/testing/selftests/
10200
10201 KERNEL SMB3 SERVER (KSMBD)
10202 M:      Namjae Jeon <linkinjeon@kernel.org>
10203 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10204 M:      Steve French <sfrench@samba.org>
10205 M:      Hyunchul Lee <hyc.lee@gmail.com>
10206 L:      linux-cifs@vger.kernel.org
10207 S:      Maintained
10208 T:      git git://git.samba.org/ksmbd.git
10209 F:      fs/ksmbd/
10210 F:      fs/smbfs_common/
10211
10212 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10213 M:      Brendan Higgins <brendanhiggins@google.com>
10214 L:      linux-kselftest@vger.kernel.org
10215 L:      kunit-dev@googlegroups.com
10216 S:      Maintained
10217 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10218 F:      Documentation/dev-tools/kunit/
10219 F:      include/kunit/
10220 F:      lib/kunit/
10221 F:      tools/testing/kunit/
10222
10223 KERNEL USERMODE HELPER
10224 M:      Luis Chamberlain <mcgrof@kernel.org>
10225 L:      linux-kernel@vger.kernel.org
10226 S:      Maintained
10227 F:      include/linux/umh.h
10228 F:      kernel/umh.c
10229
10230 KERNEL VIRTUAL MACHINE (KVM)
10231 M:      Paolo Bonzini <pbonzini@redhat.com>
10232 L:      kvm@vger.kernel.org
10233 S:      Supported
10234 W:      http://www.linux-kvm.org
10235 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10236 F:      Documentation/virt/kvm/
10237 F:      include/asm-generic/kvm*
10238 F:      include/kvm/iodev.h
10239 F:      include/linux/kvm*
10240 F:      include/trace/events/kvm.h
10241 F:      include/uapi/asm-generic/kvm*
10242 F:      include/uapi/linux/kvm*
10243 F:      tools/kvm/
10244 F:      tools/testing/selftests/kvm/
10245 F:      virt/kvm/*
10246
10247 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10248 M:      Marc Zyngier <maz@kernel.org>
10249 R:      James Morse <james.morse@arm.com>
10250 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10251 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10252 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10253 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10254 S:      Maintained
10255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10256 F:      arch/arm64/include/asm/kvm*
10257 F:      arch/arm64/include/uapi/asm/kvm*
10258 F:      arch/arm64/kvm/
10259 F:      include/kvm/arm_*
10260 F:      tools/testing/selftests/kvm/*/aarch64/
10261 F:      tools/testing/selftests/kvm/aarch64/
10262
10263 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10264 M:      Huacai Chen <chenhuacai@kernel.org>
10265 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10266 L:      linux-mips@vger.kernel.org
10267 L:      kvm@vger.kernel.org
10268 S:      Maintained
10269 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10270 F:      arch/mips/include/asm/kvm*
10271 F:      arch/mips/include/uapi/asm/kvm*
10272 F:      arch/mips/kvm/
10273
10274 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10275 M:      Paul Mackerras <paulus@ozlabs.org>
10276 L:      kvm-ppc@vger.kernel.org
10277 S:      Supported
10278 W:      http://www.linux-kvm.org/
10279 T:      git git://github.com/agraf/linux-2.6.git
10280 F:      arch/powerpc/include/asm/kvm*
10281 F:      arch/powerpc/include/uapi/asm/kvm*
10282 F:      arch/powerpc/kernel/kvm*
10283 F:      arch/powerpc/kvm/
10284
10285 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10286 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10287 M:      Janosch Frank <frankja@linux.ibm.com>
10288 R:      David Hildenbrand <david@redhat.com>
10289 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10290 L:      kvm@vger.kernel.org
10291 S:      Supported
10292 W:      http://www.ibm.com/developerworks/linux/linux390/
10293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10294 F:      Documentation/virt/kvm/s390*
10295 F:      arch/s390/include/asm/gmap.h
10296 F:      arch/s390/include/asm/kvm*
10297 F:      arch/s390/include/uapi/asm/kvm*
10298 F:      arch/s390/kernel/uv.c
10299 F:      arch/s390/kvm/
10300 F:      arch/s390/mm/gmap.c
10301 F:      tools/testing/selftests/kvm/*/s390x/
10302 F:      tools/testing/selftests/kvm/s390x/
10303
10304 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10305 M:      Paolo Bonzini <pbonzini@redhat.com>
10306 R:      Sean Christopherson <seanjc@google.com>
10307 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10308 R:      Wanpeng Li <wanpengli@tencent.com>
10309 R:      Jim Mattson <jmattson@google.com>
10310 R:      Joerg Roedel <joro@8bytes.org>
10311 L:      kvm@vger.kernel.org
10312 S:      Supported
10313 W:      http://www.linux-kvm.org
10314 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10315 F:      arch/x86/include/asm/kvm*
10316 F:      arch/x86/include/asm/pvclock-abi.h
10317 F:      arch/x86/include/asm/svm.h
10318 F:      arch/x86/include/asm/vmx*.h
10319 F:      arch/x86/include/uapi/asm/kvm*
10320 F:      arch/x86/include/uapi/asm/svm.h
10321 F:      arch/x86/include/uapi/asm/vmx.h
10322 F:      arch/x86/kernel/kvm.c
10323 F:      arch/x86/kernel/kvmclock.c
10324 F:      arch/x86/kvm/
10325 F:      arch/x86/kvm/*/
10326
10327 KERNFS
10328 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10329 M:      Tejun Heo <tj@kernel.org>
10330 S:      Supported
10331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10332 F:      fs/kernfs/
10333 F:      include/linux/kernfs.h
10334
10335 KEXEC
10336 M:      Eric Biederman <ebiederm@xmission.com>
10337 L:      kexec@lists.infradead.org
10338 S:      Maintained
10339 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10340 F:      include/linux/kexec.h
10341 F:      include/uapi/linux/kexec.h
10342 F:      kernel/kexec*
10343
10344 KEYS-ENCRYPTED
10345 M:      Mimi Zohar <zohar@linux.ibm.com>
10346 L:      linux-integrity@vger.kernel.org
10347 L:      keyrings@vger.kernel.org
10348 S:      Supported
10349 F:      Documentation/security/keys/trusted-encrypted.rst
10350 F:      include/keys/encrypted-type.h
10351 F:      security/keys/encrypted-keys/
10352
10353 KEYS-TRUSTED
10354 M:      James Bottomley <jejb@linux.ibm.com>
10355 M:      Jarkko Sakkinen <jarkko@kernel.org>
10356 M:      Mimi Zohar <zohar@linux.ibm.com>
10357 L:      linux-integrity@vger.kernel.org
10358 L:      keyrings@vger.kernel.org
10359 S:      Supported
10360 F:      Documentation/security/keys/trusted-encrypted.rst
10361 F:      include/keys/trusted-type.h
10362 F:      include/keys/trusted_tpm.h
10363 F:      security/keys/trusted-keys/
10364
10365 KEYS-TRUSTED-TEE
10366 M:      Sumit Garg <sumit.garg@linaro.org>
10367 L:      linux-integrity@vger.kernel.org
10368 L:      keyrings@vger.kernel.org
10369 S:      Supported
10370 F:      include/keys/trusted_tee.h
10371 F:      security/keys/trusted-keys/trusted_tee.c
10372
10373 KEYS/KEYRINGS
10374 M:      David Howells <dhowells@redhat.com>
10375 M:      Jarkko Sakkinen <jarkko@kernel.org>
10376 L:      keyrings@vger.kernel.org
10377 S:      Maintained
10378 F:      Documentation/security/keys/core.rst
10379 F:      include/keys/
10380 F:      include/linux/key-type.h
10381 F:      include/linux/key.h
10382 F:      include/linux/keyctl.h
10383 F:      include/uapi/linux/keyctl.h
10384 F:      security/keys/
10385
10386 KFENCE
10387 M:      Alexander Potapenko <glider@google.com>
10388 M:      Marco Elver <elver@google.com>
10389 R:      Dmitry Vyukov <dvyukov@google.com>
10390 L:      kasan-dev@googlegroups.com
10391 S:      Maintained
10392 F:      Documentation/dev-tools/kfence.rst
10393 F:      arch/*/include/asm/kfence.h
10394 F:      include/linux/kfence.h
10395 F:      lib/Kconfig.kfence
10396 F:      mm/kfence/
10397
10398 KFIFO
10399 M:      Stefani Seibold <stefani@seibold.net>
10400 S:      Maintained
10401 F:      include/linux/kfifo.h
10402 F:      lib/kfifo.c
10403 F:      samples/kfifo/
10404
10405 KGDB / KDB /debug_core
10406 M:      Jason Wessel <jason.wessel@windriver.com>
10407 M:      Daniel Thompson <daniel.thompson@linaro.org>
10408 R:      Douglas Anderson <dianders@chromium.org>
10409 L:      kgdb-bugreport@lists.sourceforge.net
10410 S:      Maintained
10411 W:      http://kgdb.wiki.kernel.org/
10412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10413 F:      Documentation/dev-tools/kgdb.rst
10414 F:      drivers/misc/kgdbts.c
10415 F:      drivers/tty/serial/kgdboc.c
10416 F:      include/linux/kdb.h
10417 F:      include/linux/kgdb.h
10418 F:      kernel/debug/
10419
10420 KHADAS MCU MFD DRIVER
10421 M:      Neil Armstrong <narmstrong@baylibre.com>
10422 L:      linux-amlogic@lists.infradead.org
10423 S:      Maintained
10424 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10425 F:      drivers/mfd/khadas-mcu.c
10426 F:      include/linux/mfd/khadas-mcu.h
10427 F:      drivers/thermal/khadas_mcu_fan.c
10428
10429 KMEMLEAK
10430 M:      Catalin Marinas <catalin.marinas@arm.com>
10431 S:      Maintained
10432 F:      Documentation/dev-tools/kmemleak.rst
10433 F:      include/linux/kmemleak.h
10434 F:      mm/kmemleak.c
10435 F:      samples/kmemleak/kmemleak-test.c
10436
10437 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10438 M:      Luis Chamberlain <mcgrof@kernel.org>
10439 L:      linux-kernel@vger.kernel.org
10440 S:      Maintained
10441 F:      include/linux/kmod.h
10442 F:      kernel/kmod.c
10443 F:      lib/test_kmod.c
10444 F:      tools/testing/selftests/kmod/
10445
10446 KPROBES
10447 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10448 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10449 M:      "David S. Miller" <davem@davemloft.net>
10450 M:      Masami Hiramatsu <mhiramat@kernel.org>
10451 S:      Maintained
10452 F:      Documentation/trace/kprobes.rst
10453 F:      include/asm-generic/kprobes.h
10454 F:      include/linux/kprobes.h
10455 F:      kernel/kprobes.c
10456
10457 KS0108 LCD CONTROLLER DRIVER
10458 M:      Miguel Ojeda <ojeda@kernel.org>
10459 S:      Maintained
10460 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10461 F:      drivers/auxdisplay/ks0108.c
10462 F:      include/linux/ks0108.h
10463
10464 KTD253 BACKLIGHT DRIVER
10465 M:      Linus Walleij <linus.walleij@linaro.org>
10466 S:      Maintained
10467 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10468 F:      drivers/video/backlight/ktd253-backlight.c
10469
10470 KTEST
10471 M:      Steven Rostedt <rostedt@goodmis.org>
10472 M:      John Hawley <warthog9@eaglescrag.net>
10473 S:      Maintained
10474 F:      tools/testing/ktest
10475
10476 L3MDEV
10477 M:      David Ahern <dsahern@kernel.org>
10478 L:      netdev@vger.kernel.org
10479 S:      Maintained
10480 F:      include/net/l3mdev.h
10481 F:      net/l3mdev
10482
10483 L7 BPF FRAMEWORK
10484 M:      John Fastabend <john.fastabend@gmail.com>
10485 M:      Daniel Borkmann <daniel@iogearbox.net>
10486 M:      Jakub Sitnicki <jakub@cloudflare.com>
10487 M:      Lorenz Bauer <lmb@cloudflare.com>
10488 L:      netdev@vger.kernel.org
10489 L:      bpf@vger.kernel.org
10490 S:      Maintained
10491 F:      include/linux/skmsg.h
10492 F:      net/core/skmsg.c
10493 F:      net/core/sock_map.c
10494 F:      net/ipv4/tcp_bpf.c
10495 F:      net/ipv4/udp_bpf.c
10496 F:      net/unix/unix_bpf.c
10497
10498 LANDLOCK SECURITY MODULE
10499 M:      Mickaël Salaün <mic@digikod.net>
10500 L:      linux-security-module@vger.kernel.org
10501 S:      Supported
10502 W:      https://landlock.io
10503 T:      git https://github.com/landlock-lsm/linux.git
10504 F:      Documentation/security/landlock.rst
10505 F:      Documentation/userspace-api/landlock.rst
10506 F:      include/uapi/linux/landlock.h
10507 F:      samples/landlock/
10508 F:      security/landlock/
10509 F:      tools/testing/selftests/landlock/
10510 K:      landlock
10511 K:      LANDLOCK
10512
10513 LANTIQ / INTEL Ethernet drivers
10514 M:      Hauke Mehrtens <hauke@hauke-m.de>
10515 L:      netdev@vger.kernel.org
10516 S:      Maintained
10517 F:      drivers/net/dsa/lantiq_gswip.c
10518 F:      drivers/net/dsa/lantiq_pce.h
10519 F:      drivers/net/ethernet/lantiq_xrx200.c
10520 F:      net/dsa/tag_gswip.c
10521
10522 LANTIQ MIPS ARCHITECTURE
10523 M:      John Crispin <john@phrozen.org>
10524 L:      linux-mips@vger.kernel.org
10525 S:      Maintained
10526 F:      arch/mips/lantiq
10527 F:      drivers/soc/lantiq
10528
10529 LASI 53c700 driver for PARISC
10530 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10531 L:      linux-scsi@vger.kernel.org
10532 S:      Maintained
10533 F:      Documentation/scsi/53c700.rst
10534 F:      drivers/scsi/53c700*
10535
10536 LEAKING_ADDRESSES
10537 M:      Tobin C. Harding <me@tobin.cc>
10538 M:      Tycho Andersen <tycho@tycho.pizza>
10539 L:      linux-hardening@vger.kernel.org
10540 S:      Maintained
10541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10542 F:      scripts/leaking_addresses.pl
10543
10544 LED SUBSYSTEM
10545 M:      Pavel Machek <pavel@ucw.cz>
10546 L:      linux-leds@vger.kernel.org
10547 S:      Maintained
10548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10549 F:      Documentation/devicetree/bindings/leds/
10550 F:      drivers/leds/
10551 F:      include/linux/leds.h
10552
10553 LEGACY EEPROM DRIVER
10554 M:      Jean Delvare <jdelvare@suse.com>
10555 S:      Maintained
10556 F:      Documentation/misc-devices/eeprom.rst
10557 F:      drivers/misc/eeprom/eeprom.c
10558
10559 LEGO MINDSTORMS EV3
10560 R:      David Lechner <david@lechnology.com>
10561 S:      Maintained
10562 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10563 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10564 F:      drivers/power/supply/lego_ev3_battery.c
10565
10566 LEGO USB Tower driver
10567 M:      Juergen Stuber <starblue@users.sourceforge.net>
10568 L:      legousb-devel@lists.sourceforge.net
10569 S:      Maintained
10570 W:      http://legousb.sourceforge.net/
10571 F:      drivers/usb/misc/legousbtower.c
10572
10573 LG LAPTOP EXTRAS
10574 M:      Matan Ziv-Av <matan@svgalib.org>
10575 L:      platform-driver-x86@vger.kernel.org
10576 S:      Maintained
10577 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10578 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10579 F:      drivers/platform/x86/lg-laptop.c
10580
10581 LG2160 MEDIA DRIVER
10582 M:      Michael Krufky <mkrufky@linuxtv.org>
10583 L:      linux-media@vger.kernel.org
10584 S:      Maintained
10585 W:      https://linuxtv.org
10586 W:      http://github.com/mkrufky
10587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10588 T:      git git://linuxtv.org/mkrufky/tuners.git
10589 F:      drivers/media/dvb-frontends/lg2160.*
10590
10591 LGDT3305 MEDIA DRIVER
10592 M:      Michael Krufky <mkrufky@linuxtv.org>
10593 L:      linux-media@vger.kernel.org
10594 S:      Maintained
10595 W:      https://linuxtv.org
10596 W:      http://github.com/mkrufky
10597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10598 T:      git git://linuxtv.org/mkrufky/tuners.git
10599 F:      drivers/media/dvb-frontends/lgdt3305.*
10600
10601 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10602 M:      Viresh Kumar <vireshk@kernel.org>
10603 L:      linux-ide@vger.kernel.org
10604 S:      Maintained
10605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10606 F:      drivers/ata/pata_arasan_cf.c
10607 F:      include/linux/pata_arasan_cf_data.h
10608
10609 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10610 M:      Linus Walleij <linus.walleij@linaro.org>
10611 L:      linux-ide@vger.kernel.org
10612 S:      Maintained
10613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10614 F:      drivers/ata/pata_ftide010.c
10615 F:      drivers/ata/sata_gemini.c
10616 F:      drivers/ata/sata_gemini.h
10617
10618 LIBATA SATA AHCI PLATFORM devices support
10619 M:      Hans de Goede <hdegoede@redhat.com>
10620 M:      Jens Axboe <axboe@kernel.dk>
10621 L:      linux-ide@vger.kernel.org
10622 S:      Maintained
10623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10624 F:      drivers/ata/ahci_platform.c
10625 F:      drivers/ata/libahci_platform.c
10626 F:      include/linux/ahci_platform.h
10627
10628 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10629 M:      Mikael Pettersson <mikpelinux@gmail.com>
10630 L:      linux-ide@vger.kernel.org
10631 S:      Maintained
10632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10633 F:      drivers/ata/sata_promise.*
10634
10635 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10636 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10637 L:      linux-ide@vger.kernel.org
10638 S:      Maintained
10639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10640 F:      Documentation/devicetree/bindings/ata/
10641 F:      drivers/ata/
10642 F:      include/linux/ata.h
10643 F:      include/linux/libata.h
10644
10645 LIBLOCKDEP
10646 M:      Sasha Levin <alexander.levin@microsoft.com>
10647 S:      Maintained
10648 F:      tools/lib/lockdep/
10649
10650 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10651 M:      Dan Williams <dan.j.williams@intel.com>
10652 M:      Vishal Verma <vishal.l.verma@intel.com>
10653 M:      Dave Jiang <dave.jiang@intel.com>
10654 L:      nvdimm@lists.linux.dev
10655 S:      Supported
10656 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10657 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10658 F:      drivers/nvdimm/blk.c
10659 F:      drivers/nvdimm/region_devs.c
10660
10661 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10662 M:      Vishal Verma <vishal.l.verma@intel.com>
10663 M:      Dan Williams <dan.j.williams@intel.com>
10664 M:      Dave Jiang <dave.jiang@intel.com>
10665 L:      nvdimm@lists.linux.dev
10666 S:      Supported
10667 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10668 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10669 F:      drivers/nvdimm/btt*
10670
10671 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10672 M:      Dan Williams <dan.j.williams@intel.com>
10673 M:      Vishal Verma <vishal.l.verma@intel.com>
10674 M:      Dave Jiang <dave.jiang@intel.com>
10675 L:      nvdimm@lists.linux.dev
10676 S:      Supported
10677 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10678 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10679 F:      drivers/nvdimm/pmem*
10680
10681 LIBNVDIMM: DEVICETREE BINDINGS
10682 M:      Oliver O'Halloran <oohall@gmail.com>
10683 L:      nvdimm@lists.linux.dev
10684 S:      Supported
10685 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10686 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10687 F:      drivers/nvdimm/of_pmem.c
10688
10689 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10690 M:      Dan Williams <dan.j.williams@intel.com>
10691 M:      Vishal Verma <vishal.l.verma@intel.com>
10692 M:      Dave Jiang <dave.jiang@intel.com>
10693 M:      Ira Weiny <ira.weiny@intel.com>
10694 L:      nvdimm@lists.linux.dev
10695 S:      Supported
10696 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10697 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10699 F:      drivers/acpi/nfit/*
10700 F:      drivers/nvdimm/*
10701 F:      include/linux/libnvdimm.h
10702 F:      include/linux/nd.h
10703 F:      include/uapi/linux/ndctl.h
10704 F:      tools/testing/nvdimm/
10705
10706 LICENSES and SPDX stuff
10707 M:      Thomas Gleixner <tglx@linutronix.de>
10708 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10709 L:      linux-spdx@vger.kernel.org
10710 S:      Maintained
10711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10712 F:      COPYING
10713 F:      Documentation/process/license-rules.rst
10714 F:      LICENSES/
10715 F:      scripts/spdxcheck-test.sh
10716 F:      scripts/spdxcheck.py
10717
10718 LINEAR RANGES HELPERS
10719 M:      Mark Brown <broonie@kernel.org>
10720 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10721 F:      lib/linear_ranges.c
10722 F:      lib/test_linear_ranges.c
10723 F:      include/linux/linear_range.h
10724
10725 LINUX FOR POWER MACINTOSH
10726 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10727 L:      linuxppc-dev@lists.ozlabs.org
10728 S:      Odd Fixes
10729 F:      arch/powerpc/platforms/powermac/
10730 F:      drivers/macintosh/
10731
10732 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10733 M:      Michael Ellerman <mpe@ellerman.id.au>
10734 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10735 R:      Paul Mackerras <paulus@samba.org>
10736 L:      linuxppc-dev@lists.ozlabs.org
10737 S:      Supported
10738 W:      https://github.com/linuxppc/wiki/wiki
10739 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10741 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10742 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10743 F:      Documentation/devicetree/bindings/powerpc/
10744 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10745 F:      Documentation/powerpc/
10746 F:      arch/powerpc/
10747 F:      drivers/*/*/*pasemi*
10748 F:      drivers/*/*pasemi*
10749 F:      drivers/char/tpm/tpm_ibmvtpm*
10750 F:      drivers/crypto/nx/
10751 F:      drivers/crypto/vmx/
10752 F:      drivers/i2c/busses/i2c-opal.c
10753 F:      drivers/net/ethernet/ibm/ibmveth.*
10754 F:      drivers/net/ethernet/ibm/ibmvnic.*
10755 F:      drivers/pci/hotplug/pnv_php.c
10756 F:      drivers/pci/hotplug/rpa*
10757 F:      drivers/rtc/rtc-opal.c
10758 F:      drivers/scsi/ibmvscsi/
10759 F:      drivers/tty/hvc/hvc_opal.c
10760 F:      drivers/watchdog/wdrtas.c
10761 F:      tools/testing/selftests/powerpc
10762 N:      /pmac
10763 N:      powermac
10764 N:      powernv
10765 N:      [^a-z0-9]ps3
10766 N:      pseries
10767
10768 LINUX FOR POWERPC EMBEDDED MPC5XXX
10769 M:      Anatolij Gustschin <agust@denx.de>
10770 L:      linuxppc-dev@lists.ozlabs.org
10771 S:      Odd Fixes
10772 F:      arch/powerpc/platforms/512x/
10773 F:      arch/powerpc/platforms/52xx/
10774
10775 LINUX FOR POWERPC EMBEDDED PPC4XX
10776 L:      linuxppc-dev@lists.ozlabs.org
10777 S:      Orphan
10778 F:      arch/powerpc/platforms/40x/
10779 F:      arch/powerpc/platforms/44x/
10780
10781 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10782 M:      Scott Wood <oss@buserror.net>
10783 L:      linuxppc-dev@lists.ozlabs.org
10784 S:      Odd fixes
10785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10786 F:      Documentation/devicetree/bindings/powerpc/fsl/
10787 F:      arch/powerpc/platforms/83xx/
10788 F:      arch/powerpc/platforms/85xx/
10789
10790 LINUX FOR POWERPC EMBEDDED PPC8XX
10791 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10792 L:      linuxppc-dev@lists.ozlabs.org
10793 S:      Maintained
10794 F:      arch/powerpc/platforms/8xx/
10795
10796 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10797 M:      Kees Cook <keescook@chromium.org>
10798 S:      Maintained
10799 F:      drivers/misc/lkdtm/*
10800 F:      tools/testing/selftests/lkdtm/*
10801
10802 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10803 M:      Alan Stern <stern@rowland.harvard.edu>
10804 M:      Andrea Parri <parri.andrea@gmail.com>
10805 M:      Will Deacon <will@kernel.org>
10806 M:      Peter Zijlstra <peterz@infradead.org>
10807 M:      Boqun Feng <boqun.feng@gmail.com>
10808 M:      Nicholas Piggin <npiggin@gmail.com>
10809 M:      David Howells <dhowells@redhat.com>
10810 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10811 M:      Luc Maranget <luc.maranget@inria.fr>
10812 M:      "Paul E. McKenney" <paulmck@kernel.org>
10813 R:      Akira Yokosawa <akiyks@gmail.com>
10814 R:      Daniel Lustig <dlustig@nvidia.com>
10815 R:      Joel Fernandes <joel@joelfernandes.org>
10816 L:      linux-kernel@vger.kernel.org
10817 L:      linux-arch@vger.kernel.org
10818 S:      Supported
10819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10820 F:      Documentation/atomic_bitops.txt
10821 F:      Documentation/atomic_t.txt
10822 F:      Documentation/core-api/refcount-vs-atomic.rst
10823 F:      Documentation/litmus-tests/
10824 F:      Documentation/memory-barriers.txt
10825 F:      tools/memory-model/
10826
10827 LIS3LV02D ACCELEROMETER DRIVER
10828 M:      Eric Piel <eric.piel@tremplin-utc.net>
10829 S:      Maintained
10830 F:      Documentation/misc-devices/lis3lv02d.rst
10831 F:      drivers/misc/lis3lv02d/
10832 F:      drivers/platform/x86/hp_accel.c
10833
10834 LIST KUNIT TEST
10835 M:      David Gow <davidgow@google.com>
10836 L:      linux-kselftest@vger.kernel.org
10837 L:      kunit-dev@googlegroups.com
10838 S:      Maintained
10839 F:      lib/list-test.c
10840
10841 LITEX PLATFORM
10842 M:      Karol Gugala <kgugala@antmicro.com>
10843 M:      Mateusz Holenko <mholenko@antmicro.com>
10844 S:      Maintained
10845 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10846 F:      arch/openrisc/boot/dts/or1klitex.dts
10847 F:      drivers/soc/litex/litex_soc_ctrl.c
10848 F:      drivers/tty/serial/liteuart.c
10849 F:      include/linux/litex.h
10850
10851 LIVE PATCHING
10852 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10853 M:      Jiri Kosina <jikos@kernel.org>
10854 M:      Miroslav Benes <mbenes@suse.cz>
10855 M:      Petr Mladek <pmladek@suse.com>
10856 R:      Joe Lawrence <joe.lawrence@redhat.com>
10857 L:      live-patching@vger.kernel.org
10858 S:      Maintained
10859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10860 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10861 F:      Documentation/livepatch/
10862 F:      arch/powerpc/include/asm/livepatch.h
10863 F:      arch/s390/include/asm/livepatch.h
10864 F:      arch/x86/include/asm/livepatch.h
10865 F:      include/linux/livepatch.h
10866 F:      kernel/livepatch/
10867 F:      lib/livepatch/
10868 F:      samples/livepatch/
10869 F:      tools/testing/selftests/livepatch/
10870
10871 LLC (802.2)
10872 L:      netdev@vger.kernel.org
10873 S:      Odd fixes
10874 F:      include/linux/llc.h
10875 F:      include/net/llc*
10876 F:      include/uapi/linux/llc.h
10877 F:      net/llc/
10878
10879 LM73 HARDWARE MONITOR DRIVER
10880 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10881 L:      linux-hwmon@vger.kernel.org
10882 S:      Maintained
10883 F:      drivers/hwmon/lm73.c
10884
10885 LM78 HARDWARE MONITOR DRIVER
10886 M:      Jean Delvare <jdelvare@suse.com>
10887 L:      linux-hwmon@vger.kernel.org
10888 S:      Maintained
10889 F:      Documentation/hwmon/lm78.rst
10890 F:      drivers/hwmon/lm78.c
10891
10892 LM83 HARDWARE MONITOR DRIVER
10893 M:      Jean Delvare <jdelvare@suse.com>
10894 L:      linux-hwmon@vger.kernel.org
10895 S:      Maintained
10896 F:      Documentation/hwmon/lm83.rst
10897 F:      drivers/hwmon/lm83.c
10898
10899 LM90 HARDWARE MONITOR DRIVER
10900 M:      Jean Delvare <jdelvare@suse.com>
10901 L:      linux-hwmon@vger.kernel.org
10902 S:      Maintained
10903 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10904 F:      Documentation/hwmon/lm90.rst
10905 F:      drivers/hwmon/lm90.c
10906 F:      include/dt-bindings/thermal/lm90.h
10907
10908 LM95234 HARDWARE MONITOR DRIVER
10909 M:      Guenter Roeck <linux@roeck-us.net>
10910 L:      linux-hwmon@vger.kernel.org
10911 S:      Maintained
10912 F:      Documentation/hwmon/lm95234.rst
10913 F:      drivers/hwmon/lm95234.c
10914
10915 LME2510 MEDIA DRIVER
10916 M:      Malcolm Priestley <tvboxspy@gmail.com>
10917 L:      linux-media@vger.kernel.org
10918 S:      Maintained
10919 W:      https://linuxtv.org
10920 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10921 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10922
10923 LOADPIN SECURITY MODULE
10924 M:      Kees Cook <keescook@chromium.org>
10925 S:      Supported
10926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10927 F:      Documentation/admin-guide/LSM/LoadPin.rst
10928 F:      security/loadpin/
10929
10930 LOCKING PRIMITIVES
10931 M:      Peter Zijlstra <peterz@infradead.org>
10932 M:      Ingo Molnar <mingo@redhat.com>
10933 M:      Will Deacon <will@kernel.org>
10934 R:      Waiman Long <longman@redhat.com>
10935 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10936 L:      linux-kernel@vger.kernel.org
10937 S:      Maintained
10938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10939 F:      Documentation/locking/
10940 F:      arch/*/include/asm/spinlock*.h
10941 F:      include/linux/lockdep.h
10942 F:      include/linux/mutex*.h
10943 F:      include/linux/rwlock*.h
10944 F:      include/linux/rwsem*.h
10945 F:      include/linux/seqlock.h
10946 F:      include/linux/spinlock*.h
10947 F:      kernel/locking/
10948 F:      lib/locking*.[ch]
10949 X:      kernel/locking/locktorture.c
10950
10951 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10952 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10953 L:      linux-ntfs-dev@lists.sourceforge.net
10954 S:      Maintained
10955 W:      http://www.linux-ntfs.org/content/view/19/37/
10956 F:      Documentation/admin-guide/ldm.rst
10957 F:      block/partitions/ldm.*
10958
10959 LOGITECH HID GAMING KEYBOARDS
10960 M:      Hans de Goede <hdegoede@redhat.com>
10961 L:      linux-input@vger.kernel.org
10962 S:      Maintained
10963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10964 F:      drivers/hid/hid-lg-g15.c
10965
10966 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10967 M:      Adrien Grassein <adrien.grassein@gmail.com>
10968 S:      Maintained
10969 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10970 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
10971
10972 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10973 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10974 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10975 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10976 L:      MPT-FusionLinux.pdl@broadcom.com
10977 L:      linux-scsi@vger.kernel.org
10978 S:      Supported
10979 W:      http://www.avagotech.com/support/
10980 F:      drivers/message/fusion/
10981 F:      drivers/scsi/mpt3sas/
10982
10983 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10984 M:      Matthew Wilcox <willy@infradead.org>
10985 L:      linux-scsi@vger.kernel.org
10986 S:      Maintained
10987 F:      drivers/scsi/sym53c8xx_2/
10988
10989 LTC1660 DAC DRIVER
10990 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10991 L:      linux-iio@vger.kernel.org
10992 S:      Maintained
10993 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10994 F:      drivers/iio/dac/ltc1660.c
10995
10996 LTC2947 HARDWARE MONITOR DRIVER
10997 M:      Nuno Sá <nuno.sa@analog.com>
10998 L:      linux-hwmon@vger.kernel.org
10999 S:      Supported
11000 W:      http://ez.analog.com/community/linux-device-drivers
11001 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11002 F:      drivers/hwmon/ltc2947-core.c
11003 F:      drivers/hwmon/ltc2947-i2c.c
11004 F:      drivers/hwmon/ltc2947-spi.c
11005 F:      drivers/hwmon/ltc2947.h
11006
11007 LTC2983 IIO TEMPERATURE DRIVER
11008 M:      Nuno Sá <nuno.sa@analog.com>
11009 L:      linux-iio@vger.kernel.org
11010 S:      Supported
11011 W:      http://ez.analog.com/community/linux-device-drivers
11012 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11013 F:      drivers/iio/temperature/ltc2983.c
11014
11015 LTC4261 HARDWARE MONITOR DRIVER
11016 M:      Guenter Roeck <linux@roeck-us.net>
11017 L:      linux-hwmon@vger.kernel.org
11018 S:      Maintained
11019 F:      Documentation/hwmon/ltc4261.rst
11020 F:      drivers/hwmon/ltc4261.c
11021
11022 LTC4306 I2C MULTIPLEXER DRIVER
11023 M:      Michael Hennerich <michael.hennerich@analog.com>
11024 L:      linux-i2c@vger.kernel.org
11025 S:      Supported
11026 W:      http://ez.analog.com/community/linux-device-drivers
11027 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11028 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11029
11030 LTP (Linux Test Project)
11031 M:      Mike Frysinger <vapier@gentoo.org>
11032 M:      Cyril Hrubis <chrubis@suse.cz>
11033 M:      Wanlong Gao <wanlong.gao@gmail.com>
11034 M:      Jan Stancek <jstancek@redhat.com>
11035 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11036 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11037 L:      ltp@lists.linux.it (subscribers-only)
11038 S:      Maintained
11039 W:      http://linux-test-project.github.io/
11040 T:      git git://github.com/linux-test-project/ltp.git
11041
11042 LYNX PCS MODULE
11043 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11044 L:      netdev@vger.kernel.org
11045 S:      Supported
11046 F:      drivers/net/pcs/pcs-lynx.c
11047 F:      include/linux/pcs-lynx.h
11048
11049 M68K ARCHITECTURE
11050 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11051 L:      linux-m68k@lists.linux-m68k.org
11052 S:      Maintained
11053 W:      http://www.linux-m68k.org/
11054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11055 F:      arch/m68k/
11056 F:      drivers/zorro/
11057
11058 M68K ON APPLE MACINTOSH
11059 M:      Joshua Thompson <funaho@jurai.org>
11060 L:      linux-m68k@lists.linux-m68k.org
11061 S:      Maintained
11062 W:      http://www.mac.linux-m68k.org/
11063 F:      arch/m68k/mac/
11064 F:      drivers/macintosh/adb-iop.c
11065 F:      drivers/macintosh/via-macii.c
11066
11067 M68K ON HP9000/300
11068 M:      Philip Blundell <philb@gnu.org>
11069 S:      Maintained
11070 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11071 F:      arch/m68k/hp300/
11072
11073 M88DS3103 MEDIA DRIVER
11074 M:      Antti Palosaari <crope@iki.fi>
11075 L:      linux-media@vger.kernel.org
11076 S:      Maintained
11077 W:      https://linuxtv.org
11078 W:      http://palosaari.fi/linux/
11079 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11080 T:      git git://linuxtv.org/anttip/media_tree.git
11081 F:      drivers/media/dvb-frontends/m88ds3103*
11082
11083 M88RS2000 MEDIA DRIVER
11084 M:      Malcolm Priestley <tvboxspy@gmail.com>
11085 L:      linux-media@vger.kernel.org
11086 S:      Maintained
11087 W:      https://linuxtv.org
11088 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11089 F:      drivers/media/dvb-frontends/m88rs2000*
11090
11091 MA901 MASTERKIT USB FM RADIO DRIVER
11092 M:      Alexey Klimov <klimov.linux@gmail.com>
11093 L:      linux-media@vger.kernel.org
11094 S:      Maintained
11095 T:      git git://linuxtv.org/media_tree.git
11096 F:      drivers/media/radio/radio-ma901.c
11097
11098 MAC80211
11099 M:      Johannes Berg <johannes@sipsolutions.net>
11100 L:      linux-wireless@vger.kernel.org
11101 S:      Maintained
11102 W:      https://wireless.wiki.kernel.org/
11103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11105 F:      Documentation/networking/mac80211-injection.rst
11106 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11107 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11108 F:      include/net/mac80211.h
11109 F:      net/mac80211/
11110
11111 MAILBOX API
11112 M:      Jassi Brar <jassisinghbrar@gmail.com>
11113 L:      linux-kernel@vger.kernel.org
11114 S:      Maintained
11115 F:      drivers/mailbox/
11116 F:      include/linux/mailbox_client.h
11117 F:      include/linux/mailbox_controller.h
11118 F:      include/dt-bindings/mailbox/
11119 F:      Documentation/devicetree/bindings/mailbox/
11120
11121 MAILBOX ARM MHUv2
11122 M:      Viresh Kumar <viresh.kumar@linaro.org>
11123 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11124 L:      linux-kernel@vger.kernel.org
11125 S:      Maintained
11126 F:      drivers/mailbox/arm_mhuv2.c
11127 F:      include/linux/mailbox/arm_mhuv2_message.h
11128 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11129
11130 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11131 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11132 M:      Matt Johnston <matt@codeconstruct.com.au>
11133 L:      netdev@vger.kernel.org
11134 S:      Maintained
11135 F:      Documentation/networking/mctp.rst
11136 F:      drivers/net/mctp/
11137 F:      include/net/mctp.h
11138 F:      include/net/mctpdevice.h
11139 F:      include/net/netns/mctp.h
11140 F:      net/mctp/
11141
11142 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11143 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11144 L:      linux-man@vger.kernel.org
11145 S:      Maintained
11146 W:      http://www.kernel.org/doc/man-pages
11147
11148 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11149 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11150 L:      linux-mips@vger.kernel.org
11151 S:      Maintained
11152 F:      arch/mips/boot/dts/img/pistachio*
11153
11154 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11155 M:      Andrew Lunn <andrew@lunn.ch>
11156 M:      Vivien Didelot <vivien.didelot@gmail.com>
11157 L:      netdev@vger.kernel.org
11158 S:      Maintained
11159 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11160 F:      Documentation/networking/devlink/mv88e6xxx.rst
11161 F:      drivers/net/dsa/mv88e6xxx/
11162 F:      include/linux/dsa/mv88e6xxx.h
11163 F:      include/linux/platform_data/mv88e6xxx.h
11164
11165 MARVELL ARMADA 3700 PHY DRIVERS
11166 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11167 S:      Maintained
11168 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11169 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11170 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11171 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11172
11173 MARVELL ARMADA DRM SUPPORT
11174 M:      Russell King <linux@armlinux.org.uk>
11175 S:      Maintained
11176 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11177 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11178 F:      Documentation/devicetree/bindings/display/armada/
11179 F:      drivers/gpu/drm/armada/
11180 F:      include/uapi/drm/armada_drm.h
11181
11182 MARVELL CRYPTO DRIVER
11183 M:      Boris Brezillon <bbrezillon@kernel.org>
11184 M:      Arnaud Ebalard <arno@natisbad.org>
11185 M:      Srujana Challa <schalla@marvell.com>
11186 L:      linux-crypto@vger.kernel.org
11187 S:      Maintained
11188 F:      drivers/crypto/marvell/
11189 F:      include/linux/soc/marvell/octeontx2/
11190
11191 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11192 M:      Mirko Lindner <mlindner@marvell.com>
11193 M:      Stephen Hemminger <stephen@networkplumber.org>
11194 L:      netdev@vger.kernel.org
11195 S:      Maintained
11196 F:      drivers/net/ethernet/marvell/sk*
11197
11198 MARVELL LIBERTAS WIRELESS DRIVER
11199 L:      libertas-dev@lists.infradead.org
11200 S:      Orphan
11201 F:      drivers/net/wireless/marvell/libertas/
11202
11203 MARVELL MACCHIATOBIN SUPPORT
11204 M:      Russell King <linux@armlinux.org.uk>
11205 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11206 S:      Maintained
11207 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11208
11209 MARVELL MV643XX ETHERNET DRIVER
11210 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11211 L:      netdev@vger.kernel.org
11212 S:      Maintained
11213 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11214 F:      include/linux/mv643xx.h
11215
11216 MARVELL MV88X3310 PHY DRIVER
11217 M:      Russell King <linux@armlinux.org.uk>
11218 M:      Marek Behún <kabel@kernel.org>
11219 L:      netdev@vger.kernel.org
11220 S:      Maintained
11221 F:      drivers/net/phy/marvell10g.c
11222
11223 MARVELL MVEBU THERMAL DRIVER
11224 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11225 S:      Maintained
11226 F:      drivers/thermal/armada_thermal.c
11227
11228 MARVELL MVNETA ETHERNET DRIVER
11229 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11230 L:      netdev@vger.kernel.org
11231 S:      Maintained
11232 F:      drivers/net/ethernet/marvell/mvneta.*
11233
11234 MARVELL MVPP2 ETHERNET DRIVER
11235 M:      Marcin Wojtas <mw@semihalf.com>
11236 M:      Russell King <linux@armlinux.org.uk>
11237 L:      netdev@vger.kernel.org
11238 S:      Maintained
11239 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11240 F:      drivers/net/ethernet/marvell/mvpp2/
11241
11242 MARVELL MWIFIEX WIRELESS DRIVER
11243 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11244 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11245 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11246 M:      Xinming Hu <huxinming820@gmail.com>
11247 L:      linux-wireless@vger.kernel.org
11248 S:      Maintained
11249 F:      drivers/net/wireless/marvell/mwifiex/
11250
11251 MARVELL MWL8K WIRELESS DRIVER
11252 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11253 L:      linux-wireless@vger.kernel.org
11254 S:      Odd Fixes
11255 F:      drivers/net/wireless/marvell/mwl8k.c
11256
11257 MARVELL NAND CONTROLLER DRIVER
11258 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11259 L:      linux-mtd@lists.infradead.org
11260 S:      Maintained
11261 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11262 F:      drivers/mtd/nand/raw/marvell_nand.c
11263
11264 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11265 M:      Sunil Goutham <sgoutham@marvell.com>
11266 M:      Geetha sowjanya <gakula@marvell.com>
11267 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11268 M:      hariprasad <hkelam@marvell.com>
11269 L:      netdev@vger.kernel.org
11270 S:      Supported
11271 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11272 F:      include/linux/soc/marvell/octeontx2/
11273
11274 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11275 M:      Sunil Goutham <sgoutham@marvell.com>
11276 M:      Linu Cherian <lcherian@marvell.com>
11277 M:      Geetha sowjanya <gakula@marvell.com>
11278 M:      Jerin Jacob <jerinj@marvell.com>
11279 M:      hariprasad <hkelam@marvell.com>
11280 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11281 L:      netdev@vger.kernel.org
11282 S:      Supported
11283 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11284 F:      drivers/net/ethernet/marvell/octeontx2/af/
11285
11286 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11287 M:      Vadym Kochan <vkochan@marvell.com>
11288 M:      Taras Chornyi <tchornyi@marvell.com>
11289 S:      Supported
11290 W:      https://github.com/Marvell-switching/switchdev-prestera
11291 F:      drivers/net/ethernet/marvell/prestera/
11292
11293 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11294 M:      Nicolas Pitre <nico@fluxnic.net>
11295 S:      Odd Fixes
11296 F:      drivers/mmc/host/mvsdio.*
11297
11298 MARVELL USB MDIO CONTROLLER DRIVER
11299 M:      Tobias Waldekranz <tobias@waldekranz.com>
11300 L:      netdev@vger.kernel.org
11301 S:      Maintained
11302 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11303 F:      drivers/net/mdio/mdio-mvusb.c
11304
11305 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11306 M:      Hu Ziji <huziji@marvell.com>
11307 L:      linux-mmc@vger.kernel.org
11308 S:      Supported
11309 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11310 F:      drivers/mmc/host/sdhci-xenon*
11311
11312 MATROX FRAMEBUFFER DRIVER
11313 L:      linux-fbdev@vger.kernel.org
11314 S:      Orphan
11315 F:      drivers/video/fbdev/matrox/matroxfb_*
11316 F:      include/uapi/linux/matroxfb.h
11317
11318 MAX15301 DRIVER
11319 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11320 L:      linux-hwmon@vger.kernel.org
11321 S:      Maintained
11322 F:      Documentation/hwmon/max15301.rst
11323 F:      drivers/hwmon/pmbus/max15301.c
11324
11325 MAX16065 HARDWARE MONITOR DRIVER
11326 M:      Guenter Roeck <linux@roeck-us.net>
11327 L:      linux-hwmon@vger.kernel.org
11328 S:      Maintained
11329 F:      Documentation/hwmon/max16065.rst
11330 F:      drivers/hwmon/max16065.c
11331
11332 MAX2175 SDR TUNER DRIVER
11333 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11334 L:      linux-media@vger.kernel.org
11335 S:      Maintained
11336 T:      git git://linuxtv.org/media_tree.git
11337 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11338 F:      Documentation/userspace-api/media/drivers/max2175.rst
11339 F:      drivers/media/i2c/max2175*
11340 F:      include/uapi/linux/max2175.h
11341
11342 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11343 L:      linux-hwmon@vger.kernel.org
11344 S:      Orphan
11345 F:      Documentation/hwmon/max6650.rst
11346 F:      drivers/hwmon/max6650.c
11347
11348 MAX6697 HARDWARE MONITOR DRIVER
11349 M:      Guenter Roeck <linux@roeck-us.net>
11350 L:      linux-hwmon@vger.kernel.org
11351 S:      Maintained
11352 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11353 F:      Documentation/hwmon/max6697.rst
11354 F:      drivers/hwmon/max6697.c
11355 F:      include/linux/platform_data/max6697.h
11356
11357 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11358 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11359 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11360 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11361 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11362 L:      linux-media@vger.kernel.org
11363 S:      Maintained
11364 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11365 F:      drivers/media/i2c/max9286.c
11366
11367 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11368 M:      Peter Rosin <peda@axentia.se>
11369 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11370 S:      Maintained
11371 F:      Documentation/devicetree/bindings/sound/max9860.txt
11372 F:      sound/soc/codecs/max9860.*
11373
11374 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11375 M:      Andreas Klinger <ak@it-klinger.de>
11376 L:      linux-iio@vger.kernel.org
11377 S:      Maintained
11378 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11379 F:      drivers/iio/proximity/mb1232.c
11380
11381 MAXIM MAX77650 PMIC MFD DRIVER
11382 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11383 L:      linux-kernel@vger.kernel.org
11384 S:      Maintained
11385 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11386 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11387 F:      drivers/gpio/gpio-max77650.c
11388 F:      drivers/input/misc/max77650-onkey.c
11389 F:      drivers/leds/leds-max77650.c
11390 F:      drivers/mfd/max77650.c
11391 F:      drivers/power/supply/max77650-charger.c
11392 F:      drivers/regulator/max77650-regulator.c
11393 F:      include/linux/mfd/max77650.h
11394
11395 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11396 M:      Javier Martinez Canillas <javier@dowhile0.org>
11397 L:      linux-kernel@vger.kernel.org
11398 S:      Supported
11399 F:      Documentation/devicetree/bindings/*/*max77802.txt
11400 F:      drivers/regulator/max77802-regulator.c
11401 F:      include/dt-bindings/*/*max77802.h
11402
11403 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11404 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11405 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11406 L:      linux-pm@vger.kernel.org
11407 S:      Supported
11408 F:      drivers/power/supply/max14577_charger.c
11409 F:      drivers/power/supply/max77693_charger.c
11410
11411 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11412 M:      Chanwoo Choi <cw00.choi@samsung.com>
11413 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11414 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11415 L:      linux-kernel@vger.kernel.org
11416 S:      Supported
11417 F:      Documentation/devicetree/bindings/*/max77686.txt
11418 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11419 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11420 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11421 F:      drivers/*/max14577*.c
11422 F:      drivers/*/max77686*.c
11423 F:      drivers/*/max77693*.c
11424 F:      drivers/clk/clk-max77686.c
11425 F:      drivers/extcon/extcon-max14577.c
11426 F:      drivers/extcon/extcon-max77693.c
11427 F:      drivers/rtc/rtc-max77686.c
11428 F:      include/linux/mfd/max14577*.h
11429 F:      include/linux/mfd/max77686*.h
11430 F:      include/linux/mfd/max77693*.h
11431
11432 MAXIRADIO FM RADIO RECEIVER DRIVER
11433 M:      Hans Verkuil <hverkuil@xs4all.nl>
11434 L:      linux-media@vger.kernel.org
11435 S:      Maintained
11436 W:      https://linuxtv.org
11437 T:      git git://linuxtv.org/media_tree.git
11438 F:      drivers/media/radio/radio-maxiradio*
11439
11440 MAXLINEAR ETHERNET PHY DRIVER
11441 M:      Xu Liang <lxu@maxlinear.com>
11442 L:      netdev@vger.kernel.org
11443 S:      Supported
11444 F:      drivers/net/phy/mxl-gpy.c
11445
11446 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11447 R:      Yasushi SHOJI <yashi@spacecubics.com>
11448 L:      linux-can@vger.kernel.org
11449 S:      Maintained
11450 F:      drivers/net/can/usb/mcba_usb.c
11451
11452 MCAN MMIO DEVICE DRIVER
11453 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11454 L:      linux-can@vger.kernel.org
11455 S:      Maintained
11456 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11457 F:      drivers/net/can/m_can/m_can.c
11458 F:      drivers/net/can/m_can/m_can.h
11459 F:      drivers/net/can/m_can/m_can_platform.c
11460
11461 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11462 M:      Rishi Gupta <gupt21@gmail.com>
11463 L:      linux-i2c@vger.kernel.org
11464 L:      linux-input@vger.kernel.org
11465 S:      Maintained
11466 F:      drivers/hid/hid-mcp2221.c
11467
11468 MCP251XFD SPI-CAN NETWORK DRIVER
11469 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11470 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11471 R:      Thomas Kopp <thomas.kopp@microchip.com>
11472 L:      linux-can@vger.kernel.org
11473 S:      Maintained
11474 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11475 F:      drivers/net/can/spi/mcp251xfd/
11476
11477 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11478 M:      Peter Rosin <peda@axentia.se>
11479 L:      linux-iio@vger.kernel.org
11480 S:      Maintained
11481 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11482 F:      drivers/iio/potentiometer/mcp4018.c
11483 F:      drivers/iio/potentiometer/mcp4531.c
11484
11485 MCR20A IEEE-802.15.4 RADIO DRIVER
11486 M:      Xue Liu <liuxuenetmail@gmail.com>
11487 L:      linux-wpan@vger.kernel.org
11488 S:      Maintained
11489 W:      https://github.com/xueliu/mcr20a-linux
11490 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11491 F:      drivers/net/ieee802154/mcr20a.c
11492 F:      drivers/net/ieee802154/mcr20a.h
11493
11494 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11495 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11496 L:      linux-iio@vger.kernel.org
11497 S:      Maintained
11498 F:      drivers/iio/dac/cio-dac.c
11499
11500 MEDIA CONTROLLER FRAMEWORK
11501 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11502 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11503 L:      linux-media@vger.kernel.org
11504 S:      Supported
11505 W:      https://www.linuxtv.org
11506 T:      git git://linuxtv.org/media_tree.git
11507 F:      drivers/media/mc/
11508 F:      include/media/media-*.h
11509 F:      include/uapi/linux/media.h
11510
11511 MEDIA DRIVER FOR FREESCALE IMX PXP
11512 M:      Philipp Zabel <p.zabel@pengutronix.de>
11513 L:      linux-media@vger.kernel.org
11514 S:      Maintained
11515 T:      git git://linuxtv.org/media_tree.git
11516 F:      drivers/media/platform/imx-pxp.[ch]
11517
11518 MEDIA DRIVERS FOR ASCOT2E
11519 M:      Sergey Kozlov <serjk@netup.ru>
11520 M:      Abylay Ospan <aospan@netup.ru>
11521 L:      linux-media@vger.kernel.org
11522 S:      Supported
11523 W:      https://linuxtv.org
11524 W:      http://netup.tv/
11525 T:      git git://linuxtv.org/media_tree.git
11526 F:      drivers/media/dvb-frontends/ascot2e*
11527
11528 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11529 M:      Jasmin Jessich <jasmin@anw.at>
11530 L:      linux-media@vger.kernel.org
11531 S:      Maintained
11532 W:      https://linuxtv.org
11533 T:      git git://linuxtv.org/media_tree.git
11534 F:      drivers/media/dvb-frontends/cxd2099*
11535
11536 MEDIA DRIVERS FOR CXD2841ER
11537 M:      Sergey Kozlov <serjk@netup.ru>
11538 M:      Abylay Ospan <aospan@netup.ru>
11539 L:      linux-media@vger.kernel.org
11540 S:      Supported
11541 W:      https://linuxtv.org
11542 W:      http://netup.tv/
11543 T:      git git://linuxtv.org/media_tree.git
11544 F:      drivers/media/dvb-frontends/cxd2841er*
11545
11546 MEDIA DRIVERS FOR CXD2880
11547 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11548 L:      linux-media@vger.kernel.org
11549 S:      Supported
11550 W:      http://linuxtv.org/
11551 T:      git git://linuxtv.org/media_tree.git
11552 F:      drivers/media/dvb-frontends/cxd2880/*
11553 F:      drivers/media/spi/cxd2880*
11554
11555 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11556 L:      linux-media@vger.kernel.org
11557 S:      Orphan
11558 W:      https://linuxtv.org
11559 T:      git git://linuxtv.org/media_tree.git
11560 F:      drivers/media/pci/ddbridge/*
11561
11562 MEDIA DRIVERS FOR FREESCALE IMX
11563 M:      Steve Longerbeam <slongerbeam@gmail.com>
11564 M:      Philipp Zabel <p.zabel@pengutronix.de>
11565 L:      linux-media@vger.kernel.org
11566 S:      Maintained
11567 T:      git git://linuxtv.org/media_tree.git
11568 F:      Documentation/admin-guide/media/imx.rst
11569 F:      Documentation/devicetree/bindings/media/imx.txt
11570 F:      drivers/staging/media/imx/
11571 F:      include/linux/imx-media.h
11572 F:      include/media/imx.h
11573
11574 MEDIA DRIVERS FOR FREESCALE IMX7
11575 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11576 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11577 L:      linux-media@vger.kernel.org
11578 S:      Maintained
11579 T:      git git://linuxtv.org/media_tree.git
11580 F:      Documentation/admin-guide/media/imx7.rst
11581 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11582 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11583 F:      drivers/staging/media/imx/imx7-media-csi.c
11584 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11585
11586 MEDIA DRIVERS FOR HELENE
11587 M:      Abylay Ospan <aospan@netup.ru>
11588 L:      linux-media@vger.kernel.org
11589 S:      Supported
11590 W:      https://linuxtv.org
11591 W:      http://netup.tv/
11592 T:      git git://linuxtv.org/media_tree.git
11593 F:      drivers/media/dvb-frontends/helene*
11594
11595 MEDIA DRIVERS FOR HORUS3A
11596 M:      Sergey Kozlov <serjk@netup.ru>
11597 M:      Abylay Ospan <aospan@netup.ru>
11598 L:      linux-media@vger.kernel.org
11599 S:      Supported
11600 W:      https://linuxtv.org
11601 W:      http://netup.tv/
11602 T:      git git://linuxtv.org/media_tree.git
11603 F:      drivers/media/dvb-frontends/horus3a*
11604
11605 MEDIA DRIVERS FOR LNBH25
11606 M:      Sergey Kozlov <serjk@netup.ru>
11607 M:      Abylay Ospan <aospan@netup.ru>
11608 L:      linux-media@vger.kernel.org
11609 S:      Supported
11610 W:      https://linuxtv.org
11611 W:      http://netup.tv/
11612 T:      git git://linuxtv.org/media_tree.git
11613 F:      drivers/media/dvb-frontends/lnbh25*
11614
11615 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11616 L:      linux-media@vger.kernel.org
11617 S:      Orphan
11618 W:      https://linuxtv.org
11619 T:      git git://linuxtv.org/media_tree.git
11620 F:      drivers/media/dvb-frontends/mxl5xx*
11621
11622 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11623 M:      Sergey Kozlov <serjk@netup.ru>
11624 M:      Abylay Ospan <aospan@netup.ru>
11625 L:      linux-media@vger.kernel.org
11626 S:      Supported
11627 W:      https://linuxtv.org
11628 W:      http://netup.tv/
11629 T:      git git://linuxtv.org/media_tree.git
11630 F:      drivers/media/pci/netup_unidvb/*
11631
11632 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11633 M:      Dmitry Osipenko <digetx@gmail.com>
11634 L:      linux-media@vger.kernel.org
11635 L:      linux-tegra@vger.kernel.org
11636 S:      Maintained
11637 T:      git git://linuxtv.org/media_tree.git
11638 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11639 F:      drivers/staging/media/tegra-vde/
11640
11641 MEDIA DRIVERS FOR RENESAS - CEU
11642 M:      Jacopo Mondi <jacopo@jmondi.org>
11643 L:      linux-media@vger.kernel.org
11644 L:      linux-renesas-soc@vger.kernel.org
11645 S:      Supported
11646 T:      git git://linuxtv.org/media_tree.git
11647 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11648 F:      drivers/media/platform/renesas-ceu.c
11649 F:      include/media/drv-intf/renesas-ceu.h
11650
11651 MEDIA DRIVERS FOR RENESAS - DRIF
11652 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11653 L:      linux-media@vger.kernel.org
11654 L:      linux-renesas-soc@vger.kernel.org
11655 S:      Supported
11656 T:      git git://linuxtv.org/media_tree.git
11657 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11658 F:      drivers/media/platform/rcar_drif.c
11659
11660 MEDIA DRIVERS FOR RENESAS - FCP
11661 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11662 L:      linux-media@vger.kernel.org
11663 L:      linux-renesas-soc@vger.kernel.org
11664 S:      Supported
11665 T:      git git://linuxtv.org/media_tree.git
11666 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11667 F:      drivers/media/platform/rcar-fcp.c
11668 F:      include/media/rcar-fcp.h
11669
11670 MEDIA DRIVERS FOR RENESAS - FDP1
11671 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11672 L:      linux-media@vger.kernel.org
11673 L:      linux-renesas-soc@vger.kernel.org
11674 S:      Supported
11675 T:      git git://linuxtv.org/media_tree.git
11676 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11677 F:      drivers/media/platform/rcar_fdp1.c
11678
11679 MEDIA DRIVERS FOR RENESAS - VIN
11680 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11681 L:      linux-media@vger.kernel.org
11682 L:      linux-renesas-soc@vger.kernel.org
11683 S:      Supported
11684 T:      git git://linuxtv.org/media_tree.git
11685 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11686 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11687 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11688 F:      drivers/media/platform/rcar-vin/
11689
11690 MEDIA DRIVERS FOR RENESAS - VSP1
11691 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11692 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11693 L:      linux-media@vger.kernel.org
11694 L:      linux-renesas-soc@vger.kernel.org
11695 S:      Supported
11696 T:      git git://linuxtv.org/media_tree.git
11697 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11698 F:      drivers/media/platform/vsp1/
11699
11700 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11701 L:      linux-media@vger.kernel.org
11702 S:      Orphan
11703 W:      https://linuxtv.org
11704 T:      git git://linuxtv.org/media_tree.git
11705 F:      drivers/media/dvb-frontends/stv0910*
11706
11707 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11708 L:      linux-media@vger.kernel.org
11709 S:      Orphan
11710 W:      https://linuxtv.org
11711 T:      git git://linuxtv.org/media_tree.git
11712 F:      drivers/media/dvb-frontends/stv6111*
11713
11714 MEDIA DRIVERS FOR STM32 - DCMI
11715 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11716 L:      linux-media@vger.kernel.org
11717 S:      Supported
11718 T:      git git://linuxtv.org/media_tree.git
11719 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11720 F:      drivers/media/platform/stm32/stm32-dcmi.c
11721
11722 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11723 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11724 L:      linux-media@vger.kernel.org
11725 S:      Maintained
11726 W:      https://linuxtv.org
11727 Q:      http://patchwork.kernel.org/project/linux-media/list/
11728 T:      git git://linuxtv.org/media_tree.git
11729 F:      Documentation/admin-guide/media/
11730 F:      Documentation/devicetree/bindings/media/
11731 F:      Documentation/driver-api/media/
11732 F:      Documentation/userspace-api/media/
11733 F:      drivers/media/
11734 F:      drivers/staging/media/
11735 F:      include/linux/platform_data/media/
11736 F:      include/media/
11737 F:      include/uapi/linux/dvb/
11738 F:      include/uapi/linux/ivtv*
11739 F:      include/uapi/linux/media.h
11740 F:      include/uapi/linux/meye.h
11741 F:      include/uapi/linux/uvcvideo.h
11742 F:      include/uapi/linux/v4l2-*
11743 F:      include/uapi/linux/videodev2.h
11744
11745 MEDIATEK BLUETOOTH DRIVER
11746 M:      Sean Wang <sean.wang@mediatek.com>
11747 L:      linux-bluetooth@vger.kernel.org
11748 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11749 S:      Maintained
11750 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11751 F:      drivers/bluetooth/btmtkuart.c
11752
11753 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11754 M:      Sean Wang <sean.wang@mediatek.com>
11755 L:      linux-pm@vger.kernel.org
11756 S:      Maintained
11757 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11758 F:      drivers/power/reset/mt6323-poweroff.c
11759
11760 MEDIATEK CIR DRIVER
11761 M:      Sean Wang <sean.wang@mediatek.com>
11762 S:      Maintained
11763 F:      drivers/media/rc/mtk-cir.c
11764
11765 MEDIATEK DMA DRIVER
11766 M:      Sean Wang <sean.wang@mediatek.com>
11767 L:      dmaengine@vger.kernel.org
11768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11769 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11770 S:      Maintained
11771 F:      Documentation/devicetree/bindings/dma/mtk-*
11772 F:      drivers/dma/mediatek/
11773
11774 MEDIATEK ETHERNET DRIVER
11775 M:      Felix Fietkau <nbd@nbd.name>
11776 M:      John Crispin <john@phrozen.org>
11777 M:      Sean Wang <sean.wang@mediatek.com>
11778 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11779 L:      netdev@vger.kernel.org
11780 S:      Maintained
11781 F:      drivers/net/ethernet/mediatek/
11782
11783 MEDIATEK I2C CONTROLLER DRIVER
11784 M:      Qii Wang <qii.wang@mediatek.com>
11785 L:      linux-i2c@vger.kernel.org
11786 S:      Maintained
11787 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11788 F:      drivers/i2c/busses/i2c-mt65xx.c
11789
11790 MEDIATEK IOMMU DRIVER
11791 M:      Yong Wu <yong.wu@mediatek.com>
11792 L:      iommu@lists.linux-foundation.org
11793 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11794 S:      Supported
11795 F:      Documentation/devicetree/bindings/iommu/mediatek*
11796 F:      drivers/iommu/mtk_iommu*
11797 F:      include/dt-bindings/memory/mt*-port.h
11798
11799 MEDIATEK JPEG DRIVER
11800 M:      Rick Chang <rick.chang@mediatek.com>
11801 M:      Bin Liu <bin.liu@mediatek.com>
11802 S:      Supported
11803 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11804 F:      drivers/media/platform/mtk-jpeg/
11805
11806 MEDIATEK MDP DRIVER
11807 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11808 M:      Houlong Wei <houlong.wei@mediatek.com>
11809 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11810 S:      Supported
11811 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11812 F:      drivers/media/platform/mtk-mdp/
11813 F:      drivers/media/platform/mtk-vpu/
11814
11815 MEDIATEK MEDIA DRIVER
11816 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11817 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11818 S:      Supported
11819 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11820 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11821 F:      drivers/media/platform/mtk-vcodec/
11822 F:      drivers/media/platform/mtk-vpu/
11823
11824 MEDIATEK MMC/SD/SDIO DRIVER
11825 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11826 S:      Maintained
11827 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11828 F:      drivers/mmc/host/mtk-sd.c
11829
11830 MEDIATEK MT76 WIRELESS LAN DRIVER
11831 M:      Felix Fietkau <nbd@nbd.name>
11832 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11833 M:      Ryder Lee <ryder.lee@mediatek.com>
11834 R:      Shayne Chen <shayne.chen@mediatek.com>
11835 R:      Sean Wang <sean.wang@mediatek.com>
11836 L:      linux-wireless@vger.kernel.org
11837 S:      Maintained
11838 F:      drivers/net/wireless/mediatek/mt76/
11839
11840 MEDIATEK MT7601U WIRELESS LAN DRIVER
11841 M:      Jakub Kicinski <kubakici@wp.pl>
11842 L:      linux-wireless@vger.kernel.org
11843 S:      Maintained
11844 F:      drivers/net/wireless/mediatek/mt7601u/
11845
11846 MEDIATEK MT7621 CLOCK DRIVER
11847 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11848 S:      Maintained
11849 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11850 F:      drivers/clk/ralink/clk-mt7621.c
11851
11852 MEDIATEK MT7621/28/88 I2C DRIVER
11853 M:      Stefan Roese <sr@denx.de>
11854 L:      linux-i2c@vger.kernel.org
11855 S:      Maintained
11856 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11857 F:      drivers/i2c/busses/i2c-mt7621.c
11858
11859 MEDIATEK MT7621 PHY PCI DRIVER
11860 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11861 S:      Maintained
11862 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11863 F:      drivers/phy/ralink/phy-mt7621-pci.c
11864
11865 MEDIATEK NAND CONTROLLER DRIVER
11866 L:      linux-mtd@lists.infradead.org
11867 S:      Orphan
11868 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11869 F:      drivers/mtd/nand/raw/mtk_*
11870
11871 MEDIATEK PMIC LED DRIVER
11872 M:      Sean Wang <sean.wang@mediatek.com>
11873 S:      Maintained
11874 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11875 F:      drivers/leds/leds-mt6323.c
11876
11877 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11878 M:      Sean Wang <sean.wang@mediatek.com>
11879 S:      Maintained
11880 F:      drivers/char/hw_random/mtk-rng.c
11881
11882 MEDIATEK SWITCH DRIVER
11883 M:      Sean Wang <sean.wang@mediatek.com>
11884 M:      Landen Chao <Landen.Chao@mediatek.com>
11885 M:      DENG Qingfang <dqfext@gmail.com>
11886 L:      netdev@vger.kernel.org
11887 S:      Maintained
11888 F:      drivers/net/dsa/mt7530.*
11889 F:      net/dsa/tag_mtk.c
11890
11891 MEDIATEK USB3 DRD IP DRIVER
11892 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11893 L:      linux-usb@vger.kernel.org
11894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11895 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11896 S:      Maintained
11897 F:      Documentation/devicetree/bindings/usb/mediatek,*
11898 F:      drivers/usb/host/xhci-mtk*
11899 F:      drivers/usb/mtu3/
11900
11901 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11902 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11903 M:      Martin Donnelly <martin.donnelly@ge.com>
11904 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11905 S:      Maintained
11906 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11907 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11908
11909 MEGARAID SCSI/SAS DRIVERS
11910 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11911 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11912 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11913 L:      megaraidlinux.pdl@broadcom.com
11914 L:      linux-scsi@vger.kernel.org
11915 S:      Maintained
11916 W:      http://www.avagotech.com/support/
11917 F:      Documentation/scsi/megaraid.rst
11918 F:      drivers/scsi/megaraid.*
11919 F:      drivers/scsi/megaraid/
11920
11921 MELEXIS MLX90614 DRIVER
11922 M:      Crt Mori <cmo@melexis.com>
11923 L:      linux-iio@vger.kernel.org
11924 S:      Supported
11925 W:      http://www.melexis.com
11926 F:      drivers/iio/temperature/mlx90614.c
11927
11928 MELEXIS MLX90632 DRIVER
11929 M:      Crt Mori <cmo@melexis.com>
11930 L:      linux-iio@vger.kernel.org
11931 S:      Supported
11932 W:      http://www.melexis.com
11933 F:      drivers/iio/temperature/mlx90632.c
11934
11935 MELFAS MIP4 TOUCHSCREEN DRIVER
11936 M:      Sangwon Jee <jeesw@melfas.com>
11937 S:      Supported
11938 W:      http://www.melfas.com
11939 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11940 F:      drivers/input/touchscreen/melfas_mip4.c
11941
11942 MELLANOX BLUEFIELD I2C DRIVER
11943 M:      Khalil Blaiech <kblaiech@nvidia.com>
11944 L:      linux-i2c@vger.kernel.org
11945 S:      Supported
11946 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11947 F:      drivers/i2c/busses/i2c-mlxbf.c
11948
11949 MELLANOX ETHERNET DRIVER (mlx4_en)
11950 M:      Tariq Toukan <tariqt@nvidia.com>
11951 L:      netdev@vger.kernel.org
11952 S:      Supported
11953 W:      http://www.mellanox.com
11954 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11955 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11956
11957 MELLANOX ETHERNET DRIVER (mlx5e)
11958 M:      Saeed Mahameed <saeedm@nvidia.com>
11959 L:      netdev@vger.kernel.org
11960 S:      Supported
11961 W:      http://www.mellanox.com
11962 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11963 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11964
11965 MELLANOX ETHERNET INNOVA DRIVERS
11966 R:      Boris Pismenny <borisp@nvidia.com>
11967 L:      netdev@vger.kernel.org
11968 S:      Supported
11969 W:      http://www.mellanox.com
11970 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11971 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11972 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11973 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11974 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11975
11976 MELLANOX ETHERNET SWITCH DRIVERS
11977 M:      Jiri Pirko <jiri@nvidia.com>
11978 M:      Ido Schimmel <idosch@nvidia.com>
11979 L:      netdev@vger.kernel.org
11980 S:      Supported
11981 W:      http://www.mellanox.com
11982 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11983 F:      drivers/net/ethernet/mellanox/mlxsw/
11984 F:      tools/testing/selftests/drivers/net/mlxsw/
11985
11986 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11987 M:      mlxsw@nvidia.com
11988 L:      netdev@vger.kernel.org
11989 S:      Supported
11990 W:      http://www.mellanox.com
11991 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11992 F:      drivers/net/ethernet/mellanox/mlxfw/
11993
11994 MELLANOX HARDWARE PLATFORM SUPPORT
11995 M:      Hans de Goede <hdegoede@redhat.com>
11996 M:      Mark Gross <mgross@linux.intel.com>
11997 M:      Vadim Pasternak <vadimp@nvidia.com>
11998 L:      platform-driver-x86@vger.kernel.org
11999 S:      Supported
12000 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12001 F:      drivers/platform/mellanox/
12002 F:      include/linux/platform_data/mlxreg.h
12003
12004 MELLANOX MLX4 core VPI driver
12005 M:      Tariq Toukan <tariqt@nvidia.com>
12006 L:      netdev@vger.kernel.org
12007 L:      linux-rdma@vger.kernel.org
12008 S:      Supported
12009 W:      http://www.mellanox.com
12010 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12011 F:      drivers/net/ethernet/mellanox/mlx4/
12012 F:      include/linux/mlx4/
12013
12014 MELLANOX MLX4 IB driver
12015 M:      Yishai Hadas <yishaih@nvidia.com>
12016 L:      linux-rdma@vger.kernel.org
12017 S:      Supported
12018 W:      http://www.mellanox.com
12019 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12020 F:      drivers/infiniband/hw/mlx4/
12021 F:      include/linux/mlx4/
12022 F:      include/uapi/rdma/mlx4-abi.h
12023
12024 MELLANOX MLX5 core VPI driver
12025 M:      Saeed Mahameed <saeedm@nvidia.com>
12026 M:      Leon Romanovsky <leonro@nvidia.com>
12027 L:      netdev@vger.kernel.org
12028 L:      linux-rdma@vger.kernel.org
12029 S:      Supported
12030 W:      http://www.mellanox.com
12031 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12032 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12033 F:      drivers/net/ethernet/mellanox/mlx5/core/
12034 F:      include/linux/mlx5/
12035
12036 MELLANOX MLX5 IB driver
12037 M:      Leon Romanovsky <leonro@nvidia.com>
12038 L:      linux-rdma@vger.kernel.org
12039 S:      Supported
12040 W:      http://www.mellanox.com
12041 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12042 F:      drivers/infiniband/hw/mlx5/
12043 F:      include/linux/mlx5/
12044 F:      include/uapi/rdma/mlx5-abi.h
12045
12046 MELLANOX MLXCPLD I2C AND MUX DRIVER
12047 M:      Vadim Pasternak <vadimp@nvidia.com>
12048 M:      Michael Shych <michaelsh@nvidia.com>
12049 L:      linux-i2c@vger.kernel.org
12050 S:      Supported
12051 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12052 F:      drivers/i2c/busses/i2c-mlxcpld.c
12053 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12054
12055 MELLANOX MLXCPLD LED DRIVER
12056 M:      Vadim Pasternak <vadimp@nvidia.com>
12057 L:      linux-leds@vger.kernel.org
12058 S:      Supported
12059 F:      Documentation/leds/leds-mlxcpld.rst
12060 F:      drivers/leds/leds-mlxcpld.c
12061 F:      drivers/leds/leds-mlxreg.c
12062
12063 MELLANOX PLATFORM DRIVER
12064 M:      Vadim Pasternak <vadimp@nvidia.com>
12065 L:      platform-driver-x86@vger.kernel.org
12066 S:      Supported
12067 F:      drivers/platform/x86/mlx-platform.c
12068
12069 MEMBARRIER SUPPORT
12070 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12071 M:      "Paul E. McKenney" <paulmck@kernel.org>
12072 L:      linux-kernel@vger.kernel.org
12073 S:      Supported
12074 F:      arch/powerpc/include/asm/membarrier.h
12075 F:      include/uapi/linux/membarrier.h
12076 F:      kernel/sched/membarrier.c
12077
12078 MEMBLOCK
12079 M:      Mike Rapoport <rppt@linux.ibm.com>
12080 L:      linux-mm@kvack.org
12081 S:      Maintained
12082 F:      Documentation/core-api/boot-time-mm.rst
12083 F:      include/linux/memblock.h
12084 F:      mm/memblock.c
12085
12086 MEMORY CONTROLLER DRIVERS
12087 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12088 L:      linux-kernel@vger.kernel.org
12089 S:      Maintained
12090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12091 F:      Documentation/devicetree/bindings/memory-controllers/
12092 F:      drivers/memory/
12093 F:      include/dt-bindings/memory/
12094 F:      include/memory/
12095
12096 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12097 M:      Dmitry Osipenko <digetx@gmail.com>
12098 L:      linux-pm@vger.kernel.org
12099 L:      linux-tegra@vger.kernel.org
12100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12101 S:      Maintained
12102 F:      drivers/devfreq/tegra30-devfreq.c
12103
12104 MEMORY MANAGEMENT
12105 M:      Andrew Morton <akpm@linux-foundation.org>
12106 L:      linux-mm@kvack.org
12107 S:      Maintained
12108 W:      http://www.linux-mm.org
12109 T:      quilt https://ozlabs.org/~akpm/mmotm/
12110 T:      quilt https://ozlabs.org/~akpm/mmots/
12111 T:      git git://github.com/hnaz/linux-mm.git
12112 F:      include/linux/gfp.h
12113 F:      include/linux/memory_hotplug.h
12114 F:      include/linux/mm.h
12115 F:      include/linux/mmzone.h
12116 F:      include/linux/pagewalk.h
12117 F:      include/linux/vmalloc.h
12118 F:      mm/
12119 F:      tools/testing/selftests/vm/
12120
12121 MEMORY TECHNOLOGY DEVICES (MTD)
12122 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12123 M:      Richard Weinberger <richard@nod.at>
12124 M:      Vignesh Raghavendra <vigneshr@ti.com>
12125 L:      linux-mtd@lists.infradead.org
12126 S:      Maintained
12127 W:      http://www.linux-mtd.infradead.org/
12128 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12129 C:      irc://irc.oftc.net/mtd
12130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12132 F:      Documentation/devicetree/bindings/mtd/
12133 F:      drivers/mtd/
12134 F:      include/linux/mtd/
12135 F:      include/uapi/mtd/
12136
12137 MEN A21 WATCHDOG DRIVER
12138 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12139 L:      linux-watchdog@vger.kernel.org
12140 S:      Maintained
12141 F:      drivers/watchdog/mena21_wdt.c
12142
12143 MEN CHAMELEON BUS (mcb)
12144 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12145 S:      Maintained
12146 F:      Documentation/driver-api/men-chameleon-bus.rst
12147 F:      drivers/mcb/
12148 F:      include/linux/mcb.h
12149
12150 MEN F21BMC (Board Management Controller)
12151 M:      Andreas Werner <andreas.werner@men.de>
12152 S:      Supported
12153 F:      Documentation/hwmon/menf21bmc.rst
12154 F:      drivers/hwmon/menf21bmc_hwmon.c
12155 F:      drivers/leds/leds-menf21bmc.c
12156 F:      drivers/mfd/menf21bmc.c
12157 F:      drivers/watchdog/menf21bmc_wdt.c
12158
12159 MEN Z069 WATCHDOG DRIVER
12160 M:      Johannes Thumshirn <jth@kernel.org>
12161 L:      linux-watchdog@vger.kernel.org
12162 S:      Maintained
12163 F:      drivers/watchdog/menz69_wdt.c
12164
12165 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12166 M:      Neil Armstrong <narmstrong@baylibre.com>
12167 L:      linux-media@vger.kernel.org
12168 L:      linux-amlogic@lists.infradead.org
12169 S:      Supported
12170 W:      http://linux-meson.com/
12171 T:      git git://linuxtv.org/media_tree.git
12172 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12173 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12174 F:      drivers/media/cec/platform/meson/ao-cec.c
12175
12176 MESON GE2D DRIVER FOR AMLOGIC SOCS
12177 M:      Neil Armstrong <narmstrong@baylibre.com>
12178 L:      linux-media@vger.kernel.org
12179 L:      linux-amlogic@lists.infradead.org
12180 S:      Supported
12181 T:      git git://linuxtv.org/media_tree.git
12182 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12183 F:      drivers/media/platform/meson/ge2d/
12184
12185 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12186 M:      Liang Yang <liang.yang@amlogic.com>
12187 L:      linux-mtd@lists.infradead.org
12188 S:      Maintained
12189 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12190 F:      drivers/mtd/nand/raw/meson_*
12191
12192 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12193 M:      Neil Armstrong <narmstrong@baylibre.com>
12194 L:      linux-media@vger.kernel.org
12195 L:      linux-amlogic@lists.infradead.org
12196 S:      Supported
12197 T:      git git://linuxtv.org/media_tree.git
12198 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12199 F:      drivers/staging/media/meson/vdec/
12200
12201 METHODE UDPU SUPPORT
12202 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12203 S:      Maintained
12204 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12205
12206 MHI BUS
12207 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12208 M:      Hemant Kumar <hemantk@codeaurora.org>
12209 L:      linux-arm-msm@vger.kernel.org
12210 S:      Maintained
12211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12212 F:      Documentation/ABI/stable/sysfs-bus-mhi
12213 F:      Documentation/mhi/
12214 F:      drivers/bus/mhi/
12215 F:      include/linux/mhi.h
12216
12217 MICROBLAZE ARCHITECTURE
12218 M:      Michal Simek <monstr@monstr.eu>
12219 S:      Supported
12220 W:      http://www.monstr.eu/fdt/
12221 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12222 F:      arch/microblaze/
12223
12224 MICROCHIP AT91 DMA DRIVERS
12225 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12226 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12228 L:      dmaengine@vger.kernel.org
12229 S:      Supported
12230 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12231 F:      drivers/dma/at_hdmac.c
12232 F:      drivers/dma/at_hdmac_regs.h
12233 F:      drivers/dma/at_xdmac.c
12234 F:      include/dt-bindings/dma/at91.h
12235
12236 MICROCHIP AT91 SERIAL DRIVER
12237 M:      Richard Genoud <richard.genoud@gmail.com>
12238 S:      Maintained
12239 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12240 F:      drivers/tty/serial/atmel_serial.c
12241 F:      drivers/tty/serial/atmel_serial.h
12242
12243 MICROCHIP AT91 USART MFD DRIVER
12244 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12245 L:      linux-kernel@vger.kernel.org
12246 S:      Supported
12247 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12248 F:      drivers/mfd/at91-usart.c
12249 F:      include/dt-bindings/mfd/at91-usart.h
12250
12251 MICROCHIP AT91 USART SPI DRIVER
12252 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12253 L:      linux-spi@vger.kernel.org
12254 S:      Supported
12255 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12256 F:      drivers/spi/spi-at91-usart.c
12257
12258 MICROCHIP AUDIO ASOC DRIVERS
12259 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12260 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12261 S:      Supported
12262 F:      sound/soc/atmel
12263
12264 MICROCHIP ECC DRIVER
12265 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12266 L:      linux-crypto@vger.kernel.org
12267 S:      Maintained
12268 F:      drivers/crypto/atmel-ecc.*
12269
12270 MICROCHIP I2C DRIVER
12271 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12272 L:      linux-i2c@vger.kernel.org
12273 S:      Supported
12274 F:      drivers/i2c/busses/i2c-at91-*.c
12275 F:      drivers/i2c/busses/i2c-at91.h
12276
12277 MICROCHIP ISC DRIVER
12278 M:      Eugen Hristev <eugen.hristev@microchip.com>
12279 L:      linux-media@vger.kernel.org
12280 S:      Supported
12281 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12282 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12283 F:      drivers/media/platform/atmel/atmel-isc-base.c
12284 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12285 F:      drivers/media/platform/atmel/atmel-isc.h
12286 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12287 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12288 F:      include/linux/atmel-isc-media.h
12289
12290 MICROCHIP ISI DRIVER
12291 M:      Eugen Hristev <eugen.hristev@microchip.com>
12292 L:      linux-media@vger.kernel.org
12293 S:      Supported
12294 F:      drivers/media/platform/atmel/atmel-isi.c
12295 F:      drivers/media/platform/atmel/atmel-isi.h
12296
12297 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12298 M:      Woojung Huh <woojung.huh@microchip.com>
12299 M:      UNGLinuxDriver@microchip.com
12300 L:      netdev@vger.kernel.org
12301 S:      Maintained
12302 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12303 F:      drivers/net/dsa/microchip/*
12304 F:      include/linux/platform_data/microchip-ksz.h
12305 F:      net/dsa/tag_ksz.c
12306
12307 MICROCHIP LAN743X ETHERNET DRIVER
12308 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12309 M:      UNGLinuxDriver@microchip.com
12310 L:      netdev@vger.kernel.org
12311 S:      Maintained
12312 F:      drivers/net/ethernet/microchip/lan743x_*
12313
12314 MICROCHIP LCDFB DRIVER
12315 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12316 L:      linux-fbdev@vger.kernel.org
12317 S:      Maintained
12318 F:      drivers/video/fbdev/atmel_lcdfb.c
12319 F:      include/video/atmel_lcdc.h
12320
12321 MICROCHIP MCP16502 PMIC DRIVER
12322 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12324 S:      Supported
12325 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12326 F:      drivers/regulator/mcp16502.c
12327
12328 MICROCHIP MCP3911 ADC DRIVER
12329 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12330 M:      Kent Gustavsson <kent@minoris.se>
12331 L:      linux-iio@vger.kernel.org
12332 S:      Supported
12333 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12334 F:      drivers/iio/adc/mcp3911.c
12335
12336 MICROCHIP MMC/SD/SDIO MCI DRIVER
12337 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12338 S:      Maintained
12339 F:      drivers/mmc/host/atmel-mci.c
12340
12341 MICROCHIP NAND DRIVER
12342 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12343 L:      linux-mtd@lists.infradead.org
12344 S:      Supported
12345 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12346 F:      drivers/mtd/nand/raw/atmel/*
12347
12348 MICROCHIP PWM DRIVER
12349 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12351 L:      linux-pwm@vger.kernel.org
12352 S:      Supported
12353 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12354 F:      drivers/pwm/pwm-atmel.c
12355
12356 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12357 M:      Eugen Hristev <eugen.hristev@microchip.com>
12358 L:      linux-iio@vger.kernel.org
12359 S:      Supported
12360 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12361 F:      drivers/iio/adc/at91-sama5d2_adc.c
12362 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12363
12364 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12365 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12366 S:      Supported
12367 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12368
12369 MICROCHIP SPI DRIVER
12370 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12371 S:      Supported
12372 F:      drivers/spi/spi-atmel.*
12373
12374 MICROCHIP SSC DRIVER
12375 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12377 S:      Supported
12378 F:      drivers/misc/atmel-ssc.c
12379 F:      include/linux/atmel-ssc.h
12380
12381 MICROCHIP USB251XB DRIVER
12382 M:      Richard Leitner <richard.leitner@skidata.com>
12383 L:      linux-usb@vger.kernel.org
12384 S:      Maintained
12385 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12386 F:      drivers/usb/misc/usb251xb.c
12387
12388 MICROCHIP USBA UDC DRIVER
12389 M:      Cristian Birsan <cristian.birsan@microchip.com>
12390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12391 S:      Supported
12392 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12393
12394 MICROCHIP WILC1000 WIFI DRIVER
12395 M:      Ajay Singh <ajay.kathat@microchip.com>
12396 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12397 L:      linux-wireless@vger.kernel.org
12398 S:      Supported
12399 F:      drivers/net/wireless/microchip/wilc1000/
12400
12401 MICROSEMI MIPS SOCS
12402 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12403 M:      UNGLinuxDriver@microchip.com
12404 L:      linux-mips@vger.kernel.org
12405 S:      Supported
12406 F:      Documentation/devicetree/bindings/mips/mscc.txt
12407 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12408 F:      arch/mips/boot/dts/mscc/
12409 F:      arch/mips/configs/generic/board-ocelot.config
12410 F:      arch/mips/generic/board-ocelot.c
12411
12412 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12413 M:      Don Brace <don.brace@microchip.com>
12414 L:      storagedev@microchip.com
12415 L:      linux-scsi@vger.kernel.org
12416 S:      Supported
12417 F:      Documentation/scsi/smartpqi.rst
12418 F:      drivers/scsi/smartpqi/Kconfig
12419 F:      drivers/scsi/smartpqi/Makefile
12420 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12421 F:      include/linux/cciss*.h
12422 F:      include/uapi/linux/cciss*.h
12423
12424 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12425 M:      Maximilian Luz <luzmaximilian@gmail.com>
12426 L:      linux-pm@vger.kernel.org
12427 L:      platform-driver-x86@vger.kernel.org
12428 S:      Maintained
12429 F:      drivers/power/supply/surface_battery.c
12430 F:      drivers/power/supply/surface_charger.c
12431
12432 MICROSOFT SURFACE DTX DRIVER
12433 M:      Maximilian Luz <luzmaximilian@gmail.com>
12434 L:      platform-driver-x86@vger.kernel.org
12435 S:      Maintained
12436 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12437 F:      drivers/platform/surface/surface_dtx.c
12438 F:      include/uapi/linux/surface_aggregator/dtx.h
12439
12440 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12441 M:      Maximilian Luz <luzmaximilian@gmail.com>
12442 L:      platform-driver-x86@vger.kernel.org
12443 S:      Maintained
12444 F:      drivers/platform/surface/surface_gpe.c
12445
12446 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12447 M:      Hans de Goede <hdegoede@redhat.com>
12448 M:      Mark Gross <mgross@linux.intel.com>
12449 M:      Maximilian Luz <luzmaximilian@gmail.com>
12450 L:      platform-driver-x86@vger.kernel.org
12451 S:      Maintained
12452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12453 F:      drivers/platform/surface/
12454
12455 MICROSOFT SURFACE HID TRANSPORT DRIVER
12456 M:      Maximilian Luz <luzmaximilian@gmail.com>
12457 L:      linux-input@vger.kernel.org
12458 L:      platform-driver-x86@vger.kernel.org
12459 S:      Maintained
12460 F:      drivers/hid/surface-hid/
12461
12462 MICROSOFT SURFACE HOT-PLUG DRIVER
12463 M:      Maximilian Luz <luzmaximilian@gmail.com>
12464 L:      platform-driver-x86@vger.kernel.org
12465 S:      Maintained
12466 F:      drivers/platform/surface/surface_hotplug.c
12467
12468 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12469 M:      Maximilian Luz <luzmaximilian@gmail.com>
12470 L:      platform-driver-x86@vger.kernel.org
12471 S:      Maintained
12472 F:      drivers/platform/surface/surface_platform_profile.c
12473
12474 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12475 M:      Chen Yu <yu.c.chen@intel.com>
12476 L:      platform-driver-x86@vger.kernel.org
12477 S:      Supported
12478 F:      drivers/platform/surface/surfacepro3_button.c
12479
12480 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12481 M:      Maximilian Luz <luzmaximilian@gmail.com>
12482 L:      platform-driver-x86@vger.kernel.org
12483 S:      Maintained
12484 W:      https://github.com/linux-surface/surface-aggregator-module
12485 C:      irc://irc.libera.chat/linux-surface
12486 F:      Documentation/driver-api/surface_aggregator/
12487 F:      drivers/platform/surface/aggregator/
12488 F:      drivers/platform/surface/surface_acpi_notify.c
12489 F:      drivers/platform/surface/surface_aggregator_cdev.c
12490 F:      drivers/platform/surface/surface_aggregator_registry.c
12491 F:      include/linux/surface_acpi_notify.h
12492 F:      include/linux/surface_aggregator/
12493 F:      include/uapi/linux/surface_aggregator/
12494
12495 MICROTEK X6 SCANNER
12496 M:      Oliver Neukum <oliver@neukum.org>
12497 S:      Maintained
12498 F:      drivers/usb/image/microtek.*
12499
12500 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12501 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12502 M:      Luka Perkov <luka.perkov@sartura.hr>
12503 S:      Maintained
12504 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12505 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12506 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12507 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12508 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12509 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12510
12511 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12512 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12513 L:      linux-media@vger.kernel.org
12514 S:      Maintained
12515 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12516 F:      Documentation/driver-api/media/drivers/ccs/
12517 F:      Documentation/userspace-api/media/drivers/ccs.rst
12518 F:      drivers/media/i2c/ccs-pll.c
12519 F:      drivers/media/i2c/ccs-pll.h
12520 F:      drivers/media/i2c/ccs/
12521 F:      include/uapi/linux/ccs.h
12522 F:      include/uapi/linux/smiapp.h
12523
12524 MIPS
12525 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12526 L:      linux-mips@vger.kernel.org
12527 S:      Maintained
12528 W:      http://www.linux-mips.org/
12529 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12531 F:      Documentation/devicetree/bindings/mips/
12532 F:      Documentation/mips/
12533 F:      arch/mips/
12534 F:      drivers/platform/mips/
12535
12536 MIPS BOSTON DEVELOPMENT BOARD
12537 M:      Paul Burton <paulburton@kernel.org>
12538 L:      linux-mips@vger.kernel.org
12539 S:      Maintained
12540 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12541 F:      arch/mips/boot/dts/img/boston.dts
12542 F:      arch/mips/configs/generic/board-boston.config
12543 F:      drivers/clk/imgtec/clk-boston.c
12544 F:      include/dt-bindings/clock/boston-clock.h
12545
12546 MIPS CORE DRIVERS
12547 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12548 M:      Serge Semin <fancer.lancer@gmail.com>
12549 L:      linux-mips@vger.kernel.org
12550 S:      Supported
12551 F:      drivers/bus/mips_cdmm.c
12552 F:      drivers/clocksource/mips-gic-timer.c
12553 F:      drivers/cpuidle/cpuidle-cps.c
12554 F:      drivers/irqchip/irq-mips-cpu.c
12555 F:      drivers/irqchip/irq-mips-gic.c
12556
12557 MIPS GENERIC PLATFORM
12558 M:      Paul Burton <paulburton@kernel.org>
12559 L:      linux-mips@vger.kernel.org
12560 S:      Supported
12561 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12562 F:      arch/mips/generic/
12563 F:      arch/mips/tools/generic-board-config.sh
12564
12565 MIPS RINT INSTRUCTION EMULATION
12566 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12567 L:      linux-mips@vger.kernel.org
12568 S:      Supported
12569 F:      arch/mips/math-emu/dp_rint.c
12570 F:      arch/mips/math-emu/sp_rint.c
12571
12572 MIPS/LOONGSON1 ARCHITECTURE
12573 M:      Keguang Zhang <keguang.zhang@gmail.com>
12574 L:      linux-mips@vger.kernel.org
12575 S:      Maintained
12576 F:      arch/mips/include/asm/mach-loongson32/
12577 F:      arch/mips/loongson32/
12578 F:      drivers/*/*/*loongson1*
12579 F:      drivers/*/*loongson1*
12580
12581 MIPS/LOONGSON2EF ARCHITECTURE
12582 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12583 L:      linux-mips@vger.kernel.org
12584 S:      Maintained
12585 F:      arch/mips/include/asm/mach-loongson2ef/
12586 F:      arch/mips/loongson2ef/
12587 F:      drivers/cpufreq/loongson2_cpufreq.c
12588
12589 MIPS/LOONGSON64 ARCHITECTURE
12590 M:      Huacai Chen <chenhuacai@kernel.org>
12591 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12592 L:      linux-mips@vger.kernel.org
12593 S:      Maintained
12594 F:      arch/mips/include/asm/mach-loongson64/
12595 F:      arch/mips/loongson64/
12596 F:      drivers/irqchip/irq-loongson*
12597 F:      drivers/platform/mips/cpu_hwmon.c
12598
12599 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12600 M:      Hans Verkuil <hverkuil@xs4all.nl>
12601 L:      linux-media@vger.kernel.org
12602 S:      Odd Fixes
12603 W:      https://linuxtv.org
12604 T:      git git://linuxtv.org/media_tree.git
12605 F:      drivers/media/radio/radio-miropcm20*
12606
12607 MMP SUPPORT
12608 R:      Lubomir Rintel <lkundrak@v3.sk>
12609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12610 S:      Odd Fixes
12611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12612 F:      arch/arm/boot/dts/mmp*
12613 F:      arch/arm/mach-mmp/
12614 F:      include/linux/soc/mmp/
12615
12616 MMP USB PHY DRIVERS
12617 R:      Lubomir Rintel <lkundrak@v3.sk>
12618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12619 S:      Maintained
12620 F:      drivers/phy/marvell/phy-mmp3-usb.c
12621 F:      drivers/phy/marvell/phy-pxa-usb.c
12622
12623 MMU GATHER AND TLB INVALIDATION
12624 M:      Will Deacon <will@kernel.org>
12625 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12626 M:      Andrew Morton <akpm@linux-foundation.org>
12627 M:      Nick Piggin <npiggin@gmail.com>
12628 M:      Peter Zijlstra <peterz@infradead.org>
12629 L:      linux-arch@vger.kernel.org
12630 L:      linux-mm@kvack.org
12631 S:      Maintained
12632 F:      arch/*/include/asm/tlb.h
12633 F:      include/asm-generic/tlb.h
12634 F:      mm/mmu_gather.c
12635
12636 MN88472 MEDIA DRIVER
12637 M:      Antti Palosaari <crope@iki.fi>
12638 L:      linux-media@vger.kernel.org
12639 S:      Maintained
12640 W:      https://linuxtv.org
12641 W:      http://palosaari.fi/linux/
12642 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12643 F:      drivers/media/dvb-frontends/mn88472*
12644
12645 MN88473 MEDIA DRIVER
12646 M:      Antti Palosaari <crope@iki.fi>
12647 L:      linux-media@vger.kernel.org
12648 S:      Maintained
12649 W:      https://linuxtv.org
12650 W:      http://palosaari.fi/linux/
12651 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12652 F:      drivers/media/dvb-frontends/mn88473*
12653
12654 MODULE SUPPORT
12655 M:      Luis Chamberlain <mcgrof@kernel.org>
12656 M:      Jessica Yu <jeyu@kernel.org>
12657 S:      Maintained
12658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12659 F:      include/linux/module.h
12660 F:      kernel/module.c
12661
12662 MONOLITHIC POWER SYSTEM PMIC DRIVER
12663 M:      Saravanan Sekar <sravanhome@gmail.com>
12664 S:      Maintained
12665 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12666 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12667 F:      drivers/iio/adc/mp2629_adc.c
12668 F:      drivers/mfd/mp2629.c
12669 F:      drivers/power/supply/mp2629_charger.c
12670 F:      drivers/regulator/mp5416.c
12671 F:      drivers/regulator/mpq7920.c
12672 F:      drivers/regulator/mpq7920.h
12673 F:      include/linux/mfd/mp2629.h
12674
12675 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12676 S:      Orphan
12677 W:      http://popies.net/meye/
12678 F:      Documentation/userspace-api/media/drivers/meye*
12679 F:      drivers/media/pci/meye/
12680 F:      include/uapi/linux/meye.h
12681
12682 MOTORCOMM PHY DRIVER
12683 M:      Peter Geis <pgwipeout@gmail.com>
12684 L:      netdev@vger.kernel.org
12685 S:      Maintained
12686 F:      drivers/net/phy/motorcomm.c
12687
12688 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12689 M:      Jiri Slaby <jirislaby@kernel.org>
12690 S:      Maintained
12691 F:      Documentation/driver-api/serial/moxa-smartio.rst
12692 F:      drivers/tty/mxser.*
12693
12694 MR800 AVERMEDIA USB FM RADIO DRIVER
12695 M:      Alexey Klimov <klimov.linux@gmail.com>
12696 L:      linux-media@vger.kernel.org
12697 S:      Maintained
12698 T:      git git://linuxtv.org/media_tree.git
12699 F:      drivers/media/radio/radio-mr800.c
12700
12701 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12702 M:      Alan Ott <alan@signal11.us>
12703 L:      linux-wpan@vger.kernel.org
12704 S:      Maintained
12705 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12706 F:      drivers/net/ieee802154/mrf24j40.c
12707
12708 MSI LAPTOP SUPPORT
12709 M:      "Lee, Chun-Yi" <jlee@suse.com>
12710 L:      platform-driver-x86@vger.kernel.org
12711 S:      Maintained
12712 F:      drivers/platform/x86/msi-laptop.c
12713
12714 MSI WMI SUPPORT
12715 L:      platform-driver-x86@vger.kernel.org
12716 S:      Orphan
12717 F:      drivers/platform/x86/msi-wmi.c
12718
12719 MSI001 MEDIA DRIVER
12720 M:      Antti Palosaari <crope@iki.fi>
12721 L:      linux-media@vger.kernel.org
12722 S:      Maintained
12723 W:      https://linuxtv.org
12724 W:      http://palosaari.fi/linux/
12725 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12726 T:      git git://linuxtv.org/anttip/media_tree.git
12727 F:      drivers/media/tuners/msi001*
12728
12729 MSI2500 MEDIA DRIVER
12730 M:      Antti Palosaari <crope@iki.fi>
12731 L:      linux-media@vger.kernel.org
12732 S:      Maintained
12733 W:      https://linuxtv.org
12734 W:      http://palosaari.fi/linux/
12735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12736 T:      git git://linuxtv.org/anttip/media_tree.git
12737 F:      drivers/media/usb/msi2500/
12738
12739 MSTAR INTERRUPT CONTROLLER DRIVER
12740 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12741 M:      Daniel Palmer <daniel@thingy.jp>
12742 S:      Maintained
12743 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12744 F:      drivers/irqchip/irq-mst-intc.c
12745
12746 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12747 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12748 L:      linux-mtd@lists.infradead.org
12749 S:      Maintained
12750 F:      drivers/mtd/devices/docg3*
12751
12752 MT9M032 APTINA SENSOR DRIVER
12753 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12754 L:      linux-media@vger.kernel.org
12755 S:      Maintained
12756 T:      git git://linuxtv.org/media_tree.git
12757 F:      drivers/media/i2c/mt9m032.c
12758 F:      include/media/i2c/mt9m032.h
12759
12760 MT9P031 APTINA CAMERA SENSOR
12761 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12762 L:      linux-media@vger.kernel.org
12763 S:      Maintained
12764 T:      git git://linuxtv.org/media_tree.git
12765 F:      drivers/media/i2c/mt9p031.c
12766 F:      include/media/i2c/mt9p031.h
12767
12768 MT9T001 APTINA CAMERA SENSOR
12769 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12770 L:      linux-media@vger.kernel.org
12771 S:      Maintained
12772 T:      git git://linuxtv.org/media_tree.git
12773 F:      drivers/media/i2c/mt9t001.c
12774 F:      include/media/i2c/mt9t001.h
12775
12776 MT9T112 APTINA CAMERA SENSOR
12777 M:      Jacopo Mondi <jacopo@jmondi.org>
12778 L:      linux-media@vger.kernel.org
12779 S:      Odd Fixes
12780 T:      git git://linuxtv.org/media_tree.git
12781 F:      drivers/media/i2c/mt9t112.c
12782 F:      include/media/i2c/mt9t112.h
12783
12784 MT9V032 APTINA CAMERA SENSOR
12785 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12786 L:      linux-media@vger.kernel.org
12787 S:      Maintained
12788 T:      git git://linuxtv.org/media_tree.git
12789 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12790 F:      drivers/media/i2c/mt9v032.c
12791 F:      include/media/i2c/mt9v032.h
12792
12793 MT9V111 APTINA CAMERA SENSOR
12794 M:      Jacopo Mondi <jacopo@jmondi.org>
12795 L:      linux-media@vger.kernel.org
12796 S:      Maintained
12797 T:      git git://linuxtv.org/media_tree.git
12798 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12799 F:      drivers/media/i2c/mt9v111.c
12800
12801 MULTIFUNCTION DEVICES (MFD)
12802 M:      Lee Jones <lee.jones@linaro.org>
12803 S:      Supported
12804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12805 F:      Documentation/devicetree/bindings/mfd/
12806 F:      drivers/mfd/
12807 F:      include/dt-bindings/mfd/
12808 F:      include/linux/mfd/
12809
12810 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12811 S:      Orphan
12812 F:      drivers/mmc/host/mmc_spi.c
12813 F:      include/linux/spi/mmc_spi.h
12814
12815 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12816 M:      Ulf Hansson <ulf.hansson@linaro.org>
12817 L:      linux-mmc@vger.kernel.org
12818 S:      Maintained
12819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12820 F:      Documentation/devicetree/bindings/mmc/
12821 F:      drivers/mmc/
12822 F:      include/linux/mmc/
12823 F:      include/uapi/linux/mmc/
12824
12825 MULTIPLEXER SUBSYSTEM
12826 M:      Peter Rosin <peda@axentia.se>
12827 S:      Maintained
12828 F:      Documentation/ABI/testing/sysfs-class-mux*
12829 F:      Documentation/devicetree/bindings/mux/
12830 F:      drivers/mux/
12831 F:      include/dt-bindings/mux/
12832 F:      include/linux/mux/
12833
12834 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12835 M:      Bin Liu <b-liu@ti.com>
12836 L:      linux-usb@vger.kernel.org
12837 S:      Maintained
12838 F:      drivers/usb/musb/
12839
12840 MXL301RF MEDIA DRIVER
12841 M:      Akihiro Tsukada <tskd08@gmail.com>
12842 L:      linux-media@vger.kernel.org
12843 S:      Odd Fixes
12844 F:      drivers/media/tuners/mxl301rf*
12845
12846 MXL5007T MEDIA DRIVER
12847 M:      Michael Krufky <mkrufky@linuxtv.org>
12848 L:      linux-media@vger.kernel.org
12849 S:      Maintained
12850 W:      https://linuxtv.org
12851 W:      http://github.com/mkrufky
12852 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12853 T:      git git://linuxtv.org/mkrufky/tuners.git
12854 F:      drivers/media/tuners/mxl5007t.*
12855
12856 MXSFB DRM DRIVER
12857 M:      Marek Vasut <marex@denx.de>
12858 M:      Stefan Agner <stefan@agner.ch>
12859 L:      dri-devel@lists.freedesktop.org
12860 S:      Supported
12861 T:      git git://anongit.freedesktop.org/drm/drm-misc
12862 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12863 F:      drivers/gpu/drm/mxsfb/
12864
12865 MYLEX DAC960 PCI RAID Controller
12866 M:      Hannes Reinecke <hare@kernel.org>
12867 L:      linux-scsi@vger.kernel.org
12868 S:      Supported
12869 F:      drivers/scsi/myrb.*
12870 F:      drivers/scsi/myrs.*
12871
12872 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12873 M:      Chris Lee <christopher.lee@cspi.com>
12874 L:      netdev@vger.kernel.org
12875 S:      Supported
12876 W:      https://www.cspi.com/ethernet-products/support/downloads/
12877 F:      drivers/net/ethernet/myricom/myri10ge/
12878
12879 NAND FLASH SUBSYSTEM
12880 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12881 R:      Richard Weinberger <richard@nod.at>
12882 L:      linux-mtd@lists.infradead.org
12883 S:      Maintained
12884 W:      http://www.linux-mtd.infradead.org/
12885 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12886 C:      irc://irc.oftc.net/mtd
12887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12888 F:      drivers/mtd/nand/
12889 F:      include/linux/mtd/*nand*.h
12890
12891 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12892 M:      Daniel Mack <zonque@gmail.com>
12893 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12894 S:      Maintained
12895 W:      http://www.native-instruments.com
12896 F:      sound/usb/caiaq/
12897
12898 NATSEMI ETHERNET DRIVER (DP8381x)
12899 S:      Orphan
12900 F:      drivers/net/ethernet/natsemi/natsemi.c
12901
12902 NCR 5380 SCSI DRIVERS
12903 M:      Finn Thain <fthain@linux-m68k.org>
12904 M:      Michael Schmitz <schmitzmic@gmail.com>
12905 L:      linux-scsi@vger.kernel.org
12906 S:      Maintained
12907 F:      Documentation/scsi/g_NCR5380.rst
12908 F:      drivers/scsi/NCR5380.*
12909 F:      drivers/scsi/arm/cumana_1.c
12910 F:      drivers/scsi/arm/oak.c
12911 F:      drivers/scsi/atari_scsi.*
12912 F:      drivers/scsi/dmx3191d.c
12913 F:      drivers/scsi/g_NCR5380.*
12914 F:      drivers/scsi/mac_scsi.*
12915 F:      drivers/scsi/sun3_scsi.*
12916 F:      drivers/scsi/sun3_scsi_vme.c
12917
12918 NCSI LIBRARY
12919 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12920 S:      Maintained
12921 F:      net/ncsi/
12922
12923 NCT6775 HARDWARE MONITOR DRIVER
12924 M:      Guenter Roeck <linux@roeck-us.net>
12925 L:      linux-hwmon@vger.kernel.org
12926 S:      Maintained
12927 F:      Documentation/hwmon/nct6775.rst
12928 F:      drivers/hwmon/nct6775.c
12929
12930 NETDEVSIM
12931 M:      Jakub Kicinski <kuba@kernel.org>
12932 S:      Maintained
12933 F:      drivers/net/netdevsim/*
12934
12935 NETEM NETWORK EMULATOR
12936 M:      Stephen Hemminger <stephen@networkplumber.org>
12937 L:      netdev@vger.kernel.org
12938 S:      Maintained
12939 F:      net/sched/sch_netem.c
12940
12941 NETERION 10GbE DRIVERS (s2io/vxge)
12942 M:      Jon Mason <jdmason@kudzu.us>
12943 L:      netdev@vger.kernel.org
12944 S:      Supported
12945 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12946 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12947 F:      drivers/net/ethernet/neterion/
12948
12949 NETFILTER
12950 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12951 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12952 M:      Florian Westphal <fw@strlen.de>
12953 L:      netfilter-devel@vger.kernel.org
12954 L:      coreteam@netfilter.org
12955 S:      Maintained
12956 W:      http://www.netfilter.org/
12957 W:      http://www.iptables.org/
12958 W:      http://www.nftables.org/
12959 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12960 C:      irc://irc.libera.chat/netfilter
12961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12963 F:      include/linux/netfilter*
12964 F:      include/linux/netfilter/
12965 F:      include/net/netfilter/
12966 F:      include/uapi/linux/netfilter*
12967 F:      include/uapi/linux/netfilter/
12968 F:      net/*/netfilter.c
12969 F:      net/*/netfilter/
12970 F:      net/bridge/br_netfilter*.c
12971 F:      net/netfilter/
12972
12973 NETROM NETWORK LAYER
12974 M:      Ralf Baechle <ralf@linux-mips.org>
12975 L:      linux-hams@vger.kernel.org
12976 S:      Maintained
12977 W:      http://www.linux-ax25.org/
12978 F:      include/net/netrom.h
12979 F:      include/uapi/linux/netrom.h
12980 F:      net/netrom/
12981
12982 NETRONIX EMBEDDED CONTROLLER
12983 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
12984 S:      Maintained
12985 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12986 F:      drivers/mfd/ntxec.c
12987 F:      drivers/pwm/pwm-ntxec.c
12988 F:      drivers/rtc/rtc-ntxec.c
12989 F:      include/linux/mfd/ntxec.h
12990
12991 NETRONOME ETHERNET DRIVERS
12992 M:      Simon Horman <simon.horman@corigine.com>
12993 R:      Jakub Kicinski <kuba@kernel.org>
12994 L:      oss-drivers@corigine.com
12995 S:      Maintained
12996 F:      drivers/net/ethernet/netronome/
12997
12998 NETWORK BLOCK DEVICE (NBD)
12999 M:      Josef Bacik <josef@toxicpanda.com>
13000 L:      linux-block@vger.kernel.org
13001 L:      nbd@other.debian.org
13002 S:      Maintained
13003 F:      Documentation/admin-guide/blockdev/nbd.rst
13004 F:      drivers/block/nbd.c
13005 F:      include/trace/events/nbd.h
13006 F:      include/uapi/linux/nbd.h
13007
13008 NETWORK DROP MONITOR
13009 M:      Neil Horman <nhorman@tuxdriver.com>
13010 L:      netdev@vger.kernel.org
13011 S:      Maintained
13012 W:      https://fedorahosted.org/dropwatch/
13013 F:      include/uapi/linux/net_dropmon.h
13014 F:      net/core/drop_monitor.c
13015
13016 NETWORKING DRIVERS
13017 M:      "David S. Miller" <davem@davemloft.net>
13018 M:      Jakub Kicinski <kuba@kernel.org>
13019 L:      netdev@vger.kernel.org
13020 S:      Maintained
13021 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13024 F:      Documentation/devicetree/bindings/net/
13025 F:      drivers/connector/
13026 F:      drivers/net/
13027 F:      include/linux/etherdevice.h
13028 F:      include/linux/fcdevice.h
13029 F:      include/linux/fddidevice.h
13030 F:      include/linux/hippidevice.h
13031 F:      include/linux/if_*
13032 F:      include/linux/inetdevice.h
13033 F:      include/linux/netdevice.h
13034 F:      include/uapi/linux/if_*
13035 F:      include/uapi/linux/netdevice.h
13036
13037 NETWORKING DRIVERS (WIRELESS)
13038 M:      Kalle Valo <kvalo@codeaurora.org>
13039 L:      linux-wireless@vger.kernel.org
13040 S:      Maintained
13041 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13044 F:      Documentation/devicetree/bindings/net/wireless/
13045 F:      drivers/net/wireless/
13046
13047 NETWORKING [DSA]
13048 M:      Andrew Lunn <andrew@lunn.ch>
13049 M:      Vivien Didelot <vivien.didelot@gmail.com>
13050 M:      Florian Fainelli <f.fainelli@gmail.com>
13051 M:      Vladimir Oltean <olteanv@gmail.com>
13052 S:      Maintained
13053 F:      Documentation/devicetree/bindings/net/dsa/
13054 F:      drivers/net/dsa/
13055 F:      include/linux/dsa/
13056 F:      include/linux/platform_data/dsa.h
13057 F:      include/net/dsa.h
13058 F:      net/dsa/
13059 F:      tools/testing/selftests/drivers/net/dsa/
13060
13061 NETWORKING [GENERAL]
13062 M:      "David S. Miller" <davem@davemloft.net>
13063 M:      Jakub Kicinski <kuba@kernel.org>
13064 L:      netdev@vger.kernel.org
13065 S:      Maintained
13066 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13067 B:      mailto:netdev@vger.kernel.org
13068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13070 F:      Documentation/networking/
13071 F:      include/linux/in.h
13072 F:      include/linux/net.h
13073 F:      include/linux/netdevice.h
13074 F:      include/net/
13075 F:      include/uapi/linux/in.h
13076 F:      include/uapi/linux/net.h
13077 F:      include/uapi/linux/net_namespace.h
13078 F:      include/uapi/linux/netdevice.h
13079 F:      lib/net_utils.c
13080 F:      lib/random32.c
13081 F:      net/
13082 F:      tools/testing/selftests/net/
13083
13084 NETWORKING [IPSEC]
13085 M:      Steffen Klassert <steffen.klassert@secunet.com>
13086 M:      Herbert Xu <herbert@gondor.apana.org.au>
13087 M:      "David S. Miller" <davem@davemloft.net>
13088 L:      netdev@vger.kernel.org
13089 S:      Maintained
13090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13092 F:      include/net/xfrm.h
13093 F:      include/uapi/linux/xfrm.h
13094 F:      net/ipv4/ah4.c
13095 F:      net/ipv4/esp4*
13096 F:      net/ipv4/ip_vti.c
13097 F:      net/ipv4/ipcomp.c
13098 F:      net/ipv4/xfrm*
13099 F:      net/ipv6/ah6.c
13100 F:      net/ipv6/esp6*
13101 F:      net/ipv6/ip6_vti.c
13102 F:      net/ipv6/ipcomp6.c
13103 F:      net/ipv6/xfrm*
13104 F:      net/key/
13105 F:      net/xfrm/
13106 F:      tools/testing/selftests/net/ipsec.c
13107
13108 NETWORKING [IPv4/IPv6]
13109 M:      "David S. Miller" <davem@davemloft.net>
13110 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13111 M:      David Ahern <dsahern@kernel.org>
13112 L:      netdev@vger.kernel.org
13113 S:      Maintained
13114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13115 F:      arch/x86/net/*
13116 F:      include/net/ip*
13117 F:      net/ipv4/
13118 F:      net/ipv6/
13119
13120 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13121 M:      Paul Moore <paul@paul-moore.com>
13122 L:      netdev@vger.kernel.org
13123 L:      linux-security-module@vger.kernel.org
13124 S:      Maintained
13125 W:      https://github.com/netlabel
13126 F:      Documentation/netlabel/
13127 F:      include/net/calipso.h
13128 F:      include/net/cipso_ipv4.h
13129 F:      include/net/netlabel.h
13130 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13131 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13132 F:      net/ipv4/cipso_ipv4.c
13133 F:      net/ipv6/calipso.c
13134 F:      net/netfilter/xt_CONNSECMARK.c
13135 F:      net/netfilter/xt_SECMARK.c
13136 F:      net/netlabel/
13137
13138 NETWORKING [MPTCP]
13139 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13140 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13141 L:      netdev@vger.kernel.org
13142 L:      mptcp@lists.linux.dev
13143 S:      Maintained
13144 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13145 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13146 F:      Documentation/networking/mptcp-sysctl.rst
13147 F:      include/net/mptcp.h
13148 F:      include/trace/events/mptcp.h
13149 F:      include/uapi/linux/mptcp.h
13150 F:      net/mptcp/
13151 F:      tools/testing/selftests/net/mptcp/
13152
13153 NETWORKING [TCP]
13154 M:      Eric Dumazet <edumazet@google.com>
13155 L:      netdev@vger.kernel.org
13156 S:      Maintained
13157 F:      include/linux/tcp.h
13158 F:      include/net/tcp.h
13159 F:      include/trace/events/tcp.h
13160 F:      include/uapi/linux/tcp.h
13161 F:      net/ipv4/syncookies.c
13162 F:      net/ipv4/tcp*.c
13163 F:      net/ipv6/syncookies.c
13164 F:      net/ipv6/tcp*.c
13165
13166 NETWORKING [TLS]
13167 M:      Boris Pismenny <borisp@nvidia.com>
13168 M:      John Fastabend <john.fastabend@gmail.com>
13169 M:      Daniel Borkmann <daniel@iogearbox.net>
13170 M:      Jakub Kicinski <kuba@kernel.org>
13171 L:      netdev@vger.kernel.org
13172 S:      Maintained
13173 F:      include/net/tls.h
13174 F:      include/uapi/linux/tls.h
13175 F:      net/tls/*
13176
13177 NETWORKING [WIRELESS]
13178 L:      linux-wireless@vger.kernel.org
13179 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13180
13181 NETXEN (1/10) GbE SUPPORT
13182 M:      Manish Chopra <manishc@marvell.com>
13183 M:      Rahul Verma <rahulv@marvell.com>
13184 M:      GR-Linux-NIC-Dev@marvell.com
13185 L:      netdev@vger.kernel.org
13186 S:      Supported
13187 F:      drivers/net/ethernet/qlogic/netxen/
13188
13189 NET_FAILOVER MODULE
13190 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13191 L:      netdev@vger.kernel.org
13192 S:      Supported
13193 F:      Documentation/networking/net_failover.rst
13194 F:      drivers/net/net_failover.c
13195 F:      include/net/net_failover.h
13196
13197 NEXTHOP
13198 M:      David Ahern <dsahern@kernel.org>
13199 L:      netdev@vger.kernel.org
13200 S:      Maintained
13201 F:      include/net/netns/nexthop.h
13202 F:      include/net/nexthop.h
13203 F:      include/uapi/linux/nexthop.h
13204 F:      net/ipv4/nexthop.c
13205
13206 NFC SUBSYSTEM
13207 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13208 L:      linux-nfc@lists.01.org (subscribers-only)
13209 L:      netdev@vger.kernel.org
13210 S:      Maintained
13211 F:      Documentation/devicetree/bindings/net/nfc/
13212 F:      drivers/nfc/
13213 F:      include/linux/platform_data/nfcmrvl.h
13214 F:      include/net/nfc/
13215 F:      include/uapi/linux/nfc.h
13216 F:      net/nfc/
13217
13218 NFC VIRTUAL NCI DEVICE DRIVER
13219 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13220 L:      netdev@vger.kernel.org
13221 L:      linux-nfc@lists.01.org (subscribers-only)
13222 S:      Supported
13223 F:      drivers/nfc/virtual_ncidev.c
13224 F:      tools/testing/selftests/nci/
13225
13226 NFS, SUNRPC, AND LOCKD CLIENTS
13227 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13228 M:      Anna Schumaker <anna.schumaker@netapp.com>
13229 L:      linux-nfs@vger.kernel.org
13230 S:      Maintained
13231 W:      http://client.linux-nfs.org
13232 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13233 F:      fs/lockd/
13234 F:      fs/nfs/
13235 F:      fs/nfs_common/
13236 F:      include/linux/lockd/
13237 F:      include/linux/nfs*
13238 F:      include/linux/sunrpc/
13239 F:      include/uapi/linux/nfs*
13240 F:      include/uapi/linux/sunrpc/
13241 F:      net/sunrpc/
13242 F:      Documentation/filesystems/nfs/
13243
13244 NILFS2 FILESYSTEM
13245 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13246 L:      linux-nilfs@vger.kernel.org
13247 S:      Supported
13248 W:      https://nilfs.sourceforge.io/
13249 W:      https://nilfs.osdn.jp/
13250 T:      git git://github.com/konis/nilfs2.git
13251 F:      Documentation/filesystems/nilfs2.rst
13252 F:      fs/nilfs2/
13253 F:      include/trace/events/nilfs2.h
13254 F:      include/uapi/linux/nilfs2_api.h
13255 F:      include/uapi/linux/nilfs2_ondisk.h
13256
13257 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13258 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13259 S:      Maintained
13260 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13261 F:      Documentation/scsi/NinjaSCSI.rst
13262 F:      drivers/scsi/pcmcia/nsp_*
13263
13264 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13265 M:      GOTO Masanori <gotom@debian.or.jp>
13266 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13267 S:      Maintained
13268 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13269 F:      Documentation/scsi/NinjaSCSI.rst
13270 F:      drivers/scsi/nsp32*
13271
13272 NIOS2 ARCHITECTURE
13273 M:      Dinh Nguyen <dinguyen@kernel.org>
13274 S:      Maintained
13275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13276 F:      arch/nios2/
13277
13278 NITRO ENCLAVES (NE)
13279 M:      Andra Paraschiv <andraprs@amazon.com>
13280 M:      Alexandru Vasile <lexnv@amazon.com>
13281 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13282 L:      linux-kernel@vger.kernel.org
13283 S:      Supported
13284 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13285 F:      Documentation/virt/ne_overview.rst
13286 F:      drivers/virt/nitro_enclaves/
13287 F:      include/linux/nitro_enclaves.h
13288 F:      include/uapi/linux/nitro_enclaves.h
13289 F:      samples/nitro_enclaves/
13290
13291 NOHZ, DYNTICKS SUPPORT
13292 M:      Frederic Weisbecker <fweisbec@gmail.com>
13293 M:      Thomas Gleixner <tglx@linutronix.de>
13294 M:      Ingo Molnar <mingo@kernel.org>
13295 L:      linux-kernel@vger.kernel.org
13296 S:      Maintained
13297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13298 F:      include/linux/sched/nohz.h
13299 F:      include/linux/tick.h
13300 F:      kernel/time/tick*.*
13301
13302 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13303 M:      Pavel Machek <pavel@ucw.cz>
13304 M:      Sakari Ailus <sakari.ailus@iki.fi>
13305 L:      linux-media@vger.kernel.org
13306 S:      Maintained
13307 F:      drivers/media/i2c/ad5820.c
13308 F:      drivers/media/i2c/et8ek8
13309
13310 NOKIA N900 POWER SUPPLY DRIVERS
13311 R:      Pali Rohár <pali@kernel.org>
13312 F:      drivers/power/supply/bq2415x_charger.c
13313 F:      drivers/power/supply/bq27xxx_battery.c
13314 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13315 F:      drivers/power/supply/isp1704_charger.c
13316 F:      drivers/power/supply/rx51_battery.c
13317 F:      include/linux/power/bq2415x_charger.h
13318 F:      include/linux/power/bq27xxx_battery.h
13319
13320 NOLIBC HEADER FILE
13321 M:      Willy Tarreau <w@1wt.eu>
13322 S:      Maintained
13323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13324 F:      tools/include/nolibc/
13325
13326 NSDEPS
13327 M:      Matthias Maennich <maennich@google.com>
13328 S:      Maintained
13329 F:      Documentation/core-api/symbol-namespaces.rst
13330 F:      scripts/nsdeps
13331
13332 NTB AMD DRIVER
13333 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13334 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13335 L:      linux-ntb@googlegroups.com
13336 S:      Supported
13337 F:      drivers/ntb/hw/amd/
13338
13339 NTB DRIVER CORE
13340 M:      Jon Mason <jdmason@kudzu.us>
13341 M:      Dave Jiang <dave.jiang@intel.com>
13342 M:      Allen Hubbe <allenbh@gmail.com>
13343 L:      linux-ntb@googlegroups.com
13344 S:      Supported
13345 W:      https://github.com/jonmason/ntb/wiki
13346 T:      git git://github.com/jonmason/ntb.git
13347 F:      drivers/net/ntb_netdev.c
13348 F:      drivers/ntb/
13349 F:      include/linux/ntb.h
13350 F:      include/linux/ntb_transport.h
13351 F:      tools/testing/selftests/ntb/
13352
13353 NTB IDT DRIVER
13354 M:      Serge Semin <fancer.lancer@gmail.com>
13355 L:      linux-ntb@googlegroups.com
13356 S:      Supported
13357 F:      drivers/ntb/hw/idt/
13358
13359 NTB INTEL DRIVER
13360 M:      Dave Jiang <dave.jiang@intel.com>
13361 L:      linux-ntb@googlegroups.com
13362 S:      Supported
13363 W:      https://github.com/davejiang/linux/wiki
13364 T:      git https://github.com/davejiang/linux.git
13365 F:      drivers/ntb/hw/intel/
13366
13367 NTFS FILESYSTEM
13368 M:      Anton Altaparmakov <anton@tuxera.com>
13369 L:      linux-ntfs-dev@lists.sourceforge.net
13370 S:      Supported
13371 W:      http://www.tuxera.com/
13372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13373 F:      Documentation/filesystems/ntfs.rst
13374 F:      fs/ntfs/
13375
13376 NTFS3 FILESYSTEM
13377 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13378 L:      ntfs3@lists.linux.dev
13379 S:      Supported
13380 W:      http://www.paragon-software.com/
13381 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13382 F:      Documentation/filesystems/ntfs3.rst
13383 F:      fs/ntfs3/
13384
13385 NUBUS SUBSYSTEM
13386 M:      Finn Thain <fthain@linux-m68k.org>
13387 L:      linux-m68k@lists.linux-m68k.org
13388 S:      Maintained
13389 F:      arch/*/include/asm/nubus.h
13390 F:      drivers/nubus/
13391 F:      include/linux/nubus.h
13392 F:      include/uapi/linux/nubus.h
13393
13394 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13395 M:      Antonino Daplas <adaplas@gmail.com>
13396 L:      linux-fbdev@vger.kernel.org
13397 S:      Maintained
13398 F:      drivers/video/fbdev/nvidia/
13399 F:      drivers/video/fbdev/riva/
13400
13401 NVM EXPRESS DRIVER
13402 M:      Keith Busch <kbusch@kernel.org>
13403 M:      Jens Axboe <axboe@fb.com>
13404 M:      Christoph Hellwig <hch@lst.de>
13405 M:      Sagi Grimberg <sagi@grimberg.me>
13406 L:      linux-nvme@lists.infradead.org
13407 S:      Supported
13408 W:      http://git.infradead.org/nvme.git
13409 T:      git://git.infradead.org/nvme.git
13410 F:      drivers/nvme/host/
13411 F:      include/linux/nvme.h
13412 F:      include/uapi/linux/nvme_ioctl.h
13413
13414 NVM EXPRESS FC TRANSPORT DRIVERS
13415 M:      James Smart <james.smart@broadcom.com>
13416 L:      linux-nvme@lists.infradead.org
13417 S:      Supported
13418 F:      drivers/nvme/host/fc.c
13419 F:      drivers/nvme/target/fc.c
13420 F:      drivers/nvme/target/fcloop.c
13421 F:      include/linux/nvme-fc-driver.h
13422 F:      include/linux/nvme-fc.h
13423
13424 NVM EXPRESS TARGET DRIVER
13425 M:      Christoph Hellwig <hch@lst.de>
13426 M:      Sagi Grimberg <sagi@grimberg.me>
13427 M:      Chaitanya Kulkarni <kch@nvidia.com>
13428 L:      linux-nvme@lists.infradead.org
13429 S:      Supported
13430 W:      http://git.infradead.org/nvme.git
13431 T:      git://git.infradead.org/nvme.git
13432 F:      drivers/nvme/target/
13433
13434 NVMEM FRAMEWORK
13435 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13436 S:      Maintained
13437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13438 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13439 F:      Documentation/devicetree/bindings/nvmem/
13440 F:      drivers/nvmem/
13441 F:      include/linux/nvmem-consumer.h
13442 F:      include/linux/nvmem-provider.h
13443
13444 NXP C45 TJA11XX PHY DRIVER
13445 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13446 L:      netdev@vger.kernel.org
13447 S:      Maintained
13448 F:      drivers/net/phy/nxp-c45-tja11xx.c
13449
13450 NXP FSPI DRIVER
13451 M:      Ashish Kumar <ashish.kumar@nxp.com>
13452 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13453 L:      linux-spi@vger.kernel.org
13454 S:      Maintained
13455 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13456 F:      drivers/spi/spi-nxp-fspi.c
13457
13458 NXP FXAS21002C DRIVER
13459 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13460 L:      linux-iio@vger.kernel.org
13461 S:      Maintained
13462 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13463 F:      drivers/iio/gyro/fxas21002c.h
13464 F:      drivers/iio/gyro/fxas21002c_core.c
13465 F:      drivers/iio/gyro/fxas21002c_i2c.c
13466 F:      drivers/iio/gyro/fxas21002c_spi.c
13467
13468 NXP i.MX CLOCK DRIVERS
13469 M:      Abel Vesa <abel.vesa@nxp.com>
13470 L:      linux-clk@vger.kernel.org
13471 L:      linux-imx@nxp.com
13472 S:      Maintained
13473 F:      drivers/clk/imx/
13474
13475 NXP i.MX 8MQ DCSS DRIVER
13476 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13477 R:      Lucas Stach <l.stach@pengutronix.de>
13478 L:      dri-devel@lists.freedesktop.org
13479 S:      Maintained
13480 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13481 F:      drivers/gpu/drm/imx/dcss/
13482
13483 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13484 M:      Jagan Teki <jagan@amarulasolutions.com>
13485 S:      Maintained
13486 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13487 F:      drivers/regulator/pf8x00-regulator.c
13488
13489 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13490 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13491 L:      linux-kernel@vger.kernel.org
13492 S:      Maintained
13493 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13494 F:      drivers/extcon/extcon-ptn5150.c
13495
13496 NXP SGTL5000 DRIVER
13497 M:      Fabio Estevam <festevam@gmail.com>
13498 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13499 S:      Maintained
13500 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13501 F:      sound/soc/codecs/sgtl5000*
13502
13503 NXP SJA1105 ETHERNET SWITCH DRIVER
13504 M:      Vladimir Oltean <olteanv@gmail.com>
13505 L:      linux-kernel@vger.kernel.org
13506 S:      Maintained
13507 F:      drivers/net/dsa/sja1105
13508 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13509
13510 NXP TDA998X DRM DRIVER
13511 M:      Russell King <linux@armlinux.org.uk>
13512 S:      Maintained
13513 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13514 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13515 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13516 F:      include/drm/i2c/tda998x.h
13517 F:      include/dt-bindings/display/tda998x.h
13518 K:      "nxp,tda998x"
13519
13520 NXP TFA9879 DRIVER
13521 M:      Peter Rosin <peda@axentia.se>
13522 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13523 S:      Maintained
13524 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13525 F:      sound/soc/codecs/tfa9879*
13526
13527 NXP/Goodix TFA989X (TFA1) DRIVER
13528 M:      Stephan Gerhold <stephan@gerhold.net>
13529 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13530 S:      Maintained
13531 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13532 F:      sound/soc/codecs/tfa989x.c
13533
13534 NXP-NCI NFC DRIVER
13535 R:      Charles Gorand <charles.gorand@effinnov.com>
13536 L:      linux-nfc@lists.01.org (subscribers-only)
13537 S:      Supported
13538 F:      drivers/nfc/nxp-nci
13539
13540 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13541 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13542 R:      NXP Linux Team <linux-imx@nxp.com>
13543 L:      linux-media@vger.kernel.org
13544 S:      Maintained
13545 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13546 F:      drivers/media/platform/imx-jpeg
13547
13548 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13549 M:      Jonas Malaco <jonas@protocubo.io>
13550 L:      linux-hwmon@vger.kernel.org
13551 S:      Maintained
13552 F:      Documentation/hwmon/nzxt-kraken2.rst
13553 F:      drivers/hwmon/nzxt-kraken2.c
13554
13555 OBJAGG
13556 M:      Jiri Pirko <jiri@nvidia.com>
13557 L:      netdev@vger.kernel.org
13558 S:      Supported
13559 F:      include/linux/objagg.h
13560 F:      lib/objagg.c
13561 F:      lib/test_objagg.c
13562
13563 OBJTOOL
13564 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13565 M:      Peter Zijlstra <peterz@infradead.org>
13566 S:      Supported
13567 F:      tools/objtool/
13568 F:      include/linux/objtool.h
13569
13570 OCELOT ETHERNET SWITCH DRIVER
13571 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13572 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13573 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13574 M:      UNGLinuxDriver@microchip.com
13575 L:      netdev@vger.kernel.org
13576 S:      Supported
13577 F:      drivers/net/dsa/ocelot/*
13578 F:      drivers/net/ethernet/mscc/
13579 F:      include/soc/mscc/ocelot*
13580 F:      net/dsa/tag_ocelot.c
13581 F:      net/dsa/tag_ocelot_8021q.c
13582 F:      tools/testing/selftests/drivers/net/ocelot/*
13583
13584 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13585 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13586 M:      Andrew Donnellan <ajd@linux.ibm.com>
13587 L:      linuxppc-dev@lists.ozlabs.org
13588 S:      Supported
13589 F:      Documentation/userspace-api/accelerators/ocxl.rst
13590 F:      arch/powerpc/include/asm/pnv-ocxl.h
13591 F:      arch/powerpc/platforms/powernv/ocxl.c
13592 F:      drivers/misc/ocxl/
13593 F:      include/misc/ocxl*
13594 F:      include/uapi/misc/ocxl.h
13595
13596 OMAP AUDIO SUPPORT
13597 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13598 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13599 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13600 L:      linux-omap@vger.kernel.org
13601 S:      Maintained
13602 F:      sound/soc/ti/n810.c
13603 F:      sound/soc/ti/omap*
13604 F:      sound/soc/ti/rx51.c
13605 F:      sound/soc/ti/sdma-pcm.*
13606
13607 OMAP CLOCK FRAMEWORK SUPPORT
13608 M:      Paul Walmsley <paul@pwsan.com>
13609 L:      linux-omap@vger.kernel.org
13610 S:      Maintained
13611 F:      arch/arm/*omap*/*clock*
13612
13613 OMAP DEVICE TREE SUPPORT
13614 M:      Benoît Cousson <bcousson@baylibre.com>
13615 M:      Tony Lindgren <tony@atomide.com>
13616 L:      linux-omap@vger.kernel.org
13617 L:      devicetree@vger.kernel.org
13618 S:      Maintained
13619 F:      arch/arm/boot/dts/*am3*
13620 F:      arch/arm/boot/dts/*am4*
13621 F:      arch/arm/boot/dts/*am5*
13622 F:      arch/arm/boot/dts/*dra7*
13623 F:      arch/arm/boot/dts/*omap*
13624 F:      arch/arm/boot/dts/logicpd-som-lv*
13625 F:      arch/arm/boot/dts/logicpd-torpedo*
13626
13627 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13628 L:      linux-omap@vger.kernel.org
13629 L:      linux-fbdev@vger.kernel.org
13630 S:      Orphan
13631 F:      Documentation/arm/omap/dss.rst
13632 F:      drivers/video/fbdev/omap2/
13633
13634 OMAP FRAMEBUFFER SUPPORT
13635 L:      linux-fbdev@vger.kernel.org
13636 L:      linux-omap@vger.kernel.org
13637 S:      Orphan
13638 F:      drivers/video/fbdev/omap/
13639
13640 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13641 M:      Roger Quadros <rogerq@kernel.org>
13642 M:      Tony Lindgren <tony@atomide.com>
13643 L:      linux-omap@vger.kernel.org
13644 S:      Maintained
13645 F:      arch/arm/mach-omap2/*gpmc*
13646 F:      drivers/memory/omap-gpmc.c
13647
13648 OMAP GPIO DRIVER
13649 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13650 M:      Santosh Shilimkar <ssantosh@kernel.org>
13651 M:      Kevin Hilman <khilman@kernel.org>
13652 L:      linux-omap@vger.kernel.org
13653 S:      Maintained
13654 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13655 F:      drivers/gpio/gpio-omap.c
13656
13657 OMAP HARDWARE SPINLOCK SUPPORT
13658 M:      Ohad Ben-Cohen <ohad@wizery.com>
13659 L:      linux-omap@vger.kernel.org
13660 S:      Maintained
13661 F:      drivers/hwspinlock/omap_hwspinlock.c
13662
13663 OMAP HS MMC SUPPORT
13664 L:      linux-mmc@vger.kernel.org
13665 L:      linux-omap@vger.kernel.org
13666 S:      Orphan
13667 F:      drivers/mmc/host/omap_hsmmc.c
13668
13669 OMAP HWMOD DATA
13670 M:      Paul Walmsley <paul@pwsan.com>
13671 L:      linux-omap@vger.kernel.org
13672 S:      Maintained
13673 F:      arch/arm/mach-omap2/omap_hwmod*data*
13674
13675 OMAP HWMOD SUPPORT
13676 M:      Benoît Cousson <bcousson@baylibre.com>
13677 M:      Paul Walmsley <paul@pwsan.com>
13678 L:      linux-omap@vger.kernel.org
13679 S:      Maintained
13680 F:      arch/arm/mach-omap2/omap_hwmod.*
13681
13682 OMAP I2C DRIVER
13683 M:      Vignesh R <vigneshr@ti.com>
13684 L:      linux-omap@vger.kernel.org
13685 L:      linux-i2c@vger.kernel.org
13686 S:      Maintained
13687 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13688 F:      drivers/i2c/busses/i2c-omap.c
13689
13690 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13691 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13692 L:      linux-media@vger.kernel.org
13693 S:      Maintained
13694 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13695 F:      drivers/media/platform/omap3isp/
13696 F:      drivers/staging/media/omap4iss/
13697
13698 OMAP MMC SUPPORT
13699 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13700 L:      linux-omap@vger.kernel.org
13701 S:      Odd Fixes
13702 F:      drivers/mmc/host/omap.c
13703
13704 OMAP POWER MANAGEMENT SUPPORT
13705 M:      Kevin Hilman <khilman@kernel.org>
13706 L:      linux-omap@vger.kernel.org
13707 S:      Maintained
13708 F:      arch/arm/*omap*/*pm*
13709 F:      drivers/cpufreq/omap-cpufreq.c
13710
13711 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13712 M:      Rajendra Nayak <rnayak@codeaurora.org>
13713 M:      Paul Walmsley <paul@pwsan.com>
13714 L:      linux-omap@vger.kernel.org
13715 S:      Maintained
13716 F:      arch/arm/mach-omap2/prm*
13717
13718 OMAP RANDOM NUMBER GENERATOR SUPPORT
13719 M:      Deepak Saxena <dsaxena@plexity.net>
13720 S:      Maintained
13721 F:      drivers/char/hw_random/omap-rng.c
13722
13723 OMAP USB SUPPORT
13724 L:      linux-usb@vger.kernel.org
13725 L:      linux-omap@vger.kernel.org
13726 S:      Orphan
13727 F:      arch/arm/*omap*/usb*
13728 F:      drivers/usb/*/*omap*
13729
13730 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13731 M:      Mark Jackson <mpfj@newflow.co.uk>
13732 L:      linux-omap@vger.kernel.org
13733 S:      Maintained
13734 F:      arch/arm/boot/dts/am335x-nano.dts
13735
13736 OMAP1 SUPPORT
13737 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13738 M:      Tony Lindgren <tony@atomide.com>
13739 L:      linux-omap@vger.kernel.org
13740 S:      Maintained
13741 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13743 F:      arch/arm/configs/omap1_defconfig
13744 F:      arch/arm/mach-omap1/
13745 F:      arch/arm/plat-omap/
13746 F:      drivers/i2c/busses/i2c-omap.c
13747 F:      include/linux/platform_data/ams-delta-fiq.h
13748 F:      include/linux/platform_data/i2c-omap.h
13749
13750 OMAP2+ SUPPORT
13751 M:      Tony Lindgren <tony@atomide.com>
13752 L:      linux-omap@vger.kernel.org
13753 S:      Maintained
13754 W:      http://www.muru.com/linux/omap/
13755 W:      http://linux.omap.com/
13756 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13758 F:      arch/arm/configs/omap2plus_defconfig
13759 F:      arch/arm/mach-omap2/
13760 F:      arch/arm/plat-omap/
13761 F:      drivers/bus/ti-sysc.c
13762 F:      drivers/i2c/busses/i2c-omap.c
13763 F:      drivers/irqchip/irq-omap-intc.c
13764 F:      drivers/mfd/*omap*.c
13765 F:      drivers/mfd/menelaus.c
13766 F:      drivers/mfd/palmas.c
13767 F:      drivers/mfd/tps65217.c
13768 F:      drivers/mfd/tps65218.c
13769 F:      drivers/mfd/tps65910.c
13770 F:      drivers/mfd/twl-core.[ch]
13771 F:      drivers/mfd/twl4030*.c
13772 F:      drivers/mfd/twl6030*.c
13773 F:      drivers/mfd/twl6040*.c
13774 F:      drivers/regulator/palmas-regulator*.c
13775 F:      drivers/regulator/pbias-regulator.c
13776 F:      drivers/regulator/tps65217-regulator.c
13777 F:      drivers/regulator/tps65218-regulator.c
13778 F:      drivers/regulator/tps65910-regulator.c
13779 F:      drivers/regulator/twl-regulator.c
13780 F:      drivers/regulator/twl6030-regulator.c
13781 F:      include/linux/platform_data/i2c-omap.h
13782 F:      include/linux/platform_data/ti-sysc.h
13783
13784 OMFS FILESYSTEM
13785 M:      Bob Copeland <me@bobcopeland.com>
13786 L:      linux-karma-devel@lists.sourceforge.net
13787 S:      Maintained
13788 F:      Documentation/filesystems/omfs.rst
13789 F:      fs/omfs/
13790
13791 OMNIKEY CARDMAN 4000 DRIVER
13792 M:      Harald Welte <laforge@gnumonks.org>
13793 S:      Maintained
13794 F:      drivers/char/pcmcia/cm4000_cs.c
13795 F:      include/linux/cm4000_cs.h
13796 F:      include/uapi/linux/cm4000_cs.h
13797
13798 OMNIKEY CARDMAN 4040 DRIVER
13799 M:      Harald Welte <laforge@gnumonks.org>
13800 S:      Maintained
13801 F:      drivers/char/pcmcia/cm4040_cs.*
13802
13803 OMNIVISION OV02A10 SENSOR DRIVER
13804 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13805 L:      linux-media@vger.kernel.org
13806 S:      Maintained
13807 T:      git git://linuxtv.org/media_tree.git
13808 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13809 F:      drivers/media/i2c/ov02a10.c
13810
13811 OMNIVISION OV13858 SENSOR DRIVER
13812 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13813 L:      linux-media@vger.kernel.org
13814 S:      Maintained
13815 T:      git git://linuxtv.org/media_tree.git
13816 F:      drivers/media/i2c/ov13858.c
13817
13818 OMNIVISION OV2680 SENSOR DRIVER
13819 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13820 L:      linux-media@vger.kernel.org
13821 S:      Maintained
13822 T:      git git://linuxtv.org/media_tree.git
13823 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13824 F:      drivers/media/i2c/ov2680.c
13825
13826 OMNIVISION OV2685 SENSOR DRIVER
13827 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13828 L:      linux-media@vger.kernel.org
13829 S:      Maintained
13830 T:      git git://linuxtv.org/media_tree.git
13831 F:      drivers/media/i2c/ov2685.c
13832
13833 OMNIVISION OV2740 SENSOR DRIVER
13834 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13835 R:      Shawn Tu <shawnx.tu@intel.com>
13836 R:      Bingbu Cao <bingbu.cao@intel.com>
13837 L:      linux-media@vger.kernel.org
13838 S:      Maintained
13839 T:      git git://linuxtv.org/media_tree.git
13840 F:      drivers/media/i2c/ov2740.c
13841
13842 OMNIVISION OV5640 SENSOR DRIVER
13843 M:      Steve Longerbeam <slongerbeam@gmail.com>
13844 L:      linux-media@vger.kernel.org
13845 S:      Maintained
13846 T:      git git://linuxtv.org/media_tree.git
13847 F:      drivers/media/i2c/ov5640.c
13848
13849 OMNIVISION OV5647 SENSOR DRIVER
13850 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13851 M:      Jacopo Mondi <jacopo@jmondi.org>
13852 L:      linux-media@vger.kernel.org
13853 S:      Maintained
13854 T:      git git://linuxtv.org/media_tree.git
13855 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13856 F:      drivers/media/i2c/ov5647.c
13857
13858 OMNIVISION OV5670 SENSOR DRIVER
13859 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13860 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13861 L:      linux-media@vger.kernel.org
13862 S:      Maintained
13863 T:      git git://linuxtv.org/media_tree.git
13864 F:      drivers/media/i2c/ov5670.c
13865
13866 OMNIVISION OV5675 SENSOR DRIVER
13867 M:      Shawn Tu <shawnx.tu@intel.com>
13868 L:      linux-media@vger.kernel.org
13869 S:      Maintained
13870 T:      git git://linuxtv.org/media_tree.git
13871 F:      drivers/media/i2c/ov5675.c
13872
13873 OMNIVISION OV5695 SENSOR DRIVER
13874 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13875 L:      linux-media@vger.kernel.org
13876 S:      Maintained
13877 T:      git git://linuxtv.org/media_tree.git
13878 F:      drivers/media/i2c/ov5695.c
13879
13880 OMNIVISION OV7670 SENSOR DRIVER
13881 L:      linux-media@vger.kernel.org
13882 S:      Orphan
13883 T:      git git://linuxtv.org/media_tree.git
13884 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13885 F:      drivers/media/i2c/ov7670.c
13886
13887 OMNIVISION OV772x SENSOR DRIVER
13888 M:      Jacopo Mondi <jacopo@jmondi.org>
13889 L:      linux-media@vger.kernel.org
13890 S:      Odd fixes
13891 T:      git git://linuxtv.org/media_tree.git
13892 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13893 F:      drivers/media/i2c/ov772x.c
13894 F:      include/media/i2c/ov772x.h
13895
13896 OMNIVISION OV7740 SENSOR DRIVER
13897 M:      Wenyou Yang <wenyou.yang@microchip.com>
13898 L:      linux-media@vger.kernel.org
13899 S:      Maintained
13900 T:      git git://linuxtv.org/media_tree.git
13901 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13902 F:      drivers/media/i2c/ov7740.c
13903
13904 OMNIVISION OV8856 SENSOR DRIVER
13905 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13906 L:      linux-media@vger.kernel.org
13907 S:      Maintained
13908 T:      git git://linuxtv.org/media_tree.git
13909 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13910 F:      drivers/media/i2c/ov8856.c
13911
13912 OMNIVISION OV9282 SENSOR DRIVER
13913 M:      Paul J. Murphy <paul.j.murphy@intel.com>
13914 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
13915 L:      linux-media@vger.kernel.org
13916 S:      Maintained
13917 T:      git git://linuxtv.org/media_tree.git
13918 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
13919 F:      drivers/media/i2c/ov9282.c
13920
13921 OMNIVISION OV9640 SENSOR DRIVER
13922 M:      Petr Cvek <petrcvekcz@gmail.com>
13923 L:      linux-media@vger.kernel.org
13924 S:      Maintained
13925 F:      drivers/media/i2c/ov9640.*
13926
13927 OMNIVISION OV9650 SENSOR DRIVER
13928 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13929 R:      Akinobu Mita <akinobu.mita@gmail.com>
13930 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13931 L:      linux-media@vger.kernel.org
13932 S:      Maintained
13933 T:      git git://linuxtv.org/media_tree.git
13934 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13935 F:      drivers/media/i2c/ov9650.c
13936
13937 OMNIVISION OV9734 SENSOR DRIVER
13938 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13939 R:      Bingbu Cao <bingbu.cao@intel.com>
13940 L:      linux-media@vger.kernel.org
13941 S:      Maintained
13942 T:      git git://linuxtv.org/media_tree.git
13943 F:      drivers/media/i2c/ov9734.c
13944
13945 ONENAND FLASH DRIVER
13946 M:      Kyungmin Park <kyungmin.park@samsung.com>
13947 L:      linux-mtd@lists.infradead.org
13948 S:      Maintained
13949 F:      drivers/mtd/nand/onenand/
13950 F:      include/linux/mtd/onenand*.h
13951
13952 ONION OMEGA2+ BOARD
13953 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13954 L:      linux-mips@vger.kernel.org
13955 S:      Maintained
13956 F:      arch/mips/boot/dts/ralink/omega2p.dts
13957
13958 OP-TEE DRIVER
13959 M:      Jens Wiklander <jens.wiklander@linaro.org>
13960 L:      op-tee@lists.trustedfirmware.org
13961 S:      Maintained
13962 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13963 F:      drivers/tee/optee/
13964
13965 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13966 M:      Sumit Garg <sumit.garg@linaro.org>
13967 L:      op-tee@lists.trustedfirmware.org
13968 S:      Maintained
13969 F:      drivers/char/hw_random/optee-rng.c
13970
13971 OPA-VNIC DRIVER
13972 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13973 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13974 L:      linux-rdma@vger.kernel.org
13975 S:      Supported
13976 F:      drivers/infiniband/ulp/opa_vnic
13977
13978 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13979 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13980 M:      Frank Rowand <frowand.list@gmail.com>
13981 L:      devicetree@vger.kernel.org
13982 S:      Maintained
13983 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13984 F:      Documentation/devicetree/overlay-notes.rst
13985 F:      drivers/of/overlay.c
13986 F:      drivers/of/resolver.c
13987 K:      of_overlay_notifier_
13988
13989 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13990 M:      Rob Herring <robh+dt@kernel.org>
13991 M:      Frank Rowand <frowand.list@gmail.com>
13992 L:      devicetree@vger.kernel.org
13993 S:      Maintained
13994 W:      http://www.devicetree.org/
13995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13996 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13997 F:      drivers/of/
13998 F:      include/linux/of*.h
13999 F:      scripts/dtc/
14000
14001 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14002 M:      Rob Herring <robh+dt@kernel.org>
14003 L:      devicetree@vger.kernel.org
14004 S:      Maintained
14005 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14007 F:      Documentation/devicetree/
14008 F:      arch/*/boot/dts/
14009 F:      include/dt-bindings/
14010
14011 OPENCOMPUTE PTP CLOCK DRIVER
14012 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14013 L:      netdev@vger.kernel.org
14014 S:      Maintained
14015 F:      drivers/ptp/ptp_ocp.c
14016
14017 OPENCORES I2C BUS DRIVER
14018 M:      Peter Korsgaard <peter@korsgaard.com>
14019 M:      Andrew Lunn <andrew@lunn.ch>
14020 L:      linux-i2c@vger.kernel.org
14021 S:      Maintained
14022 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14023 F:      Documentation/i2c/busses/i2c-ocores.rst
14024 F:      drivers/i2c/busses/i2c-ocores.c
14025 F:      include/linux/platform_data/i2c-ocores.h
14026
14027 OPENRISC ARCHITECTURE
14028 M:      Jonas Bonn <jonas@southpole.se>
14029 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14030 M:      Stafford Horne <shorne@gmail.com>
14031 L:      openrisc@lists.librecores.org
14032 S:      Maintained
14033 W:      http://openrisc.io
14034 T:      git git://github.com/openrisc/linux.git
14035 F:      Documentation/devicetree/bindings/openrisc/
14036 F:      Documentation/openrisc/
14037 F:      arch/openrisc/
14038 F:      drivers/irqchip/irq-ompic.c
14039 F:      drivers/irqchip/irq-or1k-*
14040
14041 OPENVSWITCH
14042 M:      Pravin B Shelar <pshelar@ovn.org>
14043 L:      netdev@vger.kernel.org
14044 L:      dev@openvswitch.org
14045 S:      Maintained
14046 W:      http://openvswitch.org
14047 F:      include/uapi/linux/openvswitch.h
14048 F:      net/openvswitch/
14049
14050 OPERATING PERFORMANCE POINTS (OPP)
14051 M:      Viresh Kumar <vireshk@kernel.org>
14052 M:      Nishanth Menon <nm@ti.com>
14053 M:      Stephen Boyd <sboyd@kernel.org>
14054 L:      linux-pm@vger.kernel.org
14055 S:      Maintained
14056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14057 F:      Documentation/devicetree/bindings/opp/
14058 F:      Documentation/power/opp.rst
14059 F:      drivers/opp/
14060 F:      include/linux/pm_opp.h
14061
14062 OPL4 DRIVER
14063 M:      Clemens Ladisch <clemens@ladisch.de>
14064 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14065 S:      Maintained
14066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14067 F:      sound/drivers/opl4/
14068
14069 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14070 M:      Mark Fasheh <mark@fasheh.com>
14071 M:      Joel Becker <jlbec@evilplan.org>
14072 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14073 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14074 S:      Supported
14075 W:      http://ocfs2.wiki.kernel.org
14076 F:      Documentation/filesystems/dlmfs.rst
14077 F:      Documentation/filesystems/ocfs2.rst
14078 F:      fs/ocfs2/
14079
14080 ORANGEFS FILESYSTEM
14081 M:      Mike Marshall <hubcap@omnibond.com>
14082 R:      Martin Brandenburg <martin@omnibond.com>
14083 L:      devel@lists.orangefs.org
14084 S:      Supported
14085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14086 F:      Documentation/filesystems/orangefs.rst
14087 F:      fs/orangefs/
14088
14089 ORINOCO DRIVER
14090 L:      linux-wireless@vger.kernel.org
14091 S:      Orphan
14092 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14093 W:      http://www.nongnu.org/orinoco/
14094 F:      drivers/net/wireless/intersil/orinoco/
14095
14096 OV2659 OMNIVISION SENSOR DRIVER
14097 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14098 L:      linux-media@vger.kernel.org
14099 S:      Maintained
14100 W:      https://linuxtv.org
14101 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14102 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14103 F:      drivers/media/i2c/ov2659.c
14104 F:      include/media/i2c/ov2659.h
14105
14106 OVERLAY FILESYSTEM
14107 M:      Miklos Szeredi <miklos@szeredi.hu>
14108 L:      linux-unionfs@vger.kernel.org
14109 S:      Supported
14110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14111 F:      Documentation/filesystems/overlayfs.rst
14112 F:      fs/overlayfs/
14113
14114 P54 WIRELESS DRIVER
14115 M:      Christian Lamparter <chunkeey@googlemail.com>
14116 L:      linux-wireless@vger.kernel.org
14117 S:      Maintained
14118 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14119 F:      drivers/net/wireless/intersil/p54/
14120
14121 PACKING
14122 M:      Vladimir Oltean <olteanv@gmail.com>
14123 L:      netdev@vger.kernel.org
14124 S:      Supported
14125 F:      Documentation/core-api/packing.rst
14126 F:      include/linux/packing.h
14127 F:      lib/packing.c
14128
14129 PADATA PARALLEL EXECUTION MECHANISM
14130 M:      Steffen Klassert <steffen.klassert@secunet.com>
14131 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14132 L:      linux-crypto@vger.kernel.org
14133 L:      linux-kernel@vger.kernel.org
14134 S:      Maintained
14135 F:      Documentation/core-api/padata.rst
14136 F:      include/linux/padata.h
14137 F:      kernel/padata.c
14138
14139 PAGE POOL
14140 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14141 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14142 L:      netdev@vger.kernel.org
14143 S:      Supported
14144 F:      Documentation/networking/page_pool.rst
14145 F:      include/net/page_pool.h
14146 F:      include/trace/events/page_pool.h
14147 F:      net/core/page_pool.c
14148
14149 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14150 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14151 L:      platform-driver-x86@vger.kernel.org
14152 S:      Maintained
14153 F:      drivers/platform/x86/panasonic-laptop.c
14154
14155 PARALLAX PING IIO SENSOR DRIVER
14156 M:      Andreas Klinger <ak@it-klinger.de>
14157 L:      linux-iio@vger.kernel.org
14158 S:      Maintained
14159 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14160 F:      drivers/iio/proximity/ping.c
14161
14162 PARALLEL LCD/KEYPAD PANEL DRIVER
14163 M:      Willy Tarreau <willy@haproxy.com>
14164 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14165 S:      Odd Fixes
14166 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14167 F:      drivers/auxdisplay/panel.c
14168
14169 PARALLEL PORT SUBSYSTEM
14170 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14171 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14172 L:      linux-parport@lists.infradead.org (subscribers-only)
14173 S:      Maintained
14174 F:      Documentation/driver-api/parport*.rst
14175 F:      drivers/char/ppdev.c
14176 F:      drivers/parport/
14177 F:      include/linux/parport*.h
14178 F:      include/uapi/linux/ppdev.h
14179
14180 PARAVIRT_OPS INTERFACE
14181 M:      Juergen Gross <jgross@suse.com>
14182 M:      Deep Shah <sdeep@vmware.com>
14183 M:      "VMware, Inc." <pv-drivers@vmware.com>
14184 L:      virtualization@lists.linux-foundation.org
14185 S:      Supported
14186 F:      Documentation/virt/paravirt_ops.rst
14187 F:      arch/*/include/asm/paravirt*.h
14188 F:      arch/*/kernel/paravirt*
14189 F:      include/linux/hypervisor.h
14190
14191 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14192 M:      Tim Waugh <tim@cyberelk.net>
14193 L:      linux-parport@lists.infradead.org (subscribers-only)
14194 S:      Maintained
14195 F:      Documentation/admin-guide/blockdev/paride.rst
14196 F:      drivers/block/paride/
14197
14198 PARISC ARCHITECTURE
14199 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14200 M:      Helge Deller <deller@gmx.de>
14201 L:      linux-parisc@vger.kernel.org
14202 S:      Maintained
14203 W:      https://parisc.wiki.kernel.org
14204 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14207 F:      Documentation/parisc/
14208 F:      arch/parisc/
14209 F:      drivers/char/agp/parisc-agp.c
14210 F:      drivers/input/misc/hp_sdc_rtc.c
14211 F:      drivers/input/serio/gscps2.c
14212 F:      drivers/input/serio/hp_sdc*
14213 F:      drivers/parisc/
14214 F:      drivers/parport/parport_gsc.*
14215 F:      drivers/tty/serial/8250/8250_gsc.c
14216 F:      drivers/video/console/sti*
14217 F:      drivers/video/fbdev/sti*
14218 F:      drivers/video/logo/logo_parisc*
14219 F:      include/linux/hp_sdc.h
14220
14221 PARMAN
14222 M:      Jiri Pirko <jiri@nvidia.com>
14223 L:      netdev@vger.kernel.org
14224 S:      Supported
14225 F:      include/linux/parman.h
14226 F:      lib/parman.c
14227 F:      lib/test_parman.c
14228
14229 PC ENGINES APU BOARD DRIVER
14230 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14231 S:      Maintained
14232 F:      drivers/platform/x86/pcengines-apuv2.c
14233
14234 PC87360 HARDWARE MONITORING DRIVER
14235 M:      Jim Cromie <jim.cromie@gmail.com>
14236 L:      linux-hwmon@vger.kernel.org
14237 S:      Maintained
14238 F:      Documentation/hwmon/pc87360.rst
14239 F:      drivers/hwmon/pc87360.c
14240
14241 PC8736x GPIO DRIVER
14242 M:      Jim Cromie <jim.cromie@gmail.com>
14243 S:      Maintained
14244 F:      drivers/char/pc8736x_gpio.c
14245
14246 PC87427 HARDWARE MONITORING DRIVER
14247 M:      Jean Delvare <jdelvare@suse.com>
14248 L:      linux-hwmon@vger.kernel.org
14249 S:      Maintained
14250 F:      Documentation/hwmon/pc87427.rst
14251 F:      drivers/hwmon/pc87427.c
14252
14253 PCA9532 LED DRIVER
14254 M:      Riku Voipio <riku.voipio@iki.fi>
14255 S:      Maintained
14256 F:      drivers/leds/leds-pca9532.c
14257 F:      include/linux/leds-pca9532.h
14258
14259 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14260 M:      Guenter Roeck <linux@roeck-us.net>
14261 L:      linux-i2c@vger.kernel.org
14262 S:      Maintained
14263 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14264
14265 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14266 M:      Khalid Aziz <khalid@gonehiking.org>
14267 S:      Maintained
14268 F:      drivers/firmware/pcdp.*
14269
14270 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14271 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14272 M:      Pali Rohár <pali@kernel.org>
14273 L:      linux-pci@vger.kernel.org
14274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14275 S:      Maintained
14276 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14277 F:      drivers/pci/controller/pci-aardvark.c
14278
14279 PCI DRIVER FOR ALTERA PCIE IP
14280 M:      Joyce Ooi <joyce.ooi@intel.com>
14281 L:      linux-pci@vger.kernel.org
14282 S:      Supported
14283 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14284 F:      drivers/pci/controller/pcie-altera.c
14285
14286 PCI DRIVER FOR APPLIEDMICRO XGENE
14287 M:      Toan Le <toan@os.amperecomputing.com>
14288 L:      linux-pci@vger.kernel.org
14289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14290 S:      Maintained
14291 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14292 F:      drivers/pci/controller/pci-xgene.c
14293
14294 PCI DRIVER FOR ARM VERSATILE PLATFORM
14295 M:      Rob Herring <robh@kernel.org>
14296 L:      linux-pci@vger.kernel.org
14297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14298 S:      Maintained
14299 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14300 F:      drivers/pci/controller/pci-versatile.c
14301
14302 PCI DRIVER FOR ARMADA 8K
14303 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14304 L:      linux-pci@vger.kernel.org
14305 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14306 S:      Maintained
14307 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14308 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14309
14310 PCI DRIVER FOR CADENCE PCIE IP
14311 M:      Tom Joseph <tjoseph@cadence.com>
14312 L:      linux-pci@vger.kernel.org
14313 S:      Maintained
14314 F:      Documentation/devicetree/bindings/pci/cdns,*
14315 F:      drivers/pci/controller/cadence/
14316
14317 PCI DRIVER FOR FREESCALE LAYERSCAPE
14318 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14319 M:      Mingkai Hu <mingkai.hu@nxp.com>
14320 M:      Roy Zang <roy.zang@nxp.com>
14321 L:      linuxppc-dev@lists.ozlabs.org
14322 L:      linux-pci@vger.kernel.org
14323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14324 S:      Maintained
14325 F:      drivers/pci/controller/dwc/*layerscape*
14326
14327 PCI DRIVER FOR GENERIC OF HOSTS
14328 M:      Will Deacon <will@kernel.org>
14329 L:      linux-pci@vger.kernel.org
14330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14331 S:      Maintained
14332 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14333 F:      drivers/pci/controller/pci-host-common.c
14334 F:      drivers/pci/controller/pci-host-generic.c
14335
14336 PCI DRIVER FOR IMX6
14337 M:      Richard Zhu <hongxing.zhu@nxp.com>
14338 M:      Lucas Stach <l.stach@pengutronix.de>
14339 L:      linux-pci@vger.kernel.org
14340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14341 S:      Maintained
14342 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14343 F:      drivers/pci/controller/dwc/*imx6*
14344
14345 PCI DRIVER FOR FU740
14346 M:      Paul Walmsley <paul.walmsley@sifive.com>
14347 M:      Greentime Hu <greentime.hu@sifive.com>
14348 L:      linux-pci@vger.kernel.org
14349 S:      Maintained
14350 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14351 F:      drivers/pci/controller/dwc/pcie-fu740.c
14352
14353 PCI DRIVER FOR INTEL IXP4XX
14354 M:      Linus Walleij <linus.walleij@linaro.org>
14355 S:      Maintained
14356 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14357 F:      drivers/pci/controller/pci-ixp4xx.c
14358
14359 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14360 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14361 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14362 L:      linux-pci@vger.kernel.org
14363 S:      Supported
14364 F:      drivers/pci/controller/vmd.c
14365
14366 PCI DRIVER FOR MICROSEMI SWITCHTEC
14367 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14368 M:      Logan Gunthorpe <logang@deltatee.com>
14369 L:      linux-pci@vger.kernel.org
14370 S:      Maintained
14371 F:      Documentation/ABI/testing/sysfs-class-switchtec
14372 F:      Documentation/driver-api/switchtec.rst
14373 F:      drivers/ntb/hw/mscc/
14374 F:      drivers/pci/switch/switchtec*
14375 F:      include/linux/switchtec.h
14376 F:      include/uapi/linux/switchtec_ioctl.h
14377
14378 PCI DRIVER FOR MOBIVEIL PCIE IP
14379 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14380 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14381 L:      linux-pci@vger.kernel.org
14382 S:      Supported
14383 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14384 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14385
14386 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14387 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14388 L:      linux-pci@vger.kernel.org
14389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14390 S:      Maintained
14391 F:      drivers/pci/controller/*mvebu*
14392
14393 PCI DRIVER FOR NVIDIA TEGRA
14394 M:      Thierry Reding <thierry.reding@gmail.com>
14395 L:      linux-tegra@vger.kernel.org
14396 L:      linux-pci@vger.kernel.org
14397 S:      Supported
14398 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14399 F:      drivers/pci/controller/pci-tegra.c
14400
14401 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14402 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14403 L:      linux-pci@vger.kernel.org
14404 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14405 S:      Maintained
14406 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14407 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14408
14409 PCI DRIVER FOR RENESAS R-CAR
14410 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14411 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14412 L:      linux-pci@vger.kernel.org
14413 L:      linux-renesas-soc@vger.kernel.org
14414 S:      Maintained
14415 F:      Documentation/devicetree/bindings/pci/*rcar*
14416 F:      drivers/pci/controller/*rcar*
14417
14418 PCI DRIVER FOR SAMSUNG EXYNOS
14419 M:      Jingoo Han <jingoohan1@gmail.com>
14420 L:      linux-pci@vger.kernel.org
14421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14422 L:      linux-samsung-soc@vger.kernel.org
14423 S:      Maintained
14424 F:      drivers/pci/controller/dwc/pci-exynos.c
14425
14426 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14427 M:      Jingoo Han <jingoohan1@gmail.com>
14428 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14429 L:      linux-pci@vger.kernel.org
14430 S:      Maintained
14431 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14432 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14433 F:      drivers/pci/controller/dwc/*designware*
14434
14435 PCI DRIVER FOR TI DRA7XX/J721E
14436 M:      Kishon Vijay Abraham I <kishon@ti.com>
14437 L:      linux-omap@vger.kernel.org
14438 L:      linux-pci@vger.kernel.org
14439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14440 S:      Supported
14441 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14442 F:      drivers/pci/controller/cadence/pci-j721e.c
14443 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14444
14445 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14446 M:      Linus Walleij <linus.walleij@linaro.org>
14447 L:      linux-pci@vger.kernel.org
14448 S:      Maintained
14449 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14450 F:      drivers/pci/controller/pci-v3-semi.c
14451
14452 PCI ENDPOINT SUBSYSTEM
14453 M:      Kishon Vijay Abraham I <kishon@ti.com>
14454 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14455 R:      Krzysztof Wilczyński <kw@linux.com>
14456 L:      linux-pci@vger.kernel.org
14457 S:      Supported
14458 F:      Documentation/PCI/endpoint/*
14459 F:      Documentation/misc-devices/pci-endpoint-test.rst
14460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14461 F:      drivers/misc/pci_endpoint_test.c
14462 F:      drivers/pci/endpoint/
14463 F:      tools/pci/
14464
14465 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14466 M:      Russell Currey <ruscur@russell.cc>
14467 M:      Oliver O'Halloran <oohall@gmail.com>
14468 L:      linuxppc-dev@lists.ozlabs.org
14469 S:      Supported
14470 F:      Documentation/PCI/pci-error-recovery.rst
14471 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14472 F:      arch/powerpc/include/*/eeh*.h
14473 F:      arch/powerpc/kernel/eeh*.c
14474 F:      arch/powerpc/platforms/*/eeh*.c
14475 F:      drivers/pci/pcie/aer.c
14476 F:      drivers/pci/pcie/dpc.c
14477 F:      drivers/pci/pcie/err.c
14478
14479 PCI ERROR RECOVERY
14480 M:      Linas Vepstas <linasvepstas@gmail.com>
14481 L:      linux-pci@vger.kernel.org
14482 S:      Supported
14483 F:      Documentation/PCI/pci-error-recovery.rst
14484
14485 PCI MSI DRIVER FOR ALTERA MSI IP
14486 M:      Joyce Ooi <joyce.ooi@intel.com>
14487 L:      linux-pci@vger.kernel.org
14488 S:      Supported
14489 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14490 F:      drivers/pci/controller/pcie-altera-msi.c
14491
14492 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14493 M:      Toan Le <toan@os.amperecomputing.com>
14494 L:      linux-pci@vger.kernel.org
14495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14496 S:      Maintained
14497 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14498 F:      drivers/pci/controller/pci-xgene-msi.c
14499
14500 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14501 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14502 R:      Rob Herring <robh@kernel.org>
14503 R:      Krzysztof Wilczyński <kw@linux.com>
14504 L:      linux-pci@vger.kernel.org
14505 S:      Supported
14506 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14508 F:      drivers/pci/controller/
14509
14510 PCI SUBSYSTEM
14511 M:      Bjorn Helgaas <bhelgaas@google.com>
14512 L:      linux-pci@vger.kernel.org
14513 S:      Supported
14514 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14516 F:      Documentation/PCI/
14517 F:      Documentation/devicetree/bindings/pci/
14518 F:      arch/x86/kernel/early-quirks.c
14519 F:      arch/x86/kernel/quirks.c
14520 F:      arch/x86/pci/
14521 F:      drivers/acpi/pci*
14522 F:      drivers/pci/
14523 F:      include/asm-generic/pci*
14524 F:      include/linux/of_pci.h
14525 F:      include/linux/pci*
14526 F:      include/uapi/linux/pci*
14527 F:      lib/pci*
14528
14529 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14530 M:      Jonathan Chocron <jonnyc@amazon.com>
14531 L:      linux-pci@vger.kernel.org
14532 S:      Maintained
14533 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14534 F:      drivers/pci/controller/dwc/pcie-al.c
14535
14536 PCIE DRIVER FOR AMLOGIC MESON
14537 M:      Yue Wang <yue.wang@Amlogic.com>
14538 L:      linux-pci@vger.kernel.org
14539 L:      linux-amlogic@lists.infradead.org
14540 S:      Maintained
14541 F:      drivers/pci/controller/dwc/pci-meson.c
14542
14543 PCIE DRIVER FOR AXIS ARTPEC
14544 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14545 L:      linux-arm-kernel@axis.com
14546 L:      linux-pci@vger.kernel.org
14547 S:      Maintained
14548 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14549 F:      drivers/pci/controller/dwc/*artpec*
14550
14551 PCIE DRIVER FOR CAVIUM THUNDERX
14552 M:      Robert Richter <rric@kernel.org>
14553 L:      linux-pci@vger.kernel.org
14554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14555 S:      Odd Fixes
14556 F:      drivers/pci/controller/pci-thunder-*
14557
14558 PCIE DRIVER FOR HISILICON
14559 M:      Zhou Wang <wangzhou1@hisilicon.com>
14560 L:      linux-pci@vger.kernel.org
14561 S:      Maintained
14562 F:      drivers/pci/controller/dwc/pcie-hisi.c
14563
14564 PCIE DRIVER FOR HISILICON KIRIN
14565 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14566 M:      Binghui Wang <wangbinghui@hisilicon.com>
14567 L:      linux-pci@vger.kernel.org
14568 S:      Maintained
14569 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14570 F:      drivers/pci/controller/dwc/pcie-kirin.c
14571
14572 PCIE DRIVER FOR HISILICON STB
14573 M:      Shawn Guo <shawn.guo@linaro.org>
14574 L:      linux-pci@vger.kernel.org
14575 S:      Maintained
14576 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14577 F:      drivers/pci/controller/dwc/pcie-histb.c
14578
14579 PCIE DRIVER FOR INTEL KEEM BAY
14580 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14581 L:      linux-pci@vger.kernel.org
14582 S:      Supported
14583 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14584 F:      drivers/pci/controller/dwc/pcie-keembay.c
14585
14586 PCIE DRIVER FOR INTEL LGM GW SOC
14587 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14588 L:      linux-pci@vger.kernel.org
14589 S:      Maintained
14590 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14591 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14592
14593 PCIE DRIVER FOR MEDIATEK
14594 M:      Ryder Lee <ryder.lee@mediatek.com>
14595 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14596 L:      linux-pci@vger.kernel.org
14597 L:      linux-mediatek@lists.infradead.org
14598 S:      Supported
14599 F:      Documentation/devicetree/bindings/pci/mediatek*
14600 F:      drivers/pci/controller/*mediatek*
14601
14602 PCIE DRIVER FOR MICROCHIP
14603 M:      Daire McNamara <daire.mcnamara@microchip.com>
14604 L:      linux-pci@vger.kernel.org
14605 S:      Supported
14606 F:      Documentation/devicetree/bindings/pci/microchip*
14607 F:      drivers/pci/controller/*microchip*
14608
14609 PCIE DRIVER FOR QUALCOMM MSM
14610 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14611 L:      linux-pci@vger.kernel.org
14612 L:      linux-arm-msm@vger.kernel.org
14613 S:      Maintained
14614 F:      drivers/pci/controller/dwc/*qcom*
14615
14616 PCIE DRIVER FOR ROCKCHIP
14617 M:      Shawn Lin <shawn.lin@rock-chips.com>
14618 L:      linux-pci@vger.kernel.org
14619 L:      linux-rockchip@lists.infradead.org
14620 S:      Maintained
14621 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14622 F:      drivers/pci/controller/pcie-rockchip*
14623
14624 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14625 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14626 L:      linux-pci@vger.kernel.org
14627 S:      Maintained
14628 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14629 F:      drivers/pci/controller/dwc/pcie-uniphier*
14630
14631 PCIE DRIVER FOR ST SPEAR13XX
14632 M:      Pratyush Anand <pratyush.anand@gmail.com>
14633 L:      linux-pci@vger.kernel.org
14634 S:      Maintained
14635 F:      drivers/pci/controller/dwc/*spear*
14636
14637 PCMCIA SUBSYSTEM
14638 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14639 S:      Odd Fixes
14640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14641 F:      Documentation/pcmcia/
14642 F:      drivers/pcmcia/
14643 F:      include/pcmcia/
14644 F:      tools/pcmcia/
14645
14646 PCNET32 NETWORK DRIVER
14647 M:      Don Fry <pcnet32@frontier.com>
14648 L:      netdev@vger.kernel.org
14649 S:      Maintained
14650 F:      drivers/net/ethernet/amd/pcnet32.c
14651
14652 PCRYPT PARALLEL CRYPTO ENGINE
14653 M:      Steffen Klassert <steffen.klassert@secunet.com>
14654 L:      linux-crypto@vger.kernel.org
14655 S:      Maintained
14656 F:      crypto/pcrypt.c
14657 F:      include/crypto/pcrypt.h
14658
14659 PEAQ WMI HOTKEYS DRIVER
14660 M:      Hans de Goede <hdegoede@redhat.com>
14661 L:      platform-driver-x86@vger.kernel.org
14662 S:      Maintained
14663 F:      drivers/platform/x86/peaq-wmi.c
14664
14665 PENSANDO ETHERNET DRIVERS
14666 M:      Shannon Nelson <snelson@pensando.io>
14667 M:      drivers@pensando.io
14668 L:      netdev@vger.kernel.org
14669 S:      Supported
14670 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14671 F:      drivers/net/ethernet/pensando/
14672
14673 PER-CPU MEMORY ALLOCATOR
14674 M:      Dennis Zhou <dennis@kernel.org>
14675 M:      Tejun Heo <tj@kernel.org>
14676 M:      Christoph Lameter <cl@linux.com>
14677 L:      linux-mm@kvack.org
14678 S:      Maintained
14679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14680 F:      arch/*/include/asm/percpu.h
14681 F:      include/linux/percpu*.h
14682 F:      lib/percpu*.c
14683 F:      mm/percpu*.c
14684
14685 PER-TASK DELAY ACCOUNTING
14686 M:      Balbir Singh <bsingharora@gmail.com>
14687 S:      Maintained
14688 F:      include/linux/delayacct.h
14689 F:      kernel/delayacct.c
14690
14691 PERFORMANCE EVENTS SUBSYSTEM
14692 M:      Peter Zijlstra <peterz@infradead.org>
14693 M:      Ingo Molnar <mingo@redhat.com>
14694 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14695 R:      Mark Rutland <mark.rutland@arm.com>
14696 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14697 R:      Jiri Olsa <jolsa@redhat.com>
14698 R:      Namhyung Kim <namhyung@kernel.org>
14699 L:      linux-perf-users@vger.kernel.org
14700 L:      linux-kernel@vger.kernel.org
14701 S:      Supported
14702 W:      https://perf.wiki.kernel.org/
14703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14704 F:      arch/*/events/*
14705 F:      arch/*/events/*/*
14706 F:      arch/*/include/asm/perf_event.h
14707 F:      arch/*/kernel/*/*/perf_event*.c
14708 F:      arch/*/kernel/*/perf_event*.c
14709 F:      arch/*/kernel/perf_callchain.c
14710 F:      arch/*/kernel/perf_event*.c
14711 F:      include/linux/perf_event.h
14712 F:      include/uapi/linux/perf_event.h
14713 F:      kernel/events/*
14714 F:      tools/lib/perf/
14715 F:      tools/perf/
14716
14717 PERFORMANCE EVENTS TOOLING ARM64
14718 R:      John Garry <john.garry@huawei.com>
14719 R:      Will Deacon <will@kernel.org>
14720 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14721 R:      Leo Yan <leo.yan@linaro.org>
14722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14723 S:      Supported
14724 F:      tools/build/feature/test-libopencsd.c
14725 F:      tools/perf/arch/arm*/
14726 F:      tools/perf/pmu-events/arch/arm64/
14727 F:      tools/perf/util/arm-spe*
14728 F:      tools/perf/util/cs-etm*
14729
14730 PERSONALITY HANDLING
14731 M:      Christoph Hellwig <hch@infradead.org>
14732 L:      linux-abi-devel@lists.sourceforge.net
14733 S:      Maintained
14734 F:      include/linux/personality.h
14735 F:      include/uapi/linux/personality.h
14736
14737 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14738 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14739 L:      linux-input@vger.kernel.org
14740 S:      Maintained
14741 F:      Documentation/input/devices/pxrc.rst
14742 F:      drivers/input/joystick/pxrc.c
14743
14744 PHONET PROTOCOL
14745 M:      Remi Denis-Courmont <courmisch@gmail.com>
14746 S:      Supported
14747 F:      Documentation/networking/phonet.rst
14748 F:      include/linux/phonet.h
14749 F:      include/net/phonet/
14750 F:      include/uapi/linux/phonet.h
14751 F:      net/phonet/
14752
14753 PHRAM MTD DRIVER
14754 M:      Joern Engel <joern@lazybastard.org>
14755 L:      linux-mtd@lists.infradead.org
14756 S:      Maintained
14757 F:      drivers/mtd/devices/phram.c
14758
14759 PICOLCD HID DRIVER
14760 M:      Bruno Prémont <bonbons@linux-vserver.org>
14761 L:      linux-input@vger.kernel.org
14762 S:      Maintained
14763 F:      drivers/hid/hid-picolcd*
14764
14765 PIDFD API
14766 M:      Christian Brauner <christian@brauner.io>
14767 L:      linux-kernel@vger.kernel.org
14768 S:      Maintained
14769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14770 F:      samples/pidfd/
14771 F:      tools/testing/selftests/clone3/
14772 F:      tools/testing/selftests/pid_namespace/
14773 F:      tools/testing/selftests/pidfd/
14774 K:      (?i)pidfd
14775 K:      (?i)clone3
14776 K:      \b(clone_args|kernel_clone_args)\b
14777
14778 PIN CONTROL SUBSYSTEM
14779 M:      Linus Walleij <linus.walleij@linaro.org>
14780 L:      linux-gpio@vger.kernel.org
14781 S:      Maintained
14782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14783 F:      Documentation/devicetree/bindings/pinctrl/
14784 F:      Documentation/driver-api/pin-control.rst
14785 F:      drivers/pinctrl/
14786 F:      include/linux/pinctrl/
14787
14788 PIN CONTROLLER - AMD
14789 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14790 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14791 S:      Maintained
14792 F:      drivers/pinctrl/pinctrl-amd.c
14793
14794 PIN CONTROLLER - FREESCALE
14795 M:      Dong Aisheng <aisheng.dong@nxp.com>
14796 M:      Fabio Estevam <festevam@gmail.com>
14797 M:      Shawn Guo <shawnguo@kernel.org>
14798 M:      Stefan Agner <stefan@agner.ch>
14799 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14800 L:      linux-gpio@vger.kernel.org
14801 S:      Maintained
14802 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14803 F:      drivers/pinctrl/freescale/
14804
14805 PIN CONTROLLER - INTEL
14806 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14807 M:      Andy Shevchenko <andy@kernel.org>
14808 S:      Maintained
14809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14810 F:      drivers/pinctrl/intel/
14811
14812 PIN CONTROLLER - KEEMBAY
14813 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14814 S:      Supported
14815 F:      drivers/pinctrl/pinctrl-keembay*
14816
14817 PIN CONTROLLER - MEDIATEK
14818 M:      Sean Wang <sean.wang@kernel.org>
14819 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14820 S:      Maintained
14821 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14822 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14823 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14824 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14825 F:      drivers/pinctrl/mediatek/
14826
14827 PIN CONTROLLER - MICROCHIP AT91
14828 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14830 L:      linux-gpio@vger.kernel.org
14831 S:      Supported
14832 F:      drivers/gpio/gpio-sama5d2-piobu.c
14833 F:      drivers/pinctrl/pinctrl-at91*
14834
14835 PIN CONTROLLER - QUALCOMM
14836 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14837 L:      linux-arm-msm@vger.kernel.org
14838 S:      Maintained
14839 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14840 F:      drivers/pinctrl/qcom/
14841
14842 PIN CONTROLLER - RENESAS
14843 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14844 L:      linux-renesas-soc@vger.kernel.org
14845 S:      Supported
14846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14847 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14848 F:      drivers/pinctrl/renesas/
14849
14850 PIN CONTROLLER - SAMSUNG
14851 M:      Tomasz Figa <tomasz.figa@gmail.com>
14852 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14853 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14855 L:      linux-samsung-soc@vger.kernel.org
14856 S:      Maintained
14857 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14859 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14860 F:      drivers/pinctrl/samsung/
14861 F:      include/dt-bindings/pinctrl/samsung.h
14862
14863 PIN CONTROLLER - SINGLE
14864 M:      Tony Lindgren <tony@atomide.com>
14865 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14867 L:      linux-omap@vger.kernel.org
14868 S:      Maintained
14869 F:      drivers/pinctrl/pinctrl-single.c
14870
14871 PIN CONTROLLER - ST SPEAR
14872 M:      Viresh Kumar <vireshk@kernel.org>
14873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14874 S:      Maintained
14875 W:      http://www.st.com/spear
14876 F:      drivers/pinctrl/spear/
14877
14878 PKTCDVD DRIVER
14879 M:      linux-block@vger.kernel.org
14880 S:      Orphan
14881 F:      drivers/block/pktcdvd.c
14882 F:      include/linux/pktcdvd.h
14883 F:      include/uapi/linux/pktcdvd.h
14884
14885 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14886 M:      Tomasz Duszynski <tduszyns@gmail.com>
14887 S:      Maintained
14888 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14889 F:      drivers/iio/chemical/pms7003.c
14890
14891 PLDMFW LIBRARY
14892 M:      Jacob Keller <jacob.e.keller@intel.com>
14893 S:      Maintained
14894 F:      Documentation/driver-api/pldmfw/
14895 F:      include/linux/pldmfw.h
14896 F:      lib/pldmfw/
14897
14898 PLX DMA DRIVER
14899 M:      Logan Gunthorpe <logang@deltatee.com>
14900 S:      Maintained
14901 F:      drivers/dma/plx_dma.c
14902
14903 PM6764TR DRIVER
14904 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14905 L:      linux-hwmon@vger.kernel.org
14906 S:      Maintained
14907 F:      Documentation/hwmon/pm6764tr.rst
14908 F:      drivers/hwmon/pmbus/pm6764tr.c
14909
14910 PM-GRAPH UTILITY
14911 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14912 L:      linux-pm@vger.kernel.org
14913 S:      Supported
14914 W:      https://01.org/pm-graph
14915 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14916 T:      git git://github.com/intel/pm-graph
14917 F:      tools/power/pm-graph
14918
14919 PMBUS HARDWARE MONITORING DRIVERS
14920 M:      Guenter Roeck <linux@roeck-us.net>
14921 L:      linux-hwmon@vger.kernel.org
14922 S:      Maintained
14923 W:      http://hwmon.wiki.kernel.org/
14924 W:      http://www.roeck-us.net/linux/drivers/
14925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14926 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14927 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14928 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14929 F:      Documentation/hwmon/adm1275.rst
14930 F:      Documentation/hwmon/ibm-cffps.rst
14931 F:      Documentation/hwmon/ir35221.rst
14932 F:      Documentation/hwmon/lm25066.rst
14933 F:      Documentation/hwmon/ltc2978.rst
14934 F:      Documentation/hwmon/ltc3815.rst
14935 F:      Documentation/hwmon/max16064.rst
14936 F:      Documentation/hwmon/max20751.rst
14937 F:      Documentation/hwmon/max31785.rst
14938 F:      Documentation/hwmon/max34440.rst
14939 F:      Documentation/hwmon/max8688.rst
14940 F:      Documentation/hwmon/pmbus-core.rst
14941 F:      Documentation/hwmon/pmbus.rst
14942 F:      Documentation/hwmon/tps40422.rst
14943 F:      Documentation/hwmon/ucd9000.rst
14944 F:      Documentation/hwmon/ucd9200.rst
14945 F:      Documentation/hwmon/zl6100.rst
14946 F:      drivers/hwmon/pmbus/
14947 F:      include/linux/pmbus.h
14948
14949 PMC SIERRA MaxRAID DRIVER
14950 L:      linux-scsi@vger.kernel.org
14951 S:      Orphan
14952 W:      http://www.pmc-sierra.com/
14953 F:      drivers/scsi/pmcraid.*
14954
14955 PMC SIERRA PM8001 DRIVER
14956 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14957 L:      linux-scsi@vger.kernel.org
14958 S:      Supported
14959 F:      drivers/scsi/pm8001/
14960
14961 PNI RM3100 IIO DRIVER
14962 M:      Song Qiang <songqiang1304521@gmail.com>
14963 L:      linux-iio@vger.kernel.org
14964 S:      Maintained
14965 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14966 F:      drivers/iio/magnetometer/rm3100*
14967
14968 PNP SUPPORT
14969 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14970 L:      linux-acpi@vger.kernel.org
14971 S:      Maintained
14972 F:      drivers/pnp/
14973 F:      include/linux/pnp.h
14974
14975 POSIX CLOCKS and TIMERS
14976 M:      Thomas Gleixner <tglx@linutronix.de>
14977 L:      linux-kernel@vger.kernel.org
14978 S:      Maintained
14979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14980 F:      fs/timerfd.c
14981 F:      include/linux/time_namespace.h
14982 F:      include/linux/timer*
14983 F:      kernel/time/*timer*
14984 F:      kernel/time/namespace.c
14985
14986 POWER MANAGEMENT CORE
14987 M:      "Rafael J. Wysocki" <rafael@kernel.org>
14988 L:      linux-pm@vger.kernel.org
14989 S:      Supported
14990 B:      https://bugzilla.kernel.org
14991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14992 F:      drivers/base/power/
14993 F:      drivers/powercap/
14994 F:      include/linux/intel_rapl.h
14995 F:      include/linux/pm.h
14996 F:      include/linux/pm_*
14997 F:      include/linux/powercap.h
14998 F:      kernel/configs/nopm.config
14999
15000 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15001 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15002 L:      linux-pm@vger.kernel.org
15003 S:      Supported
15004 B:      https://bugzilla.kernel.org
15005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15006 F:      drivers/powercap/dtpm*
15007 F:      include/linux/dtpm.h
15008
15009 POWER STATE COORDINATION INTERFACE (PSCI)
15010 M:      Mark Rutland <mark.rutland@arm.com>
15011 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15013 S:      Maintained
15014 F:      drivers/firmware/psci/
15015 F:      include/linux/psci.h
15016 F:      include/uapi/linux/psci.h
15017
15018 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15019 M:      Sebastian Reichel <sre@kernel.org>
15020 L:      linux-pm@vger.kernel.org
15021 S:      Maintained
15022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15023 F:      Documentation/ABI/testing/sysfs-class-power
15024 F:      Documentation/devicetree/bindings/power/supply/
15025 F:      drivers/power/supply/
15026 F:      include/linux/power/
15027 F:      include/linux/power_supply.h
15028
15029 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15030 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15031 L:      linuxppc-dev@lists.ozlabs.org
15032 S:      Maintained
15033 F:      drivers/char/powernv-op-panel.c
15034
15035 PPP OVER ATM (RFC 2364)
15036 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15037 S:      Maintained
15038 F:      include/uapi/linux/atmppp.h
15039 F:      net/atm/pppoatm.c
15040
15041 PPP OVER ETHERNET
15042 M:      Michal Ostrowski <mostrows@earthlink.net>
15043 S:      Maintained
15044 F:      drivers/net/ppp/pppoe.c
15045 F:      drivers/net/ppp/pppox.c
15046
15047 PPP OVER L2TP
15048 M:      James Chapman <jchapman@katalix.com>
15049 S:      Maintained
15050 F:      include/linux/if_pppol2tp.h
15051 F:      include/uapi/linux/if_pppol2tp.h
15052 F:      net/l2tp/l2tp_ppp.c
15053
15054 PPP PROTOCOL DRIVERS AND COMPRESSORS
15055 M:      Paul Mackerras <paulus@samba.org>
15056 L:      linux-ppp@vger.kernel.org
15057 S:      Maintained
15058 F:      drivers/net/ppp/ppp_*
15059
15060 PPS SUPPORT
15061 M:      Rodolfo Giometti <giometti@enneenne.com>
15062 L:      linuxpps@ml.enneenne.com (subscribers-only)
15063 S:      Maintained
15064 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15065 F:      Documentation/ABI/testing/sysfs-pps
15066 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15067 F:      Documentation/driver-api/pps.rst
15068 F:      drivers/pps/
15069 F:      include/linux/pps*.h
15070 F:      include/uapi/linux/pps.h
15071
15072 PPTP DRIVER
15073 M:      Dmitry Kozlov <xeb@mail.ru>
15074 L:      netdev@vger.kernel.org
15075 S:      Maintained
15076 W:      http://sourceforge.net/projects/accel-pptp
15077 F:      drivers/net/ppp/pptp.c
15078
15079 PRESSURE STALL INFORMATION (PSI)
15080 M:      Johannes Weiner <hannes@cmpxchg.org>
15081 S:      Maintained
15082 F:      include/linux/psi*
15083 F:      kernel/sched/psi.c
15084
15085 PRINTK
15086 M:      Petr Mladek <pmladek@suse.com>
15087 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15088 R:      Steven Rostedt <rostedt@goodmis.org>
15089 R:      John Ogness <john.ogness@linutronix.de>
15090 S:      Maintained
15091 F:      include/linux/printk.h
15092 F:      kernel/printk/
15093
15094 PRINTK INDEXING
15095 R:      Chris Down <chris@chrisdown.name>
15096 S:      Maintained
15097 F:      kernel/printk/index.c
15098
15099 PROC FILESYSTEM
15100 L:      linux-kernel@vger.kernel.org
15101 L:      linux-fsdevel@vger.kernel.org
15102 S:      Maintained
15103 F:      Documentation/filesystems/proc.rst
15104 F:      fs/proc/
15105 F:      include/linux/proc_fs.h
15106 F:      tools/testing/selftests/proc/
15107
15108 PROC SYSCTL
15109 M:      Luis Chamberlain <mcgrof@kernel.org>
15110 M:      Kees Cook <keescook@chromium.org>
15111 M:      Iurii Zaikin <yzaikin@google.com>
15112 L:      linux-kernel@vger.kernel.org
15113 L:      linux-fsdevel@vger.kernel.org
15114 S:      Maintained
15115 F:      fs/proc/proc_sysctl.c
15116 F:      include/linux/sysctl.h
15117 F:      kernel/sysctl-test.c
15118 F:      kernel/sysctl.c
15119 F:      tools/testing/selftests/sysctl/
15120
15121 PS3 NETWORK SUPPORT
15122 M:      Geoff Levand <geoff@infradead.org>
15123 L:      netdev@vger.kernel.org
15124 L:      linuxppc-dev@lists.ozlabs.org
15125 S:      Maintained
15126 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15127
15128 PS3 PLATFORM SUPPORT
15129 M:      Geoff Levand <geoff@infradead.org>
15130 L:      linuxppc-dev@lists.ozlabs.org
15131 S:      Maintained
15132 F:      arch/powerpc/boot/ps3*
15133 F:      arch/powerpc/include/asm/lv1call.h
15134 F:      arch/powerpc/include/asm/ps3*.h
15135 F:      arch/powerpc/platforms/ps3/
15136 F:      drivers/*/ps3*
15137 F:      drivers/ps3/
15138 F:      drivers/rtc/rtc-ps3.c
15139 F:      drivers/usb/host/*ps3.c
15140 F:      sound/ppc/snd_ps3*
15141
15142 PS3VRAM DRIVER
15143 M:      Jim Paris <jim@jtan.com>
15144 M:      Geoff Levand <geoff@infradead.org>
15145 L:      linuxppc-dev@lists.ozlabs.org
15146 S:      Maintained
15147 F:      drivers/block/ps3vram.c
15148
15149 PSAMPLE PACKET SAMPLING SUPPORT
15150 M:      Yotam Gigi <yotam.gi@gmail.com>
15151 S:      Maintained
15152 F:      include/net/psample.h
15153 F:      include/uapi/linux/psample.h
15154 F:      net/psample
15155
15156 PSTORE FILESYSTEM
15157 M:      Kees Cook <keescook@chromium.org>
15158 M:      Anton Vorontsov <anton@enomsg.org>
15159 M:      Colin Cross <ccross@android.com>
15160 M:      Tony Luck <tony.luck@intel.com>
15161 S:      Maintained
15162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15163 F:      Documentation/admin-guide/ramoops.rst
15164 F:      Documentation/admin-guide/pstore-blk.rst
15165 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15166 F:      drivers/acpi/apei/erst.c
15167 F:      drivers/firmware/efi/efi-pstore.c
15168 F:      fs/pstore/
15169 F:      include/linux/pstore*
15170 K:      \b(pstore|ramoops)
15171
15172 PTP HARDWARE CLOCK SUPPORT
15173 M:      Richard Cochran <richardcochran@gmail.com>
15174 L:      netdev@vger.kernel.org
15175 S:      Maintained
15176 W:      http://linuxptp.sourceforge.net/
15177 F:      Documentation/ABI/testing/sysfs-ptp
15178 F:      Documentation/driver-api/ptp.rst
15179 F:      drivers/net/phy/dp83640*
15180 F:      drivers/ptp/*
15181 F:      include/linux/ptp_cl*
15182
15183 PTP VIRTUAL CLOCK SUPPORT
15184 M:      Yangbo Lu <yangbo.lu@nxp.com>
15185 L:      netdev@vger.kernel.org
15186 S:      Maintained
15187 F:      drivers/ptp/ptp_vclock.c
15188 F:      net/ethtool/phc_vclocks.c
15189
15190 PTRACE SUPPORT
15191 M:      Oleg Nesterov <oleg@redhat.com>
15192 S:      Maintained
15193 F:      arch/*/*/ptrace*.c
15194 F:      arch/*/include/asm/ptrace*.h
15195 F:      arch/*/ptrace*.c
15196 F:      include/asm-generic/syscall.h
15197 F:      include/linux/ptrace.h
15198 F:      include/linux/regset.h
15199 F:      include/linux/tracehook.h
15200 F:      include/uapi/linux/ptrace.h
15201 F:      include/uapi/linux/ptrace.h
15202 F:      kernel/ptrace.c
15203
15204 PULSE8-CEC DRIVER
15205 M:      Hans Verkuil <hverkuil@xs4all.nl>
15206 L:      linux-media@vger.kernel.org
15207 S:      Maintained
15208 T:      git git://linuxtv.org/media_tree.git
15209 F:      Documentation/admin-guide/media/pulse8-cec.rst
15210 F:      drivers/media/cec/usb/pulse8/
15211
15212 PVRUSB2 VIDEO4LINUX DRIVER
15213 M:      Mike Isely <isely@pobox.com>
15214 L:      pvrusb2@isely.net       (subscribers-only)
15215 L:      linux-media@vger.kernel.org
15216 S:      Maintained
15217 W:      http://www.isely.net/pvrusb2/
15218 T:      git git://linuxtv.org/media_tree.git
15219 F:      Documentation/driver-api/media/drivers/pvrusb2*
15220 F:      drivers/media/usb/pvrusb2/
15221
15222 PWC WEBCAM DRIVER
15223 M:      Hans Verkuil <hverkuil@xs4all.nl>
15224 L:      linux-media@vger.kernel.org
15225 S:      Odd Fixes
15226 T:      git git://linuxtv.org/media_tree.git
15227 F:      drivers/media/usb/pwc/*
15228 F:      include/trace/events/pwc.h
15229
15230 PWM FAN DRIVER
15231 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15232 L:      linux-hwmon@vger.kernel.org
15233 S:      Supported
15234 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15235 F:      Documentation/hwmon/pwm-fan.rst
15236 F:      drivers/hwmon/pwm-fan.c
15237
15238 PWM IR Transmitter
15239 M:      Sean Young <sean@mess.org>
15240 L:      linux-media@vger.kernel.org
15241 S:      Maintained
15242 F:      drivers/media/rc/pwm-ir-tx.c
15243
15244 PWM SUBSYSTEM
15245 M:      Thierry Reding <thierry.reding@gmail.com>
15246 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15247 M:      Lee Jones <lee.jones@linaro.org>
15248 L:      linux-pwm@vger.kernel.org
15249 S:      Maintained
15250 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15252 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15253 F:      Documentation/devicetree/bindings/pwm/
15254 F:      Documentation/driver-api/pwm.rst
15255 F:      drivers/gpio/gpio-mvebu.c
15256 F:      drivers/pwm/
15257 F:      drivers/video/backlight/pwm_bl.c
15258 F:      include/linux/pwm.h
15259 F:      include/linux/pwm_backlight.h
15260 K:      pwm_(config|apply_state|ops)
15261
15262 PXA GPIO DRIVER
15263 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15264 L:      linux-gpio@vger.kernel.org
15265 S:      Maintained
15266 F:      drivers/gpio/gpio-pxa.c
15267
15268 PXA MMCI DRIVER
15269 S:      Orphan
15270
15271 PXA RTC DRIVER
15272 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15273 L:      linux-rtc@vger.kernel.org
15274 S:      Maintained
15275
15276 PXA2xx/PXA3xx SUPPORT
15277 M:      Daniel Mack <daniel@zonque.org>
15278 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15279 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15281 S:      Maintained
15282 T:      git git://github.com/hzhuang1/linux.git
15283 T:      git git://github.com/rjarzmik/linux.git
15284 F:      arch/arm/boot/dts/pxa*
15285 F:      arch/arm/mach-pxa/
15286 F:      drivers/dma/pxa*
15287 F:      drivers/pcmcia/pxa2xx*
15288 F:      drivers/pinctrl/pxa/
15289 F:      drivers/spi/spi-pxa2xx*
15290 F:      drivers/usb/gadget/udc/pxa2*
15291 F:      include/sound/pxa2xx-lib.h
15292 F:      sound/arm/pxa*
15293 F:      sound/soc/pxa/
15294
15295 QAT DRIVER
15296 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15297 L:      qat-linux@intel.com
15298 S:      Supported
15299 F:      drivers/crypto/qat/
15300
15301 QCOM AUDIO (ASoC) DRIVERS
15302 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15303 M:      Banajit Goswami <bgoswami@codeaurora.org>
15304 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15305 S:      Supported
15306 F:      sound/soc/codecs/lpass-va-macro.c
15307 F:      sound/soc/codecs/lpass-wsa-macro.*
15308 F:      sound/soc/codecs/msm8916-wcd-analog.c
15309 F:      sound/soc/codecs/msm8916-wcd-digital.c
15310 F:      sound/soc/codecs/wcd9335.*
15311 F:      sound/soc/codecs/wcd934x.c
15312 F:      sound/soc/codecs/wcd-clsh-v2.*
15313 F:      sound/soc/codecs/wsa881x.c
15314 F:      sound/soc/qcom/
15315
15316 QCOM IPA DRIVER
15317 M:      Alex Elder <elder@kernel.org>
15318 L:      netdev@vger.kernel.org
15319 S:      Supported
15320 F:      drivers/net/ipa/
15321
15322 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15323 M:      Gabriel Somlo <somlo@cmu.edu>
15324 M:      "Michael S. Tsirkin" <mst@redhat.com>
15325 L:      qemu-devel@nongnu.org
15326 S:      Maintained
15327 F:      drivers/firmware/qemu_fw_cfg.c
15328 F:      include/uapi/linux/qemu_fw_cfg.h
15329
15330 QIB DRIVER
15331 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15332 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15333 L:      linux-rdma@vger.kernel.org
15334 S:      Supported
15335 F:      drivers/infiniband/hw/qib/
15336
15337 QLOGIC QL41xxx FCOE DRIVER
15338 M:      Saurav Kashyap <skashyap@marvell.com>
15339 M:      Javed Hasan <jhasan@marvell.com>
15340 M:      GR-QLogic-Storage-Upstream@marvell.com
15341 L:      linux-scsi@vger.kernel.org
15342 S:      Supported
15343 F:      drivers/scsi/qedf/
15344
15345 QLOGIC QL41xxx ISCSI DRIVER
15346 M:      Nilesh Javali <njavali@marvell.com>
15347 M:      Manish Rangankar <mrangankar@marvell.com>
15348 M:      GR-QLogic-Storage-Upstream@marvell.com
15349 L:      linux-scsi@vger.kernel.org
15350 S:      Supported
15351 F:      drivers/scsi/qedi/
15352
15353 QLOGIC QL4xxx ETHERNET DRIVER
15354 M:      Ariel Elior <aelior@marvell.com>
15355 M:      GR-everest-linux-l2@marvell.com
15356 L:      netdev@vger.kernel.org
15357 S:      Supported
15358 F:      drivers/net/ethernet/qlogic/qed/
15359 F:      drivers/net/ethernet/qlogic/qede/
15360 F:      include/linux/qed/
15361
15362 QLOGIC QL4xxx RDMA DRIVER
15363 M:      Michal Kalderon <mkalderon@marvell.com>
15364 M:      Ariel Elior <aelior@marvell.com>
15365 L:      linux-rdma@vger.kernel.org
15366 S:      Supported
15367 F:      drivers/infiniband/hw/qedr/
15368 F:      include/uapi/rdma/qedr-abi.h
15369
15370 QLOGIC QLA1280 SCSI DRIVER
15371 M:      Michael Reed <mdr@sgi.com>
15372 L:      linux-scsi@vger.kernel.org
15373 S:      Maintained
15374 F:      drivers/scsi/qla1280.[ch]
15375
15376 QLOGIC QLA2XXX FC-SCSI DRIVER
15377 M:      Nilesh Javali <njavali@marvell.com>
15378 M:      GR-QLogic-Storage-Upstream@marvell.com
15379 L:      linux-scsi@vger.kernel.org
15380 S:      Supported
15381 F:      drivers/scsi/qla2xxx/
15382
15383 QLOGIC QLA3XXX NETWORK DRIVER
15384 M:      GR-Linux-NIC-Dev@marvell.com
15385 L:      netdev@vger.kernel.org
15386 S:      Supported
15387 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15388
15389 QLOGIC QLA4XXX iSCSI DRIVER
15390 M:      Nilesh Javali <njavali@marvell.com>
15391 M:      Manish Rangankar <mrangankar@marvell.com>
15392 M:      GR-QLogic-Storage-Upstream@marvell.com
15393 L:      linux-scsi@vger.kernel.org
15394 S:      Supported
15395 F:      drivers/scsi/qla4xxx/
15396
15397 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15398 M:      Shahed Shaikh <shshaikh@marvell.com>
15399 M:      Manish Chopra <manishc@marvell.com>
15400 M:      GR-Linux-NIC-Dev@marvell.com
15401 L:      netdev@vger.kernel.org
15402 S:      Supported
15403 F:      drivers/net/ethernet/qlogic/qlcnic/
15404
15405 QLOGIC QLGE 10Gb ETHERNET DRIVER
15406 M:      Manish Chopra <manishc@marvell.com>
15407 M:      GR-Linux-NIC-Dev@marvell.com
15408 M:      Coiby Xu <coiby.xu@gmail.com>
15409 L:      netdev@vger.kernel.org
15410 S:      Supported
15411 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15412 F:      drivers/staging/qlge/
15413
15414 QM1D1B0004 MEDIA DRIVER
15415 M:      Akihiro Tsukada <tskd08@gmail.com>
15416 L:      linux-media@vger.kernel.org
15417 S:      Odd Fixes
15418 F:      drivers/media/tuners/qm1d1b0004*
15419
15420 QM1D1C0042 MEDIA DRIVER
15421 M:      Akihiro Tsukada <tskd08@gmail.com>
15422 L:      linux-media@vger.kernel.org
15423 S:      Odd Fixes
15424 F:      drivers/media/tuners/qm1d1c0042*
15425
15426 QNX4 FILESYSTEM
15427 M:      Anders Larsen <al@alarsen.net>
15428 S:      Maintained
15429 W:      http://www.alarsen.net/linux/qnx4fs/
15430 F:      fs/qnx4/
15431 F:      include/uapi/linux/qnx4_fs.h
15432 F:      include/uapi/linux/qnxtypes.h
15433
15434 QORIQ DPAA2 FSL-MC BUS DRIVER
15435 M:      Stuart Yoder <stuyoder@gmail.com>
15436 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15437 L:      linux-kernel@vger.kernel.org
15438 S:      Maintained
15439 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15440 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15441 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15442 F:      drivers/bus/fsl-mc/
15443 F:      include/uapi/linux/fsl_mc.h
15444
15445 QT1010 MEDIA DRIVER
15446 M:      Antti Palosaari <crope@iki.fi>
15447 L:      linux-media@vger.kernel.org
15448 S:      Maintained
15449 W:      https://linuxtv.org
15450 W:      http://palosaari.fi/linux/
15451 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15452 T:      git git://linuxtv.org/anttip/media_tree.git
15453 F:      drivers/media/tuners/qt1010*
15454
15455 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15456 M:      Kalle Valo <kvalo@codeaurora.org>
15457 L:      ath10k@lists.infradead.org
15458 S:      Supported
15459 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15461 F:      drivers/net/wireless/ath/ath10k/
15462
15463 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15464 M:      Kalle Valo <kvalo@codeaurora.org>
15465 L:      ath11k@lists.infradead.org
15466 S:      Supported
15467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15468 F:      drivers/net/wireless/ath/ath11k/
15469
15470 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15471 M:      ath9k-devel@qca.qualcomm.com
15472 L:      linux-wireless@vger.kernel.org
15473 S:      Supported
15474 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15475 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15476 F:      drivers/net/wireless/ath/ath9k/
15477
15478 QUALCOMM CAMERA SUBSYSTEM DRIVER
15479 M:      Robert Foss <robert.foss@linaro.org>
15480 M:      Todor Tomov <todor.too@gmail.com>
15481 L:      linux-media@vger.kernel.org
15482 S:      Maintained
15483 F:      Documentation/admin-guide/media/qcom_camss.rst
15484 F:      Documentation/devicetree/bindings/media/*camss*
15485 F:      drivers/media/platform/qcom/camss/
15486
15487 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15488 M:      Niklas Cassel <nks@flawful.org>
15489 L:      linux-pm@vger.kernel.org
15490 L:      linux-arm-msm@vger.kernel.org
15491 S:      Maintained
15492 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15493 F:      drivers/soc/qcom/cpr.c
15494
15495 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15496 M:      Ilia Lin <ilia.lin@kernel.org>
15497 L:      linux-pm@vger.kernel.org
15498 S:      Maintained
15499 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15500 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15501
15502 QUALCOMM CRYPTO DRIVERS
15503 M:      Thara Gopinath <thara.gopinath@linaro.org>
15504 L:      linux-crypto@vger.kernel.org
15505 L:      linux-arm-msm@vger.kernel.org
15506 S:      Maintained
15507 F:      drivers/crypto/qce/
15508
15509 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15510 M:      Timur Tabi <timur@kernel.org>
15511 L:      netdev@vger.kernel.org
15512 S:      Maintained
15513 F:      drivers/net/ethernet/qualcomm/emac/
15514
15515 QUALCOMM ETHQOS ETHERNET DRIVER
15516 M:      Vinod Koul <vkoul@kernel.org>
15517 L:      netdev@vger.kernel.org
15518 S:      Maintained
15519 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15520 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15521
15522 QUALCOMM GENERIC INTERFACE I2C DRIVER
15523 M:      Akash Asthana <akashast@codeaurora.org>
15524 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15525 L:      linux-i2c@vger.kernel.org
15526 L:      linux-arm-msm@vger.kernel.org
15527 S:      Supported
15528 F:      drivers/i2c/busses/i2c-qcom-geni.c
15529
15530 QUALCOMM HEXAGON ARCHITECTURE
15531 M:      Brian Cain <bcain@codeaurora.org>
15532 L:      linux-hexagon@vger.kernel.org
15533 S:      Supported
15534 F:      arch/hexagon/
15535
15536 QUALCOMM HIDMA DRIVER
15537 M:      Sinan Kaya <okaya@kernel.org>
15538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15539 L:      linux-arm-msm@vger.kernel.org
15540 L:      dmaengine@vger.kernel.org
15541 S:      Supported
15542 F:      drivers/dma/qcom/hidma*
15543
15544 QUALCOMM I2C CCI DRIVER
15545 M:      Loic Poulain <loic.poulain@linaro.org>
15546 M:      Robert Foss <robert.foss@linaro.org>
15547 L:      linux-i2c@vger.kernel.org
15548 L:      linux-arm-msm@vger.kernel.org
15549 S:      Maintained
15550 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15551 F:      drivers/i2c/busses/i2c-qcom-cci.c
15552
15553 QUALCOMM IOMMU
15554 M:      Rob Clark <robdclark@gmail.com>
15555 L:      iommu@lists.linux-foundation.org
15556 L:      linux-arm-msm@vger.kernel.org
15557 S:      Maintained
15558 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15559
15560 QUALCOMM IPC ROUTER (QRTR) DRIVER
15561 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15562 L:      linux-arm-msm@vger.kernel.org
15563 S:      Maintained
15564 F:      include/trace/events/qrtr.h
15565 F:      include/uapi/linux/qrtr.h
15566 F:      net/qrtr/
15567
15568 QUALCOMM IPCC MAILBOX DRIVER
15569 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15570 L:      linux-arm-msm@vger.kernel.org
15571 S:      Supported
15572 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15573 F:      drivers/mailbox/qcom-ipcc.c
15574 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15575
15576 QUALCOMM IPQ4019 USB PHY DRIVER
15577 M:      Robert Marko <robert.marko@sartura.hr>
15578 M:      Luka Perkov <luka.perkov@sartura.hr>
15579 L:      linux-arm-msm@vger.kernel.org
15580 S:      Maintained
15581 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15582 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15583
15584 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15585 M:      Robert Marko <robert.marko@sartura.hr>
15586 M:      Luka Perkov <luka.perkov@sartura.hr>
15587 L:      linux-arm-msm@vger.kernel.org
15588 S:      Maintained
15589 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15590 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15591
15592 QUALCOMM RMNET DRIVER
15593 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15594 M:      Sean Tranchetti <stranche@codeaurora.org>
15595 L:      netdev@vger.kernel.org
15596 S:      Maintained
15597 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15598 F:      drivers/net/ethernet/qualcomm/rmnet/
15599 F:      include/linux/if_rmnet.h
15600
15601 QUALCOMM TSENS THERMAL DRIVER
15602 M:      Amit Kucheria <amitk@kernel.org>
15603 M:      Thara Gopinath <thara.gopinath@linaro.org>
15604 L:      linux-pm@vger.kernel.org
15605 L:      linux-arm-msm@vger.kernel.org
15606 S:      Maintained
15607 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15608 F:      drivers/thermal/qcom/
15609
15610 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15611 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15612 L:      linux-media@vger.kernel.org
15613 L:      linux-arm-msm@vger.kernel.org
15614 S:      Maintained
15615 T:      git git://linuxtv.org/media_tree.git
15616 F:      Documentation/devicetree/bindings/media/*venus*
15617 F:      drivers/media/platform/qcom/venus/
15618
15619 QUALCOMM WCN36XX WIRELESS DRIVER
15620 M:      Kalle Valo <kvalo@codeaurora.org>
15621 L:      wcn36xx@lists.infradead.org
15622 S:      Supported
15623 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15624 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15625 F:      drivers/net/wireless/ath/wcn36xx/
15626
15627 QUANTENNA QTNFMAC WIRELESS DRIVER
15628 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15629 R:      Sergey Matyukevich <geomatsi@gmail.com>
15630 L:      linux-wireless@vger.kernel.org
15631 S:      Maintained
15632 F:      drivers/net/wireless/quantenna
15633
15634 RADEON and AMDGPU DRM DRIVERS
15635 M:      Alex Deucher <alexander.deucher@amd.com>
15636 M:      Christian König <christian.koenig@amd.com>
15637 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15638 L:      amd-gfx@lists.freedesktop.org
15639 S:      Supported
15640 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15641 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15642 C:      irc://irc.oftc.net/radeon
15643 F:      drivers/gpu/drm/amd/
15644 F:      drivers/gpu/drm/radeon/
15645 F:      include/uapi/drm/amdgpu_drm.h
15646 F:      include/uapi/drm/radeon_drm.h
15647
15648 RADEON FRAMEBUFFER DISPLAY DRIVER
15649 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15650 L:      linux-fbdev@vger.kernel.org
15651 S:      Maintained
15652 F:      drivers/video/fbdev/aty/radeon*
15653 F:      include/uapi/linux/radeonfb.h
15654
15655 RADIOSHARK RADIO DRIVER
15656 M:      Hans Verkuil <hverkuil@xs4all.nl>
15657 L:      linux-media@vger.kernel.org
15658 S:      Maintained
15659 T:      git git://linuxtv.org/media_tree.git
15660 F:      drivers/media/radio/radio-shark.c
15661
15662 RADIOSHARK2 RADIO DRIVER
15663 M:      Hans Verkuil <hverkuil@xs4all.nl>
15664 L:      linux-media@vger.kernel.org
15665 S:      Maintained
15666 T:      git git://linuxtv.org/media_tree.git
15667 F:      drivers/media/radio/radio-shark2.c
15668 F:      drivers/media/radio/radio-tea5777.c
15669
15670 RADOS BLOCK DEVICE (RBD)
15671 M:      Ilya Dryomov <idryomov@gmail.com>
15672 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15673 L:      ceph-devel@vger.kernel.org
15674 S:      Supported
15675 W:      http://ceph.com/
15676 T:      git git://github.com/ceph/ceph-client.git
15677 F:      Documentation/ABI/testing/sysfs-bus-rbd
15678 F:      drivers/block/rbd.c
15679 F:      drivers/block/rbd_types.h
15680
15681 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15682 M:      Paul Mackerras <paulus@samba.org>
15683 L:      linux-fbdev@vger.kernel.org
15684 S:      Maintained
15685 F:      drivers/video/fbdev/aty/aty128fb.c
15686
15687 RAINSHADOW-CEC DRIVER
15688 M:      Hans Verkuil <hverkuil@xs4all.nl>
15689 L:      linux-media@vger.kernel.org
15690 S:      Maintained
15691 T:      git git://linuxtv.org/media_tree.git
15692 F:      drivers/media/cec/usb/rainshadow/
15693
15694 RALINK MIPS ARCHITECTURE
15695 M:      John Crispin <john@phrozen.org>
15696 L:      linux-mips@vger.kernel.org
15697 S:      Maintained
15698 F:      arch/mips/ralink
15699
15700 RALINK RT2X00 WIRELESS LAN DRIVER
15701 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15702 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15703 L:      linux-wireless@vger.kernel.org
15704 S:      Maintained
15705 F:      drivers/net/wireless/ralink/rt2x00/
15706
15707 RAMDISK RAM BLOCK DEVICE DRIVER
15708 M:      Jens Axboe <axboe@kernel.dk>
15709 S:      Maintained
15710 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15711 F:      drivers/block/brd.c
15712
15713 RANCHU VIRTUAL BOARD FOR MIPS
15714 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15715 L:      linux-mips@vger.kernel.org
15716 S:      Supported
15717 F:      arch/mips/configs/generic/board-ranchu.config
15718 F:      arch/mips/generic/board-ranchu.c
15719
15720 RANDOM NUMBER DRIVER
15721 M:      "Theodore Ts'o" <tytso@mit.edu>
15722 S:      Maintained
15723 F:      drivers/char/random.c
15724
15725 RAPIDIO SUBSYSTEM
15726 M:      Matt Porter <mporter@kernel.crashing.org>
15727 M:      Alexandre Bounine <alex.bou9@gmail.com>
15728 S:      Maintained
15729 F:      drivers/rapidio/
15730
15731 RAS INFRASTRUCTURE
15732 M:      Tony Luck <tony.luck@intel.com>
15733 M:      Borislav Petkov <bp@alien8.de>
15734 L:      linux-edac@vger.kernel.org
15735 S:      Maintained
15736 F:      Documentation/admin-guide/ras.rst
15737 F:      drivers/ras/
15738 F:      include/linux/ras.h
15739 F:      include/ras/ras_event.h
15740
15741 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15742 L:      linux-wireless@vger.kernel.org
15743 S:      Orphan
15744 F:      drivers/net/wireless/ray*
15745
15746 RC-CORE / LIRC FRAMEWORK
15747 M:      Sean Young <sean@mess.org>
15748 L:      linux-media@vger.kernel.org
15749 S:      Maintained
15750 W:      http://linuxtv.org
15751 T:      git git://linuxtv.org/media_tree.git
15752 F:      Documentation/driver-api/media/rc-core.rst
15753 F:      Documentation/userspace-api/media/rc/
15754 F:      drivers/media/rc/
15755 F:      include/media/rc-map.h
15756 F:      include/media/rc-core.h
15757 F:      include/uapi/linux/lirc.h
15758
15759 RCMM REMOTE CONTROLS DECODER
15760 M:      Patrick Lerda <patrick9876@free.fr>
15761 S:      Maintained
15762 F:      drivers/media/rc/ir-rcmm-decoder.c
15763
15764 RCUTORTURE TEST FRAMEWORK
15765 M:      "Paul E. McKenney" <paulmck@kernel.org>
15766 M:      Josh Triplett <josh@joshtriplett.org>
15767 R:      Steven Rostedt <rostedt@goodmis.org>
15768 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15769 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15770 L:      rcu@vger.kernel.org
15771 S:      Supported
15772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15773 F:      tools/testing/selftests/rcutorture
15774
15775 RDACM20 Camera Sensor
15776 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15777 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15778 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15779 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15780 L:      linux-media@vger.kernel.org
15781 S:      Maintained
15782 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15783 F:      drivers/media/i2c/max9271.c
15784 F:      drivers/media/i2c/max9271.h
15785 F:      drivers/media/i2c/rdacm20.c
15786
15787 RDACM21 Camera Sensor
15788 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15789 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15790 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15791 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15792 L:      linux-media@vger.kernel.org
15793 S:      Maintained
15794 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15795 F:      drivers/media/i2c/max9271.c
15796 F:      drivers/media/i2c/max9271.h
15797 F:      drivers/media/i2c/rdacm21.c
15798
15799 RDC R-321X SoC
15800 M:      Florian Fainelli <florian@openwrt.org>
15801 S:      Maintained
15802
15803 RDC R6040 FAST ETHERNET DRIVER
15804 M:      Florian Fainelli <f.fainelli@gmail.com>
15805 L:      netdev@vger.kernel.org
15806 S:      Maintained
15807 F:      drivers/net/ethernet/rdc/r6040.c
15808
15809 RDMAVT - RDMA verbs software
15810 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15811 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15812 L:      linux-rdma@vger.kernel.org
15813 S:      Supported
15814 F:      drivers/infiniband/sw/rdmavt
15815
15816 RDS - RELIABLE DATAGRAM SOCKETS
15817 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15818 L:      netdev@vger.kernel.org
15819 L:      linux-rdma@vger.kernel.org
15820 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15821 S:      Supported
15822 W:      https://oss.oracle.com/projects/rds/
15823 F:      Documentation/networking/rds.rst
15824 F:      net/rds/
15825
15826 RDT - RESOURCE ALLOCATION
15827 M:      Fenghua Yu <fenghua.yu@intel.com>
15828 M:      Reinette Chatre <reinette.chatre@intel.com>
15829 L:      linux-kernel@vger.kernel.org
15830 S:      Supported
15831 F:      Documentation/x86/resctrl*
15832 F:      arch/x86/include/asm/resctrl.h
15833 F:      arch/x86/kernel/cpu/resctrl/
15834 F:      tools/testing/selftests/resctrl/
15835
15836 READ-COPY UPDATE (RCU)
15837 M:      "Paul E. McKenney" <paulmck@kernel.org>
15838 M:      Josh Triplett <josh@joshtriplett.org>
15839 R:      Steven Rostedt <rostedt@goodmis.org>
15840 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15841 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15842 R:      Joel Fernandes <joel@joelfernandes.org>
15843 L:      rcu@vger.kernel.org
15844 S:      Supported
15845 W:      http://www.rdrop.com/users/paulmck/RCU/
15846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15847 F:      Documentation/RCU/
15848 F:      include/linux/rcu*
15849 F:      kernel/rcu/
15850 X:      Documentation/RCU/torture.rst
15851 X:      include/linux/srcu*.h
15852 X:      kernel/rcu/srcu*.c
15853
15854 REAL TIME CLOCK (RTC) SUBSYSTEM
15855 M:      Alessandro Zummo <a.zummo@towertech.it>
15856 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15857 L:      linux-rtc@vger.kernel.org
15858 S:      Maintained
15859 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15861 F:      Documentation/admin-guide/rtc.rst
15862 F:      Documentation/devicetree/bindings/rtc/
15863 F:      drivers/rtc/
15864 F:      include/linux/platform_data/rtc-*
15865 F:      include/linux/rtc.h
15866 F:      include/linux/rtc/
15867 F:      include/uapi/linux/rtc.h
15868 F:      tools/testing/selftests/rtc/
15869
15870 REALTEK AUDIO CODECS
15871 M:      Oder Chiou <oder_chiou@realtek.com>
15872 S:      Maintained
15873 F:      include/sound/rt*.h
15874 F:      sound/soc/codecs/rt*
15875
15876 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15877 M:      Linus Walleij <linus.walleij@linaro.org>
15878 S:      Maintained
15879 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15880 F:      drivers/net/dsa/realtek-smi*
15881 F:      drivers/net/dsa/rtl83*
15882
15883 REALTEK WIRELESS DRIVER (rtlwifi family)
15884 M:      Ping-Ke Shih <pkshih@realtek.com>
15885 L:      linux-wireless@vger.kernel.org
15886 S:      Maintained
15887 W:      https://wireless.wiki.kernel.org/
15888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15889 F:      drivers/net/wireless/realtek/rtlwifi/
15890
15891 REALTEK WIRELESS DRIVER (rtw88)
15892 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15893 L:      linux-wireless@vger.kernel.org
15894 S:      Maintained
15895 F:      drivers/net/wireless/realtek/rtw88/
15896
15897 REALTEK WIRELESS DRIVER (rtw89)
15898 M:      Ping-Ke Shih <pkshih@realtek.com>
15899 L:      linux-wireless@vger.kernel.org
15900 S:      Maintained
15901 F:      drivers/net/wireless/realtek/rtw89/
15902
15903 REDPINE WIRELESS DRIVER
15904 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15905 M:      Siva Rebbagondla <siva8118@gmail.com>
15906 L:      linux-wireless@vger.kernel.org
15907 S:      Maintained
15908 F:      drivers/net/wireless/rsi/
15909
15910 REGISTER MAP ABSTRACTION
15911 M:      Mark Brown <broonie@kernel.org>
15912 L:      linux-kernel@vger.kernel.org
15913 S:      Supported
15914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15915 F:      Documentation/devicetree/bindings/regmap/
15916 F:      drivers/base/regmap/
15917 F:      include/linux/regmap.h
15918
15919 REISERFS FILE SYSTEM
15920 L:      reiserfs-devel@vger.kernel.org
15921 S:      Supported
15922 F:      fs/reiserfs/
15923
15924 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15925 M:      Ohad Ben-Cohen <ohad@wizery.com>
15926 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15927 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15928 L:      linux-remoteproc@vger.kernel.org
15929 S:      Maintained
15930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15931 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15932 F:      Documentation/devicetree/bindings/remoteproc/
15933 F:      Documentation/staging/remoteproc.rst
15934 F:      drivers/remoteproc/
15935 F:      include/linux/remoteproc.h
15936 F:      include/linux/remoteproc/
15937
15938 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15939 M:      Ohad Ben-Cohen <ohad@wizery.com>
15940 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15941 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15942 L:      linux-remoteproc@vger.kernel.org
15943 S:      Maintained
15944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15945 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15946 F:      Documentation/staging/rpmsg.rst
15947 F:      drivers/rpmsg/
15948 F:      include/linux/rpmsg.h
15949 F:      include/linux/rpmsg/
15950 F:      include/uapi/linux/rpmsg.h
15951 F:      samples/rpmsg/
15952
15953 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15954 M:      Stephan Gerhold <stephan@gerhold.net>
15955 L:      netdev@vger.kernel.org
15956 L:      linux-remoteproc@vger.kernel.org
15957 S:      Maintained
15958 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
15959
15960 RENESAS CLOCK DRIVERS
15961 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15962 L:      linux-renesas-soc@vger.kernel.org
15963 S:      Supported
15964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15965 F:      Documentation/devicetree/bindings/clock/renesas,*
15966 F:      drivers/clk/renesas/
15967
15968 RENESAS EMEV2 I2C DRIVER
15969 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15970 L:      linux-renesas-soc@vger.kernel.org
15971 S:      Supported
15972 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
15973 F:      drivers/i2c/busses/i2c-emev2.c
15974
15975 RENESAS ETHERNET DRIVERS
15976 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
15977 L:      netdev@vger.kernel.org
15978 L:      linux-renesas-soc@vger.kernel.org
15979 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15980 F:      drivers/net/ethernet/renesas/
15981 F:      include/linux/sh_eth.h
15982
15983 RENESAS R-CAR GYROADC DRIVER
15984 M:      Marek Vasut <marek.vasut@gmail.com>
15985 L:      linux-iio@vger.kernel.org
15986 S:      Supported
15987 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15988 F:      drivers/iio/adc/rcar-gyroadc.c
15989
15990 RENESAS R-CAR I2C DRIVERS
15991 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15992 L:      linux-renesas-soc@vger.kernel.org
15993 S:      Supported
15994 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
15995 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
15996 F:      drivers/i2c/busses/i2c-rcar.c
15997 F:      drivers/i2c/busses/i2c-sh_mobile.c
15998
15999 RENESAS R-CAR THERMAL DRIVERS
16000 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16001 L:      linux-renesas-soc@vger.kernel.org
16002 S:      Supported
16003 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16004 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16005 F:      drivers/thermal/rcar_gen3_thermal.c
16006 F:      drivers/thermal/rcar_thermal.c
16007
16008 RENESAS RIIC DRIVER
16009 M:      Chris Brandt <chris.brandt@renesas.com>
16010 L:      linux-renesas-soc@vger.kernel.org
16011 S:      Supported
16012 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16013 F:      drivers/i2c/busses/i2c-riic.c
16014
16015 RENESAS USB PHY DRIVER
16016 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16017 L:      linux-renesas-soc@vger.kernel.org
16018 S:      Maintained
16019 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16020
16021 RENESAS RZ/G2L A/D DRIVER
16022 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16023 L:      linux-iio@vger.kernel.org
16024 L:      linux-renesas-soc@vger.kernel.org
16025 S:      Supported
16026 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16027 F:      drivers/iio/adc/rzg2l_adc.c
16028
16029 RESET CONTROLLER FRAMEWORK
16030 M:      Philipp Zabel <p.zabel@pengutronix.de>
16031 S:      Maintained
16032 T:      git git://git.pengutronix.de/git/pza/linux
16033 F:      Documentation/devicetree/bindings/reset/
16034 F:      Documentation/driver-api/reset.rst
16035 F:      drivers/reset/
16036 F:      include/dt-bindings/reset/
16037 F:      include/linux/reset-controller.h
16038 F:      include/linux/reset.h
16039 F:      include/linux/reset/
16040 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16041
16042 RESTARTABLE SEQUENCES SUPPORT
16043 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16044 M:      Peter Zijlstra <peterz@infradead.org>
16045 M:      "Paul E. McKenney" <paulmck@kernel.org>
16046 M:      Boqun Feng <boqun.feng@gmail.com>
16047 L:      linux-kernel@vger.kernel.org
16048 S:      Supported
16049 F:      include/trace/events/rseq.h
16050 F:      include/uapi/linux/rseq.h
16051 F:      kernel/rseq.c
16052 F:      tools/testing/selftests/rseq/
16053
16054 RFKILL
16055 M:      Johannes Berg <johannes@sipsolutions.net>
16056 L:      linux-wireless@vger.kernel.org
16057 S:      Maintained
16058 W:      https://wireless.wiki.kernel.org/
16059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16061 F:      Documentation/ABI/stable/sysfs-class-rfkill
16062 F:      Documentation/driver-api/rfkill.rst
16063 F:      include/linux/rfkill.h
16064 F:      include/uapi/linux/rfkill.h
16065 F:      net/rfkill/
16066
16067 RHASHTABLE
16068 M:      Thomas Graf <tgraf@suug.ch>
16069 M:      Herbert Xu <herbert@gondor.apana.org.au>
16070 L:      netdev@vger.kernel.org
16071 S:      Maintained
16072 F:      include/linux/rhashtable-types.h
16073 F:      include/linux/rhashtable.h
16074 F:      lib/rhashtable.c
16075 F:      lib/test_rhashtable.c
16076
16077 RICOH R5C592 MEMORYSTICK DRIVER
16078 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16079 S:      Maintained
16080 F:      drivers/memstick/host/r592.*
16081
16082 RICOH SMARTMEDIA/XD DRIVER
16083 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16084 S:      Maintained
16085 F:      drivers/mtd/nand/raw/r852.c
16086 F:      drivers/mtd/nand/raw/r852.h
16087
16088 RISC-V ARCHITECTURE
16089 M:      Paul Walmsley <paul.walmsley@sifive.com>
16090 M:      Palmer Dabbelt <palmer@dabbelt.com>
16091 M:      Albert Ou <aou@eecs.berkeley.edu>
16092 L:      linux-riscv@lists.infradead.org
16093 S:      Supported
16094 P:      Documentation/riscv/patch-acceptance.rst
16095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16096 F:      arch/riscv/
16097 N:      riscv
16098 K:      riscv
16099
16100 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16101 M:      Lewis Hanly <lewis.hanly@microchip.com>
16102 L:      linux-riscv@lists.infradead.org
16103 S:      Supported
16104 F:      drivers/mailbox/mailbox-mpfs.c
16105 F:      drivers/soc/microchip/
16106 F:      include/soc/microchip/mpfs.h
16107
16108 RNBD BLOCK DRIVERS
16109 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16110 M:      Jack Wang <jinpu.wang@ionos.com>
16111 L:      linux-block@vger.kernel.org
16112 S:      Maintained
16113 F:      drivers/block/rnbd/
16114
16115 ROCCAT DRIVERS
16116 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16117 S:      Maintained
16118 W:      http://sourceforge.net/projects/roccat/
16119 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16120 F:      drivers/hid/hid-roccat*
16121 F:      include/linux/hid-roccat*
16122
16123 ROCKCHIP ISP V1 DRIVER
16124 M:      Helen Koike <helen.koike@collabora.com>
16125 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16126 L:      linux-media@vger.kernel.org
16127 L:      linux-rockchip@lists.infradead.org
16128 S:      Maintained
16129 F:      Documentation/admin-guide/media/rkisp1.rst
16130 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16131 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16132 F:      drivers/media/platform/rockchip/rkisp1
16133 F:      include/uapi/linux/rkisp1-config.h
16134
16135 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16136 M:      Jacob Chen <jacob-chen@iotwrt.com>
16137 M:      Ezequiel Garcia <ezequiel@collabora.com>
16138 L:      linux-media@vger.kernel.org
16139 L:      linux-rockchip@lists.infradead.org
16140 S:      Maintained
16141 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16142 F:      drivers/media/platform/rockchip/rga/
16143
16144 ROCKCHIP VIDEO DECODER DRIVER
16145 M:      Ezequiel Garcia <ezequiel@collabora.com>
16146 L:      linux-media@vger.kernel.org
16147 L:      linux-rockchip@lists.infradead.org
16148 S:      Maintained
16149 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16150 F:      drivers/staging/media/rkvdec/
16151
16152 ROCKER DRIVER
16153 M:      Jiri Pirko <jiri@resnulli.us>
16154 L:      netdev@vger.kernel.org
16155 S:      Supported
16156 F:      drivers/net/ethernet/rocker/
16157
16158 ROCKETPORT EXPRESS/INFINITY DRIVER
16159 M:      Kevin Cernekee <cernekee@gmail.com>
16160 L:      linux-serial@vger.kernel.org
16161 S:      Odd Fixes
16162 F:      drivers/tty/serial/rp2.*
16163
16164 ROHM BD99954 CHARGER IC
16165 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16166 L:      linux-power@fi.rohmeurope.com
16167 S:      Supported
16168 F:      drivers/power/supply/bd99954-charger.c
16169 F:      drivers/power/supply/bd99954-charger.h
16170
16171 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16172 M:      Tomasz Duszynski <tduszyns@gmail.com>
16173 S:      Maintained
16174 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16175 F:      drivers/iio/light/bh1750.c
16176
16177 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16178 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16179 L:      linux-kernel@vger.kernel.org
16180 L:      linux-renesas-soc@vger.kernel.org
16181 S:      Supported
16182 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16183 F:      drivers/gpio/gpio-bd9571mwv.c
16184 F:      drivers/mfd/bd9571mwv.c
16185 F:      drivers/regulator/bd9571mwv-regulator.c
16186 F:      include/linux/mfd/bd9571mwv.h
16187
16188 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16189 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16190 L:      linux-power@fi.rohmeurope.com
16191 S:      Supported
16192 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16193 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16194 F:      drivers/clk/clk-bd718x7.c
16195 F:      drivers/gpio/gpio-bd70528.c
16196 F:      drivers/gpio/gpio-bd71815.c
16197 F:      drivers/gpio/gpio-bd71828.c
16198 F:      drivers/mfd/rohm-bd70528.c
16199 F:      drivers/mfd/rohm-bd71828.c
16200 F:      drivers/mfd/rohm-bd718x7.c
16201 F:      drivers/mfd/rohm-bd9576.c
16202 F:      drivers/power/supply/bd70528-charger.c
16203 F:      drivers/regulator/bd70528-regulator.c
16204 F:      drivers/regulator/bd71815-regulator.c
16205 F:      drivers/regulator/bd71828-regulator.c
16206 F:      drivers/regulator/bd718x7-regulator.c
16207 F:      drivers/regulator/bd9576-regulator.c
16208 F:      drivers/regulator/rohm-regulator.c
16209 F:      drivers/rtc/rtc-bd70528.c
16210 F:      drivers/watchdog/bd70528_wdt.c
16211 F:      drivers/watchdog/bd9576_wdt.c
16212 F:      include/linux/mfd/rohm-bd70528.h
16213 F:      include/linux/mfd/rohm-bd71815.h
16214 F:      include/linux/mfd/rohm-bd71828.h
16215 F:      include/linux/mfd/rohm-bd718x7.h
16216 F:      include/linux/mfd/rohm-bd957x.h
16217 F:      include/linux/mfd/rohm-generic.h
16218 F:      include/linux/mfd/rohm-shared.h
16219
16220 ROSE NETWORK LAYER
16221 M:      Ralf Baechle <ralf@linux-mips.org>
16222 L:      linux-hams@vger.kernel.org
16223 S:      Maintained
16224 W:      http://www.linux-ax25.org/
16225 F:      include/net/rose.h
16226 F:      include/uapi/linux/rose.h
16227 F:      net/rose/
16228
16229 ROTATION DRIVER FOR ALLWINNER A83T
16230 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16231 L:      linux-media@vger.kernel.org
16232 S:      Maintained
16233 T:      git git://linuxtv.org/media_tree.git
16234 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16235 F:      drivers/media/platform/sunxi/sun8i-rotate/
16236
16237 RTL2830 MEDIA DRIVER
16238 M:      Antti Palosaari <crope@iki.fi>
16239 L:      linux-media@vger.kernel.org
16240 S:      Maintained
16241 W:      https://linuxtv.org
16242 W:      http://palosaari.fi/linux/
16243 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16244 T:      git git://linuxtv.org/anttip/media_tree.git
16245 F:      drivers/media/dvb-frontends/rtl2830*
16246
16247 RTL2832 MEDIA DRIVER
16248 M:      Antti Palosaari <crope@iki.fi>
16249 L:      linux-media@vger.kernel.org
16250 S:      Maintained
16251 W:      https://linuxtv.org
16252 W:      http://palosaari.fi/linux/
16253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16254 T:      git git://linuxtv.org/anttip/media_tree.git
16255 F:      drivers/media/dvb-frontends/rtl2832*
16256
16257 RTL2832_SDR MEDIA DRIVER
16258 M:      Antti Palosaari <crope@iki.fi>
16259 L:      linux-media@vger.kernel.org
16260 S:      Maintained
16261 W:      https://linuxtv.org
16262 W:      http://palosaari.fi/linux/
16263 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16264 T:      git git://linuxtv.org/anttip/media_tree.git
16265 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16266
16267 RTL8180 WIRELESS DRIVER
16268 L:      linux-wireless@vger.kernel.org
16269 S:      Orphan
16270 W:      https://wireless.wiki.kernel.org/
16271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16272 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16273
16274 RTL8187 WIRELESS DRIVER
16275 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16276 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16277 M:      Larry Finger <Larry.Finger@lwfinger.net>
16278 L:      linux-wireless@vger.kernel.org
16279 S:      Maintained
16280 W:      https://wireless.wiki.kernel.org/
16281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16282 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16283
16284 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16285 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16286 L:      linux-wireless@vger.kernel.org
16287 S:      Maintained
16288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16289 F:      drivers/net/wireless/realtek/rtl8xxxu/
16290
16291 RTRS TRANSPORT DRIVERS
16292 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16293 M:      Jack Wang <jinpu.wang@ionos.com>
16294 L:      linux-rdma@vger.kernel.org
16295 S:      Maintained
16296 F:      drivers/infiniband/ulp/rtrs/
16297
16298 RXRPC SOCKETS (AF_RXRPC)
16299 M:      David Howells <dhowells@redhat.com>
16300 M:      Marc Dionne <marc.dionne@auristor.com>
16301 L:      linux-afs@lists.infradead.org
16302 S:      Supported
16303 W:      https://www.infradead.org/~dhowells/kafs/
16304 F:      Documentation/networking/rxrpc.rst
16305 F:      include/keys/rxrpc-type.h
16306 F:      include/net/af_rxrpc.h
16307 F:      include/trace/events/rxrpc.h
16308 F:      include/uapi/linux/rxrpc.h
16309 F:      net/rxrpc/
16310
16311 S3 SAVAGE FRAMEBUFFER DRIVER
16312 M:      Antonino Daplas <adaplas@gmail.com>
16313 L:      linux-fbdev@vger.kernel.org
16314 S:      Maintained
16315 F:      drivers/video/fbdev/savage/
16316
16317 S390
16318 M:      Heiko Carstens <hca@linux.ibm.com>
16319 M:      Vasily Gorbik <gor@linux.ibm.com>
16320 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16321 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16322 L:      linux-s390@vger.kernel.org
16323 S:      Supported
16324 W:      http://www.ibm.com/developerworks/linux/linux390/
16325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16326 F:      Documentation/driver-api/s390-drivers.rst
16327 F:      Documentation/s390/
16328 F:      arch/s390/
16329 F:      drivers/s390/
16330
16331 S390 COMMON I/O LAYER
16332 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16333 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16334 L:      linux-s390@vger.kernel.org
16335 S:      Supported
16336 W:      http://www.ibm.com/developerworks/linux/linux390/
16337 F:      drivers/s390/cio/
16338
16339 S390 DASD DRIVER
16340 M:      Stefan Haberland <sth@linux.ibm.com>
16341 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16342 L:      linux-s390@vger.kernel.org
16343 S:      Supported
16344 W:      http://www.ibm.com/developerworks/linux/linux390/
16345 F:      block/partitions/ibm.c
16346 F:      drivers/s390/block/dasd*
16347 F:      include/linux/dasd_mod.h
16348
16349 S390 IOMMU (PCI)
16350 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16351 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16352 L:      linux-s390@vger.kernel.org
16353 S:      Supported
16354 W:      http://www.ibm.com/developerworks/linux/linux390/
16355 F:      drivers/iommu/s390-iommu.c
16356
16357 S390 IUCV NETWORK LAYER
16358 M:      Julian Wiedmann <jwi@linux.ibm.com>
16359 M:      Karsten Graul <kgraul@linux.ibm.com>
16360 L:      linux-s390@vger.kernel.org
16361 L:      netdev@vger.kernel.org
16362 S:      Supported
16363 W:      http://www.ibm.com/developerworks/linux/linux390/
16364 F:      drivers/s390/net/*iucv*
16365 F:      include/net/iucv/
16366 F:      net/iucv/
16367
16368 S390 NETWORK DRIVERS
16369 M:      Julian Wiedmann <jwi@linux.ibm.com>
16370 M:      Karsten Graul <kgraul@linux.ibm.com>
16371 L:      linux-s390@vger.kernel.org
16372 L:      netdev@vger.kernel.org
16373 S:      Supported
16374 W:      http://www.ibm.com/developerworks/linux/linux390/
16375 F:      drivers/s390/net/
16376
16377 S390 PCI SUBSYSTEM
16378 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16379 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16380 L:      linux-s390@vger.kernel.org
16381 S:      Supported
16382 W:      http://www.ibm.com/developerworks/linux/linux390/
16383 F:      arch/s390/pci/
16384 F:      drivers/pci/hotplug/s390_pci_hpc.c
16385 F:      Documentation/s390/pci.rst
16386
16387 S390 VFIO AP DRIVER
16388 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16389 M:      Halil Pasic <pasic@linux.ibm.com>
16390 M:      Jason Herne <jjherne@linux.ibm.com>
16391 L:      linux-s390@vger.kernel.org
16392 S:      Supported
16393 W:      http://www.ibm.com/developerworks/linux/linux390/
16394 F:      Documentation/s390/vfio-ap.rst
16395 F:      drivers/s390/crypto/vfio_ap_drv.c
16396 F:      drivers/s390/crypto/vfio_ap_ops.c
16397 F:      drivers/s390/crypto/vfio_ap_private.h
16398
16399 S390 VFIO-CCW DRIVER
16400 M:      Eric Farman <farman@linux.ibm.com>
16401 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16402 R:      Halil Pasic <pasic@linux.ibm.com>
16403 L:      linux-s390@vger.kernel.org
16404 L:      kvm@vger.kernel.org
16405 S:      Supported
16406 F:      Documentation/s390/vfio-ccw.rst
16407 F:      drivers/s390/cio/vfio_ccw*
16408 F:      include/uapi/linux/vfio_ccw.h
16409
16410 S390 VFIO-PCI DRIVER
16411 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16412 M:      Eric Farman <farman@linux.ibm.com>
16413 L:      linux-s390@vger.kernel.org
16414 L:      kvm@vger.kernel.org
16415 S:      Supported
16416 F:      drivers/vfio/pci/vfio_pci_zdev.c
16417 F:      include/uapi/linux/vfio_zdev.h
16418
16419 S390 ZCRYPT DRIVER
16420 M:      Harald Freudenberger <freude@linux.ibm.com>
16421 L:      linux-s390@vger.kernel.org
16422 S:      Supported
16423 W:      http://www.ibm.com/developerworks/linux/linux390/
16424 F:      drivers/s390/crypto/
16425
16426 S390 ZFCP DRIVER
16427 M:      Steffen Maier <maier@linux.ibm.com>
16428 M:      Benjamin Block <bblock@linux.ibm.com>
16429 L:      linux-s390@vger.kernel.org
16430 S:      Supported
16431 W:      http://www.ibm.com/developerworks/linux/linux390/
16432 F:      drivers/s390/scsi/zfcp_*
16433
16434 S3C ADC BATTERY DRIVER
16435 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16436 L:      linux-samsung-soc@vger.kernel.org
16437 S:      Odd Fixes
16438 F:      drivers/power/supply/s3c_adc_battery.c
16439 F:      include/linux/s3c_adc_battery.h
16440
16441 S3C24XX SD/MMC Driver
16442 M:      Ben Dooks <ben-linux@fluff.org>
16443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16444 S:      Supported
16445 F:      drivers/mmc/host/s3cmci.*
16446
16447 SAA6588 RDS RECEIVER DRIVER
16448 M:      Hans Verkuil <hverkuil@xs4all.nl>
16449 L:      linux-media@vger.kernel.org
16450 S:      Odd Fixes
16451 W:      https://linuxtv.org
16452 T:      git git://linuxtv.org/media_tree.git
16453 F:      drivers/media/i2c/saa6588*
16454
16455 SAA7134 VIDEO4LINUX DRIVER
16456 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16457 L:      linux-media@vger.kernel.org
16458 S:      Odd fixes
16459 W:      https://linuxtv.org
16460 T:      git git://linuxtv.org/media_tree.git
16461 F:      Documentation/driver-api/media/drivers/saa7134*
16462 F:      drivers/media/pci/saa7134/
16463
16464 SAA7146 VIDEO4LINUX-2 DRIVER
16465 M:      Hans Verkuil <hverkuil@xs4all.nl>
16466 L:      linux-media@vger.kernel.org
16467 S:      Maintained
16468 T:      git git://linuxtv.org/media_tree.git
16469 F:      drivers/media/common/saa7146/
16470 F:      drivers/media/pci/saa7146/
16471 F:      include/media/drv-intf/saa7146*
16472
16473 SAFESETID SECURITY MODULE
16474 M:      Micah Morton <mortonm@chromium.org>
16475 S:      Supported
16476 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16477 F:      security/safesetid/
16478
16479 SAMSUNG AUDIO (ASoC) DRIVERS
16480 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16481 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16482 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16483 S:      Supported
16484 F:      Documentation/devicetree/bindings/sound/samsung*
16485 F:      sound/soc/samsung/
16486
16487 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16488 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16489 L:      linux-crypto@vger.kernel.org
16490 L:      linux-samsung-soc@vger.kernel.org
16491 S:      Maintained
16492 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16493 F:      drivers/crypto/exynos-rng.c
16494
16495 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16496 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16497 L:      linux-samsung-soc@vger.kernel.org
16498 S:      Maintained
16499 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16500 F:      drivers/char/hw_random/exynos-trng.c
16501
16502 SAMSUNG FRAMEBUFFER DRIVER
16503 M:      Jingoo Han <jingoohan1@gmail.com>
16504 L:      linux-fbdev@vger.kernel.org
16505 S:      Maintained
16506 F:      drivers/video/fbdev/s3c-fb.c
16507
16508 SAMSUNG INTERCONNECT DRIVERS
16509 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16510 M:      Artur Świgoń <a.swigon@samsung.com>
16511 L:      linux-pm@vger.kernel.org
16512 L:      linux-samsung-soc@vger.kernel.org
16513 S:      Supported
16514 F:      drivers/interconnect/samsung/
16515
16516 SAMSUNG LAPTOP DRIVER
16517 M:      Corentin Chary <corentin.chary@gmail.com>
16518 L:      platform-driver-x86@vger.kernel.org
16519 S:      Maintained
16520 F:      drivers/platform/x86/samsung-laptop.c
16521
16522 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16523 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16524 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16525 L:      linux-kernel@vger.kernel.org
16526 L:      linux-samsung-soc@vger.kernel.org
16527 S:      Supported
16528 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16529 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16530 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16531 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16532 F:      drivers/clk/clk-s2mps11.c
16533 F:      drivers/mfd/sec*.c
16534 F:      drivers/regulator/s2m*.c
16535 F:      drivers/regulator/s5m*.c
16536 F:      drivers/rtc/rtc-s5m.c
16537 F:      include/linux/mfd/samsung/
16538
16539 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16540 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16541 L:      linux-media@vger.kernel.org
16542 L:      linux-samsung-soc@vger.kernel.org
16543 S:      Maintained
16544 F:      drivers/media/platform/s3c-camif/
16545 F:      include/media/drv-intf/s3c_camif.h
16546
16547 SAMSUNG S3FWRN5 NFC DRIVER
16548 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16549 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16550 L:      linux-nfc@lists.01.org (subscribers-only)
16551 S:      Maintained
16552 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16553 F:      drivers/nfc/s3fwrn5
16554
16555 SAMSUNG S5C73M3 CAMERA DRIVER
16556 M:      Andrzej Hajda <a.hajda@samsung.com>
16557 L:      linux-media@vger.kernel.org
16558 S:      Supported
16559 F:      drivers/media/i2c/s5c73m3/*
16560
16561 SAMSUNG S5K5BAF CAMERA DRIVER
16562 M:      Andrzej Hajda <a.hajda@samsung.com>
16563 L:      linux-media@vger.kernel.org
16564 S:      Supported
16565 F:      drivers/media/i2c/s5k5baf.c
16566
16567 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16568 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16569 M:      Vladimir Zapolskiy <vz@mleia.com>
16570 L:      linux-crypto@vger.kernel.org
16571 L:      linux-samsung-soc@vger.kernel.org
16572 S:      Maintained
16573 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16574 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16575 F:      drivers/crypto/s5p-sss.c
16576
16577 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16578 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16579 L:      linux-media@vger.kernel.org
16580 S:      Supported
16581 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16582 F:      drivers/media/platform/exynos4-is/
16583
16584 SAMSUNG SOC CLOCK DRIVERS
16585 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16586 M:      Tomasz Figa <tomasz.figa@gmail.com>
16587 M:      Chanwoo Choi <cw00.choi@samsung.com>
16588 L:      linux-samsung-soc@vger.kernel.org
16589 S:      Supported
16590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16591 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16592 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16593 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16594 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16595 F:      drivers/clk/samsung/
16596 F:      include/dt-bindings/clock/exynos*.h
16597 F:      include/dt-bindings/clock/s3c*.h
16598 F:      include/dt-bindings/clock/s5p*.h
16599 F:      include/dt-bindings/clock/samsung,*.h
16600 F:      include/linux/clk/samsung.h
16601 F:      include/linux/platform_data/clk-s3c2410.h
16602
16603 SAMSUNG SPI DRIVERS
16604 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16605 M:      Andi Shyti <andi@etezian.org>
16606 L:      linux-spi@vger.kernel.org
16607 L:      linux-samsung-soc@vger.kernel.org
16608 S:      Maintained
16609 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16610 F:      drivers/spi/spi-s3c*
16611 F:      include/linux/platform_data/spi-s3c64xx.h
16612 F:      include/linux/spi/s3c24xx-fiq.h
16613
16614 SAMSUNG SXGBE DRIVERS
16615 M:      Byungho An <bh74.an@samsung.com>
16616 L:      netdev@vger.kernel.org
16617 S:      Supported
16618 F:      drivers/net/ethernet/samsung/sxgbe/
16619
16620 SAMSUNG THERMAL DRIVER
16621 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16622 L:      linux-pm@vger.kernel.org
16623 L:      linux-samsung-soc@vger.kernel.org
16624 S:      Supported
16625 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16626 F:      drivers/thermal/samsung/
16627
16628 SAMSUNG USB2 PHY DRIVER
16629 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16630 L:      linux-kernel@vger.kernel.org
16631 S:      Supported
16632 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16633 F:      Documentation/driver-api/phy/samsung-usb2.rst
16634 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16635 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16636 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16637 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16638 F:      drivers/phy/samsung/phy-samsung-usb2.c
16639 F:      drivers/phy/samsung/phy-samsung-usb2.h
16640
16641 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16642 M:      Paul Barker <paul.barker@sancloud.com>
16643 R:      Marc Murphy <marc.murphy@sancloud.com>
16644 S:      Supported
16645 F:      arch/arm/boot/dts/am335x-sancloud*
16646
16647 SC1200 WDT DRIVER
16648 M:      Zwane Mwaikambo <zwanem@gmail.com>
16649 S:      Maintained
16650 F:      drivers/watchdog/sc1200wdt.c
16651
16652 SCHEDULER
16653 M:      Ingo Molnar <mingo@redhat.com>
16654 M:      Peter Zijlstra <peterz@infradead.org>
16655 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16656 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16657 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16658 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16659 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16660 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16661 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16662 L:      linux-kernel@vger.kernel.org
16663 S:      Maintained
16664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16665 F:      include/linux/preempt.h
16666 F:      include/linux/sched.h
16667 F:      include/linux/wait.h
16668 F:      include/uapi/linux/sched.h
16669 F:      kernel/sched/
16670
16671 SCR24X CHIP CARD INTERFACE DRIVER
16672 M:      Lubomir Rintel <lkundrak@v3.sk>
16673 S:      Supported
16674 F:      drivers/char/pcmcia/scr24x_cs.c
16675
16676 SCSI RDMA PROTOCOL (SRP) INITIATOR
16677 M:      Bart Van Assche <bvanassche@acm.org>
16678 L:      linux-rdma@vger.kernel.org
16679 S:      Supported
16680 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16681 F:      drivers/infiniband/ulp/srp/
16682 F:      include/scsi/srp.h
16683
16684 SCSI RDMA PROTOCOL (SRP) TARGET
16685 M:      Bart Van Assche <bvanassche@acm.org>
16686 L:      linux-rdma@vger.kernel.org
16687 L:      target-devel@vger.kernel.org
16688 S:      Supported
16689 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16690 F:      drivers/infiniband/ulp/srpt/
16691
16692 SCSI SG DRIVER
16693 M:      Doug Gilbert <dgilbert@interlog.com>
16694 L:      linux-scsi@vger.kernel.org
16695 S:      Maintained
16696 W:      http://sg.danny.cz/sg
16697 F:      Documentation/scsi/scsi-generic.rst
16698 F:      drivers/scsi/sg.c
16699 F:      include/scsi/sg.h
16700
16701 SCSI SUBSYSTEM
16702 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16703 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16704 L:      linux-scsi@vger.kernel.org
16705 S:      Maintained
16706 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16709 F:      Documentation/devicetree/bindings/scsi/
16710 F:      drivers/scsi/
16711 F:      include/scsi/
16712
16713 SCSI TAPE DRIVER
16714 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16715 L:      linux-scsi@vger.kernel.org
16716 S:      Maintained
16717 F:      Documentation/scsi/st.rst
16718 F:      drivers/scsi/st.*
16719 F:      drivers/scsi/st_*.h
16720
16721 SCSI TARGET CORE USER DRIVER
16722 M:      Bodo Stroesser <bostroesser@gmail.com>
16723 L:      linux-scsi@vger.kernel.org
16724 L:      target-devel@vger.kernel.org
16725 S:      Supported
16726 F:      Documentation/target/tcmu-design.rst
16727 F:      drivers/target/target_core_user.c
16728 F:      include/uapi/linux/target_core_user.h
16729
16730 SCSI TARGET SUBSYSTEM
16731 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16732 L:      linux-scsi@vger.kernel.org
16733 L:      target-devel@vger.kernel.org
16734 S:      Supported
16735 W:      http://www.linux-iscsi.org
16736 Q:      https://patchwork.kernel.org/project/target-devel/list/
16737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16738 F:      Documentation/target/
16739 F:      drivers/target/
16740 F:      include/target/
16741
16742 SCTP PROTOCOL
16743 M:      Vlad Yasevich <vyasevich@gmail.com>
16744 M:      Neil Horman <nhorman@tuxdriver.com>
16745 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16746 L:      linux-sctp@vger.kernel.org
16747 S:      Maintained
16748 W:      http://lksctp.sourceforge.net
16749 F:      Documentation/networking/sctp.rst
16750 F:      include/linux/sctp.h
16751 F:      include/net/sctp/
16752 F:      include/uapi/linux/sctp.h
16753 F:      net/sctp/
16754
16755 SCx200 CPU SUPPORT
16756 M:      Jim Cromie <jim.cromie@gmail.com>
16757 S:      Odd Fixes
16758 F:      Documentation/i2c/busses/scx200_acb.rst
16759 F:      arch/x86/platform/scx200/
16760 F:      drivers/i2c/busses/scx200*
16761 F:      drivers/mtd/maps/scx200_docflash.c
16762 F:      drivers/watchdog/scx200_wdt.c
16763 F:      include/linux/scx200.h
16764
16765 SCx200 GPIO DRIVER
16766 M:      Jim Cromie <jim.cromie@gmail.com>
16767 S:      Maintained
16768 F:      drivers/char/scx200_gpio.c
16769 F:      include/linux/scx200_gpio.h
16770
16771 SCx200 HRT CLOCKSOURCE DRIVER
16772 M:      Jim Cromie <jim.cromie@gmail.com>
16773 S:      Maintained
16774 F:      drivers/clocksource/scx200_hrt.c
16775
16776 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16777 M:      Sascha Sommer <saschasommer@freenet.de>
16778 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16779 S:      Maintained
16780 F:      drivers/mmc/host/sdricoh_cs.c
16781
16782 SECO BOARDS CEC DRIVER
16783 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16784 S:      Maintained
16785 F:      drivers/media/cec/platform/seco/seco-cec.c
16786 F:      drivers/media/cec/platform/seco/seco-cec.h
16787
16788 SECURE COMPUTING
16789 M:      Kees Cook <keescook@chromium.org>
16790 R:      Andy Lutomirski <luto@amacapital.net>
16791 R:      Will Drewry <wad@chromium.org>
16792 S:      Supported
16793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16794 F:      Documentation/userspace-api/seccomp_filter.rst
16795 F:      include/linux/seccomp.h
16796 F:      include/uapi/linux/seccomp.h
16797 F:      kernel/seccomp.c
16798 F:      tools/testing/selftests/kselftest_harness.h
16799 F:      tools/testing/selftests/seccomp/*
16800 K:      \bsecure_computing
16801 K:      \bTIF_SECCOMP\b
16802
16803 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16804 M:      Al Cooper <alcooperx@gmail.com>
16805 L:      linux-mmc@vger.kernel.org
16806 L:      bcm-kernel-feedback-list@broadcom.com
16807 S:      Maintained
16808 F:      drivers/mmc/host/sdhci-brcmstb*
16809
16810 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16811 M:      Adrian Hunter <adrian.hunter@intel.com>
16812 L:      linux-mmc@vger.kernel.org
16813 S:      Maintained
16814 F:      drivers/mmc/host/sdhci*
16815 F:      include/linux/mmc/sdhci*
16816
16817 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16818 M:      Eugen Hristev <eugen.hristev@microchip.com>
16819 L:      linux-mmc@vger.kernel.org
16820 S:      Supported
16821 F:      drivers/mmc/host/sdhci-of-at91.c
16822
16823 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16824 M:      Ben Dooks <ben-linux@fluff.org>
16825 M:      Jaehoon Chung <jh80.chung@samsung.com>
16826 L:      linux-mmc@vger.kernel.org
16827 S:      Maintained
16828 F:      drivers/mmc/host/sdhci-s3c*
16829
16830 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16831 M:      Viresh Kumar <vireshk@kernel.org>
16832 L:      linux-mmc@vger.kernel.org
16833 S:      Maintained
16834 F:      drivers/mmc/host/sdhci-spear.c
16835
16836 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16837 M:      Kishon Vijay Abraham I <kishon@ti.com>
16838 L:      linux-mmc@vger.kernel.org
16839 S:      Maintained
16840 F:      drivers/mmc/host/sdhci-omap.c
16841
16842 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16843 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16844 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16845 L:      linux-block@vger.kernel.org
16846 S:      Supported
16847 F:      block/opal_proto.h
16848 F:      block/sed*
16849 F:      include/linux/sed*
16850 F:      include/uapi/linux/sed*
16851
16852 SECURITY CONTACT
16853 M:      Security Officers <security@kernel.org>
16854 S:      Supported
16855 F:      Documentation/admin-guide/security-bugs.rst
16856
16857 SECURITY SUBSYSTEM
16858 M:      James Morris <jmorris@namei.org>
16859 M:      "Serge E. Hallyn" <serge@hallyn.com>
16860 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16861 S:      Supported
16862 W:      http://kernsec.org/
16863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16864 F:      security/
16865 X:      security/selinux/
16866
16867 SELINUX SECURITY MODULE
16868 M:      Paul Moore <paul@paul-moore.com>
16869 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16870 M:      Eric Paris <eparis@parisplace.org>
16871 L:      selinux@vger.kernel.org
16872 S:      Supported
16873 W:      https://selinuxproject.org
16874 W:      https://github.com/SELinuxProject
16875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16876 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16877 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16878 F:      Documentation/admin-guide/LSM/SELinux.rst
16879 F:      include/trace/events/avc.h
16880 F:      include/uapi/linux/selinux_netlink.h
16881 F:      scripts/selinux/
16882 F:      security/selinux/
16883
16884 SENSABLE PHANTOM
16885 M:      Jiri Slaby <jirislaby@kernel.org>
16886 S:      Maintained
16887 F:      drivers/misc/phantom.c
16888 F:      include/uapi/linux/phantom.h
16889
16890 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16891 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16892 S:      Maintained
16893 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16894 F:      drivers/iio/chemical/scd30.h
16895 F:      drivers/iio/chemical/scd30_core.c
16896 F:      drivers/iio/chemical/scd30_i2c.c
16897 F:      drivers/iio/chemical/scd30_serial.c
16898
16899 SENSIRION SGP40 GAS SENSOR DRIVER
16900 M:      Andreas Klinger <ak@it-klinger.de>
16901 S:      Maintained
16902 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16903 F:      drivers/iio/chemical/sgp40.c
16904
16905 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16906 M:      Tomasz Duszynski <tduszyns@gmail.com>
16907 S:      Maintained
16908 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16909 F:      drivers/iio/chemical/sps30.c
16910 F:      drivers/iio/chemical/sps30_i2c.c
16911 F:      drivers/iio/chemical/sps30_serial.c
16912
16913 SERIAL DEVICE BUS
16914 M:      Rob Herring <robh@kernel.org>
16915 L:      linux-serial@vger.kernel.org
16916 S:      Maintained
16917 F:      Documentation/devicetree/bindings/serial/serial.yaml
16918 F:      drivers/tty/serdev/
16919 F:      include/linux/serdev.h
16920
16921 SERIAL DRIVERS
16922 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16923 L:      linux-serial@vger.kernel.org
16924 S:      Maintained
16925 F:      Documentation/devicetree/bindings/serial/
16926 F:      drivers/tty/serial/
16927
16928 SERIAL IR RECEIVER
16929 M:      Sean Young <sean@mess.org>
16930 L:      linux-media@vger.kernel.org
16931 S:      Maintained
16932 F:      drivers/media/rc/serial_ir.c
16933
16934 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16935 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16936 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16937 S:      Maintained
16938 F:      Documentation/devicetree/bindings/slimbus/
16939 F:      drivers/slimbus/
16940 F:      include/linux/slimbus.h
16941
16942 SFC NETWORK DRIVER
16943 M:      Edward Cree <ecree.xilinx@gmail.com>
16944 M:      Martin Habets <habetsm.xilinx@gmail.com>
16945 L:      netdev@vger.kernel.org
16946 S:      Supported
16947 F:      drivers/net/ethernet/sfc/
16948
16949 SFF/SFP/SFP+ MODULE SUPPORT
16950 M:      Russell King <linux@armlinux.org.uk>
16951 L:      netdev@vger.kernel.org
16952 S:      Maintained
16953 F:      drivers/net/phy/phylink.c
16954 F:      drivers/net/phy/sfp*
16955 F:      include/linux/mdio/mdio-i2c.h
16956 F:      include/linux/phylink.h
16957 F:      include/linux/sfp.h
16958 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)
16959
16960 SGI GRU DRIVER
16961 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16962 S:      Maintained
16963 F:      drivers/misc/sgi-gru/
16964
16965 SGI XP/XPC/XPNET DRIVER
16966 M:      Robin Holt <robinmholt@gmail.com>
16967 M:      Steve Wahl <steve.wahl@hpe.com>
16968 R:      Mike Travis <mike.travis@hpe.com>
16969 S:      Maintained
16970 F:      drivers/misc/sgi-xp/
16971
16972 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16973 M:      Karsten Graul <kgraul@linux.ibm.com>
16974 L:      linux-s390@vger.kernel.org
16975 S:      Supported
16976 W:      http://www.ibm.com/developerworks/linux/linux390/
16977 F:      net/smc/
16978
16979 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16980 M:      Linus Walleij <linus.walleij@linaro.org>
16981 L:      linux-iio@vger.kernel.org
16982 S:      Maintained
16983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16984 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16985 F:      drivers/iio/light/gp2ap002.c
16986
16987 SHARP RJ54N1CB0C SENSOR DRIVER
16988 M:      Jacopo Mondi <jacopo@jmondi.org>
16989 L:      linux-media@vger.kernel.org
16990 S:      Odd fixes
16991 T:      git git://linuxtv.org/media_tree.git
16992 F:      drivers/media/i2c/rj54n1cb0c.c
16993 F:      include/media/i2c/rj54n1cb0c.h
16994
16995 SH_VOU V4L2 OUTPUT DRIVER
16996 L:      linux-media@vger.kernel.org
16997 S:      Orphan
16998 F:      drivers/media/platform/sh_vou.c
16999 F:      include/media/drv-intf/sh_vou.h
17000
17001 SI2157 MEDIA DRIVER
17002 M:      Antti Palosaari <crope@iki.fi>
17003 L:      linux-media@vger.kernel.org
17004 S:      Maintained
17005 W:      https://linuxtv.org
17006 W:      http://palosaari.fi/linux/
17007 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17008 T:      git git://linuxtv.org/anttip/media_tree.git
17009 F:      drivers/media/tuners/si2157*
17010
17011 SI2165 MEDIA DRIVER
17012 M:      Matthias Schwarzott <zzam@gentoo.org>
17013 L:      linux-media@vger.kernel.org
17014 S:      Maintained
17015 W:      https://linuxtv.org
17016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17017 F:      drivers/media/dvb-frontends/si2165*
17018
17019 SI2168 MEDIA DRIVER
17020 M:      Antti Palosaari <crope@iki.fi>
17021 L:      linux-media@vger.kernel.org
17022 S:      Maintained
17023 W:      https://linuxtv.org
17024 W:      http://palosaari.fi/linux/
17025 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17026 T:      git git://linuxtv.org/anttip/media_tree.git
17027 F:      drivers/media/dvb-frontends/si2168*
17028
17029 SI470X FM RADIO RECEIVER I2C DRIVER
17030 M:      Hans Verkuil <hverkuil@xs4all.nl>
17031 L:      linux-media@vger.kernel.org
17032 S:      Odd Fixes
17033 W:      https://linuxtv.org
17034 T:      git git://linuxtv.org/media_tree.git
17035 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17036
17037 SI470X FM RADIO RECEIVER USB DRIVER
17038 M:      Hans Verkuil <hverkuil@xs4all.nl>
17039 L:      linux-media@vger.kernel.org
17040 S:      Maintained
17041 W:      https://linuxtv.org
17042 T:      git git://linuxtv.org/media_tree.git
17043 F:      drivers/media/radio/si470x/radio-si470x-common.c
17044 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17045 F:      drivers/media/radio/si470x/radio-si470x.h
17046
17047 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17048 M:      Eduardo Valentin <edubezval@gmail.com>
17049 L:      linux-media@vger.kernel.org
17050 S:      Odd Fixes
17051 W:      https://linuxtv.org
17052 T:      git git://linuxtv.org/media_tree.git
17053 F:      drivers/media/radio/si4713/si4713.?
17054
17055 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17056 M:      Eduardo Valentin <edubezval@gmail.com>
17057 L:      linux-media@vger.kernel.org
17058 S:      Odd Fixes
17059 W:      https://linuxtv.org
17060 T:      git git://linuxtv.org/media_tree.git
17061 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17062
17063 SI4713 FM RADIO TRANSMITTER USB DRIVER
17064 M:      Hans Verkuil <hverkuil@xs4all.nl>
17065 L:      linux-media@vger.kernel.org
17066 S:      Maintained
17067 W:      https://linuxtv.org
17068 T:      git git://linuxtv.org/media_tree.git
17069 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17070
17071 SIANO DVB DRIVER
17072 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17073 L:      linux-media@vger.kernel.org
17074 S:      Odd fixes
17075 W:      https://linuxtv.org
17076 T:      git git://linuxtv.org/media_tree.git
17077 F:      drivers/media/common/siano/
17078 F:      drivers/media/mmc/siano/
17079 F:      drivers/media/usb/siano/
17080 F:      drivers/media/usb/siano/
17081
17082 SIFIVE DRIVERS
17083 M:      Palmer Dabbelt <palmer@dabbelt.com>
17084 M:      Paul Walmsley <paul.walmsley@sifive.com>
17085 L:      linux-riscv@lists.infradead.org
17086 S:      Supported
17087 T:      git git://github.com/sifive/riscv-linux.git
17088 N:      sifive
17089 K:      [^@]sifive
17090
17091 SIFIVE FU540 SYSTEM-ON-CHIP
17092 M:      Paul Walmsley <paul.walmsley@sifive.com>
17093 M:      Palmer Dabbelt <palmer@dabbelt.com>
17094 L:      linux-riscv@lists.infradead.org
17095 S:      Supported
17096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17097 N:      fu540
17098 K:      fu540
17099
17100 SIFIVE PDMA DRIVER
17101 M:      Green Wan <green.wan@sifive.com>
17102 S:      Maintained
17103 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17104 F:      drivers/dma/sf-pdma/
17105
17106 SILEAD TOUCHSCREEN DRIVER
17107 M:      Hans de Goede <hdegoede@redhat.com>
17108 L:      linux-input@vger.kernel.org
17109 L:      platform-driver-x86@vger.kernel.org
17110 S:      Maintained
17111 F:      drivers/input/touchscreen/silead.c
17112 F:      drivers/platform/x86/touchscreen_dmi.c
17113
17114 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17115 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17116 S:      Supported
17117 F:      drivers/staging/wfx/
17118
17119 SILICON MOTION SM712 FRAME BUFFER DRIVER
17120 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17121 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17122 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17123 L:      linux-fbdev@vger.kernel.org
17124 S:      Maintained
17125 F:      Documentation/fb/sm712fb.rst
17126 F:      drivers/video/fbdev/sm712*
17127
17128 SILVACO I3C DUAL-ROLE MASTER
17129 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17130 M:      Conor Culhane <conor.culhane@silvaco.com>
17131 L:      linux-i3c@lists.infradead.org
17132 S:      Maintained
17133 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17134 F:      drivers/i3c/master/svc-i3c-master.c
17135
17136 SIMPLEFB FB DRIVER
17137 M:      Hans de Goede <hdegoede@redhat.com>
17138 L:      linux-fbdev@vger.kernel.org
17139 S:      Maintained
17140 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17141 F:      drivers/video/fbdev/simplefb.c
17142 F:      include/linux/platform_data/simplefb.h
17143
17144 SIMTEC EB110ATX (Chalice CATS)
17145 M:      Simtec Linux Team <linux@simtec.co.uk>
17146 S:      Supported
17147 W:      http://www.simtec.co.uk/products/EB110ATX/
17148
17149 SIMTEC EB2410ITX (BAST)
17150 M:      Simtec Linux Team <linux@simtec.co.uk>
17151 S:      Supported
17152 W:      http://www.simtec.co.uk/products/EB2410ITX/
17153 F:      arch/arm/mach-s3c/bast-ide.c
17154 F:      arch/arm/mach-s3c/bast-irq.c
17155 F:      arch/arm/mach-s3c/mach-bast.c
17156
17157 SIOX
17158 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17159 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17160 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17161 S:      Supported
17162 F:      drivers/gpio/gpio-siox.c
17163 F:      drivers/siox/*
17164 F:      include/trace/events/siox.h
17165
17166 SIPHASH PRF ROUTINES
17167 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17168 S:      Maintained
17169 F:      include/linux/siphash.h
17170 F:      lib/siphash.c
17171 F:      lib/test_siphash.c
17172
17173 SIS 190 ETHERNET DRIVER
17174 M:      Francois Romieu <romieu@fr.zoreil.com>
17175 L:      netdev@vger.kernel.org
17176 S:      Maintained
17177 F:      drivers/net/ethernet/sis/sis190.c
17178
17179 SIS 900/7016 FAST ETHERNET DRIVER
17180 M:      Daniele Venzano <venza@brownhat.org>
17181 L:      netdev@vger.kernel.org
17182 S:      Maintained
17183 W:      http://www.brownhat.org/sis900.html
17184 F:      drivers/net/ethernet/sis/sis900.*
17185
17186 SIS FRAMEBUFFER DRIVER
17187 M:      Thomas Winischhofer <thomas@winischhofer.net>
17188 S:      Maintained
17189 W:      http://www.winischhofer.net/linuxsisvga.shtml
17190 F:      Documentation/fb/sisfb.rst
17191 F:      drivers/video/fbdev/sis/
17192 F:      include/video/sisfb.h
17193
17194 SIS I2C TOUCHSCREEN DRIVER
17195 M:      Mika Penttilä <mika.penttila@nextfour.com>
17196 L:      linux-input@vger.kernel.org
17197 S:      Maintained
17198 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17199 F:      drivers/input/touchscreen/sis_i2c.c
17200
17201 SIS USB2VGA DRIVER
17202 M:      Thomas Winischhofer <thomas@winischhofer.net>
17203 S:      Maintained
17204 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17205 F:      drivers/usb/misc/sisusbvga/
17206
17207 SLAB ALLOCATOR
17208 M:      Christoph Lameter <cl@linux.com>
17209 M:      Pekka Enberg <penberg@kernel.org>
17210 M:      David Rientjes <rientjes@google.com>
17211 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17212 M:      Andrew Morton <akpm@linux-foundation.org>
17213 M:      Vlastimil Babka <vbabka@suse.cz>
17214 L:      linux-mm@kvack.org
17215 S:      Maintained
17216 F:      include/linux/sl?b*.h
17217 F:      mm/sl?b*
17218
17219 SLEEPABLE READ-COPY UPDATE (SRCU)
17220 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17221 M:      "Paul E. McKenney" <paulmck@kernel.org>
17222 M:      Josh Triplett <josh@joshtriplett.org>
17223 R:      Steven Rostedt <rostedt@goodmis.org>
17224 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17225 L:      rcu@vger.kernel.org
17226 S:      Supported
17227 W:      http://www.rdrop.com/users/paulmck/RCU/
17228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17229 F:      include/linux/srcu*.h
17230 F:      kernel/rcu/srcu*.c
17231
17232 SMACK SECURITY MODULE
17233 M:      Casey Schaufler <casey@schaufler-ca.com>
17234 L:      linux-security-module@vger.kernel.org
17235 S:      Maintained
17236 W:      http://schaufler-ca.com
17237 T:      git git://github.com/cschaufler/smack-next
17238 F:      Documentation/admin-guide/LSM/Smack.rst
17239 F:      security/smack/
17240
17241 SMC91x ETHERNET DRIVER
17242 M:      Nicolas Pitre <nico@fluxnic.net>
17243 S:      Odd Fixes
17244 F:      drivers/net/ethernet/smsc/smc91x.*
17245
17246 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17247 M:      Mark Rutland <mark.rutland@arm.com>
17248 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17249 M:      Sudeep Holla <sudeep.holla@arm.com>
17250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17251 S:      Maintained
17252 F:      drivers/firmware/smccc/
17253 F:      include/linux/arm-smccc.h
17254
17255 SMM665 HARDWARE MONITOR DRIVER
17256 M:      Guenter Roeck <linux@roeck-us.net>
17257 L:      linux-hwmon@vger.kernel.org
17258 S:      Maintained
17259 F:      Documentation/hwmon/smm665.rst
17260 F:      drivers/hwmon/smm665.c
17261
17262 SMSC EMC2103 HARDWARE MONITOR DRIVER
17263 M:      Steve Glendinning <steve.glendinning@shawell.net>
17264 L:      linux-hwmon@vger.kernel.org
17265 S:      Maintained
17266 F:      Documentation/hwmon/emc2103.rst
17267 F:      drivers/hwmon/emc2103.c
17268
17269 SMSC SCH5627 HARDWARE MONITOR DRIVER
17270 M:      Hans de Goede <hdegoede@redhat.com>
17271 L:      linux-hwmon@vger.kernel.org
17272 S:      Supported
17273 F:      Documentation/hwmon/sch5627.rst
17274 F:      drivers/hwmon/sch5627.c
17275
17276 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17277 M:      Steve Glendinning <steve.glendinning@shawell.net>
17278 L:      linux-fbdev@vger.kernel.org
17279 S:      Maintained
17280 F:      drivers/video/fbdev/smscufx.c
17281
17282 SMSC47B397 HARDWARE MONITOR DRIVER
17283 M:      Jean Delvare <jdelvare@suse.com>
17284 L:      linux-hwmon@vger.kernel.org
17285 S:      Maintained
17286 F:      Documentation/hwmon/smsc47b397.rst
17287 F:      drivers/hwmon/smsc47b397.c
17288
17289 SMSC911x ETHERNET DRIVER
17290 M:      Steve Glendinning <steve.glendinning@shawell.net>
17291 L:      netdev@vger.kernel.org
17292 S:      Maintained
17293 F:      drivers/net/ethernet/smsc/smsc911x.*
17294 F:      include/linux/smsc911x.h
17295
17296 SMSC9420 PCI ETHERNET DRIVER
17297 M:      Steve Glendinning <steve.glendinning@shawell.net>
17298 L:      netdev@vger.kernel.org
17299 S:      Maintained
17300 F:      drivers/net/ethernet/smsc/smsc9420.*
17301
17302 SOCIONEXT (SNI) AVE NETWORK DRIVER
17303 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17304 L:      netdev@vger.kernel.org
17305 S:      Maintained
17306 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17307 F:      drivers/net/ethernet/socionext/sni_ave.c
17308
17309 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17310 M:      Jassi Brar <jaswinder.singh@linaro.org>
17311 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17312 L:      netdev@vger.kernel.org
17313 S:      Maintained
17314 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17315 F:      drivers/net/ethernet/socionext/netsec.c
17316
17317 SOCIONEXT (SNI) Synquacer SPI DRIVER
17318 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17319 M:      Jassi Brar <jaswinder.singh@linaro.org>
17320 L:      linux-spi@vger.kernel.org
17321 S:      Maintained
17322 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17323 F:      drivers/spi/spi-synquacer.c
17324
17325 SOCIONEXT SYNQUACER I2C DRIVER
17326 M:      Ard Biesheuvel <ardb@kernel.org>
17327 L:      linux-i2c@vger.kernel.org
17328 S:      Maintained
17329 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17330 F:      drivers/i2c/busses/i2c-synquacer.c
17331
17332 SOCIONEXT UNIPHIER SOUND DRIVER
17333 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17334 S:      Orphan
17335 F:      sound/soc/uniphier/
17336
17337 SOEKRIS NET48XX LED SUPPORT
17338 M:      Chris Boot <bootc@bootc.net>
17339 S:      Maintained
17340 F:      drivers/leds/leds-net48xx.c
17341
17342 SOFT-IWARP DRIVER (siw)
17343 M:      Bernard Metzler <bmt@zurich.ibm.com>
17344 L:      linux-rdma@vger.kernel.org
17345 S:      Supported
17346 F:      drivers/infiniband/sw/siw/
17347 F:      include/uapi/rdma/siw-abi.h
17348
17349 SOFT-ROCE DRIVER (rxe)
17350 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17351 L:      linux-rdma@vger.kernel.org
17352 S:      Supported
17353 F:      drivers/infiniband/sw/rxe/
17354 F:      include/uapi/rdma/rdma_user_rxe.h
17355
17356 SOFTLOGIC 6x10 MPEG CODEC
17357 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17358 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17359 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17360 M:      Ismael Luceno <ismael@iodev.co.uk>
17361 L:      linux-media@vger.kernel.org
17362 S:      Supported
17363 F:      drivers/media/pci/solo6x10/
17364
17365 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17366 M:      James Morse <james.morse@arm.com>
17367 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17368 S:      Maintained
17369 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17370 F:      drivers/firmware/arm_sdei.c
17371 F:      include/linux/arm_sdei.h
17372 F:      include/uapi/linux/arm_sdei.h
17373
17374 SOFTWARE NODES
17375 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17376 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17377 L:      linux-acpi@vger.kernel.org
17378 S:      Maintained
17379 F:      drivers/base/swnode.c
17380
17381 SOFTWARE RAID (Multiple Disks) SUPPORT
17382 M:      Song Liu <song@kernel.org>
17383 L:      linux-raid@vger.kernel.org
17384 S:      Supported
17385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17386 F:      drivers/md/Kconfig
17387 F:      drivers/md/Makefile
17388 F:      drivers/md/md*
17389 F:      drivers/md/raid*
17390 F:      include/linux/raid/
17391 F:      include/uapi/linux/raid/
17392
17393 SOLIDRUN CLEARFOG SUPPORT
17394 M:      Russell King <linux@armlinux.org.uk>
17395 S:      Maintained
17396 F:      arch/arm/boot/dts/armada-388-clearfog*
17397 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17398
17399 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17400 M:      Russell King <linux@armlinux.org.uk>
17401 S:      Maintained
17402 F:      arch/arm/boot/dts/imx6*-cubox-i*
17403 F:      arch/arm/boot/dts/imx6*-hummingboard*
17404 F:      arch/arm/boot/dts/imx6*-sr-*
17405
17406 SONIC NETWORK DRIVER
17407 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17408 L:      netdev@vger.kernel.org
17409 S:      Maintained
17410 F:      drivers/net/ethernet/natsemi/sonic.*
17411
17412 SONICS SILICON BACKPLANE DRIVER (SSB)
17413 M:      Michael Buesch <m@bues.ch>
17414 L:      linux-wireless@vger.kernel.org
17415 S:      Maintained
17416 F:      drivers/ssb/
17417 F:      include/linux/ssb/
17418
17419 SONY IMX208 SENSOR DRIVER
17420 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17421 L:      linux-media@vger.kernel.org
17422 S:      Maintained
17423 T:      git git://linuxtv.org/media_tree.git
17424 F:      drivers/media/i2c/imx208.c
17425
17426 SONY IMX214 SENSOR DRIVER
17427 M:      Ricardo Ribalda <ribalda@kernel.org>
17428 L:      linux-media@vger.kernel.org
17429 S:      Maintained
17430 T:      git git://linuxtv.org/media_tree.git
17431 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17432 F:      drivers/media/i2c/imx214.c
17433
17434 SONY IMX219 SENSOR DRIVER
17435 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17436 L:      linux-media@vger.kernel.org
17437 S:      Maintained
17438 T:      git git://linuxtv.org/media_tree.git
17439 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17440 F:      drivers/media/i2c/imx219.c
17441
17442 SONY IMX258 SENSOR DRIVER
17443 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17444 L:      linux-media@vger.kernel.org
17445 S:      Maintained
17446 T:      git git://linuxtv.org/media_tree.git
17447 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17448 F:      drivers/media/i2c/imx258.c
17449
17450 SONY IMX274 SENSOR DRIVER
17451 M:      Leon Luo <leonl@leopardimaging.com>
17452 L:      linux-media@vger.kernel.org
17453 S:      Maintained
17454 T:      git git://linuxtv.org/media_tree.git
17455 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17456 F:      drivers/media/i2c/imx274.c
17457
17458 SONY IMX290 SENSOR DRIVER
17459 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17460 L:      linux-media@vger.kernel.org
17461 S:      Maintained
17462 T:      git git://linuxtv.org/media_tree.git
17463 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17464 F:      drivers/media/i2c/imx290.c
17465
17466 SONY IMX319 SENSOR DRIVER
17467 M:      Bingbu Cao <bingbu.cao@intel.com>
17468 L:      linux-media@vger.kernel.org
17469 S:      Maintained
17470 T:      git git://linuxtv.org/media_tree.git
17471 F:      drivers/media/i2c/imx319.c
17472
17473 SONY IMX334 SENSOR DRIVER
17474 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17475 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17476 L:      linux-media@vger.kernel.org
17477 S:      Maintained
17478 T:      git git://linuxtv.org/media_tree.git
17479 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17480 F:      drivers/media/i2c/imx334.c
17481
17482 SONY IMX335 SENSOR DRIVER
17483 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17484 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17485 L:      linux-media@vger.kernel.org
17486 S:      Maintained
17487 T:      git git://linuxtv.org/media_tree.git
17488 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17489 F:      drivers/media/i2c/imx335.c
17490
17491 SONY IMX355 SENSOR DRIVER
17492 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17493 L:      linux-media@vger.kernel.org
17494 S:      Maintained
17495 T:      git git://linuxtv.org/media_tree.git
17496 F:      drivers/media/i2c/imx355.c
17497
17498 SONY IMX412 SENSOR DRIVER
17499 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17500 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17501 L:      linux-media@vger.kernel.org
17502 S:      Maintained
17503 T:      git git://linuxtv.org/media_tree.git
17504 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17505 F:      drivers/media/i2c/imx412.c
17506
17507 SONY MEMORYSTICK SUBSYSTEM
17508 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17509 M:      Alex Dubov <oakad@yahoo.com>
17510 M:      Ulf Hansson <ulf.hansson@linaro.org>
17511 L:      linux-mmc@vger.kernel.org
17512 S:      Maintained
17513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17514 F:      drivers/memstick/
17515 F:      include/linux/memstick.h
17516
17517 SONY VAIO CONTROL DEVICE DRIVER
17518 M:      Mattia Dongili <malattia@linux.it>
17519 L:      platform-driver-x86@vger.kernel.org
17520 S:      Maintained
17521 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17522 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17523 F:      drivers/char/sonypi.c
17524 F:      drivers/platform/x86/sony-laptop.c
17525 F:      include/linux/sony-laptop.h
17526
17527 SOUND
17528 M:      Jaroslav Kysela <perex@perex.cz>
17529 M:      Takashi Iwai <tiwai@suse.com>
17530 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17531 S:      Maintained
17532 W:      http://www.alsa-project.org/
17533 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17535 F:      Documentation/sound/
17536 F:      include/sound/
17537 F:      include/uapi/sound/
17538 F:      sound/
17539
17540 SOUND - COMPRESSED AUDIO
17541 M:      Vinod Koul <vkoul@kernel.org>
17542 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17543 S:      Supported
17544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17545 F:      Documentation/sound/designs/compress-offload.rst
17546 F:      include/sound/compress_driver.h
17547 F:      include/uapi/sound/compress_*
17548 F:      sound/core/compress_offload.c
17549 F:      sound/soc/soc-compress.c
17550
17551 SOUND - DMAENGINE HELPERS
17552 M:      Lars-Peter Clausen <lars@metafoo.de>
17553 S:      Supported
17554 F:      include/sound/dmaengine_pcm.h
17555 F:      sound/core/pcm_dmaengine.c
17556 F:      sound/soc/soc-generic-dmaengine-pcm.c
17557
17558 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17559 M:      Liam Girdwood <lgirdwood@gmail.com>
17560 M:      Mark Brown <broonie@kernel.org>
17561 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17562 S:      Supported
17563 W:      http://alsa-project.org/main/index.php/ASoC
17564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17565 F:      Documentation/devicetree/bindings/sound/
17566 F:      Documentation/sound/soc/
17567 F:      include/dt-bindings/sound/
17568 F:      include/sound/soc*
17569 F:      sound/soc/
17570
17571 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17572 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17573 M:      Liam Girdwood <lgirdwood@gmail.com>
17574 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17575 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17576 M:      Daniel Baluta <daniel.baluta@nxp.com>
17577 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17578 S:      Supported
17579 W:      https://github.com/thesofproject/linux/
17580 F:      sound/soc/sof/
17581
17582 SOUNDWIRE SUBSYSTEM
17583 M:      Vinod Koul <vkoul@kernel.org>
17584 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17585 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17586 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17587 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17588 S:      Supported
17589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17590 F:      Documentation/driver-api/soundwire/
17591 F:      drivers/soundwire/
17592 F:      include/linux/soundwire/
17593
17594 SP2 MEDIA DRIVER
17595 M:      Olli Salonen <olli.salonen@iki.fi>
17596 L:      linux-media@vger.kernel.org
17597 S:      Maintained
17598 W:      https://linuxtv.org
17599 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17600 F:      drivers/media/dvb-frontends/sp2*
17601
17602 SPARC + UltraSPARC (sparc/sparc64)
17603 M:      "David S. Miller" <davem@davemloft.net>
17604 L:      sparclinux@vger.kernel.org
17605 S:      Maintained
17606 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17609 F:      arch/sparc/
17610 F:      drivers/sbus/
17611
17612 SPARC SERIAL DRIVERS
17613 M:      "David S. Miller" <davem@davemloft.net>
17614 L:      sparclinux@vger.kernel.org
17615 S:      Maintained
17616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17618 F:      drivers/tty/serial/suncore.c
17619 F:      drivers/tty/serial/sunhv.c
17620 F:      drivers/tty/serial/sunsab.c
17621 F:      drivers/tty/serial/sunsab.h
17622 F:      drivers/tty/serial/sunsu.c
17623 F:      drivers/tty/serial/sunzilog.c
17624 F:      drivers/tty/serial/sunzilog.h
17625 F:      drivers/tty/vcc.c
17626 F:      include/linux/sunserialcore.h
17627
17628 SPARSE CHECKER
17629 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17630 L:      linux-sparse@vger.kernel.org
17631 S:      Maintained
17632 W:      https://sparse.docs.kernel.org/
17633 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17634 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17635 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17636 F:      include/linux/compiler.h
17637
17638 SPEAKUP CONSOLE SPEECH DRIVER
17639 M:      William Hubbs <w.d.hubbs@gmail.com>
17640 M:      Chris Brannon <chris@the-brannons.com>
17641 M:      Kirk Reiser <kirk@reisers.ca>
17642 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17643 L:      speakup@linux-speakup.org
17644 S:      Odd Fixes
17645 W:      http://www.linux-speakup.org/
17646 W:      https://github.com/linux-speakup/speakup
17647 B:      https://github.com/linux-speakup/speakup/issues
17648 F:      drivers/accessibility/speakup/
17649
17650 SPEAR CLOCK FRAMEWORK SUPPORT
17651 M:      Viresh Kumar <vireshk@kernel.org>
17652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17653 S:      Maintained
17654 W:      http://www.st.com/spear
17655 F:      drivers/clk/spear/
17656
17657 SPEAR PLATFORM SUPPORT
17658 M:      Viresh Kumar <vireshk@kernel.org>
17659 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17660 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17661 S:      Maintained
17662 W:      http://www.st.com/spear
17663 F:      arch/arm/boot/dts/spear*
17664 F:      arch/arm/mach-spear/
17665
17666 SPI NOR SUBSYSTEM
17667 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17668 R:      Michael Walle <michael@walle.cc>
17669 R:      Pratyush Yadav <p.yadav@ti.com>
17670 L:      linux-mtd@lists.infradead.org
17671 S:      Maintained
17672 W:      http://www.linux-mtd.infradead.org/
17673 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17674 C:      irc://irc.oftc.net/mtd
17675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17676 F:      drivers/mtd/spi-nor/
17677 F:      include/linux/mtd/spi-nor.h
17678
17679 SPI SUBSYSTEM
17680 M:      Mark Brown <broonie@kernel.org>
17681 L:      linux-spi@vger.kernel.org
17682 S:      Maintained
17683 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17685 F:      Documentation/devicetree/bindings/spi/
17686 F:      Documentation/spi/
17687 F:      drivers/spi/
17688 F:      include/linux/spi/
17689 F:      include/uapi/linux/spi/
17690 F:      tools/spi/
17691
17692 SPIDERNET NETWORK DRIVER for CELL
17693 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17694 M:      Geoff Levand <geoff@infradead.org>
17695 L:      netdev@vger.kernel.org
17696 L:      linuxppc-dev@lists.ozlabs.org
17697 S:      Maintained
17698 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17699 F:      drivers/net/ethernet/toshiba/spider_net*
17700
17701 SPMI SUBSYSTEM
17702 M:      Stephen Boyd <sboyd@kernel.org>
17703 L:      linux-kernel@vger.kernel.org
17704 S:      Maintained
17705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17706 F:      Documentation/devicetree/bindings/spmi/
17707 F:      drivers/spmi/
17708 F:      include/dt-bindings/spmi/spmi.h
17709 F:      include/linux/spmi.h
17710 F:      include/trace/events/spmi.h
17711
17712 SPU FILE SYSTEM
17713 M:      Jeremy Kerr <jk@ozlabs.org>
17714 L:      linuxppc-dev@lists.ozlabs.org
17715 S:      Supported
17716 W:      http://www.ibm.com/developerworks/power/cell/
17717 F:      Documentation/filesystems/spufs/spufs.rst
17718 F:      arch/powerpc/platforms/cell/spufs/
17719
17720 SQUASHFS FILE SYSTEM
17721 M:      Phillip Lougher <phillip@squashfs.org.uk>
17722 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17723 S:      Maintained
17724 W:      http://squashfs.org.uk
17725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17726 F:      Documentation/filesystems/squashfs.rst
17727 F:      fs/squashfs/
17728
17729 SRM (Alpha) environment access
17730 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17731 S:      Maintained
17732 F:      arch/alpha/kernel/srm_env.c
17733
17734 ST LSM6DSx IMU IIO DRIVER
17735 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17736 L:      linux-iio@vger.kernel.org
17737 S:      Maintained
17738 W:      http://www.st.com/
17739 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17740 F:      drivers/iio/imu/st_lsm6dsx/
17741
17742 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17743 M:      Mickael Guene <mickael.guene@st.com>
17744 L:      linux-media@vger.kernel.org
17745 S:      Maintained
17746 T:      git git://linuxtv.org/media_tree.git
17747 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17748 F:      drivers/media/i2c/st-mipid02.c
17749
17750 ST STM32 I2C/SMBUS DRIVER
17751 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17752 M:      Alain Volmat <alain.volmat@foss.st.com>
17753 L:      linux-i2c@vger.kernel.org
17754 S:      Maintained
17755 F:      drivers/i2c/busses/i2c-stm32*
17756
17757 ST STM32 SPI DRIVER
17758 M:      Alain Volmat <alain.volmat@foss.st.com>
17759 L:      linux-spi@vger.kernel.org
17760 S:      Maintained
17761 F:      drivers/spi/spi-stm32.c
17762
17763 ST STPDDC60 DRIVER
17764 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17765 L:      linux-hwmon@vger.kernel.org
17766 S:      Maintained
17767 F:      Documentation/hwmon/stpddc60.rst
17768 F:      drivers/hwmon/pmbus/stpddc60.c
17769
17770 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17771 M:      Song Qiang <songqiang1304521@gmail.com>
17772 L:      linux-iio@vger.kernel.org
17773 S:      Maintained
17774 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17775 F:      drivers/iio/proximity/vl53l0x-i2c.c
17776
17777 STABLE BRANCH
17778 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17779 M:      Sasha Levin <sashal@kernel.org>
17780 L:      stable@vger.kernel.org
17781 S:      Supported
17782 F:      Documentation/process/stable-kernel-rules.rst
17783
17784 STAGING - ATOMISP DRIVER
17785 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17786 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17787 L:      linux-media@vger.kernel.org
17788 S:      Maintained
17789 F:      drivers/staging/media/atomisp/
17790
17791 STAGING - FIELDBUS SUBSYSTEM
17792 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17793 S:      Maintained
17794 F:      drivers/staging/fieldbus/*
17795 F:      drivers/staging/fieldbus/Documentation/
17796
17797 STAGING - HMS ANYBUS-S BUS
17798 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17799 S:      Maintained
17800 F:      drivers/staging/fieldbus/anybuss/
17801
17802 STAGING - INDUSTRIAL IO
17803 M:      Jonathan Cameron <jic23@kernel.org>
17804 L:      linux-iio@vger.kernel.org
17805 S:      Odd Fixes
17806 F:      Documentation/devicetree/bindings/staging/iio/
17807 F:      drivers/staging/iio/
17808
17809 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17810 M:      Marc Dietrich <marvin24@gmx.de>
17811 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17812 L:      linux-tegra@vger.kernel.org
17813 S:      Maintained
17814 F:      drivers/staging/nvec/
17815
17816 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17817 M:      Jens Frederich <jfrederich@gmail.com>
17818 M:      Jon Nettleton <jon.nettleton@gmail.com>
17819 S:      Maintained
17820 W:      http://wiki.laptop.org/go/DCON
17821 F:      drivers/staging/olpc_dcon/
17822
17823 STAGING - REALTEK RTL8188EU DRIVERS
17824 M:      Larry Finger <Larry.Finger@lwfinger.net>
17825 M:      Phillip Potter <phil@philpotter.co.uk>
17826 S:      Supported
17827 F:      drivers/staging/r8188eu/
17828
17829 STAGING - REALTEK RTL8712U DRIVERS
17830 M:      Larry Finger <Larry.Finger@lwfinger.net>
17831 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17832 S:      Odd Fixes
17833 F:      drivers/staging/rtl8712/
17834
17835 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17836 M:      Michael Hennerich <michael.hennerich@analog.com>
17837 L:      linux-fbdev@vger.kernel.org
17838 S:      Supported
17839 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17840 F:      drivers/staging/fbtft/fb_seps525.c
17841
17842 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17843 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17844 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17845 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17846 L:      linux-fbdev@vger.kernel.org
17847 S:      Maintained
17848 F:      drivers/staging/sm750fb/
17849
17850 STAGING - VIA VT665X DRIVERS
17851 M:      Forest Bond <forest@alittletooquiet.net>
17852 S:      Odd Fixes
17853 F:      drivers/staging/vt665?/
17854
17855 STAGING SUBSYSTEM
17856 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17857 L:      linux-staging@lists.linux.dev
17858 S:      Supported
17859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17860 F:      drivers/staging/
17861
17862 STARFIRE/DURALAN NETWORK DRIVER
17863 M:      Ion Badulescu <ionut@badula.org>
17864 S:      Odd Fixes
17865 F:      drivers/net/ethernet/adaptec/starfire*
17866
17867 STATIC BRANCH/CALL
17868 M:      Peter Zijlstra <peterz@infradead.org>
17869 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17870 M:      Jason Baron <jbaron@akamai.com>
17871 R:      Steven Rostedt <rostedt@goodmis.org>
17872 R:      Ard Biesheuvel <ardb@kernel.org>
17873 S:      Supported
17874 F:      arch/*/include/asm/jump_label*.h
17875 F:      arch/*/include/asm/static_call*.h
17876 F:      arch/*/kernel/jump_label.c
17877 F:      arch/*/kernel/static_call.c
17878 F:      include/linux/jump_label*.h
17879 F:      include/linux/static_call*.h
17880 F:      kernel/jump_label.c
17881 F:      kernel/static_call.c
17882
17883 STI AUDIO (ASoC) DRIVERS
17884 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17885 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17886 S:      Maintained
17887 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17888 F:      sound/soc/sti/
17889
17890 STI CEC DRIVER
17891 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17892 S:      Maintained
17893 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17894 F:      drivers/media/cec/platform/sti/
17895
17896 STK1160 USB VIDEO CAPTURE DRIVER
17897 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17898 L:      linux-media@vger.kernel.org
17899 S:      Maintained
17900 T:      git git://linuxtv.org/media_tree.git
17901 F:      drivers/media/usb/stk1160/
17902
17903 STM32 AUDIO (ASoC) DRIVERS
17904 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17905 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17906 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17907 S:      Maintained
17908 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17909 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17910 F:      sound/soc/stm/
17911
17912 STM32 TIMER/LPTIMER DRIVERS
17913 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17914 S:      Maintained
17915 F:      Documentation/ABI/testing/*timer-stm32
17916 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17917 F:      drivers/*/stm32-*timer*
17918 F:      drivers/pwm/pwm-stm32*
17919 F:      include/linux/*/stm32-*tim*
17920
17921 STMMAC ETHERNET DRIVER
17922 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17923 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
17924 M:      Jose Abreu <joabreu@synopsys.com>
17925 L:      netdev@vger.kernel.org
17926 S:      Supported
17927 W:      http://www.stlinux.com
17928 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17929 F:      drivers/net/ethernet/stmicro/stmmac/
17930
17931 SUN3/3X
17932 M:      Sam Creasey <sammy@sammy.net>
17933 S:      Maintained
17934 W:      http://sammy.net/sun3/
17935 F:      arch/m68k/include/asm/sun3*
17936 F:      arch/m68k/kernel/*sun3*
17937 F:      arch/m68k/sun3*/
17938 F:      drivers/net/ethernet/i825xx/sun3*
17939
17940 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17941 M:      Hans de Goede <hdegoede@redhat.com>
17942 L:      linux-input@vger.kernel.org
17943 S:      Maintained
17944 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17945 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17946
17947 SUNDANCE NETWORK DRIVER
17948 M:      Denis Kirjanov <kda@linux-powerpc.org>
17949 L:      netdev@vger.kernel.org
17950 S:      Maintained
17951 F:      drivers/net/ethernet/dlink/sundance.c
17952
17953 SUPERH
17954 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17955 M:      Rich Felker <dalias@libc.org>
17956 L:      linux-sh@vger.kernel.org
17957 S:      Maintained
17958 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17959 F:      Documentation/sh/
17960 F:      arch/sh/
17961 F:      drivers/sh/
17962
17963 SUSPEND TO RAM
17964 M:      "Rafael J. Wysocki" <rafael@kernel.org>
17965 M:      Len Brown <len.brown@intel.com>
17966 M:      Pavel Machek <pavel@ucw.cz>
17967 L:      linux-pm@vger.kernel.org
17968 S:      Supported
17969 B:      https://bugzilla.kernel.org
17970 F:      Documentation/power/
17971 F:      arch/x86/kernel/acpi/
17972 F:      drivers/base/power/
17973 F:      include/linux/freezer.h
17974 F:      include/linux/pm.h
17975 F:      include/linux/suspend.h
17976 F:      kernel/power/
17977
17978 SVGA HANDLING
17979 M:      Martin Mares <mj@ucw.cz>
17980 L:      linux-video@atrey.karlin.mff.cuni.cz
17981 S:      Maintained
17982 F:      Documentation/admin-guide/svga.rst
17983 F:      arch/x86/boot/video*
17984
17985 SWIOTLB SUBSYSTEM
17986 M:      Christoph Hellwig <hch@infradead.org>
17987 L:      iommu@lists.linux-foundation.org
17988 S:      Supported
17989 W:      http://git.infradead.org/users/hch/dma-mapping.git
17990 T:      git git://git.infradead.org/users/hch/dma-mapping.git
17991 F:      arch/*/kernel/pci-swiotlb.c
17992 F:      include/linux/swiotlb.h
17993 F:      kernel/dma/swiotlb.c
17994
17995 SWITCHDEV
17996 M:      Jiri Pirko <jiri@resnulli.us>
17997 M:      Ivan Vecera <ivecera@redhat.com>
17998 L:      netdev@vger.kernel.org
17999 S:      Supported
18000 F:      include/net/switchdev.h
18001 F:      net/switchdev/
18002
18003 SY8106A REGULATOR DRIVER
18004 M:      Icenowy Zheng <icenowy@aosc.io>
18005 S:      Maintained
18006 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18007 F:      drivers/regulator/sy8106a-regulator.c
18008
18009 SYNC FILE FRAMEWORK
18010 M:      Sumit Semwal <sumit.semwal@linaro.org>
18011 R:      Gustavo Padovan <gustavo@padovan.org>
18012 L:      linux-media@vger.kernel.org
18013 L:      dri-devel@lists.freedesktop.org
18014 S:      Maintained
18015 T:      git git://anongit.freedesktop.org/drm/drm-misc
18016 F:      Documentation/driver-api/sync_file.rst
18017 F:      drivers/dma-buf/dma-fence*
18018 F:      drivers/dma-buf/sw_sync.c
18019 F:      drivers/dma-buf/sync_*
18020 F:      include/linux/sync_file.h
18021 F:      include/uapi/linux/sync_file.h
18022
18023 SYNOPSYS ARC ARCHITECTURE
18024 M:      Vineet Gupta <vgupta@kernel.org>
18025 L:      linux-snps-arc@lists.infradead.org
18026 S:      Supported
18027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18028 F:      Documentation/devicetree/bindings/arc/*
18029 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18030 F:      arch/arc/
18031 F:      drivers/clocksource/arc_timer.c
18032 F:      drivers/tty/serial/arc_uart.c
18033
18034 SYNOPSYS ARC HSDK SDP pll clock driver
18035 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18036 S:      Supported
18037 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18038 F:      drivers/clk/clk-hsdk-pll.c
18039
18040 SYNOPSYS ARC SDP clock driver
18041 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18042 S:      Supported
18043 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18044 F:      drivers/clk/axs10x/*
18045
18046 SYNOPSYS ARC SDP platform support
18047 M:      Alexey Brodkin <abrodkin@synopsys.com>
18048 S:      Supported
18049 F:      Documentation/devicetree/bindings/arc/axs10*
18050 F:      arch/arc/boot/dts/ax*
18051 F:      arch/arc/plat-axs10x
18052
18053 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18054 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18055 S:      Supported
18056 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18057 F:      drivers/reset/reset-axs10x.c
18058
18059 SYNOPSYS CREG GPIO DRIVER
18060 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18061 S:      Maintained
18062 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18063 F:      drivers/gpio/gpio-creg-snps.c
18064
18065 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18066 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18067 S:      Maintained
18068 F:      drivers/tty/serial/8250/8250_dw.c
18069 F:      drivers/tty/serial/8250/8250_dwlib.*
18070 F:      drivers/tty/serial/8250/8250_lpss.c
18071
18072 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18073 M:      Hoan Tran <hoan@os.amperecomputing.com>
18074 M:      Serge Semin <fancer.lancer@gmail.com>
18075 L:      linux-gpio@vger.kernel.org
18076 S:      Maintained
18077 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18078 F:      drivers/gpio/gpio-dwapb.c
18079
18080 SYNOPSYS DESIGNWARE APB SSI DRIVER
18081 M:      Serge Semin <fancer.lancer@gmail.com>
18082 L:      linux-spi@vger.kernel.org
18083 S:      Supported
18084 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18085 F:      drivers/spi/spi-dw*
18086
18087 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18088 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18089 S:      Maintained
18090 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18091 F:      drivers/dma/dw-axi-dmac/
18092
18093 SYNOPSYS DESIGNWARE DMAC DRIVER
18094 M:      Viresh Kumar <vireshk@kernel.org>
18095 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18096 S:      Maintained
18097 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18098 F:      drivers/dma/dw/
18099 F:      include/dt-bindings/dma/dw-dmac.h
18100 F:      include/linux/dma/dw.h
18101 F:      include/linux/platform_data/dma-dw.h
18102
18103 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18104 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18105 L:      netdev@vger.kernel.org
18106 S:      Supported
18107 F:      drivers/net/ethernet/synopsys/
18108
18109 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18110 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18111 L:      netdev@vger.kernel.org
18112 S:      Supported
18113 F:      drivers/net/pcs/pcs-xpcs.c
18114 F:      drivers/net/pcs/pcs-xpcs.h
18115 F:      include/linux/pcs/pcs-xpcs.h
18116
18117 SYNOPSYS DESIGNWARE I2C DRIVER
18118 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18119 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18120 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18121 L:      linux-i2c@vger.kernel.org
18122 S:      Maintained
18123 F:      drivers/i2c/busses/i2c-designware-*
18124
18125 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18126 M:      Jaehoon Chung <jh80.chung@samsung.com>
18127 L:      linux-mmc@vger.kernel.org
18128 S:      Maintained
18129 F:      drivers/mmc/host/dw_mmc*
18130
18131 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18132 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18133 S:      Supported
18134 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18135 F:      drivers/reset/reset-hsdk.c
18136 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18137
18138 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18139 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18140 M:      Manjunath M B <manjumb@synopsys.com>
18141 L:      linux-mmc@vger.kernel.org
18142 S:      Maintained
18143 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18144
18145 SYSTEM CONFIGURATION (SYSCON)
18146 M:      Lee Jones <lee.jones@linaro.org>
18147 M:      Arnd Bergmann <arnd@arndb.de>
18148 S:      Supported
18149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18150 F:      drivers/mfd/syscon.c
18151
18152 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18153 M:      Sudeep Holla <sudeep.holla@arm.com>
18154 R:      Cristian Marussi <cristian.marussi@arm.com>
18155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18156 S:      Maintained
18157 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18158 F:      drivers/clk/clk-sc[mp]i.c
18159 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18160 F:      drivers/firmware/arm_scmi/
18161 F:      drivers/firmware/arm_scpi.c
18162 F:      drivers/regulator/scmi-regulator.c
18163 F:      drivers/reset/reset-scmi.c
18164 F:      include/linux/sc[mp]i_protocol.h
18165 F:      include/trace/events/scmi.h
18166 F:      include/uapi/linux/virtio_scmi.h
18167
18168 SYSTEM RESET/SHUTDOWN DRIVERS
18169 M:      Sebastian Reichel <sre@kernel.org>
18170 L:      linux-pm@vger.kernel.org
18171 S:      Maintained
18172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18173 F:      Documentation/devicetree/bindings/power/reset/
18174 F:      drivers/power/reset/
18175
18176 SYSTEM TRACE MODULE CLASS
18177 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18178 S:      Maintained
18179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18180 F:      Documentation/trace/stm.rst
18181 F:      drivers/hwtracing/stm/
18182 F:      include/linux/stm.h
18183 F:      include/uapi/linux/stm.h
18184
18185 SYSTEM76 ACPI DRIVER
18186 M:      Jeremy Soller <jeremy@system76.com>
18187 M:      System76 Product Development <productdev@system76.com>
18188 L:      platform-driver-x86@vger.kernel.org
18189 S:      Maintained
18190 F:      drivers/platform/x86/system76_acpi.c
18191
18192 SYSV FILESYSTEM
18193 M:      Christoph Hellwig <hch@infradead.org>
18194 S:      Maintained
18195 F:      Documentation/filesystems/sysv-fs.rst
18196 F:      fs/sysv/
18197 F:      include/linux/sysv_fs.h
18198
18199 TASKSTATS STATISTICS INTERFACE
18200 M:      Balbir Singh <bsingharora@gmail.com>
18201 S:      Maintained
18202 F:      Documentation/accounting/taskstats*
18203 F:      include/linux/taskstats*
18204 F:      kernel/taskstats.c
18205
18206 TC subsystem
18207 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18208 M:      Cong Wang <xiyou.wangcong@gmail.com>
18209 M:      Jiri Pirko <jiri@resnulli.us>
18210 L:      netdev@vger.kernel.org
18211 S:      Maintained
18212 F:      include/net/pkt_cls.h
18213 F:      include/net/pkt_sched.h
18214 F:      include/net/tc_act/
18215 F:      include/uapi/linux/pkt_cls.h
18216 F:      include/uapi/linux/pkt_sched.h
18217 F:      include/uapi/linux/tc_act/
18218 F:      include/uapi/linux/tc_ematch/
18219 F:      net/sched/
18220
18221 TC90522 MEDIA DRIVER
18222 M:      Akihiro Tsukada <tskd08@gmail.com>
18223 L:      linux-media@vger.kernel.org
18224 S:      Odd Fixes
18225 F:      drivers/media/dvb-frontends/tc90522*
18226
18227 TCP LOW PRIORITY MODULE
18228 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18229 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18230 S:      Maintained
18231 W:      http://tcp-lp-mod.sourceforge.net/
18232 F:      net/ipv4/tcp_lp.c
18233
18234 TDA10071 MEDIA DRIVER
18235 M:      Antti Palosaari <crope@iki.fi>
18236 L:      linux-media@vger.kernel.org
18237 S:      Maintained
18238 W:      https://linuxtv.org
18239 W:      http://palosaari.fi/linux/
18240 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18241 T:      git git://linuxtv.org/anttip/media_tree.git
18242 F:      drivers/media/dvb-frontends/tda10071*
18243
18244 TDA18212 MEDIA DRIVER
18245 M:      Antti Palosaari <crope@iki.fi>
18246 L:      linux-media@vger.kernel.org
18247 S:      Maintained
18248 W:      https://linuxtv.org
18249 W:      http://palosaari.fi/linux/
18250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18251 T:      git git://linuxtv.org/anttip/media_tree.git
18252 F:      drivers/media/tuners/tda18212*
18253
18254 TDA18218 MEDIA DRIVER
18255 M:      Antti Palosaari <crope@iki.fi>
18256 L:      linux-media@vger.kernel.org
18257 S:      Maintained
18258 W:      https://linuxtv.org
18259 W:      http://palosaari.fi/linux/
18260 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18261 T:      git git://linuxtv.org/anttip/media_tree.git
18262 F:      drivers/media/tuners/tda18218*
18263
18264 TDA18250 MEDIA DRIVER
18265 M:      Olli Salonen <olli.salonen@iki.fi>
18266 L:      linux-media@vger.kernel.org
18267 S:      Maintained
18268 W:      https://linuxtv.org
18269 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18270 T:      git git://linuxtv.org/media_tree.git
18271 F:      drivers/media/tuners/tda18250*
18272
18273 TDA18271 MEDIA DRIVER
18274 M:      Michael Krufky <mkrufky@linuxtv.org>
18275 L:      linux-media@vger.kernel.org
18276 S:      Maintained
18277 W:      https://linuxtv.org
18278 W:      http://github.com/mkrufky
18279 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18280 T:      git git://linuxtv.org/mkrufky/tuners.git
18281 F:      drivers/media/tuners/tda18271*
18282
18283 TDA1997x MEDIA DRIVER
18284 M:      Tim Harvey <tharvey@gateworks.com>
18285 L:      linux-media@vger.kernel.org
18286 S:      Maintained
18287 W:      https://linuxtv.org
18288 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18289 F:      drivers/media/i2c/tda1997x.*
18290
18291 TDA827x MEDIA DRIVER
18292 M:      Michael Krufky <mkrufky@linuxtv.org>
18293 L:      linux-media@vger.kernel.org
18294 S:      Maintained
18295 W:      https://linuxtv.org
18296 W:      http://github.com/mkrufky
18297 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18298 T:      git git://linuxtv.org/mkrufky/tuners.git
18299 F:      drivers/media/tuners/tda8290.*
18300
18301 TDA8290 MEDIA DRIVER
18302 M:      Michael Krufky <mkrufky@linuxtv.org>
18303 L:      linux-media@vger.kernel.org
18304 S:      Maintained
18305 W:      https://linuxtv.org
18306 W:      http://github.com/mkrufky
18307 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18308 T:      git git://linuxtv.org/mkrufky/tuners.git
18309 F:      drivers/media/tuners/tda8290.*
18310
18311 TDA9840 MEDIA DRIVER
18312 M:      Hans Verkuil <hverkuil@xs4all.nl>
18313 L:      linux-media@vger.kernel.org
18314 S:      Maintained
18315 W:      https://linuxtv.org
18316 T:      git git://linuxtv.org/media_tree.git
18317 F:      drivers/media/i2c/tda9840*
18318
18319 TEA5761 TUNER DRIVER
18320 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18321 L:      linux-media@vger.kernel.org
18322 S:      Odd fixes
18323 W:      https://linuxtv.org
18324 T:      git git://linuxtv.org/media_tree.git
18325 F:      drivers/media/tuners/tea5761.*
18326
18327 TEA5767 TUNER DRIVER
18328 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18329 L:      linux-media@vger.kernel.org
18330 S:      Maintained
18331 W:      https://linuxtv.org
18332 T:      git git://linuxtv.org/media_tree.git
18333 F:      drivers/media/tuners/tea5767.*
18334
18335 TEA6415C MEDIA DRIVER
18336 M:      Hans Verkuil <hverkuil@xs4all.nl>
18337 L:      linux-media@vger.kernel.org
18338 S:      Maintained
18339 W:      https://linuxtv.org
18340 T:      git git://linuxtv.org/media_tree.git
18341 F:      drivers/media/i2c/tea6415c*
18342
18343 TEA6420 MEDIA DRIVER
18344 M:      Hans Verkuil <hverkuil@xs4all.nl>
18345 L:      linux-media@vger.kernel.org
18346 S:      Maintained
18347 W:      https://linuxtv.org
18348 T:      git git://linuxtv.org/media_tree.git
18349 F:      drivers/media/i2c/tea6420*
18350
18351 TEAM DRIVER
18352 M:      Jiri Pirko <jiri@resnulli.us>
18353 L:      netdev@vger.kernel.org
18354 S:      Supported
18355 F:      drivers/net/team/
18356 F:      include/linux/if_team.h
18357 F:      include/uapi/linux/if_team.h
18358
18359 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18360 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18361 S:      Maintained
18362 F:      arch/x86/platform/ts5500/
18363
18364 TECHNOTREND USB IR RECEIVER
18365 M:      Sean Young <sean@mess.org>
18366 L:      linux-media@vger.kernel.org
18367 S:      Maintained
18368 F:      drivers/media/rc/ttusbir.c
18369
18370 TECHWELL TW9910 VIDEO DECODER
18371 L:      linux-media@vger.kernel.org
18372 S:      Orphan
18373 F:      drivers/media/i2c/tw9910.c
18374 F:      include/media/i2c/tw9910.h
18375
18376 TEE SUBSYSTEM
18377 M:      Jens Wiklander <jens.wiklander@linaro.org>
18378 R:      Sumit Garg <sumit.garg@linaro.org>
18379 L:      op-tee@lists.trustedfirmware.org
18380 S:      Maintained
18381 F:      Documentation/staging/tee.rst
18382 F:      drivers/tee/
18383 F:      include/linux/tee_drv.h
18384 F:      include/uapi/linux/tee.h
18385
18386 TEGRA ARCHITECTURE SUPPORT
18387 M:      Thierry Reding <thierry.reding@gmail.com>
18388 M:      Jonathan Hunter <jonathanh@nvidia.com>
18389 L:      linux-tegra@vger.kernel.org
18390 S:      Supported
18391 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18393 N:      [^a-z]tegra
18394
18395 TEGRA CLOCK DRIVER
18396 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18397 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18398 S:      Supported
18399 F:      drivers/clk/tegra/
18400
18401 TEGRA DMA DRIVERS
18402 M:      Laxman Dewangan <ldewangan@nvidia.com>
18403 M:      Jon Hunter <jonathanh@nvidia.com>
18404 S:      Supported
18405 F:      drivers/dma/tegra*
18406
18407 TEGRA I2C DRIVER
18408 M:      Laxman Dewangan <ldewangan@nvidia.com>
18409 R:      Dmitry Osipenko <digetx@gmail.com>
18410 S:      Supported
18411 F:      drivers/i2c/busses/i2c-tegra.c
18412
18413 TEGRA IOMMU DRIVERS
18414 M:      Thierry Reding <thierry.reding@gmail.com>
18415 R:      Krishna Reddy <vdumpa@nvidia.com>
18416 L:      linux-tegra@vger.kernel.org
18417 S:      Supported
18418 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18419 F:      drivers/iommu/tegra*
18420
18421 TEGRA KBC DRIVER
18422 M:      Laxman Dewangan <ldewangan@nvidia.com>
18423 S:      Supported
18424 F:      drivers/input/keyboard/tegra-kbc.c
18425
18426 TEGRA NAND DRIVER
18427 M:      Stefan Agner <stefan@agner.ch>
18428 M:      Lucas Stach <dev@lynxeye.de>
18429 S:      Maintained
18430 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18431 F:      drivers/mtd/nand/raw/tegra_nand.c
18432
18433 TEGRA PWM DRIVER
18434 M:      Thierry Reding <thierry.reding@gmail.com>
18435 S:      Supported
18436 F:      drivers/pwm/pwm-tegra.c
18437
18438 TEGRA SERIAL DRIVER
18439 M:      Laxman Dewangan <ldewangan@nvidia.com>
18440 S:      Supported
18441 F:      drivers/tty/serial/serial-tegra.c
18442
18443 TEGRA SPI DRIVER
18444 M:      Laxman Dewangan <ldewangan@nvidia.com>
18445 S:      Supported
18446 F:      drivers/spi/spi-tegra*
18447
18448 TEGRA QUAD SPI DRIVER
18449 M:      Thierry Reding <thierry.reding@gmail.com>
18450 M:      Jonathan Hunter <jonathanh@nvidia.com>
18451 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18452 L:      linux-tegra@vger.kernel.org
18453 S:      Maintained
18454 F:      drivers/spi/spi-tegra210-quad.c
18455
18456 TEGRA VIDEO DRIVER
18457 M:      Thierry Reding <thierry.reding@gmail.com>
18458 M:      Jonathan Hunter <jonathanh@nvidia.com>
18459 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18460 L:      linux-media@vger.kernel.org
18461 L:      linux-tegra@vger.kernel.org
18462 S:      Maintained
18463 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18464 F:      drivers/staging/media/tegra-video/
18465
18466 TEGRA XUSB PADCTL DRIVER
18467 M:      JC Kuo <jckuo@nvidia.com>
18468 S:      Supported
18469 F:      drivers/phy/tegra/xusb*
18470
18471 TEHUTI ETHERNET DRIVER
18472 M:      Andy Gospodarek <andy@greyhouse.net>
18473 L:      netdev@vger.kernel.org
18474 S:      Supported
18475 F:      drivers/net/ethernet/tehuti/*
18476
18477 TELECOM CLOCK DRIVER FOR MCPL0010
18478 M:      Mark Gross <mark.gross@intel.com>
18479 S:      Supported
18480 F:      drivers/char/tlclk.c
18481
18482 TEMPO SEMICONDUCTOR DRIVERS
18483 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18484 S:      Maintained
18485 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18486 F:      sound/soc/codecs/tscs*.c
18487 F:      sound/soc/codecs/tscs*.h
18488
18489 TENSILICA XTENSA PORT (xtensa)
18490 M:      Chris Zankel <chris@zankel.net>
18491 M:      Max Filippov <jcmvbkbc@gmail.com>
18492 L:      linux-xtensa@linux-xtensa.org
18493 S:      Maintained
18494 T:      git git://github.com/czankel/xtensa-linux.git
18495 F:      arch/xtensa/
18496 F:      drivers/irqchip/irq-xtensa-*
18497
18498 TEXAS INSTRUMENTS ASoC DRIVERS
18499 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18500 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18501 S:      Maintained
18502 F:      sound/soc/ti/
18503
18504 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18505 M:      Ricardo Ribalda <ribalda@kernel.org>
18506 L:      linux-iio@vger.kernel.org
18507 S:      Supported
18508 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18509 F:      drivers/iio/dac/ti-dac7612.c
18510
18511 TEXAS INSTRUMENTS DMA DRIVERS
18512 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18513 L:      dmaengine@vger.kernel.org
18514 S:      Maintained
18515 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18516 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18517 F:      Documentation/devicetree/bindings/dma/ti/
18518 F:      drivers/dma/ti/
18519 X:      drivers/dma/ti/cppi41.c
18520 F:      include/linux/dma/k3-udma-glue.h
18521 F:      include/linux/dma/ti-cppi5.h
18522 F:      include/linux/dma/k3-psil.h
18523
18524 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18525 M:      Nishanth Menon <nm@ti.com>
18526 M:      Tero Kristo <kristo@kernel.org>
18527 M:      Santosh Shilimkar <ssantosh@kernel.org>
18528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18529 S:      Maintained
18530 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18531 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18532 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18533 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18534 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18535 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18536 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18537 F:      drivers/clk/keystone/sci-clk.c
18538 F:      drivers/firmware/ti_sci*
18539 F:      drivers/irqchip/irq-ti-sci-inta.c
18540 F:      drivers/irqchip/irq-ti-sci-intr.c
18541 F:      drivers/reset/reset-ti-sci.c
18542 F:      drivers/soc/ti/ti_sci_inta_msi.c
18543 F:      drivers/soc/ti/ti_sci_pm_domains.c
18544 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18545 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18546 F:      include/linux/soc/ti/ti_sci_protocol.h
18547
18548 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18549 M:      Robert Marko <robert.marko@sartura.hr>
18550 M:      Luka Perkov <luka.perkov@sartura.hr>
18551 L:      linux-hwmon@vger.kernel.org
18552 S:      Maintained
18553 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18554 F:      Documentation/hwmon/tps23861.rst
18555 F:      drivers/hwmon/tps23861.c
18556
18557 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18558 M:      Puranjay Mohan <puranjay12@gmail.com>
18559 L:      linux-iio@vger.kernel.org
18560 S:      Supported
18561 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18562 F:      drivers/iio/temperature/tmp117.c
18563
18564 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18565 M:      Hans Verkuil <hverkuil@xs4all.nl>
18566 L:      linux-media@vger.kernel.org
18567 S:      Maintained
18568 W:      https://linuxtv.org
18569 T:      git git://linuxtv.org/media_tree.git
18570 F:      drivers/media/radio/radio-raremono.c
18571
18572 THERMAL
18573 M:      Rafael J. Wysocki <rafael@kernel.org>
18574 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18575 R:      Amit Kucheria <amitk@kernel.org>
18576 R:      Zhang Rui <rui.zhang@intel.com>
18577 L:      linux-pm@vger.kernel.org
18578 S:      Supported
18579 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18581 F:      Documentation/devicetree/bindings/thermal/
18582 F:      drivers/thermal/
18583 F:      include/linux/cpu_cooling.h
18584 F:      include/linux/thermal.h
18585 F:      include/uapi/linux/thermal.h
18586 F:      tools/thermal/
18587
18588 THERMAL DRIVER FOR AMLOGIC SOCS
18589 M:      Guillaume La Roque <glaroque@baylibre.com>
18590 L:      linux-pm@vger.kernel.org
18591 L:      linux-amlogic@lists.infradead.org
18592 S:      Supported
18593 W:      http://linux-meson.com/
18594 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18595 F:      drivers/thermal/amlogic_thermal.c
18596
18597 THERMAL/CPU_COOLING
18598 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18599 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18600 M:      Viresh Kumar <viresh.kumar@linaro.org>
18601 R:      Lukasz Luba <lukasz.luba@arm.com>
18602 L:      linux-pm@vger.kernel.org
18603 S:      Supported
18604 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18605 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18606 F:      drivers/thermal/cpufreq_cooling.c
18607 F:      drivers/thermal/cpuidle_cooling.c
18608 F:      include/linux/cpu_cooling.h
18609
18610 THERMAL/POWER_ALLOCATOR
18611 M:      Lukasz Luba <lukasz.luba@arm.com>
18612 L:      linux-pm@vger.kernel.org
18613 S:      Maintained
18614 F:      Documentation/driver-api/thermal/power_allocator.rst
18615 F:      drivers/thermal/gov_power_allocator.c
18616 F:      include/trace/events/thermal_power_allocator.h
18617
18618 THINKPAD ACPI EXTRAS DRIVER
18619 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18620 L:      ibm-acpi-devel@lists.sourceforge.net
18621 L:      platform-driver-x86@vger.kernel.org
18622 S:      Maintained
18623 W:      http://ibm-acpi.sourceforge.net
18624 W:      http://thinkwiki.org/wiki/Ibm-acpi
18625 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18626 F:      drivers/platform/x86/thinkpad_acpi.c
18627
18628 THINKPAD LMI DRIVER
18629 M:      Mark Pearson <markpearson@lenovo.com>
18630 L:      platform-driver-x86@vger.kernel.org
18631 S:      Maintained
18632 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18633 F:      drivers/platform/x86/think-lmi.?
18634
18635 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18636 M:      Isaac Hazan <isaac.hazan@intel.com>
18637 L:      linux-usb@vger.kernel.org
18638 S:      Maintained
18639 F:      drivers/thunderbolt/dma_test.c
18640
18641 THUNDERBOLT DRIVER
18642 M:      Andreas Noever <andreas.noever@gmail.com>
18643 M:      Michael Jamet <michael.jamet@intel.com>
18644 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18645 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18646 L:      linux-usb@vger.kernel.org
18647 S:      Maintained
18648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18649 F:      Documentation/admin-guide/thunderbolt.rst
18650 F:      drivers/thunderbolt/
18651 F:      include/linux/thunderbolt.h
18652
18653 THUNDERBOLT NETWORK DRIVER
18654 M:      Michael Jamet <michael.jamet@intel.com>
18655 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18656 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18657 L:      netdev@vger.kernel.org
18658 S:      Maintained
18659 F:      drivers/net/thunderbolt.c
18660
18661 THUNDERX GPIO DRIVER
18662 M:      Robert Richter <rric@kernel.org>
18663 S:      Odd Fixes
18664 F:      drivers/gpio/gpio-thunderx.c
18665
18666 TI ADS131E0X ADC SERIES DRIVER
18667 M:      Tomislav Denis <tomislav.denis@avl.com>
18668 L:      linux-iio@vger.kernel.org
18669 S:      Maintained
18670 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18671 F:      drivers/iio/adc/ti-ads131e08.c
18672
18673 TI AM437X VPFE DRIVER
18674 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18675 L:      linux-media@vger.kernel.org
18676 S:      Maintained
18677 W:      https://linuxtv.org
18678 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18679 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18680 F:      drivers/media/platform/am437x/
18681
18682 TI BANDGAP AND THERMAL DRIVER
18683 M:      Eduardo Valentin <edubezval@gmail.com>
18684 M:      Keerthy <j-keerthy@ti.com>
18685 L:      linux-pm@vger.kernel.org
18686 L:      linux-omap@vger.kernel.org
18687 S:      Maintained
18688 F:      drivers/thermal/ti-soc-thermal/
18689
18690 TI BQ27XXX POWER SUPPLY DRIVER
18691 F:      drivers/power/supply/bq27xxx_battery.c
18692 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18693 F:      include/linux/power/bq27xxx_battery.h
18694
18695 TI CDCE706 CLOCK DRIVER
18696 M:      Max Filippov <jcmvbkbc@gmail.com>
18697 S:      Maintained
18698 F:      drivers/clk/clk-cdce706.c
18699
18700 TI CLOCK DRIVER
18701 M:      Tero Kristo <kristo@kernel.org>
18702 L:      linux-omap@vger.kernel.org
18703 S:      Odd Fixes
18704 F:      drivers/clk/ti/
18705 F:      include/linux/clk/ti.h
18706
18707 TI DAVINCI MACHINE SUPPORT
18708 M:      Sekhar Nori <nsekhar@ti.com>
18709 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18711 S:      Supported
18712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18713 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18714 F:      arch/arm/boot/dts/da850*
18715 F:      arch/arm/mach-davinci/
18716 F:      drivers/i2c/busses/i2c-davinci.c
18717
18718 TI DAVINCI SERIES CLOCK DRIVER
18719 M:      David Lechner <david@lechnology.com>
18720 R:      Sekhar Nori <nsekhar@ti.com>
18721 S:      Maintained
18722 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18723 F:      drivers/clk/davinci/
18724
18725 TI DAVINCI SERIES GPIO DRIVER
18726 M:      Keerthy <j-keerthy@ti.com>
18727 L:      linux-gpio@vger.kernel.org
18728 S:      Maintained
18729 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18730 F:      drivers/gpio/gpio-davinci.c
18731
18732 TI DAVINCI SERIES MEDIA DRIVER
18733 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18734 L:      linux-media@vger.kernel.org
18735 S:      Maintained
18736 W:      https://linuxtv.org
18737 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18738 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18739 F:      drivers/media/platform/davinci/
18740 F:      include/media/davinci/
18741
18742 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18743 R:      David Lechner <david@lechnology.com>
18744 L:      linux-iio@vger.kernel.org
18745 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18746 F:      drivers/counter/ti-eqep.c
18747
18748 TI ETHERNET SWITCH DRIVER (CPSW)
18749 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18750 L:      linux-omap@vger.kernel.org
18751 L:      netdev@vger.kernel.org
18752 S:      Maintained
18753 F:      drivers/net/ethernet/ti/cpsw*
18754 F:      drivers/net/ethernet/ti/davinci*
18755
18756 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18757 M:      Alex Dubov <oakad@yahoo.com>
18758 S:      Maintained
18759 W:      http://tifmxx.berlios.de/
18760 F:      drivers/memstick/host/tifm_ms.c
18761 F:      drivers/misc/tifm*
18762 F:      drivers/mmc/host/tifm_sd.c
18763 F:      include/linux/tifm.h
18764
18765 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18766 M:      Santosh Shilimkar <ssantosh@kernel.org>
18767 L:      linux-kernel@vger.kernel.org
18768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18769 S:      Maintained
18770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18771 F:      drivers/soc/ti/*
18772
18773 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18774 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18775 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18777 S:      Maintained
18778 F:      sound/soc/codecs/isabelle*
18779 F:      sound/soc/codecs/lm49453*
18780
18781 TI PCM3060 ASoC CODEC DRIVER
18782 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18783 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18784 S:      Maintained
18785 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18786 F:      sound/soc/codecs/pcm3060*
18787
18788 TI TAS571X FAMILY ASoC CODEC DRIVER
18789 M:      Kevin Cernekee <cernekee@chromium.org>
18790 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18791 S:      Odd Fixes
18792 F:      sound/soc/codecs/tas571x*
18793
18794 TI TRF7970A NFC DRIVER
18795 M:      Mark Greer <mgreer@animalcreek.com>
18796 L:      linux-wireless@vger.kernel.org
18797 L:      linux-nfc@lists.01.org (subscribers-only)
18798 S:      Supported
18799 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18800 F:      drivers/nfc/trf7970a.c
18801
18802 TI TSC2046 ADC DRIVER
18803 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18804 R:      kernel@pengutronix.de
18805 L:      linux-iio@vger.kernel.org
18806 S:      Maintained
18807 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18808 F:      drivers/iio/adc/ti-tsc2046.c
18809
18810 TI TWL4030 SERIES SOC CODEC DRIVER
18811 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18812 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18813 S:      Maintained
18814 F:      sound/soc/codecs/twl4030*
18815
18816 TI VPE/CAL DRIVERS
18817 M:      Benoit Parrot <bparrot@ti.com>
18818 L:      linux-media@vger.kernel.org
18819 S:      Maintained
18820 W:      http://linuxtv.org/
18821 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18822 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18823 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18824 F:      drivers/media/platform/ti-vpe/
18825
18826 TI WILINK WIRELESS DRIVERS
18827 L:      linux-wireless@vger.kernel.org
18828 S:      Orphan
18829 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18830 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18832 F:      drivers/net/wireless/ti/
18833 F:      include/linux/wl12xx.h
18834
18835 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18836 M:      John Stultz <john.stultz@linaro.org>
18837 M:      Thomas Gleixner <tglx@linutronix.de>
18838 R:      Stephen Boyd <sboyd@kernel.org>
18839 L:      linux-kernel@vger.kernel.org
18840 S:      Supported
18841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18842 F:      include/linux/clocksource.h
18843 F:      include/linux/time.h
18844 F:      include/linux/timex.h
18845 F:      include/uapi/linux/time.h
18846 F:      include/uapi/linux/timex.h
18847 F:      kernel/time/alarmtimer.c
18848 F:      kernel/time/clocksource.c
18849 F:      kernel/time/ntp.c
18850 F:      kernel/time/time*.c
18851 F:      tools/testing/selftests/timers/
18852
18853 TIPC NETWORK LAYER
18854 M:      Jon Maloy <jmaloy@redhat.com>
18855 M:      Ying Xue <ying.xue@windriver.com>
18856 L:      netdev@vger.kernel.org (core kernel code)
18857 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18858 S:      Maintained
18859 W:      http://tipc.sourceforge.net/
18860 F:      include/uapi/linux/tipc*.h
18861 F:      net/tipc/
18862
18863 TLAN NETWORK DRIVER
18864 M:      Samuel Chessman <chessman@tux.org>
18865 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18866 S:      Maintained
18867 W:      http://sourceforge.net/projects/tlan/
18868 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18869 F:      drivers/net/ethernet/ti/tlan.*
18870
18871 TM6000 VIDEO4LINUX DRIVER
18872 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18873 L:      linux-media@vger.kernel.org
18874 S:      Odd fixes
18875 W:      https://linuxtv.org
18876 T:      git git://linuxtv.org/media_tree.git
18877 F:      Documentation/admin-guide/media/tm6000*
18878 F:      drivers/media/usb/tm6000/
18879
18880 TMIO/SDHI MMC DRIVER
18881 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18882 L:      linux-mmc@vger.kernel.org
18883 S:      Supported
18884 F:      drivers/mmc/host/renesas_sdhi*
18885 F:      drivers/mmc/host/tmio_mmc*
18886 F:      include/linux/mfd/tmio.h
18887
18888 TMP401 HARDWARE MONITOR DRIVER
18889 M:      Guenter Roeck <linux@roeck-us.net>
18890 L:      linux-hwmon@vger.kernel.org
18891 S:      Maintained
18892 F:      Documentation/hwmon/tmp401.rst
18893 F:      drivers/hwmon/tmp401.c
18894
18895 TMP513 HARDWARE MONITOR DRIVER
18896 M:      Eric Tremblay <etremblay@distech-controls.com>
18897 L:      linux-hwmon@vger.kernel.org
18898 S:      Maintained
18899 F:      Documentation/hwmon/tmp513.rst
18900 F:      drivers/hwmon/tmp513.c
18901
18902 TMPFS (SHMEM FILESYSTEM)
18903 M:      Hugh Dickins <hughd@google.com>
18904 L:      linux-mm@kvack.org
18905 S:      Maintained
18906 F:      include/linux/shmem_fs.h
18907 F:      mm/shmem.c
18908
18909 TOMOYO SECURITY MODULE
18910 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18911 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18912 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18913 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18914 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18915 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18916 S:      Maintained
18917 W:      https://tomoyo.osdn.jp/
18918 F:      security/tomoyo/
18919
18920 TOPSTAR LAPTOP EXTRAS DRIVER
18921 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18922 L:      platform-driver-x86@vger.kernel.org
18923 S:      Maintained
18924 F:      drivers/platform/x86/topstar-laptop.c
18925
18926 TORTURE-TEST MODULES
18927 M:      Davidlohr Bueso <dave@stgolabs.net>
18928 M:      "Paul E. McKenney" <paulmck@kernel.org>
18929 M:      Josh Triplett <josh@joshtriplett.org>
18930 L:      linux-kernel@vger.kernel.org
18931 S:      Supported
18932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18933 F:      Documentation/RCU/torture.rst
18934 F:      kernel/locking/locktorture.c
18935 F:      kernel/rcu/rcuscale.c
18936 F:      kernel/rcu/rcutorture.c
18937 F:      kernel/rcu/refscale.c
18938 F:      kernel/torture.c
18939
18940 TOSHIBA ACPI EXTRAS DRIVER
18941 M:      Azael Avalos <coproscefalo@gmail.com>
18942 L:      platform-driver-x86@vger.kernel.org
18943 S:      Maintained
18944 F:      drivers/platform/x86/toshiba_acpi.c
18945
18946 TOSHIBA BLUETOOTH DRIVER
18947 M:      Azael Avalos <coproscefalo@gmail.com>
18948 L:      platform-driver-x86@vger.kernel.org
18949 S:      Maintained
18950 F:      drivers/platform/x86/toshiba_bluetooth.c
18951
18952 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18953 M:      Azael Avalos <coproscefalo@gmail.com>
18954 L:      platform-driver-x86@vger.kernel.org
18955 S:      Maintained
18956 F:      drivers/platform/x86/toshiba_haps.c
18957
18958 TOSHIBA SMM DRIVER
18959 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18960 S:      Maintained
18961 W:      http://www.buzzard.org.uk/toshiba/
18962 F:      drivers/char/toshiba.c
18963 F:      include/linux/toshiba.h
18964 F:      include/uapi/linux/toshiba.h
18965
18966 TOSHIBA TC358743 DRIVER
18967 M:      Mats Randgaard <matrandg@cisco.com>
18968 L:      linux-media@vger.kernel.org
18969 S:      Maintained
18970 F:      drivers/media/i2c/tc358743*
18971 F:      include/media/i2c/tc358743.h
18972
18973 TOSHIBA WMI HOTKEYS DRIVER
18974 M:      Azael Avalos <coproscefalo@gmail.com>
18975 L:      platform-driver-x86@vger.kernel.org
18976 S:      Maintained
18977 F:      drivers/platform/x86/toshiba-wmi.c
18978
18979 TPM DEVICE DRIVER
18980 M:      Peter Huewe <peterhuewe@gmx.de>
18981 M:      Jarkko Sakkinen <jarkko@kernel.org>
18982 R:      Jason Gunthorpe <jgg@ziepe.ca>
18983 L:      linux-integrity@vger.kernel.org
18984 S:      Maintained
18985 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18986 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18988 F:      drivers/char/tpm/
18989
18990 TRACING
18991 M:      Steven Rostedt <rostedt@goodmis.org>
18992 M:      Ingo Molnar <mingo@redhat.com>
18993 S:      Maintained
18994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18995 F:      Documentation/trace/ftrace.rst
18996 F:      arch/*/*/*/ftrace.h
18997 F:      arch/*/kernel/ftrace.c
18998 F:      fs/tracefs/
18999 F:      include/*/ftrace.h
19000 F:      include/linux/trace*.h
19001 F:      include/trace/
19002 F:      kernel/trace/
19003 F:      tools/testing/selftests/ftrace/
19004
19005 TRACING MMIO ACCESSES (MMIOTRACE)
19006 M:      Steven Rostedt <rostedt@goodmis.org>
19007 M:      Ingo Molnar <mingo@kernel.org>
19008 R:      Karol Herbst <karolherbst@gmail.com>
19009 R:      Pekka Paalanen <ppaalanen@gmail.com>
19010 L:      linux-kernel@vger.kernel.org
19011 L:      nouveau@lists.freedesktop.org
19012 S:      Maintained
19013 F:      arch/x86/mm/kmmio.c
19014 F:      arch/x86/mm/mmio-mod.c
19015 F:      arch/x86/mm/testmmiotrace.c
19016 F:      include/linux/mmiotrace.h
19017 F:      kernel/trace/trace_mmiotrace.c
19018
19019 TRACING OS NOISE / LATENCY TRACERS
19020 M:      Steven Rostedt <rostedt@goodmis.org>
19021 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19022 S:      Maintained
19023 F:      kernel/trace/trace_osnoise.c
19024 F:      include/trace/events/osnoise.h
19025 F:      kernel/trace/trace_hwlat.c
19026 F:      kernel/trace/trace_irqsoff.c
19027 F:      kernel/trace/trace_sched_wakeup.c
19028 F:      Documentation/trace/osnoise-tracer.rst
19029 F:      Documentation/trace/timerlat-tracer.rst
19030 F:      Documentation/trace/hwlat_detector.rst
19031 F:      arch/*/kernel/trace.c
19032
19033 TRADITIONAL CHINESE DOCUMENTATION
19034 M:      Hu Haowen <src.res@email.cn>
19035 L:      linux-doc-tw-discuss@lists.sourceforge.net
19036 S:      Maintained
19037 W:      https://github.com/srcres258/linux-doc
19038 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19039 F:      Documentation/translations/zh_TW/
19040
19041 TRIVIAL PATCHES
19042 M:      Jiri Kosina <trivial@kernel.org>
19043 S:      Maintained
19044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19045 K:      ^Subject:.*(?i)trivial
19046
19047 TTY LAYER
19048 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19049 M:      Jiri Slaby <jirislaby@kernel.org>
19050 S:      Supported
19051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19052 F:      Documentation/driver-api/serial/
19053 F:      drivers/tty/
19054 F:      drivers/tty/serial/serial_core.c
19055 F:      include/linux/selection.h
19056 F:      include/linux/serial.h
19057 F:      include/linux/serial_core.h
19058 F:      include/linux/sysrq.h
19059 F:      include/linux/tty*.h
19060 F:      include/linux/vt.h
19061 F:      include/linux/vt_*.h
19062 F:      include/uapi/linux/serial.h
19063 F:      include/uapi/linux/serial_core.h
19064 F:      include/uapi/linux/tty.h
19065
19066 TUA9001 MEDIA DRIVER
19067 M:      Antti Palosaari <crope@iki.fi>
19068 L:      linux-media@vger.kernel.org
19069 S:      Maintained
19070 W:      https://linuxtv.org
19071 W:      http://palosaari.fi/linux/
19072 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19073 T:      git git://linuxtv.org/anttip/media_tree.git
19074 F:      drivers/media/tuners/tua9001*
19075
19076 TULIP NETWORK DRIVERS
19077 L:      netdev@vger.kernel.org
19078 L:      linux-parisc@vger.kernel.org
19079 S:      Orphan
19080 F:      drivers/net/ethernet/dec/tulip/
19081
19082 TUN/TAP driver
19083 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19084 S:      Maintained
19085 W:      http://vtun.sourceforge.net/tun
19086 F:      Documentation/networking/tuntap.rst
19087 F:      arch/um/os-Linux/drivers/
19088
19089 TURBOCHANNEL SUBSYSTEM
19090 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19091 M:      Ralf Baechle <ralf@linux-mips.org>
19092 L:      linux-mips@vger.kernel.org
19093 S:      Maintained
19094 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19095 F:      drivers/tc/
19096 F:      include/linux/tc.h
19097
19098 TURBOSTAT UTILITY
19099 M:      "Len Brown" <lenb@kernel.org>
19100 L:      linux-pm@vger.kernel.org
19101 S:      Supported
19102 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19103 B:      https://bugzilla.kernel.org
19104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19105 F:      tools/power/x86/turbostat/
19106
19107 TW5864 VIDEO4LINUX DRIVER
19108 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19109 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19110 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19111 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19112 L:      linux-media@vger.kernel.org
19113 S:      Supported
19114 F:      drivers/media/pci/tw5864/
19115
19116 TW68 VIDEO4LINUX DRIVER
19117 M:      Hans Verkuil <hverkuil@xs4all.nl>
19118 L:      linux-media@vger.kernel.org
19119 S:      Odd Fixes
19120 W:      https://linuxtv.org
19121 T:      git git://linuxtv.org/media_tree.git
19122 F:      drivers/media/pci/tw68/
19123
19124 TW686X VIDEO4LINUX DRIVER
19125 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19126 L:      linux-media@vger.kernel.org
19127 S:      Maintained
19128 W:      http://linuxtv.org
19129 T:      git git://linuxtv.org/media_tree.git
19130 F:      drivers/media/pci/tw686x/
19131
19132 UACCE ACCELERATOR FRAMEWORK
19133 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19134 M:      Zhou Wang <wangzhou1@hisilicon.com>
19135 L:      linux-accelerators@lists.ozlabs.org
19136 L:      linux-kernel@vger.kernel.org
19137 S:      Maintained
19138 F:      Documentation/ABI/testing/sysfs-driver-uacce
19139 F:      Documentation/misc-devices/uacce.rst
19140 F:      drivers/misc/uacce/
19141 F:      include/linux/uacce.h
19142 F:      include/uapi/misc/uacce/
19143
19144 UBI FILE SYSTEM (UBIFS)
19145 M:      Richard Weinberger <richard@nod.at>
19146 L:      linux-mtd@lists.infradead.org
19147 S:      Supported
19148 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19151 F:      Documentation/filesystems/ubifs-authentication.rst
19152 F:      Documentation/filesystems/ubifs.rst
19153 F:      fs/ubifs/
19154
19155 UCLINUX (M68KNOMMU AND COLDFIRE)
19156 M:      Greg Ungerer <gerg@linux-m68k.org>
19157 L:      linux-m68k@lists.linux-m68k.org
19158 L:      uclinux-dev@uclinux.org  (subscribers-only)
19159 S:      Maintained
19160 W:      http://www.linux-m68k.org/
19161 W:      http://www.uclinux.org/
19162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19163 F:      arch/m68k/*/*_no.*
19164 F:      arch/m68k/68*/
19165 F:      arch/m68k/coldfire/
19166 F:      arch/m68k/include/asm/*_no.*
19167
19168 UDF FILESYSTEM
19169 M:      Jan Kara <jack@suse.com>
19170 S:      Maintained
19171 F:      Documentation/filesystems/udf.rst
19172 F:      fs/udf/
19173
19174 UDRAW TABLET
19175 M:      Bastien Nocera <hadess@hadess.net>
19176 L:      linux-input@vger.kernel.org
19177 S:      Maintained
19178 F:      drivers/hid/hid-udraw-ps3.c
19179
19180 UFS FILESYSTEM
19181 M:      Evgeniy Dushistov <dushistov@mail.ru>
19182 S:      Maintained
19183 F:      Documentation/admin-guide/ufs.rst
19184 F:      fs/ufs/
19185
19186 UHID USERSPACE HID IO DRIVER
19187 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19188 L:      linux-input@vger.kernel.org
19189 S:      Maintained
19190 F:      drivers/hid/uhid.c
19191 F:      include/uapi/linux/uhid.h
19192
19193 ULPI BUS
19194 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19195 L:      linux-usb@vger.kernel.org
19196 S:      Maintained
19197 F:      drivers/usb/common/ulpi.c
19198 F:      include/linux/ulpi/
19199
19200 UNICODE SUBSYSTEM
19201 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19202 L:      linux-fsdevel@vger.kernel.org
19203 S:      Supported
19204 F:      fs/unicode/
19205
19206 UNIFDEF
19207 M:      Tony Finch <dot@dotat.at>
19208 S:      Maintained
19209 W:      http://dotat.at/prog/unifdef
19210 F:      scripts/unifdef.c
19211
19212 UNIFORM CDROM DRIVER
19213 M:      Phillip Potter <phil@philpotter.co.uk>
19214 S:      Maintained
19215 F:      Documentation/cdrom/
19216 F:      drivers/cdrom/cdrom.c
19217 F:      include/linux/cdrom.h
19218 F:      include/uapi/linux/cdrom.h
19219
19220 UNISYS S-PAR DRIVERS
19221 M:      David Kershner <david.kershner@unisys.com>
19222 L:      sparmaintainer@unisys.com (Unisys internal)
19223 S:      Supported
19224 F:      drivers/staging/unisys/
19225 F:      drivers/visorbus/
19226 F:      include/linux/visorbus.h
19227
19228 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19229 R:      Alim Akhtar <alim.akhtar@samsung.com>
19230 R:      Avri Altman <avri.altman@wdc.com>
19231 L:      linux-scsi@vger.kernel.org
19232 S:      Supported
19233 F:      Documentation/scsi/ufs.rst
19234 F:      drivers/scsi/ufs/
19235
19236 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19237 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19238 L:      linux-scsi@vger.kernel.org
19239 S:      Supported
19240 F:      drivers/scsi/ufs/*dwc*
19241
19242 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19243 M:      Stanley Chu <stanley.chu@mediatek.com>
19244 L:      linux-scsi@vger.kernel.org
19245 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19246 S:      Maintained
19247 F:      drivers/scsi/ufs/ufs-mediatek*
19248
19249 UNSORTED BLOCK IMAGES (UBI)
19250 M:      Richard Weinberger <richard@nod.at>
19251 L:      linux-mtd@lists.infradead.org
19252 S:      Supported
19253 W:      http://www.linux-mtd.infradead.org/
19254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19256 F:      drivers/mtd/ubi/
19257 F:      include/linux/mtd/ubi.h
19258 F:      include/uapi/mtd/ubi-user.h
19259
19260 USB "USBNET" DRIVER FRAMEWORK
19261 M:      Oliver Neukum <oneukum@suse.com>
19262 L:      netdev@vger.kernel.org
19263 S:      Maintained
19264 W:      http://www.linux-usb.org/usbnet
19265 F:      drivers/net/usb/usbnet.c
19266 F:      include/linux/usb/usbnet.h
19267
19268 USB ACM DRIVER
19269 M:      Oliver Neukum <oneukum@suse.com>
19270 L:      linux-usb@vger.kernel.org
19271 S:      Maintained
19272 F:      Documentation/usb/acm.rst
19273 F:      drivers/usb/class/cdc-acm.*
19274
19275 USB APPLE MFI FASTCHARGE DRIVER
19276 M:      Bastien Nocera <hadess@hadess.net>
19277 L:      linux-usb@vger.kernel.org
19278 S:      Maintained
19279 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19280
19281 USB AR5523 WIRELESS DRIVER
19282 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19283 L:      linux-wireless@vger.kernel.org
19284 S:      Maintained
19285 F:      drivers/net/wireless/ath/ar5523/
19286
19287 USB ATTACHED SCSI
19288 M:      Oliver Neukum <oneukum@suse.com>
19289 L:      linux-usb@vger.kernel.org
19290 L:      linux-scsi@vger.kernel.org
19291 S:      Maintained
19292 F:      drivers/usb/storage/uas.c
19293
19294 USB CDC ETHERNET DRIVER
19295 M:      Oliver Neukum <oliver@neukum.org>
19296 L:      linux-usb@vger.kernel.org
19297 S:      Maintained
19298 F:      drivers/net/usb/cdc_*.c
19299 F:      include/uapi/linux/usb/cdc.h
19300
19301 USB CHAOSKEY DRIVER
19302 M:      Keith Packard <keithp@keithp.com>
19303 L:      linux-usb@vger.kernel.org
19304 S:      Maintained
19305 F:      drivers/usb/misc/chaoskey.c
19306
19307 USB CYPRESS C67X00 DRIVER
19308 L:      linux-usb@vger.kernel.org
19309 S:      Orphan
19310 F:      drivers/usb/c67x00/
19311
19312 USB DAVICOM DM9601 DRIVER
19313 M:      Peter Korsgaard <peter@korsgaard.com>
19314 L:      netdev@vger.kernel.org
19315 S:      Maintained
19316 W:      http://www.linux-usb.org/usbnet
19317 F:      drivers/net/usb/dm9601.c
19318
19319 USB EHCI DRIVER
19320 M:      Alan Stern <stern@rowland.harvard.edu>
19321 L:      linux-usb@vger.kernel.org
19322 S:      Maintained
19323 F:      Documentation/usb/ehci.rst
19324 F:      drivers/usb/host/ehci*
19325
19326 USB GADGET/PERIPHERAL SUBSYSTEM
19327 M:      Felipe Balbi <balbi@kernel.org>
19328 L:      linux-usb@vger.kernel.org
19329 S:      Maintained
19330 W:      http://www.linux-usb.org/gadget
19331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19332 F:      drivers/usb/gadget/
19333 F:      include/linux/usb/gadget*
19334
19335 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19336 M:      Jiri Kosina <jikos@kernel.org>
19337 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19338 L:      linux-usb@vger.kernel.org
19339 S:      Maintained
19340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19341 F:      Documentation/hid/hiddev.rst
19342 F:      drivers/hid/usbhid/
19343
19344 USB INTEL XHCI ROLE MUX DRIVER
19345 M:      Hans de Goede <hdegoede@redhat.com>
19346 L:      linux-usb@vger.kernel.org
19347 S:      Maintained
19348 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19349
19350 USB IP DRIVER FOR HISILICON KIRIN 960
19351 M:      Yu Chen <chenyu56@huawei.com>
19352 M:      Binghui Wang <wangbinghui@hisilicon.com>
19353 L:      linux-usb@vger.kernel.org
19354 S:      Maintained
19355 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19356 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19357
19358 USB IP DRIVER FOR HISILICON KIRIN 970
19359 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19360 L:      linux-usb@vger.kernel.org
19361 S:      Maintained
19362 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19363 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19364
19365 USB ISP116X DRIVER
19366 M:      Olav Kongas <ok@artecdesign.ee>
19367 L:      linux-usb@vger.kernel.org
19368 S:      Maintained
19369 F:      drivers/usb/host/isp116x*
19370 F:      include/linux/usb/isp116x.h
19371
19372 USB ISP1760 DRIVER
19373 M:      Rui Miguel Silva <rui.silva@linaro.org>
19374 L:      linux-usb@vger.kernel.org
19375 S:      Maintained
19376 F:      drivers/usb/isp1760/*
19377 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19378
19379 USB LAN78XX ETHERNET DRIVER
19380 M:      Woojung Huh <woojung.huh@microchip.com>
19381 M:      UNGLinuxDriver@microchip.com
19382 L:      netdev@vger.kernel.org
19383 S:      Maintained
19384 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19385 F:      drivers/net/usb/lan78xx.*
19386 F:      include/dt-bindings/net/microchip-lan78xx.h
19387
19388 USB MASS STORAGE DRIVER
19389 M:      Alan Stern <stern@rowland.harvard.edu>
19390 L:      linux-usb@vger.kernel.org
19391 L:      usb-storage@lists.one-eyed-alien.net
19392 S:      Maintained
19393 F:      drivers/usb/storage/
19394
19395 USB MIDI DRIVER
19396 M:      Clemens Ladisch <clemens@ladisch.de>
19397 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19398 S:      Maintained
19399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19400 F:      sound/usb/midi.*
19401
19402 USB NETWORKING DRIVERS
19403 L:      linux-usb@vger.kernel.org
19404 S:      Odd Fixes
19405 F:      drivers/net/usb/
19406
19407 USB OHCI DRIVER
19408 M:      Alan Stern <stern@rowland.harvard.edu>
19409 L:      linux-usb@vger.kernel.org
19410 S:      Maintained
19411 F:      Documentation/usb/ohci.rst
19412 F:      drivers/usb/host/ohci*
19413
19414 USB OTG FSM (Finite State Machine)
19415 M:      Peter Chen <peter.chen@kernel.org>
19416 L:      linux-usb@vger.kernel.org
19417 S:      Maintained
19418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19419 F:      drivers/usb/common/usb-otg-fsm.c
19420
19421 USB OVER IP DRIVER
19422 M:      Valentina Manea <valentina.manea.m@gmail.com>
19423 M:      Shuah Khan <shuah@kernel.org>
19424 M:      Shuah Khan <skhan@linuxfoundation.org>
19425 L:      linux-usb@vger.kernel.org
19426 S:      Maintained
19427 F:      Documentation/usb/usbip_protocol.rst
19428 F:      drivers/usb/usbip/
19429 F:      tools/testing/selftests/drivers/usb/usbip/
19430 F:      tools/usb/usbip/
19431
19432 USB PEGASUS DRIVER
19433 M:      Petko Manolov <petkan@nucleusys.com>
19434 L:      linux-usb@vger.kernel.org
19435 L:      netdev@vger.kernel.org
19436 S:      Maintained
19437 W:      https://github.com/petkan/pegasus
19438 T:      git git://github.com/petkan/pegasus.git
19439 F:      drivers/net/usb/pegasus.*
19440
19441 USB PHY LAYER
19442 M:      Felipe Balbi <balbi@kernel.org>
19443 L:      linux-usb@vger.kernel.org
19444 S:      Maintained
19445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19446 F:      drivers/usb/phy/
19447
19448 USB PRINTER DRIVER (usblp)
19449 M:      Pete Zaitcev <zaitcev@redhat.com>
19450 L:      linux-usb@vger.kernel.org
19451 S:      Supported
19452 F:      drivers/usb/class/usblp.c
19453
19454 USB RAW GADGET DRIVER
19455 R:      Andrey Konovalov <andreyknvl@gmail.com>
19456 L:      linux-usb@vger.kernel.org
19457 S:      Maintained
19458 F:      Documentation/usb/raw-gadget.rst
19459 F:      drivers/usb/gadget/legacy/raw_gadget.c
19460 F:      include/uapi/linux/usb/raw_gadget.h
19461
19462 USB QMI WWAN NETWORK DRIVER
19463 M:      Bjørn Mork <bjorn@mork.no>
19464 L:      netdev@vger.kernel.org
19465 S:      Maintained
19466 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19467 F:      drivers/net/usb/qmi_wwan.c
19468
19469 USB RTL8150 DRIVER
19470 M:      Petko Manolov <petkan@nucleusys.com>
19471 L:      linux-usb@vger.kernel.org
19472 L:      netdev@vger.kernel.org
19473 S:      Maintained
19474 W:      https://github.com/petkan/rtl8150
19475 T:      git git://github.com/petkan/rtl8150.git
19476 F:      drivers/net/usb/rtl8150.c
19477
19478 USB SERIAL SUBSYSTEM
19479 M:      Johan Hovold <johan@kernel.org>
19480 L:      linux-usb@vger.kernel.org
19481 S:      Maintained
19482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19483 F:      Documentation/usb/usb-serial.rst
19484 F:      drivers/usb/serial/
19485 F:      include/linux/usb/serial.h
19486
19487 USB SMSC75XX ETHERNET DRIVER
19488 M:      Steve Glendinning <steve.glendinning@shawell.net>
19489 L:      netdev@vger.kernel.org
19490 S:      Maintained
19491 F:      drivers/net/usb/smsc75xx.*
19492
19493 USB SMSC95XX ETHERNET DRIVER
19494 M:      Steve Glendinning <steve.glendinning@shawell.net>
19495 M:      UNGLinuxDriver@microchip.com
19496 L:      netdev@vger.kernel.org
19497 S:      Maintained
19498 F:      drivers/net/usb/smsc95xx.*
19499
19500 USB SUBSYSTEM
19501 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19502 L:      linux-usb@vger.kernel.org
19503 S:      Supported
19504 W:      http://www.linux-usb.org
19505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19506 F:      Documentation/devicetree/bindings/usb/
19507 F:      Documentation/usb/
19508 F:      drivers/usb/
19509 F:      include/linux/usb.h
19510 F:      include/linux/usb/
19511
19512 USB TYPEC BUS FOR ALTERNATE MODES
19513 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19514 L:      linux-usb@vger.kernel.org
19515 S:      Maintained
19516 F:      Documentation/ABI/testing/sysfs-bus-typec
19517 F:      Documentation/driver-api/usb/typec_bus.rst
19518 F:      drivers/usb/typec/altmodes/
19519 F:      include/linux/usb/typec_altmode.h
19520
19521 USB TYPEC CLASS
19522 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19523 L:      linux-usb@vger.kernel.org
19524 S:      Maintained
19525 F:      Documentation/ABI/testing/sysfs-class-typec
19526 F:      Documentation/driver-api/usb/typec.rst
19527 F:      drivers/usb/typec/
19528 F:      include/linux/usb/typec.h
19529
19530 USB TYPEC INTEL PMC MUX DRIVER
19531 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19532 L:      linux-usb@vger.kernel.org
19533 S:      Maintained
19534 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19535 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19536
19537 USB TYPEC PI3USB30532 MUX DRIVER
19538 M:      Hans de Goede <hdegoede@redhat.com>
19539 L:      linux-usb@vger.kernel.org
19540 S:      Maintained
19541 F:      drivers/usb/typec/mux/pi3usb30532.c
19542
19543 USB TYPEC PORT CONTROLLER DRIVERS
19544 M:      Guenter Roeck <linux@roeck-us.net>
19545 L:      linux-usb@vger.kernel.org
19546 S:      Maintained
19547 F:      drivers/usb/typec/tcpm/
19548
19549 USB UHCI DRIVER
19550 M:      Alan Stern <stern@rowland.harvard.edu>
19551 L:      linux-usb@vger.kernel.org
19552 S:      Maintained
19553 F:      drivers/usb/host/uhci*
19554
19555 USB VIDEO CLASS
19556 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19557 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19558 L:      linux-media@vger.kernel.org
19559 S:      Maintained
19560 W:      http://www.ideasonboard.org/uvc/
19561 T:      git git://linuxtv.org/media_tree.git
19562 F:      drivers/media/usb/uvc/
19563 F:      include/uapi/linux/uvcvideo.h
19564
19565 USB WEBCAM GADGET
19566 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19567 L:      linux-usb@vger.kernel.org
19568 S:      Maintained
19569 F:      drivers/usb/gadget/function/*uvc*
19570 F:      drivers/usb/gadget/legacy/webcam.c
19571 F:      include/uapi/linux/usb/g_uvc.h
19572
19573 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19574 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19575 L:      linux-wireless@vger.kernel.org
19576 S:      Maintained
19577 F:      drivers/net/wireless/rndis_wlan.c
19578
19579 USB XHCI DRIVER
19580 M:      Mathias Nyman <mathias.nyman@intel.com>
19581 L:      linux-usb@vger.kernel.org
19582 S:      Supported
19583 F:      drivers/usb/host/pci-quirks*
19584 F:      drivers/usb/host/xhci*
19585
19586 USB ZD1201 DRIVER
19587 L:      linux-wireless@vger.kernel.org
19588 S:      Orphan
19589 W:      http://linux-lc100020.sourceforge.net
19590 F:      drivers/net/wireless/zydas/zd1201.*
19591
19592 USB ZR364XX DRIVER
19593 M:      Antoine Jacquet <royale@zerezo.com>
19594 L:      linux-usb@vger.kernel.org
19595 L:      linux-media@vger.kernel.org
19596 S:      Maintained
19597 W:      http://royale.zerezo.com/zr364xx/
19598 T:      git git://linuxtv.org/media_tree.git
19599 F:      Documentation/admin-guide/media/zr364xx*
19600 F:      drivers/media/usb/zr364xx/
19601
19602 USER-MODE LINUX (UML)
19603 M:      Jeff Dike <jdike@addtoit.com>
19604 M:      Richard Weinberger <richard@nod.at>
19605 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19606 L:      linux-um@lists.infradead.org
19607 S:      Maintained
19608 W:      http://user-mode-linux.sourceforge.net
19609 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19611 F:      Documentation/virt/uml/
19612 F:      arch/um/
19613 F:      arch/x86/um/
19614 F:      fs/hostfs/
19615
19616 USERSPACE COPYIN/COPYOUT (UIOVEC)
19617 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19618 S:      Maintained
19619 F:      include/linux/uio.h
19620 F:      lib/iov_iter.c
19621
19622 USERSPACE DMA BUFFER DRIVER
19623 M:      Gerd Hoffmann <kraxel@redhat.com>
19624 L:      dri-devel@lists.freedesktop.org
19625 S:      Maintained
19626 T:      git git://anongit.freedesktop.org/drm/drm-misc
19627 F:      drivers/dma-buf/udmabuf.c
19628 F:      include/uapi/linux/udmabuf.h
19629
19630 USERSPACE I/O (UIO)
19631 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19632 S:      Maintained
19633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19634 F:      Documentation/driver-api/uio-howto.rst
19635 F:      drivers/uio/
19636 F:      include/linux/uio_driver.h
19637
19638 UTIL-LINUX PACKAGE
19639 M:      Karel Zak <kzak@redhat.com>
19640 L:      util-linux@vger.kernel.org
19641 S:      Maintained
19642 W:      http://en.wikipedia.org/wiki/Util-linux
19643 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19644
19645 UUID HELPERS
19646 M:      Christoph Hellwig <hch@lst.de>
19647 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19648 L:      linux-kernel@vger.kernel.org
19649 S:      Maintained
19650 T:      git git://git.infradead.org/users/hch/uuid.git
19651 F:      include/linux/uuid.h
19652 F:      include/uapi/linux/uuid.h
19653 F:      lib/test_uuid.c
19654 F:      lib/uuid.c
19655
19656 UV SYSFS DRIVER
19657 M:      Justin Ernst <justin.ernst@hpe.com>
19658 L:      platform-driver-x86@vger.kernel.org
19659 S:      Maintained
19660 F:      drivers/platform/x86/uv_sysfs.c
19661
19662 UVESAFB DRIVER
19663 M:      Michal Januszewski <spock@gentoo.org>
19664 L:      linux-fbdev@vger.kernel.org
19665 S:      Maintained
19666 W:      https://github.com/mjanusz/v86d
19667 F:      Documentation/fb/uvesafb.rst
19668 F:      drivers/video/fbdev/uvesafb.*
19669
19670 Ux500 CLOCK DRIVERS
19671 M:      Ulf Hansson <ulf.hansson@linaro.org>
19672 L:      linux-clk@vger.kernel.org
19673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19674 S:      Maintained
19675 F:      drivers/clk/ux500/
19676
19677 VF610 NAND DRIVER
19678 M:      Stefan Agner <stefan@agner.ch>
19679 L:      linux-mtd@lists.infradead.org
19680 S:      Supported
19681 F:      drivers/mtd/nand/raw/vf610_nfc.c
19682
19683 VFAT/FAT/MSDOS FILESYSTEM
19684 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19685 S:      Maintained
19686 F:      Documentation/filesystems/vfat.rst
19687 F:      fs/fat/
19688
19689 VFIO DRIVER
19690 M:      Alex Williamson <alex.williamson@redhat.com>
19691 R:      Cornelia Huck <cohuck@redhat.com>
19692 L:      kvm@vger.kernel.org
19693 S:      Maintained
19694 T:      git git://github.com/awilliam/linux-vfio.git
19695 F:      Documentation/driver-api/vfio.rst
19696 F:      drivers/vfio/
19697 F:      include/linux/vfio.h
19698 F:      include/linux/vfio_pci_core.h
19699 F:      include/uapi/linux/vfio.h
19700
19701 VFIO FSL-MC DRIVER
19702 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19703 L:      kvm@vger.kernel.org
19704 S:      Maintained
19705 F:      drivers/vfio/fsl-mc/
19706
19707 VFIO MEDIATED DEVICE DRIVERS
19708 M:      Kirti Wankhede <kwankhede@nvidia.com>
19709 L:      kvm@vger.kernel.org
19710 S:      Maintained
19711 F:      Documentation/driver-api/vfio-mediated-device.rst
19712 F:      drivers/vfio/mdev/
19713 F:      include/linux/mdev.h
19714 F:      samples/vfio-mdev/
19715
19716 VFIO PLATFORM DRIVER
19717 M:      Eric Auger <eric.auger@redhat.com>
19718 L:      kvm@vger.kernel.org
19719 S:      Maintained
19720 F:      drivers/vfio/platform/
19721
19722 VGA_SWITCHEROO
19723 R:      Lukas Wunner <lukas@wunner.de>
19724 S:      Maintained
19725 T:      git git://anongit.freedesktop.org/drm/drm-misc
19726 F:      Documentation/gpu/vga-switcheroo.rst
19727 F:      drivers/gpu/vga/vga_switcheroo.c
19728 F:      include/linux/vga_switcheroo.h
19729
19730 VIA RHINE NETWORK DRIVER
19731 S:      Maintained
19732 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19733 F:      drivers/net/ethernet/via/via-rhine.c
19734
19735 VIA SD/MMC CARD CONTROLLER DRIVER
19736 M:      Bruce Chang <brucechang@via.com.tw>
19737 M:      Harald Welte <HaraldWelte@viatech.com>
19738 S:      Maintained
19739 F:      drivers/mmc/host/via-sdmmc.c
19740
19741 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19742 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19743 L:      linux-fbdev@vger.kernel.org
19744 S:      Maintained
19745 F:      drivers/video/fbdev/via/
19746 F:      include/linux/via-core.h
19747 F:      include/linux/via-gpio.h
19748 F:      include/linux/via_i2c.h
19749
19750 VIA VELOCITY NETWORK DRIVER
19751 M:      Francois Romieu <romieu@fr.zoreil.com>
19752 L:      netdev@vger.kernel.org
19753 S:      Maintained
19754 F:      drivers/net/ethernet/via/via-velocity.*
19755
19756 VICODEC VIRTUAL CODEC DRIVER
19757 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19758 L:      linux-media@vger.kernel.org
19759 S:      Maintained
19760 W:      https://linuxtv.org
19761 T:      git git://linuxtv.org/media_tree.git
19762 F:      drivers/media/test-drivers/vicodec/*
19763
19764 VIDEO I2C POLLING DRIVER
19765 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19766 L:      linux-media@vger.kernel.org
19767 S:      Maintained
19768 F:      drivers/media/i2c/video-i2c.c
19769
19770 VIDEO MULTIPLEXER DRIVER
19771 M:      Philipp Zabel <p.zabel@pengutronix.de>
19772 L:      linux-media@vger.kernel.org
19773 S:      Maintained
19774 F:      drivers/media/platform/video-mux.c
19775
19776 VIDEOBUF2 FRAMEWORK
19777 M:      Tomasz Figa <tfiga@chromium.org>
19778 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19779 L:      linux-media@vger.kernel.org
19780 S:      Maintained
19781 F:      drivers/media/common/videobuf2/*
19782 F:      include/media/videobuf2-*
19783
19784 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19785 M:      Helen Koike <helen.koike@collabora.com>
19786 R:      Shuah Khan <skhan@linuxfoundation.org>
19787 L:      linux-media@vger.kernel.org
19788 S:      Maintained
19789 W:      https://linuxtv.org
19790 T:      git git://linuxtv.org/media_tree.git
19791 F:      drivers/media/test-drivers/vimc/*
19792
19793 VIRT LIB
19794 M:      Alex Williamson <alex.williamson@redhat.com>
19795 M:      Paolo Bonzini <pbonzini@redhat.com>
19796 L:      kvm@vger.kernel.org
19797 S:      Supported
19798 F:      virt/lib/
19799
19800 VIRTIO AND VHOST VSOCK DRIVER
19801 M:      Stefan Hajnoczi <stefanha@redhat.com>
19802 M:      Stefano Garzarella <sgarzare@redhat.com>
19803 L:      kvm@vger.kernel.org
19804 L:      virtualization@lists.linux-foundation.org
19805 L:      netdev@vger.kernel.org
19806 S:      Maintained
19807 F:      drivers/vhost/vsock.c
19808 F:      include/linux/virtio_vsock.h
19809 F:      include/uapi/linux/virtio_vsock.h
19810 F:      net/vmw_vsock/virtio_transport.c
19811 F:      net/vmw_vsock/virtio_transport_common.c
19812
19813 VIRTIO BLOCK AND SCSI DRIVERS
19814 M:      "Michael S. Tsirkin" <mst@redhat.com>
19815 M:      Jason Wang <jasowang@redhat.com>
19816 R:      Paolo Bonzini <pbonzini@redhat.com>
19817 R:      Stefan Hajnoczi <stefanha@redhat.com>
19818 L:      virtualization@lists.linux-foundation.org
19819 S:      Maintained
19820 F:      drivers/block/virtio_blk.c
19821 F:      drivers/scsi/virtio_scsi.c
19822 F:      drivers/vhost/scsi.c
19823 F:      include/uapi/linux/virtio_blk.h
19824 F:      include/uapi/linux/virtio_scsi.h
19825
19826 VIRTIO CONSOLE DRIVER
19827 M:      Amit Shah <amit@kernel.org>
19828 L:      virtualization@lists.linux-foundation.org
19829 S:      Maintained
19830 F:      drivers/char/virtio_console.c
19831 F:      include/linux/virtio_console.h
19832 F:      include/uapi/linux/virtio_console.h
19833
19834 VIRTIO CORE AND NET DRIVERS
19835 M:      "Michael S. Tsirkin" <mst@redhat.com>
19836 M:      Jason Wang <jasowang@redhat.com>
19837 L:      virtualization@lists.linux-foundation.org
19838 S:      Maintained
19839 F:      Documentation/devicetree/bindings/virtio/
19840 F:      drivers/block/virtio_blk.c
19841 F:      drivers/crypto/virtio/
19842 F:      drivers/net/virtio_net.c
19843 F:      drivers/vdpa/
19844 F:      drivers/virtio/
19845 F:      include/linux/vdpa.h
19846 F:      include/linux/virtio*.h
19847 F:      include/uapi/linux/virtio_*.h
19848 F:      tools/virtio/
19849
19850 VIRTIO BALLOON
19851 M:      "Michael S. Tsirkin" <mst@redhat.com>
19852 M:      David Hildenbrand <david@redhat.com>
19853 L:      virtualization@lists.linux-foundation.org
19854 S:      Maintained
19855 F:      drivers/virtio/virtio_balloon.c
19856 F:      include/uapi/linux/virtio_balloon.h
19857 F:      include/linux/balloon_compaction.h
19858 F:      mm/balloon_compaction.c
19859
19860 VIRTIO CRYPTO DRIVER
19861 M:      Gonglei <arei.gonglei@huawei.com>
19862 L:      virtualization@lists.linux-foundation.org
19863 L:      linux-crypto@vger.kernel.org
19864 S:      Maintained
19865 F:      drivers/crypto/virtio/
19866 F:      include/uapi/linux/virtio_crypto.h
19867
19868 VIRTIO DRIVERS FOR S390
19869 M:      Cornelia Huck <cohuck@redhat.com>
19870 M:      Halil Pasic <pasic@linux.ibm.com>
19871 L:      linux-s390@vger.kernel.org
19872 L:      virtualization@lists.linux-foundation.org
19873 L:      kvm@vger.kernel.org
19874 S:      Supported
19875 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19876 F:      drivers/s390/virtio/
19877
19878 VIRTIO FILE SYSTEM
19879 M:      Vivek Goyal <vgoyal@redhat.com>
19880 M:      Stefan Hajnoczi <stefanha@redhat.com>
19881 M:      Miklos Szeredi <miklos@szeredi.hu>
19882 L:      virtualization@lists.linux-foundation.org
19883 L:      linux-fsdevel@vger.kernel.org
19884 S:      Supported
19885 W:      https://virtio-fs.gitlab.io/
19886 F:      Documentation/filesystems/virtiofs.rst
19887 F:      fs/fuse/virtio_fs.c
19888 F:      include/uapi/linux/virtio_fs.h
19889
19890 VIRTIO GPIO DRIVER
19891 M:      Enrico Weigelt, metux IT consult <info@metux.net>
19892 M:      Viresh Kumar <vireshk@kernel.org>
19893 L:      linux-gpio@vger.kernel.org
19894 L:      virtualization@lists.linux-foundation.org
19895 S:      Maintained
19896 F:      drivers/gpio/gpio-virtio.c
19897 F:      include/uapi/linux/virtio_gpio.h
19898
19899 VIRTIO GPU DRIVER
19900 M:      David Airlie <airlied@linux.ie>
19901 M:      Gerd Hoffmann <kraxel@redhat.com>
19902 L:      dri-devel@lists.freedesktop.org
19903 L:      virtualization@lists.linux-foundation.org
19904 S:      Maintained
19905 T:      git git://anongit.freedesktop.org/drm/drm-misc
19906 F:      drivers/gpu/drm/virtio/
19907 F:      include/uapi/linux/virtio_gpu.h
19908
19909 VIRTIO HOST (VHOST)
19910 M:      "Michael S. Tsirkin" <mst@redhat.com>
19911 M:      Jason Wang <jasowang@redhat.com>
19912 L:      kvm@vger.kernel.org
19913 L:      virtualization@lists.linux-foundation.org
19914 L:      netdev@vger.kernel.org
19915 S:      Maintained
19916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19917 F:      drivers/vhost/
19918 F:      include/linux/vhost_iotlb.h
19919 F:      include/uapi/linux/vhost.h
19920
19921 VIRTIO INPUT DRIVER
19922 M:      Gerd Hoffmann <kraxel@redhat.com>
19923 S:      Maintained
19924 F:      drivers/virtio/virtio_input.c
19925 F:      include/uapi/linux/virtio_input.h
19926
19927 VIRTIO IOMMU DRIVER
19928 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19929 L:      virtualization@lists.linux-foundation.org
19930 S:      Maintained
19931 F:      drivers/iommu/virtio-iommu.c
19932 F:      include/uapi/linux/virtio_iommu.h
19933
19934 VIRTIO MEM DRIVER
19935 M:      David Hildenbrand <david@redhat.com>
19936 L:      virtualization@lists.linux-foundation.org
19937 S:      Maintained
19938 W:      https://virtio-mem.gitlab.io/
19939 F:      drivers/virtio/virtio_mem.c
19940 F:      include/uapi/linux/virtio_mem.h
19941
19942 VIRTIO SOUND DRIVER
19943 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
19944 M:      "Michael S. Tsirkin" <mst@redhat.com>
19945 L:      virtualization@lists.linux-foundation.org
19946 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19947 S:      Maintained
19948 F:      include/uapi/linux/virtio_snd.h
19949 F:      sound/virtio/*
19950
19951 VIRTIO I2C DRIVER
19952 M:      Jie Deng <jie.deng@intel.com>
19953 M:      Viresh Kumar <viresh.kumar@linaro.org>
19954 L:      linux-i2c@vger.kernel.org
19955 L:      virtualization@lists.linux-foundation.org
19956 S:      Maintained
19957 F:      drivers/i2c/busses/i2c-virtio.c
19958 F:      include/uapi/linux/virtio_i2c.h
19959
19960 VIRTUAL BOX GUEST DEVICE DRIVER
19961 M:      Hans de Goede <hdegoede@redhat.com>
19962 M:      Arnd Bergmann <arnd@arndb.de>
19963 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19964 S:      Maintained
19965 F:      drivers/virt/vboxguest/
19966 F:      include/linux/vbox_utils.h
19967 F:      include/uapi/linux/vbox*.h
19968
19969 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19970 M:      Hans de Goede <hdegoede@redhat.com>
19971 L:      linux-fsdevel@vger.kernel.org
19972 S:      Maintained
19973 F:      fs/vboxsf/*
19974
19975 VIRTUAL SERIO DEVICE DRIVER
19976 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19977 S:      Maintained
19978 F:      drivers/input/serio/userio.c
19979 F:      include/uapi/linux/userio.h
19980
19981 VIVID VIRTUAL VIDEO DRIVER
19982 M:      Hans Verkuil <hverkuil@xs4all.nl>
19983 L:      linux-media@vger.kernel.org
19984 S:      Maintained
19985 W:      https://linuxtv.org
19986 T:      git git://linuxtv.org/media_tree.git
19987 F:      drivers/media/test-drivers/vivid/*
19988
19989 VIDTV VIRTUAL DIGITAL TV DRIVER
19990 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19991 L:      linux-media@vger.kernel.org
19992 S:      Maintained
19993 W:      https://linuxtv.org
19994 T:      git git://linuxtv.org/media_tree.git
19995 F:      drivers/media/test-drivers/vidtv/*
19996
19997 VLYNQ BUS
19998 M:      Florian Fainelli <f.fainelli@gmail.com>
19999 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20000 S:      Maintained
20001 F:      drivers/vlynq/vlynq.c
20002 F:      include/linux/vlynq.h
20003
20004 VME SUBSYSTEM
20005 M:      Martyn Welch <martyn@welchs.me.uk>
20006 M:      Manohar Vanga <manohar.vanga@gmail.com>
20007 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20008 L:      linux-kernel@vger.kernel.org
20009 S:      Maintained
20010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20011 F:      Documentation/driver-api/vme.rst
20012 F:      drivers/staging/vme/
20013 F:      drivers/vme/
20014 F:      include/linux/vme*
20015
20016 VM SOCKETS (AF_VSOCK)
20017 M:      Stefano Garzarella <sgarzare@redhat.com>
20018 L:      virtualization@lists.linux-foundation.org
20019 L:      netdev@vger.kernel.org
20020 S:      Maintained
20021 F:      drivers/net/vsockmon.c
20022 F:      include/net/af_vsock.h
20023 F:      include/uapi/linux/vm_sockets.h
20024 F:      include/uapi/linux/vm_sockets_diag.h
20025 F:      include/uapi/linux/vsockmon.h
20026 F:      net/vmw_vsock/
20027 F:      tools/testing/vsock/
20028
20029 VMWARE BALLOON DRIVER
20030 M:      Nadav Amit <namit@vmware.com>
20031 M:      "VMware, Inc." <pv-drivers@vmware.com>
20032 L:      linux-kernel@vger.kernel.org
20033 S:      Maintained
20034 F:      drivers/misc/vmw_balloon.c
20035
20036 VMWARE HYPERVISOR INTERFACE
20037 M:      Deep Shah <sdeep@vmware.com>
20038 M:      "VMware, Inc." <pv-drivers@vmware.com>
20039 L:      virtualization@lists.linux-foundation.org
20040 S:      Supported
20041 F:      arch/x86/include/asm/vmware.h
20042 F:      arch/x86/kernel/cpu/vmware.c
20043
20044 VMWARE PVRDMA DRIVER
20045 M:      Adit Ranadive <aditr@vmware.com>
20046 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20047 L:      linux-rdma@vger.kernel.org
20048 S:      Maintained
20049 F:      drivers/infiniband/hw/vmw_pvrdma/
20050
20051 VMware PVSCSI driver
20052 M:      Vishal Bhakta <vbhakta@vmware.com>
20053 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20054 L:      linux-scsi@vger.kernel.org
20055 S:      Maintained
20056 F:      drivers/scsi/vmw_pvscsi.c
20057 F:      drivers/scsi/vmw_pvscsi.h
20058
20059 VMWARE VIRTUAL PTP CLOCK DRIVER
20060 M:      Vivek Thampi <vithampi@vmware.com>
20061 M:      "VMware, Inc." <pv-drivers@vmware.com>
20062 L:      netdev@vger.kernel.org
20063 S:      Supported
20064 F:      drivers/ptp/ptp_vmw.c
20065
20066 VMWARE VMCI DRIVER
20067 M:      Jorgen Hansen <jhansen@vmware.com>
20068 M:      Vishnu Dasa <vdasa@vmware.com>
20069 L:      linux-kernel@vger.kernel.org
20070 L:      pv-drivers@vmware.com (private)
20071 S:      Maintained
20072 F:      drivers/misc/vmw_vmci/
20073
20074 VMWARE VMMOUSE SUBDRIVER
20075 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20076 M:      "VMware, Inc." <pv-drivers@vmware.com>
20077 L:      linux-input@vger.kernel.org
20078 S:      Maintained
20079 F:      drivers/input/mouse/vmmouse.c
20080 F:      drivers/input/mouse/vmmouse.h
20081
20082 VMWARE VMXNET3 ETHERNET DRIVER
20083 M:      Ronak Doshi <doshir@vmware.com>
20084 M:      pv-drivers@vmware.com
20085 L:      netdev@vger.kernel.org
20086 S:      Maintained
20087 F:      drivers/net/vmxnet3/
20088
20089 VOCORE VOCORE2 BOARD
20090 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20091 L:      linux-mips@vger.kernel.org
20092 S:      Maintained
20093 F:      arch/mips/boot/dts/ralink/vocore2.dts
20094
20095 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20096 M:      Liam Girdwood <lgirdwood@gmail.com>
20097 M:      Mark Brown <broonie@kernel.org>
20098 L:      linux-kernel@vger.kernel.org
20099 S:      Supported
20100 W:      http://www.slimlogic.co.uk/?p=48
20101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20102 F:      Documentation/devicetree/bindings/regulator/
20103 F:      Documentation/power/regulator/
20104 F:      drivers/regulator/
20105 F:      include/dt-bindings/regulator/
20106 F:      include/linux/regulator/
20107 K:      regulator_get_optional
20108
20109 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20110 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20111 F:      drivers/regulator/irq_helpers.c
20112
20113 VRF
20114 M:      David Ahern <dsahern@kernel.org>
20115 L:      netdev@vger.kernel.org
20116 S:      Maintained
20117 F:      Documentation/networking/vrf.rst
20118 F:      drivers/net/vrf.c
20119
20120 VSPRINTF
20121 M:      Petr Mladek <pmladek@suse.com>
20122 M:      Steven Rostedt <rostedt@goodmis.org>
20123 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20124 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20125 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20126 S:      Maintained
20127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20128 F:      Documentation/core-api/printk-formats.rst
20129 F:      lib/test_printf.c
20130 F:      lib/test_scanf.c
20131 F:      lib/vsprintf.c
20132
20133 VT1211 HARDWARE MONITOR DRIVER
20134 M:      Juerg Haefliger <juergh@gmail.com>
20135 L:      linux-hwmon@vger.kernel.org
20136 S:      Maintained
20137 F:      Documentation/hwmon/vt1211.rst
20138 F:      drivers/hwmon/vt1211.c
20139
20140 VT8231 HARDWARE MONITOR DRIVER
20141 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20142 L:      linux-hwmon@vger.kernel.org
20143 S:      Maintained
20144 F:      drivers/hwmon/vt8231.c
20145
20146 VUB300 USB to SDIO/SD/MMC bridge chip
20147 L:      linux-mmc@vger.kernel.org
20148 S:      Orphan
20149 F:      drivers/mmc/host/vub300.c
20150
20151 W1 DALLAS'S 1-WIRE BUS
20152 M:      Evgeniy Polyakov <zbr@ioremap.net>
20153 S:      Maintained
20154 F:      Documentation/devicetree/bindings/w1/
20155 F:      Documentation/w1/
20156 F:      drivers/w1/
20157 F:      include/linux/w1.h
20158
20159 W83791D HARDWARE MONITORING DRIVER
20160 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20161 L:      linux-hwmon@vger.kernel.org
20162 S:      Maintained
20163 F:      Documentation/hwmon/w83791d.rst
20164 F:      drivers/hwmon/w83791d.c
20165
20166 W83793 HARDWARE MONITORING DRIVER
20167 M:      Rudolf Marek <r.marek@assembler.cz>
20168 L:      linux-hwmon@vger.kernel.org
20169 S:      Maintained
20170 F:      Documentation/hwmon/w83793.rst
20171 F:      drivers/hwmon/w83793.c
20172
20173 W83795 HARDWARE MONITORING DRIVER
20174 M:      Jean Delvare <jdelvare@suse.com>
20175 L:      linux-hwmon@vger.kernel.org
20176 S:      Maintained
20177 F:      drivers/hwmon/w83795.c
20178
20179 W83L51xD SD/MMC CARD INTERFACE DRIVER
20180 M:      Pierre Ossman <pierre@ossman.eu>
20181 S:      Maintained
20182 F:      drivers/mmc/host/wbsd.*
20183
20184 WACOM PROTOCOL 4 SERIAL TABLETS
20185 M:      Julian Squires <julian@cipht.net>
20186 M:      Hans de Goede <hdegoede@redhat.com>
20187 L:      linux-input@vger.kernel.org
20188 S:      Maintained
20189 F:      drivers/input/tablet/wacom_serial4.c
20190
20191 WATCHDOG DEVICE DRIVERS
20192 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20193 M:      Guenter Roeck <linux@roeck-us.net>
20194 L:      linux-watchdog@vger.kernel.org
20195 S:      Maintained
20196 W:      http://www.linux-watchdog.org/
20197 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20198 F:      Documentation/devicetree/bindings/watchdog/
20199 F:      Documentation/watchdog/
20200 F:      drivers/watchdog/
20201 F:      include/linux/watchdog.h
20202 F:      include/uapi/linux/watchdog.h
20203
20204 WHISKEYCOVE PMIC GPIO DRIVER
20205 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20206 L:      linux-gpio@vger.kernel.org
20207 S:      Maintained
20208 F:      drivers/gpio/gpio-wcove.c
20209
20210 WHWAVE RTC DRIVER
20211 M:      Dianlong Li <long17.cool@163.com>
20212 L:      linux-rtc@vger.kernel.org
20213 S:      Maintained
20214 F:      drivers/rtc/rtc-sd3078.c
20215
20216 WIIMOTE HID DRIVER
20217 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20218 L:      linux-input@vger.kernel.org
20219 S:      Maintained
20220 F:      drivers/hid/hid-wiimote*
20221
20222 WILOCITY WIL6210 WIRELESS DRIVER
20223 M:      Maya Erez <merez@codeaurora.org>
20224 L:      linux-wireless@vger.kernel.org
20225 L:      wil6210@qti.qualcomm.com
20226 S:      Supported
20227 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20228 F:      drivers/net/wireless/ath/wil6210/
20229
20230 WINBOND CIR DRIVER
20231 M:      David Härdeman <david@hardeman.nu>
20232 S:      Maintained
20233 F:      drivers/media/rc/winbond-cir.c
20234
20235 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20236 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20237 L:      linux-watchdog@vger.kernel.org
20238 S:      Maintained
20239 F:      drivers/watchdog/ebc-c384_wdt.c
20240
20241 WINSYSTEMS WS16C48 GPIO DRIVER
20242 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20243 L:      linux-gpio@vger.kernel.org
20244 S:      Maintained
20245 F:      drivers/gpio/gpio-ws16c48.c
20246
20247 WIREGUARD SECURE NETWORK TUNNEL
20248 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20249 L:      wireguard@lists.zx2c4.com
20250 L:      netdev@vger.kernel.org
20251 S:      Maintained
20252 F:      drivers/net/wireguard/
20253 F:      tools/testing/selftests/wireguard/
20254
20255 WISTRON LAPTOP BUTTON DRIVER
20256 M:      Miloslav Trmac <mitr@volny.cz>
20257 S:      Maintained
20258 F:      drivers/input/misc/wistron_btns.c
20259
20260 WL3501 WIRELESS PCMCIA CARD DRIVER
20261 L:      linux-wireless@vger.kernel.org
20262 S:      Odd fixes
20263 F:      drivers/net/wireless/wl3501*
20264
20265 WOLFSON MICROELECTRONICS DRIVERS
20266 L:      patches@opensource.cirrus.com
20267 S:      Supported
20268 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20269 T:      git https://github.com/CirrusLogic/linux-drivers.git
20270 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20271 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20272 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20273 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20274 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20275 F:      Documentation/devicetree/bindings/sound/wm*
20276 F:      Documentation/hwmon/wm83??.rst
20277 F:      arch/arm/mach-s3c/mach-crag6410*
20278 F:      drivers/clk/clk-wm83*.c
20279 F:      drivers/gpio/gpio-*wm*.c
20280 F:      drivers/gpio/gpio-arizona.c
20281 F:      drivers/hwmon/wm83??-hwmon.c
20282 F:      drivers/input/misc/wm831x-on.c
20283 F:      drivers/input/touchscreen/wm831x-ts.c
20284 F:      drivers/input/touchscreen/wm97*.c
20285 F:      drivers/leds/leds-wm83*.c
20286 F:      drivers/mfd/arizona*
20287 F:      drivers/mfd/cs47l24*
20288 F:      drivers/mfd/wm*.c
20289 F:      drivers/power/supply/wm83*.c
20290 F:      drivers/regulator/arizona*
20291 F:      drivers/regulator/wm8*.c
20292 F:      drivers/rtc/rtc-wm83*.c
20293 F:      drivers/video/backlight/wm83*_bl.c
20294 F:      drivers/watchdog/wm83*_wdt.c
20295 F:      include/linux/mfd/arizona/
20296 F:      include/linux/mfd/wm831x/
20297 F:      include/linux/mfd/wm8350/
20298 F:      include/linux/mfd/wm8400*
20299 F:      include/linux/regulator/arizona*
20300 F:      include/linux/wm97xx.h
20301 F:      include/sound/wm????.h
20302 F:      sound/soc/codecs/arizona*
20303 F:      sound/soc/codecs/cs47l24*
20304 F:      sound/soc/codecs/wm*
20305
20306 WORKQUEUE
20307 M:      Tejun Heo <tj@kernel.org>
20308 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20309 S:      Maintained
20310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20311 F:      Documentation/core-api/workqueue.rst
20312 F:      include/linux/workqueue.h
20313 F:      kernel/workqueue.c
20314
20315 WWAN DRIVERS
20316 M:      Loic Poulain <loic.poulain@linaro.org>
20317 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20318 R:      Johannes Berg <johannes@sipsolutions.net>
20319 L:      netdev@vger.kernel.org
20320 S:      Maintained
20321 F:      drivers/net/wwan/
20322 F:      include/linux/wwan.h
20323 F:      include/uapi/linux/wwan.h
20324
20325 X-POWERS AXP288 PMIC DRIVERS
20326 M:      Hans de Goede <hdegoede@redhat.com>
20327 S:      Maintained
20328 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20329 N:      axp288
20330
20331 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20332 M:      Chen-Yu Tsai <wens@csie.org>
20333 L:      linux-kernel@vger.kernel.org
20334 S:      Maintained
20335 N:      axp[128]
20336
20337 X.25 STACK
20338 M:      Martin Schiller <ms@dev.tdt.de>
20339 L:      linux-x25@vger.kernel.org
20340 S:      Maintained
20341 F:      Documentation/networking/lapb-module.rst
20342 F:      Documentation/networking/x25*
20343 F:      drivers/net/wan/hdlc_x25.c
20344 F:      drivers/net/wan/lapbether.c
20345 F:      include/*/lapb.h
20346 F:      include/net/x25*
20347 F:      include/uapi/linux/x25.h
20348 F:      net/lapb/
20349 F:      net/x25/
20350
20351 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20352 M:      Thomas Gleixner <tglx@linutronix.de>
20353 M:      Ingo Molnar <mingo@redhat.com>
20354 M:      Borislav Petkov <bp@alien8.de>
20355 M:      x86@kernel.org
20356 R:      "H. Peter Anvin" <hpa@zytor.com>
20357 L:      linux-kernel@vger.kernel.org
20358 S:      Maintained
20359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20360 F:      Documentation/devicetree/bindings/x86/
20361 F:      Documentation/x86/
20362 F:      arch/x86/
20363
20364 X86 ENTRY CODE
20365 M:      Andy Lutomirski <luto@kernel.org>
20366 L:      linux-kernel@vger.kernel.org
20367 S:      Maintained
20368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20369 F:      arch/x86/entry/
20370
20371 X86 MCE INFRASTRUCTURE
20372 M:      Tony Luck <tony.luck@intel.com>
20373 M:      Borislav Petkov <bp@alien8.de>
20374 L:      linux-edac@vger.kernel.org
20375 S:      Maintained
20376 F:      arch/x86/kernel/cpu/mce/*
20377
20378 X86 MICROCODE UPDATE SUPPORT
20379 M:      Borislav Petkov <bp@alien8.de>
20380 S:      Maintained
20381 F:      arch/x86/kernel/cpu/microcode/*
20382
20383 X86 MM
20384 M:      Dave Hansen <dave.hansen@linux.intel.com>
20385 M:      Andy Lutomirski <luto@kernel.org>
20386 M:      Peter Zijlstra <peterz@infradead.org>
20387 L:      linux-kernel@vger.kernel.org
20388 S:      Maintained
20389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20390 F:      arch/x86/mm/
20391
20392 X86 PLATFORM DRIVERS
20393 M:      Hans de Goede <hdegoede@redhat.com>
20394 M:      Mark Gross <mgross@linux.intel.com>
20395 L:      platform-driver-x86@vger.kernel.org
20396 S:      Maintained
20397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20398 F:      drivers/platform/olpc/
20399 F:      drivers/platform/x86/
20400
20401 X86 PLATFORM DRIVERS - ARCH
20402 R:      Darren Hart <dvhart@infradead.org>
20403 R:      Andy Shevchenko <andy@infradead.org>
20404 L:      platform-driver-x86@vger.kernel.org
20405 L:      x86@kernel.org
20406 S:      Maintained
20407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20408 F:      arch/x86/platform
20409
20410 X86 PLATFORM UV HPE SUPERDOME FLEX
20411 M:      Steve Wahl <steve.wahl@hpe.com>
20412 R:      Mike Travis <mike.travis@hpe.com>
20413 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20414 R:      Russ Anderson <russ.anderson@hpe.com>
20415 S:      Supported
20416 F:      arch/x86/include/asm/uv/
20417 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20418 F:      arch/x86/platform/uv/
20419
20420 X86 VDSO
20421 M:      Andy Lutomirski <luto@kernel.org>
20422 L:      linux-kernel@vger.kernel.org
20423 S:      Maintained
20424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20425 F:      arch/x86/entry/vdso/
20426
20427 XARRAY
20428 M:      Matthew Wilcox <willy@infradead.org>
20429 L:      linux-fsdevel@vger.kernel.org
20430 S:      Supported
20431 F:      Documentation/core-api/xarray.rst
20432 F:      include/linux/idr.h
20433 F:      include/linux/xarray.h
20434 F:      lib/idr.c
20435 F:      lib/xarray.c
20436 F:      tools/testing/radix-tree
20437
20438 XBOX DVD IR REMOTE
20439 M:      Benjamin Valentin <benpicco@googlemail.com>
20440 S:      Maintained
20441 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20442 F:      drivers/media/rc/xbox_remote.c
20443
20444 XC2028/3028 TUNER DRIVER
20445 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20446 L:      linux-media@vger.kernel.org
20447 S:      Maintained
20448 W:      https://linuxtv.org
20449 T:      git git://linuxtv.org/media_tree.git
20450 F:      drivers/media/tuners/tuner-xc2028.*
20451
20452 XDP (eXpress Data Path)
20453 M:      Alexei Starovoitov <ast@kernel.org>
20454 M:      Daniel Borkmann <daniel@iogearbox.net>
20455 M:      David S. Miller <davem@davemloft.net>
20456 M:      Jakub Kicinski <kuba@kernel.org>
20457 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20458 M:      John Fastabend <john.fastabend@gmail.com>
20459 L:      netdev@vger.kernel.org
20460 L:      bpf@vger.kernel.org
20461 S:      Supported
20462 F:      include/net/xdp.h
20463 F:      include/net/xdp_priv.h
20464 F:      include/trace/events/xdp.h
20465 F:      kernel/bpf/cpumap.c
20466 F:      kernel/bpf/devmap.c
20467 F:      net/core/xdp.c
20468 F:      samples/bpf/xdp*
20469 F:      tools/testing/selftests/bpf/*xdp*
20470 F:      tools/testing/selftests/bpf/*/*xdp*
20471 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20472 F:      drivers/net/ethernet/*/*/*xdp*
20473 K:      (?:\b|_)xdp(?:\b|_)
20474
20475 XDP SOCKETS (AF_XDP)
20476 M:      Björn Töpel <bjorn@kernel.org>
20477 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20478 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20479 L:      netdev@vger.kernel.org
20480 L:      bpf@vger.kernel.org
20481 S:      Maintained
20482 F:      Documentation/networking/af_xdp.rst
20483 F:      include/net/xdp_sock*
20484 F:      include/net/xsk_buff_pool.h
20485 F:      include/uapi/linux/if_xdp.h
20486 F:      include/uapi/linux/xdp_diag.h
20487 F:      include/net/netns/xdp.h
20488 F:      net/xdp/
20489 F:      samples/bpf/xdpsock*
20490 F:      tools/lib/bpf/xsk*
20491
20492 XEN BLOCK SUBSYSTEM
20493 M:      Roger Pau Monné <roger.pau@citrix.com>
20494 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20495 S:      Supported
20496 F:      drivers/block/xen*
20497 F:      drivers/block/xen-blkback/*
20498
20499 XEN HYPERVISOR ARM
20500 M:      Stefano Stabellini <sstabellini@kernel.org>
20501 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20502 S:      Maintained
20503 F:      arch/arm/include/asm/xen/
20504 F:      arch/arm/xen/
20505
20506 XEN HYPERVISOR ARM64
20507 M:      Stefano Stabellini <sstabellini@kernel.org>
20508 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20509 S:      Maintained
20510 F:      arch/arm64/include/asm/xen/
20511 F:      arch/arm64/xen/
20512
20513 XEN HYPERVISOR INTERFACE
20514 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20515 M:      Juergen Gross <jgross@suse.com>
20516 R:      Stefano Stabellini <sstabellini@kernel.org>
20517 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20518 S:      Supported
20519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20520 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20521 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20522 F:      arch/x86/include/asm/pvclock-abi.h
20523 F:      arch/x86/include/asm/xen/
20524 F:      arch/x86/platform/pvh/
20525 F:      arch/x86/xen/
20526 F:      drivers/*/xen-*front.c
20527 F:      drivers/xen/
20528 F:      include/uapi/xen/
20529 F:      include/xen/
20530
20531 XEN NETWORK BACKEND DRIVER
20532 M:      Wei Liu <wei.liu@kernel.org>
20533 M:      Paul Durrant <paul@xen.org>
20534 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20535 L:      netdev@vger.kernel.org
20536 S:      Supported
20537 F:      drivers/net/xen-netback/*
20538
20539 XEN PCI SUBSYSTEM
20540 M:      Juergen Gross <jgross@suse.com>
20541 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20542 S:      Supported
20543 F:      arch/x86/pci/*xen*
20544 F:      drivers/pci/*xen*
20545
20546 XEN PVSCSI DRIVERS
20547 M:      Juergen Gross <jgross@suse.com>
20548 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20549 L:      linux-scsi@vger.kernel.org
20550 S:      Supported
20551 F:      drivers/scsi/xen-scsifront.c
20552 F:      drivers/xen/xen-scsiback.c
20553 F:      include/xen/interface/io/vscsiif.h
20554
20555 XEN SOUND FRONTEND DRIVER
20556 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20557 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20558 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20559 S:      Supported
20560 F:      sound/xen/*
20561
20562 XEN SWIOTLB SUBSYSTEM
20563 M:      Juergen Gross <jgross@suse.com>
20564 M:      Stefano Stabellini <sstabellini@kernel.org>
20565 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20566 L:      iommu@lists.linux-foundation.org
20567 S:      Supported
20568 F:      arch/x86/xen/*swiotlb*
20569 F:      drivers/xen/*swiotlb*
20570
20571 XFS FILESYSTEM
20572 C:      irc://irc.oftc.net/xfs
20573 M:      Darrick J. Wong <djwong@kernel.org>
20574 M:      linux-xfs@vger.kernel.org
20575 L:      linux-xfs@vger.kernel.org
20576 S:      Supported
20577 W:      http://xfs.org/
20578 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20579 F:      Documentation/ABI/testing/sysfs-fs-xfs
20580 F:      Documentation/admin-guide/xfs.rst
20581 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20582 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20583 F:      fs/xfs/
20584 F:      include/uapi/linux/dqblk_xfs.h
20585 F:      include/uapi/linux/fsmap.h
20586
20587 XILINX AXI ETHERNET DRIVER
20588 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20589 S:      Maintained
20590 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20591
20592 XILINX CAN DRIVER
20593 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20594 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20595 L:      linux-can@vger.kernel.org
20596 S:      Maintained
20597 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20598 F:      drivers/net/can/xilinx_can.c
20599
20600 XILINX GPIO DRIVER
20601 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20602 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20603 R:      Michal Simek <michal.simek@xilinx.com>
20604 S:      Maintained
20605 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20606 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20607 F:      drivers/gpio/gpio-xilinx.c
20608 F:      drivers/gpio/gpio-zynq.c
20609
20610 XILINX SD-FEC IP CORES
20611 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20612 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20613 S:      Maintained
20614 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20615 F:      Documentation/misc-devices/xilinx_sdfec.rst
20616 F:      drivers/misc/Kconfig
20617 F:      drivers/misc/Makefile
20618 F:      drivers/misc/xilinx_sdfec.c
20619 F:      include/uapi/misc/xilinx_sdfec.h
20620
20621 XILINX UARTLITE SERIAL DRIVER
20622 M:      Peter Korsgaard <jacmet@sunsite.dk>
20623 L:      linux-serial@vger.kernel.org
20624 S:      Maintained
20625 F:      drivers/tty/serial/uartlite.c
20626
20627 XILINX VIDEO IP CORES
20628 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20629 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20630 L:      linux-media@vger.kernel.org
20631 S:      Supported
20632 T:      git git://linuxtv.org/media_tree.git
20633 F:      Documentation/devicetree/bindings/media/xilinx/
20634 F:      drivers/media/platform/xilinx/
20635 F:      include/uapi/linux/xilinx-v4l2-controls.h
20636
20637 XILINX ZYNQMP DPDMA DRIVER
20638 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20639 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20640 L:      dmaengine@vger.kernel.org
20641 S:      Supported
20642 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20643 F:      drivers/dma/xilinx/xilinx_dpdma.c
20644 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20645
20646 XILINX ZYNQMP PSGTR PHY DRIVER
20647 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20648 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20649 L:      linux-kernel@vger.kernel.org
20650 S:      Supported
20651 T:      git https://github.com/Xilinx/linux-xlnx.git
20652 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20653 F:      drivers/phy/xilinx/phy-zynqmp.c
20654
20655 XILLYBUS DRIVER
20656 M:      Eli Billauer <eli.billauer@gmail.com>
20657 L:      linux-kernel@vger.kernel.org
20658 S:      Supported
20659 F:      drivers/char/xillybus/
20660
20661 XLP9XX I2C DRIVER
20662 M:      George Cherian <gcherian@marvell.com>
20663 L:      linux-i2c@vger.kernel.org
20664 S:      Supported
20665 W:      http://www.marvell.com
20666 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20667 F:      drivers/i2c/busses/i2c-xlp9xx.c
20668
20669 XRA1403 GPIO EXPANDER
20670 M:      Nandor Han <nandor.han@ge.com>
20671 M:      Semi Malinen <semi.malinen@ge.com>
20672 L:      linux-gpio@vger.kernel.org
20673 S:      Maintained
20674 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20675 F:      drivers/gpio/gpio-xra1403.c
20676
20677 XTENSA XTFPGA PLATFORM SUPPORT
20678 M:      Max Filippov <jcmvbkbc@gmail.com>
20679 L:      linux-xtensa@linux-xtensa.org
20680 S:      Maintained
20681 F:      drivers/spi/spi-xtensa-xtfpga.c
20682 F:      sound/soc/xtensa/xtfpga-i2s.c
20683
20684 YAM DRIVER FOR AX.25
20685 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20686 L:      linux-hams@vger.kernel.org
20687 S:      Maintained
20688 F:      drivers/net/hamradio/yam*
20689 F:      include/linux/yam.h
20690
20691 YAMA SECURITY MODULE
20692 M:      Kees Cook <keescook@chromium.org>
20693 S:      Supported
20694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20695 F:      Documentation/admin-guide/LSM/Yama.rst
20696 F:      security/yama/
20697
20698 YEALINK PHONE DRIVER
20699 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20700 L:      usbb2k-api-dev@nongnu.org
20701 S:      Maintained
20702 F:      Documentation/input/devices/yealink.rst
20703 F:      drivers/input/misc/yealink.*
20704
20705 Z8530 DRIVER FOR AX.25
20706 M:      Joerg Reuter <jreuter@yaina.de>
20707 L:      linux-hams@vger.kernel.org
20708 S:      Maintained
20709 W:      http://yaina.de/jreuter/
20710 W:      http://www.qsl.net/dl1bke/
20711 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20712 F:      drivers/net/hamradio/*scc.c
20713 F:      drivers/net/hamradio/z8530.h
20714
20715 ZBUD COMPRESSED PAGE ALLOCATOR
20716 M:      Seth Jennings <sjenning@redhat.com>
20717 M:      Dan Streetman <ddstreet@ieee.org>
20718 L:      linux-mm@kvack.org
20719 S:      Maintained
20720 F:      mm/zbud.c
20721
20722 ZD1211RW WIRELESS DRIVER
20723 M:      Ulrich Kunitz <kune@deine-taler.de>
20724 L:      linux-wireless@vger.kernel.org
20725 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20726 S:      Maintained
20727 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20728 F:      drivers/net/wireless/zydas/zd1211rw/
20729
20730 ZD1301 MEDIA DRIVER
20731 M:      Antti Palosaari <crope@iki.fi>
20732 L:      linux-media@vger.kernel.org
20733 S:      Maintained
20734 W:      https://linuxtv.org/
20735 W:      http://palosaari.fi/linux/
20736 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20737 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20738
20739 ZD1301_DEMOD MEDIA DRIVER
20740 M:      Antti Palosaari <crope@iki.fi>
20741 L:      linux-media@vger.kernel.org
20742 S:      Maintained
20743 W:      https://linuxtv.org/
20744 W:      http://palosaari.fi/linux/
20745 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20746 F:      drivers/media/dvb-frontends/zd1301_demod*
20747
20748 ZHAOXIN PROCESSOR SUPPORT
20749 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20750 L:      linux-kernel@vger.kernel.org
20751 S:      Maintained
20752 F:      arch/x86/kernel/cpu/zhaoxin.c
20753
20754 ZONEFS FILESYSTEM
20755 M:      Damien Le Moal <damien.lemoal@wdc.com>
20756 M:      Naohiro Aota <naohiro.aota@wdc.com>
20757 R:      Johannes Thumshirn <jth@kernel.org>
20758 L:      linux-fsdevel@vger.kernel.org
20759 S:      Maintained
20760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20761 F:      Documentation/filesystems/zonefs.rst
20762 F:      fs/zonefs/
20763
20764 ZPOOL COMPRESSED PAGE STORAGE API
20765 M:      Dan Streetman <ddstreet@ieee.org>
20766 L:      linux-mm@kvack.org
20767 S:      Maintained
20768 F:      include/linux/zpool.h
20769 F:      mm/zpool.c
20770
20771 ZR36067 VIDEO FOR LINUX DRIVER
20772 M:      Corentin Labbe <clabbe@baylibre.com>
20773 L:      mjpeg-users@lists.sourceforge.net
20774 L:      linux-media@vger.kernel.org
20775 S:      Maintained
20776 W:      http://mjpeg.sourceforge.net/driver-zoran/
20777 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20778 F:      Documentation/driver-api/media/drivers/zoran.rst
20779 F:      drivers/staging/media/zoran/
20780
20781 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20782 M:      Minchan Kim <minchan@kernel.org>
20783 M:      Nitin Gupta <ngupta@vflare.org>
20784 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20785 L:      linux-kernel@vger.kernel.org
20786 S:      Maintained
20787 F:      Documentation/admin-guide/blockdev/zram.rst
20788 F:      drivers/block/zram/
20789
20790 ZS DECSTATION Z85C30 SERIAL DRIVER
20791 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20792 S:      Maintained
20793 F:      drivers/tty/serial/zs.*
20794
20795 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20796 M:      Minchan Kim <minchan@kernel.org>
20797 M:      Nitin Gupta <ngupta@vflare.org>
20798 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20799 L:      linux-mm@kvack.org
20800 S:      Maintained
20801 F:      Documentation/vm/zsmalloc.rst
20802 F:      include/linux/zsmalloc.h
20803 F:      mm/zsmalloc.c
20804
20805 ZSWAP COMPRESSED SWAP CACHING
20806 M:      Seth Jennings <sjenning@redhat.com>
20807 M:      Dan Streetman <ddstreet@ieee.org>
20808 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20809 L:      linux-mm@kvack.org
20810 S:      Maintained
20811 F:      mm/zswap.c
20812
20813 THE REST
20814 M:      Linus Torvalds <torvalds@linux-foundation.org>
20815 L:      linux-kernel@vger.kernel.org
20816 S:      Buried alive in reporters
20817 Q:      http://patchwork.kernel.org/project/LKML/list/
20818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20819 F:      *
20820 F:      */