tizen: Enable virtio devices in rpi4 kernels
[platform/kernel/linux-rpi.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 L:      iommu@lists.linux.dev
438 S:      Maintained
439 F:      drivers/acpi/viot.c
440 F:      include/linux/acpi_viot.h
441
442 ACPI WMI DRIVER
443 L:      platform-driver-x86@vger.kernel.org
444 S:      Orphan
445 F:      drivers/platform/x86/wmi.c
446 F:      include/uapi/linux/wmi.h
447
448 ACRN HYPERVISOR SERVICE MODULE
449 M:      Fei Li <fei1.li@intel.com>
450 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
451 S:      Supported
452 W:      https://projectacrn.org
453 F:      Documentation/virt/acrn/
454 F:      drivers/virt/acrn/
455 F:      include/uapi/linux/acrn.h
456
457 AD1889 ALSA SOUND DRIVER
458 L:      linux-parisc@vger.kernel.org
459 S:      Maintained
460 W:      https://parisc.wiki.kernel.org/index.php/AD1889
461 F:      sound/pci/ad1889.*
462
463 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
464 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
465 L:      linux-iio@vger.kernel.org
466 S:      Supported
467 F:      drivers/iio/potentiometer/ad5110.c
468
469 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
470 M:      Michael Hennerich <michael.hennerich@analog.com>
471 S:      Supported
472 W:      http://wiki.analog.com/AD5254
473 W:      http://ez.analog.com/community/linux-device-drivers
474 F:      drivers/misc/ad525x_dpot.c
475
476 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD5398
480 W:      http://ez.analog.com/community/linux-device-drivers
481 F:      drivers/regulator/ad5398.c
482
483 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD7142
487 W:      http://ez.analog.com/community/linux-device-drivers
488 F:      drivers/input/misc/ad714x.c
489
490 AD7877 TOUCHSCREEN DRIVER
491 M:      Michael Hennerich <michael.hennerich@analog.com>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7877
494 W:      http://ez.analog.com/community/linux-device-drivers
495 F:      drivers/input/touchscreen/ad7877.c
496
497 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 S:      Supported
500 W:      http://wiki.analog.com/AD7879
501 W:      http://ez.analog.com/community/linux-device-drivers
502 F:      drivers/input/touchscreen/ad7879.c
503
504 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
505 M:      Jiri Kosina <jikos@kernel.org>
506 S:      Maintained
507
508 ADF7242 IEEE 802.15.4 RADIO DRIVER
509 M:      Michael Hennerich <michael.hennerich@analog.com>
510 L:      linux-wpan@vger.kernel.org
511 S:      Supported
512 W:      https://wiki.analog.com/ADF7242
513 W:      http://ez.analog.com/community/linux-device-drivers
514 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
515 F:      drivers/net/ieee802154/adf7242.c
516
517 ADM1025 HARDWARE MONITOR DRIVER
518 M:      Jean Delvare <jdelvare@suse.com>
519 L:      linux-hwmon@vger.kernel.org
520 S:      Maintained
521 F:      Documentation/hwmon/adm1025.rst
522 F:      drivers/hwmon/adm1025.c
523
524 ADM1029 HARDWARE MONITOR DRIVER
525 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
526 L:      linux-hwmon@vger.kernel.org
527 S:      Maintained
528 F:      drivers/hwmon/adm1029.c
529
530 ADM8211 WIRELESS DRIVER
531 L:      linux-wireless@vger.kernel.org
532 S:      Orphan
533 W:      https://wireless.wiki.kernel.org/
534 F:      drivers/net/wireless/admtek/adm8211.*
535
536 ADP1653 FLASH CONTROLLER DRIVER
537 M:      Sakari Ailus <sakari.ailus@iki.fi>
538 L:      linux-media@vger.kernel.org
539 S:      Maintained
540 F:      drivers/media/i2c/adp1653.c
541 F:      include/media/i2c/adp1653.h
542
543 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5520
547 W:      http://ez.analog.com/community/linux-device-drivers
548 F:      drivers/gpio/gpio-adp5520.c
549 F:      drivers/input/keyboard/adp5520-keys.c
550 F:      drivers/leds/leds-adp5520.c
551 F:      drivers/mfd/adp5520.c
552 F:      drivers/video/backlight/adp5520_bl.c
553
554 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
555 M:      Michael Hennerich <michael.hennerich@analog.com>
556 S:      Supported
557 W:      http://wiki.analog.com/ADP5588
558 W:      http://ez.analog.com/community/linux-device-drivers
559 F:      drivers/gpio/gpio-adp5588.c
560 F:      drivers/input/keyboard/adp5588-keys.c
561
562 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
563 M:      Michael Hennerich <michael.hennerich@analog.com>
564 S:      Supported
565 W:      http://wiki.analog.com/ADP8860
566 W:      http://ez.analog.com/community/linux-device-drivers
567 F:      drivers/video/backlight/adp8860_bl.c
568
569 ADT746X FAN DRIVER
570 M:      Colin Leroy <colin@colino.net>
571 S:      Maintained
572 F:      drivers/macintosh/therm_adt746x.c
573
574 ADT7475 HARDWARE MONITOR DRIVER
575 M:      Jean Delvare <jdelvare@suse.com>
576 L:      linux-hwmon@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/hwmon/adt7475.rst
579 F:      drivers/hwmon/adt7475.c
580
581 ADVANSYS SCSI DRIVER
582 M:      Matthew Wilcox <willy@infradead.org>
583 M:      Hannes Reinecke <hare@suse.com>
584 L:      linux-scsi@vger.kernel.org
585 S:      Maintained
586 F:      Documentation/scsi/advansys.rst
587 F:      drivers/scsi/advansys.c
588
589 ADVANTECH SWBTN DRIVER
590 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
591 L:      platform-driver-x86@vger.kernel.org
592 S:      Maintained
593 F:      drivers/platform/x86/adv_swbutton.c
594
595 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
596 M:      Michael Hennerich <michael.hennerich@analog.com>
597 S:      Supported
598 W:      http://wiki.analog.com/ADXL345
599 W:      http://ez.analog.com/community/linux-device-drivers
600 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
601 F:      drivers/input/misc/adxl34x.c
602
603 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
604 M:      Michael Hennerich <michael.hennerich@analog.com>
605 S:      Supported
606 W:      http://ez.analog.com/community/linux-device-drivers
607 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
608 F:      drivers/iio/accel/adxl372.c
609 F:      drivers/iio/accel/adxl372_i2c.c
610 F:      drivers/iio/accel/adxl372_spi.c
611
612 AF9013 MEDIA DRIVER
613 M:      Antti Palosaari <crope@iki.fi>
614 L:      linux-media@vger.kernel.org
615 S:      Maintained
616 W:      https://linuxtv.org
617 W:      http://palosaari.fi/linux/
618 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
619 T:      git git://linuxtv.org/anttip/media_tree.git
620 F:      drivers/media/dvb-frontends/af9013*
621
622 AF9033 MEDIA DRIVER
623 M:      Antti Palosaari <crope@iki.fi>
624 L:      linux-media@vger.kernel.org
625 S:      Maintained
626 W:      https://linuxtv.org
627 W:      http://palosaari.fi/linux/
628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
629 T:      git git://linuxtv.org/anttip/media_tree.git
630 F:      drivers/media/dvb-frontends/af9033*
631
632 AFFS FILE SYSTEM
633 M:      David Sterba <dsterba@suse.com>
634 L:      linux-fsdevel@vger.kernel.org
635 S:      Odd Fixes
636 F:      Documentation/filesystems/affs.rst
637 F:      fs/affs/
638
639 AFS FILESYSTEM
640 M:      David Howells <dhowells@redhat.com>
641 M:      Marc Dionne <marc.dionne@auristor.com>
642 L:      linux-afs@lists.infradead.org
643 S:      Supported
644 W:      https://www.infradead.org/~dhowells/kafs/
645 F:      Documentation/filesystems/afs.rst
646 F:      fs/afs/
647 F:      include/trace/events/afs.h
648
649 AGPGART DRIVER
650 M:      David Airlie <airlied@linux.ie>
651 S:      Maintained
652 T:      git git://anongit.freedesktop.org/drm/drm
653 F:      drivers/char/agp/
654 F:      include/linux/agp*
655 F:      include/uapi/linux/agp*
656
657 AHA152X SCSI DRIVER
658 M:      "Juergen E. Fischer" <fischer@norbit.de>
659 L:      linux-scsi@vger.kernel.org
660 S:      Maintained
661 F:      drivers/scsi/aha152x*
662 F:      drivers/scsi/pcmcia/aha152x*
663
664 AIC7XXX / AIC79XX SCSI DRIVER
665 M:      Hannes Reinecke <hare@suse.com>
666 L:      linux-scsi@vger.kernel.org
667 S:      Maintained
668 F:      drivers/scsi/aic7xxx/
669
670 AIMSLAB FM RADIO RECEIVER DRIVER
671 M:      Hans Verkuil <hverkuil@xs4all.nl>
672 L:      linux-media@vger.kernel.org
673 S:      Maintained
674 W:      https://linuxtv.org
675 T:      git git://linuxtv.org/media_tree.git
676 F:      drivers/media/radio/radio-aimslab*
677
678 AIO
679 M:      Benjamin LaHaise <bcrl@kvack.org>
680 L:      linux-aio@kvack.org
681 S:      Supported
682 F:      fs/aio.c
683 F:      include/linux/*aio*.h
684
685 AIRSPY MEDIA DRIVER
686 M:      Antti Palosaari <crope@iki.fi>
687 L:      linux-media@vger.kernel.org
688 S:      Maintained
689 W:      https://linuxtv.org
690 W:      http://palosaari.fi/linux/
691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
692 T:      git git://linuxtv.org/anttip/media_tree.git
693 F:      drivers/media/usb/airspy/
694
695 ALACRITECH GIGABIT ETHERNET DRIVER
696 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
697 S:      Maintained
698 F:      drivers/net/ethernet/alacritech/*
699
700 ALCATEL SPEEDTOUCH USB DRIVER
701 M:      Duncan Sands <duncan.sands@free.fr>
702 L:      linux-usb@vger.kernel.org
703 S:      Maintained
704 W:      http://www.linux-usb.org/SpeedTouch/
705 F:      drivers/usb/atm/speedtch.c
706 F:      drivers/usb/atm/usbatm.c
707
708 ALCHEMY AU1XX0 MMC DRIVER
709 M:      Manuel Lauss <manuel.lauss@gmail.com>
710 S:      Maintained
711 F:      drivers/mmc/host/au1xmmc.c
712
713 ALI1563 I2C DRIVER
714 M:      Rudolf Marek <r.marek@assembler.cz>
715 L:      linux-i2c@vger.kernel.org
716 S:      Maintained
717 F:      Documentation/i2c/busses/i2c-ali1563.rst
718 F:      drivers/i2c/busses/i2c-ali1563.c
719
720 ALIENWARE WMI DRIVER
721 L:      Dell.Client.Kernel@dell.com
722 S:      Maintained
723 F:      drivers/platform/x86/dell/alienware-wmi.c
724
725 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
726 M:      Tomislav Denis <tomislav.denis@avl.com>
727 L:      linux-iio@vger.kernel.org
728 S:      Maintained
729 W:      http://www.allsensors.com/
730 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
731 F:      drivers/iio/pressure/dlhl60d.c
732
733 ALLEGRO DVT VIDEO IP CORE DRIVER
734 M:      Michael Tretter <m.tretter@pengutronix.de>
735 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
739 F:      drivers/media/platform/allegro-dvt/
740
741 ALLWINNER A10 CSI DRIVER
742 M:      Maxime Ripard <mripard@kernel.org>
743 L:      linux-media@vger.kernel.org
744 S:      Maintained
745 T:      git git://linuxtv.org/media_tree.git
746 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
747 F:      drivers/media/platform/sunxi/sun4i-csi/
748
749 ALLWINNER CPUFREQ DRIVER
750 M:      Yangtao Li <tiny.windzz@gmail.com>
751 L:      linux-pm@vger.kernel.org
752 S:      Maintained
753 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
754 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
755
756 ALLWINNER CRYPTO DRIVERS
757 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
758 L:      linux-crypto@vger.kernel.org
759 S:      Maintained
760 F:      drivers/crypto/allwinner/
761
762 ALLWINNER HARDWARE SPINLOCK SUPPORT
763 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
764 S:      Maintained
765 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
766 F:      drivers/hwspinlock/sun6i_hwspinlock.c
767
768 ALLWINNER THERMAL DRIVER
769 M:      Vasily Khoruzhick <anarsoul@gmail.com>
770 M:      Yangtao Li <tiny.windzz@gmail.com>
771 L:      linux-pm@vger.kernel.org
772 S:      Maintained
773 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
774 F:      drivers/thermal/sun8i_thermal.c
775
776 ALLWINNER VPU DRIVER
777 M:      Maxime Ripard <mripard@kernel.org>
778 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
779 L:      linux-media@vger.kernel.org
780 S:      Maintained
781 F:      drivers/staging/media/sunxi/cedrus/
782
783 ALPHA PORT
784 M:      Richard Henderson <rth@twiddle.net>
785 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
786 M:      Matt Turner <mattst88@gmail.com>
787 L:      linux-alpha@vger.kernel.org
788 S:      Odd Fixes
789 F:      arch/alpha/
790
791 ALPS PS/2 TOUCHPAD DRIVER
792 R:      Pali Rohár <pali@kernel.org>
793 F:      drivers/input/mouse/alps.*
794
795 ALTERA I2C CONTROLLER DRIVER
796 M:      Thor Thayer <thor.thayer@linux.intel.com>
797 S:      Maintained
798 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
799 F:      drivers/i2c/busses/i2c-altera.c
800
801 ALTERA MAILBOX DRIVER
802 M:      Joyce Ooi <joyce.ooi@intel.com>
803 S:      Maintained
804 F:      drivers/mailbox/mailbox-altera.c
805
806 ALTERA MSGDMA IP CORE DRIVER
807 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
808 R:      Stefan Roese <sr@denx.de>
809 L:      dmaengine@vger.kernel.org
810 S:      Odd Fixes
811 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
812 F:      drivers/dma/altera-msgdma.c
813
814 ALTERA PIO DRIVER
815 M:      Mun Yew Tham <mun.yew.tham@intel.com>
816 L:      linux-gpio@vger.kernel.org
817 S:      Maintained
818 F:      drivers/gpio/gpio-altera.c
819
820 ALTERA SYSTEM MANAGER DRIVER
821 M:      Thor Thayer <thor.thayer@linux.intel.com>
822 S:      Maintained
823 F:      drivers/mfd/altera-sysmgr.c
824 F:      include/linux/mfd/altera-sysmgr.h
825
826 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
827 M:      Thor Thayer <thor.thayer@linux.intel.com>
828 S:      Maintained
829 F:      drivers/gpio/gpio-altera-a10sr.c
830 F:      drivers/mfd/altera-a10sr.c
831 F:      drivers/reset/reset-a10sr.c
832 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
833 F:      include/linux/mfd/altera-a10sr.h
834
835 ALTERA TRIPLE SPEED ETHERNET DRIVER
836 M:      Joyce Ooi <joyce.ooi@intel.com>
837 L:      netdev@vger.kernel.org
838 S:      Maintained
839 F:      drivers/net/ethernet/altera/
840
841 ALTERA UART/JTAG UART SERIAL DRIVERS
842 M:      Tobias Klauser <tklauser@distanz.ch>
843 L:      linux-serial@vger.kernel.org
844 S:      Maintained
845 F:      drivers/tty/serial/altera_jtaguart.c
846 F:      drivers/tty/serial/altera_uart.c
847 F:      include/linux/altera_jtaguart.h
848 F:      include/linux/altera_uart.h
849
850 AMAZON ANNAPURNA LABS FIC DRIVER
851 M:      Talel Shenhar <talel@amazon.com>
852 S:      Maintained
853 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
854 F:      drivers/irqchip/irq-al-fic.c
855
856 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
857 M:      Talel Shenhar <talel@amazon.com>
858 M:      Talel Shenhar <talelshenhar@gmail.com>
859 S:      Maintained
860 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
861 F:      drivers/edac/al_mc_edac.c
862
863 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
864 M:      Talel Shenhar <talel@amazon.com>
865 S:      Maintained
866 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
867 F:      drivers/thermal/thermal_mmio.c
868
869 AMAZON ETHERNET DRIVERS
870 M:      Netanel Belgazal <netanel@amazon.com>
871 M:      Arthur Kiyanovski <akiyano@amazon.com>
872 R:      Guy Tzalik <gtzalik@amazon.com>
873 R:      Saeed Bishara <saeedb@amazon.com>
874 L:      netdev@vger.kernel.org
875 S:      Supported
876 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
877 F:      drivers/net/ethernet/amazon/
878
879 AMAZON RDMA EFA DRIVER
880 M:      Gal Pressman <galpress@amazon.com>
881 R:      Yossi Leybovich <sleybo@amazon.com>
882 L:      linux-rdma@vger.kernel.org
883 S:      Supported
884 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
885 F:      drivers/infiniband/hw/efa/
886 F:      include/uapi/rdma/efa-abi.h
887
888 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
889 M:      Tom Lendacky <thomas.lendacky@amd.com>
890 M:      John Allen <john.allen@amd.com>
891 L:      linux-crypto@vger.kernel.org
892 S:      Supported
893 F:      drivers/crypto/ccp/
894 F:      include/linux/ccp.h
895
896 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
897 M:      Brijesh Singh <brijesh.singh@amd.com>
898 M:      Tom Lendacky <thomas.lendacky@amd.com>
899 L:      linux-crypto@vger.kernel.org
900 S:      Supported
901 F:      drivers/crypto/ccp/sev*
902 F:      include/uapi/linux/psp-sev.h
903
904 AMD DISPLAY CORE
905 M:      Harry Wentland <harry.wentland@amd.com>
906 M:      Leo Li <sunpeng.li@amd.com>
907 L:      amd-gfx@lists.freedesktop.org
908 S:      Supported
909 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
910 F:      drivers/gpu/drm/amd/display/
911
912 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
913 M:      Huang Rui <ray.huang@amd.com>
914 L:      linux-hwmon@vger.kernel.org
915 S:      Supported
916 F:      Documentation/hwmon/fam15h_power.rst
917 F:      drivers/hwmon/fam15h_power.c
918
919 AMD FCH GPIO DRIVER
920 M:      Enrico Weigelt, metux IT consult <info@metux.net>
921 L:      linux-gpio@vger.kernel.org
922 S:      Maintained
923 F:      drivers/gpio/gpio-amd-fch.c
924 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
925
926 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
927 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
928 S:      Orphan
929 F:      drivers/usb/gadget/udc/amd5536udc.*
930
931 AMD GEODE PROCESSOR/CHIPSET SUPPORT
932 M:      Andres Salomon <dilinger@queued.net>
933 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
934 S:      Supported
935 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
936 F:      arch/x86/include/asm/geode.h
937 F:      drivers/char/hw_random/geode-rng.c
938 F:      drivers/crypto/geode*
939 F:      drivers/video/fbdev/geode/
940
941 AMD IOMMU (AMD-VI)
942 M:      Joerg Roedel <joro@8bytes.org>
943 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
944 L:      iommu@lists.linux-foundation.org
945 L:      iommu@lists.linux.dev
946 S:      Maintained
947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
948 F:      drivers/iommu/amd/
949 F:      include/linux/amd-iommu.h
950
951 AMD KFD
952 M:      Felix Kuehling <Felix.Kuehling@amd.com>
953 L:      amd-gfx@lists.freedesktop.org
954 S:      Supported
955 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
956 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
957 F:      drivers/gpu/drm/amd/amdkfd/
958 F:      drivers/gpu/drm/amd/include/cik_structs.h
959 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
960 F:      drivers/gpu/drm/amd/include/v9_structs.h
961 F:      drivers/gpu/drm/amd/include/vi_structs.h
962 F:      include/uapi/linux/kfd_ioctl.h
963
964 AMD SPI DRIVER
965 M:      Sanjay R Mehta <sanju.mehta@amd.com>
966 S:      Maintained
967 F:      drivers/spi/spi-amd.c
968
969 AMD MP2 I2C DRIVER
970 M:      Elie Morisse <syniurge@gmail.com>
971 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
972 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
973 L:      linux-i2c@vger.kernel.org
974 S:      Maintained
975 F:      drivers/i2c/busses/i2c-amd-mp2*
976
977 AMD PMC DRIVER
978 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
979 L:      platform-driver-x86@vger.kernel.org
980 S:      Maintained
981 F:      drivers/platform/x86/amd-pmc.*
982
983 AMD POWERPLAY AND SWSMU
984 M:      Evan Quan <evan.quan@amd.com>
985 L:      amd-gfx@lists.freedesktop.org
986 S:      Supported
987 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
988 F:      drivers/gpu/drm/amd/pm/
989
990 AMD PTDMA DRIVER
991 M:      Sanjay R Mehta <sanju.mehta@amd.com>
992 L:      dmaengine@vger.kernel.org
993 S:      Maintained
994 F:      drivers/dma/ptdma/
995
996 AMD SEATTLE DEVICE TREE SUPPORT
997 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
998 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
999 M:      Tom Lendacky <thomas.lendacky@amd.com>
1000 S:      Supported
1001 F:      arch/arm64/boot/dts/amd/
1002
1003 AMD XGBE DRIVER
1004 M:      Tom Lendacky <thomas.lendacky@amd.com>
1005 L:      netdev@vger.kernel.org
1006 S:      Supported
1007 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1008 F:      drivers/net/ethernet/amd/xgbe/
1009
1010 AMD SENSOR FUSION HUB DRIVER
1011 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1012 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1013 L:      linux-input@vger.kernel.org
1014 S:      Maintained
1015 F:      Documentation/hid/amd-sfh*
1016 F:      drivers/hid/amd-sfh-hid/
1017
1018 AMS AS73211 DRIVER
1019 M:      Christian Eggers <ceggers@arri.de>
1020 L:      linux-iio@vger.kernel.org
1021 S:      Maintained
1022 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1023 F:      drivers/iio/light/as73211.c
1024
1025 ANALOG DEVICES INC AD7192 DRIVER
1026 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1027 L:      linux-iio@vger.kernel.org
1028 S:      Supported
1029 W:      http://ez.analog.com/community/linux-device-drivers
1030 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1031 F:      drivers/iio/adc/ad7192.c
1032
1033 ANALOG DEVICES INC AD7292 DRIVER
1034 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1035 L:      linux-iio@vger.kernel.org
1036 S:      Supported
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1039 F:      drivers/iio/adc/ad7292.c
1040
1041 ANALOG DEVICES INC AD7768-1 DRIVER
1042 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1043 L:      linux-iio@vger.kernel.org
1044 S:      Supported
1045 W:      http://ez.analog.com/community/linux-device-drivers
1046 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1047 F:      drivers/iio/adc/ad7768-1.c
1048
1049 ANALOG DEVICES INC AD7780 DRIVER
1050 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1051 M:      Renato Lui Geh <renatogeh@gmail.com>
1052 L:      linux-iio@vger.kernel.org
1053 S:      Supported
1054 W:      http://ez.analog.com/community/linux-device-drivers
1055 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1056 F:      drivers/iio/adc/ad7780.c
1057
1058 ANALOG DEVICES INC AD9389B DRIVER
1059 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1060 L:      linux-media@vger.kernel.org
1061 S:      Maintained
1062 F:      drivers/media/i2c/ad9389b*
1063
1064 ANALOG DEVICES INC ADGS1408 DRIVER
1065 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1066 S:      Supported
1067 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1068 F:      drivers/mux/adgs1408.c
1069
1070 ANALOG DEVICES INC ADIN DRIVER
1071 M:      Michael Hennerich <michael.hennerich@analog.com>
1072 L:      netdev@vger.kernel.org
1073 S:      Supported
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1076 F:      drivers/net/phy/adin.c
1077
1078 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1079 M:      Nuno Sa <nuno.sa@analog.com>
1080 L:      linux-iio@vger.kernel.org
1081 S:      Supported
1082 F:      drivers/iio/imu/adis.c
1083 F:      include/linux/iio/imu/adis.h
1084
1085 ANALOG DEVICES INC ADIS16460 DRIVER
1086 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      http://ez.analog.com/community/linux-device-drivers
1090 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1091 F:      drivers/iio/imu/adis16460.c
1092
1093 ANALOG DEVICES INC ADIS16475 DRIVER
1094 M:      Nuno Sa <nuno.sa@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 W:      http://ez.analog.com/community/linux-device-drivers
1097 S:      Supported
1098 F:      drivers/iio/imu/adis16475.c
1099 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1100
1101 ANALOG DEVICES INC ADM1177 DRIVER
1102 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1103 L:      linux-hwmon@vger.kernel.org
1104 S:      Supported
1105 W:      http://ez.analog.com/community/linux-device-drivers
1106 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1107 F:      drivers/hwmon/adm1177.c
1108
1109 ANALOG DEVICES INC ADP5061 DRIVER
1110 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1111 L:      linux-pm@vger.kernel.org
1112 S:      Supported
1113 W:      http://ez.analog.com/community/linux-device-drivers
1114 F:      drivers/power/supply/adp5061.c
1115
1116 ANALOG DEVICES INC ADV7180 DRIVER
1117 M:      Lars-Peter Clausen <lars@metafoo.de>
1118 L:      linux-media@vger.kernel.org
1119 S:      Supported
1120 W:      http://ez.analog.com/community/linux-device-drivers
1121 F:      drivers/media/i2c/adv7180.c
1122 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1123
1124 ANALOG DEVICES INC ADV748X DRIVER
1125 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1126 L:      linux-media@vger.kernel.org
1127 S:      Maintained
1128 F:      drivers/media/i2c/adv748x/*
1129
1130 ANALOG DEVICES INC ADV7511 DRIVER
1131 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1132 L:      linux-media@vger.kernel.org
1133 S:      Maintained
1134 F:      drivers/media/i2c/adv7511*
1135
1136 ANALOG DEVICES INC ADV7604 DRIVER
1137 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1138 L:      linux-media@vger.kernel.org
1139 S:      Maintained
1140 F:      drivers/media/i2c/adv7604*
1141 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1142
1143 ANALOG DEVICES INC ADV7842 DRIVER
1144 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1145 L:      linux-media@vger.kernel.org
1146 S:      Maintained
1147 F:      drivers/media/i2c/adv7842*
1148
1149 ANALOG DEVICES INC ADXRS290 DRIVER
1150 M:      Nishant Malpani <nish.malpani25@gmail.com>
1151 L:      linux-iio@vger.kernel.org
1152 S:      Supported
1153 F:      drivers/iio/gyro/adxrs290.c
1154 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1155
1156 ANALOG DEVICES INC ASOC CODEC DRIVERS
1157 M:      Lars-Peter Clausen <lars@metafoo.de>
1158 M:      Nuno Sá <nuno.sa@analog.com>
1159 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1160 S:      Supported
1161 W:      http://wiki.analog.com/
1162 W:      http://ez.analog.com/community/linux-device-drivers
1163 F:      sound/soc/codecs/ad1*
1164 F:      sound/soc/codecs/ad7*
1165 F:      sound/soc/codecs/adau*
1166 F:      sound/soc/codecs/adav*
1167 F:      sound/soc/codecs/sigmadsp.*
1168 F:      sound/soc/codecs/ssm*
1169
1170 ANALOG DEVICES INC DMA DRIVERS
1171 M:      Lars-Peter Clausen <lars@metafoo.de>
1172 S:      Supported
1173 W:      http://ez.analog.com/community/linux-device-drivers
1174 F:      drivers/dma/dma-axi-dmac.c
1175
1176 ANALOG DEVICES INC IIO DRIVERS
1177 M:      Lars-Peter Clausen <lars@metafoo.de>
1178 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1179 S:      Supported
1180 W:      http://wiki.analog.com/
1181 W:      http://ez.analog.com/community/linux-device-drivers
1182 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1183 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1184 F:      Documentation/devicetree/bindings/iio/*/adi,*
1185 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1186 F:      drivers/iio/*/ad*
1187 F:      drivers/iio/adc/ltc249*
1188 F:      drivers/iio/amplifiers/hmc425a.c
1189 F:      drivers/staging/iio/*/ad*
1190 X:      drivers/iio/*/adjd*
1191
1192 ANALOGBITS PLL LIBRARIES
1193 M:      Paul Walmsley <paul.walmsley@sifive.com>
1194 S:      Supported
1195 F:      drivers/clk/analogbits/*
1196 F:      include/linux/clk/analogbits*
1197
1198 ANDES ARCHITECTURE
1199 M:      Nick Hu <nickhu@andestech.com>
1200 M:      Greentime Hu <green.hu@gmail.com>
1201 M:      Vincent Chen <deanbo422@gmail.com>
1202 S:      Supported
1203 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1204 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1205 F:      Documentation/devicetree/bindings/nds32/
1206 F:      arch/nds32/
1207 N:      nds32
1208 K:      nds32
1209
1210 ANDROID CONFIG FRAGMENTS
1211 M:      Rob Herring <robh@kernel.org>
1212 S:      Supported
1213 F:      kernel/configs/android*
1214
1215 ANDROID DRIVERS
1216 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1217 M:      Arve Hjønnevåg <arve@android.com>
1218 M:      Todd Kjos <tkjos@android.com>
1219 M:      Martijn Coenen <maco@android.com>
1220 M:      Joel Fernandes <joel@joelfernandes.org>
1221 M:      Christian Brauner <christian@brauner.io>
1222 M:      Hridya Valsaraju <hridya@google.com>
1223 M:      Suren Baghdasaryan <surenb@google.com>
1224 L:      linux-kernel@vger.kernel.org
1225 S:      Supported
1226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1227 F:      drivers/android/
1228 F:      drivers/staging/android/
1229
1230 ANDROID GOLDFISH PIC DRIVER
1231 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1232 S:      Supported
1233 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1234 F:      drivers/irqchip/irq-goldfish-pic.c
1235
1236 ANDROID GOLDFISH RTC DRIVER
1237 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1238 S:      Supported
1239 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1240 F:      drivers/rtc/rtc-goldfish.c
1241
1242 AOA (Apple Onboard Audio) ALSA DRIVER
1243 M:      Johannes Berg <johannes@sipsolutions.net>
1244 L:      linuxppc-dev@lists.ozlabs.org
1245 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1246 S:      Maintained
1247 F:      sound/aoa/
1248
1249 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1250 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1251 L:      linux-iio@vger.kernel.org
1252 S:      Maintained
1253 F:      drivers/iio/adc/stx104.c
1254
1255 APM DRIVER
1256 M:      Jiri Kosina <jikos@kernel.org>
1257 S:      Odd fixes
1258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1259 F:      arch/x86/kernel/apm_32.c
1260 F:      drivers/char/apm-emulation.c
1261 F:      include/linux/apm_bios.h
1262 F:      include/uapi/linux/apm_bios.h
1263
1264 APPARMOR SECURITY MODULE
1265 M:      John Johansen <john.johansen@canonical.com>
1266 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1267 S:      Supported
1268 W:      wiki.apparmor.net
1269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1270 F:      Documentation/admin-guide/LSM/apparmor.rst
1271 F:      security/apparmor/
1272
1273 APPLE BCM5974 MULTITOUCH DRIVER
1274 M:      Henrik Rydberg <rydberg@bitmath.org>
1275 L:      linux-input@vger.kernel.org
1276 S:      Odd fixes
1277 F:      drivers/input/mouse/bcm5974.c
1278
1279 APPLE DART IOMMU DRIVER
1280 M:      Sven Peter <sven@svenpeter.dev>
1281 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1282 L:      iommu@lists.linux-foundation.org
1283 S:      Maintained
1284 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1285 F:      drivers/iommu/apple-dart.c
1286
1287 APPLE SMC DRIVER
1288 M:      Henrik Rydberg <rydberg@bitmath.org>
1289 L:      linux-hwmon@vger.kernel.org
1290 S:      Odd fixes
1291 F:      drivers/hwmon/applesmc.c
1292
1293 APPLETALK NETWORK LAYER
1294 L:      netdev@vger.kernel.org
1295 S:      Odd fixes
1296 F:      drivers/net/appletalk/
1297 F:      include/linux/atalk.h
1298 F:      include/uapi/linux/atalk.h
1299 F:      net/appletalk/
1300
1301 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1302 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1303 S:      Supported
1304 F:      arch/arm64/boot/dts/apm/
1305
1306 APPLIED MICRO (APM) X-GENE SOC EDAC
1307 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1308 S:      Supported
1309 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1310 F:      drivers/edac/xgene_edac.c
1311
1312 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1313 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1314 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1315 S:      Supported
1316 F:      drivers/net/ethernet/apm/xgene-v2/
1317
1318 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1319 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1320 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1321 M:      Quan Nguyen <quan@os.amperecomputing.com>
1322 S:      Supported
1323 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1324 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1325 F:      drivers/net/ethernet/apm/xgene/
1326 F:      drivers/net/mdio/mdio-xgene.c
1327
1328 APPLIED MICRO (APM) X-GENE SOC PMU
1329 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1330 S:      Supported
1331 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1332 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1333 F:      drivers/perf/xgene_pmu.c
1334
1335 APTINA CAMERA SENSOR PLL
1336 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1337 L:      linux-media@vger.kernel.org
1338 S:      Maintained
1339 F:      drivers/media/i2c/aptina-pll.*
1340
1341 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1342 M:      Aleksa Savic <savicaleksa83@gmail.com>
1343 L:      linux-hwmon@vger.kernel.org
1344 S:      Maintained
1345 F:      Documentation/hwmon/aquacomputer_d5next.rst
1346 F:      drivers/hwmon/aquacomputer_d5next.c
1347
1348 AQUANTIA ETHERNET DRIVER (atlantic)
1349 M:      Igor Russkikh <irusskikh@marvell.com>
1350 L:      netdev@vger.kernel.org
1351 S:      Supported
1352 W:      https://www.marvell.com/
1353 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1354 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1355 F:      drivers/net/ethernet/aquantia/atlantic/
1356
1357 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1358 M:      Egor Pomozov <epomozov@marvell.com>
1359 L:      netdev@vger.kernel.org
1360 S:      Supported
1361 W:      http://www.aquantia.com
1362 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1363
1364 ARASAN NAND CONTROLLER DRIVER
1365 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1366 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1367 L:      linux-mtd@lists.infradead.org
1368 S:      Maintained
1369 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1370 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1371
1372 ARC FRAMEBUFFER DRIVER
1373 M:      Jaya Kumar <jayalk@intworks.biz>
1374 S:      Maintained
1375 F:      drivers/video/fbdev/arcfb.c
1376 F:      drivers/video/fbdev/core/fb_defio.c
1377
1378 ARC PGU DRM DRIVER
1379 M:      Alexey Brodkin <abrodkin@synopsys.com>
1380 S:      Supported
1381 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1382 F:      drivers/gpu/drm/tiny/arcpgu.c
1383
1384 ARCNET NETWORK LAYER
1385 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1386 L:      netdev@vger.kernel.org
1387 S:      Maintained
1388 F:      drivers/net/arcnet/
1389 F:      include/uapi/linux/if_arcnet.h
1390
1391 ARDUCAM 64MP SENSOR DRIVER
1392 M:      Arducam Kernel Maintenance <info@arducam.com>
1393 L:      linux-media@vger.kernel.org
1394 S:      Maintained
1395 T:      git git://linuxtv.org/media_tree.git
1396 F:      Documentation/devicetree/bindings/media/i2c/arducam,64mp.yaml
1397 F:      drivers/media/i2c/arducam_64mp.c
1398
1399 ARDUCAM PIVARIETY SENSOR DRIVER
1400 M:      Arducam Kernel Maintenance <info@arducam.com>
1401 L:      linux-media@vger.kernel.org
1402 S:      Maintained
1403 T:      git git://linuxtv.org/media_tree.git
1404 F:      Documentation/devicetree/bindings/media/i2c/arducam-pivariety.yaml
1405 F:      drivers/media/i2c/arducam-pivariety.c
1406
1407 ARM ARCHITECTED TIMER DRIVER
1408 M:      Mark Rutland <mark.rutland@arm.com>
1409 M:      Marc Zyngier <maz@kernel.org>
1410 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1411 S:      Maintained
1412 F:      arch/arm/include/asm/arch_timer.h
1413 F:      arch/arm64/include/asm/arch_timer.h
1414 F:      drivers/clocksource/arm_arch_timer.c
1415
1416 ARM HDLCD DRM DRIVER
1417 M:      Liviu Dudau <liviu.dudau@arm.com>
1418 S:      Supported
1419 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1420 F:      drivers/gpu/drm/arm/hdlcd_*
1421
1422 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1423 M:      Linus Walleij <linus.walleij@linaro.org>
1424 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1425 S:      Maintained
1426 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1427 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1428 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1429 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1430 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1431 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1432 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1433 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1434 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1435 F:      arch/arm/boot/dts/arm-realview-*
1436 F:      arch/arm/boot/dts/integrator*
1437 F:      arch/arm/boot/dts/versatile*
1438 F:      arch/arm/mach-integrator/
1439 F:      arch/arm/mach-realview/
1440 F:      arch/arm/mach-versatile/
1441 F:      arch/arm/plat-versatile/
1442 F:      drivers/bus/arm-integrator-lm.c
1443 F:      drivers/clk/versatile/
1444 F:      drivers/i2c/busses/i2c-versatile.c
1445 F:      drivers/irqchip/irq-versatile-fpga.c
1446 F:      drivers/mtd/maps/physmap-versatile.*
1447 F:      drivers/power/reset/arm-versatile-reboot.c
1448 F:      drivers/soc/versatile/
1449
1450 ARM KOMEDA DRM-KMS DRIVER
1451 M:      James (Qian) Wang <james.qian.wang@arm.com>
1452 M:      Liviu Dudau <liviu.dudau@arm.com>
1453 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1454 L:      Mali DP Maintainers <malidp@foss.arm.com>
1455 S:      Supported
1456 T:      git git://anongit.freedesktop.org/drm/drm-misc
1457 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1458 F:      Documentation/gpu/komeda-kms.rst
1459 F:      drivers/gpu/drm/arm/display/include/
1460 F:      drivers/gpu/drm/arm/display/komeda/
1461
1462 ARM MALI PANFROST DRM DRIVER
1463 M:      Rob Herring <robh@kernel.org>
1464 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1465 R:      Steven Price <steven.price@arm.com>
1466 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1467 L:      dri-devel@lists.freedesktop.org
1468 S:      Supported
1469 T:      git git://anongit.freedesktop.org/drm/drm-misc
1470 F:      drivers/gpu/drm/panfrost/
1471 F:      include/uapi/drm/panfrost_drm.h
1472
1473 ARM MALI-DP DRM DRIVER
1474 M:      Liviu Dudau <liviu.dudau@arm.com>
1475 M:      Brian Starkey <brian.starkey@arm.com>
1476 L:      Mali DP Maintainers <malidp@foss.arm.com>
1477 S:      Supported
1478 T:      git git://anongit.freedesktop.org/drm/drm-misc
1479 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1480 F:      Documentation/gpu/afbc.rst
1481 F:      drivers/gpu/drm/arm/
1482
1483 ARM MFM AND FLOPPY DRIVERS
1484 M:      Ian Molton <spyro@f2s.com>
1485 S:      Maintained
1486 F:      arch/arm/include/asm/floppy.h
1487 F:      arch/arm/mach-rpc/floppydma.S
1488
1489 ARM PMU PROFILING AND DEBUGGING
1490 M:      Will Deacon <will@kernel.org>
1491 M:      Mark Rutland <mark.rutland@arm.com>
1492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1493 S:      Maintained
1494 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1495 F:      Documentation/devicetree/bindings/perf/
1496 F:      arch/arm*/include/asm/hw_breakpoint.h
1497 F:      arch/arm*/include/asm/perf_event.h
1498 F:      arch/arm*/kernel/hw_breakpoint.c
1499 F:      arch/arm*/kernel/perf_*
1500 F:      drivers/perf/
1501 F:      include/linux/perf/arm_pmu.h
1502
1503 ARM PORT
1504 M:      Russell King <linux@armlinux.org.uk>
1505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506 S:      Odd Fixes
1507 W:      http://www.armlinux.org.uk/
1508 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1509 F:      arch/arm/
1510 X:      arch/arm/boot/dts/
1511
1512 ARM PRIMECELL AACI PL041 DRIVER
1513 M:      Russell King <linux@armlinux.org.uk>
1514 S:      Odd Fixes
1515 F:      sound/arm/aaci.*
1516
1517 ARM PRIMECELL BUS SUPPORT
1518 M:      Russell King <linux@armlinux.org.uk>
1519 S:      Odd Fixes
1520 F:      drivers/amba/
1521 F:      include/linux/amba/bus.h
1522
1523 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1524 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1525 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1526 L:      linux-mtd@lists.infradead.org
1527 S:      Maintained
1528 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1529 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1530
1531 ARM PRIMECELL PL35X SMC DRIVER
1532 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1533 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1535 S:      Maintained
1536 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1537 F:      drivers/memory/pl353-smc.c
1538
1539 ARM PRIMECELL CLCD PL110 DRIVER
1540 M:      Russell King <linux@armlinux.org.uk>
1541 S:      Odd Fixes
1542 F:      drivers/video/fbdev/amba-clcd.*
1543
1544 ARM PRIMECELL KMI PL050 DRIVER
1545 M:      Russell King <linux@armlinux.org.uk>
1546 S:      Odd Fixes
1547 F:      drivers/input/serio/ambakmi.*
1548 F:      include/linux/amba/kmi.h
1549
1550 ARM PRIMECELL MMCI PL180/1 DRIVER
1551 M:      Russell King <linux@armlinux.org.uk>
1552 S:      Odd Fixes
1553 F:      drivers/mmc/host/mmci.*
1554 F:      include/linux/amba/mmci.h
1555
1556 ARM PRIMECELL SSP PL022 SPI DRIVER
1557 M:      Linus Walleij <linus.walleij@linaro.org>
1558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1559 S:      Maintained
1560 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1561 F:      drivers/spi/spi-pl022.c
1562
1563 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1564 M:      Russell King <linux@armlinux.org.uk>
1565 S:      Odd Fixes
1566 F:      drivers/tty/serial/amba-pl01*.c
1567 F:      include/linux/amba/serial.h
1568
1569 ARM PRIMECELL VIC PL190/PL192 DRIVER
1570 M:      Linus Walleij <linus.walleij@linaro.org>
1571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1572 S:      Maintained
1573 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1574 F:      drivers/irqchip/irq-vic.c
1575
1576 ARM SMC WATCHDOG DRIVER
1577 M:      Julius Werner <jwerner@chromium.org>
1578 R:      Evan Benn <evanbenn@chromium.org>
1579 S:      Maintained
1580 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1581 F:      drivers/watchdog/arm_smc_wdt.c
1582
1583 ARM SMMU DRIVERS
1584 M:      Will Deacon <will@kernel.org>
1585 R:      Robin Murphy <robin.murphy@arm.com>
1586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1587 S:      Maintained
1588 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1589 F:      drivers/iommu/arm/
1590 F:      drivers/iommu/io-pgtable-arm*
1591
1592 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1593 M:      Arnd Bergmann <arnd@arndb.de>
1594 M:      Olof Johansson <olof@lixom.net>
1595 M:      soc@kernel.org
1596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1597 S:      Maintained
1598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1599 F:      arch/arm/boot/dts/Makefile
1600 F:      arch/arm64/boot/dts/Makefile
1601
1602 ARM SUB-ARCHITECTURES
1603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 S:      Maintained
1605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1606 F:      arch/arm/mach-*/
1607 F:      arch/arm/plat-*/
1608
1609 ARM/ACTIONS SEMI ARCHITECTURE
1610 M:      Andreas Färber <afaerber@suse.de>
1611 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1613 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1614 S:      Maintained
1615 F:      Documentation/devicetree/bindings/arm/actions.yaml
1616 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1617 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1618 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1619 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1620 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1621 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1622 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1623 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1624 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1625 F:      arch/arm/boot/dts/owl-*
1626 F:      arch/arm/mach-actions/
1627 F:      arch/arm64/boot/dts/actions/
1628 F:      drivers/clk/actions/
1629 F:      drivers/clocksource/timer-owl*
1630 F:      drivers/dma/owl-dma.c
1631 F:      drivers/i2c/busses/i2c-owl.c
1632 F:      drivers/irqchip/irq-owl-sirq.c
1633 F:      drivers/mmc/host/owl-mmc.c
1634 F:      drivers/net/ethernet/actions/
1635 F:      drivers/pinctrl/actions/*
1636 F:      drivers/soc/actions/
1637 F:      include/dt-bindings/power/owl-*
1638 F:      include/dt-bindings/reset/actions,*
1639 F:      include/linux/soc/actions/
1640 N:      owl
1641
1642 ARM/ADS SPHERE MACHINE SUPPORT
1643 M:      Lennert Buytenhek <kernel@wantstofly.org>
1644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1645 S:      Maintained
1646
1647 ARM/AFEB9260 MACHINE SUPPORT
1648 M:      Sergey Lapin <slapin@ossfans.org>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 S:      Maintained
1651
1652 ARM/AJECO 1ARM MACHINE SUPPORT
1653 M:      Lennert Buytenhek <kernel@wantstofly.org>
1654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655 S:      Maintained
1656
1657 ARM/Allwinner SoC Clock Support
1658 M:      Emilio López <emilio@elopez.com.ar>
1659 S:      Maintained
1660 F:      drivers/clk/sunxi/
1661
1662 ARM/Allwinner sunXi SoC support
1663 M:      Maxime Ripard <mripard@kernel.org>
1664 M:      Chen-Yu Tsai <wens@csie.org>
1665 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1667 S:      Maintained
1668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1669 L:      linux-sunxi@lists.linux.dev
1670 F:      arch/arm/mach-sunxi/
1671 F:      arch/arm64/boot/dts/allwinner/
1672 F:      drivers/clk/sunxi-ng/
1673 F:      drivers/pinctrl/sunxi/
1674 F:      drivers/soc/sunxi/
1675 N:      allwinner
1676 N:      sun[x456789]i
1677 N:      sun50i
1678
1679 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1680 M:      Neil Armstrong <narmstrong@baylibre.com>
1681 M:      Jerome Brunet <jbrunet@baylibre.com>
1682 L:      linux-amlogic@lists.infradead.org
1683 S:      Maintained
1684 F:      Documentation/devicetree/bindings/clock/amlogic*
1685 F:      drivers/clk/meson/
1686 F:      include/dt-bindings/clock/gxbb*
1687 F:      include/dt-bindings/clock/meson*
1688
1689 ARM/Amlogic Meson SoC Crypto Drivers
1690 M:      Corentin Labbe <clabbe@baylibre.com>
1691 L:      linux-crypto@vger.kernel.org
1692 L:      linux-amlogic@lists.infradead.org
1693 S:      Maintained
1694 F:      Documentation/devicetree/bindings/crypto/amlogic*
1695 F:      drivers/crypto/amlogic/
1696
1697 ARM/Amlogic Meson SoC Sound Drivers
1698 M:      Jerome Brunet <jbrunet@baylibre.com>
1699 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1700 S:      Maintained
1701 F:      Documentation/devicetree/bindings/sound/amlogic*
1702 F:      sound/soc/meson/
1703
1704 ARM/Amlogic Meson SoC support
1705 M:      Neil Armstrong <narmstrong@baylibre.com>
1706 M:      Kevin Hilman <khilman@baylibre.com>
1707 R:      Jerome Brunet <jbrunet@baylibre.com>
1708 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 L:      linux-amlogic@lists.infradead.org
1711 S:      Maintained
1712 W:      http://linux-meson.com/
1713 F:      arch/arm/boot/dts/meson*
1714 F:      arch/arm/mach-meson/
1715 F:      arch/arm64/boot/dts/amlogic/
1716 F:      drivers/mmc/host/meson*
1717 F:      drivers/pinctrl/meson/
1718 F:      drivers/rtc/rtc-meson*
1719 F:      drivers/soc/amlogic/
1720 N:      meson
1721
1722 ARM/Annapurna Labs ALPINE ARCHITECTURE
1723 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1724 M:      Antoine Tenart <atenart@kernel.org>
1725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 S:      Maintained
1727 F:      arch/arm/boot/dts/alpine*
1728 F:      arch/arm/mach-alpine/
1729 F:      arch/arm64/boot/dts/amazon/
1730 F:      drivers/*/*alpine*
1731
1732 ARM/APPLE MACHINE SUPPORT
1733 M:      Hector Martin <marcan@marcan.st>
1734 M:      Sven Peter <sven@svenpeter.dev>
1735 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 S:      Maintained
1738 W:      https://asahilinux.org
1739 B:      https://github.com/AsahiLinux/linux/issues
1740 C:      irc://irc.oftc.net/asahi-dev
1741 T:      git https://github.com/AsahiLinux/linux.git
1742 F:      Documentation/devicetree/bindings/arm/apple.yaml
1743 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1744 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1745 F:      arch/arm64/boot/dts/apple/
1746 F:      drivers/irqchip/irq-apple-aic.c
1747 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1748 F:      include/dt-bindings/pinctrl/apple.h
1749
1750 ARM/ARTPEC MACHINE SUPPORT
1751 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1752 M:      Lars Persson <lars.persson@axis.com>
1753 L:      linux-arm-kernel@axis.com
1754 S:      Maintained
1755 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1756 F:      arch/arm/boot/dts/artpec6*
1757 F:      arch/arm/mach-artpec
1758 F:      drivers/clk/axis
1759 F:      drivers/crypto/axis
1760 F:      drivers/mmc/host/usdhi6rol0.c
1761 F:      drivers/pinctrl/pinctrl-artpec*
1762
1763 ARM/ASPEED I2C DRIVER
1764 M:      Brendan Higgins <brendanhiggins@google.com>
1765 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1766 R:      Joel Stanley <joel@jms.id.au>
1767 L:      linux-i2c@vger.kernel.org
1768 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1769 S:      Maintained
1770 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1771 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1772 F:      drivers/i2c/busses/i2c-aspeed.c
1773 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1774
1775 ARM/ASPEED MACHINE SUPPORT
1776 M:      Joel Stanley <joel@jms.id.au>
1777 R:      Andrew Jeffery <andrew@aj.id.au>
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1780 S:      Supported
1781 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1783 F:      arch/arm/boot/dts/aspeed-*
1784 F:      arch/arm/mach-aspeed/
1785 N:      aspeed
1786
1787 ARM/BITMAIN ARCHITECTURE
1788 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790 S:      Maintained
1791 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1792 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1793 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1794 F:      arch/arm64/boot/dts/bitmain/
1795 F:      drivers/clk/clk-bm1880.c
1796 F:      drivers/pinctrl/pinctrl-bm1880.c
1797
1798 ARM/CALXEDA HIGHBANK ARCHITECTURE
1799 M:      Andre Przywara <andre.przywara@arm.com>
1800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1801 S:      Maintained
1802 F:      arch/arm/boot/dts/ecx-*.dts*
1803 F:      arch/arm/boot/dts/highbank.dts
1804 F:      arch/arm/mach-highbank/
1805
1806 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1807 M:      Krzysztof Halasa <khalasa@piap.pl>
1808 S:      Maintained
1809 F:      arch/arm/mach-cns3xxx/
1810
1811 ARM/CAVIUM THUNDER NETWORK DRIVER
1812 M:      Sunil Goutham <sgoutham@marvell.com>
1813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S:      Supported
1815 F:      drivers/net/ethernet/cavium/thunder/
1816
1817 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1818 M:      Lukasz Majewski <lukma@denx.de>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/mach-ep93xx/ts72xx.c
1822
1823 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1824 M:      Alexander Shiyan <shc_work@mail.ru>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Odd Fixes
1827 N:      clps711x
1828
1829 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1830 M:      Lennert Buytenhek <kernel@wantstofly.org>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 S:      Maintained
1833
1834 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1835 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1836 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Maintained
1839 F:      arch/arm/mach-ep93xx/
1840 F:      arch/arm/mach-ep93xx/include/mach/
1841
1842 ARM/CLKDEV SUPPORT
1843 M:      Russell King <linux@armlinux.org.uk>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Maintained
1846 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1847 F:      drivers/clk/clkdev.c
1848
1849 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1850 M:      Baruch Siach <baruch@tkos.co.il>
1851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1852 S:      Maintained
1853 F:      arch/arm/boot/dts/cx92755*
1854 N:      digicolor
1855
1856 ARM/CONTEC MICRO9 MACHINE SUPPORT
1857 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1858 S:      Maintained
1859 F:      arch/arm/mach-ep93xx/micro9.c
1860
1861 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1862 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1863 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1864 R:      Mike Leach <mike.leach@linaro.org>
1865 R:      Leo Yan <leo.yan@linaro.org>
1866 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1868 S:      Maintained
1869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1870 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1871 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1872 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1873 F:      Documentation/devicetree/bindings/arm/coresight.txt
1874 F:      Documentation/devicetree/bindings/arm/ete.yaml
1875 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1876 F:      Documentation/trace/coresight/*
1877 F:      drivers/hwtracing/coresight/*
1878 F:      include/dt-bindings/arm/coresight-cti-dt.h
1879 F:      include/linux/coresight*
1880 F:      tools/perf/arch/arm/util/auxtrace.c
1881 F:      tools/perf/arch/arm/util/cs-etm.c
1882 F:      tools/perf/arch/arm/util/cs-etm.h
1883 F:      tools/perf/arch/arm/util/pmu.c
1884 F:      tools/perf/util/cs-etm-decoder/*
1885 F:      tools/perf/util/cs-etm.*
1886
1887 ARM/CORGI MACHINE SUPPORT
1888 M:      Richard Purdie <rpurdie@rpsys.net>
1889 S:      Maintained
1890
1891 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1892 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1893 M:      Linus Walleij <linus.walleij@linaro.org>
1894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1895 S:      Maintained
1896 T:      git git://github.com/ulli-kroll/linux.git
1897 F:      Documentation/devicetree/bindings/arm/gemini.txt
1898 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1899 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1900 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1901 F:      arch/arm/boot/dts/gemini*
1902 F:      arch/arm/mach-gemini/
1903 F:      drivers/crypto/gemini/
1904 F:      drivers/net/ethernet/cortina/
1905 F:      drivers/pinctrl/pinctrl-gemini.c
1906 F:      drivers/rtc/rtc-ftrtc010.c
1907
1908 ARM/CZ.NIC TURRIS SUPPORT
1909 M:      Marek Behún <kabel@kernel.org>
1910 S:      Maintained
1911 W:      https://www.turris.cz/
1912 F:      Documentation/ABI/testing/debugfs-moxtet
1913 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1914 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1915 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1916 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1917 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1918 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1919 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1920 F:      drivers/bus/moxtet.c
1921 F:      drivers/firmware/turris-mox-rwtm.c
1922 F:      drivers/leds/leds-turris-omnia.c
1923 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1924 F:      drivers/gpio/gpio-moxtet.c
1925 F:      drivers/watchdog/armada_37xx_wdt.c
1926 F:      include/dt-bindings/bus/moxtet.h
1927 F:      include/linux/armada-37xx-rwtm-mailbox.h
1928 F:      include/linux/moxtet.h
1929
1930 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1931 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S:      Maintained
1934 F:      arch/arm/mach-pxa/ezx.c
1935
1936 ARM/FARADAY FA526 PORT
1937 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1939 S:      Maintained
1940 T:      git git://git.berlios.de/gemini-board
1941 F:      arch/arm/mm/*-fa*
1942
1943 ARM/FOOTBRIDGE ARCHITECTURE
1944 M:      Russell King <linux@armlinux.org.uk>
1945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 S:      Maintained
1947 W:      http://www.armlinux.org.uk/
1948 F:      arch/arm/include/asm/hardware/dec21285.h
1949 F:      arch/arm/mach-footbridge/
1950
1951 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1952 M:      Shawn Guo <shawnguo@kernel.org>
1953 M:      Sascha Hauer <s.hauer@pengutronix.de>
1954 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1955 R:      Fabio Estevam <festevam@gmail.com>
1956 R:      NXP Linux Team <linux-imx@nxp.com>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1960 X:      drivers/media/i2c/
1961 N:      imx
1962 N:      mxs
1963
1964 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1965 M:      Shawn Guo <shawnguo@kernel.org>
1966 M:      Li Yang <leoyang.li@nxp.com>
1967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 S:      Maintained
1969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1970 F:      arch/arm/boot/dts/ls1021a*
1971 F:      arch/arm64/boot/dts/freescale/fsl-*
1972 F:      arch/arm64/boot/dts/freescale/qoriq-*
1973
1974 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1975 M:      Shawn Guo <shawnguo@kernel.org>
1976 M:      Sascha Hauer <s.hauer@pengutronix.de>
1977 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1978 R:      Stefan Agner <stefan@agner.ch>
1979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S:      Maintained
1981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1982 F:      arch/arm/boot/dts/vf*
1983 F:      arch/arm/mach-imx/*vf610*
1984
1985 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1986 M:      Lennert Buytenhek <kernel@wantstofly.org>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989
1990 ARM/GUMSTIX MACHINE SUPPORT
1991 M:      Steve Sakoman <sakoman@gmail.com>
1992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1993 S:      Maintained
1994
1995 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1996 M:      Philipp Zabel <philipp.zabel@gmail.com>
1997 M:      Paul Parsons <lost.distance@yahoo.com>
1998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1999 S:      Maintained
2000 F:      arch/arm/mach-pxa/hx4700.c
2001 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2002 F:      sound/soc/pxa/hx4700.c
2003
2004 ARM/HISILICON SOC SUPPORT
2005 M:      Wei Xu <xuwei5@hisilicon.com>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Supported
2008 W:      http://www.hisilicon.com
2009 T:      git git://github.com/hisilicon/linux-hisi.git
2010 F:      arch/arm/boot/dts/hi3*
2011 F:      arch/arm/boot/dts/hip*
2012 F:      arch/arm/boot/dts/hisi*
2013 F:      arch/arm/mach-hisi/
2014 F:      arch/arm64/boot/dts/hisilicon/
2015
2016 ARM/HP JORNADA 7XX MACHINE SUPPORT
2017 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2018 S:      Maintained
2019 W:      www.jlime.com
2020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2021 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2022 F:      arch/arm/mach-sa1100/jornada720.c
2023
2024 ARM/IGEP MACHINE SUPPORT
2025 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2026 M:      Javier Martinez Canillas <javier@dowhile0.org>
2027 L:      linux-omap@vger.kernel.org
2028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2029 S:      Maintained
2030 F:      arch/arm/boot/dts/omap3-igep*
2031
2032 ARM/INCOME PXA270 SUPPORT
2033 M:      Marek Vasut <marek.vasut@gmail.com>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2037
2038 ARM/INTEL IOP32X ARM ARCHITECTURE
2039 M:      Lennert Buytenhek <kernel@wantstofly.org>
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042
2043 ARM/INTEL IQ81342EX MACHINE SUPPORT
2044 M:      Lennert Buytenhek <kernel@wantstofly.org>
2045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2046 S:      Maintained
2047
2048 ARM/INTEL IXDP2850 MACHINE SUPPORT
2049 M:      Lennert Buytenhek <kernel@wantstofly.org>
2050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2051 S:      Maintained
2052
2053 ARM/INTEL IXP4XX ARM ARCHITECTURE
2054 M:      Linus Walleij <linusw@kernel.org>
2055 M:      Imre Kaloz <kaloz@openwrt.org>
2056 M:      Krzysztof Halasa <khalasa@piap.pl>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 S:      Maintained
2059 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2060 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2061 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2062 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2063 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2064 F:      arch/arm/mach-ixp4xx/
2065 F:      drivers/bus/intel-ixp4xx-eb.c
2066 F:      drivers/clocksource/timer-ixp4xx.c
2067 F:      drivers/crypto/ixp4xx_crypto.c
2068 F:      drivers/gpio/gpio-ixp4xx.c
2069 F:      drivers/irqchip/irq-ixp4xx.c
2070 F:      include/linux/irqchip/irq-ixp4xx.h
2071 F:      include/linux/platform_data/timer-ixp4xx.h
2072
2073 ARM/INTEL KEEMBAY ARCHITECTURE
2074 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2075 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2076 S:      Maintained
2077 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2078 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2079 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2080
2081 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2082 M:      Jonathan Cameron <jic23@cam.ac.uk>
2083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 S:      Maintained
2085 F:      arch/arm/mach-pxa/stargate2.c
2086 F:      drivers/pcmcia/pxa2xx_stargate2.c
2087
2088 ARM/INTEL XSC3 (MANZANO) ARM CORE
2089 M:      Lennert Buytenhek <kernel@wantstofly.org>
2090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 S:      Maintained
2092
2093 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2094 M:      Lennert Buytenhek <kernel@wantstofly.org>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097
2098 ARM/LG1K ARCHITECTURE
2099 M:      Chanho Min <chanho.min@lge.com>
2100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S:      Maintained
2102 F:      arch/arm64/boot/dts/lg/
2103
2104 ARM/LOGICPD PXA270 MACHINE SUPPORT
2105 M:      Lennert Buytenhek <kernel@wantstofly.org>
2106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 S:      Maintained
2108
2109 ARM/LPC18XX ARCHITECTURE
2110 M:      Vladimir Zapolskiy <vz@mleia.com>
2111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 S:      Maintained
2113 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2114 F:      arch/arm/boot/dts/lpc43*
2115 F:      drivers/i2c/busses/i2c-lpc2k.c
2116 F:      drivers/memory/pl172.c
2117 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2118 F:      drivers/rtc/rtc-lpc24xx.c
2119 N:      lpc18xx
2120
2121 ARM/LPC32XX SOC SUPPORT
2122 M:      Vladimir Zapolskiy <vz@mleia.com>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S:      Maintained
2125 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2126 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2127 F:      arch/arm/boot/dts/lpc32*
2128 F:      arch/arm/mach-lpc32xx/
2129 F:      drivers/i2c/busses/i2c-pnx.c
2130 F:      drivers/net/ethernet/nxp/lpc_eth.c
2131 F:      drivers/usb/host/ohci-nxp.c
2132 F:      drivers/watchdog/pnx4008_wdt.c
2133 N:      lpc32xx
2134
2135 ARM/MAGICIAN MACHINE SUPPORT
2136 M:      Philipp Zabel <philipp.zabel@gmail.com>
2137 S:      Maintained
2138
2139 ARM/Marvell Dove/MV78xx0/Orion SOC support
2140 M:      Andrew Lunn <andrew@lunn.ch>
2141 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2142 M:      Gregory Clement <gregory.clement@bootlin.com>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Maintained
2145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2146 F:      Documentation/devicetree/bindings/soc/dove/
2147 F:      arch/arm/boot/dts/dove*
2148 F:      arch/arm/boot/dts/orion5x*
2149 F:      arch/arm/mach-dove/
2150 F:      arch/arm/mach-mv78xx0/
2151 F:      arch/arm/mach-orion5x/
2152 F:      arch/arm/plat-orion/
2153 F:      drivers/soc/dove/
2154
2155 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2156 M:      Andrew Lunn <andrew@lunn.ch>
2157 M:      Gregory Clement <gregory.clement@bootlin.com>
2158 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2160 S:      Maintained
2161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2162 F:      arch/arm/boot/dts/armada*
2163 F:      arch/arm/boot/dts/kirkwood*
2164 F:      arch/arm/configs/mvebu_*_defconfig
2165 F:      arch/arm/mach-mvebu/
2166 F:      arch/arm64/boot/dts/marvell/armada*
2167 F:      arch/arm64/boot/dts/marvell/cn913*
2168 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2169 F:      drivers/cpufreq/armada-8k-cpufreq.c
2170 F:      drivers/cpufreq/mvebu-cpufreq.c
2171 F:      drivers/irqchip/irq-armada-370-xp.c
2172 F:      drivers/irqchip/irq-mvebu-*
2173 F:      drivers/pinctrl/mvebu/
2174 F:      drivers/rtc/rtc-armada38x.c
2175
2176 ARM/Mediatek RTC DRIVER
2177 M:      Eddie Huang <eddie.huang@mediatek.com>
2178 M:      Sean Wang <sean.wang@mediatek.com>
2179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2180 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2181 S:      Maintained
2182 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2183 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2184 F:      drivers/rtc/rtc-mt2712.c
2185 F:      drivers/rtc/rtc-mt6397.c
2186 F:      drivers/rtc/rtc-mt7622.c
2187
2188 ARM/Mediatek SoC support
2189 M:      Matthias Brugger <matthias.bgg@gmail.com>
2190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2191 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2192 S:      Maintained
2193 W:      https://mtk.wiki.kernel.org/
2194 C:      irc://chat.freenode.net/linux-mediatek
2195 F:      arch/arm/boot/dts/mt6*
2196 F:      arch/arm/boot/dts/mt7*
2197 F:      arch/arm/boot/dts/mt8*
2198 F:      arch/arm/mach-mediatek/
2199 F:      arch/arm64/boot/dts/mediatek/
2200 F:      drivers/soc/mediatek/
2201 N:      mtk
2202 N:      mt[678]
2203 K:      mediatek
2204
2205 ARM/Mediatek USB3 PHY DRIVER
2206 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2208 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2209 S:      Maintained
2210 F:      Documentation/devicetree/bindings/phy/mediatek,*
2211 F:      drivers/phy/mediatek/
2212
2213 ARM/Microchip (AT91) SoC support
2214 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2215 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2216 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2218 S:      Supported
2219 W:      http://www.linux4sam.org
2220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2221 F:      arch/arm/boot/dts/at91*.dts
2222 F:      arch/arm/boot/dts/at91*.dtsi
2223 F:      arch/arm/boot/dts/sama*.dts
2224 F:      arch/arm/boot/dts/sama*.dtsi
2225 F:      arch/arm/include/debug/at91.S
2226 F:      arch/arm/mach-at91/
2227 F:      drivers/memory/atmel*
2228 F:      drivers/watchdog/sama5d4_wdt.c
2229 F:      include/soc/at91/
2230 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2231 X:      drivers/net/wireless/atmel/
2232 N:      at91
2233 N:      atmel
2234
2235 ARM/Microchip Sparx5 SoC support
2236 M:      Lars Povlsen <lars.povlsen@microchip.com>
2237 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2238 M:      UNGLinuxDriver@microchip.com
2239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2240 S:      Supported
2241 T:      git git://github.com/microchip-ung/linux-upstream.git
2242 F:      arch/arm64/boot/dts/microchip/
2243 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2244 N:      sparx5
2245
2246 Microchip Timer Counter Block (TCB) Capture Driver
2247 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2249 L:      linux-iio@vger.kernel.org
2250 S:      Maintained
2251 F:      drivers/counter/microchip-tcb-capture.c
2252
2253 ARM/MIOA701 MACHINE SUPPORT
2254 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2256 S:      Maintained
2257 F:      arch/arm/mach-pxa/mioa701.c
2258
2259 ARM/MStar/Sigmastar Armv7 SoC support
2260 M:      Daniel Palmer <daniel@thingy.jp>
2261 M:      Romain Perier <romain.perier@gmail.com>
2262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2263 S:      Maintained
2264 W:      http://linux-chenxing.org/
2265 T:      git git://github.com/linux-chenxing/linux.git
2266 F:      Documentation/devicetree/bindings/arm/mstar/*
2267 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2268 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2269 F:      arch/arm/boot/dts/mstar-*
2270 F:      arch/arm/mach-mstar/
2271 F:      drivers/clk/mstar/
2272 F:      drivers/gpio/gpio-msc313.c
2273 F:      drivers/watchdog/msc313e_wdt.c
2274 F:      include/dt-bindings/clock/mstar-*
2275 F:      include/dt-bindings/gpio/msc313-gpio.h
2276
2277 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2278 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2279 S:      Maintained
2280
2281 ARM/NOMADIK/Ux500 ARCHITECTURES
2282 M:      Linus Walleij <linus.walleij@linaro.org>
2283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2284 S:      Maintained
2285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2286 F:      Documentation/devicetree/bindings/arm/ste-*
2287 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2288 F:      Documentation/devicetree/bindings/arm/ux500/
2289 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2290 F:      arch/arm/boot/dts/ste-*
2291 F:      arch/arm/mach-nomadik/
2292 F:      arch/arm/mach-ux500/
2293 F:      drivers/clk/clk-nomadik.c
2294 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2295 F:      drivers/dma/ste_dma40*
2296 F:      drivers/hwspinlock/u8500_hsem.c
2297 F:      drivers/i2c/busses/i2c-nomadik.c
2298 F:      drivers/iio/adc/ab8500-gpadc.c
2299 F:      drivers/mfd/ab8500*
2300 F:      drivers/mfd/abx500*
2301 F:      drivers/mfd/db8500*
2302 F:      drivers/pinctrl/nomadik/
2303 F:      drivers/rtc/rtc-ab8500.c
2304 F:      drivers/rtc/rtc-pl031.c
2305 F:      drivers/soc/ux500/
2306
2307 ARM/NUVOTON NPCM ARCHITECTURE
2308 M:      Avi Fishman <avifishman70@gmail.com>
2309 M:      Tomer Maimon <tmaimon77@gmail.com>
2310 M:      Tali Perry <tali.perry1@gmail.com>
2311 R:      Patrick Venture <venture@google.com>
2312 R:      Nancy Yuen <yuenn@google.com>
2313 R:      Benjamin Fair <benjaminfair@google.com>
2314 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2315 S:      Supported
2316 F:      Documentation/devicetree/bindings/*/*/*npcm*
2317 F:      Documentation/devicetree/bindings/*/*npcm*
2318 F:      arch/arm/boot/dts/nuvoton-npcm*
2319 F:      arch/arm/mach-npcm/
2320 F:      drivers/*/*npcm*
2321 F:      drivers/*/*/*npcm*
2322 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2323
2324 ARM/NUVOTON WPCM450 ARCHITECTURE
2325 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2326 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2327 S:      Maintained
2328 F:      Documentation/devicetree/bindings/*/*wpcm*
2329 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2330 F:      arch/arm/mach-npcm/wpcm450.c
2331 F:      drivers/*/*wpcm*
2332
2333 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2334 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2335 S:      Orphan
2336 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2337 F:      arch/arm/mach-s3c/gta02.h
2338 F:      arch/arm/mach-s3c/mach-gta02.c
2339
2340 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2341 M:      Alexander Clouter <alex@digriz.org.uk>
2342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2343 S:      Maintained
2344 W:      http://www.digriz.org.uk/ts78xx/kernel
2345 F:      arch/arm/mach-orion5x/ts78xx-*
2346
2347 ARM/OXNAS platform support
2348 M:      Neil Armstrong <narmstrong@baylibre.com>
2349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2351 S:      Maintained
2352 F:      arch/arm/boot/dts/ox8*.dts*
2353 F:      arch/arm/mach-oxnas/
2354 F:      drivers/power/reset/oxnas-restart.c
2355 N:      oxnas
2356
2357 ARM/PALM TREO SUPPORT
2358 M:      Tomas Cech <sleep_walker@suse.com>
2359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2360 S:      Maintained
2361 W:      http://hackndev.com
2362 F:      arch/arm/mach-pxa/palmtreo.*
2363
2364 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2365 M:      Marek Vasut <marek.vasut@gmail.com>
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 S:      Maintained
2368 W:      http://hackndev.com
2369 F:      arch/arm/mach-pxa/include/mach/palmld.h
2370 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2371 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2372 F:      arch/arm/mach-pxa/palmld.c
2373 F:      arch/arm/mach-pxa/palmt5.*
2374 F:      arch/arm/mach-pxa/palmtc.c
2375 F:      arch/arm/mach-pxa/palmte2.*
2376 F:      arch/arm/mach-pxa/palmtx.c
2377
2378 ARM/PALMZ72 SUPPORT
2379 M:      Sergey Lapin <slapin@ossfans.org>
2380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2381 S:      Maintained
2382 W:      http://hackndev.com
2383 F:      arch/arm/mach-pxa/palmz72.*
2384
2385 ARM/PLEB SUPPORT
2386 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2387 S:      Maintained
2388 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2389
2390 ARM/PT DIGITAL BOARD PORT
2391 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2393 S:      Maintained
2394 W:      http://www.armlinux.org.uk/
2395
2396 ARM/QUALCOMM SUPPORT
2397 M:      Andy Gross <agross@kernel.org>
2398 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2399 L:      linux-arm-msm@vger.kernel.org
2400 S:      Maintained
2401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2402 F:      Documentation/devicetree/bindings/*/qcom*
2403 F:      Documentation/devicetree/bindings/soc/qcom/
2404 F:      arch/arm/boot/dts/qcom-*.dts
2405 F:      arch/arm/boot/dts/qcom-*.dtsi
2406 F:      arch/arm/mach-qcom/
2407 F:      arch/arm64/boot/dts/qcom/
2408 F:      drivers/*/*/qcom*
2409 F:      drivers/*/*/qcom/
2410 F:      drivers/*/pm8???-*
2411 F:      drivers/*/qcom*
2412 F:      drivers/*/qcom/
2413 F:      drivers/bluetooth/btqcomsmd.c
2414 F:      drivers/clocksource/timer-qcom.c
2415 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2416 F:      drivers/extcon/extcon-qcom*
2417 F:      drivers/i2c/busses/i2c-qcom-geni.c
2418 F:      drivers/i2c/busses/i2c-qup.c
2419 F:      drivers/iommu/msm*
2420 F:      drivers/mfd/ssbi.c
2421 F:      drivers/mmc/host/mmci_qcom*
2422 F:      drivers/mmc/host/sdhci-msm.c
2423 F:      drivers/pci/controller/dwc/pcie-qcom.c
2424 F:      drivers/phy/qualcomm/
2425 F:      drivers/power/*/msm*
2426 F:      drivers/reset/reset-qcom-*
2427 F:      drivers/scsi/ufs/ufs-qcom*
2428 F:      drivers/spi/spi-geni-qcom.c
2429 F:      drivers/spi/spi-qcom-qspi.c
2430 F:      drivers/spi/spi-qup.c
2431 F:      drivers/tty/serial/msm_serial.c
2432 F:      drivers/usb/dwc3/dwc3-qcom.c
2433 F:      include/dt-bindings/*/qcom*
2434 F:      include/linux/*/qcom*
2435 F:      include/linux/soc/qcom/
2436
2437 ARM/RADISYS ENP2611 MACHINE SUPPORT
2438 M:      Lennert Buytenhek <kernel@wantstofly.org>
2439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2440 S:      Maintained
2441
2442 ARM/RDA MICRO ARCHITECTURE
2443 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2445 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2446 S:      Maintained
2447 F:      Documentation/devicetree/bindings/arm/rda.yaml
2448 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2449 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2450 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2451 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2452 F:      arch/arm/boot/dts/rda8810pl-*
2453 F:      drivers/clocksource/timer-rda.c
2454 F:      drivers/gpio/gpio-rda.c
2455 F:      drivers/irqchip/irq-rda-intc.c
2456 F:      drivers/tty/serial/rda-uart.c
2457
2458 ARM/REALTEK ARCHITECTURE
2459 M:      Andreas Färber <afaerber@suse.de>
2460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2461 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2462 S:      Maintained
2463 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2464 F:      arch/arm/boot/dts/rtd*
2465 F:      arch/arm/mach-realtek/
2466 F:      arch/arm64/boot/dts/realtek/
2467
2468 ARM/RENESAS ARM64 ARCHITECTURE
2469 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2470 M:      Magnus Damm <magnus.damm@gmail.com>
2471 L:      linux-renesas-soc@vger.kernel.org
2472 S:      Supported
2473 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2475 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2476 F:      arch/arm64/boot/dts/renesas/
2477 F:      drivers/soc/renesas/
2478 F:      include/linux/soc/renesas/
2479
2480 ARM/RISCPC ARCHITECTURE
2481 M:      Russell King <linux@armlinux.org.uk>
2482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2483 S:      Maintained
2484 W:      http://www.armlinux.org.uk/
2485 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2486 F:      arch/arm/include/asm/hardware/ioc.h
2487 F:      arch/arm/include/asm/hardware/iomd.h
2488 F:      arch/arm/include/asm/hardware/memc.h
2489 F:      arch/arm/mach-rpc/
2490 F:      drivers/net/ethernet/8390/etherh.c
2491 F:      drivers/net/ethernet/i825xx/ether1*
2492 F:      drivers/net/ethernet/seeq/ether3*
2493 F:      drivers/scsi/arm/
2494
2495 ARM/Rockchip SoC support
2496 M:      Heiko Stuebner <heiko@sntech.de>
2497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2498 L:      linux-rockchip@lists.infradead.org
2499 S:      Maintained
2500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2501 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2502 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2503 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2504 F:      arch/arm/boot/dts/rk3*
2505 F:      arch/arm/boot/dts/rv1108*
2506 F:      arch/arm/mach-rockchip/
2507 F:      drivers/*/*/*rockchip*
2508 F:      drivers/*/*rockchip*
2509 F:      drivers/clk/rockchip/
2510 F:      drivers/i2c/busses/i2c-rk3x.c
2511 F:      sound/soc/rockchip/
2512 N:      rockchip
2513
2514 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2515 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2517 L:      linux-samsung-soc@vger.kernel.org
2518 S:      Maintained
2519 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2520 F:      Documentation/arm/samsung/
2521 F:      Documentation/devicetree/bindings/arm/samsung/
2522 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2523 F:      arch/arm/boot/dts/exynos*
2524 F:      arch/arm/boot/dts/s3c*
2525 F:      arch/arm/boot/dts/s5p*
2526 F:      arch/arm/mach-exynos*/
2527 F:      arch/arm/mach-s3c/
2528 F:      arch/arm/mach-s5p*/
2529 F:      arch/arm64/boot/dts/exynos/
2530 F:      drivers/*/*/*s3c24*
2531 F:      drivers/*/*s3c24*
2532 F:      drivers/*/*s3c64xx*
2533 F:      drivers/*/*s5pv210*
2534 F:      drivers/clocksource/samsung_pwm_timer.c
2535 F:      drivers/memory/samsung/
2536 F:      drivers/pwm/pwm-samsung.c
2537 F:      drivers/soc/samsung/
2538 F:      drivers/tty/serial/samsung*
2539 F:      include/clocksource/samsung_pwm.h
2540 F:      include/linux/platform_data/*s3c*
2541 F:      include/linux/serial_s3c.h
2542 F:      include/linux/soc/samsung/
2543 N:      exynos
2544 N:      s3c2410
2545 N:      s3c64xx
2546 N:      s5pv210
2547
2548 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2549 M:      Andrzej Hajda <a.hajda@samsung.com>
2550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2551 L:      linux-media@vger.kernel.org
2552 S:      Maintained
2553 F:      drivers/media/platform/s5p-g2d/
2554
2555 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2556 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2557 L:      linux-samsung-soc@vger.kernel.org
2558 L:      linux-media@vger.kernel.org
2559 S:      Maintained
2560 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2561 F:      drivers/media/cec/platform/s5p/
2562
2563 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2564 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2565 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2566 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2568 L:      linux-media@vger.kernel.org
2569 S:      Maintained
2570 F:      drivers/media/platform/s5p-jpeg/
2571
2572 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2573 M:      Andrzej Hajda <a.hajda@samsung.com>
2574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2575 L:      linux-media@vger.kernel.org
2576 S:      Maintained
2577 F:      drivers/media/platform/s5p-mfc/
2578
2579 ARM/SHMOBILE ARM ARCHITECTURE
2580 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2581 M:      Magnus Damm <magnus.damm@gmail.com>
2582 L:      linux-renesas-soc@vger.kernel.org
2583 S:      Supported
2584 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2586 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2587 F:      arch/arm/boot/dts/emev2*
2588 F:      arch/arm/boot/dts/gr-peach*
2589 F:      arch/arm/boot/dts/iwg20d-q7*
2590 F:      arch/arm/boot/dts/r7s*
2591 F:      arch/arm/boot/dts/r8a*
2592 F:      arch/arm/boot/dts/r9a*
2593 F:      arch/arm/boot/dts/sh*
2594 F:      arch/arm/configs/shmobile_defconfig
2595 F:      arch/arm/include/debug/renesas-scif.S
2596 F:      arch/arm/mach-shmobile/
2597 F:      drivers/soc/renesas/
2598 F:      include/linux/soc/renesas/
2599
2600 ARM/SOCFPGA ARCHITECTURE
2601 M:      Dinh Nguyen <dinguyen@kernel.org>
2602 S:      Maintained
2603 W:      http://www.rocketboards.org
2604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2605 F:      arch/arm/boot/dts/socfpga*
2606 F:      arch/arm/configs/socfpga_defconfig
2607 F:      arch/arm/mach-socfpga/
2608 F:      arch/arm64/boot/dts/altera/
2609 F:      arch/arm64/boot/dts/intel/
2610
2611 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2612 M:      Dinh Nguyen <dinguyen@kernel.org>
2613 S:      Maintained
2614 F:      drivers/clk/socfpga/
2615
2616 ARM/SOCFPGA EDAC SUPPORT
2617 M:      Dinh Nguyen <dinguyen@kernel.org>
2618 S:      Maintained
2619 F:      drivers/edac/altera_edac.[ch]
2620
2621 ARM/SPREADTRUM SoC SUPPORT
2622 M:      Orson Zhai <orsonzhai@gmail.com>
2623 M:      Baolin Wang <baolin.wang7@gmail.com>
2624 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2625 S:      Maintained
2626 F:      arch/arm64/boot/dts/sprd
2627 N:      sprd
2628 N:      sc27xx
2629 N:      sc2731
2630
2631 ARM/STI ARCHITECTURE
2632 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2634 S:      Maintained
2635 W:      http://www.stlinux.com
2636 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2637 F:      arch/arm/boot/dts/sti*
2638 F:      arch/arm/mach-sti/
2639 F:      drivers/ata/ahci_st.c
2640 F:      drivers/char/hw_random/st-rng.c
2641 F:      drivers/clocksource/arm_global_timer.c
2642 F:      drivers/clocksource/clksrc_st_lpc.c
2643 F:      drivers/cpufreq/sti-cpufreq.c
2644 F:      drivers/dma/st_fdma*
2645 F:      drivers/i2c/busses/i2c-st.c
2646 F:      drivers/media/platform/sti/c8sectpfe/
2647 F:      drivers/media/rc/st_rc.c
2648 F:      drivers/mmc/host/sdhci-st.c
2649 F:      drivers/phy/st/phy-miphy28lp.c
2650 F:      drivers/phy/st/phy-stih407-usb.c
2651 F:      drivers/pinctrl/pinctrl-st.c
2652 F:      drivers/remoteproc/st_remoteproc.c
2653 F:      drivers/remoteproc/st_slim_rproc.c
2654 F:      drivers/reset/sti/
2655 F:      drivers/rtc/rtc-st-lpc.c
2656 F:      drivers/tty/serial/st-asc.c
2657 F:      drivers/usb/dwc3/dwc3-st.c
2658 F:      drivers/usb/host/ehci-st.c
2659 F:      drivers/usb/host/ohci-st.c
2660 F:      drivers/watchdog/st_lpc_wdt.c
2661 F:      include/linux/remoteproc/st_slim_rproc.h
2662
2663 ARM/STM32 ARCHITECTURE
2664 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2665 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2666 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2668 S:      Maintained
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2670 F:      arch/arm/boot/dts/stm32*
2671 F:      arch/arm/mach-stm32/
2672 F:      drivers/clocksource/armv7m_systick.c
2673 N:      stm32
2674 N:      stm
2675
2676 ARM/Synaptics SoC support
2677 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2678 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2680 S:      Maintained
2681 F:      arch/arm/boot/dts/berlin*
2682 F:      arch/arm/mach-berlin/
2683 F:      arch/arm64/boot/dts/synaptics/
2684
2685 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2686 M:      Lennert Buytenhek <kernel@wantstofly.org>
2687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2688 S:      Maintained
2689
2690 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2691 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2692 L:      linux-tegra@vger.kernel.org
2693 L:      linux-media@vger.kernel.org
2694 S:      Maintained
2695 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2696 F:      drivers/media/cec/platform/tegra/
2697
2698 ARM/TETON BGA MACHINE SUPPORT
2699 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2701 S:      Maintained
2702
2703 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2704 M:      Santosh Shilimkar <ssantosh@kernel.org>
2705 L:      linux-kernel@vger.kernel.org
2706 S:      Maintained
2707 F:      drivers/memory/*emif*
2708
2709 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2710 M:      Santosh Shilimkar <ssantosh@kernel.org>
2711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2712 S:      Maintained
2713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2714 F:      arch/arm/boot/dts/keystone-*
2715 F:      arch/arm/mach-keystone/
2716
2717 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2718 M:      Santosh Shilimkar <ssantosh@kernel.org>
2719 L:      linux-kernel@vger.kernel.org
2720 S:      Maintained
2721 F:      drivers/clk/keystone/
2722
2723 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2724 M:      Santosh Shilimkar <ssantosh@kernel.org>
2725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2726 L:      linux-kernel@vger.kernel.org
2727 S:      Maintained
2728 F:      drivers/clocksource/timer-keystone.c
2729
2730 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2731 M:      Santosh Shilimkar <ssantosh@kernel.org>
2732 L:      linux-kernel@vger.kernel.org
2733 S:      Maintained
2734 F:      drivers/power/reset/keystone-reset.c
2735
2736 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2737 M:      Nishanth Menon <nm@ti.com>
2738 M:      Vignesh Raghavendra <vigneshr@ti.com>
2739 M:      Tero Kristo <kristo@kernel.org>
2740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2741 S:      Supported
2742 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2743 F:      arch/arm64/boot/dts/ti/Makefile
2744 F:      arch/arm64/boot/dts/ti/k3-*
2745 F:      include/dt-bindings/pinctrl/k3.h
2746
2747 ARM/THECUS N2100 MACHINE SUPPORT
2748 M:      Lennert Buytenhek <kernel@wantstofly.org>
2749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2750 S:      Maintained
2751
2752 ARM/TOSA MACHINE SUPPORT
2753 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2754 M:      Dirk Opfer <dirk@opfer-online.de>
2755 S:      Maintained
2756
2757 ARM/TOSHIBA VISCONTI ARCHITECTURE
2758 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2760 S:      Supported
2761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2762 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2763 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2764 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2765 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2766 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2767 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2768 F:      arch/arm64/boot/dts/toshiba/
2769 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2770 F:      drivers/gpio/gpio-visconti.c
2771 F:      drivers/pci/controller/dwc/pcie-visconti.c
2772 F:      drivers/pinctrl/visconti/
2773 F:      drivers/watchdog/visconti_wdt.c
2774 N:      visconti
2775
2776 ARM/UNIPHIER ARCHITECTURE
2777 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2778 M:      Masami Hiramatsu <mhiramat@kernel.org>
2779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2780 S:      Maintained
2781 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2782 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2783 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2784 F:      arch/arm/boot/dts/uniphier*
2785 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2786 F:      arch/arm/mach-uniphier/
2787 F:      arch/arm/mm/cache-uniphier.c
2788 F:      arch/arm64/boot/dts/socionext/uniphier*
2789 F:      drivers/bus/uniphier-system-bus.c
2790 F:      drivers/clk/uniphier/
2791 F:      drivers/dma/uniphier-mdmac.c
2792 F:      drivers/gpio/gpio-uniphier.c
2793 F:      drivers/i2c/busses/i2c-uniphier*
2794 F:      drivers/irqchip/irq-uniphier-aidet.c
2795 F:      drivers/mmc/host/uniphier-sd.c
2796 F:      drivers/pinctrl/uniphier/
2797 F:      drivers/reset/reset-uniphier.c
2798 F:      drivers/tty/serial/8250/8250_uniphier.c
2799 N:      uniphier
2800
2801 ARM/VERSATILE EXPRESS PLATFORM
2802 M:      Liviu Dudau <liviu.dudau@arm.com>
2803 M:      Sudeep Holla <sudeep.holla@arm.com>
2804 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2806 S:      Maintained
2807 F:      */*/*/vexpress*
2808 F:      */*/vexpress*
2809 F:      arch/arm/boot/dts/vexpress*
2810 F:      arch/arm/mach-vexpress/
2811 F:      arch/arm64/boot/dts/arm/
2812 F:      drivers/clk/versatile/clk-vexpress-osc.c
2813 F:      drivers/clocksource/timer-versatile.c
2814 N:      mps2
2815
2816 ARM/VFP SUPPORT
2817 M:      Russell King <linux@armlinux.org.uk>
2818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2819 S:      Maintained
2820 W:      http://www.armlinux.org.uk/
2821 F:      arch/arm/vfp/
2822
2823 ARM/VOIPAC PXA270 SUPPORT
2824 M:      Marek Vasut <marek.vasut@gmail.com>
2825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2826 S:      Maintained
2827 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2828 F:      arch/arm/mach-pxa/vpac270.c
2829
2830 ARM/VT8500 ARM ARCHITECTURE
2831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2832 S:      Orphan
2833 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2834 F:      arch/arm/mach-vt8500/
2835 F:      drivers/clocksource/timer-vt8500.c
2836 F:      drivers/i2c/busses/i2c-wmt.c
2837 F:      drivers/mmc/host/wmt-sdmmc.c
2838 F:      drivers/pwm/pwm-vt8500.c
2839 F:      drivers/rtc/rtc-vt8500.c
2840 F:      drivers/tty/serial/vt8500_serial.c
2841 F:      drivers/usb/host/ehci-platform.c
2842 F:      drivers/usb/host/uhci-platform.c
2843 F:      drivers/video/fbdev/vt8500lcdfb.*
2844 F:      drivers/video/fbdev/wm8505fb*
2845 F:      drivers/video/fbdev/wmt_ge_rops.*
2846
2847 ARM/ZIPIT Z2 SUPPORT
2848 M:      Marek Vasut <marek.vasut@gmail.com>
2849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2850 S:      Maintained
2851 F:      arch/arm/mach-pxa/include/mach/z2.h
2852 F:      arch/arm/mach-pxa/z2.c
2853
2854 ARM/ZYNQ ARCHITECTURE
2855 M:      Michal Simek <michal.simek@xilinx.com>
2856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2857 S:      Supported
2858 W:      http://wiki.xilinx.com
2859 T:      git https://github.com/Xilinx/linux-xlnx.git
2860 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2861 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2862 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2863 F:      arch/arm/mach-zynq/
2864 F:      drivers/clocksource/timer-cadence-ttc.c
2865 F:      drivers/cpuidle/cpuidle-zynq.c
2866 F:      drivers/edac/synopsys_edac.c
2867 F:      drivers/i2c/busses/i2c-cadence.c
2868 F:      drivers/i2c/busses/i2c-xiic.c
2869 F:      drivers/mmc/host/sdhci-of-arasan.c
2870 N:      zynq
2871 N:      xilinx
2872
2873 ARM64 PORT (AARCH64 ARCHITECTURE)
2874 M:      Catalin Marinas <catalin.marinas@arm.com>
2875 M:      Will Deacon <will@kernel.org>
2876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2877 S:      Maintained
2878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2879 F:      Documentation/arm64/
2880 F:      arch/arm64/
2881 F:      tools/testing/selftests/arm64/
2882 X:      arch/arm64/boot/dts/
2883
2884 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2885 M:      George McCollister <george.mccollister@gmail.com>
2886 L:      netdev@vger.kernel.org
2887 S:      Maintained
2888 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2889 F:      drivers/net/dsa/xrs700x/*
2890 F:      net/dsa/tag_xrs700x.c
2891
2892 AS3645A LED FLASH CONTROLLER DRIVER
2893 M:      Sakari Ailus <sakari.ailus@iki.fi>
2894 L:      linux-leds@vger.kernel.org
2895 S:      Maintained
2896 F:      drivers/leds/flash/leds-as3645a.c
2897
2898 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2899 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2900 L:      linux-media@vger.kernel.org
2901 S:      Maintained
2902 T:      git git://linuxtv.org/media_tree.git
2903 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2904 F:      drivers/media/i2c/ak7375.c
2905
2906 ASAHI KASEI AK8974 DRIVER
2907 M:      Linus Walleij <linus.walleij@linaro.org>
2908 L:      linux-iio@vger.kernel.org
2909 S:      Supported
2910 W:      http://www.akm.com/
2911 F:      drivers/iio/magnetometer/ak8974.c
2912
2913 ASC7621 HARDWARE MONITOR DRIVER
2914 M:      George Joseph <george.joseph@fairview5.com>
2915 L:      linux-hwmon@vger.kernel.org
2916 S:      Maintained
2917 F:      Documentation/hwmon/asc7621.rst
2918 F:      drivers/hwmon/asc7621.c
2919
2920 ASPEED PINCTRL DRIVERS
2921 M:      Andrew Jeffery <andrew@aj.id.au>
2922 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2923 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2924 L:      linux-gpio@vger.kernel.org
2925 S:      Maintained
2926 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2927 F:      drivers/pinctrl/aspeed/
2928
2929 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2930 M:      Eddie James <eajames@linux.ibm.com>
2931 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2932 S:      Maintained
2933 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2934 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2935 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2936
2937 ASPEED SD/MMC DRIVER
2938 M:      Andrew Jeffery <andrew@aj.id.au>
2939 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2940 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2941 L:      linux-mmc@vger.kernel.org
2942 S:      Maintained
2943 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2944 F:      drivers/mmc/host/sdhci-of-aspeed*
2945
2946 ASPEED VIDEO ENGINE DRIVER
2947 M:      Eddie James <eajames@linux.ibm.com>
2948 L:      linux-media@vger.kernel.org
2949 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2950 S:      Maintained
2951 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2952 F:      drivers/media/platform/aspeed-video.c
2953
2954 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2955 M:      Corentin Chary <corentin.chary@gmail.com>
2956 L:      acpi4asus-user@lists.sourceforge.net
2957 L:      platform-driver-x86@vger.kernel.org
2958 S:      Maintained
2959 W:      http://acpi4asus.sf.net
2960 F:      drivers/platform/x86/asus*.c
2961 F:      drivers/platform/x86/eeepc*.c
2962
2963 ASUS WIRELESS RADIO CONTROL DRIVER
2964 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2965 L:      platform-driver-x86@vger.kernel.org
2966 S:      Maintained
2967 F:      drivers/platform/x86/asus-wireless.c
2968
2969 ASYMMETRIC KEYS
2970 M:      David Howells <dhowells@redhat.com>
2971 L:      keyrings@vger.kernel.org
2972 S:      Maintained
2973 F:      Documentation/crypto/asymmetric-keys.rst
2974 F:      crypto/asymmetric_keys/
2975 F:      include/crypto/pkcs7.h
2976 F:      include/crypto/public_key.h
2977 F:      include/linux/verification.h
2978
2979 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2980 R:      Dan Williams <dan.j.williams@intel.com>
2981 S:      Odd fixes
2982 W:      http://sourceforge.net/projects/xscaleiop
2983 F:      Documentation/crypto/async-tx-api.rst
2984 F:      crypto/async_tx/
2985 F:      include/linux/async_tx.h
2986
2987 AT24 EEPROM DRIVER
2988 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2989 L:      linux-i2c@vger.kernel.org
2990 S:      Maintained
2991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2992 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2993 F:      drivers/misc/eeprom/at24.c
2994
2995 ATA OVER ETHERNET (AOE) DRIVER
2996 M:      "Justin Sanders" <justin@coraid.com>
2997 S:      Supported
2998 W:      http://www.openaoe.org/
2999 F:      Documentation/admin-guide/aoe/
3000 F:      drivers/block/aoe/
3001
3002 ATC260X PMIC MFD DRIVER
3003 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3004 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3005 L:      linux-actions@lists.infradead.org
3006 S:      Maintained
3007 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3008 F:      drivers/input/misc/atc260x-onkey.c
3009 F:      drivers/mfd/atc260*
3010 F:      drivers/power/reset/atc260x-poweroff.c
3011 F:      drivers/regulator/atc260x-regulator.c
3012 F:      include/linux/mfd/atc260x/*
3013
3014 ATHEROS 71XX/9XXX GPIO DRIVER
3015 M:      Alban Bedel <albeu@free.fr>
3016 S:      Maintained
3017 W:      https://github.com/AlbanBedel/linux
3018 T:      git git://github.com/AlbanBedel/linux
3019 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3020 F:      drivers/gpio/gpio-ath79.c
3021
3022 ATHEROS 71XX/9XXX USB PHY DRIVER
3023 M:      Alban Bedel <albeu@free.fr>
3024 S:      Maintained
3025 W:      https://github.com/AlbanBedel/linux
3026 T:      git git://github.com/AlbanBedel/linux
3027 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3028 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3029
3030 ATHEROS ATH GENERIC UTILITIES
3031 M:      Kalle Valo <kvalo@codeaurora.org>
3032 L:      linux-wireless@vger.kernel.org
3033 S:      Supported
3034 F:      drivers/net/wireless/ath/*
3035
3036 ATHEROS ATH5K WIRELESS DRIVER
3037 M:      Jiri Slaby <jirislaby@kernel.org>
3038 M:      Nick Kossifidis <mickflemm@gmail.com>
3039 M:      Luis Chamberlain <mcgrof@kernel.org>
3040 L:      linux-wireless@vger.kernel.org
3041 S:      Maintained
3042 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3043 F:      drivers/net/wireless/ath/ath5k/
3044
3045 ATHEROS ATH6KL WIRELESS DRIVER
3046 M:      Kalle Valo <kvalo@codeaurora.org>
3047 L:      linux-wireless@vger.kernel.org
3048 S:      Supported
3049 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3051 F:      drivers/net/wireless/ath/ath6kl/
3052
3053 ATI_REMOTE2 DRIVER
3054 M:      Ville Syrjala <syrjala@sci.fi>
3055 S:      Maintained
3056 F:      drivers/input/misc/ati_remote2.c
3057
3058 ATK0110 HWMON DRIVER
3059 M:      Luca Tettamanti <kronos.it@gmail.com>
3060 L:      linux-hwmon@vger.kernel.org
3061 S:      Maintained
3062 F:      drivers/hwmon/asus_atk0110.c
3063
3064 ATLX ETHERNET DRIVERS
3065 M:      Chris Snook <chris.snook@gmail.com>
3066 L:      netdev@vger.kernel.org
3067 S:      Maintained
3068 W:      http://sourceforge.net/projects/atl1
3069 W:      http://atl1.sourceforge.net
3070 F:      drivers/net/ethernet/atheros/
3071
3072 ATM
3073 M:      Chas Williams <3chas3@gmail.com>
3074 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3075 L:      netdev@vger.kernel.org
3076 S:      Maintained
3077 W:      http://linux-atm.sourceforge.net
3078 F:      drivers/atm/
3079 F:      include/linux/atm*
3080 F:      include/uapi/linux/atm*
3081
3082 ATMEL MACB ETHERNET DRIVER
3083 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3084 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3085 S:      Supported
3086 F:      drivers/net/ethernet/cadence/
3087
3088 ATMEL MAXTOUCH DRIVER
3089 M:      Nick Dyer <nick@shmanahar.org>
3090 S:      Maintained
3091 T:      git git://github.com/ndyer/linux.git
3092 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3093 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3094
3095 ATMEL WIRELESS DRIVER
3096 M:      Simon Kelley <simon@thekelleys.org.uk>
3097 L:      linux-wireless@vger.kernel.org
3098 S:      Maintained
3099 W:      http://www.thekelleys.org.uk/atmel
3100 W:      http://atmelwlandriver.sourceforge.net/
3101 F:      drivers/net/wireless/atmel/atmel*
3102
3103 ATOMIC INFRASTRUCTURE
3104 M:      Will Deacon <will@kernel.org>
3105 M:      Peter Zijlstra <peterz@infradead.org>
3106 R:      Boqun Feng <boqun.feng@gmail.com>
3107 L:      linux-kernel@vger.kernel.org
3108 S:      Maintained
3109 F:      arch/*/include/asm/atomic*.h
3110 F:      include/*/atomic*.h
3111 F:      include/linux/refcount.h
3112 F:      Documentation/atomic_*.txt
3113 F:      scripts/atomic/
3114
3115 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3116 M:      Bradley Grove <linuxdrivers@attotech.com>
3117 L:      linux-scsi@vger.kernel.org
3118 S:      Supported
3119 W:      http://www.attotech.com
3120 F:      drivers/scsi/esas2r
3121
3122 ATUSB IEEE 802.15.4 RADIO DRIVER
3123 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3124 L:      linux-wpan@vger.kernel.org
3125 S:      Maintained
3126 F:      drivers/net/ieee802154/at86rf230.h
3127 F:      drivers/net/ieee802154/atusb.c
3128 F:      drivers/net/ieee802154/atusb.h
3129
3130 AUDIT SUBSYSTEM
3131 M:      Paul Moore <paul@paul-moore.com>
3132 M:      Eric Paris <eparis@redhat.com>
3133 L:      linux-audit@redhat.com (moderated for non-subscribers)
3134 S:      Supported
3135 W:      https://github.com/linux-audit
3136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3137 F:      include/asm-generic/audit_*.h
3138 F:      include/linux/audit.h
3139 F:      include/uapi/linux/audit.h
3140 F:      kernel/audit*
3141 F:      lib/*audit.c
3142
3143 AUXILIARY DISPLAY DRIVERS
3144 M:      Miguel Ojeda <ojeda@kernel.org>
3145 S:      Maintained
3146 F:      drivers/auxdisplay/
3147 F:      include/linux/cfag12864b.h
3148
3149 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3150 M:      Andreas Klinger <ak@it-klinger.de>
3151 L:      linux-iio@vger.kernel.org
3152 S:      Maintained
3153 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3154 F:      drivers/iio/adc/hx711.c
3155
3156 AX.25 NETWORK LAYER
3157 M:      Ralf Baechle <ralf@linux-mips.org>
3158 L:      linux-hams@vger.kernel.org
3159 S:      Maintained
3160 W:      http://www.linux-ax25.org/
3161 F:      include/net/ax25.h
3162 F:      include/uapi/linux/ax25.h
3163 F:      net/ax25/
3164
3165 AXENTIA ARM DEVICES
3166 M:      Peter Rosin <peda@axentia.se>
3167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3168 S:      Maintained
3169 F:      arch/arm/boot/dts/at91-linea.dtsi
3170 F:      arch/arm/boot/dts/at91-natte.dtsi
3171 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3172 F:      arch/arm/boot/dts/at91-tse850-3.dts
3173
3174 AXENTIA ASOC DRIVERS
3175 M:      Peter Rosin <peda@axentia.se>
3176 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3177 S:      Maintained
3178 F:      Documentation/devicetree/bindings/sound/axentia,*
3179 F:      sound/soc/atmel/tse850-pcm5142.c
3180
3181 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3182 M:      Nuno Sá <nuno.sa@analog.com>
3183 L:      linux-hwmon@vger.kernel.org
3184 S:      Supported
3185 W:      http://ez.analog.com/community/linux-device-drivers
3186 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3187 F:      drivers/hwmon/axi-fan-control.c
3188
3189 AXXIA I2C CONTROLLER
3190 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3191 L:      linux-i2c@vger.kernel.org
3192 S:      Maintained
3193 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3194 F:      drivers/i2c/busses/i2c-axxia.c
3195
3196 AZ6007 DVB DRIVER
3197 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3198 L:      linux-media@vger.kernel.org
3199 S:      Maintained
3200 W:      https://linuxtv.org
3201 T:      git git://linuxtv.org/media_tree.git
3202 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3203
3204 AZTECH FM RADIO RECEIVER DRIVER
3205 M:      Hans Verkuil <hverkuil@xs4all.nl>
3206 L:      linux-media@vger.kernel.org
3207 S:      Maintained
3208 W:      https://linuxtv.org
3209 T:      git git://linuxtv.org/media_tree.git
3210 F:      drivers/media/radio/radio-aztech*
3211
3212 B43 WIRELESS DRIVER
3213 L:      linux-wireless@vger.kernel.org
3214 L:      b43-dev@lists.infradead.org
3215 S:      Odd Fixes
3216 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3217 F:      drivers/net/wireless/broadcom/b43/
3218
3219 B43LEGACY WIRELESS DRIVER
3220 M:      Larry Finger <Larry.Finger@lwfinger.net>
3221 L:      linux-wireless@vger.kernel.org
3222 L:      b43-dev@lists.infradead.org
3223 S:      Maintained
3224 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3225 F:      drivers/net/wireless/broadcom/b43legacy/
3226
3227 BACKLIGHT CLASS/SUBSYSTEM
3228 M:      Lee Jones <lee.jones@linaro.org>
3229 M:      Daniel Thompson <daniel.thompson@linaro.org>
3230 M:      Jingoo Han <jingoohan1@gmail.com>
3231 L:      dri-devel@lists.freedesktop.org
3232 S:      Maintained
3233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3234 F:      Documentation/ABI/stable/sysfs-class-backlight
3235 F:      Documentation/ABI/testing/sysfs-class-backlight
3236 F:      Documentation/devicetree/bindings/leds/backlight
3237 F:      drivers/video/backlight/
3238 F:      include/linux/backlight.h
3239 F:      include/linux/pwm_backlight.h
3240
3241 BATMAN ADVANCED
3242 M:      Marek Lindner <mareklindner@neomailbox.ch>
3243 M:      Simon Wunderlich <sw@simonwunderlich.de>
3244 M:      Antonio Quartulli <a@unstable.cc>
3245 M:      Sven Eckelmann <sven@narfation.org>
3246 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3247 S:      Maintained
3248 W:      https://www.open-mesh.org/
3249 Q:      https://patchwork.open-mesh.org/project/batman/list/
3250 B:      https://www.open-mesh.org/projects/batman-adv/issues
3251 C:      ircs://irc.hackint.org/batadv
3252 T:      git https://git.open-mesh.org/linux-merge.git
3253 F:      Documentation/networking/batman-adv.rst
3254 F:      include/uapi/linux/batadv_packet.h
3255 F:      include/uapi/linux/batman_adv.h
3256 F:      net/batman-adv/
3257
3258 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3259 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3260 L:      linux-hams@vger.kernel.org
3261 S:      Maintained
3262 W:      http://www.baycom.org/~tom/ham/ham.html
3263 F:      drivers/net/hamradio/baycom*
3264
3265 BCACHE (BLOCK LAYER CACHE)
3266 M:      Coly Li <colyli@suse.de>
3267 M:      Kent Overstreet <kent.overstreet@gmail.com>
3268 L:      linux-bcache@vger.kernel.org
3269 S:      Maintained
3270 W:      http://bcache.evilpiepirate.org
3271 C:      irc://irc.oftc.net/bcache
3272 F:      drivers/md/bcache/
3273
3274 BDISP ST MEDIA DRIVER
3275 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3276 L:      linux-media@vger.kernel.org
3277 S:      Supported
3278 W:      https://linuxtv.org
3279 T:      git git://linuxtv.org/media_tree.git
3280 F:      drivers/media/platform/sti/bdisp
3281
3282 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3283 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3284 L:      netdev@vger.kernel.org
3285 S:      Maintained
3286 F:      drivers/net/ethernet/ec_bhf.c
3287
3288 BEFS FILE SYSTEM
3289 M:      Luis de Bethencourt <luisbg@kernel.org>
3290 M:      Salah Triki <salah.triki@gmail.com>
3291 S:      Maintained
3292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3293 F:      Documentation/filesystems/befs.rst
3294 F:      fs/befs/
3295
3296 BFQ I/O SCHEDULER
3297 M:      Paolo Valente <paolo.valente@linaro.org>
3298 M:      Jens Axboe <axboe@kernel.dk>
3299 L:      linux-block@vger.kernel.org
3300 S:      Maintained
3301 F:      Documentation/block/bfq-iosched.rst
3302 F:      block/bfq-*
3303
3304 BFS FILE SYSTEM
3305 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3306 S:      Maintained
3307 F:      Documentation/filesystems/bfs.rst
3308 F:      fs/bfs/
3309 F:      include/uapi/linux/bfs_fs.h
3310
3311 BITMAP API
3312 M:      Yury Norov <yury.norov@gmail.com>
3313 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3314 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3315 S:      Maintained
3316 F:      include/asm-generic/bitops/find.h
3317 F:      include/linux/bitmap.h
3318 F:      lib/bitmap.c
3319 F:      lib/find_bit.c
3320 F:      lib/find_bit_benchmark.c
3321 F:      lib/test_bitmap.c
3322 F:      tools/include/asm-generic/bitops/find.h
3323 F:      tools/include/linux/bitmap.h
3324 F:      tools/lib/bitmap.c
3325 F:      tools/lib/find_bit.c
3326
3327 BLINKM RGB LED DRIVER
3328 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3329 S:      Maintained
3330 F:      drivers/leds/leds-blinkm.c
3331
3332 BLOCK LAYER
3333 M:      Jens Axboe <axboe@kernel.dk>
3334 L:      linux-block@vger.kernel.org
3335 S:      Maintained
3336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3337 F:      block/
3338 F:      drivers/block/
3339 F:      include/linux/blk*
3340 F:      kernel/trace/blktrace.c
3341 F:      lib/sbitmap.c
3342
3343 BLOCK2MTD DRIVER
3344 M:      Joern Engel <joern@lazybastard.org>
3345 L:      linux-mtd@lists.infradead.org
3346 S:      Maintained
3347 F:      drivers/mtd/devices/block2mtd.c
3348
3349 BLUETOOTH DRIVERS
3350 M:      Marcel Holtmann <marcel@holtmann.org>
3351 M:      Johan Hedberg <johan.hedberg@gmail.com>
3352 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3353 L:      linux-bluetooth@vger.kernel.org
3354 S:      Supported
3355 W:      http://www.bluez.org/
3356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3358 F:      drivers/bluetooth/
3359
3360 BLUETOOTH SUBSYSTEM
3361 M:      Marcel Holtmann <marcel@holtmann.org>
3362 M:      Johan Hedberg <johan.hedberg@gmail.com>
3363 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3364 L:      linux-bluetooth@vger.kernel.org
3365 S:      Supported
3366 W:      http://www.bluez.org/
3367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3369 F:      include/net/bluetooth/
3370 F:      net/bluetooth/
3371
3372 BONDING DRIVER
3373 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3374 M:      Veaceslav Falico <vfalico@gmail.com>
3375 M:      Andy Gospodarek <andy@greyhouse.net>
3376 L:      netdev@vger.kernel.org
3377 S:      Supported
3378 W:      http://sourceforge.net/projects/bonding/
3379 F:      drivers/net/bonding/
3380 F:      include/net/bonding.h
3381 F:      include/uapi/linux/if_bonding.h
3382
3383 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3384 M:      Dan Robertson <dan@dlrobertson.com>
3385 L:      linux-iio@vger.kernel.org
3386 S:      Maintained
3387 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3388 F:      drivers/iio/accel/bma400*
3389
3390 BPF (Safe dynamic programs and tools)
3391 M:      Alexei Starovoitov <ast@kernel.org>
3392 M:      Daniel Borkmann <daniel@iogearbox.net>
3393 M:      Andrii Nakryiko <andrii@kernel.org>
3394 R:      Martin KaFai Lau <kafai@fb.com>
3395 R:      Song Liu <songliubraving@fb.com>
3396 R:      Yonghong Song <yhs@fb.com>
3397 R:      John Fastabend <john.fastabend@gmail.com>
3398 R:      KP Singh <kpsingh@kernel.org>
3399 L:      netdev@vger.kernel.org
3400 L:      bpf@vger.kernel.org
3401 S:      Supported
3402 W:      https://bpf.io/
3403 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3406 F:      Documentation/bpf/
3407 F:      Documentation/networking/filter.rst
3408 F:      Documentation/userspace-api/ebpf/
3409 F:      arch/*/net/*
3410 F:      include/linux/bpf*
3411 F:      include/linux/btf*
3412 F:      include/linux/filter.h
3413 F:      include/trace/events/xdp.h
3414 F:      include/uapi/linux/bpf*
3415 F:      include/uapi/linux/btf*
3416 F:      include/uapi/linux/filter.h
3417 F:      kernel/bpf/
3418 F:      kernel/trace/bpf_trace.c
3419 F:      lib/test_bpf.c
3420 F:      net/bpf/
3421 F:      net/core/filter.c
3422 F:      net/sched/act_bpf.c
3423 F:      net/sched/cls_bpf.c
3424 F:      samples/bpf/
3425 F:      scripts/bpf_doc.py
3426 F:      tools/bpf/
3427 F:      tools/lib/bpf/
3428 F:      tools/testing/selftests/bpf/
3429 N:      bpf
3430 K:      bpf
3431
3432 BPF JIT for ARM
3433 M:      Shubham Bansal <illusionist.neo@gmail.com>
3434 L:      netdev@vger.kernel.org
3435 L:      bpf@vger.kernel.org
3436 S:      Maintained
3437 F:      arch/arm/net/
3438
3439 BPF JIT for ARM64
3440 M:      Daniel Borkmann <daniel@iogearbox.net>
3441 M:      Alexei Starovoitov <ast@kernel.org>
3442 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3443 L:      netdev@vger.kernel.org
3444 L:      bpf@vger.kernel.org
3445 S:      Supported
3446 F:      arch/arm64/net/
3447
3448 BPF JIT for MIPS (32-BIT AND 64-BIT)
3449 M:      Paul Burton <paulburton@kernel.org>
3450 L:      netdev@vger.kernel.org
3451 L:      bpf@vger.kernel.org
3452 S:      Maintained
3453 F:      arch/mips/net/
3454
3455 BPF JIT for NFP NICs
3456 M:      Jakub Kicinski <kuba@kernel.org>
3457 L:      netdev@vger.kernel.org
3458 L:      bpf@vger.kernel.org
3459 S:      Supported
3460 F:      drivers/net/ethernet/netronome/nfp/bpf/
3461
3462 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3463 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3464 L:      netdev@vger.kernel.org
3465 L:      bpf@vger.kernel.org
3466 S:      Maintained
3467 F:      arch/powerpc/net/
3468
3469 BPF JIT for RISC-V (32-bit)
3470 M:      Luke Nelson <luke.r.nels@gmail.com>
3471 M:      Xi Wang <xi.wang@gmail.com>
3472 L:      netdev@vger.kernel.org
3473 L:      bpf@vger.kernel.org
3474 S:      Maintained
3475 F:      arch/riscv/net/
3476 X:      arch/riscv/net/bpf_jit_comp64.c
3477
3478 BPF JIT for RISC-V (64-bit)
3479 M:      Björn Töpel <bjorn@kernel.org>
3480 L:      netdev@vger.kernel.org
3481 L:      bpf@vger.kernel.org
3482 S:      Maintained
3483 F:      arch/riscv/net/
3484 X:      arch/riscv/net/bpf_jit_comp32.c
3485
3486 BPF JIT for S390
3487 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3488 M:      Heiko Carstens <hca@linux.ibm.com>
3489 M:      Vasily Gorbik <gor@linux.ibm.com>
3490 L:      netdev@vger.kernel.org
3491 L:      bpf@vger.kernel.org
3492 S:      Maintained
3493 F:      arch/s390/net/
3494 X:      arch/s390/net/pnet.c
3495
3496 BPF JIT for SPARC (32-BIT AND 64-BIT)
3497 M:      David S. Miller <davem@davemloft.net>
3498 L:      netdev@vger.kernel.org
3499 L:      bpf@vger.kernel.org
3500 S:      Maintained
3501 F:      arch/sparc/net/
3502
3503 BPF JIT for X86 32-BIT
3504 M:      Wang YanQing <udknight@gmail.com>
3505 L:      netdev@vger.kernel.org
3506 L:      bpf@vger.kernel.org
3507 S:      Maintained
3508 F:      arch/x86/net/bpf_jit_comp32.c
3509
3510 BPF JIT for X86 64-BIT
3511 M:      Alexei Starovoitov <ast@kernel.org>
3512 M:      Daniel Borkmann <daniel@iogearbox.net>
3513 L:      netdev@vger.kernel.org
3514 L:      bpf@vger.kernel.org
3515 S:      Supported
3516 F:      arch/x86/net/
3517 X:      arch/x86/net/bpf_jit_comp32.c
3518
3519 BPF LSM (Security Audit and Enforcement using BPF)
3520 M:      KP Singh <kpsingh@kernel.org>
3521 R:      Florent Revest <revest@chromium.org>
3522 R:      Brendan Jackman <jackmanb@chromium.org>
3523 L:      bpf@vger.kernel.org
3524 S:      Maintained
3525 F:      Documentation/bpf/bpf_lsm.rst
3526 F:      include/linux/bpf_lsm.h
3527 F:      kernel/bpf/bpf_lsm.c
3528 F:      security/bpf/
3529
3530 BROADCOM B44 10/100 ETHERNET DRIVER
3531 M:      Michael Chan <michael.chan@broadcom.com>
3532 L:      netdev@vger.kernel.org
3533 S:      Supported
3534 F:      drivers/net/ethernet/broadcom/b44.*
3535
3536 BROADCOM B53 ETHERNET SWITCH DRIVER
3537 M:      Florian Fainelli <f.fainelli@gmail.com>
3538 L:      netdev@vger.kernel.org
3539 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3540 S:      Supported
3541 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3542 F:      drivers/net/dsa/b53/*
3543 F:      include/linux/dsa/brcm.h
3544 F:      include/linux/platform_data/b53.h
3545
3546 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3547 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3548 L:      bcm-kernel-feedback-list@broadcom.com
3549 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3551 S:      Maintained
3552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3553 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3554 F:      drivers/pci/controller/pcie-brcmstb.c
3555 F:      drivers/staging/vc04_services
3556 N:      bcm2711
3557 N:      bcm283*
3558
3559 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3560 M:      Florian Fainelli <f.fainelli@gmail.com>
3561 M:      Ray Jui <rjui@broadcom.com>
3562 M:      Scott Branden <sbranden@broadcom.com>
3563 M:      bcm-kernel-feedback-list@broadcom.com
3564 S:      Maintained
3565 T:      git git://github.com/broadcom/mach-bcm
3566 F:      arch/arm/mach-bcm/
3567 N:      bcm281*
3568 N:      bcm113*
3569 N:      bcm216*
3570 N:      kona
3571
3572 BROADCOM BCM2711 HEVC DECODER
3573 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3574 L:      linux-media@vger.kernel.org
3575 S:      Maintained
3576 F:      Documentation/devicetree/bindings/media/rpivid_hevc.jaml
3577 F:      drivers/staging/media/rpivid
3578
3579 BROADCOM BCM2835 CAMERA DRIVER
3580 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3581 L:      linux-media@vger.kernel.org
3582 S:      Maintained
3583 F:      drivers/media/platform/bcm2835/
3584 F:      Documentation/devicetree/bindings/media/brcm,bcm2835-unicam.yaml
3585
3586 BROADCOM BCM2835 ISP DRIVER
3587 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3588 L:      linux-media@vger.kernel.org
3589 S:      Maintained
3590 F:      Documentation/media/uapi/v4l/pixfmt-meta-bcm2835-isp-stats.rst
3591 F:      Documentation/media/v4l-drivers/bcm2835-isp.rst
3592 F:      drivers/staging/vc04_services/bcm2835-isp
3593 F:      include/uapi/linux/bcm2835-isp.h
3594
3595 BROADCOM BCM47XX MIPS ARCHITECTURE
3596 M:      Hauke Mehrtens <hauke@hauke-m.de>
3597 M:      Rafał Miłecki <zajec5@gmail.com>
3598 L:      linux-mips@vger.kernel.org
3599 S:      Maintained
3600 F:      Documentation/devicetree/bindings/mips/brcm/
3601 F:      arch/mips/bcm47xx/*
3602 F:      arch/mips/include/asm/mach-bcm47xx/*
3603
3604 BROADCOM BCM4908 ETHERNET DRIVER
3605 M:      Rafał Miłecki <rafal@milecki.pl>
3606 M:      bcm-kernel-feedback-list@broadcom.com
3607 L:      netdev@vger.kernel.org
3608 S:      Maintained
3609 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3610 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3611 F:      drivers/net/ethernet/broadcom/unimac.h
3612
3613 BROADCOM BCM5301X ARM ARCHITECTURE
3614 M:      Hauke Mehrtens <hauke@hauke-m.de>
3615 M:      Rafał Miłecki <zajec5@gmail.com>
3616 M:      bcm-kernel-feedback-list@broadcom.com
3617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3618 S:      Maintained
3619 F:      arch/arm/boot/dts/bcm470*
3620 F:      arch/arm/boot/dts/bcm5301*
3621 F:      arch/arm/boot/dts/bcm953012*
3622 F:      arch/arm/mach-bcm/bcm_5301x.c
3623
3624 BROADCOM BCM53573 ARM ARCHITECTURE
3625 M:      Rafał Miłecki <rafal@milecki.pl>
3626 L:      bcm-kernel-feedback-list@broadcom.com
3627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3628 S:      Maintained
3629 F:      arch/arm/boot/dts/bcm47189*
3630 F:      arch/arm/boot/dts/bcm53573*
3631
3632 BROADCOM BCM63XX ARM ARCHITECTURE
3633 M:      Florian Fainelli <f.fainelli@gmail.com>
3634 M:      bcm-kernel-feedback-list@broadcom.com
3635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3636 S:      Maintained
3637 T:      git git://github.com/broadcom/stblinux.git
3638 N:      bcm63xx
3639
3640 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3641 M:      Kevin Cernekee <cernekee@gmail.com>
3642 L:      linux-usb@vger.kernel.org
3643 S:      Maintained
3644 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3645
3646 BROADCOM BCM7XXX ARM ARCHITECTURE
3647 M:      Florian Fainelli <f.fainelli@gmail.com>
3648 M:      bcm-kernel-feedback-list@broadcom.com
3649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3650 S:      Maintained
3651 T:      git git://github.com/broadcom/stblinux.git
3652 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3653 F:      arch/arm/boot/dts/bcm7*.dts*
3654 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3655 F:      arch/arm/mach-bcm/*brcmstb*
3656 F:      arch/arm/mm/cache-b15-rac.c
3657 F:      drivers/bus/brcmstb_gisb.c
3658 F:      drivers/pci/controller/pcie-brcmstb.c
3659 N:      brcmstb
3660
3661 BROADCOM BDC DRIVER
3662 M:      Al Cooper <alcooperx@gmail.com>
3663 L:      linux-usb@vger.kernel.org
3664 L:      bcm-kernel-feedback-list@broadcom.com
3665 S:      Maintained
3666 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3667 F:      drivers/usb/gadget/udc/bdc/
3668
3669 BROADCOM BMIPS CPUFREQ DRIVER
3670 M:      Markus Mayer <mmayer@broadcom.com>
3671 M:      bcm-kernel-feedback-list@broadcom.com
3672 L:      linux-pm@vger.kernel.org
3673 S:      Maintained
3674 F:      drivers/cpufreq/bmips-cpufreq.c
3675
3676 BROADCOM BMIPS MIPS ARCHITECTURE
3677 M:      Florian Fainelli <f.fainelli@gmail.com>
3678 L:      bcm-kernel-feedback-list@broadcom.com
3679 L:      linux-mips@vger.kernel.org
3680 S:      Maintained
3681 T:      git git://github.com/broadcom/stblinux.git
3682 F:      arch/mips/bmips/*
3683 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3684 F:      arch/mips/include/asm/mach-bmips/*
3685 F:      arch/mips/kernel/*bmips*
3686 F:      drivers/soc/bcm/bcm63xx
3687 F:      drivers/irqchip/irq-bcm63*
3688 F:      drivers/irqchip/irq-bcm7*
3689 F:      drivers/irqchip/irq-brcmstb*
3690 F:      include/linux/bcm963xx_nvram.h
3691 F:      include/linux/bcm963xx_tag.h
3692
3693 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3694 M:      Rasesh Mody <rmody@marvell.com>
3695 M:      GR-Linux-NIC-Dev@marvell.com
3696 L:      netdev@vger.kernel.org
3697 S:      Supported
3698 F:      drivers/net/ethernet/broadcom/bnx2.*
3699 F:      drivers/net/ethernet/broadcom/bnx2_*
3700
3701 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3702 M:      Saurav Kashyap <skashyap@marvell.com>
3703 M:      Javed Hasan <jhasan@marvell.com>
3704 M:      GR-QLogic-Storage-Upstream@marvell.com
3705 L:      linux-scsi@vger.kernel.org
3706 S:      Supported
3707 F:      drivers/scsi/bnx2fc/
3708
3709 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3710 M:      Nilesh Javali <njavali@marvell.com>
3711 M:      Manish Rangankar <mrangankar@marvell.com>
3712 M:      GR-QLogic-Storage-Upstream@marvell.com
3713 L:      linux-scsi@vger.kernel.org
3714 S:      Supported
3715 F:      drivers/scsi/bnx2i/
3716
3717 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3718 M:      Ariel Elior <aelior@marvell.com>
3719 M:      Sudarsana Kalluru <skalluru@marvell.com>
3720 M:      GR-everest-linux-l2@marvell.com
3721 L:      netdev@vger.kernel.org
3722 S:      Supported
3723 F:      drivers/net/ethernet/broadcom/bnx2x/
3724
3725 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3726 M:      Michael Chan <michael.chan@broadcom.com>
3727 L:      netdev@vger.kernel.org
3728 S:      Supported
3729 F:      drivers/net/ethernet/broadcom/bnxt/
3730
3731 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3732 M:      Arend van Spriel <aspriel@gmail.com>
3733 M:      Franky Lin <franky.lin@broadcom.com>
3734 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3735 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3736 M:      Wright Feng <wright.feng@infineon.com>
3737 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3738 L:      linux-wireless@vger.kernel.org
3739 L:      brcm80211-dev-list.pdl@broadcom.com
3740 L:      SHA-cyfmac-dev-list@infineon.com
3741 S:      Supported
3742 F:      drivers/net/wireless/broadcom/brcm80211/
3743
3744 BROADCOM BRCMSTB GPIO DRIVER
3745 M:      Gregory Fong <gregory.0xf0@gmail.com>
3746 L:      bcm-kernel-feedback-list@broadcom.com
3747 S:      Supported
3748 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3749 F:      drivers/gpio/gpio-brcmstb.c
3750
3751 BROADCOM BRCMSTB I2C DRIVER
3752 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3753 L:      linux-i2c@vger.kernel.org
3754 L:      bcm-kernel-feedback-list@broadcom.com
3755 S:      Supported
3756 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3757 F:      drivers/i2c/busses/i2c-brcmstb.c
3758
3759 BROADCOM BRCMSTB UART DRIVER
3760 M:      Al Cooper <alcooperx@gmail.com>
3761 L:      linux-serial@vger.kernel.org
3762 L:      bcm-kernel-feedback-list@broadcom.com
3763 S:      Maintained
3764 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3765 F:      drivers/tty/serial/8250/8250_bcm7271.c
3766
3767 BROADCOM BRCMSTB USB EHCI DRIVER
3768 M:      Al Cooper <alcooperx@gmail.com>
3769 L:      linux-usb@vger.kernel.org
3770 L:      bcm-kernel-feedback-list@broadcom.com
3771 S:      Maintained
3772 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3773 F:      drivers/usb/host/ehci-brcm.*
3774
3775 BROADCOM BRCMSTB USB PIN MAP DRIVER
3776 M:      Al Cooper <alcooperx@gmail.com>
3777 L:      linux-usb@vger.kernel.org
3778 L:      bcm-kernel-feedback-list@broadcom.com
3779 S:      Maintained
3780 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3781 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3782
3783 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3784 M:      Al Cooper <alcooperx@gmail.com>
3785 L:      linux-kernel@vger.kernel.org
3786 L:      bcm-kernel-feedback-list@broadcom.com
3787 S:      Maintained
3788 F:      drivers/phy/broadcom/phy-brcm-usb*
3789
3790 BROADCOM ETHERNET PHY DRIVERS
3791 M:      Florian Fainelli <f.fainelli@gmail.com>
3792 L:      bcm-kernel-feedback-list@broadcom.com
3793 L:      netdev@vger.kernel.org
3794 S:      Supported
3795 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3796 F:      drivers/net/phy/bcm*.[ch]
3797 F:      drivers/net/phy/broadcom.c
3798 F:      include/linux/brcmphy.h
3799
3800 BROADCOM GENET ETHERNET DRIVER
3801 M:      Doug Berger <opendmb@gmail.com>
3802 M:      Florian Fainelli <f.fainelli@gmail.com>
3803 L:      bcm-kernel-feedback-list@broadcom.com
3804 L:      netdev@vger.kernel.org
3805 S:      Supported
3806 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3807 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3808 F:      drivers/net/ethernet/broadcom/genet/
3809 F:      drivers/net/ethernet/broadcom/unimac.h
3810 F:      drivers/net/mdio/mdio-bcm-unimac.c
3811 F:      include/linux/platform_data/bcmgenet.h
3812 F:      include/linux/platform_data/mdio-bcm-unimac.h
3813
3814 BROADCOM IPROC ARM ARCHITECTURE
3815 M:      Ray Jui <rjui@broadcom.com>
3816 M:      Scott Branden <sbranden@broadcom.com>
3817 M:      bcm-kernel-feedback-list@broadcom.com
3818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3819 S:      Maintained
3820 T:      git git://github.com/broadcom/cygnus-linux.git
3821 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3822 F:      arch/arm64/boot/dts/broadcom/stingray/*
3823 F:      drivers/clk/bcm/clk-ns*
3824 F:      drivers/clk/bcm/clk-sr*
3825 F:      drivers/pinctrl/bcm/pinctrl-ns*
3826 F:      include/dt-bindings/clock/bcm-sr*
3827 N:      iproc
3828 N:      cygnus
3829 N:      bcm[-_]nsp
3830 N:      bcm9113*
3831 N:      bcm9583*
3832 N:      bcm9585*
3833 N:      bcm9586*
3834 N:      bcm988312
3835 N:      bcm113*
3836 N:      bcm583*
3837 N:      bcm585*
3838 N:      bcm586*
3839 N:      bcm88312
3840 N:      hr2
3841 N:      stingray
3842
3843 BROADCOM IPROC GBIT ETHERNET DRIVER
3844 M:      Rafał Miłecki <rafal@milecki.pl>
3845 M:      bcm-kernel-feedback-list@broadcom.com
3846 L:      netdev@vger.kernel.org
3847 S:      Maintained
3848 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3849 F:      drivers/net/ethernet/broadcom/bgmac*
3850 F:      drivers/net/ethernet/broadcom/unimac.h
3851
3852 BROADCOM KONA GPIO DRIVER
3853 M:      Ray Jui <rjui@broadcom.com>
3854 L:      bcm-kernel-feedback-list@broadcom.com
3855 S:      Supported
3856 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3857 F:      drivers/gpio/gpio-bcm-kona.c
3858
3859 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3860 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3861 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3862 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3863 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3864 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3865 L:      linux-scsi@vger.kernel.org
3866 S:      Supported
3867 W:      https://www.broadcom.com/support/storage
3868 F:      drivers/scsi/mpi3mr/
3869
3870 BROADCOM NETXTREME-E ROCE DRIVER
3871 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3872 L:      linux-rdma@vger.kernel.org
3873 S:      Supported
3874 W:      http://www.broadcom.com
3875 F:      drivers/infiniband/hw/bnxt_re/
3876 F:      include/uapi/rdma/bnxt_re-abi.h
3877
3878 BROADCOM NVRAM DRIVER
3879 M:      Rafał Miłecki <zajec5@gmail.com>
3880 L:      linux-mips@vger.kernel.org
3881 S:      Maintained
3882 F:      drivers/firmware/broadcom/*
3883
3884 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3885 M:      Rafał Miłecki <rafal@milecki.pl>
3886 M:      Florian Fainelli <f.fainelli@gmail.com>
3887 M:      bcm-kernel-feedback-list@broadcom.com
3888 L:      linux-pm@vger.kernel.org
3889 S:      Maintained
3890 T:      git git://github.com/broadcom/stblinux.git
3891 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3892 F:      include/dt-bindings/soc/bcm-pmb.h
3893
3894 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3895 M:      Rafał Miłecki <zajec5@gmail.com>
3896 L:      linux-wireless@vger.kernel.org
3897 S:      Maintained
3898 F:      drivers/bcma/
3899 F:      include/linux/bcma/
3900
3901 BROADCOM SPI DRIVER
3902 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3903 M:      bcm-kernel-feedback-list@broadcom.com
3904 S:      Maintained
3905 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3906 F:      drivers/spi/spi-bcm-qspi.*
3907 F:      drivers/spi/spi-brcmstb-qspi.c
3908 F:      drivers/spi/spi-iproc-qspi.c
3909
3910 BROADCOM STB AVS CPUFREQ DRIVER
3911 M:      Markus Mayer <mmayer@broadcom.com>
3912 M:      bcm-kernel-feedback-list@broadcom.com
3913 L:      linux-pm@vger.kernel.org
3914 S:      Maintained
3915 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3916 F:      drivers/cpufreq/brcmstb*
3917
3918 BROADCOM STB AVS TMON DRIVER
3919 M:      Markus Mayer <mmayer@broadcom.com>
3920 M:      bcm-kernel-feedback-list@broadcom.com
3921 L:      linux-pm@vger.kernel.org
3922 S:      Maintained
3923 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3924 F:      drivers/thermal/broadcom/brcmstb*
3925
3926 BROADCOM STB DPFE DRIVER
3927 M:      Markus Mayer <mmayer@broadcom.com>
3928 M:      bcm-kernel-feedback-list@broadcom.com
3929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3930 S:      Maintained
3931 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3932 F:      drivers/memory/brcmstb_dpfe.c
3933
3934 BROADCOM STB NAND FLASH DRIVER
3935 M:      Brian Norris <computersforpeace@gmail.com>
3936 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3937 L:      linux-mtd@lists.infradead.org
3938 L:      bcm-kernel-feedback-list@broadcom.com
3939 S:      Maintained
3940 F:      drivers/mtd/nand/raw/brcmnand/
3941
3942 BROADCOM STB PCIE DRIVER
3943 M:      Jim Quinlan <jim2101024@gmail.com>
3944 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3945 M:      Florian Fainelli <f.fainelli@gmail.com>
3946 M:      bcm-kernel-feedback-list@broadcom.com
3947 L:      linux-pci@vger.kernel.org
3948 S:      Maintained
3949 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3950 F:      drivers/pci/controller/pcie-brcmstb.c
3951
3952 BROADCOM SYSTEMPORT ETHERNET DRIVER
3953 M:      Florian Fainelli <f.fainelli@gmail.com>
3954 L:      bcm-kernel-feedback-list@broadcom.com
3955 L:      netdev@vger.kernel.org
3956 S:      Supported
3957 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3958 F:      drivers/net/ethernet/broadcom/unimac.h
3959
3960 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3961 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3962 M:      Prashant Sreedharan <prashant@broadcom.com>
3963 M:      Michael Chan <mchan@broadcom.com>
3964 L:      netdev@vger.kernel.org
3965 S:      Supported
3966 F:      drivers/net/ethernet/broadcom/tg3.*
3967
3968 BROADCOM VK DRIVER
3969 M:      Scott Branden <scott.branden@broadcom.com>
3970 L:      bcm-kernel-feedback-list@broadcom.com
3971 S:      Supported
3972 F:      drivers/misc/bcm-vk/
3973 F:      include/uapi/linux/misc/bcm_vk.h
3974
3975 BROCADE BFA FC SCSI DRIVER
3976 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3977 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3978 L:      linux-scsi@vger.kernel.org
3979 S:      Supported
3980 F:      drivers/scsi/bfa/
3981
3982 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3983 M:      Rasesh Mody <rmody@marvell.com>
3984 M:      Sudarsana Kalluru <skalluru@marvell.com>
3985 M:      GR-Linux-NIC-Dev@marvell.com
3986 L:      netdev@vger.kernel.org
3987 S:      Supported
3988 F:      drivers/net/ethernet/brocade/bna/
3989
3990 BSG (block layer generic sg v4 driver)
3991 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3992 L:      linux-scsi@vger.kernel.org
3993 S:      Supported
3994 F:      block/bsg.c
3995 F:      include/linux/bsg.h
3996 F:      include/uapi/linux/bsg.h
3997
3998 BT87X AUDIO DRIVER
3999 M:      Clemens Ladisch <clemens@ladisch.de>
4000 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4001 S:      Maintained
4002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4003 F:      Documentation/sound/cards/bt87x.rst
4004 F:      sound/pci/bt87x.c
4005
4006 BT8XXGPIO DRIVER
4007 M:      Michael Buesch <m@bues.ch>
4008 S:      Maintained
4009 W:      http://bu3sch.de/btgpio.php
4010 F:      drivers/gpio/gpio-bt8xx.c
4011
4012 BTRFS FILE SYSTEM
4013 M:      Chris Mason <clm@fb.com>
4014 M:      Josef Bacik <josef@toxicpanda.com>
4015 M:      David Sterba <dsterba@suse.com>
4016 L:      linux-btrfs@vger.kernel.org
4017 S:      Maintained
4018 W:      http://btrfs.wiki.kernel.org/
4019 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4020 C:      irc://irc.libera.chat/btrfs
4021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4022 F:      Documentation/filesystems/btrfs.rst
4023 F:      fs/btrfs/
4024 F:      include/linux/btrfs*
4025 F:      include/uapi/linux/btrfs*
4026
4027 BTTV VIDEO4LINUX DRIVER
4028 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4029 L:      linux-media@vger.kernel.org
4030 S:      Odd fixes
4031 W:      https://linuxtv.org
4032 T:      git git://linuxtv.org/media_tree.git
4033 F:      Documentation/driver-api/media/drivers/bttv*
4034 F:      drivers/media/pci/bt8xx/bttv*
4035
4036 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4037 M:      Chanwoo Choi <cw00.choi@samsung.com>
4038 L:      linux-pm@vger.kernel.org
4039 L:      linux-samsung-soc@vger.kernel.org
4040 S:      Maintained
4041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4042 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4043 F:      drivers/devfreq/exynos-bus.c
4044
4045 BUSLOGIC SCSI DRIVER
4046 M:      Khalid Aziz <khalid@gonehiking.org>
4047 L:      linux-scsi@vger.kernel.org
4048 S:      Maintained
4049 F:      drivers/scsi/BusLogic.*
4050 F:      drivers/scsi/FlashPoint.*
4051
4052 C-MEDIA CMI8788 DRIVER
4053 M:      Clemens Ladisch <clemens@ladisch.de>
4054 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4055 S:      Maintained
4056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4057 F:      sound/pci/oxygen/
4058
4059 C-SKY ARCHITECTURE
4060 M:      Guo Ren <guoren@kernel.org>
4061 L:      linux-csky@vger.kernel.org
4062 S:      Supported
4063 T:      git https://github.com/c-sky/csky-linux.git
4064 F:      Documentation/devicetree/bindings/csky/
4065 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4066 F:      Documentation/devicetree/bindings/timer/csky,*
4067 F:      arch/csky/
4068 F:      drivers/clocksource/timer-gx6605s.c
4069 F:      drivers/clocksource/timer-mp-csky.c
4070 F:      drivers/irqchip/irq-csky-*
4071 N:      csky
4072 K:      csky
4073
4074 CA8210 IEEE-802.15.4 RADIO DRIVER
4075 M:      Harry Morris <h.morris@cascoda.com>
4076 L:      linux-wpan@vger.kernel.org
4077 S:      Maintained
4078 W:      https://github.com/Cascoda/ca8210-linux.git
4079 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4080 F:      drivers/net/ieee802154/ca8210.c
4081
4082 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4083 M:      Damien Le Moal <damien.lemoal@wdc.com>
4084 L:      linux-riscv@lists.infradead.org
4085 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4086 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4087 F:      drivers/pinctrl/pinctrl-k210.c
4088
4089 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4090 M:      Damien Le Moal <damien.lemoal@wdc.com>
4091 L:      linux-kernel@vger.kernel.org
4092 L:      linux-riscv@lists.infradead.org
4093 S:      Maintained
4094 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4095 F:      drivers/reset/reset-k210.c
4096
4097 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4098 M:      Damien Le Moal <damien.lemoal@wdc.com>
4099 L:      linux-riscv@lists.infradead.org
4100 S:      Maintained
4101 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4102 F:      drivers/soc/canaan/
4103 F:      include/soc/canaan/
4104
4105 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4106 M:      David Howells <dhowells@redhat.com>
4107 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4108 S:      Supported
4109 F:      Documentation/filesystems/caching/cachefiles.rst
4110 F:      fs/cachefiles/
4111
4112 CADENCE MIPI-CSI2 BRIDGES
4113 M:      Maxime Ripard <mripard@kernel.org>
4114 L:      linux-media@vger.kernel.org
4115 S:      Maintained
4116 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4117 F:      drivers/media/platform/cadence/cdns-csi2*
4118
4119 CADENCE NAND DRIVER
4120 L:      linux-mtd@lists.infradead.org
4121 S:      Orphan
4122 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4123 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4124
4125 CADENCE USB3 DRD IP DRIVER
4126 M:      Peter Chen <peter.chen@kernel.org>
4127 M:      Pawel Laszczak <pawell@cadence.com>
4128 R:      Roger Quadros <rogerq@kernel.org>
4129 R:      Aswath Govindraju <a-govindraju@ti.com>
4130 L:      linux-usb@vger.kernel.org
4131 S:      Maintained
4132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4133 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4134 F:      drivers/usb/cdns3/
4135 X:      drivers/usb/cdns3/cdnsp*
4136
4137 CADENCE USBSSP DRD IP DRIVER
4138 M:      Pawel Laszczak <pawell@cadence.com>
4139 L:      linux-usb@vger.kernel.org
4140 S:      Maintained
4141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4142 F:      drivers/usb/cdns3/
4143 X:      drivers/usb/cdns3/cdns3*
4144
4145 CADET FM/AM RADIO RECEIVER DRIVER
4146 M:      Hans Verkuil <hverkuil@xs4all.nl>
4147 L:      linux-media@vger.kernel.org
4148 S:      Maintained
4149 W:      https://linuxtv.org
4150 T:      git git://linuxtv.org/media_tree.git
4151 F:      drivers/media/radio/radio-cadet*
4152
4153 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4154 L:      linux-media@vger.kernel.org
4155 S:      Orphan
4156 T:      git git://linuxtv.org/media_tree.git
4157 F:      Documentation/admin-guide/media/cafe_ccic*
4158 F:      drivers/media/platform/marvell-ccic/
4159
4160 CAIF NETWORK LAYER
4161 L:      netdev@vger.kernel.org
4162 S:      Orphan
4163 F:      Documentation/networking/caif/
4164 F:      drivers/net/caif/
4165 F:      include/net/caif/
4166 F:      include/uapi/linux/caif/
4167 F:      net/caif/
4168
4169 CAKE QDISC
4170 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4171 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4172 S:      Maintained
4173 F:      net/sched/sch_cake.c
4174
4175 CAN NETWORK DRIVERS
4176 M:      Wolfgang Grandegger <wg@grandegger.com>
4177 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4178 L:      linux-can@vger.kernel.org
4179 S:      Maintained
4180 W:      https://github.com/linux-can
4181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4183 F:      Documentation/devicetree/bindings/net/can/
4184 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4185 F:      drivers/net/can/
4186 F:      drivers/phy/phy-can-transceiver.c
4187 F:      include/linux/can/bittiming.h
4188 F:      include/linux/can/dev.h
4189 F:      include/linux/can/led.h
4190 F:      include/linux/can/length.h
4191 F:      include/linux/can/platform/
4192 F:      include/linux/can/rx-offload.h
4193 F:      include/uapi/linux/can/error.h
4194 F:      include/uapi/linux/can/netlink.h
4195 F:      include/uapi/linux/can/vxcan.h
4196
4197 CAN NETWORK LAYER
4198 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4199 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4200 L:      linux-can@vger.kernel.org
4201 S:      Maintained
4202 W:      https://github.com/linux-can
4203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4205 F:      Documentation/networking/can.rst
4206 F:      include/linux/can/can-ml.h
4207 F:      include/linux/can/core.h
4208 F:      include/linux/can/skb.h
4209 F:      include/net/netns/can.h
4210 F:      include/uapi/linux/can.h
4211 F:      include/uapi/linux/can/bcm.h
4212 F:      include/uapi/linux/can/gw.h
4213 F:      include/uapi/linux/can/isotp.h
4214 F:      include/uapi/linux/can/raw.h
4215 F:      net/can/
4216
4217 CAN-J1939 NETWORK LAYER
4218 M:      Robin van der Gracht <robin@protonic.nl>
4219 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4220 R:      kernel@pengutronix.de
4221 L:      linux-can@vger.kernel.org
4222 S:      Maintained
4223 F:      Documentation/networking/j1939.rst
4224 F:      include/uapi/linux/can/j1939.h
4225 F:      net/can/j1939/
4226
4227 CAPABILITIES
4228 M:      Serge Hallyn <serge@hallyn.com>
4229 L:      linux-security-module@vger.kernel.org
4230 S:      Supported
4231 F:      include/linux/capability.h
4232 F:      include/uapi/linux/capability.h
4233 F:      kernel/capability.c
4234 F:      security/commoncap.c
4235
4236 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4237 M:      Kevin Tsai <ktsai@capellamicro.com>
4238 S:      Maintained
4239 F:      drivers/iio/light/cm*
4240
4241 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4242 M:      Christian Lamparter <chunkeey@googlemail.com>
4243 L:      linux-wireless@vger.kernel.org
4244 S:      Maintained
4245 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4246 F:      drivers/net/wireless/ath/carl9170/
4247
4248 CAVIUM I2C DRIVER
4249 M:      Robert Richter <rric@kernel.org>
4250 S:      Odd Fixes
4251 W:      http://www.marvell.com
4252 F:      drivers/i2c/busses/i2c-octeon*
4253 F:      drivers/i2c/busses/i2c-thunderx*
4254
4255 CAVIUM LIQUIDIO NETWORK DRIVER
4256 M:      Derek Chickles <dchickles@marvell.com>
4257 M:      Satanand Burla <sburla@marvell.com>
4258 M:      Felix Manlunas <fmanlunas@marvell.com>
4259 L:      netdev@vger.kernel.org
4260 S:      Supported
4261 W:      http://www.marvell.com
4262 F:      drivers/net/ethernet/cavium/liquidio/
4263
4264 CAVIUM MMC DRIVER
4265 M:      Robert Richter <rric@kernel.org>
4266 S:      Odd Fixes
4267 W:      http://www.marvell.com
4268 F:      drivers/mmc/host/cavium*
4269
4270 CAVIUM OCTEON-TX CRYPTO DRIVER
4271 M:      George Cherian <gcherian@marvell.com>
4272 L:      linux-crypto@vger.kernel.org
4273 S:      Supported
4274 W:      http://www.marvell.com
4275 F:      drivers/crypto/cavium/cpt/
4276
4277 CAVIUM THUNDERX2 ARM64 SOC
4278 M:      Robert Richter <rric@kernel.org>
4279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4280 S:      Odd Fixes
4281 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4282 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4283
4284 CBS/ETF/TAPRIO QDISCS
4285 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4286 S:      Maintained
4287 L:      netdev@vger.kernel.org
4288 F:      net/sched/sch_cbs.c
4289 F:      net/sched/sch_etf.c
4290 F:      net/sched/sch_taprio.c
4291
4292 CC2520 IEEE-802.15.4 RADIO DRIVER
4293 M:      Varka Bhadram <varkabhadram@gmail.com>
4294 L:      linux-wpan@vger.kernel.org
4295 S:      Maintained
4296 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4297 F:      drivers/net/ieee802154/cc2520.c
4298 F:      include/linux/spi/cc2520.h
4299
4300 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4301 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4302 L:      linux-crypto@vger.kernel.org
4303 S:      Supported
4304 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4305 F:      drivers/crypto/ccree/
4306
4307 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4308 M:      Hadar Gat <hadar.gat@arm.com>
4309 L:      linux-crypto@vger.kernel.org
4310 S:      Supported
4311 F:      drivers/char/hw_random/cctrng.c
4312 F:      drivers/char/hw_random/cctrng.h
4313 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4314 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4315
4316 CEC FRAMEWORK
4317 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4318 L:      linux-media@vger.kernel.org
4319 S:      Supported
4320 W:      http://linuxtv.org
4321 T:      git git://linuxtv.org/media_tree.git
4322 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4323 F:      Documentation/devicetree/bindings/media/cec.txt
4324 F:      Documentation/driver-api/media/cec-core.rst
4325 F:      Documentation/userspace-api/media/cec
4326 F:      drivers/media/cec/
4327 F:      drivers/media/rc/keymaps/rc-cec.c
4328 F:      include/media/cec-notifier.h
4329 F:      include/media/cec.h
4330 F:      include/uapi/linux/cec-funcs.h
4331 F:      include/uapi/linux/cec.h
4332
4333 CEC GPIO DRIVER
4334 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4335 L:      linux-media@vger.kernel.org
4336 S:      Supported
4337 W:      http://linuxtv.org
4338 T:      git git://linuxtv.org/media_tree.git
4339 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4340 F:      drivers/media/cec/platform/cec-gpio/
4341
4342 CELL BROADBAND ENGINE ARCHITECTURE
4343 M:      Arnd Bergmann <arnd@arndb.de>
4344 L:      linuxppc-dev@lists.ozlabs.org
4345 S:      Supported
4346 W:      http://www.ibm.com/developerworks/power/cell/
4347 F:      arch/powerpc/include/asm/cell*.h
4348 F:      arch/powerpc/include/asm/spu*.h
4349 F:      arch/powerpc/include/uapi/asm/spu*.h
4350 F:      arch/powerpc/platforms/cell/
4351
4352 CELLWISE CW2015 BATTERY DRIVER
4353 M:      Tobias Schrammm <t.schramm@manjaro.org>
4354 S:      Maintained
4355 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4356 F:      drivers/power/supply/cw2015_battery.c
4357
4358 CEPH COMMON CODE (LIBCEPH)
4359 M:      Ilya Dryomov <idryomov@gmail.com>
4360 M:      Jeff Layton <jlayton@kernel.org>
4361 L:      ceph-devel@vger.kernel.org
4362 S:      Supported
4363 W:      http://ceph.com/
4364 T:      git git://github.com/ceph/ceph-client.git
4365 F:      include/linux/ceph/
4366 F:      include/linux/crush/
4367 F:      net/ceph/
4368
4369 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4370 M:      Jeff Layton <jlayton@kernel.org>
4371 M:      Ilya Dryomov <idryomov@gmail.com>
4372 L:      ceph-devel@vger.kernel.org
4373 S:      Supported
4374 W:      http://ceph.com/
4375 T:      git git://github.com/ceph/ceph-client.git
4376 F:      Documentation/filesystems/ceph.rst
4377 F:      fs/ceph/
4378
4379 CERTIFICATE HANDLING
4380 M:      David Howells <dhowells@redhat.com>
4381 M:      David Woodhouse <dwmw2@infradead.org>
4382 L:      keyrings@vger.kernel.org
4383 S:      Maintained
4384 F:      Documentation/admin-guide/module-signing.rst
4385 F:      certs/
4386 F:      scripts/extract-cert.c
4387 F:      scripts/sign-file.c
4388
4389 CFAG12864B LCD DRIVER
4390 M:      Miguel Ojeda <ojeda@kernel.org>
4391 S:      Maintained
4392 F:      drivers/auxdisplay/cfag12864b.c
4393 F:      include/linux/cfag12864b.h
4394
4395 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4396 M:      Miguel Ojeda <ojeda@kernel.org>
4397 S:      Maintained
4398 F:      drivers/auxdisplay/cfag12864bfb.c
4399 F:      include/linux/cfag12864b.h
4400
4401 CHAR and MISC DRIVERS
4402 M:      Arnd Bergmann <arnd@arndb.de>
4403 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4404 S:      Supported
4405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4406 F:      drivers/char/
4407 F:      drivers/misc/
4408 F:      include/linux/miscdevice.h
4409 X:      drivers/char/agp/
4410 X:      drivers/char/hw_random/
4411 X:      drivers/char/ipmi/
4412 X:      drivers/char/random.c
4413 X:      drivers/char/tpm/
4414
4415 CHECKPATCH
4416 M:      Andy Whitcroft <apw@canonical.com>
4417 M:      Joe Perches <joe@perches.com>
4418 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4419 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4420 S:      Maintained
4421 F:      scripts/checkpatch.pl
4422
4423 CHECKPATCH DOCUMENTATION
4424 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4425 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4426 R:      Joe Perches <joe@perches.com>
4427 S:      Maintained
4428 F:      Documentation/dev-tools/checkpatch.rst
4429
4430 CHINESE DOCUMENTATION
4431 M:      Alex Shi <alexs@kernel.org>
4432 S:      Maintained
4433 F:      Documentation/translations/zh_CN/
4434
4435 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4436 M:      Peter Chen <peter.chen@kernel.org>
4437 L:      linux-usb@vger.kernel.org
4438 S:      Maintained
4439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4440 F:      drivers/usb/chipidea/
4441
4442 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4443 M:      Hans de Goede <hdegoede@redhat.com>
4444 L:      linux-input@vger.kernel.org
4445 S:      Maintained
4446 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4447 F:      drivers/input/touchscreen/chipone_icn8318.c
4448
4449 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4450 M:      Hans de Goede <hdegoede@redhat.com>
4451 L:      linux-input@vger.kernel.org
4452 S:      Maintained
4453 F:      drivers/input/touchscreen/chipone_icn8505.c
4454
4455 CHROME HARDWARE PLATFORM SUPPORT
4456 M:      Benson Leung <bleung@chromium.org>
4457 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4458 S:      Maintained
4459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4460 F:      drivers/platform/chrome/
4461
4462 CHROMEOS EC CODEC DRIVER
4463 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4464 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4465 R:      Guenter Roeck <groeck@chromium.org>
4466 S:      Maintained
4467 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4468 F:      sound/soc/codecs/cros_ec_codec.*
4469
4470 CHROMEOS EC SUBDRIVERS
4471 M:      Benson Leung <bleung@chromium.org>
4472 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4473 R:      Guenter Roeck <groeck@chromium.org>
4474 S:      Maintained
4475 F:      drivers/power/supply/cros_usbpd-charger.c
4476 N:      cros_ec
4477 N:      cros-ec
4478
4479 CHRONTEL CH7322 CEC DRIVER
4480 M:      Jeff Chase <jnchase@google.com>
4481 L:      linux-media@vger.kernel.org
4482 S:      Maintained
4483 T:      git git://linuxtv.org/media_tree.git
4484 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4485 F:      drivers/media/cec/i2c/ch7322.c
4486
4487 CIRRUS LOGIC AUDIO CODEC DRIVERS
4488 M:      James Schulman <james.schulman@cirrus.com>
4489 M:      David Rhodes <david.rhodes@cirrus.com>
4490 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4491 L:      patches@opensource.cirrus.com
4492 S:      Maintained
4493 F:      sound/soc/codecs/cs*
4494
4495 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4496 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4497 L:      netdev@vger.kernel.org
4498 S:      Maintained
4499 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4500
4501 CIRRUS LOGIC LOCHNAGAR DRIVER
4502 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4503 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4504 L:      patches@opensource.cirrus.com
4505 S:      Supported
4506 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4507 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4508 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4509 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4510 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4511 F:      Documentation/hwmon/lochnagar.rst
4512 F:      drivers/clk/clk-lochnagar.c
4513 F:      drivers/hwmon/lochnagar-hwmon.c
4514 F:      drivers/mfd/lochnagar-i2c.c
4515 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4516 F:      drivers/regulator/lochnagar-regulator.c
4517 F:      include/dt-bindings/clk/lochnagar.h
4518 F:      include/dt-bindings/pinctrl/lochnagar.h
4519 F:      include/linux/mfd/lochnagar*
4520 F:      sound/soc/codecs/lochnagar-sc.c
4521
4522 CIRRUS LOGIC MADERA CODEC DRIVERS
4523 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4524 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4525 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4526 L:      patches@opensource.cirrus.com
4527 S:      Supported
4528 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4529 T:      git https://github.com/CirrusLogic/linux-drivers.git
4530 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4531 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4532 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4533 F:      drivers/gpio/gpio-madera*
4534 F:      drivers/irqchip/irq-madera*
4535 F:      drivers/mfd/cs47l*
4536 F:      drivers/mfd/madera*
4537 F:      drivers/pinctrl/cirrus/*
4538 F:      include/dt-bindings/sound/madera*
4539 F:      include/linux/irqchip/irq-madera*
4540 F:      include/linux/mfd/madera/*
4541 F:      include/sound/madera*
4542 F:      sound/soc/codecs/cs47l*
4543 F:      sound/soc/codecs/madera*
4544
4545 CISCO FCOE HBA DRIVER
4546 M:      Satish Kharat <satishkh@cisco.com>
4547 M:      Sesidhar Baddela <sebaddel@cisco.com>
4548 M:      Karan Tilak Kumar <kartilak@cisco.com>
4549 L:      linux-scsi@vger.kernel.org
4550 S:      Supported
4551 F:      drivers/scsi/fnic/
4552
4553 CISCO SCSI HBA DRIVER
4554 M:      Karan Tilak Kumar <kartilak@cisco.com>
4555 M:      Sesidhar Baddela <sebaddel@cisco.com>
4556 L:      linux-scsi@vger.kernel.org
4557 S:      Supported
4558 F:      drivers/scsi/snic/
4559
4560 CISCO VIC ETHERNET NIC DRIVER
4561 M:      Christian Benvenuti <benve@cisco.com>
4562 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4563 S:      Supported
4564 F:      drivers/net/ethernet/cisco/enic/
4565
4566 CISCO VIC LOW LATENCY NIC DRIVER
4567 M:      Christian Benvenuti <benve@cisco.com>
4568 M:      Nelson Escobar <neescoba@cisco.com>
4569 S:      Supported
4570 F:      drivers/infiniband/hw/usnic/
4571
4572 CLANG-FORMAT FILE
4573 M:      Miguel Ojeda <ojeda@kernel.org>
4574 S:      Maintained
4575 F:      .clang-format
4576
4577 CLANG/LLVM BUILD SUPPORT
4578 M:      Nathan Chancellor <nathan@kernel.org>
4579 M:      Nick Desaulniers <ndesaulniers@google.com>
4580 L:      llvm@lists.linux.dev
4581 S:      Supported
4582 W:      https://clangbuiltlinux.github.io/
4583 B:      https://github.com/ClangBuiltLinux/linux/issues
4584 C:      irc://irc.libera.chat/clangbuiltlinux
4585 F:      Documentation/kbuild/llvm.rst
4586 F:      include/linux/compiler-clang.h
4587 F:      scripts/Makefile.clang
4588 F:      scripts/clang-tools/
4589 K:      \b(?i:clang|llvm)\b
4590
4591 CLANG CONTROL FLOW INTEGRITY SUPPORT
4592 M:      Sami Tolvanen <samitolvanen@google.com>
4593 M:      Kees Cook <keescook@chromium.org>
4594 R:      Nathan Chancellor <nathan@kernel.org>
4595 R:      Nick Desaulniers <ndesaulniers@google.com>
4596 L:      llvm@lists.linux.dev
4597 S:      Supported
4598 B:      https://github.com/ClangBuiltLinux/linux/issues
4599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4600 F:      include/linux/cfi.h
4601 F:      kernel/cfi.c
4602
4603 CLEANCACHE API
4604 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4605 L:      linux-kernel@vger.kernel.org
4606 S:      Maintained
4607 F:      include/linux/cleancache.h
4608 F:      mm/cleancache.c
4609
4610 CLK API
4611 M:      Russell King <linux@armlinux.org.uk>
4612 L:      linux-clk@vger.kernel.org
4613 S:      Maintained
4614 F:      include/linux/clk.h
4615
4616 CLOCKSOURCE, CLOCKEVENT DRIVERS
4617 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4618 M:      Thomas Gleixner <tglx@linutronix.de>
4619 L:      linux-kernel@vger.kernel.org
4620 S:      Supported
4621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4622 F:      Documentation/devicetree/bindings/timer/
4623 F:      drivers/clocksource/
4624
4625 CMPC ACPI DRIVER
4626 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4627 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4628 L:      platform-driver-x86@vger.kernel.org
4629 S:      Supported
4630 F:      drivers/platform/x86/classmate-laptop.c
4631
4632 COBALT MEDIA DRIVER
4633 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4634 L:      linux-media@vger.kernel.org
4635 S:      Supported
4636 W:      https://linuxtv.org
4637 T:      git git://linuxtv.org/media_tree.git
4638 F:      drivers/media/pci/cobalt/
4639
4640 COCCINELLE/Semantic Patches (SmPL)
4641 M:      Julia Lawall <Julia.Lawall@inria.fr>
4642 M:      Gilles Muller <Gilles.Muller@inria.fr>
4643 M:      Nicolas Palix <nicolas.palix@imag.fr>
4644 M:      Michal Marek <michal.lkml@markovi.net>
4645 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4646 S:      Supported
4647 W:      http://coccinelle.lip6.fr/
4648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4649 F:      Documentation/dev-tools/coccinelle.rst
4650 F:      scripts/coccicheck
4651 F:      scripts/coccinelle/
4652
4653 CODA FILE SYSTEM
4654 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4655 M:      coda@cs.cmu.edu
4656 L:      codalist@coda.cs.cmu.edu
4657 S:      Maintained
4658 W:      http://www.coda.cs.cmu.edu/
4659 F:      Documentation/filesystems/coda.rst
4660 F:      fs/coda/
4661 F:      include/linux/coda*.h
4662 F:      include/uapi/linux/coda*.h
4663
4664 CODA V4L2 MEM2MEM DRIVER
4665 M:      Philipp Zabel <p.zabel@pengutronix.de>
4666 L:      linux-media@vger.kernel.org
4667 S:      Maintained
4668 F:      Documentation/devicetree/bindings/media/coda.yaml
4669 F:      drivers/media/platform/coda/
4670
4671 CODE OF CONDUCT
4672 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4673 S:      Supported
4674 F:      Documentation/process/code-of-conduct-interpretation.rst
4675 F:      Documentation/process/code-of-conduct.rst
4676
4677 COMEDI DRIVERS
4678 M:      Ian Abbott <abbotti@mev.co.uk>
4679 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4680 S:      Odd Fixes
4681 F:      drivers/comedi/
4682
4683 COMMON CLK FRAMEWORK
4684 M:      Michael Turquette <mturquette@baylibre.com>
4685 M:      Stephen Boyd <sboyd@kernel.org>
4686 L:      linux-clk@vger.kernel.org
4687 S:      Maintained
4688 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4690 F:      Documentation/devicetree/bindings/clock/
4691 F:      drivers/clk/
4692 F:      include/linux/clk-pr*
4693 F:      include/linux/clk/
4694 F:      include/linux/of_clk.h
4695 X:      drivers/clk/clkdev.c
4696
4697 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4698 M:      Steve French <sfrench@samba.org>
4699 L:      linux-cifs@vger.kernel.org
4700 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4701 S:      Supported
4702 W:      http://linux-cifs.samba.org/
4703 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4704 F:      Documentation/admin-guide/cifs/
4705 F:      fs/cifs/
4706 F:      fs/smbfs_common/
4707
4708 COMPACTPCI HOTPLUG CORE
4709 M:      Scott Murray <scott@spiteful.org>
4710 L:      linux-pci@vger.kernel.org
4711 S:      Maintained
4712 F:      drivers/pci/hotplug/cpci_hotplug*
4713
4714 COMPACTPCI HOTPLUG GENERIC DRIVER
4715 M:      Scott Murray <scott@spiteful.org>
4716 L:      linux-pci@vger.kernel.org
4717 S:      Maintained
4718 F:      drivers/pci/hotplug/cpcihp_generic.c
4719
4720 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4721 M:      Scott Murray <scott@spiteful.org>
4722 L:      linux-pci@vger.kernel.org
4723 S:      Maintained
4724 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4725
4726 COMPAL LAPTOP SUPPORT
4727 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4728 L:      platform-driver-x86@vger.kernel.org
4729 S:      Maintained
4730 F:      drivers/platform/x86/compal-laptop.c
4731
4732 COMPILER ATTRIBUTES
4733 M:      Miguel Ojeda <ojeda@kernel.org>
4734 R:      Nick Desaulniers <ndesaulniers@google.com>
4735 S:      Maintained
4736 F:      include/linux/compiler_attributes.h
4737
4738 COMPUTE EXPRESS LINK (CXL)
4739 M:      Alison Schofield <alison.schofield@intel.com>
4740 M:      Vishal Verma <vishal.l.verma@intel.com>
4741 M:      Ira Weiny <ira.weiny@intel.com>
4742 M:      Ben Widawsky <ben.widawsky@intel.com>
4743 M:      Dan Williams <dan.j.williams@intel.com>
4744 L:      linux-cxl@vger.kernel.org
4745 S:      Maintained
4746 F:      drivers/cxl/
4747 F:      include/uapi/linux/cxl_mem.h
4748
4749 CONEXANT ACCESSRUNNER USB DRIVER
4750 L:      accessrunner-general@lists.sourceforge.net
4751 S:      Orphan
4752 W:      http://accessrunner.sourceforge.net/
4753 F:      drivers/usb/atm/cxacru.c
4754
4755 CONFIGFS
4756 M:      Joel Becker <jlbec@evilplan.org>
4757 M:      Christoph Hellwig <hch@lst.de>
4758 S:      Supported
4759 T:      git git://git.infradead.org/users/hch/configfs.git
4760 F:      fs/configfs/
4761 F:      include/linux/configfs.h
4762 F:      samples/configfs/
4763
4764 CONSOLE SUBSYSTEM
4765 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4766 S:      Supported
4767 F:      drivers/video/console/
4768 F:      include/linux/console*
4769
4770 CONTEXT TRACKING
4771 M:      Frederic Weisbecker <frederic@kernel.org>
4772 S:      Maintained
4773 F:      kernel/context_tracking.c
4774 F:      include/linux/context_tracking*
4775
4776 CONTROL GROUP (CGROUP)
4777 M:      Tejun Heo <tj@kernel.org>
4778 M:      Zefan Li <lizefan.x@bytedance.com>
4779 M:      Johannes Weiner <hannes@cmpxchg.org>
4780 L:      cgroups@vger.kernel.org
4781 S:      Maintained
4782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4783 F:      Documentation/admin-guide/cgroup-v1/
4784 F:      Documentation/admin-guide/cgroup-v2.rst
4785 F:      include/linux/cgroup*
4786 F:      kernel/cgroup/
4787
4788 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4789 M:      Tejun Heo <tj@kernel.org>
4790 M:      Jens Axboe <axboe@kernel.dk>
4791 L:      cgroups@vger.kernel.org
4792 L:      linux-block@vger.kernel.org
4793 T:      git git://git.kernel.dk/linux-block
4794 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4795 F:      block/bfq-cgroup.c
4796 F:      block/blk-cgroup.c
4797 F:      block/blk-iolatency.c
4798 F:      block/blk-throttle.c
4799 F:      include/linux/blk-cgroup.h
4800
4801 CONTROL GROUP - CPUSET
4802 M:      Zefan Li <lizefan.x@bytedance.com>
4803 L:      cgroups@vger.kernel.org
4804 S:      Maintained
4805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4806 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4807 F:      include/linux/cpuset.h
4808 F:      kernel/cgroup/cpuset.c
4809
4810 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4811 M:      Johannes Weiner <hannes@cmpxchg.org>
4812 M:      Michal Hocko <mhocko@kernel.org>
4813 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4814 L:      cgroups@vger.kernel.org
4815 L:      linux-mm@kvack.org
4816 S:      Maintained
4817 F:      mm/memcontrol.c
4818 F:      mm/swap_cgroup.c
4819
4820 CORETEMP HARDWARE MONITORING DRIVER
4821 M:      Fenghua Yu <fenghua.yu@intel.com>
4822 L:      linux-hwmon@vger.kernel.org
4823 S:      Maintained
4824 F:      Documentation/hwmon/coretemp.rst
4825 F:      drivers/hwmon/coretemp.c
4826
4827 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4828 M:      Marius Zachmann <mail@mariuszachmann.de>
4829 L:      linux-hwmon@vger.kernel.org
4830 S:      Maintained
4831 F:      drivers/hwmon/corsair-cpro.c
4832
4833 CORSAIR-PSU HARDWARE MONITOR DRIVER
4834 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4835 L:      linux-hwmon@vger.kernel.org
4836 S:      Maintained
4837 F:      Documentation/hwmon/corsair-psu.rst
4838 F:      drivers/hwmon/corsair-psu.c
4839
4840 COSA/SRP SYNC SERIAL DRIVER
4841 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4842 S:      Maintained
4843 W:      http://www.fi.muni.cz/~kas/cosa/
4844 F:      drivers/net/wan/cosa*
4845
4846 COUNTER SUBSYSTEM
4847 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4848 L:      linux-iio@vger.kernel.org
4849 S:      Maintained
4850 F:      Documentation/ABI/testing/sysfs-bus-counter
4851 F:      Documentation/driver-api/generic-counter.rst
4852 F:      drivers/counter/
4853 F:      include/linux/counter.h
4854 F:      include/linux/counter_enum.h
4855
4856 CP2615 I2C DRIVER
4857 M:      Bence Csókás <bence98@sch.bme.hu>
4858 S:      Maintained
4859 F:      drivers/i2c/busses/i2c-cp2615.c
4860
4861 CPMAC ETHERNET DRIVER
4862 M:      Florian Fainelli <f.fainelli@gmail.com>
4863 L:      netdev@vger.kernel.org
4864 S:      Maintained
4865 F:      drivers/net/ethernet/ti/cpmac.c
4866
4867 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4868 M:      Viresh Kumar <viresh.kumar@linaro.org>
4869 M:      Sudeep Holla <sudeep.holla@arm.com>
4870 L:      linux-pm@vger.kernel.org
4871 S:      Maintained
4872 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4873 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4874
4875 CPU FREQUENCY SCALING FRAMEWORK
4876 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4877 M:      Viresh Kumar <viresh.kumar@linaro.org>
4878 L:      linux-pm@vger.kernel.org
4879 S:      Maintained
4880 B:      https://bugzilla.kernel.org
4881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4883 F:      Documentation/admin-guide/pm/cpufreq.rst
4884 F:      Documentation/admin-guide/pm/intel_pstate.rst
4885 F:      Documentation/cpu-freq/
4886 F:      Documentation/devicetree/bindings/cpufreq/
4887 F:      drivers/cpufreq/
4888 F:      include/linux/cpufreq.h
4889 F:      include/linux/sched/cpufreq.h
4890 F:      kernel/sched/cpufreq*.c
4891 F:      tools/testing/selftests/cpufreq/
4892
4893 CPU IDLE TIME MANAGEMENT FRAMEWORK
4894 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4895 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4896 L:      linux-pm@vger.kernel.org
4897 S:      Maintained
4898 B:      https://bugzilla.kernel.org
4899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4900 F:      Documentation/admin-guide/pm/cpuidle.rst
4901 F:      Documentation/driver-api/pm/cpuidle.rst
4902 F:      drivers/cpuidle/
4903 F:      include/linux/cpuidle.h
4904
4905 CPU POWER MONITORING SUBSYSTEM
4906 M:      Thomas Renninger <trenn@suse.com>
4907 M:      Shuah Khan <shuah@kernel.org>
4908 M:      Shuah Khan <skhan@linuxfoundation.org>
4909 L:      linux-pm@vger.kernel.org
4910 S:      Maintained
4911 F:      tools/power/cpupower/
4912
4913 CPUID/MSR DRIVER
4914 M:      "H. Peter Anvin" <hpa@zytor.com>
4915 S:      Maintained
4916 F:      arch/x86/kernel/cpuid.c
4917 F:      arch/x86/kernel/msr.c
4918
4919 CPUIDLE DRIVER - ARM BIG LITTLE
4920 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4921 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4922 L:      linux-pm@vger.kernel.org
4923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4924 S:      Maintained
4925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4926 F:      drivers/cpuidle/cpuidle-big_little.c
4927
4928 CPUIDLE DRIVER - ARM EXYNOS
4929 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4930 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4931 M:      Kukjin Kim <kgene@kernel.org>
4932 L:      linux-pm@vger.kernel.org
4933 L:      linux-samsung-soc@vger.kernel.org
4934 S:      Supported
4935 F:      arch/arm/mach-exynos/pm.c
4936 F:      drivers/cpuidle/cpuidle-exynos.c
4937 F:      include/linux/platform_data/cpuidle-exynos.h
4938
4939 CPUIDLE DRIVER - ARM PSCI
4940 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4941 M:      Sudeep Holla <sudeep.holla@arm.com>
4942 L:      linux-pm@vger.kernel.org
4943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4944 S:      Supported
4945 F:      drivers/cpuidle/cpuidle-psci.c
4946
4947 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4948 M:      Ulf Hansson <ulf.hansson@linaro.org>
4949 L:      linux-pm@vger.kernel.org
4950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4951 S:      Supported
4952 F:      drivers/cpuidle/cpuidle-psci.h
4953 F:      drivers/cpuidle/cpuidle-psci-domain.c
4954
4955 CRAMFS FILESYSTEM
4956 M:      Nicolas Pitre <nico@fluxnic.net>
4957 S:      Maintained
4958 F:      Documentation/filesystems/cramfs.rst
4959 F:      fs/cramfs/
4960
4961 CREATIVE SB0540
4962 M:      Bastien Nocera <hadess@hadess.net>
4963 L:      linux-input@vger.kernel.org
4964 S:      Maintained
4965 F:      drivers/hid/hid-creative-sb0540.c
4966
4967 CRYPTO API
4968 M:      Herbert Xu <herbert@gondor.apana.org.au>
4969 M:      "David S. Miller" <davem@davemloft.net>
4970 L:      linux-crypto@vger.kernel.org
4971 S:      Maintained
4972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4974 F:      Documentation/crypto/
4975 F:      Documentation/devicetree/bindings/crypto/
4976 F:      arch/*/crypto/
4977 F:      crypto/
4978 F:      drivers/crypto/
4979 F:      include/crypto/
4980 F:      include/linux/crypto*
4981 F:      lib/crypto/
4982
4983 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4984 M:      Neil Horman <nhorman@tuxdriver.com>
4985 L:      linux-crypto@vger.kernel.org
4986 S:      Maintained
4987 F:      crypto/ansi_cprng.c
4988 F:      crypto/rng.c
4989
4990 CS3308 MEDIA DRIVER
4991 M:      Hans Verkuil <hverkuil@xs4all.nl>
4992 L:      linux-media@vger.kernel.org
4993 S:      Odd Fixes
4994 W:      http://linuxtv.org
4995 T:      git git://linuxtv.org/media_tree.git
4996 F:      drivers/media/i2c/cs3308.c
4997
4998 CS5535 Audio ALSA driver
4999 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5000 S:      Maintained
5001 F:      sound/pci/cs5535audio/
5002
5003 CSI DRIVERS FOR ALLWINNER V3s
5004 M:      Yong Deng <yong.deng@magewell.com>
5005 L:      linux-media@vger.kernel.org
5006 S:      Maintained
5007 T:      git git://linuxtv.org/media_tree.git
5008 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5009 F:      drivers/media/platform/sunxi/sun6i-csi/
5010
5011 CW1200 WLAN driver
5012 M:      Solomon Peachy <pizza@shaftnet.org>
5013 S:      Maintained
5014 F:      drivers/net/wireless/st/cw1200/
5015
5016 CX18 VIDEO4LINUX DRIVER
5017 M:      Andy Walls <awalls@md.metrocast.net>
5018 L:      linux-media@vger.kernel.org
5019 S:      Maintained
5020 W:      https://linuxtv.org
5021 T:      git git://linuxtv.org/media_tree.git
5022 F:      drivers/media/pci/cx18/
5023 F:      include/uapi/linux/ivtv*
5024
5025 CX2341X MPEG ENCODER HELPER MODULE
5026 M:      Hans Verkuil <hverkuil@xs4all.nl>
5027 L:      linux-media@vger.kernel.org
5028 S:      Maintained
5029 W:      https://linuxtv.org
5030 T:      git git://linuxtv.org/media_tree.git
5031 F:      drivers/media/common/cx2341x*
5032 F:      include/media/drv-intf/cx2341x.h
5033
5034 CX24120 MEDIA DRIVER
5035 M:      Jemma Denson <jdenson@gmail.com>
5036 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5037 L:      linux-media@vger.kernel.org
5038 S:      Maintained
5039 W:      https://linuxtv.org
5040 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5041 F:      drivers/media/dvb-frontends/cx24120*
5042
5043 CX88 VIDEO4LINUX DRIVER
5044 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5045 L:      linux-media@vger.kernel.org
5046 S:      Odd fixes
5047 W:      https://linuxtv.org
5048 T:      git git://linuxtv.org/media_tree.git
5049 F:      Documentation/driver-api/media/drivers/cx88*
5050 F:      drivers/media/pci/cx88/
5051
5052 CXD2820R MEDIA DRIVER
5053 M:      Antti Palosaari <crope@iki.fi>
5054 L:      linux-media@vger.kernel.org
5055 S:      Maintained
5056 W:      https://linuxtv.org
5057 W:      http://palosaari.fi/linux/
5058 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5059 T:      git git://linuxtv.org/anttip/media_tree.git
5060 F:      drivers/media/dvb-frontends/cxd2820r*
5061
5062 CXGB3 ETHERNET DRIVER (CXGB3)
5063 M:      Raju Rangoju <rajur@chelsio.com>
5064 L:      netdev@vger.kernel.org
5065 S:      Supported
5066 W:      http://www.chelsio.com
5067 F:      drivers/net/ethernet/chelsio/cxgb3/
5068
5069 CXGB3 ISCSI DRIVER (CXGB3I)
5070 M:      Karen Xie <kxie@chelsio.com>
5071 L:      linux-scsi@vger.kernel.org
5072 S:      Supported
5073 W:      http://www.chelsio.com
5074 F:      drivers/scsi/cxgbi/cxgb3i
5075
5076 CXGB4 CRYPTO DRIVER (chcr)
5077 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5078 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5079 M:      Rohit Maheshwari <rohitm@chelsio.com>
5080 L:      linux-crypto@vger.kernel.org
5081 S:      Supported
5082 W:      http://www.chelsio.com
5083 F:      drivers/crypto/chelsio
5084
5085 CXGB4 INLINE CRYPTO DRIVER
5086 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5087 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5088 M:      Rohit Maheshwari <rohitm@chelsio.com>
5089 L:      netdev@vger.kernel.org
5090 S:      Supported
5091 W:      http://www.chelsio.com
5092 F:      drivers/net/ethernet/chelsio/inline_crypto/
5093
5094 CXGB4 ETHERNET DRIVER (CXGB4)
5095 M:      Raju Rangoju <rajur@chelsio.com>
5096 L:      netdev@vger.kernel.org
5097 S:      Supported
5098 W:      http://www.chelsio.com
5099 F:      drivers/net/ethernet/chelsio/cxgb4/
5100
5101 CXGB4 ISCSI DRIVER (CXGB4I)
5102 M:      Karen Xie <kxie@chelsio.com>
5103 L:      linux-scsi@vger.kernel.org
5104 S:      Supported
5105 W:      http://www.chelsio.com
5106 F:      drivers/scsi/cxgbi/cxgb4i
5107
5108 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5109 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5110 L:      linux-rdma@vger.kernel.org
5111 S:      Supported
5112 W:      http://www.openfabrics.org
5113 F:      drivers/infiniband/hw/cxgb4/
5114 F:      include/uapi/rdma/cxgb4-abi.h
5115
5116 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5117 M:      Raju Rangoju <rajur@chelsio.com>
5118 L:      netdev@vger.kernel.org
5119 S:      Supported
5120 W:      http://www.chelsio.com
5121 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5122
5123 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5124 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5125 M:      Andrew Donnellan <ajd@linux.ibm.com>
5126 L:      linuxppc-dev@lists.ozlabs.org
5127 S:      Supported
5128 F:      Documentation/ABI/testing/sysfs-class-cxl
5129 F:      Documentation/powerpc/cxl.rst
5130 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5131 F:      drivers/misc/cxl/
5132 F:      include/misc/cxl*
5133 F:      include/uapi/misc/cxl.h
5134
5135 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5136 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5137 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5138 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5139 L:      linux-scsi@vger.kernel.org
5140 S:      Supported
5141 F:      Documentation/powerpc/cxlflash.rst
5142 F:      drivers/scsi/cxlflash/
5143 F:      include/uapi/scsi/cxlflash_ioctl.h
5144
5145 CYBERPRO FB DRIVER
5146 M:      Russell King <linux@armlinux.org.uk>
5147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5148 S:      Maintained
5149 W:      http://www.armlinux.org.uk/
5150 F:      drivers/video/fbdev/cyber2000fb.*
5151
5152 CYCLADES PC300 DRIVER
5153 S:      Orphan
5154 F:      drivers/net/wan/pc300*
5155
5156 CYPRESS_FIRMWARE MEDIA DRIVER
5157 M:      Antti Palosaari <crope@iki.fi>
5158 L:      linux-media@vger.kernel.org
5159 S:      Maintained
5160 W:      https://linuxtv.org
5161 W:      http://palosaari.fi/linux/
5162 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5163 T:      git git://linuxtv.org/anttip/media_tree.git
5164 F:      drivers/media/common/cypress_firmware*
5165
5166 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5167 M:      Linus Walleij <linus.walleij@linaro.org>
5168 L:      linux-input@vger.kernel.org
5169 S:      Maintained
5170 F:      drivers/input/touchscreen/cy8ctma140.c
5171
5172 CYTTSP TOUCHSCREEN DRIVER
5173 M:      Linus Walleij <linus.walleij@linaro.org>
5174 L:      linux-input@vger.kernel.org
5175 S:      Maintained
5176 F:      drivers/input/touchscreen/cyttsp*
5177
5178 D-LINK DIR-685 TOUCHKEYS DRIVER
5179 M:      Linus Walleij <linus.walleij@linaro.org>
5180 L:      linux-input@vger.kernel.org
5181 S:      Supported
5182 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5183
5184 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5185 M:      Joshua Kinard <kumba@gentoo.org>
5186 S:      Maintained
5187 F:      drivers/rtc/rtc-ds1685.c
5188 F:      include/linux/rtc/ds1685.h
5189
5190 DAMA SLAVE for AX.25
5191 M:      Joerg Reuter <jreuter@yaina.de>
5192 L:      linux-hams@vger.kernel.org
5193 S:      Maintained
5194 W:      http://yaina.de/jreuter/
5195 W:      http://www.qsl.net/dl1bke/
5196 F:      net/ax25/af_ax25.c
5197 F:      net/ax25/ax25_dev.c
5198 F:      net/ax25/ax25_ds_*
5199 F:      net/ax25/ax25_in.c
5200 F:      net/ax25/ax25_out.c
5201 F:      net/ax25/ax25_timer.c
5202 F:      net/ax25/sysctl_net_ax25.c
5203
5204 DATA ACCESS MONITOR
5205 M:      SeongJae Park <sjpark@amazon.de>
5206 L:      linux-mm@kvack.org
5207 S:      Maintained
5208 F:      Documentation/admin-guide/mm/damon/
5209 F:      Documentation/vm/damon/
5210 F:      include/linux/damon.h
5211 F:      include/trace/events/damon.h
5212 F:      mm/damon/
5213 F:      tools/testing/selftests/damon/
5214
5215 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5216 L:      netdev@vger.kernel.org
5217 S:      Orphan
5218 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5219 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5220
5221 DC390/AM53C974 SCSI driver
5222 M:      Hannes Reinecke <hare@suse.com>
5223 L:      linux-scsi@vger.kernel.org
5224 S:      Maintained
5225 F:      drivers/scsi/am53c974.c
5226
5227 DC395x SCSI driver
5228 M:      Oliver Neukum <oliver@neukum.org>
5229 M:      Ali Akcaagac <aliakc@web.de>
5230 M:      Jamie Lenehan <lenehan@twibble.org>
5231 L:      dc395x@twibble.org
5232 S:      Maintained
5233 W:      http://twibble.org/dist/dc395x/
5234 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5235 F:      Documentation/scsi/dc395x.rst
5236 F:      drivers/scsi/dc395x.*
5237
5238 DCCP PROTOCOL
5239 L:      dccp@vger.kernel.org
5240 S:      Orphan
5241 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5242 F:      include/linux/dccp.h
5243 F:      include/linux/tfrc.h
5244 F:      include/uapi/linux/dccp.h
5245 F:      net/dccp/
5246
5247 DECnet NETWORK LAYER
5248 L:      linux-decnet-user@lists.sourceforge.net
5249 S:      Orphan
5250 W:      http://linux-decnet.sourceforge.net
5251 F:      Documentation/networking/decnet.rst
5252 F:      net/decnet/
5253
5254 DECSTATION PLATFORM SUPPORT
5255 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5256 L:      linux-mips@vger.kernel.org
5257 S:      Maintained
5258 W:      http://www.linux-mips.org/wiki/DECstation
5259 F:      arch/mips/dec/
5260 F:      arch/mips/include/asm/dec/
5261 F:      arch/mips/include/asm/mach-dec/
5262
5263 DEFXX FDDI NETWORK DRIVER
5264 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5265 S:      Maintained
5266 F:      drivers/net/fddi/defxx.*
5267
5268 DEFZA FDDI NETWORK DRIVER
5269 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5270 S:      Maintained
5271 F:      drivers/net/fddi/defza.*
5272
5273 DEINTERLACE DRIVERS FOR ALLWINNER H3
5274 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5275 L:      linux-media@vger.kernel.org
5276 S:      Maintained
5277 T:      git git://linuxtv.org/media_tree.git
5278 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5279 F:      drivers/media/platform/sunxi/sun8i-di/
5280
5281 DELL LAPTOP DRIVER
5282 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5283 M:      Pali Rohár <pali@kernel.org>
5284 L:      platform-driver-x86@vger.kernel.org
5285 S:      Maintained
5286 F:      drivers/platform/x86/dell/dell-laptop.c
5287
5288 DELL LAPTOP FREEFALL DRIVER
5289 M:      Pali Rohár <pali@kernel.org>
5290 S:      Maintained
5291 F:      drivers/platform/x86/dell/dell-smo8800.c
5292
5293 DELL LAPTOP RBTN DRIVER
5294 M:      Pali Rohár <pali@kernel.org>
5295 S:      Maintained
5296 F:      drivers/platform/x86/dell/dell-rbtn.*
5297
5298 DELL LAPTOP SMM DRIVER
5299 M:      Pali Rohár <pali@kernel.org>
5300 S:      Maintained
5301 F:      drivers/hwmon/dell-smm-hwmon.c
5302 F:      include/uapi/linux/i8k.h
5303
5304 DELL REMOTE BIOS UPDATE DRIVER
5305 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5306 L:      platform-driver-x86@vger.kernel.org
5307 S:      Maintained
5308 F:      drivers/platform/x86/dell/dell_rbu.c
5309
5310 DELL SMBIOS DRIVER
5311 M:      Pali Rohár <pali@kernel.org>
5312 L:      Dell.Client.Kernel@dell.com
5313 L:      platform-driver-x86@vger.kernel.org
5314 S:      Maintained
5315 F:      drivers/platform/x86/dell/dell-smbios.*
5316
5317 DELL SMBIOS SMM DRIVER
5318 L:      Dell.Client.Kernel@dell.com
5319 L:      platform-driver-x86@vger.kernel.org
5320 S:      Maintained
5321 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5322
5323 DELL SMBIOS WMI DRIVER
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-smbios-wmi.c
5328 F:      tools/wmi/dell-smbios-example.c
5329
5330 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5331 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5332 L:      platform-driver-x86@vger.kernel.org
5333 S:      Maintained
5334 F:      Documentation/driver-api/dcdbas.rst
5335 F:      drivers/platform/x86/dell/dcdbas.*
5336
5337 DELL WMI DESCRIPTOR DRIVER
5338 L:      Dell.Client.Kernel@dell.com
5339 S:      Maintained
5340 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5341
5342 DELL WMI SYSMAN DRIVER
5343 M:      Divya Bharathi <divya.bharathi@dell.com>
5344 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5345 L:      Dell.Client.Kernel@dell.com
5346 L:      platform-driver-x86@vger.kernel.org
5347 S:      Maintained
5348 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5349 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5350
5351 DELL WMI NOTIFICATIONS DRIVER
5352 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5353 M:      Pali Rohár <pali@kernel.org>
5354 S:      Maintained
5355 F:      drivers/platform/x86/dell/dell-wmi-base.c
5356
5357 DELL WMI HARDWARE PRIVACY SUPPORT
5358 M:      Perry Yuan <Perry.Yuan@dell.com>
5359 L:      Dell.Client.Kernel@dell.com
5360 L:      platform-driver-x86@vger.kernel.org
5361 S:      Maintained
5362 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5363
5364 DELTA ST MEDIA DRIVER
5365 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5366 L:      linux-media@vger.kernel.org
5367 S:      Supported
5368 W:      https://linuxtv.org
5369 T:      git git://linuxtv.org/media_tree.git
5370 F:      drivers/media/platform/sti/delta
5371
5372 DELTA DPS920AB PSU DRIVER
5373 M:      Robert Marko <robert.marko@sartura.hr>
5374 L:      linux-hwmon@vger.kernel.org
5375 S:      Maintained
5376 F:      Documentation/hwmon/dps920ab.rst
5377 F:      drivers/hwmon/pmbus/dps920ab.c
5378
5379 DENALI NAND DRIVER
5380 L:      linux-mtd@lists.infradead.org
5381 S:      Orphan
5382 F:      drivers/mtd/nand/raw/denali*
5383
5384 DESIGNWARE EDMA CORE IP DRIVER
5385 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5386 L:      dmaengine@vger.kernel.org
5387 S:      Maintained
5388 F:      drivers/dma/dw-edma/
5389 F:      include/linux/dma/edma.h
5390
5391 DESIGNWARE XDATA IP DRIVER
5392 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5393 L:      linux-pci@vger.kernel.org
5394 S:      Maintained
5395 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5396 F:      drivers/misc/dw-xdata-pcie.c
5397
5398 DESIGNWARE USB2 DRD IP DRIVER
5399 M:      Minas Harutyunyan <hminas@synopsys.com>
5400 L:      linux-usb@vger.kernel.org
5401 S:      Maintained
5402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5403 F:      drivers/usb/dwc2/
5404
5405 DESIGNWARE USB3 DRD IP DRIVER
5406 M:      Felipe Balbi <balbi@kernel.org>
5407 L:      linux-usb@vger.kernel.org
5408 S:      Maintained
5409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5410 F:      drivers/usb/dwc3/
5411
5412 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5413 M:      Andreas Klinger <ak@it-klinger.de>
5414 L:      linux-iio@vger.kernel.org
5415 S:      Maintained
5416 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5417 F:      drivers/iio/proximity/srf*.c
5418
5419 DEVICE COREDUMP (DEV_COREDUMP)
5420 M:      Johannes Berg <johannes@sipsolutions.net>
5421 L:      linux-kernel@vger.kernel.org
5422 S:      Maintained
5423 F:      drivers/base/devcoredump.c
5424 F:      include/linux/devcoredump.h
5425
5426 DEVICE DEPENDENCY HELPER SCRIPT
5427 M:      Saravana Kannan <saravanak@google.com>
5428 L:      linux-kernel@vger.kernel.org
5429 S:      Maintained
5430 F:      scripts/dev-needs.sh
5431
5432 DEVICE DIRECT ACCESS (DAX)
5433 M:      Dan Williams <dan.j.williams@intel.com>
5434 M:      Vishal Verma <vishal.l.verma@intel.com>
5435 M:      Dave Jiang <dave.jiang@intel.com>
5436 L:      nvdimm@lists.linux.dev
5437 S:      Supported
5438 F:      drivers/dax/
5439
5440 DEVICE FREQUENCY (DEVFREQ)
5441 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5442 M:      Kyungmin Park <kyungmin.park@samsung.com>
5443 M:      Chanwoo Choi <cw00.choi@samsung.com>
5444 L:      linux-pm@vger.kernel.org
5445 S:      Maintained
5446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5447 F:      Documentation/devicetree/bindings/devfreq/
5448 F:      drivers/devfreq/
5449 F:      include/linux/devfreq.h
5450 F:      include/trace/events/devfreq.h
5451
5452 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5453 M:      Chanwoo Choi <cw00.choi@samsung.com>
5454 L:      linux-pm@vger.kernel.org
5455 S:      Supported
5456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5457 F:      Documentation/devicetree/bindings/devfreq/event/
5458 F:      drivers/devfreq/devfreq-event.c
5459 F:      drivers/devfreq/event/
5460 F:      include/dt-bindings/pmu/exynos_ppmu.h
5461 F:      include/linux/devfreq-event.h
5462
5463 DEVICE NUMBER REGISTRY
5464 M:      Torben Mathiasen <device@lanana.org>
5465 S:      Maintained
5466 W:      http://lanana.org/docs/device-list/index.html
5467
5468 DEVICE RESOURCE MANAGEMENT HELPERS
5469 M:      Hans de Goede <hdegoede@redhat.com>
5470 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5471 S:      Maintained
5472 F:      include/linux/devm-helpers.h
5473
5474 DEVICE-MAPPER  (LVM)
5475 M:      Alasdair Kergon <agk@redhat.com>
5476 M:      Mike Snitzer <snitzer@redhat.com>
5477 M:      dm-devel@redhat.com
5478 L:      dm-devel@redhat.com
5479 S:      Maintained
5480 W:      http://sources.redhat.com/dm
5481 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5483 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5484 F:      Documentation/admin-guide/device-mapper/
5485 F:      drivers/md/Kconfig
5486 F:      drivers/md/Makefile
5487 F:      drivers/md/dm*
5488 F:      drivers/md/persistent-data/
5489 F:      include/linux/device-mapper.h
5490 F:      include/linux/dm-*.h
5491 F:      include/uapi/linux/dm-*.h
5492
5493 DEVLINK
5494 M:      Jiri Pirko <jiri@nvidia.com>
5495 L:      netdev@vger.kernel.org
5496 S:      Supported
5497 F:      Documentation/networking/devlink
5498 F:      include/net/devlink.h
5499 F:      include/uapi/linux/devlink.h
5500 F:      net/core/devlink.c
5501
5502 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5503 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5504 L:      kernel@dh-electronics.com
5505 S:      Maintained
5506 F:      arch/arm/boot/dts/imx6*-dhcom-*
5507
5508 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5509 M:      Marek Vasut <marex@denx.de>
5510 L:      kernel@dh-electronics.com
5511 S:      Maintained
5512 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5513 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5514
5515 DIALOG SEMICONDUCTOR DRIVERS
5516 M:      Support Opensource <support.opensource@diasemi.com>
5517 S:      Supported
5518 W:      http://www.dialog-semiconductor.com/products
5519 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5520 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5521 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5522 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5523 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5524 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5525 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5526 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5527 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5528 F:      Documentation/hwmon/da90??.rst
5529 F:      drivers/gpio/gpio-da90??.c
5530 F:      drivers/hwmon/da90??-hwmon.c
5531 F:      drivers/iio/adc/da91??-*.c
5532 F:      drivers/input/misc/da72??.[ch]
5533 F:      drivers/input/misc/da90??_onkey.c
5534 F:      drivers/input/touchscreen/da9052_tsi.c
5535 F:      drivers/leds/leds-da90??.c
5536 F:      drivers/mfd/da903x.c
5537 F:      drivers/mfd/da90??-*.c
5538 F:      drivers/mfd/da91??-*.c
5539 F:      drivers/pinctrl/pinctrl-da90??.c
5540 F:      drivers/power/supply/da9052-battery.c
5541 F:      drivers/power/supply/da91??-*.c
5542 F:      drivers/regulator/da9???-regulator.[ch]
5543 F:      drivers/regulator/slg51000-regulator.[ch]
5544 F:      drivers/rtc/rtc-da90??.c
5545 F:      drivers/thermal/da90??-thermal.c
5546 F:      drivers/video/backlight/da90??_bl.c
5547 F:      drivers/watchdog/da90??_wdt.c
5548 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5549 F:      include/linux/mfd/da903x.h
5550 F:      include/linux/mfd/da9052/
5551 F:      include/linux/mfd/da9055/
5552 F:      include/linux/mfd/da9062/
5553 F:      include/linux/mfd/da9063/
5554 F:      include/linux/mfd/da9150/
5555 F:      include/linux/regulator/da9211.h
5556 F:      include/sound/da[79]*.h
5557 F:      sound/soc/codecs/da[79]*.[ch]
5558
5559 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5560 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5561 L:      linux-gpio@vger.kernel.org
5562 S:      Maintained
5563 F:      drivers/gpio/gpio-gpio-mm.c
5564
5565 DIOLAN U2C-12 I2C DRIVER
5566 M:      Guenter Roeck <linux@roeck-us.net>
5567 L:      linux-i2c@vger.kernel.org
5568 S:      Maintained
5569 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5570
5571 DIRECTORY NOTIFICATION (DNOTIFY)
5572 M:      Jan Kara <jack@suse.cz>
5573 R:      Amir Goldstein <amir73il@gmail.com>
5574 L:      linux-fsdevel@vger.kernel.org
5575 S:      Maintained
5576 F:      Documentation/filesystems/dnotify.rst
5577 F:      fs/notify/dnotify/
5578 F:      include/linux/dnotify.h
5579
5580 DISK GEOMETRY AND PARTITION HANDLING
5581 M:      Andries Brouwer <aeb@cwi.nl>
5582 S:      Maintained
5583 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5584 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5585 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5586
5587 DISKQUOTA
5588 M:      Jan Kara <jack@suse.com>
5589 S:      Maintained
5590 F:      Documentation/filesystems/quota.rst
5591 F:      fs/quota/
5592 F:      include/linux/quota*.h
5593 F:      include/uapi/linux/quota*.h
5594
5595 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5596 M:      Bernie Thompson <bernie@plugable.com>
5597 L:      linux-fbdev@vger.kernel.org
5598 S:      Maintained
5599 W:      http://plugable.com/category/projects/udlfb/
5600 F:      Documentation/fb/udlfb.rst
5601 F:      drivers/video/fbdev/udlfb.c
5602 F:      include/video/udlfb.h
5603
5604 DISTRIBUTED LOCK MANAGER (DLM)
5605 M:      Christine Caulfield <ccaulfie@redhat.com>
5606 M:      David Teigland <teigland@redhat.com>
5607 L:      cluster-devel@redhat.com
5608 S:      Supported
5609 W:      http://sources.redhat.com/cluster/
5610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5611 F:      fs/dlm/
5612
5613 DMA BUFFER SHARING FRAMEWORK
5614 M:      Sumit Semwal <sumit.semwal@linaro.org>
5615 M:      Christian König <christian.koenig@amd.com>
5616 L:      linux-media@vger.kernel.org
5617 L:      dri-devel@lists.freedesktop.org
5618 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5619 S:      Maintained
5620 T:      git git://anongit.freedesktop.org/drm/drm-misc
5621 F:      Documentation/driver-api/dma-buf.rst
5622 F:      drivers/dma-buf/
5623 F:      include/linux/*fence.h
5624 F:      include/linux/dma-buf*
5625 F:      include/linux/dma-resv.h
5626 K:      \bdma_(?:buf|fence|resv)\b
5627
5628 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5629 M:      Vinod Koul <vkoul@kernel.org>
5630 L:      dmaengine@vger.kernel.org
5631 S:      Maintained
5632 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5634 F:      Documentation/devicetree/bindings/dma/
5635 F:      Documentation/driver-api/dmaengine/
5636 F:      drivers/dma/
5637 F:      include/linux/dma/
5638 F:      include/linux/dmaengine.h
5639 F:      include/linux/of_dma.h
5640
5641 DMA MAPPING HELPERS
5642 M:      Christoph Hellwig <hch@lst.de>
5643 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5644 R:      Robin Murphy <robin.murphy@arm.com>
5645 L:      iommu@lists.linux-foundation.org
5646 L:      iommu@lists.linux.dev
5647 S:      Supported
5648 W:      http://git.infradead.org/users/hch/dma-mapping.git
5649 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5650 F:      include/asm-generic/dma-mapping.h
5651 F:      include/linux/dma-direct.h
5652 F:      include/linux/dma-mapping.h
5653 F:      include/linux/dma-map-ops.h
5654 F:      kernel/dma/
5655
5656 DMA MAPPING BENCHMARK
5657 M:      Barry Song <song.bao.hua@hisilicon.com>
5658 L:      iommu@lists.linux-foundation.org
5659 L:      iommu@lists.linux.dev
5660 F:      kernel/dma/map_benchmark.c
5661 F:      tools/testing/selftests/dma/
5662
5663 DMA-BUF HEAPS FRAMEWORK
5664 M:      Sumit Semwal <sumit.semwal@linaro.org>
5665 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5666 R:      Liam Mark <lmark@codeaurora.org>
5667 R:      Laura Abbott <labbott@redhat.com>
5668 R:      Brian Starkey <Brian.Starkey@arm.com>
5669 R:      John Stultz <john.stultz@linaro.org>
5670 L:      linux-media@vger.kernel.org
5671 L:      dri-devel@lists.freedesktop.org
5672 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5673 S:      Maintained
5674 T:      git git://anongit.freedesktop.org/drm/drm-misc
5675 F:      drivers/dma-buf/dma-heap.c
5676 F:      drivers/dma-buf/heaps/*
5677 F:      include/linux/dma-heap.h
5678 F:      include/uapi/linux/dma-heap.h
5679
5680 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5681 M:      Lukasz Luba <lukasz.luba@arm.com>
5682 L:      linux-pm@vger.kernel.org
5683 L:      linux-samsung-soc@vger.kernel.org
5684 S:      Maintained
5685 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5686 F:      drivers/memory/samsung/exynos5422-dmc.c
5687
5688 DME1737 HARDWARE MONITOR DRIVER
5689 M:      Juerg Haefliger <juergh@gmail.com>
5690 L:      linux-hwmon@vger.kernel.org
5691 S:      Maintained
5692 F:      Documentation/hwmon/dme1737.rst
5693 F:      drivers/hwmon/dme1737.c
5694
5695 DMI/SMBIOS SUPPORT
5696 M:      Jean Delvare <jdelvare@suse.com>
5697 S:      Maintained
5698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5699 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5700 F:      drivers/firmware/dmi-id.c
5701 F:      drivers/firmware/dmi_scan.c
5702 F:      include/linux/dmi.h
5703
5704 DOCUMENTATION
5705 M:      Jonathan Corbet <corbet@lwn.net>
5706 L:      linux-doc@vger.kernel.org
5707 S:      Maintained
5708 P:      Documentation/doc-guide/maintainer-profile.rst
5709 T:      git git://git.lwn.net/linux.git docs-next
5710 F:      Documentation/
5711 F:      scripts/documentation-file-ref-check
5712 F:      scripts/kernel-doc
5713 F:      scripts/sphinx-pre-install
5714 X:      Documentation/ABI/
5715 X:      Documentation/admin-guide/media/
5716 X:      Documentation/devicetree/
5717 X:      Documentation/driver-api/media/
5718 X:      Documentation/firmware-guide/acpi/
5719 X:      Documentation/i2c/
5720 X:      Documentation/power/
5721 X:      Documentation/spi/
5722 X:      Documentation/userspace-api/media/
5723
5724 DOCUMENTATION REPORTING ISSUES
5725 M:      Thorsten Leemhuis <linux@leemhuis.info>
5726 L:      linux-doc@vger.kernel.org
5727 S:      Maintained
5728 F:      Documentation/admin-guide/reporting-issues.rst
5729
5730 DOCUMENTATION SCRIPTS
5731 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5732 L:      linux-doc@vger.kernel.org
5733 S:      Maintained
5734 F:      Documentation/sphinx/parse-headers.pl
5735 F:      scripts/documentation-file-ref-check
5736 F:      scripts/sphinx-pre-install
5737
5738 DOCUMENTATION/ITALIAN
5739 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5740 L:      linux-doc@vger.kernel.org
5741 S:      Maintained
5742 F:      Documentation/translations/it_IT
5743
5744 DONGWOON DW9714 LENS VOICE COIL DRIVER
5745 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5746 L:      linux-media@vger.kernel.org
5747 S:      Maintained
5748 T:      git git://linuxtv.org/media_tree.git
5749 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5750 F:      drivers/media/i2c/dw9714.c
5751
5752 DONGWOON DW9768 LENS VOICE COIL DRIVER
5753 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5754 L:      linux-media@vger.kernel.org
5755 S:      Maintained
5756 T:      git git://linuxtv.org/media_tree.git
5757 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5758 F:      drivers/media/i2c/dw9768.c
5759
5760 DONGWOON DW9807 LENS VOICE COIL DRIVER
5761 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5762 L:      linux-media@vger.kernel.org
5763 S:      Maintained
5764 T:      git git://linuxtv.org/media_tree.git
5765 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5766 F:      drivers/media/i2c/dw9807-vcm.c
5767
5768 DOUBLETALK DRIVER
5769 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5770 L:      blinux-list@redhat.com
5771 S:      Maintained
5772 F:      drivers/char/dtlk.c
5773 F:      include/linux/dtlk.h
5774
5775 DPAA2 DATAPATH I/O (DPIO) DRIVER
5776 M:      Roy Pledge <Roy.Pledge@nxp.com>
5777 L:      linux-kernel@vger.kernel.org
5778 S:      Maintained
5779 F:      drivers/soc/fsl/dpio
5780
5781 DPAA2 ETHERNET DRIVER
5782 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5783 L:      netdev@vger.kernel.org
5784 S:      Maintained
5785 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5786 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5787 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5788 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5789 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5790 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5791 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5792 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5793 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5794
5795 DPAA2 ETHERNET SWITCH DRIVER
5796 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5797 L:      netdev@vger.kernel.org
5798 S:      Maintained
5799 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5800 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5801 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5802
5803 DPT_I2O SCSI RAID DRIVER
5804 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5805 L:      linux-scsi@vger.kernel.org
5806 S:      Maintained
5807 W:      http://www.adaptec.com/
5808 F:      drivers/scsi/dpt*
5809 F:      drivers/scsi/dpt/
5810
5811 DRBD DRIVER
5812 M:      Philipp Reisner <philipp.reisner@linbit.com>
5813 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5814 L:      drbd-dev@lists.linbit.com
5815 S:      Supported
5816 W:      http://www.drbd.org
5817 T:      git git://git.linbit.com/linux-drbd.git
5818 T:      git git://git.linbit.com/drbd-8.4.git
5819 F:      Documentation/admin-guide/blockdev/
5820 F:      drivers/block/drbd/
5821 F:      lib/lru_cache.c
5822
5823 DRIVER COMPONENT FRAMEWORK
5824 L:      dri-devel@lists.freedesktop.org
5825 F:      drivers/base/component.c
5826 F:      include/linux/component.h
5827
5828 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5829 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5830 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5831 S:      Supported
5832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5833 F:      Documentation/core-api/kobject.rst
5834 F:      drivers/base/
5835 F:      fs/debugfs/
5836 F:      fs/sysfs/
5837 F:      include/linux/debugfs.h
5838 F:      include/linux/kobj*
5839 F:      lib/kobj*
5840
5841 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5842 M:      Nishanth Menon <nm@ti.com>
5843 L:      linux-pm@vger.kernel.org
5844 S:      Maintained
5845 F:      drivers/soc/ti/smartreflex.c
5846 F:      include/linux/power/smartreflex.h
5847
5848 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5849 M:      Maxime Ripard <mripard@kernel.org>
5850 M:      Chen-Yu Tsai <wens@csie.org>
5851 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5852 L:      dri-devel@lists.freedesktop.org
5853 S:      Supported
5854 T:      git git://anongit.freedesktop.org/drm/drm-misc
5855 F:      drivers/gpu/drm/sun4i/sun8i*
5856
5857 DRM DRIVER FOR ARM PL111 CLCD
5858 M:      Emma Anholt <emma@anholt.net>
5859 S:      Supported
5860 T:      git git://anongit.freedesktop.org/drm/drm-misc
5861 F:      drivers/gpu/drm/pl111/
5862
5863 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5864 M:      Linus Walleij <linus.walleij@linaro.org>
5865 S:      Maintained
5866 T:      git git://anongit.freedesktop.org/drm/drm-misc
5867 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5868 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5869
5870 DRM DRIVER FOR ASPEED BMC GFX
5871 M:      Joel Stanley <joel@jms.id.au>
5872 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5873 S:      Supported
5874 T:      git git://anongit.freedesktop.org/drm/drm-misc
5875 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5876 F:      drivers/gpu/drm/aspeed/
5877
5878 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5879 M:      Dave Airlie <airlied@redhat.com>
5880 R:      Thomas Zimmermann <tzimmermann@suse.de>
5881 L:      dri-devel@lists.freedesktop.org
5882 S:      Supported
5883 T:      git git://anongit.freedesktop.org/drm/drm-misc
5884 F:      drivers/gpu/drm/ast/
5885
5886 DRM DRIVER FOR BOCHS VIRTUAL GPU
5887 M:      Gerd Hoffmann <kraxel@redhat.com>
5888 L:      virtualization@lists.linux-foundation.org
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      drivers/gpu/drm/tiny/bochs.c
5892
5893 DRM DRIVER FOR BOE HIMAX8279D PANELS
5894 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5895 S:      Maintained
5896 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5897 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5898
5899 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5900 M:      Jagan Teki <jagan@amarulasolutions.com>
5901 S:      Maintained
5902 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5903 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5904
5905 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5906 M:      Linus Walleij <linus.walleij@linaro.org>
5907 S:      Maintained
5908 T:      git git://anongit.freedesktop.org/drm/drm-misc
5909 F:      drivers/gpu/drm/tve200/
5910
5911 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5912 M:      Icenowy Zheng <icenowy@aosc.io>
5913 S:      Maintained
5914 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5915 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5916
5917 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5918 M:      Jagan Teki <jagan@amarulasolutions.com>
5919 S:      Maintained
5920 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5921 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5922
5923 DRM DRIVER FOR GENERIC USB DISPLAY
5924 M:      Noralf Trønnes <noralf@tronnes.org>
5925 S:      Maintained
5926 W:      https://github.com/notro/gud/wiki
5927 T:      git git://anongit.freedesktop.org/drm/drm-misc
5928 F:      drivers/gpu/drm/gud/
5929 F:      include/drm/gud.h
5930
5931 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5932 M:      Hans de Goede <hdegoede@redhat.com>
5933 S:      Maintained
5934 T:      git git://anongit.freedesktop.org/drm/drm-misc
5935 F:      drivers/gpu/drm/tiny/gm12u320.c
5936
5937 DRM DRIVER FOR HX8357D PANELS
5938 M:      Emma Anholt <emma@anholt.net>
5939 S:      Maintained
5940 T:      git git://anongit.freedesktop.org/drm/drm-misc
5941 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5942 F:      drivers/gpu/drm/tiny/hx8357d.c
5943
5944 DRM DRIVER FOR ILITEK ILI9225 PANELS
5945 M:      David Lechner <david@lechnology.com>
5946 S:      Maintained
5947 T:      git git://anongit.freedesktop.org/drm/drm-misc
5948 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5949 F:      drivers/gpu/drm/tiny/ili9225.c
5950
5951 DRM DRIVER FOR ILITEK ILI9486 PANELS
5952 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5953 S:      Maintained
5954 T:      git git://anongit.freedesktop.org/drm/drm-misc
5955 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5956 F:      drivers/gpu/drm/tiny/ili9486.c
5957
5958 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5959 S:      Orphan / Obsolete
5960 F:      drivers/gpu/drm/i810/
5961 F:      include/uapi/drm/i810_drm.h
5962
5963 DRM DRIVER FOR LVDS PANELS
5964 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5965 L:      dri-devel@lists.freedesktop.org
5966 T:      git git://anongit.freedesktop.org/drm/drm-misc
5967 S:      Maintained
5968 F:      drivers/gpu/drm/panel/panel-lvds.c
5969 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5970
5971 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5972 M:      Guido Günther <agx@sigxcpu.org>
5973 R:      Purism Kernel Team <kernel@puri.sm>
5974 S:      Maintained
5975 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5976 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5977
5978 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5979 S:      Orphan / Obsolete
5980 F:      drivers/gpu/drm/mga/
5981 F:      include/uapi/drm/mga_drm.h
5982
5983 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5984 M:      Dave Airlie <airlied@redhat.com>
5985 R:      Thomas Zimmermann <tzimmermann@suse.de>
5986 L:      dri-devel@lists.freedesktop.org
5987 S:      Supported
5988 T:      git git://anongit.freedesktop.org/drm/drm-misc
5989 F:      drivers/gpu/drm/mgag200/
5990
5991 DRM DRIVER FOR MI0283QT
5992 M:      Noralf Trønnes <noralf@tronnes.org>
5993 S:      Maintained
5994 T:      git git://anongit.freedesktop.org/drm/drm-misc
5995 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5996 F:      drivers/gpu/drm/tiny/mi0283qt.c
5997
5998 DRM DRIVER FOR MIPI DBI compatible panels
5999 M:      Noralf Trønnes <noralf@tronnes.org>
6000 S:      Maintained
6001 W:      https://github.com/notro/panel-mipi-dbi/wiki
6002 T:      git git://anongit.freedesktop.org/drm/drm-misc
6003 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6004 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6005
6006 DRM DRIVER FOR MSM ADRENO GPU
6007 M:      Rob Clark <robdclark@gmail.com>
6008 M:      Sean Paul <sean@poorly.run>
6009 L:      linux-arm-msm@vger.kernel.org
6010 L:      dri-devel@lists.freedesktop.org
6011 L:      freedreno@lists.freedesktop.org
6012 S:      Maintained
6013 T:      git https://gitlab.freedesktop.org/drm/msm.git
6014 F:      Documentation/devicetree/bindings/display/msm/
6015 F:      drivers/gpu/drm/msm/
6016 F:      include/uapi/drm/msm_drm.h
6017
6018 DRM DRIVER FOR NOVATEK NT35510 PANELS
6019 M:      Linus Walleij <linus.walleij@linaro.org>
6020 S:      Maintained
6021 T:      git git://anongit.freedesktop.org/drm/drm-misc
6022 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6023 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6024
6025 DRM DRIVER FOR NOVATEK NT36672A PANELS
6026 M:      Sumit Semwal <sumit.semwal@linaro.org>
6027 S:      Maintained
6028 T:      git git://anongit.freedesktop.org/drm/drm-misc
6029 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6030 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6031
6032 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6033 M:      Ben Skeggs <bskeggs@redhat.com>
6034 L:      dri-devel@lists.freedesktop.org
6035 L:      nouveau@lists.freedesktop.org
6036 S:      Supported
6037 T:      git git://github.com/skeggsb/linux
6038 F:      drivers/gpu/drm/nouveau/
6039 F:      include/uapi/drm/nouveau_drm.h
6040
6041 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6042 M:      Stefan Mavrodiev <stefan@olimex.com>
6043 S:      Maintained
6044 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6045 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6046
6047 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6048 M:      Noralf Trønnes <noralf@tronnes.org>
6049 S:      Maintained
6050 T:      git git://anongit.freedesktop.org/drm/drm-misc
6051 F:      Documentation/devicetree/bindings/display/repaper.txt
6052 F:      drivers/gpu/drm/tiny/repaper.c
6053
6054 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6055 M:      Dave Airlie <airlied@redhat.com>
6056 M:      Gerd Hoffmann <kraxel@redhat.com>
6057 L:      virtualization@lists.linux-foundation.org
6058 S:      Obsolete
6059 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6060 T:      git git://anongit.freedesktop.org/drm/drm-misc
6061 F:      drivers/gpu/drm/tiny/cirrus.c
6062
6063 DRM DRIVER FOR QXL VIRTUAL GPU
6064 M:      Dave Airlie <airlied@redhat.com>
6065 M:      Gerd Hoffmann <kraxel@redhat.com>
6066 L:      virtualization@lists.linux-foundation.org
6067 L:      spice-devel@lists.freedesktop.org
6068 S:      Maintained
6069 T:      git git://anongit.freedesktop.org/drm/drm-misc
6070 F:      drivers/gpu/drm/qxl/
6071 F:      include/uapi/drm/qxl_drm.h
6072
6073 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6074 S:      Orphan / Obsolete
6075 F:      drivers/gpu/drm/r128/
6076 F:      include/uapi/drm/r128_drm.h
6077
6078 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6079 M:      Robert Chiras <robert.chiras@nxp.com>
6080 S:      Maintained
6081 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6082 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6083
6084 DRM DRIVER FOR SAMSUNG DB7430 PANELS
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/panel/samsung,lms397kf04.yaml
6089 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6090
6091 DRM DRIVER FOR SITRONIX ST7703 PANELS
6092 M:      Guido Günther <agx@sigxcpu.org>
6093 R:      Purism Kernel Team <kernel@puri.sm>
6094 R:      Ondrej Jirman <megous@megous.com>
6095 S:      Maintained
6096 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6097 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6098
6099 DRM DRIVER FOR SAVAGE VIDEO CARDS
6100 S:      Orphan / Obsolete
6101 F:      drivers/gpu/drm/savage/
6102 F:      include/uapi/drm/savage_drm.h
6103
6104 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6105 M:      Thomas Zimmermann <tzimmermann@suse.de>
6106 L:      dri-devel@lists.freedesktop.org
6107 S:      Maintained
6108 T:      git git://anongit.freedesktop.org/drm/drm-misc
6109 F:      drivers/gpu/drm/tiny/simpledrm.c
6110
6111 DRM DRIVER FOR SIS VIDEO CARDS
6112 S:      Orphan / Obsolete
6113 F:      drivers/gpu/drm/sis/
6114 F:      include/uapi/drm/sis_drm.h
6115
6116 DRM DRIVER FOR SITRONIX ST7586 PANELS
6117 M:      David Lechner <david@lechnology.com>
6118 S:      Maintained
6119 T:      git git://anongit.freedesktop.org/drm/drm-misc
6120 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6121 F:      drivers/gpu/drm/tiny/st7586.c
6122
6123 DRM DRIVER FOR SITRONIX ST7701 PANELS
6124 M:      Jagan Teki <jagan@amarulasolutions.com>
6125 S:      Maintained
6126 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6127 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6128
6129 DRM DRIVER FOR SITRONIX ST7735R PANELS
6130 M:      David Lechner <david@lechnology.com>
6131 S:      Maintained
6132 T:      git git://anongit.freedesktop.org/drm/drm-misc
6133 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6134 F:      drivers/gpu/drm/tiny/st7735r.c
6135
6136 DRM DRIVER FOR SONY ACX424AKP PANELS
6137 M:      Linus Walleij <linus.walleij@linaro.org>
6138 S:      Maintained
6139 T:      git git://anongit.freedesktop.org/drm/drm-misc
6140 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6141
6142 DRM DRIVER FOR ST-ERICSSON MCDE
6143 M:      Linus Walleij <linus.walleij@linaro.org>
6144 S:      Maintained
6145 T:      git git://anongit.freedesktop.org/drm/drm-misc
6146 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6147 F:      drivers/gpu/drm/mcde/
6148
6149 DRM DRIVER FOR TDFX VIDEO CARDS
6150 S:      Orphan / Obsolete
6151 F:      drivers/gpu/drm/tdfx/
6152
6153 DRM DRIVER FOR TPO TPG110 PANELS
6154 M:      Linus Walleij <linus.walleij@linaro.org>
6155 S:      Maintained
6156 T:      git git://anongit.freedesktop.org/drm/drm-misc
6157 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6158 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6159
6160 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6161 M:      Dave Airlie <airlied@redhat.com>
6162 R:      Sean Paul <sean@poorly.run>
6163 R:      Thomas Zimmermann <tzimmermann@suse.de>
6164 L:      dri-devel@lists.freedesktop.org
6165 S:      Supported
6166 T:      git git://anongit.freedesktop.org/drm/drm-misc
6167 F:      drivers/gpu/drm/udl/
6168
6169 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6170 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6171 M:      Melissa Wen <melissa.srw@gmail.com>
6172 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6173 R:      Daniel Vetter <daniel@ffwll.ch>
6174 L:      dri-devel@lists.freedesktop.org
6175 S:      Maintained
6176 T:      git git://anongit.freedesktop.org/drm/drm-misc
6177 F:      Documentation/gpu/vkms.rst
6178 F:      drivers/gpu/drm/vkms/
6179
6180 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6181 M:      Hans de Goede <hdegoede@redhat.com>
6182 L:      dri-devel@lists.freedesktop.org
6183 S:      Maintained
6184 T:      git git://anongit.freedesktop.org/drm/drm-misc
6185 F:      drivers/gpu/drm/vboxvideo/
6186
6187 DRM DRIVER FOR VMWARE VIRTUAL GPU
6188 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6189 M:      Zack Rusin <zackr@vmware.com>
6190 L:      dri-devel@lists.freedesktop.org
6191 S:      Supported
6192 T:      git git://anongit.freedesktop.org/drm/drm-misc
6193 F:      drivers/gpu/drm/vmwgfx/
6194 F:      include/uapi/drm/vmwgfx_drm.h
6195
6196 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6197 M:      Linus Walleij <linus.walleij@linaro.org>
6198 S:      Maintained
6199 T:      git git://anongit.freedesktop.org/drm/drm-misc
6200 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6201 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6202
6203 DRM DRIVERS
6204 M:      David Airlie <airlied@linux.ie>
6205 M:      Daniel Vetter <daniel@ffwll.ch>
6206 L:      dri-devel@lists.freedesktop.org
6207 S:      Maintained
6208 B:      https://gitlab.freedesktop.org/drm
6209 C:      irc://irc.oftc.net/dri-devel
6210 T:      git git://anongit.freedesktop.org/drm/drm
6211 F:      Documentation/devicetree/bindings/display/
6212 F:      Documentation/devicetree/bindings/gpu/
6213 F:      Documentation/gpu/
6214 F:      drivers/gpu/
6215 F:      include/drm/
6216 F:      include/linux/vga*
6217 F:      include/uapi/drm/
6218
6219 DRM DRIVERS AND MISC GPU PATCHES
6220 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6221 M:      Maxime Ripard <mripard@kernel.org>
6222 M:      Thomas Zimmermann <tzimmermann@suse.de>
6223 S:      Maintained
6224 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6225 T:      git git://anongit.freedesktop.org/drm/drm-misc
6226 F:      Documentation/gpu/
6227 F:      drivers/gpu/drm/*
6228 F:      drivers/gpu/vga/
6229 F:      include/drm/drm*
6230 F:      include/linux/vga*
6231 F:      include/uapi/drm/drm*
6232
6233 DRM DRIVERS FOR ALLWINNER A10
6234 M:      Maxime Ripard <mripard@kernel.org>
6235 M:      Chen-Yu Tsai <wens@csie.org>
6236 L:      dri-devel@lists.freedesktop.org
6237 S:      Supported
6238 T:      git git://anongit.freedesktop.org/drm/drm-misc
6239 F:      Documentation/devicetree/bindings/display/allwinner*
6240 F:      drivers/gpu/drm/sun4i/
6241
6242 DRM DRIVERS FOR AMLOGIC SOCS
6243 M:      Neil Armstrong <narmstrong@baylibre.com>
6244 L:      dri-devel@lists.freedesktop.org
6245 L:      linux-amlogic@lists.infradead.org
6246 S:      Supported
6247 W:      http://linux-meson.com/
6248 T:      git git://anongit.freedesktop.org/drm/drm-misc
6249 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6250 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6251 F:      Documentation/gpu/meson.rst
6252 F:      drivers/gpu/drm/meson/
6253
6254 DRM DRIVERS FOR ATMEL HLCDC
6255 M:      Sam Ravnborg <sam@ravnborg.org>
6256 M:      Boris Brezillon <bbrezillon@kernel.org>
6257 L:      dri-devel@lists.freedesktop.org
6258 S:      Supported
6259 T:      git git://anongit.freedesktop.org/drm/drm-misc
6260 F:      Documentation/devicetree/bindings/display/atmel/
6261 F:      drivers/gpu/drm/atmel-hlcdc/
6262
6263 DRM DRIVERS FOR BRIDGE CHIPS
6264 M:      Andrzej Hajda <a.hajda@samsung.com>
6265 M:      Neil Armstrong <narmstrong@baylibre.com>
6266 M:      Robert Foss <robert.foss@linaro.org>
6267 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6268 R:      Jonas Karlman <jonas@kwiboo.se>
6269 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6270 S:      Maintained
6271 T:      git git://anongit.freedesktop.org/drm/drm-misc
6272 F:      drivers/gpu/drm/bridge/
6273
6274 DRM DRIVERS FOR EXYNOS
6275 M:      Inki Dae <inki.dae@samsung.com>
6276 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6277 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6278 M:      Kyungmin Park <kyungmin.park@samsung.com>
6279 L:      dri-devel@lists.freedesktop.org
6280 S:      Supported
6281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6282 F:      Documentation/devicetree/bindings/display/exynos/
6283 F:      drivers/gpu/drm/exynos/
6284 F:      include/uapi/drm/exynos_drm.h
6285
6286 DRM DRIVERS FOR FREESCALE DCU
6287 M:      Stefan Agner <stefan@agner.ch>
6288 M:      Alison Wang <alison.wang@nxp.com>
6289 L:      dri-devel@lists.freedesktop.org
6290 S:      Supported
6291 T:      git git://anongit.freedesktop.org/drm/drm-misc
6292 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6293 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6294 F:      drivers/gpu/drm/fsl-dcu/
6295
6296 DRM DRIVERS FOR FREESCALE IMX
6297 M:      Philipp Zabel <p.zabel@pengutronix.de>
6298 L:      dri-devel@lists.freedesktop.org
6299 S:      Maintained
6300 F:      Documentation/devicetree/bindings/display/imx/
6301 F:      drivers/gpu/drm/imx/
6302 F:      drivers/gpu/ipu-v3/
6303
6304 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6305 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6306 L:      dri-devel@lists.freedesktop.org
6307 S:      Maintained
6308 T:      git git://github.com/patjak/drm-gma500
6309 F:      drivers/gpu/drm/gma500/
6310
6311 DRM DRIVERS FOR HISILICON
6312 M:      Xinliang Liu <xinliang.liu@linaro.org>
6313 M:      Tian Tao  <tiantao6@hisilicon.com>
6314 R:      John Stultz <john.stultz@linaro.org>
6315 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6316 R:      Chen Feng <puck.chen@hisilicon.com>
6317 L:      dri-devel@lists.freedesktop.org
6318 S:      Maintained
6319 T:      git git://anongit.freedesktop.org/drm/drm-misc
6320 F:      Documentation/devicetree/bindings/display/hisilicon/
6321 F:      drivers/gpu/drm/hisilicon/
6322
6323 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6324 M:      Deepak Rawat <drawat.floss@gmail.com>
6325 L:      linux-hyperv@vger.kernel.org
6326 L:      dri-devel@lists.freedesktop.org
6327 S:      Maintained
6328 T:      git git://anongit.freedesktop.org/drm/drm-misc
6329 F:      drivers/gpu/drm/hyperv
6330
6331 DRM DRIVERS FOR LIMA
6332 M:      Qiang Yu <yuq825@gmail.com>
6333 L:      dri-devel@lists.freedesktop.org
6334 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6335 S:      Maintained
6336 T:      git git://anongit.freedesktop.org/drm/drm-misc
6337 F:      drivers/gpu/drm/lima/
6338 F:      include/uapi/drm/lima_drm.h
6339
6340 DRM DRIVERS FOR MEDIATEK
6341 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6342 M:      Philipp Zabel <p.zabel@pengutronix.de>
6343 L:      dri-devel@lists.freedesktop.org
6344 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6345 S:      Supported
6346 F:      Documentation/devicetree/bindings/display/mediatek/
6347 F:      drivers/gpu/drm/mediatek/
6348 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6349 F:      drivers/phy/mediatek/phy-mtk-mipi*
6350
6351 DRM DRIVERS FOR NVIDIA TEGRA
6352 M:      Thierry Reding <thierry.reding@gmail.com>
6353 L:      dri-devel@lists.freedesktop.org
6354 L:      linux-tegra@vger.kernel.org
6355 S:      Supported
6356 T:      git git://anongit.freedesktop.org/tegra/linux.git
6357 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6358 F:      drivers/gpu/drm/tegra/
6359 F:      drivers/gpu/host1x/
6360 F:      include/linux/host1x.h
6361 F:      include/uapi/drm/tegra_drm.h
6362
6363 DRM DRIVERS FOR RENESAS
6364 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6365 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6366 L:      dri-devel@lists.freedesktop.org
6367 L:      linux-renesas-soc@vger.kernel.org
6368 S:      Supported
6369 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6370 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6371 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6372 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6373 F:      drivers/gpu/drm/rcar-du/
6374 F:      drivers/gpu/drm/shmobile/
6375 F:      include/linux/platform_data/shmob_drm.h
6376
6377 DRM DRIVERS FOR ROCKCHIP
6378 M:      Sandy Huang <hjc@rock-chips.com>
6379 M:      Heiko Stübner <heiko@sntech.de>
6380 L:      dri-devel@lists.freedesktop.org
6381 S:      Maintained
6382 T:      git git://anongit.freedesktop.org/drm/drm-misc
6383 F:      Documentation/devicetree/bindings/display/rockchip/
6384 F:      drivers/gpu/drm/rockchip/
6385
6386 DRM DRIVERS FOR STI
6387 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6388 L:      dri-devel@lists.freedesktop.org
6389 S:      Maintained
6390 T:      git git://anongit.freedesktop.org/drm/drm-misc
6391 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6392 F:      drivers/gpu/drm/sti
6393
6394 DRM DRIVERS FOR STM
6395 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6396 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6397 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6398 L:      dri-devel@lists.freedesktop.org
6399 S:      Maintained
6400 T:      git git://anongit.freedesktop.org/drm/drm-misc
6401 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6402 F:      drivers/gpu/drm/stm
6403
6404 DRM DRIVERS FOR TI KEYSTONE
6405 M:      Jyri Sarha <jyri.sarha@iki.fi>
6406 M:      Tomi Valkeinen <tomba@kernel.org>
6407 L:      dri-devel@lists.freedesktop.org
6408 S:      Maintained
6409 T:      git git://anongit.freedesktop.org/drm/drm-misc
6410 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6411 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6412 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6413 F:      drivers/gpu/drm/tidss/
6414
6415 DRM DRIVERS FOR TI LCDC
6416 M:      Jyri Sarha <jyri.sarha@iki.fi>
6417 R:      Tomi Valkeinen <tomba@kernel.org>
6418 L:      dri-devel@lists.freedesktop.org
6419 S:      Maintained
6420 F:      Documentation/devicetree/bindings/display/tilcdc/
6421 F:      drivers/gpu/drm/tilcdc/
6422
6423 DRM DRIVERS FOR TI OMAP
6424 M:      Tomi Valkeinen <tomba@kernel.org>
6425 L:      dri-devel@lists.freedesktop.org
6426 S:      Maintained
6427 F:      Documentation/devicetree/bindings/display/ti/
6428 F:      drivers/gpu/drm/omapdrm/
6429
6430 DRM DRIVERS FOR V3D
6431 M:      Emma Anholt <emma@anholt.net>
6432 S:      Supported
6433 T:      git git://anongit.freedesktop.org/drm/drm-misc
6434 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6435 F:      drivers/gpu/drm/v3d/
6436 F:      include/uapi/drm/v3d_drm.h
6437
6438 DRM DRIVERS FOR VC4
6439 M:      Emma Anholt <emma@anholt.net>
6440 M:      Maxime Ripard <mripard@kernel.org>
6441 S:      Supported
6442 T:      git git://github.com/anholt/linux
6443 T:      git git://anongit.freedesktop.org/drm/drm-misc
6444 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6445 F:      drivers/gpu/drm/vc4/
6446 F:      include/uapi/drm/vc4_drm.h
6447
6448 DRM DRIVERS FOR VIVANTE GPU IP
6449 M:      Lucas Stach <l.stach@pengutronix.de>
6450 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6451 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6452 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6453 L:      dri-devel@lists.freedesktop.org
6454 S:      Maintained
6455 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6456 F:      drivers/gpu/drm/etnaviv/
6457 F:      include/uapi/drm/etnaviv_drm.h
6458
6459 DRM DRIVERS FOR XEN
6460 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6461 L:      dri-devel@lists.freedesktop.org
6462 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6463 S:      Supported
6464 T:      git git://anongit.freedesktop.org/drm/drm-misc
6465 F:      Documentation/gpu/xen-front.rst
6466 F:      drivers/gpu/drm/xen/
6467
6468 DRM DRIVERS FOR XILINX
6469 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6470 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6471 L:      dri-devel@lists.freedesktop.org
6472 S:      Maintained
6473 T:      git git://anongit.freedesktop.org/drm/drm-misc
6474 F:      Documentation/devicetree/bindings/display/xlnx/
6475 F:      drivers/gpu/drm/xlnx/
6476
6477 DRM PANEL DRIVERS
6478 M:      Thierry Reding <thierry.reding@gmail.com>
6479 R:      Sam Ravnborg <sam@ravnborg.org>
6480 L:      dri-devel@lists.freedesktop.org
6481 S:      Maintained
6482 T:      git git://anongit.freedesktop.org/drm/drm-misc
6483 F:      Documentation/devicetree/bindings/display/panel/
6484 F:      drivers/gpu/drm/drm_panel.c
6485 F:      drivers/gpu/drm/panel/
6486 F:      include/drm/drm_panel.h
6487
6488 DRM TTM SUBSYSTEM
6489 M:      Christian Koenig <christian.koenig@amd.com>
6490 M:      Huang Rui <ray.huang@amd.com>
6491 L:      dri-devel@lists.freedesktop.org
6492 S:      Maintained
6493 T:      git git://anongit.freedesktop.org/drm/drm-misc
6494 F:      drivers/gpu/drm/ttm/
6495 F:      include/drm/ttm/
6496
6497 DSBR100 USB FM RADIO DRIVER
6498 M:      Alexey Klimov <klimov.linux@gmail.com>
6499 L:      linux-media@vger.kernel.org
6500 S:      Maintained
6501 T:      git git://linuxtv.org/media_tree.git
6502 F:      drivers/media/radio/dsbr100.c
6503
6504 DT3155 MEDIA DRIVER
6505 M:      Hans Verkuil <hverkuil@xs4all.nl>
6506 L:      linux-media@vger.kernel.org
6507 S:      Odd Fixes
6508 W:      https://linuxtv.org
6509 T:      git git://linuxtv.org/media_tree.git
6510 F:      drivers/media/pci/dt3155/
6511
6512 DVB_USB_AF9015 MEDIA DRIVER
6513 M:      Antti Palosaari <crope@iki.fi>
6514 L:      linux-media@vger.kernel.org
6515 S:      Maintained
6516 W:      https://linuxtv.org
6517 W:      http://palosaari.fi/linux/
6518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6519 T:      git git://linuxtv.org/anttip/media_tree.git
6520 F:      drivers/media/usb/dvb-usb-v2/af9015*
6521
6522 DVB_USB_AF9035 MEDIA DRIVER
6523 M:      Antti Palosaari <crope@iki.fi>
6524 L:      linux-media@vger.kernel.org
6525 S:      Maintained
6526 W:      https://linuxtv.org
6527 W:      http://palosaari.fi/linux/
6528 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6529 T:      git git://linuxtv.org/anttip/media_tree.git
6530 F:      drivers/media/usb/dvb-usb-v2/af9035*
6531
6532 DVB_USB_ANYSEE MEDIA DRIVER
6533 M:      Antti Palosaari <crope@iki.fi>
6534 L:      linux-media@vger.kernel.org
6535 S:      Maintained
6536 W:      https://linuxtv.org
6537 W:      http://palosaari.fi/linux/
6538 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6539 T:      git git://linuxtv.org/anttip/media_tree.git
6540 F:      drivers/media/usb/dvb-usb-v2/anysee*
6541
6542 DVB_USB_AU6610 MEDIA DRIVER
6543 M:      Antti Palosaari <crope@iki.fi>
6544 L:      linux-media@vger.kernel.org
6545 S:      Maintained
6546 W:      https://linuxtv.org
6547 W:      http://palosaari.fi/linux/
6548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6549 T:      git git://linuxtv.org/anttip/media_tree.git
6550 F:      drivers/media/usb/dvb-usb-v2/au6610*
6551
6552 DVB_USB_CE6230 MEDIA DRIVER
6553 M:      Antti Palosaari <crope@iki.fi>
6554 L:      linux-media@vger.kernel.org
6555 S:      Maintained
6556 W:      https://linuxtv.org
6557 W:      http://palosaari.fi/linux/
6558 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6559 T:      git git://linuxtv.org/anttip/media_tree.git
6560 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6561
6562 DVB_USB_CXUSB MEDIA DRIVER
6563 M:      Michael Krufky <mkrufky@linuxtv.org>
6564 L:      linux-media@vger.kernel.org
6565 S:      Maintained
6566 W:      https://linuxtv.org
6567 W:      http://github.com/mkrufky
6568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6569 T:      git git://linuxtv.org/media_tree.git
6570 F:      drivers/media/usb/dvb-usb/cxusb*
6571
6572 DVB_USB_EC168 MEDIA DRIVER
6573 M:      Antti Palosaari <crope@iki.fi>
6574 L:      linux-media@vger.kernel.org
6575 S:      Maintained
6576 W:      https://linuxtv.org
6577 W:      http://palosaari.fi/linux/
6578 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6579 T:      git git://linuxtv.org/anttip/media_tree.git
6580 F:      drivers/media/usb/dvb-usb-v2/ec168*
6581
6582 DVB_USB_GL861 MEDIA DRIVER
6583 M:      Antti Palosaari <crope@iki.fi>
6584 L:      linux-media@vger.kernel.org
6585 S:      Maintained
6586 W:      https://linuxtv.org
6587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6588 T:      git git://linuxtv.org/anttip/media_tree.git
6589 F:      drivers/media/usb/dvb-usb-v2/gl861*
6590
6591 DVB_USB_MXL111SF MEDIA DRIVER
6592 M:      Michael Krufky <mkrufky@linuxtv.org>
6593 L:      linux-media@vger.kernel.org
6594 S:      Maintained
6595 W:      https://linuxtv.org
6596 W:      http://github.com/mkrufky
6597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6598 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6599 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6600
6601 DVB_USB_RTL28XXU MEDIA DRIVER
6602 M:      Antti Palosaari <crope@iki.fi>
6603 L:      linux-media@vger.kernel.org
6604 S:      Maintained
6605 W:      https://linuxtv.org
6606 W:      http://palosaari.fi/linux/
6607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6608 T:      git git://linuxtv.org/anttip/media_tree.git
6609 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6610
6611 DVB_USB_V2 MEDIA DRIVER
6612 M:      Antti Palosaari <crope@iki.fi>
6613 L:      linux-media@vger.kernel.org
6614 S:      Maintained
6615 W:      https://linuxtv.org
6616 W:      http://palosaari.fi/linux/
6617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6618 T:      git git://linuxtv.org/anttip/media_tree.git
6619 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6620 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6621
6622 DYNAMIC DEBUG
6623 M:      Jason Baron <jbaron@akamai.com>
6624 S:      Maintained
6625 F:      include/linux/dynamic_debug.h
6626 F:      lib/dynamic_debug.c
6627
6628 DYNAMIC INTERRUPT MODERATION
6629 M:      Tal Gilboa <talgi@nvidia.com>
6630 S:      Maintained
6631 F:      Documentation/networking/net_dim.rst
6632 F:      include/linux/dim.h
6633 F:      lib/dim/
6634
6635 DZ DECSTATION DZ11 SERIAL DRIVER
6636 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6637 S:      Maintained
6638 F:      drivers/tty/serial/dz.*
6639
6640 E3X0 POWER BUTTON DRIVER
6641 M:      Moritz Fischer <moritz.fischer@ettus.com>
6642 L:      usrp-users@lists.ettus.com
6643 S:      Supported
6644 W:      http://www.ettus.com
6645 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6646 F:      drivers/input/misc/e3x0-button.c
6647
6648 E4000 MEDIA DRIVER
6649 M:      Antti Palosaari <crope@iki.fi>
6650 L:      linux-media@vger.kernel.org
6651 S:      Maintained
6652 W:      https://linuxtv.org
6653 W:      http://palosaari.fi/linux/
6654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6655 T:      git git://linuxtv.org/anttip/media_tree.git
6656 F:      drivers/media/tuners/e4000*
6657
6658 EARTH_PT1 MEDIA DRIVER
6659 M:      Akihiro Tsukada <tskd08@gmail.com>
6660 L:      linux-media@vger.kernel.org
6661 S:      Odd Fixes
6662 F:      drivers/media/pci/pt1/
6663
6664 EARTH_PT3 MEDIA DRIVER
6665 M:      Akihiro Tsukada <tskd08@gmail.com>
6666 L:      linux-media@vger.kernel.org
6667 S:      Odd Fixes
6668 F:      drivers/media/pci/pt3/
6669
6670 EC100 MEDIA DRIVER
6671 M:      Antti Palosaari <crope@iki.fi>
6672 L:      linux-media@vger.kernel.org
6673 S:      Maintained
6674 W:      https://linuxtv.org
6675 W:      http://palosaari.fi/linux/
6676 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6677 T:      git git://linuxtv.org/anttip/media_tree.git
6678 F:      drivers/media/dvb-frontends/ec100*
6679
6680 ECRYPT FILE SYSTEM
6681 M:      Tyler Hicks <code@tyhicks.com>
6682 L:      ecryptfs@vger.kernel.org
6683 S:      Odd Fixes
6684 W:      http://ecryptfs.org
6685 W:      https://launchpad.net/ecryptfs
6686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6687 F:      Documentation/filesystems/ecryptfs.rst
6688 F:      fs/ecryptfs/
6689
6690 EDAC-AMD64
6691 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6692 L:      linux-edac@vger.kernel.org
6693 S:      Supported
6694 F:      drivers/edac/amd64_edac*
6695 F:      drivers/edac/mce_amd*
6696
6697 EDAC-ARMADA
6698 M:      Jan Luebbe <jlu@pengutronix.de>
6699 L:      linux-edac@vger.kernel.org
6700 S:      Maintained
6701 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6702 F:      drivers/edac/armada_xp_*
6703
6704 EDAC-AST2500
6705 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6706 S:      Supported
6707 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6708 F:      drivers/edac/aspeed_edac.c
6709
6710 EDAC-BLUEFIELD
6711 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6712 S:      Supported
6713 F:      drivers/edac/bluefield_edac.c
6714
6715 EDAC-CALXEDA
6716 M:      Andre Przywara <andre.przywara@arm.com>
6717 L:      linux-edac@vger.kernel.org
6718 S:      Maintained
6719 F:      drivers/edac/highbank*
6720
6721 EDAC-CAVIUM OCTEON
6722 M:      Ralf Baechle <ralf@linux-mips.org>
6723 L:      linux-edac@vger.kernel.org
6724 L:      linux-mips@vger.kernel.org
6725 S:      Supported
6726 F:      drivers/edac/octeon_edac*
6727
6728 EDAC-CAVIUM THUNDERX
6729 M:      Robert Richter <rric@kernel.org>
6730 L:      linux-edac@vger.kernel.org
6731 S:      Odd Fixes
6732 F:      drivers/edac/thunderx_edac*
6733
6734 EDAC-CORE
6735 M:      Borislav Petkov <bp@alien8.de>
6736 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6737 M:      Tony Luck <tony.luck@intel.com>
6738 R:      James Morse <james.morse@arm.com>
6739 R:      Robert Richter <rric@kernel.org>
6740 L:      linux-edac@vger.kernel.org
6741 S:      Supported
6742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6743 F:      Documentation/admin-guide/ras.rst
6744 F:      Documentation/driver-api/edac.rst
6745 F:      drivers/edac/
6746 F:      include/linux/edac.h
6747
6748 EDAC-DMC520
6749 M:      Lei Wang <lewan@microsoft.com>
6750 L:      linux-edac@vger.kernel.org
6751 S:      Supported
6752 F:      drivers/edac/dmc520_edac.c
6753
6754 EDAC-E752X
6755 M:      Mark Gross <mark.gross@intel.com>
6756 L:      linux-edac@vger.kernel.org
6757 S:      Maintained
6758 F:      drivers/edac/e752x_edac.c
6759
6760 EDAC-E7XXX
6761 L:      linux-edac@vger.kernel.org
6762 S:      Maintained
6763 F:      drivers/edac/e7xxx_edac.c
6764
6765 EDAC-FSL_DDR
6766 M:      York Sun <york.sun@nxp.com>
6767 L:      linux-edac@vger.kernel.org
6768 S:      Maintained
6769 F:      drivers/edac/fsl_ddr_edac.*
6770
6771 EDAC-GHES
6772 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6773 L:      linux-edac@vger.kernel.org
6774 S:      Maintained
6775 F:      drivers/edac/ghes_edac.c
6776
6777 EDAC-I10NM
6778 M:      Tony Luck <tony.luck@intel.com>
6779 L:      linux-edac@vger.kernel.org
6780 S:      Maintained
6781 F:      drivers/edac/i10nm_base.c
6782
6783 EDAC-I3000
6784 L:      linux-edac@vger.kernel.org
6785 S:      Orphan
6786 F:      drivers/edac/i3000_edac.c
6787
6788 EDAC-I5000
6789 L:      linux-edac@vger.kernel.org
6790 S:      Maintained
6791 F:      drivers/edac/i5000_edac.c
6792
6793 EDAC-I5400
6794 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6795 L:      linux-edac@vger.kernel.org
6796 S:      Maintained
6797 F:      drivers/edac/i5400_edac.c
6798
6799 EDAC-I7300
6800 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6801 L:      linux-edac@vger.kernel.org
6802 S:      Maintained
6803 F:      drivers/edac/i7300_edac.c
6804
6805 EDAC-I7CORE
6806 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6807 L:      linux-edac@vger.kernel.org
6808 S:      Maintained
6809 F:      drivers/edac/i7core_edac.c
6810
6811 EDAC-I82443BXGX
6812 M:      Tim Small <tim@buttersideup.com>
6813 L:      linux-edac@vger.kernel.org
6814 S:      Maintained
6815 F:      drivers/edac/i82443bxgx_edac.c
6816
6817 EDAC-I82975X
6818 M:      "Arvind R." <arvino55@gmail.com>
6819 L:      linux-edac@vger.kernel.org
6820 S:      Maintained
6821 F:      drivers/edac/i82975x_edac.c
6822
6823 EDAC-IE31200
6824 M:      Jason Baron <jbaron@akamai.com>
6825 L:      linux-edac@vger.kernel.org
6826 S:      Maintained
6827 F:      drivers/edac/ie31200_edac.c
6828
6829 EDAC-IGEN6
6830 M:      Tony Luck <tony.luck@intel.com>
6831 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6832 L:      linux-edac@vger.kernel.org
6833 S:      Maintained
6834 F:      drivers/edac/igen6_edac.c
6835
6836 EDAC-MPC85XX
6837 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6838 L:      linux-edac@vger.kernel.org
6839 S:      Maintained
6840 F:      drivers/edac/mpc85xx_edac.[ch]
6841
6842 EDAC-PASEMI
6843 M:      Egor Martovetsky <egor@pasemi.com>
6844 L:      linux-edac@vger.kernel.org
6845 S:      Maintained
6846 F:      drivers/edac/pasemi_edac.c
6847
6848 EDAC-PND2
6849 M:      Tony Luck <tony.luck@intel.com>
6850 L:      linux-edac@vger.kernel.org
6851 S:      Maintained
6852 F:      drivers/edac/pnd2_edac.[ch]
6853
6854 EDAC-QCOM
6855 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6856 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6857 L:      linux-arm-msm@vger.kernel.org
6858 L:      linux-edac@vger.kernel.org
6859 S:      Maintained
6860 F:      drivers/edac/qcom_edac.c
6861
6862 EDAC-R82600
6863 M:      Tim Small <tim@buttersideup.com>
6864 L:      linux-edac@vger.kernel.org
6865 S:      Maintained
6866 F:      drivers/edac/r82600_edac.c
6867
6868 EDAC-SBRIDGE
6869 M:      Tony Luck <tony.luck@intel.com>
6870 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6871 L:      linux-edac@vger.kernel.org
6872 S:      Maintained
6873 F:      drivers/edac/sb_edac.c
6874
6875 EDAC-SIFIVE
6876 M:      Yash Shah <yash.shah@sifive.com>
6877 L:      linux-edac@vger.kernel.org
6878 S:      Supported
6879 F:      drivers/edac/sifive_edac.c
6880
6881 EDAC-SKYLAKE
6882 M:      Tony Luck <tony.luck@intel.com>
6883 L:      linux-edac@vger.kernel.org
6884 S:      Maintained
6885 F:      drivers/edac/skx_*.[ch]
6886
6887 EDAC-TI
6888 M:      Tero Kristo <kristo@kernel.org>
6889 L:      linux-edac@vger.kernel.org
6890 S:      Odd Fixes
6891 F:      drivers/edac/ti_edac.c
6892
6893 EDIROL UA-101/UA-1000 DRIVER
6894 M:      Clemens Ladisch <clemens@ladisch.de>
6895 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6896 S:      Maintained
6897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6898 F:      sound/usb/misc/ua101.c
6899
6900 EFI TEST DRIVER
6901 M:      Ivan Hu <ivan.hu@canonical.com>
6902 M:      Ard Biesheuvel <ardb@kernel.org>
6903 L:      linux-efi@vger.kernel.org
6904 S:      Maintained
6905 F:      drivers/firmware/efi/test/
6906
6907 EFI VARIABLE FILESYSTEM
6908 M:      Matthew Garrett <matthew.garrett@nebula.com>
6909 M:      Jeremy Kerr <jk@ozlabs.org>
6910 M:      Ard Biesheuvel <ardb@kernel.org>
6911 L:      linux-efi@vger.kernel.org
6912 S:      Maintained
6913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6914 F:      fs/efivarfs/
6915
6916 EFIFB FRAMEBUFFER DRIVER
6917 M:      Peter Jones <pjones@redhat.com>
6918 L:      linux-fbdev@vger.kernel.org
6919 S:      Maintained
6920 F:      drivers/video/fbdev/efifb.c
6921
6922 EFS FILESYSTEM
6923 S:      Orphan
6924 W:      http://aeschi.ch.eu.org/efs/
6925 F:      fs/efs/
6926
6927 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6928 M:      Douglas Miller <dougmill@linux.ibm.com>
6929 L:      netdev@vger.kernel.org
6930 S:      Maintained
6931 F:      drivers/net/ethernet/ibm/ehea/
6932
6933 EM28XX VIDEO4LINUX DRIVER
6934 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6935 L:      linux-media@vger.kernel.org
6936 S:      Maintained
6937 W:      https://linuxtv.org
6938 T:      git git://linuxtv.org/media_tree.git
6939 F:      Documentation/admin-guide/media/em28xx*
6940 F:      drivers/media/usb/em28xx/
6941
6942 EMBEDDED LINUX
6943 M:      Matt Mackall <mpm@selenic.com>
6944 M:      David Woodhouse <dwmw2@infradead.org>
6945 L:      linux-embedded@vger.kernel.org
6946 S:      Maintained
6947
6948 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6949 M:      Adrian Hunter <adrian.hunter@intel.com>
6950 M:      Ritesh Harjani <riteshh@codeaurora.org>
6951 M:      Asutosh Das <asutoshd@codeaurora.org>
6952 L:      linux-mmc@vger.kernel.org
6953 S:      Maintained
6954 F:      drivers/mmc/host/cqhci*
6955
6956 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6957 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6958 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6959 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6960 L:      linux-scsi@vger.kernel.org
6961 S:      Supported
6962 W:      http://www.broadcom.com
6963 F:      drivers/scsi/be2iscsi/
6964
6965 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6966 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6967 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6968 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6969 L:      netdev@vger.kernel.org
6970 S:      Supported
6971 W:      http://www.emulex.com
6972 F:      drivers/net/ethernet/emulex/benet/
6973
6974 EMULEX ONECONNECT ROCE DRIVER
6975 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6976 L:      linux-rdma@vger.kernel.org
6977 S:      Odd Fixes
6978 W:      http://www.broadcom.com
6979 F:      drivers/infiniband/hw/ocrdma/
6980 F:      include/uapi/rdma/ocrdma-abi.h
6981
6982 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6983 M:      James Smart <james.smart@broadcom.com>
6984 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6985 L:      linux-scsi@vger.kernel.org
6986 S:      Supported
6987 W:      http://www.broadcom.com
6988 F:      drivers/scsi/lpfc/
6989
6990 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6991 M:      James Smart <james.smart@broadcom.com>
6992 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6993 L:      linux-scsi@vger.kernel.org
6994 L:      target-devel@vger.kernel.org
6995 S:      Supported
6996 W:      http://www.broadcom.com
6997 F:      drivers/scsi/elx/
6998
6999 ENE CB710 FLASH CARD READER DRIVER
7000 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7001 S:      Maintained
7002 F:      drivers/misc/cb710/
7003 F:      drivers/mmc/host/cb710-mmc.*
7004 F:      include/linux/cb710.h
7005
7006 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7007 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7008 S:      Maintained
7009 F:      drivers/media/rc/ene_ir.*
7010
7011 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7012 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7013 L:      linuxppc-dev@lists.ozlabs.org
7014 S:      Maintained
7015 F:      drivers/tty/ehv_bytechan.c
7016
7017 EPSON S1D13XXX FRAMEBUFFER DRIVER
7018 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7019 S:      Maintained
7020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7021 F:      drivers/video/fbdev/s1d13xxxfb.c
7022 F:      include/video/s1d13xxxfb.h
7023
7024 EROFS FILE SYSTEM
7025 M:      Gao Xiang <xiang@kernel.org>
7026 M:      Chao Yu <chao@kernel.org>
7027 L:      linux-erofs@lists.ozlabs.org
7028 S:      Maintained
7029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7030 F:      Documentation/filesystems/erofs.rst
7031 F:      fs/erofs/
7032 F:      include/trace/events/erofs.h
7033
7034 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7035 M:      Jeff Layton <jlayton@kernel.org>
7036 S:      Maintained
7037 F:      include/linux/errseq.h
7038 F:      lib/errseq.c
7039
7040 ET131X NETWORK DRIVER
7041 M:      Mark Einon <mark.einon@gmail.com>
7042 S:      Odd Fixes
7043 F:      drivers/net/ethernet/agere/
7044
7045 ETAS ES58X CAN/USB DRIVER
7046 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7047 L:      linux-can@vger.kernel.org
7048 S:      Maintained
7049 F:      drivers/net/can/usb/etas_es58x/
7050
7051 ETHERNET BRIDGE
7052 M:      Roopa Prabhu <roopa@nvidia.com>
7053 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7054 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7055 L:      netdev@vger.kernel.org
7056 S:      Maintained
7057 W:      http://www.linuxfoundation.org/en/Net:Bridge
7058 F:      include/linux/netfilter_bridge/
7059 F:      net/bridge/
7060
7061 ETHERNET PHY LIBRARY
7062 M:      Andrew Lunn <andrew@lunn.ch>
7063 M:      Heiner Kallweit <hkallweit1@gmail.com>
7064 R:      Russell King <linux@armlinux.org.uk>
7065 L:      netdev@vger.kernel.org
7066 S:      Maintained
7067 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7068 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7069 F:      Documentation/devicetree/bindings/net/mdio*
7070 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7071 F:      Documentation/networking/phy.rst
7072 F:      drivers/net/mdio/
7073 F:      drivers/net/mdio/acpi_mdio.c
7074 F:      drivers/net/mdio/fwnode_mdio.c
7075 F:      drivers/net/mdio/of_mdio.c
7076 F:      drivers/net/pcs/
7077 F:      drivers/net/phy/
7078 F:      include/dt-bindings/net/qca-ar803x.h
7079 F:      include/linux/*mdio*.h
7080 F:      include/linux/mdio/*.h
7081 F:      include/linux/of_net.h
7082 F:      include/linux/phy.h
7083 F:      include/linux/phy_fixed.h
7084 F:      include/linux/platform_data/mdio-bcm-unimac.h
7085 F:      include/linux/platform_data/mdio-gpio.h
7086 F:      include/trace/events/mdio.h
7087 F:      include/uapi/linux/mdio.h
7088 F:      include/uapi/linux/mii.h
7089 F:      net/core/of_net.c
7090
7091 EXFAT FILE SYSTEM
7092 M:      Namjae Jeon <linkinjeon@kernel.org>
7093 M:      Sungjong Seo <sj1557.seo@samsung.com>
7094 L:      linux-fsdevel@vger.kernel.org
7095 S:      Maintained
7096 F:      fs/exfat/
7097
7098 EXT2 FILE SYSTEM
7099 M:      Jan Kara <jack@suse.com>
7100 L:      linux-ext4@vger.kernel.org
7101 S:      Maintained
7102 F:      Documentation/filesystems/ext2.rst
7103 F:      fs/ext2/
7104 F:      include/linux/ext2*
7105
7106 EXT4 FILE SYSTEM
7107 M:      "Theodore Ts'o" <tytso@mit.edu>
7108 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7109 L:      linux-ext4@vger.kernel.org
7110 S:      Maintained
7111 W:      http://ext4.wiki.kernel.org
7112 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7114 F:      Documentation/filesystems/ext4/
7115 F:      fs/ext4/
7116 F:      include/trace/events/ext4.h
7117
7118 Extended Verification Module (EVM)
7119 M:      Mimi Zohar <zohar@linux.ibm.com>
7120 L:      linux-integrity@vger.kernel.org
7121 S:      Supported
7122 F:      security/integrity/evm/
7123
7124 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7125 M:      Ard Biesheuvel <ardb@kernel.org>
7126 L:      linux-efi@vger.kernel.org
7127 S:      Maintained
7128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7129 F:      Documentation/admin-guide/efi-stub.rst
7130 F:      arch/*/include/asm/efi.h
7131 F:      arch/*/kernel/efi.c
7132 F:      arch/arm/boot/compressed/efi-header.S
7133 F:      arch/arm64/kernel/efi-entry.S
7134 F:      arch/x86/platform/efi/
7135 F:      drivers/firmware/efi/
7136 F:      include/linux/efi*.h
7137
7138 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7139 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7140 M:      Chanwoo Choi <cw00.choi@samsung.com>
7141 L:      linux-kernel@vger.kernel.org
7142 S:      Maintained
7143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7144 F:      Documentation/devicetree/bindings/extcon/
7145 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7146 F:      drivers/extcon/
7147 F:      include/linux/extcon.h
7148 F:      include/linux/extcon/
7149
7150 EXTRA BOOT CONFIG
7151 M:      Masami Hiramatsu <mhiramat@kernel.org>
7152 S:      Maintained
7153 F:      Documentation/admin-guide/bootconfig.rst
7154 F:      fs/proc/bootconfig.c
7155 F:      include/linux/bootconfig.h
7156 F:      lib/bootconfig.c
7157 F:      tools/bootconfig/*
7158 F:      tools/bootconfig/scripts/*
7159
7160 EXYNOS DP DRIVER
7161 M:      Jingoo Han <jingoohan1@gmail.com>
7162 L:      dri-devel@lists.freedesktop.org
7163 S:      Maintained
7164 F:      drivers/gpu/drm/exynos/exynos_dp*
7165
7166 EXYNOS SYSMMU (IOMMU) driver
7167 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7168 L:      iommu@lists.linux-foundation.org
7169 L:      iommu@lists.linux.dev
7170 S:      Maintained
7171 F:      drivers/iommu/exynos-iommu.c
7172
7173 F2FS FILE SYSTEM
7174 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7175 M:      Chao Yu <chao@kernel.org>
7176 L:      linux-f2fs-devel@lists.sourceforge.net
7177 S:      Maintained
7178 W:      https://f2fs.wiki.kernel.org/
7179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7180 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7181 F:      Documentation/filesystems/f2fs.rst
7182 F:      fs/f2fs/
7183 F:      include/linux/f2fs_fs.h
7184 F:      include/trace/events/f2fs.h
7185 F:      include/uapi/linux/f2fs.h
7186
7187 F71805F HARDWARE MONITORING DRIVER
7188 M:      Jean Delvare <jdelvare@suse.com>
7189 L:      linux-hwmon@vger.kernel.org
7190 S:      Maintained
7191 F:      Documentation/hwmon/f71805f.rst
7192 F:      drivers/hwmon/f71805f.c
7193
7194 FADDR2LINE
7195 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7196 S:      Maintained
7197 F:      scripts/faddr2line
7198
7199 FAILOVER MODULE
7200 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7201 L:      netdev@vger.kernel.org
7202 S:      Supported
7203 F:      Documentation/networking/failover.rst
7204 F:      include/net/failover.h
7205 F:      net/core/failover.c
7206
7207 FANOTIFY
7208 M:      Jan Kara <jack@suse.cz>
7209 R:      Amir Goldstein <amir73il@gmail.com>
7210 R:      Matthew Bobrowski <repnop@google.com>
7211 L:      linux-fsdevel@vger.kernel.org
7212 S:      Maintained
7213 F:      fs/notify/fanotify/
7214 F:      include/linux/fanotify.h
7215 F:      include/uapi/linux/fanotify.h
7216
7217 FARSYNC SYNCHRONOUS DRIVER
7218 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7219 S:      Supported
7220 W:      http://www.farsite.co.uk/
7221 F:      drivers/net/wan/farsync.*
7222
7223 FAULT INJECTION SUPPORT
7224 M:      Akinobu Mita <akinobu.mita@gmail.com>
7225 S:      Supported
7226 F:      Documentation/fault-injection/
7227 F:      lib/fault-inject.c
7228
7229 FBTFT Framebuffer drivers
7230 L:      dri-devel@lists.freedesktop.org
7231 L:      linux-fbdev@vger.kernel.org
7232 S:      Orphan
7233 F:      drivers/staging/fbtft/
7234
7235 FC0011 TUNER DRIVER
7236 M:      Michael Buesch <m@bues.ch>
7237 L:      linux-media@vger.kernel.org
7238 S:      Maintained
7239 F:      drivers/media/tuners/fc0011.c
7240 F:      drivers/media/tuners/fc0011.h
7241
7242 FC2580 MEDIA DRIVER
7243 M:      Antti Palosaari <crope@iki.fi>
7244 L:      linux-media@vger.kernel.org
7245 S:      Maintained
7246 W:      https://linuxtv.org
7247 W:      http://palosaari.fi/linux/
7248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7249 T:      git git://linuxtv.org/anttip/media_tree.git
7250 F:      drivers/media/tuners/fc2580*
7251
7252 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7253 M:      Hannes Reinecke <hare@suse.de>
7254 L:      linux-scsi@vger.kernel.org
7255 S:      Supported
7256 W:      www.Open-FCoE.org
7257 F:      drivers/scsi/fcoe/
7258 F:      drivers/scsi/libfc/
7259 F:      include/scsi/fc/
7260 F:      include/scsi/libfc.h
7261 F:      include/scsi/libfcoe.h
7262 F:      include/uapi/scsi/fc/
7263
7264 FILE LOCKING (flock() and fcntl()/lockf())
7265 M:      Jeff Layton <jlayton@kernel.org>
7266 M:      "J. Bruce Fields" <bfields@fieldses.org>
7267 L:      linux-fsdevel@vger.kernel.org
7268 S:      Maintained
7269 F:      fs/fcntl.c
7270 F:      fs/locks.c
7271 F:      include/linux/fcntl.h
7272 F:      include/uapi/linux/fcntl.h
7273
7274 FILESYSTEM DIRECT ACCESS (DAX)
7275 M:      Dan Williams <dan.j.williams@intel.com>
7276 R:      Matthew Wilcox <willy@infradead.org>
7277 R:      Jan Kara <jack@suse.cz>
7278 L:      linux-fsdevel@vger.kernel.org
7279 L:      nvdimm@lists.linux.dev
7280 S:      Supported
7281 F:      fs/dax.c
7282 F:      include/linux/dax.h
7283 F:      include/trace/events/fs_dax.h
7284
7285 FILESYSTEMS (VFS and infrastructure)
7286 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7287 L:      linux-fsdevel@vger.kernel.org
7288 S:      Maintained
7289 F:      fs/*
7290 F:      include/linux/fs.h
7291 F:      include/linux/fs_types.h
7292 F:      include/uapi/linux/fs.h
7293 F:      include/uapi/linux/openat2.h
7294
7295 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7296 M:      Riku Voipio <riku.voipio@iki.fi>
7297 L:      linux-hwmon@vger.kernel.org
7298 S:      Maintained
7299 F:      drivers/hwmon/f75375s.c
7300 F:      include/linux/f75375s.h
7301
7302 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7303 M:      Clemens Ladisch <clemens@ladisch.de>
7304 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7305 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7306 S:      Maintained
7307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7308 F:      include/uapi/sound/firewire.h
7309 F:      sound/firewire/
7310
7311 FIREWIRE MEDIA DRIVERS (firedtv)
7312 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7313 L:      linux-media@vger.kernel.org
7314 L:      linux1394-devel@lists.sourceforge.net
7315 S:      Maintained
7316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7317 F:      drivers/media/firewire/
7318
7319 FIREWIRE SBP-2 TARGET
7320 M:      Chris Boot <bootc@bootc.net>
7321 L:      linux-scsi@vger.kernel.org
7322 L:      target-devel@vger.kernel.org
7323 L:      linux1394-devel@lists.sourceforge.net
7324 S:      Maintained
7325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7326 F:      drivers/target/sbp/
7327
7328 FIREWIRE SUBSYSTEM
7329 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7330 L:      linux1394-devel@lists.sourceforge.net
7331 S:      Maintained
7332 W:      http://ieee1394.wiki.kernel.org/
7333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7334 F:      drivers/firewire/
7335 F:      include/linux/firewire.h
7336 F:      include/uapi/linux/firewire*.h
7337 F:      tools/firewire/
7338
7339 FIRMWARE FRAMEWORK FOR ARMV8-A
7340 M:      Sudeep Holla <sudeep.holla@arm.com>
7341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7342 S:      Maintained
7343 F:      drivers/firmware/arm_ffa/
7344 F:      include/linux/arm_ffa.h
7345
7346 FIRMWARE LOADER (request_firmware)
7347 M:      Luis Chamberlain <mcgrof@kernel.org>
7348 L:      linux-kernel@vger.kernel.org
7349 S:      Maintained
7350 F:      Documentation/firmware_class/
7351 F:      drivers/base/firmware_loader/
7352 F:      include/linux/firmware.h
7353
7354 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7355 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7356 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7357 S:      Maintained
7358 F:      drivers/block/rsxx/
7359
7360 FLEXTIMER FTM-QUADDEC DRIVER
7361 M:      Patrick Havelange <patrick.havelange@essensium.com>
7362 L:      linux-iio@vger.kernel.org
7363 S:      Maintained
7364 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7365 F:      drivers/counter/ftm-quaddec.c
7366
7367 FLOPPY DRIVER
7368 M:      Denis Efremov <efremov@linux.com>
7369 L:      linux-block@vger.kernel.org
7370 S:      Odd Fixes
7371 F:      drivers/block/floppy.c
7372
7373 FLYSKY FSIA6B RC RECEIVER
7374 M:      Markus Koch <markus@notsyncing.net>
7375 L:      linux-input@vger.kernel.org
7376 S:      Maintained
7377 F:      drivers/input/joystick/fsia6b.c
7378
7379 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7380 M:      Geoffrey D. Bennett <g@b4.vu>
7381 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7382 S:      Maintained
7383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7384 F:      sound/usb/mixer_scarlett_gen2.c
7385
7386 FORCEDETH GIGABIT ETHERNET DRIVER
7387 M:      Rain River <rain.1986.08.12@gmail.com>
7388 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7389 L:      netdev@vger.kernel.org
7390 S:      Maintained
7391 F:      drivers/net/ethernet/nvidia/*
7392
7393 FPGA DFL DRIVERS
7394 M:      Wu Hao <hao.wu@intel.com>
7395 R:      Tom Rix <trix@redhat.com>
7396 L:      linux-fpga@vger.kernel.org
7397 S:      Maintained
7398 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7399 F:      Documentation/fpga/dfl.rst
7400 F:      drivers/fpga/dfl*
7401 F:      drivers/uio/uio_dfl.c
7402 F:      include/linux/dfl.h
7403 F:      include/uapi/linux/fpga-dfl.h
7404
7405 FPGA MANAGER FRAMEWORK
7406 M:      Moritz Fischer <mdf@kernel.org>
7407 M:      Wu Hao <hao.wu@intel.com>
7408 M:      Xu Yilun <yilun.xu@intel.com>
7409 R:      Tom Rix <trix@redhat.com>
7410 L:      linux-fpga@vger.kernel.org
7411 S:      Maintained
7412 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7414 F:      Documentation/devicetree/bindings/fpga/
7415 F:      Documentation/driver-api/fpga/
7416 F:      Documentation/fpga/
7417 F:      drivers/fpga/
7418 F:      include/linux/fpga/
7419
7420 FPU EMULATOR
7421 M:      Bill Metzenthen <billm@melbpc.org.au>
7422 S:      Maintained
7423 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7424 F:      arch/x86/math-emu/
7425
7426 FRAMEBUFFER LAYER
7427 L:      dri-devel@lists.freedesktop.org
7428 L:      linux-fbdev@vger.kernel.org
7429 S:      Orphan
7430 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7431 T:      git git://anongit.freedesktop.org/drm/drm-misc
7432 F:      Documentation/fb/
7433 F:      drivers/video/
7434 F:      include/linux/fb.h
7435 F:      include/uapi/linux/fb.h
7436 F:      include/uapi/video/
7437 F:      include/video/
7438
7439 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7440 M:      Horia Geantă <horia.geanta@nxp.com>
7441 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7442 L:      linux-crypto@vger.kernel.org
7443 S:      Maintained
7444 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7445 F:      drivers/crypto/caam/
7446
7447 FREESCALE COLDFIRE M5441X MMC DRIVER
7448 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7449 L:      linux-mmc@vger.kernel.org
7450 S:      Maintained
7451 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7452 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7453
7454 FREESCALE DIU FRAMEBUFFER DRIVER
7455 M:      Timur Tabi <timur@kernel.org>
7456 L:      linux-fbdev@vger.kernel.org
7457 S:      Maintained
7458 F:      drivers/video/fbdev/fsl-diu-fb.*
7459
7460 FREESCALE DMA DRIVER
7461 M:      Li Yang <leoyang.li@nxp.com>
7462 M:      Zhang Wei <zw@zh-kernel.org>
7463 L:      linuxppc-dev@lists.ozlabs.org
7464 S:      Maintained
7465 F:      drivers/dma/fsldma.*
7466
7467 FREESCALE DSPI DRIVER
7468 M:      Vladimir Oltean <olteanv@gmail.com>
7469 L:      linux-spi@vger.kernel.org
7470 S:      Maintained
7471 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7472 F:      drivers/spi/spi-fsl-dspi.c
7473 F:      include/linux/spi/spi-fsl-dspi.h
7474
7475 FREESCALE ENETC ETHERNET DRIVERS
7476 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7477 L:      netdev@vger.kernel.org
7478 S:      Maintained
7479 F:      drivers/net/ethernet/freescale/enetc/
7480
7481 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7482 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7483 L:      netdev@vger.kernel.org
7484 S:      Maintained
7485 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7486 F:      drivers/net/ethernet/freescale/gianfar*
7487
7488 FREESCALE GPMI NAND DRIVER
7489 M:      Han Xu <han.xu@nxp.com>
7490 L:      linux-mtd@lists.infradead.org
7491 S:      Maintained
7492 F:      drivers/mtd/nand/raw/gpmi-nand/*
7493
7494 FREESCALE I2C CPM DRIVER
7495 M:      Jochen Friedrich <jochen@scram.de>
7496 L:      linuxppc-dev@lists.ozlabs.org
7497 L:      linux-i2c@vger.kernel.org
7498 S:      Maintained
7499 F:      drivers/i2c/busses/i2c-cpm.c
7500
7501 FREESCALE IMX / MXC FEC DRIVER
7502 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7503 L:      netdev@vger.kernel.org
7504 S:      Maintained
7505 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7506 F:      drivers/net/ethernet/freescale/fec.h
7507 F:      drivers/net/ethernet/freescale/fec_main.c
7508 F:      drivers/net/ethernet/freescale/fec_ptp.c
7509
7510 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7511 M:      Sascha Hauer <s.hauer@pengutronix.de>
7512 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7513 L:      linux-fbdev@vger.kernel.org
7514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7515 S:      Maintained
7516 F:      drivers/video/fbdev/imxfb.c
7517 F:      include/linux/platform_data/video-imxfb.h
7518
7519 FREESCALE IMX DDR PMU DRIVER
7520 M:      Frank Li <Frank.li@nxp.com>
7521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7522 S:      Maintained
7523 F:      Documentation/admin-guide/perf/imx-ddr.rst
7524 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7525 F:      drivers/perf/fsl_imx8_ddr_perf.c
7526
7527 FREESCALE IMX I2C DRIVER
7528 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7529 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7530 L:      linux-i2c@vger.kernel.org
7531 S:      Maintained
7532 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7533 F:      drivers/i2c/busses/i2c-imx.c
7534
7535 FREESCALE IMX LPI2C DRIVER
7536 M:      Dong Aisheng <aisheng.dong@nxp.com>
7537 L:      linux-i2c@vger.kernel.org
7538 L:      linux-imx@nxp.com
7539 S:      Maintained
7540 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7541 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7542
7543 FREESCALE MPC I2C DRIVER
7544 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7545 L:      linux-i2c@vger.kernel.org
7546 S:      Maintained
7547 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7548 F:      drivers/i2c/busses/i2c-mpc.c
7549
7550 FREESCALE QORIQ DPAA ETHERNET DRIVER
7551 M:      Madalin Bucur <madalin.bucur@nxp.com>
7552 L:      netdev@vger.kernel.org
7553 S:      Maintained
7554 F:      drivers/net/ethernet/freescale/dpaa
7555
7556 FREESCALE QORIQ DPAA FMAN DRIVER
7557 M:      Madalin Bucur <madalin.bucur@nxp.com>
7558 L:      netdev@vger.kernel.org
7559 S:      Maintained
7560 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7561 F:      drivers/net/ethernet/freescale/fman
7562
7563 FREESCALE QORIQ PTP CLOCK DRIVER
7564 M:      Yangbo Lu <yangbo.lu@nxp.com>
7565 L:      netdev@vger.kernel.org
7566 S:      Maintained
7567 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7568 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7569 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7570 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7571 F:      drivers/ptp/ptp_qoriq.c
7572 F:      drivers/ptp/ptp_qoriq_debugfs.c
7573 F:      include/linux/fsl/ptp_qoriq.h
7574
7575 FREESCALE QUAD SPI DRIVER
7576 M:      Han Xu <han.xu@nxp.com>
7577 L:      linux-spi@vger.kernel.org
7578 S:      Maintained
7579 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7580 F:      drivers/spi/spi-fsl-qspi.c
7581
7582 FREESCALE QUICC ENGINE LIBRARY
7583 M:      Qiang Zhao <qiang.zhao@nxp.com>
7584 L:      linuxppc-dev@lists.ozlabs.org
7585 S:      Maintained
7586 F:      drivers/soc/fsl/qe/
7587 F:      include/soc/fsl/*qe*.h
7588 F:      include/soc/fsl/*ucc*.h
7589
7590 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7591 M:      Li Yang <leoyang.li@nxp.com>
7592 L:      netdev@vger.kernel.org
7593 L:      linuxppc-dev@lists.ozlabs.org
7594 S:      Maintained
7595 F:      drivers/net/ethernet/freescale/ucc_geth*
7596
7597 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7598 M:      Zhao Qiang <qiang.zhao@nxp.com>
7599 L:      netdev@vger.kernel.org
7600 L:      linuxppc-dev@lists.ozlabs.org
7601 S:      Maintained
7602 F:      drivers/net/wan/fsl_ucc_hdlc*
7603
7604 FREESCALE QUICC ENGINE UCC UART DRIVER
7605 M:      Timur Tabi <timur@kernel.org>
7606 L:      linuxppc-dev@lists.ozlabs.org
7607 S:      Maintained
7608 F:      drivers/tty/serial/ucc_uart.c
7609
7610 FREESCALE SOC DRIVERS
7611 M:      Li Yang <leoyang.li@nxp.com>
7612 L:      linuxppc-dev@lists.ozlabs.org
7613 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7614 S:      Maintained
7615 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7616 F:      Documentation/devicetree/bindings/soc/fsl/
7617 F:      drivers/soc/fsl/
7618 F:      include/linux/fsl/
7619
7620 FREESCALE SOC FS_ENET DRIVER
7621 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7622 L:      linuxppc-dev@lists.ozlabs.org
7623 L:      netdev@vger.kernel.org
7624 S:      Maintained
7625 F:      drivers/net/ethernet/freescale/fs_enet/
7626 F:      include/linux/fs_enet_pd.h
7627
7628 FREESCALE SOC SOUND DRIVERS
7629 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7630 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7631 R:      Fabio Estevam <festevam@gmail.com>
7632 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7633 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7634 L:      linuxppc-dev@lists.ozlabs.org
7635 S:      Maintained
7636 F:      sound/soc/fsl/fsl*
7637 F:      sound/soc/fsl/imx*
7638 F:      sound/soc/fsl/mpc8610_hpcd.c
7639
7640 FREESCALE USB PERIPHERAL DRIVERS
7641 M:      Li Yang <leoyang.li@nxp.com>
7642 L:      linux-usb@vger.kernel.org
7643 L:      linuxppc-dev@lists.ozlabs.org
7644 S:      Maintained
7645 F:      drivers/usb/gadget/udc/fsl*
7646
7647 FREESCALE USB PHY DRIVER
7648 M:      Ran Wang <ran.wang_1@nxp.com>
7649 L:      linux-usb@vger.kernel.org
7650 L:      linuxppc-dev@lists.ozlabs.org
7651 S:      Maintained
7652 F:      drivers/usb/phy/phy-fsl-usb*
7653
7654 FREEVXFS FILESYSTEM
7655 M:      Christoph Hellwig <hch@infradead.org>
7656 S:      Maintained
7657 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7658 F:      fs/freevxfs/
7659
7660 FREEZER
7661 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7662 M:      Pavel Machek <pavel@ucw.cz>
7663 L:      linux-pm@vger.kernel.org
7664 S:      Supported
7665 F:      Documentation/power/freezing-of-tasks.rst
7666 F:      include/linux/freezer.h
7667 F:      kernel/freezer.c
7668
7669 FRONTSWAP API
7670 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7671 L:      linux-kernel@vger.kernel.org
7672 S:      Maintained
7673 F:      include/linux/frontswap.h
7674 F:      mm/frontswap.c
7675
7676 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7677 M:      David Howells <dhowells@redhat.com>
7678 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7679 S:      Supported
7680 F:      Documentation/filesystems/caching/
7681 F:      fs/fscache/
7682 F:      include/linux/fscache*.h
7683
7684 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7685 M:      Theodore Y. Ts'o <tytso@mit.edu>
7686 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7687 M:      Eric Biggers <ebiggers@kernel.org>
7688 L:      linux-fscrypt@vger.kernel.org
7689 S:      Supported
7690 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7691 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7692 F:      Documentation/filesystems/fscrypt.rst
7693 F:      fs/crypto/
7694 F:      include/linux/fscrypt*.h
7695 F:      include/uapi/linux/fscrypt.h
7696
7697 FSI SUBSYSTEM
7698 M:      Jeremy Kerr <jk@ozlabs.org>
7699 M:      Joel Stanley <joel@jms.id.au>
7700 R:      Alistar Popple <alistair@popple.id.au>
7701 R:      Eddie James <eajames@linux.ibm.com>
7702 L:      linux-fsi@lists.ozlabs.org
7703 S:      Supported
7704 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7706 F:      drivers/fsi/
7707 F:      include/linux/fsi*.h
7708 F:      include/trace/events/fsi*.h
7709
7710 FSI-ATTACHED I2C DRIVER
7711 M:      Eddie James <eajames@linux.ibm.com>
7712 L:      linux-i2c@vger.kernel.org
7713 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7714 S:      Maintained
7715 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7716 F:      drivers/i2c/busses/i2c-fsi.c
7717
7718 FSI-ATTACHED SPI DRIVER
7719 M:      Eddie James <eajames@linux.ibm.com>
7720 L:      linux-spi@vger.kernel.org
7721 S:      Maintained
7722 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7723 F:      drivers/spi/spi-fsi.c
7724
7725 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7726 M:      Jan Kara <jack@suse.cz>
7727 R:      Amir Goldstein <amir73il@gmail.com>
7728 L:      linux-fsdevel@vger.kernel.org
7729 S:      Maintained
7730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7731 F:      fs/notify/
7732 F:      include/linux/fsnotify*.h
7733
7734 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7735 M:      Eric Biggers <ebiggers@kernel.org>
7736 M:      Theodore Y. Ts'o <tytso@mit.edu>
7737 L:      linux-fscrypt@vger.kernel.org
7738 S:      Supported
7739 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7740 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7741 F:      Documentation/filesystems/fsverity.rst
7742 F:      fs/verity/
7743 F:      include/linux/fsverity.h
7744 F:      include/uapi/linux/fsverity.h
7745
7746 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7747 M:      Michael Zaidman <michael.zaidman@gmail.com>
7748 L:      linux-i2c@vger.kernel.org
7749 L:      linux-input@vger.kernel.org
7750 S:      Maintained
7751 F:      drivers/hid/hid-ft260.c
7752
7753 FUJITSU LAPTOP EXTRAS
7754 M:      Jonathan Woithe <jwoithe@just42.net>
7755 L:      platform-driver-x86@vger.kernel.org
7756 S:      Maintained
7757 F:      drivers/platform/x86/fujitsu-laptop.c
7758
7759 FUJITSU M-5MO LS CAMERA ISP DRIVER
7760 M:      Kyungmin Park <kyungmin.park@samsung.com>
7761 M:      Heungjun Kim <riverful.kim@samsung.com>
7762 L:      linux-media@vger.kernel.org
7763 S:      Maintained
7764 F:      drivers/media/i2c/m5mols/
7765 F:      include/media/i2c/m5mols.h
7766
7767 FUJITSU TABLET EXTRAS
7768 M:      Robert Gerlach <khnz@gmx.de>
7769 L:      platform-driver-x86@vger.kernel.org
7770 S:      Maintained
7771 F:      drivers/platform/x86/fujitsu-tablet.c
7772
7773 FUSE: FILESYSTEM IN USERSPACE
7774 M:      Miklos Szeredi <miklos@szeredi.hu>
7775 L:      linux-fsdevel@vger.kernel.org
7776 S:      Maintained
7777 W:      https://github.com/libfuse/
7778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7779 F:      Documentation/filesystems/fuse.rst
7780 F:      fs/fuse/
7781 F:      include/uapi/linux/fuse.h
7782
7783 FUTEX SUBSYSTEM
7784 M:      Thomas Gleixner <tglx@linutronix.de>
7785 M:      Ingo Molnar <mingo@redhat.com>
7786 R:      Peter Zijlstra <peterz@infradead.org>
7787 R:      Darren Hart <dvhart@infradead.org>
7788 R:      Davidlohr Bueso <dave@stgolabs.net>
7789 L:      linux-kernel@vger.kernel.org
7790 S:      Maintained
7791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7792 F:      Documentation/locking/*futex*
7793 F:      include/asm-generic/futex.h
7794 F:      include/linux/futex.h
7795 F:      include/uapi/linux/futex.h
7796 F:      kernel/futex/*
7797 F:      tools/perf/bench/futex*
7798 F:      tools/testing/selftests/futex/
7799
7800 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7801 M:      Tim Harvey <tharvey@gateworks.com>
7802 M:      Robert Jones <rjones@gateworks.com>
7803 S:      Maintained
7804 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7805 F:      drivers/mfd/gateworks-gsc.c
7806 F:      include/linux/mfd/gsc.h
7807 F:      Documentation/hwmon/gsc-hwmon.rst
7808 F:      drivers/hwmon/gsc-hwmon.c
7809 F:      include/linux/platform_data/gsc_hwmon.h
7810
7811 GCC PLUGINS
7812 M:      Kees Cook <keescook@chromium.org>
7813 L:      linux-hardening@vger.kernel.org
7814 S:      Maintained
7815 F:      Documentation/kbuild/gcc-plugins.rst
7816 F:      scripts/Makefile.gcc-plugins
7817 F:      scripts/gcc-plugins/
7818
7819 GCOV BASED KERNEL PROFILING
7820 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7821 S:      Maintained
7822 F:      Documentation/dev-tools/gcov.rst
7823 F:      kernel/gcov/
7824
7825 GDB KERNEL DEBUGGING HELPER SCRIPTS
7826 M:      Jan Kiszka <jan.kiszka@siemens.com>
7827 M:      Kieran Bingham <kbingham@kernel.org>
7828 S:      Supported
7829 F:      scripts/gdb/
7830
7831 GEMINI CRYPTO DRIVER
7832 M:      Corentin Labbe <clabbe@baylibre.com>
7833 L:      linux-crypto@vger.kernel.org
7834 S:      Maintained
7835 F:      drivers/crypto/gemini/
7836
7837 GEMTEK FM RADIO RECEIVER DRIVER
7838 M:      Hans Verkuil <hverkuil@xs4all.nl>
7839 L:      linux-media@vger.kernel.org
7840 S:      Maintained
7841 W:      https://linuxtv.org
7842 T:      git git://linuxtv.org/media_tree.git
7843 F:      drivers/media/radio/radio-gemtek*
7844
7845 GENERIC ARCHITECTURE TOPOLOGY
7846 M:      Sudeep Holla <sudeep.holla@arm.com>
7847 L:      linux-kernel@vger.kernel.org
7848 S:      Maintained
7849 F:      drivers/base/arch_topology.c
7850 F:      include/linux/arch_topology.h
7851
7852 GENERIC ENTRY CODE
7853 M:      Thomas Gleixner <tglx@linutronix.de>
7854 M:      Peter Zijlstra <peterz@infradead.org>
7855 M:      Andy Lutomirski <luto@kernel.org>
7856 L:      linux-kernel@vger.kernel.org
7857 S:      Maintained
7858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7859 F:      include/linux/entry-common.h
7860 F:      include/linux/entry-kvm.h
7861 F:      kernel/entry/
7862
7863 GENERIC GPIO I2C DRIVER
7864 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7865 S:      Supported
7866 F:      drivers/i2c/busses/i2c-gpio.c
7867 F:      include/linux/platform_data/i2c-gpio.h
7868
7869 GENERIC GPIO I2C MULTIPLEXER DRIVER
7870 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7871 L:      linux-i2c@vger.kernel.org
7872 S:      Supported
7873 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7874 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7875 F:      include/linux/platform_data/i2c-mux-gpio.h
7876
7877 GENERIC HDLC (WAN) DRIVERS
7878 M:      Krzysztof Halasa <khc@pm.waw.pl>
7879 S:      Maintained
7880 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7881 F:      drivers/net/wan/c101.c
7882 F:      drivers/net/wan/hd6457*
7883 F:      drivers/net/wan/hdlc*
7884 F:      drivers/net/wan/n2.c
7885 F:      drivers/net/wan/pc300too.c
7886 F:      drivers/net/wan/pci200syn.c
7887 F:      drivers/net/wan/wanxl*
7888
7889 GENERIC INCLUDE/ASM HEADER FILES
7890 M:      Arnd Bergmann <arnd@arndb.de>
7891 L:      linux-arch@vger.kernel.org
7892 S:      Maintained
7893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7894 F:      include/asm-generic/
7895 F:      include/uapi/asm-generic/
7896
7897 GENERIC PHY FRAMEWORK
7898 M:      Kishon Vijay Abraham I <kishon@ti.com>
7899 M:      Vinod Koul <vkoul@kernel.org>
7900 L:      linux-phy@lists.infradead.org
7901 S:      Supported
7902 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7904 F:      Documentation/devicetree/bindings/phy/
7905 F:      drivers/phy/
7906 F:      include/linux/phy/
7907
7908 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7909 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7910 S:      Supported
7911 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7912
7913 GENERIC PM DOMAINS
7914 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7915 M:      Kevin Hilman <khilman@kernel.org>
7916 M:      Ulf Hansson <ulf.hansson@linaro.org>
7917 L:      linux-pm@vger.kernel.org
7918 S:      Supported
7919 F:      Documentation/devicetree/bindings/power/power?domain*
7920 F:      drivers/base/power/domain*.c
7921 F:      include/linux/pm_domain.h
7922
7923 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7924 M:      Eugen Hristev <eugen.hristev@microchip.com>
7925 L:      linux-input@vger.kernel.org
7926 S:      Maintained
7927 F:      drivers/input/touchscreen/resistive-adc-touch.c
7928
7929 GENERIC STRING LIBRARY
7930 R:      Andy Shevchenko <andy@kernel.org>
7931 S:      Maintained
7932 F:      lib/string.c
7933 F:      lib/string_helpers.c
7934 F:      lib/test_string.c
7935 F:      lib/test-string_helpers.c
7936
7937 GENERIC UIO DRIVER FOR PCI DEVICES
7938 M:      "Michael S. Tsirkin" <mst@redhat.com>
7939 L:      kvm@vger.kernel.org
7940 S:      Supported
7941 F:      drivers/uio/uio_pci_generic.c
7942
7943 GENERIC VDSO LIBRARY
7944 M:      Andy Lutomirski <luto@kernel.org>
7945 M:      Thomas Gleixner <tglx@linutronix.de>
7946 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7947 L:      linux-kernel@vger.kernel.org
7948 S:      Maintained
7949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7950 F:      include/asm-generic/vdso/vsyscall.h
7951 F:      include/vdso/
7952 F:      kernel/time/vsyscall.c
7953 F:      lib/vdso/
7954
7955 GENWQE (IBM Generic Workqueue Card)
7956 M:      Frank Haverkamp <haver@linux.ibm.com>
7957 S:      Supported
7958 F:      drivers/misc/genwqe/
7959
7960 GET_MAINTAINER SCRIPT
7961 M:      Joe Perches <joe@perches.com>
7962 S:      Maintained
7963 F:      scripts/get_maintainer.pl
7964
7965 GFS2 FILE SYSTEM
7966 M:      Bob Peterson <rpeterso@redhat.com>
7967 M:      Andreas Gruenbacher <agruenba@redhat.com>
7968 L:      cluster-devel@redhat.com
7969 S:      Supported
7970 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7972 F:      Documentation/filesystems/gfs2*
7973 F:      fs/gfs2/
7974 F:      include/uapi/linux/gfs2_ondisk.h
7975
7976 GIGABYTE WMI DRIVER
7977 M:      Thomas Weißschuh <thomas@weissschuh.net>
7978 L:      platform-driver-x86@vger.kernel.org
7979 S:      Maintained
7980 F:      drivers/platform/x86/gigabyte-wmi.c
7981
7982 GNSS SUBSYSTEM
7983 M:      Johan Hovold <johan@kernel.org>
7984 S:      Maintained
7985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7986 F:      Documentation/ABI/testing/sysfs-class-gnss
7987 F:      Documentation/devicetree/bindings/gnss/
7988 F:      drivers/gnss/
7989 F:      include/linux/gnss.h
7990
7991 GO7007 MPEG CODEC
7992 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7993 L:      linux-media@vger.kernel.org
7994 S:      Maintained
7995 F:      drivers/media/usb/go7007/
7996
7997 GOODIX TOUCHSCREEN
7998 M:      Bastien Nocera <hadess@hadess.net>
7999 M:      Hans de Goede <hdegoede@redhat.com>
8000 L:      linux-input@vger.kernel.org
8001 S:      Maintained
8002 F:      drivers/input/touchscreen/goodix*
8003
8004 GOOGLE ETHERNET DRIVERS
8005 M:      Jeroen de Borst <jeroendb@google.com>
8006 R:      Catherine Sullivan <csully@google.com>
8007 R:      David Awogbemila <awogbemila@google.com>
8008 L:      netdev@vger.kernel.org
8009 S:      Supported
8010 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8011 F:      drivers/net/ethernet/google
8012
8013 GPD POCKET FAN DRIVER
8014 M:      Hans de Goede <hdegoede@redhat.com>
8015 L:      platform-driver-x86@vger.kernel.org
8016 S:      Maintained
8017 F:      drivers/platform/x86/gpd-pocket-fan.c
8018
8019 GPIO ACPI SUPPORT
8020 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8021 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8022 L:      linux-gpio@vger.kernel.org
8023 L:      linux-acpi@vger.kernel.org
8024 S:      Maintained
8025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8026 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8027 F:      drivers/gpio/gpiolib-acpi.c
8028 F:      drivers/gpio/gpiolib-acpi.h
8029
8030 GPIO AGGREGATOR
8031 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8032 L:      linux-gpio@vger.kernel.org
8033 S:      Supported
8034 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8035 F:      drivers/gpio/gpio-aggregator.c
8036
8037 GPIO IR Transmitter
8038 M:      Sean Young <sean@mess.org>
8039 L:      linux-media@vger.kernel.org
8040 S:      Maintained
8041 F:      drivers/media/rc/gpio-ir-tx.c
8042
8043 GPIO MOCKUP DRIVER
8044 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8045 L:      linux-gpio@vger.kernel.org
8046 S:      Maintained
8047 F:      drivers/gpio/gpio-mockup.c
8048 F:      tools/testing/selftests/gpio/
8049
8050 GPIO REGMAP
8051 R:      Michael Walle <michael@walle.cc>
8052 S:      Maintained
8053 F:      drivers/gpio/gpio-regmap.c
8054 F:      include/linux/gpio/regmap.h
8055
8056 GPIO SUBSYSTEM
8057 M:      Linus Walleij <linus.walleij@linaro.org>
8058 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8059 L:      linux-gpio@vger.kernel.org
8060 S:      Maintained
8061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8062 F:      Documentation/ABI/obsolete/sysfs-gpio
8063 F:      Documentation/ABI/testing/gpio-cdev
8064 F:      Documentation/admin-guide/gpio/
8065 F:      Documentation/devicetree/bindings/gpio/
8066 F:      Documentation/driver-api/gpio/
8067 F:      drivers/gpio/
8068 F:      include/asm-generic/gpio.h
8069 F:      include/linux/gpio.h
8070 F:      include/linux/gpio/
8071 F:      include/linux/of_gpio.h
8072 F:      include/uapi/linux/gpio.h
8073 F:      tools/gpio/
8074
8075 GRE DEMULTIPLEXER DRIVER
8076 M:      Dmitry Kozlov <xeb@mail.ru>
8077 L:      netdev@vger.kernel.org
8078 S:      Maintained
8079 F:      include/net/gre.h
8080 F:      net/ipv4/gre_demux.c
8081 F:      net/ipv4/gre_offload.c
8082
8083 GRETH 10/100/1G Ethernet MAC device driver
8084 M:      Andreas Larsson <andreas@gaisler.com>
8085 L:      netdev@vger.kernel.org
8086 S:      Maintained
8087 F:      drivers/net/ethernet/aeroflex/
8088
8089 GREYBUS AUDIO PROTOCOLS DRIVERS
8090 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8091 M:      Mark Greer <mgreer@animalcreek.com>
8092 S:      Maintained
8093 F:      drivers/staging/greybus/audio_apbridgea.c
8094 F:      drivers/staging/greybus/audio_apbridgea.h
8095 F:      drivers/staging/greybus/audio_codec.c
8096 F:      drivers/staging/greybus/audio_codec.h
8097 F:      drivers/staging/greybus/audio_gb.c
8098 F:      drivers/staging/greybus/audio_manager.c
8099 F:      drivers/staging/greybus/audio_manager.h
8100 F:      drivers/staging/greybus/audio_manager_module.c
8101 F:      drivers/staging/greybus/audio_manager_private.h
8102 F:      drivers/staging/greybus/audio_manager_sysfs.c
8103 F:      drivers/staging/greybus/audio_module.c
8104 F:      drivers/staging/greybus/audio_topology.c
8105
8106 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8107 M:      Viresh Kumar <vireshk@kernel.org>
8108 S:      Maintained
8109 F:      drivers/staging/greybus/authentication.c
8110 F:      drivers/staging/greybus/bootrom.c
8111 F:      drivers/staging/greybus/firmware.h
8112 F:      drivers/staging/greybus/fw-core.c
8113 F:      drivers/staging/greybus/fw-download.c
8114 F:      drivers/staging/greybus/fw-management.c
8115 F:      drivers/staging/greybus/greybus_authentication.h
8116 F:      drivers/staging/greybus/greybus_firmware.h
8117 F:      drivers/staging/greybus/hid.c
8118 F:      drivers/staging/greybus/i2c.c
8119 F:      drivers/staging/greybus/spi.c
8120 F:      drivers/staging/greybus/spilib.c
8121 F:      drivers/staging/greybus/spilib.h
8122
8123 GREYBUS LOOPBACK DRIVER
8124 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8125 S:      Maintained
8126 F:      drivers/staging/greybus/loopback.c
8127
8128 GREYBUS PLATFORM DRIVERS
8129 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8130 S:      Maintained
8131 F:      drivers/staging/greybus/arche-apb-ctrl.c
8132 F:      drivers/staging/greybus/arche-platform.c
8133 F:      drivers/staging/greybus/arche_platform.h
8134
8135 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8136 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8137 S:      Maintained
8138 F:      drivers/staging/greybus/gpio.c
8139 F:      drivers/staging/greybus/light.c
8140 F:      drivers/staging/greybus/power_supply.c
8141 F:      drivers/staging/greybus/sdio.c
8142 F:      drivers/staging/greybus/spi.c
8143 F:      drivers/staging/greybus/spilib.c
8144
8145 GREYBUS SUBSYSTEM
8146 M:      Johan Hovold <johan@kernel.org>
8147 M:      Alex Elder <elder@kernel.org>
8148 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8149 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8150 S:      Maintained
8151 F:      drivers/greybus/
8152 F:      drivers/staging/greybus/
8153 F:      include/linux/greybus.h
8154 F:      include/linux/greybus/
8155
8156 GREYBUS UART PROTOCOLS DRIVERS
8157 M:      David Lin <dtwlin@gmail.com>
8158 S:      Maintained
8159 F:      drivers/staging/greybus/log.c
8160 F:      drivers/staging/greybus/uart.c
8161
8162 GS1662 VIDEO SERIALIZER
8163 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8164 L:      linux-media@vger.kernel.org
8165 S:      Maintained
8166 T:      git git://linuxtv.org/media_tree.git
8167 F:      drivers/media/spi/gs1662.c
8168
8169 GSPCA FINEPIX SUBDRIVER
8170 M:      Frank Zago <frank@zago.net>
8171 L:      linux-media@vger.kernel.org
8172 S:      Maintained
8173 T:      git git://linuxtv.org/media_tree.git
8174 F:      drivers/media/usb/gspca/finepix.c
8175
8176 GSPCA GL860 SUBDRIVER
8177 M:      Olivier Lorin <o.lorin@laposte.net>
8178 L:      linux-media@vger.kernel.org
8179 S:      Maintained
8180 T:      git git://linuxtv.org/media_tree.git
8181 F:      drivers/media/usb/gspca/gl860/
8182
8183 GSPCA M5602 SUBDRIVER
8184 M:      Erik Andren <erik.andren@gmail.com>
8185 L:      linux-media@vger.kernel.org
8186 S:      Maintained
8187 T:      git git://linuxtv.org/media_tree.git
8188 F:      drivers/media/usb/gspca/m5602/
8189
8190 GSPCA PAC207 SONIXB SUBDRIVER
8191 M:      Hans Verkuil <hverkuil@xs4all.nl>
8192 L:      linux-media@vger.kernel.org
8193 S:      Odd Fixes
8194 T:      git git://linuxtv.org/media_tree.git
8195 F:      drivers/media/usb/gspca/pac207.c
8196
8197 GSPCA SN9C20X SUBDRIVER
8198 M:      Brian Johnson <brijohn@gmail.com>
8199 L:      linux-media@vger.kernel.org
8200 S:      Maintained
8201 T:      git git://linuxtv.org/media_tree.git
8202 F:      drivers/media/usb/gspca/sn9c20x.c
8203
8204 GSPCA T613 SUBDRIVER
8205 M:      Leandro Costantino <lcostantino@gmail.com>
8206 L:      linux-media@vger.kernel.org
8207 S:      Maintained
8208 T:      git git://linuxtv.org/media_tree.git
8209 F:      drivers/media/usb/gspca/t613.c
8210
8211 GSPCA USB WEBCAM DRIVER
8212 M:      Hans Verkuil <hverkuil@xs4all.nl>
8213 L:      linux-media@vger.kernel.org
8214 S:      Odd Fixes
8215 T:      git git://linuxtv.org/media_tree.git
8216 F:      drivers/media/usb/gspca/
8217
8218 GTP (GPRS Tunneling Protocol)
8219 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8220 M:      Harald Welte <laforge@gnumonks.org>
8221 L:      osmocom-net-gprs@lists.osmocom.org
8222 S:      Maintained
8223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8224 F:      drivers/net/gtp.c
8225
8226 GUID PARTITION TABLE (GPT)
8227 M:      Davidlohr Bueso <dave@stgolabs.net>
8228 L:      linux-efi@vger.kernel.org
8229 S:      Maintained
8230 F:      block/partitions/efi.*
8231
8232 H8/300 ARCHITECTURE
8233 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8234 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8235 S:      Maintained
8236 W:      http://uclinux-h8.sourceforge.jp
8237 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8238 F:      arch/h8300/
8239 F:      drivers/clk/h8300/
8240 F:      drivers/clocksource/h8300_*.c
8241 F:      drivers/irqchip/irq-renesas-h8*.c
8242
8243 HABANALABS PCI DRIVER
8244 M:      Oded Gabbay <ogabbay@kernel.org>
8245 S:      Supported
8246 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8247 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8248 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8249 F:      drivers/misc/habanalabs/
8250 F:      include/uapi/misc/habanalabs.h
8251
8252 HACKRF MEDIA DRIVER
8253 M:      Antti Palosaari <crope@iki.fi>
8254 L:      linux-media@vger.kernel.org
8255 S:      Maintained
8256 W:      https://linuxtv.org
8257 W:      http://palosaari.fi/linux/
8258 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8259 T:      git git://linuxtv.org/anttip/media_tree.git
8260 F:      drivers/media/usb/hackrf/
8261
8262 HANTRO VPU CODEC DRIVER
8263 M:      Ezequiel Garcia <ezequiel@collabora.com>
8264 M:      Philipp Zabel <p.zabel@pengutronix.de>
8265 L:      linux-media@vger.kernel.org
8266 L:      linux-rockchip@lists.infradead.org
8267 S:      Maintained
8268 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8269 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8270 F:      drivers/staging/media/hantro/
8271
8272 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8273 M:      Frank Seidel <frank@f-seidel.de>
8274 L:      platform-driver-x86@vger.kernel.org
8275 S:      Maintained
8276 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8277 F:      drivers/platform/x86/hdaps.c
8278
8279 HARDWARE MONITORING
8280 M:      Jean Delvare <jdelvare@suse.com>
8281 M:      Guenter Roeck <linux@roeck-us.net>
8282 L:      linux-hwmon@vger.kernel.org
8283 S:      Maintained
8284 W:      http://hwmon.wiki.kernel.org/
8285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8286 F:      Documentation/devicetree/bindings/hwmon/
8287 F:      Documentation/hwmon/
8288 F:      drivers/hwmon/
8289 F:      include/linux/hwmon*.h
8290 F:      include/trace/events/hwmon*.h
8291 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8292
8293 HARDWARE RANDOM NUMBER GENERATOR CORE
8294 M:      Matt Mackall <mpm@selenic.com>
8295 M:      Herbert Xu <herbert@gondor.apana.org.au>
8296 L:      linux-crypto@vger.kernel.org
8297 S:      Odd fixes
8298 F:      Documentation/admin-guide/hw_random.rst
8299 F:      Documentation/devicetree/bindings/rng/
8300 F:      drivers/char/hw_random/
8301 F:      include/linux/hw_random.h
8302
8303 HARDWARE SPINLOCK CORE
8304 M:      Ohad Ben-Cohen <ohad@wizery.com>
8305 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8306 R:      Baolin Wang <baolin.wang7@gmail.com>
8307 L:      linux-remoteproc@vger.kernel.org
8308 S:      Maintained
8309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8310 F:      Documentation/devicetree/bindings/hwlock/
8311 F:      Documentation/locking/hwspinlock.rst
8312 F:      drivers/hwspinlock/
8313 F:      include/linux/hwspinlock.h
8314
8315 HARDWARE TRACING FACILITIES
8316 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8317 S:      Maintained
8318 F:      drivers/hwtracing/
8319
8320 HARMONY SOUND DRIVER
8321 L:      linux-parisc@vger.kernel.org
8322 S:      Maintained
8323 F:      sound/parisc/harmony.*
8324
8325 HDPVR USB VIDEO ENCODER DRIVER
8326 M:      Hans Verkuil <hverkuil@xs4all.nl>
8327 L:      linux-media@vger.kernel.org
8328 S:      Odd Fixes
8329 W:      https://linuxtv.org
8330 T:      git git://linuxtv.org/media_tree.git
8331 F:      drivers/media/usb/hdpvr/
8332
8333 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8334 M:      Matt Hsiao <matt.hsiao@hpe.com>
8335 S:      Supported
8336 F:      drivers/misc/hpilo.[ch]
8337
8338 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8339 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8340 S:      Supported
8341 F:      Documentation/watchdog/hpwdt.rst
8342 F:      drivers/watchdog/hpwdt.c
8343
8344 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8345 M:      Don Brace <don.brace@microchip.com>
8346 L:      storagedev@microchip.com
8347 L:      linux-scsi@vger.kernel.org
8348 S:      Supported
8349 F:      Documentation/scsi/hpsa.rst
8350 F:      drivers/scsi/hpsa*.[ch]
8351 F:      include/linux/cciss*.h
8352 F:      include/uapi/linux/cciss*.h
8353
8354 HFI1 DRIVER
8355 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8356 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8357 L:      linux-rdma@vger.kernel.org
8358 S:      Supported
8359 F:      drivers/infiniband/hw/hfi1
8360
8361 HFS FILESYSTEM
8362 L:      linux-fsdevel@vger.kernel.org
8363 S:      Orphan
8364 F:      Documentation/filesystems/hfs.rst
8365 F:      fs/hfs/
8366
8367 HFSPLUS FILESYSTEM
8368 L:      linux-fsdevel@vger.kernel.org
8369 S:      Orphan
8370 F:      Documentation/filesystems/hfsplus.rst
8371 F:      fs/hfsplus/
8372
8373 HGA FRAMEBUFFER DRIVER
8374 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8375 L:      linux-nvidia@lists.surfsouth.com
8376 S:      Maintained
8377 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8378 F:      drivers/video/fbdev/hgafb.c
8379
8380 HIBERNATION (aka Software Suspend, aka swsusp)
8381 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8382 M:      Pavel Machek <pavel@ucw.cz>
8383 L:      linux-pm@vger.kernel.org
8384 S:      Supported
8385 B:      https://bugzilla.kernel.org
8386 F:      arch/*/include/asm/suspend*.h
8387 F:      arch/x86/power/
8388 F:      drivers/base/power/
8389 F:      include/linux/freezer.h
8390 F:      include/linux/pm.h
8391 F:      include/linux/suspend.h
8392 F:      kernel/power/
8393
8394 HID CORE LAYER
8395 M:      Jiri Kosina <jikos@kernel.org>
8396 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8397 L:      linux-input@vger.kernel.org
8398 S:      Maintained
8399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8400 F:      drivers/hid/
8401 F:      include/linux/hid*
8402 F:      include/uapi/linux/hid*
8403
8404 HID PLAYSTATION DRIVER
8405 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8406 L:      linux-input@vger.kernel.org
8407 S:      Supported
8408 F:      drivers/hid/hid-playstation.c
8409
8410 HID SENSOR HUB DRIVERS
8411 M:      Jiri Kosina <jikos@kernel.org>
8412 M:      Jonathan Cameron <jic23@kernel.org>
8413 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8414 L:      linux-input@vger.kernel.org
8415 L:      linux-iio@vger.kernel.org
8416 S:      Maintained
8417 F:      Documentation/hid/hid-sensor*
8418 F:      drivers/hid/hid-sensor-*
8419 F:      drivers/iio/*/hid-*
8420 F:      include/linux/hid-sensor-*
8421
8422 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8423 M:      Thomas Gleixner <tglx@linutronix.de>
8424 L:      linux-kernel@vger.kernel.org
8425 S:      Maintained
8426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8427 F:      Documentation/timers/
8428 F:      include/linux/clockchips.h
8429 F:      include/linux/hrtimer.h
8430 F:      kernel/time/clockevents.c
8431 F:      kernel/time/hrtimer.c
8432 F:      kernel/time/timer_*.c
8433
8434 HIGH-SPEED SCC DRIVER FOR AX.25
8435 L:      linux-hams@vger.kernel.org
8436 S:      Orphan
8437 F:      drivers/net/hamradio/dmascc.c
8438 F:      drivers/net/hamradio/scc.c
8439
8440 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8441 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8442 S:      Supported
8443 W:      http://www.highpoint-tech.com
8444 F:      Documentation/scsi/hptiop.rst
8445 F:      drivers/scsi/hptiop.c
8446
8447 HIPPI
8448 M:      Jes Sorensen <jes@trained-monkey.org>
8449 L:      linux-hippi@sunsite.dk
8450 S:      Maintained
8451 F:      drivers/net/hippi/
8452 F:      include/linux/hippidevice.h
8453 F:      include/uapi/linux/if_hippi.h
8454 F:      net/802/hippi.c
8455
8456 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8457 M:      Kurt Kanzenbach <kurt@linutronix.de>
8458 L:      netdev@vger.kernel.org
8459 S:      Maintained
8460 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8461 F:      drivers/net/dsa/hirschmann/*
8462 F:      include/linux/platform_data/hirschmann-hellcreek.h
8463 F:      net/dsa/tag_hellcreek.c
8464
8465 HISILICON DMA DRIVER
8466 M:      Zhou Wang <wangzhou1@hisilicon.com>
8467 L:      dmaengine@vger.kernel.org
8468 S:      Maintained
8469 F:      drivers/dma/hisi_dma.c
8470
8471 HISILICON GPIO DRIVER
8472 M:      Luo Jiaxing <luojiaxing@huawei.com>
8473 L:      linux-gpio@vger.kernel.org
8474 S:      Maintained
8475 F:      drivers/gpio/gpio-hisi.c
8476
8477 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8478 M:      Zaibo Xu <xuzaibo@huawei.com>
8479 L:      linux-crypto@vger.kernel.org
8480 S:      Maintained
8481 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8482 F:      drivers/crypto/hisilicon/hpre/hpre.h
8483 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8484 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8485
8486 HISILICON I2C CONTROLLER DRIVER
8487 M:      Yicong Yang <yangyicong@hisilicon.com>
8488 L:      linux-i2c@vger.kernel.org
8489 S:      Maintained
8490 W:      https://www.hisilicon.com
8491 F:      drivers/i2c/busses/i2c-hisi.c
8492
8493 HISILICON LPC BUS DRIVER
8494 M:      john.garry@huawei.com
8495 S:      Maintained
8496 W:      http://www.hisilicon.com
8497 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8498 F:      drivers/bus/hisi_lpc.c
8499
8500 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8501 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8502 M:      Salil Mehta <salil.mehta@huawei.com>
8503 L:      netdev@vger.kernel.org
8504 S:      Maintained
8505 W:      http://www.hisilicon.com
8506 F:      drivers/net/ethernet/hisilicon/hns3/
8507
8508 HISILICON NETWORK SUBSYSTEM DRIVER
8509 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8510 M:      Salil Mehta <salil.mehta@huawei.com>
8511 L:      netdev@vger.kernel.org
8512 S:      Maintained
8513 W:      http://www.hisilicon.com
8514 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8515 F:      drivers/net/ethernet/hisilicon/
8516
8517 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8518 M:      John Stultz <john.stultz@linaro.org>
8519 L:      linux-kernel@vger.kernel.org
8520 S:      Maintained
8521 F:      drivers/misc/hisi_hikey_usb.c
8522 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8523
8524 HISILICON PMU DRIVER
8525 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8526 S:      Supported
8527 W:      http://www.hisilicon.com
8528 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8529 F:      drivers/perf/hisilicon
8530
8531 HISILICON QM AND ZIP Controller DRIVER
8532 M:      Zhou Wang <wangzhou1@hisilicon.com>
8533 L:      linux-crypto@vger.kernel.org
8534 S:      Maintained
8535 F:      Documentation/ABI/testing/debugfs-hisi-zip
8536 F:      drivers/crypto/hisilicon/qm.c
8537 F:      drivers/crypto/hisilicon/qm.h
8538 F:      drivers/crypto/hisilicon/sgl.c
8539 F:      drivers/crypto/hisilicon/zip/
8540
8541 HISILICON ROCE DRIVER
8542 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8543 M:      Weihang Li <liweihang@huawei.com>
8544 L:      linux-rdma@vger.kernel.org
8545 S:      Maintained
8546 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8547 F:      drivers/infiniband/hw/hns/
8548
8549 HISILICON SAS Controller
8550 M:      John Garry <john.garry@huawei.com>
8551 S:      Supported
8552 W:      http://www.hisilicon.com
8553 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8554 F:      drivers/scsi/hisi_sas/
8555
8556 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8557 M:      Zaibo Xu <xuzaibo@huawei.com>
8558 L:      linux-crypto@vger.kernel.org
8559 S:      Maintained
8560 F:      Documentation/ABI/testing/debugfs-hisi-sec
8561 F:      drivers/crypto/hisilicon/sec2/sec.h
8562 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8563 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8564 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8565
8566 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8567 M:      Jay Fang <f.fangjian@huawei.com>
8568 L:      linux-spi@vger.kernel.org
8569 S:      Maintained
8570 W:      http://www.hisilicon.com
8571 F:      drivers/spi/spi-hisi-kunpeng.c
8572
8573 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8574 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8575 L:      linux-kernel@vger.kernel.org
8576 S:      Maintained
8577 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8578 F:      drivers/spmi/hisi-spmi-controller.c
8579
8580 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8581 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8582 L:      linux-kernel@vger.kernel.org
8583 S:      Maintained
8584 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8585 F:      drivers/mfd/hi6421-spmi-pmic.c
8586
8587 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8588 M:      Zaibo Xu <xuzaibo@huawei.com>
8589 S:      Maintained
8590 F:      drivers/crypto/hisilicon/trng/trng.c
8591
8592 HISILICON V3XX SPI NOR FLASH Controller Driver
8593 M:      John Garry <john.garry@huawei.com>
8594 S:      Maintained
8595 W:      http://www.hisilicon.com
8596 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8597
8598 HMM - Heterogeneous Memory Management
8599 M:      Jérôme Glisse <jglisse@redhat.com>
8600 L:      linux-mm@kvack.org
8601 S:      Maintained
8602 F:      Documentation/vm/hmm.rst
8603 F:      include/linux/hmm*
8604 F:      lib/test_hmm*
8605 F:      mm/hmm*
8606 F:      tools/testing/selftests/vm/*hmm*
8607
8608 HOST AP DRIVER
8609 M:      Jouni Malinen <j@w1.fi>
8610 L:      linux-wireless@vger.kernel.org
8611 S:      Obsolete
8612 W:      http://w1.fi/hostap-driver.html
8613 F:      drivers/net/wireless/intersil/hostap/
8614
8615 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8616 L:      platform-driver-x86@vger.kernel.org
8617 S:      Orphan
8618 F:      drivers/platform/x86/tc1100-wmi.c
8619
8620 HPET:   High Precision Event Timers driver
8621 M:      Clemens Ladisch <clemens@ladisch.de>
8622 S:      Maintained
8623 F:      Documentation/timers/hpet.rst
8624 F:      drivers/char/hpet.c
8625 F:      include/linux/hpet.h
8626 F:      include/uapi/linux/hpet.h
8627
8628 HPET:   x86
8629 S:      Orphan
8630 F:      arch/x86/include/asm/hpet.h
8631 F:      arch/x86/kernel/hpet.c
8632
8633 HPFS FILESYSTEM
8634 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8635 S:      Maintained
8636 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8637 F:      fs/hpfs/
8638
8639 HSI SUBSYSTEM
8640 M:      Sebastian Reichel <sre@kernel.org>
8641 S:      Maintained
8642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8643 F:      Documentation/ABI/testing/sysfs-bus-hsi
8644 F:      Documentation/driver-api/hsi.rst
8645 F:      drivers/hsi/
8646 F:      include/linux/hsi/
8647 F:      include/uapi/linux/hsi/
8648
8649 HSO 3G MODEM DRIVER
8650 L:      linux-usb@vger.kernel.org
8651 S:      Orphan
8652 F:      drivers/net/usb/hso.c
8653
8654 HSR NETWORK PROTOCOL
8655 L:      netdev@vger.kernel.org
8656 S:      Orphan
8657 F:      net/hsr/
8658
8659 HT16K33 LED CONTROLLER DRIVER
8660 M:      Robin van der Gracht <robin@protonic.nl>
8661 S:      Maintained
8662 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8663 F:      drivers/auxdisplay/ht16k33.c
8664
8665 HTCPEN TOUCHSCREEN DRIVER
8666 M:      Pau Oliva Fora <pof@eslack.org>
8667 L:      linux-input@vger.kernel.org
8668 S:      Maintained
8669 F:      drivers/input/touchscreen/htcpen.c
8670
8671 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8672 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8673 L:      linux-iio@vger.kernel.org
8674 S:      Maintained
8675 W:      http://www.st.com/
8676 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8677 F:      drivers/iio/humidity/hts221*
8678
8679 HUAWEI ETHERNET DRIVER
8680 L:      netdev@vger.kernel.org
8681 S:      Orphan
8682 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8683 F:      drivers/net/ethernet/huawei/hinic/
8684
8685 HUGETLB FILESYSTEM
8686 M:      Mike Kravetz <mike.kravetz@oracle.com>
8687 L:      linux-mm@kvack.org
8688 S:      Maintained
8689 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8690 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8691 F:      Documentation/vm/hugetlbfs_reserv.rst
8692 F:      fs/hugetlbfs/
8693 F:      include/linux/hugetlb.h
8694 F:      mm/hugetlb.c
8695
8696 HVA ST MEDIA DRIVER
8697 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8698 L:      linux-media@vger.kernel.org
8699 S:      Supported
8700 W:      https://linuxtv.org
8701 T:      git git://linuxtv.org/media_tree.git
8702 F:      drivers/media/platform/sti/hva
8703
8704 HWPOISON MEMORY FAILURE HANDLING
8705 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8706 L:      linux-mm@kvack.org
8707 S:      Maintained
8708 F:      mm/hwpoison-inject.c
8709 F:      mm/memory-failure.c
8710
8711 HYCON HY46XX TOUCHSCREEN SUPPORT
8712 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8713 L:      linux-input@vger.kernel.org
8714 S:      Maintained
8715 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8716 F:      drivers/input/touchscreen/hycon-hy46xx.c
8717
8718 HYGON PROCESSOR SUPPORT
8719 M:      Pu Wen <puwen@hygon.cn>
8720 L:      linux-kernel@vger.kernel.org
8721 S:      Maintained
8722 F:      arch/x86/kernel/cpu/hygon.c
8723
8724 HYNIX HI556 SENSOR DRIVER
8725 M:      Shawn Tu <shawnx.tu@intel.com>
8726 L:      linux-media@vger.kernel.org
8727 S:      Maintained
8728 T:      git git://linuxtv.org/media_tree.git
8729 F:      drivers/media/i2c/hi556.c
8730
8731 Hyper-V/Azure CORE AND DRIVERS
8732 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8733 M:      Haiyang Zhang <haiyangz@microsoft.com>
8734 M:      Stephen Hemminger <sthemmin@microsoft.com>
8735 M:      Wei Liu <wei.liu@kernel.org>
8736 M:      Dexuan Cui <decui@microsoft.com>
8737 L:      linux-hyperv@vger.kernel.org
8738 S:      Supported
8739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8740 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8741 F:      Documentation/ABI/testing/debugfs-hyperv
8742 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8743 F:      arch/arm64/hyperv
8744 F:      arch/arm64/include/asm/hyperv-tlfs.h
8745 F:      arch/arm64/include/asm/mshyperv.h
8746 F:      arch/x86/hyperv
8747 F:      arch/x86/include/asm/hyperv-tlfs.h
8748 F:      arch/x86/include/asm/mshyperv.h
8749 F:      arch/x86/include/asm/trace/hyperv.h
8750 F:      arch/x86/kernel/cpu/mshyperv.c
8751 F:      drivers/clocksource/hyperv_timer.c
8752 F:      drivers/hid/hid-hyperv.c
8753 F:      drivers/hv/
8754 F:      drivers/input/serio/hyperv-keyboard.c
8755 F:      drivers/iommu/hyperv-iommu.c
8756 F:      drivers/net/ethernet/microsoft/
8757 F:      drivers/net/hyperv/
8758 F:      drivers/pci/controller/pci-hyperv-intf.c
8759 F:      drivers/pci/controller/pci-hyperv.c
8760 F:      drivers/scsi/storvsc_drv.c
8761 F:      drivers/uio/uio_hv_generic.c
8762 F:      drivers/video/fbdev/hyperv_fb.c
8763 F:      include/asm-generic/hyperv-tlfs.h
8764 F:      include/asm-generic/mshyperv.h
8765 F:      include/clocksource/hyperv_timer.h
8766 F:      include/linux/hyperv.h
8767 F:      include/uapi/linux/hyperv.h
8768 F:      net/vmw_vsock/hyperv_transport.c
8769 F:      tools/hv/
8770
8771 HYPERBUS SUPPORT
8772 M:      Vignesh Raghavendra <vigneshr@ti.com>
8773 L:      linux-mtd@lists.infradead.org
8774 S:      Supported
8775 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8776 C:      irc://irc.oftc.net/mtd
8777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8778 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8779 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8780 F:      drivers/mtd/hyperbus/
8781 F:      include/linux/mtd/hyperbus.h
8782
8783 HYPERVISOR VIRTUAL CONSOLE DRIVER
8784 L:      linuxppc-dev@lists.ozlabs.org
8785 S:      Odd Fixes
8786 F:      drivers/tty/hvc/
8787
8788 I2C ACPI SUPPORT
8789 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8790 L:      linux-i2c@vger.kernel.org
8791 L:      linux-acpi@vger.kernel.org
8792 S:      Maintained
8793 F:      drivers/i2c/i2c-core-acpi.c
8794
8795 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8796 M:      Ajay Gupta <ajayg@nvidia.com>
8797 L:      linux-i2c@vger.kernel.org
8798 S:      Maintained
8799 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8800 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8801
8802 I2C MUXES
8803 M:      Peter Rosin <peda@axentia.se>
8804 L:      linux-i2c@vger.kernel.org
8805 S:      Maintained
8806 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8807 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8808 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8809 F:      Documentation/i2c/i2c-topology.rst
8810 F:      Documentation/i2c/muxes/
8811 F:      drivers/i2c/i2c-mux.c
8812 F:      drivers/i2c/muxes/
8813 F:      include/linux/i2c-mux.h
8814
8815 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8816 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8817 L:      linux-i2c@vger.kernel.org
8818 S:      Maintained
8819 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8820 F:      drivers/i2c/busses/i2c-mv64xxx.c
8821
8822 I2C OVER PARALLEL PORT
8823 M:      Jean Delvare <jdelvare@suse.com>
8824 L:      linux-i2c@vger.kernel.org
8825 S:      Maintained
8826 F:      Documentation/i2c/busses/i2c-parport.rst
8827 F:      drivers/i2c/busses/i2c-parport.c
8828
8829 I2C SUBSYSTEM
8830 M:      Wolfram Sang <wsa@kernel.org>
8831 L:      linux-i2c@vger.kernel.org
8832 S:      Maintained
8833 W:      https://i2c.wiki.kernel.org/
8834 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8836 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8837 F:      Documentation/i2c/
8838 F:      drivers/i2c/*
8839 F:      include/linux/i2c-dev.h
8840 F:      include/linux/i2c-smbus.h
8841 F:      include/linux/i2c.h
8842 F:      include/uapi/linux/i2c-*.h
8843 F:      include/uapi/linux/i2c.h
8844
8845 I2C SUBSYSTEM HOST DRIVERS
8846 L:      linux-i2c@vger.kernel.org
8847 S:      Odd Fixes
8848 W:      https://i2c.wiki.kernel.org/
8849 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8851 F:      Documentation/devicetree/bindings/i2c/
8852 F:      drivers/i2c/algos/
8853 F:      drivers/i2c/busses/
8854
8855 I2C-TAOS-EVM DRIVER
8856 M:      Jean Delvare <jdelvare@suse.com>
8857 L:      linux-i2c@vger.kernel.org
8858 S:      Maintained
8859 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8860 F:      drivers/i2c/busses/i2c-taos-evm.c
8861
8862 I2C-TINY-USB DRIVER
8863 M:      Till Harbaum <till@harbaum.org>
8864 L:      linux-i2c@vger.kernel.org
8865 S:      Maintained
8866 W:      http://www.harbaum.org/till/i2c_tiny_usb
8867 F:      drivers/i2c/busses/i2c-tiny-usb.c
8868
8869 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8870 M:      Jean Delvare <jdelvare@suse.com>
8871 L:      linux-i2c@vger.kernel.org
8872 S:      Maintained
8873 F:      Documentation/i2c/busses/i2c-ali1535.rst
8874 F:      Documentation/i2c/busses/i2c-ali1563.rst
8875 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8876 F:      Documentation/i2c/busses/i2c-amd756.rst
8877 F:      Documentation/i2c/busses/i2c-amd8111.rst
8878 F:      Documentation/i2c/busses/i2c-i801.rst
8879 F:      Documentation/i2c/busses/i2c-nforce2.rst
8880 F:      Documentation/i2c/busses/i2c-piix4.rst
8881 F:      Documentation/i2c/busses/i2c-sis5595.rst
8882 F:      Documentation/i2c/busses/i2c-sis630.rst
8883 F:      Documentation/i2c/busses/i2c-sis96x.rst
8884 F:      Documentation/i2c/busses/i2c-via.rst
8885 F:      Documentation/i2c/busses/i2c-viapro.rst
8886 F:      drivers/i2c/busses/i2c-ali1535.c
8887 F:      drivers/i2c/busses/i2c-ali1563.c
8888 F:      drivers/i2c/busses/i2c-ali15x3.c
8889 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8890 F:      drivers/i2c/busses/i2c-amd756.c
8891 F:      drivers/i2c/busses/i2c-amd8111.c
8892 F:      drivers/i2c/busses/i2c-i801.c
8893 F:      drivers/i2c/busses/i2c-isch.c
8894 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8895 F:      drivers/i2c/busses/i2c-nforce2.c
8896 F:      drivers/i2c/busses/i2c-piix4.c
8897 F:      drivers/i2c/busses/i2c-sis5595.c
8898 F:      drivers/i2c/busses/i2c-sis630.c
8899 F:      drivers/i2c/busses/i2c-sis96x.c
8900 F:      drivers/i2c/busses/i2c-via.c
8901 F:      drivers/i2c/busses/i2c-viapro.c
8902
8903 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8904 M:      Hans de Goede <hdegoede@redhat.com>
8905 L:      linux-i2c@vger.kernel.org
8906 S:      Maintained
8907 F:      drivers/i2c/busses/i2c-cht-wc.c
8908
8909 I2C/SMBUS ISMT DRIVER
8910 M:      Seth Heasley <seth.heasley@intel.com>
8911 M:      Neil Horman <nhorman@tuxdriver.com>
8912 L:      linux-i2c@vger.kernel.org
8913 F:      Documentation/i2c/busses/i2c-ismt.rst
8914 F:      drivers/i2c/busses/i2c-ismt.c
8915
8916 I2C/SMBUS STUB DRIVER
8917 M:      Jean Delvare <jdelvare@suse.com>
8918 L:      linux-i2c@vger.kernel.org
8919 S:      Maintained
8920 F:      drivers/i2c/i2c-stub.c
8921
8922 I3C DRIVER FOR CADENCE I3C MASTER IP
8923 M:      Przemysław Gaj <pgaj@cadence.com>
8924 S:      Maintained
8925 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8926 F:      drivers/i3c/master/i3c-master-cdns.c
8927
8928 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8929 M:      Vitor Soares <vitor.soares@synopsys.com>
8930 S:      Maintained
8931 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8932 F:      drivers/i3c/master/dw*
8933
8934 I3C SUBSYSTEM
8935 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8936 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8937 S:      Maintained
8938 C:      irc://chat.freenode.net/linux-i3c
8939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8940 F:      Documentation/ABI/testing/sysfs-bus-i3c
8941 F:      Documentation/devicetree/bindings/i3c/
8942 F:      Documentation/driver-api/i3c
8943 F:      drivers/i3c/
8944 F:      include/linux/i3c/
8945
8946 IA64 (Itanium) PLATFORM
8947 L:      linux-ia64@vger.kernel.org
8948 S:      Orphan
8949 F:      Documentation/ia64/
8950 F:      arch/ia64/
8951
8952 IBM Power 842 compression accelerator
8953 M:      Haren Myneni <haren@us.ibm.com>
8954 S:      Supported
8955 F:      crypto/842.c
8956 F:      drivers/crypto/nx/Kconfig
8957 F:      drivers/crypto/nx/Makefile
8958 F:      drivers/crypto/nx/nx-842*
8959 F:      include/linux/sw842.h
8960 F:      lib/842/
8961
8962 IBM Power in-Nest Crypto Acceleration
8963 M:      Breno Leitão <leitao@debian.org>
8964 M:      Nayna Jain <nayna@linux.ibm.com>
8965 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8966 L:      linux-crypto@vger.kernel.org
8967 S:      Supported
8968 F:      drivers/crypto/nx/Kconfig
8969 F:      drivers/crypto/nx/Makefile
8970 F:      drivers/crypto/nx/nx-aes*
8971 F:      drivers/crypto/nx/nx-sha*
8972 F:      drivers/crypto/nx/nx.*
8973 F:      drivers/crypto/nx/nx_csbcpb.h
8974 F:      drivers/crypto/nx/nx_debugfs.c
8975
8976 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8977 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8978 L:      linux-pci@vger.kernel.org
8979 L:      linuxppc-dev@lists.ozlabs.org
8980 S:      Supported
8981 F:      drivers/pci/hotplug/rpadlpar*
8982
8983 IBM Power Linux RAID adapter
8984 M:      Brian King <brking@us.ibm.com>
8985 S:      Supported
8986 F:      drivers/scsi/ipr.*
8987
8988 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8989 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8990 L:      linux-pci@vger.kernel.org
8991 L:      linuxppc-dev@lists.ozlabs.org
8992 S:      Supported
8993 F:      drivers/pci/hotplug/rpaphp*
8994
8995 IBM Power SRIOV Virtual NIC Device Driver
8996 M:      Dany Madden <drt@linux.ibm.com>
8997 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8998 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8999 L:      netdev@vger.kernel.org
9000 S:      Supported
9001 F:      drivers/net/ethernet/ibm/ibmvnic.*
9002
9003 IBM Power Virtual Accelerator Switchboard
9004 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9005 L:      linuxppc-dev@lists.ozlabs.org
9006 S:      Supported
9007 F:      arch/powerpc/include/asm/vas.h
9008 F:      arch/powerpc/platforms/powernv/copy-paste.h
9009 F:      arch/powerpc/platforms/powernv/vas*
9010
9011 IBM Power Virtual Ethernet Device Driver
9012 M:      Cristobal Forno <cforno12@linux.ibm.com>
9013 L:      netdev@vger.kernel.org
9014 S:      Supported
9015 F:      drivers/net/ethernet/ibm/ibmveth.*
9016
9017 IBM Power Virtual FC Device Drivers
9018 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9019 L:      linux-scsi@vger.kernel.org
9020 S:      Supported
9021 F:      drivers/scsi/ibmvscsi/ibmvfc*
9022
9023 IBM Power Virtual Management Channel Driver
9024 M:      Brad Warrum <bwarrum@linux.ibm.com>
9025 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9026 S:      Supported
9027 F:      drivers/misc/ibmvmc.*
9028
9029 IBM Power Virtual SCSI Device Drivers
9030 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9031 L:      linux-scsi@vger.kernel.org
9032 S:      Supported
9033 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9034 F:      include/scsi/viosrp.h
9035
9036 IBM Power Virtual SCSI Device Target Driver
9037 M:      Michael Cyr <mikecyr@linux.ibm.com>
9038 L:      linux-scsi@vger.kernel.org
9039 L:      target-devel@vger.kernel.org
9040 S:      Supported
9041 F:      drivers/scsi/ibmvscsi_tgt/
9042
9043 IBM Power VMX Cryptographic instructions
9044 M:      Breno Leitão <leitao@debian.org>
9045 M:      Nayna Jain <nayna@linux.ibm.com>
9046 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9047 L:      linux-crypto@vger.kernel.org
9048 S:      Supported
9049 F:      drivers/crypto/vmx/Kconfig
9050 F:      drivers/crypto/vmx/Makefile
9051 F:      drivers/crypto/vmx/aes*
9052 F:      drivers/crypto/vmx/ghash*
9053 F:      drivers/crypto/vmx/ppc-xlate.pl
9054 F:      drivers/crypto/vmx/vmx.c
9055
9056 IBM ServeRAID RAID DRIVER
9057 S:      Orphan
9058 F:      drivers/scsi/ips.*
9059
9060 ICH LPC AND GPIO DRIVER
9061 M:      Peter Tyser <ptyser@xes-inc.com>
9062 S:      Maintained
9063 F:      drivers/gpio/gpio-ich.c
9064 F:      drivers/mfd/lpc_ich.c
9065
9066 ICY I2C DRIVER
9067 M:      Max Staudt <max@enpas.org>
9068 L:      linux-i2c@vger.kernel.org
9069 S:      Maintained
9070 F:      drivers/i2c/busses/i2c-icy.c
9071
9072 IDEAPAD LAPTOP EXTRAS DRIVER
9073 M:      Ike Panhc <ike.pan@canonical.com>
9074 L:      platform-driver-x86@vger.kernel.org
9075 S:      Maintained
9076 W:      http://launchpad.net/ideapad-laptop
9077 F:      drivers/platform/x86/ideapad-laptop.c
9078
9079 IDEAPAD LAPTOP SLIDEBAR DRIVER
9080 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9081 L:      linux-input@vger.kernel.org
9082 S:      Maintained
9083 W:      https://github.com/o2genum/ideapad-slidebar
9084 F:      drivers/input/misc/ideapad_slidebar.c
9085
9086 IDT VersaClock 5 CLOCK DRIVER
9087 M:      Luca Ceresoli <luca@lucaceresoli.net>
9088 S:      Maintained
9089 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9090 F:      drivers/clk/clk-versaclock5.c
9091
9092 IEEE 802.15.4 SUBSYSTEM
9093 M:      Alexander Aring <alex.aring@gmail.com>
9094 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9095 L:      linux-wpan@vger.kernel.org
9096 S:      Maintained
9097 W:      https://linux-wpan.org/
9098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9100 F:      Documentation/networking/ieee802154.rst
9101 F:      drivers/net/ieee802154/
9102 F:      include/linux/ieee802154.h
9103 F:      include/linux/nl802154.h
9104 F:      include/net/af_ieee802154.h
9105 F:      include/net/cfg802154.h
9106 F:      include/net/ieee802154_netdev.h
9107 F:      include/net/mac802154.h
9108 F:      include/net/nl802154.h
9109 F:      net/ieee802154/
9110 F:      net/mac802154/
9111
9112 IFE PROTOCOL
9113 M:      Yotam Gigi <yotam.gi@gmail.com>
9114 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9115 F:      include/net/ife.h
9116 F:      include/uapi/linux/ife.h
9117 F:      net/ife
9118
9119 IGORPLUG-USB IR RECEIVER
9120 M:      Sean Young <sean@mess.org>
9121 L:      linux-media@vger.kernel.org
9122 S:      Maintained
9123 F:      drivers/media/rc/igorplugusb.c
9124
9125 IGUANAWORKS USB IR TRANSCEIVER
9126 M:      Sean Young <sean@mess.org>
9127 L:      linux-media@vger.kernel.org
9128 S:      Maintained
9129 F:      drivers/media/rc/iguanair.c
9130
9131 IIO DIGITAL POTENTIOMETER DAC
9132 M:      Peter Rosin <peda@axentia.se>
9133 L:      linux-iio@vger.kernel.org
9134 S:      Maintained
9135 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9136 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9137 F:      drivers/iio/dac/dpot-dac.c
9138
9139 IIO ENVELOPE DETECTOR
9140 M:      Peter Rosin <peda@axentia.se>
9141 L:      linux-iio@vger.kernel.org
9142 S:      Maintained
9143 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9144 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9145 F:      drivers/iio/adc/envelope-detector.c
9146
9147 IIO MULTIPLEXER
9148 M:      Peter Rosin <peda@axentia.se>
9149 L:      linux-iio@vger.kernel.org
9150 S:      Maintained
9151 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9152 F:      drivers/iio/multiplexer/iio-mux.c
9153
9154 IIO SCMI BASED DRIVER
9155 M:      Jyoti Bhayana <jbhayana@google.com>
9156 L:      linux-iio@vger.kernel.org
9157 S:      Maintained
9158 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9159
9160 IIO SUBSYSTEM AND DRIVERS
9161 M:      Jonathan Cameron <jic23@kernel.org>
9162 R:      Lars-Peter Clausen <lars@metafoo.de>
9163 L:      linux-iio@vger.kernel.org
9164 S:      Maintained
9165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9166 F:      Documentation/ABI/testing/configfs-iio*
9167 F:      Documentation/ABI/testing/sysfs-bus-iio*
9168 F:      Documentation/devicetree/bindings/iio/
9169 F:      drivers/iio/
9170 F:      drivers/staging/iio/
9171 F:      include/linux/iio/
9172 F:      tools/iio/
9173
9174 IIO UNIT CONVERTER
9175 M:      Peter Rosin <peda@axentia.se>
9176 L:      linux-iio@vger.kernel.org
9177 S:      Maintained
9178 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9179 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9180 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9181 F:      drivers/iio/afe/iio-rescale.c
9182
9183 IKANOS/ADI EAGLE ADSL USB DRIVER
9184 M:      Matthieu Castet <castet.matthieu@free.fr>
9185 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9186 S:      Maintained
9187 F:      drivers/usb/atm/ueagle-atm.c
9188
9189 IMGTEC ASCII LCD DRIVER
9190 M:      Paul Burton <paulburton@kernel.org>
9191 S:      Maintained
9192 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9193 F:      drivers/auxdisplay/img-ascii-lcd.c
9194
9195 IMGTEC IR DECODER DRIVER
9196 S:      Orphan
9197 F:      drivers/media/rc/img-ir/
9198
9199 IMON SOUNDGRAPH USB IR RECEIVER
9200 M:      Sean Young <sean@mess.org>
9201 L:      linux-media@vger.kernel.org
9202 S:      Maintained
9203 F:      drivers/media/rc/imon.c
9204 F:      drivers/media/rc/imon_raw.c
9205
9206 IMS TWINTURBO FRAMEBUFFER DRIVER
9207 L:      linux-fbdev@vger.kernel.org
9208 S:      Orphan
9209 F:      drivers/video/fbdev/imsttfb.c
9210
9211 INA209 HARDWARE MONITOR DRIVER
9212 M:      Guenter Roeck <linux@roeck-us.net>
9213 L:      linux-hwmon@vger.kernel.org
9214 S:      Maintained
9215 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9216 F:      Documentation/hwmon/ina209.rst
9217 F:      drivers/hwmon/ina209.c
9218
9219 INA2XX HARDWARE MONITOR DRIVER
9220 M:      Guenter Roeck <linux@roeck-us.net>
9221 L:      linux-hwmon@vger.kernel.org
9222 S:      Maintained
9223 F:      Documentation/hwmon/ina2xx.rst
9224 F:      drivers/hwmon/ina2xx.c
9225 F:      include/linux/platform_data/ina2xx.h
9226
9227 INDUSTRY PACK SUBSYSTEM (IPACK)
9228 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9229 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9230 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9231 L:      industrypack-devel@lists.sourceforge.net
9232 S:      Maintained
9233 W:      http://industrypack.sourceforge.net
9234 F:      drivers/ipack/
9235
9236 INFINEON DPS310 Driver
9237 M:      Eddie James <eajames@linux.ibm.com>
9238 L:      linux-iio@vger.kernel.org
9239 S:      Maintained
9240 F:      drivers/iio/pressure/dps310.c
9241
9242 INFINIBAND SUBSYSTEM
9243 M:      Doug Ledford <dledford@redhat.com>
9244 M:      Jason Gunthorpe <jgg@nvidia.com>
9245 L:      linux-rdma@vger.kernel.org
9246 S:      Supported
9247 W:      https://github.com/linux-rdma/rdma-core
9248 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9250 F:      Documentation/devicetree/bindings/infiniband/
9251 F:      Documentation/infiniband/
9252 F:      drivers/infiniband/
9253 F:      include/rdma/
9254 F:      include/trace/events/ib_mad.h
9255 F:      include/trace/events/ib_umad.h
9256 F:      include/uapi/linux/if_infiniband.h
9257 F:      include/uapi/rdma/
9258 F:      samples/bpf/ibumad_kern.c
9259 F:      samples/bpf/ibumad_user.c
9260
9261 INGENIC JZ4780 NAND DRIVER
9262 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9263 L:      linux-mtd@lists.infradead.org
9264 L:      linux-mips@vger.kernel.org
9265 S:      Maintained
9266 F:      drivers/mtd/nand/raw/ingenic/
9267
9268 INGENIC JZ47xx SoCs
9269 M:      Paul Cercueil <paul@crapouillou.net>
9270 L:      linux-mips@vger.kernel.org
9271 S:      Maintained
9272 F:      arch/mips/boot/dts/ingenic/
9273 F:      arch/mips/generic/board-ingenic.c
9274 F:      arch/mips/include/asm/mach-ingenic/
9275 F:      arch/mips/ingenic/Kconfig
9276 F:      drivers/clk/ingenic/
9277 F:      drivers/dma/dma-jz4780.c
9278 F:      drivers/gpu/drm/ingenic/
9279 F:      drivers/i2c/busses/i2c-jz4780.c
9280 F:      drivers/iio/adc/ingenic-adc.c
9281 F:      drivers/irqchip/irq-ingenic.c
9282 F:      drivers/memory/jz4780-nemc.c
9283 F:      drivers/mmc/host/jz4740_mmc.c
9284 F:      drivers/mtd/nand/raw/ingenic/
9285 F:      drivers/pinctrl/pinctrl-ingenic.c
9286 F:      drivers/power/supply/ingenic-battery.c
9287 F:      drivers/pwm/pwm-jz4740.c
9288 F:      drivers/remoteproc/ingenic_rproc.c
9289 F:      drivers/rtc/rtc-jz4740.c
9290 F:      drivers/tty/serial/8250/8250_ingenic.c
9291 F:      drivers/usb/musb/jz4740.c
9292 F:      drivers/watchdog/jz4740_wdt.c
9293 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9294 F:      include/linux/mfd/ingenic-tcu.h
9295 F:      sound/soc/codecs/jz47*
9296 F:      sound/soc/jz4740/
9297
9298 INOTIFY
9299 M:      Jan Kara <jack@suse.cz>
9300 R:      Amir Goldstein <amir73il@gmail.com>
9301 L:      linux-fsdevel@vger.kernel.org
9302 S:      Maintained
9303 F:      Documentation/filesystems/inotify.rst
9304 F:      fs/notify/inotify/
9305 F:      include/linux/inotify.h
9306 F:      include/uapi/linux/inotify.h
9307
9308 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9309 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9310 L:      linux-input@vger.kernel.org
9311 S:      Maintained
9312 Q:      http://patchwork.kernel.org/project/linux-input/list/
9313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9314 F:      Documentation/devicetree/bindings/input/
9315 F:      Documentation/devicetree/bindings/serio/
9316 F:      Documentation/input/
9317 F:      drivers/input/
9318 F:      include/linux/input.h
9319 F:      include/linux/input/
9320 F:      include/uapi/linux/input-event-codes.h
9321 F:      include/uapi/linux/input.h
9322
9323 INPUT MULTITOUCH (MT) PROTOCOL
9324 M:      Henrik Rydberg <rydberg@bitmath.org>
9325 L:      linux-input@vger.kernel.org
9326 S:      Odd fixes
9327 F:      Documentation/input/multi-touch-protocol.rst
9328 F:      drivers/input/input-mt.c
9329 K:      \b(ABS|SYN)_MT_
9330
9331 INSIDE SECURE CRYPTO DRIVER
9332 M:      Antoine Tenart <atenart@kernel.org>
9333 L:      linux-crypto@vger.kernel.org
9334 S:      Maintained
9335 F:      drivers/crypto/inside-secure/
9336
9337 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9338 M:      Mimi Zohar <zohar@linux.ibm.com>
9339 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9340 L:      linux-integrity@vger.kernel.org
9341 S:      Supported
9342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9343 F:      security/integrity/ima/
9344
9345 INTEL 810/815 FRAMEBUFFER DRIVER
9346 M:      Antonino Daplas <adaplas@gmail.com>
9347 L:      linux-fbdev@vger.kernel.org
9348 S:      Maintained
9349 F:      drivers/video/fbdev/i810/
9350
9351 INTEL ASoC DRIVERS
9352 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9353 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9354 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9355 M:      Jie Yang <yang.jie@linux.intel.com>
9356 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9357 S:      Supported
9358 F:      sound/soc/intel/
9359
9360 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9361 M:      Hans de Goede <hdegoede@redhat.com>
9362 L:      platform-driver-x86@vger.kernel.org
9363 S:      Maintained
9364 F:      drivers/platform/x86/intel/atomisp2/pm.c
9365
9366 INTEL ATOMISP2 LED DRIVER
9367 M:      Hans de Goede <hdegoede@redhat.com>
9368 L:      platform-driver-x86@vger.kernel.org
9369 S:      Maintained
9370 F:      drivers/platform/x86/intel/atomisp2/led.c
9371
9372 INTEL BIOS SAR INT1092 DRIVER
9373 M:      Shravan Sudhakar <s.shravan@intel.com>
9374 M:      Intel Corporation <linuxwwan@intel.com>
9375 L:      platform-driver-x86@vger.kernel.org
9376 S:      Maintained
9377 F:      drivers/platform/x86/intel/int1092/
9378
9379 INTEL BROXTON PMC DRIVER
9380 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9381 M:      Zha Qipeng <qipeng.zha@intel.com>
9382 S:      Maintained
9383 F:      drivers/mfd/intel_pmc_bxt.c
9384 F:      include/linux/mfd/intel_pmc_bxt.h
9385
9386 INTEL C600 SERIES SAS CONTROLLER DRIVER
9387 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9388 L:      linux-scsi@vger.kernel.org
9389 S:      Supported
9390 T:      git git://git.code.sf.net/p/intel-sas/isci
9391 F:      drivers/scsi/isci/
9392
9393 INTEL CPU family model numbers
9394 M:      Tony Luck <tony.luck@intel.com>
9395 M:      x86@kernel.org
9396 L:      linux-kernel@vger.kernel.org
9397 S:      Supported
9398 F:      arch/x86/include/asm/intel-family.h
9399
9400 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9401 M:      Jani Nikula <jani.nikula@linux.intel.com>
9402 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9403 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9404 L:      intel-gfx@lists.freedesktop.org
9405 S:      Supported
9406 W:      https://01.org/linuxgraphics/
9407 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9408 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9409 C:      irc://irc.oftc.net/intel-gfx
9410 T:      git git://anongit.freedesktop.org/drm-intel
9411 F:      Documentation/gpu/i915.rst
9412 F:      drivers/gpu/drm/i915/
9413 F:      include/drm/i915*
9414 F:      include/uapi/drm/i915_drm.h
9415
9416 INTEL ETHERNET DRIVERS
9417 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9418 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9419 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9420 S:      Supported
9421 W:      http://www.intel.com/support/feedback.htm
9422 W:      http://e1000.sourceforge.net/
9423 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9426 F:      Documentation/networking/device_drivers/ethernet/intel/
9427 F:      drivers/net/ethernet/intel/
9428 F:      drivers/net/ethernet/intel/*/
9429 F:      include/linux/avf/virtchnl.h
9430 F:      include/linux/net/intel/iidc.h
9431
9432 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9433 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9434 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9435 L:      linux-rdma@vger.kernel.org
9436 S:      Supported
9437 F:      drivers/infiniband/hw/irdma/
9438 F:      include/uapi/rdma/irdma-abi.h
9439
9440 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9441 M:      Maik Broemme <mbroemme@libmpq.org>
9442 L:      linux-fbdev@vger.kernel.org
9443 S:      Maintained
9444 F:      Documentation/fb/intelfb.rst
9445 F:      drivers/video/fbdev/intelfb/
9446
9447 INTEL GPIO DRIVERS
9448 M:      Andy Shevchenko <andy@kernel.org>
9449 L:      linux-gpio@vger.kernel.org
9450 S:      Maintained
9451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9452 F:      drivers/gpio/gpio-ich.c
9453 F:      drivers/gpio/gpio-merrifield.c
9454 F:      drivers/gpio/gpio-ml-ioh.c
9455 F:      drivers/gpio/gpio-pch.c
9456 F:      drivers/gpio/gpio-sch.c
9457 F:      drivers/gpio/gpio-sodaville.c
9458
9459 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9460 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9461 M:      Zhi Wang <zhi.a.wang@intel.com>
9462 L:      intel-gvt-dev@lists.freedesktop.org
9463 L:      intel-gfx@lists.freedesktop.org
9464 S:      Supported
9465 W:      https://01.org/igvt-g
9466 T:      git https://github.com/intel/gvt-linux.git
9467 F:      drivers/gpu/drm/i915/gvt/
9468
9469 INTEL HID EVENT DRIVER
9470 M:      Alex Hung <alex.hung@canonical.com>
9471 L:      platform-driver-x86@vger.kernel.org
9472 S:      Maintained
9473 F:      drivers/platform/x86/intel/hid.c
9474
9475 INTEL I/OAT DMA DRIVER
9476 M:      Dave Jiang <dave.jiang@intel.com>
9477 R:      Dan Williams <dan.j.williams@intel.com>
9478 L:      dmaengine@vger.kernel.org
9479 S:      Supported
9480 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9481 F:      drivers/dma/ioat*
9482
9483 INTEL IADX DRIVER
9484 M:      Dave Jiang <dave.jiang@intel.com>
9485 L:      dmaengine@vger.kernel.org
9486 S:      Supported
9487 F:      drivers/dma/idxd/*
9488 F:      include/uapi/linux/idxd.h
9489
9490 INTEL IDLE DRIVER
9491 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9492 M:      Len Brown <lenb@kernel.org>
9493 L:      linux-pm@vger.kernel.org
9494 S:      Supported
9495 B:      https://bugzilla.kernel.org
9496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9497 F:      drivers/idle/intel_idle.c
9498
9499 INTEL INTEGRATED SENSOR HUB DRIVER
9500 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9501 M:      Jiri Kosina <jikos@kernel.org>
9502 L:      linux-input@vger.kernel.org
9503 S:      Maintained
9504 F:      drivers/hid/intel-ish-hid/
9505
9506 INTEL IOMMU (VT-d)
9507 M:      David Woodhouse <dwmw2@infradead.org>
9508 M:      Lu Baolu <baolu.lu@linux.intel.com>
9509 L:      iommu@lists.linux-foundation.org
9510 L:      iommu@lists.linux.dev
9511 S:      Supported
9512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9513 F:      drivers/iommu/intel/
9514 F:      include/linux/intel-iommu.h
9515 F:      include/linux/intel-svm.h
9516
9517 INTEL IOP-ADMA DMA DRIVER
9518 R:      Dan Williams <dan.j.williams@intel.com>
9519 S:      Odd fixes
9520 F:      drivers/dma/iop-adma.c
9521
9522 INTEL IPU3 CSI-2 CIO2 DRIVER
9523 M:      Yong Zhi <yong.zhi@intel.com>
9524 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9525 M:      Bingbu Cao <bingbu.cao@intel.com>
9526 M:      Dan Scally <djrscally@gmail.com>
9527 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9528 L:      linux-media@vger.kernel.org
9529 S:      Maintained
9530 T:      git git://linuxtv.org/media_tree.git
9531 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9532 F:      drivers/media/pci/intel/ipu3/
9533
9534 INTEL IPU3 CSI-2 IMGU DRIVER
9535 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9536 R:      Bingbu Cao <bingbu.cao@intel.com>
9537 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9538 L:      linux-media@vger.kernel.org
9539 S:      Maintained
9540 F:      Documentation/admin-guide/media/ipu3.rst
9541 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9542 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9543 F:      drivers/staging/media/ipu3/
9544
9545 INTEL IXP4XX CRYPTO SUPPORT
9546 M:      Corentin Labbe <clabbe@baylibre.com>
9547 L:      linux-crypto@vger.kernel.org
9548 S:      Maintained
9549 F:      drivers/crypto/ixp4xx_crypto.c
9550
9551 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9552 M:      Krzysztof Halasa <khalasa@piap.pl>
9553 S:      Maintained
9554 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9555 F:      drivers/net/wan/ixp4xx_hss.c
9556 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9557 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9558 F:      include/linux/soc/ixp4xx/npe.h
9559 F:      include/linux/soc/ixp4xx/qmgr.h
9560
9561 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9562 M:      Deepak Saxena <dsaxena@plexity.net>
9563 S:      Maintained
9564 F:      Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9565 F:      drivers/char/hw_random/ixp4xx-rng.c
9566
9567 INTEL KEEM BAY DRM DRIVER
9568 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9569 M:      Edmund Dea <edmund.j.dea@intel.com>
9570 S:      Maintained
9571 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9572 F:      drivers/gpu/drm/kmb/
9573
9574 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9575 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9576 S:      Maintained
9577 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9578 F:      drivers/crypto/keembay/Kconfig
9579 F:      drivers/crypto/keembay/Makefile
9580 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9581 F:      drivers/crypto/keembay/ocs-aes.c
9582 F:      drivers/crypto/keembay/ocs-aes.h
9583
9584 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9585 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9586 M:      Declan Murphy <declan.murphy@intel.com>
9587 S:      Maintained
9588 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9589 F:      drivers/crypto/keembay/Kconfig
9590 F:      drivers/crypto/keembay/Makefile
9591 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9592 F:      drivers/crypto/keembay/ocs-hcu.c
9593 F:      drivers/crypto/keembay/ocs-hcu.h
9594
9595 INTEL MANAGEMENT ENGINE (mei)
9596 M:      Tomas Winkler <tomas.winkler@intel.com>
9597 L:      linux-kernel@vger.kernel.org
9598 S:      Supported
9599 F:      Documentation/driver-api/mei/*
9600 F:      drivers/misc/mei/
9601 F:      drivers/watchdog/mei_wdt.c
9602 F:      include/linux/mei_cl_bus.h
9603 F:      include/uapi/linux/mei.h
9604 F:      samples/mei/*
9605
9606 INTEL MAX 10 BMC MFD DRIVER
9607 M:      Xu Yilun <yilun.xu@intel.com>
9608 R:      Tom Rix <trix@redhat.com>
9609 S:      Maintained
9610 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9611 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9612 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9613 F:      drivers/mfd/intel-m10-bmc.c
9614 F:      include/linux/mfd/intel-m10-bmc.h
9615
9616 INTEL MENLOW THERMAL DRIVER
9617 M:      Sujith Thomas <sujith.thomas@intel.com>
9618 L:      linux-pm@vger.kernel.org
9619 S:      Supported
9620 W:      https://01.org/linux-acpi
9621 F:      drivers/thermal/intel/intel_menlow.c
9622
9623 INTEL P-Unit IPC DRIVER
9624 M:      Zha Qipeng <qipeng.zha@intel.com>
9625 L:      platform-driver-x86@vger.kernel.org
9626 S:      Maintained
9627 F:      arch/x86/include/asm/intel_punit_ipc.h
9628 F:      drivers/platform/x86/intel/punit_ipc.c
9629
9630 INTEL PMC CORE DRIVER
9631 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9632 M:      David E Box <david.e.box@intel.com>
9633 L:      platform-driver-x86@vger.kernel.org
9634 S:      Maintained
9635 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9636 F:      drivers/platform/x86/intel/pmc/
9637
9638 INTEL PMIC GPIO DRIVERS
9639 M:      Andy Shevchenko <andy@kernel.org>
9640 S:      Maintained
9641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9642 F:      drivers/gpio/gpio-*cove.c
9643
9644 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9645 M:      Andy Shevchenko <andy@kernel.org>
9646 S:      Maintained
9647 F:      drivers/mfd/intel_soc_pmic*
9648 F:      include/linux/mfd/intel_soc_pmic*
9649
9650 INTEL PMT DRIVER
9651 M:      "David E. Box" <david.e.box@linux.intel.com>
9652 S:      Maintained
9653 F:      drivers/mfd/intel_pmt.c
9654 F:      drivers/platform/x86/intel/pmt/
9655
9656 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9657 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9658 L:      linux-wireless@vger.kernel.org
9659 S:      Maintained
9660 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9661 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9662 F:      drivers/net/wireless/intel/ipw2x00/
9663
9664 INTEL PSTATE DRIVER
9665 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9666 M:      Len Brown <lenb@kernel.org>
9667 L:      linux-pm@vger.kernel.org
9668 S:      Supported
9669 F:      drivers/cpufreq/intel_pstate.c
9670
9671 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9672 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9673 L:      linux-iio@vger.kernel.org
9674 F:      drivers/counter/intel-qep.c
9675
9676 INTEL SCU DRIVERS
9677 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9678 S:      Maintained
9679 F:      arch/x86/include/asm/intel_scu_ipc.h
9680 F:      drivers/platform/x86/intel_scu_*
9681
9682 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9683 M:      Daniel Scally <djrscally@gmail.com>
9684 S:      Maintained
9685 F:      drivers/platform/x86/intel/int3472/
9686
9687 INTEL SPEED SELECT TECHNOLOGY
9688 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9689 L:      platform-driver-x86@vger.kernel.org
9690 S:      Maintained
9691 F:      drivers/platform/x86/intel/speed_select_if/
9692 F:      include/uapi/linux/isst_if.h
9693 F:      tools/power/x86/intel-speed-select/
9694
9695 INTEL STRATIX10 FIRMWARE DRIVERS
9696 M:      Dinh Nguyen <dinguyen@kernel.org>
9697 L:      linux-kernel@vger.kernel.org
9698 S:      Maintained
9699 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9700 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9701 F:      drivers/firmware/stratix10-rsu.c
9702 F:      drivers/firmware/stratix10-svc.c
9703 F:      include/linux/firmware/intel/stratix10-smc.h
9704 F:      include/linux/firmware/intel/stratix10-svc-client.h
9705
9706 INTEL TELEMETRY DRIVER
9707 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9708 M:      "David E. Box" <david.e.box@linux.intel.com>
9709 L:      platform-driver-x86@vger.kernel.org
9710 S:      Maintained
9711 F:      arch/x86/include/asm/intel_telemetry.h
9712 F:      drivers/platform/x86/intel/telemetry/
9713
9714 INTEL UNCORE FREQUENCY CONTROL
9715 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9716 L:      platform-driver-x86@vger.kernel.org
9717 S:      Maintained
9718 F:      drivers/platform/x86/intel/uncore-frequency.c
9719
9720 INTEL VIRTUAL BUTTON DRIVER
9721 M:      AceLan Kao <acelan.kao@canonical.com>
9722 L:      platform-driver-x86@vger.kernel.org
9723 S:      Maintained
9724 F:      drivers/platform/x86/intel/vbtn.c
9725
9726 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9727 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9728 L:      linux-wireless@vger.kernel.org
9729 S:      Supported
9730 F:      drivers/net/wireless/intel/iwlegacy/
9731
9732 INTEL WIRELESS WIFI LINK (iwlwifi)
9733 M:      Luca Coelho <luciano.coelho@intel.com>
9734 L:      linux-wireless@vger.kernel.org
9735 S:      Supported
9736 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9738 F:      drivers/net/wireless/intel/iwlwifi/
9739
9740 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9741 M:      Jithu Joseph <jithu.joseph@intel.com>
9742 R:      Maurice Ma <maurice.ma@intel.com>
9743 S:      Maintained
9744 W:      https://slimbootloader.github.io/security/firmware-update.html
9745 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9746
9747 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9748 L:      Dell.Client.Kernel@dell.com
9749 S:      Maintained
9750 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9751
9752 INTEL WWAN IOSM DRIVER
9753 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9754 M:      Intel Corporation <linuxwwan@intel.com>
9755 L:      netdev@vger.kernel.org
9756 S:      Maintained
9757 F:      drivers/net/wwan/iosm/
9758
9759 INTEL(R) TRACE HUB
9760 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9761 S:      Supported
9762 F:      Documentation/trace/intel_th.rst
9763 F:      drivers/hwtracing/intel_th/
9764 F:      include/linux/intel_th.h
9765
9766 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9767 M:      Ning Sun <ning.sun@intel.com>
9768 L:      tboot-devel@lists.sourceforge.net
9769 S:      Supported
9770 W:      http://tboot.sourceforge.net
9771 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9772 F:      Documentation/x86/intel_txt.rst
9773 F:      arch/x86/kernel/tboot.c
9774 F:      include/linux/tboot.h
9775
9776 INTEL SGX
9777 M:      Jarkko Sakkinen <jarkko@kernel.org>
9778 R:      Dave Hansen <dave.hansen@linux.intel.com>
9779 L:      linux-sgx@vger.kernel.org
9780 S:      Supported
9781 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9783 F:      Documentation/x86/sgx.rst
9784 F:      arch/x86/entry/vdso/vsgx.S
9785 F:      arch/x86/include/asm/sgx.h
9786 F:      arch/x86/include/uapi/asm/sgx.h
9787 F:      arch/x86/kernel/cpu/sgx/*
9788 F:      tools/testing/selftests/sgx/*
9789 K:      \bSGX_
9790
9791 INTERCONNECT API
9792 M:      Georgi Djakov <djakov@kernel.org>
9793 L:      linux-pm@vger.kernel.org
9794 S:      Maintained
9795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9796 F:      Documentation/devicetree/bindings/interconnect/
9797 F:      Documentation/driver-api/interconnect.rst
9798 F:      drivers/interconnect/
9799 F:      include/dt-bindings/interconnect/
9800 F:      include/linux/interconnect-provider.h
9801 F:      include/linux/interconnect.h
9802
9803 INTERRUPT COUNTER DRIVER
9804 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9805 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9806 L:      linux-iio@vger.kernel.org
9807 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9808 F:      drivers/counter/interrupt-cnt.c
9809
9810 INVENSENSE ICM-426xx IMU DRIVER
9811 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9812 L:      linux-iio@vger.kernel.org
9813 S:      Maintained
9814 W:      https://invensense.tdk.com/
9815 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9816 F:      drivers/iio/imu/inv_icm42600/
9817
9818 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9819 M:      Linus Walleij <linus.walleij@linaro.org>
9820 L:      linux-iio@vger.kernel.org
9821 S:      Maintained
9822 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9823 F:      drivers/iio/gyro/mpu3050*
9824
9825 IOC3 ETHERNET DRIVER
9826 M:      Ralf Baechle <ralf@linux-mips.org>
9827 L:      linux-mips@vger.kernel.org
9828 S:      Maintained
9829 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9830
9831 IOMAP FILESYSTEM LIBRARY
9832 M:      Christoph Hellwig <hch@infradead.org>
9833 M:      Darrick J. Wong <djwong@kernel.org>
9834 M:      linux-xfs@vger.kernel.org
9835 M:      linux-fsdevel@vger.kernel.org
9836 L:      linux-xfs@vger.kernel.org
9837 L:      linux-fsdevel@vger.kernel.org
9838 S:      Supported
9839 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9840 F:      fs/iomap/
9841 F:      include/linux/iomap.h
9842
9843 IOMMU DRIVERS
9844 M:      Joerg Roedel <joro@8bytes.org>
9845 M:      Will Deacon <will@kernel.org>
9846 L:      iommu@lists.linux-foundation.org
9847 L:      iommu@lists.linux.dev
9848 S:      Maintained
9849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9850 F:      Documentation/devicetree/bindings/iommu/
9851 F:      Documentation/userspace-api/iommu.rst
9852 F:      drivers/iommu/
9853 F:      include/linux/iommu.h
9854 F:      include/linux/iova.h
9855 F:      include/linux/of_iommu.h
9856 F:      include/uapi/linux/iommu.h
9857
9858 IO_URING
9859 M:      Jens Axboe <axboe@kernel.dk>
9860 R:      Pavel Begunkov <asml.silence@gmail.com>
9861 L:      io-uring@vger.kernel.org
9862 S:      Maintained
9863 T:      git git://git.kernel.dk/linux-block
9864 T:      git git://git.kernel.dk/liburing
9865 F:      io_uring/
9866 F:      include/linux/io_uring.h
9867 F:      include/uapi/linux/io_uring.h
9868 F:      tools/io_uring/
9869
9870 IPMI SUBSYSTEM
9871 M:      Corey Minyard <minyard@acm.org>
9872 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9873 S:      Supported
9874 W:      http://openipmi.sourceforge.net/
9875 F:      Documentation/driver-api/ipmi.rst
9876 F:      Documentation/devicetree/bindings/ipmi/
9877 F:      drivers/char/ipmi/
9878 F:      include/linux/ipmi*
9879 F:      include/uapi/linux/ipmi*
9880
9881 IPS SCSI RAID DRIVER
9882 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9883 L:      linux-scsi@vger.kernel.org
9884 S:      Maintained
9885 W:      http://www.adaptec.com/
9886 F:      drivers/scsi/ips*
9887
9888 IPVS
9889 M:      Simon Horman <horms@verge.net.au>
9890 M:      Julian Anastasov <ja@ssi.bg>
9891 L:      netdev@vger.kernel.org
9892 L:      lvs-devel@vger.kernel.org
9893 S:      Maintained
9894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9896 F:      Documentation/networking/ipvs-sysctl.rst
9897 F:      include/net/ip_vs.h
9898 F:      include/uapi/linux/ip_vs.h
9899 F:      net/netfilter/ipvs/
9900
9901 IPWIRELESS DRIVER
9902 M:      Jiri Kosina <jikos@kernel.org>
9903 M:      David Sterba <dsterba@suse.com>
9904 S:      Odd Fixes
9905 F:      drivers/tty/ipwireless/
9906
9907 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9908 M:      Marc Zyngier <maz@kernel.org>
9909 S:      Maintained
9910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9911 F:      Documentation/core-api/irq/irq-domain.rst
9912 F:      include/linux/irqdomain.h
9913 F:      kernel/irq/irqdomain.c
9914 F:      kernel/irq/msi.c
9915
9916 IRQ SUBSYSTEM
9917 M:      Thomas Gleixner <tglx@linutronix.de>
9918 L:      linux-kernel@vger.kernel.org
9919 S:      Maintained
9920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9921 F:      kernel/irq/
9922
9923 IRQCHIP DRIVERS
9924 M:      Thomas Gleixner <tglx@linutronix.de>
9925 M:      Marc Zyngier <maz@kernel.org>
9926 L:      linux-kernel@vger.kernel.org
9927 S:      Maintained
9928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9929 F:      Documentation/devicetree/bindings/interrupt-controller/
9930 F:      drivers/irqchip/
9931
9932 ISA
9933 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9934 S:      Maintained
9935 F:      Documentation/driver-api/isa.rst
9936 F:      drivers/base/isa.c
9937 F:      include/linux/isa.h
9938
9939 ISA RADIO MODULE
9940 M:      Hans Verkuil <hverkuil@xs4all.nl>
9941 L:      linux-media@vger.kernel.org
9942 S:      Maintained
9943 W:      https://linuxtv.org
9944 T:      git git://linuxtv.org/media_tree.git
9945 F:      drivers/media/radio/radio-isa*
9946
9947 ISAPNP
9948 M:      Jaroslav Kysela <perex@perex.cz>
9949 S:      Maintained
9950 F:      Documentation/driver-api/isapnp.rst
9951 F:      drivers/pnp/isapnp/
9952 F:      include/linux/isapnp.h
9953
9954 ISCSI
9955 M:      Lee Duncan <lduncan@suse.com>
9956 M:      Chris Leech <cleech@redhat.com>
9957 L:      open-iscsi@googlegroups.com
9958 L:      linux-scsi@vger.kernel.org
9959 S:      Maintained
9960 W:      www.open-iscsi.com
9961 F:      drivers/scsi/*iscsi*
9962 F:      include/scsi/*iscsi*
9963
9964 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9965 M:      Peter Jones <pjones@redhat.com>
9966 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9967 S:      Maintained
9968 F:      drivers/firmware/iscsi_ibft*
9969
9970 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9971 M:      Sagi Grimberg <sagi@grimberg.me>
9972 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9973 L:      linux-rdma@vger.kernel.org
9974 S:      Supported
9975 W:      http://www.openfabrics.org
9976 W:      www.open-iscsi.org
9977 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9978 F:      drivers/infiniband/ulp/iser/
9979
9980 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9981 M:      Sagi Grimberg <sagi@grimberg.me>
9982 L:      linux-rdma@vger.kernel.org
9983 L:      target-devel@vger.kernel.org
9984 S:      Supported
9985 W:      http://www.linux-iscsi.org
9986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9987 F:      drivers/infiniband/ulp/isert
9988
9989 ISDN/CMTP OVER BLUETOOTH
9990 M:      Karsten Keil <isdn@linux-pingi.de>
9991 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9992 L:      netdev@vger.kernel.org
9993 S:      Odd Fixes
9994 W:      http://www.isdn4linux.de
9995 F:      Documentation/isdn/
9996 F:      drivers/isdn/capi/
9997 F:      include/linux/isdn/
9998 F:      include/uapi/linux/isdn/
9999 F:      net/bluetooth/cmtp/
10000
10001 ISDN/mISDN SUBSYSTEM
10002 M:      Karsten Keil <isdn@linux-pingi.de>
10003 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10004 L:      netdev@vger.kernel.org
10005 S:      Maintained
10006 W:      http://www.isdn4linux.de
10007 F:      drivers/isdn/Kconfig
10008 F:      drivers/isdn/Makefile
10009 F:      drivers/isdn/hardware/
10010 F:      drivers/isdn/mISDN/
10011
10012 IT87 HARDWARE MONITORING DRIVER
10013 M:      Jean Delvare <jdelvare@suse.com>
10014 L:      linux-hwmon@vger.kernel.org
10015 S:      Maintained
10016 F:      Documentation/hwmon/it87.rst
10017 F:      drivers/hwmon/it87.c
10018
10019 IT913X MEDIA DRIVER
10020 M:      Antti Palosaari <crope@iki.fi>
10021 L:      linux-media@vger.kernel.org
10022 S:      Maintained
10023 W:      https://linuxtv.org
10024 W:      http://palosaari.fi/linux/
10025 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10026 T:      git git://linuxtv.org/anttip/media_tree.git
10027 F:      drivers/media/tuners/it913x*
10028
10029 ITE IT66121 HDMI BRIDGE DRIVER
10030 M:      Phong LE <ple@baylibre.com>
10031 M:      Neil Armstrong <narmstrong@baylibre.com>
10032 S:      Maintained
10033 T:      git git://anongit.freedesktop.org/drm/drm-misc
10034 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10035 F:      drivers/gpu/drm/bridge/ite-it66121.c
10036
10037 IVTV VIDEO4LINUX DRIVER
10038 M:      Andy Walls <awalls@md.metrocast.net>
10039 L:      linux-media@vger.kernel.org
10040 S:      Maintained
10041 W:      https://linuxtv.org
10042 T:      git git://linuxtv.org/media_tree.git
10043 F:      Documentation/admin-guide/media/ivtv*
10044 F:      drivers/media/pci/ivtv/
10045 F:      include/uapi/linux/ivtv*
10046
10047 IX2505V MEDIA DRIVER
10048 M:      Malcolm Priestley <tvboxspy@gmail.com>
10049 L:      linux-media@vger.kernel.org
10050 S:      Maintained
10051 W:      https://linuxtv.org
10052 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10053 F:      drivers/media/dvb-frontends/ix2505v*
10054
10055 JAILHOUSE HYPERVISOR INTERFACE
10056 M:      Jan Kiszka <jan.kiszka@siemens.com>
10057 L:      jailhouse-dev@googlegroups.com
10058 S:      Maintained
10059 F:      arch/x86/include/asm/jailhouse_para.h
10060 F:      arch/x86/kernel/jailhouse.c
10061
10062 JC42.4 TEMPERATURE SENSOR DRIVER
10063 M:      Guenter Roeck <linux@roeck-us.net>
10064 L:      linux-hwmon@vger.kernel.org
10065 S:      Maintained
10066 F:      Documentation/hwmon/jc42.rst
10067 F:      drivers/hwmon/jc42.c
10068
10069 JFS FILESYSTEM
10070 M:      Dave Kleikamp <shaggy@kernel.org>
10071 L:      jfs-discussion@lists.sourceforge.net
10072 S:      Maintained
10073 W:      http://jfs.sourceforge.net/
10074 T:      git git://github.com/kleikamp/linux-shaggy.git
10075 F:      Documentation/admin-guide/jfs.rst
10076 F:      fs/jfs/
10077
10078 JME NETWORK DRIVER
10079 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10080 L:      netdev@vger.kernel.org
10081 S:      Maintained
10082 F:      drivers/net/ethernet/jme.*
10083
10084 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10085 M:      David Woodhouse <dwmw2@infradead.org>
10086 M:      Richard Weinberger <richard@nod.at>
10087 L:      linux-mtd@lists.infradead.org
10088 S:      Odd Fixes
10089 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10090 T:      git git://git.infradead.org/ubifs-2.6.git
10091 F:      fs/jffs2/
10092 F:      include/uapi/linux/jffs2.h
10093
10094 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10095 M:      "Theodore Ts'o" <tytso@mit.edu>
10096 M:      Jan Kara <jack@suse.com>
10097 L:      linux-ext4@vger.kernel.org
10098 S:      Maintained
10099 F:      fs/jbd2/
10100 F:      include/linux/jbd2.h
10101
10102 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10103 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10104 L:      linux-media@vger.kernel.org
10105 S:      Maintained
10106 F:      drivers/media/platform/rcar_jpu.c
10107
10108 JSM Neo PCI based serial card
10109 L:      linux-serial@vger.kernel.org
10110 S:      Orphan
10111 F:      drivers/tty/serial/jsm/
10112
10113 K10TEMP HARDWARE MONITORING DRIVER
10114 M:      Clemens Ladisch <clemens@ladisch.de>
10115 L:      linux-hwmon@vger.kernel.org
10116 S:      Maintained
10117 F:      Documentation/hwmon/k10temp.rst
10118 F:      drivers/hwmon/k10temp.c
10119
10120 K8TEMP HARDWARE MONITORING DRIVER
10121 M:      Rudolf Marek <r.marek@assembler.cz>
10122 L:      linux-hwmon@vger.kernel.org
10123 S:      Maintained
10124 F:      Documentation/hwmon/k8temp.rst
10125 F:      drivers/hwmon/k8temp.c
10126
10127 KASAN
10128 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10129 R:      Alexander Potapenko <glider@google.com>
10130 R:      Andrey Konovalov <andreyknvl@gmail.com>
10131 R:      Dmitry Vyukov <dvyukov@google.com>
10132 L:      kasan-dev@googlegroups.com
10133 S:      Maintained
10134 F:      Documentation/dev-tools/kasan.rst
10135 F:      arch/*/include/asm/*kasan.h
10136 F:      arch/*/mm/kasan_init*
10137 F:      include/linux/kasan*.h
10138 F:      lib/Kconfig.kasan
10139 F:      lib/test_kasan*.c
10140 F:      mm/kasan/
10141 F:      scripts/Makefile.kasan
10142
10143 KCONFIG
10144 M:      Masahiro Yamada <masahiroy@kernel.org>
10145 L:      linux-kbuild@vger.kernel.org
10146 S:      Maintained
10147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10148 F:      Documentation/kbuild/kconfig*
10149 F:      scripts/Kconfig.include
10150 F:      scripts/kconfig/
10151
10152 KCOV
10153 R:      Dmitry Vyukov <dvyukov@google.com>
10154 R:      Andrey Konovalov <andreyknvl@gmail.com>
10155 L:      kasan-dev@googlegroups.com
10156 S:      Maintained
10157 F:      Documentation/dev-tools/kcov.rst
10158 F:      include/linux/kcov.h
10159 F:      include/uapi/linux/kcov.h
10160 F:      kernel/kcov.c
10161 F:      scripts/Makefile.kcov
10162
10163 KCSAN
10164 M:      Marco Elver <elver@google.com>
10165 R:      Dmitry Vyukov <dvyukov@google.com>
10166 L:      kasan-dev@googlegroups.com
10167 S:      Maintained
10168 F:      Documentation/dev-tools/kcsan.rst
10169 F:      include/linux/kcsan*.h
10170 F:      kernel/kcsan/
10171 F:      lib/Kconfig.kcsan
10172 F:      scripts/Makefile.kcsan
10173
10174 KDUMP
10175 M:      Dave Young <dyoung@redhat.com>
10176 M:      Baoquan He <bhe@redhat.com>
10177 R:      Vivek Goyal <vgoyal@redhat.com>
10178 L:      kexec@lists.infradead.org
10179 S:      Maintained
10180 W:      http://lse.sourceforge.net/kdump/
10181 F:      Documentation/admin-guide/kdump/
10182 F:      fs/proc/vmcore.c
10183 F:      include/linux/crash_core.h
10184 F:      include/linux/crash_dump.h
10185 F:      include/uapi/linux/vmcore.h
10186 F:      kernel/crash_*.c
10187
10188 KEENE FM RADIO TRANSMITTER DRIVER
10189 M:      Hans Verkuil <hverkuil@xs4all.nl>
10190 L:      linux-media@vger.kernel.org
10191 S:      Maintained
10192 W:      https://linuxtv.org
10193 T:      git git://linuxtv.org/media_tree.git
10194 F:      drivers/media/radio/radio-keene*
10195
10196 KERNEL AUTOMOUNTER
10197 M:      Ian Kent <raven@themaw.net>
10198 L:      autofs@vger.kernel.org
10199 S:      Maintained
10200 F:      fs/autofs/
10201
10202 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10203 M:      Masahiro Yamada <masahiroy@kernel.org>
10204 M:      Michal Marek <michal.lkml@markovi.net>
10205 R:      Nick Desaulniers <ndesaulniers@google.com>
10206 L:      linux-kbuild@vger.kernel.org
10207 S:      Maintained
10208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10209 F:      Documentation/kbuild/
10210 F:      Makefile
10211 F:      scripts/*vmlinux*
10212 F:      scripts/Kbuild*
10213 F:      scripts/Makefile*
10214 F:      scripts/basic/
10215 F:      scripts/dummy-tools/
10216 F:      scripts/mk*
10217 F:      scripts/mod/
10218 F:      scripts/package/
10219
10220 KERNEL JANITORS
10221 L:      kernel-janitors@vger.kernel.org
10222 S:      Odd Fixes
10223 W:      http://kernelnewbies.org/KernelJanitors
10224
10225 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10226 M:      "J. Bruce Fields" <bfields@fieldses.org>
10227 M:      Chuck Lever <chuck.lever@oracle.com>
10228 L:      linux-nfs@vger.kernel.org
10229 S:      Supported
10230 W:      http://nfs.sourceforge.net/
10231 T:      git git://linux-nfs.org/~bfields/linux.git
10232 F:      fs/lockd/
10233 F:      fs/nfs_common/
10234 F:      fs/nfsd/
10235 F:      include/linux/lockd/
10236 F:      include/linux/sunrpc/
10237 F:      include/uapi/linux/nfsd/
10238 F:      include/uapi/linux/sunrpc/
10239 F:      net/sunrpc/
10240 F:      Documentation/filesystems/nfs/
10241
10242 KERNEL REGRESSIONS
10243 M:      Thorsten Leemhuis <linux@leemhuis.info>
10244 L:      regressions@lists.linux.dev
10245 S:      Supported
10246
10247 KERNEL SELFTEST FRAMEWORK
10248 M:      Shuah Khan <shuah@kernel.org>
10249 M:      Shuah Khan <skhan@linuxfoundation.org>
10250 L:      linux-kselftest@vger.kernel.org
10251 S:      Maintained
10252 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10254 F:      Documentation/dev-tools/kselftest*
10255 F:      tools/testing/selftests/
10256
10257 KERNEL SMB3 SERVER (KSMBD)
10258 M:      Namjae Jeon <linkinjeon@kernel.org>
10259 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10260 M:      Steve French <sfrench@samba.org>
10261 M:      Hyunchul Lee <hyc.lee@gmail.com>
10262 L:      linux-cifs@vger.kernel.org
10263 S:      Maintained
10264 T:      git git://git.samba.org/ksmbd.git
10265 F:      fs/ksmbd/
10266 F:      fs/smbfs_common/
10267
10268 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10269 M:      Brendan Higgins <brendanhiggins@google.com>
10270 L:      linux-kselftest@vger.kernel.org
10271 L:      kunit-dev@googlegroups.com
10272 S:      Maintained
10273 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10274 F:      Documentation/dev-tools/kunit/
10275 F:      include/kunit/
10276 F:      lib/kunit/
10277 F:      tools/testing/kunit/
10278
10279 KERNEL USERMODE HELPER
10280 M:      Luis Chamberlain <mcgrof@kernel.org>
10281 L:      linux-kernel@vger.kernel.org
10282 S:      Maintained
10283 F:      include/linux/umh.h
10284 F:      kernel/umh.c
10285
10286 KERNEL VIRTUAL MACHINE (KVM)
10287 M:      Paolo Bonzini <pbonzini@redhat.com>
10288 L:      kvm@vger.kernel.org
10289 S:      Supported
10290 W:      http://www.linux-kvm.org
10291 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10292 F:      Documentation/virt/kvm/
10293 F:      include/asm-generic/kvm*
10294 F:      include/kvm/iodev.h
10295 F:      include/linux/kvm*
10296 F:      include/trace/events/kvm.h
10297 F:      include/uapi/asm-generic/kvm*
10298 F:      include/uapi/linux/kvm*
10299 F:      tools/kvm/
10300 F:      tools/testing/selftests/kvm/
10301 F:      virt/kvm/*
10302
10303 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10304 M:      Marc Zyngier <maz@kernel.org>
10305 R:      James Morse <james.morse@arm.com>
10306 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10307 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10309 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10310 S:      Maintained
10311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10312 F:      arch/arm64/include/asm/kvm*
10313 F:      arch/arm64/include/uapi/asm/kvm*
10314 F:      arch/arm64/kvm/
10315 F:      include/kvm/arm_*
10316 F:      tools/testing/selftests/kvm/*/aarch64/
10317 F:      tools/testing/selftests/kvm/aarch64/
10318
10319 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10320 M:      Huacai Chen <chenhuacai@kernel.org>
10321 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10322 L:      linux-mips@vger.kernel.org
10323 L:      kvm@vger.kernel.org
10324 S:      Maintained
10325 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10326 F:      arch/mips/include/asm/kvm*
10327 F:      arch/mips/include/uapi/asm/kvm*
10328 F:      arch/mips/kvm/
10329
10330 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10331 M:      Paul Mackerras <paulus@ozlabs.org>
10332 L:      kvm-ppc@vger.kernel.org
10333 S:      Supported
10334 W:      http://www.linux-kvm.org/
10335 T:      git git://github.com/agraf/linux-2.6.git
10336 F:      arch/powerpc/include/asm/kvm*
10337 F:      arch/powerpc/include/uapi/asm/kvm*
10338 F:      arch/powerpc/kernel/kvm*
10339 F:      arch/powerpc/kvm/
10340
10341 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10342 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10343 M:      Janosch Frank <frankja@linux.ibm.com>
10344 R:      David Hildenbrand <david@redhat.com>
10345 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10346 L:      kvm@vger.kernel.org
10347 S:      Supported
10348 W:      http://www.ibm.com/developerworks/linux/linux390/
10349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10350 F:      Documentation/virt/kvm/s390*
10351 F:      arch/s390/include/asm/gmap.h
10352 F:      arch/s390/include/asm/kvm*
10353 F:      arch/s390/include/uapi/asm/kvm*
10354 F:      arch/s390/kernel/uv.c
10355 F:      arch/s390/kvm/
10356 F:      arch/s390/mm/gmap.c
10357 F:      tools/testing/selftests/kvm/*/s390x/
10358 F:      tools/testing/selftests/kvm/s390x/
10359
10360 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10361 M:      Paolo Bonzini <pbonzini@redhat.com>
10362 R:      Sean Christopherson <seanjc@google.com>
10363 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10364 R:      Wanpeng Li <wanpengli@tencent.com>
10365 R:      Jim Mattson <jmattson@google.com>
10366 R:      Joerg Roedel <joro@8bytes.org>
10367 L:      kvm@vger.kernel.org
10368 S:      Supported
10369 W:      http://www.linux-kvm.org
10370 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10371 F:      arch/x86/include/asm/kvm*
10372 F:      arch/x86/include/asm/pvclock-abi.h
10373 F:      arch/x86/include/asm/svm.h
10374 F:      arch/x86/include/asm/vmx*.h
10375 F:      arch/x86/include/uapi/asm/kvm*
10376 F:      arch/x86/include/uapi/asm/svm.h
10377 F:      arch/x86/include/uapi/asm/vmx.h
10378 F:      arch/x86/kernel/kvm.c
10379 F:      arch/x86/kernel/kvmclock.c
10380 F:      arch/x86/kvm/
10381 F:      arch/x86/kvm/*/
10382
10383 KERNFS
10384 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10385 M:      Tejun Heo <tj@kernel.org>
10386 S:      Supported
10387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10388 F:      fs/kernfs/
10389 F:      include/linux/kernfs.h
10390
10391 KEXEC
10392 M:      Eric Biederman <ebiederm@xmission.com>
10393 L:      kexec@lists.infradead.org
10394 S:      Maintained
10395 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10396 F:      include/linux/kexec.h
10397 F:      include/uapi/linux/kexec.h
10398 F:      kernel/kexec*
10399
10400 KEYS-ENCRYPTED
10401 M:      Mimi Zohar <zohar@linux.ibm.com>
10402 L:      linux-integrity@vger.kernel.org
10403 L:      keyrings@vger.kernel.org
10404 S:      Supported
10405 F:      Documentation/security/keys/trusted-encrypted.rst
10406 F:      include/keys/encrypted-type.h
10407 F:      security/keys/encrypted-keys/
10408
10409 KEYS-TRUSTED
10410 M:      James Bottomley <jejb@linux.ibm.com>
10411 M:      Jarkko Sakkinen <jarkko@kernel.org>
10412 M:      Mimi Zohar <zohar@linux.ibm.com>
10413 L:      linux-integrity@vger.kernel.org
10414 L:      keyrings@vger.kernel.org
10415 S:      Supported
10416 F:      Documentation/security/keys/trusted-encrypted.rst
10417 F:      include/keys/trusted-type.h
10418 F:      include/keys/trusted_tpm.h
10419 F:      security/keys/trusted-keys/
10420
10421 KEYS-TRUSTED-TEE
10422 M:      Sumit Garg <sumit.garg@linaro.org>
10423 L:      linux-integrity@vger.kernel.org
10424 L:      keyrings@vger.kernel.org
10425 S:      Supported
10426 F:      include/keys/trusted_tee.h
10427 F:      security/keys/trusted-keys/trusted_tee.c
10428
10429 KEYS/KEYRINGS
10430 M:      David Howells <dhowells@redhat.com>
10431 M:      Jarkko Sakkinen <jarkko@kernel.org>
10432 L:      keyrings@vger.kernel.org
10433 S:      Maintained
10434 F:      Documentation/security/keys/core.rst
10435 F:      include/keys/
10436 F:      include/linux/key-type.h
10437 F:      include/linux/key.h
10438 F:      include/linux/keyctl.h
10439 F:      include/uapi/linux/keyctl.h
10440 F:      security/keys/
10441
10442 KFENCE
10443 M:      Alexander Potapenko <glider@google.com>
10444 M:      Marco Elver <elver@google.com>
10445 R:      Dmitry Vyukov <dvyukov@google.com>
10446 L:      kasan-dev@googlegroups.com
10447 S:      Maintained
10448 F:      Documentation/dev-tools/kfence.rst
10449 F:      arch/*/include/asm/kfence.h
10450 F:      include/linux/kfence.h
10451 F:      lib/Kconfig.kfence
10452 F:      mm/kfence/
10453
10454 KFIFO
10455 M:      Stefani Seibold <stefani@seibold.net>
10456 S:      Maintained
10457 F:      include/linux/kfifo.h
10458 F:      lib/kfifo.c
10459 F:      samples/kfifo/
10460
10461 KGDB / KDB /debug_core
10462 M:      Jason Wessel <jason.wessel@windriver.com>
10463 M:      Daniel Thompson <daniel.thompson@linaro.org>
10464 R:      Douglas Anderson <dianders@chromium.org>
10465 L:      kgdb-bugreport@lists.sourceforge.net
10466 S:      Maintained
10467 W:      http://kgdb.wiki.kernel.org/
10468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10469 F:      Documentation/dev-tools/kgdb.rst
10470 F:      drivers/misc/kgdbts.c
10471 F:      drivers/tty/serial/kgdboc.c
10472 F:      include/linux/kdb.h
10473 F:      include/linux/kgdb.h
10474 F:      kernel/debug/
10475
10476 KHADAS MCU MFD DRIVER
10477 M:      Neil Armstrong <narmstrong@baylibre.com>
10478 L:      linux-amlogic@lists.infradead.org
10479 S:      Maintained
10480 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10481 F:      drivers/mfd/khadas-mcu.c
10482 F:      include/linux/mfd/khadas-mcu.h
10483 F:      drivers/thermal/khadas_mcu_fan.c
10484
10485 KMEMLEAK
10486 M:      Catalin Marinas <catalin.marinas@arm.com>
10487 S:      Maintained
10488 F:      Documentation/dev-tools/kmemleak.rst
10489 F:      include/linux/kmemleak.h
10490 F:      mm/kmemleak.c
10491 F:      samples/kmemleak/kmemleak-test.c
10492
10493 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10494 M:      Luis Chamberlain <mcgrof@kernel.org>
10495 L:      linux-kernel@vger.kernel.org
10496 S:      Maintained
10497 F:      include/linux/kmod.h
10498 F:      kernel/kmod.c
10499 F:      lib/test_kmod.c
10500 F:      tools/testing/selftests/kmod/
10501
10502 KPROBES
10503 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10504 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10505 M:      "David S. Miller" <davem@davemloft.net>
10506 M:      Masami Hiramatsu <mhiramat@kernel.org>
10507 S:      Maintained
10508 F:      Documentation/trace/kprobes.rst
10509 F:      include/asm-generic/kprobes.h
10510 F:      include/linux/kprobes.h
10511 F:      kernel/kprobes.c
10512
10513 KS0108 LCD CONTROLLER DRIVER
10514 M:      Miguel Ojeda <ojeda@kernel.org>
10515 S:      Maintained
10516 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10517 F:      drivers/auxdisplay/ks0108.c
10518 F:      include/linux/ks0108.h
10519
10520 KTD253 BACKLIGHT DRIVER
10521 M:      Linus Walleij <linus.walleij@linaro.org>
10522 S:      Maintained
10523 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10524 F:      drivers/video/backlight/ktd253-backlight.c
10525
10526 KTEST
10527 M:      Steven Rostedt <rostedt@goodmis.org>
10528 M:      John Hawley <warthog9@eaglescrag.net>
10529 S:      Maintained
10530 F:      tools/testing/ktest
10531
10532 L3MDEV
10533 M:      David Ahern <dsahern@kernel.org>
10534 L:      netdev@vger.kernel.org
10535 S:      Maintained
10536 F:      include/net/l3mdev.h
10537 F:      net/l3mdev
10538
10539 L7 BPF FRAMEWORK
10540 M:      John Fastabend <john.fastabend@gmail.com>
10541 M:      Daniel Borkmann <daniel@iogearbox.net>
10542 M:      Jakub Sitnicki <jakub@cloudflare.com>
10543 M:      Lorenz Bauer <lmb@cloudflare.com>
10544 L:      netdev@vger.kernel.org
10545 L:      bpf@vger.kernel.org
10546 S:      Maintained
10547 F:      include/linux/skmsg.h
10548 F:      net/core/skmsg.c
10549 F:      net/core/sock_map.c
10550 F:      net/ipv4/tcp_bpf.c
10551 F:      net/ipv4/udp_bpf.c
10552 F:      net/unix/unix_bpf.c
10553
10554 LANDLOCK SECURITY MODULE
10555 M:      Mickaël Salaün <mic@digikod.net>
10556 L:      linux-security-module@vger.kernel.org
10557 S:      Supported
10558 W:      https://landlock.io
10559 T:      git https://github.com/landlock-lsm/linux.git
10560 F:      Documentation/security/landlock.rst
10561 F:      Documentation/userspace-api/landlock.rst
10562 F:      include/uapi/linux/landlock.h
10563 F:      samples/landlock/
10564 F:      security/landlock/
10565 F:      tools/testing/selftests/landlock/
10566 K:      landlock
10567 K:      LANDLOCK
10568
10569 LANTIQ / INTEL Ethernet drivers
10570 M:      Hauke Mehrtens <hauke@hauke-m.de>
10571 L:      netdev@vger.kernel.org
10572 S:      Maintained
10573 F:      drivers/net/dsa/lantiq_gswip.c
10574 F:      drivers/net/dsa/lantiq_pce.h
10575 F:      drivers/net/ethernet/lantiq_xrx200.c
10576 F:      net/dsa/tag_gswip.c
10577
10578 LANTIQ MIPS ARCHITECTURE
10579 M:      John Crispin <john@phrozen.org>
10580 L:      linux-mips@vger.kernel.org
10581 S:      Maintained
10582 F:      arch/mips/lantiq
10583 F:      drivers/soc/lantiq
10584
10585 LASI 53c700 driver for PARISC
10586 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10587 L:      linux-scsi@vger.kernel.org
10588 S:      Maintained
10589 F:      Documentation/scsi/53c700.rst
10590 F:      drivers/scsi/53c700*
10591
10592 LEAKING_ADDRESSES
10593 M:      Tobin C. Harding <me@tobin.cc>
10594 M:      Tycho Andersen <tycho@tycho.pizza>
10595 L:      linux-hardening@vger.kernel.org
10596 S:      Maintained
10597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10598 F:      scripts/leaking_addresses.pl
10599
10600 LED SUBSYSTEM
10601 M:      Pavel Machek <pavel@ucw.cz>
10602 L:      linux-leds@vger.kernel.org
10603 S:      Maintained
10604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10605 F:      Documentation/devicetree/bindings/leds/
10606 F:      drivers/leds/
10607 F:      include/linux/leds.h
10608
10609 LEGACY EEPROM DRIVER
10610 M:      Jean Delvare <jdelvare@suse.com>
10611 S:      Maintained
10612 F:      Documentation/misc-devices/eeprom.rst
10613 F:      drivers/misc/eeprom/eeprom.c
10614
10615 LEGO MINDSTORMS EV3
10616 R:      David Lechner <david@lechnology.com>
10617 S:      Maintained
10618 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10619 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10620 F:      drivers/power/supply/lego_ev3_battery.c
10621
10622 LEGO USB Tower driver
10623 M:      Juergen Stuber <starblue@users.sourceforge.net>
10624 L:      legousb-devel@lists.sourceforge.net
10625 S:      Maintained
10626 W:      http://legousb.sourceforge.net/
10627 F:      drivers/usb/misc/legousbtower.c
10628
10629 LG LAPTOP EXTRAS
10630 M:      Matan Ziv-Av <matan@svgalib.org>
10631 L:      platform-driver-x86@vger.kernel.org
10632 S:      Maintained
10633 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10634 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10635 F:      drivers/platform/x86/lg-laptop.c
10636
10637 LG2160 MEDIA DRIVER
10638 M:      Michael Krufky <mkrufky@linuxtv.org>
10639 L:      linux-media@vger.kernel.org
10640 S:      Maintained
10641 W:      https://linuxtv.org
10642 W:      http://github.com/mkrufky
10643 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10644 T:      git git://linuxtv.org/mkrufky/tuners.git
10645 F:      drivers/media/dvb-frontends/lg2160.*
10646
10647 LGDT3305 MEDIA DRIVER
10648 M:      Michael Krufky <mkrufky@linuxtv.org>
10649 L:      linux-media@vger.kernel.org
10650 S:      Maintained
10651 W:      https://linuxtv.org
10652 W:      http://github.com/mkrufky
10653 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10654 T:      git git://linuxtv.org/mkrufky/tuners.git
10655 F:      drivers/media/dvb-frontends/lgdt3305.*
10656
10657 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10658 M:      Viresh Kumar <vireshk@kernel.org>
10659 L:      linux-ide@vger.kernel.org
10660 S:      Maintained
10661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10662 F:      drivers/ata/pata_arasan_cf.c
10663 F:      include/linux/pata_arasan_cf_data.h
10664
10665 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10666 M:      Linus Walleij <linus.walleij@linaro.org>
10667 L:      linux-ide@vger.kernel.org
10668 S:      Maintained
10669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10670 F:      drivers/ata/pata_ftide010.c
10671 F:      drivers/ata/sata_gemini.c
10672 F:      drivers/ata/sata_gemini.h
10673
10674 LIBATA SATA AHCI PLATFORM devices support
10675 M:      Hans de Goede <hdegoede@redhat.com>
10676 M:      Jens Axboe <axboe@kernel.dk>
10677 L:      linux-ide@vger.kernel.org
10678 S:      Maintained
10679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10680 F:      drivers/ata/ahci_platform.c
10681 F:      drivers/ata/libahci_platform.c
10682 F:      include/linux/ahci_platform.h
10683
10684 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10685 M:      Mikael Pettersson <mikpelinux@gmail.com>
10686 L:      linux-ide@vger.kernel.org
10687 S:      Maintained
10688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10689 F:      drivers/ata/sata_promise.*
10690
10691 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10692 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10693 L:      linux-ide@vger.kernel.org
10694 S:      Maintained
10695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10696 F:      Documentation/devicetree/bindings/ata/
10697 F:      drivers/ata/
10698 F:      include/linux/ata.h
10699 F:      include/linux/libata.h
10700
10701 LIBLOCKDEP
10702 M:      Sasha Levin <alexander.levin@microsoft.com>
10703 S:      Maintained
10704 F:      tools/lib/lockdep/
10705
10706 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10707 M:      Dan Williams <dan.j.williams@intel.com>
10708 M:      Vishal Verma <vishal.l.verma@intel.com>
10709 M:      Dave Jiang <dave.jiang@intel.com>
10710 L:      nvdimm@lists.linux.dev
10711 S:      Supported
10712 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10713 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10714 F:      drivers/nvdimm/blk.c
10715 F:      drivers/nvdimm/region_devs.c
10716
10717 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10718 M:      Vishal Verma <vishal.l.verma@intel.com>
10719 M:      Dan Williams <dan.j.williams@intel.com>
10720 M:      Dave Jiang <dave.jiang@intel.com>
10721 L:      nvdimm@lists.linux.dev
10722 S:      Supported
10723 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10724 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10725 F:      drivers/nvdimm/btt*
10726
10727 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10728 M:      Dan Williams <dan.j.williams@intel.com>
10729 M:      Vishal Verma <vishal.l.verma@intel.com>
10730 M:      Dave Jiang <dave.jiang@intel.com>
10731 L:      nvdimm@lists.linux.dev
10732 S:      Supported
10733 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10734 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10735 F:      drivers/nvdimm/pmem*
10736
10737 LIBNVDIMM: DEVICETREE BINDINGS
10738 M:      Oliver O'Halloran <oohall@gmail.com>
10739 L:      nvdimm@lists.linux.dev
10740 S:      Supported
10741 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10742 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10743 F:      drivers/nvdimm/of_pmem.c
10744
10745 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10746 M:      Dan Williams <dan.j.williams@intel.com>
10747 M:      Vishal Verma <vishal.l.verma@intel.com>
10748 M:      Dave Jiang <dave.jiang@intel.com>
10749 M:      Ira Weiny <ira.weiny@intel.com>
10750 L:      nvdimm@lists.linux.dev
10751 S:      Supported
10752 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10753 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10755 F:      drivers/acpi/nfit/*
10756 F:      drivers/nvdimm/*
10757 F:      include/linux/libnvdimm.h
10758 F:      include/linux/nd.h
10759 F:      include/uapi/linux/ndctl.h
10760 F:      tools/testing/nvdimm/
10761
10762 LICENSES and SPDX stuff
10763 M:      Thomas Gleixner <tglx@linutronix.de>
10764 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10765 L:      linux-spdx@vger.kernel.org
10766 S:      Maintained
10767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10768 F:      COPYING
10769 F:      Documentation/process/license-rules.rst
10770 F:      LICENSES/
10771 F:      scripts/spdxcheck-test.sh
10772 F:      scripts/spdxcheck.py
10773
10774 LINEAR RANGES HELPERS
10775 M:      Mark Brown <broonie@kernel.org>
10776 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10777 F:      lib/linear_ranges.c
10778 F:      lib/test_linear_ranges.c
10779 F:      include/linux/linear_range.h
10780
10781 LINUX FOR POWER MACINTOSH
10782 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10783 L:      linuxppc-dev@lists.ozlabs.org
10784 S:      Odd Fixes
10785 F:      arch/powerpc/platforms/powermac/
10786 F:      drivers/macintosh/
10787
10788 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10789 M:      Michael Ellerman <mpe@ellerman.id.au>
10790 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10791 R:      Paul Mackerras <paulus@samba.org>
10792 L:      linuxppc-dev@lists.ozlabs.org
10793 S:      Supported
10794 W:      https://github.com/linuxppc/wiki/wiki
10795 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10797 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10798 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10799 F:      Documentation/devicetree/bindings/powerpc/
10800 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10801 F:      Documentation/powerpc/
10802 F:      arch/powerpc/
10803 F:      drivers/*/*/*pasemi*
10804 F:      drivers/*/*pasemi*
10805 F:      drivers/char/tpm/tpm_ibmvtpm*
10806 F:      drivers/crypto/nx/
10807 F:      drivers/crypto/vmx/
10808 F:      drivers/i2c/busses/i2c-opal.c
10809 F:      drivers/net/ethernet/ibm/ibmveth.*
10810 F:      drivers/net/ethernet/ibm/ibmvnic.*
10811 F:      drivers/pci/hotplug/pnv_php.c
10812 F:      drivers/pci/hotplug/rpa*
10813 F:      drivers/rtc/rtc-opal.c
10814 F:      drivers/scsi/ibmvscsi/
10815 F:      drivers/tty/hvc/hvc_opal.c
10816 F:      drivers/watchdog/wdrtas.c
10817 F:      tools/testing/selftests/powerpc
10818 N:      /pmac
10819 N:      powermac
10820 N:      powernv
10821 N:      [^a-z0-9]ps3
10822 N:      pseries
10823
10824 LINUX FOR POWERPC EMBEDDED MPC5XXX
10825 M:      Anatolij Gustschin <agust@denx.de>
10826 L:      linuxppc-dev@lists.ozlabs.org
10827 S:      Odd Fixes
10828 F:      arch/powerpc/platforms/512x/
10829 F:      arch/powerpc/platforms/52xx/
10830
10831 LINUX FOR POWERPC EMBEDDED PPC4XX
10832 L:      linuxppc-dev@lists.ozlabs.org
10833 S:      Orphan
10834 F:      arch/powerpc/platforms/40x/
10835 F:      arch/powerpc/platforms/44x/
10836
10837 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10838 M:      Scott Wood <oss@buserror.net>
10839 L:      linuxppc-dev@lists.ozlabs.org
10840 S:      Odd fixes
10841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10842 F:      Documentation/devicetree/bindings/powerpc/fsl/
10843 F:      arch/powerpc/platforms/83xx/
10844 F:      arch/powerpc/platforms/85xx/
10845
10846 LINUX FOR POWERPC EMBEDDED PPC8XX
10847 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10848 L:      linuxppc-dev@lists.ozlabs.org
10849 S:      Maintained
10850 F:      arch/powerpc/platforms/8xx/
10851
10852 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10853 M:      Kees Cook <keescook@chromium.org>
10854 S:      Maintained
10855 F:      drivers/misc/lkdtm/*
10856 F:      tools/testing/selftests/lkdtm/*
10857
10858 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10859 M:      Alan Stern <stern@rowland.harvard.edu>
10860 M:      Andrea Parri <parri.andrea@gmail.com>
10861 M:      Will Deacon <will@kernel.org>
10862 M:      Peter Zijlstra <peterz@infradead.org>
10863 M:      Boqun Feng <boqun.feng@gmail.com>
10864 M:      Nicholas Piggin <npiggin@gmail.com>
10865 M:      David Howells <dhowells@redhat.com>
10866 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10867 M:      Luc Maranget <luc.maranget@inria.fr>
10868 M:      "Paul E. McKenney" <paulmck@kernel.org>
10869 R:      Akira Yokosawa <akiyks@gmail.com>
10870 R:      Daniel Lustig <dlustig@nvidia.com>
10871 R:      Joel Fernandes <joel@joelfernandes.org>
10872 L:      linux-kernel@vger.kernel.org
10873 L:      linux-arch@vger.kernel.org
10874 S:      Supported
10875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10876 F:      Documentation/atomic_bitops.txt
10877 F:      Documentation/atomic_t.txt
10878 F:      Documentation/core-api/refcount-vs-atomic.rst
10879 F:      Documentation/litmus-tests/
10880 F:      Documentation/memory-barriers.txt
10881 F:      tools/memory-model/
10882
10883 LIS3LV02D ACCELEROMETER DRIVER
10884 M:      Eric Piel <eric.piel@tremplin-utc.net>
10885 S:      Maintained
10886 F:      Documentation/misc-devices/lis3lv02d.rst
10887 F:      drivers/misc/lis3lv02d/
10888 F:      drivers/platform/x86/hp_accel.c
10889
10890 LIST KUNIT TEST
10891 M:      David Gow <davidgow@google.com>
10892 L:      linux-kselftest@vger.kernel.org
10893 L:      kunit-dev@googlegroups.com
10894 S:      Maintained
10895 F:      lib/list-test.c
10896
10897 LITEX PLATFORM
10898 M:      Karol Gugala <kgugala@antmicro.com>
10899 M:      Mateusz Holenko <mholenko@antmicro.com>
10900 S:      Maintained
10901 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10902 F:      arch/openrisc/boot/dts/or1klitex.dts
10903 F:      drivers/soc/litex/litex_soc_ctrl.c
10904 F:      drivers/tty/serial/liteuart.c
10905 F:      include/linux/litex.h
10906
10907 LIVE PATCHING
10908 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10909 M:      Jiri Kosina <jikos@kernel.org>
10910 M:      Miroslav Benes <mbenes@suse.cz>
10911 M:      Petr Mladek <pmladek@suse.com>
10912 R:      Joe Lawrence <joe.lawrence@redhat.com>
10913 L:      live-patching@vger.kernel.org
10914 S:      Maintained
10915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10916 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10917 F:      Documentation/livepatch/
10918 F:      arch/powerpc/include/asm/livepatch.h
10919 F:      arch/s390/include/asm/livepatch.h
10920 F:      arch/x86/include/asm/livepatch.h
10921 F:      include/linux/livepatch.h
10922 F:      kernel/livepatch/
10923 F:      lib/livepatch/
10924 F:      samples/livepatch/
10925 F:      tools/testing/selftests/livepatch/
10926
10927 LLC (802.2)
10928 L:      netdev@vger.kernel.org
10929 S:      Odd fixes
10930 F:      include/linux/llc.h
10931 F:      include/net/llc*
10932 F:      include/uapi/linux/llc.h
10933 F:      net/llc/
10934
10935 LM73 HARDWARE MONITOR DRIVER
10936 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10937 L:      linux-hwmon@vger.kernel.org
10938 S:      Maintained
10939 F:      drivers/hwmon/lm73.c
10940
10941 LM78 HARDWARE MONITOR DRIVER
10942 M:      Jean Delvare <jdelvare@suse.com>
10943 L:      linux-hwmon@vger.kernel.org
10944 S:      Maintained
10945 F:      Documentation/hwmon/lm78.rst
10946 F:      drivers/hwmon/lm78.c
10947
10948 LM83 HARDWARE MONITOR DRIVER
10949 M:      Jean Delvare <jdelvare@suse.com>
10950 L:      linux-hwmon@vger.kernel.org
10951 S:      Maintained
10952 F:      Documentation/hwmon/lm83.rst
10953 F:      drivers/hwmon/lm83.c
10954
10955 LM90 HARDWARE MONITOR DRIVER
10956 M:      Jean Delvare <jdelvare@suse.com>
10957 L:      linux-hwmon@vger.kernel.org
10958 S:      Maintained
10959 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10960 F:      Documentation/hwmon/lm90.rst
10961 F:      drivers/hwmon/lm90.c
10962 F:      include/dt-bindings/thermal/lm90.h
10963
10964 LM95234 HARDWARE MONITOR DRIVER
10965 M:      Guenter Roeck <linux@roeck-us.net>
10966 L:      linux-hwmon@vger.kernel.org
10967 S:      Maintained
10968 F:      Documentation/hwmon/lm95234.rst
10969 F:      drivers/hwmon/lm95234.c
10970
10971 LME2510 MEDIA DRIVER
10972 M:      Malcolm Priestley <tvboxspy@gmail.com>
10973 L:      linux-media@vger.kernel.org
10974 S:      Maintained
10975 W:      https://linuxtv.org
10976 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10977 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10978
10979 LOADPIN SECURITY MODULE
10980 M:      Kees Cook <keescook@chromium.org>
10981 S:      Supported
10982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10983 F:      Documentation/admin-guide/LSM/LoadPin.rst
10984 F:      security/loadpin/
10985
10986 LOCKING PRIMITIVES
10987 M:      Peter Zijlstra <peterz@infradead.org>
10988 M:      Ingo Molnar <mingo@redhat.com>
10989 M:      Will Deacon <will@kernel.org>
10990 R:      Waiman Long <longman@redhat.com>
10991 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10992 L:      linux-kernel@vger.kernel.org
10993 S:      Maintained
10994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10995 F:      Documentation/locking/
10996 F:      arch/*/include/asm/spinlock*.h
10997 F:      include/linux/lockdep.h
10998 F:      include/linux/mutex*.h
10999 F:      include/linux/rwlock*.h
11000 F:      include/linux/rwsem*.h
11001 F:      include/linux/seqlock.h
11002 F:      include/linux/spinlock*.h
11003 F:      kernel/locking/
11004 F:      lib/locking*.[ch]
11005 X:      kernel/locking/locktorture.c
11006
11007 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11008 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11009 L:      linux-ntfs-dev@lists.sourceforge.net
11010 S:      Maintained
11011 W:      http://www.linux-ntfs.org/content/view/19/37/
11012 F:      Documentation/admin-guide/ldm.rst
11013 F:      block/partitions/ldm.*
11014
11015 LOGITECH HID GAMING KEYBOARDS
11016 M:      Hans de Goede <hdegoede@redhat.com>
11017 L:      linux-input@vger.kernel.org
11018 S:      Maintained
11019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11020 F:      drivers/hid/hid-lg-g15.c
11021
11022 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11023 M:      Adrien Grassein <adrien.grassein@gmail.com>
11024 S:      Maintained
11025 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11026 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11027
11028 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11029 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11030 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11031 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11032 L:      MPT-FusionLinux.pdl@broadcom.com
11033 L:      linux-scsi@vger.kernel.org
11034 S:      Supported
11035 W:      http://www.avagotech.com/support/
11036 F:      drivers/message/fusion/
11037 F:      drivers/scsi/mpt3sas/
11038
11039 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11040 M:      Matthew Wilcox <willy@infradead.org>
11041 L:      linux-scsi@vger.kernel.org
11042 S:      Maintained
11043 F:      drivers/scsi/sym53c8xx_2/
11044
11045 LTC1660 DAC DRIVER
11046 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11047 L:      linux-iio@vger.kernel.org
11048 S:      Maintained
11049 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11050 F:      drivers/iio/dac/ltc1660.c
11051
11052 LTC2947 HARDWARE MONITOR DRIVER
11053 M:      Nuno Sá <nuno.sa@analog.com>
11054 L:      linux-hwmon@vger.kernel.org
11055 S:      Supported
11056 W:      http://ez.analog.com/community/linux-device-drivers
11057 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11058 F:      drivers/hwmon/ltc2947-core.c
11059 F:      drivers/hwmon/ltc2947-i2c.c
11060 F:      drivers/hwmon/ltc2947-spi.c
11061 F:      drivers/hwmon/ltc2947.h
11062
11063 LTC2983 IIO TEMPERATURE DRIVER
11064 M:      Nuno Sá <nuno.sa@analog.com>
11065 L:      linux-iio@vger.kernel.org
11066 S:      Supported
11067 W:      http://ez.analog.com/community/linux-device-drivers
11068 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11069 F:      drivers/iio/temperature/ltc2983.c
11070
11071 LTC4261 HARDWARE MONITOR DRIVER
11072 M:      Guenter Roeck <linux@roeck-us.net>
11073 L:      linux-hwmon@vger.kernel.org
11074 S:      Maintained
11075 F:      Documentation/hwmon/ltc4261.rst
11076 F:      drivers/hwmon/ltc4261.c
11077
11078 LTC4306 I2C MULTIPLEXER DRIVER
11079 M:      Michael Hennerich <michael.hennerich@analog.com>
11080 L:      linux-i2c@vger.kernel.org
11081 S:      Supported
11082 W:      http://ez.analog.com/community/linux-device-drivers
11083 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11084 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11085
11086 LTP (Linux Test Project)
11087 M:      Mike Frysinger <vapier@gentoo.org>
11088 M:      Cyril Hrubis <chrubis@suse.cz>
11089 M:      Wanlong Gao <wanlong.gao@gmail.com>
11090 M:      Jan Stancek <jstancek@redhat.com>
11091 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11092 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11093 L:      ltp@lists.linux.it (subscribers-only)
11094 S:      Maintained
11095 W:      http://linux-test-project.github.io/
11096 T:      git git://github.com/linux-test-project/ltp.git
11097
11098 LYNX PCS MODULE
11099 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11100 L:      netdev@vger.kernel.org
11101 S:      Supported
11102 F:      drivers/net/pcs/pcs-lynx.c
11103 F:      include/linux/pcs-lynx.h
11104
11105 M68K ARCHITECTURE
11106 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11107 L:      linux-m68k@lists.linux-m68k.org
11108 S:      Maintained
11109 W:      http://www.linux-m68k.org/
11110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11111 F:      arch/m68k/
11112 F:      drivers/zorro/
11113
11114 M68K ON APPLE MACINTOSH
11115 M:      Joshua Thompson <funaho@jurai.org>
11116 L:      linux-m68k@lists.linux-m68k.org
11117 S:      Maintained
11118 W:      http://www.mac.linux-m68k.org/
11119 F:      arch/m68k/mac/
11120 F:      drivers/macintosh/adb-iop.c
11121 F:      drivers/macintosh/via-macii.c
11122
11123 M68K ON HP9000/300
11124 M:      Philip Blundell <philb@gnu.org>
11125 S:      Maintained
11126 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11127 F:      arch/m68k/hp300/
11128
11129 M88DS3103 MEDIA DRIVER
11130 M:      Antti Palosaari <crope@iki.fi>
11131 L:      linux-media@vger.kernel.org
11132 S:      Maintained
11133 W:      https://linuxtv.org
11134 W:      http://palosaari.fi/linux/
11135 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11136 T:      git git://linuxtv.org/anttip/media_tree.git
11137 F:      drivers/media/dvb-frontends/m88ds3103*
11138
11139 M88RS2000 MEDIA DRIVER
11140 M:      Malcolm Priestley <tvboxspy@gmail.com>
11141 L:      linux-media@vger.kernel.org
11142 S:      Maintained
11143 W:      https://linuxtv.org
11144 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11145 F:      drivers/media/dvb-frontends/m88rs2000*
11146
11147 MA901 MASTERKIT USB FM RADIO DRIVER
11148 M:      Alexey Klimov <klimov.linux@gmail.com>
11149 L:      linux-media@vger.kernel.org
11150 S:      Maintained
11151 T:      git git://linuxtv.org/media_tree.git
11152 F:      drivers/media/radio/radio-ma901.c
11153
11154 MAC80211
11155 M:      Johannes Berg <johannes@sipsolutions.net>
11156 L:      linux-wireless@vger.kernel.org
11157 S:      Maintained
11158 W:      https://wireless.wiki.kernel.org/
11159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11161 F:      Documentation/networking/mac80211-injection.rst
11162 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11163 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11164 F:      include/net/mac80211.h
11165 F:      net/mac80211/
11166
11167 MAILBOX API
11168 M:      Jassi Brar <jassisinghbrar@gmail.com>
11169 L:      linux-kernel@vger.kernel.org
11170 S:      Maintained
11171 F:      drivers/mailbox/
11172 F:      include/linux/mailbox_client.h
11173 F:      include/linux/mailbox_controller.h
11174 F:      include/dt-bindings/mailbox/
11175 F:      Documentation/devicetree/bindings/mailbox/
11176
11177 MAILBOX ARM MHUv2
11178 M:      Viresh Kumar <viresh.kumar@linaro.org>
11179 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11180 L:      linux-kernel@vger.kernel.org
11181 S:      Maintained
11182 F:      drivers/mailbox/arm_mhuv2.c
11183 F:      include/linux/mailbox/arm_mhuv2_message.h
11184 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11185
11186 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11187 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11188 M:      Matt Johnston <matt@codeconstruct.com.au>
11189 L:      netdev@vger.kernel.org
11190 S:      Maintained
11191 F:      Documentation/networking/mctp.rst
11192 F:      drivers/net/mctp/
11193 F:      include/net/mctp.h
11194 F:      include/net/mctpdevice.h
11195 F:      include/net/netns/mctp.h
11196 F:      net/mctp/
11197
11198 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11199 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11200 L:      linux-man@vger.kernel.org
11201 S:      Maintained
11202 W:      http://www.kernel.org/doc/man-pages
11203
11204 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11205 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11206 L:      linux-mips@vger.kernel.org
11207 S:      Maintained
11208 F:      arch/mips/boot/dts/img/pistachio*
11209
11210 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11211 M:      Andrew Lunn <andrew@lunn.ch>
11212 M:      Vivien Didelot <vivien.didelot@gmail.com>
11213 L:      netdev@vger.kernel.org
11214 S:      Maintained
11215 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11216 F:      Documentation/networking/devlink/mv88e6xxx.rst
11217 F:      drivers/net/dsa/mv88e6xxx/
11218 F:      include/linux/dsa/mv88e6xxx.h
11219 F:      include/linux/platform_data/mv88e6xxx.h
11220
11221 MARVELL ARMADA 3700 PHY DRIVERS
11222 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11223 S:      Maintained
11224 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11225 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11226 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11227 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11228
11229 MARVELL ARMADA DRM SUPPORT
11230 M:      Russell King <linux@armlinux.org.uk>
11231 S:      Maintained
11232 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11233 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11234 F:      Documentation/devicetree/bindings/display/armada/
11235 F:      drivers/gpu/drm/armada/
11236 F:      include/uapi/drm/armada_drm.h
11237
11238 MARVELL CRYPTO DRIVER
11239 M:      Boris Brezillon <bbrezillon@kernel.org>
11240 M:      Arnaud Ebalard <arno@natisbad.org>
11241 M:      Srujana Challa <schalla@marvell.com>
11242 L:      linux-crypto@vger.kernel.org
11243 S:      Maintained
11244 F:      drivers/crypto/marvell/
11245 F:      include/linux/soc/marvell/octeontx2/
11246
11247 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11248 M:      Mirko Lindner <mlindner@marvell.com>
11249 M:      Stephen Hemminger <stephen@networkplumber.org>
11250 L:      netdev@vger.kernel.org
11251 S:      Maintained
11252 F:      drivers/net/ethernet/marvell/sk*
11253
11254 MARVELL LIBERTAS WIRELESS DRIVER
11255 L:      libertas-dev@lists.infradead.org
11256 S:      Orphan
11257 F:      drivers/net/wireless/marvell/libertas/
11258
11259 MARVELL MACCHIATOBIN SUPPORT
11260 M:      Russell King <linux@armlinux.org.uk>
11261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11262 S:      Maintained
11263 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11264
11265 MARVELL MV643XX ETHERNET DRIVER
11266 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11267 L:      netdev@vger.kernel.org
11268 S:      Maintained
11269 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11270 F:      include/linux/mv643xx.h
11271
11272 MARVELL MV88X3310 PHY DRIVER
11273 M:      Russell King <linux@armlinux.org.uk>
11274 M:      Marek Behún <kabel@kernel.org>
11275 L:      netdev@vger.kernel.org
11276 S:      Maintained
11277 F:      drivers/net/phy/marvell10g.c
11278
11279 MARVELL MVEBU THERMAL DRIVER
11280 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11281 S:      Maintained
11282 F:      drivers/thermal/armada_thermal.c
11283
11284 MARVELL MVNETA ETHERNET DRIVER
11285 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11286 L:      netdev@vger.kernel.org
11287 S:      Maintained
11288 F:      drivers/net/ethernet/marvell/mvneta.*
11289
11290 MARVELL MVPP2 ETHERNET DRIVER
11291 M:      Marcin Wojtas <mw@semihalf.com>
11292 M:      Russell King <linux@armlinux.org.uk>
11293 L:      netdev@vger.kernel.org
11294 S:      Maintained
11295 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11296 F:      drivers/net/ethernet/marvell/mvpp2/
11297
11298 MARVELL MWIFIEX WIRELESS DRIVER
11299 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11300 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11301 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11302 M:      Xinming Hu <huxinming820@gmail.com>
11303 L:      linux-wireless@vger.kernel.org
11304 S:      Maintained
11305 F:      drivers/net/wireless/marvell/mwifiex/
11306
11307 MARVELL MWL8K WIRELESS DRIVER
11308 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11309 L:      linux-wireless@vger.kernel.org
11310 S:      Odd Fixes
11311 F:      drivers/net/wireless/marvell/mwl8k.c
11312
11313 MARVELL NAND CONTROLLER DRIVER
11314 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11315 L:      linux-mtd@lists.infradead.org
11316 S:      Maintained
11317 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11318 F:      drivers/mtd/nand/raw/marvell_nand.c
11319
11320 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11321 M:      Sunil Goutham <sgoutham@marvell.com>
11322 M:      Geetha sowjanya <gakula@marvell.com>
11323 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11324 M:      hariprasad <hkelam@marvell.com>
11325 L:      netdev@vger.kernel.org
11326 S:      Supported
11327 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11328 F:      include/linux/soc/marvell/octeontx2/
11329
11330 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11331 M:      Sunil Goutham <sgoutham@marvell.com>
11332 M:      Linu Cherian <lcherian@marvell.com>
11333 M:      Geetha sowjanya <gakula@marvell.com>
11334 M:      Jerin Jacob <jerinj@marvell.com>
11335 M:      hariprasad <hkelam@marvell.com>
11336 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11337 L:      netdev@vger.kernel.org
11338 S:      Supported
11339 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11340 F:      drivers/net/ethernet/marvell/octeontx2/af/
11341
11342 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11343 M:      Taras Chornyi <tchornyi@marvell.com>
11344 S:      Supported
11345 W:      https://github.com/Marvell-switching/switchdev-prestera
11346 F:      drivers/net/ethernet/marvell/prestera/
11347
11348 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11349 M:      Nicolas Pitre <nico@fluxnic.net>
11350 S:      Odd Fixes
11351 F:      drivers/mmc/host/mvsdio.*
11352
11353 MARVELL USB MDIO CONTROLLER DRIVER
11354 M:      Tobias Waldekranz <tobias@waldekranz.com>
11355 L:      netdev@vger.kernel.org
11356 S:      Maintained
11357 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11358 F:      drivers/net/mdio/mdio-mvusb.c
11359
11360 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11361 M:      Hu Ziji <huziji@marvell.com>
11362 L:      linux-mmc@vger.kernel.org
11363 S:      Supported
11364 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11365 F:      drivers/mmc/host/sdhci-xenon*
11366
11367 MATROX FRAMEBUFFER DRIVER
11368 L:      linux-fbdev@vger.kernel.org
11369 S:      Orphan
11370 F:      drivers/video/fbdev/matrox/matroxfb_*
11371 F:      include/uapi/linux/matroxfb.h
11372
11373 MAX15301 DRIVER
11374 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11375 L:      linux-hwmon@vger.kernel.org
11376 S:      Maintained
11377 F:      Documentation/hwmon/max15301.rst
11378 F:      drivers/hwmon/pmbus/max15301.c
11379
11380 MAX16065 HARDWARE MONITOR DRIVER
11381 M:      Guenter Roeck <linux@roeck-us.net>
11382 L:      linux-hwmon@vger.kernel.org
11383 S:      Maintained
11384 F:      Documentation/hwmon/max16065.rst
11385 F:      drivers/hwmon/max16065.c
11386
11387 MAX2175 SDR TUNER DRIVER
11388 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11389 L:      linux-media@vger.kernel.org
11390 S:      Maintained
11391 T:      git git://linuxtv.org/media_tree.git
11392 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11393 F:      Documentation/userspace-api/media/drivers/max2175.rst
11394 F:      drivers/media/i2c/max2175*
11395 F:      include/uapi/linux/max2175.h
11396
11397 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11398 L:      linux-hwmon@vger.kernel.org
11399 S:      Orphan
11400 F:      Documentation/hwmon/max6650.rst
11401 F:      drivers/hwmon/max6650.c
11402
11403 MAX6697 HARDWARE MONITOR DRIVER
11404 M:      Guenter Roeck <linux@roeck-us.net>
11405 L:      linux-hwmon@vger.kernel.org
11406 S:      Maintained
11407 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11408 F:      Documentation/hwmon/max6697.rst
11409 F:      drivers/hwmon/max6697.c
11410 F:      include/linux/platform_data/max6697.h
11411
11412 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11413 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11414 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11415 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11416 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11417 L:      linux-media@vger.kernel.org
11418 S:      Maintained
11419 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11420 F:      drivers/media/i2c/max9286.c
11421
11422 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11423 M:      Peter Rosin <peda@axentia.se>
11424 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11425 S:      Maintained
11426 F:      Documentation/devicetree/bindings/sound/max9860.txt
11427 F:      sound/soc/codecs/max9860.*
11428
11429 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11430 M:      Andreas Klinger <ak@it-klinger.de>
11431 L:      linux-iio@vger.kernel.org
11432 S:      Maintained
11433 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11434 F:      drivers/iio/proximity/mb1232.c
11435
11436 MAXIM MAX77650 PMIC MFD DRIVER
11437 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11438 L:      linux-kernel@vger.kernel.org
11439 S:      Maintained
11440 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11441 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11442 F:      drivers/gpio/gpio-max77650.c
11443 F:      drivers/input/misc/max77650-onkey.c
11444 F:      drivers/leds/leds-max77650.c
11445 F:      drivers/mfd/max77650.c
11446 F:      drivers/power/supply/max77650-charger.c
11447 F:      drivers/regulator/max77650-regulator.c
11448 F:      include/linux/mfd/max77650.h
11449
11450 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11451 M:      Javier Martinez Canillas <javier@dowhile0.org>
11452 L:      linux-kernel@vger.kernel.org
11453 S:      Supported
11454 F:      Documentation/devicetree/bindings/*/*max77802.txt
11455 F:      drivers/regulator/max77802-regulator.c
11456 F:      include/dt-bindings/*/*max77802.h
11457
11458 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11459 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11460 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11461 L:      linux-pm@vger.kernel.org
11462 S:      Supported
11463 F:      drivers/power/supply/max14577_charger.c
11464 F:      drivers/power/supply/max77693_charger.c
11465
11466 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11467 M:      Chanwoo Choi <cw00.choi@samsung.com>
11468 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11469 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11470 L:      linux-kernel@vger.kernel.org
11471 S:      Supported
11472 F:      Documentation/devicetree/bindings/*/max77686.txt
11473 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11474 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11475 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11476 F:      drivers/*/max14577*.c
11477 F:      drivers/*/max77686*.c
11478 F:      drivers/*/max77693*.c
11479 F:      drivers/clk/clk-max77686.c
11480 F:      drivers/extcon/extcon-max14577.c
11481 F:      drivers/extcon/extcon-max77693.c
11482 F:      drivers/rtc/rtc-max77686.c
11483 F:      include/linux/mfd/max14577*.h
11484 F:      include/linux/mfd/max77686*.h
11485 F:      include/linux/mfd/max77693*.h
11486
11487 MAXIRADIO FM RADIO RECEIVER DRIVER
11488 M:      Hans Verkuil <hverkuil@xs4all.nl>
11489 L:      linux-media@vger.kernel.org
11490 S:      Maintained
11491 W:      https://linuxtv.org
11492 T:      git git://linuxtv.org/media_tree.git
11493 F:      drivers/media/radio/radio-maxiradio*
11494
11495 MAXLINEAR ETHERNET PHY DRIVER
11496 M:      Xu Liang <lxu@maxlinear.com>
11497 L:      netdev@vger.kernel.org
11498 S:      Supported
11499 F:      drivers/net/phy/mxl-gpy.c
11500
11501 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11502 R:      Yasushi SHOJI <yashi@spacecubics.com>
11503 L:      linux-can@vger.kernel.org
11504 S:      Maintained
11505 F:      drivers/net/can/usb/mcba_usb.c
11506
11507 MCAN MMIO DEVICE DRIVER
11508 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11509 L:      linux-can@vger.kernel.org
11510 S:      Maintained
11511 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11512 F:      drivers/net/can/m_can/m_can.c
11513 F:      drivers/net/can/m_can/m_can.h
11514 F:      drivers/net/can/m_can/m_can_platform.c
11515
11516 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11517 M:      Rishi Gupta <gupt21@gmail.com>
11518 L:      linux-i2c@vger.kernel.org
11519 L:      linux-input@vger.kernel.org
11520 S:      Maintained
11521 F:      drivers/hid/hid-mcp2221.c
11522
11523 MCP251XFD SPI-CAN NETWORK DRIVER
11524 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11525 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11526 R:      Thomas Kopp <thomas.kopp@microchip.com>
11527 L:      linux-can@vger.kernel.org
11528 S:      Maintained
11529 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11530 F:      drivers/net/can/spi/mcp251xfd/
11531
11532 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11533 M:      Peter Rosin <peda@axentia.se>
11534 L:      linux-iio@vger.kernel.org
11535 S:      Maintained
11536 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11537 F:      drivers/iio/potentiometer/mcp4018.c
11538 F:      drivers/iio/potentiometer/mcp4531.c
11539
11540 MCR20A IEEE-802.15.4 RADIO DRIVER
11541 M:      Xue Liu <liuxuenetmail@gmail.com>
11542 L:      linux-wpan@vger.kernel.org
11543 S:      Maintained
11544 W:      https://github.com/xueliu/mcr20a-linux
11545 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11546 F:      drivers/net/ieee802154/mcr20a.c
11547 F:      drivers/net/ieee802154/mcr20a.h
11548
11549 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11550 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11551 L:      linux-iio@vger.kernel.org
11552 S:      Maintained
11553 F:      drivers/iio/dac/cio-dac.c
11554
11555 MEDIA CONTROLLER FRAMEWORK
11556 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11557 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11558 L:      linux-media@vger.kernel.org
11559 S:      Supported
11560 W:      https://www.linuxtv.org
11561 T:      git git://linuxtv.org/media_tree.git
11562 F:      drivers/media/mc/
11563 F:      include/media/media-*.h
11564 F:      include/uapi/linux/media.h
11565
11566 MEDIA DRIVER FOR FREESCALE IMX PXP
11567 M:      Philipp Zabel <p.zabel@pengutronix.de>
11568 L:      linux-media@vger.kernel.org
11569 S:      Maintained
11570 T:      git git://linuxtv.org/media_tree.git
11571 F:      drivers/media/platform/imx-pxp.[ch]
11572
11573 MEDIA DRIVERS FOR ASCOT2E
11574 M:      Sergey Kozlov <serjk@netup.ru>
11575 M:      Abylay Ospan <aospan@netup.ru>
11576 L:      linux-media@vger.kernel.org
11577 S:      Supported
11578 W:      https://linuxtv.org
11579 W:      http://netup.tv/
11580 T:      git git://linuxtv.org/media_tree.git
11581 F:      drivers/media/dvb-frontends/ascot2e*
11582
11583 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11584 M:      Jasmin Jessich <jasmin@anw.at>
11585 L:      linux-media@vger.kernel.org
11586 S:      Maintained
11587 W:      https://linuxtv.org
11588 T:      git git://linuxtv.org/media_tree.git
11589 F:      drivers/media/dvb-frontends/cxd2099*
11590
11591 MEDIA DRIVERS FOR CXD2841ER
11592 M:      Sergey Kozlov <serjk@netup.ru>
11593 M:      Abylay Ospan <aospan@netup.ru>
11594 L:      linux-media@vger.kernel.org
11595 S:      Supported
11596 W:      https://linuxtv.org
11597 W:      http://netup.tv/
11598 T:      git git://linuxtv.org/media_tree.git
11599 F:      drivers/media/dvb-frontends/cxd2841er*
11600
11601 MEDIA DRIVERS FOR CXD2880
11602 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11603 L:      linux-media@vger.kernel.org
11604 S:      Supported
11605 W:      http://linuxtv.org/
11606 T:      git git://linuxtv.org/media_tree.git
11607 F:      drivers/media/dvb-frontends/cxd2880/*
11608 F:      drivers/media/spi/cxd2880*
11609
11610 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11611 L:      linux-media@vger.kernel.org
11612 S:      Orphan
11613 W:      https://linuxtv.org
11614 T:      git git://linuxtv.org/media_tree.git
11615 F:      drivers/media/pci/ddbridge/*
11616
11617 MEDIA DRIVERS FOR FREESCALE IMX
11618 M:      Steve Longerbeam <slongerbeam@gmail.com>
11619 M:      Philipp Zabel <p.zabel@pengutronix.de>
11620 L:      linux-media@vger.kernel.org
11621 S:      Maintained
11622 T:      git git://linuxtv.org/media_tree.git
11623 F:      Documentation/admin-guide/media/imx.rst
11624 F:      Documentation/devicetree/bindings/media/imx.txt
11625 F:      drivers/staging/media/imx/
11626 F:      include/linux/imx-media.h
11627 F:      include/media/imx.h
11628
11629 MEDIA DRIVERS FOR FREESCALE IMX7
11630 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11631 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11632 L:      linux-media@vger.kernel.org
11633 S:      Maintained
11634 T:      git git://linuxtv.org/media_tree.git
11635 F:      Documentation/admin-guide/media/imx7.rst
11636 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11637 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11638 F:      drivers/staging/media/imx/imx7-media-csi.c
11639 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11640
11641 MEDIA DRIVERS FOR HELENE
11642 M:      Abylay Ospan <aospan@netup.ru>
11643 L:      linux-media@vger.kernel.org
11644 S:      Supported
11645 W:      https://linuxtv.org
11646 W:      http://netup.tv/
11647 T:      git git://linuxtv.org/media_tree.git
11648 F:      drivers/media/dvb-frontends/helene*
11649
11650 MEDIA DRIVERS FOR HORUS3A
11651 M:      Sergey Kozlov <serjk@netup.ru>
11652 M:      Abylay Ospan <aospan@netup.ru>
11653 L:      linux-media@vger.kernel.org
11654 S:      Supported
11655 W:      https://linuxtv.org
11656 W:      http://netup.tv/
11657 T:      git git://linuxtv.org/media_tree.git
11658 F:      drivers/media/dvb-frontends/horus3a*
11659
11660 MEDIA DRIVERS FOR LNBH25
11661 M:      Sergey Kozlov <serjk@netup.ru>
11662 M:      Abylay Ospan <aospan@netup.ru>
11663 L:      linux-media@vger.kernel.org
11664 S:      Supported
11665 W:      https://linuxtv.org
11666 W:      http://netup.tv/
11667 T:      git git://linuxtv.org/media_tree.git
11668 F:      drivers/media/dvb-frontends/lnbh25*
11669
11670 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11671 L:      linux-media@vger.kernel.org
11672 S:      Orphan
11673 W:      https://linuxtv.org
11674 T:      git git://linuxtv.org/media_tree.git
11675 F:      drivers/media/dvb-frontends/mxl5xx*
11676
11677 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11678 M:      Sergey Kozlov <serjk@netup.ru>
11679 M:      Abylay Ospan <aospan@netup.ru>
11680 L:      linux-media@vger.kernel.org
11681 S:      Supported
11682 W:      https://linuxtv.org
11683 W:      http://netup.tv/
11684 T:      git git://linuxtv.org/media_tree.git
11685 F:      drivers/media/pci/netup_unidvb/*
11686
11687 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11688 M:      Dmitry Osipenko <digetx@gmail.com>
11689 L:      linux-media@vger.kernel.org
11690 L:      linux-tegra@vger.kernel.org
11691 S:      Maintained
11692 T:      git git://linuxtv.org/media_tree.git
11693 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11694 F:      drivers/staging/media/tegra-vde/
11695
11696 MEDIA DRIVERS FOR RENESAS - CEU
11697 M:      Jacopo Mondi <jacopo@jmondi.org>
11698 L:      linux-media@vger.kernel.org
11699 L:      linux-renesas-soc@vger.kernel.org
11700 S:      Supported
11701 T:      git git://linuxtv.org/media_tree.git
11702 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11703 F:      drivers/media/platform/renesas-ceu.c
11704 F:      include/media/drv-intf/renesas-ceu.h
11705
11706 MEDIA DRIVERS FOR RENESAS - DRIF
11707 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11708 L:      linux-media@vger.kernel.org
11709 L:      linux-renesas-soc@vger.kernel.org
11710 S:      Supported
11711 T:      git git://linuxtv.org/media_tree.git
11712 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11713 F:      drivers/media/platform/rcar_drif.c
11714
11715 MEDIA DRIVERS FOR RENESAS - FCP
11716 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11717 L:      linux-media@vger.kernel.org
11718 L:      linux-renesas-soc@vger.kernel.org
11719 S:      Supported
11720 T:      git git://linuxtv.org/media_tree.git
11721 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11722 F:      drivers/media/platform/rcar-fcp.c
11723 F:      include/media/rcar-fcp.h
11724
11725 MEDIA DRIVERS FOR RENESAS - FDP1
11726 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11727 L:      linux-media@vger.kernel.org
11728 L:      linux-renesas-soc@vger.kernel.org
11729 S:      Supported
11730 T:      git git://linuxtv.org/media_tree.git
11731 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11732 F:      drivers/media/platform/rcar_fdp1.c
11733
11734 MEDIA DRIVERS FOR RENESAS - VIN
11735 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11736 L:      linux-media@vger.kernel.org
11737 L:      linux-renesas-soc@vger.kernel.org
11738 S:      Supported
11739 T:      git git://linuxtv.org/media_tree.git
11740 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11741 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11742 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11743 F:      drivers/media/platform/rcar-vin/
11744
11745 MEDIA DRIVERS FOR RENESAS - VSP1
11746 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11747 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11748 L:      linux-media@vger.kernel.org
11749 L:      linux-renesas-soc@vger.kernel.org
11750 S:      Supported
11751 T:      git git://linuxtv.org/media_tree.git
11752 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11753 F:      drivers/media/platform/vsp1/
11754
11755 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11756 L:      linux-media@vger.kernel.org
11757 S:      Orphan
11758 W:      https://linuxtv.org
11759 T:      git git://linuxtv.org/media_tree.git
11760 F:      drivers/media/dvb-frontends/stv0910*
11761
11762 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11763 L:      linux-media@vger.kernel.org
11764 S:      Orphan
11765 W:      https://linuxtv.org
11766 T:      git git://linuxtv.org/media_tree.git
11767 F:      drivers/media/dvb-frontends/stv6111*
11768
11769 MEDIA DRIVERS FOR STM32 - DCMI
11770 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11771 L:      linux-media@vger.kernel.org
11772 S:      Supported
11773 T:      git git://linuxtv.org/media_tree.git
11774 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11775 F:      drivers/media/platform/stm32/stm32-dcmi.c
11776
11777 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11778 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11779 L:      linux-media@vger.kernel.org
11780 S:      Maintained
11781 W:      https://linuxtv.org
11782 Q:      http://patchwork.kernel.org/project/linux-media/list/
11783 T:      git git://linuxtv.org/media_tree.git
11784 F:      Documentation/admin-guide/media/
11785 F:      Documentation/devicetree/bindings/media/
11786 F:      Documentation/driver-api/media/
11787 F:      Documentation/userspace-api/media/
11788 F:      drivers/media/
11789 F:      drivers/staging/media/
11790 F:      include/linux/platform_data/media/
11791 F:      include/media/
11792 F:      include/uapi/linux/dvb/
11793 F:      include/uapi/linux/ivtv*
11794 F:      include/uapi/linux/media.h
11795 F:      include/uapi/linux/meye.h
11796 F:      include/uapi/linux/uvcvideo.h
11797 F:      include/uapi/linux/v4l2-*
11798 F:      include/uapi/linux/videodev2.h
11799
11800 MEDIATEK BLUETOOTH DRIVER
11801 M:      Sean Wang <sean.wang@mediatek.com>
11802 L:      linux-bluetooth@vger.kernel.org
11803 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11804 S:      Maintained
11805 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11806 F:      drivers/bluetooth/btmtkuart.c
11807
11808 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11809 M:      Sean Wang <sean.wang@mediatek.com>
11810 L:      linux-pm@vger.kernel.org
11811 S:      Maintained
11812 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11813 F:      drivers/power/reset/mt6323-poweroff.c
11814
11815 MEDIATEK CIR DRIVER
11816 M:      Sean Wang <sean.wang@mediatek.com>
11817 S:      Maintained
11818 F:      drivers/media/rc/mtk-cir.c
11819
11820 MEDIATEK DMA DRIVER
11821 M:      Sean Wang <sean.wang@mediatek.com>
11822 L:      dmaengine@vger.kernel.org
11823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11824 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11825 S:      Maintained
11826 F:      Documentation/devicetree/bindings/dma/mtk-*
11827 F:      drivers/dma/mediatek/
11828
11829 MEDIATEK ETHERNET DRIVER
11830 M:      Felix Fietkau <nbd@nbd.name>
11831 M:      John Crispin <john@phrozen.org>
11832 M:      Sean Wang <sean.wang@mediatek.com>
11833 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11834 L:      netdev@vger.kernel.org
11835 S:      Maintained
11836 F:      drivers/net/ethernet/mediatek/
11837
11838 MEDIATEK I2C CONTROLLER DRIVER
11839 M:      Qii Wang <qii.wang@mediatek.com>
11840 L:      linux-i2c@vger.kernel.org
11841 S:      Maintained
11842 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11843 F:      drivers/i2c/busses/i2c-mt65xx.c
11844
11845 MEDIATEK IOMMU DRIVER
11846 M:      Yong Wu <yong.wu@mediatek.com>
11847 L:      iommu@lists.linux-foundation.org
11848 L:      iommu@lists.linux.dev
11849 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11850 S:      Supported
11851 F:      Documentation/devicetree/bindings/iommu/mediatek*
11852 F:      drivers/iommu/mtk_iommu*
11853 F:      include/dt-bindings/memory/mt*-port.h
11854
11855 MEDIATEK JPEG DRIVER
11856 M:      Rick Chang <rick.chang@mediatek.com>
11857 M:      Bin Liu <bin.liu@mediatek.com>
11858 S:      Supported
11859 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11860 F:      drivers/media/platform/mtk-jpeg/
11861
11862 MEDIATEK MDP DRIVER
11863 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11864 M:      Houlong Wei <houlong.wei@mediatek.com>
11865 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11866 S:      Supported
11867 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11868 F:      drivers/media/platform/mtk-mdp/
11869 F:      drivers/media/platform/mtk-vpu/
11870
11871 MEDIATEK MEDIA DRIVER
11872 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11873 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11874 S:      Supported
11875 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11876 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11877 F:      drivers/media/platform/mtk-vcodec/
11878 F:      drivers/media/platform/mtk-vpu/
11879
11880 MEDIATEK MMC/SD/SDIO DRIVER
11881 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11882 S:      Maintained
11883 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11884 F:      drivers/mmc/host/mtk-sd.c
11885
11886 MEDIATEK MT76 WIRELESS LAN DRIVER
11887 M:      Felix Fietkau <nbd@nbd.name>
11888 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11889 R:      Ryder Lee <ryder.lee@mediatek.com>
11890 L:      linux-wireless@vger.kernel.org
11891 S:      Maintained
11892 F:      drivers/net/wireless/mediatek/mt76/
11893
11894 MEDIATEK MT7601U WIRELESS LAN DRIVER
11895 M:      Jakub Kicinski <kubakici@wp.pl>
11896 L:      linux-wireless@vger.kernel.org
11897 S:      Maintained
11898 F:      drivers/net/wireless/mediatek/mt7601u/
11899
11900 MEDIATEK MT7621 CLOCK DRIVER
11901 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11902 S:      Maintained
11903 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11904 F:      drivers/clk/ralink/clk-mt7621.c
11905
11906 MEDIATEK MT7621/28/88 I2C DRIVER
11907 M:      Stefan Roese <sr@denx.de>
11908 L:      linux-i2c@vger.kernel.org
11909 S:      Maintained
11910 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11911 F:      drivers/i2c/busses/i2c-mt7621.c
11912
11913 MEDIATEK MT7621 PHY PCI DRIVER
11914 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11915 S:      Maintained
11916 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11917 F:      drivers/phy/ralink/phy-mt7621-pci.c
11918
11919 MEDIATEK NAND CONTROLLER DRIVER
11920 L:      linux-mtd@lists.infradead.org
11921 S:      Orphan
11922 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11923 F:      drivers/mtd/nand/raw/mtk_*
11924
11925 MEDIATEK PMIC LED DRIVER
11926 M:      Sean Wang <sean.wang@mediatek.com>
11927 S:      Maintained
11928 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11929 F:      drivers/leds/leds-mt6323.c
11930
11931 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11932 M:      Sean Wang <sean.wang@mediatek.com>
11933 S:      Maintained
11934 F:      drivers/char/hw_random/mtk-rng.c
11935
11936 MEDIATEK SWITCH DRIVER
11937 M:      Sean Wang <sean.wang@mediatek.com>
11938 M:      Landen Chao <Landen.Chao@mediatek.com>
11939 M:      DENG Qingfang <dqfext@gmail.com>
11940 L:      netdev@vger.kernel.org
11941 S:      Maintained
11942 F:      drivers/net/dsa/mt7530.*
11943 F:      net/dsa/tag_mtk.c
11944
11945 MEDIATEK USB3 DRD IP DRIVER
11946 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11947 L:      linux-usb@vger.kernel.org
11948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11949 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11950 S:      Maintained
11951 F:      Documentation/devicetree/bindings/usb/mediatek,*
11952 F:      drivers/usb/host/xhci-mtk*
11953 F:      drivers/usb/mtu3/
11954
11955 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11956 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11957 M:      Martin Donnelly <martin.donnelly@ge.com>
11958 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11959 S:      Maintained
11960 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11961 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11962
11963 MEGARAID SCSI/SAS DRIVERS
11964 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11965 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11966 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11967 L:      megaraidlinux.pdl@broadcom.com
11968 L:      linux-scsi@vger.kernel.org
11969 S:      Maintained
11970 W:      http://www.avagotech.com/support/
11971 F:      Documentation/scsi/megaraid.rst
11972 F:      drivers/scsi/megaraid.*
11973 F:      drivers/scsi/megaraid/
11974
11975 MELEXIS MLX90614 DRIVER
11976 M:      Crt Mori <cmo@melexis.com>
11977 L:      linux-iio@vger.kernel.org
11978 S:      Supported
11979 W:      http://www.melexis.com
11980 F:      drivers/iio/temperature/mlx90614.c
11981
11982 MELEXIS MLX90632 DRIVER
11983 M:      Crt Mori <cmo@melexis.com>
11984 L:      linux-iio@vger.kernel.org
11985 S:      Supported
11986 W:      http://www.melexis.com
11987 F:      drivers/iio/temperature/mlx90632.c
11988
11989 MELFAS MIP4 TOUCHSCREEN DRIVER
11990 M:      Sangwon Jee <jeesw@melfas.com>
11991 S:      Supported
11992 W:      http://www.melfas.com
11993 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11994 F:      drivers/input/touchscreen/melfas_mip4.c
11995
11996 MELLANOX BLUEFIELD I2C DRIVER
11997 M:      Khalil Blaiech <kblaiech@nvidia.com>
11998 L:      linux-i2c@vger.kernel.org
11999 S:      Supported
12000 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12001 F:      drivers/i2c/busses/i2c-mlxbf.c
12002
12003 MELLANOX ETHERNET DRIVER (mlx4_en)
12004 M:      Tariq Toukan <tariqt@nvidia.com>
12005 L:      netdev@vger.kernel.org
12006 S:      Supported
12007 W:      http://www.mellanox.com
12008 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12009 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12010
12011 MELLANOX ETHERNET DRIVER (mlx5e)
12012 M:      Saeed Mahameed <saeedm@nvidia.com>
12013 L:      netdev@vger.kernel.org
12014 S:      Supported
12015 W:      http://www.mellanox.com
12016 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12017 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12018
12019 MELLANOX ETHERNET INNOVA DRIVERS
12020 R:      Boris Pismenny <borisp@nvidia.com>
12021 L:      netdev@vger.kernel.org
12022 S:      Supported
12023 W:      http://www.mellanox.com
12024 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12025 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12026 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12027 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12028 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12029
12030 MELLANOX ETHERNET SWITCH DRIVERS
12031 M:      Jiri Pirko <jiri@nvidia.com>
12032 M:      Ido Schimmel <idosch@nvidia.com>
12033 L:      netdev@vger.kernel.org
12034 S:      Supported
12035 W:      http://www.mellanox.com
12036 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12037 F:      drivers/net/ethernet/mellanox/mlxsw/
12038 F:      tools/testing/selftests/drivers/net/mlxsw/
12039
12040 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12041 M:      mlxsw@nvidia.com
12042 L:      netdev@vger.kernel.org
12043 S:      Supported
12044 W:      http://www.mellanox.com
12045 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12046 F:      drivers/net/ethernet/mellanox/mlxfw/
12047
12048 MELLANOX HARDWARE PLATFORM SUPPORT
12049 M:      Hans de Goede <hdegoede@redhat.com>
12050 M:      Mark Gross <mgross@linux.intel.com>
12051 M:      Vadim Pasternak <vadimp@nvidia.com>
12052 L:      platform-driver-x86@vger.kernel.org
12053 S:      Supported
12054 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12055 F:      drivers/platform/mellanox/
12056 F:      include/linux/platform_data/mlxreg.h
12057
12058 MELLANOX MLX4 core VPI driver
12059 M:      Tariq Toukan <tariqt@nvidia.com>
12060 L:      netdev@vger.kernel.org
12061 L:      linux-rdma@vger.kernel.org
12062 S:      Supported
12063 W:      http://www.mellanox.com
12064 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12065 F:      drivers/net/ethernet/mellanox/mlx4/
12066 F:      include/linux/mlx4/
12067
12068 MELLANOX MLX4 IB driver
12069 M:      Yishai Hadas <yishaih@nvidia.com>
12070 L:      linux-rdma@vger.kernel.org
12071 S:      Supported
12072 W:      http://www.mellanox.com
12073 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12074 F:      drivers/infiniband/hw/mlx4/
12075 F:      include/linux/mlx4/
12076 F:      include/uapi/rdma/mlx4-abi.h
12077
12078 MELLANOX MLX5 core VPI driver
12079 M:      Saeed Mahameed <saeedm@nvidia.com>
12080 M:      Leon Romanovsky <leonro@nvidia.com>
12081 L:      netdev@vger.kernel.org
12082 L:      linux-rdma@vger.kernel.org
12083 S:      Supported
12084 W:      http://www.mellanox.com
12085 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12086 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12087 F:      drivers/net/ethernet/mellanox/mlx5/core/
12088 F:      include/linux/mlx5/
12089
12090 MELLANOX MLX5 IB driver
12091 M:      Leon Romanovsky <leonro@nvidia.com>
12092 L:      linux-rdma@vger.kernel.org
12093 S:      Supported
12094 W:      http://www.mellanox.com
12095 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12096 F:      drivers/infiniband/hw/mlx5/
12097 F:      include/linux/mlx5/
12098 F:      include/uapi/rdma/mlx5-abi.h
12099
12100 MELLANOX MLXCPLD I2C AND MUX DRIVER
12101 M:      Vadim Pasternak <vadimp@nvidia.com>
12102 M:      Michael Shych <michaelsh@nvidia.com>
12103 L:      linux-i2c@vger.kernel.org
12104 S:      Supported
12105 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12106 F:      drivers/i2c/busses/i2c-mlxcpld.c
12107 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12108
12109 MELLANOX MLXCPLD LED DRIVER
12110 M:      Vadim Pasternak <vadimp@nvidia.com>
12111 L:      linux-leds@vger.kernel.org
12112 S:      Supported
12113 F:      Documentation/leds/leds-mlxcpld.rst
12114 F:      drivers/leds/leds-mlxcpld.c
12115 F:      drivers/leds/leds-mlxreg.c
12116
12117 MELLANOX PLATFORM DRIVER
12118 M:      Vadim Pasternak <vadimp@nvidia.com>
12119 L:      platform-driver-x86@vger.kernel.org
12120 S:      Supported
12121 F:      drivers/platform/x86/mlx-platform.c
12122
12123 MEMBARRIER SUPPORT
12124 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12125 M:      "Paul E. McKenney" <paulmck@kernel.org>
12126 L:      linux-kernel@vger.kernel.org
12127 S:      Supported
12128 F:      arch/powerpc/include/asm/membarrier.h
12129 F:      include/uapi/linux/membarrier.h
12130 F:      kernel/sched/membarrier.c
12131
12132 MEMBLOCK
12133 M:      Mike Rapoport <rppt@linux.ibm.com>
12134 L:      linux-mm@kvack.org
12135 S:      Maintained
12136 F:      Documentation/core-api/boot-time-mm.rst
12137 F:      include/linux/memblock.h
12138 F:      mm/memblock.c
12139
12140 MEMORY CONTROLLER DRIVERS
12141 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12142 L:      linux-kernel@vger.kernel.org
12143 S:      Maintained
12144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12145 F:      Documentation/devicetree/bindings/memory-controllers/
12146 F:      drivers/memory/
12147 F:      include/dt-bindings/memory/
12148 F:      include/memory/
12149
12150 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12151 M:      Dmitry Osipenko <digetx@gmail.com>
12152 L:      linux-pm@vger.kernel.org
12153 L:      linux-tegra@vger.kernel.org
12154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12155 S:      Maintained
12156 F:      drivers/devfreq/tegra30-devfreq.c
12157
12158 MEMORY MANAGEMENT
12159 M:      Andrew Morton <akpm@linux-foundation.org>
12160 L:      linux-mm@kvack.org
12161 S:      Maintained
12162 W:      http://www.linux-mm.org
12163 T:      quilt https://ozlabs.org/~akpm/mmotm/
12164 T:      quilt https://ozlabs.org/~akpm/mmots/
12165 T:      git git://github.com/hnaz/linux-mm.git
12166 F:      include/linux/gfp.h
12167 F:      include/linux/memory_hotplug.h
12168 F:      include/linux/mm.h
12169 F:      include/linux/mmzone.h
12170 F:      include/linux/pagewalk.h
12171 F:      include/linux/vmalloc.h
12172 F:      mm/
12173 F:      tools/testing/selftests/vm/
12174
12175 MEMORY TECHNOLOGY DEVICES (MTD)
12176 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12177 M:      Richard Weinberger <richard@nod.at>
12178 M:      Vignesh Raghavendra <vigneshr@ti.com>
12179 L:      linux-mtd@lists.infradead.org
12180 S:      Maintained
12181 W:      http://www.linux-mtd.infradead.org/
12182 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12183 C:      irc://irc.oftc.net/mtd
12184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12186 F:      Documentation/devicetree/bindings/mtd/
12187 F:      drivers/mtd/
12188 F:      include/linux/mtd/
12189 F:      include/uapi/mtd/
12190
12191 MEN A21 WATCHDOG DRIVER
12192 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12193 L:      linux-watchdog@vger.kernel.org
12194 S:      Maintained
12195 F:      drivers/watchdog/mena21_wdt.c
12196
12197 MEN CHAMELEON BUS (mcb)
12198 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12199 S:      Maintained
12200 F:      Documentation/driver-api/men-chameleon-bus.rst
12201 F:      drivers/mcb/
12202 F:      include/linux/mcb.h
12203
12204 MEN F21BMC (Board Management Controller)
12205 M:      Andreas Werner <andreas.werner@men.de>
12206 S:      Supported
12207 F:      Documentation/hwmon/menf21bmc.rst
12208 F:      drivers/hwmon/menf21bmc_hwmon.c
12209 F:      drivers/leds/leds-menf21bmc.c
12210 F:      drivers/mfd/menf21bmc.c
12211 F:      drivers/watchdog/menf21bmc_wdt.c
12212
12213 MEN Z069 WATCHDOG DRIVER
12214 M:      Johannes Thumshirn <jth@kernel.org>
12215 L:      linux-watchdog@vger.kernel.org
12216 S:      Maintained
12217 F:      drivers/watchdog/menz69_wdt.c
12218
12219 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12220 M:      Neil Armstrong <narmstrong@baylibre.com>
12221 L:      linux-media@vger.kernel.org
12222 L:      linux-amlogic@lists.infradead.org
12223 S:      Supported
12224 W:      http://linux-meson.com/
12225 T:      git git://linuxtv.org/media_tree.git
12226 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12227 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12228 F:      drivers/media/cec/platform/meson/ao-cec.c
12229
12230 MESON GE2D DRIVER FOR AMLOGIC SOCS
12231 M:      Neil Armstrong <narmstrong@baylibre.com>
12232 L:      linux-media@vger.kernel.org
12233 L:      linux-amlogic@lists.infradead.org
12234 S:      Supported
12235 T:      git git://linuxtv.org/media_tree.git
12236 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12237 F:      drivers/media/platform/meson/ge2d/
12238
12239 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12240 M:      Liang Yang <liang.yang@amlogic.com>
12241 L:      linux-mtd@lists.infradead.org
12242 S:      Maintained
12243 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12244 F:      drivers/mtd/nand/raw/meson_*
12245
12246 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12247 M:      Neil Armstrong <narmstrong@baylibre.com>
12248 L:      linux-media@vger.kernel.org
12249 L:      linux-amlogic@lists.infradead.org
12250 S:      Supported
12251 T:      git git://linuxtv.org/media_tree.git
12252 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12253 F:      drivers/staging/media/meson/vdec/
12254
12255 METHODE UDPU SUPPORT
12256 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12257 S:      Maintained
12258 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12259
12260 MHI BUS
12261 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12262 M:      Hemant Kumar <hemantk@codeaurora.org>
12263 L:      linux-arm-msm@vger.kernel.org
12264 S:      Maintained
12265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12266 F:      Documentation/ABI/stable/sysfs-bus-mhi
12267 F:      Documentation/mhi/
12268 F:      drivers/bus/mhi/
12269 F:      include/linux/mhi.h
12270
12271 MICROBLAZE ARCHITECTURE
12272 M:      Michal Simek <monstr@monstr.eu>
12273 S:      Supported
12274 W:      http://www.monstr.eu/fdt/
12275 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12276 F:      arch/microblaze/
12277
12278 MICROCHIP AT91 DMA DRIVERS
12279 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12280 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12282 L:      dmaengine@vger.kernel.org
12283 S:      Supported
12284 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12285 F:      drivers/dma/at_hdmac.c
12286 F:      drivers/dma/at_hdmac_regs.h
12287 F:      drivers/dma/at_xdmac.c
12288 F:      include/dt-bindings/dma/at91.h
12289
12290 MICROCHIP AT91 SERIAL DRIVER
12291 M:      Richard Genoud <richard.genoud@gmail.com>
12292 S:      Maintained
12293 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12294 F:      drivers/tty/serial/atmel_serial.c
12295 F:      drivers/tty/serial/atmel_serial.h
12296
12297 MICROCHIP AT91 USART MFD DRIVER
12298 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12299 L:      linux-kernel@vger.kernel.org
12300 S:      Supported
12301 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12302 F:      drivers/mfd/at91-usart.c
12303 F:      include/dt-bindings/mfd/at91-usart.h
12304
12305 MICROCHIP AT91 USART SPI DRIVER
12306 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12307 L:      linux-spi@vger.kernel.org
12308 S:      Supported
12309 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12310 F:      drivers/spi/spi-at91-usart.c
12311
12312 MICROCHIP AUDIO ASOC DRIVERS
12313 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12314 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12315 S:      Supported
12316 F:      sound/soc/atmel
12317
12318 MICROCHIP ECC DRIVER
12319 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12320 L:      linux-crypto@vger.kernel.org
12321 S:      Maintained
12322 F:      drivers/crypto/atmel-ecc.*
12323
12324 MICROCHIP I2C DRIVER
12325 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12326 L:      linux-i2c@vger.kernel.org
12327 S:      Supported
12328 F:      drivers/i2c/busses/i2c-at91-*.c
12329 F:      drivers/i2c/busses/i2c-at91.h
12330
12331 MICROCHIP ISC DRIVER
12332 M:      Eugen Hristev <eugen.hristev@microchip.com>
12333 L:      linux-media@vger.kernel.org
12334 S:      Supported
12335 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12336 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12337 F:      drivers/media/platform/atmel/atmel-isc-base.c
12338 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12339 F:      drivers/media/platform/atmel/atmel-isc.h
12340 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12341 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12342 F:      include/linux/atmel-isc-media.h
12343
12344 MICROCHIP ISI DRIVER
12345 M:      Eugen Hristev <eugen.hristev@microchip.com>
12346 L:      linux-media@vger.kernel.org
12347 S:      Supported
12348 F:      drivers/media/platform/atmel/atmel-isi.c
12349 F:      drivers/media/platform/atmel/atmel-isi.h
12350
12351 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12352 M:      Woojung Huh <woojung.huh@microchip.com>
12353 M:      UNGLinuxDriver@microchip.com
12354 L:      netdev@vger.kernel.org
12355 S:      Maintained
12356 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12357 F:      drivers/net/dsa/microchip/*
12358 F:      include/linux/platform_data/microchip-ksz.h
12359 F:      net/dsa/tag_ksz.c
12360
12361 MICROCHIP LAN743X ETHERNET DRIVER
12362 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12363 M:      UNGLinuxDriver@microchip.com
12364 L:      netdev@vger.kernel.org
12365 S:      Maintained
12366 F:      drivers/net/ethernet/microchip/lan743x_*
12367
12368 MICROCHIP LCDFB DRIVER
12369 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12370 L:      linux-fbdev@vger.kernel.org
12371 S:      Maintained
12372 F:      drivers/video/fbdev/atmel_lcdfb.c
12373 F:      include/video/atmel_lcdc.h
12374
12375 MICROCHIP MCP16502 PMIC DRIVER
12376 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12378 S:      Supported
12379 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12380 F:      drivers/regulator/mcp16502.c
12381
12382 MICROCHIP MCP3911 ADC DRIVER
12383 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12384 M:      Kent Gustavsson <kent@minoris.se>
12385 L:      linux-iio@vger.kernel.org
12386 S:      Supported
12387 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12388 F:      drivers/iio/adc/mcp3911.c
12389
12390 MICROCHIP MMC/SD/SDIO MCI DRIVER
12391 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12392 S:      Maintained
12393 F:      drivers/mmc/host/atmel-mci.c
12394
12395 MICROCHIP NAND DRIVER
12396 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12397 L:      linux-mtd@lists.infradead.org
12398 S:      Supported
12399 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12400 F:      drivers/mtd/nand/raw/atmel/*
12401
12402 MICROCHIP PWM DRIVER
12403 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12404 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12405 L:      linux-pwm@vger.kernel.org
12406 S:      Supported
12407 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12408 F:      drivers/pwm/pwm-atmel.c
12409
12410 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12411 M:      Eugen Hristev <eugen.hristev@microchip.com>
12412 L:      linux-iio@vger.kernel.org
12413 S:      Supported
12414 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12415 F:      drivers/iio/adc/at91-sama5d2_adc.c
12416 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12417
12418 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12419 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12420 S:      Supported
12421 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12422
12423 MICROCHIP SPI DRIVER
12424 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12425 S:      Supported
12426 F:      drivers/spi/spi-atmel.*
12427
12428 MICROCHIP SSC DRIVER
12429 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12431 S:      Supported
12432 F:      drivers/misc/atmel-ssc.c
12433 F:      include/linux/atmel-ssc.h
12434
12435 MICROCHIP USB251XB DRIVER
12436 M:      Richard Leitner <richard.leitner@skidata.com>
12437 L:      linux-usb@vger.kernel.org
12438 S:      Maintained
12439 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12440 F:      drivers/usb/misc/usb251xb.c
12441
12442 MICROCHIP USBA UDC DRIVER
12443 M:      Cristian Birsan <cristian.birsan@microchip.com>
12444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12445 S:      Supported
12446 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12447
12448 MICROCHIP WILC1000 WIFI DRIVER
12449 M:      Ajay Singh <ajay.kathat@microchip.com>
12450 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12451 L:      linux-wireless@vger.kernel.org
12452 S:      Supported
12453 F:      drivers/net/wireless/microchip/wilc1000/
12454
12455 MICROSEMI MIPS SOCS
12456 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12457 M:      UNGLinuxDriver@microchip.com
12458 L:      linux-mips@vger.kernel.org
12459 S:      Supported
12460 F:      Documentation/devicetree/bindings/mips/mscc.txt
12461 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12462 F:      arch/mips/boot/dts/mscc/
12463 F:      arch/mips/configs/generic/board-ocelot.config
12464 F:      arch/mips/generic/board-ocelot.c
12465
12466 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12467 M:      Don Brace <don.brace@microchip.com>
12468 L:      storagedev@microchip.com
12469 L:      linux-scsi@vger.kernel.org
12470 S:      Supported
12471 F:      Documentation/scsi/smartpqi.rst
12472 F:      drivers/scsi/smartpqi/Kconfig
12473 F:      drivers/scsi/smartpqi/Makefile
12474 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12475 F:      include/linux/cciss*.h
12476 F:      include/uapi/linux/cciss*.h
12477
12478 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12479 M:      Maximilian Luz <luzmaximilian@gmail.com>
12480 L:      linux-pm@vger.kernel.org
12481 L:      platform-driver-x86@vger.kernel.org
12482 S:      Maintained
12483 F:      drivers/power/supply/surface_battery.c
12484 F:      drivers/power/supply/surface_charger.c
12485
12486 MICROSOFT SURFACE DTX DRIVER
12487 M:      Maximilian Luz <luzmaximilian@gmail.com>
12488 L:      platform-driver-x86@vger.kernel.org
12489 S:      Maintained
12490 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12491 F:      drivers/platform/surface/surface_dtx.c
12492 F:      include/uapi/linux/surface_aggregator/dtx.h
12493
12494 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12495 M:      Maximilian Luz <luzmaximilian@gmail.com>
12496 L:      platform-driver-x86@vger.kernel.org
12497 S:      Maintained
12498 F:      drivers/platform/surface/surface_gpe.c
12499
12500 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12501 M:      Hans de Goede <hdegoede@redhat.com>
12502 M:      Mark Gross <mgross@linux.intel.com>
12503 M:      Maximilian Luz <luzmaximilian@gmail.com>
12504 L:      platform-driver-x86@vger.kernel.org
12505 S:      Maintained
12506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12507 F:      drivers/platform/surface/
12508
12509 MICROSOFT SURFACE HID TRANSPORT DRIVER
12510 M:      Maximilian Luz <luzmaximilian@gmail.com>
12511 L:      linux-input@vger.kernel.org
12512 L:      platform-driver-x86@vger.kernel.org
12513 S:      Maintained
12514 F:      drivers/hid/surface-hid/
12515
12516 MICROSOFT SURFACE HOT-PLUG DRIVER
12517 M:      Maximilian Luz <luzmaximilian@gmail.com>
12518 L:      platform-driver-x86@vger.kernel.org
12519 S:      Maintained
12520 F:      drivers/platform/surface/surface_hotplug.c
12521
12522 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12523 M:      Maximilian Luz <luzmaximilian@gmail.com>
12524 L:      platform-driver-x86@vger.kernel.org
12525 S:      Maintained
12526 F:      drivers/platform/surface/surface_platform_profile.c
12527
12528 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12529 M:      Chen Yu <yu.c.chen@intel.com>
12530 L:      platform-driver-x86@vger.kernel.org
12531 S:      Supported
12532 F:      drivers/platform/surface/surfacepro3_button.c
12533
12534 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12535 M:      Maximilian Luz <luzmaximilian@gmail.com>
12536 L:      platform-driver-x86@vger.kernel.org
12537 S:      Maintained
12538 W:      https://github.com/linux-surface/surface-aggregator-module
12539 C:      irc://irc.libera.chat/linux-surface
12540 F:      Documentation/driver-api/surface_aggregator/
12541 F:      drivers/platform/surface/aggregator/
12542 F:      drivers/platform/surface/surface_acpi_notify.c
12543 F:      drivers/platform/surface/surface_aggregator_cdev.c
12544 F:      drivers/platform/surface/surface_aggregator_registry.c
12545 F:      include/linux/surface_acpi_notify.h
12546 F:      include/linux/surface_aggregator/
12547 F:      include/uapi/linux/surface_aggregator/
12548
12549 MICROTEK X6 SCANNER
12550 M:      Oliver Neukum <oliver@neukum.org>
12551 S:      Maintained
12552 F:      drivers/usb/image/microtek.*
12553
12554 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12555 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12556 M:      Luka Perkov <luka.perkov@sartura.hr>
12557 S:      Maintained
12558 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12559 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12560 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12561 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12562 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12563 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12564
12565 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12566 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12567 L:      linux-media@vger.kernel.org
12568 S:      Maintained
12569 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12570 F:      Documentation/driver-api/media/drivers/ccs/
12571 F:      Documentation/userspace-api/media/drivers/ccs.rst
12572 F:      drivers/media/i2c/ccs-pll.c
12573 F:      drivers/media/i2c/ccs-pll.h
12574 F:      drivers/media/i2c/ccs/
12575 F:      include/uapi/linux/ccs.h
12576 F:      include/uapi/linux/smiapp.h
12577
12578 MIPS
12579 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12580 L:      linux-mips@vger.kernel.org
12581 S:      Maintained
12582 W:      http://www.linux-mips.org/
12583 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12585 F:      Documentation/devicetree/bindings/mips/
12586 F:      Documentation/mips/
12587 F:      arch/mips/
12588 F:      drivers/platform/mips/
12589
12590 MIPS BOSTON DEVELOPMENT BOARD
12591 M:      Paul Burton <paulburton@kernel.org>
12592 L:      linux-mips@vger.kernel.org
12593 S:      Maintained
12594 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12595 F:      arch/mips/boot/dts/img/boston.dts
12596 F:      arch/mips/configs/generic/board-boston.config
12597 F:      drivers/clk/imgtec/clk-boston.c
12598 F:      include/dt-bindings/clock/boston-clock.h
12599
12600 MIPS CORE DRIVERS
12601 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12602 M:      Serge Semin <fancer.lancer@gmail.com>
12603 L:      linux-mips@vger.kernel.org
12604 S:      Supported
12605 F:      drivers/bus/mips_cdmm.c
12606 F:      drivers/clocksource/mips-gic-timer.c
12607 F:      drivers/cpuidle/cpuidle-cps.c
12608 F:      drivers/irqchip/irq-mips-cpu.c
12609 F:      drivers/irqchip/irq-mips-gic.c
12610
12611 MIPS GENERIC PLATFORM
12612 M:      Paul Burton <paulburton@kernel.org>
12613 L:      linux-mips@vger.kernel.org
12614 S:      Supported
12615 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12616 F:      arch/mips/generic/
12617 F:      arch/mips/tools/generic-board-config.sh
12618
12619 MIPS RINT INSTRUCTION EMULATION
12620 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12621 L:      linux-mips@vger.kernel.org
12622 S:      Supported
12623 F:      arch/mips/math-emu/dp_rint.c
12624 F:      arch/mips/math-emu/sp_rint.c
12625
12626 MIPS/LOONGSON1 ARCHITECTURE
12627 M:      Keguang Zhang <keguang.zhang@gmail.com>
12628 L:      linux-mips@vger.kernel.org
12629 S:      Maintained
12630 F:      arch/mips/include/asm/mach-loongson32/
12631 F:      arch/mips/loongson32/
12632 F:      drivers/*/*/*loongson1*
12633 F:      drivers/*/*loongson1*
12634
12635 MIPS/LOONGSON2EF ARCHITECTURE
12636 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12637 L:      linux-mips@vger.kernel.org
12638 S:      Maintained
12639 F:      arch/mips/include/asm/mach-loongson2ef/
12640 F:      arch/mips/loongson2ef/
12641 F:      drivers/cpufreq/loongson2_cpufreq.c
12642
12643 MIPS/LOONGSON64 ARCHITECTURE
12644 M:      Huacai Chen <chenhuacai@kernel.org>
12645 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12646 L:      linux-mips@vger.kernel.org
12647 S:      Maintained
12648 F:      arch/mips/include/asm/mach-loongson64/
12649 F:      arch/mips/loongson64/
12650 F:      drivers/irqchip/irq-loongson*
12651 F:      drivers/platform/mips/cpu_hwmon.c
12652
12653 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12654 M:      Hans Verkuil <hverkuil@xs4all.nl>
12655 L:      linux-media@vger.kernel.org
12656 S:      Odd Fixes
12657 W:      https://linuxtv.org
12658 T:      git git://linuxtv.org/media_tree.git
12659 F:      drivers/media/radio/radio-miropcm20*
12660
12661 MMP SUPPORT
12662 R:      Lubomir Rintel <lkundrak@v3.sk>
12663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12664 S:      Odd Fixes
12665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12666 F:      arch/arm/boot/dts/mmp*
12667 F:      arch/arm/mach-mmp/
12668 F:      include/linux/soc/mmp/
12669
12670 MMP USB PHY DRIVERS
12671 R:      Lubomir Rintel <lkundrak@v3.sk>
12672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12673 S:      Maintained
12674 F:      drivers/phy/marvell/phy-mmp3-usb.c
12675 F:      drivers/phy/marvell/phy-pxa-usb.c
12676
12677 MMU GATHER AND TLB INVALIDATION
12678 M:      Will Deacon <will@kernel.org>
12679 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12680 M:      Andrew Morton <akpm@linux-foundation.org>
12681 M:      Nick Piggin <npiggin@gmail.com>
12682 M:      Peter Zijlstra <peterz@infradead.org>
12683 L:      linux-arch@vger.kernel.org
12684 L:      linux-mm@kvack.org
12685 S:      Maintained
12686 F:      arch/*/include/asm/tlb.h
12687 F:      include/asm-generic/tlb.h
12688 F:      mm/mmu_gather.c
12689
12690 MN88472 MEDIA DRIVER
12691 M:      Antti Palosaari <crope@iki.fi>
12692 L:      linux-media@vger.kernel.org
12693 S:      Maintained
12694 W:      https://linuxtv.org
12695 W:      http://palosaari.fi/linux/
12696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12697 F:      drivers/media/dvb-frontends/mn88472*
12698
12699 MN88473 MEDIA DRIVER
12700 M:      Antti Palosaari <crope@iki.fi>
12701 L:      linux-media@vger.kernel.org
12702 S:      Maintained
12703 W:      https://linuxtv.org
12704 W:      http://palosaari.fi/linux/
12705 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12706 F:      drivers/media/dvb-frontends/mn88473*
12707
12708 MODULE SUPPORT
12709 M:      Luis Chamberlain <mcgrof@kernel.org>
12710 M:      Jessica Yu <jeyu@kernel.org>
12711 S:      Maintained
12712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12713 F:      include/linux/module.h
12714 F:      kernel/module.c
12715
12716 MONOLITHIC POWER SYSTEM PMIC DRIVER
12717 M:      Saravanan Sekar <sravanhome@gmail.com>
12718 S:      Maintained
12719 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12720 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12721 F:      drivers/iio/adc/mp2629_adc.c
12722 F:      drivers/mfd/mp2629.c
12723 F:      drivers/power/supply/mp2629_charger.c
12724 F:      drivers/regulator/mp5416.c
12725 F:      drivers/regulator/mpq7920.c
12726 F:      drivers/regulator/mpq7920.h
12727 F:      include/linux/mfd/mp2629.h
12728
12729 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12730 S:      Orphan
12731 W:      http://popies.net/meye/
12732 F:      Documentation/userspace-api/media/drivers/meye*
12733 F:      drivers/media/pci/meye/
12734 F:      include/uapi/linux/meye.h
12735
12736 MOTORCOMM PHY DRIVER
12737 M:      Peter Geis <pgwipeout@gmail.com>
12738 L:      netdev@vger.kernel.org
12739 S:      Maintained
12740 F:      drivers/net/phy/motorcomm.c
12741
12742 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12743 M:      Jiri Slaby <jirislaby@kernel.org>
12744 S:      Maintained
12745 F:      Documentation/driver-api/serial/moxa-smartio.rst
12746 F:      drivers/tty/mxser.*
12747
12748 MR800 AVERMEDIA USB FM RADIO DRIVER
12749 M:      Alexey Klimov <klimov.linux@gmail.com>
12750 L:      linux-media@vger.kernel.org
12751 S:      Maintained
12752 T:      git git://linuxtv.org/media_tree.git
12753 F:      drivers/media/radio/radio-mr800.c
12754
12755 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12756 M:      Alan Ott <alan@signal11.us>
12757 L:      linux-wpan@vger.kernel.org
12758 S:      Maintained
12759 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12760 F:      drivers/net/ieee802154/mrf24j40.c
12761
12762 MSI LAPTOP SUPPORT
12763 M:      "Lee, Chun-Yi" <jlee@suse.com>
12764 L:      platform-driver-x86@vger.kernel.org
12765 S:      Maintained
12766 F:      drivers/platform/x86/msi-laptop.c
12767
12768 MSI WMI SUPPORT
12769 L:      platform-driver-x86@vger.kernel.org
12770 S:      Orphan
12771 F:      drivers/platform/x86/msi-wmi.c
12772
12773 MSI001 MEDIA DRIVER
12774 M:      Antti Palosaari <crope@iki.fi>
12775 L:      linux-media@vger.kernel.org
12776 S:      Maintained
12777 W:      https://linuxtv.org
12778 W:      http://palosaari.fi/linux/
12779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12780 T:      git git://linuxtv.org/anttip/media_tree.git
12781 F:      drivers/media/tuners/msi001*
12782
12783 MSI2500 MEDIA DRIVER
12784 M:      Antti Palosaari <crope@iki.fi>
12785 L:      linux-media@vger.kernel.org
12786 S:      Maintained
12787 W:      https://linuxtv.org
12788 W:      http://palosaari.fi/linux/
12789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12790 T:      git git://linuxtv.org/anttip/media_tree.git
12791 F:      drivers/media/usb/msi2500/
12792
12793 MSTAR INTERRUPT CONTROLLER DRIVER
12794 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12795 M:      Daniel Palmer <daniel@thingy.jp>
12796 S:      Maintained
12797 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12798 F:      drivers/irqchip/irq-mst-intc.c
12799
12800 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12801 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12802 L:      linux-mtd@lists.infradead.org
12803 S:      Maintained
12804 F:      drivers/mtd/devices/docg3*
12805
12806 MT9M032 APTINA SENSOR DRIVER
12807 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12808 L:      linux-media@vger.kernel.org
12809 S:      Maintained
12810 T:      git git://linuxtv.org/media_tree.git
12811 F:      drivers/media/i2c/mt9m032.c
12812 F:      include/media/i2c/mt9m032.h
12813
12814 MT9P031 APTINA CAMERA SENSOR
12815 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12816 L:      linux-media@vger.kernel.org
12817 S:      Maintained
12818 T:      git git://linuxtv.org/media_tree.git
12819 F:      drivers/media/i2c/mt9p031.c
12820 F:      include/media/i2c/mt9p031.h
12821
12822 MT9T001 APTINA CAMERA SENSOR
12823 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12824 L:      linux-media@vger.kernel.org
12825 S:      Maintained
12826 T:      git git://linuxtv.org/media_tree.git
12827 F:      drivers/media/i2c/mt9t001.c
12828 F:      include/media/i2c/mt9t001.h
12829
12830 MT9T112 APTINA CAMERA SENSOR
12831 M:      Jacopo Mondi <jacopo@jmondi.org>
12832 L:      linux-media@vger.kernel.org
12833 S:      Odd Fixes
12834 T:      git git://linuxtv.org/media_tree.git
12835 F:      drivers/media/i2c/mt9t112.c
12836 F:      include/media/i2c/mt9t112.h
12837
12838 MT9V032 APTINA CAMERA SENSOR
12839 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12840 L:      linux-media@vger.kernel.org
12841 S:      Maintained
12842 T:      git git://linuxtv.org/media_tree.git
12843 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12844 F:      drivers/media/i2c/mt9v032.c
12845 F:      include/media/i2c/mt9v032.h
12846
12847 MT9V111 APTINA CAMERA SENSOR
12848 M:      Jacopo Mondi <jacopo@jmondi.org>
12849 L:      linux-media@vger.kernel.org
12850 S:      Maintained
12851 T:      git git://linuxtv.org/media_tree.git
12852 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12853 F:      drivers/media/i2c/mt9v111.c
12854
12855 MULTIFUNCTION DEVICES (MFD)
12856 M:      Lee Jones <lee.jones@linaro.org>
12857 S:      Supported
12858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12859 F:      Documentation/devicetree/bindings/mfd/
12860 F:      drivers/mfd/
12861 F:      include/dt-bindings/mfd/
12862 F:      include/linux/mfd/
12863
12864 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12865 S:      Orphan
12866 F:      drivers/mmc/host/mmc_spi.c
12867 F:      include/linux/spi/mmc_spi.h
12868
12869 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12870 M:      Ulf Hansson <ulf.hansson@linaro.org>
12871 L:      linux-mmc@vger.kernel.org
12872 S:      Maintained
12873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12874 F:      Documentation/devicetree/bindings/mmc/
12875 F:      drivers/mmc/
12876 F:      include/linux/mmc/
12877 F:      include/uapi/linux/mmc/
12878
12879 MULTIPLEXER SUBSYSTEM
12880 M:      Peter Rosin <peda@axentia.se>
12881 S:      Maintained
12882 F:      Documentation/ABI/testing/sysfs-class-mux*
12883 F:      Documentation/devicetree/bindings/mux/
12884 F:      drivers/mux/
12885 F:      include/dt-bindings/mux/
12886 F:      include/linux/mux/
12887
12888 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12889 M:      Bin Liu <b-liu@ti.com>
12890 L:      linux-usb@vger.kernel.org
12891 S:      Maintained
12892 F:      drivers/usb/musb/
12893
12894 MXL301RF MEDIA DRIVER
12895 M:      Akihiro Tsukada <tskd08@gmail.com>
12896 L:      linux-media@vger.kernel.org
12897 S:      Odd Fixes
12898 F:      drivers/media/tuners/mxl301rf*
12899
12900 MXL5007T MEDIA DRIVER
12901 M:      Michael Krufky <mkrufky@linuxtv.org>
12902 L:      linux-media@vger.kernel.org
12903 S:      Maintained
12904 W:      https://linuxtv.org
12905 W:      http://github.com/mkrufky
12906 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12907 T:      git git://linuxtv.org/mkrufky/tuners.git
12908 F:      drivers/media/tuners/mxl5007t.*
12909
12910 MXSFB DRM DRIVER
12911 M:      Marek Vasut <marex@denx.de>
12912 M:      Stefan Agner <stefan@agner.ch>
12913 L:      dri-devel@lists.freedesktop.org
12914 S:      Supported
12915 T:      git git://anongit.freedesktop.org/drm/drm-misc
12916 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12917 F:      drivers/gpu/drm/mxsfb/
12918
12919 MYLEX DAC960 PCI RAID Controller
12920 M:      Hannes Reinecke <hare@kernel.org>
12921 L:      linux-scsi@vger.kernel.org
12922 S:      Supported
12923 F:      drivers/scsi/myrb.*
12924 F:      drivers/scsi/myrs.*
12925
12926 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12927 M:      Chris Lee <christopher.lee@cspi.com>
12928 L:      netdev@vger.kernel.org
12929 S:      Supported
12930 W:      https://www.cspi.com/ethernet-products/support/downloads/
12931 F:      drivers/net/ethernet/myricom/myri10ge/
12932
12933 NAND FLASH SUBSYSTEM
12934 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12935 R:      Richard Weinberger <richard@nod.at>
12936 L:      linux-mtd@lists.infradead.org
12937 S:      Maintained
12938 W:      http://www.linux-mtd.infradead.org/
12939 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12940 C:      irc://irc.oftc.net/mtd
12941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12942 F:      drivers/mtd/nand/
12943 F:      include/linux/mtd/*nand*.h
12944
12945 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12946 M:      Daniel Mack <zonque@gmail.com>
12947 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12948 S:      Maintained
12949 W:      http://www.native-instruments.com
12950 F:      sound/usb/caiaq/
12951
12952 NATSEMI ETHERNET DRIVER (DP8381x)
12953 S:      Orphan
12954 F:      drivers/net/ethernet/natsemi/natsemi.c
12955
12956 NCR 5380 SCSI DRIVERS
12957 M:      Finn Thain <fthain@linux-m68k.org>
12958 M:      Michael Schmitz <schmitzmic@gmail.com>
12959 L:      linux-scsi@vger.kernel.org
12960 S:      Maintained
12961 F:      Documentation/scsi/g_NCR5380.rst
12962 F:      drivers/scsi/NCR5380.*
12963 F:      drivers/scsi/arm/cumana_1.c
12964 F:      drivers/scsi/arm/oak.c
12965 F:      drivers/scsi/atari_scsi.*
12966 F:      drivers/scsi/dmx3191d.c
12967 F:      drivers/scsi/g_NCR5380.*
12968 F:      drivers/scsi/mac_scsi.*
12969 F:      drivers/scsi/sun3_scsi.*
12970 F:      drivers/scsi/sun3_scsi_vme.c
12971
12972 NCSI LIBRARY
12973 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12974 S:      Maintained
12975 F:      net/ncsi/
12976
12977 NCT6775 HARDWARE MONITOR DRIVER
12978 M:      Guenter Roeck <linux@roeck-us.net>
12979 L:      linux-hwmon@vger.kernel.org
12980 S:      Maintained
12981 F:      Documentation/hwmon/nct6775.rst
12982 F:      drivers/hwmon/nct6775.c
12983
12984 NETDEVSIM
12985 M:      Jakub Kicinski <kuba@kernel.org>
12986 S:      Maintained
12987 F:      drivers/net/netdevsim/*
12988
12989 NETEM NETWORK EMULATOR
12990 M:      Stephen Hemminger <stephen@networkplumber.org>
12991 L:      netdev@vger.kernel.org
12992 S:      Maintained
12993 F:      net/sched/sch_netem.c
12994
12995 NETERION 10GbE DRIVERS (s2io/vxge)
12996 M:      Jon Mason <jdmason@kudzu.us>
12997 L:      netdev@vger.kernel.org
12998 S:      Supported
12999 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13000 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13001 F:      drivers/net/ethernet/neterion/
13002
13003 NETFILTER
13004 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13005 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13006 M:      Florian Westphal <fw@strlen.de>
13007 L:      netfilter-devel@vger.kernel.org
13008 L:      coreteam@netfilter.org
13009 S:      Maintained
13010 W:      http://www.netfilter.org/
13011 W:      http://www.iptables.org/
13012 W:      http://www.nftables.org/
13013 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13014 C:      irc://irc.libera.chat/netfilter
13015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13017 F:      include/linux/netfilter*
13018 F:      include/linux/netfilter/
13019 F:      include/net/netfilter/
13020 F:      include/uapi/linux/netfilter*
13021 F:      include/uapi/linux/netfilter/
13022 F:      net/*/netfilter.c
13023 F:      net/*/netfilter/
13024 F:      net/bridge/br_netfilter*.c
13025 F:      net/netfilter/
13026
13027 NETROM NETWORK LAYER
13028 M:      Ralf Baechle <ralf@linux-mips.org>
13029 L:      linux-hams@vger.kernel.org
13030 S:      Maintained
13031 W:      http://www.linux-ax25.org/
13032 F:      include/net/netrom.h
13033 F:      include/uapi/linux/netrom.h
13034 F:      net/netrom/
13035
13036 NETRONIX EMBEDDED CONTROLLER
13037 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13038 S:      Maintained
13039 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13040 F:      drivers/mfd/ntxec.c
13041 F:      drivers/pwm/pwm-ntxec.c
13042 F:      drivers/rtc/rtc-ntxec.c
13043 F:      include/linux/mfd/ntxec.h
13044
13045 NETRONOME ETHERNET DRIVERS
13046 M:      Simon Horman <simon.horman@corigine.com>
13047 R:      Jakub Kicinski <kuba@kernel.org>
13048 L:      oss-drivers@corigine.com
13049 S:      Maintained
13050 F:      drivers/net/ethernet/netronome/
13051
13052 NETWORK BLOCK DEVICE (NBD)
13053 M:      Josef Bacik <josef@toxicpanda.com>
13054 L:      linux-block@vger.kernel.org
13055 L:      nbd@other.debian.org
13056 S:      Maintained
13057 F:      Documentation/admin-guide/blockdev/nbd.rst
13058 F:      drivers/block/nbd.c
13059 F:      include/trace/events/nbd.h
13060 F:      include/uapi/linux/nbd.h
13061
13062 NETWORK DROP MONITOR
13063 M:      Neil Horman <nhorman@tuxdriver.com>
13064 L:      netdev@vger.kernel.org
13065 S:      Maintained
13066 W:      https://fedorahosted.org/dropwatch/
13067 F:      include/uapi/linux/net_dropmon.h
13068 F:      net/core/drop_monitor.c
13069
13070 NETWORKING DRIVERS
13071 M:      "David S. Miller" <davem@davemloft.net>
13072 M:      Jakub Kicinski <kuba@kernel.org>
13073 L:      netdev@vger.kernel.org
13074 S:      Maintained
13075 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13078 F:      Documentation/devicetree/bindings/net/
13079 F:      drivers/connector/
13080 F:      drivers/net/
13081 F:      include/linux/etherdevice.h
13082 F:      include/linux/fcdevice.h
13083 F:      include/linux/fddidevice.h
13084 F:      include/linux/hippidevice.h
13085 F:      include/linux/if_*
13086 F:      include/linux/inetdevice.h
13087 F:      include/linux/netdevice.h
13088 F:      include/uapi/linux/if_*
13089 F:      include/uapi/linux/netdevice.h
13090
13091 NETWORKING DRIVERS (WIRELESS)
13092 M:      Kalle Valo <kvalo@codeaurora.org>
13093 L:      linux-wireless@vger.kernel.org
13094 S:      Maintained
13095 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13098 F:      Documentation/devicetree/bindings/net/wireless/
13099 F:      drivers/net/wireless/
13100
13101 NETWORKING [DSA]
13102 M:      Andrew Lunn <andrew@lunn.ch>
13103 M:      Vivien Didelot <vivien.didelot@gmail.com>
13104 M:      Florian Fainelli <f.fainelli@gmail.com>
13105 M:      Vladimir Oltean <olteanv@gmail.com>
13106 S:      Maintained
13107 F:      Documentation/devicetree/bindings/net/dsa/
13108 F:      drivers/net/dsa/
13109 F:      include/linux/dsa/
13110 F:      include/linux/platform_data/dsa.h
13111 F:      include/net/dsa.h
13112 F:      net/dsa/
13113
13114 NETWORKING [GENERAL]
13115 M:      "David S. Miller" <davem@davemloft.net>
13116 M:      Jakub Kicinski <kuba@kernel.org>
13117 L:      netdev@vger.kernel.org
13118 S:      Maintained
13119 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13120 B:      mailto:netdev@vger.kernel.org
13121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13123 F:      Documentation/networking/
13124 F:      include/linux/in.h
13125 F:      include/linux/net.h
13126 F:      include/linux/netdevice.h
13127 F:      include/net/
13128 F:      include/uapi/linux/in.h
13129 F:      include/uapi/linux/net.h
13130 F:      include/uapi/linux/net_namespace.h
13131 F:      include/uapi/linux/netdevice.h
13132 F:      lib/net_utils.c
13133 F:      lib/random32.c
13134 F:      net/
13135 F:      tools/testing/selftests/net/
13136
13137 NETWORKING [IPSEC]
13138 M:      Steffen Klassert <steffen.klassert@secunet.com>
13139 M:      Herbert Xu <herbert@gondor.apana.org.au>
13140 M:      "David S. Miller" <davem@davemloft.net>
13141 L:      netdev@vger.kernel.org
13142 S:      Maintained
13143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13145 F:      include/net/xfrm.h
13146 F:      include/uapi/linux/xfrm.h
13147 F:      net/ipv4/ah4.c
13148 F:      net/ipv4/esp4*
13149 F:      net/ipv4/ip_vti.c
13150 F:      net/ipv4/ipcomp.c
13151 F:      net/ipv4/xfrm*
13152 F:      net/ipv6/ah6.c
13153 F:      net/ipv6/esp6*
13154 F:      net/ipv6/ip6_vti.c
13155 F:      net/ipv6/ipcomp6.c
13156 F:      net/ipv6/xfrm*
13157 F:      net/key/
13158 F:      net/xfrm/
13159 F:      tools/testing/selftests/net/ipsec.c
13160
13161 NETWORKING [IPv4/IPv6]
13162 M:      "David S. Miller" <davem@davemloft.net>
13163 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13164 M:      David Ahern <dsahern@kernel.org>
13165 L:      netdev@vger.kernel.org
13166 S:      Maintained
13167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13168 F:      arch/x86/net/*
13169 F:      include/net/ip*
13170 F:      net/ipv4/
13171 F:      net/ipv6/
13172
13173 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13174 M:      Paul Moore <paul@paul-moore.com>
13175 L:      netdev@vger.kernel.org
13176 L:      linux-security-module@vger.kernel.org
13177 S:      Maintained
13178 W:      https://github.com/netlabel
13179 F:      Documentation/netlabel/
13180 F:      include/net/calipso.h
13181 F:      include/net/cipso_ipv4.h
13182 F:      include/net/netlabel.h
13183 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13184 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13185 F:      net/ipv4/cipso_ipv4.c
13186 F:      net/ipv6/calipso.c
13187 F:      net/netfilter/xt_CONNSECMARK.c
13188 F:      net/netfilter/xt_SECMARK.c
13189 F:      net/netlabel/
13190
13191 NETWORKING [MPTCP]
13192 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13193 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13194 L:      netdev@vger.kernel.org
13195 L:      mptcp@lists.linux.dev
13196 S:      Maintained
13197 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13198 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13199 F:      Documentation/networking/mptcp-sysctl.rst
13200 F:      include/net/mptcp.h
13201 F:      include/trace/events/mptcp.h
13202 F:      include/uapi/linux/mptcp.h
13203 F:      net/mptcp/
13204 F:      tools/testing/selftests/net/mptcp/
13205
13206 NETWORKING [TCP]
13207 M:      Eric Dumazet <edumazet@google.com>
13208 L:      netdev@vger.kernel.org
13209 S:      Maintained
13210 F:      include/linux/tcp.h
13211 F:      include/net/tcp.h
13212 F:      include/trace/events/tcp.h
13213 F:      include/uapi/linux/tcp.h
13214 F:      net/ipv4/syncookies.c
13215 F:      net/ipv4/tcp*.c
13216 F:      net/ipv6/syncookies.c
13217 F:      net/ipv6/tcp*.c
13218
13219 NETWORKING [TLS]
13220 M:      Boris Pismenny <borisp@nvidia.com>
13221 M:      John Fastabend <john.fastabend@gmail.com>
13222 M:      Daniel Borkmann <daniel@iogearbox.net>
13223 M:      Jakub Kicinski <kuba@kernel.org>
13224 L:      netdev@vger.kernel.org
13225 S:      Maintained
13226 F:      include/net/tls.h
13227 F:      include/uapi/linux/tls.h
13228 F:      net/tls/*
13229
13230 NETWORKING [WIRELESS]
13231 L:      linux-wireless@vger.kernel.org
13232 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13233
13234 NETXEN (1/10) GbE SUPPORT
13235 M:      Manish Chopra <manishc@marvell.com>
13236 M:      Rahul Verma <rahulv@marvell.com>
13237 M:      GR-Linux-NIC-Dev@marvell.com
13238 L:      netdev@vger.kernel.org
13239 S:      Supported
13240 F:      drivers/net/ethernet/qlogic/netxen/
13241
13242 NET_FAILOVER MODULE
13243 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13244 L:      netdev@vger.kernel.org
13245 S:      Supported
13246 F:      Documentation/networking/net_failover.rst
13247 F:      drivers/net/net_failover.c
13248 F:      include/net/net_failover.h
13249
13250 NEXTHOP
13251 M:      David Ahern <dsahern@kernel.org>
13252 L:      netdev@vger.kernel.org
13253 S:      Maintained
13254 F:      include/net/netns/nexthop.h
13255 F:      include/net/nexthop.h
13256 F:      include/uapi/linux/nexthop.h
13257 F:      net/ipv4/nexthop.c
13258
13259 NFC SUBSYSTEM
13260 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13261 L:      linux-nfc@lists.01.org (subscribers-only)
13262 L:      netdev@vger.kernel.org
13263 S:      Maintained
13264 F:      Documentation/devicetree/bindings/net/nfc/
13265 F:      drivers/nfc/
13266 F:      include/linux/platform_data/nfcmrvl.h
13267 F:      include/net/nfc/
13268 F:      include/uapi/linux/nfc.h
13269 F:      net/nfc/
13270
13271 NFC VIRTUAL NCI DEVICE DRIVER
13272 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13273 L:      netdev@vger.kernel.org
13274 L:      linux-nfc@lists.01.org (subscribers-only)
13275 S:      Supported
13276 F:      drivers/nfc/virtual_ncidev.c
13277 F:      tools/testing/selftests/nci/
13278
13279 NFS, SUNRPC, AND LOCKD CLIENTS
13280 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13281 M:      Anna Schumaker <anna.schumaker@netapp.com>
13282 L:      linux-nfs@vger.kernel.org
13283 S:      Maintained
13284 W:      http://client.linux-nfs.org
13285 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13286 F:      fs/lockd/
13287 F:      fs/nfs/
13288 F:      fs/nfs_common/
13289 F:      include/linux/lockd/
13290 F:      include/linux/nfs*
13291 F:      include/linux/sunrpc/
13292 F:      include/uapi/linux/nfs*
13293 F:      include/uapi/linux/sunrpc/
13294 F:      net/sunrpc/
13295 F:      Documentation/filesystems/nfs/
13296
13297 NILFS2 FILESYSTEM
13298 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13299 L:      linux-nilfs@vger.kernel.org
13300 S:      Supported
13301 W:      https://nilfs.sourceforge.io/
13302 W:      https://nilfs.osdn.jp/
13303 T:      git git://github.com/konis/nilfs2.git
13304 F:      Documentation/filesystems/nilfs2.rst
13305 F:      fs/nilfs2/
13306 F:      include/trace/events/nilfs2.h
13307 F:      include/uapi/linux/nilfs2_api.h
13308 F:      include/uapi/linux/nilfs2_ondisk.h
13309
13310 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13311 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13312 S:      Maintained
13313 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13314 F:      Documentation/scsi/NinjaSCSI.rst
13315 F:      drivers/scsi/pcmcia/nsp_*
13316
13317 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13318 M:      GOTO Masanori <gotom@debian.or.jp>
13319 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13320 S:      Maintained
13321 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13322 F:      Documentation/scsi/NinjaSCSI.rst
13323 F:      drivers/scsi/nsp32*
13324
13325 NIOS2 ARCHITECTURE
13326 M:      Dinh Nguyen <dinguyen@kernel.org>
13327 S:      Maintained
13328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13329 F:      arch/nios2/
13330
13331 NITRO ENCLAVES (NE)
13332 M:      Andra Paraschiv <andraprs@amazon.com>
13333 M:      Alexandru Vasile <lexnv@amazon.com>
13334 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13335 L:      linux-kernel@vger.kernel.org
13336 S:      Supported
13337 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13338 F:      Documentation/virt/ne_overview.rst
13339 F:      drivers/virt/nitro_enclaves/
13340 F:      include/linux/nitro_enclaves.h
13341 F:      include/uapi/linux/nitro_enclaves.h
13342 F:      samples/nitro_enclaves/
13343
13344 NOHZ, DYNTICKS SUPPORT
13345 M:      Frederic Weisbecker <fweisbec@gmail.com>
13346 M:      Thomas Gleixner <tglx@linutronix.de>
13347 M:      Ingo Molnar <mingo@kernel.org>
13348 L:      linux-kernel@vger.kernel.org
13349 S:      Maintained
13350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13351 F:      include/linux/sched/nohz.h
13352 F:      include/linux/tick.h
13353 F:      kernel/time/tick*.*
13354
13355 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13356 M:      Pavel Machek <pavel@ucw.cz>
13357 M:      Sakari Ailus <sakari.ailus@iki.fi>
13358 L:      linux-media@vger.kernel.org
13359 S:      Maintained
13360 F:      drivers/media/i2c/ad5820.c
13361 F:      drivers/media/i2c/et8ek8
13362
13363 NOKIA N900 POWER SUPPLY DRIVERS
13364 R:      Pali Rohár <pali@kernel.org>
13365 F:      drivers/power/supply/bq2415x_charger.c
13366 F:      drivers/power/supply/bq27xxx_battery.c
13367 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13368 F:      drivers/power/supply/isp1704_charger.c
13369 F:      drivers/power/supply/rx51_battery.c
13370 F:      include/linux/power/bq2415x_charger.h
13371 F:      include/linux/power/bq27xxx_battery.h
13372
13373 NOLIBC HEADER FILE
13374 M:      Willy Tarreau <w@1wt.eu>
13375 S:      Maintained
13376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13377 F:      tools/include/nolibc/
13378
13379 NSDEPS
13380 M:      Matthias Maennich <maennich@google.com>
13381 S:      Maintained
13382 F:      Documentation/core-api/symbol-namespaces.rst
13383 F:      scripts/nsdeps
13384
13385 NTB AMD DRIVER
13386 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13387 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13388 L:      linux-ntb@googlegroups.com
13389 S:      Supported
13390 F:      drivers/ntb/hw/amd/
13391
13392 NTB DRIVER CORE
13393 M:      Jon Mason <jdmason@kudzu.us>
13394 M:      Dave Jiang <dave.jiang@intel.com>
13395 M:      Allen Hubbe <allenbh@gmail.com>
13396 L:      linux-ntb@googlegroups.com
13397 S:      Supported
13398 W:      https://github.com/jonmason/ntb/wiki
13399 T:      git git://github.com/jonmason/ntb.git
13400 F:      drivers/net/ntb_netdev.c
13401 F:      drivers/ntb/
13402 F:      include/linux/ntb.h
13403 F:      include/linux/ntb_transport.h
13404 F:      tools/testing/selftests/ntb/
13405
13406 NTB IDT DRIVER
13407 M:      Serge Semin <fancer.lancer@gmail.com>
13408 L:      linux-ntb@googlegroups.com
13409 S:      Supported
13410 F:      drivers/ntb/hw/idt/
13411
13412 NTB INTEL DRIVER
13413 M:      Dave Jiang <dave.jiang@intel.com>
13414 L:      linux-ntb@googlegroups.com
13415 S:      Supported
13416 W:      https://github.com/davejiang/linux/wiki
13417 T:      git https://github.com/davejiang/linux.git
13418 F:      drivers/ntb/hw/intel/
13419
13420 NTFS FILESYSTEM
13421 M:      Anton Altaparmakov <anton@tuxera.com>
13422 L:      linux-ntfs-dev@lists.sourceforge.net
13423 S:      Supported
13424 W:      http://www.tuxera.com/
13425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13426 F:      Documentation/filesystems/ntfs.rst
13427 F:      fs/ntfs/
13428
13429 NTFS3 FILESYSTEM
13430 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13431 L:      ntfs3@lists.linux.dev
13432 S:      Supported
13433 W:      http://www.paragon-software.com/
13434 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13435 F:      Documentation/filesystems/ntfs3.rst
13436 F:      fs/ntfs3/
13437
13438 NUBUS SUBSYSTEM
13439 M:      Finn Thain <fthain@linux-m68k.org>
13440 L:      linux-m68k@lists.linux-m68k.org
13441 S:      Maintained
13442 F:      arch/*/include/asm/nubus.h
13443 F:      drivers/nubus/
13444 F:      include/linux/nubus.h
13445 F:      include/uapi/linux/nubus.h
13446
13447 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13448 M:      Antonino Daplas <adaplas@gmail.com>
13449 L:      linux-fbdev@vger.kernel.org
13450 S:      Maintained
13451 F:      drivers/video/fbdev/nvidia/
13452 F:      drivers/video/fbdev/riva/
13453
13454 NVM EXPRESS DRIVER
13455 M:      Keith Busch <kbusch@kernel.org>
13456 M:      Jens Axboe <axboe@fb.com>
13457 M:      Christoph Hellwig <hch@lst.de>
13458 M:      Sagi Grimberg <sagi@grimberg.me>
13459 L:      linux-nvme@lists.infradead.org
13460 S:      Supported
13461 W:      http://git.infradead.org/nvme.git
13462 T:      git://git.infradead.org/nvme.git
13463 F:      drivers/nvme/host/
13464 F:      include/linux/nvme.h
13465 F:      include/uapi/linux/nvme_ioctl.h
13466
13467 NVM EXPRESS FC TRANSPORT DRIVERS
13468 M:      James Smart <james.smart@broadcom.com>
13469 L:      linux-nvme@lists.infradead.org
13470 S:      Supported
13471 F:      drivers/nvme/host/fc.c
13472 F:      drivers/nvme/target/fc.c
13473 F:      drivers/nvme/target/fcloop.c
13474 F:      include/linux/nvme-fc-driver.h
13475 F:      include/linux/nvme-fc.h
13476
13477 NVM EXPRESS TARGET DRIVER
13478 M:      Christoph Hellwig <hch@lst.de>
13479 M:      Sagi Grimberg <sagi@grimberg.me>
13480 M:      Chaitanya Kulkarni <kch@nvidia.com>
13481 L:      linux-nvme@lists.infradead.org
13482 S:      Supported
13483 W:      http://git.infradead.org/nvme.git
13484 T:      git://git.infradead.org/nvme.git
13485 F:      drivers/nvme/target/
13486
13487 NVMEM FRAMEWORK
13488 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13489 S:      Maintained
13490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13491 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13492 F:      Documentation/devicetree/bindings/nvmem/
13493 F:      drivers/nvmem/
13494 F:      include/linux/nvmem-consumer.h
13495 F:      include/linux/nvmem-provider.h
13496
13497 NXP C45 TJA11XX PHY DRIVER
13498 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13499 L:      netdev@vger.kernel.org
13500 S:      Maintained
13501 F:      drivers/net/phy/nxp-c45-tja11xx.c
13502
13503 NXP FSPI DRIVER
13504 M:      Ashish Kumar <ashish.kumar@nxp.com>
13505 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13506 L:      linux-spi@vger.kernel.org
13507 S:      Maintained
13508 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13509 F:      drivers/spi/spi-nxp-fspi.c
13510
13511 NXP FXAS21002C DRIVER
13512 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13513 L:      linux-iio@vger.kernel.org
13514 S:      Maintained
13515 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13516 F:      drivers/iio/gyro/fxas21002c.h
13517 F:      drivers/iio/gyro/fxas21002c_core.c
13518 F:      drivers/iio/gyro/fxas21002c_i2c.c
13519 F:      drivers/iio/gyro/fxas21002c_spi.c
13520
13521 NXP i.MX CLOCK DRIVERS
13522 M:      Abel Vesa <abel.vesa@nxp.com>
13523 L:      linux-clk@vger.kernel.org
13524 L:      linux-imx@nxp.com
13525 S:      Maintained
13526 F:      drivers/clk/imx/
13527
13528 NXP i.MX 8MQ DCSS DRIVER
13529 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13530 R:      Lucas Stach <l.stach@pengutronix.de>
13531 L:      dri-devel@lists.freedesktop.org
13532 S:      Maintained
13533 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13534 F:      drivers/gpu/drm/imx/dcss/
13535
13536 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13537 M:      Jagan Teki <jagan@amarulasolutions.com>
13538 S:      Maintained
13539 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13540 F:      drivers/regulator/pf8x00-regulator.c
13541
13542 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13543 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13544 L:      linux-kernel@vger.kernel.org
13545 S:      Maintained
13546 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13547 F:      drivers/extcon/extcon-ptn5150.c
13548
13549 NXP SGTL5000 DRIVER
13550 M:      Fabio Estevam <festevam@gmail.com>
13551 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13552 S:      Maintained
13553 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13554 F:      sound/soc/codecs/sgtl5000*
13555
13556 NXP SJA1105 ETHERNET SWITCH DRIVER
13557 M:      Vladimir Oltean <olteanv@gmail.com>
13558 L:      linux-kernel@vger.kernel.org
13559 S:      Maintained
13560 F:      drivers/net/dsa/sja1105
13561 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13562
13563 NXP TDA998X DRM DRIVER
13564 M:      Russell King <linux@armlinux.org.uk>
13565 S:      Maintained
13566 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13567 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13568 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13569 F:      include/drm/i2c/tda998x.h
13570 F:      include/dt-bindings/display/tda998x.h
13571 K:      "nxp,tda998x"
13572
13573 NXP TFA9879 DRIVER
13574 M:      Peter Rosin <peda@axentia.se>
13575 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13576 S:      Maintained
13577 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13578 F:      sound/soc/codecs/tfa9879*
13579
13580 NXP/Goodix TFA989X (TFA1) DRIVER
13581 M:      Stephan Gerhold <stephan@gerhold.net>
13582 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13583 S:      Maintained
13584 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13585 F:      sound/soc/codecs/tfa989x.c
13586
13587 NXP-NCI NFC DRIVER
13588 R:      Charles Gorand <charles.gorand@effinnov.com>
13589 L:      linux-nfc@lists.01.org (subscribers-only)
13590 S:      Supported
13591 F:      drivers/nfc/nxp-nci
13592
13593 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13594 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13595 R:      NXP Linux Team <linux-imx@nxp.com>
13596 L:      linux-media@vger.kernel.org
13597 S:      Maintained
13598 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13599 F:      drivers/media/platform/imx-jpeg
13600
13601 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13602 M:      Jonas Malaco <jonas@protocubo.io>
13603 L:      linux-hwmon@vger.kernel.org
13604 S:      Maintained
13605 F:      Documentation/hwmon/nzxt-kraken2.rst
13606 F:      drivers/hwmon/nzxt-kraken2.c
13607
13608 OBJAGG
13609 M:      Jiri Pirko <jiri@nvidia.com>
13610 L:      netdev@vger.kernel.org
13611 S:      Supported
13612 F:      include/linux/objagg.h
13613 F:      lib/objagg.c
13614 F:      lib/test_objagg.c
13615
13616 OBJTOOL
13617 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13618 M:      Peter Zijlstra <peterz@infradead.org>
13619 S:      Supported
13620 F:      tools/objtool/
13621 F:      include/linux/objtool.h
13622
13623 OCELOT ETHERNET SWITCH DRIVER
13624 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13625 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13626 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13627 M:      UNGLinuxDriver@microchip.com
13628 L:      netdev@vger.kernel.org
13629 S:      Supported
13630 F:      drivers/net/dsa/ocelot/*
13631 F:      drivers/net/ethernet/mscc/
13632 F:      include/soc/mscc/ocelot*
13633 F:      net/dsa/tag_ocelot.c
13634 F:      net/dsa/tag_ocelot_8021q.c
13635 F:      tools/testing/selftests/drivers/net/ocelot/*
13636
13637 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13638 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13639 M:      Andrew Donnellan <ajd@linux.ibm.com>
13640 L:      linuxppc-dev@lists.ozlabs.org
13641 S:      Supported
13642 F:      Documentation/userspace-api/accelerators/ocxl.rst
13643 F:      arch/powerpc/include/asm/pnv-ocxl.h
13644 F:      arch/powerpc/platforms/powernv/ocxl.c
13645 F:      drivers/misc/ocxl/
13646 F:      include/misc/ocxl*
13647 F:      include/uapi/misc/ocxl.h
13648
13649 OMAP AUDIO SUPPORT
13650 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13651 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13652 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13653 L:      linux-omap@vger.kernel.org
13654 S:      Maintained
13655 F:      sound/soc/ti/n810.c
13656 F:      sound/soc/ti/omap*
13657 F:      sound/soc/ti/rx51.c
13658 F:      sound/soc/ti/sdma-pcm.*
13659
13660 OMAP CLOCK FRAMEWORK SUPPORT
13661 M:      Paul Walmsley <paul@pwsan.com>
13662 L:      linux-omap@vger.kernel.org
13663 S:      Maintained
13664 F:      arch/arm/*omap*/*clock*
13665
13666 OMAP DEVICE TREE SUPPORT
13667 M:      Benoît Cousson <bcousson@baylibre.com>
13668 M:      Tony Lindgren <tony@atomide.com>
13669 L:      linux-omap@vger.kernel.org
13670 L:      devicetree@vger.kernel.org
13671 S:      Maintained
13672 F:      arch/arm/boot/dts/*am3*
13673 F:      arch/arm/boot/dts/*am4*
13674 F:      arch/arm/boot/dts/*am5*
13675 F:      arch/arm/boot/dts/*dra7*
13676 F:      arch/arm/boot/dts/*omap*
13677 F:      arch/arm/boot/dts/logicpd-som-lv*
13678 F:      arch/arm/boot/dts/logicpd-torpedo*
13679
13680 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13681 L:      linux-omap@vger.kernel.org
13682 L:      linux-fbdev@vger.kernel.org
13683 S:      Orphan
13684 F:      Documentation/arm/omap/dss.rst
13685 F:      drivers/video/fbdev/omap2/
13686
13687 OMAP FRAMEBUFFER SUPPORT
13688 L:      linux-fbdev@vger.kernel.org
13689 L:      linux-omap@vger.kernel.org
13690 S:      Orphan
13691 F:      drivers/video/fbdev/omap/
13692
13693 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13694 M:      Roger Quadros <rogerq@kernel.org>
13695 M:      Tony Lindgren <tony@atomide.com>
13696 L:      linux-omap@vger.kernel.org
13697 S:      Maintained
13698 F:      arch/arm/mach-omap2/*gpmc*
13699 F:      drivers/memory/omap-gpmc.c
13700
13701 OMAP GPIO DRIVER
13702 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13703 M:      Santosh Shilimkar <ssantosh@kernel.org>
13704 M:      Kevin Hilman <khilman@kernel.org>
13705 L:      linux-omap@vger.kernel.org
13706 S:      Maintained
13707 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13708 F:      drivers/gpio/gpio-omap.c
13709
13710 OMAP HARDWARE SPINLOCK SUPPORT
13711 M:      Ohad Ben-Cohen <ohad@wizery.com>
13712 L:      linux-omap@vger.kernel.org
13713 S:      Maintained
13714 F:      drivers/hwspinlock/omap_hwspinlock.c
13715
13716 OMAP HS MMC SUPPORT
13717 L:      linux-mmc@vger.kernel.org
13718 L:      linux-omap@vger.kernel.org
13719 S:      Orphan
13720 F:      drivers/mmc/host/omap_hsmmc.c
13721
13722 OMAP HWMOD DATA
13723 M:      Paul Walmsley <paul@pwsan.com>
13724 L:      linux-omap@vger.kernel.org
13725 S:      Maintained
13726 F:      arch/arm/mach-omap2/omap_hwmod*data*
13727
13728 OMAP HWMOD SUPPORT
13729 M:      Benoît Cousson <bcousson@baylibre.com>
13730 M:      Paul Walmsley <paul@pwsan.com>
13731 L:      linux-omap@vger.kernel.org
13732 S:      Maintained
13733 F:      arch/arm/mach-omap2/omap_hwmod.*
13734
13735 OMAP I2C DRIVER
13736 M:      Vignesh R <vigneshr@ti.com>
13737 L:      linux-omap@vger.kernel.org
13738 L:      linux-i2c@vger.kernel.org
13739 S:      Maintained
13740 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13741 F:      drivers/i2c/busses/i2c-omap.c
13742
13743 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13744 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13745 L:      linux-media@vger.kernel.org
13746 S:      Maintained
13747 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13748 F:      drivers/media/platform/omap3isp/
13749 F:      drivers/staging/media/omap4iss/
13750
13751 OMAP MMC SUPPORT
13752 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13753 L:      linux-omap@vger.kernel.org
13754 S:      Odd Fixes
13755 F:      drivers/mmc/host/omap.c
13756
13757 OMAP POWER MANAGEMENT SUPPORT
13758 M:      Kevin Hilman <khilman@kernel.org>
13759 L:      linux-omap@vger.kernel.org
13760 S:      Maintained
13761 F:      arch/arm/*omap*/*pm*
13762 F:      drivers/cpufreq/omap-cpufreq.c
13763
13764 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13765 M:      Rajendra Nayak <rnayak@codeaurora.org>
13766 M:      Paul Walmsley <paul@pwsan.com>
13767 L:      linux-omap@vger.kernel.org
13768 S:      Maintained
13769 F:      arch/arm/mach-omap2/prm*
13770
13771 OMAP RANDOM NUMBER GENERATOR SUPPORT
13772 M:      Deepak Saxena <dsaxena@plexity.net>
13773 S:      Maintained
13774 F:      drivers/char/hw_random/omap-rng.c
13775
13776 OMAP USB SUPPORT
13777 L:      linux-usb@vger.kernel.org
13778 L:      linux-omap@vger.kernel.org
13779 S:      Orphan
13780 F:      arch/arm/*omap*/usb*
13781 F:      drivers/usb/*/*omap*
13782
13783 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13784 M:      Mark Jackson <mpfj@newflow.co.uk>
13785 L:      linux-omap@vger.kernel.org
13786 S:      Maintained
13787 F:      arch/arm/boot/dts/am335x-nano.dts
13788
13789 OMAP1 SUPPORT
13790 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13791 M:      Tony Lindgren <tony@atomide.com>
13792 L:      linux-omap@vger.kernel.org
13793 S:      Maintained
13794 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13796 F:      arch/arm/configs/omap1_defconfig
13797 F:      arch/arm/mach-omap1/
13798 F:      arch/arm/plat-omap/
13799 F:      drivers/i2c/busses/i2c-omap.c
13800 F:      include/linux/platform_data/ams-delta-fiq.h
13801 F:      include/linux/platform_data/i2c-omap.h
13802
13803 OMAP2+ SUPPORT
13804 M:      Tony Lindgren <tony@atomide.com>
13805 L:      linux-omap@vger.kernel.org
13806 S:      Maintained
13807 W:      http://www.muru.com/linux/omap/
13808 W:      http://linux.omap.com/
13809 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13811 F:      arch/arm/configs/omap2plus_defconfig
13812 F:      arch/arm/mach-omap2/
13813 F:      arch/arm/plat-omap/
13814 F:      drivers/bus/ti-sysc.c
13815 F:      drivers/i2c/busses/i2c-omap.c
13816 F:      drivers/irqchip/irq-omap-intc.c
13817 F:      drivers/mfd/*omap*.c
13818 F:      drivers/mfd/menelaus.c
13819 F:      drivers/mfd/palmas.c
13820 F:      drivers/mfd/tps65217.c
13821 F:      drivers/mfd/tps65218.c
13822 F:      drivers/mfd/tps65910.c
13823 F:      drivers/mfd/twl-core.[ch]
13824 F:      drivers/mfd/twl4030*.c
13825 F:      drivers/mfd/twl6030*.c
13826 F:      drivers/mfd/twl6040*.c
13827 F:      drivers/regulator/palmas-regulator*.c
13828 F:      drivers/regulator/pbias-regulator.c
13829 F:      drivers/regulator/tps65217-regulator.c
13830 F:      drivers/regulator/tps65218-regulator.c
13831 F:      drivers/regulator/tps65910-regulator.c
13832 F:      drivers/regulator/twl-regulator.c
13833 F:      drivers/regulator/twl6030-regulator.c
13834 F:      include/linux/platform_data/i2c-omap.h
13835 F:      include/linux/platform_data/ti-sysc.h
13836
13837 OMFS FILESYSTEM
13838 M:      Bob Copeland <me@bobcopeland.com>
13839 L:      linux-karma-devel@lists.sourceforge.net
13840 S:      Maintained
13841 F:      Documentation/filesystems/omfs.rst
13842 F:      fs/omfs/
13843
13844 OMNIKEY CARDMAN 4000 DRIVER
13845 M:      Harald Welte <laforge@gnumonks.org>
13846 S:      Maintained
13847 F:      drivers/char/pcmcia/cm4000_cs.c
13848 F:      include/linux/cm4000_cs.h
13849 F:      include/uapi/linux/cm4000_cs.h
13850
13851 OMNIKEY CARDMAN 4040 DRIVER
13852 M:      Harald Welte <laforge@gnumonks.org>
13853 S:      Maintained
13854 F:      drivers/char/pcmcia/cm4040_cs.*
13855
13856 OMNIVISION OV02A10 SENSOR DRIVER
13857 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13858 L:      linux-media@vger.kernel.org
13859 S:      Maintained
13860 T:      git git://linuxtv.org/media_tree.git
13861 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13862 F:      drivers/media/i2c/ov02a10.c
13863
13864 OMNIVISION OV13858 SENSOR DRIVER
13865 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13866 L:      linux-media@vger.kernel.org
13867 S:      Maintained
13868 T:      git git://linuxtv.org/media_tree.git
13869 F:      drivers/media/i2c/ov13858.c
13870
13871 OMNIVISION OV2680 SENSOR DRIVER
13872 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13873 L:      linux-media@vger.kernel.org
13874 S:      Maintained
13875 T:      git git://linuxtv.org/media_tree.git
13876 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13877 F:      drivers/media/i2c/ov2680.c
13878
13879 OMNIVISION OV2685 SENSOR DRIVER
13880 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13881 L:      linux-media@vger.kernel.org
13882 S:      Maintained
13883 T:      git git://linuxtv.org/media_tree.git
13884 F:      drivers/media/i2c/ov2685.c
13885
13886 OMNIVISION OV2740 SENSOR DRIVER
13887 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13888 R:      Shawn Tu <shawnx.tu@intel.com>
13889 R:      Bingbu Cao <bingbu.cao@intel.com>
13890 L:      linux-media@vger.kernel.org
13891 S:      Maintained
13892 T:      git git://linuxtv.org/media_tree.git
13893 F:      drivers/media/i2c/ov2740.c
13894
13895 OMNIVISION OV5640 SENSOR DRIVER
13896 M:      Steve Longerbeam <slongerbeam@gmail.com>
13897 L:      linux-media@vger.kernel.org
13898 S:      Maintained
13899 T:      git git://linuxtv.org/media_tree.git
13900 F:      drivers/media/i2c/ov5640.c
13901
13902 OMNIVISION OV5647 SENSOR DRIVER
13903 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13904 M:      Jacopo Mondi <jacopo@jmondi.org>
13905 L:      linux-media@vger.kernel.org
13906 S:      Maintained
13907 T:      git git://linuxtv.org/media_tree.git
13908 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13909 F:      drivers/media/i2c/ov5647.c
13910
13911 OMNIVISION OV5670 SENSOR DRIVER
13912 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13913 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13914 L:      linux-media@vger.kernel.org
13915 S:      Maintained
13916 T:      git git://linuxtv.org/media_tree.git
13917 F:      drivers/media/i2c/ov5670.c
13918
13919 OMNIVISION OV5675 SENSOR DRIVER
13920 M:      Shawn Tu <shawnx.tu@intel.com>
13921 L:      linux-media@vger.kernel.org
13922 S:      Maintained
13923 T:      git git://linuxtv.org/media_tree.git
13924 F:      drivers/media/i2c/ov5675.c
13925
13926 OMNIVISION OV5695 SENSOR DRIVER
13927 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13928 L:      linux-media@vger.kernel.org
13929 S:      Maintained
13930 T:      git git://linuxtv.org/media_tree.git
13931 F:      drivers/media/i2c/ov5695.c
13932
13933 OMNIVISION OV7670 SENSOR DRIVER
13934 L:      linux-media@vger.kernel.org
13935 S:      Orphan
13936 T:      git git://linuxtv.org/media_tree.git
13937 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13938 F:      drivers/media/i2c/ov7670.c
13939
13940 OMNIVISION OV772x SENSOR DRIVER
13941 M:      Jacopo Mondi <jacopo@jmondi.org>
13942 L:      linux-media@vger.kernel.org
13943 S:      Odd fixes
13944 T:      git git://linuxtv.org/media_tree.git
13945 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13946 F:      drivers/media/i2c/ov772x.c
13947 F:      include/media/i2c/ov772x.h
13948
13949 OMNIVISION OV7740 SENSOR DRIVER
13950 M:      Wenyou Yang <wenyou.yang@microchip.com>
13951 L:      linux-media@vger.kernel.org
13952 S:      Maintained
13953 T:      git git://linuxtv.org/media_tree.git
13954 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13955 F:      drivers/media/i2c/ov7740.c
13956
13957 OMNIVISION OV8856 SENSOR DRIVER
13958 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13959 L:      linux-media@vger.kernel.org
13960 S:      Maintained
13961 T:      git git://linuxtv.org/media_tree.git
13962 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13963 F:      drivers/media/i2c/ov8856.c
13964
13965 OMNIVISION OV9282 SENSOR DRIVER
13966 M:      Paul J. Murphy <paul.j.murphy@intel.com>
13967 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
13968 L:      linux-media@vger.kernel.org
13969 S:      Maintained
13970 T:      git git://linuxtv.org/media_tree.git
13971 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
13972 F:      drivers/media/i2c/ov9282.c
13973
13974 OMNIVISION OV9640 SENSOR DRIVER
13975 M:      Petr Cvek <petrcvekcz@gmail.com>
13976 L:      linux-media@vger.kernel.org
13977 S:      Maintained
13978 F:      drivers/media/i2c/ov9640.*
13979
13980 OMNIVISION OV9650 SENSOR DRIVER
13981 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13982 R:      Akinobu Mita <akinobu.mita@gmail.com>
13983 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13984 L:      linux-media@vger.kernel.org
13985 S:      Maintained
13986 T:      git git://linuxtv.org/media_tree.git
13987 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13988 F:      drivers/media/i2c/ov9650.c
13989
13990 OMNIVISION OV9734 SENSOR DRIVER
13991 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13992 R:      Bingbu Cao <bingbu.cao@intel.com>
13993 L:      linux-media@vger.kernel.org
13994 S:      Maintained
13995 T:      git git://linuxtv.org/media_tree.git
13996 F:      drivers/media/i2c/ov9734.c
13997
13998 ONENAND FLASH DRIVER
13999 M:      Kyungmin Park <kyungmin.park@samsung.com>
14000 L:      linux-mtd@lists.infradead.org
14001 S:      Maintained
14002 F:      drivers/mtd/nand/onenand/
14003 F:      include/linux/mtd/onenand*.h
14004
14005 ONION OMEGA2+ BOARD
14006 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14007 L:      linux-mips@vger.kernel.org
14008 S:      Maintained
14009 F:      arch/mips/boot/dts/ralink/omega2p.dts
14010
14011 OP-TEE DRIVER
14012 M:      Jens Wiklander <jens.wiklander@linaro.org>
14013 L:      op-tee@lists.trustedfirmware.org
14014 S:      Maintained
14015 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14016 F:      drivers/tee/optee/
14017
14018 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14019 M:      Sumit Garg <sumit.garg@linaro.org>
14020 L:      op-tee@lists.trustedfirmware.org
14021 S:      Maintained
14022 F:      drivers/char/hw_random/optee-rng.c
14023
14024 OPA-VNIC DRIVER
14025 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14026 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14027 L:      linux-rdma@vger.kernel.org
14028 S:      Supported
14029 F:      drivers/infiniband/ulp/opa_vnic
14030
14031 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14032 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14033 M:      Frank Rowand <frowand.list@gmail.com>
14034 L:      devicetree@vger.kernel.org
14035 S:      Maintained
14036 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14037 F:      Documentation/devicetree/overlay-notes.rst
14038 F:      drivers/of/overlay.c
14039 F:      drivers/of/resolver.c
14040 K:      of_overlay_notifier_
14041
14042 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14043 M:      Rob Herring <robh+dt@kernel.org>
14044 M:      Frank Rowand <frowand.list@gmail.com>
14045 L:      devicetree@vger.kernel.org
14046 S:      Maintained
14047 W:      http://www.devicetree.org/
14048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14049 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14050 F:      drivers/of/
14051 F:      include/linux/of*.h
14052 F:      scripts/dtc/
14053
14054 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14055 M:      Rob Herring <robh+dt@kernel.org>
14056 L:      devicetree@vger.kernel.org
14057 S:      Maintained
14058 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14060 F:      Documentation/devicetree/
14061 F:      arch/*/boot/dts/
14062 F:      include/dt-bindings/
14063
14064 OPENCOMPUTE PTP CLOCK DRIVER
14065 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14066 L:      netdev@vger.kernel.org
14067 S:      Maintained
14068 F:      drivers/ptp/ptp_ocp.c
14069
14070 OPENCORES I2C BUS DRIVER
14071 M:      Peter Korsgaard <peter@korsgaard.com>
14072 M:      Andrew Lunn <andrew@lunn.ch>
14073 L:      linux-i2c@vger.kernel.org
14074 S:      Maintained
14075 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14076 F:      Documentation/i2c/busses/i2c-ocores.rst
14077 F:      drivers/i2c/busses/i2c-ocores.c
14078 F:      include/linux/platform_data/i2c-ocores.h
14079
14080 OPENRISC ARCHITECTURE
14081 M:      Jonas Bonn <jonas@southpole.se>
14082 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14083 M:      Stafford Horne <shorne@gmail.com>
14084 L:      openrisc@lists.librecores.org
14085 S:      Maintained
14086 W:      http://openrisc.io
14087 T:      git git://github.com/openrisc/linux.git
14088 F:      Documentation/devicetree/bindings/openrisc/
14089 F:      Documentation/openrisc/
14090 F:      arch/openrisc/
14091 F:      drivers/irqchip/irq-ompic.c
14092 F:      drivers/irqchip/irq-or1k-*
14093
14094 OPENVSWITCH
14095 M:      Pravin B Shelar <pshelar@ovn.org>
14096 L:      netdev@vger.kernel.org
14097 L:      dev@openvswitch.org
14098 S:      Maintained
14099 W:      http://openvswitch.org
14100 F:      include/uapi/linux/openvswitch.h
14101 F:      net/openvswitch/
14102
14103 OPERATING PERFORMANCE POINTS (OPP)
14104 M:      Viresh Kumar <vireshk@kernel.org>
14105 M:      Nishanth Menon <nm@ti.com>
14106 M:      Stephen Boyd <sboyd@kernel.org>
14107 L:      linux-pm@vger.kernel.org
14108 S:      Maintained
14109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14110 F:      Documentation/devicetree/bindings/opp/
14111 F:      Documentation/power/opp.rst
14112 F:      drivers/opp/
14113 F:      include/linux/pm_opp.h
14114
14115 OPL4 DRIVER
14116 M:      Clemens Ladisch <clemens@ladisch.de>
14117 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14118 S:      Maintained
14119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14120 F:      sound/drivers/opl4/
14121
14122 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14123 M:      Mark Fasheh <mark@fasheh.com>
14124 M:      Joel Becker <jlbec@evilplan.org>
14125 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14126 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14127 S:      Supported
14128 W:      http://ocfs2.wiki.kernel.org
14129 F:      Documentation/filesystems/dlmfs.rst
14130 F:      Documentation/filesystems/ocfs2.rst
14131 F:      fs/ocfs2/
14132
14133 ORANGEFS FILESYSTEM
14134 M:      Mike Marshall <hubcap@omnibond.com>
14135 R:      Martin Brandenburg <martin@omnibond.com>
14136 L:      devel@lists.orangefs.org
14137 S:      Supported
14138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14139 F:      Documentation/filesystems/orangefs.rst
14140 F:      fs/orangefs/
14141
14142 ORINOCO DRIVER
14143 L:      linux-wireless@vger.kernel.org
14144 S:      Orphan
14145 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14146 W:      http://www.nongnu.org/orinoco/
14147 F:      drivers/net/wireless/intersil/orinoco/
14148
14149 OV2659 OMNIVISION SENSOR DRIVER
14150 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14151 L:      linux-media@vger.kernel.org
14152 S:      Maintained
14153 W:      https://linuxtv.org
14154 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14155 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14156 F:      drivers/media/i2c/ov2659.c
14157 F:      include/media/i2c/ov2659.h
14158
14159 OVERLAY FILESYSTEM
14160 M:      Miklos Szeredi <miklos@szeredi.hu>
14161 L:      linux-unionfs@vger.kernel.org
14162 S:      Supported
14163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14164 F:      Documentation/filesystems/overlayfs.rst
14165 F:      fs/overlayfs/
14166
14167 P54 WIRELESS DRIVER
14168 M:      Christian Lamparter <chunkeey@googlemail.com>
14169 L:      linux-wireless@vger.kernel.org
14170 S:      Maintained
14171 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14172 F:      drivers/net/wireless/intersil/p54/
14173
14174 PACKING
14175 M:      Vladimir Oltean <olteanv@gmail.com>
14176 L:      netdev@vger.kernel.org
14177 S:      Supported
14178 F:      Documentation/core-api/packing.rst
14179 F:      include/linux/packing.h
14180 F:      lib/packing.c
14181
14182 PADATA PARALLEL EXECUTION MECHANISM
14183 M:      Steffen Klassert <steffen.klassert@secunet.com>
14184 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14185 L:      linux-crypto@vger.kernel.org
14186 L:      linux-kernel@vger.kernel.org
14187 S:      Maintained
14188 F:      Documentation/core-api/padata.rst
14189 F:      include/linux/padata.h
14190 F:      kernel/padata.c
14191
14192 PAGE POOL
14193 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14194 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14195 L:      netdev@vger.kernel.org
14196 S:      Supported
14197 F:      Documentation/networking/page_pool.rst
14198 F:      include/net/page_pool.h
14199 F:      include/trace/events/page_pool.h
14200 F:      net/core/page_pool.c
14201
14202 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14203 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14204 L:      platform-driver-x86@vger.kernel.org
14205 S:      Maintained
14206 F:      drivers/platform/x86/panasonic-laptop.c
14207
14208 PARALLAX PING IIO SENSOR DRIVER
14209 M:      Andreas Klinger <ak@it-klinger.de>
14210 L:      linux-iio@vger.kernel.org
14211 S:      Maintained
14212 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14213 F:      drivers/iio/proximity/ping.c
14214
14215 PARALLEL LCD/KEYPAD PANEL DRIVER
14216 M:      Willy Tarreau <willy@haproxy.com>
14217 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14218 S:      Odd Fixes
14219 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14220 F:      drivers/auxdisplay/panel.c
14221
14222 PARALLEL PORT SUBSYSTEM
14223 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14224 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14225 L:      linux-parport@lists.infradead.org (subscribers-only)
14226 S:      Maintained
14227 F:      Documentation/driver-api/parport*.rst
14228 F:      drivers/char/ppdev.c
14229 F:      drivers/parport/
14230 F:      include/linux/parport*.h
14231 F:      include/uapi/linux/ppdev.h
14232
14233 PARAVIRT_OPS INTERFACE
14234 M:      Juergen Gross <jgross@suse.com>
14235 M:      Deep Shah <sdeep@vmware.com>
14236 M:      "VMware, Inc." <pv-drivers@vmware.com>
14237 L:      virtualization@lists.linux-foundation.org
14238 S:      Supported
14239 F:      Documentation/virt/paravirt_ops.rst
14240 F:      arch/*/include/asm/paravirt*.h
14241 F:      arch/*/kernel/paravirt*
14242 F:      include/linux/hypervisor.h
14243
14244 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14245 M:      Tim Waugh <tim@cyberelk.net>
14246 L:      linux-parport@lists.infradead.org (subscribers-only)
14247 S:      Maintained
14248 F:      Documentation/admin-guide/blockdev/paride.rst
14249 F:      drivers/block/paride/
14250
14251 PARISC ARCHITECTURE
14252 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14253 M:      Helge Deller <deller@gmx.de>
14254 L:      linux-parisc@vger.kernel.org
14255 S:      Maintained
14256 W:      https://parisc.wiki.kernel.org
14257 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14260 F:      Documentation/parisc/
14261 F:      arch/parisc/
14262 F:      drivers/char/agp/parisc-agp.c
14263 F:      drivers/input/misc/hp_sdc_rtc.c
14264 F:      drivers/input/serio/gscps2.c
14265 F:      drivers/input/serio/hp_sdc*
14266 F:      drivers/parisc/
14267 F:      drivers/parport/parport_gsc.*
14268 F:      drivers/tty/serial/8250/8250_gsc.c
14269 F:      drivers/video/console/sti*
14270 F:      drivers/video/fbdev/sti*
14271 F:      drivers/video/logo/logo_parisc*
14272 F:      include/linux/hp_sdc.h
14273
14274 PARMAN
14275 M:      Jiri Pirko <jiri@nvidia.com>
14276 L:      netdev@vger.kernel.org
14277 S:      Supported
14278 F:      include/linux/parman.h
14279 F:      lib/parman.c
14280 F:      lib/test_parman.c
14281
14282 PC ENGINES APU BOARD DRIVER
14283 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14284 S:      Maintained
14285 F:      drivers/platform/x86/pcengines-apuv2.c
14286
14287 PC87360 HARDWARE MONITORING DRIVER
14288 M:      Jim Cromie <jim.cromie@gmail.com>
14289 L:      linux-hwmon@vger.kernel.org
14290 S:      Maintained
14291 F:      Documentation/hwmon/pc87360.rst
14292 F:      drivers/hwmon/pc87360.c
14293
14294 PC8736x GPIO DRIVER
14295 M:      Jim Cromie <jim.cromie@gmail.com>
14296 S:      Maintained
14297 F:      drivers/char/pc8736x_gpio.c
14298
14299 PC87427 HARDWARE MONITORING DRIVER
14300 M:      Jean Delvare <jdelvare@suse.com>
14301 L:      linux-hwmon@vger.kernel.org
14302 S:      Maintained
14303 F:      Documentation/hwmon/pc87427.rst
14304 F:      drivers/hwmon/pc87427.c
14305
14306 PCA9532 LED DRIVER
14307 M:      Riku Voipio <riku.voipio@iki.fi>
14308 S:      Maintained
14309 F:      drivers/leds/leds-pca9532.c
14310 F:      include/linux/leds-pca9532.h
14311
14312 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14313 M:      Guenter Roeck <linux@roeck-us.net>
14314 L:      linux-i2c@vger.kernel.org
14315 S:      Maintained
14316 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14317
14318 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14319 M:      Khalid Aziz <khalid@gonehiking.org>
14320 S:      Maintained
14321 F:      drivers/firmware/pcdp.*
14322
14323 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14324 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14325 M:      Pali Rohár <pali@kernel.org>
14326 L:      linux-pci@vger.kernel.org
14327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14328 S:      Maintained
14329 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14330 F:      drivers/pci/controller/pci-aardvark.c
14331
14332 PCI DRIVER FOR ALTERA PCIE IP
14333 M:      Joyce Ooi <joyce.ooi@intel.com>
14334 L:      linux-pci@vger.kernel.org
14335 S:      Supported
14336 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14337 F:      drivers/pci/controller/pcie-altera.c
14338
14339 PCI DRIVER FOR APPLIEDMICRO XGENE
14340 M:      Toan Le <toan@os.amperecomputing.com>
14341 L:      linux-pci@vger.kernel.org
14342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14343 S:      Maintained
14344 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14345 F:      drivers/pci/controller/pci-xgene.c
14346
14347 PCI DRIVER FOR ARM VERSATILE PLATFORM
14348 M:      Rob Herring <robh@kernel.org>
14349 L:      linux-pci@vger.kernel.org
14350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14351 S:      Maintained
14352 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14353 F:      drivers/pci/controller/pci-versatile.c
14354
14355 PCI DRIVER FOR ARMADA 8K
14356 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14357 L:      linux-pci@vger.kernel.org
14358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14359 S:      Maintained
14360 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14361 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14362
14363 PCI DRIVER FOR CADENCE PCIE IP
14364 M:      Tom Joseph <tjoseph@cadence.com>
14365 L:      linux-pci@vger.kernel.org
14366 S:      Maintained
14367 F:      Documentation/devicetree/bindings/pci/cdns,*
14368 F:      drivers/pci/controller/cadence/
14369
14370 PCI DRIVER FOR FREESCALE LAYERSCAPE
14371 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14372 M:      Mingkai Hu <mingkai.hu@nxp.com>
14373 M:      Roy Zang <roy.zang@nxp.com>
14374 L:      linuxppc-dev@lists.ozlabs.org
14375 L:      linux-pci@vger.kernel.org
14376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14377 S:      Maintained
14378 F:      drivers/pci/controller/dwc/*layerscape*
14379
14380 PCI DRIVER FOR GENERIC OF HOSTS
14381 M:      Will Deacon <will@kernel.org>
14382 L:      linux-pci@vger.kernel.org
14383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14384 S:      Maintained
14385 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14386 F:      drivers/pci/controller/pci-host-common.c
14387 F:      drivers/pci/controller/pci-host-generic.c
14388
14389 PCI DRIVER FOR IMX6
14390 M:      Richard Zhu <hongxing.zhu@nxp.com>
14391 M:      Lucas Stach <l.stach@pengutronix.de>
14392 L:      linux-pci@vger.kernel.org
14393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14394 S:      Maintained
14395 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14396 F:      drivers/pci/controller/dwc/*imx6*
14397
14398 PCI DRIVER FOR FU740
14399 M:      Paul Walmsley <paul.walmsley@sifive.com>
14400 M:      Greentime Hu <greentime.hu@sifive.com>
14401 L:      linux-pci@vger.kernel.org
14402 S:      Maintained
14403 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14404 F:      drivers/pci/controller/dwc/pcie-fu740.c
14405
14406 PCI DRIVER FOR INTEL IXP4XX
14407 M:      Linus Walleij <linus.walleij@linaro.org>
14408 S:      Maintained
14409 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14410 F:      drivers/pci/controller/pci-ixp4xx.c
14411
14412 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14413 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14414 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14415 L:      linux-pci@vger.kernel.org
14416 S:      Supported
14417 F:      drivers/pci/controller/vmd.c
14418
14419 PCI DRIVER FOR MICROSEMI SWITCHTEC
14420 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14421 M:      Logan Gunthorpe <logang@deltatee.com>
14422 L:      linux-pci@vger.kernel.org
14423 S:      Maintained
14424 F:      Documentation/ABI/testing/sysfs-class-switchtec
14425 F:      Documentation/driver-api/switchtec.rst
14426 F:      drivers/ntb/hw/mscc/
14427 F:      drivers/pci/switch/switchtec*
14428 F:      include/linux/switchtec.h
14429 F:      include/uapi/linux/switchtec_ioctl.h
14430
14431 PCI DRIVER FOR MOBIVEIL PCIE IP
14432 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14433 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14434 L:      linux-pci@vger.kernel.org
14435 S:      Supported
14436 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14437 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14438
14439 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14440 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14441 L:      linux-pci@vger.kernel.org
14442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14443 S:      Maintained
14444 F:      drivers/pci/controller/*mvebu*
14445
14446 PCI DRIVER FOR NVIDIA TEGRA
14447 M:      Thierry Reding <thierry.reding@gmail.com>
14448 L:      linux-tegra@vger.kernel.org
14449 L:      linux-pci@vger.kernel.org
14450 S:      Supported
14451 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14452 F:      drivers/pci/controller/pci-tegra.c
14453
14454 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14455 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14456 L:      linux-pci@vger.kernel.org
14457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14458 S:      Maintained
14459 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14460 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14461
14462 PCI DRIVER FOR RENESAS R-CAR
14463 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14464 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14465 L:      linux-pci@vger.kernel.org
14466 L:      linux-renesas-soc@vger.kernel.org
14467 S:      Maintained
14468 F:      Documentation/devicetree/bindings/pci/*rcar*
14469 F:      drivers/pci/controller/*rcar*
14470
14471 PCI DRIVER FOR SAMSUNG EXYNOS
14472 M:      Jingoo Han <jingoohan1@gmail.com>
14473 L:      linux-pci@vger.kernel.org
14474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14475 L:      linux-samsung-soc@vger.kernel.org
14476 S:      Maintained
14477 F:      drivers/pci/controller/dwc/pci-exynos.c
14478
14479 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14480 M:      Jingoo Han <jingoohan1@gmail.com>
14481 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14482 L:      linux-pci@vger.kernel.org
14483 S:      Maintained
14484 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14485 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14486 F:      drivers/pci/controller/dwc/*designware*
14487
14488 PCI DRIVER FOR TI DRA7XX/J721E
14489 M:      Kishon Vijay Abraham I <kishon@ti.com>
14490 L:      linux-omap@vger.kernel.org
14491 L:      linux-pci@vger.kernel.org
14492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14493 S:      Supported
14494 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14495 F:      drivers/pci/controller/cadence/pci-j721e.c
14496 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14497
14498 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14499 M:      Linus Walleij <linus.walleij@linaro.org>
14500 L:      linux-pci@vger.kernel.org
14501 S:      Maintained
14502 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14503 F:      drivers/pci/controller/pci-v3-semi.c
14504
14505 PCI ENDPOINT SUBSYSTEM
14506 M:      Kishon Vijay Abraham I <kishon@ti.com>
14507 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14508 R:      Krzysztof Wilczyński <kw@linux.com>
14509 L:      linux-pci@vger.kernel.org
14510 S:      Supported
14511 F:      Documentation/PCI/endpoint/*
14512 F:      Documentation/misc-devices/pci-endpoint-test.rst
14513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14514 F:      drivers/misc/pci_endpoint_test.c
14515 F:      drivers/pci/endpoint/
14516 F:      tools/pci/
14517
14518 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14519 M:      Russell Currey <ruscur@russell.cc>
14520 M:      Oliver O'Halloran <oohall@gmail.com>
14521 L:      linuxppc-dev@lists.ozlabs.org
14522 S:      Supported
14523 F:      Documentation/PCI/pci-error-recovery.rst
14524 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14525 F:      arch/powerpc/include/*/eeh*.h
14526 F:      arch/powerpc/kernel/eeh*.c
14527 F:      arch/powerpc/platforms/*/eeh*.c
14528 F:      drivers/pci/pcie/aer.c
14529 F:      drivers/pci/pcie/dpc.c
14530 F:      drivers/pci/pcie/err.c
14531
14532 PCI ERROR RECOVERY
14533 M:      Linas Vepstas <linasvepstas@gmail.com>
14534 L:      linux-pci@vger.kernel.org
14535 S:      Supported
14536 F:      Documentation/PCI/pci-error-recovery.rst
14537
14538 PCI MSI DRIVER FOR ALTERA MSI IP
14539 M:      Joyce Ooi <joyce.ooi@intel.com>
14540 L:      linux-pci@vger.kernel.org
14541 S:      Supported
14542 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14543 F:      drivers/pci/controller/pcie-altera-msi.c
14544
14545 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14546 M:      Toan Le <toan@os.amperecomputing.com>
14547 L:      linux-pci@vger.kernel.org
14548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14549 S:      Maintained
14550 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14551 F:      drivers/pci/controller/pci-xgene-msi.c
14552
14553 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14554 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14555 R:      Rob Herring <robh@kernel.org>
14556 R:      Krzysztof Wilczyński <kw@linux.com>
14557 L:      linux-pci@vger.kernel.org
14558 S:      Supported
14559 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14561 F:      drivers/pci/controller/
14562
14563 PCI SUBSYSTEM
14564 M:      Bjorn Helgaas <bhelgaas@google.com>
14565 L:      linux-pci@vger.kernel.org
14566 S:      Supported
14567 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14569 F:      Documentation/PCI/
14570 F:      Documentation/devicetree/bindings/pci/
14571 F:      arch/x86/kernel/early-quirks.c
14572 F:      arch/x86/kernel/quirks.c
14573 F:      arch/x86/pci/
14574 F:      drivers/acpi/pci*
14575 F:      drivers/pci/
14576 F:      include/asm-generic/pci*
14577 F:      include/linux/of_pci.h
14578 F:      include/linux/pci*
14579 F:      include/uapi/linux/pci*
14580 F:      lib/pci*
14581
14582 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14583 M:      Jonathan Chocron <jonnyc@amazon.com>
14584 L:      linux-pci@vger.kernel.org
14585 S:      Maintained
14586 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14587 F:      drivers/pci/controller/dwc/pcie-al.c
14588
14589 PCIE DRIVER FOR AMLOGIC MESON
14590 M:      Yue Wang <yue.wang@Amlogic.com>
14591 L:      linux-pci@vger.kernel.org
14592 L:      linux-amlogic@lists.infradead.org
14593 S:      Maintained
14594 F:      drivers/pci/controller/dwc/pci-meson.c
14595
14596 PCIE DRIVER FOR AXIS ARTPEC
14597 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14598 L:      linux-arm-kernel@axis.com
14599 L:      linux-pci@vger.kernel.org
14600 S:      Maintained
14601 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14602 F:      drivers/pci/controller/dwc/*artpec*
14603
14604 PCIE DRIVER FOR CAVIUM THUNDERX
14605 M:      Robert Richter <rric@kernel.org>
14606 L:      linux-pci@vger.kernel.org
14607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14608 S:      Odd Fixes
14609 F:      drivers/pci/controller/pci-thunder-*
14610
14611 PCIE DRIVER FOR HISILICON
14612 M:      Zhou Wang <wangzhou1@hisilicon.com>
14613 L:      linux-pci@vger.kernel.org
14614 S:      Maintained
14615 F:      drivers/pci/controller/dwc/pcie-hisi.c
14616
14617 PCIE DRIVER FOR HISILICON KIRIN
14618 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14619 M:      Binghui Wang <wangbinghui@hisilicon.com>
14620 L:      linux-pci@vger.kernel.org
14621 S:      Maintained
14622 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14623 F:      drivers/pci/controller/dwc/pcie-kirin.c
14624
14625 PCIE DRIVER FOR HISILICON STB
14626 M:      Shawn Guo <shawn.guo@linaro.org>
14627 L:      linux-pci@vger.kernel.org
14628 S:      Maintained
14629 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14630 F:      drivers/pci/controller/dwc/pcie-histb.c
14631
14632 PCIE DRIVER FOR INTEL KEEM BAY
14633 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14634 L:      linux-pci@vger.kernel.org
14635 S:      Supported
14636 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14637 F:      drivers/pci/controller/dwc/pcie-keembay.c
14638
14639 PCIE DRIVER FOR INTEL LGM GW SOC
14640 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14641 L:      linux-pci@vger.kernel.org
14642 S:      Maintained
14643 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14644 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14645
14646 PCIE DRIVER FOR MEDIATEK
14647 M:      Ryder Lee <ryder.lee@mediatek.com>
14648 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14649 L:      linux-pci@vger.kernel.org
14650 L:      linux-mediatek@lists.infradead.org
14651 S:      Supported
14652 F:      Documentation/devicetree/bindings/pci/mediatek*
14653 F:      drivers/pci/controller/*mediatek*
14654
14655 PCIE DRIVER FOR MICROCHIP
14656 M:      Daire McNamara <daire.mcnamara@microchip.com>
14657 L:      linux-pci@vger.kernel.org
14658 S:      Supported
14659 F:      Documentation/devicetree/bindings/pci/microchip*
14660 F:      drivers/pci/controller/*microchip*
14661
14662 PCIE DRIVER FOR QUALCOMM MSM
14663 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14664 L:      linux-pci@vger.kernel.org
14665 L:      linux-arm-msm@vger.kernel.org
14666 S:      Maintained
14667 F:      drivers/pci/controller/dwc/*qcom*
14668
14669 PCIE DRIVER FOR ROCKCHIP
14670 M:      Shawn Lin <shawn.lin@rock-chips.com>
14671 L:      linux-pci@vger.kernel.org
14672 L:      linux-rockchip@lists.infradead.org
14673 S:      Maintained
14674 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14675 F:      drivers/pci/controller/pcie-rockchip*
14676
14677 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14678 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14679 L:      linux-pci@vger.kernel.org
14680 S:      Maintained
14681 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14682 F:      drivers/pci/controller/dwc/pcie-uniphier*
14683
14684 PCIE DRIVER FOR ST SPEAR13XX
14685 M:      Pratyush Anand <pratyush.anand@gmail.com>
14686 L:      linux-pci@vger.kernel.org
14687 S:      Maintained
14688 F:      drivers/pci/controller/dwc/*spear*
14689
14690 PCMCIA SUBSYSTEM
14691 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14692 S:      Odd Fixes
14693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14694 F:      Documentation/pcmcia/
14695 F:      drivers/pcmcia/
14696 F:      include/pcmcia/
14697 F:      tools/pcmcia/
14698
14699 PCNET32 NETWORK DRIVER
14700 M:      Don Fry <pcnet32@frontier.com>
14701 L:      netdev@vger.kernel.org
14702 S:      Maintained
14703 F:      drivers/net/ethernet/amd/pcnet32.c
14704
14705 PCRYPT PARALLEL CRYPTO ENGINE
14706 M:      Steffen Klassert <steffen.klassert@secunet.com>
14707 L:      linux-crypto@vger.kernel.org
14708 S:      Maintained
14709 F:      crypto/pcrypt.c
14710 F:      include/crypto/pcrypt.h
14711
14712 PEAQ WMI HOTKEYS DRIVER
14713 M:      Hans de Goede <hdegoede@redhat.com>
14714 L:      platform-driver-x86@vger.kernel.org
14715 S:      Maintained
14716 F:      drivers/platform/x86/peaq-wmi.c
14717
14718 PENSANDO ETHERNET DRIVERS
14719 M:      Shannon Nelson <snelson@pensando.io>
14720 M:      drivers@pensando.io
14721 L:      netdev@vger.kernel.org
14722 S:      Supported
14723 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14724 F:      drivers/net/ethernet/pensando/
14725
14726 PER-CPU MEMORY ALLOCATOR
14727 M:      Dennis Zhou <dennis@kernel.org>
14728 M:      Tejun Heo <tj@kernel.org>
14729 M:      Christoph Lameter <cl@linux.com>
14730 L:      linux-mm@kvack.org
14731 S:      Maintained
14732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14733 F:      arch/*/include/asm/percpu.h
14734 F:      include/linux/percpu*.h
14735 F:      lib/percpu*.c
14736 F:      mm/percpu*.c
14737
14738 PER-TASK DELAY ACCOUNTING
14739 M:      Balbir Singh <bsingharora@gmail.com>
14740 S:      Maintained
14741 F:      include/linux/delayacct.h
14742 F:      kernel/delayacct.c
14743
14744 PERFORMANCE EVENTS SUBSYSTEM
14745 M:      Peter Zijlstra <peterz@infradead.org>
14746 M:      Ingo Molnar <mingo@redhat.com>
14747 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14748 R:      Mark Rutland <mark.rutland@arm.com>
14749 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14750 R:      Jiri Olsa <jolsa@redhat.com>
14751 R:      Namhyung Kim <namhyung@kernel.org>
14752 L:      linux-perf-users@vger.kernel.org
14753 L:      linux-kernel@vger.kernel.org
14754 S:      Supported
14755 W:      https://perf.wiki.kernel.org/
14756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14757 F:      arch/*/events/*
14758 F:      arch/*/events/*/*
14759 F:      arch/*/include/asm/perf_event.h
14760 F:      arch/*/kernel/*/*/perf_event*.c
14761 F:      arch/*/kernel/*/perf_event*.c
14762 F:      arch/*/kernel/perf_callchain.c
14763 F:      arch/*/kernel/perf_event*.c
14764 F:      include/linux/perf_event.h
14765 F:      include/uapi/linux/perf_event.h
14766 F:      kernel/events/*
14767 F:      tools/lib/perf/
14768 F:      tools/perf/
14769
14770 PERFORMANCE EVENTS TOOLING ARM64
14771 R:      John Garry <john.garry@huawei.com>
14772 R:      Will Deacon <will@kernel.org>
14773 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14774 R:      Leo Yan <leo.yan@linaro.org>
14775 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14776 S:      Supported
14777 F:      tools/build/feature/test-libopencsd.c
14778 F:      tools/perf/arch/arm*/
14779 F:      tools/perf/pmu-events/arch/arm64/
14780 F:      tools/perf/util/arm-spe*
14781 F:      tools/perf/util/cs-etm*
14782
14783 PERSONALITY HANDLING
14784 M:      Christoph Hellwig <hch@infradead.org>
14785 L:      linux-abi-devel@lists.sourceforge.net
14786 S:      Maintained
14787 F:      include/linux/personality.h
14788 F:      include/uapi/linux/personality.h
14789
14790 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14791 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14792 L:      linux-input@vger.kernel.org
14793 S:      Maintained
14794 F:      Documentation/input/devices/pxrc.rst
14795 F:      drivers/input/joystick/pxrc.c
14796
14797 PHONET PROTOCOL
14798 M:      Remi Denis-Courmont <courmisch@gmail.com>
14799 S:      Supported
14800 F:      Documentation/networking/phonet.rst
14801 F:      include/linux/phonet.h
14802 F:      include/net/phonet/
14803 F:      include/uapi/linux/phonet.h
14804 F:      net/phonet/
14805
14806 PHRAM MTD DRIVER
14807 M:      Joern Engel <joern@lazybastard.org>
14808 L:      linux-mtd@lists.infradead.org
14809 S:      Maintained
14810 F:      drivers/mtd/devices/phram.c
14811
14812 PICOLCD HID DRIVER
14813 M:      Bruno Prémont <bonbons@linux-vserver.org>
14814 L:      linux-input@vger.kernel.org
14815 S:      Maintained
14816 F:      drivers/hid/hid-picolcd*
14817
14818 PIDFD API
14819 M:      Christian Brauner <christian@brauner.io>
14820 L:      linux-kernel@vger.kernel.org
14821 S:      Maintained
14822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14823 F:      samples/pidfd/
14824 F:      tools/testing/selftests/clone3/
14825 F:      tools/testing/selftests/pid_namespace/
14826 F:      tools/testing/selftests/pidfd/
14827 K:      (?i)pidfd
14828 K:      (?i)clone3
14829 K:      \b(clone_args|kernel_clone_args)\b
14830
14831 PIN CONTROL SUBSYSTEM
14832 M:      Linus Walleij <linus.walleij@linaro.org>
14833 L:      linux-gpio@vger.kernel.org
14834 S:      Maintained
14835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14836 F:      Documentation/devicetree/bindings/pinctrl/
14837 F:      Documentation/driver-api/pin-control.rst
14838 F:      drivers/pinctrl/
14839 F:      include/linux/pinctrl/
14840
14841 PIN CONTROLLER - AMD
14842 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14843 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14844 S:      Maintained
14845 F:      drivers/pinctrl/pinctrl-amd.c
14846
14847 PIN CONTROLLER - FREESCALE
14848 M:      Dong Aisheng <aisheng.dong@nxp.com>
14849 M:      Fabio Estevam <festevam@gmail.com>
14850 M:      Shawn Guo <shawnguo@kernel.org>
14851 M:      Stefan Agner <stefan@agner.ch>
14852 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14853 L:      linux-gpio@vger.kernel.org
14854 S:      Maintained
14855 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14856 F:      drivers/pinctrl/freescale/
14857
14858 PIN CONTROLLER - INTEL
14859 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14860 M:      Andy Shevchenko <andy@kernel.org>
14861 S:      Maintained
14862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14863 F:      drivers/pinctrl/intel/
14864
14865 PIN CONTROLLER - KEEMBAY
14866 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14867 S:      Supported
14868 F:      drivers/pinctrl/pinctrl-keembay*
14869
14870 PIN CONTROLLER - MEDIATEK
14871 M:      Sean Wang <sean.wang@kernel.org>
14872 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14873 S:      Maintained
14874 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14875 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14876 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14877 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14878 F:      drivers/pinctrl/mediatek/
14879
14880 PIN CONTROLLER - MICROCHIP AT91
14881 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14882 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14883 L:      linux-gpio@vger.kernel.org
14884 S:      Supported
14885 F:      drivers/gpio/gpio-sama5d2-piobu.c
14886 F:      drivers/pinctrl/pinctrl-at91*
14887
14888 PIN CONTROLLER - QUALCOMM
14889 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14890 L:      linux-arm-msm@vger.kernel.org
14891 S:      Maintained
14892 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14893 F:      drivers/pinctrl/qcom/
14894
14895 PIN CONTROLLER - RENESAS
14896 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14897 L:      linux-renesas-soc@vger.kernel.org
14898 S:      Supported
14899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14900 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14901 F:      drivers/pinctrl/renesas/
14902
14903 PIN CONTROLLER - SAMSUNG
14904 M:      Tomasz Figa <tomasz.figa@gmail.com>
14905 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14906 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14908 L:      linux-samsung-soc@vger.kernel.org
14909 S:      Maintained
14910 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14912 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14913 F:      drivers/pinctrl/samsung/
14914 F:      include/dt-bindings/pinctrl/samsung.h
14915
14916 PIN CONTROLLER - SINGLE
14917 M:      Tony Lindgren <tony@atomide.com>
14918 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14920 L:      linux-omap@vger.kernel.org
14921 S:      Maintained
14922 F:      drivers/pinctrl/pinctrl-single.c
14923
14924 PIN CONTROLLER - ST SPEAR
14925 M:      Viresh Kumar <vireshk@kernel.org>
14926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14927 S:      Maintained
14928 W:      http://www.st.com/spear
14929 F:      drivers/pinctrl/spear/
14930
14931 PKTCDVD DRIVER
14932 M:      linux-block@vger.kernel.org
14933 S:      Orphan
14934 F:      drivers/block/pktcdvd.c
14935 F:      include/linux/pktcdvd.h
14936 F:      include/uapi/linux/pktcdvd.h
14937
14938 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14939 M:      Tomasz Duszynski <tduszyns@gmail.com>
14940 S:      Maintained
14941 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14942 F:      drivers/iio/chemical/pms7003.c
14943
14944 PLDMFW LIBRARY
14945 M:      Jacob Keller <jacob.e.keller@intel.com>
14946 S:      Maintained
14947 F:      Documentation/driver-api/pldmfw/
14948 F:      include/linux/pldmfw.h
14949 F:      lib/pldmfw/
14950
14951 PLX DMA DRIVER
14952 M:      Logan Gunthorpe <logang@deltatee.com>
14953 S:      Maintained
14954 F:      drivers/dma/plx_dma.c
14955
14956 PM6764TR DRIVER
14957 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14958 L:      linux-hwmon@vger.kernel.org
14959 S:      Maintained
14960 F:      Documentation/hwmon/pm6764tr.rst
14961 F:      drivers/hwmon/pmbus/pm6764tr.c
14962
14963 PM-GRAPH UTILITY
14964 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14965 L:      linux-pm@vger.kernel.org
14966 S:      Supported
14967 W:      https://01.org/pm-graph
14968 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14969 T:      git git://github.com/intel/pm-graph
14970 F:      tools/power/pm-graph
14971
14972 PMBUS HARDWARE MONITORING DRIVERS
14973 M:      Guenter Roeck <linux@roeck-us.net>
14974 L:      linux-hwmon@vger.kernel.org
14975 S:      Maintained
14976 W:      http://hwmon.wiki.kernel.org/
14977 W:      http://www.roeck-us.net/linux/drivers/
14978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14979 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14980 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14981 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14982 F:      Documentation/hwmon/adm1275.rst
14983 F:      Documentation/hwmon/ibm-cffps.rst
14984 F:      Documentation/hwmon/ir35221.rst
14985 F:      Documentation/hwmon/lm25066.rst
14986 F:      Documentation/hwmon/ltc2978.rst
14987 F:      Documentation/hwmon/ltc3815.rst
14988 F:      Documentation/hwmon/max16064.rst
14989 F:      Documentation/hwmon/max20751.rst
14990 F:      Documentation/hwmon/max31785.rst
14991 F:      Documentation/hwmon/max34440.rst
14992 F:      Documentation/hwmon/max8688.rst
14993 F:      Documentation/hwmon/pmbus-core.rst
14994 F:      Documentation/hwmon/pmbus.rst
14995 F:      Documentation/hwmon/tps40422.rst
14996 F:      Documentation/hwmon/ucd9000.rst
14997 F:      Documentation/hwmon/ucd9200.rst
14998 F:      Documentation/hwmon/zl6100.rst
14999 F:      drivers/hwmon/pmbus/
15000 F:      include/linux/pmbus.h
15001
15002 PMC SIERRA MaxRAID DRIVER
15003 L:      linux-scsi@vger.kernel.org
15004 S:      Orphan
15005 W:      http://www.pmc-sierra.com/
15006 F:      drivers/scsi/pmcraid.*
15007
15008 PMC SIERRA PM8001 DRIVER
15009 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15010 L:      linux-scsi@vger.kernel.org
15011 S:      Supported
15012 F:      drivers/scsi/pm8001/
15013
15014 PNI RM3100 IIO DRIVER
15015 M:      Song Qiang <songqiang1304521@gmail.com>
15016 L:      linux-iio@vger.kernel.org
15017 S:      Maintained
15018 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15019 F:      drivers/iio/magnetometer/rm3100*
15020
15021 PNP SUPPORT
15022 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15023 L:      linux-acpi@vger.kernel.org
15024 S:      Maintained
15025 F:      drivers/pnp/
15026 F:      include/linux/pnp.h
15027
15028 POSIX CLOCKS and TIMERS
15029 M:      Thomas Gleixner <tglx@linutronix.de>
15030 L:      linux-kernel@vger.kernel.org
15031 S:      Maintained
15032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15033 F:      fs/timerfd.c
15034 F:      include/linux/time_namespace.h
15035 F:      include/linux/timer*
15036 F:      kernel/time/*timer*
15037 F:      kernel/time/namespace.c
15038
15039 POWER MANAGEMENT CORE
15040 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15041 L:      linux-pm@vger.kernel.org
15042 S:      Supported
15043 B:      https://bugzilla.kernel.org
15044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15045 F:      drivers/base/power/
15046 F:      drivers/powercap/
15047 F:      include/linux/intel_rapl.h
15048 F:      include/linux/pm.h
15049 F:      include/linux/pm_*
15050 F:      include/linux/powercap.h
15051 F:      kernel/configs/nopm.config
15052
15053 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15054 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15055 L:      linux-pm@vger.kernel.org
15056 S:      Supported
15057 B:      https://bugzilla.kernel.org
15058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15059 F:      drivers/powercap/dtpm*
15060 F:      include/linux/dtpm.h
15061
15062 POWER STATE COORDINATION INTERFACE (PSCI)
15063 M:      Mark Rutland <mark.rutland@arm.com>
15064 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15066 S:      Maintained
15067 F:      drivers/firmware/psci/
15068 F:      include/linux/psci.h
15069 F:      include/uapi/linux/psci.h
15070
15071 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15072 M:      Sebastian Reichel <sre@kernel.org>
15073 L:      linux-pm@vger.kernel.org
15074 S:      Maintained
15075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15076 F:      Documentation/ABI/testing/sysfs-class-power
15077 F:      Documentation/devicetree/bindings/power/supply/
15078 F:      drivers/power/supply/
15079 F:      include/linux/power/
15080 F:      include/linux/power_supply.h
15081
15082 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15083 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15084 L:      linuxppc-dev@lists.ozlabs.org
15085 S:      Maintained
15086 F:      drivers/char/powernv-op-panel.c
15087
15088 PPP OVER ATM (RFC 2364)
15089 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15090 S:      Maintained
15091 F:      include/uapi/linux/atmppp.h
15092 F:      net/atm/pppoatm.c
15093
15094 PPP OVER ETHERNET
15095 M:      Michal Ostrowski <mostrows@earthlink.net>
15096 S:      Maintained
15097 F:      drivers/net/ppp/pppoe.c
15098 F:      drivers/net/ppp/pppox.c
15099
15100 PPP OVER L2TP
15101 M:      James Chapman <jchapman@katalix.com>
15102 S:      Maintained
15103 F:      include/linux/if_pppol2tp.h
15104 F:      include/uapi/linux/if_pppol2tp.h
15105 F:      net/l2tp/l2tp_ppp.c
15106
15107 PPP PROTOCOL DRIVERS AND COMPRESSORS
15108 M:      Paul Mackerras <paulus@samba.org>
15109 L:      linux-ppp@vger.kernel.org
15110 S:      Maintained
15111 F:      drivers/net/ppp/ppp_*
15112
15113 PPS SUPPORT
15114 M:      Rodolfo Giometti <giometti@enneenne.com>
15115 L:      linuxpps@ml.enneenne.com (subscribers-only)
15116 S:      Maintained
15117 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15118 F:      Documentation/ABI/testing/sysfs-pps
15119 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15120 F:      Documentation/driver-api/pps.rst
15121 F:      drivers/pps/
15122 F:      include/linux/pps*.h
15123 F:      include/uapi/linux/pps.h
15124
15125 PPTP DRIVER
15126 M:      Dmitry Kozlov <xeb@mail.ru>
15127 L:      netdev@vger.kernel.org
15128 S:      Maintained
15129 W:      http://sourceforge.net/projects/accel-pptp
15130 F:      drivers/net/ppp/pptp.c
15131
15132 PRESSURE STALL INFORMATION (PSI)
15133 M:      Johannes Weiner <hannes@cmpxchg.org>
15134 S:      Maintained
15135 F:      include/linux/psi*
15136 F:      kernel/sched/psi.c
15137
15138 PRINTK
15139 M:      Petr Mladek <pmladek@suse.com>
15140 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15141 R:      Steven Rostedt <rostedt@goodmis.org>
15142 R:      John Ogness <john.ogness@linutronix.de>
15143 S:      Maintained
15144 F:      include/linux/printk.h
15145 F:      kernel/printk/
15146
15147 PRINTK INDEXING
15148 R:      Chris Down <chris@chrisdown.name>
15149 S:      Maintained
15150 F:      kernel/printk/index.c
15151
15152 PROC FILESYSTEM
15153 L:      linux-kernel@vger.kernel.org
15154 L:      linux-fsdevel@vger.kernel.org
15155 S:      Maintained
15156 F:      Documentation/filesystems/proc.rst
15157 F:      fs/proc/
15158 F:      include/linux/proc_fs.h
15159 F:      tools/testing/selftests/proc/
15160
15161 PROC SYSCTL
15162 M:      Luis Chamberlain <mcgrof@kernel.org>
15163 M:      Kees Cook <keescook@chromium.org>
15164 M:      Iurii Zaikin <yzaikin@google.com>
15165 L:      linux-kernel@vger.kernel.org
15166 L:      linux-fsdevel@vger.kernel.org
15167 S:      Maintained
15168 F:      fs/proc/proc_sysctl.c
15169 F:      include/linux/sysctl.h
15170 F:      kernel/sysctl-test.c
15171 F:      kernel/sysctl.c
15172 F:      tools/testing/selftests/sysctl/
15173
15174 PS3 NETWORK SUPPORT
15175 M:      Geoff Levand <geoff@infradead.org>
15176 L:      netdev@vger.kernel.org
15177 L:      linuxppc-dev@lists.ozlabs.org
15178 S:      Maintained
15179 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15180
15181 PS3 PLATFORM SUPPORT
15182 M:      Geoff Levand <geoff@infradead.org>
15183 L:      linuxppc-dev@lists.ozlabs.org
15184 S:      Maintained
15185 F:      arch/powerpc/boot/ps3*
15186 F:      arch/powerpc/include/asm/lv1call.h
15187 F:      arch/powerpc/include/asm/ps3*.h
15188 F:      arch/powerpc/platforms/ps3/
15189 F:      drivers/*/ps3*
15190 F:      drivers/ps3/
15191 F:      drivers/rtc/rtc-ps3.c
15192 F:      drivers/usb/host/*ps3.c
15193 F:      sound/ppc/snd_ps3*
15194
15195 PS3VRAM DRIVER
15196 M:      Jim Paris <jim@jtan.com>
15197 M:      Geoff Levand <geoff@infradead.org>
15198 L:      linuxppc-dev@lists.ozlabs.org
15199 S:      Maintained
15200 F:      drivers/block/ps3vram.c
15201
15202 PSAMPLE PACKET SAMPLING SUPPORT
15203 M:      Yotam Gigi <yotam.gi@gmail.com>
15204 S:      Maintained
15205 F:      include/net/psample.h
15206 F:      include/uapi/linux/psample.h
15207 F:      net/psample
15208
15209 PSTORE FILESYSTEM
15210 M:      Kees Cook <keescook@chromium.org>
15211 M:      Anton Vorontsov <anton@enomsg.org>
15212 M:      Colin Cross <ccross@android.com>
15213 M:      Tony Luck <tony.luck@intel.com>
15214 S:      Maintained
15215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15216 F:      Documentation/admin-guide/ramoops.rst
15217 F:      Documentation/admin-guide/pstore-blk.rst
15218 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15219 F:      drivers/acpi/apei/erst.c
15220 F:      drivers/firmware/efi/efi-pstore.c
15221 F:      fs/pstore/
15222 F:      include/linux/pstore*
15223 K:      \b(pstore|ramoops)
15224
15225 PTP HARDWARE CLOCK SUPPORT
15226 M:      Richard Cochran <richardcochran@gmail.com>
15227 L:      netdev@vger.kernel.org
15228 S:      Maintained
15229 W:      http://linuxptp.sourceforge.net/
15230 F:      Documentation/ABI/testing/sysfs-ptp
15231 F:      Documentation/driver-api/ptp.rst
15232 F:      drivers/net/phy/dp83640*
15233 F:      drivers/ptp/*
15234 F:      include/linux/ptp_cl*
15235
15236 PTP VIRTUAL CLOCK SUPPORT
15237 M:      Yangbo Lu <yangbo.lu@nxp.com>
15238 L:      netdev@vger.kernel.org
15239 S:      Maintained
15240 F:      drivers/ptp/ptp_vclock.c
15241 F:      net/ethtool/phc_vclocks.c
15242
15243 PTRACE SUPPORT
15244 M:      Oleg Nesterov <oleg@redhat.com>
15245 S:      Maintained
15246 F:      arch/*/*/ptrace*.c
15247 F:      arch/*/include/asm/ptrace*.h
15248 F:      arch/*/ptrace*.c
15249 F:      include/asm-generic/syscall.h
15250 F:      include/linux/ptrace.h
15251 F:      include/linux/regset.h
15252 F:      include/linux/tracehook.h
15253 F:      include/uapi/linux/ptrace.h
15254 F:      include/uapi/linux/ptrace.h
15255 F:      kernel/ptrace.c
15256
15257 PULSE8-CEC DRIVER
15258 M:      Hans Verkuil <hverkuil@xs4all.nl>
15259 L:      linux-media@vger.kernel.org
15260 S:      Maintained
15261 T:      git git://linuxtv.org/media_tree.git
15262 F:      Documentation/admin-guide/media/pulse8-cec.rst
15263 F:      drivers/media/cec/usb/pulse8/
15264
15265 PVRUSB2 VIDEO4LINUX DRIVER
15266 M:      Mike Isely <isely@pobox.com>
15267 L:      pvrusb2@isely.net       (subscribers-only)
15268 L:      linux-media@vger.kernel.org
15269 S:      Maintained
15270 W:      http://www.isely.net/pvrusb2/
15271 T:      git git://linuxtv.org/media_tree.git
15272 F:      Documentation/driver-api/media/drivers/pvrusb2*
15273 F:      drivers/media/usb/pvrusb2/
15274
15275 PWC WEBCAM DRIVER
15276 M:      Hans Verkuil <hverkuil@xs4all.nl>
15277 L:      linux-media@vger.kernel.org
15278 S:      Odd Fixes
15279 T:      git git://linuxtv.org/media_tree.git
15280 F:      drivers/media/usb/pwc/*
15281 F:      include/trace/events/pwc.h
15282
15283 PWM FAN DRIVER
15284 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15285 L:      linux-hwmon@vger.kernel.org
15286 S:      Supported
15287 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15288 F:      Documentation/hwmon/pwm-fan.rst
15289 F:      drivers/hwmon/pwm-fan.c
15290
15291 PWM IR Transmitter
15292 M:      Sean Young <sean@mess.org>
15293 L:      linux-media@vger.kernel.org
15294 S:      Maintained
15295 F:      drivers/media/rc/pwm-ir-tx.c
15296
15297 PWM SUBSYSTEM
15298 M:      Thierry Reding <thierry.reding@gmail.com>
15299 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15300 M:      Lee Jones <lee.jones@linaro.org>
15301 L:      linux-pwm@vger.kernel.org
15302 S:      Maintained
15303 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15305 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15306 F:      Documentation/devicetree/bindings/pwm/
15307 F:      Documentation/driver-api/pwm.rst
15308 F:      drivers/gpio/gpio-mvebu.c
15309 F:      drivers/pwm/
15310 F:      drivers/video/backlight/pwm_bl.c
15311 F:      include/linux/pwm.h
15312 F:      include/linux/pwm_backlight.h
15313 K:      pwm_(config|apply_state|ops)
15314
15315 PXA GPIO DRIVER
15316 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15317 L:      linux-gpio@vger.kernel.org
15318 S:      Maintained
15319 F:      drivers/gpio/gpio-pxa.c
15320
15321 PXA MMCI DRIVER
15322 S:      Orphan
15323
15324 PXA RTC DRIVER
15325 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15326 L:      linux-rtc@vger.kernel.org
15327 S:      Maintained
15328
15329 PXA2xx/PXA3xx SUPPORT
15330 M:      Daniel Mack <daniel@zonque.org>
15331 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15332 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15334 S:      Maintained
15335 T:      git git://github.com/hzhuang1/linux.git
15336 T:      git git://github.com/rjarzmik/linux.git
15337 F:      arch/arm/boot/dts/pxa*
15338 F:      arch/arm/mach-pxa/
15339 F:      drivers/dma/pxa*
15340 F:      drivers/pcmcia/pxa2xx*
15341 F:      drivers/pinctrl/pxa/
15342 F:      drivers/spi/spi-pxa2xx*
15343 F:      drivers/usb/gadget/udc/pxa2*
15344 F:      include/sound/pxa2xx-lib.h
15345 F:      sound/arm/pxa*
15346 F:      sound/soc/pxa/
15347
15348 QAT DRIVER
15349 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15350 L:      qat-linux@intel.com
15351 S:      Supported
15352 F:      drivers/crypto/qat/
15353
15354 QCOM AUDIO (ASoC) DRIVERS
15355 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15356 M:      Banajit Goswami <bgoswami@codeaurora.org>
15357 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15358 S:      Supported
15359 F:      sound/soc/codecs/lpass-va-macro.c
15360 F:      sound/soc/codecs/lpass-wsa-macro.*
15361 F:      sound/soc/codecs/msm8916-wcd-analog.c
15362 F:      sound/soc/codecs/msm8916-wcd-digital.c
15363 F:      sound/soc/codecs/wcd9335.*
15364 F:      sound/soc/codecs/wcd934x.c
15365 F:      sound/soc/codecs/wcd-clsh-v2.*
15366 F:      sound/soc/codecs/wsa881x.c
15367 F:      sound/soc/qcom/
15368
15369 QCOM IPA DRIVER
15370 M:      Alex Elder <elder@kernel.org>
15371 L:      netdev@vger.kernel.org
15372 S:      Supported
15373 F:      drivers/net/ipa/
15374
15375 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15376 M:      Gabriel Somlo <somlo@cmu.edu>
15377 M:      "Michael S. Tsirkin" <mst@redhat.com>
15378 L:      qemu-devel@nongnu.org
15379 S:      Maintained
15380 F:      drivers/firmware/qemu_fw_cfg.c
15381 F:      include/uapi/linux/qemu_fw_cfg.h
15382
15383 QIB DRIVER
15384 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15385 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15386 L:      linux-rdma@vger.kernel.org
15387 S:      Supported
15388 F:      drivers/infiniband/hw/qib/
15389
15390 QLOGIC QL41xxx FCOE DRIVER
15391 M:      Saurav Kashyap <skashyap@marvell.com>
15392 M:      Javed Hasan <jhasan@marvell.com>
15393 M:      GR-QLogic-Storage-Upstream@marvell.com
15394 L:      linux-scsi@vger.kernel.org
15395 S:      Supported
15396 F:      drivers/scsi/qedf/
15397
15398 QLOGIC QL41xxx ISCSI DRIVER
15399 M:      Nilesh Javali <njavali@marvell.com>
15400 M:      Manish Rangankar <mrangankar@marvell.com>
15401 M:      GR-QLogic-Storage-Upstream@marvell.com
15402 L:      linux-scsi@vger.kernel.org
15403 S:      Supported
15404 F:      drivers/scsi/qedi/
15405
15406 QLOGIC QL4xxx ETHERNET DRIVER
15407 M:      Ariel Elior <aelior@marvell.com>
15408 M:      GR-everest-linux-l2@marvell.com
15409 L:      netdev@vger.kernel.org
15410 S:      Supported
15411 F:      drivers/net/ethernet/qlogic/qed/
15412 F:      drivers/net/ethernet/qlogic/qede/
15413 F:      include/linux/qed/
15414
15415 QLOGIC QL4xxx RDMA DRIVER
15416 M:      Michal Kalderon <mkalderon@marvell.com>
15417 M:      Ariel Elior <aelior@marvell.com>
15418 L:      linux-rdma@vger.kernel.org
15419 S:      Supported
15420 F:      drivers/infiniband/hw/qedr/
15421 F:      include/uapi/rdma/qedr-abi.h
15422
15423 QLOGIC QLA1280 SCSI DRIVER
15424 M:      Michael Reed <mdr@sgi.com>
15425 L:      linux-scsi@vger.kernel.org
15426 S:      Maintained
15427 F:      drivers/scsi/qla1280.[ch]
15428
15429 QLOGIC QLA2XXX FC-SCSI DRIVER
15430 M:      Nilesh Javali <njavali@marvell.com>
15431 M:      GR-QLogic-Storage-Upstream@marvell.com
15432 L:      linux-scsi@vger.kernel.org
15433 S:      Supported
15434 F:      drivers/scsi/qla2xxx/
15435
15436 QLOGIC QLA3XXX NETWORK DRIVER
15437 M:      GR-Linux-NIC-Dev@marvell.com
15438 L:      netdev@vger.kernel.org
15439 S:      Supported
15440 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15441
15442 QLOGIC QLA4XXX iSCSI DRIVER
15443 M:      Nilesh Javali <njavali@marvell.com>
15444 M:      Manish Rangankar <mrangankar@marvell.com>
15445 M:      GR-QLogic-Storage-Upstream@marvell.com
15446 L:      linux-scsi@vger.kernel.org
15447 S:      Supported
15448 F:      drivers/scsi/qla4xxx/
15449
15450 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15451 M:      Shahed Shaikh <shshaikh@marvell.com>
15452 M:      Manish Chopra <manishc@marvell.com>
15453 M:      GR-Linux-NIC-Dev@marvell.com
15454 L:      netdev@vger.kernel.org
15455 S:      Supported
15456 F:      drivers/net/ethernet/qlogic/qlcnic/
15457
15458 QLOGIC QLGE 10Gb ETHERNET DRIVER
15459 M:      Manish Chopra <manishc@marvell.com>
15460 M:      GR-Linux-NIC-Dev@marvell.com
15461 M:      Coiby Xu <coiby.xu@gmail.com>
15462 L:      netdev@vger.kernel.org
15463 S:      Supported
15464 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15465 F:      drivers/staging/qlge/
15466
15467 QM1D1B0004 MEDIA DRIVER
15468 M:      Akihiro Tsukada <tskd08@gmail.com>
15469 L:      linux-media@vger.kernel.org
15470 S:      Odd Fixes
15471 F:      drivers/media/tuners/qm1d1b0004*
15472
15473 QM1D1C0042 MEDIA DRIVER
15474 M:      Akihiro Tsukada <tskd08@gmail.com>
15475 L:      linux-media@vger.kernel.org
15476 S:      Odd Fixes
15477 F:      drivers/media/tuners/qm1d1c0042*
15478
15479 QNX4 FILESYSTEM
15480 M:      Anders Larsen <al@alarsen.net>
15481 S:      Maintained
15482 W:      http://www.alarsen.net/linux/qnx4fs/
15483 F:      fs/qnx4/
15484 F:      include/uapi/linux/qnx4_fs.h
15485 F:      include/uapi/linux/qnxtypes.h
15486
15487 QORIQ DPAA2 FSL-MC BUS DRIVER
15488 M:      Stuart Yoder <stuyoder@gmail.com>
15489 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15490 L:      linux-kernel@vger.kernel.org
15491 S:      Maintained
15492 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15493 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15494 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15495 F:      drivers/bus/fsl-mc/
15496 F:      include/uapi/linux/fsl_mc.h
15497
15498 QT1010 MEDIA DRIVER
15499 M:      Antti Palosaari <crope@iki.fi>
15500 L:      linux-media@vger.kernel.org
15501 S:      Maintained
15502 W:      https://linuxtv.org
15503 W:      http://palosaari.fi/linux/
15504 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15505 T:      git git://linuxtv.org/anttip/media_tree.git
15506 F:      drivers/media/tuners/qt1010*
15507
15508 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15509 M:      Kalle Valo <kvalo@codeaurora.org>
15510 L:      ath10k@lists.infradead.org
15511 S:      Supported
15512 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15514 F:      drivers/net/wireless/ath/ath10k/
15515
15516 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15517 M:      Kalle Valo <kvalo@codeaurora.org>
15518 L:      ath11k@lists.infradead.org
15519 S:      Supported
15520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15521 F:      drivers/net/wireless/ath/ath11k/
15522
15523 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15524 M:      ath9k-devel@qca.qualcomm.com
15525 L:      linux-wireless@vger.kernel.org
15526 S:      Supported
15527 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15528 F:      drivers/net/wireless/ath/ath9k/
15529
15530 QUALCOMM CAMERA SUBSYSTEM DRIVER
15531 M:      Robert Foss <robert.foss@linaro.org>
15532 M:      Todor Tomov <todor.too@gmail.com>
15533 L:      linux-media@vger.kernel.org
15534 S:      Maintained
15535 F:      Documentation/admin-guide/media/qcom_camss.rst
15536 F:      Documentation/devicetree/bindings/media/*camss*
15537 F:      drivers/media/platform/qcom/camss/
15538
15539 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15540 M:      Niklas Cassel <nks@flawful.org>
15541 L:      linux-pm@vger.kernel.org
15542 L:      linux-arm-msm@vger.kernel.org
15543 S:      Maintained
15544 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15545 F:      drivers/soc/qcom/cpr.c
15546
15547 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15548 M:      Ilia Lin <ilia.lin@kernel.org>
15549 L:      linux-pm@vger.kernel.org
15550 S:      Maintained
15551 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15552 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15553
15554 QUALCOMM CRYPTO DRIVERS
15555 M:      Thara Gopinath <thara.gopinath@linaro.org>
15556 L:      linux-crypto@vger.kernel.org
15557 L:      linux-arm-msm@vger.kernel.org
15558 S:      Maintained
15559 F:      drivers/crypto/qce/
15560
15561 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15562 M:      Timur Tabi <timur@kernel.org>
15563 L:      netdev@vger.kernel.org
15564 S:      Maintained
15565 F:      drivers/net/ethernet/qualcomm/emac/
15566
15567 QUALCOMM ETHQOS ETHERNET DRIVER
15568 M:      Vinod Koul <vkoul@kernel.org>
15569 L:      netdev@vger.kernel.org
15570 S:      Maintained
15571 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15572 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15573
15574 QUALCOMM GENERIC INTERFACE I2C DRIVER
15575 M:      Akash Asthana <akashast@codeaurora.org>
15576 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15577 L:      linux-i2c@vger.kernel.org
15578 L:      linux-arm-msm@vger.kernel.org
15579 S:      Supported
15580 F:      drivers/i2c/busses/i2c-qcom-geni.c
15581
15582 QUALCOMM HEXAGON ARCHITECTURE
15583 M:      Brian Cain <bcain@codeaurora.org>
15584 L:      linux-hexagon@vger.kernel.org
15585 S:      Supported
15586 F:      arch/hexagon/
15587
15588 QUALCOMM HIDMA DRIVER
15589 M:      Sinan Kaya <okaya@kernel.org>
15590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15591 L:      linux-arm-msm@vger.kernel.org
15592 L:      dmaengine@vger.kernel.org
15593 S:      Supported
15594 F:      drivers/dma/qcom/hidma*
15595
15596 QUALCOMM I2C CCI DRIVER
15597 M:      Loic Poulain <loic.poulain@linaro.org>
15598 M:      Robert Foss <robert.foss@linaro.org>
15599 L:      linux-i2c@vger.kernel.org
15600 L:      linux-arm-msm@vger.kernel.org
15601 S:      Maintained
15602 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15603 F:      drivers/i2c/busses/i2c-qcom-cci.c
15604
15605 QUALCOMM IOMMU
15606 M:      Rob Clark <robdclark@gmail.com>
15607 L:      iommu@lists.linux-foundation.org
15608 L:      iommu@lists.linux.dev
15609 L:      linux-arm-msm@vger.kernel.org
15610 S:      Maintained
15611 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15612
15613 QUALCOMM IPC ROUTER (QRTR) DRIVER
15614 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15615 L:      linux-arm-msm@vger.kernel.org
15616 S:      Maintained
15617 F:      include/trace/events/qrtr.h
15618 F:      include/uapi/linux/qrtr.h
15619 F:      net/qrtr/
15620
15621 QUALCOMM IPCC MAILBOX DRIVER
15622 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15623 L:      linux-arm-msm@vger.kernel.org
15624 S:      Supported
15625 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15626 F:      drivers/mailbox/qcom-ipcc.c
15627 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15628
15629 QUALCOMM IPQ4019 USB PHY DRIVER
15630 M:      Robert Marko <robert.marko@sartura.hr>
15631 M:      Luka Perkov <luka.perkov@sartura.hr>
15632 L:      linux-arm-msm@vger.kernel.org
15633 S:      Maintained
15634 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15635 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15636
15637 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15638 M:      Robert Marko <robert.marko@sartura.hr>
15639 M:      Luka Perkov <luka.perkov@sartura.hr>
15640 L:      linux-arm-msm@vger.kernel.org
15641 S:      Maintained
15642 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15643 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15644
15645 QUALCOMM RMNET DRIVER
15646 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15647 M:      Sean Tranchetti <stranche@codeaurora.org>
15648 L:      netdev@vger.kernel.org
15649 S:      Maintained
15650 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15651 F:      drivers/net/ethernet/qualcomm/rmnet/
15652 F:      include/linux/if_rmnet.h
15653
15654 QUALCOMM TSENS THERMAL DRIVER
15655 M:      Amit Kucheria <amitk@kernel.org>
15656 M:      Thara Gopinath <thara.gopinath@linaro.org>
15657 L:      linux-pm@vger.kernel.org
15658 L:      linux-arm-msm@vger.kernel.org
15659 S:      Maintained
15660 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15661 F:      drivers/thermal/qcom/
15662
15663 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15664 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15665 L:      linux-media@vger.kernel.org
15666 L:      linux-arm-msm@vger.kernel.org
15667 S:      Maintained
15668 T:      git git://linuxtv.org/media_tree.git
15669 F:      Documentation/devicetree/bindings/media/*venus*
15670 F:      drivers/media/platform/qcom/venus/
15671
15672 QUALCOMM WCN36XX WIRELESS DRIVER
15673 M:      Kalle Valo <kvalo@codeaurora.org>
15674 L:      wcn36xx@lists.infradead.org
15675 S:      Supported
15676 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15677 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15678 F:      drivers/net/wireless/ath/wcn36xx/
15679
15680 QUANTENNA QTNFMAC WIRELESS DRIVER
15681 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15682 R:      Sergey Matyukevich <geomatsi@gmail.com>
15683 L:      linux-wireless@vger.kernel.org
15684 S:      Maintained
15685 F:      drivers/net/wireless/quantenna
15686
15687 RADEON and AMDGPU DRM DRIVERS
15688 M:      Alex Deucher <alexander.deucher@amd.com>
15689 M:      Christian König <christian.koenig@amd.com>
15690 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15691 L:      amd-gfx@lists.freedesktop.org
15692 S:      Supported
15693 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15694 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15695 C:      irc://irc.oftc.net/radeon
15696 F:      drivers/gpu/drm/amd/
15697 F:      drivers/gpu/drm/radeon/
15698 F:      include/uapi/drm/amdgpu_drm.h
15699 F:      include/uapi/drm/radeon_drm.h
15700
15701 RADEON FRAMEBUFFER DISPLAY DRIVER
15702 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15703 L:      linux-fbdev@vger.kernel.org
15704 S:      Maintained
15705 F:      drivers/video/fbdev/aty/radeon*
15706 F:      include/uapi/linux/radeonfb.h
15707
15708 RADIOSHARK RADIO DRIVER
15709 M:      Hans Verkuil <hverkuil@xs4all.nl>
15710 L:      linux-media@vger.kernel.org
15711 S:      Maintained
15712 T:      git git://linuxtv.org/media_tree.git
15713 F:      drivers/media/radio/radio-shark.c
15714
15715 RADIOSHARK2 RADIO DRIVER
15716 M:      Hans Verkuil <hverkuil@xs4all.nl>
15717 L:      linux-media@vger.kernel.org
15718 S:      Maintained
15719 T:      git git://linuxtv.org/media_tree.git
15720 F:      drivers/media/radio/radio-shark2.c
15721 F:      drivers/media/radio/radio-tea5777.c
15722
15723 RADOS BLOCK DEVICE (RBD)
15724 M:      Ilya Dryomov <idryomov@gmail.com>
15725 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15726 L:      ceph-devel@vger.kernel.org
15727 S:      Supported
15728 W:      http://ceph.com/
15729 T:      git git://github.com/ceph/ceph-client.git
15730 F:      Documentation/ABI/testing/sysfs-bus-rbd
15731 F:      drivers/block/rbd.c
15732 F:      drivers/block/rbd_types.h
15733
15734 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15735 M:      Paul Mackerras <paulus@samba.org>
15736 L:      linux-fbdev@vger.kernel.org
15737 S:      Maintained
15738 F:      drivers/video/fbdev/aty/aty128fb.c
15739
15740 RAINSHADOW-CEC DRIVER
15741 M:      Hans Verkuil <hverkuil@xs4all.nl>
15742 L:      linux-media@vger.kernel.org
15743 S:      Maintained
15744 T:      git git://linuxtv.org/media_tree.git
15745 F:      drivers/media/cec/usb/rainshadow/
15746
15747 RALINK MIPS ARCHITECTURE
15748 M:      John Crispin <john@phrozen.org>
15749 L:      linux-mips@vger.kernel.org
15750 S:      Maintained
15751 F:      arch/mips/ralink
15752
15753 RALINK RT2X00 WIRELESS LAN DRIVER
15754 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15755 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15756 L:      linux-wireless@vger.kernel.org
15757 S:      Maintained
15758 F:      drivers/net/wireless/ralink/rt2x00/
15759
15760 RAMDISK RAM BLOCK DEVICE DRIVER
15761 M:      Jens Axboe <axboe@kernel.dk>
15762 S:      Maintained
15763 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15764 F:      drivers/block/brd.c
15765
15766 RANCHU VIRTUAL BOARD FOR MIPS
15767 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15768 L:      linux-mips@vger.kernel.org
15769 S:      Supported
15770 F:      arch/mips/configs/generic/board-ranchu.config
15771 F:      arch/mips/generic/board-ranchu.c
15772
15773 RANDOM NUMBER DRIVER
15774 M:      "Theodore Ts'o" <tytso@mit.edu>
15775 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15776 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
15777 S:      Maintained
15778 F:      drivers/char/random.c
15779
15780 RAPIDIO SUBSYSTEM
15781 M:      Matt Porter <mporter@kernel.crashing.org>
15782 M:      Alexandre Bounine <alex.bou9@gmail.com>
15783 S:      Maintained
15784 F:      drivers/rapidio/
15785
15786 RAS INFRASTRUCTURE
15787 M:      Tony Luck <tony.luck@intel.com>
15788 M:      Borislav Petkov <bp@alien8.de>
15789 L:      linux-edac@vger.kernel.org
15790 S:      Maintained
15791 F:      Documentation/admin-guide/ras.rst
15792 F:      drivers/ras/
15793 F:      include/linux/ras.h
15794 F:      include/ras/ras_event.h
15795
15796 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15797 L:      linux-wireless@vger.kernel.org
15798 S:      Orphan
15799 F:      drivers/net/wireless/ray*
15800
15801 RC-CORE / LIRC FRAMEWORK
15802 M:      Sean Young <sean@mess.org>
15803 L:      linux-media@vger.kernel.org
15804 S:      Maintained
15805 W:      http://linuxtv.org
15806 T:      git git://linuxtv.org/media_tree.git
15807 F:      Documentation/driver-api/media/rc-core.rst
15808 F:      Documentation/userspace-api/media/rc/
15809 F:      drivers/media/rc/
15810 F:      include/media/rc-map.h
15811 F:      include/media/rc-core.h
15812 F:      include/uapi/linux/lirc.h
15813
15814 RCMM REMOTE CONTROLS DECODER
15815 M:      Patrick Lerda <patrick9876@free.fr>
15816 S:      Maintained
15817 F:      drivers/media/rc/ir-rcmm-decoder.c
15818
15819 RCUTORTURE TEST FRAMEWORK
15820 M:      "Paul E. McKenney" <paulmck@kernel.org>
15821 M:      Josh Triplett <josh@joshtriplett.org>
15822 R:      Steven Rostedt <rostedt@goodmis.org>
15823 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15824 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15825 L:      rcu@vger.kernel.org
15826 S:      Supported
15827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15828 F:      tools/testing/selftests/rcutorture
15829
15830 RDACM20 Camera Sensor
15831 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15832 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15833 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15834 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15835 L:      linux-media@vger.kernel.org
15836 S:      Maintained
15837 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15838 F:      drivers/media/i2c/max9271.c
15839 F:      drivers/media/i2c/max9271.h
15840 F:      drivers/media/i2c/rdacm20.c
15841
15842 RDACM21 Camera Sensor
15843 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15844 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15845 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15846 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15847 L:      linux-media@vger.kernel.org
15848 S:      Maintained
15849 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15850 F:      drivers/media/i2c/max9271.c
15851 F:      drivers/media/i2c/max9271.h
15852 F:      drivers/media/i2c/rdacm21.c
15853
15854 RDC R-321X SoC
15855 M:      Florian Fainelli <florian@openwrt.org>
15856 S:      Maintained
15857
15858 RDC R6040 FAST ETHERNET DRIVER
15859 M:      Florian Fainelli <f.fainelli@gmail.com>
15860 L:      netdev@vger.kernel.org
15861 S:      Maintained
15862 F:      drivers/net/ethernet/rdc/r6040.c
15863
15864 RDMAVT - RDMA verbs software
15865 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15866 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15867 L:      linux-rdma@vger.kernel.org
15868 S:      Supported
15869 F:      drivers/infiniband/sw/rdmavt
15870
15871 RDS - RELIABLE DATAGRAM SOCKETS
15872 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15873 L:      netdev@vger.kernel.org
15874 L:      linux-rdma@vger.kernel.org
15875 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15876 S:      Supported
15877 W:      https://oss.oracle.com/projects/rds/
15878 F:      Documentation/networking/rds.rst
15879 F:      net/rds/
15880
15881 RDT - RESOURCE ALLOCATION
15882 M:      Fenghua Yu <fenghua.yu@intel.com>
15883 M:      Reinette Chatre <reinette.chatre@intel.com>
15884 L:      linux-kernel@vger.kernel.org
15885 S:      Supported
15886 F:      Documentation/x86/resctrl*
15887 F:      arch/x86/include/asm/resctrl.h
15888 F:      arch/x86/kernel/cpu/resctrl/
15889 F:      tools/testing/selftests/resctrl/
15890
15891 READ-COPY UPDATE (RCU)
15892 M:      "Paul E. McKenney" <paulmck@kernel.org>
15893 M:      Josh Triplett <josh@joshtriplett.org>
15894 R:      Steven Rostedt <rostedt@goodmis.org>
15895 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15896 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15897 R:      Joel Fernandes <joel@joelfernandes.org>
15898 L:      rcu@vger.kernel.org
15899 S:      Supported
15900 W:      http://www.rdrop.com/users/paulmck/RCU/
15901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15902 F:      Documentation/RCU/
15903 F:      include/linux/rcu*
15904 F:      kernel/rcu/
15905 X:      Documentation/RCU/torture.rst
15906 X:      include/linux/srcu*.h
15907 X:      kernel/rcu/srcu*.c
15908
15909 REAL TIME CLOCK (RTC) SUBSYSTEM
15910 M:      Alessandro Zummo <a.zummo@towertech.it>
15911 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15912 L:      linux-rtc@vger.kernel.org
15913 S:      Maintained
15914 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15916 F:      Documentation/admin-guide/rtc.rst
15917 F:      Documentation/devicetree/bindings/rtc/
15918 F:      drivers/rtc/
15919 F:      include/linux/platform_data/rtc-*
15920 F:      include/linux/rtc.h
15921 F:      include/linux/rtc/
15922 F:      include/uapi/linux/rtc.h
15923 F:      tools/testing/selftests/rtc/
15924
15925 REALTEK AUDIO CODECS
15926 M:      Oder Chiou <oder_chiou@realtek.com>
15927 S:      Maintained
15928 F:      include/sound/rt*.h
15929 F:      sound/soc/codecs/rt*
15930
15931 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15932 M:      Linus Walleij <linus.walleij@linaro.org>
15933 S:      Maintained
15934 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15935 F:      drivers/net/dsa/realtek-smi*
15936 F:      drivers/net/dsa/rtl83*
15937
15938 REALTEK WIRELESS DRIVER (rtlwifi family)
15939 M:      Ping-Ke Shih <pkshih@realtek.com>
15940 L:      linux-wireless@vger.kernel.org
15941 S:      Maintained
15942 W:      https://wireless.wiki.kernel.org/
15943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15944 F:      drivers/net/wireless/realtek/rtlwifi/
15945
15946 REALTEK WIRELESS DRIVER (rtw88)
15947 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15948 L:      linux-wireless@vger.kernel.org
15949 S:      Maintained
15950 F:      drivers/net/wireless/realtek/rtw88/
15951
15952 REDPINE WIRELESS DRIVER
15953 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15954 M:      Siva Rebbagondla <siva8118@gmail.com>
15955 L:      linux-wireless@vger.kernel.org
15956 S:      Maintained
15957 F:      drivers/net/wireless/rsi/
15958
15959 REGISTER MAP ABSTRACTION
15960 M:      Mark Brown <broonie@kernel.org>
15961 L:      linux-kernel@vger.kernel.org
15962 S:      Supported
15963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15964 F:      Documentation/devicetree/bindings/regmap/
15965 F:      drivers/base/regmap/
15966 F:      include/linux/regmap.h
15967
15968 REISERFS FILE SYSTEM
15969 L:      reiserfs-devel@vger.kernel.org
15970 S:      Supported
15971 F:      fs/reiserfs/
15972
15973 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15974 M:      Ohad Ben-Cohen <ohad@wizery.com>
15975 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15976 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15977 L:      linux-remoteproc@vger.kernel.org
15978 S:      Maintained
15979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15980 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15981 F:      Documentation/devicetree/bindings/remoteproc/
15982 F:      Documentation/staging/remoteproc.rst
15983 F:      drivers/remoteproc/
15984 F:      include/linux/remoteproc.h
15985 F:      include/linux/remoteproc/
15986
15987 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15988 M:      Ohad Ben-Cohen <ohad@wizery.com>
15989 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15990 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15991 L:      linux-remoteproc@vger.kernel.org
15992 S:      Maintained
15993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15994 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15995 F:      Documentation/staging/rpmsg.rst
15996 F:      drivers/rpmsg/
15997 F:      include/linux/rpmsg.h
15998 F:      include/linux/rpmsg/
15999 F:      include/uapi/linux/rpmsg.h
16000 F:      samples/rpmsg/
16001
16002 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16003 M:      Stephan Gerhold <stephan@gerhold.net>
16004 L:      netdev@vger.kernel.org
16005 L:      linux-remoteproc@vger.kernel.org
16006 S:      Maintained
16007 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16008
16009 RENESAS CLOCK DRIVERS
16010 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16011 L:      linux-renesas-soc@vger.kernel.org
16012 S:      Supported
16013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16014 F:      Documentation/devicetree/bindings/clock/renesas,*
16015 F:      drivers/clk/renesas/
16016
16017 RENESAS EMEV2 I2C DRIVER
16018 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16019 L:      linux-renesas-soc@vger.kernel.org
16020 S:      Supported
16021 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16022 F:      drivers/i2c/busses/i2c-emev2.c
16023
16024 RENESAS ETHERNET DRIVERS
16025 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16026 L:      netdev@vger.kernel.org
16027 L:      linux-renesas-soc@vger.kernel.org
16028 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16029 F:      drivers/net/ethernet/renesas/
16030 F:      include/linux/sh_eth.h
16031
16032 RENESAS R-CAR GYROADC DRIVER
16033 M:      Marek Vasut <marek.vasut@gmail.com>
16034 L:      linux-iio@vger.kernel.org
16035 S:      Supported
16036 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16037 F:      drivers/iio/adc/rcar-gyroadc.c
16038
16039 RENESAS R-CAR I2C DRIVERS
16040 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16041 L:      linux-renesas-soc@vger.kernel.org
16042 S:      Supported
16043 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16044 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16045 F:      drivers/i2c/busses/i2c-rcar.c
16046 F:      drivers/i2c/busses/i2c-sh_mobile.c
16047
16048 RENESAS R-CAR THERMAL DRIVERS
16049 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16050 L:      linux-renesas-soc@vger.kernel.org
16051 S:      Supported
16052 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16053 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16054 F:      drivers/thermal/rcar_gen3_thermal.c
16055 F:      drivers/thermal/rcar_thermal.c
16056
16057 RENESAS RIIC DRIVER
16058 M:      Chris Brandt <chris.brandt@renesas.com>
16059 L:      linux-renesas-soc@vger.kernel.org
16060 S:      Supported
16061 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16062 F:      drivers/i2c/busses/i2c-riic.c
16063
16064 RENESAS USB PHY DRIVER
16065 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16066 L:      linux-renesas-soc@vger.kernel.org
16067 S:      Maintained
16068 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16069
16070 RENESAS RZ/G2L A/D DRIVER
16071 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16072 L:      linux-iio@vger.kernel.org
16073 L:      linux-renesas-soc@vger.kernel.org
16074 S:      Supported
16075 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16076 F:      drivers/iio/adc/rzg2l_adc.c
16077
16078 RESET CONTROLLER FRAMEWORK
16079 M:      Philipp Zabel <p.zabel@pengutronix.de>
16080 S:      Maintained
16081 T:      git git://git.pengutronix.de/git/pza/linux
16082 F:      Documentation/devicetree/bindings/reset/
16083 F:      Documentation/driver-api/reset.rst
16084 F:      drivers/reset/
16085 F:      include/dt-bindings/reset/
16086 F:      include/linux/reset-controller.h
16087 F:      include/linux/reset.h
16088 F:      include/linux/reset/
16089 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16090
16091 RESTARTABLE SEQUENCES SUPPORT
16092 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16093 M:      Peter Zijlstra <peterz@infradead.org>
16094 M:      "Paul E. McKenney" <paulmck@kernel.org>
16095 M:      Boqun Feng <boqun.feng@gmail.com>
16096 L:      linux-kernel@vger.kernel.org
16097 S:      Supported
16098 F:      include/trace/events/rseq.h
16099 F:      include/uapi/linux/rseq.h
16100 F:      kernel/rseq.c
16101 F:      tools/testing/selftests/rseq/
16102
16103 RFKILL
16104 M:      Johannes Berg <johannes@sipsolutions.net>
16105 L:      linux-wireless@vger.kernel.org
16106 S:      Maintained
16107 W:      https://wireless.wiki.kernel.org/
16108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16110 F:      Documentation/ABI/stable/sysfs-class-rfkill
16111 F:      Documentation/driver-api/rfkill.rst
16112 F:      include/linux/rfkill.h
16113 F:      include/uapi/linux/rfkill.h
16114 F:      net/rfkill/
16115
16116 RHASHTABLE
16117 M:      Thomas Graf <tgraf@suug.ch>
16118 M:      Herbert Xu <herbert@gondor.apana.org.au>
16119 L:      netdev@vger.kernel.org
16120 S:      Maintained
16121 F:      include/linux/rhashtable-types.h
16122 F:      include/linux/rhashtable.h
16123 F:      lib/rhashtable.c
16124 F:      lib/test_rhashtable.c
16125
16126 RICOH R5C592 MEMORYSTICK DRIVER
16127 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16128 S:      Maintained
16129 F:      drivers/memstick/host/r592.*
16130
16131 RICOH SMARTMEDIA/XD DRIVER
16132 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16133 S:      Maintained
16134 F:      drivers/mtd/nand/raw/r852.c
16135 F:      drivers/mtd/nand/raw/r852.h
16136
16137 RISC-V ARCHITECTURE
16138 M:      Paul Walmsley <paul.walmsley@sifive.com>
16139 M:      Palmer Dabbelt <palmer@dabbelt.com>
16140 M:      Albert Ou <aou@eecs.berkeley.edu>
16141 L:      linux-riscv@lists.infradead.org
16142 S:      Supported
16143 P:      Documentation/riscv/patch-acceptance.rst
16144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16145 F:      arch/riscv/
16146 N:      riscv
16147 K:      riscv
16148
16149 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16150 M:      Lewis Hanly <lewis.hanly@microchip.com>
16151 L:      linux-riscv@lists.infradead.org
16152 S:      Supported
16153 F:      drivers/mailbox/mailbox-mpfs.c
16154 F:      drivers/soc/microchip/
16155 F:      include/soc/microchip/mpfs.h
16156
16157 RNBD BLOCK DRIVERS
16158 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16159 M:      Jack Wang <jinpu.wang@ionos.com>
16160 L:      linux-block@vger.kernel.org
16161 S:      Maintained
16162 F:      drivers/block/rnbd/
16163
16164 ROCCAT DRIVERS
16165 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16166 S:      Maintained
16167 W:      http://sourceforge.net/projects/roccat/
16168 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16169 F:      drivers/hid/hid-roccat*
16170 F:      include/linux/hid-roccat*
16171
16172 ROCKCHIP ISP V1 DRIVER
16173 M:      Helen Koike <helen.koike@collabora.com>
16174 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16175 L:      linux-media@vger.kernel.org
16176 L:      linux-rockchip@lists.infradead.org
16177 S:      Maintained
16178 F:      Documentation/admin-guide/media/rkisp1.rst
16179 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16180 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16181 F:      drivers/media/platform/rockchip/rkisp1
16182 F:      include/uapi/linux/rkisp1-config.h
16183
16184 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16185 M:      Jacob Chen <jacob-chen@iotwrt.com>
16186 M:      Ezequiel Garcia <ezequiel@collabora.com>
16187 L:      linux-media@vger.kernel.org
16188 L:      linux-rockchip@lists.infradead.org
16189 S:      Maintained
16190 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16191 F:      drivers/media/platform/rockchip/rga/
16192
16193 ROCKCHIP VIDEO DECODER DRIVER
16194 M:      Ezequiel Garcia <ezequiel@collabora.com>
16195 L:      linux-media@vger.kernel.org
16196 L:      linux-rockchip@lists.infradead.org
16197 S:      Maintained
16198 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16199 F:      drivers/staging/media/rkvdec/
16200
16201 ROCKER DRIVER
16202 M:      Jiri Pirko <jiri@resnulli.us>
16203 L:      netdev@vger.kernel.org
16204 S:      Supported
16205 F:      drivers/net/ethernet/rocker/
16206
16207 ROCKETPORT EXPRESS/INFINITY DRIVER
16208 M:      Kevin Cernekee <cernekee@gmail.com>
16209 L:      linux-serial@vger.kernel.org
16210 S:      Odd Fixes
16211 F:      drivers/tty/serial/rp2.*
16212
16213 ROHM BD99954 CHARGER IC
16214 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16215 L:      linux-power@fi.rohmeurope.com
16216 S:      Supported
16217 F:      drivers/power/supply/bd99954-charger.c
16218 F:      drivers/power/supply/bd99954-charger.h
16219
16220 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16221 M:      Tomasz Duszynski <tduszyns@gmail.com>
16222 S:      Maintained
16223 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16224 F:      drivers/iio/light/bh1750.c
16225
16226 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16227 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16228 L:      linux-kernel@vger.kernel.org
16229 L:      linux-renesas-soc@vger.kernel.org
16230 S:      Supported
16231 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16232 F:      drivers/gpio/gpio-bd9571mwv.c
16233 F:      drivers/mfd/bd9571mwv.c
16234 F:      drivers/regulator/bd9571mwv-regulator.c
16235 F:      include/linux/mfd/bd9571mwv.h
16236
16237 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16238 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16239 L:      linux-power@fi.rohmeurope.com
16240 S:      Supported
16241 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16242 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16243 F:      drivers/clk/clk-bd718x7.c
16244 F:      drivers/gpio/gpio-bd70528.c
16245 F:      drivers/gpio/gpio-bd71815.c
16246 F:      drivers/gpio/gpio-bd71828.c
16247 F:      drivers/mfd/rohm-bd70528.c
16248 F:      drivers/mfd/rohm-bd71828.c
16249 F:      drivers/mfd/rohm-bd718x7.c
16250 F:      drivers/mfd/rohm-bd9576.c
16251 F:      drivers/power/supply/bd70528-charger.c
16252 F:      drivers/regulator/bd70528-regulator.c
16253 F:      drivers/regulator/bd71815-regulator.c
16254 F:      drivers/regulator/bd71828-regulator.c
16255 F:      drivers/regulator/bd718x7-regulator.c
16256 F:      drivers/regulator/bd9576-regulator.c
16257 F:      drivers/regulator/rohm-regulator.c
16258 F:      drivers/rtc/rtc-bd70528.c
16259 F:      drivers/watchdog/bd70528_wdt.c
16260 F:      drivers/watchdog/bd9576_wdt.c
16261 F:      include/linux/mfd/rohm-bd70528.h
16262 F:      include/linux/mfd/rohm-bd71815.h
16263 F:      include/linux/mfd/rohm-bd71828.h
16264 F:      include/linux/mfd/rohm-bd718x7.h
16265 F:      include/linux/mfd/rohm-bd957x.h
16266 F:      include/linux/mfd/rohm-generic.h
16267 F:      include/linux/mfd/rohm-shared.h
16268
16269 ROSE NETWORK LAYER
16270 M:      Ralf Baechle <ralf@linux-mips.org>
16271 L:      linux-hams@vger.kernel.org
16272 S:      Maintained
16273 W:      http://www.linux-ax25.org/
16274 F:      include/net/rose.h
16275 F:      include/uapi/linux/rose.h
16276 F:      net/rose/
16277
16278 ROTATION DRIVER FOR ALLWINNER A83T
16279 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16280 L:      linux-media@vger.kernel.org
16281 S:      Maintained
16282 T:      git git://linuxtv.org/media_tree.git
16283 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16284 F:      drivers/media/platform/sunxi/sun8i-rotate/
16285
16286 RTL2830 MEDIA DRIVER
16287 M:      Antti Palosaari <crope@iki.fi>
16288 L:      linux-media@vger.kernel.org
16289 S:      Maintained
16290 W:      https://linuxtv.org
16291 W:      http://palosaari.fi/linux/
16292 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16293 T:      git git://linuxtv.org/anttip/media_tree.git
16294 F:      drivers/media/dvb-frontends/rtl2830*
16295
16296 RTL2832 MEDIA DRIVER
16297 M:      Antti Palosaari <crope@iki.fi>
16298 L:      linux-media@vger.kernel.org
16299 S:      Maintained
16300 W:      https://linuxtv.org
16301 W:      http://palosaari.fi/linux/
16302 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16303 T:      git git://linuxtv.org/anttip/media_tree.git
16304 F:      drivers/media/dvb-frontends/rtl2832*
16305
16306 RTL2832_SDR MEDIA DRIVER
16307 M:      Antti Palosaari <crope@iki.fi>
16308 L:      linux-media@vger.kernel.org
16309 S:      Maintained
16310 W:      https://linuxtv.org
16311 W:      http://palosaari.fi/linux/
16312 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16313 T:      git git://linuxtv.org/anttip/media_tree.git
16314 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16315
16316 RTL8180 WIRELESS DRIVER
16317 L:      linux-wireless@vger.kernel.org
16318 S:      Orphan
16319 W:      https://wireless.wiki.kernel.org/
16320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16321 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16322
16323 RTL8187 WIRELESS DRIVER
16324 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16325 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16326 M:      Larry Finger <Larry.Finger@lwfinger.net>
16327 L:      linux-wireless@vger.kernel.org
16328 S:      Maintained
16329 W:      https://wireless.wiki.kernel.org/
16330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16331 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16332
16333 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16334 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16335 L:      linux-wireless@vger.kernel.org
16336 S:      Maintained
16337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16338 F:      drivers/net/wireless/realtek/rtl8xxxu/
16339
16340 RTRS TRANSPORT DRIVERS
16341 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16342 M:      Jack Wang <jinpu.wang@ionos.com>
16343 L:      linux-rdma@vger.kernel.org
16344 S:      Maintained
16345 F:      drivers/infiniband/ulp/rtrs/
16346
16347 RXRPC SOCKETS (AF_RXRPC)
16348 M:      David Howells <dhowells@redhat.com>
16349 M:      Marc Dionne <marc.dionne@auristor.com>
16350 L:      linux-afs@lists.infradead.org
16351 S:      Supported
16352 W:      https://www.infradead.org/~dhowells/kafs/
16353 F:      Documentation/networking/rxrpc.rst
16354 F:      include/keys/rxrpc-type.h
16355 F:      include/net/af_rxrpc.h
16356 F:      include/trace/events/rxrpc.h
16357 F:      include/uapi/linux/rxrpc.h
16358 F:      net/rxrpc/
16359
16360 S3 SAVAGE FRAMEBUFFER DRIVER
16361 M:      Antonino Daplas <adaplas@gmail.com>
16362 L:      linux-fbdev@vger.kernel.org
16363 S:      Maintained
16364 F:      drivers/video/fbdev/savage/
16365
16366 S390
16367 M:      Heiko Carstens <hca@linux.ibm.com>
16368 M:      Vasily Gorbik <gor@linux.ibm.com>
16369 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16370 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16371 L:      linux-s390@vger.kernel.org
16372 S:      Supported
16373 W:      http://www.ibm.com/developerworks/linux/linux390/
16374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16375 F:      Documentation/driver-api/s390-drivers.rst
16376 F:      Documentation/s390/
16377 F:      arch/s390/
16378 F:      drivers/s390/
16379
16380 S390 COMMON I/O LAYER
16381 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16382 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16383 L:      linux-s390@vger.kernel.org
16384 S:      Supported
16385 W:      http://www.ibm.com/developerworks/linux/linux390/
16386 F:      drivers/s390/cio/
16387
16388 S390 DASD DRIVER
16389 M:      Stefan Haberland <sth@linux.ibm.com>
16390 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16391 L:      linux-s390@vger.kernel.org
16392 S:      Supported
16393 W:      http://www.ibm.com/developerworks/linux/linux390/
16394 F:      block/partitions/ibm.c
16395 F:      drivers/s390/block/dasd*
16396 F:      include/linux/dasd_mod.h
16397
16398 S390 IOMMU (PCI)
16399 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16400 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16401 L:      linux-s390@vger.kernel.org
16402 S:      Supported
16403 W:      http://www.ibm.com/developerworks/linux/linux390/
16404 F:      drivers/iommu/s390-iommu.c
16405
16406 S390 IUCV NETWORK LAYER
16407 M:      Julian Wiedmann <jwi@linux.ibm.com>
16408 M:      Karsten Graul <kgraul@linux.ibm.com>
16409 L:      linux-s390@vger.kernel.org
16410 L:      netdev@vger.kernel.org
16411 S:      Supported
16412 W:      http://www.ibm.com/developerworks/linux/linux390/
16413 F:      drivers/s390/net/*iucv*
16414 F:      include/net/iucv/
16415 F:      net/iucv/
16416
16417 S390 NETWORK DRIVERS
16418 M:      Julian Wiedmann <jwi@linux.ibm.com>
16419 M:      Karsten Graul <kgraul@linux.ibm.com>
16420 L:      linux-s390@vger.kernel.org
16421 L:      netdev@vger.kernel.org
16422 S:      Supported
16423 W:      http://www.ibm.com/developerworks/linux/linux390/
16424 F:      drivers/s390/net/
16425
16426 S390 PCI SUBSYSTEM
16427 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16428 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16429 L:      linux-s390@vger.kernel.org
16430 S:      Supported
16431 W:      http://www.ibm.com/developerworks/linux/linux390/
16432 F:      arch/s390/pci/
16433 F:      drivers/pci/hotplug/s390_pci_hpc.c
16434 F:      Documentation/s390/pci.rst
16435
16436 S390 VFIO AP DRIVER
16437 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16438 M:      Halil Pasic <pasic@linux.ibm.com>
16439 M:      Jason Herne <jjherne@linux.ibm.com>
16440 L:      linux-s390@vger.kernel.org
16441 S:      Supported
16442 W:      http://www.ibm.com/developerworks/linux/linux390/
16443 F:      Documentation/s390/vfio-ap.rst
16444 F:      drivers/s390/crypto/vfio_ap_drv.c
16445 F:      drivers/s390/crypto/vfio_ap_ops.c
16446 F:      drivers/s390/crypto/vfio_ap_private.h
16447
16448 S390 VFIO-CCW DRIVER
16449 M:      Eric Farman <farman@linux.ibm.com>
16450 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16451 R:      Halil Pasic <pasic@linux.ibm.com>
16452 L:      linux-s390@vger.kernel.org
16453 L:      kvm@vger.kernel.org
16454 S:      Supported
16455 F:      Documentation/s390/vfio-ccw.rst
16456 F:      drivers/s390/cio/vfio_ccw*
16457 F:      include/uapi/linux/vfio_ccw.h
16458
16459 S390 VFIO-PCI DRIVER
16460 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16461 M:      Eric Farman <farman@linux.ibm.com>
16462 L:      linux-s390@vger.kernel.org
16463 L:      kvm@vger.kernel.org
16464 S:      Supported
16465 F:      drivers/vfio/pci/vfio_pci_zdev.c
16466 F:      include/uapi/linux/vfio_zdev.h
16467
16468 S390 ZCRYPT DRIVER
16469 M:      Harald Freudenberger <freude@linux.ibm.com>
16470 L:      linux-s390@vger.kernel.org
16471 S:      Supported
16472 W:      http://www.ibm.com/developerworks/linux/linux390/
16473 F:      drivers/s390/crypto/
16474
16475 S390 ZFCP DRIVER
16476 M:      Steffen Maier <maier@linux.ibm.com>
16477 M:      Benjamin Block <bblock@linux.ibm.com>
16478 L:      linux-s390@vger.kernel.org
16479 S:      Supported
16480 W:      http://www.ibm.com/developerworks/linux/linux390/
16481 F:      drivers/s390/scsi/zfcp_*
16482
16483 S3C ADC BATTERY DRIVER
16484 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16485 L:      linux-samsung-soc@vger.kernel.org
16486 S:      Odd Fixes
16487 F:      drivers/power/supply/s3c_adc_battery.c
16488 F:      include/linux/s3c_adc_battery.h
16489
16490 S3C24XX SD/MMC Driver
16491 M:      Ben Dooks <ben-linux@fluff.org>
16492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16493 S:      Supported
16494 F:      drivers/mmc/host/s3cmci.*
16495
16496 SAA6588 RDS RECEIVER DRIVER
16497 M:      Hans Verkuil <hverkuil@xs4all.nl>
16498 L:      linux-media@vger.kernel.org
16499 S:      Odd Fixes
16500 W:      https://linuxtv.org
16501 T:      git git://linuxtv.org/media_tree.git
16502 F:      drivers/media/i2c/saa6588*
16503
16504 SAA7134 VIDEO4LINUX DRIVER
16505 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16506 L:      linux-media@vger.kernel.org
16507 S:      Odd fixes
16508 W:      https://linuxtv.org
16509 T:      git git://linuxtv.org/media_tree.git
16510 F:      Documentation/driver-api/media/drivers/saa7134*
16511 F:      drivers/media/pci/saa7134/
16512
16513 SAA7146 VIDEO4LINUX-2 DRIVER
16514 M:      Hans Verkuil <hverkuil@xs4all.nl>
16515 L:      linux-media@vger.kernel.org
16516 S:      Maintained
16517 T:      git git://linuxtv.org/media_tree.git
16518 F:      drivers/media/common/saa7146/
16519 F:      drivers/media/pci/saa7146/
16520 F:      include/media/drv-intf/saa7146*
16521
16522 SAFESETID SECURITY MODULE
16523 M:      Micah Morton <mortonm@chromium.org>
16524 S:      Supported
16525 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16526 F:      security/safesetid/
16527
16528 SAMSUNG AUDIO (ASoC) DRIVERS
16529 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16530 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16531 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16532 S:      Supported
16533 F:      Documentation/devicetree/bindings/sound/samsung*
16534 F:      sound/soc/samsung/
16535
16536 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16537 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16538 L:      linux-crypto@vger.kernel.org
16539 L:      linux-samsung-soc@vger.kernel.org
16540 S:      Maintained
16541 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16542 F:      drivers/crypto/exynos-rng.c
16543
16544 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16545 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16546 L:      linux-samsung-soc@vger.kernel.org
16547 S:      Maintained
16548 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16549 F:      drivers/char/hw_random/exynos-trng.c
16550
16551 SAMSUNG FRAMEBUFFER DRIVER
16552 M:      Jingoo Han <jingoohan1@gmail.com>
16553 L:      linux-fbdev@vger.kernel.org
16554 S:      Maintained
16555 F:      drivers/video/fbdev/s3c-fb.c
16556
16557 SAMSUNG INTERCONNECT DRIVERS
16558 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16559 M:      Artur Świgoń <a.swigon@samsung.com>
16560 L:      linux-pm@vger.kernel.org
16561 L:      linux-samsung-soc@vger.kernel.org
16562 S:      Supported
16563 F:      drivers/interconnect/samsung/
16564
16565 SAMSUNG LAPTOP DRIVER
16566 M:      Corentin Chary <corentin.chary@gmail.com>
16567 L:      platform-driver-x86@vger.kernel.org
16568 S:      Maintained
16569 F:      drivers/platform/x86/samsung-laptop.c
16570
16571 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16572 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16573 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16574 L:      linux-kernel@vger.kernel.org
16575 L:      linux-samsung-soc@vger.kernel.org
16576 S:      Supported
16577 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16578 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16579 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16580 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16581 F:      drivers/clk/clk-s2mps11.c
16582 F:      drivers/mfd/sec*.c
16583 F:      drivers/regulator/s2m*.c
16584 F:      drivers/regulator/s5m*.c
16585 F:      drivers/rtc/rtc-s5m.c
16586 F:      include/linux/mfd/samsung/
16587
16588 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16589 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16590 L:      linux-media@vger.kernel.org
16591 L:      linux-samsung-soc@vger.kernel.org
16592 S:      Maintained
16593 F:      drivers/media/platform/s3c-camif/
16594 F:      include/media/drv-intf/s3c_camif.h
16595
16596 SAMSUNG S3FWRN5 NFC DRIVER
16597 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16598 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16599 L:      linux-nfc@lists.01.org (subscribers-only)
16600 S:      Maintained
16601 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16602 F:      drivers/nfc/s3fwrn5
16603
16604 SAMSUNG S5C73M3 CAMERA DRIVER
16605 M:      Andrzej Hajda <a.hajda@samsung.com>
16606 L:      linux-media@vger.kernel.org
16607 S:      Supported
16608 F:      drivers/media/i2c/s5c73m3/*
16609
16610 SAMSUNG S5K5BAF CAMERA DRIVER
16611 M:      Andrzej Hajda <a.hajda@samsung.com>
16612 L:      linux-media@vger.kernel.org
16613 S:      Supported
16614 F:      drivers/media/i2c/s5k5baf.c
16615
16616 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16617 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16618 M:      Vladimir Zapolskiy <vz@mleia.com>
16619 L:      linux-crypto@vger.kernel.org
16620 L:      linux-samsung-soc@vger.kernel.org
16621 S:      Maintained
16622 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16623 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16624 F:      drivers/crypto/s5p-sss.c
16625
16626 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16627 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16628 L:      linux-media@vger.kernel.org
16629 S:      Supported
16630 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16631 F:      drivers/media/platform/exynos4-is/
16632
16633 SAMSUNG SOC CLOCK DRIVERS
16634 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16635 M:      Tomasz Figa <tomasz.figa@gmail.com>
16636 M:      Chanwoo Choi <cw00.choi@samsung.com>
16637 L:      linux-samsung-soc@vger.kernel.org
16638 S:      Supported
16639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16640 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16641 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16642 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16643 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16644 F:      drivers/clk/samsung/
16645 F:      include/dt-bindings/clock/exynos*.h
16646 F:      include/dt-bindings/clock/s3c*.h
16647 F:      include/dt-bindings/clock/s5p*.h
16648 F:      include/dt-bindings/clock/samsung,*.h
16649 F:      include/linux/clk/samsung.h
16650 F:      include/linux/platform_data/clk-s3c2410.h
16651
16652 SAMSUNG SPI DRIVERS
16653 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16654 M:      Andi Shyti <andi@etezian.org>
16655 L:      linux-spi@vger.kernel.org
16656 L:      linux-samsung-soc@vger.kernel.org
16657 S:      Maintained
16658 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16659 F:      drivers/spi/spi-s3c*
16660 F:      include/linux/platform_data/spi-s3c64xx.h
16661 F:      include/linux/spi/s3c24xx-fiq.h
16662
16663 SAMSUNG SXGBE DRIVERS
16664 M:      Byungho An <bh74.an@samsung.com>
16665 L:      netdev@vger.kernel.org
16666 S:      Supported
16667 F:      drivers/net/ethernet/samsung/sxgbe/
16668
16669 SAMSUNG THERMAL DRIVER
16670 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16671 L:      linux-pm@vger.kernel.org
16672 L:      linux-samsung-soc@vger.kernel.org
16673 S:      Supported
16674 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16675 F:      drivers/thermal/samsung/
16676
16677 SAMSUNG USB2 PHY DRIVER
16678 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16679 L:      linux-kernel@vger.kernel.org
16680 S:      Supported
16681 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16682 F:      Documentation/driver-api/phy/samsung-usb2.rst
16683 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16684 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16685 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16686 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16687 F:      drivers/phy/samsung/phy-samsung-usb2.c
16688 F:      drivers/phy/samsung/phy-samsung-usb2.h
16689
16690 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16691 M:      Paul Barker <paul.barker@sancloud.com>
16692 R:      Marc Murphy <marc.murphy@sancloud.com>
16693 S:      Supported
16694 F:      arch/arm/boot/dts/am335x-sancloud*
16695
16696 SC1200 WDT DRIVER
16697 M:      Zwane Mwaikambo <zwanem@gmail.com>
16698 S:      Maintained
16699 F:      drivers/watchdog/sc1200wdt.c
16700
16701 SCHEDULER
16702 M:      Ingo Molnar <mingo@redhat.com>
16703 M:      Peter Zijlstra <peterz@infradead.org>
16704 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16705 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16706 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16707 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16708 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16709 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16710 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16711 L:      linux-kernel@vger.kernel.org
16712 S:      Maintained
16713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16714 F:      include/linux/preempt.h
16715 F:      include/linux/sched.h
16716 F:      include/linux/wait.h
16717 F:      include/uapi/linux/sched.h
16718 F:      kernel/sched/
16719
16720 SCR24X CHIP CARD INTERFACE DRIVER
16721 M:      Lubomir Rintel <lkundrak@v3.sk>
16722 S:      Supported
16723 F:      drivers/char/pcmcia/scr24x_cs.c
16724
16725 SCSI RDMA PROTOCOL (SRP) INITIATOR
16726 M:      Bart Van Assche <bvanassche@acm.org>
16727 L:      linux-rdma@vger.kernel.org
16728 S:      Supported
16729 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16730 F:      drivers/infiniband/ulp/srp/
16731 F:      include/scsi/srp.h
16732
16733 SCSI RDMA PROTOCOL (SRP) TARGET
16734 M:      Bart Van Assche <bvanassche@acm.org>
16735 L:      linux-rdma@vger.kernel.org
16736 L:      target-devel@vger.kernel.org
16737 S:      Supported
16738 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16739 F:      drivers/infiniband/ulp/srpt/
16740
16741 SCSI SG DRIVER
16742 M:      Doug Gilbert <dgilbert@interlog.com>
16743 L:      linux-scsi@vger.kernel.org
16744 S:      Maintained
16745 W:      http://sg.danny.cz/sg
16746 F:      Documentation/scsi/scsi-generic.rst
16747 F:      drivers/scsi/sg.c
16748 F:      include/scsi/sg.h
16749
16750 SCSI SUBSYSTEM
16751 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16752 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16753 L:      linux-scsi@vger.kernel.org
16754 S:      Maintained
16755 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16758 F:      Documentation/devicetree/bindings/scsi/
16759 F:      drivers/scsi/
16760 F:      include/scsi/
16761
16762 SCSI TAPE DRIVER
16763 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16764 L:      linux-scsi@vger.kernel.org
16765 S:      Maintained
16766 F:      Documentation/scsi/st.rst
16767 F:      drivers/scsi/st.*
16768 F:      drivers/scsi/st_*.h
16769
16770 SCSI TARGET CORE USER DRIVER
16771 M:      Bodo Stroesser <bostroesser@gmail.com>
16772 L:      linux-scsi@vger.kernel.org
16773 L:      target-devel@vger.kernel.org
16774 S:      Supported
16775 F:      Documentation/target/tcmu-design.rst
16776 F:      drivers/target/target_core_user.c
16777 F:      include/uapi/linux/target_core_user.h
16778
16779 SCSI TARGET SUBSYSTEM
16780 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16781 L:      linux-scsi@vger.kernel.org
16782 L:      target-devel@vger.kernel.org
16783 S:      Supported
16784 W:      http://www.linux-iscsi.org
16785 Q:      https://patchwork.kernel.org/project/target-devel/list/
16786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16787 F:      Documentation/target/
16788 F:      drivers/target/
16789 F:      include/target/
16790
16791 SCTP PROTOCOL
16792 M:      Vlad Yasevich <vyasevich@gmail.com>
16793 M:      Neil Horman <nhorman@tuxdriver.com>
16794 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16795 L:      linux-sctp@vger.kernel.org
16796 S:      Maintained
16797 W:      http://lksctp.sourceforge.net
16798 F:      Documentation/networking/sctp.rst
16799 F:      include/linux/sctp.h
16800 F:      include/net/sctp/
16801 F:      include/uapi/linux/sctp.h
16802 F:      net/sctp/
16803
16804 SCx200 CPU SUPPORT
16805 M:      Jim Cromie <jim.cromie@gmail.com>
16806 S:      Odd Fixes
16807 F:      Documentation/i2c/busses/scx200_acb.rst
16808 F:      arch/x86/platform/scx200/
16809 F:      drivers/i2c/busses/scx200*
16810 F:      drivers/mtd/maps/scx200_docflash.c
16811 F:      drivers/watchdog/scx200_wdt.c
16812 F:      include/linux/scx200.h
16813
16814 SCx200 GPIO DRIVER
16815 M:      Jim Cromie <jim.cromie@gmail.com>
16816 S:      Maintained
16817 F:      drivers/char/scx200_gpio.c
16818 F:      include/linux/scx200_gpio.h
16819
16820 SCx200 HRT CLOCKSOURCE DRIVER
16821 M:      Jim Cromie <jim.cromie@gmail.com>
16822 S:      Maintained
16823 F:      drivers/clocksource/scx200_hrt.c
16824
16825 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16826 M:      Sascha Sommer <saschasommer@freenet.de>
16827 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16828 S:      Maintained
16829 F:      drivers/mmc/host/sdricoh_cs.c
16830
16831 SECO BOARDS CEC DRIVER
16832 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16833 S:      Maintained
16834 F:      drivers/media/cec/platform/seco/seco-cec.c
16835 F:      drivers/media/cec/platform/seco/seco-cec.h
16836
16837 SECURE COMPUTING
16838 M:      Kees Cook <keescook@chromium.org>
16839 R:      Andy Lutomirski <luto@amacapital.net>
16840 R:      Will Drewry <wad@chromium.org>
16841 S:      Supported
16842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16843 F:      Documentation/userspace-api/seccomp_filter.rst
16844 F:      include/linux/seccomp.h
16845 F:      include/uapi/linux/seccomp.h
16846 F:      kernel/seccomp.c
16847 F:      tools/testing/selftests/kselftest_harness.h
16848 F:      tools/testing/selftests/seccomp/*
16849 K:      \bsecure_computing
16850 K:      \bTIF_SECCOMP\b
16851
16852 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16853 M:      Al Cooper <alcooperx@gmail.com>
16854 L:      linux-mmc@vger.kernel.org
16855 L:      bcm-kernel-feedback-list@broadcom.com
16856 S:      Maintained
16857 F:      drivers/mmc/host/sdhci-brcmstb*
16858
16859 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16860 M:      Adrian Hunter <adrian.hunter@intel.com>
16861 L:      linux-mmc@vger.kernel.org
16862 S:      Maintained
16863 F:      drivers/mmc/host/sdhci*
16864 F:      include/linux/mmc/sdhci*
16865
16866 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16867 M:      Eugen Hristev <eugen.hristev@microchip.com>
16868 L:      linux-mmc@vger.kernel.org
16869 S:      Supported
16870 F:      drivers/mmc/host/sdhci-of-at91.c
16871
16872 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16873 M:      Ben Dooks <ben-linux@fluff.org>
16874 M:      Jaehoon Chung <jh80.chung@samsung.com>
16875 L:      linux-mmc@vger.kernel.org
16876 S:      Maintained
16877 F:      drivers/mmc/host/sdhci-s3c*
16878
16879 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16880 M:      Viresh Kumar <vireshk@kernel.org>
16881 L:      linux-mmc@vger.kernel.org
16882 S:      Maintained
16883 F:      drivers/mmc/host/sdhci-spear.c
16884
16885 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16886 M:      Kishon Vijay Abraham I <kishon@ti.com>
16887 L:      linux-mmc@vger.kernel.org
16888 S:      Maintained
16889 F:      drivers/mmc/host/sdhci-omap.c
16890
16891 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16892 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16893 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16894 L:      linux-block@vger.kernel.org
16895 S:      Supported
16896 F:      block/opal_proto.h
16897 F:      block/sed*
16898 F:      include/linux/sed*
16899 F:      include/uapi/linux/sed*
16900
16901 SECURITY CONTACT
16902 M:      Security Officers <security@kernel.org>
16903 S:      Supported
16904 F:      Documentation/admin-guide/security-bugs.rst
16905
16906 SECURITY SUBSYSTEM
16907 M:      James Morris <jmorris@namei.org>
16908 M:      "Serge E. Hallyn" <serge@hallyn.com>
16909 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16910 S:      Supported
16911 W:      http://kernsec.org/
16912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16913 F:      security/
16914 X:      security/selinux/
16915
16916 SELINUX SECURITY MODULE
16917 M:      Paul Moore <paul@paul-moore.com>
16918 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16919 M:      Eric Paris <eparis@parisplace.org>
16920 L:      selinux@vger.kernel.org
16921 S:      Supported
16922 W:      https://selinuxproject.org
16923 W:      https://github.com/SELinuxProject
16924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16925 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16926 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16927 F:      Documentation/admin-guide/LSM/SELinux.rst
16928 F:      include/trace/events/avc.h
16929 F:      include/uapi/linux/selinux_netlink.h
16930 F:      scripts/selinux/
16931 F:      security/selinux/
16932
16933 SENSABLE PHANTOM
16934 M:      Jiri Slaby <jirislaby@kernel.org>
16935 S:      Maintained
16936 F:      drivers/misc/phantom.c
16937 F:      include/uapi/linux/phantom.h
16938
16939 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16940 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16941 S:      Maintained
16942 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16943 F:      drivers/iio/chemical/scd30.h
16944 F:      drivers/iio/chemical/scd30_core.c
16945 F:      drivers/iio/chemical/scd30_i2c.c
16946 F:      drivers/iio/chemical/scd30_serial.c
16947
16948 SENSIRION SGP40 GAS SENSOR DRIVER
16949 M:      Andreas Klinger <ak@it-klinger.de>
16950 S:      Maintained
16951 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16952 F:      drivers/iio/chemical/sgp40.c
16953
16954 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16955 M:      Tomasz Duszynski <tduszyns@gmail.com>
16956 S:      Maintained
16957 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16958 F:      drivers/iio/chemical/sps30.c
16959 F:      drivers/iio/chemical/sps30_i2c.c
16960 F:      drivers/iio/chemical/sps30_serial.c
16961
16962 SERIAL DEVICE BUS
16963 M:      Rob Herring <robh@kernel.org>
16964 L:      linux-serial@vger.kernel.org
16965 S:      Maintained
16966 F:      Documentation/devicetree/bindings/serial/serial.yaml
16967 F:      drivers/tty/serdev/
16968 F:      include/linux/serdev.h
16969
16970 SERIAL DRIVERS
16971 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16972 L:      linux-serial@vger.kernel.org
16973 S:      Maintained
16974 F:      Documentation/devicetree/bindings/serial/
16975 F:      drivers/tty/serial/
16976
16977 SERIAL IR RECEIVER
16978 M:      Sean Young <sean@mess.org>
16979 L:      linux-media@vger.kernel.org
16980 S:      Maintained
16981 F:      drivers/media/rc/serial_ir.c
16982
16983 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16984 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16985 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16986 S:      Maintained
16987 F:      Documentation/devicetree/bindings/slimbus/
16988 F:      drivers/slimbus/
16989 F:      include/linux/slimbus.h
16990
16991 SFC NETWORK DRIVER
16992 M:      Edward Cree <ecree.xilinx@gmail.com>
16993 M:      Martin Habets <habetsm.xilinx@gmail.com>
16994 L:      netdev@vger.kernel.org
16995 S:      Supported
16996 F:      drivers/net/ethernet/sfc/
16997
16998 SFF/SFP/SFP+ MODULE SUPPORT
16999 M:      Russell King <linux@armlinux.org.uk>
17000 L:      netdev@vger.kernel.org
17001 S:      Maintained
17002 F:      drivers/net/phy/phylink.c
17003 F:      drivers/net/phy/sfp*
17004 F:      include/linux/mdio/mdio-i2c.h
17005 F:      include/linux/phylink.h
17006 F:      include/linux/sfp.h
17007 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)
17008
17009 SGI GRU DRIVER
17010 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17011 S:      Maintained
17012 F:      drivers/misc/sgi-gru/
17013
17014 SGI XP/XPC/XPNET DRIVER
17015 M:      Robin Holt <robinmholt@gmail.com>
17016 M:      Steve Wahl <steve.wahl@hpe.com>
17017 R:      Mike Travis <mike.travis@hpe.com>
17018 S:      Maintained
17019 F:      drivers/misc/sgi-xp/
17020
17021 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17022 M:      Karsten Graul <kgraul@linux.ibm.com>
17023 L:      linux-s390@vger.kernel.org
17024 S:      Supported
17025 W:      http://www.ibm.com/developerworks/linux/linux390/
17026 F:      net/smc/
17027
17028 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17029 M:      Linus Walleij <linus.walleij@linaro.org>
17030 L:      linux-iio@vger.kernel.org
17031 S:      Maintained
17032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17033 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17034 F:      drivers/iio/light/gp2ap002.c
17035
17036 SHARP RJ54N1CB0C SENSOR DRIVER
17037 M:      Jacopo Mondi <jacopo@jmondi.org>
17038 L:      linux-media@vger.kernel.org
17039 S:      Odd fixes
17040 T:      git git://linuxtv.org/media_tree.git
17041 F:      drivers/media/i2c/rj54n1cb0c.c
17042 F:      include/media/i2c/rj54n1cb0c.h
17043
17044 SH_VOU V4L2 OUTPUT DRIVER
17045 L:      linux-media@vger.kernel.org
17046 S:      Orphan
17047 F:      drivers/media/platform/sh_vou.c
17048 F:      include/media/drv-intf/sh_vou.h
17049
17050 SI2157 MEDIA DRIVER
17051 M:      Antti Palosaari <crope@iki.fi>
17052 L:      linux-media@vger.kernel.org
17053 S:      Maintained
17054 W:      https://linuxtv.org
17055 W:      http://palosaari.fi/linux/
17056 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17057 T:      git git://linuxtv.org/anttip/media_tree.git
17058 F:      drivers/media/tuners/si2157*
17059
17060 SI2165 MEDIA DRIVER
17061 M:      Matthias Schwarzott <zzam@gentoo.org>
17062 L:      linux-media@vger.kernel.org
17063 S:      Maintained
17064 W:      https://linuxtv.org
17065 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17066 F:      drivers/media/dvb-frontends/si2165*
17067
17068 SI2168 MEDIA DRIVER
17069 M:      Antti Palosaari <crope@iki.fi>
17070 L:      linux-media@vger.kernel.org
17071 S:      Maintained
17072 W:      https://linuxtv.org
17073 W:      http://palosaari.fi/linux/
17074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17075 T:      git git://linuxtv.org/anttip/media_tree.git
17076 F:      drivers/media/dvb-frontends/si2168*
17077
17078 SI470X FM RADIO RECEIVER I2C DRIVER
17079 M:      Hans Verkuil <hverkuil@xs4all.nl>
17080 L:      linux-media@vger.kernel.org
17081 S:      Odd Fixes
17082 W:      https://linuxtv.org
17083 T:      git git://linuxtv.org/media_tree.git
17084 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17085
17086 SI470X FM RADIO RECEIVER USB DRIVER
17087 M:      Hans Verkuil <hverkuil@xs4all.nl>
17088 L:      linux-media@vger.kernel.org
17089 S:      Maintained
17090 W:      https://linuxtv.org
17091 T:      git git://linuxtv.org/media_tree.git
17092 F:      drivers/media/radio/si470x/radio-si470x-common.c
17093 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17094 F:      drivers/media/radio/si470x/radio-si470x.h
17095
17096 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17097 M:      Eduardo Valentin <edubezval@gmail.com>
17098 L:      linux-media@vger.kernel.org
17099 S:      Odd Fixes
17100 W:      https://linuxtv.org
17101 T:      git git://linuxtv.org/media_tree.git
17102 F:      drivers/media/radio/si4713/si4713.?
17103
17104 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17105 M:      Eduardo Valentin <edubezval@gmail.com>
17106 L:      linux-media@vger.kernel.org
17107 S:      Odd Fixes
17108 W:      https://linuxtv.org
17109 T:      git git://linuxtv.org/media_tree.git
17110 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17111
17112 SI4713 FM RADIO TRANSMITTER USB DRIVER
17113 M:      Hans Verkuil <hverkuil@xs4all.nl>
17114 L:      linux-media@vger.kernel.org
17115 S:      Maintained
17116 W:      https://linuxtv.org
17117 T:      git git://linuxtv.org/media_tree.git
17118 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17119
17120 SIANO DVB DRIVER
17121 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17122 L:      linux-media@vger.kernel.org
17123 S:      Odd fixes
17124 W:      https://linuxtv.org
17125 T:      git git://linuxtv.org/media_tree.git
17126 F:      drivers/media/common/siano/
17127 F:      drivers/media/mmc/siano/
17128 F:      drivers/media/usb/siano/
17129 F:      drivers/media/usb/siano/
17130
17131 SIFIVE DRIVERS
17132 M:      Palmer Dabbelt <palmer@dabbelt.com>
17133 M:      Paul Walmsley <paul.walmsley@sifive.com>
17134 L:      linux-riscv@lists.infradead.org
17135 S:      Supported
17136 T:      git git://github.com/sifive/riscv-linux.git
17137 N:      sifive
17138 K:      [^@]sifive
17139
17140 SIFIVE FU540 SYSTEM-ON-CHIP
17141 M:      Paul Walmsley <paul.walmsley@sifive.com>
17142 M:      Palmer Dabbelt <palmer@dabbelt.com>
17143 L:      linux-riscv@lists.infradead.org
17144 S:      Supported
17145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17146 N:      fu540
17147 K:      fu540
17148
17149 SIFIVE PDMA DRIVER
17150 M:      Green Wan <green.wan@sifive.com>
17151 S:      Maintained
17152 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17153 F:      drivers/dma/sf-pdma/
17154
17155 SILEAD TOUCHSCREEN DRIVER
17156 M:      Hans de Goede <hdegoede@redhat.com>
17157 L:      linux-input@vger.kernel.org
17158 L:      platform-driver-x86@vger.kernel.org
17159 S:      Maintained
17160 F:      drivers/input/touchscreen/silead.c
17161 F:      drivers/platform/x86/touchscreen_dmi.c
17162
17163 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17164 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17165 S:      Supported
17166 F:      drivers/staging/wfx/
17167
17168 SILICON MOTION SM712 FRAME BUFFER DRIVER
17169 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17170 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17171 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17172 L:      linux-fbdev@vger.kernel.org
17173 S:      Maintained
17174 F:      Documentation/fb/sm712fb.rst
17175 F:      drivers/video/fbdev/sm712*
17176
17177 SILVACO I3C DUAL-ROLE MASTER
17178 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17179 M:      Conor Culhane <conor.culhane@silvaco.com>
17180 L:      linux-i3c@lists.infradead.org
17181 S:      Maintained
17182 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17183 F:      drivers/i3c/master/svc-i3c-master.c
17184
17185 SIMPLEFB FB DRIVER
17186 M:      Hans de Goede <hdegoede@redhat.com>
17187 L:      linux-fbdev@vger.kernel.org
17188 S:      Maintained
17189 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17190 F:      drivers/video/fbdev/simplefb.c
17191 F:      include/linux/platform_data/simplefb.h
17192
17193 SIMTEC EB110ATX (Chalice CATS)
17194 M:      Simtec Linux Team <linux@simtec.co.uk>
17195 S:      Supported
17196 W:      http://www.simtec.co.uk/products/EB110ATX/
17197
17198 SIMTEC EB2410ITX (BAST)
17199 M:      Simtec Linux Team <linux@simtec.co.uk>
17200 S:      Supported
17201 W:      http://www.simtec.co.uk/products/EB2410ITX/
17202 F:      arch/arm/mach-s3c/bast-ide.c
17203 F:      arch/arm/mach-s3c/bast-irq.c
17204 F:      arch/arm/mach-s3c/mach-bast.c
17205
17206 SIOX
17207 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17208 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17209 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17210 S:      Supported
17211 F:      drivers/gpio/gpio-siox.c
17212 F:      drivers/siox/*
17213 F:      include/trace/events/siox.h
17214
17215 SIPHASH PRF ROUTINES
17216 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17217 S:      Maintained
17218 F:      include/linux/siphash.h
17219 F:      lib/siphash.c
17220 F:      lib/test_siphash.c
17221
17222 SIS 190 ETHERNET DRIVER
17223 M:      Francois Romieu <romieu@fr.zoreil.com>
17224 L:      netdev@vger.kernel.org
17225 S:      Maintained
17226 F:      drivers/net/ethernet/sis/sis190.c
17227
17228 SIS 900/7016 FAST ETHERNET DRIVER
17229 M:      Daniele Venzano <venza@brownhat.org>
17230 L:      netdev@vger.kernel.org
17231 S:      Maintained
17232 W:      http://www.brownhat.org/sis900.html
17233 F:      drivers/net/ethernet/sis/sis900.*
17234
17235 SIS FRAMEBUFFER DRIVER
17236 M:      Thomas Winischhofer <thomas@winischhofer.net>
17237 S:      Maintained
17238 W:      http://www.winischhofer.net/linuxsisvga.shtml
17239 F:      Documentation/fb/sisfb.rst
17240 F:      drivers/video/fbdev/sis/
17241 F:      include/video/sisfb.h
17242
17243 SIS I2C TOUCHSCREEN DRIVER
17244 M:      Mika Penttilä <mika.penttila@nextfour.com>
17245 L:      linux-input@vger.kernel.org
17246 S:      Maintained
17247 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17248 F:      drivers/input/touchscreen/sis_i2c.c
17249
17250 SIS USB2VGA DRIVER
17251 M:      Thomas Winischhofer <thomas@winischhofer.net>
17252 S:      Maintained
17253 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17254 F:      drivers/usb/misc/sisusbvga/
17255
17256 SLAB ALLOCATOR
17257 M:      Christoph Lameter <cl@linux.com>
17258 M:      Pekka Enberg <penberg@kernel.org>
17259 M:      David Rientjes <rientjes@google.com>
17260 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17261 M:      Andrew Morton <akpm@linux-foundation.org>
17262 M:      Vlastimil Babka <vbabka@suse.cz>
17263 L:      linux-mm@kvack.org
17264 S:      Maintained
17265 F:      include/linux/sl?b*.h
17266 F:      mm/sl?b*
17267
17268 SLEEPABLE READ-COPY UPDATE (SRCU)
17269 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17270 M:      "Paul E. McKenney" <paulmck@kernel.org>
17271 M:      Josh Triplett <josh@joshtriplett.org>
17272 R:      Steven Rostedt <rostedt@goodmis.org>
17273 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17274 L:      rcu@vger.kernel.org
17275 S:      Supported
17276 W:      http://www.rdrop.com/users/paulmck/RCU/
17277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17278 F:      include/linux/srcu*.h
17279 F:      kernel/rcu/srcu*.c
17280
17281 SMACK SECURITY MODULE
17282 M:      Casey Schaufler <casey@schaufler-ca.com>
17283 L:      linux-security-module@vger.kernel.org
17284 S:      Maintained
17285 W:      http://schaufler-ca.com
17286 T:      git git://github.com/cschaufler/smack-next
17287 F:      Documentation/admin-guide/LSM/Smack.rst
17288 F:      security/smack/
17289
17290 SMC91x ETHERNET DRIVER
17291 M:      Nicolas Pitre <nico@fluxnic.net>
17292 S:      Odd Fixes
17293 F:      drivers/net/ethernet/smsc/smc91x.*
17294
17295 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17296 M:      Mark Rutland <mark.rutland@arm.com>
17297 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17298 M:      Sudeep Holla <sudeep.holla@arm.com>
17299 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17300 S:      Maintained
17301 F:      drivers/firmware/smccc/
17302 F:      include/linux/arm-smccc.h
17303
17304 SMM665 HARDWARE MONITOR DRIVER
17305 M:      Guenter Roeck <linux@roeck-us.net>
17306 L:      linux-hwmon@vger.kernel.org
17307 S:      Maintained
17308 F:      Documentation/hwmon/smm665.rst
17309 F:      drivers/hwmon/smm665.c
17310
17311 SMSC EMC2103 HARDWARE MONITOR DRIVER
17312 M:      Steve Glendinning <steve.glendinning@shawell.net>
17313 L:      linux-hwmon@vger.kernel.org
17314 S:      Maintained
17315 F:      Documentation/hwmon/emc2103.rst
17316 F:      drivers/hwmon/emc2103.c
17317
17318 SMSC SCH5627 HARDWARE MONITOR DRIVER
17319 M:      Hans de Goede <hdegoede@redhat.com>
17320 L:      linux-hwmon@vger.kernel.org
17321 S:      Supported
17322 F:      Documentation/hwmon/sch5627.rst
17323 F:      drivers/hwmon/sch5627.c
17324
17325 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17326 M:      Steve Glendinning <steve.glendinning@shawell.net>
17327 L:      linux-fbdev@vger.kernel.org
17328 S:      Maintained
17329 F:      drivers/video/fbdev/smscufx.c
17330
17331 SMSC47B397 HARDWARE MONITOR DRIVER
17332 M:      Jean Delvare <jdelvare@suse.com>
17333 L:      linux-hwmon@vger.kernel.org
17334 S:      Maintained
17335 F:      Documentation/hwmon/smsc47b397.rst
17336 F:      drivers/hwmon/smsc47b397.c
17337
17338 SMSC911x ETHERNET DRIVER
17339 M:      Steve Glendinning <steve.glendinning@shawell.net>
17340 L:      netdev@vger.kernel.org
17341 S:      Maintained
17342 F:      drivers/net/ethernet/smsc/smsc911x.*
17343 F:      include/linux/smsc911x.h
17344
17345 SMSC9420 PCI ETHERNET DRIVER
17346 M:      Steve Glendinning <steve.glendinning@shawell.net>
17347 L:      netdev@vger.kernel.org
17348 S:      Maintained
17349 F:      drivers/net/ethernet/smsc/smsc9420.*
17350
17351 SOCIONEXT (SNI) AVE NETWORK DRIVER
17352 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17353 L:      netdev@vger.kernel.org
17354 S:      Maintained
17355 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17356 F:      drivers/net/ethernet/socionext/sni_ave.c
17357
17358 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17359 M:      Jassi Brar <jaswinder.singh@linaro.org>
17360 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17361 L:      netdev@vger.kernel.org
17362 S:      Maintained
17363 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17364 F:      drivers/net/ethernet/socionext/netsec.c
17365
17366 SOCIONEXT (SNI) Synquacer SPI DRIVER
17367 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17368 M:      Jassi Brar <jaswinder.singh@linaro.org>
17369 L:      linux-spi@vger.kernel.org
17370 S:      Maintained
17371 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17372 F:      drivers/spi/spi-synquacer.c
17373
17374 SOCIONEXT SYNQUACER I2C DRIVER
17375 M:      Ard Biesheuvel <ardb@kernel.org>
17376 L:      linux-i2c@vger.kernel.org
17377 S:      Maintained
17378 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17379 F:      drivers/i2c/busses/i2c-synquacer.c
17380
17381 SOCIONEXT UNIPHIER SOUND DRIVER
17382 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17383 S:      Orphan
17384 F:      sound/soc/uniphier/
17385
17386 SOEKRIS NET48XX LED SUPPORT
17387 M:      Chris Boot <bootc@bootc.net>
17388 S:      Maintained
17389 F:      drivers/leds/leds-net48xx.c
17390
17391 SOFT-IWARP DRIVER (siw)
17392 M:      Bernard Metzler <bmt@zurich.ibm.com>
17393 L:      linux-rdma@vger.kernel.org
17394 S:      Supported
17395 F:      drivers/infiniband/sw/siw/
17396 F:      include/uapi/rdma/siw-abi.h
17397
17398 SOFT-ROCE DRIVER (rxe)
17399 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17400 L:      linux-rdma@vger.kernel.org
17401 S:      Supported
17402 F:      drivers/infiniband/sw/rxe/
17403 F:      include/uapi/rdma/rdma_user_rxe.h
17404
17405 SOFTLOGIC 6x10 MPEG CODEC
17406 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17407 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17408 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17409 M:      Ismael Luceno <ismael@iodev.co.uk>
17410 L:      linux-media@vger.kernel.org
17411 S:      Supported
17412 F:      drivers/media/pci/solo6x10/
17413
17414 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17415 M:      James Morse <james.morse@arm.com>
17416 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17417 S:      Maintained
17418 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17419 F:      drivers/firmware/arm_sdei.c
17420 F:      include/linux/arm_sdei.h
17421 F:      include/uapi/linux/arm_sdei.h
17422
17423 SOFTWARE NODES
17424 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17425 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17426 L:      linux-acpi@vger.kernel.org
17427 S:      Maintained
17428 F:      drivers/base/swnode.c
17429
17430 SOFTWARE RAID (Multiple Disks) SUPPORT
17431 M:      Song Liu <song@kernel.org>
17432 L:      linux-raid@vger.kernel.org
17433 S:      Supported
17434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17435 F:      drivers/md/Kconfig
17436 F:      drivers/md/Makefile
17437 F:      drivers/md/md*
17438 F:      drivers/md/raid*
17439 F:      include/linux/raid/
17440 F:      include/uapi/linux/raid/
17441
17442 SOLIDRUN CLEARFOG SUPPORT
17443 M:      Russell King <linux@armlinux.org.uk>
17444 S:      Maintained
17445 F:      arch/arm/boot/dts/armada-388-clearfog*
17446 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17447
17448 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17449 M:      Russell King <linux@armlinux.org.uk>
17450 S:      Maintained
17451 F:      arch/arm/boot/dts/imx6*-cubox-i*
17452 F:      arch/arm/boot/dts/imx6*-hummingboard*
17453 F:      arch/arm/boot/dts/imx6*-sr-*
17454
17455 SONIC NETWORK DRIVER
17456 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17457 L:      netdev@vger.kernel.org
17458 S:      Maintained
17459 F:      drivers/net/ethernet/natsemi/sonic.*
17460
17461 SONICS SILICON BACKPLANE DRIVER (SSB)
17462 M:      Michael Buesch <m@bues.ch>
17463 L:      linux-wireless@vger.kernel.org
17464 S:      Maintained
17465 F:      drivers/ssb/
17466 F:      include/linux/ssb/
17467
17468 SONY IMX208 SENSOR DRIVER
17469 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17470 L:      linux-media@vger.kernel.org
17471 S:      Maintained
17472 T:      git git://linuxtv.org/media_tree.git
17473 F:      drivers/media/i2c/imx208.c
17474
17475 SONY IMX214 SENSOR DRIVER
17476 M:      Ricardo Ribalda <ribalda@kernel.org>
17477 L:      linux-media@vger.kernel.org
17478 S:      Maintained
17479 T:      git git://linuxtv.org/media_tree.git
17480 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17481 F:      drivers/media/i2c/imx214.c
17482
17483 SONY IMX219 SENSOR DRIVER
17484 M:      Dave Stevenson <dave.stevenson@raspberrypi.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/imx219.yaml
17489 F:      drivers/media/i2c/imx219.c
17490
17491 SONY IMX258 SENSOR DRIVER
17492 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17493 L:      linux-media@vger.kernel.org
17494 S:      Maintained
17495 T:      git git://linuxtv.org/media_tree.git
17496 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17497 F:      drivers/media/i2c/imx258.c
17498
17499 SONY IMX274 SENSOR DRIVER
17500 M:      Leon Luo <leonl@leopardimaging.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,imx274.yaml
17505 F:      drivers/media/i2c/imx274.c
17506
17507 SONY IMX290 SENSOR DRIVER
17508 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17509 L:      linux-media@vger.kernel.org
17510 S:      Maintained
17511 T:      git git://linuxtv.org/media_tree.git
17512 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17513 F:      drivers/media/i2c/imx290.c
17514
17515 SONY IMX296 SENSOR DRIVER
17516 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17517 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17518 L:      linux-media@vger.kernel.org
17519 S:      Maintained
17520 T:      git git://linuxtv.org/media_tree.git
17521 F:      Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml
17522 F:      drivers/media/i2c/imx296.c
17523
17524 SONY IMX319 SENSOR DRIVER
17525 M:      Bingbu Cao <bingbu.cao@intel.com>
17526 L:      linux-media@vger.kernel.org
17527 S:      Maintained
17528 T:      git git://linuxtv.org/media_tree.git
17529 F:      drivers/media/i2c/imx319.c
17530
17531 SONY IMX334 SENSOR DRIVER
17532 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17533 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17534 L:      linux-media@vger.kernel.org
17535 S:      Maintained
17536 T:      git git://linuxtv.org/media_tree.git
17537 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17538 F:      drivers/media/i2c/imx334.c
17539
17540 SONY IMX335 SENSOR DRIVER
17541 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17542 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17543 L:      linux-media@vger.kernel.org
17544 S:      Maintained
17545 T:      git git://linuxtv.org/media_tree.git
17546 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17547 F:      drivers/media/i2c/imx335.c
17548
17549 SONY IMX355 SENSOR DRIVER
17550 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17551 L:      linux-media@vger.kernel.org
17552 S:      Maintained
17553 T:      git git://linuxtv.org/media_tree.git
17554 F:      drivers/media/i2c/imx355.c
17555
17556 SONY IMX412 SENSOR DRIVER
17557 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17558 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17559 L:      linux-media@vger.kernel.org
17560 S:      Maintained
17561 T:      git git://linuxtv.org/media_tree.git
17562 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17563 F:      drivers/media/i2c/imx412.c
17564
17565 SONY IMX477 SENSOR DRIVER
17566 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
17567 L:      linux-media@vger.kernel.org
17568 S:      Maintained
17569 T:      git git://linuxtv.org/media_tree.git
17570 F:      Documentation/devicetree/bindings/media/i2c/imx378.yaml
17571 F:      Documentation/devicetree/bindings/media/i2c/imx477.yaml
17572 F:      drivers/media/i2c/imx477.c
17573
17574 SONY IMX519 SENSOR DRIVER
17575 M:      Arducam Kernel Maintenance <info@arducam.com>
17576 L:      linux-media@vger.kernel.org
17577 S:      Maintained
17578 T:      git git://linuxtv.org/media_tree.git
17579 F:      Documentation/devicetree/bindings/media/i2c/imx519.yaml
17580 F:      drivers/media/i2c/imx519.c
17581
17582 SONY IMX708 SENSOR DRIVER
17583 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
17584 L:      linux-media@vger.kernel.org
17585 S:      Maintained
17586 T:      git git://linuxtv.org/media_tree.git
17587 F:      Documentation/devicetree/bindings/media/i2c/imx708.yaml
17588 F:      drivers/media/i2c/imx708.c
17589
17590 SONY MEMORYSTICK SUBSYSTEM
17591 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17592 M:      Alex Dubov <oakad@yahoo.com>
17593 M:      Ulf Hansson <ulf.hansson@linaro.org>
17594 L:      linux-mmc@vger.kernel.org
17595 S:      Maintained
17596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17597 F:      drivers/memstick/
17598 F:      include/linux/memstick.h
17599
17600 SONY VAIO CONTROL DEVICE DRIVER
17601 M:      Mattia Dongili <malattia@linux.it>
17602 L:      platform-driver-x86@vger.kernel.org
17603 S:      Maintained
17604 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17605 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17606 F:      drivers/char/sonypi.c
17607 F:      drivers/platform/x86/sony-laptop.c
17608 F:      include/linux/sony-laptop.h
17609
17610 SOUND
17611 M:      Jaroslav Kysela <perex@perex.cz>
17612 M:      Takashi Iwai <tiwai@suse.com>
17613 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17614 S:      Maintained
17615 W:      http://www.alsa-project.org/
17616 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17618 F:      Documentation/sound/
17619 F:      include/sound/
17620 F:      include/uapi/sound/
17621 F:      sound/
17622
17623 SOUND - COMPRESSED AUDIO
17624 M:      Vinod Koul <vkoul@kernel.org>
17625 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17626 S:      Supported
17627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17628 F:      Documentation/sound/designs/compress-offload.rst
17629 F:      include/sound/compress_driver.h
17630 F:      include/uapi/sound/compress_*
17631 F:      sound/core/compress_offload.c
17632 F:      sound/soc/soc-compress.c
17633
17634 SOUND - DMAENGINE HELPERS
17635 M:      Lars-Peter Clausen <lars@metafoo.de>
17636 S:      Supported
17637 F:      include/sound/dmaengine_pcm.h
17638 F:      sound/core/pcm_dmaengine.c
17639 F:      sound/soc/soc-generic-dmaengine-pcm.c
17640
17641 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17642 M:      Liam Girdwood <lgirdwood@gmail.com>
17643 M:      Mark Brown <broonie@kernel.org>
17644 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17645 S:      Supported
17646 W:      http://alsa-project.org/main/index.php/ASoC
17647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17648 F:      Documentation/devicetree/bindings/sound/
17649 F:      Documentation/sound/soc/
17650 F:      include/dt-bindings/sound/
17651 F:      include/sound/soc*
17652 F:      sound/soc/
17653
17654 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17655 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17656 M:      Liam Girdwood <lgirdwood@gmail.com>
17657 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17658 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17659 M:      Daniel Baluta <daniel.baluta@nxp.com>
17660 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17661 S:      Supported
17662 W:      https://github.com/thesofproject/linux/
17663 F:      sound/soc/sof/
17664
17665 SOUNDWIRE SUBSYSTEM
17666 M:      Vinod Koul <vkoul@kernel.org>
17667 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17668 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17669 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17670 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17671 S:      Supported
17672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17673 F:      Documentation/driver-api/soundwire/
17674 F:      drivers/soundwire/
17675 F:      include/linux/soundwire/
17676
17677 SP2 MEDIA DRIVER
17678 M:      Olli Salonen <olli.salonen@iki.fi>
17679 L:      linux-media@vger.kernel.org
17680 S:      Maintained
17681 W:      https://linuxtv.org
17682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17683 F:      drivers/media/dvb-frontends/sp2*
17684
17685 SPARC + UltraSPARC (sparc/sparc64)
17686 M:      "David S. Miller" <davem@davemloft.net>
17687 L:      sparclinux@vger.kernel.org
17688 S:      Maintained
17689 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17692 F:      arch/sparc/
17693 F:      drivers/sbus/
17694
17695 SPARC SERIAL DRIVERS
17696 M:      "David S. Miller" <davem@davemloft.net>
17697 L:      sparclinux@vger.kernel.org
17698 S:      Maintained
17699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17701 F:      drivers/tty/serial/suncore.c
17702 F:      drivers/tty/serial/sunhv.c
17703 F:      drivers/tty/serial/sunsab.c
17704 F:      drivers/tty/serial/sunsab.h
17705 F:      drivers/tty/serial/sunsu.c
17706 F:      drivers/tty/serial/sunzilog.c
17707 F:      drivers/tty/serial/sunzilog.h
17708 F:      drivers/tty/vcc.c
17709 F:      include/linux/sunserialcore.h
17710
17711 SPARSE CHECKER
17712 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17713 L:      linux-sparse@vger.kernel.org
17714 S:      Maintained
17715 W:      https://sparse.docs.kernel.org/
17716 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17717 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17718 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17719 F:      include/linux/compiler.h
17720
17721 SPEAKUP CONSOLE SPEECH DRIVER
17722 M:      William Hubbs <w.d.hubbs@gmail.com>
17723 M:      Chris Brannon <chris@the-brannons.com>
17724 M:      Kirk Reiser <kirk@reisers.ca>
17725 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17726 L:      speakup@linux-speakup.org
17727 S:      Odd Fixes
17728 W:      http://www.linux-speakup.org/
17729 W:      https://github.com/linux-speakup/speakup
17730 B:      https://github.com/linux-speakup/speakup/issues
17731 F:      drivers/accessibility/speakup/
17732
17733 SPEAR CLOCK FRAMEWORK SUPPORT
17734 M:      Viresh Kumar <vireshk@kernel.org>
17735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17736 S:      Maintained
17737 W:      http://www.st.com/spear
17738 F:      drivers/clk/spear/
17739
17740 SPEAR PLATFORM SUPPORT
17741 M:      Viresh Kumar <vireshk@kernel.org>
17742 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17743 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17744 S:      Maintained
17745 W:      http://www.st.com/spear
17746 F:      arch/arm/boot/dts/spear*
17747 F:      arch/arm/mach-spear/
17748
17749 SPI NOR SUBSYSTEM
17750 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17751 R:      Michael Walle <michael@walle.cc>
17752 R:      Pratyush Yadav <p.yadav@ti.com>
17753 L:      linux-mtd@lists.infradead.org
17754 S:      Maintained
17755 W:      http://www.linux-mtd.infradead.org/
17756 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17757 C:      irc://irc.oftc.net/mtd
17758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17759 F:      drivers/mtd/spi-nor/
17760 F:      include/linux/mtd/spi-nor.h
17761
17762 SPI SUBSYSTEM
17763 M:      Mark Brown <broonie@kernel.org>
17764 L:      linux-spi@vger.kernel.org
17765 S:      Maintained
17766 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17768 F:      Documentation/devicetree/bindings/spi/
17769 F:      Documentation/spi/
17770 F:      drivers/spi/
17771 F:      include/linux/spi/
17772 F:      include/uapi/linux/spi/
17773 F:      tools/spi/
17774
17775 SPIDERNET NETWORK DRIVER for CELL
17776 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17777 M:      Geoff Levand <geoff@infradead.org>
17778 L:      netdev@vger.kernel.org
17779 L:      linuxppc-dev@lists.ozlabs.org
17780 S:      Maintained
17781 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17782 F:      drivers/net/ethernet/toshiba/spider_net*
17783
17784 SPMI SUBSYSTEM
17785 M:      Stephen Boyd <sboyd@kernel.org>
17786 L:      linux-kernel@vger.kernel.org
17787 S:      Maintained
17788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17789 F:      Documentation/devicetree/bindings/spmi/
17790 F:      drivers/spmi/
17791 F:      include/dt-bindings/spmi/spmi.h
17792 F:      include/linux/spmi.h
17793 F:      include/trace/events/spmi.h
17794
17795 SPU FILE SYSTEM
17796 M:      Jeremy Kerr <jk@ozlabs.org>
17797 L:      linuxppc-dev@lists.ozlabs.org
17798 S:      Supported
17799 W:      http://www.ibm.com/developerworks/power/cell/
17800 F:      Documentation/filesystems/spufs/spufs.rst
17801 F:      arch/powerpc/platforms/cell/spufs/
17802
17803 SQUASHFS FILE SYSTEM
17804 M:      Phillip Lougher <phillip@squashfs.org.uk>
17805 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17806 S:      Maintained
17807 W:      http://squashfs.org.uk
17808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17809 F:      Documentation/filesystems/squashfs.rst
17810 F:      fs/squashfs/
17811
17812 SRM (Alpha) environment access
17813 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17814 S:      Maintained
17815 F:      arch/alpha/kernel/srm_env.c
17816
17817 ST LSM6DSx IMU IIO DRIVER
17818 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17819 L:      linux-iio@vger.kernel.org
17820 S:      Maintained
17821 W:      http://www.st.com/
17822 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17823 F:      drivers/iio/imu/st_lsm6dsx/
17824
17825 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17826 M:      Mickael Guene <mickael.guene@st.com>
17827 L:      linux-media@vger.kernel.org
17828 S:      Maintained
17829 T:      git git://linuxtv.org/media_tree.git
17830 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17831 F:      drivers/media/i2c/st-mipid02.c
17832
17833 ST STM32 I2C/SMBUS DRIVER
17834 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17835 M:      Alain Volmat <alain.volmat@foss.st.com>
17836 L:      linux-i2c@vger.kernel.org
17837 S:      Maintained
17838 F:      drivers/i2c/busses/i2c-stm32*
17839
17840 ST STM32 SPI DRIVER
17841 M:      Alain Volmat <alain.volmat@foss.st.com>
17842 L:      linux-spi@vger.kernel.org
17843 S:      Maintained
17844 F:      drivers/spi/spi-stm32.c
17845
17846 ST STPDDC60 DRIVER
17847 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17848 L:      linux-hwmon@vger.kernel.org
17849 S:      Maintained
17850 F:      Documentation/hwmon/stpddc60.rst
17851 F:      drivers/hwmon/pmbus/stpddc60.c
17852
17853 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17854 M:      Song Qiang <songqiang1304521@gmail.com>
17855 L:      linux-iio@vger.kernel.org
17856 S:      Maintained
17857 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17858 F:      drivers/iio/proximity/vl53l0x-i2c.c
17859
17860 STABLE BRANCH
17861 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17862 M:      Sasha Levin <sashal@kernel.org>
17863 L:      stable@vger.kernel.org
17864 S:      Supported
17865 F:      Documentation/process/stable-kernel-rules.rst
17866
17867 STAGING - ATOMISP DRIVER
17868 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17869 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17870 L:      linux-media@vger.kernel.org
17871 S:      Maintained
17872 F:      drivers/staging/media/atomisp/
17873
17874 STAGING - FIELDBUS SUBSYSTEM
17875 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17876 S:      Maintained
17877 F:      drivers/staging/fieldbus/*
17878 F:      drivers/staging/fieldbus/Documentation/
17879
17880 STAGING - HMS ANYBUS-S BUS
17881 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17882 S:      Maintained
17883 F:      drivers/staging/fieldbus/anybuss/
17884
17885 STAGING - INDUSTRIAL IO
17886 M:      Jonathan Cameron <jic23@kernel.org>
17887 L:      linux-iio@vger.kernel.org
17888 S:      Odd Fixes
17889 F:      Documentation/devicetree/bindings/staging/iio/
17890 F:      drivers/staging/iio/
17891
17892 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17893 M:      Marc Dietrich <marvin24@gmx.de>
17894 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17895 L:      linux-tegra@vger.kernel.org
17896 S:      Maintained
17897 F:      drivers/staging/nvec/
17898
17899 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17900 M:      Jens Frederich <jfrederich@gmail.com>
17901 M:      Jon Nettleton <jon.nettleton@gmail.com>
17902 S:      Maintained
17903 W:      http://wiki.laptop.org/go/DCON
17904 F:      drivers/staging/olpc_dcon/
17905
17906 STAGING - REALTEK RTL8188EU DRIVERS
17907 M:      Larry Finger <Larry.Finger@lwfinger.net>
17908 M:      Phillip Potter <phil@philpotter.co.uk>
17909 S:      Supported
17910 F:      drivers/staging/r8188eu/
17911
17912 STAGING - REALTEK RTL8712U DRIVERS
17913 M:      Larry Finger <Larry.Finger@lwfinger.net>
17914 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17915 S:      Odd Fixes
17916 F:      drivers/staging/rtl8712/
17917
17918 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17919 M:      Michael Hennerich <michael.hennerich@analog.com>
17920 L:      linux-fbdev@vger.kernel.org
17921 S:      Supported
17922 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17923 F:      drivers/staging/fbtft/fb_seps525.c
17924
17925 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17926 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17927 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17928 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17929 L:      linux-fbdev@vger.kernel.org
17930 S:      Maintained
17931 F:      drivers/staging/sm750fb/
17932
17933 STAGING - VIA VT665X DRIVERS
17934 M:      Forest Bond <forest@alittletooquiet.net>
17935 S:      Odd Fixes
17936 F:      drivers/staging/vt665?/
17937
17938 STAGING SUBSYSTEM
17939 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17940 L:      linux-staging@lists.linux.dev
17941 S:      Supported
17942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17943 F:      drivers/staging/
17944
17945 STARFIRE/DURALAN NETWORK DRIVER
17946 M:      Ion Badulescu <ionut@badula.org>
17947 S:      Odd Fixes
17948 F:      drivers/net/ethernet/adaptec/starfire*
17949
17950 STATIC BRANCH/CALL
17951 M:      Peter Zijlstra <peterz@infradead.org>
17952 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17953 M:      Jason Baron <jbaron@akamai.com>
17954 R:      Steven Rostedt <rostedt@goodmis.org>
17955 R:      Ard Biesheuvel <ardb@kernel.org>
17956 S:      Supported
17957 F:      arch/*/include/asm/jump_label*.h
17958 F:      arch/*/include/asm/static_call*.h
17959 F:      arch/*/kernel/jump_label.c
17960 F:      arch/*/kernel/static_call.c
17961 F:      include/linux/jump_label*.h
17962 F:      include/linux/static_call*.h
17963 F:      kernel/jump_label.c
17964 F:      kernel/static_call.c
17965
17966 STI AUDIO (ASoC) DRIVERS
17967 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17968 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17969 S:      Maintained
17970 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17971 F:      sound/soc/sti/
17972
17973 STI CEC DRIVER
17974 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17975 S:      Maintained
17976 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17977 F:      drivers/media/cec/platform/sti/
17978
17979 STK1160 USB VIDEO CAPTURE DRIVER
17980 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17981 L:      linux-media@vger.kernel.org
17982 S:      Maintained
17983 T:      git git://linuxtv.org/media_tree.git
17984 F:      drivers/media/usb/stk1160/
17985
17986 STM32 AUDIO (ASoC) DRIVERS
17987 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17988 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17989 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17990 S:      Maintained
17991 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17992 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17993 F:      sound/soc/stm/
17994
17995 STM32 TIMER/LPTIMER DRIVERS
17996 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17997 S:      Maintained
17998 F:      Documentation/ABI/testing/*timer-stm32
17999 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18000 F:      drivers/*/stm32-*timer*
18001 F:      drivers/pwm/pwm-stm32*
18002 F:      include/linux/*/stm32-*tim*
18003
18004 STMMAC ETHERNET DRIVER
18005 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18006 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18007 M:      Jose Abreu <joabreu@synopsys.com>
18008 L:      netdev@vger.kernel.org
18009 S:      Supported
18010 W:      http://www.stlinux.com
18011 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18012 F:      drivers/net/ethernet/stmicro/stmmac/
18013
18014 SUN3/3X
18015 M:      Sam Creasey <sammy@sammy.net>
18016 S:      Maintained
18017 W:      http://sammy.net/sun3/
18018 F:      arch/m68k/include/asm/sun3*
18019 F:      arch/m68k/kernel/*sun3*
18020 F:      arch/m68k/sun3*/
18021 F:      drivers/net/ethernet/i825xx/sun3*
18022
18023 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18024 M:      Hans de Goede <hdegoede@redhat.com>
18025 L:      linux-input@vger.kernel.org
18026 S:      Maintained
18027 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18028 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18029
18030 SUNDANCE NETWORK DRIVER
18031 M:      Denis Kirjanov <kda@linux-powerpc.org>
18032 L:      netdev@vger.kernel.org
18033 S:      Maintained
18034 F:      drivers/net/ethernet/dlink/sundance.c
18035
18036 SUPERH
18037 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18038 M:      Rich Felker <dalias@libc.org>
18039 L:      linux-sh@vger.kernel.org
18040 S:      Maintained
18041 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18042 F:      Documentation/sh/
18043 F:      arch/sh/
18044 F:      drivers/sh/
18045
18046 SUSPEND TO RAM
18047 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18048 M:      Len Brown <len.brown@intel.com>
18049 M:      Pavel Machek <pavel@ucw.cz>
18050 L:      linux-pm@vger.kernel.org
18051 S:      Supported
18052 B:      https://bugzilla.kernel.org
18053 F:      Documentation/power/
18054 F:      arch/x86/kernel/acpi/
18055 F:      drivers/base/power/
18056 F:      include/linux/freezer.h
18057 F:      include/linux/pm.h
18058 F:      include/linux/suspend.h
18059 F:      kernel/power/
18060
18061 SVGA HANDLING
18062 M:      Martin Mares <mj@ucw.cz>
18063 L:      linux-video@atrey.karlin.mff.cuni.cz
18064 S:      Maintained
18065 F:      Documentation/admin-guide/svga.rst
18066 F:      arch/x86/boot/video*
18067
18068 SWIOTLB SUBSYSTEM
18069 M:      Christoph Hellwig <hch@infradead.org>
18070 L:      iommu@lists.linux-foundation.org
18071 L:      iommu@lists.linux.dev
18072 S:      Supported
18073 W:      http://git.infradead.org/users/hch/dma-mapping.git
18074 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18075 F:      arch/*/kernel/pci-swiotlb.c
18076 F:      include/linux/swiotlb.h
18077 F:      kernel/dma/swiotlb.c
18078
18079 SWITCHDEV
18080 M:      Jiri Pirko <jiri@resnulli.us>
18081 M:      Ivan Vecera <ivecera@redhat.com>
18082 L:      netdev@vger.kernel.org
18083 S:      Supported
18084 F:      include/net/switchdev.h
18085 F:      net/switchdev/
18086
18087 SY8106A REGULATOR DRIVER
18088 M:      Icenowy Zheng <icenowy@aosc.io>
18089 S:      Maintained
18090 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18091 F:      drivers/regulator/sy8106a-regulator.c
18092
18093 SYNC FILE FRAMEWORK
18094 M:      Sumit Semwal <sumit.semwal@linaro.org>
18095 R:      Gustavo Padovan <gustavo@padovan.org>
18096 L:      linux-media@vger.kernel.org
18097 L:      dri-devel@lists.freedesktop.org
18098 S:      Maintained
18099 T:      git git://anongit.freedesktop.org/drm/drm-misc
18100 F:      Documentation/driver-api/sync_file.rst
18101 F:      drivers/dma-buf/dma-fence*
18102 F:      drivers/dma-buf/sw_sync.c
18103 F:      drivers/dma-buf/sync_*
18104 F:      include/linux/sync_file.h
18105 F:      include/uapi/linux/sync_file.h
18106
18107 SYNOPSYS ARC ARCHITECTURE
18108 M:      Vineet Gupta <vgupta@kernel.org>
18109 L:      linux-snps-arc@lists.infradead.org
18110 S:      Supported
18111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18112 F:      Documentation/devicetree/bindings/arc/*
18113 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18114 F:      arch/arc/
18115 F:      drivers/clocksource/arc_timer.c
18116 F:      drivers/tty/serial/arc_uart.c
18117
18118 SYNOPSYS ARC HSDK SDP pll clock driver
18119 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18120 S:      Supported
18121 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18122 F:      drivers/clk/clk-hsdk-pll.c
18123
18124 SYNOPSYS ARC SDP clock driver
18125 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18126 S:      Supported
18127 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18128 F:      drivers/clk/axs10x/*
18129
18130 SYNOPSYS ARC SDP platform support
18131 M:      Alexey Brodkin <abrodkin@synopsys.com>
18132 S:      Supported
18133 F:      Documentation/devicetree/bindings/arc/axs10*
18134 F:      arch/arc/boot/dts/ax*
18135 F:      arch/arc/plat-axs10x
18136
18137 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18138 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18139 S:      Supported
18140 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18141 F:      drivers/reset/reset-axs10x.c
18142
18143 SYNOPSYS CREG GPIO DRIVER
18144 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18145 S:      Maintained
18146 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18147 F:      drivers/gpio/gpio-creg-snps.c
18148
18149 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18150 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18151 S:      Maintained
18152 F:      drivers/tty/serial/8250/8250_dw.c
18153 F:      drivers/tty/serial/8250/8250_dwlib.*
18154 F:      drivers/tty/serial/8250/8250_lpss.c
18155
18156 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18157 M:      Hoan Tran <hoan@os.amperecomputing.com>
18158 M:      Serge Semin <fancer.lancer@gmail.com>
18159 L:      linux-gpio@vger.kernel.org
18160 S:      Maintained
18161 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18162 F:      drivers/gpio/gpio-dwapb.c
18163
18164 SYNOPSYS DESIGNWARE APB SSI DRIVER
18165 M:      Serge Semin <fancer.lancer@gmail.com>
18166 L:      linux-spi@vger.kernel.org
18167 S:      Supported
18168 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18169 F:      drivers/spi/spi-dw*
18170
18171 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18172 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18173 S:      Maintained
18174 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18175 F:      drivers/dma/dw-axi-dmac/
18176
18177 SYNOPSYS DESIGNWARE DMAC DRIVER
18178 M:      Viresh Kumar <vireshk@kernel.org>
18179 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18180 S:      Maintained
18181 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18182 F:      drivers/dma/dw/
18183 F:      include/dt-bindings/dma/dw-dmac.h
18184 F:      include/linux/dma/dw.h
18185 F:      include/linux/platform_data/dma-dw.h
18186
18187 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18188 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18189 L:      netdev@vger.kernel.org
18190 S:      Supported
18191 F:      drivers/net/ethernet/synopsys/
18192
18193 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18194 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18195 L:      netdev@vger.kernel.org
18196 S:      Supported
18197 F:      drivers/net/pcs/pcs-xpcs.c
18198 F:      drivers/net/pcs/pcs-xpcs.h
18199 F:      include/linux/pcs/pcs-xpcs.h
18200
18201 SYNOPSYS DESIGNWARE I2C DRIVER
18202 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18203 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18204 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18205 L:      linux-i2c@vger.kernel.org
18206 S:      Maintained
18207 F:      drivers/i2c/busses/i2c-designware-*
18208
18209 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18210 M:      Jaehoon Chung <jh80.chung@samsung.com>
18211 L:      linux-mmc@vger.kernel.org
18212 S:      Maintained
18213 F:      drivers/mmc/host/dw_mmc*
18214
18215 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18216 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18217 S:      Supported
18218 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18219 F:      drivers/reset/reset-hsdk.c
18220 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18221
18222 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18223 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18224 M:      Manjunath M B <manjumb@synopsys.com>
18225 L:      linux-mmc@vger.kernel.org
18226 S:      Maintained
18227 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18228
18229 SYSTEM CONFIGURATION (SYSCON)
18230 M:      Lee Jones <lee.jones@linaro.org>
18231 M:      Arnd Bergmann <arnd@arndb.de>
18232 S:      Supported
18233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18234 F:      drivers/mfd/syscon.c
18235
18236 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18237 M:      Sudeep Holla <sudeep.holla@arm.com>
18238 R:      Cristian Marussi <cristian.marussi@arm.com>
18239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18240 S:      Maintained
18241 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18242 F:      drivers/clk/clk-sc[mp]i.c
18243 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18244 F:      drivers/firmware/arm_scmi/
18245 F:      drivers/firmware/arm_scpi.c
18246 F:      drivers/regulator/scmi-regulator.c
18247 F:      drivers/reset/reset-scmi.c
18248 F:      include/linux/sc[mp]i_protocol.h
18249 F:      include/trace/events/scmi.h
18250 F:      include/uapi/linux/virtio_scmi.h
18251
18252 SYSTEM RESET/SHUTDOWN DRIVERS
18253 M:      Sebastian Reichel <sre@kernel.org>
18254 L:      linux-pm@vger.kernel.org
18255 S:      Maintained
18256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18257 F:      Documentation/devicetree/bindings/power/reset/
18258 F:      drivers/power/reset/
18259
18260 SYSTEM TRACE MODULE CLASS
18261 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18262 S:      Maintained
18263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18264 F:      Documentation/trace/stm.rst
18265 F:      drivers/hwtracing/stm/
18266 F:      include/linux/stm.h
18267 F:      include/uapi/linux/stm.h
18268
18269 SYSTEM76 ACPI DRIVER
18270 M:      Jeremy Soller <jeremy@system76.com>
18271 M:      System76 Product Development <productdev@system76.com>
18272 L:      platform-driver-x86@vger.kernel.org
18273 S:      Maintained
18274 F:      drivers/platform/x86/system76_acpi.c
18275
18276 SYSV FILESYSTEM
18277 M:      Christoph Hellwig <hch@infradead.org>
18278 S:      Maintained
18279 F:      Documentation/filesystems/sysv-fs.rst
18280 F:      fs/sysv/
18281 F:      include/linux/sysv_fs.h
18282
18283 TASKSTATS STATISTICS INTERFACE
18284 M:      Balbir Singh <bsingharora@gmail.com>
18285 S:      Maintained
18286 F:      Documentation/accounting/taskstats*
18287 F:      include/linux/taskstats*
18288 F:      kernel/taskstats.c
18289
18290 TC subsystem
18291 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18292 M:      Cong Wang <xiyou.wangcong@gmail.com>
18293 M:      Jiri Pirko <jiri@resnulli.us>
18294 L:      netdev@vger.kernel.org
18295 S:      Maintained
18296 F:      include/net/pkt_cls.h
18297 F:      include/net/pkt_sched.h
18298 F:      include/net/tc_act/
18299 F:      include/uapi/linux/pkt_cls.h
18300 F:      include/uapi/linux/pkt_sched.h
18301 F:      include/uapi/linux/tc_act/
18302 F:      include/uapi/linux/tc_ematch/
18303 F:      net/sched/
18304
18305 TC90522 MEDIA DRIVER
18306 M:      Akihiro Tsukada <tskd08@gmail.com>
18307 L:      linux-media@vger.kernel.org
18308 S:      Odd Fixes
18309 F:      drivers/media/dvb-frontends/tc90522*
18310
18311 TCP LOW PRIORITY MODULE
18312 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18313 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18314 S:      Maintained
18315 W:      http://tcp-lp-mod.sourceforge.net/
18316 F:      net/ipv4/tcp_lp.c
18317
18318 TDA10071 MEDIA DRIVER
18319 M:      Antti Palosaari <crope@iki.fi>
18320 L:      linux-media@vger.kernel.org
18321 S:      Maintained
18322 W:      https://linuxtv.org
18323 W:      http://palosaari.fi/linux/
18324 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18325 T:      git git://linuxtv.org/anttip/media_tree.git
18326 F:      drivers/media/dvb-frontends/tda10071*
18327
18328 TDA18212 MEDIA DRIVER
18329 M:      Antti Palosaari <crope@iki.fi>
18330 L:      linux-media@vger.kernel.org
18331 S:      Maintained
18332 W:      https://linuxtv.org
18333 W:      http://palosaari.fi/linux/
18334 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18335 T:      git git://linuxtv.org/anttip/media_tree.git
18336 F:      drivers/media/tuners/tda18212*
18337
18338 TDA18218 MEDIA DRIVER
18339 M:      Antti Palosaari <crope@iki.fi>
18340 L:      linux-media@vger.kernel.org
18341 S:      Maintained
18342 W:      https://linuxtv.org
18343 W:      http://palosaari.fi/linux/
18344 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18345 T:      git git://linuxtv.org/anttip/media_tree.git
18346 F:      drivers/media/tuners/tda18218*
18347
18348 TDA18250 MEDIA DRIVER
18349 M:      Olli Salonen <olli.salonen@iki.fi>
18350 L:      linux-media@vger.kernel.org
18351 S:      Maintained
18352 W:      https://linuxtv.org
18353 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18354 T:      git git://linuxtv.org/media_tree.git
18355 F:      drivers/media/tuners/tda18250*
18356
18357 TDA18271 MEDIA DRIVER
18358 M:      Michael Krufky <mkrufky@linuxtv.org>
18359 L:      linux-media@vger.kernel.org
18360 S:      Maintained
18361 W:      https://linuxtv.org
18362 W:      http://github.com/mkrufky
18363 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18364 T:      git git://linuxtv.org/mkrufky/tuners.git
18365 F:      drivers/media/tuners/tda18271*
18366
18367 TDA1997x MEDIA DRIVER
18368 M:      Tim Harvey <tharvey@gateworks.com>
18369 L:      linux-media@vger.kernel.org
18370 S:      Maintained
18371 W:      https://linuxtv.org
18372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18373 F:      drivers/media/i2c/tda1997x.*
18374
18375 TDA827x MEDIA DRIVER
18376 M:      Michael Krufky <mkrufky@linuxtv.org>
18377 L:      linux-media@vger.kernel.org
18378 S:      Maintained
18379 W:      https://linuxtv.org
18380 W:      http://github.com/mkrufky
18381 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18382 T:      git git://linuxtv.org/mkrufky/tuners.git
18383 F:      drivers/media/tuners/tda8290.*
18384
18385 TDA8290 MEDIA DRIVER
18386 M:      Michael Krufky <mkrufky@linuxtv.org>
18387 L:      linux-media@vger.kernel.org
18388 S:      Maintained
18389 W:      https://linuxtv.org
18390 W:      http://github.com/mkrufky
18391 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18392 T:      git git://linuxtv.org/mkrufky/tuners.git
18393 F:      drivers/media/tuners/tda8290.*
18394
18395 TDA9840 MEDIA DRIVER
18396 M:      Hans Verkuil <hverkuil@xs4all.nl>
18397 L:      linux-media@vger.kernel.org
18398 S:      Maintained
18399 W:      https://linuxtv.org
18400 T:      git git://linuxtv.org/media_tree.git
18401 F:      drivers/media/i2c/tda9840*
18402
18403 TEA5761 TUNER DRIVER
18404 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18405 L:      linux-media@vger.kernel.org
18406 S:      Odd fixes
18407 W:      https://linuxtv.org
18408 T:      git git://linuxtv.org/media_tree.git
18409 F:      drivers/media/tuners/tea5761.*
18410
18411 TEA5767 TUNER DRIVER
18412 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18413 L:      linux-media@vger.kernel.org
18414 S:      Maintained
18415 W:      https://linuxtv.org
18416 T:      git git://linuxtv.org/media_tree.git
18417 F:      drivers/media/tuners/tea5767.*
18418
18419 TEA6415C MEDIA DRIVER
18420 M:      Hans Verkuil <hverkuil@xs4all.nl>
18421 L:      linux-media@vger.kernel.org
18422 S:      Maintained
18423 W:      https://linuxtv.org
18424 T:      git git://linuxtv.org/media_tree.git
18425 F:      drivers/media/i2c/tea6415c*
18426
18427 TEA6420 MEDIA DRIVER
18428 M:      Hans Verkuil <hverkuil@xs4all.nl>
18429 L:      linux-media@vger.kernel.org
18430 S:      Maintained
18431 W:      https://linuxtv.org
18432 T:      git git://linuxtv.org/media_tree.git
18433 F:      drivers/media/i2c/tea6420*
18434
18435 TEAM DRIVER
18436 M:      Jiri Pirko <jiri@resnulli.us>
18437 L:      netdev@vger.kernel.org
18438 S:      Supported
18439 F:      drivers/net/team/
18440 F:      include/linux/if_team.h
18441 F:      include/uapi/linux/if_team.h
18442
18443 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18444 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18445 S:      Maintained
18446 F:      arch/x86/platform/ts5500/
18447
18448 TECHNOTREND USB IR RECEIVER
18449 M:      Sean Young <sean@mess.org>
18450 L:      linux-media@vger.kernel.org
18451 S:      Maintained
18452 F:      drivers/media/rc/ttusbir.c
18453
18454 TECHWELL TW9910 VIDEO DECODER
18455 L:      linux-media@vger.kernel.org
18456 S:      Orphan
18457 F:      drivers/media/i2c/tw9910.c
18458 F:      include/media/i2c/tw9910.h
18459
18460 TEE SUBSYSTEM
18461 M:      Jens Wiklander <jens.wiklander@linaro.org>
18462 R:      Sumit Garg <sumit.garg@linaro.org>
18463 L:      op-tee@lists.trustedfirmware.org
18464 S:      Maintained
18465 F:      Documentation/staging/tee.rst
18466 F:      drivers/tee/
18467 F:      include/linux/tee_drv.h
18468 F:      include/uapi/linux/tee.h
18469
18470 TEGRA ARCHITECTURE SUPPORT
18471 M:      Thierry Reding <thierry.reding@gmail.com>
18472 M:      Jonathan Hunter <jonathanh@nvidia.com>
18473 L:      linux-tegra@vger.kernel.org
18474 S:      Supported
18475 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18477 N:      [^a-z]tegra
18478
18479 TEGRA CLOCK DRIVER
18480 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18481 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18482 S:      Supported
18483 F:      drivers/clk/tegra/
18484
18485 TEGRA DMA DRIVERS
18486 M:      Laxman Dewangan <ldewangan@nvidia.com>
18487 M:      Jon Hunter <jonathanh@nvidia.com>
18488 S:      Supported
18489 F:      drivers/dma/tegra*
18490
18491 TEGRA I2C DRIVER
18492 M:      Laxman Dewangan <ldewangan@nvidia.com>
18493 R:      Dmitry Osipenko <digetx@gmail.com>
18494 S:      Supported
18495 F:      drivers/i2c/busses/i2c-tegra.c
18496
18497 TEGRA IOMMU DRIVERS
18498 M:      Thierry Reding <thierry.reding@gmail.com>
18499 R:      Krishna Reddy <vdumpa@nvidia.com>
18500 L:      linux-tegra@vger.kernel.org
18501 S:      Supported
18502 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18503 F:      drivers/iommu/tegra*
18504
18505 TEGRA KBC DRIVER
18506 M:      Laxman Dewangan <ldewangan@nvidia.com>
18507 S:      Supported
18508 F:      drivers/input/keyboard/tegra-kbc.c
18509
18510 TEGRA NAND DRIVER
18511 M:      Stefan Agner <stefan@agner.ch>
18512 M:      Lucas Stach <dev@lynxeye.de>
18513 S:      Maintained
18514 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18515 F:      drivers/mtd/nand/raw/tegra_nand.c
18516
18517 TEGRA PWM DRIVER
18518 M:      Thierry Reding <thierry.reding@gmail.com>
18519 S:      Supported
18520 F:      drivers/pwm/pwm-tegra.c
18521
18522 TEGRA SERIAL DRIVER
18523 M:      Laxman Dewangan <ldewangan@nvidia.com>
18524 S:      Supported
18525 F:      drivers/tty/serial/serial-tegra.c
18526
18527 TEGRA SPI DRIVER
18528 M:      Laxman Dewangan <ldewangan@nvidia.com>
18529 S:      Supported
18530 F:      drivers/spi/spi-tegra*
18531
18532 TEGRA QUAD SPI DRIVER
18533 M:      Thierry Reding <thierry.reding@gmail.com>
18534 M:      Jonathan Hunter <jonathanh@nvidia.com>
18535 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18536 L:      linux-tegra@vger.kernel.org
18537 S:      Maintained
18538 F:      drivers/spi/spi-tegra210-quad.c
18539
18540 TEGRA VIDEO DRIVER
18541 M:      Thierry Reding <thierry.reding@gmail.com>
18542 M:      Jonathan Hunter <jonathanh@nvidia.com>
18543 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18544 L:      linux-media@vger.kernel.org
18545 L:      linux-tegra@vger.kernel.org
18546 S:      Maintained
18547 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18548 F:      drivers/staging/media/tegra-video/
18549
18550 TEGRA XUSB PADCTL DRIVER
18551 M:      JC Kuo <jckuo@nvidia.com>
18552 S:      Supported
18553 F:      drivers/phy/tegra/xusb*
18554
18555 TEHUTI ETHERNET DRIVER
18556 M:      Andy Gospodarek <andy@greyhouse.net>
18557 L:      netdev@vger.kernel.org
18558 S:      Supported
18559 F:      drivers/net/ethernet/tehuti/*
18560
18561 TELECOM CLOCK DRIVER FOR MCPL0010
18562 M:      Mark Gross <mark.gross@intel.com>
18563 S:      Supported
18564 F:      drivers/char/tlclk.c
18565
18566 TEMPO SEMICONDUCTOR DRIVERS
18567 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18568 S:      Maintained
18569 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18570 F:      sound/soc/codecs/tscs*.c
18571 F:      sound/soc/codecs/tscs*.h
18572
18573 TENSILICA XTENSA PORT (xtensa)
18574 M:      Chris Zankel <chris@zankel.net>
18575 M:      Max Filippov <jcmvbkbc@gmail.com>
18576 L:      linux-xtensa@linux-xtensa.org
18577 S:      Maintained
18578 T:      git git://github.com/czankel/xtensa-linux.git
18579 F:      arch/xtensa/
18580 F:      drivers/irqchip/irq-xtensa-*
18581
18582 TEXAS INSTRUMENTS ASoC DRIVERS
18583 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18584 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18585 S:      Maintained
18586 F:      sound/soc/ti/
18587
18588 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18589 M:      Ricardo Ribalda <ribalda@kernel.org>
18590 L:      linux-iio@vger.kernel.org
18591 S:      Supported
18592 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18593 F:      drivers/iio/dac/ti-dac7612.c
18594
18595 TEXAS INSTRUMENTS DMA DRIVERS
18596 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18597 L:      dmaengine@vger.kernel.org
18598 S:      Maintained
18599 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18600 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18601 F:      Documentation/devicetree/bindings/dma/ti/
18602 F:      drivers/dma/ti/
18603 X:      drivers/dma/ti/cppi41.c
18604 F:      include/linux/dma/k3-udma-glue.h
18605 F:      include/linux/dma/ti-cppi5.h
18606 F:      include/linux/dma/k3-psil.h
18607
18608 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18609 M:      Nishanth Menon <nm@ti.com>
18610 M:      Tero Kristo <kristo@kernel.org>
18611 M:      Santosh Shilimkar <ssantosh@kernel.org>
18612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18613 S:      Maintained
18614 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18615 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18616 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18617 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18618 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18619 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18620 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18621 F:      drivers/clk/keystone/sci-clk.c
18622 F:      drivers/firmware/ti_sci*
18623 F:      drivers/irqchip/irq-ti-sci-inta.c
18624 F:      drivers/irqchip/irq-ti-sci-intr.c
18625 F:      drivers/reset/reset-ti-sci.c
18626 F:      drivers/soc/ti/ti_sci_inta_msi.c
18627 F:      drivers/soc/ti/ti_sci_pm_domains.c
18628 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18629 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18630 F:      include/linux/soc/ti/ti_sci_protocol.h
18631
18632 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18633 M:      Robert Marko <robert.marko@sartura.hr>
18634 M:      Luka Perkov <luka.perkov@sartura.hr>
18635 L:      linux-hwmon@vger.kernel.org
18636 S:      Maintained
18637 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18638 F:      Documentation/hwmon/tps23861.rst
18639 F:      drivers/hwmon/tps23861.c
18640
18641 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18642 M:      Puranjay Mohan <puranjay12@gmail.com>
18643 L:      linux-iio@vger.kernel.org
18644 S:      Supported
18645 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18646 F:      drivers/iio/temperature/tmp117.c
18647
18648 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18649 M:      Hans Verkuil <hverkuil@xs4all.nl>
18650 L:      linux-media@vger.kernel.org
18651 S:      Maintained
18652 W:      https://linuxtv.org
18653 T:      git git://linuxtv.org/media_tree.git
18654 F:      drivers/media/radio/radio-raremono.c
18655
18656 THERMAL
18657 M:      Rafael J. Wysocki <rafael@kernel.org>
18658 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18659 R:      Amit Kucheria <amitk@kernel.org>
18660 R:      Zhang Rui <rui.zhang@intel.com>
18661 L:      linux-pm@vger.kernel.org
18662 S:      Supported
18663 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18665 F:      Documentation/devicetree/bindings/thermal/
18666 F:      drivers/thermal/
18667 F:      include/linux/cpu_cooling.h
18668 F:      include/linux/thermal.h
18669 F:      include/uapi/linux/thermal.h
18670 F:      tools/thermal/
18671
18672 THERMAL DRIVER FOR AMLOGIC SOCS
18673 M:      Guillaume La Roque <glaroque@baylibre.com>
18674 L:      linux-pm@vger.kernel.org
18675 L:      linux-amlogic@lists.infradead.org
18676 S:      Supported
18677 W:      http://linux-meson.com/
18678 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18679 F:      drivers/thermal/amlogic_thermal.c
18680
18681 THERMAL/CPU_COOLING
18682 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18683 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18684 M:      Viresh Kumar <viresh.kumar@linaro.org>
18685 R:      Lukasz Luba <lukasz.luba@arm.com>
18686 L:      linux-pm@vger.kernel.org
18687 S:      Supported
18688 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18689 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18690 F:      drivers/thermal/cpufreq_cooling.c
18691 F:      drivers/thermal/cpuidle_cooling.c
18692 F:      include/linux/cpu_cooling.h
18693
18694 THERMAL/POWER_ALLOCATOR
18695 M:      Lukasz Luba <lukasz.luba@arm.com>
18696 L:      linux-pm@vger.kernel.org
18697 S:      Maintained
18698 F:      Documentation/driver-api/thermal/power_allocator.rst
18699 F:      drivers/thermal/gov_power_allocator.c
18700 F:      include/trace/events/thermal_power_allocator.h
18701
18702 THINKPAD ACPI EXTRAS DRIVER
18703 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18704 L:      ibm-acpi-devel@lists.sourceforge.net
18705 L:      platform-driver-x86@vger.kernel.org
18706 S:      Maintained
18707 W:      http://ibm-acpi.sourceforge.net
18708 W:      http://thinkwiki.org/wiki/Ibm-acpi
18709 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18710 F:      drivers/platform/x86/thinkpad_acpi.c
18711
18712 THINKPAD LMI DRIVER
18713 M:      Mark Pearson <markpearson@lenovo.com>
18714 L:      platform-driver-x86@vger.kernel.org
18715 S:      Maintained
18716 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18717 F:      drivers/platform/x86/think-lmi.?
18718
18719 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18720 M:      Isaac Hazan <isaac.hazan@intel.com>
18721 L:      linux-usb@vger.kernel.org
18722 S:      Maintained
18723 F:      drivers/thunderbolt/dma_test.c
18724
18725 THUNDERBOLT DRIVER
18726 M:      Andreas Noever <andreas.noever@gmail.com>
18727 M:      Michael Jamet <michael.jamet@intel.com>
18728 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18729 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18730 L:      linux-usb@vger.kernel.org
18731 S:      Maintained
18732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18733 F:      Documentation/admin-guide/thunderbolt.rst
18734 F:      drivers/thunderbolt/
18735 F:      include/linux/thunderbolt.h
18736
18737 THUNDERBOLT NETWORK DRIVER
18738 M:      Michael Jamet <michael.jamet@intel.com>
18739 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18740 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18741 L:      netdev@vger.kernel.org
18742 S:      Maintained
18743 F:      drivers/net/thunderbolt.c
18744
18745 THUNDERX GPIO DRIVER
18746 M:      Robert Richter <rric@kernel.org>
18747 S:      Odd Fixes
18748 F:      drivers/gpio/gpio-thunderx.c
18749
18750 TI ADS131E0X ADC SERIES DRIVER
18751 M:      Tomislav Denis <tomislav.denis@avl.com>
18752 L:      linux-iio@vger.kernel.org
18753 S:      Maintained
18754 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18755 F:      drivers/iio/adc/ti-ads131e08.c
18756
18757 TI AM437X VPFE DRIVER
18758 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18759 L:      linux-media@vger.kernel.org
18760 S:      Maintained
18761 W:      https://linuxtv.org
18762 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18763 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18764 F:      drivers/media/platform/am437x/
18765
18766 TI BANDGAP AND THERMAL DRIVER
18767 M:      Eduardo Valentin <edubezval@gmail.com>
18768 M:      Keerthy <j-keerthy@ti.com>
18769 L:      linux-pm@vger.kernel.org
18770 L:      linux-omap@vger.kernel.org
18771 S:      Maintained
18772 F:      drivers/thermal/ti-soc-thermal/
18773
18774 TI BQ27XXX POWER SUPPLY DRIVER
18775 F:      drivers/power/supply/bq27xxx_battery.c
18776 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18777 F:      include/linux/power/bq27xxx_battery.h
18778
18779 TI CDCE706 CLOCK DRIVER
18780 M:      Max Filippov <jcmvbkbc@gmail.com>
18781 S:      Maintained
18782 F:      drivers/clk/clk-cdce706.c
18783
18784 TI CLOCK DRIVER
18785 M:      Tero Kristo <kristo@kernel.org>
18786 L:      linux-omap@vger.kernel.org
18787 S:      Odd Fixes
18788 F:      drivers/clk/ti/
18789 F:      include/linux/clk/ti.h
18790
18791 TI DAVINCI MACHINE SUPPORT
18792 M:      Sekhar Nori <nsekhar@ti.com>
18793 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18794 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18795 S:      Supported
18796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18797 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18798 F:      arch/arm/boot/dts/da850*
18799 F:      arch/arm/mach-davinci/
18800 F:      drivers/i2c/busses/i2c-davinci.c
18801
18802 TI DAVINCI SERIES CLOCK DRIVER
18803 M:      David Lechner <david@lechnology.com>
18804 R:      Sekhar Nori <nsekhar@ti.com>
18805 S:      Maintained
18806 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18807 F:      drivers/clk/davinci/
18808
18809 TI DAVINCI SERIES GPIO DRIVER
18810 M:      Keerthy <j-keerthy@ti.com>
18811 L:      linux-gpio@vger.kernel.org
18812 S:      Maintained
18813 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18814 F:      drivers/gpio/gpio-davinci.c
18815
18816 TI DAVINCI SERIES MEDIA DRIVER
18817 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18818 L:      linux-media@vger.kernel.org
18819 S:      Maintained
18820 W:      https://linuxtv.org
18821 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18822 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18823 F:      drivers/media/platform/davinci/
18824 F:      include/media/davinci/
18825
18826 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18827 R:      David Lechner <david@lechnology.com>
18828 L:      linux-iio@vger.kernel.org
18829 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18830 F:      drivers/counter/ti-eqep.c
18831
18832 TI ETHERNET SWITCH DRIVER (CPSW)
18833 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18834 L:      linux-omap@vger.kernel.org
18835 L:      netdev@vger.kernel.org
18836 S:      Maintained
18837 F:      drivers/net/ethernet/ti/cpsw*
18838 F:      drivers/net/ethernet/ti/davinci*
18839
18840 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18841 M:      Alex Dubov <oakad@yahoo.com>
18842 S:      Maintained
18843 W:      http://tifmxx.berlios.de/
18844 F:      drivers/memstick/host/tifm_ms.c
18845 F:      drivers/misc/tifm*
18846 F:      drivers/mmc/host/tifm_sd.c
18847 F:      include/linux/tifm.h
18848
18849 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18850 M:      Santosh Shilimkar <ssantosh@kernel.org>
18851 L:      linux-kernel@vger.kernel.org
18852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18853 S:      Maintained
18854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18855 F:      drivers/soc/ti/*
18856
18857 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18858 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18859 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18860 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18861 S:      Maintained
18862 F:      sound/soc/codecs/isabelle*
18863 F:      sound/soc/codecs/lm49453*
18864
18865 TI PCM3060 ASoC CODEC DRIVER
18866 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18867 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18868 S:      Maintained
18869 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18870 F:      sound/soc/codecs/pcm3060*
18871
18872 TI TAS571X FAMILY ASoC CODEC DRIVER
18873 M:      Kevin Cernekee <cernekee@chromium.org>
18874 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18875 S:      Odd Fixes
18876 F:      sound/soc/codecs/tas571x*
18877
18878 TI TRF7970A NFC DRIVER
18879 M:      Mark Greer <mgreer@animalcreek.com>
18880 L:      linux-wireless@vger.kernel.org
18881 L:      linux-nfc@lists.01.org (subscribers-only)
18882 S:      Supported
18883 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18884 F:      drivers/nfc/trf7970a.c
18885
18886 TI TSC2046 ADC DRIVER
18887 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18888 R:      kernel@pengutronix.de
18889 L:      linux-iio@vger.kernel.org
18890 S:      Maintained
18891 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18892 F:      drivers/iio/adc/ti-tsc2046.c
18893
18894 TI TWL4030 SERIES SOC CODEC DRIVER
18895 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18896 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18897 S:      Maintained
18898 F:      sound/soc/codecs/twl4030*
18899
18900 TI VPE/CAL DRIVERS
18901 M:      Benoit Parrot <bparrot@ti.com>
18902 L:      linux-media@vger.kernel.org
18903 S:      Maintained
18904 W:      http://linuxtv.org/
18905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18906 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18907 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18908 F:      drivers/media/platform/ti-vpe/
18909
18910 TI WILINK WIRELESS DRIVERS
18911 L:      linux-wireless@vger.kernel.org
18912 S:      Orphan
18913 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18914 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18916 F:      drivers/net/wireless/ti/
18917 F:      include/linux/wl12xx.h
18918
18919 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18920 M:      John Stultz <john.stultz@linaro.org>
18921 M:      Thomas Gleixner <tglx@linutronix.de>
18922 R:      Stephen Boyd <sboyd@kernel.org>
18923 L:      linux-kernel@vger.kernel.org
18924 S:      Supported
18925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18926 F:      include/linux/clocksource.h
18927 F:      include/linux/time.h
18928 F:      include/linux/timex.h
18929 F:      include/uapi/linux/time.h
18930 F:      include/uapi/linux/timex.h
18931 F:      kernel/time/alarmtimer.c
18932 F:      kernel/time/clocksource.c
18933 F:      kernel/time/ntp.c
18934 F:      kernel/time/time*.c
18935 F:      tools/testing/selftests/timers/
18936
18937 TIPC NETWORK LAYER
18938 M:      Jon Maloy <jmaloy@redhat.com>
18939 M:      Ying Xue <ying.xue@windriver.com>
18940 L:      netdev@vger.kernel.org (core kernel code)
18941 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18942 S:      Maintained
18943 W:      http://tipc.sourceforge.net/
18944 F:      include/uapi/linux/tipc*.h
18945 F:      net/tipc/
18946
18947 TLAN NETWORK DRIVER
18948 M:      Samuel Chessman <chessman@tux.org>
18949 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18950 S:      Maintained
18951 W:      http://sourceforge.net/projects/tlan/
18952 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18953 F:      drivers/net/ethernet/ti/tlan.*
18954
18955 TM6000 VIDEO4LINUX DRIVER
18956 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18957 L:      linux-media@vger.kernel.org
18958 S:      Odd fixes
18959 W:      https://linuxtv.org
18960 T:      git git://linuxtv.org/media_tree.git
18961 F:      Documentation/admin-guide/media/tm6000*
18962 F:      drivers/media/usb/tm6000/
18963
18964 TMIO/SDHI MMC DRIVER
18965 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18966 L:      linux-mmc@vger.kernel.org
18967 S:      Supported
18968 F:      drivers/mmc/host/renesas_sdhi*
18969 F:      drivers/mmc/host/tmio_mmc*
18970 F:      include/linux/mfd/tmio.h
18971
18972 TMP401 HARDWARE MONITOR DRIVER
18973 M:      Guenter Roeck <linux@roeck-us.net>
18974 L:      linux-hwmon@vger.kernel.org
18975 S:      Maintained
18976 F:      Documentation/hwmon/tmp401.rst
18977 F:      drivers/hwmon/tmp401.c
18978
18979 TMP513 HARDWARE MONITOR DRIVER
18980 M:      Eric Tremblay <etremblay@distech-controls.com>
18981 L:      linux-hwmon@vger.kernel.org
18982 S:      Maintained
18983 F:      Documentation/hwmon/tmp513.rst
18984 F:      drivers/hwmon/tmp513.c
18985
18986 TMPFS (SHMEM FILESYSTEM)
18987 M:      Hugh Dickins <hughd@google.com>
18988 L:      linux-mm@kvack.org
18989 S:      Maintained
18990 F:      include/linux/shmem_fs.h
18991 F:      mm/shmem.c
18992
18993 TOMOYO SECURITY MODULE
18994 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18995 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18996 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18997 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18998 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18999 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19000 S:      Maintained
19001 W:      https://tomoyo.osdn.jp/
19002 F:      security/tomoyo/
19003
19004 TOPSTAR LAPTOP EXTRAS DRIVER
19005 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19006 L:      platform-driver-x86@vger.kernel.org
19007 S:      Maintained
19008 F:      drivers/platform/x86/topstar-laptop.c
19009
19010 TORTURE-TEST MODULES
19011 M:      Davidlohr Bueso <dave@stgolabs.net>
19012 M:      "Paul E. McKenney" <paulmck@kernel.org>
19013 M:      Josh Triplett <josh@joshtriplett.org>
19014 L:      linux-kernel@vger.kernel.org
19015 S:      Supported
19016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19017 F:      Documentation/RCU/torture.rst
19018 F:      kernel/locking/locktorture.c
19019 F:      kernel/rcu/rcuscale.c
19020 F:      kernel/rcu/rcutorture.c
19021 F:      kernel/rcu/refscale.c
19022 F:      kernel/torture.c
19023
19024 TOSHIBA ACPI EXTRAS DRIVER
19025 M:      Azael Avalos <coproscefalo@gmail.com>
19026 L:      platform-driver-x86@vger.kernel.org
19027 S:      Maintained
19028 F:      drivers/platform/x86/toshiba_acpi.c
19029
19030 TOSHIBA BLUETOOTH DRIVER
19031 M:      Azael Avalos <coproscefalo@gmail.com>
19032 L:      platform-driver-x86@vger.kernel.org
19033 S:      Maintained
19034 F:      drivers/platform/x86/toshiba_bluetooth.c
19035
19036 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19037 M:      Azael Avalos <coproscefalo@gmail.com>
19038 L:      platform-driver-x86@vger.kernel.org
19039 S:      Maintained
19040 F:      drivers/platform/x86/toshiba_haps.c
19041
19042 TOSHIBA SMM DRIVER
19043 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19044 S:      Maintained
19045 W:      http://www.buzzard.org.uk/toshiba/
19046 F:      drivers/char/toshiba.c
19047 F:      include/linux/toshiba.h
19048 F:      include/uapi/linux/toshiba.h
19049
19050 TOSHIBA TC358743 DRIVER
19051 M:      Mats Randgaard <matrandg@cisco.com>
19052 L:      linux-media@vger.kernel.org
19053 S:      Maintained
19054 F:      drivers/media/i2c/tc358743*
19055 F:      include/media/i2c/tc358743.h
19056
19057 TOSHIBA WMI HOTKEYS DRIVER
19058 M:      Azael Avalos <coproscefalo@gmail.com>
19059 L:      platform-driver-x86@vger.kernel.org
19060 S:      Maintained
19061 F:      drivers/platform/x86/toshiba-wmi.c
19062
19063 TPM DEVICE DRIVER
19064 M:      Peter Huewe <peterhuewe@gmx.de>
19065 M:      Jarkko Sakkinen <jarkko@kernel.org>
19066 R:      Jason Gunthorpe <jgg@ziepe.ca>
19067 L:      linux-integrity@vger.kernel.org
19068 S:      Maintained
19069 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19070 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19072 F:      drivers/char/tpm/
19073
19074 TRACING
19075 M:      Steven Rostedt <rostedt@goodmis.org>
19076 M:      Ingo Molnar <mingo@redhat.com>
19077 S:      Maintained
19078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
19079 F:      Documentation/trace/ftrace.rst
19080 F:      arch/*/*/*/ftrace.h
19081 F:      arch/*/kernel/ftrace.c
19082 F:      fs/tracefs/
19083 F:      include/*/ftrace.h
19084 F:      include/linux/trace*.h
19085 F:      include/trace/
19086 F:      kernel/trace/
19087 F:      tools/testing/selftests/ftrace/
19088
19089 TRACING MMIO ACCESSES (MMIOTRACE)
19090 M:      Steven Rostedt <rostedt@goodmis.org>
19091 M:      Ingo Molnar <mingo@kernel.org>
19092 R:      Karol Herbst <karolherbst@gmail.com>
19093 R:      Pekka Paalanen <ppaalanen@gmail.com>
19094 L:      linux-kernel@vger.kernel.org
19095 L:      nouveau@lists.freedesktop.org
19096 S:      Maintained
19097 F:      arch/x86/mm/kmmio.c
19098 F:      arch/x86/mm/mmio-mod.c
19099 F:      arch/x86/mm/testmmiotrace.c
19100 F:      include/linux/mmiotrace.h
19101 F:      kernel/trace/trace_mmiotrace.c
19102
19103 TRACING OS NOISE / LATENCY TRACERS
19104 M:      Steven Rostedt <rostedt@goodmis.org>
19105 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19106 S:      Maintained
19107 F:      kernel/trace/trace_osnoise.c
19108 F:      include/trace/events/osnoise.h
19109 F:      kernel/trace/trace_hwlat.c
19110 F:      kernel/trace/trace_irqsoff.c
19111 F:      kernel/trace/trace_sched_wakeup.c
19112 F:      Documentation/trace/osnoise-tracer.rst
19113 F:      Documentation/trace/timerlat-tracer.rst
19114 F:      Documentation/trace/hwlat_detector.rst
19115 F:      arch/*/kernel/trace.c
19116
19117 TRADITIONAL CHINESE DOCUMENTATION
19118 M:      Hu Haowen <src.res@email.cn>
19119 L:      linux-doc-tw-discuss@lists.sourceforge.net
19120 S:      Maintained
19121 W:      https://github.com/srcres258/linux-doc
19122 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19123 F:      Documentation/translations/zh_TW/
19124
19125 TRIVIAL PATCHES
19126 M:      Jiri Kosina <trivial@kernel.org>
19127 S:      Maintained
19128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19129 K:      ^Subject:.*(?i)trivial
19130
19131 TTY LAYER
19132 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19133 M:      Jiri Slaby <jirislaby@kernel.org>
19134 S:      Supported
19135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19136 F:      Documentation/driver-api/serial/
19137 F:      drivers/tty/
19138 F:      drivers/tty/serial/serial_core.c
19139 F:      include/linux/selection.h
19140 F:      include/linux/serial.h
19141 F:      include/linux/serial_core.h
19142 F:      include/linux/sysrq.h
19143 F:      include/linux/tty*.h
19144 F:      include/linux/vt.h
19145 F:      include/linux/vt_*.h
19146 F:      include/uapi/linux/serial.h
19147 F:      include/uapi/linux/serial_core.h
19148 F:      include/uapi/linux/tty.h
19149
19150 TUA9001 MEDIA DRIVER
19151 M:      Antti Palosaari <crope@iki.fi>
19152 L:      linux-media@vger.kernel.org
19153 S:      Maintained
19154 W:      https://linuxtv.org
19155 W:      http://palosaari.fi/linux/
19156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19157 T:      git git://linuxtv.org/anttip/media_tree.git
19158 F:      drivers/media/tuners/tua9001*
19159
19160 TULIP NETWORK DRIVERS
19161 L:      netdev@vger.kernel.org
19162 L:      linux-parisc@vger.kernel.org
19163 S:      Orphan
19164 F:      drivers/net/ethernet/dec/tulip/
19165
19166 TUN/TAP driver
19167 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19168 S:      Maintained
19169 W:      http://vtun.sourceforge.net/tun
19170 F:      Documentation/networking/tuntap.rst
19171 F:      arch/um/os-Linux/drivers/
19172
19173 TURBOCHANNEL SUBSYSTEM
19174 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19175 M:      Ralf Baechle <ralf@linux-mips.org>
19176 L:      linux-mips@vger.kernel.org
19177 S:      Maintained
19178 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19179 F:      drivers/tc/
19180 F:      include/linux/tc.h
19181
19182 TURBOSTAT UTILITY
19183 M:      "Len Brown" <lenb@kernel.org>
19184 L:      linux-pm@vger.kernel.org
19185 S:      Supported
19186 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19187 B:      https://bugzilla.kernel.org
19188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19189 F:      tools/power/x86/turbostat/
19190
19191 TW5864 VIDEO4LINUX DRIVER
19192 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19193 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19194 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19195 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19196 L:      linux-media@vger.kernel.org
19197 S:      Supported
19198 F:      drivers/media/pci/tw5864/
19199
19200 TW68 VIDEO4LINUX DRIVER
19201 M:      Hans Verkuil <hverkuil@xs4all.nl>
19202 L:      linux-media@vger.kernel.org
19203 S:      Odd Fixes
19204 W:      https://linuxtv.org
19205 T:      git git://linuxtv.org/media_tree.git
19206 F:      drivers/media/pci/tw68/
19207
19208 TW686X VIDEO4LINUX DRIVER
19209 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19210 L:      linux-media@vger.kernel.org
19211 S:      Maintained
19212 W:      http://linuxtv.org
19213 T:      git git://linuxtv.org/media_tree.git
19214 F:      drivers/media/pci/tw686x/
19215
19216 UACCE ACCELERATOR FRAMEWORK
19217 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19218 M:      Zhou Wang <wangzhou1@hisilicon.com>
19219 L:      linux-accelerators@lists.ozlabs.org
19220 L:      linux-kernel@vger.kernel.org
19221 S:      Maintained
19222 F:      Documentation/ABI/testing/sysfs-driver-uacce
19223 F:      Documentation/misc-devices/uacce.rst
19224 F:      drivers/misc/uacce/
19225 F:      include/linux/uacce.h
19226 F:      include/uapi/misc/uacce/
19227
19228 UBI FILE SYSTEM (UBIFS)
19229 M:      Richard Weinberger <richard@nod.at>
19230 L:      linux-mtd@lists.infradead.org
19231 S:      Supported
19232 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19235 F:      Documentation/filesystems/ubifs-authentication.rst
19236 F:      Documentation/filesystems/ubifs.rst
19237 F:      fs/ubifs/
19238
19239 UCLINUX (M68KNOMMU AND COLDFIRE)
19240 M:      Greg Ungerer <gerg@linux-m68k.org>
19241 L:      linux-m68k@lists.linux-m68k.org
19242 L:      uclinux-dev@uclinux.org  (subscribers-only)
19243 S:      Maintained
19244 W:      http://www.linux-m68k.org/
19245 W:      http://www.uclinux.org/
19246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19247 F:      arch/m68k/*/*_no.*
19248 F:      arch/m68k/68*/
19249 F:      arch/m68k/coldfire/
19250 F:      arch/m68k/include/asm/*_no.*
19251
19252 UDF FILESYSTEM
19253 M:      Jan Kara <jack@suse.com>
19254 S:      Maintained
19255 F:      Documentation/filesystems/udf.rst
19256 F:      fs/udf/
19257
19258 UDRAW TABLET
19259 M:      Bastien Nocera <hadess@hadess.net>
19260 L:      linux-input@vger.kernel.org
19261 S:      Maintained
19262 F:      drivers/hid/hid-udraw-ps3.c
19263
19264 UFS FILESYSTEM
19265 M:      Evgeniy Dushistov <dushistov@mail.ru>
19266 S:      Maintained
19267 F:      Documentation/admin-guide/ufs.rst
19268 F:      fs/ufs/
19269
19270 UHID USERSPACE HID IO DRIVER
19271 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19272 L:      linux-input@vger.kernel.org
19273 S:      Maintained
19274 F:      drivers/hid/uhid.c
19275 F:      include/uapi/linux/uhid.h
19276
19277 ULPI BUS
19278 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19279 L:      linux-usb@vger.kernel.org
19280 S:      Maintained
19281 F:      drivers/usb/common/ulpi.c
19282 F:      include/linux/ulpi/
19283
19284 UNICODE SUBSYSTEM
19285 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19286 L:      linux-fsdevel@vger.kernel.org
19287 S:      Supported
19288 F:      fs/unicode/
19289
19290 UNIFDEF
19291 M:      Tony Finch <dot@dotat.at>
19292 S:      Maintained
19293 W:      http://dotat.at/prog/unifdef
19294 F:      scripts/unifdef.c
19295
19296 UNIFORM CDROM DRIVER
19297 M:      Phillip Potter <phil@philpotter.co.uk>
19298 S:      Maintained
19299 F:      Documentation/cdrom/
19300 F:      drivers/cdrom/cdrom.c
19301 F:      include/linux/cdrom.h
19302 F:      include/uapi/linux/cdrom.h
19303
19304 UNISYS S-PAR DRIVERS
19305 M:      David Kershner <david.kershner@unisys.com>
19306 L:      sparmaintainer@unisys.com (Unisys internal)
19307 S:      Supported
19308 F:      drivers/staging/unisys/
19309 F:      drivers/visorbus/
19310 F:      include/linux/visorbus.h
19311
19312 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19313 R:      Alim Akhtar <alim.akhtar@samsung.com>
19314 R:      Avri Altman <avri.altman@wdc.com>
19315 L:      linux-scsi@vger.kernel.org
19316 S:      Supported
19317 F:      Documentation/scsi/ufs.rst
19318 F:      drivers/scsi/ufs/
19319
19320 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19321 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19322 L:      linux-scsi@vger.kernel.org
19323 S:      Supported
19324 F:      drivers/scsi/ufs/*dwc*
19325
19326 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19327 M:      Stanley Chu <stanley.chu@mediatek.com>
19328 L:      linux-scsi@vger.kernel.org
19329 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19330 S:      Maintained
19331 F:      drivers/scsi/ufs/ufs-mediatek*
19332
19333 UNSORTED BLOCK IMAGES (UBI)
19334 M:      Richard Weinberger <richard@nod.at>
19335 L:      linux-mtd@lists.infradead.org
19336 S:      Supported
19337 W:      http://www.linux-mtd.infradead.org/
19338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19340 F:      drivers/mtd/ubi/
19341 F:      include/linux/mtd/ubi.h
19342 F:      include/uapi/mtd/ubi-user.h
19343
19344 USB "USBNET" DRIVER FRAMEWORK
19345 M:      Oliver Neukum <oneukum@suse.com>
19346 L:      netdev@vger.kernel.org
19347 S:      Maintained
19348 W:      http://www.linux-usb.org/usbnet
19349 F:      drivers/net/usb/usbnet.c
19350 F:      include/linux/usb/usbnet.h
19351
19352 USB ACM DRIVER
19353 M:      Oliver Neukum <oneukum@suse.com>
19354 L:      linux-usb@vger.kernel.org
19355 S:      Maintained
19356 F:      Documentation/usb/acm.rst
19357 F:      drivers/usb/class/cdc-acm.*
19358
19359 USB APPLE MFI FASTCHARGE DRIVER
19360 M:      Bastien Nocera <hadess@hadess.net>
19361 L:      linux-usb@vger.kernel.org
19362 S:      Maintained
19363 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19364
19365 USB AR5523 WIRELESS DRIVER
19366 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19367 L:      linux-wireless@vger.kernel.org
19368 S:      Maintained
19369 F:      drivers/net/wireless/ath/ar5523/
19370
19371 USB ATTACHED SCSI
19372 M:      Oliver Neukum <oneukum@suse.com>
19373 L:      linux-usb@vger.kernel.org
19374 L:      linux-scsi@vger.kernel.org
19375 S:      Maintained
19376 F:      drivers/usb/storage/uas.c
19377
19378 USB CDC ETHERNET DRIVER
19379 M:      Oliver Neukum <oliver@neukum.org>
19380 L:      linux-usb@vger.kernel.org
19381 S:      Maintained
19382 F:      drivers/net/usb/cdc_*.c
19383 F:      include/uapi/linux/usb/cdc.h
19384
19385 USB CHAOSKEY DRIVER
19386 M:      Keith Packard <keithp@keithp.com>
19387 L:      linux-usb@vger.kernel.org
19388 S:      Maintained
19389 F:      drivers/usb/misc/chaoskey.c
19390
19391 USB CYPRESS C67X00 DRIVER
19392 L:      linux-usb@vger.kernel.org
19393 S:      Orphan
19394 F:      drivers/usb/c67x00/
19395
19396 USB DAVICOM DM9601 DRIVER
19397 M:      Peter Korsgaard <peter@korsgaard.com>
19398 L:      netdev@vger.kernel.org
19399 S:      Maintained
19400 W:      http://www.linux-usb.org/usbnet
19401 F:      drivers/net/usb/dm9601.c
19402
19403 USB EHCI DRIVER
19404 M:      Alan Stern <stern@rowland.harvard.edu>
19405 L:      linux-usb@vger.kernel.org
19406 S:      Maintained
19407 F:      Documentation/usb/ehci.rst
19408 F:      drivers/usb/host/ehci*
19409
19410 USB GADGET/PERIPHERAL SUBSYSTEM
19411 M:      Felipe Balbi <balbi@kernel.org>
19412 L:      linux-usb@vger.kernel.org
19413 S:      Maintained
19414 W:      http://www.linux-usb.org/gadget
19415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19416 F:      drivers/usb/gadget/
19417 F:      include/linux/usb/gadget*
19418
19419 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19420 M:      Jiri Kosina <jikos@kernel.org>
19421 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19422 L:      linux-usb@vger.kernel.org
19423 S:      Maintained
19424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19425 F:      Documentation/hid/hiddev.rst
19426 F:      drivers/hid/usbhid/
19427
19428 USB INTEL XHCI ROLE MUX DRIVER
19429 M:      Hans de Goede <hdegoede@redhat.com>
19430 L:      linux-usb@vger.kernel.org
19431 S:      Maintained
19432 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19433
19434 USB IP DRIVER FOR HISILICON KIRIN 960
19435 M:      Yu Chen <chenyu56@huawei.com>
19436 M:      Binghui Wang <wangbinghui@hisilicon.com>
19437 L:      linux-usb@vger.kernel.org
19438 S:      Maintained
19439 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19440 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19441
19442 USB IP DRIVER FOR HISILICON KIRIN 970
19443 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19444 L:      linux-usb@vger.kernel.org
19445 S:      Maintained
19446 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19447 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19448
19449 USB ISP116X DRIVER
19450 M:      Olav Kongas <ok@artecdesign.ee>
19451 L:      linux-usb@vger.kernel.org
19452 S:      Maintained
19453 F:      drivers/usb/host/isp116x*
19454 F:      include/linux/usb/isp116x.h
19455
19456 USB ISP1760 DRIVER
19457 M:      Rui Miguel Silva <rui.silva@linaro.org>
19458 L:      linux-usb@vger.kernel.org
19459 S:      Maintained
19460 F:      drivers/usb/isp1760/*
19461 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19462
19463 USB LAN78XX ETHERNET DRIVER
19464 M:      Woojung Huh <woojung.huh@microchip.com>
19465 M:      UNGLinuxDriver@microchip.com
19466 L:      netdev@vger.kernel.org
19467 S:      Maintained
19468 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19469 F:      drivers/net/usb/lan78xx.*
19470 F:      include/dt-bindings/net/microchip-lan78xx.h
19471
19472 USB MASS STORAGE DRIVER
19473 M:      Alan Stern <stern@rowland.harvard.edu>
19474 L:      linux-usb@vger.kernel.org
19475 L:      usb-storage@lists.one-eyed-alien.net
19476 S:      Maintained
19477 F:      drivers/usb/storage/
19478
19479 USB MIDI DRIVER
19480 M:      Clemens Ladisch <clemens@ladisch.de>
19481 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19482 S:      Maintained
19483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19484 F:      sound/usb/midi.*
19485
19486 USB NETWORKING DRIVERS
19487 L:      linux-usb@vger.kernel.org
19488 S:      Odd Fixes
19489 F:      drivers/net/usb/
19490
19491 USB OHCI DRIVER
19492 M:      Alan Stern <stern@rowland.harvard.edu>
19493 L:      linux-usb@vger.kernel.org
19494 S:      Maintained
19495 F:      Documentation/usb/ohci.rst
19496 F:      drivers/usb/host/ohci*
19497
19498 USB OTG FSM (Finite State Machine)
19499 M:      Peter Chen <peter.chen@kernel.org>
19500 L:      linux-usb@vger.kernel.org
19501 S:      Maintained
19502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19503 F:      drivers/usb/common/usb-otg-fsm.c
19504
19505 USB OVER IP DRIVER
19506 M:      Valentina Manea <valentina.manea.m@gmail.com>
19507 M:      Shuah Khan <shuah@kernel.org>
19508 M:      Shuah Khan <skhan@linuxfoundation.org>
19509 L:      linux-usb@vger.kernel.org
19510 S:      Maintained
19511 F:      Documentation/usb/usbip_protocol.rst
19512 F:      drivers/usb/usbip/
19513 F:      tools/testing/selftests/drivers/usb/usbip/
19514 F:      tools/usb/usbip/
19515
19516 USB PEGASUS DRIVER
19517 M:      Petko Manolov <petkan@nucleusys.com>
19518 L:      linux-usb@vger.kernel.org
19519 L:      netdev@vger.kernel.org
19520 S:      Maintained
19521 W:      https://github.com/petkan/pegasus
19522 T:      git git://github.com/petkan/pegasus.git
19523 F:      drivers/net/usb/pegasus.*
19524
19525 USB PHY LAYER
19526 M:      Felipe Balbi <balbi@kernel.org>
19527 L:      linux-usb@vger.kernel.org
19528 S:      Maintained
19529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19530 F:      drivers/usb/phy/
19531
19532 USB PRINTER DRIVER (usblp)
19533 M:      Pete Zaitcev <zaitcev@redhat.com>
19534 L:      linux-usb@vger.kernel.org
19535 S:      Supported
19536 F:      drivers/usb/class/usblp.c
19537
19538 USB RAW GADGET DRIVER
19539 R:      Andrey Konovalov <andreyknvl@gmail.com>
19540 L:      linux-usb@vger.kernel.org
19541 S:      Maintained
19542 F:      Documentation/usb/raw-gadget.rst
19543 F:      drivers/usb/gadget/legacy/raw_gadget.c
19544 F:      include/uapi/linux/usb/raw_gadget.h
19545
19546 USB QMI WWAN NETWORK DRIVER
19547 M:      Bjørn Mork <bjorn@mork.no>
19548 L:      netdev@vger.kernel.org
19549 S:      Maintained
19550 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19551 F:      drivers/net/usb/qmi_wwan.c
19552
19553 USB RTL8150 DRIVER
19554 M:      Petko Manolov <petkan@nucleusys.com>
19555 L:      linux-usb@vger.kernel.org
19556 L:      netdev@vger.kernel.org
19557 S:      Maintained
19558 W:      https://github.com/petkan/rtl8150
19559 T:      git git://github.com/petkan/rtl8150.git
19560 F:      drivers/net/usb/rtl8150.c
19561
19562 USB SERIAL SUBSYSTEM
19563 M:      Johan Hovold <johan@kernel.org>
19564 L:      linux-usb@vger.kernel.org
19565 S:      Maintained
19566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19567 F:      Documentation/usb/usb-serial.rst
19568 F:      drivers/usb/serial/
19569 F:      include/linux/usb/serial.h
19570
19571 USB SMSC75XX ETHERNET DRIVER
19572 M:      Steve Glendinning <steve.glendinning@shawell.net>
19573 L:      netdev@vger.kernel.org
19574 S:      Maintained
19575 F:      drivers/net/usb/smsc75xx.*
19576
19577 USB SMSC95XX ETHERNET DRIVER
19578 M:      Steve Glendinning <steve.glendinning@shawell.net>
19579 M:      UNGLinuxDriver@microchip.com
19580 L:      netdev@vger.kernel.org
19581 S:      Maintained
19582 F:      drivers/net/usb/smsc95xx.*
19583
19584 USB SUBSYSTEM
19585 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19586 L:      linux-usb@vger.kernel.org
19587 S:      Supported
19588 W:      http://www.linux-usb.org
19589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19590 F:      Documentation/devicetree/bindings/usb/
19591 F:      Documentation/usb/
19592 F:      drivers/usb/
19593 F:      include/linux/usb.h
19594 F:      include/linux/usb/
19595
19596 USB TYPEC BUS FOR ALTERNATE MODES
19597 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19598 L:      linux-usb@vger.kernel.org
19599 S:      Maintained
19600 F:      Documentation/ABI/testing/sysfs-bus-typec
19601 F:      Documentation/driver-api/usb/typec_bus.rst
19602 F:      drivers/usb/typec/altmodes/
19603 F:      include/linux/usb/typec_altmode.h
19604
19605 USB TYPEC CLASS
19606 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19607 L:      linux-usb@vger.kernel.org
19608 S:      Maintained
19609 F:      Documentation/ABI/testing/sysfs-class-typec
19610 F:      Documentation/driver-api/usb/typec.rst
19611 F:      drivers/usb/typec/
19612 F:      include/linux/usb/typec.h
19613
19614 USB TYPEC INTEL PMC MUX DRIVER
19615 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19616 L:      linux-usb@vger.kernel.org
19617 S:      Maintained
19618 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19619 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19620
19621 USB TYPEC PI3USB30532 MUX DRIVER
19622 M:      Hans de Goede <hdegoede@redhat.com>
19623 L:      linux-usb@vger.kernel.org
19624 S:      Maintained
19625 F:      drivers/usb/typec/mux/pi3usb30532.c
19626
19627 USB TYPEC PORT CONTROLLER DRIVERS
19628 M:      Guenter Roeck <linux@roeck-us.net>
19629 L:      linux-usb@vger.kernel.org
19630 S:      Maintained
19631 F:      drivers/usb/typec/tcpm/
19632
19633 USB UHCI DRIVER
19634 M:      Alan Stern <stern@rowland.harvard.edu>
19635 L:      linux-usb@vger.kernel.org
19636 S:      Maintained
19637 F:      drivers/usb/host/uhci*
19638
19639 USB VIDEO CLASS
19640 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19641 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19642 L:      linux-media@vger.kernel.org
19643 S:      Maintained
19644 W:      http://www.ideasonboard.org/uvc/
19645 T:      git git://linuxtv.org/media_tree.git
19646 F:      drivers/media/usb/uvc/
19647 F:      include/uapi/linux/uvcvideo.h
19648
19649 USB WEBCAM GADGET
19650 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19651 L:      linux-usb@vger.kernel.org
19652 S:      Maintained
19653 F:      drivers/usb/gadget/function/*uvc*
19654 F:      drivers/usb/gadget/legacy/webcam.c
19655 F:      include/uapi/linux/usb/g_uvc.h
19656
19657 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19658 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19659 L:      linux-wireless@vger.kernel.org
19660 S:      Maintained
19661 F:      drivers/net/wireless/rndis_wlan.c
19662
19663 USB XHCI DRIVER
19664 M:      Mathias Nyman <mathias.nyman@intel.com>
19665 L:      linux-usb@vger.kernel.org
19666 S:      Supported
19667 F:      drivers/usb/host/pci-quirks*
19668 F:      drivers/usb/host/xhci*
19669
19670 USB ZD1201 DRIVER
19671 L:      linux-wireless@vger.kernel.org
19672 S:      Orphan
19673 W:      http://linux-lc100020.sourceforge.net
19674 F:      drivers/net/wireless/zydas/zd1201.*
19675
19676 USB ZR364XX DRIVER
19677 M:      Antoine Jacquet <royale@zerezo.com>
19678 L:      linux-usb@vger.kernel.org
19679 L:      linux-media@vger.kernel.org
19680 S:      Maintained
19681 W:      http://royale.zerezo.com/zr364xx/
19682 T:      git git://linuxtv.org/media_tree.git
19683 F:      Documentation/admin-guide/media/zr364xx*
19684 F:      drivers/media/usb/zr364xx/
19685
19686 USER-MODE LINUX (UML)
19687 M:      Jeff Dike <jdike@addtoit.com>
19688 M:      Richard Weinberger <richard@nod.at>
19689 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19690 L:      linux-um@lists.infradead.org
19691 S:      Maintained
19692 W:      http://user-mode-linux.sourceforge.net
19693 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19695 F:      Documentation/virt/uml/
19696 F:      arch/um/
19697 F:      arch/x86/um/
19698 F:      fs/hostfs/
19699
19700 USERSPACE COPYIN/COPYOUT (UIOVEC)
19701 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19702 S:      Maintained
19703 F:      include/linux/uio.h
19704 F:      lib/iov_iter.c
19705
19706 USERSPACE DMA BUFFER DRIVER
19707 M:      Gerd Hoffmann <kraxel@redhat.com>
19708 L:      dri-devel@lists.freedesktop.org
19709 S:      Maintained
19710 T:      git git://anongit.freedesktop.org/drm/drm-misc
19711 F:      drivers/dma-buf/udmabuf.c
19712 F:      include/uapi/linux/udmabuf.h
19713
19714 USERSPACE I/O (UIO)
19715 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19716 S:      Maintained
19717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19718 F:      Documentation/driver-api/uio-howto.rst
19719 F:      drivers/uio/
19720 F:      include/linux/uio_driver.h
19721
19722 UTIL-LINUX PACKAGE
19723 M:      Karel Zak <kzak@redhat.com>
19724 L:      util-linux@vger.kernel.org
19725 S:      Maintained
19726 W:      http://en.wikipedia.org/wiki/Util-linux
19727 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19728
19729 UUID HELPERS
19730 M:      Christoph Hellwig <hch@lst.de>
19731 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19732 L:      linux-kernel@vger.kernel.org
19733 S:      Maintained
19734 T:      git git://git.infradead.org/users/hch/uuid.git
19735 F:      include/linux/uuid.h
19736 F:      include/uapi/linux/uuid.h
19737 F:      lib/test_uuid.c
19738 F:      lib/uuid.c
19739
19740 UV SYSFS DRIVER
19741 M:      Justin Ernst <justin.ernst@hpe.com>
19742 L:      platform-driver-x86@vger.kernel.org
19743 S:      Maintained
19744 F:      drivers/platform/x86/uv_sysfs.c
19745
19746 UVESAFB DRIVER
19747 M:      Michal Januszewski <spock@gentoo.org>
19748 L:      linux-fbdev@vger.kernel.org
19749 S:      Maintained
19750 W:      https://github.com/mjanusz/v86d
19751 F:      Documentation/fb/uvesafb.rst
19752 F:      drivers/video/fbdev/uvesafb.*
19753
19754 Ux500 CLOCK DRIVERS
19755 M:      Ulf Hansson <ulf.hansson@linaro.org>
19756 L:      linux-clk@vger.kernel.org
19757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19758 S:      Maintained
19759 F:      drivers/clk/ux500/
19760
19761 VF610 NAND DRIVER
19762 M:      Stefan Agner <stefan@agner.ch>
19763 L:      linux-mtd@lists.infradead.org
19764 S:      Supported
19765 F:      drivers/mtd/nand/raw/vf610_nfc.c
19766
19767 VFAT/FAT/MSDOS FILESYSTEM
19768 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19769 S:      Maintained
19770 F:      Documentation/filesystems/vfat.rst
19771 F:      fs/fat/
19772
19773 VFIO DRIVER
19774 M:      Alex Williamson <alex.williamson@redhat.com>
19775 R:      Cornelia Huck <cohuck@redhat.com>
19776 L:      kvm@vger.kernel.org
19777 S:      Maintained
19778 T:      git git://github.com/awilliam/linux-vfio.git
19779 F:      Documentation/driver-api/vfio.rst
19780 F:      drivers/vfio/
19781 F:      include/linux/vfio.h
19782 F:      include/linux/vfio_pci_core.h
19783 F:      include/uapi/linux/vfio.h
19784
19785 VFIO FSL-MC DRIVER
19786 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19787 L:      kvm@vger.kernel.org
19788 S:      Maintained
19789 F:      drivers/vfio/fsl-mc/
19790
19791 VFIO MEDIATED DEVICE DRIVERS
19792 M:      Kirti Wankhede <kwankhede@nvidia.com>
19793 L:      kvm@vger.kernel.org
19794 S:      Maintained
19795 F:      Documentation/driver-api/vfio-mediated-device.rst
19796 F:      drivers/vfio/mdev/
19797 F:      include/linux/mdev.h
19798 F:      samples/vfio-mdev/
19799
19800 VFIO PLATFORM DRIVER
19801 M:      Eric Auger <eric.auger@redhat.com>
19802 L:      kvm@vger.kernel.org
19803 S:      Maintained
19804 F:      drivers/vfio/platform/
19805
19806 VGA_SWITCHEROO
19807 R:      Lukas Wunner <lukas@wunner.de>
19808 S:      Maintained
19809 T:      git git://anongit.freedesktop.org/drm/drm-misc
19810 F:      Documentation/gpu/vga-switcheroo.rst
19811 F:      drivers/gpu/vga/vga_switcheroo.c
19812 F:      include/linux/vga_switcheroo.h
19813
19814 VIA RHINE NETWORK DRIVER
19815 S:      Maintained
19816 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19817 F:      drivers/net/ethernet/via/via-rhine.c
19818
19819 VIA SD/MMC CARD CONTROLLER DRIVER
19820 M:      Bruce Chang <brucechang@via.com.tw>
19821 M:      Harald Welte <HaraldWelte@viatech.com>
19822 S:      Maintained
19823 F:      drivers/mmc/host/via-sdmmc.c
19824
19825 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19826 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19827 L:      linux-fbdev@vger.kernel.org
19828 S:      Maintained
19829 F:      drivers/video/fbdev/via/
19830 F:      include/linux/via-core.h
19831 F:      include/linux/via-gpio.h
19832 F:      include/linux/via_i2c.h
19833
19834 VIA VELOCITY NETWORK DRIVER
19835 M:      Francois Romieu <romieu@fr.zoreil.com>
19836 L:      netdev@vger.kernel.org
19837 S:      Maintained
19838 F:      drivers/net/ethernet/via/via-velocity.*
19839
19840 VICODEC VIRTUAL CODEC DRIVER
19841 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19842 L:      linux-media@vger.kernel.org
19843 S:      Maintained
19844 W:      https://linuxtv.org
19845 T:      git git://linuxtv.org/media_tree.git
19846 F:      drivers/media/test-drivers/vicodec/*
19847
19848 VIDEO I2C POLLING DRIVER
19849 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19850 L:      linux-media@vger.kernel.org
19851 S:      Maintained
19852 F:      drivers/media/i2c/video-i2c.c
19853
19854 VIDEO MULTIPLEXER DRIVER
19855 M:      Philipp Zabel <p.zabel@pengutronix.de>
19856 L:      linux-media@vger.kernel.org
19857 S:      Maintained
19858 F:      drivers/media/platform/video-mux.c
19859
19860 VIDEOBUF2 FRAMEWORK
19861 M:      Tomasz Figa <tfiga@chromium.org>
19862 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19863 L:      linux-media@vger.kernel.org
19864 S:      Maintained
19865 F:      drivers/media/common/videobuf2/*
19866 F:      include/media/videobuf2-*
19867
19868 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19869 M:      Helen Koike <helen.koike@collabora.com>
19870 R:      Shuah Khan <skhan@linuxfoundation.org>
19871 L:      linux-media@vger.kernel.org
19872 S:      Maintained
19873 W:      https://linuxtv.org
19874 T:      git git://linuxtv.org/media_tree.git
19875 F:      drivers/media/test-drivers/vimc/*
19876
19877 VIRT LIB
19878 M:      Alex Williamson <alex.williamson@redhat.com>
19879 M:      Paolo Bonzini <pbonzini@redhat.com>
19880 L:      kvm@vger.kernel.org
19881 S:      Supported
19882 F:      virt/lib/
19883
19884 VIRTIO AND VHOST VSOCK DRIVER
19885 M:      Stefan Hajnoczi <stefanha@redhat.com>
19886 M:      Stefano Garzarella <sgarzare@redhat.com>
19887 L:      kvm@vger.kernel.org
19888 L:      virtualization@lists.linux-foundation.org
19889 L:      netdev@vger.kernel.org
19890 S:      Maintained
19891 F:      drivers/vhost/vsock.c
19892 F:      include/linux/virtio_vsock.h
19893 F:      include/uapi/linux/virtio_vsock.h
19894 F:      net/vmw_vsock/virtio_transport.c
19895 F:      net/vmw_vsock/virtio_transport_common.c
19896
19897 VIRTIO BLOCK AND SCSI DRIVERS
19898 M:      "Michael S. Tsirkin" <mst@redhat.com>
19899 M:      Jason Wang <jasowang@redhat.com>
19900 R:      Paolo Bonzini <pbonzini@redhat.com>
19901 R:      Stefan Hajnoczi <stefanha@redhat.com>
19902 L:      virtualization@lists.linux-foundation.org
19903 S:      Maintained
19904 F:      drivers/block/virtio_blk.c
19905 F:      drivers/scsi/virtio_scsi.c
19906 F:      drivers/vhost/scsi.c
19907 F:      include/uapi/linux/virtio_blk.h
19908 F:      include/uapi/linux/virtio_scsi.h
19909
19910 VIRTIO CONSOLE DRIVER
19911 M:      Amit Shah <amit@kernel.org>
19912 L:      virtualization@lists.linux-foundation.org
19913 S:      Maintained
19914 F:      drivers/char/virtio_console.c
19915 F:      include/linux/virtio_console.h
19916 F:      include/uapi/linux/virtio_console.h
19917
19918 VIRTIO CORE AND NET DRIVERS
19919 M:      "Michael S. Tsirkin" <mst@redhat.com>
19920 M:      Jason Wang <jasowang@redhat.com>
19921 L:      virtualization@lists.linux-foundation.org
19922 S:      Maintained
19923 F:      Documentation/devicetree/bindings/virtio/
19924 F:      drivers/block/virtio_blk.c
19925 F:      drivers/crypto/virtio/
19926 F:      drivers/net/virtio_net.c
19927 F:      drivers/vdpa/
19928 F:      drivers/virtio/
19929 F:      include/linux/vdpa.h
19930 F:      include/linux/virtio*.h
19931 F:      include/uapi/linux/virtio_*.h
19932 F:      tools/virtio/
19933
19934 VIRTIO BALLOON
19935 M:      "Michael S. Tsirkin" <mst@redhat.com>
19936 M:      David Hildenbrand <david@redhat.com>
19937 L:      virtualization@lists.linux-foundation.org
19938 S:      Maintained
19939 F:      drivers/virtio/virtio_balloon.c
19940 F:      include/uapi/linux/virtio_balloon.h
19941 F:      include/linux/balloon_compaction.h
19942 F:      mm/balloon_compaction.c
19943
19944 VIRTIO CRYPTO DRIVER
19945 M:      Gonglei <arei.gonglei@huawei.com>
19946 L:      virtualization@lists.linux-foundation.org
19947 L:      linux-crypto@vger.kernel.org
19948 S:      Maintained
19949 F:      drivers/crypto/virtio/
19950 F:      include/uapi/linux/virtio_crypto.h
19951
19952 VIRTIO DRIVERS FOR S390
19953 M:      Cornelia Huck <cohuck@redhat.com>
19954 M:      Halil Pasic <pasic@linux.ibm.com>
19955 L:      linux-s390@vger.kernel.org
19956 L:      virtualization@lists.linux-foundation.org
19957 L:      kvm@vger.kernel.org
19958 S:      Supported
19959 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19960 F:      drivers/s390/virtio/
19961
19962 VIRTIO FILE SYSTEM
19963 M:      Vivek Goyal <vgoyal@redhat.com>
19964 M:      Stefan Hajnoczi <stefanha@redhat.com>
19965 M:      Miklos Szeredi <miklos@szeredi.hu>
19966 L:      virtualization@lists.linux-foundation.org
19967 L:      linux-fsdevel@vger.kernel.org
19968 S:      Supported
19969 W:      https://virtio-fs.gitlab.io/
19970 F:      Documentation/filesystems/virtiofs.rst
19971 F:      fs/fuse/virtio_fs.c
19972 F:      include/uapi/linux/virtio_fs.h
19973
19974 VIRTIO GPIO DRIVER
19975 M:      Enrico Weigelt, metux IT consult <info@metux.net>
19976 M:      Viresh Kumar <vireshk@kernel.org>
19977 L:      linux-gpio@vger.kernel.org
19978 L:      virtualization@lists.linux-foundation.org
19979 S:      Maintained
19980 F:      drivers/gpio/gpio-virtio.c
19981 F:      include/uapi/linux/virtio_gpio.h
19982
19983 VIRTIO GPU DRIVER
19984 M:      David Airlie <airlied@linux.ie>
19985 M:      Gerd Hoffmann <kraxel@redhat.com>
19986 L:      dri-devel@lists.freedesktop.org
19987 L:      virtualization@lists.linux-foundation.org
19988 S:      Maintained
19989 T:      git git://anongit.freedesktop.org/drm/drm-misc
19990 F:      drivers/gpu/drm/virtio/
19991 F:      include/uapi/linux/virtio_gpu.h
19992
19993 VIRTIO HOST (VHOST)
19994 M:      "Michael S. Tsirkin" <mst@redhat.com>
19995 M:      Jason Wang <jasowang@redhat.com>
19996 L:      kvm@vger.kernel.org
19997 L:      virtualization@lists.linux-foundation.org
19998 L:      netdev@vger.kernel.org
19999 S:      Maintained
20000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20001 F:      drivers/vhost/
20002 F:      include/linux/vhost_iotlb.h
20003 F:      include/uapi/linux/vhost.h
20004
20005 VIRTIO INPUT DRIVER
20006 M:      Gerd Hoffmann <kraxel@redhat.com>
20007 S:      Maintained
20008 F:      drivers/virtio/virtio_input.c
20009 F:      include/uapi/linux/virtio_input.h
20010
20011 VIRTIO IOMMU DRIVER
20012 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20013 L:      virtualization@lists.linux-foundation.org
20014 S:      Maintained
20015 F:      drivers/iommu/virtio-iommu.c
20016 F:      include/uapi/linux/virtio_iommu.h
20017
20018 VIRTIO MEM DRIVER
20019 M:      David Hildenbrand <david@redhat.com>
20020 L:      virtualization@lists.linux-foundation.org
20021 S:      Maintained
20022 W:      https://virtio-mem.gitlab.io/
20023 F:      drivers/virtio/virtio_mem.c
20024 F:      include/uapi/linux/virtio_mem.h
20025
20026 VIRTIO SOUND DRIVER
20027 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20028 M:      "Michael S. Tsirkin" <mst@redhat.com>
20029 L:      virtualization@lists.linux-foundation.org
20030 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20031 S:      Maintained
20032 F:      include/uapi/linux/virtio_snd.h
20033 F:      sound/virtio/*
20034
20035 VIRTIO I2C DRIVER
20036 M:      Jie Deng <jie.deng@intel.com>
20037 M:      Viresh Kumar <viresh.kumar@linaro.org>
20038 L:      linux-i2c@vger.kernel.org
20039 L:      virtualization@lists.linux-foundation.org
20040 S:      Maintained
20041 F:      drivers/i2c/busses/i2c-virtio.c
20042 F:      include/uapi/linux/virtio_i2c.h
20043
20044 VIRTUAL BOX GUEST DEVICE DRIVER
20045 M:      Hans de Goede <hdegoede@redhat.com>
20046 M:      Arnd Bergmann <arnd@arndb.de>
20047 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20048 S:      Maintained
20049 F:      drivers/virt/vboxguest/
20050 F:      include/linux/vbox_utils.h
20051 F:      include/uapi/linux/vbox*.h
20052
20053 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20054 M:      Hans de Goede <hdegoede@redhat.com>
20055 L:      linux-fsdevel@vger.kernel.org
20056 S:      Maintained
20057 F:      fs/vboxsf/*
20058
20059 VIRTUAL SERIO DEVICE DRIVER
20060 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20061 S:      Maintained
20062 F:      drivers/input/serio/userio.c
20063 F:      include/uapi/linux/userio.h
20064
20065 VIVID VIRTUAL VIDEO DRIVER
20066 M:      Hans Verkuil <hverkuil@xs4all.nl>
20067 L:      linux-media@vger.kernel.org
20068 S:      Maintained
20069 W:      https://linuxtv.org
20070 T:      git git://linuxtv.org/media_tree.git
20071 F:      drivers/media/test-drivers/vivid/*
20072
20073 VIDTV VIRTUAL DIGITAL TV DRIVER
20074 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20075 L:      linux-media@vger.kernel.org
20076 S:      Maintained
20077 W:      https://linuxtv.org
20078 T:      git git://linuxtv.org/media_tree.git
20079 F:      drivers/media/test-drivers/vidtv/*
20080
20081 VLYNQ BUS
20082 M:      Florian Fainelli <f.fainelli@gmail.com>
20083 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20084 S:      Maintained
20085 F:      drivers/vlynq/vlynq.c
20086 F:      include/linux/vlynq.h
20087
20088 VME SUBSYSTEM
20089 M:      Martyn Welch <martyn@welchs.me.uk>
20090 M:      Manohar Vanga <manohar.vanga@gmail.com>
20091 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20092 L:      linux-kernel@vger.kernel.org
20093 S:      Maintained
20094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20095 F:      Documentation/driver-api/vme.rst
20096 F:      drivers/staging/vme/
20097 F:      drivers/vme/
20098 F:      include/linux/vme*
20099
20100 VM SOCKETS (AF_VSOCK)
20101 M:      Stefano Garzarella <sgarzare@redhat.com>
20102 L:      virtualization@lists.linux-foundation.org
20103 L:      netdev@vger.kernel.org
20104 S:      Maintained
20105 F:      drivers/net/vsockmon.c
20106 F:      include/net/af_vsock.h
20107 F:      include/uapi/linux/vm_sockets.h
20108 F:      include/uapi/linux/vm_sockets_diag.h
20109 F:      include/uapi/linux/vsockmon.h
20110 F:      net/vmw_vsock/
20111 F:      tools/testing/vsock/
20112
20113 VMWARE BALLOON DRIVER
20114 M:      Nadav Amit <namit@vmware.com>
20115 M:      "VMware, Inc." <pv-drivers@vmware.com>
20116 L:      linux-kernel@vger.kernel.org
20117 S:      Maintained
20118 F:      drivers/misc/vmw_balloon.c
20119
20120 VMWARE HYPERVISOR INTERFACE
20121 M:      Deep Shah <sdeep@vmware.com>
20122 M:      "VMware, Inc." <pv-drivers@vmware.com>
20123 L:      virtualization@lists.linux-foundation.org
20124 S:      Supported
20125 F:      arch/x86/include/asm/vmware.h
20126 F:      arch/x86/kernel/cpu/vmware.c
20127
20128 VMWARE PVRDMA DRIVER
20129 M:      Adit Ranadive <aditr@vmware.com>
20130 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20131 L:      linux-rdma@vger.kernel.org
20132 S:      Maintained
20133 F:      drivers/infiniband/hw/vmw_pvrdma/
20134
20135 VMware PVSCSI driver
20136 M:      Vishal Bhakta <vbhakta@vmware.com>
20137 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20138 L:      linux-scsi@vger.kernel.org
20139 S:      Maintained
20140 F:      drivers/scsi/vmw_pvscsi.c
20141 F:      drivers/scsi/vmw_pvscsi.h
20142
20143 VMWARE VIRTUAL PTP CLOCK DRIVER
20144 M:      Vivek Thampi <vithampi@vmware.com>
20145 M:      "VMware, Inc." <pv-drivers@vmware.com>
20146 L:      netdev@vger.kernel.org
20147 S:      Supported
20148 F:      drivers/ptp/ptp_vmw.c
20149
20150 VMWARE VMCI DRIVER
20151 M:      Jorgen Hansen <jhansen@vmware.com>
20152 M:      Vishnu Dasa <vdasa@vmware.com>
20153 L:      linux-kernel@vger.kernel.org
20154 L:      pv-drivers@vmware.com (private)
20155 S:      Maintained
20156 F:      drivers/misc/vmw_vmci/
20157
20158 VMWARE VMMOUSE SUBDRIVER
20159 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20160 M:      "VMware, Inc." <pv-drivers@vmware.com>
20161 L:      linux-input@vger.kernel.org
20162 S:      Maintained
20163 F:      drivers/input/mouse/vmmouse.c
20164 F:      drivers/input/mouse/vmmouse.h
20165
20166 VMWARE VMXNET3 ETHERNET DRIVER
20167 M:      Ronak Doshi <doshir@vmware.com>
20168 M:      pv-drivers@vmware.com
20169 L:      netdev@vger.kernel.org
20170 S:      Maintained
20171 F:      drivers/net/vmxnet3/
20172
20173 VOCORE VOCORE2 BOARD
20174 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20175 L:      linux-mips@vger.kernel.org
20176 S:      Maintained
20177 F:      arch/mips/boot/dts/ralink/vocore2.dts
20178
20179 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20180 M:      Liam Girdwood <lgirdwood@gmail.com>
20181 M:      Mark Brown <broonie@kernel.org>
20182 L:      linux-kernel@vger.kernel.org
20183 S:      Supported
20184 W:      http://www.slimlogic.co.uk/?p=48
20185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20186 F:      Documentation/devicetree/bindings/regulator/
20187 F:      Documentation/power/regulator/
20188 F:      drivers/regulator/
20189 F:      include/dt-bindings/regulator/
20190 F:      include/linux/regulator/
20191 K:      regulator_get_optional
20192
20193 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20194 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20195 F:      drivers/regulator/irq_helpers.c
20196
20197 VRF
20198 M:      David Ahern <dsahern@kernel.org>
20199 L:      netdev@vger.kernel.org
20200 S:      Maintained
20201 F:      Documentation/networking/vrf.rst
20202 F:      drivers/net/vrf.c
20203
20204 VSPRINTF
20205 M:      Petr Mladek <pmladek@suse.com>
20206 M:      Steven Rostedt <rostedt@goodmis.org>
20207 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20208 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20209 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20210 S:      Maintained
20211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20212 F:      Documentation/core-api/printk-formats.rst
20213 F:      lib/test_printf.c
20214 F:      lib/test_scanf.c
20215 F:      lib/vsprintf.c
20216
20217 VT1211 HARDWARE MONITOR DRIVER
20218 M:      Juerg Haefliger <juergh@gmail.com>
20219 L:      linux-hwmon@vger.kernel.org
20220 S:      Maintained
20221 F:      Documentation/hwmon/vt1211.rst
20222 F:      drivers/hwmon/vt1211.c
20223
20224 VT8231 HARDWARE MONITOR DRIVER
20225 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20226 L:      linux-hwmon@vger.kernel.org
20227 S:      Maintained
20228 F:      drivers/hwmon/vt8231.c
20229
20230 VUB300 USB to SDIO/SD/MMC bridge chip
20231 L:      linux-mmc@vger.kernel.org
20232 S:      Orphan
20233 F:      drivers/mmc/host/vub300.c
20234
20235 W1 DALLAS'S 1-WIRE BUS
20236 M:      Evgeniy Polyakov <zbr@ioremap.net>
20237 S:      Maintained
20238 F:      Documentation/devicetree/bindings/w1/
20239 F:      Documentation/w1/
20240 F:      drivers/w1/
20241 F:      include/linux/w1.h
20242
20243 W83791D HARDWARE MONITORING DRIVER
20244 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20245 L:      linux-hwmon@vger.kernel.org
20246 S:      Maintained
20247 F:      Documentation/hwmon/w83791d.rst
20248 F:      drivers/hwmon/w83791d.c
20249
20250 W83793 HARDWARE MONITORING DRIVER
20251 M:      Rudolf Marek <r.marek@assembler.cz>
20252 L:      linux-hwmon@vger.kernel.org
20253 S:      Maintained
20254 F:      Documentation/hwmon/w83793.rst
20255 F:      drivers/hwmon/w83793.c
20256
20257 W83795 HARDWARE MONITORING DRIVER
20258 M:      Jean Delvare <jdelvare@suse.com>
20259 L:      linux-hwmon@vger.kernel.org
20260 S:      Maintained
20261 F:      drivers/hwmon/w83795.c
20262
20263 W83L51xD SD/MMC CARD INTERFACE DRIVER
20264 M:      Pierre Ossman <pierre@ossman.eu>
20265 S:      Maintained
20266 F:      drivers/mmc/host/wbsd.*
20267
20268 WACOM PROTOCOL 4 SERIAL TABLETS
20269 M:      Julian Squires <julian@cipht.net>
20270 M:      Hans de Goede <hdegoede@redhat.com>
20271 L:      linux-input@vger.kernel.org
20272 S:      Maintained
20273 F:      drivers/input/tablet/wacom_serial4.c
20274
20275 WATCHDOG DEVICE DRIVERS
20276 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20277 M:      Guenter Roeck <linux@roeck-us.net>
20278 L:      linux-watchdog@vger.kernel.org
20279 S:      Maintained
20280 W:      http://www.linux-watchdog.org/
20281 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20282 F:      Documentation/devicetree/bindings/watchdog/
20283 F:      Documentation/watchdog/
20284 F:      drivers/watchdog/
20285 F:      include/linux/watchdog.h
20286 F:      include/uapi/linux/watchdog.h
20287
20288 WHISKEYCOVE PMIC GPIO DRIVER
20289 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20290 L:      linux-gpio@vger.kernel.org
20291 S:      Maintained
20292 F:      drivers/gpio/gpio-wcove.c
20293
20294 WHWAVE RTC DRIVER
20295 M:      Dianlong Li <long17.cool@163.com>
20296 L:      linux-rtc@vger.kernel.org
20297 S:      Maintained
20298 F:      drivers/rtc/rtc-sd3078.c
20299
20300 WIIMOTE HID DRIVER
20301 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20302 L:      linux-input@vger.kernel.org
20303 S:      Maintained
20304 F:      drivers/hid/hid-wiimote*
20305
20306 WILOCITY WIL6210 WIRELESS DRIVER
20307 M:      Maya Erez <merez@codeaurora.org>
20308 L:      linux-wireless@vger.kernel.org
20309 L:      wil6210@qti.qualcomm.com
20310 S:      Supported
20311 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20312 F:      drivers/net/wireless/ath/wil6210/
20313
20314 WINBOND CIR DRIVER
20315 M:      David Härdeman <david@hardeman.nu>
20316 S:      Maintained
20317 F:      drivers/media/rc/winbond-cir.c
20318
20319 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20320 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20321 L:      linux-watchdog@vger.kernel.org
20322 S:      Maintained
20323 F:      drivers/watchdog/ebc-c384_wdt.c
20324
20325 WINSYSTEMS WS16C48 GPIO DRIVER
20326 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20327 L:      linux-gpio@vger.kernel.org
20328 S:      Maintained
20329 F:      drivers/gpio/gpio-ws16c48.c
20330
20331 WIREGUARD SECURE NETWORK TUNNEL
20332 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20333 L:      wireguard@lists.zx2c4.com
20334 L:      netdev@vger.kernel.org
20335 S:      Maintained
20336 F:      drivers/net/wireguard/
20337 F:      tools/testing/selftests/wireguard/
20338
20339 WISTRON LAPTOP BUTTON DRIVER
20340 M:      Miloslav Trmac <mitr@volny.cz>
20341 S:      Maintained
20342 F:      drivers/input/misc/wistron_btns.c
20343
20344 WL3501 WIRELESS PCMCIA CARD DRIVER
20345 L:      linux-wireless@vger.kernel.org
20346 S:      Odd fixes
20347 F:      drivers/net/wireless/wl3501*
20348
20349 WOLFSON MICROELECTRONICS DRIVERS
20350 L:      patches@opensource.cirrus.com
20351 S:      Supported
20352 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20353 T:      git https://github.com/CirrusLogic/linux-drivers.git
20354 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20355 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20356 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20357 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20358 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20359 F:      Documentation/devicetree/bindings/sound/wm*
20360 F:      Documentation/hwmon/wm83??.rst
20361 F:      arch/arm/mach-s3c/mach-crag6410*
20362 F:      drivers/clk/clk-wm83*.c
20363 F:      drivers/gpio/gpio-*wm*.c
20364 F:      drivers/gpio/gpio-arizona.c
20365 F:      drivers/hwmon/wm83??-hwmon.c
20366 F:      drivers/input/misc/wm831x-on.c
20367 F:      drivers/input/touchscreen/wm831x-ts.c
20368 F:      drivers/input/touchscreen/wm97*.c
20369 F:      drivers/leds/leds-wm83*.c
20370 F:      drivers/mfd/arizona*
20371 F:      drivers/mfd/cs47l24*
20372 F:      drivers/mfd/wm*.c
20373 F:      drivers/power/supply/wm83*.c
20374 F:      drivers/regulator/arizona*
20375 F:      drivers/regulator/wm8*.c
20376 F:      drivers/rtc/rtc-wm83*.c
20377 F:      drivers/video/backlight/wm83*_bl.c
20378 F:      drivers/watchdog/wm83*_wdt.c
20379 F:      include/linux/mfd/arizona/
20380 F:      include/linux/mfd/wm831x/
20381 F:      include/linux/mfd/wm8350/
20382 F:      include/linux/mfd/wm8400*
20383 F:      include/linux/regulator/arizona*
20384 F:      include/linux/wm97xx.h
20385 F:      include/sound/wm????.h
20386 F:      sound/soc/codecs/arizona*
20387 F:      sound/soc/codecs/cs47l24*
20388 F:      sound/soc/codecs/wm*
20389
20390 WORKQUEUE
20391 M:      Tejun Heo <tj@kernel.org>
20392 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20393 S:      Maintained
20394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20395 F:      Documentation/core-api/workqueue.rst
20396 F:      include/linux/workqueue.h
20397 F:      kernel/workqueue.c
20398
20399 WWAN DRIVERS
20400 M:      Loic Poulain <loic.poulain@linaro.org>
20401 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20402 R:      Johannes Berg <johannes@sipsolutions.net>
20403 L:      netdev@vger.kernel.org
20404 S:      Maintained
20405 F:      drivers/net/wwan/
20406 F:      include/linux/wwan.h
20407 F:      include/uapi/linux/wwan.h
20408
20409 X-POWERS AXP288 PMIC DRIVERS
20410 M:      Hans de Goede <hdegoede@redhat.com>
20411 S:      Maintained
20412 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20413 N:      axp288
20414
20415 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20416 M:      Chen-Yu Tsai <wens@csie.org>
20417 L:      linux-kernel@vger.kernel.org
20418 S:      Maintained
20419 N:      axp[128]
20420
20421 X.25 STACK
20422 M:      Martin Schiller <ms@dev.tdt.de>
20423 L:      linux-x25@vger.kernel.org
20424 S:      Maintained
20425 F:      Documentation/networking/lapb-module.rst
20426 F:      Documentation/networking/x25*
20427 F:      drivers/net/wan/hdlc_x25.c
20428 F:      drivers/net/wan/lapbether.c
20429 F:      include/*/lapb.h
20430 F:      include/net/x25*
20431 F:      include/uapi/linux/x25.h
20432 F:      net/lapb/
20433 F:      net/x25/
20434
20435 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20436 M:      Thomas Gleixner <tglx@linutronix.de>
20437 M:      Ingo Molnar <mingo@redhat.com>
20438 M:      Borislav Petkov <bp@alien8.de>
20439 M:      Dave Hansen <dave.hansen@linux.intel.com>
20440 M:      x86@kernel.org
20441 R:      "H. Peter Anvin" <hpa@zytor.com>
20442 L:      linux-kernel@vger.kernel.org
20443 S:      Maintained
20444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20445 F:      Documentation/devicetree/bindings/x86/
20446 F:      Documentation/x86/
20447 F:      arch/x86/
20448
20449 X86 ENTRY CODE
20450 M:      Andy Lutomirski <luto@kernel.org>
20451 L:      linux-kernel@vger.kernel.org
20452 S:      Maintained
20453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20454 F:      arch/x86/entry/
20455
20456 X86 MCE INFRASTRUCTURE
20457 M:      Tony Luck <tony.luck@intel.com>
20458 M:      Borislav Petkov <bp@alien8.de>
20459 L:      linux-edac@vger.kernel.org
20460 S:      Maintained
20461 F:      arch/x86/kernel/cpu/mce/*
20462
20463 X86 MICROCODE UPDATE SUPPORT
20464 M:      Borislav Petkov <bp@alien8.de>
20465 S:      Maintained
20466 F:      arch/x86/kernel/cpu/microcode/*
20467
20468 X86 MM
20469 M:      Dave Hansen <dave.hansen@linux.intel.com>
20470 M:      Andy Lutomirski <luto@kernel.org>
20471 M:      Peter Zijlstra <peterz@infradead.org>
20472 L:      linux-kernel@vger.kernel.org
20473 S:      Maintained
20474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20475 F:      arch/x86/mm/
20476
20477 X86 PLATFORM DRIVERS
20478 M:      Hans de Goede <hdegoede@redhat.com>
20479 M:      Mark Gross <mgross@linux.intel.com>
20480 L:      platform-driver-x86@vger.kernel.org
20481 S:      Maintained
20482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20483 F:      drivers/platform/olpc/
20484 F:      drivers/platform/x86/
20485
20486 X86 PLATFORM DRIVERS - ARCH
20487 R:      Darren Hart <dvhart@infradead.org>
20488 R:      Andy Shevchenko <andy@infradead.org>
20489 L:      platform-driver-x86@vger.kernel.org
20490 L:      x86@kernel.org
20491 S:      Maintained
20492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20493 F:      arch/x86/platform
20494
20495 X86 PLATFORM UV HPE SUPERDOME FLEX
20496 M:      Steve Wahl <steve.wahl@hpe.com>
20497 R:      Mike Travis <mike.travis@hpe.com>
20498 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20499 R:      Russ Anderson <russ.anderson@hpe.com>
20500 S:      Supported
20501 F:      arch/x86/include/asm/uv/
20502 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20503 F:      arch/x86/platform/uv/
20504
20505 X86 VDSO
20506 M:      Andy Lutomirski <luto@kernel.org>
20507 L:      linux-kernel@vger.kernel.org
20508 S:      Maintained
20509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20510 F:      arch/x86/entry/vdso/
20511
20512 XARRAY
20513 M:      Matthew Wilcox <willy@infradead.org>
20514 L:      linux-fsdevel@vger.kernel.org
20515 S:      Supported
20516 F:      Documentation/core-api/xarray.rst
20517 F:      include/linux/idr.h
20518 F:      include/linux/xarray.h
20519 F:      lib/idr.c
20520 F:      lib/xarray.c
20521 F:      tools/testing/radix-tree
20522
20523 XBOX DVD IR REMOTE
20524 M:      Benjamin Valentin <benpicco@googlemail.com>
20525 S:      Maintained
20526 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20527 F:      drivers/media/rc/xbox_remote.c
20528
20529 XC2028/3028 TUNER DRIVER
20530 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20531 L:      linux-media@vger.kernel.org
20532 S:      Maintained
20533 W:      https://linuxtv.org
20534 T:      git git://linuxtv.org/media_tree.git
20535 F:      drivers/media/tuners/tuner-xc2028.*
20536
20537 XDP (eXpress Data Path)
20538 M:      Alexei Starovoitov <ast@kernel.org>
20539 M:      Daniel Borkmann <daniel@iogearbox.net>
20540 M:      David S. Miller <davem@davemloft.net>
20541 M:      Jakub Kicinski <kuba@kernel.org>
20542 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20543 M:      John Fastabend <john.fastabend@gmail.com>
20544 L:      netdev@vger.kernel.org
20545 L:      bpf@vger.kernel.org
20546 S:      Supported
20547 F:      include/net/xdp.h
20548 F:      include/net/xdp_priv.h
20549 F:      include/trace/events/xdp.h
20550 F:      kernel/bpf/cpumap.c
20551 F:      kernel/bpf/devmap.c
20552 F:      net/core/xdp.c
20553 F:      samples/bpf/xdp*
20554 F:      tools/testing/selftests/bpf/*xdp*
20555 F:      tools/testing/selftests/bpf/*/*xdp*
20556 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20557 F:      drivers/net/ethernet/*/*/*xdp*
20558 K:      (?:\b|_)xdp(?:\b|_)
20559
20560 XDP SOCKETS (AF_XDP)
20561 M:      Björn Töpel <bjorn@kernel.org>
20562 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20563 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20564 L:      netdev@vger.kernel.org
20565 L:      bpf@vger.kernel.org
20566 S:      Maintained
20567 F:      Documentation/networking/af_xdp.rst
20568 F:      include/net/xdp_sock*
20569 F:      include/net/xsk_buff_pool.h
20570 F:      include/uapi/linux/if_xdp.h
20571 F:      include/uapi/linux/xdp_diag.h
20572 F:      include/net/netns/xdp.h
20573 F:      net/xdp/
20574 F:      samples/bpf/xdpsock*
20575 F:      tools/lib/bpf/xsk*
20576
20577 XEN BLOCK SUBSYSTEM
20578 M:      Roger Pau Monné <roger.pau@citrix.com>
20579 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20580 S:      Supported
20581 F:      drivers/block/xen*
20582 F:      drivers/block/xen-blkback/*
20583
20584 XEN HYPERVISOR ARM
20585 M:      Stefano Stabellini <sstabellini@kernel.org>
20586 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20587 S:      Maintained
20588 F:      arch/arm/include/asm/xen/
20589 F:      arch/arm/xen/
20590
20591 XEN HYPERVISOR ARM64
20592 M:      Stefano Stabellini <sstabellini@kernel.org>
20593 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20594 S:      Maintained
20595 F:      arch/arm64/include/asm/xen/
20596 F:      arch/arm64/xen/
20597
20598 XEN HYPERVISOR INTERFACE
20599 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20600 M:      Juergen Gross <jgross@suse.com>
20601 R:      Stefano Stabellini <sstabellini@kernel.org>
20602 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20603 S:      Supported
20604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20605 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20606 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20607 F:      arch/x86/include/asm/pvclock-abi.h
20608 F:      arch/x86/include/asm/xen/
20609 F:      arch/x86/platform/pvh/
20610 F:      arch/x86/xen/
20611 F:      drivers/*/xen-*front.c
20612 F:      drivers/xen/
20613 F:      include/uapi/xen/
20614 F:      include/xen/
20615
20616 XEN NETWORK BACKEND DRIVER
20617 M:      Wei Liu <wei.liu@kernel.org>
20618 M:      Paul Durrant <paul@xen.org>
20619 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20620 L:      netdev@vger.kernel.org
20621 S:      Supported
20622 F:      drivers/net/xen-netback/*
20623
20624 XEN PCI SUBSYSTEM
20625 M:      Juergen Gross <jgross@suse.com>
20626 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20627 S:      Supported
20628 F:      arch/x86/pci/*xen*
20629 F:      drivers/pci/*xen*
20630
20631 XEN PVSCSI DRIVERS
20632 M:      Juergen Gross <jgross@suse.com>
20633 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20634 L:      linux-scsi@vger.kernel.org
20635 S:      Supported
20636 F:      drivers/scsi/xen-scsifront.c
20637 F:      drivers/xen/xen-scsiback.c
20638 F:      include/xen/interface/io/vscsiif.h
20639
20640 XEN SOUND FRONTEND DRIVER
20641 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20642 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20643 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20644 S:      Supported
20645 F:      sound/xen/*
20646
20647 XEN SWIOTLB SUBSYSTEM
20648 M:      Juergen Gross <jgross@suse.com>
20649 M:      Stefano Stabellini <sstabellini@kernel.org>
20650 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20651 L:      iommu@lists.linux-foundation.org
20652 L:      iommu@lists.linux.dev
20653 S:      Supported
20654 F:      arch/x86/xen/*swiotlb*
20655 F:      drivers/xen/*swiotlb*
20656
20657 XFS FILESYSTEM
20658 C:      irc://irc.oftc.net/xfs
20659 M:      Leah Rumancik <leah.rumancik@gmail.com>
20660 M:      Darrick J. Wong <djwong@kernel.org>
20661 M:      linux-xfs@vger.kernel.org
20662 L:      linux-xfs@vger.kernel.org
20663 S:      Supported
20664 W:      http://xfs.org/
20665 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20666 F:      Documentation/ABI/testing/sysfs-fs-xfs
20667 F:      Documentation/admin-guide/xfs.rst
20668 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20669 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20670 F:      fs/xfs/
20671 F:      include/uapi/linux/dqblk_xfs.h
20672 F:      include/uapi/linux/fsmap.h
20673
20674 XILINX AXI ETHERNET DRIVER
20675 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20676 S:      Maintained
20677 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20678
20679 XILINX CAN DRIVER
20680 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20681 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20682 L:      linux-can@vger.kernel.org
20683 S:      Maintained
20684 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20685 F:      drivers/net/can/xilinx_can.c
20686
20687 XILINX GPIO DRIVER
20688 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20689 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20690 R:      Michal Simek <michal.simek@xilinx.com>
20691 S:      Maintained
20692 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20693 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20694 F:      drivers/gpio/gpio-xilinx.c
20695 F:      drivers/gpio/gpio-zynq.c
20696
20697 XILINX SD-FEC IP CORES
20698 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20699 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20700 S:      Maintained
20701 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20702 F:      Documentation/misc-devices/xilinx_sdfec.rst
20703 F:      drivers/misc/Kconfig
20704 F:      drivers/misc/Makefile
20705 F:      drivers/misc/xilinx_sdfec.c
20706 F:      include/uapi/misc/xilinx_sdfec.h
20707
20708 XILINX UARTLITE SERIAL DRIVER
20709 M:      Peter Korsgaard <jacmet@sunsite.dk>
20710 L:      linux-serial@vger.kernel.org
20711 S:      Maintained
20712 F:      drivers/tty/serial/uartlite.c
20713
20714 XILINX VIDEO IP CORES
20715 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20716 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20717 L:      linux-media@vger.kernel.org
20718 S:      Supported
20719 T:      git git://linuxtv.org/media_tree.git
20720 F:      Documentation/devicetree/bindings/media/xilinx/
20721 F:      drivers/media/platform/xilinx/
20722 F:      include/uapi/linux/xilinx-v4l2-controls.h
20723
20724 XILINX ZYNQMP DPDMA DRIVER
20725 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20726 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20727 L:      dmaengine@vger.kernel.org
20728 S:      Supported
20729 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20730 F:      drivers/dma/xilinx/xilinx_dpdma.c
20731 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20732
20733 XILINX ZYNQMP PSGTR PHY DRIVER
20734 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20735 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20736 L:      linux-kernel@vger.kernel.org
20737 S:      Supported
20738 T:      git https://github.com/Xilinx/linux-xlnx.git
20739 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20740 F:      drivers/phy/xilinx/phy-zynqmp.c
20741
20742 XILLYBUS DRIVER
20743 M:      Eli Billauer <eli.billauer@gmail.com>
20744 L:      linux-kernel@vger.kernel.org
20745 S:      Supported
20746 F:      drivers/char/xillybus/
20747
20748 XLP9XX I2C DRIVER
20749 M:      George Cherian <gcherian@marvell.com>
20750 L:      linux-i2c@vger.kernel.org
20751 S:      Supported
20752 W:      http://www.marvell.com
20753 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20754 F:      drivers/i2c/busses/i2c-xlp9xx.c
20755
20756 XRA1403 GPIO EXPANDER
20757 M:      Nandor Han <nandor.han@ge.com>
20758 M:      Semi Malinen <semi.malinen@ge.com>
20759 L:      linux-gpio@vger.kernel.org
20760 S:      Maintained
20761 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20762 F:      drivers/gpio/gpio-xra1403.c
20763
20764 XTENSA XTFPGA PLATFORM SUPPORT
20765 M:      Max Filippov <jcmvbkbc@gmail.com>
20766 L:      linux-xtensa@linux-xtensa.org
20767 S:      Maintained
20768 F:      drivers/spi/spi-xtensa-xtfpga.c
20769 F:      sound/soc/xtensa/xtfpga-i2s.c
20770
20771 YAM DRIVER FOR AX.25
20772 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20773 L:      linux-hams@vger.kernel.org
20774 S:      Maintained
20775 F:      drivers/net/hamradio/yam*
20776 F:      include/linux/yam.h
20777
20778 YAMA SECURITY MODULE
20779 M:      Kees Cook <keescook@chromium.org>
20780 S:      Supported
20781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20782 F:      Documentation/admin-guide/LSM/Yama.rst
20783 F:      security/yama/
20784
20785 YEALINK PHONE DRIVER
20786 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20787 L:      usbb2k-api-dev@nongnu.org
20788 S:      Maintained
20789 F:      Documentation/input/devices/yealink.rst
20790 F:      drivers/input/misc/yealink.*
20791
20792 Z8530 DRIVER FOR AX.25
20793 M:      Joerg Reuter <jreuter@yaina.de>
20794 L:      linux-hams@vger.kernel.org
20795 S:      Maintained
20796 W:      http://yaina.de/jreuter/
20797 W:      http://www.qsl.net/dl1bke/
20798 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20799 F:      drivers/net/hamradio/*scc.c
20800 F:      drivers/net/hamradio/z8530.h
20801
20802 ZBUD COMPRESSED PAGE ALLOCATOR
20803 M:      Seth Jennings <sjenning@redhat.com>
20804 M:      Dan Streetman <ddstreet@ieee.org>
20805 L:      linux-mm@kvack.org
20806 S:      Maintained
20807 F:      mm/zbud.c
20808
20809 ZD1211RW WIRELESS DRIVER
20810 M:      Ulrich Kunitz <kune@deine-taler.de>
20811 L:      linux-wireless@vger.kernel.org
20812 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20813 S:      Maintained
20814 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20815 F:      drivers/net/wireless/zydas/zd1211rw/
20816
20817 ZD1301 MEDIA DRIVER
20818 M:      Antti Palosaari <crope@iki.fi>
20819 L:      linux-media@vger.kernel.org
20820 S:      Maintained
20821 W:      https://linuxtv.org/
20822 W:      http://palosaari.fi/linux/
20823 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20824 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20825
20826 ZD1301_DEMOD MEDIA DRIVER
20827 M:      Antti Palosaari <crope@iki.fi>
20828 L:      linux-media@vger.kernel.org
20829 S:      Maintained
20830 W:      https://linuxtv.org/
20831 W:      http://palosaari.fi/linux/
20832 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20833 F:      drivers/media/dvb-frontends/zd1301_demod*
20834
20835 ZHAOXIN PROCESSOR SUPPORT
20836 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20837 L:      linux-kernel@vger.kernel.org
20838 S:      Maintained
20839 F:      arch/x86/kernel/cpu/zhaoxin.c
20840
20841 ZONEFS FILESYSTEM
20842 M:      Damien Le Moal <damien.lemoal@wdc.com>
20843 M:      Naohiro Aota <naohiro.aota@wdc.com>
20844 R:      Johannes Thumshirn <jth@kernel.org>
20845 L:      linux-fsdevel@vger.kernel.org
20846 S:      Maintained
20847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20848 F:      Documentation/filesystems/zonefs.rst
20849 F:      fs/zonefs/
20850
20851 ZPOOL COMPRESSED PAGE STORAGE API
20852 M:      Dan Streetman <ddstreet@ieee.org>
20853 L:      linux-mm@kvack.org
20854 S:      Maintained
20855 F:      include/linux/zpool.h
20856 F:      mm/zpool.c
20857
20858 ZR36067 VIDEO FOR LINUX DRIVER
20859 M:      Corentin Labbe <clabbe@baylibre.com>
20860 L:      mjpeg-users@lists.sourceforge.net
20861 L:      linux-media@vger.kernel.org
20862 S:      Maintained
20863 W:      http://mjpeg.sourceforge.net/driver-zoran/
20864 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20865 F:      Documentation/driver-api/media/drivers/zoran.rst
20866 F:      drivers/staging/media/zoran/
20867
20868 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20869 M:      Minchan Kim <minchan@kernel.org>
20870 M:      Nitin Gupta <ngupta@vflare.org>
20871 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20872 L:      linux-kernel@vger.kernel.org
20873 S:      Maintained
20874 F:      Documentation/admin-guide/blockdev/zram.rst
20875 F:      drivers/block/zram/
20876
20877 ZS DECSTATION Z85C30 SERIAL DRIVER
20878 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20879 S:      Maintained
20880 F:      drivers/tty/serial/zs.*
20881
20882 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20883 M:      Minchan Kim <minchan@kernel.org>
20884 M:      Nitin Gupta <ngupta@vflare.org>
20885 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20886 L:      linux-mm@kvack.org
20887 S:      Maintained
20888 F:      Documentation/vm/zsmalloc.rst
20889 F:      include/linux/zsmalloc.h
20890 F:      mm/zsmalloc.c
20891
20892 ZSWAP COMPRESSED SWAP CACHING
20893 M:      Seth Jennings <sjenning@redhat.com>
20894 M:      Dan Streetman <ddstreet@ieee.org>
20895 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20896 L:      linux-mm@kvack.org
20897 S:      Maintained
20898 F:      mm/zswap.c
20899
20900 THE REST
20901 M:      Linus Torvalds <torvalds@linux-foundation.org>
20902 L:      linux-kernel@vger.kernel.org
20903 S:      Buried alive in reporters
20904 Q:      http://patchwork.kernel.org/project/LKML/list/
20905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20906 F:      *
20907 F:      */