Merge tag 'dt-5.16' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[sfrench/cifs-2.6.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 R:      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 R:      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 FOR ARM64 (ACPI/arm64)
382 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
383 M:      Hanjun Guo <guohanjun@huawei.com>
384 M:      Sudeep Holla <sudeep.holla@arm.com>
385 L:      linux-acpi@vger.kernel.org
386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
387 S:      Maintained
388 F:      drivers/acpi/arm64
389
390 ACPI I2C MULTI INSTANTIATE DRIVER
391 M:      Hans de Goede <hdegoede@redhat.com>
392 L:      platform-driver-x86@vger.kernel.org
393 S:      Maintained
394 F:      drivers/platform/x86/i2c-multi-instantiate.c
395
396 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
397 M:      Sudeep Holla <sudeep.holla@arm.com>
398 L:      linux-acpi@vger.kernel.org
399 S:      Supported
400 F:      drivers/mailbox/pcc.c
401
402 ACPI PMIC DRIVERS
403 M:      "Rafael J. Wysocki" <rafael@kernel.org>
404 M:      Len Brown <lenb@kernel.org>
405 R:      Andy Shevchenko <andy@kernel.org>
406 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
407 L:      linux-acpi@vger.kernel.org
408 S:      Supported
409 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
410 B:      https://bugzilla.kernel.org
411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
412 F:      drivers/acpi/pmic/
413
414 ACPI THERMAL DRIVER
415 M:      Rafael J. Wysocki <rafael@kernel.org>
416 R:      Zhang Rui <rui.zhang@intel.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 W:      https://01.org/linux-acpi
420 B:      https://bugzilla.kernel.org
421 F:      drivers/acpi/*thermal*
422
423 ACPI VIOT DRIVER
424 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
425 L:      linux-acpi@vger.kernel.org
426 L:      iommu@lists.linux-foundation.org
427 S:      Maintained
428 F:      drivers/acpi/viot.c
429 F:      include/linux/acpi_viot.h
430
431 ACPI WMI DRIVER
432 L:      platform-driver-x86@vger.kernel.org
433 S:      Orphan
434 F:      drivers/platform/x86/wmi.c
435 F:      include/uapi/linux/wmi.h
436
437 ACRN HYPERVISOR SERVICE MODULE
438 M:      Fei Li <fei1.li@intel.com>
439 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
440 S:      Supported
441 W:      https://projectacrn.org
442 F:      Documentation/virt/acrn/
443 F:      drivers/virt/acrn/
444 F:      include/uapi/linux/acrn.h
445
446 AD1889 ALSA SOUND DRIVER
447 L:      linux-parisc@vger.kernel.org
448 S:      Maintained
449 W:      https://parisc.wiki.kernel.org/index.php/AD1889
450 F:      sound/pci/ad1889.*
451
452 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
453 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
454 L:      linux-iio@vger.kernel.org
455 S:      Supported
456 F:      drivers/iio/potentiometer/ad5110.c
457
458 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
459 M:      Michael Hennerich <michael.hennerich@analog.com>
460 S:      Supported
461 W:      http://wiki.analog.com/AD5254
462 W:      http://ez.analog.com/community/linux-device-drivers
463 F:      drivers/misc/ad525x_dpot.c
464
465 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 S:      Supported
468 W:      http://wiki.analog.com/AD5398
469 W:      http://ez.analog.com/community/linux-device-drivers
470 F:      drivers/regulator/ad5398.c
471
472 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
473 M:      Michael Hennerich <michael.hennerich@analog.com>
474 S:      Supported
475 W:      http://wiki.analog.com/AD7142
476 W:      http://ez.analog.com/community/linux-device-drivers
477 F:      drivers/input/misc/ad714x.c
478
479 AD7877 TOUCHSCREEN DRIVER
480 M:      Michael Hennerich <michael.hennerich@analog.com>
481 S:      Supported
482 W:      http://wiki.analog.com/AD7877
483 W:      http://ez.analog.com/community/linux-device-drivers
484 F:      drivers/input/touchscreen/ad7877.c
485
486 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
487 M:      Michael Hennerich <michael.hennerich@analog.com>
488 S:      Supported
489 W:      http://wiki.analog.com/AD7879
490 W:      http://ez.analog.com/community/linux-device-drivers
491 F:      drivers/input/touchscreen/ad7879.c
492
493 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
494 M:      Jiri Kosina <jikos@kernel.org>
495 S:      Maintained
496
497 ADF7242 IEEE 802.15.4 RADIO DRIVER
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 L:      linux-wpan@vger.kernel.org
500 S:      Supported
501 W:      https://wiki.analog.com/ADF7242
502 W:      http://ez.analog.com/community/linux-device-drivers
503 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
504 F:      drivers/net/ieee802154/adf7242.c
505
506 ADM1025 HARDWARE MONITOR DRIVER
507 M:      Jean Delvare <jdelvare@suse.com>
508 L:      linux-hwmon@vger.kernel.org
509 S:      Maintained
510 F:      Documentation/hwmon/adm1025.rst
511 F:      drivers/hwmon/adm1025.c
512
513 ADM1029 HARDWARE MONITOR DRIVER
514 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
515 L:      linux-hwmon@vger.kernel.org
516 S:      Maintained
517 F:      drivers/hwmon/adm1029.c
518
519 ADM8211 WIRELESS DRIVER
520 L:      linux-wireless@vger.kernel.org
521 S:      Orphan
522 W:      https://wireless.wiki.kernel.org/
523 F:      drivers/net/wireless/admtek/adm8211.*
524
525 ADP1653 FLASH CONTROLLER DRIVER
526 M:      Sakari Ailus <sakari.ailus@iki.fi>
527 L:      linux-media@vger.kernel.org
528 S:      Maintained
529 F:      drivers/media/i2c/adp1653.c
530 F:      include/media/i2c/adp1653.h
531
532 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
533 M:      Michael Hennerich <michael.hennerich@analog.com>
534 S:      Supported
535 W:      http://wiki.analog.com/ADP5520
536 W:      http://ez.analog.com/community/linux-device-drivers
537 F:      drivers/gpio/gpio-adp5520.c
538 F:      drivers/input/keyboard/adp5520-keys.c
539 F:      drivers/leds/leds-adp5520.c
540 F:      drivers/mfd/adp5520.c
541 F:      drivers/video/backlight/adp5520_bl.c
542
543 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5588
547 W:      http://ez.analog.com/community/linux-device-drivers
548 F:      drivers/gpio/gpio-adp5588.c
549 F:      drivers/input/keyboard/adp5588-keys.c
550
551 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
552 M:      Michael Hennerich <michael.hennerich@analog.com>
553 S:      Supported
554 W:      http://wiki.analog.com/ADP8860
555 W:      http://ez.analog.com/community/linux-device-drivers
556 F:      drivers/video/backlight/adp8860_bl.c
557
558 ADT746X FAN DRIVER
559 M:      Colin Leroy <colin@colino.net>
560 S:      Maintained
561 F:      drivers/macintosh/therm_adt746x.c
562
563 ADT7475 HARDWARE MONITOR DRIVER
564 M:      Jean Delvare <jdelvare@suse.com>
565 L:      linux-hwmon@vger.kernel.org
566 S:      Maintained
567 F:      Documentation/hwmon/adt7475.rst
568 F:      drivers/hwmon/adt7475.c
569
570 ADVANSYS SCSI DRIVER
571 M:      Matthew Wilcox <willy@infradead.org>
572 M:      Hannes Reinecke <hare@suse.com>
573 L:      linux-scsi@vger.kernel.org
574 S:      Maintained
575 F:      Documentation/scsi/advansys.rst
576 F:      drivers/scsi/advansys.c
577
578 ADVANTECH SWBTN DRIVER
579 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
580 L:      platform-driver-x86@vger.kernel.org
581 S:      Maintained
582 F:      drivers/platform/x86/adv_swbutton.c
583
584 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
585 M:      Michael Hennerich <michael.hennerich@analog.com>
586 S:      Supported
587 W:      http://wiki.analog.com/ADXL345
588 W:      http://ez.analog.com/community/linux-device-drivers
589 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
590 F:      drivers/input/misc/adxl34x.c
591
592 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
593 M:      Michael Hennerich <michael.hennerich@analog.com>
594 S:      Supported
595 W:      http://ez.analog.com/community/linux-device-drivers
596 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
597 F:      drivers/iio/accel/adxl372.c
598 F:      drivers/iio/accel/adxl372_i2c.c
599 F:      drivers/iio/accel/adxl372_spi.c
600
601 AF9013 MEDIA DRIVER
602 M:      Antti Palosaari <crope@iki.fi>
603 L:      linux-media@vger.kernel.org
604 S:      Maintained
605 W:      https://linuxtv.org
606 W:      http://palosaari.fi/linux/
607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
608 T:      git git://linuxtv.org/anttip/media_tree.git
609 F:      drivers/media/dvb-frontends/af9013*
610
611 AF9033 MEDIA DRIVER
612 M:      Antti Palosaari <crope@iki.fi>
613 L:      linux-media@vger.kernel.org
614 S:      Maintained
615 W:      https://linuxtv.org
616 W:      http://palosaari.fi/linux/
617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
618 T:      git git://linuxtv.org/anttip/media_tree.git
619 F:      drivers/media/dvb-frontends/af9033*
620
621 AFFS FILE SYSTEM
622 M:      David Sterba <dsterba@suse.com>
623 L:      linux-fsdevel@vger.kernel.org
624 S:      Odd Fixes
625 F:      Documentation/filesystems/affs.rst
626 F:      fs/affs/
627
628 AFS FILESYSTEM
629 M:      David Howells <dhowells@redhat.com>
630 M:      Marc Dionne <marc.dionne@auristor.com>
631 L:      linux-afs@lists.infradead.org
632 S:      Supported
633 W:      https://www.infradead.org/~dhowells/kafs/
634 F:      Documentation/filesystems/afs.rst
635 F:      fs/afs/
636 F:      include/trace/events/afs.h
637
638 AGPGART DRIVER
639 M:      David Airlie <airlied@linux.ie>
640 S:      Maintained
641 T:      git git://anongit.freedesktop.org/drm/drm
642 F:      drivers/char/agp/
643 F:      include/linux/agp*
644 F:      include/uapi/linux/agp*
645
646 AHA152X SCSI DRIVER
647 M:      "Juergen E. Fischer" <fischer@norbit.de>
648 L:      linux-scsi@vger.kernel.org
649 S:      Maintained
650 F:      drivers/scsi/aha152x*
651 F:      drivers/scsi/pcmcia/aha152x*
652
653 AIC7XXX / AIC79XX SCSI DRIVER
654 M:      Hannes Reinecke <hare@suse.com>
655 L:      linux-scsi@vger.kernel.org
656 S:      Maintained
657 F:      drivers/scsi/aic7xxx/
658
659 AIMSLAB FM RADIO RECEIVER DRIVER
660 M:      Hans Verkuil <hverkuil@xs4all.nl>
661 L:      linux-media@vger.kernel.org
662 S:      Maintained
663 W:      https://linuxtv.org
664 T:      git git://linuxtv.org/media_tree.git
665 F:      drivers/media/radio/radio-aimslab*
666
667 AIO
668 M:      Benjamin LaHaise <bcrl@kvack.org>
669 L:      linux-aio@kvack.org
670 S:      Supported
671 F:      fs/aio.c
672 F:      include/linux/*aio*.h
673
674 AIRSPY MEDIA DRIVER
675 M:      Antti Palosaari <crope@iki.fi>
676 L:      linux-media@vger.kernel.org
677 S:      Maintained
678 W:      https://linuxtv.org
679 W:      http://palosaari.fi/linux/
680 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
681 T:      git git://linuxtv.org/anttip/media_tree.git
682 F:      drivers/media/usb/airspy/
683
684 ALACRITECH GIGABIT ETHERNET DRIVER
685 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
686 S:      Maintained
687 F:      drivers/net/ethernet/alacritech/*
688
689 ALCATEL SPEEDTOUCH USB DRIVER
690 M:      Duncan Sands <duncan.sands@free.fr>
691 L:      linux-usb@vger.kernel.org
692 S:      Maintained
693 W:      http://www.linux-usb.org/SpeedTouch/
694 F:      drivers/usb/atm/speedtch.c
695 F:      drivers/usb/atm/usbatm.c
696
697 ALCHEMY AU1XX0 MMC DRIVER
698 M:      Manuel Lauss <manuel.lauss@gmail.com>
699 S:      Maintained
700 F:      drivers/mmc/host/au1xmmc.c
701
702 ALI1563 I2C DRIVER
703 M:      Rudolf Marek <r.marek@assembler.cz>
704 L:      linux-i2c@vger.kernel.org
705 S:      Maintained
706 F:      Documentation/i2c/busses/i2c-ali1563.rst
707 F:      drivers/i2c/busses/i2c-ali1563.c
708
709 ALIENWARE WMI DRIVER
710 L:      Dell.Client.Kernel@dell.com
711 S:      Maintained
712 F:      drivers/platform/x86/dell/alienware-wmi.c
713
714 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
715 M:      Tomislav Denis <tomislav.denis@avl.com>
716 L:      linux-iio@vger.kernel.org
717 S:      Maintained
718 W:      http://www.allsensors.com/
719 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
720 F:      drivers/iio/pressure/dlhl60d.c
721
722 ALLEGRO DVT VIDEO IP CORE DRIVER
723 M:      Michael Tretter <m.tretter@pengutronix.de>
724 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
725 L:      linux-media@vger.kernel.org
726 S:      Maintained
727 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
728 F:      drivers/media/platform/allegro-dvt/
729
730 ALLWINNER A10 CSI DRIVER
731 M:      Maxime Ripard <mripard@kernel.org>
732 L:      linux-media@vger.kernel.org
733 S:      Maintained
734 T:      git git://linuxtv.org/media_tree.git
735 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
736 F:      drivers/media/platform/sunxi/sun4i-csi/
737
738 ALLWINNER CPUFREQ DRIVER
739 M:      Yangtao Li <tiny.windzz@gmail.com>
740 L:      linux-pm@vger.kernel.org
741 S:      Maintained
742 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
743 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
744
745 ALLWINNER CRYPTO DRIVERS
746 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
747 L:      linux-crypto@vger.kernel.org
748 S:      Maintained
749 F:      drivers/crypto/allwinner/
750
751 ALLWINNER HARDWARE SPINLOCK SUPPORT
752 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
755 F:      drivers/hwspinlock/sun6i_hwspinlock.c
756
757 ALLWINNER THERMAL DRIVER
758 M:      Vasily Khoruzhick <anarsoul@gmail.com>
759 M:      Yangtao Li <tiny.windzz@gmail.com>
760 L:      linux-pm@vger.kernel.org
761 S:      Maintained
762 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
763 F:      drivers/thermal/sun8i_thermal.c
764
765 ALLWINNER VPU DRIVER
766 M:      Maxime Ripard <mripard@kernel.org>
767 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
768 L:      linux-media@vger.kernel.org
769 S:      Maintained
770 F:      drivers/staging/media/sunxi/cedrus/
771
772 ALPHA PORT
773 M:      Richard Henderson <rth@twiddle.net>
774 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
775 M:      Matt Turner <mattst88@gmail.com>
776 L:      linux-alpha@vger.kernel.org
777 S:      Odd Fixes
778 F:      arch/alpha/
779
780 ALPS PS/2 TOUCHPAD DRIVER
781 R:      Pali Rohár <pali@kernel.org>
782 F:      drivers/input/mouse/alps.*
783
784 ALTERA I2C CONTROLLER DRIVER
785 M:      Thor Thayer <thor.thayer@linux.intel.com>
786 S:      Maintained
787 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
788 F:      drivers/i2c/busses/i2c-altera.c
789
790 ALTERA MAILBOX DRIVER
791 M:      Mun Yew Tham <mun.yew.tham@intel.com>
792 S:      Maintained
793 F:      drivers/mailbox/mailbox-altera.c
794
795 ALTERA MSGDMA IP CORE DRIVER
796 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
797 R:      Stefan Roese <sr@denx.de>
798 L:      dmaengine@vger.kernel.org
799 S:      Odd Fixes
800 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
801 F:      drivers/dma/altera-msgdma.c
802
803 ALTERA PIO DRIVER
804 M:      Mun Yew Tham <mun.yew.tham@intel.com>
805 L:      linux-gpio@vger.kernel.org
806 S:      Maintained
807 F:      drivers/gpio/gpio-altera.c
808
809 ALTERA SYSTEM MANAGER DRIVER
810 M:      Thor Thayer <thor.thayer@linux.intel.com>
811 S:      Maintained
812 F:      drivers/mfd/altera-sysmgr.c
813 F:      include/linux/mfd/altera-sysmgr.h
814
815 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
816 M:      Thor Thayer <thor.thayer@linux.intel.com>
817 S:      Maintained
818 F:      drivers/gpio/gpio-altera-a10sr.c
819 F:      drivers/mfd/altera-a10sr.c
820 F:      drivers/reset/reset-a10sr.c
821 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
822 F:      include/linux/mfd/altera-a10sr.h
823
824 ALTERA TRIPLE SPEED ETHERNET DRIVER
825 M:      Joyce Ooi <joyce.ooi@intel.com>
826 L:      netdev@vger.kernel.org
827 S:      Maintained
828 F:      drivers/net/ethernet/altera/
829
830 ALTERA UART/JTAG UART SERIAL DRIVERS
831 M:      Tobias Klauser <tklauser@distanz.ch>
832 L:      linux-serial@vger.kernel.org
833 S:      Maintained
834 F:      drivers/tty/serial/altera_jtaguart.c
835 F:      drivers/tty/serial/altera_uart.c
836 F:      include/linux/altera_jtaguart.h
837 F:      include/linux/altera_uart.h
838
839 AMAZON ANNAPURNA LABS FIC DRIVER
840 M:      Talel Shenhar <talel@amazon.com>
841 S:      Maintained
842 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
843 F:      drivers/irqchip/irq-al-fic.c
844
845 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
846 M:      Talel Shenhar <talel@amazon.com>
847 M:      Talel Shenhar <talelshenhar@gmail.com>
848 S:      Maintained
849 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
850 F:      drivers/edac/al_mc_edac.c
851
852 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
853 M:      Talel Shenhar <talel@amazon.com>
854 S:      Maintained
855 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
856 F:      drivers/thermal/thermal_mmio.c
857
858 AMAZON ETHERNET DRIVERS
859 M:      Netanel Belgazal <netanel@amazon.com>
860 M:      Arthur Kiyanovski <akiyano@amazon.com>
861 R:      Guy Tzalik <gtzalik@amazon.com>
862 R:      Saeed Bishara <saeedb@amazon.com>
863 L:      netdev@vger.kernel.org
864 S:      Supported
865 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
866 F:      drivers/net/ethernet/amazon/
867
868 AMAZON RDMA EFA DRIVER
869 M:      Gal Pressman <galpress@amazon.com>
870 R:      Yossi Leybovich <sleybo@amazon.com>
871 L:      linux-rdma@vger.kernel.org
872 S:      Supported
873 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
874 F:      drivers/infiniband/hw/efa/
875 F:      include/uapi/rdma/efa-abi.h
876
877 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
878 M:      Tom Lendacky <thomas.lendacky@amd.com>
879 M:      John Allen <john.allen@amd.com>
880 L:      linux-crypto@vger.kernel.org
881 S:      Supported
882 F:      drivers/crypto/ccp/
883 F:      include/linux/ccp.h
884
885 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
886 M:      Brijesh Singh <brijesh.singh@amd.com>
887 M:      Tom Lendacky <thomas.lendacky@amd.com>
888 L:      linux-crypto@vger.kernel.org
889 S:      Supported
890 F:      drivers/crypto/ccp/sev*
891 F:      include/uapi/linux/psp-sev.h
892
893 AMD DISPLAY CORE
894 M:      Harry Wentland <harry.wentland@amd.com>
895 M:      Leo Li <sunpeng.li@amd.com>
896 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
897 L:      amd-gfx@lists.freedesktop.org
898 S:      Supported
899 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
900 F:      drivers/gpu/drm/amd/display/
901
902 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
903 M:      Huang Rui <ray.huang@amd.com>
904 L:      linux-hwmon@vger.kernel.org
905 S:      Supported
906 F:      Documentation/hwmon/fam15h_power.rst
907 F:      drivers/hwmon/fam15h_power.c
908
909 AMD FCH GPIO DRIVER
910 M:      Enrico Weigelt, metux IT consult <info@metux.net>
911 L:      linux-gpio@vger.kernel.org
912 S:      Maintained
913 F:      drivers/gpio/gpio-amd-fch.c
914 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
915
916 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
917 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
918 S:      Orphan
919 F:      drivers/usb/gadget/udc/amd5536udc.*
920
921 AMD GEODE PROCESSOR/CHIPSET SUPPORT
922 M:      Andres Salomon <dilinger@queued.net>
923 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
924 S:      Supported
925 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
926 F:      arch/x86/include/asm/geode.h
927 F:      drivers/char/hw_random/geode-rng.c
928 F:      drivers/crypto/geode*
929 F:      drivers/video/fbdev/geode/
930
931 AMD IOMMU (AMD-VI)
932 M:      Joerg Roedel <joro@8bytes.org>
933 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
934 L:      iommu@lists.linux-foundation.org
935 S:      Maintained
936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
937 F:      drivers/iommu/amd/
938 F:      include/linux/amd-iommu.h
939
940 AMD KFD
941 M:      Felix Kuehling <Felix.Kuehling@amd.com>
942 L:      amd-gfx@lists.freedesktop.org
943 S:      Supported
944 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
945 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
946 F:      drivers/gpu/drm/amd/amdkfd/
947 F:      drivers/gpu/drm/amd/include/cik_structs.h
948 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
949 F:      drivers/gpu/drm/amd/include/v9_structs.h
950 F:      drivers/gpu/drm/amd/include/vi_structs.h
951 F:      include/uapi/linux/kfd_ioctl.h
952
953 AMD SPI DRIVER
954 M:      Sanjay R Mehta <sanju.mehta@amd.com>
955 S:      Maintained
956 F:      drivers/spi/spi-amd.c
957
958 AMD MP2 I2C DRIVER
959 M:      Elie Morisse <syniurge@gmail.com>
960 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
961 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
962 L:      linux-i2c@vger.kernel.org
963 S:      Maintained
964 F:      drivers/i2c/busses/i2c-amd-mp2*
965
966 AMD PMC DRIVER
967 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
968 L:      platform-driver-x86@vger.kernel.org
969 S:      Maintained
970 F:      drivers/platform/x86/amd-pmc.*
971
972 AMD POWERPLAY AND SWSMU
973 M:      Evan Quan <evan.quan@amd.com>
974 L:      amd-gfx@lists.freedesktop.org
975 S:      Supported
976 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
977 F:      drivers/gpu/drm/amd/pm/
978
979 AMD PTDMA DRIVER
980 M:      Sanjay R Mehta <sanju.mehta@amd.com>
981 L:      dmaengine@vger.kernel.org
982 S:      Maintained
983 F:      drivers/dma/ptdma/
984
985 AMD SEATTLE DEVICE TREE SUPPORT
986 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
987 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
988 M:      Tom Lendacky <thomas.lendacky@amd.com>
989 S:      Supported
990 F:      arch/arm64/boot/dts/amd/
991
992 AMD XGBE DRIVER
993 M:      Tom Lendacky <thomas.lendacky@amd.com>
994 L:      netdev@vger.kernel.org
995 S:      Supported
996 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
997 F:      drivers/net/ethernet/amd/xgbe/
998
999 AMD SENSOR FUSION HUB DRIVER
1000 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1001 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1002 L:      linux-input@vger.kernel.org
1003 S:      Maintained
1004 F:      Documentation/hid/amd-sfh*
1005 F:      drivers/hid/amd-sfh-hid/
1006
1007 AMS AS73211 DRIVER
1008 M:      Christian Eggers <ceggers@arri.de>
1009 L:      linux-iio@vger.kernel.org
1010 S:      Maintained
1011 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1012 F:      drivers/iio/light/as73211.c
1013
1014 AMT (Automatic Multicast Tunneling)
1015 M:      Taehee Yoo <ap420073@gmail.com>
1016 L:      netdev@vger.kernel.org
1017 S:      Maintained
1018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1020 F:      drivers/net/amt.c
1021
1022 ANALOG DEVICES INC AD7192 DRIVER
1023 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1024 L:      linux-iio@vger.kernel.org
1025 S:      Supported
1026 W:      http://ez.analog.com/community/linux-device-drivers
1027 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1028 F:      drivers/iio/adc/ad7192.c
1029
1030 ANALOG DEVICES INC AD7292 DRIVER
1031 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1032 L:      linux-iio@vger.kernel.org
1033 S:      Supported
1034 W:      http://ez.analog.com/community/linux-device-drivers
1035 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1036 F:      drivers/iio/adc/ad7292.c
1037
1038 ANALOG DEVICES INC AD7768-1 DRIVER
1039 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1040 L:      linux-iio@vger.kernel.org
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1044 F:      drivers/iio/adc/ad7768-1.c
1045
1046 ANALOG DEVICES INC AD7780 DRIVER
1047 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1048 M:      Renato Lui Geh <renatogeh@gmail.com>
1049 L:      linux-iio@vger.kernel.org
1050 S:      Supported
1051 W:      http://ez.analog.com/community/linux-device-drivers
1052 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1053 F:      drivers/iio/adc/ad7780.c
1054
1055 ANALOG DEVICES INC AD9389B DRIVER
1056 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1057 L:      linux-media@vger.kernel.org
1058 S:      Maintained
1059 F:      drivers/media/i2c/ad9389b*
1060
1061 ANALOG DEVICES INC ADGS1408 DRIVER
1062 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1063 S:      Supported
1064 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1065 F:      drivers/mux/adgs1408.c
1066
1067 ANALOG DEVICES INC ADIN DRIVER
1068 M:      Michael Hennerich <michael.hennerich@analog.com>
1069 L:      netdev@vger.kernel.org
1070 S:      Supported
1071 W:      http://ez.analog.com/community/linux-device-drivers
1072 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1073 F:      drivers/net/phy/adin.c
1074
1075 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1076 M:      Nuno Sa <nuno.sa@analog.com>
1077 L:      linux-iio@vger.kernel.org
1078 S:      Supported
1079 F:      drivers/iio/imu/adis.c
1080 F:      include/linux/iio/imu/adis.h
1081
1082 ANALOG DEVICES INC ADIS16460 DRIVER
1083 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1084 L:      linux-iio@vger.kernel.org
1085 S:      Supported
1086 W:      http://ez.analog.com/community/linux-device-drivers
1087 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1088 F:      drivers/iio/imu/adis16460.c
1089
1090 ANALOG DEVICES INC ADIS16475 DRIVER
1091 M:      Nuno Sa <nuno.sa@analog.com>
1092 L:      linux-iio@vger.kernel.org
1093 W:      http://ez.analog.com/community/linux-device-drivers
1094 S:      Supported
1095 F:      drivers/iio/imu/adis16475.c
1096 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1097
1098 ANALOG DEVICES INC ADM1177 DRIVER
1099 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1100 L:      linux-hwmon@vger.kernel.org
1101 S:      Supported
1102 W:      http://ez.analog.com/community/linux-device-drivers
1103 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1104 F:      drivers/hwmon/adm1177.c
1105
1106 ANALOG DEVICES INC ADP5061 DRIVER
1107 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1108 L:      linux-pm@vger.kernel.org
1109 S:      Supported
1110 W:      http://ez.analog.com/community/linux-device-drivers
1111 F:      drivers/power/supply/adp5061.c
1112
1113 ANALOG DEVICES INC ADV7180 DRIVER
1114 M:      Lars-Peter Clausen <lars@metafoo.de>
1115 L:      linux-media@vger.kernel.org
1116 S:      Supported
1117 W:      http://ez.analog.com/community/linux-device-drivers
1118 F:      drivers/media/i2c/adv7180.c
1119 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1120
1121 ANALOG DEVICES INC ADV748X DRIVER
1122 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1123 L:      linux-media@vger.kernel.org
1124 S:      Maintained
1125 F:      drivers/media/i2c/adv748x/*
1126
1127 ANALOG DEVICES INC ADV7511 DRIVER
1128 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1129 L:      linux-media@vger.kernel.org
1130 S:      Maintained
1131 F:      drivers/media/i2c/adv7511*
1132
1133 ANALOG DEVICES INC ADV7604 DRIVER
1134 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1135 L:      linux-media@vger.kernel.org
1136 S:      Maintained
1137 F:      drivers/media/i2c/adv7604*
1138 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1139
1140 ANALOG DEVICES INC ADV7842 DRIVER
1141 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1142 L:      linux-media@vger.kernel.org
1143 S:      Maintained
1144 F:      drivers/media/i2c/adv7842*
1145
1146 ANALOG DEVICES INC ADXRS290 DRIVER
1147 M:      Nishant Malpani <nish.malpani25@gmail.com>
1148 L:      linux-iio@vger.kernel.org
1149 S:      Supported
1150 F:      drivers/iio/gyro/adxrs290.c
1151 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1152
1153 ANALOG DEVICES INC ASOC CODEC DRIVERS
1154 M:      Lars-Peter Clausen <lars@metafoo.de>
1155 M:      Nuno Sá <nuno.sa@analog.com>
1156 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1157 S:      Supported
1158 W:      http://wiki.analog.com/
1159 W:      http://ez.analog.com/community/linux-device-drivers
1160 F:      sound/soc/codecs/ad1*
1161 F:      sound/soc/codecs/ad7*
1162 F:      sound/soc/codecs/adau*
1163 F:      sound/soc/codecs/adav*
1164 F:      sound/soc/codecs/sigmadsp.*
1165 F:      sound/soc/codecs/ssm*
1166
1167 ANALOG DEVICES INC DMA DRIVERS
1168 M:      Lars-Peter Clausen <lars@metafoo.de>
1169 S:      Supported
1170 W:      http://ez.analog.com/community/linux-device-drivers
1171 F:      drivers/dma/dma-axi-dmac.c
1172
1173 ANALOG DEVICES INC IIO DRIVERS
1174 M:      Lars-Peter Clausen <lars@metafoo.de>
1175 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1176 S:      Supported
1177 W:      http://wiki.analog.com/
1178 W:      http://ez.analog.com/community/linux-device-drivers
1179 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1180 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1181 F:      Documentation/devicetree/bindings/iio/*/adi,*
1182 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1183 F:      drivers/iio/*/ad*
1184 F:      drivers/iio/adc/ltc249*
1185 F:      drivers/iio/amplifiers/hmc425a.c
1186 F:      drivers/staging/iio/*/ad*
1187 X:      drivers/iio/*/adjd*
1188
1189 ANALOGBITS PLL LIBRARIES
1190 M:      Paul Walmsley <paul.walmsley@sifive.com>
1191 S:      Supported
1192 F:      drivers/clk/analogbits/*
1193 F:      include/linux/clk/analogbits*
1194
1195 ANDES ARCHITECTURE
1196 M:      Nick Hu <nickhu@andestech.com>
1197 M:      Greentime Hu <green.hu@gmail.com>
1198 M:      Vincent Chen <deanbo422@gmail.com>
1199 S:      Supported
1200 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1201 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1202 F:      Documentation/devicetree/bindings/nds32/
1203 F:      arch/nds32/
1204 N:      nds32
1205 K:      nds32
1206
1207 ANDROID CONFIG FRAGMENTS
1208 M:      Rob Herring <robh@kernel.org>
1209 S:      Supported
1210 F:      kernel/configs/android*
1211
1212 ANDROID DRIVERS
1213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1214 M:      Arve Hjønnevåg <arve@android.com>
1215 M:      Todd Kjos <tkjos@android.com>
1216 M:      Martijn Coenen <maco@android.com>
1217 M:      Joel Fernandes <joel@joelfernandes.org>
1218 M:      Christian Brauner <christian@brauner.io>
1219 M:      Hridya Valsaraju <hridya@google.com>
1220 M:      Suren Baghdasaryan <surenb@google.com>
1221 L:      linux-kernel@vger.kernel.org
1222 S:      Supported
1223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1224 F:      drivers/android/
1225 F:      drivers/staging/android/
1226
1227 ANDROID GOLDFISH PIC DRIVER
1228 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1229 S:      Supported
1230 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1231 F:      drivers/irqchip/irq-goldfish-pic.c
1232
1233 ANDROID GOLDFISH RTC DRIVER
1234 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1235 S:      Supported
1236 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1237 F:      drivers/rtc/rtc-goldfish.c
1238
1239 AOA (Apple Onboard Audio) ALSA DRIVER
1240 M:      Johannes Berg <johannes@sipsolutions.net>
1241 L:      linuxppc-dev@lists.ozlabs.org
1242 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1243 S:      Maintained
1244 F:      sound/aoa/
1245
1246 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1247 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1248 L:      linux-iio@vger.kernel.org
1249 S:      Maintained
1250 F:      drivers/iio/adc/stx104.c
1251
1252 APM DRIVER
1253 M:      Jiri Kosina <jikos@kernel.org>
1254 S:      Odd fixes
1255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1256 F:      arch/x86/kernel/apm_32.c
1257 F:      drivers/char/apm-emulation.c
1258 F:      include/linux/apm_bios.h
1259 F:      include/uapi/linux/apm_bios.h
1260
1261 APPARMOR SECURITY MODULE
1262 M:      John Johansen <john.johansen@canonical.com>
1263 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1264 S:      Supported
1265 W:      wiki.apparmor.net
1266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1267 F:      Documentation/admin-guide/LSM/apparmor.rst
1268 F:      security/apparmor/
1269
1270 APPLE BCM5974 MULTITOUCH DRIVER
1271 M:      Henrik Rydberg <rydberg@bitmath.org>
1272 L:      linux-input@vger.kernel.org
1273 S:      Odd fixes
1274 F:      drivers/input/mouse/bcm5974.c
1275
1276 APPLE DART IOMMU DRIVER
1277 M:      Sven Peter <sven@svenpeter.dev>
1278 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1279 L:      iommu@lists.linux-foundation.org
1280 S:      Maintained
1281 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1282 F:      drivers/iommu/apple-dart.c
1283
1284 APPLE SMC DRIVER
1285 M:      Henrik Rydberg <rydberg@bitmath.org>
1286 L:      linux-hwmon@vger.kernel.org
1287 S:      Odd fixes
1288 F:      drivers/hwmon/applesmc.c
1289
1290 APPLETALK NETWORK LAYER
1291 L:      netdev@vger.kernel.org
1292 S:      Odd fixes
1293 F:      drivers/net/appletalk/
1294 F:      include/linux/atalk.h
1295 F:      include/uapi/linux/atalk.h
1296 F:      net/appletalk/
1297
1298 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1299 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1300 S:      Supported
1301 F:      arch/arm64/boot/dts/apm/
1302
1303 APPLIED MICRO (APM) X-GENE SOC EDAC
1304 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1305 S:      Supported
1306 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1307 F:      drivers/edac/xgene_edac.c
1308
1309 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1310 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1311 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1312 S:      Supported
1313 F:      drivers/net/ethernet/apm/xgene-v2/
1314
1315 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1316 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1317 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1318 M:      Quan Nguyen <quan@os.amperecomputing.com>
1319 S:      Supported
1320 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1321 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1322 F:      drivers/net/ethernet/apm/xgene/
1323 F:      drivers/net/mdio/mdio-xgene.c
1324
1325 APPLIED MICRO (APM) X-GENE SOC PMU
1326 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1327 S:      Supported
1328 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1329 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1330 F:      drivers/perf/xgene_pmu.c
1331
1332 APTINA CAMERA SENSOR PLL
1333 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1334 L:      linux-media@vger.kernel.org
1335 S:      Maintained
1336 F:      drivers/media/i2c/aptina-pll.*
1337
1338 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1339 M:      Aleksa Savic <savicaleksa83@gmail.com>
1340 L:      linux-hwmon@vger.kernel.org
1341 S:      Maintained
1342 F:      Documentation/hwmon/aquacomputer_d5next.rst
1343 F:      drivers/hwmon/aquacomputer_d5next.c
1344
1345 AQUANTIA ETHERNET DRIVER (atlantic)
1346 M:      Igor Russkikh <irusskikh@marvell.com>
1347 L:      netdev@vger.kernel.org
1348 S:      Supported
1349 W:      https://www.marvell.com/
1350 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1351 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1352 F:      drivers/net/ethernet/aquantia/atlantic/
1353
1354 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1355 M:      Egor Pomozov <epomozov@marvell.com>
1356 L:      netdev@vger.kernel.org
1357 S:      Supported
1358 W:      http://www.aquantia.com
1359 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1360
1361 ARASAN NAND CONTROLLER DRIVER
1362 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1363 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1364 L:      linux-mtd@lists.infradead.org
1365 S:      Maintained
1366 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1367 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1368
1369 ARC FRAMEBUFFER DRIVER
1370 M:      Jaya Kumar <jayalk@intworks.biz>
1371 S:      Maintained
1372 F:      drivers/video/fbdev/arcfb.c
1373 F:      drivers/video/fbdev/core/fb_defio.c
1374
1375 ARC PGU DRM DRIVER
1376 M:      Alexey Brodkin <abrodkin@synopsys.com>
1377 S:      Supported
1378 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1379 F:      drivers/gpu/drm/tiny/arcpgu.c
1380
1381 ARCNET NETWORK LAYER
1382 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1383 L:      netdev@vger.kernel.org
1384 S:      Maintained
1385 F:      drivers/net/arcnet/
1386 F:      include/uapi/linux/if_arcnet.h
1387
1388 ARM ARCHITECTED TIMER DRIVER
1389 M:      Mark Rutland <mark.rutland@arm.com>
1390 M:      Marc Zyngier <maz@kernel.org>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 S:      Maintained
1393 F:      arch/arm/include/asm/arch_timer.h
1394 F:      arch/arm64/include/asm/arch_timer.h
1395 F:      drivers/clocksource/arm_arch_timer.c
1396
1397 ARM HDLCD DRM DRIVER
1398 M:      Liviu Dudau <liviu.dudau@arm.com>
1399 S:      Supported
1400 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1401 F:      drivers/gpu/drm/arm/hdlcd_*
1402
1403 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1404 M:      Linus Walleij <linus.walleij@linaro.org>
1405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406 S:      Maintained
1407 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1408 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1409 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1410 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1411 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1412 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1413 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1414 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1415 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1416 F:      arch/arm/boot/dts/arm-realview-*
1417 F:      arch/arm/boot/dts/integrator*
1418 F:      arch/arm/boot/dts/versatile*
1419 F:      arch/arm/mach-integrator/
1420 F:      arch/arm/mach-realview/
1421 F:      arch/arm/mach-versatile/
1422 F:      arch/arm/plat-versatile/
1423 F:      drivers/bus/arm-integrator-lm.c
1424 F:      drivers/clk/versatile/
1425 F:      drivers/i2c/busses/i2c-versatile.c
1426 F:      drivers/irqchip/irq-versatile-fpga.c
1427 F:      drivers/mtd/maps/physmap-versatile.*
1428 F:      drivers/power/reset/arm-versatile-reboot.c
1429 F:      drivers/soc/versatile/
1430
1431 ARM KOMEDA DRM-KMS DRIVER
1432 M:      James (Qian) Wang <james.qian.wang@arm.com>
1433 M:      Liviu Dudau <liviu.dudau@arm.com>
1434 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1435 L:      Mali DP Maintainers <malidp@foss.arm.com>
1436 S:      Supported
1437 T:      git git://anongit.freedesktop.org/drm/drm-misc
1438 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1439 F:      Documentation/gpu/komeda-kms.rst
1440 F:      drivers/gpu/drm/arm/display/include/
1441 F:      drivers/gpu/drm/arm/display/komeda/
1442
1443 ARM MALI PANFROST DRM DRIVER
1444 M:      Rob Herring <robh@kernel.org>
1445 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1446 R:      Steven Price <steven.price@arm.com>
1447 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1448 L:      dri-devel@lists.freedesktop.org
1449 S:      Supported
1450 T:      git git://anongit.freedesktop.org/drm/drm-misc
1451 F:      drivers/gpu/drm/panfrost/
1452 F:      include/uapi/drm/panfrost_drm.h
1453
1454 ARM MALI-DP DRM DRIVER
1455 M:      Liviu Dudau <liviu.dudau@arm.com>
1456 M:      Brian Starkey <brian.starkey@arm.com>
1457 L:      Mali DP Maintainers <malidp@foss.arm.com>
1458 S:      Supported
1459 T:      git git://anongit.freedesktop.org/drm/drm-misc
1460 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1461 F:      Documentation/gpu/afbc.rst
1462 F:      drivers/gpu/drm/arm/
1463
1464 ARM MFM AND FLOPPY DRIVERS
1465 M:      Ian Molton <spyro@f2s.com>
1466 S:      Maintained
1467 F:      arch/arm/include/asm/floppy.h
1468 F:      arch/arm/mach-rpc/floppydma.S
1469
1470 ARM PMU PROFILING AND DEBUGGING
1471 M:      Will Deacon <will@kernel.org>
1472 M:      Mark Rutland <mark.rutland@arm.com>
1473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1476 F:      Documentation/devicetree/bindings/perf/
1477 F:      arch/arm*/include/asm/hw_breakpoint.h
1478 F:      arch/arm*/include/asm/perf_event.h
1479 F:      arch/arm*/kernel/hw_breakpoint.c
1480 F:      arch/arm*/kernel/perf_*
1481 F:      drivers/perf/
1482 F:      include/linux/perf/arm_pmu.h
1483
1484 ARM PORT
1485 M:      Russell King <linux@armlinux.org.uk>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 S:      Odd Fixes
1488 W:      http://www.armlinux.org.uk/
1489 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1490 F:      arch/arm/
1491 X:      arch/arm/boot/dts/
1492
1493 ARM PRIMECELL AACI PL041 DRIVER
1494 M:      Russell King <linux@armlinux.org.uk>
1495 S:      Odd Fixes
1496 F:      sound/arm/aaci.*
1497
1498 ARM PRIMECELL BUS SUPPORT
1499 M:      Russell King <linux@armlinux.org.uk>
1500 S:      Odd Fixes
1501 F:      drivers/amba/
1502 F:      include/linux/amba/bus.h
1503
1504 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1505 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1506 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1507 L:      linux-mtd@lists.infradead.org
1508 S:      Maintained
1509 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1510 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1511
1512 ARM PRIMECELL PL35X SMC DRIVER
1513 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1514 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1518 F:      drivers/memory/pl353-smc.c
1519
1520 ARM PRIMECELL CLCD PL110 DRIVER
1521 M:      Russell King <linux@armlinux.org.uk>
1522 S:      Odd Fixes
1523 F:      drivers/video/fbdev/amba-clcd.*
1524
1525 ARM PRIMECELL KMI PL050 DRIVER
1526 M:      Russell King <linux@armlinux.org.uk>
1527 S:      Odd Fixes
1528 F:      drivers/input/serio/ambakmi.*
1529 F:      include/linux/amba/kmi.h
1530
1531 ARM PRIMECELL MMCI PL180/1 DRIVER
1532 M:      Russell King <linux@armlinux.org.uk>
1533 S:      Odd Fixes
1534 F:      drivers/mmc/host/mmci.*
1535 F:      include/linux/amba/mmci.h
1536
1537 ARM PRIMECELL SSP PL022 SPI DRIVER
1538 M:      Linus Walleij <linus.walleij@linaro.org>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1542 F:      drivers/spi/spi-pl022.c
1543
1544 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1545 M:      Russell King <linux@armlinux.org.uk>
1546 S:      Odd Fixes
1547 F:      drivers/tty/serial/amba-pl01*.c
1548 F:      include/linux/amba/serial.h
1549
1550 ARM PRIMECELL VIC PL190/PL192 DRIVER
1551 M:      Linus Walleij <linus.walleij@linaro.org>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S:      Maintained
1554 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1555 F:      drivers/irqchip/irq-vic.c
1556
1557 ARM SMC WATCHDOG DRIVER
1558 M:      Julius Werner <jwerner@chromium.org>
1559 R:      Evan Benn <evanbenn@chromium.org>
1560 S:      Maintained
1561 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1562 F:      drivers/watchdog/arm_smc_wdt.c
1563
1564 ARM SMMU DRIVERS
1565 M:      Will Deacon <will@kernel.org>
1566 R:      Robin Murphy <robin.murphy@arm.com>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 S:      Maintained
1569 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1570 F:      drivers/iommu/arm/
1571 F:      drivers/iommu/io-pgtable-arm*
1572
1573 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1574 M:      Arnd Bergmann <arnd@arndb.de>
1575 M:      Olof Johansson <olof@lixom.net>
1576 M:      soc@kernel.org
1577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 S:      Maintained
1579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1580 F:      arch/arm/boot/dts/Makefile
1581 F:      arch/arm64/boot/dts/Makefile
1582
1583 ARM SUB-ARCHITECTURES
1584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 S:      Maintained
1586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1587 F:      arch/arm/mach-*/
1588 F:      arch/arm/plat-*/
1589
1590 ARM/ACTIONS SEMI ARCHITECTURE
1591 M:      Andreas Färber <afaerber@suse.de>
1592 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1595 S:      Maintained
1596 F:      Documentation/devicetree/bindings/arm/actions.yaml
1597 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1598 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1599 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1600 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1601 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1602 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1603 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1604 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1605 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1606 F:      arch/arm/boot/dts/owl-*
1607 F:      arch/arm/mach-actions/
1608 F:      arch/arm64/boot/dts/actions/
1609 F:      drivers/clk/actions/
1610 F:      drivers/clocksource/timer-owl*
1611 F:      drivers/dma/owl-dma.c
1612 F:      drivers/i2c/busses/i2c-owl.c
1613 F:      drivers/irqchip/irq-owl-sirq.c
1614 F:      drivers/mmc/host/owl-mmc.c
1615 F:      drivers/net/ethernet/actions/
1616 F:      drivers/pinctrl/actions/*
1617 F:      drivers/soc/actions/
1618 F:      include/dt-bindings/power/owl-*
1619 F:      include/dt-bindings/reset/actions,*
1620 F:      include/linux/soc/actions/
1621 N:      owl
1622
1623 ARM/ADS SPHERE MACHINE SUPPORT
1624 M:      Lennert Buytenhek <kernel@wantstofly.org>
1625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626 S:      Maintained
1627
1628 ARM/AFEB9260 MACHINE SUPPORT
1629 M:      Sergey Lapin <slapin@ossfans.org>
1630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1631 S:      Maintained
1632
1633 ARM/AJECO 1ARM MACHINE SUPPORT
1634 M:      Lennert Buytenhek <kernel@wantstofly.org>
1635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636 S:      Maintained
1637
1638 ARM/Allwinner SoC Clock Support
1639 M:      Emilio López <emilio@elopez.com.ar>
1640 S:      Maintained
1641 F:      drivers/clk/sunxi/
1642
1643 ARM/Allwinner sunXi SoC support
1644 M:      Maxime Ripard <mripard@kernel.org>
1645 M:      Chen-Yu Tsai <wens@csie.org>
1646 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 S:      Maintained
1649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1650 L:      linux-sunxi@lists.linux.dev
1651 F:      arch/arm/mach-sunxi/
1652 F:      arch/arm64/boot/dts/allwinner/
1653 F:      drivers/clk/sunxi-ng/
1654 F:      drivers/pinctrl/sunxi/
1655 F:      drivers/soc/sunxi/
1656 N:      allwinner
1657 N:      sun[x456789]i
1658 N:      sun50i
1659
1660 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1661 M:      Neil Armstrong <narmstrong@baylibre.com>
1662 M:      Jerome Brunet <jbrunet@baylibre.com>
1663 L:      linux-amlogic@lists.infradead.org
1664 S:      Maintained
1665 F:      Documentation/devicetree/bindings/clock/amlogic*
1666 F:      drivers/clk/meson/
1667 F:      include/dt-bindings/clock/gxbb*
1668 F:      include/dt-bindings/clock/meson*
1669
1670 ARM/Amlogic Meson SoC Crypto Drivers
1671 M:      Corentin Labbe <clabbe@baylibre.com>
1672 L:      linux-crypto@vger.kernel.org
1673 L:      linux-amlogic@lists.infradead.org
1674 S:      Maintained
1675 F:      Documentation/devicetree/bindings/crypto/amlogic*
1676 F:      drivers/crypto/amlogic/
1677
1678 ARM/Amlogic Meson SoC Sound Drivers
1679 M:      Jerome Brunet <jbrunet@baylibre.com>
1680 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1681 S:      Maintained
1682 F:      Documentation/devicetree/bindings/sound/amlogic*
1683 F:      sound/soc/meson/
1684
1685 ARM/Amlogic Meson SoC support
1686 M:      Neil Armstrong <narmstrong@baylibre.com>
1687 M:      Kevin Hilman <khilman@baylibre.com>
1688 R:      Jerome Brunet <jbrunet@baylibre.com>
1689 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691 L:      linux-amlogic@lists.infradead.org
1692 S:      Maintained
1693 W:      http://linux-meson.com/
1694 F:      arch/arm/boot/dts/meson*
1695 F:      arch/arm/mach-meson/
1696 F:      arch/arm64/boot/dts/amlogic/
1697 F:      drivers/mmc/host/meson*
1698 F:      drivers/pinctrl/meson/
1699 F:      drivers/rtc/rtc-meson*
1700 F:      drivers/soc/amlogic/
1701 N:      meson
1702
1703 ARM/Annapurna Labs ALPINE ARCHITECTURE
1704 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1705 M:      Antoine Tenart <atenart@kernel.org>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      arch/arm/boot/dts/alpine*
1709 F:      arch/arm/mach-alpine/
1710 F:      arch/arm64/boot/dts/amazon/
1711 F:      drivers/*/*alpine*
1712
1713 ARM/APPLE MACHINE SUPPORT
1714 M:      Hector Martin <marcan@marcan.st>
1715 M:      Sven Peter <sven@svenpeter.dev>
1716 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1718 S:      Maintained
1719 W:      https://asahilinux.org
1720 B:      https://github.com/AsahiLinux/linux/issues
1721 C:      irc://irc.oftc.net/asahi-dev
1722 T:      git https://github.com/AsahiLinux/linux.git
1723 F:      Documentation/devicetree/bindings/arm/apple.yaml
1724 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1725 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1726 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1727 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1728 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1729 F:      arch/arm64/boot/dts/apple/
1730 F:      drivers/i2c/busses/i2c-pasemi-core.c
1731 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1732 F:      drivers/irqchip/irq-apple-aic.c
1733 F:      drivers/mailbox/apple-mailbox.c
1734 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1735 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1736 F:      include/dt-bindings/pinctrl/apple.h
1737 F:      include/linux/apple-mailbox.h
1738
1739 ARM/ARTPEC MACHINE SUPPORT
1740 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1741 M:      Lars Persson <lars.persson@axis.com>
1742 L:      linux-arm-kernel@axis.com
1743 S:      Maintained
1744 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1745 F:      arch/arm/boot/dts/artpec6*
1746 F:      arch/arm/mach-artpec
1747 F:      drivers/clk/axis
1748 F:      drivers/crypto/axis
1749 F:      drivers/mmc/host/usdhi6rol0.c
1750 F:      drivers/pinctrl/pinctrl-artpec*
1751
1752 ARM/ASPEED I2C DRIVER
1753 M:      Brendan Higgins <brendanhiggins@google.com>
1754 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1755 R:      Joel Stanley <joel@jms.id.au>
1756 L:      linux-i2c@vger.kernel.org
1757 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1758 S:      Maintained
1759 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1760 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1761 F:      drivers/i2c/busses/i2c-aspeed.c
1762 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1763
1764 ARM/ASPEED MACHINE SUPPORT
1765 M:      Joel Stanley <joel@jms.id.au>
1766 R:      Andrew Jeffery <andrew@aj.id.au>
1767 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1768 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1769 S:      Supported
1770 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1772 F:      arch/arm/boot/dts/aspeed-*
1773 F:      arch/arm/mach-aspeed/
1774 N:      aspeed
1775
1776 ARM/BITMAIN ARCHITECTURE
1777 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 S:      Maintained
1780 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1781 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1782 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1783 F:      arch/arm64/boot/dts/bitmain/
1784 F:      drivers/clk/clk-bm1880.c
1785 F:      drivers/pinctrl/pinctrl-bm1880.c
1786
1787 ARM/CALXEDA HIGHBANK ARCHITECTURE
1788 M:      Andre Przywara <andre.przywara@arm.com>
1789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790 S:      Maintained
1791 F:      arch/arm/boot/dts/ecx-*.dts*
1792 F:      arch/arm/boot/dts/highbank.dts
1793 F:      arch/arm/mach-highbank/
1794
1795 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1796 M:      Krzysztof Halasa <khalasa@piap.pl>
1797 S:      Maintained
1798 F:      arch/arm/mach-cns3xxx/
1799
1800 ARM/CAVIUM THUNDER NETWORK DRIVER
1801 M:      Sunil Goutham <sgoutham@marvell.com>
1802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 S:      Supported
1804 F:      drivers/net/ethernet/cavium/thunder/
1805
1806 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1807 M:      Lukasz Majewski <lukma@denx.de>
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 F:      arch/arm/mach-ep93xx/ts72xx.c
1811
1812 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1813 M:      Alexander Shiyan <shc_work@mail.ru>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Odd Fixes
1816 N:      clps711x
1817
1818 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1819 M:      Lennert Buytenhek <kernel@wantstofly.org>
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S:      Maintained
1822
1823 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1824 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1825 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 S:      Maintained
1828 F:      arch/arm/mach-ep93xx/
1829 F:      arch/arm/mach-ep93xx/include/mach/
1830
1831 ARM/CLKDEV SUPPORT
1832 M:      Russell King <linux@armlinux.org.uk>
1833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1834 S:      Maintained
1835 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1836 F:      drivers/clk/clkdev.c
1837
1838 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1839 M:      Baruch Siach <baruch@tkos.co.il>
1840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1841 S:      Maintained
1842 F:      arch/arm/boot/dts/cx92755*
1843 N:      digicolor
1844
1845 ARM/CONTEC MICRO9 MACHINE SUPPORT
1846 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1847 S:      Maintained
1848 F:      arch/arm/mach-ep93xx/micro9.c
1849
1850 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1851 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1852 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1853 R:      Mike Leach <mike.leach@linaro.org>
1854 R:      Leo Yan <leo.yan@linaro.org>
1855 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857 S:      Maintained
1858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1859 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1860 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1861 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1862 F:      Documentation/devicetree/bindings/arm/coresight.txt
1863 F:      Documentation/devicetree/bindings/arm/ete.yaml
1864 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1865 F:      Documentation/trace/coresight/*
1866 F:      drivers/hwtracing/coresight/*
1867 F:      include/dt-bindings/arm/coresight-cti-dt.h
1868 F:      include/linux/coresight*
1869 F:      tools/perf/arch/arm/util/auxtrace.c
1870 F:      tools/perf/arch/arm/util/cs-etm.c
1871 F:      tools/perf/arch/arm/util/cs-etm.h
1872 F:      tools/perf/arch/arm/util/pmu.c
1873 F:      tools/perf/util/cs-etm-decoder/*
1874 F:      tools/perf/util/cs-etm.*
1875
1876 ARM/CORGI MACHINE SUPPORT
1877 M:      Richard Purdie <rpurdie@rpsys.net>
1878 S:      Maintained
1879
1880 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1881 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1882 M:      Linus Walleij <linus.walleij@linaro.org>
1883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1884 S:      Maintained
1885 T:      git git://github.com/ulli-kroll/linux.git
1886 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1887 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1888 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1889 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1890 F:      arch/arm/boot/dts/gemini*
1891 F:      arch/arm/mach-gemini/
1892 F:      drivers/crypto/gemini/
1893 F:      drivers/net/ethernet/cortina/
1894 F:      drivers/pinctrl/pinctrl-gemini.c
1895 F:      drivers/rtc/rtc-ftrtc010.c
1896
1897 ARM/CZ.NIC TURRIS SUPPORT
1898 M:      Marek Behún <kabel@kernel.org>
1899 S:      Maintained
1900 W:      https://www.turris.cz/
1901 F:      Documentation/ABI/testing/debugfs-moxtet
1902 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1903 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1904 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1905 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1906 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1907 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1908 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1909 F:      drivers/bus/moxtet.c
1910 F:      drivers/firmware/turris-mox-rwtm.c
1911 F:      drivers/leds/leds-turris-omnia.c
1912 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1913 F:      drivers/gpio/gpio-moxtet.c
1914 F:      drivers/watchdog/armada_37xx_wdt.c
1915 F:      include/dt-bindings/bus/moxtet.h
1916 F:      include/linux/armada-37xx-rwtm-mailbox.h
1917 F:      include/linux/moxtet.h
1918
1919 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1920 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      arch/arm/mach-pxa/ezx.c
1924
1925 ARM/FARADAY FA526 PORT
1926 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929 T:      git git://git.berlios.de/gemini-board
1930 F:      arch/arm/mm/*-fa*
1931
1932 ARM/FOOTBRIDGE ARCHITECTURE
1933 M:      Russell King <linux@armlinux.org.uk>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Maintained
1936 W:      http://www.armlinux.org.uk/
1937 F:      arch/arm/include/asm/hardware/dec21285.h
1938 F:      arch/arm/mach-footbridge/
1939
1940 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1941 M:      Shawn Guo <shawnguo@kernel.org>
1942 M:      Sascha Hauer <s.hauer@pengutronix.de>
1943 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1944 R:      Fabio Estevam <festevam@gmail.com>
1945 R:      NXP Linux Team <linux-imx@nxp.com>
1946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 S:      Maintained
1948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1949 X:      drivers/media/i2c/
1950 N:      imx
1951 N:      mxs
1952
1953 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1954 M:      Shawn Guo <shawnguo@kernel.org>
1955 M:      Li Yang <leoyang.li@nxp.com>
1956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1957 S:      Maintained
1958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1959 F:      arch/arm/boot/dts/ls1021a*
1960 F:      arch/arm64/boot/dts/freescale/fsl-*
1961 F:      arch/arm64/boot/dts/freescale/qoriq-*
1962
1963 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1964 M:      Shawn Guo <shawnguo@kernel.org>
1965 M:      Sascha Hauer <s.hauer@pengutronix.de>
1966 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1967 R:      Stefan Agner <stefan@agner.ch>
1968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1969 S:      Maintained
1970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1971 F:      arch/arm/boot/dts/vf*
1972 F:      arch/arm/mach-imx/*vf610*
1973
1974 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1975 M:      Lennert Buytenhek <kernel@wantstofly.org>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978
1979 ARM/GUMSTIX MACHINE SUPPORT
1980 M:      Steve Sakoman <sakoman@gmail.com>
1981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 S:      Maintained
1983
1984 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1985 M:      Philipp Zabel <philipp.zabel@gmail.com>
1986 M:      Paul Parsons <lost.distance@yahoo.com>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      arch/arm/mach-pxa/hx4700.c
1990 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1991 F:      sound/soc/pxa/hx4700.c
1992
1993 ARM/HISILICON SOC SUPPORT
1994 M:      Wei Xu <xuwei5@hisilicon.com>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S:      Supported
1997 W:      http://www.hisilicon.com
1998 T:      git git://github.com/hisilicon/linux-hisi.git
1999 F:      arch/arm/boot/dts/hi3*
2000 F:      arch/arm/boot/dts/hip*
2001 F:      arch/arm/boot/dts/hisi*
2002 F:      arch/arm/mach-hisi/
2003 F:      arch/arm64/boot/dts/hisilicon/
2004
2005 ARM/HP JORNADA 7XX MACHINE SUPPORT
2006 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2007 S:      Maintained
2008 W:      www.jlime.com
2009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2010 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2011 F:      arch/arm/mach-sa1100/jornada720.c
2012
2013 ARM/IGEP MACHINE SUPPORT
2014 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2015 M:      Javier Martinez Canillas <javier@dowhile0.org>
2016 L:      linux-omap@vger.kernel.org
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 S:      Maintained
2019 F:      arch/arm/boot/dts/omap3-igep*
2020
2021 ARM/INCOME PXA270 SUPPORT
2022 M:      Marek Vasut <marek.vasut@gmail.com>
2023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2024 S:      Maintained
2025 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2026
2027 ARM/INTEL IOP32X ARM ARCHITECTURE
2028 M:      Lennert Buytenhek <kernel@wantstofly.org>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Maintained
2031
2032 ARM/INTEL IQ81342EX MACHINE SUPPORT
2033 M:      Lennert Buytenhek <kernel@wantstofly.org>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036
2037 ARM/INTEL IXDP2850 MACHINE SUPPORT
2038 M:      Lennert Buytenhek <kernel@wantstofly.org>
2039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2040 S:      Maintained
2041
2042 ARM/INTEL IXP4XX ARM ARCHITECTURE
2043 M:      Linus Walleij <linusw@kernel.org>
2044 M:      Imre Kaloz <kaloz@openwrt.org>
2045 M:      Krzysztof Halasa <khalasa@piap.pl>
2046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 S:      Maintained
2048 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2049 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2050 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2051 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2052 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2053 F:      arch/arm/mach-ixp4xx/
2054 F:      drivers/bus/intel-ixp4xx-eb.c
2055 F:      drivers/clocksource/timer-ixp4xx.c
2056 F:      drivers/crypto/ixp4xx_crypto.c
2057 F:      drivers/gpio/gpio-ixp4xx.c
2058 F:      drivers/irqchip/irq-ixp4xx.c
2059 F:      include/linux/irqchip/irq-ixp4xx.h
2060 F:      include/linux/platform_data/timer-ixp4xx.h
2061
2062 ARM/INTEL KEEMBAY ARCHITECTURE
2063 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2064 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2065 S:      Maintained
2066 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2067 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2068 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2069
2070 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2071 M:      Jonathan Cameron <jic23@cam.ac.uk>
2072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2073 S:      Maintained
2074 F:      arch/arm/mach-pxa/stargate2.c
2075 F:      drivers/pcmcia/pxa2xx_stargate2.c
2076
2077 ARM/INTEL XSC3 (MANZANO) ARM CORE
2078 M:      Lennert Buytenhek <kernel@wantstofly.org>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081
2082 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2083 M:      Lennert Buytenhek <kernel@wantstofly.org>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086
2087 ARM/LG1K ARCHITECTURE
2088 M:      Chanho Min <chanho.min@lge.com>
2089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S:      Maintained
2091 F:      arch/arm64/boot/dts/lg/
2092
2093 ARM/LOGICPD PXA270 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/LPC18XX ARCHITECTURE
2099 M:      Vladimir Zapolskiy <vz@mleia.com>
2100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S:      Maintained
2102 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2103 F:      arch/arm/boot/dts/lpc43*
2104 F:      drivers/i2c/busses/i2c-lpc2k.c
2105 F:      drivers/memory/pl172.c
2106 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2107 F:      drivers/rtc/rtc-lpc24xx.c
2108 N:      lpc18xx
2109
2110 ARM/LPC32XX SOC SUPPORT
2111 M:      Vladimir Zapolskiy <vz@mleia.com>
2112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2113 S:      Maintained
2114 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2115 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2116 F:      arch/arm/boot/dts/lpc32*
2117 F:      arch/arm/mach-lpc32xx/
2118 F:      drivers/i2c/busses/i2c-pnx.c
2119 F:      drivers/net/ethernet/nxp/lpc_eth.c
2120 F:      drivers/usb/host/ohci-nxp.c
2121 F:      drivers/watchdog/pnx4008_wdt.c
2122 N:      lpc32xx
2123
2124 ARM/MAGICIAN MACHINE SUPPORT
2125 M:      Philipp Zabel <philipp.zabel@gmail.com>
2126 S:      Maintained
2127
2128 ARM/Marvell Dove/MV78xx0/Orion SOC support
2129 M:      Andrew Lunn <andrew@lunn.ch>
2130 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2131 M:      Gregory Clement <gregory.clement@bootlin.com>
2132 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2133 S:      Maintained
2134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2135 F:      Documentation/devicetree/bindings/soc/dove/
2136 F:      arch/arm/boot/dts/dove*
2137 F:      arch/arm/boot/dts/orion5x*
2138 F:      arch/arm/mach-dove/
2139 F:      arch/arm/mach-mv78xx0/
2140 F:      arch/arm/mach-orion5x/
2141 F:      arch/arm/plat-orion/
2142 F:      drivers/soc/dove/
2143
2144 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2145 M:      Andrew Lunn <andrew@lunn.ch>
2146 M:      Gregory Clement <gregory.clement@bootlin.com>
2147 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2149 S:      Maintained
2150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2151 F:      arch/arm/boot/dts/armada*
2152 F:      arch/arm/boot/dts/kirkwood*
2153 F:      arch/arm/configs/mvebu_*_defconfig
2154 F:      arch/arm/mach-mvebu/
2155 F:      arch/arm64/boot/dts/marvell/armada*
2156 F:      arch/arm64/boot/dts/marvell/cn913*
2157 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2158 F:      drivers/cpufreq/armada-8k-cpufreq.c
2159 F:      drivers/cpufreq/mvebu-cpufreq.c
2160 F:      drivers/irqchip/irq-armada-370-xp.c
2161 F:      drivers/irqchip/irq-mvebu-*
2162 F:      drivers/pinctrl/mvebu/
2163 F:      drivers/rtc/rtc-armada38x.c
2164
2165 ARM/Mediatek RTC DRIVER
2166 M:      Eddie Huang <eddie.huang@mediatek.com>
2167 M:      Sean Wang <sean.wang@mediatek.com>
2168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2169 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2170 S:      Maintained
2171 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2172 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2173 F:      drivers/rtc/rtc-mt2712.c
2174 F:      drivers/rtc/rtc-mt6397.c
2175 F:      drivers/rtc/rtc-mt7622.c
2176
2177 ARM/Mediatek SoC support
2178 M:      Matthias Brugger <matthias.bgg@gmail.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 W:      https://mtk.wiki.kernel.org/
2183 C:      irc://chat.freenode.net/linux-mediatek
2184 F:      arch/arm/boot/dts/mt6*
2185 F:      arch/arm/boot/dts/mt7*
2186 F:      arch/arm/boot/dts/mt8*
2187 F:      arch/arm/mach-mediatek/
2188 F:      arch/arm64/boot/dts/mediatek/
2189 F:      drivers/soc/mediatek/
2190 N:      mtk
2191 N:      mt[678]
2192 K:      mediatek
2193
2194 ARM/Mediatek USB3 PHY DRIVER
2195 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2198 S:      Maintained
2199 F:      Documentation/devicetree/bindings/phy/mediatek,*
2200 F:      drivers/phy/mediatek/
2201
2202 ARM/Microchip (AT91) SoC support
2203 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2204 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2205 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2207 S:      Supported
2208 W:      http://www.linux4sam.org
2209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2210 F:      arch/arm/boot/dts/at91*.dts
2211 F:      arch/arm/boot/dts/at91*.dtsi
2212 F:      arch/arm/boot/dts/sama*.dts
2213 F:      arch/arm/boot/dts/sama*.dtsi
2214 F:      arch/arm/include/debug/at91.S
2215 F:      arch/arm/mach-at91/
2216 F:      drivers/memory/atmel*
2217 F:      drivers/watchdog/sama5d4_wdt.c
2218 F:      include/soc/at91/
2219 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2220 X:      drivers/net/wireless/atmel/
2221 N:      at91
2222 N:      atmel
2223
2224 ARM/Microchip Sparx5 SoC support
2225 M:      Lars Povlsen <lars.povlsen@microchip.com>
2226 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2227 M:      UNGLinuxDriver@microchip.com
2228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2229 S:      Supported
2230 T:      git git://github.com/microchip-ung/linux-upstream.git
2231 F:      arch/arm64/boot/dts/microchip/
2232 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2233 N:      sparx5
2234
2235 Microchip Timer Counter Block (TCB) Capture Driver
2236 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2238 L:      linux-iio@vger.kernel.org
2239 S:      Maintained
2240 F:      drivers/counter/microchip-tcb-capture.c
2241
2242 ARM/MIOA701 MACHINE SUPPORT
2243 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2245 S:      Maintained
2246 F:      arch/arm/mach-pxa/mioa701.c
2247
2248 ARM/MStar/Sigmastar Armv7 SoC support
2249 M:      Daniel Palmer <daniel@thingy.jp>
2250 M:      Romain Perier <romain.perier@gmail.com>
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Maintained
2253 W:      http://linux-chenxing.org/
2254 T:      git git://github.com/linux-chenxing/linux.git
2255 F:      Documentation/devicetree/bindings/arm/mstar/*
2256 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2257 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2258 F:      arch/arm/boot/dts/mstar-*
2259 F:      arch/arm/mach-mstar/
2260 F:      drivers/clk/mstar/
2261 F:      drivers/gpio/gpio-msc313.c
2262 F:      drivers/watchdog/msc313e_wdt.c
2263 F:      include/dt-bindings/clock/mstar-*
2264 F:      include/dt-bindings/gpio/msc313-gpio.h
2265
2266 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2267 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2268 S:      Maintained
2269
2270 ARM/NOMADIK/Ux500 ARCHITECTURES
2271 M:      Linus Walleij <linus.walleij@linaro.org>
2272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2273 S:      Maintained
2274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2275 F:      Documentation/devicetree/bindings/arm/ste-*
2276 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2277 F:      Documentation/devicetree/bindings/arm/ux500/
2278 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2279 F:      arch/arm/boot/dts/ste-*
2280 F:      arch/arm/mach-nomadik/
2281 F:      arch/arm/mach-ux500/
2282 F:      drivers/clk/clk-nomadik.c
2283 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2284 F:      drivers/dma/ste_dma40*
2285 F:      drivers/hwspinlock/u8500_hsem.c
2286 F:      drivers/i2c/busses/i2c-nomadik.c
2287 F:      drivers/iio/adc/ab8500-gpadc.c
2288 F:      drivers/mfd/ab8500*
2289 F:      drivers/mfd/abx500*
2290 F:      drivers/mfd/db8500*
2291 F:      drivers/pinctrl/nomadik/
2292 F:      drivers/rtc/rtc-ab8500.c
2293 F:      drivers/rtc/rtc-pl031.c
2294 F:      drivers/soc/ux500/
2295
2296 ARM/NUVOTON NPCM ARCHITECTURE
2297 M:      Avi Fishman <avifishman70@gmail.com>
2298 M:      Tomer Maimon <tmaimon77@gmail.com>
2299 M:      Tali Perry <tali.perry1@gmail.com>
2300 R:      Patrick Venture <venture@google.com>
2301 R:      Nancy Yuen <yuenn@google.com>
2302 R:      Benjamin Fair <benjaminfair@google.com>
2303 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2304 S:      Supported
2305 F:      Documentation/devicetree/bindings/*/*/*npcm*
2306 F:      Documentation/devicetree/bindings/*/*npcm*
2307 F:      arch/arm/boot/dts/nuvoton-npcm*
2308 F:      arch/arm/mach-npcm/
2309 F:      drivers/*/*npcm*
2310 F:      drivers/*/*/*npcm*
2311 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2312
2313 ARM/NUVOTON WPCM450 ARCHITECTURE
2314 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2315 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2316 S:      Maintained
2317 F:      Documentation/devicetree/bindings/*/*wpcm*
2318 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2319 F:      arch/arm/mach-npcm/wpcm450.c
2320 F:      drivers/*/*wpcm*
2321
2322 ARM/NXP S32G ARCHITECTURE
2323 M:      Chester Lin <clin@suse.com>
2324 R:      Andreas Färber <afaerber@suse.de>
2325 R:      Matthias Brugger <mbrugger@suse.com>
2326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2327 S:      Maintained
2328 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2329
2330 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2331 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2332 S:      Orphan
2333 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2334 F:      arch/arm/mach-s3c/gta02.h
2335 F:      arch/arm/mach-s3c/mach-gta02.c
2336
2337 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2338 M:      Alexander Clouter <alex@digriz.org.uk>
2339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2340 S:      Maintained
2341 W:      http://www.digriz.org.uk/ts78xx/kernel
2342 F:      arch/arm/mach-orion5x/ts78xx-*
2343
2344 ARM/OXNAS platform support
2345 M:      Neil Armstrong <narmstrong@baylibre.com>
2346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2347 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2348 S:      Maintained
2349 F:      arch/arm/boot/dts/ox8*.dts*
2350 F:      arch/arm/mach-oxnas/
2351 F:      drivers/power/reset/oxnas-restart.c
2352 N:      oxnas
2353
2354 ARM/PALM TREO SUPPORT
2355 M:      Tomas Cech <sleep_walker@suse.com>
2356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2357 S:      Maintained
2358 W:      http://hackndev.com
2359 F:      arch/arm/mach-pxa/palmtreo.*
2360
2361 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2362 M:      Marek Vasut <marek.vasut@gmail.com>
2363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2364 S:      Maintained
2365 W:      http://hackndev.com
2366 F:      arch/arm/mach-pxa/include/mach/palmld.h
2367 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2368 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2369 F:      arch/arm/mach-pxa/palmld.c
2370 F:      arch/arm/mach-pxa/palmt5.*
2371 F:      arch/arm/mach-pxa/palmtc.c
2372 F:      arch/arm/mach-pxa/palmte2.*
2373 F:      arch/arm/mach-pxa/palmtx.c
2374
2375 ARM/PALMZ72 SUPPORT
2376 M:      Sergey Lapin <slapin@ossfans.org>
2377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2378 S:      Maintained
2379 W:      http://hackndev.com
2380 F:      arch/arm/mach-pxa/palmz72.*
2381
2382 ARM/PLEB SUPPORT
2383 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2384 S:      Maintained
2385 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2386
2387 ARM/PT DIGITAL BOARD PORT
2388 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2390 S:      Maintained
2391 W:      http://www.armlinux.org.uk/
2392
2393 ARM/QUALCOMM SUPPORT
2394 M:      Andy Gross <agross@kernel.org>
2395 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2396 L:      linux-arm-msm@vger.kernel.org
2397 S:      Maintained
2398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2399 F:      Documentation/devicetree/bindings/*/qcom*
2400 F:      Documentation/devicetree/bindings/soc/qcom/
2401 F:      arch/arm/boot/dts/qcom-*.dts
2402 F:      arch/arm/boot/dts/qcom-*.dtsi
2403 F:      arch/arm/mach-qcom/
2404 F:      arch/arm64/boot/dts/qcom/
2405 F:      drivers/*/*/qcom*
2406 F:      drivers/*/*/qcom/
2407 F:      drivers/*/pm8???-*
2408 F:      drivers/*/qcom*
2409 F:      drivers/*/qcom/
2410 F:      drivers/bluetooth/btqcomsmd.c
2411 F:      drivers/clocksource/timer-qcom.c
2412 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2413 F:      drivers/extcon/extcon-qcom*
2414 F:      drivers/i2c/busses/i2c-qcom-geni.c
2415 F:      drivers/i2c/busses/i2c-qup.c
2416 F:      drivers/iommu/msm*
2417 F:      drivers/mfd/ssbi.c
2418 F:      drivers/mmc/host/mmci_qcom*
2419 F:      drivers/mmc/host/sdhci-msm.c
2420 F:      drivers/pci/controller/dwc/pcie-qcom.c
2421 F:      drivers/phy/qualcomm/
2422 F:      drivers/power/*/msm*
2423 F:      drivers/reset/reset-qcom-*
2424 F:      drivers/scsi/ufs/ufs-qcom*
2425 F:      drivers/spi/spi-geni-qcom.c
2426 F:      drivers/spi/spi-qcom-qspi.c
2427 F:      drivers/spi/spi-qup.c
2428 F:      drivers/tty/serial/msm_serial.c
2429 F:      drivers/usb/dwc3/dwc3-qcom.c
2430 F:      include/dt-bindings/*/qcom*
2431 F:      include/linux/*/qcom*
2432 F:      include/linux/soc/qcom/
2433
2434 ARM/RADISYS ENP2611 MACHINE SUPPORT
2435 M:      Lennert Buytenhek <kernel@wantstofly.org>
2436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2437 S:      Maintained
2438
2439 ARM/RDA MICRO ARCHITECTURE
2440 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2442 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2443 S:      Maintained
2444 F:      Documentation/devicetree/bindings/arm/rda.yaml
2445 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2446 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2447 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2448 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2449 F:      arch/arm/boot/dts/rda8810pl-*
2450 F:      drivers/clocksource/timer-rda.c
2451 F:      drivers/gpio/gpio-rda.c
2452 F:      drivers/irqchip/irq-rda-intc.c
2453 F:      drivers/tty/serial/rda-uart.c
2454
2455 ARM/REALTEK ARCHITECTURE
2456 M:      Andreas Färber <afaerber@suse.de>
2457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2458 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2459 S:      Maintained
2460 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2461 F:      arch/arm/boot/dts/rtd*
2462 F:      arch/arm/mach-realtek/
2463 F:      arch/arm64/boot/dts/realtek/
2464
2465 ARM/RENESAS ARM64 ARCHITECTURE
2466 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2467 M:      Magnus Damm <magnus.damm@gmail.com>
2468 L:      linux-renesas-soc@vger.kernel.org
2469 S:      Supported
2470 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2472 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2473 F:      arch/arm64/boot/dts/renesas/
2474 F:      drivers/soc/renesas/
2475 F:      include/linux/soc/renesas/
2476
2477 ARM/RISCPC ARCHITECTURE
2478 M:      Russell King <linux@armlinux.org.uk>
2479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2480 S:      Maintained
2481 W:      http://www.armlinux.org.uk/
2482 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2483 F:      arch/arm/include/asm/hardware/ioc.h
2484 F:      arch/arm/include/asm/hardware/iomd.h
2485 F:      arch/arm/include/asm/hardware/memc.h
2486 F:      arch/arm/mach-rpc/
2487 F:      drivers/net/ethernet/8390/etherh.c
2488 F:      drivers/net/ethernet/i825xx/ether1*
2489 F:      drivers/net/ethernet/seeq/ether3*
2490 F:      drivers/scsi/arm/
2491
2492 ARM/Rockchip SoC support
2493 M:      Heiko Stuebner <heiko@sntech.de>
2494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2495 L:      linux-rockchip@lists.infradead.org
2496 S:      Maintained
2497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2498 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2499 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2500 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2501 F:      arch/arm/boot/dts/rk3*
2502 F:      arch/arm/boot/dts/rv1108*
2503 F:      arch/arm/mach-rockchip/
2504 F:      drivers/*/*/*rockchip*
2505 F:      drivers/*/*rockchip*
2506 F:      drivers/clk/rockchip/
2507 F:      drivers/i2c/busses/i2c-rk3x.c
2508 F:      sound/soc/rockchip/
2509 N:      rockchip
2510
2511 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2512 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2514 L:      linux-samsung-soc@vger.kernel.org
2515 S:      Maintained
2516 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2517 F:      Documentation/arm/samsung/
2518 F:      Documentation/devicetree/bindings/arm/samsung/
2519 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2520 F:      arch/arm/boot/dts/exynos*
2521 F:      arch/arm/boot/dts/s3c*
2522 F:      arch/arm/boot/dts/s5p*
2523 F:      arch/arm/mach-exynos*/
2524 F:      arch/arm/mach-s3c/
2525 F:      arch/arm/mach-s5p*/
2526 F:      arch/arm64/boot/dts/exynos/
2527 F:      drivers/*/*/*s3c24*
2528 F:      drivers/*/*s3c24*
2529 F:      drivers/*/*s3c64xx*
2530 F:      drivers/*/*s5pv210*
2531 F:      drivers/clocksource/samsung_pwm_timer.c
2532 F:      drivers/memory/samsung/
2533 F:      drivers/pwm/pwm-samsung.c
2534 F:      drivers/soc/samsung/
2535 F:      drivers/tty/serial/samsung*
2536 F:      include/clocksource/samsung_pwm.h
2537 F:      include/linux/platform_data/*s3c*
2538 F:      include/linux/serial_s3c.h
2539 F:      include/linux/soc/samsung/
2540 N:      exynos
2541 N:      s3c2410
2542 N:      s3c64xx
2543 N:      s5pv210
2544
2545 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2546 M:      Andrzej Hajda <a.hajda@samsung.com>
2547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2548 L:      linux-media@vger.kernel.org
2549 S:      Maintained
2550 F:      drivers/media/platform/s5p-g2d/
2551
2552 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2553 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2554 L:      linux-samsung-soc@vger.kernel.org
2555 L:      linux-media@vger.kernel.org
2556 S:      Maintained
2557 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2558 F:      drivers/media/cec/platform/s5p/
2559
2560 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2561 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2562 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2563 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2565 L:      linux-media@vger.kernel.org
2566 S:      Maintained
2567 F:      drivers/media/platform/s5p-jpeg/
2568
2569 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2570 M:      Andrzej Hajda <a.hajda@samsung.com>
2571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2572 L:      linux-media@vger.kernel.org
2573 S:      Maintained
2574 F:      drivers/media/platform/s5p-mfc/
2575
2576 ARM/SHMOBILE ARM ARCHITECTURE
2577 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2578 M:      Magnus Damm <magnus.damm@gmail.com>
2579 L:      linux-renesas-soc@vger.kernel.org
2580 S:      Supported
2581 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2583 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2584 F:      arch/arm/boot/dts/emev2*
2585 F:      arch/arm/boot/dts/gr-peach*
2586 F:      arch/arm/boot/dts/iwg20d-q7*
2587 F:      arch/arm/boot/dts/r7s*
2588 F:      arch/arm/boot/dts/r8a*
2589 F:      arch/arm/boot/dts/r9a*
2590 F:      arch/arm/boot/dts/sh*
2591 F:      arch/arm/configs/shmobile_defconfig
2592 F:      arch/arm/include/debug/renesas-scif.S
2593 F:      arch/arm/mach-shmobile/
2594 F:      drivers/soc/renesas/
2595 F:      include/linux/soc/renesas/
2596
2597 ARM/SOCFPGA ARCHITECTURE
2598 M:      Dinh Nguyen <dinguyen@kernel.org>
2599 S:      Maintained
2600 W:      http://www.rocketboards.org
2601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2602 F:      arch/arm/boot/dts/socfpga*
2603 F:      arch/arm/configs/socfpga_defconfig
2604 F:      arch/arm/mach-socfpga/
2605 F:      arch/arm64/boot/dts/altera/
2606 F:      arch/arm64/boot/dts/intel/
2607
2608 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2609 M:      Dinh Nguyen <dinguyen@kernel.org>
2610 S:      Maintained
2611 F:      drivers/clk/socfpga/
2612
2613 ARM/SOCFPGA EDAC SUPPORT
2614 M:      Dinh Nguyen <dinguyen@kernel.org>
2615 S:      Maintained
2616 F:      drivers/edac/altera_edac.[ch]
2617
2618 ARM/SPREADTRUM SoC SUPPORT
2619 M:      Orson Zhai <orsonzhai@gmail.com>
2620 M:      Baolin Wang <baolin.wang7@gmail.com>
2621 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2622 S:      Maintained
2623 F:      arch/arm64/boot/dts/sprd
2624 N:      sprd
2625 N:      sc27xx
2626 N:      sc2731
2627
2628 ARM/STI ARCHITECTURE
2629 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2631 S:      Maintained
2632 W:      http://www.stlinux.com
2633 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2634 F:      arch/arm/boot/dts/sti*
2635 F:      arch/arm/mach-sti/
2636 F:      drivers/ata/ahci_st.c
2637 F:      drivers/char/hw_random/st-rng.c
2638 F:      drivers/clocksource/arm_global_timer.c
2639 F:      drivers/clocksource/clksrc_st_lpc.c
2640 F:      drivers/cpufreq/sti-cpufreq.c
2641 F:      drivers/dma/st_fdma*
2642 F:      drivers/i2c/busses/i2c-st.c
2643 F:      drivers/media/platform/sti/c8sectpfe/
2644 F:      drivers/media/rc/st_rc.c
2645 F:      drivers/mmc/host/sdhci-st.c
2646 F:      drivers/phy/st/phy-miphy28lp.c
2647 F:      drivers/phy/st/phy-stih407-usb.c
2648 F:      drivers/pinctrl/pinctrl-st.c
2649 F:      drivers/remoteproc/st_remoteproc.c
2650 F:      drivers/remoteproc/st_slim_rproc.c
2651 F:      drivers/reset/sti/
2652 F:      drivers/rtc/rtc-st-lpc.c
2653 F:      drivers/tty/serial/st-asc.c
2654 F:      drivers/usb/dwc3/dwc3-st.c
2655 F:      drivers/usb/host/ehci-st.c
2656 F:      drivers/usb/host/ohci-st.c
2657 F:      drivers/watchdog/st_lpc_wdt.c
2658 F:      include/linux/remoteproc/st_slim_rproc.h
2659
2660 ARM/STM32 ARCHITECTURE
2661 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2662 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2663 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 S:      Maintained
2666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2667 F:      arch/arm/boot/dts/stm32*
2668 F:      arch/arm/mach-stm32/
2669 F:      drivers/clocksource/armv7m_systick.c
2670 N:      stm32
2671 N:      stm
2672
2673 ARM/Synaptics SoC support
2674 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2675 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2677 S:      Maintained
2678 F:      arch/arm/boot/dts/berlin*
2679 F:      arch/arm/mach-berlin/
2680 F:      arch/arm64/boot/dts/synaptics/
2681
2682 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2683 M:      Lennert Buytenhek <kernel@wantstofly.org>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 S:      Maintained
2686
2687 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2688 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2689 L:      linux-tegra@vger.kernel.org
2690 L:      linux-media@vger.kernel.org
2691 S:      Maintained
2692 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2693 F:      drivers/media/cec/platform/tegra/
2694
2695 ARM/TETON BGA MACHINE SUPPORT
2696 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S:      Maintained
2699
2700 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2701 M:      Santosh Shilimkar <ssantosh@kernel.org>
2702 L:      linux-kernel@vger.kernel.org
2703 S:      Maintained
2704 F:      drivers/memory/*emif*
2705
2706 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2707 M:      Santosh Shilimkar <ssantosh@kernel.org>
2708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2709 S:      Maintained
2710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2711 F:      arch/arm/boot/dts/keystone-*
2712 F:      arch/arm/mach-keystone/
2713
2714 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2715 M:      Santosh Shilimkar <ssantosh@kernel.org>
2716 L:      linux-kernel@vger.kernel.org
2717 S:      Maintained
2718 F:      drivers/clk/keystone/
2719
2720 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2721 M:      Santosh Shilimkar <ssantosh@kernel.org>
2722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2723 L:      linux-kernel@vger.kernel.org
2724 S:      Maintained
2725 F:      drivers/clocksource/timer-keystone.c
2726
2727 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2728 M:      Santosh Shilimkar <ssantosh@kernel.org>
2729 L:      linux-kernel@vger.kernel.org
2730 S:      Maintained
2731 F:      drivers/power/reset/keystone-reset.c
2732
2733 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2734 M:      Nishanth Menon <nm@ti.com>
2735 M:      Vignesh Raghavendra <vigneshr@ti.com>
2736 M:      Tero Kristo <kristo@kernel.org>
2737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2738 S:      Supported
2739 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2740 F:      arch/arm64/boot/dts/ti/Makefile
2741 F:      arch/arm64/boot/dts/ti/k3-*
2742 F:      include/dt-bindings/pinctrl/k3.h
2743
2744 ARM/THECUS N2100 MACHINE SUPPORT
2745 M:      Lennert Buytenhek <kernel@wantstofly.org>
2746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2747 S:      Maintained
2748
2749 ARM/TOSA MACHINE SUPPORT
2750 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2751 M:      Dirk Opfer <dirk@opfer-online.de>
2752 S:      Maintained
2753
2754 ARM/TOSHIBA VISCONTI ARCHITECTURE
2755 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2757 S:      Supported
2758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2759 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2760 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2761 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2762 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2763 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2764 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2765 F:      arch/arm64/boot/dts/toshiba/
2766 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2767 F:      drivers/gpio/gpio-visconti.c
2768 F:      drivers/pci/controller/dwc/pcie-visconti.c
2769 F:      drivers/pinctrl/visconti/
2770 F:      drivers/watchdog/visconti_wdt.c
2771 N:      visconti
2772
2773 ARM/UNIPHIER ARCHITECTURE
2774 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2775 M:      Masami Hiramatsu <mhiramat@kernel.org>
2776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2777 S:      Maintained
2778 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2779 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2780 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2781 F:      arch/arm/boot/dts/uniphier*
2782 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2783 F:      arch/arm/mach-uniphier/
2784 F:      arch/arm/mm/cache-uniphier.c
2785 F:      arch/arm64/boot/dts/socionext/uniphier*
2786 F:      drivers/bus/uniphier-system-bus.c
2787 F:      drivers/clk/uniphier/
2788 F:      drivers/dma/uniphier-mdmac.c
2789 F:      drivers/gpio/gpio-uniphier.c
2790 F:      drivers/i2c/busses/i2c-uniphier*
2791 F:      drivers/irqchip/irq-uniphier-aidet.c
2792 F:      drivers/mmc/host/uniphier-sd.c
2793 F:      drivers/pinctrl/uniphier/
2794 F:      drivers/reset/reset-uniphier.c
2795 F:      drivers/tty/serial/8250/8250_uniphier.c
2796 N:      uniphier
2797
2798 ARM/VERSATILE EXPRESS PLATFORM
2799 M:      Liviu Dudau <liviu.dudau@arm.com>
2800 M:      Sudeep Holla <sudeep.holla@arm.com>
2801 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2803 S:      Maintained
2804 F:      */*/*/vexpress*
2805 F:      */*/vexpress*
2806 F:      arch/arm/boot/dts/vexpress*
2807 F:      arch/arm/mach-vexpress/
2808 F:      arch/arm64/boot/dts/arm/
2809 F:      drivers/clk/versatile/clk-vexpress-osc.c
2810 F:      drivers/clocksource/timer-versatile.c
2811 N:      mps2
2812
2813 ARM/VFP SUPPORT
2814 M:      Russell King <linux@armlinux.org.uk>
2815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2816 S:      Maintained
2817 W:      http://www.armlinux.org.uk/
2818 F:      arch/arm/vfp/
2819
2820 ARM/VOIPAC PXA270 SUPPORT
2821 M:      Marek Vasut <marek.vasut@gmail.com>
2822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2823 S:      Maintained
2824 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2825 F:      arch/arm/mach-pxa/vpac270.c
2826
2827 ARM/VT8500 ARM ARCHITECTURE
2828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2829 S:      Orphan
2830 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2831 F:      arch/arm/mach-vt8500/
2832 F:      drivers/clocksource/timer-vt8500.c
2833 F:      drivers/i2c/busses/i2c-wmt.c
2834 F:      drivers/mmc/host/wmt-sdmmc.c
2835 F:      drivers/pwm/pwm-vt8500.c
2836 F:      drivers/rtc/rtc-vt8500.c
2837 F:      drivers/tty/serial/vt8500_serial.c
2838 F:      drivers/usb/host/ehci-platform.c
2839 F:      drivers/usb/host/uhci-platform.c
2840 F:      drivers/video/fbdev/vt8500lcdfb.*
2841 F:      drivers/video/fbdev/wm8505fb*
2842 F:      drivers/video/fbdev/wmt_ge_rops.*
2843
2844 ARM/ZIPIT Z2 SUPPORT
2845 M:      Marek Vasut <marek.vasut@gmail.com>
2846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2847 S:      Maintained
2848 F:      arch/arm/mach-pxa/include/mach/z2.h
2849 F:      arch/arm/mach-pxa/z2.c
2850
2851 ARM/ZYNQ ARCHITECTURE
2852 M:      Michal Simek <michal.simek@xilinx.com>
2853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2854 S:      Supported
2855 W:      http://wiki.xilinx.com
2856 T:      git https://github.com/Xilinx/linux-xlnx.git
2857 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2858 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2859 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2860 F:      arch/arm/mach-zynq/
2861 F:      drivers/clocksource/timer-cadence-ttc.c
2862 F:      drivers/cpuidle/cpuidle-zynq.c
2863 F:      drivers/edac/synopsys_edac.c
2864 F:      drivers/i2c/busses/i2c-cadence.c
2865 F:      drivers/i2c/busses/i2c-xiic.c
2866 F:      drivers/mmc/host/sdhci-of-arasan.c
2867 N:      zynq
2868 N:      xilinx
2869
2870 ARM64 PORT (AARCH64 ARCHITECTURE)
2871 M:      Catalin Marinas <catalin.marinas@arm.com>
2872 M:      Will Deacon <will@kernel.org>
2873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2874 S:      Maintained
2875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2876 F:      Documentation/arm64/
2877 F:      arch/arm64/
2878 F:      tools/testing/selftests/arm64/
2879 X:      arch/arm64/boot/dts/
2880
2881 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2882 M:      George McCollister <george.mccollister@gmail.com>
2883 L:      netdev@vger.kernel.org
2884 S:      Maintained
2885 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2886 F:      drivers/net/dsa/xrs700x/*
2887 F:      net/dsa/tag_xrs700x.c
2888
2889 AS3645A LED FLASH CONTROLLER DRIVER
2890 M:      Sakari Ailus <sakari.ailus@iki.fi>
2891 L:      linux-leds@vger.kernel.org
2892 S:      Maintained
2893 F:      drivers/leds/flash/leds-as3645a.c
2894
2895 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2896 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2897 L:      linux-media@vger.kernel.org
2898 S:      Maintained
2899 T:      git git://linuxtv.org/media_tree.git
2900 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2901 F:      drivers/media/i2c/ak7375.c
2902
2903 ASAHI KASEI AK8974 DRIVER
2904 M:      Linus Walleij <linus.walleij@linaro.org>
2905 L:      linux-iio@vger.kernel.org
2906 S:      Supported
2907 W:      http://www.akm.com/
2908 F:      drivers/iio/magnetometer/ak8974.c
2909
2910 ASC7621 HARDWARE MONITOR DRIVER
2911 M:      George Joseph <george.joseph@fairview5.com>
2912 L:      linux-hwmon@vger.kernel.org
2913 S:      Maintained
2914 F:      Documentation/hwmon/asc7621.rst
2915 F:      drivers/hwmon/asc7621.c
2916
2917 ASIX AX88796C SPI ETHERNET ADAPTER
2918 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2919 S:      Maintained
2920 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2921 F:      drivers/net/ethernet/asix/ax88796c_*
2922
2923 ASPEED PINCTRL DRIVERS
2924 M:      Andrew Jeffery <andrew@aj.id.au>
2925 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2926 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2927 L:      linux-gpio@vger.kernel.org
2928 S:      Maintained
2929 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2930 F:      drivers/pinctrl/aspeed/
2931
2932 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2933 M:      Eddie James <eajames@linux.ibm.com>
2934 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2935 S:      Maintained
2936 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2937 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2938 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2939
2940 ASPEED SD/MMC DRIVER
2941 M:      Andrew Jeffery <andrew@aj.id.au>
2942 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2943 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2944 L:      linux-mmc@vger.kernel.org
2945 S:      Maintained
2946 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2947 F:      drivers/mmc/host/sdhci-of-aspeed*
2948
2949 ASPEED VIDEO ENGINE DRIVER
2950 M:      Eddie James <eajames@linux.ibm.com>
2951 L:      linux-media@vger.kernel.org
2952 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2953 S:      Maintained
2954 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2955 F:      drivers/media/platform/aspeed-video.c
2956
2957 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2958 M:      Corentin Chary <corentin.chary@gmail.com>
2959 L:      acpi4asus-user@lists.sourceforge.net
2960 L:      platform-driver-x86@vger.kernel.org
2961 S:      Maintained
2962 W:      http://acpi4asus.sf.net
2963 F:      drivers/platform/x86/asus*.c
2964 F:      drivers/platform/x86/eeepc*.c
2965
2966 ASUS WIRELESS RADIO CONTROL DRIVER
2967 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2968 L:      platform-driver-x86@vger.kernel.org
2969 S:      Maintained
2970 F:      drivers/platform/x86/asus-wireless.c
2971
2972 ASYMMETRIC KEYS
2973 M:      David Howells <dhowells@redhat.com>
2974 L:      keyrings@vger.kernel.org
2975 S:      Maintained
2976 F:      Documentation/crypto/asymmetric-keys.rst
2977 F:      crypto/asymmetric_keys/
2978 F:      include/crypto/pkcs7.h
2979 F:      include/crypto/public_key.h
2980 F:      include/linux/verification.h
2981
2982 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2983 R:      Dan Williams <dan.j.williams@intel.com>
2984 S:      Odd fixes
2985 W:      http://sourceforge.net/projects/xscaleiop
2986 F:      Documentation/crypto/async-tx-api.rst
2987 F:      crypto/async_tx/
2988 F:      include/linux/async_tx.h
2989
2990 AT24 EEPROM DRIVER
2991 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2992 L:      linux-i2c@vger.kernel.org
2993 S:      Maintained
2994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2995 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2996 F:      drivers/misc/eeprom/at24.c
2997
2998 ATA OVER ETHERNET (AOE) DRIVER
2999 M:      "Justin Sanders" <justin@coraid.com>
3000 S:      Supported
3001 W:      http://www.openaoe.org/
3002 F:      Documentation/admin-guide/aoe/
3003 F:      drivers/block/aoe/
3004
3005 ATC260X PMIC MFD DRIVER
3006 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3007 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3008 L:      linux-actions@lists.infradead.org
3009 S:      Maintained
3010 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3011 F:      drivers/input/misc/atc260x-onkey.c
3012 F:      drivers/mfd/atc260*
3013 F:      drivers/power/reset/atc260x-poweroff.c
3014 F:      drivers/regulator/atc260x-regulator.c
3015 F:      include/linux/mfd/atc260x/*
3016
3017 ATHEROS 71XX/9XXX GPIO DRIVER
3018 M:      Alban Bedel <albeu@free.fr>
3019 S:      Maintained
3020 W:      https://github.com/AlbanBedel/linux
3021 T:      git git://github.com/AlbanBedel/linux
3022 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3023 F:      drivers/gpio/gpio-ath79.c
3024
3025 ATHEROS 71XX/9XXX USB PHY DRIVER
3026 M:      Alban Bedel <albeu@free.fr>
3027 S:      Maintained
3028 W:      https://github.com/AlbanBedel/linux
3029 T:      git git://github.com/AlbanBedel/linux
3030 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3031 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3032
3033 ATHEROS ATH GENERIC UTILITIES
3034 M:      Kalle Valo <kvalo@codeaurora.org>
3035 L:      linux-wireless@vger.kernel.org
3036 S:      Supported
3037 F:      drivers/net/wireless/ath/*
3038
3039 ATHEROS ATH5K WIRELESS DRIVER
3040 M:      Jiri Slaby <jirislaby@kernel.org>
3041 M:      Nick Kossifidis <mickflemm@gmail.com>
3042 M:      Luis Chamberlain <mcgrof@kernel.org>
3043 L:      linux-wireless@vger.kernel.org
3044 S:      Maintained
3045 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3046 F:      drivers/net/wireless/ath/ath5k/
3047
3048 ATHEROS ATH6KL WIRELESS DRIVER
3049 M:      Kalle Valo <kvalo@codeaurora.org>
3050 L:      linux-wireless@vger.kernel.org
3051 S:      Supported
3052 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3054 F:      drivers/net/wireless/ath/ath6kl/
3055
3056 ATI_REMOTE2 DRIVER
3057 M:      Ville Syrjala <syrjala@sci.fi>
3058 S:      Maintained
3059 F:      drivers/input/misc/ati_remote2.c
3060
3061 ATK0110 HWMON DRIVER
3062 M:      Luca Tettamanti <kronos.it@gmail.com>
3063 L:      linux-hwmon@vger.kernel.org
3064 S:      Maintained
3065 F:      drivers/hwmon/asus_atk0110.c
3066
3067 ATLX ETHERNET DRIVERS
3068 M:      Chris Snook <chris.snook@gmail.com>
3069 L:      netdev@vger.kernel.org
3070 S:      Maintained
3071 W:      http://sourceforge.net/projects/atl1
3072 W:      http://atl1.sourceforge.net
3073 F:      drivers/net/ethernet/atheros/
3074
3075 ATM
3076 M:      Chas Williams <3chas3@gmail.com>
3077 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3078 L:      netdev@vger.kernel.org
3079 S:      Maintained
3080 W:      http://linux-atm.sourceforge.net
3081 F:      drivers/atm/
3082 F:      include/linux/atm*
3083 F:      include/uapi/linux/atm*
3084
3085 ATMEL MACB ETHERNET DRIVER
3086 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3087 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3088 S:      Supported
3089 F:      drivers/net/ethernet/cadence/
3090
3091 ATMEL MAXTOUCH DRIVER
3092 M:      Nick Dyer <nick@shmanahar.org>
3093 S:      Maintained
3094 T:      git git://github.com/ndyer/linux.git
3095 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3096 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3097
3098 ATMEL WIRELESS DRIVER
3099 M:      Simon Kelley <simon@thekelleys.org.uk>
3100 L:      linux-wireless@vger.kernel.org
3101 S:      Maintained
3102 W:      http://www.thekelleys.org.uk/atmel
3103 W:      http://atmelwlandriver.sourceforge.net/
3104 F:      drivers/net/wireless/atmel/atmel*
3105
3106 ATOMIC INFRASTRUCTURE
3107 M:      Will Deacon <will@kernel.org>
3108 M:      Peter Zijlstra <peterz@infradead.org>
3109 R:      Boqun Feng <boqun.feng@gmail.com>
3110 L:      linux-kernel@vger.kernel.org
3111 S:      Maintained
3112 F:      arch/*/include/asm/atomic*.h
3113 F:      include/*/atomic*.h
3114 F:      include/linux/refcount.h
3115 F:      Documentation/atomic_*.txt
3116 F:      scripts/atomic/
3117
3118 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3119 M:      Bradley Grove <linuxdrivers@attotech.com>
3120 L:      linux-scsi@vger.kernel.org
3121 S:      Supported
3122 W:      http://www.attotech.com
3123 F:      drivers/scsi/esas2r
3124
3125 ATUSB IEEE 802.15.4 RADIO DRIVER
3126 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3127 L:      linux-wpan@vger.kernel.org
3128 S:      Maintained
3129 F:      drivers/net/ieee802154/at86rf230.h
3130 F:      drivers/net/ieee802154/atusb.c
3131 F:      drivers/net/ieee802154/atusb.h
3132
3133 AUDIT SUBSYSTEM
3134 M:      Paul Moore <paul@paul-moore.com>
3135 M:      Eric Paris <eparis@redhat.com>
3136 L:      linux-audit@redhat.com (moderated for non-subscribers)
3137 S:      Supported
3138 W:      https://github.com/linux-audit
3139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3140 F:      include/asm-generic/audit_*.h
3141 F:      include/linux/audit.h
3142 F:      include/linux/audit_arch.h
3143 F:      include/uapi/linux/audit.h
3144 F:      kernel/audit*
3145 F:      lib/*audit.c
3146
3147 AUXILIARY DISPLAY DRIVERS
3148 M:      Miguel Ojeda <ojeda@kernel.org>
3149 S:      Maintained
3150 F:      drivers/auxdisplay/
3151 F:      include/linux/cfag12864b.h
3152
3153 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3154 M:      Andreas Klinger <ak@it-klinger.de>
3155 L:      linux-iio@vger.kernel.org
3156 S:      Maintained
3157 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3158 F:      drivers/iio/adc/hx711.c
3159
3160 AX.25 NETWORK LAYER
3161 M:      Ralf Baechle <ralf@linux-mips.org>
3162 L:      linux-hams@vger.kernel.org
3163 S:      Maintained
3164 W:      http://www.linux-ax25.org/
3165 F:      include/net/ax25.h
3166 F:      include/uapi/linux/ax25.h
3167 F:      net/ax25/
3168
3169 AXENTIA ARM DEVICES
3170 M:      Peter Rosin <peda@axentia.se>
3171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3172 S:      Maintained
3173 F:      arch/arm/boot/dts/at91-linea.dtsi
3174 F:      arch/arm/boot/dts/at91-natte.dtsi
3175 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3176 F:      arch/arm/boot/dts/at91-tse850-3.dts
3177
3178 AXENTIA ASOC DRIVERS
3179 M:      Peter Rosin <peda@axentia.se>
3180 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3181 S:      Maintained
3182 F:      Documentation/devicetree/bindings/sound/axentia,*
3183 F:      sound/soc/atmel/tse850-pcm5142.c
3184
3185 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3186 M:      Nuno Sá <nuno.sa@analog.com>
3187 L:      linux-hwmon@vger.kernel.org
3188 S:      Supported
3189 W:      http://ez.analog.com/community/linux-device-drivers
3190 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3191 F:      drivers/hwmon/axi-fan-control.c
3192
3193 AXXIA I2C CONTROLLER
3194 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3195 L:      linux-i2c@vger.kernel.org
3196 S:      Maintained
3197 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3198 F:      drivers/i2c/busses/i2c-axxia.c
3199
3200 AZ6007 DVB DRIVER
3201 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3202 L:      linux-media@vger.kernel.org
3203 S:      Maintained
3204 W:      https://linuxtv.org
3205 T:      git git://linuxtv.org/media_tree.git
3206 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3207
3208 AZTECH FM RADIO RECEIVER DRIVER
3209 M:      Hans Verkuil <hverkuil@xs4all.nl>
3210 L:      linux-media@vger.kernel.org
3211 S:      Maintained
3212 W:      https://linuxtv.org
3213 T:      git git://linuxtv.org/media_tree.git
3214 F:      drivers/media/radio/radio-aztech*
3215
3216 B43 WIRELESS DRIVER
3217 L:      linux-wireless@vger.kernel.org
3218 L:      b43-dev@lists.infradead.org
3219 S:      Odd Fixes
3220 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3221 F:      drivers/net/wireless/broadcom/b43/
3222
3223 B43LEGACY WIRELESS DRIVER
3224 M:      Larry Finger <Larry.Finger@lwfinger.net>
3225 L:      linux-wireless@vger.kernel.org
3226 L:      b43-dev@lists.infradead.org
3227 S:      Maintained
3228 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3229 F:      drivers/net/wireless/broadcom/b43legacy/
3230
3231 BACKLIGHT CLASS/SUBSYSTEM
3232 M:      Lee Jones <lee.jones@linaro.org>
3233 M:      Daniel Thompson <daniel.thompson@linaro.org>
3234 M:      Jingoo Han <jingoohan1@gmail.com>
3235 L:      dri-devel@lists.freedesktop.org
3236 S:      Maintained
3237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3238 F:      Documentation/ABI/stable/sysfs-class-backlight
3239 F:      Documentation/ABI/testing/sysfs-class-backlight
3240 F:      Documentation/devicetree/bindings/leds/backlight
3241 F:      drivers/video/backlight/
3242 F:      include/linux/backlight.h
3243 F:      include/linux/pwm_backlight.h
3244
3245 BARCO P50 GPIO DRIVER
3246 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3247 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3248 S:      Maintained
3249 F:      drivers/platform/x86/barco-p50-gpio.c
3250
3251 BATMAN ADVANCED
3252 M:      Marek Lindner <mareklindner@neomailbox.ch>
3253 M:      Simon Wunderlich <sw@simonwunderlich.de>
3254 M:      Antonio Quartulli <a@unstable.cc>
3255 M:      Sven Eckelmann <sven@narfation.org>
3256 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3257 S:      Maintained
3258 W:      https://www.open-mesh.org/
3259 Q:      https://patchwork.open-mesh.org/project/batman/list/
3260 B:      https://www.open-mesh.org/projects/batman-adv/issues
3261 C:      ircs://irc.hackint.org/batadv
3262 T:      git https://git.open-mesh.org/linux-merge.git
3263 F:      Documentation/networking/batman-adv.rst
3264 F:      include/uapi/linux/batadv_packet.h
3265 F:      include/uapi/linux/batman_adv.h
3266 F:      net/batman-adv/
3267
3268 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3269 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3270 L:      linux-hams@vger.kernel.org
3271 S:      Maintained
3272 W:      http://www.baycom.org/~tom/ham/ham.html
3273 F:      drivers/net/hamradio/baycom*
3274
3275 BCACHE (BLOCK LAYER CACHE)
3276 M:      Coly Li <colyli@suse.de>
3277 M:      Kent Overstreet <kent.overstreet@gmail.com>
3278 L:      linux-bcache@vger.kernel.org
3279 S:      Maintained
3280 W:      http://bcache.evilpiepirate.org
3281 C:      irc://irc.oftc.net/bcache
3282 F:      drivers/md/bcache/
3283
3284 BDISP ST MEDIA DRIVER
3285 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3286 L:      linux-media@vger.kernel.org
3287 S:      Supported
3288 W:      https://linuxtv.org
3289 T:      git git://linuxtv.org/media_tree.git
3290 F:      drivers/media/platform/sti/bdisp
3291
3292 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3293 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3294 L:      netdev@vger.kernel.org
3295 S:      Maintained
3296 F:      drivers/net/ethernet/ec_bhf.c
3297
3298 BEFS FILE SYSTEM
3299 M:      Luis de Bethencourt <luisbg@kernel.org>
3300 M:      Salah Triki <salah.triki@gmail.com>
3301 S:      Maintained
3302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3303 F:      Documentation/filesystems/befs.rst
3304 F:      fs/befs/
3305
3306 BFQ I/O SCHEDULER
3307 M:      Paolo Valente <paolo.valente@linaro.org>
3308 M:      Jens Axboe <axboe@kernel.dk>
3309 L:      linux-block@vger.kernel.org
3310 S:      Maintained
3311 F:      Documentation/block/bfq-iosched.rst
3312 F:      block/bfq-*
3313
3314 BFS FILE SYSTEM
3315 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3316 S:      Maintained
3317 F:      Documentation/filesystems/bfs.rst
3318 F:      fs/bfs/
3319 F:      include/uapi/linux/bfs_fs.h
3320
3321 BITMAP API
3322 M:      Yury Norov <yury.norov@gmail.com>
3323 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3324 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3325 S:      Maintained
3326 F:      include/asm-generic/bitops/find.h
3327 F:      include/linux/bitmap.h
3328 F:      lib/bitmap.c
3329 F:      lib/find_bit.c
3330 F:      lib/find_bit_benchmark.c
3331 F:      lib/test_bitmap.c
3332 F:      tools/include/asm-generic/bitops/find.h
3333 F:      tools/include/linux/bitmap.h
3334 F:      tools/lib/bitmap.c
3335 F:      tools/lib/find_bit.c
3336
3337 BLINKM RGB LED DRIVER
3338 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3339 S:      Maintained
3340 F:      drivers/leds/leds-blinkm.c
3341
3342 BLOCK LAYER
3343 M:      Jens Axboe <axboe@kernel.dk>
3344 L:      linux-block@vger.kernel.org
3345 S:      Maintained
3346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3347 F:      block/
3348 F:      drivers/block/
3349 F:      include/linux/blk*
3350 F:      kernel/trace/blktrace.c
3351 F:      lib/sbitmap.c
3352
3353 BLOCK2MTD DRIVER
3354 M:      Joern Engel <joern@lazybastard.org>
3355 L:      linux-mtd@lists.infradead.org
3356 S:      Maintained
3357 F:      drivers/mtd/devices/block2mtd.c
3358
3359 BLUETOOTH DRIVERS
3360 M:      Marcel Holtmann <marcel@holtmann.org>
3361 M:      Johan Hedberg <johan.hedberg@gmail.com>
3362 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3363 L:      linux-bluetooth@vger.kernel.org
3364 S:      Supported
3365 W:      http://www.bluez.org/
3366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3368 F:      drivers/bluetooth/
3369
3370 BLUETOOTH SUBSYSTEM
3371 M:      Marcel Holtmann <marcel@holtmann.org>
3372 M:      Johan Hedberg <johan.hedberg@gmail.com>
3373 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3374 L:      linux-bluetooth@vger.kernel.org
3375 S:      Supported
3376 W:      http://www.bluez.org/
3377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3379 F:      include/net/bluetooth/
3380 F:      net/bluetooth/
3381
3382 BONDING DRIVER
3383 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3384 M:      Veaceslav Falico <vfalico@gmail.com>
3385 M:      Andy Gospodarek <andy@greyhouse.net>
3386 L:      netdev@vger.kernel.org
3387 S:      Supported
3388 W:      http://sourceforge.net/projects/bonding/
3389 F:      drivers/net/bonding/
3390 F:      include/net/bonding.h
3391 F:      include/uapi/linux/if_bonding.h
3392
3393 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3394 M:      Dan Robertson <dan@dlrobertson.com>
3395 L:      linux-iio@vger.kernel.org
3396 S:      Maintained
3397 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3398 F:      drivers/iio/accel/bma400*
3399
3400 BPF (Safe dynamic programs and tools)
3401 M:      Alexei Starovoitov <ast@kernel.org>
3402 M:      Daniel Borkmann <daniel@iogearbox.net>
3403 M:      Andrii Nakryiko <andrii@kernel.org>
3404 R:      Martin KaFai Lau <kafai@fb.com>
3405 R:      Song Liu <songliubraving@fb.com>
3406 R:      Yonghong Song <yhs@fb.com>
3407 R:      John Fastabend <john.fastabend@gmail.com>
3408 R:      KP Singh <kpsingh@kernel.org>
3409 L:      netdev@vger.kernel.org
3410 L:      bpf@vger.kernel.org
3411 S:      Supported
3412 W:      https://bpf.io/
3413 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3416 F:      Documentation/bpf/
3417 F:      Documentation/networking/filter.rst
3418 F:      Documentation/userspace-api/ebpf/
3419 F:      arch/*/net/*
3420 F:      include/linux/bpf*
3421 F:      include/linux/btf*
3422 F:      include/linux/filter.h
3423 F:      include/trace/events/xdp.h
3424 F:      include/uapi/linux/bpf*
3425 F:      include/uapi/linux/btf*
3426 F:      include/uapi/linux/filter.h
3427 F:      kernel/bpf/
3428 F:      kernel/trace/bpf_trace.c
3429 F:      lib/test_bpf.c
3430 F:      net/bpf/
3431 F:      net/core/filter.c
3432 F:      net/sched/act_bpf.c
3433 F:      net/sched/cls_bpf.c
3434 F:      samples/bpf/
3435 F:      scripts/bpf_doc.py
3436 F:      tools/bpf/
3437 F:      tools/lib/bpf/
3438 F:      tools/testing/selftests/bpf/
3439 N:      bpf
3440 K:      bpf
3441
3442 BPF JIT for ARM
3443 M:      Shubham Bansal <illusionist.neo@gmail.com>
3444 L:      netdev@vger.kernel.org
3445 L:      bpf@vger.kernel.org
3446 S:      Maintained
3447 F:      arch/arm/net/
3448
3449 BPF JIT for ARM64
3450 M:      Daniel Borkmann <daniel@iogearbox.net>
3451 M:      Alexei Starovoitov <ast@kernel.org>
3452 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3453 L:      netdev@vger.kernel.org
3454 L:      bpf@vger.kernel.org
3455 S:      Supported
3456 F:      arch/arm64/net/
3457
3458 BPF JIT for MIPS (32-BIT AND 64-BIT)
3459 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3460 M:      Paul Burton <paulburton@kernel.org>
3461 L:      netdev@vger.kernel.org
3462 L:      bpf@vger.kernel.org
3463 S:      Maintained
3464 F:      arch/mips/net/
3465
3466 BPF JIT for NFP NICs
3467 M:      Jakub Kicinski <kuba@kernel.org>
3468 L:      netdev@vger.kernel.org
3469 L:      bpf@vger.kernel.org
3470 S:      Supported
3471 F:      drivers/net/ethernet/netronome/nfp/bpf/
3472
3473 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3474 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3475 L:      netdev@vger.kernel.org
3476 L:      bpf@vger.kernel.org
3477 S:      Maintained
3478 F:      arch/powerpc/net/
3479
3480 BPF JIT for RISC-V (32-bit)
3481 M:      Luke Nelson <luke.r.nels@gmail.com>
3482 M:      Xi Wang <xi.wang@gmail.com>
3483 L:      netdev@vger.kernel.org
3484 L:      bpf@vger.kernel.org
3485 S:      Maintained
3486 F:      arch/riscv/net/
3487 X:      arch/riscv/net/bpf_jit_comp64.c
3488
3489 BPF JIT for RISC-V (64-bit)
3490 M:      Björn Töpel <bjorn@kernel.org>
3491 L:      netdev@vger.kernel.org
3492 L:      bpf@vger.kernel.org
3493 S:      Maintained
3494 F:      arch/riscv/net/
3495 X:      arch/riscv/net/bpf_jit_comp32.c
3496
3497 BPF JIT for S390
3498 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3499 M:      Heiko Carstens <hca@linux.ibm.com>
3500 M:      Vasily Gorbik <gor@linux.ibm.com>
3501 L:      netdev@vger.kernel.org
3502 L:      bpf@vger.kernel.org
3503 S:      Maintained
3504 F:      arch/s390/net/
3505 X:      arch/s390/net/pnet.c
3506
3507 BPF JIT for SPARC (32-BIT AND 64-BIT)
3508 M:      David S. Miller <davem@davemloft.net>
3509 L:      netdev@vger.kernel.org
3510 L:      bpf@vger.kernel.org
3511 S:      Maintained
3512 F:      arch/sparc/net/
3513
3514 BPF JIT for X86 32-BIT
3515 M:      Wang YanQing <udknight@gmail.com>
3516 L:      netdev@vger.kernel.org
3517 L:      bpf@vger.kernel.org
3518 S:      Maintained
3519 F:      arch/x86/net/bpf_jit_comp32.c
3520
3521 BPF JIT for X86 64-BIT
3522 M:      Alexei Starovoitov <ast@kernel.org>
3523 M:      Daniel Borkmann <daniel@iogearbox.net>
3524 L:      netdev@vger.kernel.org
3525 L:      bpf@vger.kernel.org
3526 S:      Supported
3527 F:      arch/x86/net/
3528 X:      arch/x86/net/bpf_jit_comp32.c
3529
3530 BPF LSM (Security Audit and Enforcement using BPF)
3531 M:      KP Singh <kpsingh@kernel.org>
3532 R:      Florent Revest <revest@chromium.org>
3533 R:      Brendan Jackman <jackmanb@chromium.org>
3534 L:      bpf@vger.kernel.org
3535 S:      Maintained
3536 F:      Documentation/bpf/bpf_lsm.rst
3537 F:      include/linux/bpf_lsm.h
3538 F:      kernel/bpf/bpf_lsm.c
3539 F:      security/bpf/
3540
3541 BROADCOM B44 10/100 ETHERNET DRIVER
3542 M:      Michael Chan <michael.chan@broadcom.com>
3543 L:      netdev@vger.kernel.org
3544 S:      Supported
3545 F:      drivers/net/ethernet/broadcom/b44.*
3546
3547 BROADCOM B53 ETHERNET SWITCH DRIVER
3548 M:      Florian Fainelli <f.fainelli@gmail.com>
3549 L:      netdev@vger.kernel.org
3550 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3551 S:      Supported
3552 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3553 F:      drivers/net/dsa/b53/*
3554 F:      include/linux/dsa/brcm.h
3555 F:      include/linux/platform_data/b53.h
3556
3557 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3558 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3559 L:      bcm-kernel-feedback-list@broadcom.com
3560 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3562 S:      Maintained
3563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3564 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3565 F:      drivers/pci/controller/pcie-brcmstb.c
3566 F:      drivers/staging/vc04_services
3567 N:      bcm2711
3568 N:      bcm283*
3569
3570 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3571 M:      Florian Fainelli <f.fainelli@gmail.com>
3572 M:      Ray Jui <rjui@broadcom.com>
3573 M:      Scott Branden <sbranden@broadcom.com>
3574 M:      bcm-kernel-feedback-list@broadcom.com
3575 S:      Maintained
3576 T:      git git://github.com/broadcom/mach-bcm
3577 F:      arch/arm/mach-bcm/
3578 N:      bcm281*
3579 N:      bcm113*
3580 N:      bcm216*
3581 N:      kona
3582
3583 BROADCOM BCM47XX MIPS ARCHITECTURE
3584 M:      Hauke Mehrtens <hauke@hauke-m.de>
3585 M:      Rafał Miłecki <zajec5@gmail.com>
3586 L:      linux-mips@vger.kernel.org
3587 S:      Maintained
3588 F:      Documentation/devicetree/bindings/mips/brcm/
3589 F:      arch/mips/bcm47xx/*
3590 F:      arch/mips/include/asm/mach-bcm47xx/*
3591
3592 BROADCOM BCM4908 ETHERNET DRIVER
3593 M:      Rafał Miłecki <rafal@milecki.pl>
3594 M:      bcm-kernel-feedback-list@broadcom.com
3595 L:      netdev@vger.kernel.org
3596 S:      Maintained
3597 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3598 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3599 F:      drivers/net/ethernet/broadcom/unimac.h
3600
3601 BROADCOM BCM5301X ARM ARCHITECTURE
3602 M:      Hauke Mehrtens <hauke@hauke-m.de>
3603 M:      Rafał Miłecki <zajec5@gmail.com>
3604 M:      bcm-kernel-feedback-list@broadcom.com
3605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3606 S:      Maintained
3607 F:      arch/arm/boot/dts/bcm470*
3608 F:      arch/arm/boot/dts/bcm5301*
3609 F:      arch/arm/boot/dts/bcm953012*
3610 F:      arch/arm/mach-bcm/bcm_5301x.c
3611
3612 BROADCOM BCM53573 ARM ARCHITECTURE
3613 M:      Rafał Miłecki <rafal@milecki.pl>
3614 L:      bcm-kernel-feedback-list@broadcom.com
3615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3616 S:      Maintained
3617 F:      arch/arm/boot/dts/bcm47189*
3618 F:      arch/arm/boot/dts/bcm53573*
3619
3620 BROADCOM BCM63XX ARM ARCHITECTURE
3621 M:      Florian Fainelli <f.fainelli@gmail.com>
3622 M:      bcm-kernel-feedback-list@broadcom.com
3623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3624 S:      Maintained
3625 T:      git git://github.com/broadcom/stblinux.git
3626 N:      bcm63xx
3627
3628 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3629 M:      Kevin Cernekee <cernekee@gmail.com>
3630 L:      linux-usb@vger.kernel.org
3631 S:      Maintained
3632 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3633
3634 BROADCOM BCM7XXX ARM ARCHITECTURE
3635 M:      Florian Fainelli <f.fainelli@gmail.com>
3636 M:      bcm-kernel-feedback-list@broadcom.com
3637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3638 S:      Maintained
3639 T:      git git://github.com/broadcom/stblinux.git
3640 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3641 F:      arch/arm/boot/dts/bcm7*.dts*
3642 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3643 F:      arch/arm/mach-bcm/*brcmstb*
3644 F:      arch/arm/mm/cache-b15-rac.c
3645 F:      drivers/bus/brcmstb_gisb.c
3646 F:      drivers/pci/controller/pcie-brcmstb.c
3647 N:      brcmstb
3648 N:      bcm7038
3649 N:      bcm7120
3650
3651 BROADCOM BDC DRIVER
3652 M:      Al Cooper <alcooperx@gmail.com>
3653 L:      linux-usb@vger.kernel.org
3654 L:      bcm-kernel-feedback-list@broadcom.com
3655 S:      Maintained
3656 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3657 F:      drivers/usb/gadget/udc/bdc/
3658
3659 BROADCOM BMIPS CPUFREQ DRIVER
3660 M:      Markus Mayer <mmayer@broadcom.com>
3661 M:      bcm-kernel-feedback-list@broadcom.com
3662 L:      linux-pm@vger.kernel.org
3663 S:      Maintained
3664 F:      drivers/cpufreq/bmips-cpufreq.c
3665
3666 BROADCOM BMIPS MIPS ARCHITECTURE
3667 M:      Florian Fainelli <f.fainelli@gmail.com>
3668 L:      bcm-kernel-feedback-list@broadcom.com
3669 L:      linux-mips@vger.kernel.org
3670 S:      Maintained
3671 T:      git git://github.com/broadcom/stblinux.git
3672 F:      arch/mips/bmips/*
3673 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3674 F:      arch/mips/include/asm/mach-bmips/*
3675 F:      arch/mips/kernel/*bmips*
3676 F:      drivers/soc/bcm/bcm63xx
3677 F:      drivers/irqchip/irq-bcm63*
3678 F:      drivers/irqchip/irq-bcm7*
3679 F:      drivers/irqchip/irq-brcmstb*
3680 F:      include/linux/bcm963xx_nvram.h
3681 F:      include/linux/bcm963xx_tag.h
3682
3683 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3684 M:      Rasesh Mody <rmody@marvell.com>
3685 M:      GR-Linux-NIC-Dev@marvell.com
3686 L:      netdev@vger.kernel.org
3687 S:      Supported
3688 F:      drivers/net/ethernet/broadcom/bnx2.*
3689 F:      drivers/net/ethernet/broadcom/bnx2_*
3690
3691 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3692 M:      Saurav Kashyap <skashyap@marvell.com>
3693 M:      Javed Hasan <jhasan@marvell.com>
3694 M:      GR-QLogic-Storage-Upstream@marvell.com
3695 L:      linux-scsi@vger.kernel.org
3696 S:      Supported
3697 F:      drivers/scsi/bnx2fc/
3698
3699 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3700 M:      Nilesh Javali <njavali@marvell.com>
3701 M:      Manish Rangankar <mrangankar@marvell.com>
3702 M:      GR-QLogic-Storage-Upstream@marvell.com
3703 L:      linux-scsi@vger.kernel.org
3704 S:      Supported
3705 F:      drivers/scsi/bnx2i/
3706
3707 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3708 M:      Ariel Elior <aelior@marvell.com>
3709 M:      Sudarsana Kalluru <skalluru@marvell.com>
3710 M:      GR-everest-linux-l2@marvell.com
3711 L:      netdev@vger.kernel.org
3712 S:      Supported
3713 F:      drivers/net/ethernet/broadcom/bnx2x/
3714
3715 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3716 M:      Michael Chan <michael.chan@broadcom.com>
3717 L:      netdev@vger.kernel.org
3718 S:      Supported
3719 F:      drivers/net/ethernet/broadcom/bnxt/
3720
3721 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3722 M:      Arend van Spriel <aspriel@gmail.com>
3723 M:      Franky Lin <franky.lin@broadcom.com>
3724 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3725 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3726 M:      Wright Feng <wright.feng@infineon.com>
3727 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3728 L:      linux-wireless@vger.kernel.org
3729 L:      brcm80211-dev-list.pdl@broadcom.com
3730 L:      SHA-cyfmac-dev-list@infineon.com
3731 S:      Supported
3732 F:      drivers/net/wireless/broadcom/brcm80211/
3733
3734 BROADCOM BRCMSTB GPIO DRIVER
3735 M:      Gregory Fong <gregory.0xf0@gmail.com>
3736 L:      bcm-kernel-feedback-list@broadcom.com
3737 S:      Supported
3738 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3739 F:      drivers/gpio/gpio-brcmstb.c
3740
3741 BROADCOM BRCMSTB I2C DRIVER
3742 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3743 L:      linux-i2c@vger.kernel.org
3744 L:      bcm-kernel-feedback-list@broadcom.com
3745 S:      Supported
3746 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3747 F:      drivers/i2c/busses/i2c-brcmstb.c
3748
3749 BROADCOM BRCMSTB UART DRIVER
3750 M:      Al Cooper <alcooperx@gmail.com>
3751 L:      linux-serial@vger.kernel.org
3752 L:      bcm-kernel-feedback-list@broadcom.com
3753 S:      Maintained
3754 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3755 F:      drivers/tty/serial/8250/8250_bcm7271.c
3756
3757 BROADCOM BRCMSTB USB EHCI DRIVER
3758 M:      Al Cooper <alcooperx@gmail.com>
3759 L:      linux-usb@vger.kernel.org
3760 L:      bcm-kernel-feedback-list@broadcom.com
3761 S:      Maintained
3762 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3763 F:      drivers/usb/host/ehci-brcm.*
3764
3765 BROADCOM BRCMSTB USB PIN MAP DRIVER
3766 M:      Al Cooper <alcooperx@gmail.com>
3767 L:      linux-usb@vger.kernel.org
3768 L:      bcm-kernel-feedback-list@broadcom.com
3769 S:      Maintained
3770 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3771 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3772
3773 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3774 M:      Al Cooper <alcooperx@gmail.com>
3775 L:      linux-kernel@vger.kernel.org
3776 L:      bcm-kernel-feedback-list@broadcom.com
3777 S:      Maintained
3778 F:      drivers/phy/broadcom/phy-brcm-usb*
3779
3780 BROADCOM ETHERNET PHY DRIVERS
3781 M:      Florian Fainelli <f.fainelli@gmail.com>
3782 L:      bcm-kernel-feedback-list@broadcom.com
3783 L:      netdev@vger.kernel.org
3784 S:      Supported
3785 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3786 F:      drivers/net/phy/bcm*.[ch]
3787 F:      drivers/net/phy/broadcom.c
3788 F:      include/linux/brcmphy.h
3789
3790 BROADCOM GENET ETHERNET DRIVER
3791 M:      Doug Berger <opendmb@gmail.com>
3792 M:      Florian Fainelli <f.fainelli@gmail.com>
3793 L:      bcm-kernel-feedback-list@broadcom.com
3794 L:      netdev@vger.kernel.org
3795 S:      Supported
3796 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3797 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3798 F:      drivers/net/ethernet/broadcom/genet/
3799 F:      drivers/net/ethernet/broadcom/unimac.h
3800 F:      drivers/net/mdio/mdio-bcm-unimac.c
3801 F:      include/linux/platform_data/bcmgenet.h
3802 F:      include/linux/platform_data/mdio-bcm-unimac.h
3803
3804 BROADCOM IPROC ARM ARCHITECTURE
3805 M:      Ray Jui <rjui@broadcom.com>
3806 M:      Scott Branden <sbranden@broadcom.com>
3807 M:      bcm-kernel-feedback-list@broadcom.com
3808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3809 S:      Maintained
3810 T:      git git://github.com/broadcom/cygnus-linux.git
3811 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3812 F:      arch/arm64/boot/dts/broadcom/stingray/*
3813 F:      drivers/clk/bcm/clk-ns*
3814 F:      drivers/clk/bcm/clk-sr*
3815 F:      drivers/pinctrl/bcm/pinctrl-ns*
3816 F:      include/dt-bindings/clock/bcm-sr*
3817 N:      iproc
3818 N:      cygnus
3819 N:      bcm[-_]nsp
3820 N:      bcm9113*
3821 N:      bcm9583*
3822 N:      bcm9585*
3823 N:      bcm9586*
3824 N:      bcm988312
3825 N:      bcm113*
3826 N:      bcm583*
3827 N:      bcm585*
3828 N:      bcm586*
3829 N:      bcm88312
3830 N:      hr2
3831 N:      stingray
3832
3833 BROADCOM IPROC GBIT ETHERNET DRIVER
3834 M:      Rafał Miłecki <rafal@milecki.pl>
3835 M:      bcm-kernel-feedback-list@broadcom.com
3836 L:      netdev@vger.kernel.org
3837 S:      Maintained
3838 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3839 F:      drivers/net/ethernet/broadcom/bgmac*
3840 F:      drivers/net/ethernet/broadcom/unimac.h
3841
3842 BROADCOM KONA GPIO DRIVER
3843 M:      Ray Jui <rjui@broadcom.com>
3844 L:      bcm-kernel-feedback-list@broadcom.com
3845 S:      Supported
3846 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3847 F:      drivers/gpio/gpio-bcm-kona.c
3848
3849 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3850 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3851 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3852 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3853 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3854 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3855 L:      linux-scsi@vger.kernel.org
3856 S:      Supported
3857 W:      https://www.broadcom.com/support/storage
3858 F:      drivers/scsi/mpi3mr/
3859
3860 BROADCOM NETXTREME-E ROCE DRIVER
3861 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3862 L:      linux-rdma@vger.kernel.org
3863 S:      Supported
3864 W:      http://www.broadcom.com
3865 F:      drivers/infiniband/hw/bnxt_re/
3866 F:      include/uapi/rdma/bnxt_re-abi.h
3867
3868 BROADCOM NVRAM DRIVER
3869 M:      Rafał Miłecki <zajec5@gmail.com>
3870 L:      linux-mips@vger.kernel.org
3871 S:      Maintained
3872 F:      drivers/firmware/broadcom/*
3873
3874 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3875 M:      Rafał Miłecki <rafal@milecki.pl>
3876 M:      Florian Fainelli <f.fainelli@gmail.com>
3877 M:      bcm-kernel-feedback-list@broadcom.com
3878 L:      linux-pm@vger.kernel.org
3879 S:      Maintained
3880 T:      git git://github.com/broadcom/stblinux.git
3881 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3882 F:      include/dt-bindings/soc/bcm-pmb.h
3883
3884 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3885 M:      Rafał Miłecki <zajec5@gmail.com>
3886 L:      linux-wireless@vger.kernel.org
3887 S:      Maintained
3888 F:      drivers/bcma/
3889 F:      include/linux/bcma/
3890
3891 BROADCOM SPI DRIVER
3892 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3893 M:      bcm-kernel-feedback-list@broadcom.com
3894 S:      Maintained
3895 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3896 F:      drivers/spi/spi-bcm-qspi.*
3897 F:      drivers/spi/spi-brcmstb-qspi.c
3898 F:      drivers/spi/spi-iproc-qspi.c
3899
3900 BROADCOM STB AVS CPUFREQ DRIVER
3901 M:      Markus Mayer <mmayer@broadcom.com>
3902 M:      bcm-kernel-feedback-list@broadcom.com
3903 L:      linux-pm@vger.kernel.org
3904 S:      Maintained
3905 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3906 F:      drivers/cpufreq/brcmstb*
3907
3908 BROADCOM STB AVS TMON DRIVER
3909 M:      Markus Mayer <mmayer@broadcom.com>
3910 M:      bcm-kernel-feedback-list@broadcom.com
3911 L:      linux-pm@vger.kernel.org
3912 S:      Maintained
3913 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3914 F:      drivers/thermal/broadcom/brcmstb*
3915
3916 BROADCOM STB DPFE DRIVER
3917 M:      Markus Mayer <mmayer@broadcom.com>
3918 M:      bcm-kernel-feedback-list@broadcom.com
3919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3920 S:      Maintained
3921 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3922 F:      drivers/memory/brcmstb_dpfe.c
3923
3924 BROADCOM STB NAND FLASH DRIVER
3925 M:      Brian Norris <computersforpeace@gmail.com>
3926 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3927 L:      linux-mtd@lists.infradead.org
3928 L:      bcm-kernel-feedback-list@broadcom.com
3929 S:      Maintained
3930 F:      drivers/mtd/nand/raw/brcmnand/
3931
3932 BROADCOM STB PCIE DRIVER
3933 M:      Jim Quinlan <jim2101024@gmail.com>
3934 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3935 M:      Florian Fainelli <f.fainelli@gmail.com>
3936 M:      bcm-kernel-feedback-list@broadcom.com
3937 L:      linux-pci@vger.kernel.org
3938 S:      Maintained
3939 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3940 F:      drivers/pci/controller/pcie-brcmstb.c
3941
3942 BROADCOM SYSTEMPORT ETHERNET DRIVER
3943 M:      Florian Fainelli <f.fainelli@gmail.com>
3944 L:      bcm-kernel-feedback-list@broadcom.com
3945 L:      netdev@vger.kernel.org
3946 S:      Supported
3947 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3948 F:      drivers/net/ethernet/broadcom/unimac.h
3949
3950 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3951 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3952 M:      Prashant Sreedharan <prashant@broadcom.com>
3953 M:      Michael Chan <mchan@broadcom.com>
3954 L:      netdev@vger.kernel.org
3955 S:      Supported
3956 F:      drivers/net/ethernet/broadcom/tg3.*
3957
3958 BROADCOM VK DRIVER
3959 M:      Scott Branden <scott.branden@broadcom.com>
3960 L:      bcm-kernel-feedback-list@broadcom.com
3961 S:      Supported
3962 F:      drivers/misc/bcm-vk/
3963 F:      include/uapi/linux/misc/bcm_vk.h
3964
3965 BROCADE BFA FC SCSI DRIVER
3966 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3967 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3968 L:      linux-scsi@vger.kernel.org
3969 S:      Supported
3970 F:      drivers/scsi/bfa/
3971
3972 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3973 M:      Rasesh Mody <rmody@marvell.com>
3974 M:      Sudarsana Kalluru <skalluru@marvell.com>
3975 M:      GR-Linux-NIC-Dev@marvell.com
3976 L:      netdev@vger.kernel.org
3977 S:      Supported
3978 F:      drivers/net/ethernet/brocade/bna/
3979
3980 BSG (block layer generic sg v4 driver)
3981 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3982 L:      linux-scsi@vger.kernel.org
3983 S:      Supported
3984 F:      block/bsg.c
3985 F:      include/linux/bsg.h
3986 F:      include/uapi/linux/bsg.h
3987
3988 BT87X AUDIO DRIVER
3989 M:      Clemens Ladisch <clemens@ladisch.de>
3990 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3991 S:      Maintained
3992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3993 F:      Documentation/sound/cards/bt87x.rst
3994 F:      sound/pci/bt87x.c
3995
3996 BT8XXGPIO DRIVER
3997 M:      Michael Buesch <m@bues.ch>
3998 S:      Maintained
3999 W:      http://bu3sch.de/btgpio.php
4000 F:      drivers/gpio/gpio-bt8xx.c
4001
4002 BTRFS FILE SYSTEM
4003 M:      Chris Mason <clm@fb.com>
4004 M:      Josef Bacik <josef@toxicpanda.com>
4005 M:      David Sterba <dsterba@suse.com>
4006 L:      linux-btrfs@vger.kernel.org
4007 S:      Maintained
4008 W:      http://btrfs.wiki.kernel.org/
4009 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4010 C:      irc://irc.libera.chat/btrfs
4011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4012 F:      Documentation/filesystems/btrfs.rst
4013 F:      fs/btrfs/
4014 F:      include/linux/btrfs*
4015 F:      include/uapi/linux/btrfs*
4016
4017 BTTV VIDEO4LINUX DRIVER
4018 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4019 L:      linux-media@vger.kernel.org
4020 S:      Odd fixes
4021 W:      https://linuxtv.org
4022 T:      git git://linuxtv.org/media_tree.git
4023 F:      Documentation/driver-api/media/drivers/bttv*
4024 F:      drivers/media/pci/bt8xx/bttv*
4025
4026 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4027 M:      Chanwoo Choi <cw00.choi@samsung.com>
4028 L:      linux-pm@vger.kernel.org
4029 L:      linux-samsung-soc@vger.kernel.org
4030 S:      Maintained
4031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4032 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4033 F:      drivers/devfreq/exynos-bus.c
4034
4035 BUSLOGIC SCSI DRIVER
4036 M:      Khalid Aziz <khalid@gonehiking.org>
4037 L:      linux-scsi@vger.kernel.org
4038 S:      Maintained
4039 F:      drivers/scsi/BusLogic.*
4040 F:      drivers/scsi/FlashPoint.*
4041
4042 C-MEDIA CMI8788 DRIVER
4043 M:      Clemens Ladisch <clemens@ladisch.de>
4044 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4045 S:      Maintained
4046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4047 F:      sound/pci/oxygen/
4048
4049 C-SKY ARCHITECTURE
4050 M:      Guo Ren <guoren@kernel.org>
4051 L:      linux-csky@vger.kernel.org
4052 S:      Supported
4053 T:      git https://github.com/c-sky/csky-linux.git
4054 F:      Documentation/devicetree/bindings/csky/
4055 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4056 F:      Documentation/devicetree/bindings/timer/csky,*
4057 F:      arch/csky/
4058 F:      drivers/clocksource/timer-gx6605s.c
4059 F:      drivers/clocksource/timer-mp-csky.c
4060 F:      drivers/irqchip/irq-csky-*
4061 N:      csky
4062 K:      csky
4063
4064 CA8210 IEEE-802.15.4 RADIO DRIVER
4065 M:      Harry Morris <h.morris@cascoda.com>
4066 L:      linux-wpan@vger.kernel.org
4067 S:      Maintained
4068 W:      https://github.com/Cascoda/ca8210-linux.git
4069 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4070 F:      drivers/net/ieee802154/ca8210.c
4071
4072 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4073 M:      Damien Le Moal <damien.lemoal@wdc.com>
4074 L:      linux-riscv@lists.infradead.org
4075 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4076 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4077 F:      drivers/pinctrl/pinctrl-k210.c
4078
4079 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4080 M:      Damien Le Moal <damien.lemoal@wdc.com>
4081 L:      linux-kernel@vger.kernel.org
4082 L:      linux-riscv@lists.infradead.org
4083 S:      Maintained
4084 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4085 F:      drivers/reset/reset-k210.c
4086
4087 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4088 M:      Damien Le Moal <damien.lemoal@wdc.com>
4089 L:      linux-riscv@lists.infradead.org
4090 S:      Maintained
4091 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4092 F:      drivers/soc/canaan/
4093 F:      include/soc/canaan/
4094
4095 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4096 M:      David Howells <dhowells@redhat.com>
4097 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4098 S:      Supported
4099 F:      Documentation/filesystems/caching/cachefiles.rst
4100 F:      fs/cachefiles/
4101
4102 CADENCE MIPI-CSI2 BRIDGES
4103 M:      Maxime Ripard <mripard@kernel.org>
4104 L:      linux-media@vger.kernel.org
4105 S:      Maintained
4106 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4107 F:      drivers/media/platform/cadence/cdns-csi2*
4108
4109 CADENCE NAND DRIVER
4110 L:      linux-mtd@lists.infradead.org
4111 S:      Orphan
4112 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4113 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4114
4115 CADENCE USB3 DRD IP DRIVER
4116 M:      Peter Chen <peter.chen@kernel.org>
4117 M:      Pawel Laszczak <pawell@cadence.com>
4118 R:      Roger Quadros <rogerq@kernel.org>
4119 R:      Aswath Govindraju <a-govindraju@ti.com>
4120 L:      linux-usb@vger.kernel.org
4121 S:      Maintained
4122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4123 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4124 F:      drivers/usb/cdns3/
4125 X:      drivers/usb/cdns3/cdnsp*
4126
4127 CADENCE USBSSP DRD IP DRIVER
4128 M:      Pawel Laszczak <pawell@cadence.com>
4129 L:      linux-usb@vger.kernel.org
4130 S:      Maintained
4131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4132 F:      drivers/usb/cdns3/
4133 X:      drivers/usb/cdns3/cdns3*
4134
4135 CADET FM/AM RADIO RECEIVER DRIVER
4136 M:      Hans Verkuil <hverkuil@xs4all.nl>
4137 L:      linux-media@vger.kernel.org
4138 S:      Maintained
4139 W:      https://linuxtv.org
4140 T:      git git://linuxtv.org/media_tree.git
4141 F:      drivers/media/radio/radio-cadet*
4142
4143 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4144 L:      linux-media@vger.kernel.org
4145 S:      Orphan
4146 T:      git git://linuxtv.org/media_tree.git
4147 F:      Documentation/admin-guide/media/cafe_ccic*
4148 F:      drivers/media/platform/marvell-ccic/
4149
4150 CAIF NETWORK LAYER
4151 L:      netdev@vger.kernel.org
4152 S:      Orphan
4153 F:      Documentation/networking/caif/
4154 F:      drivers/net/caif/
4155 F:      include/net/caif/
4156 F:      include/uapi/linux/caif/
4157 F:      net/caif/
4158
4159 CAKE QDISC
4160 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4161 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4162 S:      Maintained
4163 F:      net/sched/sch_cake.c
4164
4165 CAN NETWORK DRIVERS
4166 M:      Wolfgang Grandegger <wg@grandegger.com>
4167 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4168 L:      linux-can@vger.kernel.org
4169 S:      Maintained
4170 W:      https://github.com/linux-can
4171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4173 F:      Documentation/devicetree/bindings/net/can/
4174 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4175 F:      drivers/net/can/
4176 F:      drivers/phy/phy-can-transceiver.c
4177 F:      include/linux/can/bittiming.h
4178 F:      include/linux/can/dev.h
4179 F:      include/linux/can/led.h
4180 F:      include/linux/can/length.h
4181 F:      include/linux/can/platform/
4182 F:      include/linux/can/rx-offload.h
4183 F:      include/uapi/linux/can/error.h
4184 F:      include/uapi/linux/can/netlink.h
4185 F:      include/uapi/linux/can/vxcan.h
4186
4187 CAN NETWORK LAYER
4188 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4189 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4190 L:      linux-can@vger.kernel.org
4191 S:      Maintained
4192 W:      https://github.com/linux-can
4193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4195 F:      Documentation/networking/can.rst
4196 F:      include/linux/can/can-ml.h
4197 F:      include/linux/can/core.h
4198 F:      include/linux/can/skb.h
4199 F:      include/net/netns/can.h
4200 F:      include/uapi/linux/can.h
4201 F:      include/uapi/linux/can/bcm.h
4202 F:      include/uapi/linux/can/gw.h
4203 F:      include/uapi/linux/can/isotp.h
4204 F:      include/uapi/linux/can/raw.h
4205 F:      net/can/
4206
4207 CAN-J1939 NETWORK LAYER
4208 M:      Robin van der Gracht <robin@protonic.nl>
4209 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4210 R:      kernel@pengutronix.de
4211 L:      linux-can@vger.kernel.org
4212 S:      Maintained
4213 F:      Documentation/networking/j1939.rst
4214 F:      include/uapi/linux/can/j1939.h
4215 F:      net/can/j1939/
4216
4217 CAPABILITIES
4218 M:      Serge Hallyn <serge@hallyn.com>
4219 L:      linux-security-module@vger.kernel.org
4220 S:      Supported
4221 F:      include/linux/capability.h
4222 F:      include/uapi/linux/capability.h
4223 F:      kernel/capability.c
4224 F:      security/commoncap.c
4225
4226 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4227 M:      Kevin Tsai <ktsai@capellamicro.com>
4228 S:      Maintained
4229 F:      drivers/iio/light/cm*
4230
4231 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4232 M:      Christian Lamparter <chunkeey@googlemail.com>
4233 L:      linux-wireless@vger.kernel.org
4234 S:      Maintained
4235 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4236 F:      drivers/net/wireless/ath/carl9170/
4237
4238 CAVIUM I2C DRIVER
4239 M:      Robert Richter <rric@kernel.org>
4240 S:      Odd Fixes
4241 W:      http://www.marvell.com
4242 F:      drivers/i2c/busses/i2c-octeon*
4243 F:      drivers/i2c/busses/i2c-thunderx*
4244
4245 CAVIUM LIQUIDIO NETWORK DRIVER
4246 M:      Derek Chickles <dchickles@marvell.com>
4247 M:      Satanand Burla <sburla@marvell.com>
4248 M:      Felix Manlunas <fmanlunas@marvell.com>
4249 L:      netdev@vger.kernel.org
4250 S:      Supported
4251 W:      http://www.marvell.com
4252 F:      drivers/net/ethernet/cavium/liquidio/
4253
4254 CAVIUM MMC DRIVER
4255 M:      Robert Richter <rric@kernel.org>
4256 S:      Odd Fixes
4257 W:      http://www.marvell.com
4258 F:      drivers/mmc/host/cavium*
4259
4260 CAVIUM OCTEON-TX CRYPTO DRIVER
4261 M:      George Cherian <gcherian@marvell.com>
4262 L:      linux-crypto@vger.kernel.org
4263 S:      Supported
4264 W:      http://www.marvell.com
4265 F:      drivers/crypto/cavium/cpt/
4266
4267 CAVIUM THUNDERX2 ARM64 SOC
4268 M:      Robert Richter <rric@kernel.org>
4269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4270 S:      Odd Fixes
4271 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4272 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4273
4274 CBS/ETF/TAPRIO QDISCS
4275 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4276 S:      Maintained
4277 L:      netdev@vger.kernel.org
4278 F:      net/sched/sch_cbs.c
4279 F:      net/sched/sch_etf.c
4280 F:      net/sched/sch_taprio.c
4281
4282 CC2520 IEEE-802.15.4 RADIO DRIVER
4283 M:      Varka Bhadram <varkabhadram@gmail.com>
4284 L:      linux-wpan@vger.kernel.org
4285 S:      Maintained
4286 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4287 F:      drivers/net/ieee802154/cc2520.c
4288 F:      include/linux/spi/cc2520.h
4289
4290 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4291 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4292 L:      linux-crypto@vger.kernel.org
4293 S:      Supported
4294 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4295 F:      drivers/crypto/ccree/
4296
4297 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4298 M:      Hadar Gat <hadar.gat@arm.com>
4299 L:      linux-crypto@vger.kernel.org
4300 S:      Supported
4301 F:      drivers/char/hw_random/cctrng.c
4302 F:      drivers/char/hw_random/cctrng.h
4303 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4304 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4305
4306 CEC FRAMEWORK
4307 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4308 L:      linux-media@vger.kernel.org
4309 S:      Supported
4310 W:      http://linuxtv.org
4311 T:      git git://linuxtv.org/media_tree.git
4312 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4313 F:      Documentation/devicetree/bindings/media/cec.txt
4314 F:      Documentation/driver-api/media/cec-core.rst
4315 F:      Documentation/userspace-api/media/cec
4316 F:      drivers/media/cec/
4317 F:      drivers/media/rc/keymaps/rc-cec.c
4318 F:      include/media/cec-notifier.h
4319 F:      include/media/cec.h
4320 F:      include/uapi/linux/cec-funcs.h
4321 F:      include/uapi/linux/cec.h
4322
4323 CEC GPIO DRIVER
4324 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4325 L:      linux-media@vger.kernel.org
4326 S:      Supported
4327 W:      http://linuxtv.org
4328 T:      git git://linuxtv.org/media_tree.git
4329 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4330 F:      drivers/media/cec/platform/cec-gpio/
4331
4332 CELL BROADBAND ENGINE ARCHITECTURE
4333 M:      Arnd Bergmann <arnd@arndb.de>
4334 L:      linuxppc-dev@lists.ozlabs.org
4335 S:      Supported
4336 W:      http://www.ibm.com/developerworks/power/cell/
4337 F:      arch/powerpc/include/asm/cell*.h
4338 F:      arch/powerpc/include/asm/spu*.h
4339 F:      arch/powerpc/include/uapi/asm/spu*.h
4340 F:      arch/powerpc/platforms/cell/
4341
4342 CELLWISE CW2015 BATTERY DRIVER
4343 M:      Tobias Schrammm <t.schramm@manjaro.org>
4344 S:      Maintained
4345 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4346 F:      drivers/power/supply/cw2015_battery.c
4347
4348 CEPH COMMON CODE (LIBCEPH)
4349 M:      Ilya Dryomov <idryomov@gmail.com>
4350 M:      Jeff Layton <jlayton@kernel.org>
4351 L:      ceph-devel@vger.kernel.org
4352 S:      Supported
4353 W:      http://ceph.com/
4354 T:      git git://github.com/ceph/ceph-client.git
4355 F:      include/linux/ceph/
4356 F:      include/linux/crush/
4357 F:      net/ceph/
4358
4359 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4360 M:      Jeff Layton <jlayton@kernel.org>
4361 M:      Ilya Dryomov <idryomov@gmail.com>
4362 L:      ceph-devel@vger.kernel.org
4363 S:      Supported
4364 W:      http://ceph.com/
4365 T:      git git://github.com/ceph/ceph-client.git
4366 F:      Documentation/filesystems/ceph.rst
4367 F:      fs/ceph/
4368
4369 CERTIFICATE HANDLING
4370 M:      David Howells <dhowells@redhat.com>
4371 M:      David Woodhouse <dwmw2@infradead.org>
4372 L:      keyrings@vger.kernel.org
4373 S:      Maintained
4374 F:      Documentation/admin-guide/module-signing.rst
4375 F:      certs/
4376 F:      scripts/extract-cert.c
4377 F:      scripts/sign-file.c
4378
4379 CFAG12864B LCD DRIVER
4380 M:      Miguel Ojeda <ojeda@kernel.org>
4381 S:      Maintained
4382 F:      drivers/auxdisplay/cfag12864b.c
4383 F:      include/linux/cfag12864b.h
4384
4385 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4386 M:      Miguel Ojeda <ojeda@kernel.org>
4387 S:      Maintained
4388 F:      drivers/auxdisplay/cfag12864bfb.c
4389 F:      include/linux/cfag12864b.h
4390
4391 CHAR and MISC DRIVERS
4392 M:      Arnd Bergmann <arnd@arndb.de>
4393 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4394 S:      Supported
4395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4396 F:      drivers/char/
4397 F:      drivers/misc/
4398 F:      include/linux/miscdevice.h
4399 X:      drivers/char/agp/
4400 X:      drivers/char/hw_random/
4401 X:      drivers/char/ipmi/
4402 X:      drivers/char/random.c
4403 X:      drivers/char/tpm/
4404
4405 CHECKPATCH
4406 M:      Andy Whitcroft <apw@canonical.com>
4407 M:      Joe Perches <joe@perches.com>
4408 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4409 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4410 S:      Maintained
4411 F:      scripts/checkpatch.pl
4412
4413 CHECKPATCH DOCUMENTATION
4414 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4415 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4416 R:      Joe Perches <joe@perches.com>
4417 S:      Maintained
4418 F:      Documentation/dev-tools/checkpatch.rst
4419
4420 CHINESE DOCUMENTATION
4421 M:      Alex Shi <alexs@kernel.org>
4422 S:      Maintained
4423 F:      Documentation/translations/zh_CN/
4424
4425 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4426 M:      Peter Chen <peter.chen@kernel.org>
4427 L:      linux-usb@vger.kernel.org
4428 S:      Maintained
4429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4430 F:      drivers/usb/chipidea/
4431
4432 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4433 M:      Hans de Goede <hdegoede@redhat.com>
4434 L:      linux-input@vger.kernel.org
4435 S:      Maintained
4436 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4437 F:      drivers/input/touchscreen/chipone_icn8318.c
4438
4439 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4440 M:      Hans de Goede <hdegoede@redhat.com>
4441 L:      linux-input@vger.kernel.org
4442 S:      Maintained
4443 F:      drivers/input/touchscreen/chipone_icn8505.c
4444
4445 CHROME HARDWARE PLATFORM SUPPORT
4446 M:      Benson Leung <bleung@chromium.org>
4447 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4448 S:      Maintained
4449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4450 F:      drivers/platform/chrome/
4451
4452 CHROMEOS EC CODEC DRIVER
4453 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4454 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4455 R:      Guenter Roeck <groeck@chromium.org>
4456 S:      Maintained
4457 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4458 F:      sound/soc/codecs/cros_ec_codec.*
4459
4460 CHROMEOS EC SUBDRIVERS
4461 M:      Benson Leung <bleung@chromium.org>
4462 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4463 R:      Guenter Roeck <groeck@chromium.org>
4464 S:      Maintained
4465 F:      drivers/power/supply/cros_usbpd-charger.c
4466 N:      cros_ec
4467 N:      cros-ec
4468
4469 CHRONTEL CH7322 CEC DRIVER
4470 M:      Joe Tessler <jrt@google.com>
4471 L:      linux-media@vger.kernel.org
4472 S:      Maintained
4473 T:      git git://linuxtv.org/media_tree.git
4474 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4475 F:      drivers/media/cec/i2c/ch7322.c
4476
4477 CIRRUS LOGIC AUDIO CODEC DRIVERS
4478 M:      James Schulman <james.schulman@cirrus.com>
4479 M:      David Rhodes <david.rhodes@cirrus.com>
4480 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4481 L:      patches@opensource.cirrus.com
4482 S:      Maintained
4483 F:      sound/soc/codecs/cs*
4484
4485 CIRRUS LOGIC DSP FIRMWARE DRIVER
4486 M:      Simon Trimmer <simont@opensource.cirrus.com>
4487 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4488 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4489 L:      patches@opensource.cirrus.com
4490 S:      Supported
4491 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4492 T:      git https://github.com/CirrusLogic/linux-drivers.git
4493 F:      drivers/firmware/cirrus/*
4494 F:      include/linux/firmware/cirrus/*
4495
4496 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4497 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4498 L:      netdev@vger.kernel.org
4499 S:      Maintained
4500 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4501
4502 CIRRUS LOGIC LOCHNAGAR DRIVER
4503 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4504 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4505 L:      patches@opensource.cirrus.com
4506 S:      Supported
4507 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4508 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4509 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4510 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4511 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4512 F:      Documentation/hwmon/lochnagar.rst
4513 F:      drivers/clk/clk-lochnagar.c
4514 F:      drivers/hwmon/lochnagar-hwmon.c
4515 F:      drivers/mfd/lochnagar-i2c.c
4516 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4517 F:      drivers/regulator/lochnagar-regulator.c
4518 F:      include/dt-bindings/clk/lochnagar.h
4519 F:      include/dt-bindings/pinctrl/lochnagar.h
4520 F:      include/linux/mfd/lochnagar*
4521 F:      sound/soc/codecs/lochnagar-sc.c
4522
4523 CIRRUS LOGIC MADERA CODEC DRIVERS
4524 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4525 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4526 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4527 L:      patches@opensource.cirrus.com
4528 S:      Supported
4529 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4530 T:      git https://github.com/CirrusLogic/linux-drivers.git
4531 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4532 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4533 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4534 F:      drivers/gpio/gpio-madera*
4535 F:      drivers/irqchip/irq-madera*
4536 F:      drivers/mfd/cs47l*
4537 F:      drivers/mfd/madera*
4538 F:      drivers/pinctrl/cirrus/*
4539 F:      include/dt-bindings/sound/madera*
4540 F:      include/linux/irqchip/irq-madera*
4541 F:      include/linux/mfd/madera/*
4542 F:      include/sound/madera*
4543 F:      sound/soc/codecs/cs47l*
4544 F:      sound/soc/codecs/madera*
4545
4546 CISCO FCOE HBA DRIVER
4547 M:      Satish Kharat <satishkh@cisco.com>
4548 M:      Sesidhar Baddela <sebaddel@cisco.com>
4549 M:      Karan Tilak Kumar <kartilak@cisco.com>
4550 L:      linux-scsi@vger.kernel.org
4551 S:      Supported
4552 F:      drivers/scsi/fnic/
4553
4554 CISCO SCSI HBA DRIVER
4555 M:      Karan Tilak Kumar <kartilak@cisco.com>
4556 M:      Sesidhar Baddela <sebaddel@cisco.com>
4557 L:      linux-scsi@vger.kernel.org
4558 S:      Supported
4559 F:      drivers/scsi/snic/
4560
4561 CISCO VIC ETHERNET NIC DRIVER
4562 M:      Christian Benvenuti <benve@cisco.com>
4563 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4564 S:      Supported
4565 F:      drivers/net/ethernet/cisco/enic/
4566
4567 CISCO VIC LOW LATENCY NIC DRIVER
4568 M:      Christian Benvenuti <benve@cisco.com>
4569 M:      Nelson Escobar <neescoba@cisco.com>
4570 S:      Supported
4571 F:      drivers/infiniband/hw/usnic/
4572
4573 CLANG-FORMAT FILE
4574 M:      Miguel Ojeda <ojeda@kernel.org>
4575 S:      Maintained
4576 F:      .clang-format
4577
4578 CLANG/LLVM BUILD SUPPORT
4579 M:      Nathan Chancellor <nathan@kernel.org>
4580 M:      Nick Desaulniers <ndesaulniers@google.com>
4581 L:      llvm@lists.linux.dev
4582 S:      Supported
4583 W:      https://clangbuiltlinux.github.io/
4584 B:      https://github.com/ClangBuiltLinux/linux/issues
4585 C:      irc://irc.libera.chat/clangbuiltlinux
4586 F:      Documentation/kbuild/llvm.rst
4587 F:      include/linux/compiler-clang.h
4588 F:      scripts/Makefile.clang
4589 F:      scripts/clang-tools/
4590 K:      \b(?i:clang|llvm)\b
4591
4592 CLANG CONTROL FLOW INTEGRITY SUPPORT
4593 M:      Sami Tolvanen <samitolvanen@google.com>
4594 M:      Kees Cook <keescook@chromium.org>
4595 R:      Nathan Chancellor <nathan@kernel.org>
4596 R:      Nick Desaulniers <ndesaulniers@google.com>
4597 L:      llvm@lists.linux.dev
4598 S:      Supported
4599 B:      https://github.com/ClangBuiltLinux/linux/issues
4600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4601 F:      include/linux/cfi.h
4602 F:      kernel/cfi.c
4603
4604 CLEANCACHE API
4605 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4606 L:      linux-kernel@vger.kernel.org
4607 S:      Maintained
4608 F:      include/linux/cleancache.h
4609 F:      mm/cleancache.c
4610
4611 CLK API
4612 M:      Russell King <linux@armlinux.org.uk>
4613 L:      linux-clk@vger.kernel.org
4614 S:      Maintained
4615 F:      include/linux/clk.h
4616
4617 CLOCKSOURCE, CLOCKEVENT DRIVERS
4618 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4619 M:      Thomas Gleixner <tglx@linutronix.de>
4620 L:      linux-kernel@vger.kernel.org
4621 S:      Supported
4622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4623 F:      Documentation/devicetree/bindings/timer/
4624 F:      drivers/clocksource/
4625
4626 CMPC ACPI DRIVER
4627 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4628 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4629 L:      platform-driver-x86@vger.kernel.org
4630 S:      Supported
4631 F:      drivers/platform/x86/classmate-laptop.c
4632
4633 COBALT MEDIA DRIVER
4634 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4635 L:      linux-media@vger.kernel.org
4636 S:      Supported
4637 W:      https://linuxtv.org
4638 T:      git git://linuxtv.org/media_tree.git
4639 F:      drivers/media/pci/cobalt/
4640
4641 COCCINELLE/Semantic Patches (SmPL)
4642 M:      Julia Lawall <Julia.Lawall@inria.fr>
4643 M:      Gilles Muller <Gilles.Muller@inria.fr>
4644 M:      Nicolas Palix <nicolas.palix@imag.fr>
4645 M:      Michal Marek <michal.lkml@markovi.net>
4646 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4647 S:      Supported
4648 W:      http://coccinelle.lip6.fr/
4649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4650 F:      Documentation/dev-tools/coccinelle.rst
4651 F:      scripts/coccicheck
4652 F:      scripts/coccinelle/
4653
4654 CODA FILE SYSTEM
4655 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4656 M:      coda@cs.cmu.edu
4657 L:      codalist@coda.cs.cmu.edu
4658 S:      Maintained
4659 W:      http://www.coda.cs.cmu.edu/
4660 F:      Documentation/filesystems/coda.rst
4661 F:      fs/coda/
4662 F:      include/linux/coda*.h
4663 F:      include/uapi/linux/coda*.h
4664
4665 CODA V4L2 MEM2MEM DRIVER
4666 M:      Philipp Zabel <p.zabel@pengutronix.de>
4667 L:      linux-media@vger.kernel.org
4668 S:      Maintained
4669 F:      Documentation/devicetree/bindings/media/coda.yaml
4670 F:      drivers/media/platform/coda/
4671
4672 CODE OF CONDUCT
4673 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4674 S:      Supported
4675 F:      Documentation/process/code-of-conduct-interpretation.rst
4676 F:      Documentation/process/code-of-conduct.rst
4677
4678 COMEDI DRIVERS
4679 M:      Ian Abbott <abbotti@mev.co.uk>
4680 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4681 S:      Odd Fixes
4682 F:      drivers/comedi/
4683
4684 COMMON CLK FRAMEWORK
4685 M:      Michael Turquette <mturquette@baylibre.com>
4686 M:      Stephen Boyd <sboyd@kernel.org>
4687 L:      linux-clk@vger.kernel.org
4688 S:      Maintained
4689 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4691 F:      Documentation/devicetree/bindings/clock/
4692 F:      drivers/clk/
4693 F:      include/linux/clk-pr*
4694 F:      include/linux/clk/
4695 F:      include/linux/of_clk.h
4696 X:      drivers/clk/clkdev.c
4697
4698 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4699 M:      Steve French <sfrench@samba.org>
4700 L:      linux-cifs@vger.kernel.org
4701 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4702 S:      Supported
4703 W:      http://linux-cifs.samba.org/
4704 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4705 F:      Documentation/admin-guide/cifs/
4706 F:      fs/cifs/
4707 F:      fs/smbfs_common/
4708
4709 COMPACTPCI HOTPLUG CORE
4710 M:      Scott Murray <scott@spiteful.org>
4711 L:      linux-pci@vger.kernel.org
4712 S:      Maintained
4713 F:      drivers/pci/hotplug/cpci_hotplug*
4714
4715 COMPACTPCI HOTPLUG GENERIC DRIVER
4716 M:      Scott Murray <scott@spiteful.org>
4717 L:      linux-pci@vger.kernel.org
4718 S:      Maintained
4719 F:      drivers/pci/hotplug/cpcihp_generic.c
4720
4721 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4722 M:      Scott Murray <scott@spiteful.org>
4723 L:      linux-pci@vger.kernel.org
4724 S:      Maintained
4725 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4726
4727 COMPAL LAPTOP SUPPORT
4728 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4729 L:      platform-driver-x86@vger.kernel.org
4730 S:      Maintained
4731 F:      drivers/platform/x86/compal-laptop.c
4732
4733 COMPILER ATTRIBUTES
4734 M:      Miguel Ojeda <ojeda@kernel.org>
4735 R:      Nick Desaulniers <ndesaulniers@google.com>
4736 S:      Maintained
4737 F:      include/linux/compiler_attributes.h
4738
4739 COMPUTE EXPRESS LINK (CXL)
4740 M:      Alison Schofield <alison.schofield@intel.com>
4741 M:      Vishal Verma <vishal.l.verma@intel.com>
4742 M:      Ira Weiny <ira.weiny@intel.com>
4743 M:      Ben Widawsky <ben.widawsky@intel.com>
4744 M:      Dan Williams <dan.j.williams@intel.com>
4745 L:      linux-cxl@vger.kernel.org
4746 S:      Maintained
4747 F:      drivers/cxl/
4748 F:      include/uapi/linux/cxl_mem.h
4749
4750 CONEXANT ACCESSRUNNER USB DRIVER
4751 L:      accessrunner-general@lists.sourceforge.net
4752 S:      Orphan
4753 W:      http://accessrunner.sourceforge.net/
4754 F:      drivers/usb/atm/cxacru.c
4755
4756 CONFIGFS
4757 M:      Joel Becker <jlbec@evilplan.org>
4758 M:      Christoph Hellwig <hch@lst.de>
4759 S:      Supported
4760 T:      git git://git.infradead.org/users/hch/configfs.git
4761 F:      fs/configfs/
4762 F:      include/linux/configfs.h
4763 F:      samples/configfs/
4764
4765 CONSOLE SUBSYSTEM
4766 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4767 S:      Supported
4768 F:      drivers/video/console/
4769 F:      include/linux/console*
4770
4771 CONTEXT TRACKING
4772 M:      Frederic Weisbecker <frederic@kernel.org>
4773 S:      Maintained
4774 F:      kernel/context_tracking.c
4775 F:      include/linux/context_tracking*
4776
4777 CONTROL GROUP (CGROUP)
4778 M:      Tejun Heo <tj@kernel.org>
4779 M:      Zefan Li <lizefan.x@bytedance.com>
4780 M:      Johannes Weiner <hannes@cmpxchg.org>
4781 L:      cgroups@vger.kernel.org
4782 S:      Maintained
4783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4784 F:      Documentation/admin-guide/cgroup-v1/
4785 F:      Documentation/admin-guide/cgroup-v2.rst
4786 F:      include/linux/cgroup*
4787 F:      kernel/cgroup/
4788
4789 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4790 M:      Tejun Heo <tj@kernel.org>
4791 M:      Jens Axboe <axboe@kernel.dk>
4792 L:      cgroups@vger.kernel.org
4793 L:      linux-block@vger.kernel.org
4794 T:      git git://git.kernel.dk/linux-block
4795 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4796 F:      block/bfq-cgroup.c
4797 F:      block/blk-cgroup.c
4798 F:      block/blk-iolatency.c
4799 F:      block/blk-throttle.c
4800 F:      include/linux/blk-cgroup.h
4801
4802 CONTROL GROUP - CPUSET
4803 M:      Zefan Li <lizefan.x@bytedance.com>
4804 L:      cgroups@vger.kernel.org
4805 S:      Maintained
4806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4807 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4808 F:      include/linux/cpuset.h
4809 F:      kernel/cgroup/cpuset.c
4810
4811 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4812 M:      Johannes Weiner <hannes@cmpxchg.org>
4813 M:      Michal Hocko <mhocko@kernel.org>
4814 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4815 L:      cgroups@vger.kernel.org
4816 L:      linux-mm@kvack.org
4817 S:      Maintained
4818 F:      mm/memcontrol.c
4819 F:      mm/swap_cgroup.c
4820
4821 CORETEMP HARDWARE MONITORING DRIVER
4822 M:      Fenghua Yu <fenghua.yu@intel.com>
4823 L:      linux-hwmon@vger.kernel.org
4824 S:      Maintained
4825 F:      Documentation/hwmon/coretemp.rst
4826 F:      drivers/hwmon/coretemp.c
4827
4828 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4829 M:      Marius Zachmann <mail@mariuszachmann.de>
4830 L:      linux-hwmon@vger.kernel.org
4831 S:      Maintained
4832 F:      drivers/hwmon/corsair-cpro.c
4833
4834 CORSAIR-PSU HARDWARE MONITOR DRIVER
4835 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4836 L:      linux-hwmon@vger.kernel.org
4837 S:      Maintained
4838 F:      Documentation/hwmon/corsair-psu.rst
4839 F:      drivers/hwmon/corsair-psu.c
4840
4841 COSA/SRP SYNC SERIAL DRIVER
4842 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4843 S:      Maintained
4844 W:      http://www.fi.muni.cz/~kas/cosa/
4845 F:      drivers/net/wan/cosa*
4846
4847 COUNTER SUBSYSTEM
4848 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4849 L:      linux-iio@vger.kernel.org
4850 S:      Maintained
4851 F:      Documentation/ABI/testing/sysfs-bus-counter
4852 F:      Documentation/driver-api/generic-counter.rst
4853 F:      drivers/counter/
4854 F:      include/linux/counter.h
4855 F:      include/linux/counter_enum.h
4856
4857 CP2615 I2C DRIVER
4858 M:      Bence Csókás <bence98@sch.bme.hu>
4859 S:      Maintained
4860 F:      drivers/i2c/busses/i2c-cp2615.c
4861
4862 CPMAC ETHERNET DRIVER
4863 M:      Florian Fainelli <f.fainelli@gmail.com>
4864 L:      netdev@vger.kernel.org
4865 S:      Maintained
4866 F:      drivers/net/ethernet/ti/cpmac.c
4867
4868 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4869 M:      Viresh Kumar <viresh.kumar@linaro.org>
4870 M:      Sudeep Holla <sudeep.holla@arm.com>
4871 L:      linux-pm@vger.kernel.org
4872 S:      Maintained
4873 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4874 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4875
4876 CPU FREQUENCY SCALING FRAMEWORK
4877 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4878 M:      Viresh Kumar <viresh.kumar@linaro.org>
4879 L:      linux-pm@vger.kernel.org
4880 S:      Maintained
4881 B:      https://bugzilla.kernel.org
4882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4884 F:      Documentation/admin-guide/pm/cpufreq.rst
4885 F:      Documentation/admin-guide/pm/intel_pstate.rst
4886 F:      Documentation/cpu-freq/
4887 F:      Documentation/devicetree/bindings/cpufreq/
4888 F:      drivers/cpufreq/
4889 F:      include/linux/cpufreq.h
4890 F:      include/linux/sched/cpufreq.h
4891 F:      kernel/sched/cpufreq*.c
4892 F:      tools/testing/selftests/cpufreq/
4893
4894 CPU IDLE TIME MANAGEMENT FRAMEWORK
4895 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4896 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4897 L:      linux-pm@vger.kernel.org
4898 S:      Maintained
4899 B:      https://bugzilla.kernel.org
4900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4901 F:      Documentation/admin-guide/pm/cpuidle.rst
4902 F:      Documentation/driver-api/pm/cpuidle.rst
4903 F:      drivers/cpuidle/
4904 F:      include/linux/cpuidle.h
4905
4906 CPU POWER MONITORING SUBSYSTEM
4907 M:      Thomas Renninger <trenn@suse.com>
4908 M:      Shuah Khan <shuah@kernel.org>
4909 M:      Shuah Khan <skhan@linuxfoundation.org>
4910 L:      linux-pm@vger.kernel.org
4911 S:      Maintained
4912 F:      tools/power/cpupower/
4913
4914 CPUID/MSR DRIVER
4915 M:      "H. Peter Anvin" <hpa@zytor.com>
4916 S:      Maintained
4917 F:      arch/x86/kernel/cpuid.c
4918 F:      arch/x86/kernel/msr.c
4919
4920 CPUIDLE DRIVER - ARM BIG LITTLE
4921 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4922 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4923 L:      linux-pm@vger.kernel.org
4924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4925 S:      Maintained
4926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4927 F:      drivers/cpuidle/cpuidle-big_little.c
4928
4929 CPUIDLE DRIVER - ARM EXYNOS
4930 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4931 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4932 M:      Kukjin Kim <kgene@kernel.org>
4933 L:      linux-pm@vger.kernel.org
4934 L:      linux-samsung-soc@vger.kernel.org
4935 S:      Supported
4936 F:      arch/arm/mach-exynos/pm.c
4937 F:      drivers/cpuidle/cpuidle-exynos.c
4938 F:      include/linux/platform_data/cpuidle-exynos.h
4939
4940 CPUIDLE DRIVER - ARM PSCI
4941 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4942 M:      Sudeep Holla <sudeep.holla@arm.com>
4943 L:      linux-pm@vger.kernel.org
4944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4945 S:      Supported
4946 F:      drivers/cpuidle/cpuidle-psci.c
4947
4948 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4949 M:      Ulf Hansson <ulf.hansson@linaro.org>
4950 L:      linux-pm@vger.kernel.org
4951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4952 S:      Supported
4953 F:      drivers/cpuidle/cpuidle-psci.h
4954 F:      drivers/cpuidle/cpuidle-psci-domain.c
4955
4956 CRAMFS FILESYSTEM
4957 M:      Nicolas Pitre <nico@fluxnic.net>
4958 S:      Maintained
4959 F:      Documentation/filesystems/cramfs.rst
4960 F:      fs/cramfs/
4961
4962 CREATIVE SB0540
4963 M:      Bastien Nocera <hadess@hadess.net>
4964 L:      linux-input@vger.kernel.org
4965 S:      Maintained
4966 F:      drivers/hid/hid-creative-sb0540.c
4967
4968 CRYPTO API
4969 M:      Herbert Xu <herbert@gondor.apana.org.au>
4970 M:      "David S. Miller" <davem@davemloft.net>
4971 L:      linux-crypto@vger.kernel.org
4972 S:      Maintained
4973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4975 F:      Documentation/crypto/
4976 F:      Documentation/devicetree/bindings/crypto/
4977 F:      arch/*/crypto/
4978 F:      crypto/
4979 F:      drivers/crypto/
4980 F:      include/crypto/
4981 F:      include/linux/crypto*
4982 F:      lib/crypto/
4983
4984 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4985 M:      Neil Horman <nhorman@tuxdriver.com>
4986 L:      linux-crypto@vger.kernel.org
4987 S:      Maintained
4988 F:      crypto/ansi_cprng.c
4989 F:      crypto/rng.c
4990
4991 CS3308 MEDIA DRIVER
4992 M:      Hans Verkuil <hverkuil@xs4all.nl>
4993 L:      linux-media@vger.kernel.org
4994 S:      Odd Fixes
4995 W:      http://linuxtv.org
4996 T:      git git://linuxtv.org/media_tree.git
4997 F:      drivers/media/i2c/cs3308.c
4998
4999 CS5535 Audio ALSA driver
5000 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5001 S:      Maintained
5002 F:      sound/pci/cs5535audio/
5003
5004 CSI DRIVERS FOR ALLWINNER V3s
5005 M:      Yong Deng <yong.deng@magewell.com>
5006 L:      linux-media@vger.kernel.org
5007 S:      Maintained
5008 T:      git git://linuxtv.org/media_tree.git
5009 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5010 F:      drivers/media/platform/sunxi/sun6i-csi/
5011
5012 CW1200 WLAN driver
5013 M:      Solomon Peachy <pizza@shaftnet.org>
5014 S:      Maintained
5015 F:      drivers/net/wireless/st/cw1200/
5016
5017 CX18 VIDEO4LINUX DRIVER
5018 M:      Andy Walls <awalls@md.metrocast.net>
5019 L:      linux-media@vger.kernel.org
5020 S:      Maintained
5021 W:      https://linuxtv.org
5022 T:      git git://linuxtv.org/media_tree.git
5023 F:      drivers/media/pci/cx18/
5024 F:      include/uapi/linux/ivtv*
5025
5026 CX2341X MPEG ENCODER HELPER MODULE
5027 M:      Hans Verkuil <hverkuil@xs4all.nl>
5028 L:      linux-media@vger.kernel.org
5029 S:      Maintained
5030 W:      https://linuxtv.org
5031 T:      git git://linuxtv.org/media_tree.git
5032 F:      drivers/media/common/cx2341x*
5033 F:      include/media/drv-intf/cx2341x.h
5034
5035 CX24120 MEDIA DRIVER
5036 M:      Jemma Denson <jdenson@gmail.com>
5037 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5038 L:      linux-media@vger.kernel.org
5039 S:      Maintained
5040 W:      https://linuxtv.org
5041 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5042 F:      drivers/media/dvb-frontends/cx24120*
5043
5044 CX88 VIDEO4LINUX DRIVER
5045 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5046 L:      linux-media@vger.kernel.org
5047 S:      Odd fixes
5048 W:      https://linuxtv.org
5049 T:      git git://linuxtv.org/media_tree.git
5050 F:      Documentation/driver-api/media/drivers/cx88*
5051 F:      drivers/media/pci/cx88/
5052
5053 CXD2820R MEDIA DRIVER
5054 M:      Antti Palosaari <crope@iki.fi>
5055 L:      linux-media@vger.kernel.org
5056 S:      Maintained
5057 W:      https://linuxtv.org
5058 W:      http://palosaari.fi/linux/
5059 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5060 T:      git git://linuxtv.org/anttip/media_tree.git
5061 F:      drivers/media/dvb-frontends/cxd2820r*
5062
5063 CXGB3 ETHERNET DRIVER (CXGB3)
5064 M:      Raju Rangoju <rajur@chelsio.com>
5065 L:      netdev@vger.kernel.org
5066 S:      Supported
5067 W:      http://www.chelsio.com
5068 F:      drivers/net/ethernet/chelsio/cxgb3/
5069
5070 CXGB3 ISCSI DRIVER (CXGB3I)
5071 M:      Karen Xie <kxie@chelsio.com>
5072 L:      linux-scsi@vger.kernel.org
5073 S:      Supported
5074 W:      http://www.chelsio.com
5075 F:      drivers/scsi/cxgbi/cxgb3i
5076
5077 CXGB4 CRYPTO DRIVER (chcr)
5078 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5079 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5080 M:      Rohit Maheshwari <rohitm@chelsio.com>
5081 L:      linux-crypto@vger.kernel.org
5082 S:      Supported
5083 W:      http://www.chelsio.com
5084 F:      drivers/crypto/chelsio
5085
5086 CXGB4 INLINE CRYPTO DRIVER
5087 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5088 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5089 M:      Rohit Maheshwari <rohitm@chelsio.com>
5090 L:      netdev@vger.kernel.org
5091 S:      Supported
5092 W:      http://www.chelsio.com
5093 F:      drivers/net/ethernet/chelsio/inline_crypto/
5094
5095 CXGB4 ETHERNET DRIVER (CXGB4)
5096 M:      Raju Rangoju <rajur@chelsio.com>
5097 L:      netdev@vger.kernel.org
5098 S:      Supported
5099 W:      http://www.chelsio.com
5100 F:      drivers/net/ethernet/chelsio/cxgb4/
5101
5102 CXGB4 ISCSI DRIVER (CXGB4I)
5103 M:      Karen Xie <kxie@chelsio.com>
5104 L:      linux-scsi@vger.kernel.org
5105 S:      Supported
5106 W:      http://www.chelsio.com
5107 F:      drivers/scsi/cxgbi/cxgb4i
5108
5109 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5110 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5111 L:      linux-rdma@vger.kernel.org
5112 S:      Supported
5113 W:      http://www.openfabrics.org
5114 F:      drivers/infiniband/hw/cxgb4/
5115 F:      include/uapi/rdma/cxgb4-abi.h
5116
5117 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5118 M:      Raju Rangoju <rajur@chelsio.com>
5119 L:      netdev@vger.kernel.org
5120 S:      Supported
5121 W:      http://www.chelsio.com
5122 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5123
5124 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5125 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5126 M:      Andrew Donnellan <ajd@linux.ibm.com>
5127 L:      linuxppc-dev@lists.ozlabs.org
5128 S:      Supported
5129 F:      Documentation/ABI/testing/sysfs-class-cxl
5130 F:      Documentation/powerpc/cxl.rst
5131 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5132 F:      drivers/misc/cxl/
5133 F:      include/misc/cxl*
5134 F:      include/uapi/misc/cxl.h
5135
5136 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5137 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5138 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5139 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5140 L:      linux-scsi@vger.kernel.org
5141 S:      Supported
5142 F:      Documentation/powerpc/cxlflash.rst
5143 F:      drivers/scsi/cxlflash/
5144 F:      include/uapi/scsi/cxlflash_ioctl.h
5145
5146 CYBERPRO FB DRIVER
5147 M:      Russell King <linux@armlinux.org.uk>
5148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5149 S:      Maintained
5150 W:      http://www.armlinux.org.uk/
5151 F:      drivers/video/fbdev/cyber2000fb.*
5152
5153 CYCLADES PC300 DRIVER
5154 S:      Orphan
5155 F:      drivers/net/wan/pc300*
5156
5157 CYPRESS_FIRMWARE MEDIA DRIVER
5158 M:      Antti Palosaari <crope@iki.fi>
5159 L:      linux-media@vger.kernel.org
5160 S:      Maintained
5161 W:      https://linuxtv.org
5162 W:      http://palosaari.fi/linux/
5163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5164 T:      git git://linuxtv.org/anttip/media_tree.git
5165 F:      drivers/media/common/cypress_firmware*
5166
5167 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5168 M:      Linus Walleij <linus.walleij@linaro.org>
5169 L:      linux-input@vger.kernel.org
5170 S:      Maintained
5171 F:      drivers/input/touchscreen/cy8ctma140.c
5172
5173 CYTTSP TOUCHSCREEN DRIVER
5174 M:      Linus Walleij <linus.walleij@linaro.org>
5175 L:      linux-input@vger.kernel.org
5176 S:      Maintained
5177 F:      drivers/input/touchscreen/cyttsp*
5178
5179 D-LINK DIR-685 TOUCHKEYS DRIVER
5180 M:      Linus Walleij <linus.walleij@linaro.org>
5181 L:      linux-input@vger.kernel.org
5182 S:      Supported
5183 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5184
5185 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5186 M:      Joshua Kinard <kumba@gentoo.org>
5187 S:      Maintained
5188 F:      drivers/rtc/rtc-ds1685.c
5189 F:      include/linux/rtc/ds1685.h
5190
5191 DAMA SLAVE for AX.25
5192 M:      Joerg Reuter <jreuter@yaina.de>
5193 L:      linux-hams@vger.kernel.org
5194 S:      Maintained
5195 W:      http://yaina.de/jreuter/
5196 W:      http://www.qsl.net/dl1bke/
5197 F:      net/ax25/af_ax25.c
5198 F:      net/ax25/ax25_dev.c
5199 F:      net/ax25/ax25_ds_*
5200 F:      net/ax25/ax25_in.c
5201 F:      net/ax25/ax25_out.c
5202 F:      net/ax25/ax25_timer.c
5203 F:      net/ax25/sysctl_net_ax25.c
5204
5205 DATA ACCESS MONITOR
5206 M:      SeongJae Park <sjpark@amazon.de>
5207 L:      linux-mm@kvack.org
5208 S:      Maintained
5209 F:      Documentation/admin-guide/mm/damon/
5210 F:      Documentation/vm/damon/
5211 F:      include/linux/damon.h
5212 F:      include/trace/events/damon.h
5213 F:      mm/damon/
5214 F:      tools/testing/selftests/damon/
5215
5216 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5217 L:      netdev@vger.kernel.org
5218 S:      Orphan
5219 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5220 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5221
5222 DC390/AM53C974 SCSI driver
5223 M:      Hannes Reinecke <hare@suse.com>
5224 L:      linux-scsi@vger.kernel.org
5225 S:      Maintained
5226 F:      drivers/scsi/am53c974.c
5227
5228 DC395x SCSI driver
5229 M:      Oliver Neukum <oliver@neukum.org>
5230 M:      Ali Akcaagac <aliakc@web.de>
5231 M:      Jamie Lenehan <lenehan@twibble.org>
5232 L:      dc395x@twibble.org
5233 S:      Maintained
5234 W:      http://twibble.org/dist/dc395x/
5235 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5236 F:      Documentation/scsi/dc395x.rst
5237 F:      drivers/scsi/dc395x.*
5238
5239 DCCP PROTOCOL
5240 L:      dccp@vger.kernel.org
5241 S:      Orphan
5242 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5243 F:      include/linux/dccp.h
5244 F:      include/linux/tfrc.h
5245 F:      include/uapi/linux/dccp.h
5246 F:      net/dccp/
5247
5248 DECnet NETWORK LAYER
5249 L:      linux-decnet-user@lists.sourceforge.net
5250 S:      Orphan
5251 W:      http://linux-decnet.sourceforge.net
5252 F:      Documentation/networking/decnet.rst
5253 F:      net/decnet/
5254
5255 DECSTATION PLATFORM SUPPORT
5256 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5257 L:      linux-mips@vger.kernel.org
5258 S:      Maintained
5259 W:      http://www.linux-mips.org/wiki/DECstation
5260 F:      arch/mips/dec/
5261 F:      arch/mips/include/asm/dec/
5262 F:      arch/mips/include/asm/mach-dec/
5263
5264 DEFXX FDDI NETWORK DRIVER
5265 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5266 S:      Maintained
5267 F:      drivers/net/fddi/defxx.*
5268
5269 DEFZA FDDI NETWORK DRIVER
5270 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5271 S:      Maintained
5272 F:      drivers/net/fddi/defza.*
5273
5274 DEINTERLACE DRIVERS FOR ALLWINNER H3
5275 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5276 L:      linux-media@vger.kernel.org
5277 S:      Maintained
5278 T:      git git://linuxtv.org/media_tree.git
5279 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5280 F:      drivers/media/platform/sunxi/sun8i-di/
5281
5282 DELL LAPTOP DRIVER
5283 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5284 M:      Pali Rohár <pali@kernel.org>
5285 L:      platform-driver-x86@vger.kernel.org
5286 S:      Maintained
5287 F:      drivers/platform/x86/dell/dell-laptop.c
5288
5289 DELL LAPTOP FREEFALL DRIVER
5290 M:      Pali Rohár <pali@kernel.org>
5291 S:      Maintained
5292 F:      drivers/platform/x86/dell/dell-smo8800.c
5293
5294 DELL LAPTOP RBTN DRIVER
5295 M:      Pali Rohár <pali@kernel.org>
5296 S:      Maintained
5297 F:      drivers/platform/x86/dell/dell-rbtn.*
5298
5299 DELL LAPTOP SMM DRIVER
5300 M:      Pali Rohár <pali@kernel.org>
5301 S:      Maintained
5302 F:      drivers/hwmon/dell-smm-hwmon.c
5303 F:      include/uapi/linux/i8k.h
5304
5305 DELL REMOTE BIOS UPDATE DRIVER
5306 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5307 L:      platform-driver-x86@vger.kernel.org
5308 S:      Maintained
5309 F:      drivers/platform/x86/dell/dell_rbu.c
5310
5311 DELL SMBIOS DRIVER
5312 M:      Pali Rohár <pali@kernel.org>
5313 L:      Dell.Client.Kernel@dell.com
5314 L:      platform-driver-x86@vger.kernel.org
5315 S:      Maintained
5316 F:      drivers/platform/x86/dell/dell-smbios.*
5317
5318 DELL SMBIOS SMM DRIVER
5319 L:      Dell.Client.Kernel@dell.com
5320 L:      platform-driver-x86@vger.kernel.org
5321 S:      Maintained
5322 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5323
5324 DELL SMBIOS WMI DRIVER
5325 L:      Dell.Client.Kernel@dell.com
5326 L:      platform-driver-x86@vger.kernel.org
5327 S:      Maintained
5328 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5329 F:      tools/wmi/dell-smbios-example.c
5330
5331 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5332 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5333 L:      platform-driver-x86@vger.kernel.org
5334 S:      Maintained
5335 F:      Documentation/driver-api/dcdbas.rst
5336 F:      drivers/platform/x86/dell/dcdbas.*
5337
5338 DELL WMI DESCRIPTOR DRIVER
5339 L:      Dell.Client.Kernel@dell.com
5340 S:      Maintained
5341 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5342
5343 DELL WMI SYSMAN DRIVER
5344 M:      Divya Bharathi <divya.bharathi@dell.com>
5345 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5346 L:      Dell.Client.Kernel@dell.com
5347 L:      platform-driver-x86@vger.kernel.org
5348 S:      Maintained
5349 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5350 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5351
5352 DELL WMI NOTIFICATIONS DRIVER
5353 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5354 M:      Pali Rohár <pali@kernel.org>
5355 S:      Maintained
5356 F:      drivers/platform/x86/dell/dell-wmi-base.c
5357
5358 DELL WMI HARDWARE PRIVACY SUPPORT
5359 M:      Perry Yuan <Perry.Yuan@dell.com>
5360 L:      Dell.Client.Kernel@dell.com
5361 L:      platform-driver-x86@vger.kernel.org
5362 S:      Maintained
5363 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5364
5365 DELTA ST MEDIA DRIVER
5366 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5367 L:      linux-media@vger.kernel.org
5368 S:      Supported
5369 W:      https://linuxtv.org
5370 T:      git git://linuxtv.org/media_tree.git
5371 F:      drivers/media/platform/sti/delta
5372
5373 DELTA DPS920AB PSU DRIVER
5374 M:      Robert Marko <robert.marko@sartura.hr>
5375 L:      linux-hwmon@vger.kernel.org
5376 S:      Maintained
5377 F:      Documentation/hwmon/dps920ab.rst
5378 F:      drivers/hwmon/pmbus/dps920ab.c
5379
5380 DENALI NAND DRIVER
5381 L:      linux-mtd@lists.infradead.org
5382 S:      Orphan
5383 F:      drivers/mtd/nand/raw/denali*
5384
5385 DESIGNWARE EDMA CORE IP DRIVER
5386 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5387 L:      dmaengine@vger.kernel.org
5388 S:      Maintained
5389 F:      drivers/dma/dw-edma/
5390 F:      include/linux/dma/edma.h
5391
5392 DESIGNWARE XDATA IP DRIVER
5393 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5394 L:      linux-pci@vger.kernel.org
5395 S:      Maintained
5396 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5397 F:      drivers/misc/dw-xdata-pcie.c
5398
5399 DESIGNWARE USB2 DRD IP DRIVER
5400 M:      Minas Harutyunyan <hminas@synopsys.com>
5401 L:      linux-usb@vger.kernel.org
5402 S:      Maintained
5403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5404 F:      drivers/usb/dwc2/
5405
5406 DESIGNWARE USB3 DRD IP DRIVER
5407 M:      Felipe Balbi <balbi@kernel.org>
5408 L:      linux-usb@vger.kernel.org
5409 S:      Maintained
5410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5411 F:      drivers/usb/dwc3/
5412
5413 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5414 M:      Andreas Klinger <ak@it-klinger.de>
5415 L:      linux-iio@vger.kernel.org
5416 S:      Maintained
5417 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5418 F:      drivers/iio/proximity/srf*.c
5419
5420 DEVICE COREDUMP (DEV_COREDUMP)
5421 M:      Johannes Berg <johannes@sipsolutions.net>
5422 L:      linux-kernel@vger.kernel.org
5423 S:      Maintained
5424 F:      drivers/base/devcoredump.c
5425 F:      include/linux/devcoredump.h
5426
5427 DEVICE DEPENDENCY HELPER SCRIPT
5428 M:      Saravana Kannan <saravanak@google.com>
5429 L:      linux-kernel@vger.kernel.org
5430 S:      Maintained
5431 F:      scripts/dev-needs.sh
5432
5433 DEVICE DIRECT ACCESS (DAX)
5434 M:      Dan Williams <dan.j.williams@intel.com>
5435 M:      Vishal Verma <vishal.l.verma@intel.com>
5436 M:      Dave Jiang <dave.jiang@intel.com>
5437 L:      nvdimm@lists.linux.dev
5438 S:      Supported
5439 F:      drivers/dax/
5440
5441 DEVICE FREQUENCY (DEVFREQ)
5442 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5443 M:      Kyungmin Park <kyungmin.park@samsung.com>
5444 M:      Chanwoo Choi <cw00.choi@samsung.com>
5445 L:      linux-pm@vger.kernel.org
5446 S:      Maintained
5447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5448 F:      Documentation/devicetree/bindings/devfreq/
5449 F:      drivers/devfreq/
5450 F:      include/linux/devfreq.h
5451 F:      include/trace/events/devfreq.h
5452
5453 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5454 M:      Chanwoo Choi <cw00.choi@samsung.com>
5455 L:      linux-pm@vger.kernel.org
5456 S:      Supported
5457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5458 F:      Documentation/devicetree/bindings/devfreq/event/
5459 F:      drivers/devfreq/devfreq-event.c
5460 F:      drivers/devfreq/event/
5461 F:      include/dt-bindings/pmu/exynos_ppmu.h
5462 F:      include/linux/devfreq-event.h
5463
5464 DEVICE NUMBER REGISTRY
5465 M:      Torben Mathiasen <device@lanana.org>
5466 S:      Maintained
5467 W:      http://lanana.org/docs/device-list/index.html
5468
5469 DEVICE RESOURCE MANAGEMENT HELPERS
5470 M:      Hans de Goede <hdegoede@redhat.com>
5471 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5472 S:      Maintained
5473 F:      include/linux/devm-helpers.h
5474
5475 DEVICE-MAPPER  (LVM)
5476 M:      Alasdair Kergon <agk@redhat.com>
5477 M:      Mike Snitzer <snitzer@redhat.com>
5478 M:      dm-devel@redhat.com
5479 L:      dm-devel@redhat.com
5480 S:      Maintained
5481 W:      http://sources.redhat.com/dm
5482 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5484 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5485 F:      Documentation/admin-guide/device-mapper/
5486 F:      drivers/md/Kconfig
5487 F:      drivers/md/Makefile
5488 F:      drivers/md/dm*
5489 F:      drivers/md/persistent-data/
5490 F:      include/linux/device-mapper.h
5491 F:      include/linux/dm-*.h
5492 F:      include/uapi/linux/dm-*.h
5493
5494 DEVLINK
5495 M:      Jiri Pirko <jiri@nvidia.com>
5496 L:      netdev@vger.kernel.org
5497 S:      Supported
5498 F:      Documentation/networking/devlink
5499 F:      include/net/devlink.h
5500 F:      include/uapi/linux/devlink.h
5501 F:      net/core/devlink.c
5502
5503 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5504 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5505 L:      kernel@dh-electronics.com
5506 S:      Maintained
5507 F:      arch/arm/boot/dts/imx6*-dhcom-*
5508
5509 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5510 M:      Marek Vasut <marex@denx.de>
5511 L:      kernel@dh-electronics.com
5512 S:      Maintained
5513 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5514 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5515
5516 DIALOG SEMICONDUCTOR DRIVERS
5517 M:      Support Opensource <support.opensource@diasemi.com>
5518 S:      Supported
5519 W:      http://www.dialog-semiconductor.com/products
5520 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5521 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5522 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5523 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5524 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5525 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5526 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5527 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5528 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5529 F:      Documentation/hwmon/da90??.rst
5530 F:      drivers/gpio/gpio-da90??.c
5531 F:      drivers/hwmon/da90??-hwmon.c
5532 F:      drivers/iio/adc/da91??-*.c
5533 F:      drivers/input/misc/da72??.[ch]
5534 F:      drivers/input/misc/da90??_onkey.c
5535 F:      drivers/input/touchscreen/da9052_tsi.c
5536 F:      drivers/leds/leds-da90??.c
5537 F:      drivers/mfd/da903x.c
5538 F:      drivers/mfd/da90??-*.c
5539 F:      drivers/mfd/da91??-*.c
5540 F:      drivers/pinctrl/pinctrl-da90??.c
5541 F:      drivers/power/supply/da9052-battery.c
5542 F:      drivers/power/supply/da91??-*.c
5543 F:      drivers/regulator/da9???-regulator.[ch]
5544 F:      drivers/regulator/slg51000-regulator.[ch]
5545 F:      drivers/rtc/rtc-da90??.c
5546 F:      drivers/thermal/da90??-thermal.c
5547 F:      drivers/video/backlight/da90??_bl.c
5548 F:      drivers/watchdog/da90??_wdt.c
5549 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5550 F:      include/linux/mfd/da903x.h
5551 F:      include/linux/mfd/da9052/
5552 F:      include/linux/mfd/da9055/
5553 F:      include/linux/mfd/da9062/
5554 F:      include/linux/mfd/da9063/
5555 F:      include/linux/mfd/da9150/
5556 F:      include/linux/regulator/da9211.h
5557 F:      include/sound/da[79]*.h
5558 F:      sound/soc/codecs/da[79]*.[ch]
5559
5560 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5561 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5562 L:      linux-gpio@vger.kernel.org
5563 S:      Maintained
5564 F:      drivers/gpio/gpio-gpio-mm.c
5565
5566 DIOLAN U2C-12 I2C DRIVER
5567 M:      Guenter Roeck <linux@roeck-us.net>
5568 L:      linux-i2c@vger.kernel.org
5569 S:      Maintained
5570 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5571
5572 DIRECTORY NOTIFICATION (DNOTIFY)
5573 M:      Jan Kara <jack@suse.cz>
5574 R:      Amir Goldstein <amir73il@gmail.com>
5575 L:      linux-fsdevel@vger.kernel.org
5576 S:      Maintained
5577 F:      Documentation/filesystems/dnotify.rst
5578 F:      fs/notify/dnotify/
5579 F:      include/linux/dnotify.h
5580
5581 DISK GEOMETRY AND PARTITION HANDLING
5582 M:      Andries Brouwer <aeb@cwi.nl>
5583 S:      Maintained
5584 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5585 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5586 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5587
5588 DISKQUOTA
5589 M:      Jan Kara <jack@suse.com>
5590 S:      Maintained
5591 F:      Documentation/filesystems/quota.rst
5592 F:      fs/quota/
5593 F:      include/linux/quota*.h
5594 F:      include/uapi/linux/quota*.h
5595
5596 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5597 M:      Bernie Thompson <bernie@plugable.com>
5598 L:      linux-fbdev@vger.kernel.org
5599 S:      Maintained
5600 W:      http://plugable.com/category/projects/udlfb/
5601 F:      Documentation/fb/udlfb.rst
5602 F:      drivers/video/fbdev/udlfb.c
5603 F:      include/video/udlfb.h
5604
5605 DISTRIBUTED LOCK MANAGER (DLM)
5606 M:      Christine Caulfield <ccaulfie@redhat.com>
5607 M:      David Teigland <teigland@redhat.com>
5608 L:      cluster-devel@redhat.com
5609 S:      Supported
5610 W:      http://sources.redhat.com/cluster/
5611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5612 F:      fs/dlm/
5613
5614 DMA BUFFER SHARING FRAMEWORK
5615 M:      Sumit Semwal <sumit.semwal@linaro.org>
5616 M:      Christian König <christian.koenig@amd.com>
5617 L:      linux-media@vger.kernel.org
5618 L:      dri-devel@lists.freedesktop.org
5619 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5620 S:      Maintained
5621 T:      git git://anongit.freedesktop.org/drm/drm-misc
5622 F:      Documentation/driver-api/dma-buf.rst
5623 F:      drivers/dma-buf/
5624 F:      include/linux/*fence.h
5625 F:      include/linux/dma-buf*
5626 F:      include/linux/dma-resv.h
5627 K:      \bdma_(?:buf|fence|resv)\b
5628
5629 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5630 M:      Vinod Koul <vkoul@kernel.org>
5631 L:      dmaengine@vger.kernel.org
5632 S:      Maintained
5633 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5635 F:      Documentation/devicetree/bindings/dma/
5636 F:      Documentation/driver-api/dmaengine/
5637 F:      drivers/dma/
5638 F:      include/linux/dma/
5639 F:      include/linux/dmaengine.h
5640 F:      include/linux/of_dma.h
5641
5642 DMA MAPPING HELPERS
5643 M:      Christoph Hellwig <hch@lst.de>
5644 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5645 R:      Robin Murphy <robin.murphy@arm.com>
5646 L:      iommu@lists.linux-foundation.org
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 F:      kernel/dma/map_benchmark.c
5660 F:      tools/testing/selftests/dma/
5661
5662 DMA-BUF HEAPS FRAMEWORK
5663 M:      Sumit Semwal <sumit.semwal@linaro.org>
5664 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5665 R:      Liam Mark <lmark@codeaurora.org>
5666 R:      Laura Abbott <labbott@redhat.com>
5667 R:      Brian Starkey <Brian.Starkey@arm.com>
5668 R:      John Stultz <john.stultz@linaro.org>
5669 L:      linux-media@vger.kernel.org
5670 L:      dri-devel@lists.freedesktop.org
5671 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5672 S:      Maintained
5673 T:      git git://anongit.freedesktop.org/drm/drm-misc
5674 F:      drivers/dma-buf/dma-heap.c
5675 F:      drivers/dma-buf/heaps/*
5676 F:      include/linux/dma-heap.h
5677 F:      include/uapi/linux/dma-heap.h
5678
5679 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5680 M:      Lukasz Luba <lukasz.luba@arm.com>
5681 L:      linux-pm@vger.kernel.org
5682 L:      linux-samsung-soc@vger.kernel.org
5683 S:      Maintained
5684 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5685 F:      drivers/memory/samsung/exynos5422-dmc.c
5686
5687 DME1737 HARDWARE MONITOR DRIVER
5688 M:      Juerg Haefliger <juergh@gmail.com>
5689 L:      linux-hwmon@vger.kernel.org
5690 S:      Maintained
5691 F:      Documentation/hwmon/dme1737.rst
5692 F:      drivers/hwmon/dme1737.c
5693
5694 DMI/SMBIOS SUPPORT
5695 M:      Jean Delvare <jdelvare@suse.com>
5696 S:      Maintained
5697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5698 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5699 F:      drivers/firmware/dmi-id.c
5700 F:      drivers/firmware/dmi_scan.c
5701 F:      include/linux/dmi.h
5702
5703 DOCUMENTATION
5704 M:      Jonathan Corbet <corbet@lwn.net>
5705 L:      linux-doc@vger.kernel.org
5706 S:      Maintained
5707 P:      Documentation/doc-guide/maintainer-profile.rst
5708 T:      git git://git.lwn.net/linux.git docs-next
5709 F:      Documentation/
5710 F:      scripts/documentation-file-ref-check
5711 F:      scripts/kernel-doc
5712 F:      scripts/sphinx-pre-install
5713 X:      Documentation/ABI/
5714 X:      Documentation/admin-guide/media/
5715 X:      Documentation/devicetree/
5716 X:      Documentation/driver-api/media/
5717 X:      Documentation/firmware-guide/acpi/
5718 X:      Documentation/i2c/
5719 X:      Documentation/power/
5720 X:      Documentation/spi/
5721 X:      Documentation/userspace-api/media/
5722
5723 DOCUMENTATION REPORTING ISSUES
5724 M:      Thorsten Leemhuis <linux@leemhuis.info>
5725 L:      linux-doc@vger.kernel.org
5726 S:      Maintained
5727 F:      Documentation/admin-guide/reporting-issues.rst
5728
5729 DOCUMENTATION SCRIPTS
5730 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5731 L:      linux-doc@vger.kernel.org
5732 S:      Maintained
5733 F:      Documentation/sphinx/parse-headers.pl
5734 F:      scripts/documentation-file-ref-check
5735 F:      scripts/sphinx-pre-install
5736
5737 DOCUMENTATION/ITALIAN
5738 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5739 L:      linux-doc@vger.kernel.org
5740 S:      Maintained
5741 F:      Documentation/translations/it_IT
5742
5743 DONGWOON DW9714 LENS VOICE COIL DRIVER
5744 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5745 L:      linux-media@vger.kernel.org
5746 S:      Maintained
5747 T:      git git://linuxtv.org/media_tree.git
5748 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5749 F:      drivers/media/i2c/dw9714.c
5750
5751 DONGWOON DW9768 LENS VOICE COIL DRIVER
5752 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5753 L:      linux-media@vger.kernel.org
5754 S:      Maintained
5755 T:      git git://linuxtv.org/media_tree.git
5756 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5757 F:      drivers/media/i2c/dw9768.c
5758
5759 DONGWOON DW9807 LENS VOICE COIL DRIVER
5760 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5761 L:      linux-media@vger.kernel.org
5762 S:      Maintained
5763 T:      git git://linuxtv.org/media_tree.git
5764 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5765 F:      drivers/media/i2c/dw9807-vcm.c
5766
5767 DOUBLETALK DRIVER
5768 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5769 L:      blinux-list@redhat.com
5770 S:      Maintained
5771 F:      drivers/char/dtlk.c
5772 F:      include/linux/dtlk.h
5773
5774 DPAA2 DATAPATH I/O (DPIO) DRIVER
5775 M:      Roy Pledge <Roy.Pledge@nxp.com>
5776 L:      linux-kernel@vger.kernel.org
5777 S:      Maintained
5778 F:      drivers/soc/fsl/dpio
5779
5780 DPAA2 ETHERNET DRIVER
5781 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5782 L:      netdev@vger.kernel.org
5783 S:      Maintained
5784 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5785 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5786 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5787 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5788 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5789 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5790 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5791 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5792 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5793
5794 DPAA2 ETHERNET SWITCH DRIVER
5795 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5796 L:      netdev@vger.kernel.org
5797 S:      Maintained
5798 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5799 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5800 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5801
5802 DPT_I2O SCSI RAID DRIVER
5803 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5804 L:      linux-scsi@vger.kernel.org
5805 S:      Maintained
5806 W:      http://www.adaptec.com/
5807 F:      drivers/scsi/dpt*
5808 F:      drivers/scsi/dpt/
5809
5810 DRBD DRIVER
5811 M:      Philipp Reisner <philipp.reisner@linbit.com>
5812 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5813 L:      drbd-dev@lists.linbit.com
5814 S:      Supported
5815 W:      http://www.drbd.org
5816 T:      git git://git.linbit.com/linux-drbd.git
5817 T:      git git://git.linbit.com/drbd-8.4.git
5818 F:      Documentation/admin-guide/blockdev/
5819 F:      drivers/block/drbd/
5820 F:      lib/lru_cache.c
5821
5822 DRIVER COMPONENT FRAMEWORK
5823 L:      dri-devel@lists.freedesktop.org
5824 F:      drivers/base/component.c
5825 F:      include/linux/component.h
5826
5827 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5828 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5829 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5830 S:      Supported
5831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5832 F:      Documentation/core-api/kobject.rst
5833 F:      drivers/base/
5834 F:      fs/debugfs/
5835 F:      fs/sysfs/
5836 F:      include/linux/debugfs.h
5837 F:      include/linux/kobj*
5838 F:      lib/kobj*
5839
5840 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5841 M:      Nishanth Menon <nm@ti.com>
5842 L:      linux-pm@vger.kernel.org
5843 S:      Maintained
5844 F:      drivers/soc/ti/smartreflex.c
5845 F:      include/linux/power/smartreflex.h
5846
5847 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5848 M:      Maxime Ripard <mripard@kernel.org>
5849 M:      Chen-Yu Tsai <wens@csie.org>
5850 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5851 L:      dri-devel@lists.freedesktop.org
5852 S:      Supported
5853 T:      git git://anongit.freedesktop.org/drm/drm-misc
5854 F:      drivers/gpu/drm/sun4i/sun8i*
5855
5856 DRM DRIVER FOR ARM PL111 CLCD
5857 M:      Emma Anholt <emma@anholt.net>
5858 S:      Supported
5859 T:      git git://anongit.freedesktop.org/drm/drm-misc
5860 F:      drivers/gpu/drm/pl111/
5861
5862 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5863 M:      Linus Walleij <linus.walleij@linaro.org>
5864 S:      Maintained
5865 T:      git git://anongit.freedesktop.org/drm/drm-misc
5866 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5867 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5868
5869 DRM DRIVER FOR ASPEED BMC GFX
5870 M:      Joel Stanley <joel@jms.id.au>
5871 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5872 S:      Supported
5873 T:      git git://anongit.freedesktop.org/drm/drm-misc
5874 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5875 F:      drivers/gpu/drm/aspeed/
5876
5877 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5878 M:      Dave Airlie <airlied@redhat.com>
5879 R:      Thomas Zimmermann <tzimmermann@suse.de>
5880 L:      dri-devel@lists.freedesktop.org
5881 S:      Supported
5882 T:      git git://anongit.freedesktop.org/drm/drm-misc
5883 F:      drivers/gpu/drm/ast/
5884
5885 DRM DRIVER FOR BOCHS VIRTUAL GPU
5886 M:      Gerd Hoffmann <kraxel@redhat.com>
5887 L:      virtualization@lists.linux-foundation.org
5888 S:      Maintained
5889 T:      git git://anongit.freedesktop.org/drm/drm-misc
5890 F:      drivers/gpu/drm/tiny/bochs.c
5891
5892 DRM DRIVER FOR BOE HIMAX8279D PANELS
5893 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5894 S:      Maintained
5895 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5896 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5897
5898 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5899 M:      Jagan Teki <jagan@amarulasolutions.com>
5900 S:      Maintained
5901 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5902 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5903
5904 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5905 M:      Linus Walleij <linus.walleij@linaro.org>
5906 S:      Maintained
5907 T:      git git://anongit.freedesktop.org/drm/drm-misc
5908 F:      drivers/gpu/drm/tve200/
5909
5910 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5911 M:      Icenowy Zheng <icenowy@aosc.io>
5912 S:      Maintained
5913 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5914 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5915
5916 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5917 M:      Jagan Teki <jagan@amarulasolutions.com>
5918 S:      Maintained
5919 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5920 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5921
5922 DRM DRIVER FOR GENERIC USB DISPLAY
5923 M:      Noralf Trønnes <noralf@tronnes.org>
5924 S:      Maintained
5925 W:      https://github.com/notro/gud/wiki
5926 T:      git git://anongit.freedesktop.org/drm/drm-misc
5927 F:      drivers/gpu/drm/gud/
5928 F:      include/drm/gud.h
5929
5930 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5931 M:      Hans de Goede <hdegoede@redhat.com>
5932 S:      Maintained
5933 T:      git git://anongit.freedesktop.org/drm/drm-misc
5934 F:      drivers/gpu/drm/tiny/gm12u320.c
5935
5936 DRM DRIVER FOR HX8357D PANELS
5937 M:      Emma Anholt <emma@anholt.net>
5938 S:      Maintained
5939 T:      git git://anongit.freedesktop.org/drm/drm-misc
5940 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5941 F:      drivers/gpu/drm/tiny/hx8357d.c
5942
5943 DRM DRIVER FOR ILITEK ILI9225 PANELS
5944 M:      David Lechner <david@lechnology.com>
5945 S:      Maintained
5946 T:      git git://anongit.freedesktop.org/drm/drm-misc
5947 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5948 F:      drivers/gpu/drm/tiny/ili9225.c
5949
5950 DRM DRIVER FOR ILITEK ILI9486 PANELS
5951 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5952 S:      Maintained
5953 T:      git git://anongit.freedesktop.org/drm/drm-misc
5954 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5955 F:      drivers/gpu/drm/tiny/ili9486.c
5956
5957 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5958 S:      Orphan / Obsolete
5959 F:      drivers/gpu/drm/i810/
5960 F:      include/uapi/drm/i810_drm.h
5961
5962 DRM DRIVER FOR LVDS PANELS
5963 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5964 L:      dri-devel@lists.freedesktop.org
5965 T:      git git://anongit.freedesktop.org/drm/drm-misc
5966 S:      Maintained
5967 F:      drivers/gpu/drm/panel/panel-lvds.c
5968 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5969
5970 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5971 M:      Guido Günther <agx@sigxcpu.org>
5972 R:      Purism Kernel Team <kernel@puri.sm>
5973 S:      Maintained
5974 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5975 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5976
5977 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5978 S:      Orphan / Obsolete
5979 F:      drivers/gpu/drm/mga/
5980 F:      include/uapi/drm/mga_drm.h
5981
5982 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5983 M:      Dave Airlie <airlied@redhat.com>
5984 R:      Thomas Zimmermann <tzimmermann@suse.de>
5985 L:      dri-devel@lists.freedesktop.org
5986 S:      Supported
5987 T:      git git://anongit.freedesktop.org/drm/drm-misc
5988 F:      drivers/gpu/drm/mgag200/
5989
5990 DRM DRIVER FOR MI0283QT
5991 M:      Noralf Trønnes <noralf@tronnes.org>
5992 S:      Maintained
5993 T:      git git://anongit.freedesktop.org/drm/drm-misc
5994 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5995 F:      drivers/gpu/drm/tiny/mi0283qt.c
5996
5997 DRM DRIVER FOR MSM ADRENO GPU
5998 M:      Rob Clark <robdclark@gmail.com>
5999 M:      Sean Paul <sean@poorly.run>
6000 L:      linux-arm-msm@vger.kernel.org
6001 L:      dri-devel@lists.freedesktop.org
6002 L:      freedreno@lists.freedesktop.org
6003 S:      Maintained
6004 T:      git https://gitlab.freedesktop.org/drm/msm.git
6005 F:      Documentation/devicetree/bindings/display/msm/
6006 F:      drivers/gpu/drm/msm/
6007 F:      include/uapi/drm/msm_drm.h
6008
6009 DRM DRIVER FOR NOVATEK NT35510 PANELS
6010 M:      Linus Walleij <linus.walleij@linaro.org>
6011 S:      Maintained
6012 T:      git git://anongit.freedesktop.org/drm/drm-misc
6013 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6014 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6015
6016 DRM DRIVER FOR NOVATEK NT36672A PANELS
6017 M:      Sumit Semwal <sumit.semwal@linaro.org>
6018 S:      Maintained
6019 T:      git git://anongit.freedesktop.org/drm/drm-misc
6020 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6021 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6022
6023 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6024 M:      Ben Skeggs <bskeggs@redhat.com>
6025 L:      dri-devel@lists.freedesktop.org
6026 L:      nouveau@lists.freedesktop.org
6027 S:      Supported
6028 T:      git git://github.com/skeggsb/linux
6029 F:      drivers/gpu/drm/nouveau/
6030 F:      include/uapi/drm/nouveau_drm.h
6031
6032 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6033 M:      Stefan Mavrodiev <stefan@olimex.com>
6034 S:      Maintained
6035 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6036 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6037
6038 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6039 M:      Noralf Trønnes <noralf@tronnes.org>
6040 S:      Maintained
6041 T:      git git://anongit.freedesktop.org/drm/drm-misc
6042 F:      Documentation/devicetree/bindings/display/repaper.txt
6043 F:      drivers/gpu/drm/tiny/repaper.c
6044
6045 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6046 M:      Dave Airlie <airlied@redhat.com>
6047 M:      Gerd Hoffmann <kraxel@redhat.com>
6048 L:      virtualization@lists.linux-foundation.org
6049 S:      Obsolete
6050 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6051 T:      git git://anongit.freedesktop.org/drm/drm-misc
6052 F:      drivers/gpu/drm/tiny/cirrus.c
6053
6054 DRM DRIVER FOR QXL VIRTUAL GPU
6055 M:      Dave Airlie <airlied@redhat.com>
6056 M:      Gerd Hoffmann <kraxel@redhat.com>
6057 L:      virtualization@lists.linux-foundation.org
6058 L:      spice-devel@lists.freedesktop.org
6059 S:      Maintained
6060 T:      git git://anongit.freedesktop.org/drm/drm-misc
6061 F:      drivers/gpu/drm/qxl/
6062 F:      include/uapi/drm/qxl_drm.h
6063
6064 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6065 S:      Orphan / Obsolete
6066 F:      drivers/gpu/drm/r128/
6067 F:      include/uapi/drm/r128_drm.h
6068
6069 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6070 M:      Robert Chiras <robert.chiras@nxp.com>
6071 S:      Maintained
6072 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6073 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6074
6075 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6076 M:      Linus Walleij <linus.walleij@linaro.org>
6077 S:      Maintained
6078 T:      git git://anongit.freedesktop.org/drm/drm-misc
6079 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6080 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6081
6082 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6083 M:      Markuss Broks <markuss.broks@gmail.com>
6084 S:      Maintained
6085 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6086 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6087
6088 DRM DRIVER FOR SITRONIX ST7703 PANELS
6089 M:      Guido Günther <agx@sigxcpu.org>
6090 R:      Purism Kernel Team <kernel@puri.sm>
6091 R:      Ondrej Jirman <megous@megous.com>
6092 S:      Maintained
6093 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6094 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6095
6096 DRM DRIVER FOR SAVAGE VIDEO CARDS
6097 S:      Orphan / Obsolete
6098 F:      drivers/gpu/drm/savage/
6099 F:      include/uapi/drm/savage_drm.h
6100
6101 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6102 M:      Thomas Zimmermann <tzimmermann@suse.de>
6103 L:      dri-devel@lists.freedesktop.org
6104 S:      Maintained
6105 T:      git git://anongit.freedesktop.org/drm/drm-misc
6106 F:      drivers/gpu/drm/tiny/simpledrm.c
6107
6108 DRM DRIVER FOR SIS VIDEO CARDS
6109 S:      Orphan / Obsolete
6110 F:      drivers/gpu/drm/sis/
6111 F:      include/uapi/drm/sis_drm.h
6112
6113 DRM DRIVER FOR SITRONIX ST7586 PANELS
6114 M:      David Lechner <david@lechnology.com>
6115 S:      Maintained
6116 T:      git git://anongit.freedesktop.org/drm/drm-misc
6117 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6118 F:      drivers/gpu/drm/tiny/st7586.c
6119
6120 DRM DRIVER FOR SITRONIX ST7701 PANELS
6121 M:      Jagan Teki <jagan@amarulasolutions.com>
6122 S:      Maintained
6123 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6124 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6125
6126 DRM DRIVER FOR SITRONIX ST7735R PANELS
6127 M:      David Lechner <david@lechnology.com>
6128 S:      Maintained
6129 T:      git git://anongit.freedesktop.org/drm/drm-misc
6130 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6131 F:      drivers/gpu/drm/tiny/st7735r.c
6132
6133 DRM DRIVER FOR SONY ACX424AKP PANELS
6134 M:      Linus Walleij <linus.walleij@linaro.org>
6135 S:      Maintained
6136 T:      git git://anongit.freedesktop.org/drm/drm-misc
6137 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6138
6139 DRM DRIVER FOR ST-ERICSSON MCDE
6140 M:      Linus Walleij <linus.walleij@linaro.org>
6141 S:      Maintained
6142 T:      git git://anongit.freedesktop.org/drm/drm-misc
6143 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6144 F:      drivers/gpu/drm/mcde/
6145
6146 DRM DRIVER FOR TDFX VIDEO CARDS
6147 S:      Orphan / Obsolete
6148 F:      drivers/gpu/drm/tdfx/
6149
6150 DRM DRIVER FOR TPO TPG110 PANELS
6151 M:      Linus Walleij <linus.walleij@linaro.org>
6152 S:      Maintained
6153 T:      git git://anongit.freedesktop.org/drm/drm-misc
6154 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6155 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6156
6157 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6158 M:      Dave Airlie <airlied@redhat.com>
6159 R:      Sean Paul <sean@poorly.run>
6160 R:      Thomas Zimmermann <tzimmermann@suse.de>
6161 L:      dri-devel@lists.freedesktop.org
6162 S:      Supported
6163 T:      git git://anongit.freedesktop.org/drm/drm-misc
6164 F:      drivers/gpu/drm/udl/
6165
6166 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6167 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6168 M:      Melissa Wen <melissa.srw@gmail.com>
6169 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6170 R:      Daniel Vetter <daniel@ffwll.ch>
6171 L:      dri-devel@lists.freedesktop.org
6172 S:      Maintained
6173 T:      git git://anongit.freedesktop.org/drm/drm-misc
6174 F:      Documentation/gpu/vkms.rst
6175 F:      drivers/gpu/drm/vkms/
6176
6177 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6178 M:      Hans de Goede <hdegoede@redhat.com>
6179 L:      dri-devel@lists.freedesktop.org
6180 S:      Maintained
6181 T:      git git://anongit.freedesktop.org/drm/drm-misc
6182 F:      drivers/gpu/drm/vboxvideo/
6183
6184 DRM DRIVER FOR VMWARE VIRTUAL GPU
6185 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6186 M:      Zack Rusin <zackr@vmware.com>
6187 L:      dri-devel@lists.freedesktop.org
6188 S:      Supported
6189 T:      git git://anongit.freedesktop.org/drm/drm-misc
6190 F:      drivers/gpu/drm/vmwgfx/
6191 F:      include/uapi/drm/vmwgfx_drm.h
6192
6193 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6194 M:      Linus Walleij <linus.walleij@linaro.org>
6195 S:      Maintained
6196 T:      git git://anongit.freedesktop.org/drm/drm-misc
6197 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6198 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6199
6200 DRM DRIVERS
6201 M:      David Airlie <airlied@linux.ie>
6202 M:      Daniel Vetter <daniel@ffwll.ch>
6203 L:      dri-devel@lists.freedesktop.org
6204 S:      Maintained
6205 B:      https://gitlab.freedesktop.org/drm
6206 C:      irc://irc.oftc.net/dri-devel
6207 T:      git git://anongit.freedesktop.org/drm/drm
6208 F:      Documentation/devicetree/bindings/display/
6209 F:      Documentation/devicetree/bindings/gpu/
6210 F:      Documentation/gpu/
6211 F:      drivers/gpu/
6212 F:      include/drm/
6213 F:      include/linux/vga*
6214 F:      include/uapi/drm/
6215
6216 DRM DRIVERS AND MISC GPU PATCHES
6217 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6218 M:      Maxime Ripard <mripard@kernel.org>
6219 M:      Thomas Zimmermann <tzimmermann@suse.de>
6220 S:      Maintained
6221 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6222 T:      git git://anongit.freedesktop.org/drm/drm-misc
6223 F:      Documentation/gpu/
6224 F:      drivers/gpu/drm/*
6225 F:      drivers/gpu/vga/
6226 F:      include/drm/drm*
6227 F:      include/linux/vga*
6228 F:      include/uapi/drm/drm*
6229
6230 DRM DRIVERS FOR ALLWINNER A10
6231 M:      Maxime Ripard <mripard@kernel.org>
6232 M:      Chen-Yu Tsai <wens@csie.org>
6233 L:      dri-devel@lists.freedesktop.org
6234 S:      Supported
6235 T:      git git://anongit.freedesktop.org/drm/drm-misc
6236 F:      Documentation/devicetree/bindings/display/allwinner*
6237 F:      drivers/gpu/drm/sun4i/
6238
6239 DRM DRIVERS FOR AMLOGIC SOCS
6240 M:      Neil Armstrong <narmstrong@baylibre.com>
6241 L:      dri-devel@lists.freedesktop.org
6242 L:      linux-amlogic@lists.infradead.org
6243 S:      Supported
6244 W:      http://linux-meson.com/
6245 T:      git git://anongit.freedesktop.org/drm/drm-misc
6246 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6247 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6248 F:      Documentation/gpu/meson.rst
6249 F:      drivers/gpu/drm/meson/
6250
6251 DRM DRIVERS FOR ATMEL HLCDC
6252 M:      Sam Ravnborg <sam@ravnborg.org>
6253 M:      Boris Brezillon <bbrezillon@kernel.org>
6254 L:      dri-devel@lists.freedesktop.org
6255 S:      Supported
6256 T:      git git://anongit.freedesktop.org/drm/drm-misc
6257 F:      Documentation/devicetree/bindings/display/atmel/
6258 F:      drivers/gpu/drm/atmel-hlcdc/
6259
6260 DRM DRIVERS FOR BRIDGE CHIPS
6261 M:      Andrzej Hajda <a.hajda@samsung.com>
6262 M:      Neil Armstrong <narmstrong@baylibre.com>
6263 M:      Robert Foss <robert.foss@linaro.org>
6264 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6265 R:      Jonas Karlman <jonas@kwiboo.se>
6266 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6267 S:      Maintained
6268 T:      git git://anongit.freedesktop.org/drm/drm-misc
6269 F:      drivers/gpu/drm/bridge/
6270
6271 DRM DRIVERS FOR EXYNOS
6272 M:      Inki Dae <inki.dae@samsung.com>
6273 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6274 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6275 M:      Kyungmin Park <kyungmin.park@samsung.com>
6276 L:      dri-devel@lists.freedesktop.org
6277 S:      Supported
6278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6279 F:      Documentation/devicetree/bindings/display/exynos/
6280 F:      drivers/gpu/drm/exynos/
6281 F:      include/uapi/drm/exynos_drm.h
6282
6283 DRM DRIVERS FOR FREESCALE DCU
6284 M:      Stefan Agner <stefan@agner.ch>
6285 M:      Alison Wang <alison.wang@nxp.com>
6286 L:      dri-devel@lists.freedesktop.org
6287 S:      Supported
6288 T:      git git://anongit.freedesktop.org/drm/drm-misc
6289 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6290 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6291 F:      drivers/gpu/drm/fsl-dcu/
6292
6293 DRM DRIVERS FOR FREESCALE IMX
6294 M:      Philipp Zabel <p.zabel@pengutronix.de>
6295 L:      dri-devel@lists.freedesktop.org
6296 S:      Maintained
6297 F:      Documentation/devicetree/bindings/display/imx/
6298 F:      drivers/gpu/drm/imx/
6299 F:      drivers/gpu/ipu-v3/
6300
6301 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6302 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6303 L:      dri-devel@lists.freedesktop.org
6304 S:      Maintained
6305 T:      git git://github.com/patjak/drm-gma500
6306 F:      drivers/gpu/drm/gma500/
6307
6308 DRM DRIVERS FOR HISILICON
6309 M:      Xinliang Liu <xinliang.liu@linaro.org>
6310 M:      Tian Tao  <tiantao6@hisilicon.com>
6311 R:      John Stultz <john.stultz@linaro.org>
6312 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6313 R:      Chen Feng <puck.chen@hisilicon.com>
6314 L:      dri-devel@lists.freedesktop.org
6315 S:      Maintained
6316 T:      git git://anongit.freedesktop.org/drm/drm-misc
6317 F:      Documentation/devicetree/bindings/display/hisilicon/
6318 F:      drivers/gpu/drm/hisilicon/
6319
6320 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6321 M:      Deepak Rawat <drawat.floss@gmail.com>
6322 L:      linux-hyperv@vger.kernel.org
6323 L:      dri-devel@lists.freedesktop.org
6324 S:      Maintained
6325 T:      git git://anongit.freedesktop.org/drm/drm-misc
6326 F:      drivers/gpu/drm/hyperv
6327
6328 DRM DRIVERS FOR LIMA
6329 M:      Qiang Yu <yuq825@gmail.com>
6330 L:      dri-devel@lists.freedesktop.org
6331 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6332 S:      Maintained
6333 T:      git git://anongit.freedesktop.org/drm/drm-misc
6334 F:      drivers/gpu/drm/lima/
6335 F:      include/uapi/drm/lima_drm.h
6336
6337 DRM DRIVERS FOR MEDIATEK
6338 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6339 M:      Philipp Zabel <p.zabel@pengutronix.de>
6340 L:      dri-devel@lists.freedesktop.org
6341 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6342 S:      Supported
6343 F:      Documentation/devicetree/bindings/display/mediatek/
6344 F:      drivers/gpu/drm/mediatek/
6345 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6346 F:      drivers/phy/mediatek/phy-mtk-mipi*
6347
6348 DRM DRIVERS FOR NVIDIA TEGRA
6349 M:      Thierry Reding <thierry.reding@gmail.com>
6350 L:      dri-devel@lists.freedesktop.org
6351 L:      linux-tegra@vger.kernel.org
6352 S:      Supported
6353 T:      git git://anongit.freedesktop.org/tegra/linux.git
6354 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6355 F:      Documentation/devicetree/bindings/gpu/host1x/
6356 F:      drivers/gpu/drm/tegra/
6357 F:      drivers/gpu/host1x/
6358 F:      include/linux/host1x.h
6359 F:      include/uapi/drm/tegra_drm.h
6360
6361 DRM DRIVERS FOR RENESAS
6362 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6363 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6364 L:      dri-devel@lists.freedesktop.org
6365 L:      linux-renesas-soc@vger.kernel.org
6366 S:      Supported
6367 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6368 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6369 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6370 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6371 F:      drivers/gpu/drm/rcar-du/
6372 F:      drivers/gpu/drm/shmobile/
6373 F:      include/linux/platform_data/shmob_drm.h
6374
6375 DRM DRIVERS FOR ROCKCHIP
6376 M:      Sandy Huang <hjc@rock-chips.com>
6377 M:      Heiko Stübner <heiko@sntech.de>
6378 L:      dri-devel@lists.freedesktop.org
6379 S:      Maintained
6380 T:      git git://anongit.freedesktop.org/drm/drm-misc
6381 F:      Documentation/devicetree/bindings/display/rockchip/
6382 F:      drivers/gpu/drm/rockchip/
6383
6384 DRM DRIVERS FOR STI
6385 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6386 L:      dri-devel@lists.freedesktop.org
6387 S:      Maintained
6388 T:      git git://anongit.freedesktop.org/drm/drm-misc
6389 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6390 F:      drivers/gpu/drm/sti
6391
6392 DRM DRIVERS FOR STM
6393 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6394 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6395 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6396 L:      dri-devel@lists.freedesktop.org
6397 S:      Maintained
6398 T:      git git://anongit.freedesktop.org/drm/drm-misc
6399 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6400 F:      drivers/gpu/drm/stm
6401
6402 DRM DRIVERS FOR TI KEYSTONE
6403 M:      Jyri Sarha <jyri.sarha@iki.fi>
6404 M:      Tomi Valkeinen <tomba@kernel.org>
6405 L:      dri-devel@lists.freedesktop.org
6406 S:      Maintained
6407 T:      git git://anongit.freedesktop.org/drm/drm-misc
6408 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6409 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6410 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6411 F:      drivers/gpu/drm/tidss/
6412
6413 DRM DRIVERS FOR TI LCDC
6414 M:      Jyri Sarha <jyri.sarha@iki.fi>
6415 R:      Tomi Valkeinen <tomba@kernel.org>
6416 L:      dri-devel@lists.freedesktop.org
6417 S:      Maintained
6418 F:      Documentation/devicetree/bindings/display/tilcdc/
6419 F:      drivers/gpu/drm/tilcdc/
6420
6421 DRM DRIVERS FOR TI OMAP
6422 M:      Tomi Valkeinen <tomba@kernel.org>
6423 L:      dri-devel@lists.freedesktop.org
6424 S:      Maintained
6425 F:      Documentation/devicetree/bindings/display/ti/
6426 F:      drivers/gpu/drm/omapdrm/
6427
6428 DRM DRIVERS FOR V3D
6429 M:      Emma Anholt <emma@anholt.net>
6430 S:      Supported
6431 T:      git git://anongit.freedesktop.org/drm/drm-misc
6432 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6433 F:      drivers/gpu/drm/v3d/
6434 F:      include/uapi/drm/v3d_drm.h
6435
6436 DRM DRIVERS FOR VC4
6437 M:      Emma Anholt <emma@anholt.net>
6438 M:      Maxime Ripard <mripard@kernel.org>
6439 S:      Supported
6440 T:      git git://github.com/anholt/linux
6441 T:      git git://anongit.freedesktop.org/drm/drm-misc
6442 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6443 F:      drivers/gpu/drm/vc4/
6444 F:      include/uapi/drm/vc4_drm.h
6445
6446 DRM DRIVERS FOR VIVANTE GPU IP
6447 M:      Lucas Stach <l.stach@pengutronix.de>
6448 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6449 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6450 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6451 L:      dri-devel@lists.freedesktop.org
6452 S:      Maintained
6453 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6454 F:      drivers/gpu/drm/etnaviv/
6455 F:      include/uapi/drm/etnaviv_drm.h
6456
6457 DRM DRIVERS FOR XEN
6458 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6459 L:      dri-devel@lists.freedesktop.org
6460 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6461 S:      Supported
6462 T:      git git://anongit.freedesktop.org/drm/drm-misc
6463 F:      Documentation/gpu/xen-front.rst
6464 F:      drivers/gpu/drm/xen/
6465
6466 DRM DRIVERS FOR XILINX
6467 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6468 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6469 L:      dri-devel@lists.freedesktop.org
6470 S:      Maintained
6471 T:      git git://anongit.freedesktop.org/drm/drm-misc
6472 F:      Documentation/devicetree/bindings/display/xlnx/
6473 F:      drivers/gpu/drm/xlnx/
6474
6475 DRM PANEL DRIVERS
6476 M:      Thierry Reding <thierry.reding@gmail.com>
6477 R:      Sam Ravnborg <sam@ravnborg.org>
6478 L:      dri-devel@lists.freedesktop.org
6479 S:      Maintained
6480 T:      git git://anongit.freedesktop.org/drm/drm-misc
6481 F:      Documentation/devicetree/bindings/display/panel/
6482 F:      drivers/gpu/drm/drm_panel.c
6483 F:      drivers/gpu/drm/panel/
6484 F:      include/drm/drm_panel.h
6485
6486 DRM TTM SUBSYSTEM
6487 M:      Christian Koenig <christian.koenig@amd.com>
6488 M:      Huang Rui <ray.huang@amd.com>
6489 L:      dri-devel@lists.freedesktop.org
6490 S:      Maintained
6491 T:      git git://anongit.freedesktop.org/drm/drm-misc
6492 F:      drivers/gpu/drm/ttm/
6493 F:      include/drm/ttm/
6494
6495 DRM GPU SCHEDULER
6496 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6497 L:      dri-devel@lists.freedesktop.org
6498 S:      Maintained
6499 T:      git git://anongit.freedesktop.org/drm/drm-misc
6500 F:      drivers/gpu/drm/scheduler/
6501 F:      include/drm/gpu_scheduler.h
6502
6503 DSBR100 USB FM RADIO DRIVER
6504 M:      Alexey Klimov <klimov.linux@gmail.com>
6505 L:      linux-media@vger.kernel.org
6506 S:      Maintained
6507 T:      git git://linuxtv.org/media_tree.git
6508 F:      drivers/media/radio/dsbr100.c
6509
6510 DT3155 MEDIA DRIVER
6511 M:      Hans Verkuil <hverkuil@xs4all.nl>
6512 L:      linux-media@vger.kernel.org
6513 S:      Odd Fixes
6514 W:      https://linuxtv.org
6515 T:      git git://linuxtv.org/media_tree.git
6516 F:      drivers/media/pci/dt3155/
6517
6518 DVB_USB_AF9015 MEDIA DRIVER
6519 M:      Antti Palosaari <crope@iki.fi>
6520 L:      linux-media@vger.kernel.org
6521 S:      Maintained
6522 W:      https://linuxtv.org
6523 W:      http://palosaari.fi/linux/
6524 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6525 T:      git git://linuxtv.org/anttip/media_tree.git
6526 F:      drivers/media/usb/dvb-usb-v2/af9015*
6527
6528 DVB_USB_AF9035 MEDIA DRIVER
6529 M:      Antti Palosaari <crope@iki.fi>
6530 L:      linux-media@vger.kernel.org
6531 S:      Maintained
6532 W:      https://linuxtv.org
6533 W:      http://palosaari.fi/linux/
6534 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6535 T:      git git://linuxtv.org/anttip/media_tree.git
6536 F:      drivers/media/usb/dvb-usb-v2/af9035*
6537
6538 DVB_USB_ANYSEE MEDIA DRIVER
6539 M:      Antti Palosaari <crope@iki.fi>
6540 L:      linux-media@vger.kernel.org
6541 S:      Maintained
6542 W:      https://linuxtv.org
6543 W:      http://palosaari.fi/linux/
6544 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6545 T:      git git://linuxtv.org/anttip/media_tree.git
6546 F:      drivers/media/usb/dvb-usb-v2/anysee*
6547
6548 DVB_USB_AU6610 MEDIA DRIVER
6549 M:      Antti Palosaari <crope@iki.fi>
6550 L:      linux-media@vger.kernel.org
6551 S:      Maintained
6552 W:      https://linuxtv.org
6553 W:      http://palosaari.fi/linux/
6554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6555 T:      git git://linuxtv.org/anttip/media_tree.git
6556 F:      drivers/media/usb/dvb-usb-v2/au6610*
6557
6558 DVB_USB_CE6230 MEDIA DRIVER
6559 M:      Antti Palosaari <crope@iki.fi>
6560 L:      linux-media@vger.kernel.org
6561 S:      Maintained
6562 W:      https://linuxtv.org
6563 W:      http://palosaari.fi/linux/
6564 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6565 T:      git git://linuxtv.org/anttip/media_tree.git
6566 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6567
6568 DVB_USB_CXUSB MEDIA DRIVER
6569 M:      Michael Krufky <mkrufky@linuxtv.org>
6570 L:      linux-media@vger.kernel.org
6571 S:      Maintained
6572 W:      https://linuxtv.org
6573 W:      http://github.com/mkrufky
6574 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6575 T:      git git://linuxtv.org/media_tree.git
6576 F:      drivers/media/usb/dvb-usb/cxusb*
6577
6578 DVB_USB_EC168 MEDIA DRIVER
6579 M:      Antti Palosaari <crope@iki.fi>
6580 L:      linux-media@vger.kernel.org
6581 S:      Maintained
6582 W:      https://linuxtv.org
6583 W:      http://palosaari.fi/linux/
6584 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6585 T:      git git://linuxtv.org/anttip/media_tree.git
6586 F:      drivers/media/usb/dvb-usb-v2/ec168*
6587
6588 DVB_USB_GL861 MEDIA DRIVER
6589 M:      Antti Palosaari <crope@iki.fi>
6590 L:      linux-media@vger.kernel.org
6591 S:      Maintained
6592 W:      https://linuxtv.org
6593 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6594 T:      git git://linuxtv.org/anttip/media_tree.git
6595 F:      drivers/media/usb/dvb-usb-v2/gl861*
6596
6597 DVB_USB_MXL111SF MEDIA DRIVER
6598 M:      Michael Krufky <mkrufky@linuxtv.org>
6599 L:      linux-media@vger.kernel.org
6600 S:      Maintained
6601 W:      https://linuxtv.org
6602 W:      http://github.com/mkrufky
6603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6604 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6605 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6606
6607 DVB_USB_RTL28XXU MEDIA DRIVER
6608 M:      Antti Palosaari <crope@iki.fi>
6609 L:      linux-media@vger.kernel.org
6610 S:      Maintained
6611 W:      https://linuxtv.org
6612 W:      http://palosaari.fi/linux/
6613 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6614 T:      git git://linuxtv.org/anttip/media_tree.git
6615 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6616
6617 DVB_USB_V2 MEDIA DRIVER
6618 M:      Antti Palosaari <crope@iki.fi>
6619 L:      linux-media@vger.kernel.org
6620 S:      Maintained
6621 W:      https://linuxtv.org
6622 W:      http://palosaari.fi/linux/
6623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6624 T:      git git://linuxtv.org/anttip/media_tree.git
6625 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6626 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6627
6628 DYNAMIC DEBUG
6629 M:      Jason Baron <jbaron@akamai.com>
6630 S:      Maintained
6631 F:      include/linux/dynamic_debug.h
6632 F:      lib/dynamic_debug.c
6633
6634 DYNAMIC INTERRUPT MODERATION
6635 M:      Tal Gilboa <talgi@nvidia.com>
6636 S:      Maintained
6637 F:      Documentation/networking/net_dim.rst
6638 F:      include/linux/dim.h
6639 F:      lib/dim/
6640
6641 DZ DECSTATION DZ11 SERIAL DRIVER
6642 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6643 S:      Maintained
6644 F:      drivers/tty/serial/dz.*
6645
6646 E3X0 POWER BUTTON DRIVER
6647 M:      Moritz Fischer <moritz.fischer@ettus.com>
6648 L:      usrp-users@lists.ettus.com
6649 S:      Supported
6650 W:      http://www.ettus.com
6651 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6652 F:      drivers/input/misc/e3x0-button.c
6653
6654 E4000 MEDIA DRIVER
6655 M:      Antti Palosaari <crope@iki.fi>
6656 L:      linux-media@vger.kernel.org
6657 S:      Maintained
6658 W:      https://linuxtv.org
6659 W:      http://palosaari.fi/linux/
6660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6661 T:      git git://linuxtv.org/anttip/media_tree.git
6662 F:      drivers/media/tuners/e4000*
6663
6664 EARTH_PT1 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/pt1/
6669
6670 EARTH_PT3 MEDIA DRIVER
6671 M:      Akihiro Tsukada <tskd08@gmail.com>
6672 L:      linux-media@vger.kernel.org
6673 S:      Odd Fixes
6674 F:      drivers/media/pci/pt3/
6675
6676 EC100 MEDIA DRIVER
6677 M:      Antti Palosaari <crope@iki.fi>
6678 L:      linux-media@vger.kernel.org
6679 S:      Maintained
6680 W:      https://linuxtv.org
6681 W:      http://palosaari.fi/linux/
6682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6683 T:      git git://linuxtv.org/anttip/media_tree.git
6684 F:      drivers/media/dvb-frontends/ec100*
6685
6686 ECRYPT FILE SYSTEM
6687 M:      Tyler Hicks <code@tyhicks.com>
6688 L:      ecryptfs@vger.kernel.org
6689 S:      Odd Fixes
6690 W:      http://ecryptfs.org
6691 W:      https://launchpad.net/ecryptfs
6692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6693 F:      Documentation/filesystems/ecryptfs.rst
6694 F:      fs/ecryptfs/
6695
6696 EDAC-AMD64
6697 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6698 L:      linux-edac@vger.kernel.org
6699 S:      Supported
6700 F:      drivers/edac/amd64_edac*
6701 F:      drivers/edac/mce_amd*
6702
6703 EDAC-ARMADA
6704 M:      Jan Luebbe <jlu@pengutronix.de>
6705 L:      linux-edac@vger.kernel.org
6706 S:      Maintained
6707 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6708 F:      drivers/edac/armada_xp_*
6709
6710 EDAC-AST2500
6711 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6712 S:      Supported
6713 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6714 F:      drivers/edac/aspeed_edac.c
6715
6716 EDAC-BLUEFIELD
6717 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6718 S:      Supported
6719 F:      drivers/edac/bluefield_edac.c
6720
6721 EDAC-CALXEDA
6722 M:      Andre Przywara <andre.przywara@arm.com>
6723 L:      linux-edac@vger.kernel.org
6724 S:      Maintained
6725 F:      drivers/edac/highbank*
6726
6727 EDAC-CAVIUM OCTEON
6728 M:      Ralf Baechle <ralf@linux-mips.org>
6729 L:      linux-edac@vger.kernel.org
6730 L:      linux-mips@vger.kernel.org
6731 S:      Supported
6732 F:      drivers/edac/octeon_edac*
6733
6734 EDAC-CAVIUM THUNDERX
6735 M:      Robert Richter <rric@kernel.org>
6736 L:      linux-edac@vger.kernel.org
6737 S:      Odd Fixes
6738 F:      drivers/edac/thunderx_edac*
6739
6740 EDAC-CORE
6741 M:      Borislav Petkov <bp@alien8.de>
6742 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6743 M:      Tony Luck <tony.luck@intel.com>
6744 R:      James Morse <james.morse@arm.com>
6745 R:      Robert Richter <rric@kernel.org>
6746 L:      linux-edac@vger.kernel.org
6747 S:      Supported
6748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6749 F:      Documentation/admin-guide/ras.rst
6750 F:      Documentation/driver-api/edac.rst
6751 F:      drivers/edac/
6752 F:      include/linux/edac.h
6753
6754 EDAC-DMC520
6755 M:      Lei Wang <lewan@microsoft.com>
6756 L:      linux-edac@vger.kernel.org
6757 S:      Supported
6758 F:      drivers/edac/dmc520_edac.c
6759
6760 EDAC-E752X
6761 M:      Mark Gross <markgross@kernel.org>
6762 L:      linux-edac@vger.kernel.org
6763 S:      Maintained
6764 F:      drivers/edac/e752x_edac.c
6765
6766 EDAC-E7XXX
6767 L:      linux-edac@vger.kernel.org
6768 S:      Maintained
6769 F:      drivers/edac/e7xxx_edac.c
6770
6771 EDAC-FSL_DDR
6772 M:      York Sun <york.sun@nxp.com>
6773 L:      linux-edac@vger.kernel.org
6774 S:      Maintained
6775 F:      drivers/edac/fsl_ddr_edac.*
6776
6777 EDAC-GHES
6778 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6779 L:      linux-edac@vger.kernel.org
6780 S:      Maintained
6781 F:      drivers/edac/ghes_edac.c
6782
6783 EDAC-I10NM
6784 M:      Tony Luck <tony.luck@intel.com>
6785 L:      linux-edac@vger.kernel.org
6786 S:      Maintained
6787 F:      drivers/edac/i10nm_base.c
6788
6789 EDAC-I3000
6790 L:      linux-edac@vger.kernel.org
6791 S:      Orphan
6792 F:      drivers/edac/i3000_edac.c
6793
6794 EDAC-I5000
6795 L:      linux-edac@vger.kernel.org
6796 S:      Maintained
6797 F:      drivers/edac/i5000_edac.c
6798
6799 EDAC-I5400
6800 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6801 L:      linux-edac@vger.kernel.org
6802 S:      Maintained
6803 F:      drivers/edac/i5400_edac.c
6804
6805 EDAC-I7300
6806 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6807 L:      linux-edac@vger.kernel.org
6808 S:      Maintained
6809 F:      drivers/edac/i7300_edac.c
6810
6811 EDAC-I7CORE
6812 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6813 L:      linux-edac@vger.kernel.org
6814 S:      Maintained
6815 F:      drivers/edac/i7core_edac.c
6816
6817 EDAC-I82443BXGX
6818 M:      Tim Small <tim@buttersideup.com>
6819 L:      linux-edac@vger.kernel.org
6820 S:      Maintained
6821 F:      drivers/edac/i82443bxgx_edac.c
6822
6823 EDAC-I82975X
6824 M:      "Arvind R." <arvino55@gmail.com>
6825 L:      linux-edac@vger.kernel.org
6826 S:      Maintained
6827 F:      drivers/edac/i82975x_edac.c
6828
6829 EDAC-IE31200
6830 M:      Jason Baron <jbaron@akamai.com>
6831 L:      linux-edac@vger.kernel.org
6832 S:      Maintained
6833 F:      drivers/edac/ie31200_edac.c
6834
6835 EDAC-IGEN6
6836 M:      Tony Luck <tony.luck@intel.com>
6837 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6838 L:      linux-edac@vger.kernel.org
6839 S:      Maintained
6840 F:      drivers/edac/igen6_edac.c
6841
6842 EDAC-MPC85XX
6843 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6844 L:      linux-edac@vger.kernel.org
6845 S:      Maintained
6846 F:      drivers/edac/mpc85xx_edac.[ch]
6847
6848 EDAC-PASEMI
6849 M:      Egor Martovetsky <egor@pasemi.com>
6850 L:      linux-edac@vger.kernel.org
6851 S:      Maintained
6852 F:      drivers/edac/pasemi_edac.c
6853
6854 EDAC-PND2
6855 M:      Tony Luck <tony.luck@intel.com>
6856 L:      linux-edac@vger.kernel.org
6857 S:      Maintained
6858 F:      drivers/edac/pnd2_edac.[ch]
6859
6860 EDAC-QCOM
6861 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6862 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6863 L:      linux-arm-msm@vger.kernel.org
6864 L:      linux-edac@vger.kernel.org
6865 S:      Maintained
6866 F:      drivers/edac/qcom_edac.c
6867
6868 EDAC-R82600
6869 M:      Tim Small <tim@buttersideup.com>
6870 L:      linux-edac@vger.kernel.org
6871 S:      Maintained
6872 F:      drivers/edac/r82600_edac.c
6873
6874 EDAC-SBRIDGE
6875 M:      Tony Luck <tony.luck@intel.com>
6876 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6877 L:      linux-edac@vger.kernel.org
6878 S:      Maintained
6879 F:      drivers/edac/sb_edac.c
6880
6881 EDAC-SIFIVE
6882 M:      Yash Shah <yash.shah@sifive.com>
6883 L:      linux-edac@vger.kernel.org
6884 S:      Supported
6885 F:      drivers/edac/sifive_edac.c
6886
6887 EDAC-SKYLAKE
6888 M:      Tony Luck <tony.luck@intel.com>
6889 L:      linux-edac@vger.kernel.org
6890 S:      Maintained
6891 F:      drivers/edac/skx_*.[ch]
6892
6893 EDAC-TI
6894 M:      Tero Kristo <kristo@kernel.org>
6895 L:      linux-edac@vger.kernel.org
6896 S:      Odd Fixes
6897 F:      drivers/edac/ti_edac.c
6898
6899 EDIROL UA-101/UA-1000 DRIVER
6900 M:      Clemens Ladisch <clemens@ladisch.de>
6901 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6902 S:      Maintained
6903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6904 F:      sound/usb/misc/ua101.c
6905
6906 EFI TEST DRIVER
6907 M:      Ivan Hu <ivan.hu@canonical.com>
6908 M:      Ard Biesheuvel <ardb@kernel.org>
6909 L:      linux-efi@vger.kernel.org
6910 S:      Maintained
6911 F:      drivers/firmware/efi/test/
6912
6913 EFI VARIABLE FILESYSTEM
6914 M:      Matthew Garrett <matthew.garrett@nebula.com>
6915 M:      Jeremy Kerr <jk@ozlabs.org>
6916 M:      Ard Biesheuvel <ardb@kernel.org>
6917 L:      linux-efi@vger.kernel.org
6918 S:      Maintained
6919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6920 F:      fs/efivarfs/
6921
6922 EFIFB FRAMEBUFFER DRIVER
6923 M:      Peter Jones <pjones@redhat.com>
6924 L:      linux-fbdev@vger.kernel.org
6925 S:      Maintained
6926 F:      drivers/video/fbdev/efifb.c
6927
6928 EFS FILESYSTEM
6929 S:      Orphan
6930 W:      http://aeschi.ch.eu.org/efs/
6931 F:      fs/efs/
6932
6933 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6934 M:      Douglas Miller <dougmill@linux.ibm.com>
6935 L:      netdev@vger.kernel.org
6936 S:      Maintained
6937 F:      drivers/net/ethernet/ibm/ehea/
6938
6939 EM28XX VIDEO4LINUX DRIVER
6940 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6941 L:      linux-media@vger.kernel.org
6942 S:      Maintained
6943 W:      https://linuxtv.org
6944 T:      git git://linuxtv.org/media_tree.git
6945 F:      Documentation/admin-guide/media/em28xx*
6946 F:      drivers/media/usb/em28xx/
6947
6948 EMBEDDED LINUX
6949 M:      Matt Mackall <mpm@selenic.com>
6950 M:      David Woodhouse <dwmw2@infradead.org>
6951 L:      linux-embedded@vger.kernel.org
6952 S:      Maintained
6953
6954 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6955 M:      Adrian Hunter <adrian.hunter@intel.com>
6956 M:      Ritesh Harjani <riteshh@codeaurora.org>
6957 M:      Asutosh Das <asutoshd@codeaurora.org>
6958 L:      linux-mmc@vger.kernel.org
6959 S:      Maintained
6960 F:      drivers/mmc/host/cqhci*
6961
6962 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6963 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6964 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6965 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6966 L:      linux-scsi@vger.kernel.org
6967 S:      Supported
6968 W:      http://www.broadcom.com
6969 F:      drivers/scsi/be2iscsi/
6970
6971 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6972 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6973 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6974 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6975 L:      netdev@vger.kernel.org
6976 S:      Supported
6977 W:      http://www.emulex.com
6978 F:      drivers/net/ethernet/emulex/benet/
6979
6980 EMULEX ONECONNECT ROCE DRIVER
6981 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6982 L:      linux-rdma@vger.kernel.org
6983 S:      Odd Fixes
6984 W:      http://www.broadcom.com
6985 F:      drivers/infiniband/hw/ocrdma/
6986 F:      include/uapi/rdma/ocrdma-abi.h
6987
6988 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6989 M:      James Smart <james.smart@broadcom.com>
6990 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6991 L:      linux-scsi@vger.kernel.org
6992 S:      Supported
6993 W:      http://www.broadcom.com
6994 F:      drivers/scsi/lpfc/
6995
6996 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6997 M:      James Smart <james.smart@broadcom.com>
6998 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6999 L:      linux-scsi@vger.kernel.org
7000 L:      target-devel@vger.kernel.org
7001 S:      Supported
7002 W:      http://www.broadcom.com
7003 F:      drivers/scsi/elx/
7004
7005 ENE CB710 FLASH CARD READER DRIVER
7006 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7007 S:      Maintained
7008 F:      drivers/misc/cb710/
7009 F:      drivers/mmc/host/cb710-mmc.*
7010 F:      include/linux/cb710.h
7011
7012 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7013 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7014 S:      Maintained
7015 F:      drivers/media/rc/ene_ir.*
7016
7017 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7018 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7019 L:      linuxppc-dev@lists.ozlabs.org
7020 S:      Maintained
7021 F:      drivers/tty/ehv_bytechan.c
7022
7023 EPSON S1D13XXX FRAMEBUFFER DRIVER
7024 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7025 S:      Maintained
7026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7027 F:      drivers/video/fbdev/s1d13xxxfb.c
7028 F:      include/video/s1d13xxxfb.h
7029
7030 EROFS FILE SYSTEM
7031 M:      Gao Xiang <xiang@kernel.org>
7032 M:      Chao Yu <chao@kernel.org>
7033 L:      linux-erofs@lists.ozlabs.org
7034 S:      Maintained
7035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7036 F:      Documentation/filesystems/erofs.rst
7037 F:      fs/erofs/
7038 F:      include/trace/events/erofs.h
7039
7040 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7041 M:      Jeff Layton <jlayton@kernel.org>
7042 S:      Maintained
7043 F:      include/linux/errseq.h
7044 F:      lib/errseq.c
7045
7046 ET131X NETWORK DRIVER
7047 M:      Mark Einon <mark.einon@gmail.com>
7048 S:      Odd Fixes
7049 F:      drivers/net/ethernet/agere/
7050
7051 ETAS ES58X CAN/USB DRIVER
7052 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7053 L:      linux-can@vger.kernel.org
7054 S:      Maintained
7055 F:      drivers/net/can/usb/etas_es58x/
7056
7057 ETHERNET BRIDGE
7058 M:      Roopa Prabhu <roopa@nvidia.com>
7059 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7060 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7061 L:      netdev@vger.kernel.org
7062 S:      Maintained
7063 W:      http://www.linuxfoundation.org/en/Net:Bridge
7064 F:      include/linux/netfilter_bridge/
7065 F:      net/bridge/
7066
7067 ETHERNET PHY LIBRARY
7068 M:      Andrew Lunn <andrew@lunn.ch>
7069 M:      Heiner Kallweit <hkallweit1@gmail.com>
7070 R:      Russell King <linux@armlinux.org.uk>
7071 L:      netdev@vger.kernel.org
7072 S:      Maintained
7073 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7074 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7075 F:      Documentation/devicetree/bindings/net/mdio*
7076 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7077 F:      Documentation/networking/phy.rst
7078 F:      drivers/net/mdio/
7079 F:      drivers/net/mdio/acpi_mdio.c
7080 F:      drivers/net/mdio/fwnode_mdio.c
7081 F:      drivers/net/mdio/of_mdio.c
7082 F:      drivers/net/pcs/
7083 F:      drivers/net/phy/
7084 F:      include/dt-bindings/net/qca-ar803x.h
7085 F:      include/linux/*mdio*.h
7086 F:      include/linux/mdio/*.h
7087 F:      include/linux/of_net.h
7088 F:      include/linux/phy.h
7089 F:      include/linux/phy_fixed.h
7090 F:      include/linux/platform_data/mdio-bcm-unimac.h
7091 F:      include/linux/platform_data/mdio-gpio.h
7092 F:      include/trace/events/mdio.h
7093 F:      include/uapi/linux/mdio.h
7094 F:      include/uapi/linux/mii.h
7095 F:      net/core/of_net.c
7096
7097 EXFAT FILE SYSTEM
7098 M:      Namjae Jeon <linkinjeon@kernel.org>
7099 M:      Sungjong Seo <sj1557.seo@samsung.com>
7100 L:      linux-fsdevel@vger.kernel.org
7101 S:      Maintained
7102 F:      fs/exfat/
7103
7104 EXT2 FILE SYSTEM
7105 M:      Jan Kara <jack@suse.com>
7106 L:      linux-ext4@vger.kernel.org
7107 S:      Maintained
7108 F:      Documentation/filesystems/ext2.rst
7109 F:      fs/ext2/
7110 F:      include/linux/ext2*
7111
7112 EXT4 FILE SYSTEM
7113 M:      "Theodore Ts'o" <tytso@mit.edu>
7114 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7115 L:      linux-ext4@vger.kernel.org
7116 S:      Maintained
7117 W:      http://ext4.wiki.kernel.org
7118 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7120 F:      Documentation/filesystems/ext4/
7121 F:      fs/ext4/
7122 F:      include/trace/events/ext4.h
7123
7124 Extended Verification Module (EVM)
7125 M:      Mimi Zohar <zohar@linux.ibm.com>
7126 L:      linux-integrity@vger.kernel.org
7127 S:      Supported
7128 F:      security/integrity/evm/
7129
7130 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7131 M:      Ard Biesheuvel <ardb@kernel.org>
7132 L:      linux-efi@vger.kernel.org
7133 S:      Maintained
7134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7135 F:      Documentation/admin-guide/efi-stub.rst
7136 F:      arch/*/include/asm/efi.h
7137 F:      arch/*/kernel/efi.c
7138 F:      arch/arm/boot/compressed/efi-header.S
7139 F:      arch/arm64/kernel/efi-entry.S
7140 F:      arch/x86/platform/efi/
7141 F:      drivers/firmware/efi/
7142 F:      include/linux/efi*.h
7143
7144 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7145 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7146 M:      Chanwoo Choi <cw00.choi@samsung.com>
7147 L:      linux-kernel@vger.kernel.org
7148 S:      Maintained
7149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7150 F:      Documentation/devicetree/bindings/extcon/
7151 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7152 F:      drivers/extcon/
7153 F:      include/linux/extcon.h
7154 F:      include/linux/extcon/
7155
7156 EXTRA BOOT CONFIG
7157 M:      Masami Hiramatsu <mhiramat@kernel.org>
7158 S:      Maintained
7159 F:      Documentation/admin-guide/bootconfig.rst
7160 F:      fs/proc/bootconfig.c
7161 F:      include/linux/bootconfig.h
7162 F:      lib/bootconfig.c
7163 F:      tools/bootconfig/*
7164 F:      tools/bootconfig/scripts/*
7165
7166 EXYNOS DP DRIVER
7167 M:      Jingoo Han <jingoohan1@gmail.com>
7168 L:      dri-devel@lists.freedesktop.org
7169 S:      Maintained
7170 F:      drivers/gpu/drm/exynos/exynos_dp*
7171
7172 EXYNOS SYSMMU (IOMMU) driver
7173 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7174 L:      iommu@lists.linux-foundation.org
7175 S:      Maintained
7176 F:      drivers/iommu/exynos-iommu.c
7177
7178 F2FS FILE SYSTEM
7179 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7180 M:      Chao Yu <chao@kernel.org>
7181 L:      linux-f2fs-devel@lists.sourceforge.net
7182 S:      Maintained
7183 W:      https://f2fs.wiki.kernel.org/
7184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7185 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7186 F:      Documentation/filesystems/f2fs.rst
7187 F:      fs/f2fs/
7188 F:      include/linux/f2fs_fs.h
7189 F:      include/trace/events/f2fs.h
7190 F:      include/uapi/linux/f2fs.h
7191
7192 F71805F HARDWARE MONITORING DRIVER
7193 M:      Jean Delvare <jdelvare@suse.com>
7194 L:      linux-hwmon@vger.kernel.org
7195 S:      Maintained
7196 F:      Documentation/hwmon/f71805f.rst
7197 F:      drivers/hwmon/f71805f.c
7198
7199 FADDR2LINE
7200 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7201 S:      Maintained
7202 F:      scripts/faddr2line
7203
7204 FAILOVER MODULE
7205 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7206 L:      netdev@vger.kernel.org
7207 S:      Supported
7208 F:      Documentation/networking/failover.rst
7209 F:      include/net/failover.h
7210 F:      net/core/failover.c
7211
7212 FANOTIFY
7213 M:      Jan Kara <jack@suse.cz>
7214 R:      Amir Goldstein <amir73il@gmail.com>
7215 R:      Matthew Bobrowski <repnop@google.com>
7216 L:      linux-fsdevel@vger.kernel.org
7217 S:      Maintained
7218 F:      fs/notify/fanotify/
7219 F:      include/linux/fanotify.h
7220 F:      include/uapi/linux/fanotify.h
7221
7222 FARSYNC SYNCHRONOUS DRIVER
7223 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7224 S:      Supported
7225 W:      http://www.farsite.co.uk/
7226 F:      drivers/net/wan/farsync.*
7227
7228 FAULT INJECTION SUPPORT
7229 M:      Akinobu Mita <akinobu.mita@gmail.com>
7230 S:      Supported
7231 F:      Documentation/fault-injection/
7232 F:      lib/fault-inject.c
7233
7234 FBTFT Framebuffer drivers
7235 L:      dri-devel@lists.freedesktop.org
7236 L:      linux-fbdev@vger.kernel.org
7237 S:      Orphan
7238 F:      drivers/staging/fbtft/
7239
7240 FC0011 TUNER DRIVER
7241 M:      Michael Buesch <m@bues.ch>
7242 L:      linux-media@vger.kernel.org
7243 S:      Maintained
7244 F:      drivers/media/tuners/fc0011.c
7245 F:      drivers/media/tuners/fc0011.h
7246
7247 FC2580 MEDIA DRIVER
7248 M:      Antti Palosaari <crope@iki.fi>
7249 L:      linux-media@vger.kernel.org
7250 S:      Maintained
7251 W:      https://linuxtv.org
7252 W:      http://palosaari.fi/linux/
7253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7254 T:      git git://linuxtv.org/anttip/media_tree.git
7255 F:      drivers/media/tuners/fc2580*
7256
7257 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7258 M:      Hannes Reinecke <hare@suse.de>
7259 L:      linux-scsi@vger.kernel.org
7260 S:      Supported
7261 W:      www.Open-FCoE.org
7262 F:      drivers/scsi/fcoe/
7263 F:      drivers/scsi/libfc/
7264 F:      include/scsi/fc/
7265 F:      include/scsi/libfc.h
7266 F:      include/scsi/libfcoe.h
7267 F:      include/uapi/scsi/fc/
7268
7269 FILE LOCKING (flock() and fcntl()/lockf())
7270 M:      Jeff Layton <jlayton@kernel.org>
7271 M:      "J. Bruce Fields" <bfields@fieldses.org>
7272 L:      linux-fsdevel@vger.kernel.org
7273 S:      Maintained
7274 F:      fs/fcntl.c
7275 F:      fs/locks.c
7276 F:      include/linux/fcntl.h
7277 F:      include/uapi/linux/fcntl.h
7278
7279 FILESYSTEM DIRECT ACCESS (DAX)
7280 M:      Dan Williams <dan.j.williams@intel.com>
7281 R:      Matthew Wilcox <willy@infradead.org>
7282 R:      Jan Kara <jack@suse.cz>
7283 L:      linux-fsdevel@vger.kernel.org
7284 L:      nvdimm@lists.linux.dev
7285 S:      Supported
7286 F:      fs/dax.c
7287 F:      include/linux/dax.h
7288 F:      include/trace/events/fs_dax.h
7289
7290 FILESYSTEMS (VFS and infrastructure)
7291 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7292 L:      linux-fsdevel@vger.kernel.org
7293 S:      Maintained
7294 F:      fs/*
7295 F:      include/linux/fs.h
7296 F:      include/linux/fs_types.h
7297 F:      include/uapi/linux/fs.h
7298 F:      include/uapi/linux/openat2.h
7299 X:      fs/io-wq.c
7300 X:      fs/io-wq.h
7301 X:      fs/io_uring.c
7302
7303 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7304 M:      Riku Voipio <riku.voipio@iki.fi>
7305 L:      linux-hwmon@vger.kernel.org
7306 S:      Maintained
7307 F:      drivers/hwmon/f75375s.c
7308 F:      include/linux/f75375s.h
7309
7310 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7311 M:      Clemens Ladisch <clemens@ladisch.de>
7312 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7313 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7314 S:      Maintained
7315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7316 F:      include/uapi/sound/firewire.h
7317 F:      sound/firewire/
7318
7319 FIREWIRE MEDIA DRIVERS (firedtv)
7320 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7321 L:      linux-media@vger.kernel.org
7322 L:      linux1394-devel@lists.sourceforge.net
7323 S:      Maintained
7324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7325 F:      drivers/media/firewire/
7326
7327 FIREWIRE SBP-2 TARGET
7328 M:      Chris Boot <bootc@bootc.net>
7329 L:      linux-scsi@vger.kernel.org
7330 L:      target-devel@vger.kernel.org
7331 L:      linux1394-devel@lists.sourceforge.net
7332 S:      Maintained
7333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7334 F:      drivers/target/sbp/
7335
7336 FIREWIRE SUBSYSTEM
7337 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7338 L:      linux1394-devel@lists.sourceforge.net
7339 S:      Maintained
7340 W:      http://ieee1394.wiki.kernel.org/
7341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7342 F:      drivers/firewire/
7343 F:      include/linux/firewire.h
7344 F:      include/uapi/linux/firewire*.h
7345 F:      tools/firewire/
7346
7347 FIRMWARE FRAMEWORK FOR ARMV8-A
7348 M:      Sudeep Holla <sudeep.holla@arm.com>
7349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7350 S:      Maintained
7351 F:      drivers/firmware/arm_ffa/
7352 F:      include/linux/arm_ffa.h
7353
7354 FIRMWARE LOADER (request_firmware)
7355 M:      Luis Chamberlain <mcgrof@kernel.org>
7356 L:      linux-kernel@vger.kernel.org
7357 S:      Maintained
7358 F:      Documentation/firmware_class/
7359 F:      drivers/base/firmware_loader/
7360 F:      include/linux/firmware.h
7361
7362 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7363 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7364 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7365 S:      Maintained
7366 F:      drivers/block/rsxx/
7367
7368 FLEXTIMER FTM-QUADDEC DRIVER
7369 M:      Patrick Havelange <patrick.havelange@essensium.com>
7370 L:      linux-iio@vger.kernel.org
7371 S:      Maintained
7372 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7373 F:      drivers/counter/ftm-quaddec.c
7374
7375 FLOPPY DRIVER
7376 M:      Denis Efremov <efremov@linux.com>
7377 L:      linux-block@vger.kernel.org
7378 S:      Odd Fixes
7379 F:      drivers/block/floppy.c
7380
7381 FLYSKY FSIA6B RC RECEIVER
7382 M:      Markus Koch <markus@notsyncing.net>
7383 L:      linux-input@vger.kernel.org
7384 S:      Maintained
7385 F:      drivers/input/joystick/fsia6b.c
7386
7387 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7388 M:      Geoffrey D. Bennett <g@b4.vu>
7389 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7390 S:      Maintained
7391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7392 F:      sound/usb/mixer_scarlett_gen2.c
7393
7394 FORCEDETH GIGABIT ETHERNET DRIVER
7395 M:      Rain River <rain.1986.08.12@gmail.com>
7396 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7397 L:      netdev@vger.kernel.org
7398 S:      Maintained
7399 F:      drivers/net/ethernet/nvidia/*
7400
7401 FORTIFY_SOURCE
7402 M:      Kees Cook <keescook@chromium.org>
7403 L:      linux-hardening@vger.kernel.org
7404 S:      Supported
7405 F:      include/linux/fortify-string.h
7406 F:      lib/test_fortify/*
7407 F:      scripts/test_fortify.sh
7408 K:      \b__NO_FORTIFY\b
7409
7410 FPGA DFL DRIVERS
7411 M:      Wu Hao <hao.wu@intel.com>
7412 R:      Tom Rix <trix@redhat.com>
7413 L:      linux-fpga@vger.kernel.org
7414 S:      Maintained
7415 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7416 F:      Documentation/fpga/dfl.rst
7417 F:      drivers/fpga/dfl*
7418 F:      drivers/uio/uio_dfl.c
7419 F:      include/linux/dfl.h
7420 F:      include/uapi/linux/fpga-dfl.h
7421
7422 FPGA MANAGER FRAMEWORK
7423 M:      Moritz Fischer <mdf@kernel.org>
7424 M:      Wu Hao <hao.wu@intel.com>
7425 M:      Xu Yilun <yilun.xu@intel.com>
7426 R:      Tom Rix <trix@redhat.com>
7427 L:      linux-fpga@vger.kernel.org
7428 S:      Maintained
7429 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7431 F:      Documentation/devicetree/bindings/fpga/
7432 F:      Documentation/driver-api/fpga/
7433 F:      Documentation/fpga/
7434 F:      drivers/fpga/
7435 F:      include/linux/fpga/
7436
7437 FPU EMULATOR
7438 M:      Bill Metzenthen <billm@melbpc.org.au>
7439 S:      Maintained
7440 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7441 F:      arch/x86/math-emu/
7442
7443 FRAMEBUFFER LAYER
7444 L:      dri-devel@lists.freedesktop.org
7445 L:      linux-fbdev@vger.kernel.org
7446 S:      Orphan
7447 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7448 T:      git git://anongit.freedesktop.org/drm/drm-misc
7449 F:      Documentation/fb/
7450 F:      drivers/video/
7451 F:      include/linux/fb.h
7452 F:      include/uapi/linux/fb.h
7453 F:      include/uapi/video/
7454 F:      include/video/
7455
7456 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7457 M:      Horia Geantă <horia.geanta@nxp.com>
7458 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7459 L:      linux-crypto@vger.kernel.org
7460 S:      Maintained
7461 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7462 F:      drivers/crypto/caam/
7463
7464 FREESCALE COLDFIRE M5441X MMC DRIVER
7465 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7466 L:      linux-mmc@vger.kernel.org
7467 S:      Maintained
7468 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7469 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7470
7471 FREESCALE DIU FRAMEBUFFER DRIVER
7472 M:      Timur Tabi <timur@kernel.org>
7473 L:      linux-fbdev@vger.kernel.org
7474 S:      Maintained
7475 F:      drivers/video/fbdev/fsl-diu-fb.*
7476
7477 FREESCALE DMA DRIVER
7478 M:      Li Yang <leoyang.li@nxp.com>
7479 M:      Zhang Wei <zw@zh-kernel.org>
7480 L:      linuxppc-dev@lists.ozlabs.org
7481 S:      Maintained
7482 F:      drivers/dma/fsldma.*
7483
7484 FREESCALE DSPI DRIVER
7485 M:      Vladimir Oltean <olteanv@gmail.com>
7486 L:      linux-spi@vger.kernel.org
7487 S:      Maintained
7488 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7489 F:      drivers/spi/spi-fsl-dspi.c
7490 F:      include/linux/spi/spi-fsl-dspi.h
7491
7492 FREESCALE ENETC ETHERNET DRIVERS
7493 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7494 L:      netdev@vger.kernel.org
7495 S:      Maintained
7496 F:      drivers/net/ethernet/freescale/enetc/
7497
7498 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7499 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7500 L:      netdev@vger.kernel.org
7501 S:      Maintained
7502 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7503 F:      drivers/net/ethernet/freescale/gianfar*
7504
7505 FREESCALE GPMI NAND DRIVER
7506 M:      Han Xu <han.xu@nxp.com>
7507 L:      linux-mtd@lists.infradead.org
7508 S:      Maintained
7509 F:      drivers/mtd/nand/raw/gpmi-nand/*
7510
7511 FREESCALE I2C CPM DRIVER
7512 M:      Jochen Friedrich <jochen@scram.de>
7513 L:      linuxppc-dev@lists.ozlabs.org
7514 L:      linux-i2c@vger.kernel.org
7515 S:      Maintained
7516 F:      drivers/i2c/busses/i2c-cpm.c
7517
7518 FREESCALE IMX / MXC FEC DRIVER
7519 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7520 L:      netdev@vger.kernel.org
7521 S:      Maintained
7522 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7523 F:      drivers/net/ethernet/freescale/fec.h
7524 F:      drivers/net/ethernet/freescale/fec_main.c
7525 F:      drivers/net/ethernet/freescale/fec_ptp.c
7526
7527 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7528 M:      Sascha Hauer <s.hauer@pengutronix.de>
7529 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7530 L:      linux-fbdev@vger.kernel.org
7531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7532 S:      Maintained
7533 F:      drivers/video/fbdev/imxfb.c
7534 F:      include/linux/platform_data/video-imxfb.h
7535
7536 FREESCALE IMX DDR PMU DRIVER
7537 M:      Frank Li <Frank.li@nxp.com>
7538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7539 S:      Maintained
7540 F:      Documentation/admin-guide/perf/imx-ddr.rst
7541 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7542 F:      drivers/perf/fsl_imx8_ddr_perf.c
7543
7544 FREESCALE IMX I2C DRIVER
7545 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7546 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7547 L:      linux-i2c@vger.kernel.org
7548 S:      Maintained
7549 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7550 F:      drivers/i2c/busses/i2c-imx.c
7551
7552 FREESCALE IMX LPI2C DRIVER
7553 M:      Dong Aisheng <aisheng.dong@nxp.com>
7554 L:      linux-i2c@vger.kernel.org
7555 L:      linux-imx@nxp.com
7556 S:      Maintained
7557 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7558 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7559
7560 FREESCALE MPC I2C DRIVER
7561 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7562 L:      linux-i2c@vger.kernel.org
7563 S:      Maintained
7564 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7565 F:      drivers/i2c/busses/i2c-mpc.c
7566
7567 FREESCALE QORIQ DPAA ETHERNET DRIVER
7568 M:      Madalin Bucur <madalin.bucur@nxp.com>
7569 L:      netdev@vger.kernel.org
7570 S:      Maintained
7571 F:      drivers/net/ethernet/freescale/dpaa
7572
7573 FREESCALE QORIQ DPAA FMAN DRIVER
7574 M:      Madalin Bucur <madalin.bucur@nxp.com>
7575 L:      netdev@vger.kernel.org
7576 S:      Maintained
7577 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7578 F:      drivers/net/ethernet/freescale/fman
7579
7580 FREESCALE QORIQ PTP CLOCK DRIVER
7581 M:      Yangbo Lu <yangbo.lu@nxp.com>
7582 L:      netdev@vger.kernel.org
7583 S:      Maintained
7584 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7585 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7586 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7587 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7588 F:      drivers/ptp/ptp_qoriq.c
7589 F:      drivers/ptp/ptp_qoriq_debugfs.c
7590 F:      include/linux/fsl/ptp_qoriq.h
7591
7592 FREESCALE QUAD SPI DRIVER
7593 M:      Han Xu <han.xu@nxp.com>
7594 L:      linux-spi@vger.kernel.org
7595 S:      Maintained
7596 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7597 F:      drivers/spi/spi-fsl-qspi.c
7598
7599 FREESCALE QUICC ENGINE LIBRARY
7600 M:      Qiang Zhao <qiang.zhao@nxp.com>
7601 L:      linuxppc-dev@lists.ozlabs.org
7602 S:      Maintained
7603 F:      drivers/soc/fsl/qe/
7604 F:      include/soc/fsl/*qe*.h
7605 F:      include/soc/fsl/*ucc*.h
7606
7607 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7608 M:      Li Yang <leoyang.li@nxp.com>
7609 L:      netdev@vger.kernel.org
7610 L:      linuxppc-dev@lists.ozlabs.org
7611 S:      Maintained
7612 F:      drivers/net/ethernet/freescale/ucc_geth*
7613
7614 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7615 M:      Zhao Qiang <qiang.zhao@nxp.com>
7616 L:      netdev@vger.kernel.org
7617 L:      linuxppc-dev@lists.ozlabs.org
7618 S:      Maintained
7619 F:      drivers/net/wan/fsl_ucc_hdlc*
7620
7621 FREESCALE QUICC ENGINE UCC UART DRIVER
7622 M:      Timur Tabi <timur@kernel.org>
7623 L:      linuxppc-dev@lists.ozlabs.org
7624 S:      Maintained
7625 F:      drivers/tty/serial/ucc_uart.c
7626
7627 FREESCALE SOC DRIVERS
7628 M:      Li Yang <leoyang.li@nxp.com>
7629 L:      linuxppc-dev@lists.ozlabs.org
7630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7631 S:      Maintained
7632 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7633 F:      Documentation/devicetree/bindings/soc/fsl/
7634 F:      drivers/soc/fsl/
7635 F:      include/linux/fsl/
7636
7637 FREESCALE SOC FS_ENET DRIVER
7638 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7639 L:      linuxppc-dev@lists.ozlabs.org
7640 L:      netdev@vger.kernel.org
7641 S:      Maintained
7642 F:      drivers/net/ethernet/freescale/fs_enet/
7643 F:      include/linux/fs_enet_pd.h
7644
7645 FREESCALE SOC SOUND DRIVERS
7646 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7647 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7648 R:      Fabio Estevam <festevam@gmail.com>
7649 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7650 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7651 L:      linuxppc-dev@lists.ozlabs.org
7652 S:      Maintained
7653 F:      sound/soc/fsl/fsl*
7654 F:      sound/soc/fsl/imx*
7655 F:      sound/soc/fsl/mpc8610_hpcd.c
7656
7657 FREESCALE USB PERIPHERAL DRIVERS
7658 M:      Li Yang <leoyang.li@nxp.com>
7659 L:      linux-usb@vger.kernel.org
7660 L:      linuxppc-dev@lists.ozlabs.org
7661 S:      Maintained
7662 F:      drivers/usb/gadget/udc/fsl*
7663
7664 FREESCALE USB PHY DRIVER
7665 M:      Ran Wang <ran.wang_1@nxp.com>
7666 L:      linux-usb@vger.kernel.org
7667 L:      linuxppc-dev@lists.ozlabs.org
7668 S:      Maintained
7669 F:      drivers/usb/phy/phy-fsl-usb*
7670
7671 FREEVXFS FILESYSTEM
7672 M:      Christoph Hellwig <hch@infradead.org>
7673 S:      Maintained
7674 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7675 F:      fs/freevxfs/
7676
7677 FREEZER
7678 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7679 M:      Pavel Machek <pavel@ucw.cz>
7680 L:      linux-pm@vger.kernel.org
7681 S:      Supported
7682 F:      Documentation/power/freezing-of-tasks.rst
7683 F:      include/linux/freezer.h
7684 F:      kernel/freezer.c
7685
7686 FRONTSWAP API
7687 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7688 L:      linux-kernel@vger.kernel.org
7689 S:      Maintained
7690 F:      include/linux/frontswap.h
7691 F:      mm/frontswap.c
7692
7693 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7694 M:      David Howells <dhowells@redhat.com>
7695 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7696 S:      Supported
7697 F:      Documentation/filesystems/caching/
7698 F:      fs/fscache/
7699 F:      include/linux/fscache*.h
7700
7701 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7702 M:      Theodore Y. Ts'o <tytso@mit.edu>
7703 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7704 M:      Eric Biggers <ebiggers@kernel.org>
7705 L:      linux-fscrypt@vger.kernel.org
7706 S:      Supported
7707 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7708 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7709 F:      Documentation/filesystems/fscrypt.rst
7710 F:      fs/crypto/
7711 F:      include/linux/fscrypt*.h
7712 F:      include/uapi/linux/fscrypt.h
7713
7714 FSI SUBSYSTEM
7715 M:      Jeremy Kerr <jk@ozlabs.org>
7716 M:      Joel Stanley <joel@jms.id.au>
7717 R:      Alistar Popple <alistair@popple.id.au>
7718 R:      Eddie James <eajames@linux.ibm.com>
7719 L:      linux-fsi@lists.ozlabs.org
7720 S:      Supported
7721 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7723 F:      drivers/fsi/
7724 F:      include/linux/fsi*.h
7725 F:      include/trace/events/fsi*.h
7726
7727 FSI-ATTACHED I2C DRIVER
7728 M:      Eddie James <eajames@linux.ibm.com>
7729 L:      linux-i2c@vger.kernel.org
7730 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7731 S:      Maintained
7732 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7733 F:      drivers/i2c/busses/i2c-fsi.c
7734
7735 FSI-ATTACHED SPI DRIVER
7736 M:      Eddie James <eajames@linux.ibm.com>
7737 L:      linux-spi@vger.kernel.org
7738 S:      Maintained
7739 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7740 F:      drivers/spi/spi-fsi.c
7741
7742 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7743 M:      Jan Kara <jack@suse.cz>
7744 R:      Amir Goldstein <amir73il@gmail.com>
7745 L:      linux-fsdevel@vger.kernel.org
7746 S:      Maintained
7747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7748 F:      fs/notify/
7749 F:      include/linux/fsnotify*.h
7750
7751 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7752 M:      Eric Biggers <ebiggers@kernel.org>
7753 M:      Theodore Y. Ts'o <tytso@mit.edu>
7754 L:      linux-fscrypt@vger.kernel.org
7755 S:      Supported
7756 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7757 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7758 F:      Documentation/filesystems/fsverity.rst
7759 F:      fs/verity/
7760 F:      include/linux/fsverity.h
7761 F:      include/uapi/linux/fsverity.h
7762
7763 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7764 M:      Michael Zaidman <michael.zaidman@gmail.com>
7765 L:      linux-i2c@vger.kernel.org
7766 L:      linux-input@vger.kernel.org
7767 S:      Maintained
7768 F:      drivers/hid/hid-ft260.c
7769
7770 FUJITSU LAPTOP EXTRAS
7771 M:      Jonathan Woithe <jwoithe@just42.net>
7772 L:      platform-driver-x86@vger.kernel.org
7773 S:      Maintained
7774 F:      drivers/platform/x86/fujitsu-laptop.c
7775
7776 FUJITSU M-5MO LS CAMERA ISP DRIVER
7777 M:      Kyungmin Park <kyungmin.park@samsung.com>
7778 M:      Heungjun Kim <riverful.kim@samsung.com>
7779 L:      linux-media@vger.kernel.org
7780 S:      Maintained
7781 F:      drivers/media/i2c/m5mols/
7782 F:      include/media/i2c/m5mols.h
7783
7784 FUJITSU TABLET EXTRAS
7785 M:      Robert Gerlach <khnz@gmx.de>
7786 L:      platform-driver-x86@vger.kernel.org
7787 S:      Maintained
7788 F:      drivers/platform/x86/fujitsu-tablet.c
7789
7790 FUSE: FILESYSTEM IN USERSPACE
7791 M:      Miklos Szeredi <miklos@szeredi.hu>
7792 L:      linux-fsdevel@vger.kernel.org
7793 S:      Maintained
7794 W:      https://github.com/libfuse/
7795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7796 F:      Documentation/filesystems/fuse.rst
7797 F:      fs/fuse/
7798 F:      include/uapi/linux/fuse.h
7799
7800 FUTEX SUBSYSTEM
7801 M:      Thomas Gleixner <tglx@linutronix.de>
7802 M:      Ingo Molnar <mingo@redhat.com>
7803 R:      Peter Zijlstra <peterz@infradead.org>
7804 R:      Darren Hart <dvhart@infradead.org>
7805 R:      Davidlohr Bueso <dave@stgolabs.net>
7806 R:      André Almeida <andrealmeid@collabora.com>
7807 L:      linux-kernel@vger.kernel.org
7808 S:      Maintained
7809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7810 F:      Documentation/locking/*futex*
7811 F:      include/asm-generic/futex.h
7812 F:      include/linux/futex.h
7813 F:      include/uapi/linux/futex.h
7814 F:      kernel/futex/*
7815 F:      tools/perf/bench/futex*
7816 F:      tools/testing/selftests/futex/
7817
7818 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7819 M:      Tim Harvey <tharvey@gateworks.com>
7820 M:      Robert Jones <rjones@gateworks.com>
7821 S:      Maintained
7822 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7823 F:      drivers/mfd/gateworks-gsc.c
7824 F:      include/linux/mfd/gsc.h
7825 F:      Documentation/hwmon/gsc-hwmon.rst
7826 F:      drivers/hwmon/gsc-hwmon.c
7827 F:      include/linux/platform_data/gsc_hwmon.h
7828
7829 GCC PLUGINS
7830 M:      Kees Cook <keescook@chromium.org>
7831 L:      linux-hardening@vger.kernel.org
7832 S:      Maintained
7833 F:      Documentation/kbuild/gcc-plugins.rst
7834 F:      scripts/Makefile.gcc-plugins
7835 F:      scripts/gcc-plugins/
7836
7837 GCOV BASED KERNEL PROFILING
7838 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7839 S:      Maintained
7840 F:      Documentation/dev-tools/gcov.rst
7841 F:      kernel/gcov/
7842
7843 GDB KERNEL DEBUGGING HELPER SCRIPTS
7844 M:      Jan Kiszka <jan.kiszka@siemens.com>
7845 M:      Kieran Bingham <kbingham@kernel.org>
7846 S:      Supported
7847 F:      scripts/gdb/
7848
7849 GEMINI CRYPTO DRIVER
7850 M:      Corentin Labbe <clabbe@baylibre.com>
7851 L:      linux-crypto@vger.kernel.org
7852 S:      Maintained
7853 F:      drivers/crypto/gemini/
7854
7855 GEMTEK FM RADIO RECEIVER DRIVER
7856 M:      Hans Verkuil <hverkuil@xs4all.nl>
7857 L:      linux-media@vger.kernel.org
7858 S:      Maintained
7859 W:      https://linuxtv.org
7860 T:      git git://linuxtv.org/media_tree.git
7861 F:      drivers/media/radio/radio-gemtek*
7862
7863 GENERIC ARCHITECTURE TOPOLOGY
7864 M:      Sudeep Holla <sudeep.holla@arm.com>
7865 L:      linux-kernel@vger.kernel.org
7866 S:      Maintained
7867 F:      drivers/base/arch_topology.c
7868 F:      include/linux/arch_topology.h
7869
7870 GENERIC ENTRY CODE
7871 M:      Thomas Gleixner <tglx@linutronix.de>
7872 M:      Peter Zijlstra <peterz@infradead.org>
7873 M:      Andy Lutomirski <luto@kernel.org>
7874 L:      linux-kernel@vger.kernel.org
7875 S:      Maintained
7876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7877 F:      include/linux/entry-common.h
7878 F:      include/linux/entry-kvm.h
7879 F:      kernel/entry/
7880
7881 GENERIC GPIO I2C DRIVER
7882 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7883 S:      Supported
7884 F:      drivers/i2c/busses/i2c-gpio.c
7885 F:      include/linux/platform_data/i2c-gpio.h
7886
7887 GENERIC GPIO I2C MULTIPLEXER DRIVER
7888 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7889 L:      linux-i2c@vger.kernel.org
7890 S:      Supported
7891 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7892 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7893 F:      include/linux/platform_data/i2c-mux-gpio.h
7894
7895 GENERIC HDLC (WAN) DRIVERS
7896 M:      Krzysztof Halasa <khc@pm.waw.pl>
7897 S:      Maintained
7898 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7899 F:      drivers/net/wan/c101.c
7900 F:      drivers/net/wan/hd6457*
7901 F:      drivers/net/wan/hdlc*
7902 F:      drivers/net/wan/n2.c
7903 F:      drivers/net/wan/pc300too.c
7904 F:      drivers/net/wan/pci200syn.c
7905 F:      drivers/net/wan/wanxl*
7906
7907 GENERIC INCLUDE/ASM HEADER FILES
7908 M:      Arnd Bergmann <arnd@arndb.de>
7909 L:      linux-arch@vger.kernel.org
7910 S:      Maintained
7911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7912 F:      include/asm-generic/
7913 F:      include/uapi/asm-generic/
7914
7915 GENERIC PHY FRAMEWORK
7916 M:      Kishon Vijay Abraham I <kishon@ti.com>
7917 M:      Vinod Koul <vkoul@kernel.org>
7918 L:      linux-phy@lists.infradead.org
7919 S:      Supported
7920 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7922 F:      Documentation/devicetree/bindings/phy/
7923 F:      drivers/phy/
7924 F:      include/linux/phy/
7925
7926 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7927 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7928 S:      Supported
7929 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7930
7931 GENERIC PM DOMAINS
7932 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7933 M:      Kevin Hilman <khilman@kernel.org>
7934 M:      Ulf Hansson <ulf.hansson@linaro.org>
7935 L:      linux-pm@vger.kernel.org
7936 S:      Supported
7937 F:      Documentation/devicetree/bindings/power/power?domain*
7938 F:      drivers/base/power/domain*.c
7939 F:      include/linux/pm_domain.h
7940
7941 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7942 M:      Eugen Hristev <eugen.hristev@microchip.com>
7943 L:      linux-input@vger.kernel.org
7944 S:      Maintained
7945 F:      drivers/input/touchscreen/resistive-adc-touch.c
7946
7947 GENERIC STRING LIBRARY
7948 R:      Andy Shevchenko <andy@kernel.org>
7949 S:      Maintained
7950 F:      lib/string.c
7951 F:      lib/string_helpers.c
7952 F:      lib/test_string.c
7953 F:      lib/test-string_helpers.c
7954
7955 GENERIC UIO DRIVER FOR PCI DEVICES
7956 M:      "Michael S. Tsirkin" <mst@redhat.com>
7957 L:      kvm@vger.kernel.org
7958 S:      Supported
7959 F:      drivers/uio/uio_pci_generic.c
7960
7961 GENERIC VDSO LIBRARY
7962 M:      Andy Lutomirski <luto@kernel.org>
7963 M:      Thomas Gleixner <tglx@linutronix.de>
7964 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7965 L:      linux-kernel@vger.kernel.org
7966 S:      Maintained
7967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7968 F:      include/asm-generic/vdso/vsyscall.h
7969 F:      include/vdso/
7970 F:      kernel/time/vsyscall.c
7971 F:      lib/vdso/
7972
7973 GENWQE (IBM Generic Workqueue Card)
7974 M:      Frank Haverkamp <haver@linux.ibm.com>
7975 S:      Supported
7976 F:      drivers/misc/genwqe/
7977
7978 GET_MAINTAINER SCRIPT
7979 M:      Joe Perches <joe@perches.com>
7980 S:      Maintained
7981 F:      scripts/get_maintainer.pl
7982
7983 GFS2 FILE SYSTEM
7984 M:      Bob Peterson <rpeterso@redhat.com>
7985 M:      Andreas Gruenbacher <agruenba@redhat.com>
7986 L:      cluster-devel@redhat.com
7987 S:      Supported
7988 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7990 F:      Documentation/filesystems/gfs2*
7991 F:      fs/gfs2/
7992 F:      include/uapi/linux/gfs2_ondisk.h
7993
7994 GIGABYTE WMI DRIVER
7995 M:      Thomas Weißschuh <thomas@weissschuh.net>
7996 L:      platform-driver-x86@vger.kernel.org
7997 S:      Maintained
7998 F:      drivers/platform/x86/gigabyte-wmi.c
7999
8000 GNSS SUBSYSTEM
8001 M:      Johan Hovold <johan@kernel.org>
8002 S:      Maintained
8003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8004 F:      Documentation/ABI/testing/sysfs-class-gnss
8005 F:      Documentation/devicetree/bindings/gnss/
8006 F:      drivers/gnss/
8007 F:      include/linux/gnss.h
8008
8009 GO7007 MPEG CODEC
8010 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8011 L:      linux-media@vger.kernel.org
8012 S:      Maintained
8013 F:      drivers/media/usb/go7007/
8014
8015 GOODIX TOUCHSCREEN
8016 M:      Bastien Nocera <hadess@hadess.net>
8017 L:      linux-input@vger.kernel.org
8018 S:      Maintained
8019 F:      drivers/input/touchscreen/goodix.c
8020
8021 GOOGLE ETHERNET DRIVERS
8022 M:      Jeroen de Borst <jeroendb@google.com>
8023 R:      Catherine Sullivan <csully@google.com>
8024 R:      David Awogbemila <awogbemila@google.com>
8025 L:      netdev@vger.kernel.org
8026 S:      Supported
8027 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8028 F:      drivers/net/ethernet/google
8029
8030 GPD POCKET FAN DRIVER
8031 M:      Hans de Goede <hdegoede@redhat.com>
8032 L:      platform-driver-x86@vger.kernel.org
8033 S:      Maintained
8034 F:      drivers/platform/x86/gpd-pocket-fan.c
8035
8036 GPIO ACPI SUPPORT
8037 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8038 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8039 L:      linux-gpio@vger.kernel.org
8040 L:      linux-acpi@vger.kernel.org
8041 S:      Maintained
8042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8043 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8044 F:      drivers/gpio/gpiolib-acpi.c
8045 F:      drivers/gpio/gpiolib-acpi.h
8046
8047 GPIO AGGREGATOR
8048 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8049 L:      linux-gpio@vger.kernel.org
8050 S:      Supported
8051 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8052 F:      drivers/gpio/gpio-aggregator.c
8053
8054 GPIO IR Transmitter
8055 M:      Sean Young <sean@mess.org>
8056 L:      linux-media@vger.kernel.org
8057 S:      Maintained
8058 F:      drivers/media/rc/gpio-ir-tx.c
8059
8060 GPIO MOCKUP DRIVER
8061 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8062 L:      linux-gpio@vger.kernel.org
8063 S:      Maintained
8064 F:      drivers/gpio/gpio-mockup.c
8065 F:      tools/testing/selftests/gpio/
8066
8067 GPIO REGMAP
8068 R:      Michael Walle <michael@walle.cc>
8069 S:      Maintained
8070 F:      drivers/gpio/gpio-regmap.c
8071 F:      include/linux/gpio/regmap.h
8072
8073 GPIO SUBSYSTEM
8074 M:      Linus Walleij <linus.walleij@linaro.org>
8075 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8076 L:      linux-gpio@vger.kernel.org
8077 S:      Maintained
8078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8079 F:      Documentation/ABI/obsolete/sysfs-gpio
8080 F:      Documentation/ABI/testing/gpio-cdev
8081 F:      Documentation/admin-guide/gpio/
8082 F:      Documentation/devicetree/bindings/gpio/
8083 F:      Documentation/driver-api/gpio/
8084 F:      drivers/gpio/
8085 F:      include/asm-generic/gpio.h
8086 F:      include/linux/gpio.h
8087 F:      include/linux/gpio/
8088 F:      include/linux/of_gpio.h
8089 F:      include/uapi/linux/gpio.h
8090 F:      tools/gpio/
8091
8092 GRE DEMULTIPLEXER DRIVER
8093 M:      Dmitry Kozlov <xeb@mail.ru>
8094 L:      netdev@vger.kernel.org
8095 S:      Maintained
8096 F:      include/net/gre.h
8097 F:      net/ipv4/gre_demux.c
8098 F:      net/ipv4/gre_offload.c
8099
8100 GRETH 10/100/1G Ethernet MAC device driver
8101 M:      Andreas Larsson <andreas@gaisler.com>
8102 L:      netdev@vger.kernel.org
8103 S:      Maintained
8104 F:      drivers/net/ethernet/aeroflex/
8105
8106 GREYBUS AUDIO PROTOCOLS DRIVERS
8107 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8108 M:      Mark Greer <mgreer@animalcreek.com>
8109 S:      Maintained
8110 F:      drivers/staging/greybus/audio_apbridgea.c
8111 F:      drivers/staging/greybus/audio_apbridgea.h
8112 F:      drivers/staging/greybus/audio_codec.c
8113 F:      drivers/staging/greybus/audio_codec.h
8114 F:      drivers/staging/greybus/audio_gb.c
8115 F:      drivers/staging/greybus/audio_manager.c
8116 F:      drivers/staging/greybus/audio_manager.h
8117 F:      drivers/staging/greybus/audio_manager_module.c
8118 F:      drivers/staging/greybus/audio_manager_private.h
8119 F:      drivers/staging/greybus/audio_manager_sysfs.c
8120 F:      drivers/staging/greybus/audio_module.c
8121 F:      drivers/staging/greybus/audio_topology.c
8122
8123 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8124 M:      Viresh Kumar <vireshk@kernel.org>
8125 S:      Maintained
8126 F:      drivers/staging/greybus/authentication.c
8127 F:      drivers/staging/greybus/bootrom.c
8128 F:      drivers/staging/greybus/firmware.h
8129 F:      drivers/staging/greybus/fw-core.c
8130 F:      drivers/staging/greybus/fw-download.c
8131 F:      drivers/staging/greybus/fw-management.c
8132 F:      drivers/staging/greybus/greybus_authentication.h
8133 F:      drivers/staging/greybus/greybus_firmware.h
8134 F:      drivers/staging/greybus/hid.c
8135 F:      drivers/staging/greybus/i2c.c
8136 F:      drivers/staging/greybus/spi.c
8137 F:      drivers/staging/greybus/spilib.c
8138 F:      drivers/staging/greybus/spilib.h
8139
8140 GREYBUS LOOPBACK DRIVER
8141 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8142 S:      Maintained
8143 F:      drivers/staging/greybus/loopback.c
8144
8145 GREYBUS PLATFORM DRIVERS
8146 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8147 S:      Maintained
8148 F:      drivers/staging/greybus/arche-apb-ctrl.c
8149 F:      drivers/staging/greybus/arche-platform.c
8150 F:      drivers/staging/greybus/arche_platform.h
8151
8152 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8153 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8154 S:      Maintained
8155 F:      drivers/staging/greybus/gpio.c
8156 F:      drivers/staging/greybus/light.c
8157 F:      drivers/staging/greybus/power_supply.c
8158 F:      drivers/staging/greybus/sdio.c
8159 F:      drivers/staging/greybus/spi.c
8160 F:      drivers/staging/greybus/spilib.c
8161
8162 GREYBUS SUBSYSTEM
8163 M:      Johan Hovold <johan@kernel.org>
8164 M:      Alex Elder <elder@kernel.org>
8165 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8166 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8167 S:      Maintained
8168 F:      drivers/greybus/
8169 F:      drivers/staging/greybus/
8170 F:      include/linux/greybus.h
8171 F:      include/linux/greybus/
8172
8173 GREYBUS UART PROTOCOLS DRIVERS
8174 M:      David Lin <dtwlin@gmail.com>
8175 S:      Maintained
8176 F:      drivers/staging/greybus/log.c
8177 F:      drivers/staging/greybus/uart.c
8178
8179 GS1662 VIDEO SERIALIZER
8180 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8181 L:      linux-media@vger.kernel.org
8182 S:      Maintained
8183 T:      git git://linuxtv.org/media_tree.git
8184 F:      drivers/media/spi/gs1662.c
8185
8186 GSPCA FINEPIX SUBDRIVER
8187 M:      Frank Zago <frank@zago.net>
8188 L:      linux-media@vger.kernel.org
8189 S:      Maintained
8190 T:      git git://linuxtv.org/media_tree.git
8191 F:      drivers/media/usb/gspca/finepix.c
8192
8193 GSPCA GL860 SUBDRIVER
8194 M:      Olivier Lorin <o.lorin@laposte.net>
8195 L:      linux-media@vger.kernel.org
8196 S:      Maintained
8197 T:      git git://linuxtv.org/media_tree.git
8198 F:      drivers/media/usb/gspca/gl860/
8199
8200 GSPCA M5602 SUBDRIVER
8201 M:      Erik Andren <erik.andren@gmail.com>
8202 L:      linux-media@vger.kernel.org
8203 S:      Maintained
8204 T:      git git://linuxtv.org/media_tree.git
8205 F:      drivers/media/usb/gspca/m5602/
8206
8207 GSPCA PAC207 SONIXB SUBDRIVER
8208 M:      Hans Verkuil <hverkuil@xs4all.nl>
8209 L:      linux-media@vger.kernel.org
8210 S:      Odd Fixes
8211 T:      git git://linuxtv.org/media_tree.git
8212 F:      drivers/media/usb/gspca/pac207.c
8213
8214 GSPCA SN9C20X SUBDRIVER
8215 M:      Brian Johnson <brijohn@gmail.com>
8216 L:      linux-media@vger.kernel.org
8217 S:      Maintained
8218 T:      git git://linuxtv.org/media_tree.git
8219 F:      drivers/media/usb/gspca/sn9c20x.c
8220
8221 GSPCA T613 SUBDRIVER
8222 M:      Leandro Costantino <lcostantino@gmail.com>
8223 L:      linux-media@vger.kernel.org
8224 S:      Maintained
8225 T:      git git://linuxtv.org/media_tree.git
8226 F:      drivers/media/usb/gspca/t613.c
8227
8228 GSPCA USB WEBCAM DRIVER
8229 M:      Hans Verkuil <hverkuil@xs4all.nl>
8230 L:      linux-media@vger.kernel.org
8231 S:      Odd Fixes
8232 T:      git git://linuxtv.org/media_tree.git
8233 F:      drivers/media/usb/gspca/
8234
8235 GTP (GPRS Tunneling Protocol)
8236 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8237 M:      Harald Welte <laforge@gnumonks.org>
8238 L:      osmocom-net-gprs@lists.osmocom.org
8239 S:      Maintained
8240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8241 F:      drivers/net/gtp.c
8242
8243 GUID PARTITION TABLE (GPT)
8244 M:      Davidlohr Bueso <dave@stgolabs.net>
8245 L:      linux-efi@vger.kernel.org
8246 S:      Maintained
8247 F:      block/partitions/efi.*
8248
8249 H8/300 ARCHITECTURE
8250 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8251 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8252 S:      Maintained
8253 W:      http://uclinux-h8.sourceforge.jp
8254 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8255 F:      arch/h8300/
8256 F:      drivers/clk/h8300/
8257 F:      drivers/clocksource/h8300_*.c
8258 F:      drivers/irqchip/irq-renesas-h8*.c
8259
8260 HABANALABS PCI DRIVER
8261 M:      Oded Gabbay <ogabbay@kernel.org>
8262 S:      Supported
8263 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8264 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8265 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8266 F:      drivers/misc/habanalabs/
8267 F:      include/uapi/misc/habanalabs.h
8268
8269 HACKRF MEDIA DRIVER
8270 M:      Antti Palosaari <crope@iki.fi>
8271 L:      linux-media@vger.kernel.org
8272 S:      Maintained
8273 W:      https://linuxtv.org
8274 W:      http://palosaari.fi/linux/
8275 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8276 T:      git git://linuxtv.org/anttip/media_tree.git
8277 F:      drivers/media/usb/hackrf/
8278
8279 HANTRO VPU CODEC DRIVER
8280 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8281 M:      Philipp Zabel <p.zabel@pengutronix.de>
8282 L:      linux-media@vger.kernel.org
8283 L:      linux-rockchip@lists.infradead.org
8284 S:      Maintained
8285 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8286 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8287 F:      drivers/staging/media/hantro/
8288
8289 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8290 M:      Frank Seidel <frank@f-seidel.de>
8291 L:      platform-driver-x86@vger.kernel.org
8292 S:      Maintained
8293 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8294 F:      drivers/platform/x86/hdaps.c
8295
8296 HARDWARE MONITORING
8297 M:      Jean Delvare <jdelvare@suse.com>
8298 M:      Guenter Roeck <linux@roeck-us.net>
8299 L:      linux-hwmon@vger.kernel.org
8300 S:      Maintained
8301 W:      http://hwmon.wiki.kernel.org/
8302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8303 F:      Documentation/devicetree/bindings/hwmon/
8304 F:      Documentation/hwmon/
8305 F:      drivers/hwmon/
8306 F:      include/linux/hwmon*.h
8307 F:      include/trace/events/hwmon*.h
8308 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8309
8310 HARDWARE RANDOM NUMBER GENERATOR CORE
8311 M:      Matt Mackall <mpm@selenic.com>
8312 M:      Herbert Xu <herbert@gondor.apana.org.au>
8313 L:      linux-crypto@vger.kernel.org
8314 S:      Odd fixes
8315 F:      Documentation/admin-guide/hw_random.rst
8316 F:      Documentation/devicetree/bindings/rng/
8317 F:      drivers/char/hw_random/
8318 F:      include/linux/hw_random.h
8319
8320 HARDWARE SPINLOCK CORE
8321 M:      Ohad Ben-Cohen <ohad@wizery.com>
8322 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8323 R:      Baolin Wang <baolin.wang7@gmail.com>
8324 L:      linux-remoteproc@vger.kernel.org
8325 S:      Maintained
8326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8327 F:      Documentation/devicetree/bindings/hwlock/
8328 F:      Documentation/locking/hwspinlock.rst
8329 F:      drivers/hwspinlock/
8330 F:      include/linux/hwspinlock.h
8331
8332 HARDWARE TRACING FACILITIES
8333 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8334 S:      Maintained
8335 F:      drivers/hwtracing/
8336
8337 HARMONY SOUND DRIVER
8338 L:      linux-parisc@vger.kernel.org
8339 S:      Maintained
8340 F:      sound/parisc/harmony.*
8341
8342 HDPVR USB VIDEO ENCODER DRIVER
8343 M:      Hans Verkuil <hverkuil@xs4all.nl>
8344 L:      linux-media@vger.kernel.org
8345 S:      Odd Fixes
8346 W:      https://linuxtv.org
8347 T:      git git://linuxtv.org/media_tree.git
8348 F:      drivers/media/usb/hdpvr/
8349
8350 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8351 M:      Matt Hsiao <matt.hsiao@hpe.com>
8352 S:      Supported
8353 F:      drivers/misc/hpilo.[ch]
8354
8355 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8356 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8357 S:      Supported
8358 F:      Documentation/watchdog/hpwdt.rst
8359 F:      drivers/watchdog/hpwdt.c
8360
8361 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8362 M:      Don Brace <don.brace@microchip.com>
8363 L:      storagedev@microchip.com
8364 L:      linux-scsi@vger.kernel.org
8365 S:      Supported
8366 F:      Documentation/scsi/hpsa.rst
8367 F:      drivers/scsi/hpsa*.[ch]
8368 F:      include/linux/cciss*.h
8369 F:      include/uapi/linux/cciss*.h
8370
8371 HFI1 DRIVER
8372 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8373 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8374 L:      linux-rdma@vger.kernel.org
8375 S:      Supported
8376 F:      drivers/infiniband/hw/hfi1
8377
8378 HFS FILESYSTEM
8379 L:      linux-fsdevel@vger.kernel.org
8380 S:      Orphan
8381 F:      Documentation/filesystems/hfs.rst
8382 F:      fs/hfs/
8383
8384 HFSPLUS FILESYSTEM
8385 L:      linux-fsdevel@vger.kernel.org
8386 S:      Orphan
8387 F:      Documentation/filesystems/hfsplus.rst
8388 F:      fs/hfsplus/
8389
8390 HGA FRAMEBUFFER DRIVER
8391 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8392 L:      linux-nvidia@lists.surfsouth.com
8393 S:      Maintained
8394 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8395 F:      drivers/video/fbdev/hgafb.c
8396
8397 HIBERNATION (aka Software Suspend, aka swsusp)
8398 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8399 M:      Pavel Machek <pavel@ucw.cz>
8400 L:      linux-pm@vger.kernel.org
8401 S:      Supported
8402 B:      https://bugzilla.kernel.org
8403 F:      arch/*/include/asm/suspend*.h
8404 F:      arch/x86/power/
8405 F:      drivers/base/power/
8406 F:      include/linux/freezer.h
8407 F:      include/linux/pm.h
8408 F:      include/linux/suspend.h
8409 F:      kernel/power/
8410
8411 HID CORE LAYER
8412 M:      Jiri Kosina <jikos@kernel.org>
8413 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8414 L:      linux-input@vger.kernel.org
8415 S:      Maintained
8416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8417 F:      drivers/hid/
8418 F:      include/linux/hid*
8419 F:      include/uapi/linux/hid*
8420
8421 HID PLAYSTATION DRIVER
8422 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8423 L:      linux-input@vger.kernel.org
8424 S:      Supported
8425 F:      drivers/hid/hid-playstation.c
8426
8427 HID SENSOR HUB DRIVERS
8428 M:      Jiri Kosina <jikos@kernel.org>
8429 M:      Jonathan Cameron <jic23@kernel.org>
8430 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8431 L:      linux-input@vger.kernel.org
8432 L:      linux-iio@vger.kernel.org
8433 S:      Maintained
8434 F:      Documentation/hid/hid-sensor*
8435 F:      drivers/hid/hid-sensor-*
8436 F:      drivers/iio/*/hid-*
8437 F:      include/linux/hid-sensor-*
8438
8439 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8440 M:      Thomas Gleixner <tglx@linutronix.de>
8441 L:      linux-kernel@vger.kernel.org
8442 S:      Maintained
8443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8444 F:      Documentation/timers/
8445 F:      include/linux/clockchips.h
8446 F:      include/linux/hrtimer.h
8447 F:      kernel/time/clockevents.c
8448 F:      kernel/time/hrtimer.c
8449 F:      kernel/time/timer_*.c
8450
8451 HIGH-SPEED SCC DRIVER FOR AX.25
8452 L:      linux-hams@vger.kernel.org
8453 S:      Orphan
8454 F:      drivers/net/hamradio/dmascc.c
8455 F:      drivers/net/hamradio/scc.c
8456
8457 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8458 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8459 S:      Supported
8460 W:      http://www.highpoint-tech.com
8461 F:      Documentation/scsi/hptiop.rst
8462 F:      drivers/scsi/hptiop.c
8463
8464 HIPPI
8465 M:      Jes Sorensen <jes@trained-monkey.org>
8466 L:      linux-hippi@sunsite.dk
8467 S:      Maintained
8468 F:      drivers/net/hippi/
8469 F:      include/linux/hippidevice.h
8470 F:      include/uapi/linux/if_hippi.h
8471 F:      net/802/hippi.c
8472
8473 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8474 M:      Kurt Kanzenbach <kurt@linutronix.de>
8475 L:      netdev@vger.kernel.org
8476 S:      Maintained
8477 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8478 F:      drivers/net/dsa/hirschmann/*
8479 F:      include/linux/platform_data/hirschmann-hellcreek.h
8480 F:      net/dsa/tag_hellcreek.c
8481
8482 HISILICON DMA DRIVER
8483 M:      Zhou Wang <wangzhou1@hisilicon.com>
8484 L:      dmaengine@vger.kernel.org
8485 S:      Maintained
8486 F:      drivers/dma/hisi_dma.c
8487
8488 HISILICON GPIO DRIVER
8489 M:      Luo Jiaxing <luojiaxing@huawei.com>
8490 L:      linux-gpio@vger.kernel.org
8491 S:      Maintained
8492 F:      drivers/gpio/gpio-hisi.c
8493
8494 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8495 M:      Zaibo Xu <xuzaibo@huawei.com>
8496 L:      linux-crypto@vger.kernel.org
8497 S:      Maintained
8498 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8499 F:      drivers/crypto/hisilicon/hpre/hpre.h
8500 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8501 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8502
8503 HISILICON I2C CONTROLLER DRIVER
8504 M:      Yicong Yang <yangyicong@hisilicon.com>
8505 L:      linux-i2c@vger.kernel.org
8506 S:      Maintained
8507 W:      https://www.hisilicon.com
8508 F:      drivers/i2c/busses/i2c-hisi.c
8509
8510 HISILICON LPC BUS DRIVER
8511 M:      john.garry@huawei.com
8512 S:      Maintained
8513 W:      http://www.hisilicon.com
8514 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8515 F:      drivers/bus/hisi_lpc.c
8516
8517 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8518 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8519 M:      Salil Mehta <salil.mehta@huawei.com>
8520 L:      netdev@vger.kernel.org
8521 S:      Maintained
8522 W:      http://www.hisilicon.com
8523 F:      drivers/net/ethernet/hisilicon/hns3/
8524
8525 HISILICON NETWORK SUBSYSTEM DRIVER
8526 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8527 M:      Salil Mehta <salil.mehta@huawei.com>
8528 L:      netdev@vger.kernel.org
8529 S:      Maintained
8530 W:      http://www.hisilicon.com
8531 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8532 F:      drivers/net/ethernet/hisilicon/
8533
8534 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8535 M:      John Stultz <john.stultz@linaro.org>
8536 L:      linux-kernel@vger.kernel.org
8537 S:      Maintained
8538 F:      drivers/misc/hisi_hikey_usb.c
8539 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8540
8541 HISILICON PMU DRIVER
8542 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8543 S:      Supported
8544 W:      http://www.hisilicon.com
8545 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8546 F:      drivers/perf/hisilicon
8547
8548 HISILICON QM AND ZIP Controller DRIVER
8549 M:      Zhou Wang <wangzhou1@hisilicon.com>
8550 L:      linux-crypto@vger.kernel.org
8551 S:      Maintained
8552 F:      Documentation/ABI/testing/debugfs-hisi-zip
8553 F:      drivers/crypto/hisilicon/qm.c
8554 F:      drivers/crypto/hisilicon/qm.h
8555 F:      drivers/crypto/hisilicon/sgl.c
8556 F:      drivers/crypto/hisilicon/zip/
8557
8558 HISILICON ROCE DRIVER
8559 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8560 M:      Weihang Li <liweihang@huawei.com>
8561 L:      linux-rdma@vger.kernel.org
8562 S:      Maintained
8563 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8564 F:      drivers/infiniband/hw/hns/
8565
8566 HISILICON SAS Controller
8567 M:      John Garry <john.garry@huawei.com>
8568 S:      Supported
8569 W:      http://www.hisilicon.com
8570 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8571 F:      drivers/scsi/hisi_sas/
8572
8573 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8574 M:      Zaibo Xu <xuzaibo@huawei.com>
8575 L:      linux-crypto@vger.kernel.org
8576 S:      Maintained
8577 F:      Documentation/ABI/testing/debugfs-hisi-sec
8578 F:      drivers/crypto/hisilicon/sec2/sec.h
8579 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8580 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8581 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8582
8583 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8584 M:      Jay Fang <f.fangjian@huawei.com>
8585 L:      linux-spi@vger.kernel.org
8586 S:      Maintained
8587 W:      http://www.hisilicon.com
8588 F:      drivers/spi/spi-hisi-kunpeng.c
8589
8590 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8591 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8592 L:      linux-kernel@vger.kernel.org
8593 S:      Maintained
8594 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8595 F:      drivers/spmi/hisi-spmi-controller.c
8596
8597 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8598 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8599 L:      linux-kernel@vger.kernel.org
8600 S:      Maintained
8601 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8602 F:      drivers/mfd/hi6421-spmi-pmic.c
8603
8604 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8605 M:      Zaibo Xu <xuzaibo@huawei.com>
8606 S:      Maintained
8607 F:      drivers/crypto/hisilicon/trng/trng.c
8608
8609 HISILICON V3XX SPI NOR FLASH Controller Driver
8610 M:      John Garry <john.garry@huawei.com>
8611 S:      Maintained
8612 W:      http://www.hisilicon.com
8613 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8614
8615 HMM - Heterogeneous Memory Management
8616 M:      Jérôme Glisse <jglisse@redhat.com>
8617 L:      linux-mm@kvack.org
8618 S:      Maintained
8619 F:      Documentation/vm/hmm.rst
8620 F:      include/linux/hmm*
8621 F:      lib/test_hmm*
8622 F:      mm/hmm*
8623 F:      tools/testing/selftests/vm/*hmm*
8624
8625 HOST AP DRIVER
8626 M:      Jouni Malinen <j@w1.fi>
8627 L:      linux-wireless@vger.kernel.org
8628 S:      Obsolete
8629 W:      http://w1.fi/hostap-driver.html
8630 F:      drivers/net/wireless/intersil/hostap/
8631
8632 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8633 L:      platform-driver-x86@vger.kernel.org
8634 S:      Orphan
8635 F:      drivers/platform/x86/tc1100-wmi.c
8636
8637 HPET:   High Precision Event Timers driver
8638 M:      Clemens Ladisch <clemens@ladisch.de>
8639 S:      Maintained
8640 F:      Documentation/timers/hpet.rst
8641 F:      drivers/char/hpet.c
8642 F:      include/linux/hpet.h
8643 F:      include/uapi/linux/hpet.h
8644
8645 HPET:   x86
8646 S:      Orphan
8647 F:      arch/x86/include/asm/hpet.h
8648 F:      arch/x86/kernel/hpet.c
8649
8650 HPFS FILESYSTEM
8651 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8652 S:      Maintained
8653 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8654 F:      fs/hpfs/
8655
8656 HSI SUBSYSTEM
8657 M:      Sebastian Reichel <sre@kernel.org>
8658 S:      Maintained
8659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8660 F:      Documentation/ABI/testing/sysfs-bus-hsi
8661 F:      Documentation/driver-api/hsi.rst
8662 F:      drivers/hsi/
8663 F:      include/linux/hsi/
8664 F:      include/uapi/linux/hsi/
8665
8666 HSO 3G MODEM DRIVER
8667 L:      linux-usb@vger.kernel.org
8668 S:      Orphan
8669 F:      drivers/net/usb/hso.c
8670
8671 HSR NETWORK PROTOCOL
8672 L:      netdev@vger.kernel.org
8673 S:      Orphan
8674 F:      net/hsr/
8675
8676 HT16K33 LED CONTROLLER DRIVER
8677 M:      Robin van der Gracht <robin@protonic.nl>
8678 S:      Maintained
8679 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8680 F:      drivers/auxdisplay/ht16k33.c
8681
8682 HTCPEN TOUCHSCREEN DRIVER
8683 M:      Pau Oliva Fora <pof@eslack.org>
8684 L:      linux-input@vger.kernel.org
8685 S:      Maintained
8686 F:      drivers/input/touchscreen/htcpen.c
8687
8688 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8689 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8690 L:      linux-iio@vger.kernel.org
8691 S:      Maintained
8692 W:      http://www.st.com/
8693 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8694 F:      drivers/iio/humidity/hts221*
8695
8696 HUAWEI ETHERNET DRIVER
8697 L:      netdev@vger.kernel.org
8698 S:      Orphan
8699 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8700 F:      drivers/net/ethernet/huawei/hinic/
8701
8702 HUGETLB FILESYSTEM
8703 M:      Mike Kravetz <mike.kravetz@oracle.com>
8704 L:      linux-mm@kvack.org
8705 S:      Maintained
8706 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8707 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8708 F:      Documentation/vm/hugetlbfs_reserv.rst
8709 F:      fs/hugetlbfs/
8710 F:      include/linux/hugetlb.h
8711 F:      mm/hugetlb.c
8712
8713 HVA ST MEDIA DRIVER
8714 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8715 L:      linux-media@vger.kernel.org
8716 S:      Supported
8717 W:      https://linuxtv.org
8718 T:      git git://linuxtv.org/media_tree.git
8719 F:      drivers/media/platform/sti/hva
8720
8721 HWPOISON MEMORY FAILURE HANDLING
8722 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8723 L:      linux-mm@kvack.org
8724 S:      Maintained
8725 F:      mm/hwpoison-inject.c
8726 F:      mm/memory-failure.c
8727
8728 HYCON HY46XX TOUCHSCREEN SUPPORT
8729 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8730 L:      linux-input@vger.kernel.org
8731 S:      Maintained
8732 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8733 F:      drivers/input/touchscreen/hycon-hy46xx.c
8734
8735 HYGON PROCESSOR SUPPORT
8736 M:      Pu Wen <puwen@hygon.cn>
8737 L:      linux-kernel@vger.kernel.org
8738 S:      Maintained
8739 F:      arch/x86/kernel/cpu/hygon.c
8740
8741 HYNIX HI556 SENSOR DRIVER
8742 M:      Shawn Tu <shawnx.tu@intel.com>
8743 L:      linux-media@vger.kernel.org
8744 S:      Maintained
8745 T:      git git://linuxtv.org/media_tree.git
8746 F:      drivers/media/i2c/hi556.c
8747
8748 HYNIX HI846 SENSOR DRIVER
8749 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8750 L:      linux-media@vger.kernel.org
8751 S:      Maintained
8752 F:      drivers/media/i2c/hi846.c
8753
8754 Hyper-V/Azure CORE AND DRIVERS
8755 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8756 M:      Haiyang Zhang <haiyangz@microsoft.com>
8757 M:      Stephen Hemminger <sthemmin@microsoft.com>
8758 M:      Wei Liu <wei.liu@kernel.org>
8759 M:      Dexuan Cui <decui@microsoft.com>
8760 L:      linux-hyperv@vger.kernel.org
8761 S:      Supported
8762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8763 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8764 F:      Documentation/ABI/testing/debugfs-hyperv
8765 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8766 F:      arch/arm64/hyperv
8767 F:      arch/arm64/include/asm/hyperv-tlfs.h
8768 F:      arch/arm64/include/asm/mshyperv.h
8769 F:      arch/x86/hyperv
8770 F:      arch/x86/include/asm/hyperv-tlfs.h
8771 F:      arch/x86/include/asm/mshyperv.h
8772 F:      arch/x86/include/asm/trace/hyperv.h
8773 F:      arch/x86/kernel/cpu/mshyperv.c
8774 F:      drivers/clocksource/hyperv_timer.c
8775 F:      drivers/hid/hid-hyperv.c
8776 F:      drivers/hv/
8777 F:      drivers/input/serio/hyperv-keyboard.c
8778 F:      drivers/iommu/hyperv-iommu.c
8779 F:      drivers/net/ethernet/microsoft/
8780 F:      drivers/net/hyperv/
8781 F:      drivers/pci/controller/pci-hyperv-intf.c
8782 F:      drivers/pci/controller/pci-hyperv.c
8783 F:      drivers/scsi/storvsc_drv.c
8784 F:      drivers/uio/uio_hv_generic.c
8785 F:      drivers/video/fbdev/hyperv_fb.c
8786 F:      include/asm-generic/hyperv-tlfs.h
8787 F:      include/asm-generic/mshyperv.h
8788 F:      include/clocksource/hyperv_timer.h
8789 F:      include/linux/hyperv.h
8790 F:      include/uapi/linux/hyperv.h
8791 F:      net/vmw_vsock/hyperv_transport.c
8792 F:      tools/hv/
8793
8794 HYPERBUS SUPPORT
8795 M:      Vignesh Raghavendra <vigneshr@ti.com>
8796 L:      linux-mtd@lists.infradead.org
8797 S:      Supported
8798 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8799 C:      irc://irc.oftc.net/mtd
8800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8801 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8802 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8803 F:      drivers/mtd/hyperbus/
8804 F:      include/linux/mtd/hyperbus.h
8805
8806 HYPERVISOR VIRTUAL CONSOLE DRIVER
8807 L:      linuxppc-dev@lists.ozlabs.org
8808 S:      Odd Fixes
8809 F:      drivers/tty/hvc/
8810
8811 I2C ACPI SUPPORT
8812 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8813 L:      linux-i2c@vger.kernel.org
8814 L:      linux-acpi@vger.kernel.org
8815 S:      Maintained
8816 F:      drivers/i2c/i2c-core-acpi.c
8817
8818 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8819 M:      Ajay Gupta <ajayg@nvidia.com>
8820 L:      linux-i2c@vger.kernel.org
8821 S:      Maintained
8822 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8823 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8824
8825 I2C MUXES
8826 M:      Peter Rosin <peda@axentia.se>
8827 L:      linux-i2c@vger.kernel.org
8828 S:      Maintained
8829 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8830 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8831 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8832 F:      Documentation/i2c/i2c-topology.rst
8833 F:      Documentation/i2c/muxes/
8834 F:      drivers/i2c/i2c-mux.c
8835 F:      drivers/i2c/muxes/
8836 F:      include/linux/i2c-mux.h
8837
8838 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8839 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8840 L:      linux-i2c@vger.kernel.org
8841 S:      Maintained
8842 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8843 F:      drivers/i2c/busses/i2c-mv64xxx.c
8844
8845 I2C OVER PARALLEL PORT
8846 M:      Jean Delvare <jdelvare@suse.com>
8847 L:      linux-i2c@vger.kernel.org
8848 S:      Maintained
8849 F:      Documentation/i2c/busses/i2c-parport.rst
8850 F:      drivers/i2c/busses/i2c-parport.c
8851
8852 I2C SUBSYSTEM
8853 M:      Wolfram Sang <wsa@kernel.org>
8854 L:      linux-i2c@vger.kernel.org
8855 S:      Maintained
8856 W:      https://i2c.wiki.kernel.org/
8857 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8859 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8860 F:      Documentation/i2c/
8861 F:      drivers/i2c/*
8862 F:      include/linux/i2c-dev.h
8863 F:      include/linux/i2c-smbus.h
8864 F:      include/linux/i2c.h
8865 F:      include/uapi/linux/i2c-*.h
8866 F:      include/uapi/linux/i2c.h
8867
8868 I2C SUBSYSTEM HOST DRIVERS
8869 L:      linux-i2c@vger.kernel.org
8870 S:      Odd Fixes
8871 W:      https://i2c.wiki.kernel.org/
8872 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8874 F:      Documentation/devicetree/bindings/i2c/
8875 F:      drivers/i2c/algos/
8876 F:      drivers/i2c/busses/
8877
8878 I2C-TAOS-EVM DRIVER
8879 M:      Jean Delvare <jdelvare@suse.com>
8880 L:      linux-i2c@vger.kernel.org
8881 S:      Maintained
8882 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8883 F:      drivers/i2c/busses/i2c-taos-evm.c
8884
8885 I2C-TINY-USB DRIVER
8886 M:      Till Harbaum <till@harbaum.org>
8887 L:      linux-i2c@vger.kernel.org
8888 S:      Maintained
8889 W:      http://www.harbaum.org/till/i2c_tiny_usb
8890 F:      drivers/i2c/busses/i2c-tiny-usb.c
8891
8892 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8893 M:      Jean Delvare <jdelvare@suse.com>
8894 L:      linux-i2c@vger.kernel.org
8895 S:      Maintained
8896 F:      Documentation/i2c/busses/i2c-ali1535.rst
8897 F:      Documentation/i2c/busses/i2c-ali1563.rst
8898 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8899 F:      Documentation/i2c/busses/i2c-amd756.rst
8900 F:      Documentation/i2c/busses/i2c-amd8111.rst
8901 F:      Documentation/i2c/busses/i2c-i801.rst
8902 F:      Documentation/i2c/busses/i2c-nforce2.rst
8903 F:      Documentation/i2c/busses/i2c-piix4.rst
8904 F:      Documentation/i2c/busses/i2c-sis5595.rst
8905 F:      Documentation/i2c/busses/i2c-sis630.rst
8906 F:      Documentation/i2c/busses/i2c-sis96x.rst
8907 F:      Documentation/i2c/busses/i2c-via.rst
8908 F:      Documentation/i2c/busses/i2c-viapro.rst
8909 F:      drivers/i2c/busses/i2c-ali1535.c
8910 F:      drivers/i2c/busses/i2c-ali1563.c
8911 F:      drivers/i2c/busses/i2c-ali15x3.c
8912 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8913 F:      drivers/i2c/busses/i2c-amd756.c
8914 F:      drivers/i2c/busses/i2c-amd8111.c
8915 F:      drivers/i2c/busses/i2c-i801.c
8916 F:      drivers/i2c/busses/i2c-isch.c
8917 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8918 F:      drivers/i2c/busses/i2c-nforce2.c
8919 F:      drivers/i2c/busses/i2c-piix4.c
8920 F:      drivers/i2c/busses/i2c-sis5595.c
8921 F:      drivers/i2c/busses/i2c-sis630.c
8922 F:      drivers/i2c/busses/i2c-sis96x.c
8923 F:      drivers/i2c/busses/i2c-via.c
8924 F:      drivers/i2c/busses/i2c-viapro.c
8925
8926 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8927 M:      Hans de Goede <hdegoede@redhat.com>
8928 L:      linux-i2c@vger.kernel.org
8929 S:      Maintained
8930 F:      drivers/i2c/busses/i2c-cht-wc.c
8931
8932 I2C/SMBUS ISMT DRIVER
8933 M:      Seth Heasley <seth.heasley@intel.com>
8934 M:      Neil Horman <nhorman@tuxdriver.com>
8935 L:      linux-i2c@vger.kernel.org
8936 F:      Documentation/i2c/busses/i2c-ismt.rst
8937 F:      drivers/i2c/busses/i2c-ismt.c
8938
8939 I2C/SMBUS STUB DRIVER
8940 M:      Jean Delvare <jdelvare@suse.com>
8941 L:      linux-i2c@vger.kernel.org
8942 S:      Maintained
8943 F:      drivers/i2c/i2c-stub.c
8944
8945 I3C DRIVER FOR CADENCE I3C MASTER IP
8946 M:      Przemysław Gaj <pgaj@cadence.com>
8947 S:      Maintained
8948 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8949 F:      drivers/i3c/master/i3c-master-cdns.c
8950
8951 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8952 M:      Vitor Soares <vitor.soares@synopsys.com>
8953 S:      Maintained
8954 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8955 F:      drivers/i3c/master/dw*
8956
8957 I3C SUBSYSTEM
8958 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8959 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8960 S:      Maintained
8961 C:      irc://chat.freenode.net/linux-i3c
8962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8963 F:      Documentation/ABI/testing/sysfs-bus-i3c
8964 F:      Documentation/devicetree/bindings/i3c/
8965 F:      Documentation/driver-api/i3c
8966 F:      drivers/i3c/
8967 F:      include/linux/i3c/
8968
8969 IA64 (Itanium) PLATFORM
8970 L:      linux-ia64@vger.kernel.org
8971 S:      Orphan
8972 F:      Documentation/ia64/
8973 F:      arch/ia64/
8974
8975 IBM Power 842 compression accelerator
8976 M:      Haren Myneni <haren@us.ibm.com>
8977 S:      Supported
8978 F:      crypto/842.c
8979 F:      drivers/crypto/nx/Kconfig
8980 F:      drivers/crypto/nx/Makefile
8981 F:      drivers/crypto/nx/nx-842*
8982 F:      include/linux/sw842.h
8983 F:      lib/842/
8984
8985 IBM Power in-Nest Crypto Acceleration
8986 M:      Breno Leitão <leitao@debian.org>
8987 M:      Nayna Jain <nayna@linux.ibm.com>
8988 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8989 L:      linux-crypto@vger.kernel.org
8990 S:      Supported
8991 F:      drivers/crypto/nx/Kconfig
8992 F:      drivers/crypto/nx/Makefile
8993 F:      drivers/crypto/nx/nx-aes*
8994 F:      drivers/crypto/nx/nx-sha*
8995 F:      drivers/crypto/nx/nx.*
8996 F:      drivers/crypto/nx/nx_csbcpb.h
8997 F:      drivers/crypto/nx/nx_debugfs.c
8998
8999 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9000 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9001 L:      linux-pci@vger.kernel.org
9002 L:      linuxppc-dev@lists.ozlabs.org
9003 S:      Supported
9004 F:      drivers/pci/hotplug/rpadlpar*
9005
9006 IBM Power Linux RAID adapter
9007 M:      Brian King <brking@us.ibm.com>
9008 S:      Supported
9009 F:      drivers/scsi/ipr.*
9010
9011 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9012 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9013 L:      linux-pci@vger.kernel.org
9014 L:      linuxppc-dev@lists.ozlabs.org
9015 S:      Supported
9016 F:      drivers/pci/hotplug/rpaphp*
9017
9018 IBM Power SRIOV Virtual NIC Device Driver
9019 M:      Dany Madden <drt@linux.ibm.com>
9020 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9021 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9022 L:      netdev@vger.kernel.org
9023 S:      Supported
9024 F:      drivers/net/ethernet/ibm/ibmvnic.*
9025
9026 IBM Power Virtual Accelerator Switchboard
9027 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9028 L:      linuxppc-dev@lists.ozlabs.org
9029 S:      Supported
9030 F:      arch/powerpc/include/asm/vas.h
9031 F:      arch/powerpc/platforms/powernv/copy-paste.h
9032 F:      arch/powerpc/platforms/powernv/vas*
9033
9034 IBM Power Virtual Ethernet Device Driver
9035 M:      Cristobal Forno <cforno12@linux.ibm.com>
9036 L:      netdev@vger.kernel.org
9037 S:      Supported
9038 F:      drivers/net/ethernet/ibm/ibmveth.*
9039
9040 IBM Power Virtual FC Device Drivers
9041 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9042 L:      linux-scsi@vger.kernel.org
9043 S:      Supported
9044 F:      drivers/scsi/ibmvscsi/ibmvfc*
9045
9046 IBM Power Virtual Management Channel Driver
9047 M:      Brad Warrum <bwarrum@linux.ibm.com>
9048 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9049 S:      Supported
9050 F:      drivers/misc/ibmvmc.*
9051
9052 IBM Power Virtual SCSI Device Drivers
9053 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9054 L:      linux-scsi@vger.kernel.org
9055 S:      Supported
9056 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9057 F:      include/scsi/viosrp.h
9058
9059 IBM Power Virtual SCSI Device Target Driver
9060 M:      Michael Cyr <mikecyr@linux.ibm.com>
9061 L:      linux-scsi@vger.kernel.org
9062 L:      target-devel@vger.kernel.org
9063 S:      Supported
9064 F:      drivers/scsi/ibmvscsi_tgt/
9065
9066 IBM Power VMX Cryptographic instructions
9067 M:      Breno Leitão <leitao@debian.org>
9068 M:      Nayna Jain <nayna@linux.ibm.com>
9069 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9070 L:      linux-crypto@vger.kernel.org
9071 S:      Supported
9072 F:      drivers/crypto/vmx/Kconfig
9073 F:      drivers/crypto/vmx/Makefile
9074 F:      drivers/crypto/vmx/aes*
9075 F:      drivers/crypto/vmx/ghash*
9076 F:      drivers/crypto/vmx/ppc-xlate.pl
9077 F:      drivers/crypto/vmx/vmx.c
9078
9079 IBM ServeRAID RAID DRIVER
9080 S:      Orphan
9081 F:      drivers/scsi/ips.*
9082
9083 ICH LPC AND GPIO DRIVER
9084 M:      Peter Tyser <ptyser@xes-inc.com>
9085 S:      Maintained
9086 F:      drivers/gpio/gpio-ich.c
9087 F:      drivers/mfd/lpc_ich.c
9088
9089 ICY I2C DRIVER
9090 M:      Max Staudt <max@enpas.org>
9091 L:      linux-i2c@vger.kernel.org
9092 S:      Maintained
9093 F:      drivers/i2c/busses/i2c-icy.c
9094
9095 IDEAPAD LAPTOP EXTRAS DRIVER
9096 M:      Ike Panhc <ike.pan@canonical.com>
9097 L:      platform-driver-x86@vger.kernel.org
9098 S:      Maintained
9099 W:      http://launchpad.net/ideapad-laptop
9100 F:      drivers/platform/x86/ideapad-laptop.c
9101
9102 IDEAPAD LAPTOP SLIDEBAR DRIVER
9103 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9104 L:      linux-input@vger.kernel.org
9105 S:      Maintained
9106 W:      https://github.com/o2genum/ideapad-slidebar
9107 F:      drivers/input/misc/ideapad_slidebar.c
9108
9109 IDT VersaClock 5 CLOCK DRIVER
9110 M:      Luca Ceresoli <luca@lucaceresoli.net>
9111 S:      Maintained
9112 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9113 F:      drivers/clk/clk-versaclock5.c
9114
9115 IEEE 802.15.4 SUBSYSTEM
9116 M:      Alexander Aring <alex.aring@gmail.com>
9117 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9118 L:      linux-wpan@vger.kernel.org
9119 S:      Maintained
9120 W:      https://linux-wpan.org/
9121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9123 F:      Documentation/networking/ieee802154.rst
9124 F:      drivers/net/ieee802154/
9125 F:      include/linux/ieee802154.h
9126 F:      include/linux/nl802154.h
9127 F:      include/net/af_ieee802154.h
9128 F:      include/net/cfg802154.h
9129 F:      include/net/ieee802154_netdev.h
9130 F:      include/net/mac802154.h
9131 F:      include/net/nl802154.h
9132 F:      net/ieee802154/
9133 F:      net/mac802154/
9134
9135 IFE PROTOCOL
9136 M:      Yotam Gigi <yotam.gi@gmail.com>
9137 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9138 F:      include/net/ife.h
9139 F:      include/uapi/linux/ife.h
9140 F:      net/ife
9141
9142 IGORPLUG-USB IR RECEIVER
9143 M:      Sean Young <sean@mess.org>
9144 L:      linux-media@vger.kernel.org
9145 S:      Maintained
9146 F:      drivers/media/rc/igorplugusb.c
9147
9148 IGUANAWORKS USB IR TRANSCEIVER
9149 M:      Sean Young <sean@mess.org>
9150 L:      linux-media@vger.kernel.org
9151 S:      Maintained
9152 F:      drivers/media/rc/iguanair.c
9153
9154 IIO DIGITAL POTENTIOMETER DAC
9155 M:      Peter Rosin <peda@axentia.se>
9156 L:      linux-iio@vger.kernel.org
9157 S:      Maintained
9158 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9159 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9160 F:      drivers/iio/dac/dpot-dac.c
9161
9162 IIO ENVELOPE DETECTOR
9163 M:      Peter Rosin <peda@axentia.se>
9164 L:      linux-iio@vger.kernel.org
9165 S:      Maintained
9166 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9167 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9168 F:      drivers/iio/adc/envelope-detector.c
9169
9170 IIO MULTIPLEXER
9171 M:      Peter Rosin <peda@axentia.se>
9172 L:      linux-iio@vger.kernel.org
9173 S:      Maintained
9174 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9175 F:      drivers/iio/multiplexer/iio-mux.c
9176
9177 IIO SCMI BASED DRIVER
9178 M:      Jyoti Bhayana <jbhayana@google.com>
9179 L:      linux-iio@vger.kernel.org
9180 S:      Maintained
9181 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9182
9183 IIO SUBSYSTEM AND DRIVERS
9184 M:      Jonathan Cameron <jic23@kernel.org>
9185 R:      Lars-Peter Clausen <lars@metafoo.de>
9186 L:      linux-iio@vger.kernel.org
9187 S:      Maintained
9188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9189 F:      Documentation/ABI/testing/configfs-iio*
9190 F:      Documentation/ABI/testing/sysfs-bus-iio*
9191 F:      Documentation/devicetree/bindings/iio/
9192 F:      drivers/iio/
9193 F:      drivers/staging/iio/
9194 F:      include/linux/iio/
9195 F:      tools/iio/
9196
9197 IIO UNIT CONVERTER
9198 M:      Peter Rosin <peda@axentia.se>
9199 L:      linux-iio@vger.kernel.org
9200 S:      Maintained
9201 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9202 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9203 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9204 F:      drivers/iio/afe/iio-rescale.c
9205
9206 IKANOS/ADI EAGLE ADSL USB DRIVER
9207 M:      Matthieu Castet <castet.matthieu@free.fr>
9208 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9209 S:      Maintained
9210 F:      drivers/usb/atm/ueagle-atm.c
9211
9212 IMGTEC ASCII LCD DRIVER
9213 M:      Paul Burton <paulburton@kernel.org>
9214 S:      Maintained
9215 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9216 F:      drivers/auxdisplay/img-ascii-lcd.c
9217
9218 IMGTEC IR DECODER DRIVER
9219 S:      Orphan
9220 F:      drivers/media/rc/img-ir/
9221
9222 IMON SOUNDGRAPH USB IR RECEIVER
9223 M:      Sean Young <sean@mess.org>
9224 L:      linux-media@vger.kernel.org
9225 S:      Maintained
9226 F:      drivers/media/rc/imon.c
9227 F:      drivers/media/rc/imon_raw.c
9228
9229 IMS TWINTURBO FRAMEBUFFER DRIVER
9230 L:      linux-fbdev@vger.kernel.org
9231 S:      Orphan
9232 F:      drivers/video/fbdev/imsttfb.c
9233
9234 INA209 HARDWARE MONITOR DRIVER
9235 M:      Guenter Roeck <linux@roeck-us.net>
9236 L:      linux-hwmon@vger.kernel.org
9237 S:      Maintained
9238 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9239 F:      Documentation/hwmon/ina209.rst
9240 F:      drivers/hwmon/ina209.c
9241
9242 INA2XX HARDWARE MONITOR DRIVER
9243 M:      Guenter Roeck <linux@roeck-us.net>
9244 L:      linux-hwmon@vger.kernel.org
9245 S:      Maintained
9246 F:      Documentation/hwmon/ina2xx.rst
9247 F:      drivers/hwmon/ina2xx.c
9248 F:      include/linux/platform_data/ina2xx.h
9249
9250 INDUSTRY PACK SUBSYSTEM (IPACK)
9251 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9252 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9253 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9254 L:      industrypack-devel@lists.sourceforge.net
9255 S:      Maintained
9256 W:      http://industrypack.sourceforge.net
9257 F:      drivers/ipack/
9258
9259 INFINEON DPS310 Driver
9260 M:      Eddie James <eajames@linux.ibm.com>
9261 L:      linux-iio@vger.kernel.org
9262 S:      Maintained
9263 F:      drivers/iio/pressure/dps310.c
9264
9265 INFINIBAND SUBSYSTEM
9266 M:      Doug Ledford <dledford@redhat.com>
9267 M:      Jason Gunthorpe <jgg@nvidia.com>
9268 L:      linux-rdma@vger.kernel.org
9269 S:      Supported
9270 W:      https://github.com/linux-rdma/rdma-core
9271 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9273 F:      Documentation/devicetree/bindings/infiniband/
9274 F:      Documentation/infiniband/
9275 F:      drivers/infiniband/
9276 F:      include/rdma/
9277 F:      include/trace/events/ib_mad.h
9278 F:      include/trace/events/ib_umad.h
9279 F:      include/uapi/linux/if_infiniband.h
9280 F:      include/uapi/rdma/
9281 F:      samples/bpf/ibumad_kern.c
9282 F:      samples/bpf/ibumad_user.c
9283
9284 INGENIC JZ4780 NAND DRIVER
9285 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9286 L:      linux-mtd@lists.infradead.org
9287 L:      linux-mips@vger.kernel.org
9288 S:      Maintained
9289 F:      drivers/mtd/nand/raw/ingenic/
9290
9291 INGENIC JZ47xx SoCs
9292 M:      Paul Cercueil <paul@crapouillou.net>
9293 L:      linux-mips@vger.kernel.org
9294 S:      Maintained
9295 F:      arch/mips/boot/dts/ingenic/
9296 F:      arch/mips/generic/board-ingenic.c
9297 F:      arch/mips/include/asm/mach-ingenic/
9298 F:      arch/mips/ingenic/Kconfig
9299 F:      drivers/clk/ingenic/
9300 F:      drivers/dma/dma-jz4780.c
9301 F:      drivers/gpu/drm/ingenic/
9302 F:      drivers/i2c/busses/i2c-jz4780.c
9303 F:      drivers/iio/adc/ingenic-adc.c
9304 F:      drivers/irqchip/irq-ingenic.c
9305 F:      drivers/memory/jz4780-nemc.c
9306 F:      drivers/mmc/host/jz4740_mmc.c
9307 F:      drivers/mtd/nand/raw/ingenic/
9308 F:      drivers/pinctrl/pinctrl-ingenic.c
9309 F:      drivers/power/supply/ingenic-battery.c
9310 F:      drivers/pwm/pwm-jz4740.c
9311 F:      drivers/remoteproc/ingenic_rproc.c
9312 F:      drivers/rtc/rtc-jz4740.c
9313 F:      drivers/tty/serial/8250/8250_ingenic.c
9314 F:      drivers/usb/musb/jz4740.c
9315 F:      drivers/watchdog/jz4740_wdt.c
9316 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9317 F:      include/linux/mfd/ingenic-tcu.h
9318 F:      sound/soc/codecs/jz47*
9319 F:      sound/soc/jz4740/
9320
9321 INOTIFY
9322 M:      Jan Kara <jack@suse.cz>
9323 R:      Amir Goldstein <amir73il@gmail.com>
9324 L:      linux-fsdevel@vger.kernel.org
9325 S:      Maintained
9326 F:      Documentation/filesystems/inotify.rst
9327 F:      fs/notify/inotify/
9328 F:      include/linux/inotify.h
9329 F:      include/uapi/linux/inotify.h
9330
9331 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9332 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9333 L:      linux-input@vger.kernel.org
9334 S:      Maintained
9335 Q:      http://patchwork.kernel.org/project/linux-input/list/
9336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9337 F:      Documentation/devicetree/bindings/input/
9338 F:      Documentation/devicetree/bindings/serio/
9339 F:      Documentation/input/
9340 F:      drivers/input/
9341 F:      include/linux/input.h
9342 F:      include/linux/input/
9343 F:      include/uapi/linux/input-event-codes.h
9344 F:      include/uapi/linux/input.h
9345
9346 INPUT MULTITOUCH (MT) PROTOCOL
9347 M:      Henrik Rydberg <rydberg@bitmath.org>
9348 L:      linux-input@vger.kernel.org
9349 S:      Odd fixes
9350 F:      Documentation/input/multi-touch-protocol.rst
9351 F:      drivers/input/input-mt.c
9352 K:      \b(ABS|SYN)_MT_
9353
9354 INSIDE SECURE CRYPTO DRIVER
9355 M:      Antoine Tenart <atenart@kernel.org>
9356 L:      linux-crypto@vger.kernel.org
9357 S:      Maintained
9358 F:      drivers/crypto/inside-secure/
9359
9360 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9361 M:      Mimi Zohar <zohar@linux.ibm.com>
9362 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9363 L:      linux-integrity@vger.kernel.org
9364 S:      Supported
9365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9366 F:      security/integrity/ima/
9367
9368 INTEL 810/815 FRAMEBUFFER DRIVER
9369 M:      Antonino Daplas <adaplas@gmail.com>
9370 L:      linux-fbdev@vger.kernel.org
9371 S:      Maintained
9372 F:      drivers/video/fbdev/i810/
9373
9374 INTEL ASoC DRIVERS
9375 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9376 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9377 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9378 M:      Jie Yang <yang.jie@linux.intel.com>
9379 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9380 S:      Supported
9381 F:      sound/soc/intel/
9382
9383 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9384 M:      Hans de Goede <hdegoede@redhat.com>
9385 L:      platform-driver-x86@vger.kernel.org
9386 S:      Maintained
9387 F:      drivers/platform/x86/intel/atomisp2/pm.c
9388
9389 INTEL ATOMISP2 LED DRIVER
9390 M:      Hans de Goede <hdegoede@redhat.com>
9391 L:      platform-driver-x86@vger.kernel.org
9392 S:      Maintained
9393 F:      drivers/platform/x86/intel/atomisp2/led.c
9394
9395 INTEL BIOS SAR INT1092 DRIVER
9396 M:      Shravan Sudhakar <s.shravan@intel.com>
9397 M:      Intel Corporation <linuxwwan@intel.com>
9398 L:      platform-driver-x86@vger.kernel.org
9399 S:      Maintained
9400 F:      drivers/platform/x86/intel/int1092/
9401
9402 INTEL BROXTON PMC DRIVER
9403 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9404 M:      Zha Qipeng <qipeng.zha@intel.com>
9405 S:      Maintained
9406 F:      drivers/mfd/intel_pmc_bxt.c
9407 F:      include/linux/mfd/intel_pmc_bxt.h
9408
9409 INTEL C600 SERIES SAS CONTROLLER DRIVER
9410 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9411 L:      linux-scsi@vger.kernel.org
9412 S:      Supported
9413 T:      git git://git.code.sf.net/p/intel-sas/isci
9414 F:      drivers/scsi/isci/
9415
9416 INTEL CPU family model numbers
9417 M:      Tony Luck <tony.luck@intel.com>
9418 M:      x86@kernel.org
9419 L:      linux-kernel@vger.kernel.org
9420 S:      Supported
9421 F:      arch/x86/include/asm/intel-family.h
9422
9423 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9424 M:      Jani Nikula <jani.nikula@linux.intel.com>
9425 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9426 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9427 L:      intel-gfx@lists.freedesktop.org
9428 S:      Supported
9429 W:      https://01.org/linuxgraphics/
9430 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9431 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9432 C:      irc://irc.oftc.net/intel-gfx
9433 T:      git git://anongit.freedesktop.org/drm-intel
9434 F:      Documentation/gpu/i915.rst
9435 F:      drivers/gpu/drm/i915/
9436 F:      include/drm/i915*
9437 F:      include/uapi/drm/i915_drm.h
9438
9439 INTEL ETHERNET DRIVERS
9440 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9441 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9442 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9443 S:      Supported
9444 W:      http://www.intel.com/support/feedback.htm
9445 W:      http://e1000.sourceforge.net/
9446 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9449 F:      Documentation/networking/device_drivers/ethernet/intel/
9450 F:      drivers/net/ethernet/intel/
9451 F:      drivers/net/ethernet/intel/*/
9452 F:      include/linux/avf/virtchnl.h
9453 F:      include/linux/net/intel/iidc.h
9454
9455 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9456 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9457 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9458 L:      linux-rdma@vger.kernel.org
9459 S:      Supported
9460 F:      drivers/infiniband/hw/irdma/
9461 F:      include/uapi/rdma/irdma-abi.h
9462
9463 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9464 M:      Maik Broemme <mbroemme@libmpq.org>
9465 L:      linux-fbdev@vger.kernel.org
9466 S:      Maintained
9467 F:      Documentation/fb/intelfb.rst
9468 F:      drivers/video/fbdev/intelfb/
9469
9470 INTEL GPIO DRIVERS
9471 M:      Andy Shevchenko <andy@kernel.org>
9472 L:      linux-gpio@vger.kernel.org
9473 S:      Maintained
9474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9475 F:      drivers/gpio/gpio-ich.c
9476 F:      drivers/gpio/gpio-merrifield.c
9477 F:      drivers/gpio/gpio-ml-ioh.c
9478 F:      drivers/gpio/gpio-pch.c
9479 F:      drivers/gpio/gpio-sch.c
9480 F:      drivers/gpio/gpio-sodaville.c
9481
9482 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9483 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9484 M:      Zhi Wang <zhi.a.wang@intel.com>
9485 L:      intel-gvt-dev@lists.freedesktop.org
9486 L:      intel-gfx@lists.freedesktop.org
9487 S:      Supported
9488 W:      https://01.org/igvt-g
9489 T:      git https://github.com/intel/gvt-linux.git
9490 F:      drivers/gpu/drm/i915/gvt/
9491
9492 INTEL HID EVENT DRIVER
9493 M:      Alex Hung <alex.hung@canonical.com>
9494 L:      platform-driver-x86@vger.kernel.org
9495 S:      Maintained
9496 F:      drivers/platform/x86/intel/hid.c
9497
9498 INTEL I/OAT DMA DRIVER
9499 M:      Dave Jiang <dave.jiang@intel.com>
9500 R:      Dan Williams <dan.j.williams@intel.com>
9501 L:      dmaengine@vger.kernel.org
9502 S:      Supported
9503 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9504 F:      drivers/dma/ioat*
9505
9506 INTEL IADX DRIVER
9507 M:      Dave Jiang <dave.jiang@intel.com>
9508 L:      dmaengine@vger.kernel.org
9509 S:      Supported
9510 F:      drivers/dma/idxd/*
9511 F:      include/uapi/linux/idxd.h
9512
9513 INTEL IDLE DRIVER
9514 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9515 M:      Len Brown <lenb@kernel.org>
9516 L:      linux-pm@vger.kernel.org
9517 S:      Supported
9518 B:      https://bugzilla.kernel.org
9519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9520 F:      drivers/idle/intel_idle.c
9521
9522 INTEL INTEGRATED SENSOR HUB DRIVER
9523 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9524 M:      Jiri Kosina <jikos@kernel.org>
9525 L:      linux-input@vger.kernel.org
9526 S:      Maintained
9527 F:      drivers/hid/intel-ish-hid/
9528
9529 INTEL IOMMU (VT-d)
9530 M:      David Woodhouse <dwmw2@infradead.org>
9531 M:      Lu Baolu <baolu.lu@linux.intel.com>
9532 L:      iommu@lists.linux-foundation.org
9533 S:      Supported
9534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9535 F:      drivers/iommu/intel/
9536 F:      include/linux/intel-iommu.h
9537 F:      include/linux/intel-svm.h
9538
9539 INTEL IOP-ADMA DMA DRIVER
9540 R:      Dan Williams <dan.j.williams@intel.com>
9541 S:      Odd fixes
9542 F:      drivers/dma/iop-adma.c
9543
9544 INTEL IPU3 CSI-2 CIO2 DRIVER
9545 M:      Yong Zhi <yong.zhi@intel.com>
9546 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9547 M:      Bingbu Cao <bingbu.cao@intel.com>
9548 M:      Dan Scally <djrscally@gmail.com>
9549 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9550 L:      linux-media@vger.kernel.org
9551 S:      Maintained
9552 T:      git git://linuxtv.org/media_tree.git
9553 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9554 F:      drivers/media/pci/intel/ipu3/
9555
9556 INTEL IPU3 CSI-2 IMGU DRIVER
9557 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9558 R:      Bingbu Cao <bingbu.cao@intel.com>
9559 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9560 L:      linux-media@vger.kernel.org
9561 S:      Maintained
9562 F:      Documentation/admin-guide/media/ipu3.rst
9563 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9564 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9565 F:      drivers/staging/media/ipu3/
9566
9567 INTEL IXP4XX CRYPTO SUPPORT
9568 M:      Corentin Labbe <clabbe@baylibre.com>
9569 L:      linux-crypto@vger.kernel.org
9570 S:      Maintained
9571 F:      drivers/crypto/ixp4xx_crypto.c
9572
9573 INTEL ISHTP ECLITE DRIVER
9574 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9575 L:      platform-driver-x86@vger.kernel.org
9576 S:      Supported
9577 F:      drivers/platform/x86/intel/ishtp_eclite.c
9578
9579 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9580 M:      Krzysztof Halasa <khalasa@piap.pl>
9581 S:      Maintained
9582 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9583 F:      drivers/net/wan/ixp4xx_hss.c
9584 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9585 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9586 F:      include/linux/soc/ixp4xx/npe.h
9587 F:      include/linux/soc/ixp4xx/qmgr.h
9588
9589 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9590 M:      Deepak Saxena <dsaxena@plexity.net>
9591 S:      Maintained
9592 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9593 F:      drivers/char/hw_random/ixp4xx-rng.c
9594
9595 INTEL KEEM BAY DRM DRIVER
9596 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9597 M:      Edmund Dea <edmund.j.dea@intel.com>
9598 S:      Maintained
9599 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9600 F:      drivers/gpu/drm/kmb/
9601
9602 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9603 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9604 S:      Maintained
9605 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9606 F:      drivers/crypto/keembay/Kconfig
9607 F:      drivers/crypto/keembay/Makefile
9608 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9609 F:      drivers/crypto/keembay/ocs-aes.c
9610 F:      drivers/crypto/keembay/ocs-aes.h
9611
9612 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9613 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9614 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9615 M:      Mark Gross <mgross@linux.intel.com>
9616 S:      Maintained
9617 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9618 F:      drivers/crypto/keembay/Kconfig
9619 F:      drivers/crypto/keembay/Makefile
9620 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9621 F:      drivers/crypto/keembay/ocs-ecc-curve-defs.h
9622
9623 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9624 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9625 M:      Declan Murphy <declan.murphy@intel.com>
9626 S:      Maintained
9627 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9628 F:      drivers/crypto/keembay/Kconfig
9629 F:      drivers/crypto/keembay/Makefile
9630 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9631 F:      drivers/crypto/keembay/ocs-hcu.c
9632 F:      drivers/crypto/keembay/ocs-hcu.h
9633
9634 INTEL MANAGEMENT ENGINE (mei)
9635 M:      Tomas Winkler <tomas.winkler@intel.com>
9636 L:      linux-kernel@vger.kernel.org
9637 S:      Supported
9638 F:      Documentation/driver-api/mei/*
9639 F:      drivers/misc/mei/
9640 F:      drivers/watchdog/mei_wdt.c
9641 F:      include/linux/mei_cl_bus.h
9642 F:      include/uapi/linux/mei.h
9643 F:      samples/mei/*
9644
9645 INTEL MAX 10 BMC MFD DRIVER
9646 M:      Xu Yilun <yilun.xu@intel.com>
9647 R:      Tom Rix <trix@redhat.com>
9648 S:      Maintained
9649 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9650 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9651 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9652 F:      drivers/mfd/intel-m10-bmc.c
9653 F:      include/linux/mfd/intel-m10-bmc.h
9654
9655 INTEL MENLOW THERMAL DRIVER
9656 M:      Sujith Thomas <sujith.thomas@intel.com>
9657 L:      linux-pm@vger.kernel.org
9658 S:      Supported
9659 W:      https://01.org/linux-acpi
9660 F:      drivers/thermal/intel/intel_menlow.c
9661
9662 INTEL P-Unit IPC DRIVER
9663 M:      Zha Qipeng <qipeng.zha@intel.com>
9664 L:      platform-driver-x86@vger.kernel.org
9665 S:      Maintained
9666 F:      arch/x86/include/asm/intel_punit_ipc.h
9667 F:      drivers/platform/x86/intel/punit_ipc.c
9668
9669 INTEL PMC CORE DRIVER
9670 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9671 M:      David E Box <david.e.box@intel.com>
9672 L:      platform-driver-x86@vger.kernel.org
9673 S:      Maintained
9674 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9675 F:      drivers/platform/x86/intel/pmc/
9676
9677 INTEL PMIC GPIO DRIVERS
9678 M:      Andy Shevchenko <andy@kernel.org>
9679 S:      Maintained
9680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9681 F:      drivers/gpio/gpio-*cove.c
9682
9683 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9684 M:      Andy Shevchenko <andy@kernel.org>
9685 S:      Maintained
9686 F:      drivers/mfd/intel_soc_pmic*
9687 F:      include/linux/mfd/intel_soc_pmic*
9688
9689 INTEL PMT DRIVER
9690 M:      "David E. Box" <david.e.box@linux.intel.com>
9691 S:      Maintained
9692 F:      drivers/mfd/intel_pmt.c
9693 F:      drivers/platform/x86/intel/pmt/
9694
9695 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9696 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9697 L:      linux-wireless@vger.kernel.org
9698 S:      Maintained
9699 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9700 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9701 F:      drivers/net/wireless/intel/ipw2x00/
9702
9703 INTEL PSTATE DRIVER
9704 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9705 M:      Len Brown <lenb@kernel.org>
9706 L:      linux-pm@vger.kernel.org
9707 S:      Supported
9708 F:      drivers/cpufreq/intel_pstate.c
9709
9710 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9711 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9712 L:      linux-iio@vger.kernel.org
9713 F:      drivers/counter/intel-qep.c
9714
9715 INTEL SCU DRIVERS
9716 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9717 S:      Maintained
9718 F:      arch/x86/include/asm/intel_scu_ipc.h
9719 F:      drivers/platform/x86/intel_scu_*
9720
9721 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9722 M:      Daniel Scally <djrscally@gmail.com>
9723 S:      Maintained
9724 F:      drivers/platform/x86/intel/int3472/
9725
9726 INTEL SPEED SELECT TECHNOLOGY
9727 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9728 L:      platform-driver-x86@vger.kernel.org
9729 S:      Maintained
9730 F:      drivers/platform/x86/intel/speed_select_if/
9731 F:      include/uapi/linux/isst_if.h
9732 F:      tools/power/x86/intel-speed-select/
9733
9734 INTEL STRATIX10 FIRMWARE DRIVERS
9735 M:      Dinh Nguyen <dinguyen@kernel.org>
9736 L:      linux-kernel@vger.kernel.org
9737 S:      Maintained
9738 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9739 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9740 F:      drivers/firmware/stratix10-rsu.c
9741 F:      drivers/firmware/stratix10-svc.c
9742 F:      include/linux/firmware/intel/stratix10-smc.h
9743 F:      include/linux/firmware/intel/stratix10-svc-client.h
9744
9745 INTEL TELEMETRY DRIVER
9746 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9747 M:      "David E. Box" <david.e.box@linux.intel.com>
9748 L:      platform-driver-x86@vger.kernel.org
9749 S:      Maintained
9750 F:      arch/x86/include/asm/intel_telemetry.h
9751 F:      drivers/platform/x86/intel/telemetry/
9752
9753 INTEL UNCORE FREQUENCY CONTROL
9754 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9755 L:      platform-driver-x86@vger.kernel.org
9756 S:      Maintained
9757 F:      drivers/platform/x86/intel/uncore-frequency.c
9758
9759 INTEL VIRTUAL BUTTON DRIVER
9760 M:      AceLan Kao <acelan.kao@canonical.com>
9761 L:      platform-driver-x86@vger.kernel.org
9762 S:      Maintained
9763 F:      drivers/platform/x86/intel/vbtn.c
9764
9765 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9766 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9767 L:      linux-wireless@vger.kernel.org
9768 S:      Supported
9769 F:      drivers/net/wireless/intel/iwlegacy/
9770
9771 INTEL WIRELESS WIFI LINK (iwlwifi)
9772 M:      Luca Coelho <luciano.coelho@intel.com>
9773 L:      linux-wireless@vger.kernel.org
9774 S:      Supported
9775 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9777 F:      drivers/net/wireless/intel/iwlwifi/
9778
9779 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9780 M:      Jithu Joseph <jithu.joseph@intel.com>
9781 R:      Maurice Ma <maurice.ma@intel.com>
9782 S:      Maintained
9783 W:      https://slimbootloader.github.io/security/firmware-update.html
9784 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9785
9786 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9787 L:      Dell.Client.Kernel@dell.com
9788 S:      Maintained
9789 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9790
9791 INTEL WWAN IOSM DRIVER
9792 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9793 M:      Intel Corporation <linuxwwan@intel.com>
9794 L:      netdev@vger.kernel.org
9795 S:      Maintained
9796 F:      drivers/net/wwan/iosm/
9797
9798 INTEL(R) TRACE HUB
9799 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9800 S:      Supported
9801 F:      Documentation/trace/intel_th.rst
9802 F:      drivers/hwtracing/intel_th/
9803 F:      include/linux/intel_th.h
9804
9805 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9806 M:      Ning Sun <ning.sun@intel.com>
9807 L:      tboot-devel@lists.sourceforge.net
9808 S:      Supported
9809 W:      http://tboot.sourceforge.net
9810 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9811 F:      Documentation/x86/intel_txt.rst
9812 F:      arch/x86/kernel/tboot.c
9813 F:      include/linux/tboot.h
9814
9815 INTEL SGX
9816 M:      Jarkko Sakkinen <jarkko@kernel.org>
9817 R:      Dave Hansen <dave.hansen@linux.intel.com>
9818 L:      linux-sgx@vger.kernel.org
9819 S:      Supported
9820 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9822 F:      Documentation/x86/sgx.rst
9823 F:      arch/x86/entry/vdso/vsgx.S
9824 F:      arch/x86/include/asm/sgx.h
9825 F:      arch/x86/include/uapi/asm/sgx.h
9826 F:      arch/x86/kernel/cpu/sgx/*
9827 F:      tools/testing/selftests/sgx/*
9828 K:      \bSGX_
9829
9830 INTERCONNECT API
9831 M:      Georgi Djakov <djakov@kernel.org>
9832 L:      linux-pm@vger.kernel.org
9833 S:      Maintained
9834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9835 F:      Documentation/devicetree/bindings/interconnect/
9836 F:      Documentation/driver-api/interconnect.rst
9837 F:      drivers/interconnect/
9838 F:      include/dt-bindings/interconnect/
9839 F:      include/linux/interconnect-provider.h
9840 F:      include/linux/interconnect.h
9841
9842 INTERRUPT COUNTER DRIVER
9843 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9844 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9845 L:      linux-iio@vger.kernel.org
9846 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9847 F:      drivers/counter/interrupt-cnt.c
9848
9849 INVENSENSE ICM-426xx IMU DRIVER
9850 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9851 L:      linux-iio@vger.kernel.org
9852 S:      Maintained
9853 W:      https://invensense.tdk.com/
9854 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9855 F:      drivers/iio/imu/inv_icm42600/
9856
9857 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9858 M:      Linus Walleij <linus.walleij@linaro.org>
9859 L:      linux-iio@vger.kernel.org
9860 S:      Maintained
9861 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9862 F:      drivers/iio/gyro/mpu3050*
9863
9864 IOC3 ETHERNET DRIVER
9865 M:      Ralf Baechle <ralf@linux-mips.org>
9866 L:      linux-mips@vger.kernel.org
9867 S:      Maintained
9868 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9869
9870 IOMAP FILESYSTEM LIBRARY
9871 M:      Christoph Hellwig <hch@infradead.org>
9872 M:      Darrick J. Wong <djwong@kernel.org>
9873 M:      linux-xfs@vger.kernel.org
9874 M:      linux-fsdevel@vger.kernel.org
9875 L:      linux-xfs@vger.kernel.org
9876 L:      linux-fsdevel@vger.kernel.org
9877 S:      Supported
9878 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9879 F:      fs/iomap/
9880 F:      include/linux/iomap.h
9881
9882 IOMMU DRIVERS
9883 M:      Joerg Roedel <joro@8bytes.org>
9884 M:      Will Deacon <will@kernel.org>
9885 L:      iommu@lists.linux-foundation.org
9886 S:      Maintained
9887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9888 F:      Documentation/devicetree/bindings/iommu/
9889 F:      Documentation/userspace-api/iommu.rst
9890 F:      drivers/iommu/
9891 F:      include/linux/iommu.h
9892 F:      include/linux/iova.h
9893 F:      include/linux/of_iommu.h
9894 F:      include/uapi/linux/iommu.h
9895
9896 IO_URING
9897 M:      Jens Axboe <axboe@kernel.dk>
9898 R:      Pavel Begunkov <asml.silence@gmail.com>
9899 L:      io-uring@vger.kernel.org
9900 S:      Maintained
9901 T:      git git://git.kernel.dk/linux-block
9902 T:      git git://git.kernel.dk/liburing
9903 F:      fs/io-wq.c
9904 F:      fs/io-wq.h
9905 F:      fs/io_uring.c
9906 F:      include/linux/io_uring.h
9907 F:      include/uapi/linux/io_uring.h
9908 F:      tools/io_uring/
9909
9910 IPMI SUBSYSTEM
9911 M:      Corey Minyard <minyard@acm.org>
9912 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9913 S:      Supported
9914 W:      http://openipmi.sourceforge.net/
9915 F:      Documentation/driver-api/ipmi.rst
9916 F:      Documentation/devicetree/bindings/ipmi/
9917 F:      drivers/char/ipmi/
9918 F:      include/linux/ipmi*
9919 F:      include/uapi/linux/ipmi*
9920
9921 IPS SCSI RAID DRIVER
9922 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9923 L:      linux-scsi@vger.kernel.org
9924 S:      Maintained
9925 W:      http://www.adaptec.com/
9926 F:      drivers/scsi/ips*
9927
9928 IPVS
9929 M:      Simon Horman <horms@verge.net.au>
9930 M:      Julian Anastasov <ja@ssi.bg>
9931 L:      netdev@vger.kernel.org
9932 L:      lvs-devel@vger.kernel.org
9933 S:      Maintained
9934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9936 F:      Documentation/networking/ipvs-sysctl.rst
9937 F:      include/net/ip_vs.h
9938 F:      include/uapi/linux/ip_vs.h
9939 F:      net/netfilter/ipvs/
9940
9941 IPWIRELESS DRIVER
9942 M:      Jiri Kosina <jikos@kernel.org>
9943 M:      David Sterba <dsterba@suse.com>
9944 S:      Odd Fixes
9945 F:      drivers/tty/ipwireless/
9946
9947 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9948 M:      Marc Zyngier <maz@kernel.org>
9949 S:      Maintained
9950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9951 F:      Documentation/core-api/irq/irq-domain.rst
9952 F:      include/linux/irqdomain.h
9953 F:      kernel/irq/irqdomain.c
9954 F:      kernel/irq/msi.c
9955
9956 IRQ SUBSYSTEM
9957 M:      Thomas Gleixner <tglx@linutronix.de>
9958 L:      linux-kernel@vger.kernel.org
9959 S:      Maintained
9960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9961 F:      kernel/irq/
9962
9963 IRQCHIP DRIVERS
9964 M:      Thomas Gleixner <tglx@linutronix.de>
9965 M:      Marc Zyngier <maz@kernel.org>
9966 L:      linux-kernel@vger.kernel.org
9967 S:      Maintained
9968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9969 F:      Documentation/devicetree/bindings/interrupt-controller/
9970 F:      drivers/irqchip/
9971
9972 ISA
9973 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9974 S:      Maintained
9975 F:      Documentation/driver-api/isa.rst
9976 F:      drivers/base/isa.c
9977 F:      include/linux/isa.h
9978
9979 ISA RADIO MODULE
9980 M:      Hans Verkuil <hverkuil@xs4all.nl>
9981 L:      linux-media@vger.kernel.org
9982 S:      Maintained
9983 W:      https://linuxtv.org
9984 T:      git git://linuxtv.org/media_tree.git
9985 F:      drivers/media/radio/radio-isa*
9986
9987 ISAPNP
9988 M:      Jaroslav Kysela <perex@perex.cz>
9989 S:      Maintained
9990 F:      Documentation/driver-api/isapnp.rst
9991 F:      drivers/pnp/isapnp/
9992 F:      include/linux/isapnp.h
9993
9994 ISCSI
9995 M:      Lee Duncan <lduncan@suse.com>
9996 M:      Chris Leech <cleech@redhat.com>
9997 L:      open-iscsi@googlegroups.com
9998 L:      linux-scsi@vger.kernel.org
9999 S:      Maintained
10000 W:      www.open-iscsi.com
10001 F:      drivers/scsi/*iscsi*
10002 F:      include/scsi/*iscsi*
10003
10004 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10005 M:      Peter Jones <pjones@redhat.com>
10006 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10007 S:      Maintained
10008 F:      drivers/firmware/iscsi_ibft*
10009
10010 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10011 M:      Sagi Grimberg <sagi@grimberg.me>
10012 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10013 L:      linux-rdma@vger.kernel.org
10014 S:      Supported
10015 W:      http://www.openfabrics.org
10016 W:      www.open-iscsi.org
10017 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10018 F:      drivers/infiniband/ulp/iser/
10019
10020 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10021 M:      Sagi Grimberg <sagi@grimberg.me>
10022 L:      linux-rdma@vger.kernel.org
10023 L:      target-devel@vger.kernel.org
10024 S:      Supported
10025 W:      http://www.linux-iscsi.org
10026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10027 F:      drivers/infiniband/ulp/isert
10028
10029 ISDN/CMTP OVER BLUETOOTH
10030 M:      Karsten Keil <isdn@linux-pingi.de>
10031 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10032 L:      netdev@vger.kernel.org
10033 S:      Odd Fixes
10034 W:      http://www.isdn4linux.de
10035 F:      Documentation/isdn/
10036 F:      drivers/isdn/capi/
10037 F:      include/linux/isdn/
10038 F:      include/uapi/linux/isdn/
10039 F:      net/bluetooth/cmtp/
10040
10041 ISDN/mISDN SUBSYSTEM
10042 M:      Karsten Keil <isdn@linux-pingi.de>
10043 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10044 L:      netdev@vger.kernel.org
10045 S:      Maintained
10046 W:      http://www.isdn4linux.de
10047 F:      drivers/isdn/Kconfig
10048 F:      drivers/isdn/Makefile
10049 F:      drivers/isdn/hardware/
10050 F:      drivers/isdn/mISDN/
10051
10052 IT87 HARDWARE MONITORING DRIVER
10053 M:      Jean Delvare <jdelvare@suse.com>
10054 L:      linux-hwmon@vger.kernel.org
10055 S:      Maintained
10056 F:      Documentation/hwmon/it87.rst
10057 F:      drivers/hwmon/it87.c
10058
10059 IT913X MEDIA DRIVER
10060 M:      Antti Palosaari <crope@iki.fi>
10061 L:      linux-media@vger.kernel.org
10062 S:      Maintained
10063 W:      https://linuxtv.org
10064 W:      http://palosaari.fi/linux/
10065 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10066 T:      git git://linuxtv.org/anttip/media_tree.git
10067 F:      drivers/media/tuners/it913x*
10068
10069 ITE IT66121 HDMI BRIDGE DRIVER
10070 M:      Phong LE <ple@baylibre.com>
10071 M:      Neil Armstrong <narmstrong@baylibre.com>
10072 S:      Maintained
10073 T:      git git://anongit.freedesktop.org/drm/drm-misc
10074 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10075 F:      drivers/gpu/drm/bridge/ite-it66121.c
10076
10077 IVTV VIDEO4LINUX DRIVER
10078 M:      Andy Walls <awalls@md.metrocast.net>
10079 L:      linux-media@vger.kernel.org
10080 S:      Maintained
10081 W:      https://linuxtv.org
10082 T:      git git://linuxtv.org/media_tree.git
10083 F:      Documentation/admin-guide/media/ivtv*
10084 F:      drivers/media/pci/ivtv/
10085 F:      include/uapi/linux/ivtv*
10086
10087 IX2505V MEDIA DRIVER
10088 M:      Malcolm Priestley <tvboxspy@gmail.com>
10089 L:      linux-media@vger.kernel.org
10090 S:      Maintained
10091 W:      https://linuxtv.org
10092 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10093 F:      drivers/media/dvb-frontends/ix2505v*
10094
10095 JAILHOUSE HYPERVISOR INTERFACE
10096 M:      Jan Kiszka <jan.kiszka@siemens.com>
10097 L:      jailhouse-dev@googlegroups.com
10098 S:      Maintained
10099 F:      arch/x86/include/asm/jailhouse_para.h
10100 F:      arch/x86/kernel/jailhouse.c
10101
10102 JC42.4 TEMPERATURE SENSOR DRIVER
10103 M:      Guenter Roeck <linux@roeck-us.net>
10104 L:      linux-hwmon@vger.kernel.org
10105 S:      Maintained
10106 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10107 F:      Documentation/hwmon/jc42.rst
10108 F:      drivers/hwmon/jc42.c
10109
10110 JFS FILESYSTEM
10111 M:      Dave Kleikamp <shaggy@kernel.org>
10112 L:      jfs-discussion@lists.sourceforge.net
10113 S:      Maintained
10114 W:      http://jfs.sourceforge.net/
10115 T:      git git://github.com/kleikamp/linux-shaggy.git
10116 F:      Documentation/admin-guide/jfs.rst
10117 F:      fs/jfs/
10118
10119 JME NETWORK DRIVER
10120 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10121 L:      netdev@vger.kernel.org
10122 S:      Maintained
10123 F:      drivers/net/ethernet/jme.*
10124
10125 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10126 M:      David Woodhouse <dwmw2@infradead.org>
10127 M:      Richard Weinberger <richard@nod.at>
10128 L:      linux-mtd@lists.infradead.org
10129 S:      Odd Fixes
10130 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10131 T:      git git://git.infradead.org/ubifs-2.6.git
10132 F:      fs/jffs2/
10133 F:      include/uapi/linux/jffs2.h
10134
10135 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10136 M:      "Theodore Ts'o" <tytso@mit.edu>
10137 M:      Jan Kara <jack@suse.com>
10138 L:      linux-ext4@vger.kernel.org
10139 S:      Maintained
10140 F:      fs/jbd2/
10141 F:      include/linux/jbd2.h
10142
10143 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10144 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10145 L:      linux-media@vger.kernel.org
10146 L:      linux-renesas-soc@vger.kernel.org
10147 S:      Maintained
10148 F:      drivers/media/platform/rcar_jpu.c
10149
10150 JSM Neo PCI based serial card
10151 L:      linux-serial@vger.kernel.org
10152 S:      Orphan
10153 F:      drivers/tty/serial/jsm/
10154
10155 K10TEMP HARDWARE MONITORING DRIVER
10156 M:      Clemens Ladisch <clemens@ladisch.de>
10157 L:      linux-hwmon@vger.kernel.org
10158 S:      Maintained
10159 F:      Documentation/hwmon/k10temp.rst
10160 F:      drivers/hwmon/k10temp.c
10161
10162 K8TEMP HARDWARE MONITORING DRIVER
10163 M:      Rudolf Marek <r.marek@assembler.cz>
10164 L:      linux-hwmon@vger.kernel.org
10165 S:      Maintained
10166 F:      Documentation/hwmon/k8temp.rst
10167 F:      drivers/hwmon/k8temp.c
10168
10169 KASAN
10170 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10171 R:      Alexander Potapenko <glider@google.com>
10172 R:      Andrey Konovalov <andreyknvl@gmail.com>
10173 R:      Dmitry Vyukov <dvyukov@google.com>
10174 L:      kasan-dev@googlegroups.com
10175 S:      Maintained
10176 F:      Documentation/dev-tools/kasan.rst
10177 F:      arch/*/include/asm/*kasan.h
10178 F:      arch/*/mm/kasan_init*
10179 F:      include/linux/kasan*.h
10180 F:      lib/Kconfig.kasan
10181 F:      lib/test_kasan*.c
10182 F:      mm/kasan/
10183 F:      scripts/Makefile.kasan
10184
10185 KCONFIG
10186 M:      Masahiro Yamada <masahiroy@kernel.org>
10187 L:      linux-kbuild@vger.kernel.org
10188 S:      Maintained
10189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10190 F:      Documentation/kbuild/kconfig*
10191 F:      scripts/Kconfig.include
10192 F:      scripts/kconfig/
10193
10194 KCOV
10195 R:      Dmitry Vyukov <dvyukov@google.com>
10196 R:      Andrey Konovalov <andreyknvl@gmail.com>
10197 L:      kasan-dev@googlegroups.com
10198 S:      Maintained
10199 F:      Documentation/dev-tools/kcov.rst
10200 F:      include/linux/kcov.h
10201 F:      include/uapi/linux/kcov.h
10202 F:      kernel/kcov.c
10203 F:      scripts/Makefile.kcov
10204
10205 KCSAN
10206 M:      Marco Elver <elver@google.com>
10207 R:      Dmitry Vyukov <dvyukov@google.com>
10208 L:      kasan-dev@googlegroups.com
10209 S:      Maintained
10210 F:      Documentation/dev-tools/kcsan.rst
10211 F:      include/linux/kcsan*.h
10212 F:      kernel/kcsan/
10213 F:      lib/Kconfig.kcsan
10214 F:      scripts/Makefile.kcsan
10215
10216 KDUMP
10217 M:      Dave Young <dyoung@redhat.com>
10218 M:      Baoquan He <bhe@redhat.com>
10219 R:      Vivek Goyal <vgoyal@redhat.com>
10220 L:      kexec@lists.infradead.org
10221 S:      Maintained
10222 W:      http://lse.sourceforge.net/kdump/
10223 F:      Documentation/admin-guide/kdump/
10224 F:      fs/proc/vmcore.c
10225 F:      include/linux/crash_core.h
10226 F:      include/linux/crash_dump.h
10227 F:      include/uapi/linux/vmcore.h
10228 F:      kernel/crash_*.c
10229
10230 KEENE FM RADIO TRANSMITTER DRIVER
10231 M:      Hans Verkuil <hverkuil@xs4all.nl>
10232 L:      linux-media@vger.kernel.org
10233 S:      Maintained
10234 W:      https://linuxtv.org
10235 T:      git git://linuxtv.org/media_tree.git
10236 F:      drivers/media/radio/radio-keene*
10237
10238 KERNEL AUTOMOUNTER
10239 M:      Ian Kent <raven@themaw.net>
10240 L:      autofs@vger.kernel.org
10241 S:      Maintained
10242 F:      fs/autofs/
10243
10244 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10245 M:      Masahiro Yamada <masahiroy@kernel.org>
10246 M:      Michal Marek <michal.lkml@markovi.net>
10247 R:      Nick Desaulniers <ndesaulniers@google.com>
10248 L:      linux-kbuild@vger.kernel.org
10249 S:      Maintained
10250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10251 F:      Documentation/kbuild/
10252 F:      Makefile
10253 F:      scripts/*vmlinux*
10254 F:      scripts/Kbuild*
10255 F:      scripts/Makefile*
10256 F:      scripts/basic/
10257 F:      scripts/dummy-tools/
10258 F:      scripts/mk*
10259 F:      scripts/mod/
10260 F:      scripts/package/
10261
10262 KERNEL JANITORS
10263 L:      kernel-janitors@vger.kernel.org
10264 S:      Odd Fixes
10265 W:      http://kernelnewbies.org/KernelJanitors
10266
10267 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10268 M:      "J. Bruce Fields" <bfields@fieldses.org>
10269 M:      Chuck Lever <chuck.lever@oracle.com>
10270 L:      linux-nfs@vger.kernel.org
10271 S:      Supported
10272 W:      http://nfs.sourceforge.net/
10273 T:      git git://linux-nfs.org/~bfields/linux.git
10274 F:      fs/lockd/
10275 F:      fs/nfs_common/
10276 F:      fs/nfsd/
10277 F:      include/linux/lockd/
10278 F:      include/linux/sunrpc/
10279 F:      include/uapi/linux/nfsd/
10280 F:      include/uapi/linux/sunrpc/
10281 F:      net/sunrpc/
10282 F:      Documentation/filesystems/nfs/
10283
10284 KERNEL REGRESSIONS
10285 M:      Thorsten Leemhuis <linux@leemhuis.info>
10286 L:      regressions@lists.linux.dev
10287 S:      Supported
10288
10289 KERNEL SELFTEST FRAMEWORK
10290 M:      Shuah Khan <shuah@kernel.org>
10291 M:      Shuah Khan <skhan@linuxfoundation.org>
10292 L:      linux-kselftest@vger.kernel.org
10293 S:      Maintained
10294 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10296 F:      Documentation/dev-tools/kselftest*
10297 F:      tools/testing/selftests/
10298
10299 KERNEL SMB3 SERVER (KSMBD)
10300 M:      Namjae Jeon <linkinjeon@kernel.org>
10301 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10302 M:      Steve French <sfrench@samba.org>
10303 M:      Hyunchul Lee <hyc.lee@gmail.com>
10304 L:      linux-cifs@vger.kernel.org
10305 S:      Maintained
10306 T:      git git://git.samba.org/ksmbd.git
10307 F:      fs/ksmbd/
10308 F:      fs/smbfs_common/
10309
10310 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10311 M:      Brendan Higgins <brendanhiggins@google.com>
10312 L:      linux-kselftest@vger.kernel.org
10313 L:      kunit-dev@googlegroups.com
10314 S:      Maintained
10315 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10316 F:      Documentation/dev-tools/kunit/
10317 F:      include/kunit/
10318 F:      lib/kunit/
10319 F:      tools/testing/kunit/
10320
10321 KERNEL USERMODE HELPER
10322 M:      Luis Chamberlain <mcgrof@kernel.org>
10323 L:      linux-kernel@vger.kernel.org
10324 S:      Maintained
10325 F:      include/linux/umh.h
10326 F:      kernel/umh.c
10327
10328 KERNEL VIRTUAL MACHINE (KVM)
10329 M:      Paolo Bonzini <pbonzini@redhat.com>
10330 L:      kvm@vger.kernel.org
10331 S:      Supported
10332 W:      http://www.linux-kvm.org
10333 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10334 F:      Documentation/virt/kvm/
10335 F:      include/asm-generic/kvm*
10336 F:      include/kvm/iodev.h
10337 F:      include/linux/kvm*
10338 F:      include/trace/events/kvm.h
10339 F:      include/uapi/asm-generic/kvm*
10340 F:      include/uapi/linux/kvm*
10341 F:      tools/kvm/
10342 F:      tools/testing/selftests/kvm/
10343 F:      virt/kvm/*
10344
10345 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10346 M:      Marc Zyngier <maz@kernel.org>
10347 R:      James Morse <james.morse@arm.com>
10348 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10349 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10351 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10352 S:      Maintained
10353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10354 F:      arch/arm64/include/asm/kvm*
10355 F:      arch/arm64/include/uapi/asm/kvm*
10356 F:      arch/arm64/kvm/
10357 F:      include/kvm/arm_*
10358 F:      tools/testing/selftests/kvm/*/aarch64/
10359 F:      tools/testing/selftests/kvm/aarch64/
10360
10361 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10362 M:      Huacai Chen <chenhuacai@kernel.org>
10363 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10364 L:      linux-mips@vger.kernel.org
10365 L:      kvm@vger.kernel.org
10366 S:      Maintained
10367 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10368 F:      arch/mips/include/asm/kvm*
10369 F:      arch/mips/include/uapi/asm/kvm*
10370 F:      arch/mips/kvm/
10371
10372 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10373 M:      Paul Mackerras <paulus@ozlabs.org>
10374 L:      kvm-ppc@vger.kernel.org
10375 S:      Supported
10376 W:      http://www.linux-kvm.org/
10377 T:      git git://github.com/agraf/linux-2.6.git
10378 F:      arch/powerpc/include/asm/kvm*
10379 F:      arch/powerpc/include/uapi/asm/kvm*
10380 F:      arch/powerpc/kernel/kvm*
10381 F:      arch/powerpc/kvm/
10382
10383 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10384 M:      Anup Patel <anup.patel@wdc.com>
10385 R:      Atish Patra <atish.patra@wdc.com>
10386 L:      kvm@vger.kernel.org
10387 L:      kvm-riscv@lists.infradead.org
10388 L:      linux-riscv@lists.infradead.org
10389 S:      Maintained
10390 T:      git git://github.com/kvm-riscv/linux.git
10391 F:      arch/riscv/include/asm/kvm*
10392 F:      arch/riscv/include/uapi/asm/kvm*
10393 F:      arch/riscv/kvm/
10394
10395 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10396 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10397 M:      Janosch Frank <frankja@linux.ibm.com>
10398 R:      David Hildenbrand <david@redhat.com>
10399 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10400 L:      kvm@vger.kernel.org
10401 S:      Supported
10402 W:      http://www.ibm.com/developerworks/linux/linux390/
10403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10404 F:      Documentation/virt/kvm/s390*
10405 F:      arch/s390/include/asm/gmap.h
10406 F:      arch/s390/include/asm/kvm*
10407 F:      arch/s390/include/uapi/asm/kvm*
10408 F:      arch/s390/kernel/uv.c
10409 F:      arch/s390/kvm/
10410 F:      arch/s390/mm/gmap.c
10411 F:      tools/testing/selftests/kvm/*/s390x/
10412 F:      tools/testing/selftests/kvm/s390x/
10413
10414 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10415 M:      Paolo Bonzini <pbonzini@redhat.com>
10416 R:      Sean Christopherson <seanjc@google.com>
10417 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10418 R:      Wanpeng Li <wanpengli@tencent.com>
10419 R:      Jim Mattson <jmattson@google.com>
10420 R:      Joerg Roedel <joro@8bytes.org>
10421 L:      kvm@vger.kernel.org
10422 S:      Supported
10423 W:      http://www.linux-kvm.org
10424 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10425 F:      arch/x86/include/asm/kvm*
10426 F:      arch/x86/include/asm/pvclock-abi.h
10427 F:      arch/x86/include/asm/svm.h
10428 F:      arch/x86/include/asm/vmx*.h
10429 F:      arch/x86/include/uapi/asm/kvm*
10430 F:      arch/x86/include/uapi/asm/svm.h
10431 F:      arch/x86/include/uapi/asm/vmx.h
10432 F:      arch/x86/kernel/kvm.c
10433 F:      arch/x86/kernel/kvmclock.c
10434 F:      arch/x86/kvm/
10435 F:      arch/x86/kvm/*/
10436
10437 KERNFS
10438 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10439 M:      Tejun Heo <tj@kernel.org>
10440 S:      Supported
10441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10442 F:      fs/kernfs/
10443 F:      include/linux/kernfs.h
10444
10445 KEXEC
10446 M:      Eric Biederman <ebiederm@xmission.com>
10447 L:      kexec@lists.infradead.org
10448 S:      Maintained
10449 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10450 F:      include/linux/kexec.h
10451 F:      include/uapi/linux/kexec.h
10452 F:      kernel/kexec*
10453
10454 KEYS-ENCRYPTED
10455 M:      Mimi Zohar <zohar@linux.ibm.com>
10456 L:      linux-integrity@vger.kernel.org
10457 L:      keyrings@vger.kernel.org
10458 S:      Supported
10459 F:      Documentation/security/keys/trusted-encrypted.rst
10460 F:      include/keys/encrypted-type.h
10461 F:      security/keys/encrypted-keys/
10462
10463 KEYS-TRUSTED
10464 M:      James Bottomley <jejb@linux.ibm.com>
10465 M:      Jarkko Sakkinen <jarkko@kernel.org>
10466 M:      Mimi Zohar <zohar@linux.ibm.com>
10467 L:      linux-integrity@vger.kernel.org
10468 L:      keyrings@vger.kernel.org
10469 S:      Supported
10470 F:      Documentation/security/keys/trusted-encrypted.rst
10471 F:      include/keys/trusted-type.h
10472 F:      include/keys/trusted_tpm.h
10473 F:      security/keys/trusted-keys/
10474
10475 KEYS-TRUSTED-TEE
10476 M:      Sumit Garg <sumit.garg@linaro.org>
10477 L:      linux-integrity@vger.kernel.org
10478 L:      keyrings@vger.kernel.org
10479 S:      Supported
10480 F:      include/keys/trusted_tee.h
10481 F:      security/keys/trusted-keys/trusted_tee.c
10482
10483 KEYS/KEYRINGS
10484 M:      David Howells <dhowells@redhat.com>
10485 M:      Jarkko Sakkinen <jarkko@kernel.org>
10486 L:      keyrings@vger.kernel.org
10487 S:      Maintained
10488 F:      Documentation/security/keys/core.rst
10489 F:      include/keys/
10490 F:      include/linux/key-type.h
10491 F:      include/linux/key.h
10492 F:      include/linux/keyctl.h
10493 F:      include/uapi/linux/keyctl.h
10494 F:      security/keys/
10495
10496 KFENCE
10497 M:      Alexander Potapenko <glider@google.com>
10498 M:      Marco Elver <elver@google.com>
10499 R:      Dmitry Vyukov <dvyukov@google.com>
10500 L:      kasan-dev@googlegroups.com
10501 S:      Maintained
10502 F:      Documentation/dev-tools/kfence.rst
10503 F:      arch/*/include/asm/kfence.h
10504 F:      include/linux/kfence.h
10505 F:      lib/Kconfig.kfence
10506 F:      mm/kfence/
10507
10508 KFIFO
10509 M:      Stefani Seibold <stefani@seibold.net>
10510 S:      Maintained
10511 F:      include/linux/kfifo.h
10512 F:      lib/kfifo.c
10513 F:      samples/kfifo/
10514
10515 KGDB / KDB /debug_core
10516 M:      Jason Wessel <jason.wessel@windriver.com>
10517 M:      Daniel Thompson <daniel.thompson@linaro.org>
10518 R:      Douglas Anderson <dianders@chromium.org>
10519 L:      kgdb-bugreport@lists.sourceforge.net
10520 S:      Maintained
10521 W:      http://kgdb.wiki.kernel.org/
10522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10523 F:      Documentation/dev-tools/kgdb.rst
10524 F:      drivers/misc/kgdbts.c
10525 F:      drivers/tty/serial/kgdboc.c
10526 F:      include/linux/kdb.h
10527 F:      include/linux/kgdb.h
10528 F:      kernel/debug/
10529
10530 KHADAS MCU MFD DRIVER
10531 M:      Neil Armstrong <narmstrong@baylibre.com>
10532 L:      linux-amlogic@lists.infradead.org
10533 S:      Maintained
10534 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10535 F:      drivers/mfd/khadas-mcu.c
10536 F:      include/linux/mfd/khadas-mcu.h
10537 F:      drivers/thermal/khadas_mcu_fan.c
10538
10539 KMEMLEAK
10540 M:      Catalin Marinas <catalin.marinas@arm.com>
10541 S:      Maintained
10542 F:      Documentation/dev-tools/kmemleak.rst
10543 F:      include/linux/kmemleak.h
10544 F:      mm/kmemleak.c
10545 F:      samples/kmemleak/kmemleak-test.c
10546
10547 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10548 M:      Luis Chamberlain <mcgrof@kernel.org>
10549 L:      linux-kernel@vger.kernel.org
10550 S:      Maintained
10551 F:      include/linux/kmod.h
10552 F:      kernel/kmod.c
10553 F:      lib/test_kmod.c
10554 F:      tools/testing/selftests/kmod/
10555
10556 KPROBES
10557 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10558 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10559 M:      "David S. Miller" <davem@davemloft.net>
10560 M:      Masami Hiramatsu <mhiramat@kernel.org>
10561 S:      Maintained
10562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10563 F:      Documentation/trace/kprobes.rst
10564 F:      include/asm-generic/kprobes.h
10565 F:      include/linux/kprobes.h
10566 F:      kernel/kprobes.c
10567 F:      lib/test_kprobes.c
10568 F:      samples/kprobes
10569
10570 KS0108 LCD CONTROLLER DRIVER
10571 M:      Miguel Ojeda <ojeda@kernel.org>
10572 S:      Maintained
10573 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10574 F:      drivers/auxdisplay/ks0108.c
10575 F:      include/linux/ks0108.h
10576
10577 KTD253 BACKLIGHT DRIVER
10578 M:      Linus Walleij <linus.walleij@linaro.org>
10579 S:      Maintained
10580 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10581 F:      drivers/video/backlight/ktd253-backlight.c
10582
10583 KTEST
10584 M:      Steven Rostedt <rostedt@goodmis.org>
10585 M:      John Hawley <warthog9@eaglescrag.net>
10586 S:      Maintained
10587 F:      tools/testing/ktest
10588
10589 L3MDEV
10590 M:      David Ahern <dsahern@kernel.org>
10591 L:      netdev@vger.kernel.org
10592 S:      Maintained
10593 F:      include/net/l3mdev.h
10594 F:      net/l3mdev
10595
10596 L7 BPF FRAMEWORK
10597 M:      John Fastabend <john.fastabend@gmail.com>
10598 M:      Daniel Borkmann <daniel@iogearbox.net>
10599 M:      Jakub Sitnicki <jakub@cloudflare.com>
10600 M:      Lorenz Bauer <lmb@cloudflare.com>
10601 L:      netdev@vger.kernel.org
10602 L:      bpf@vger.kernel.org
10603 S:      Maintained
10604 F:      include/linux/skmsg.h
10605 F:      net/core/skmsg.c
10606 F:      net/core/sock_map.c
10607 F:      net/ipv4/tcp_bpf.c
10608 F:      net/ipv4/udp_bpf.c
10609 F:      net/unix/unix_bpf.c
10610
10611 LANDLOCK SECURITY MODULE
10612 M:      Mickaël Salaün <mic@digikod.net>
10613 L:      linux-security-module@vger.kernel.org
10614 S:      Supported
10615 W:      https://landlock.io
10616 T:      git https://github.com/landlock-lsm/linux.git
10617 F:      Documentation/security/landlock.rst
10618 F:      Documentation/userspace-api/landlock.rst
10619 F:      include/uapi/linux/landlock.h
10620 F:      samples/landlock/
10621 F:      security/landlock/
10622 F:      tools/testing/selftests/landlock/
10623 K:      landlock
10624 K:      LANDLOCK
10625
10626 LANTIQ / INTEL Ethernet drivers
10627 M:      Hauke Mehrtens <hauke@hauke-m.de>
10628 L:      netdev@vger.kernel.org
10629 S:      Maintained
10630 F:      drivers/net/dsa/lantiq_gswip.c
10631 F:      drivers/net/dsa/lantiq_pce.h
10632 F:      drivers/net/ethernet/lantiq_xrx200.c
10633 F:      net/dsa/tag_gswip.c
10634
10635 LANTIQ MIPS ARCHITECTURE
10636 M:      John Crispin <john@phrozen.org>
10637 L:      linux-mips@vger.kernel.org
10638 S:      Maintained
10639 F:      arch/mips/lantiq
10640 F:      drivers/soc/lantiq
10641
10642 LASI 53c700 driver for PARISC
10643 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10644 L:      linux-scsi@vger.kernel.org
10645 S:      Maintained
10646 F:      Documentation/scsi/53c700.rst
10647 F:      drivers/scsi/53c700*
10648
10649 LEAKING_ADDRESSES
10650 M:      Tobin C. Harding <me@tobin.cc>
10651 M:      Tycho Andersen <tycho@tycho.pizza>
10652 L:      linux-hardening@vger.kernel.org
10653 S:      Maintained
10654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10655 F:      scripts/leaking_addresses.pl
10656
10657 LED SUBSYSTEM
10658 M:      Pavel Machek <pavel@ucw.cz>
10659 L:      linux-leds@vger.kernel.org
10660 S:      Maintained
10661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10662 F:      Documentation/devicetree/bindings/leds/
10663 F:      drivers/leds/
10664 F:      include/linux/leds.h
10665
10666 LEGACY EEPROM DRIVER
10667 M:      Jean Delvare <jdelvare@suse.com>
10668 S:      Maintained
10669 F:      Documentation/misc-devices/eeprom.rst
10670 F:      drivers/misc/eeprom/eeprom.c
10671
10672 LEGO MINDSTORMS EV3
10673 R:      David Lechner <david@lechnology.com>
10674 S:      Maintained
10675 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10676 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10677 F:      drivers/power/supply/lego_ev3_battery.c
10678
10679 LEGO USB Tower driver
10680 M:      Juergen Stuber <starblue@users.sourceforge.net>
10681 L:      legousb-devel@lists.sourceforge.net
10682 S:      Maintained
10683 W:      http://legousb.sourceforge.net/
10684 F:      drivers/usb/misc/legousbtower.c
10685
10686 LG LAPTOP EXTRAS
10687 M:      Matan Ziv-Av <matan@svgalib.org>
10688 L:      platform-driver-x86@vger.kernel.org
10689 S:      Maintained
10690 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10691 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10692 F:      drivers/platform/x86/lg-laptop.c
10693
10694 LG2160 MEDIA DRIVER
10695 M:      Michael Krufky <mkrufky@linuxtv.org>
10696 L:      linux-media@vger.kernel.org
10697 S:      Maintained
10698 W:      https://linuxtv.org
10699 W:      http://github.com/mkrufky
10700 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10701 T:      git git://linuxtv.org/mkrufky/tuners.git
10702 F:      drivers/media/dvb-frontends/lg2160.*
10703
10704 LGDT3305 MEDIA DRIVER
10705 M:      Michael Krufky <mkrufky@linuxtv.org>
10706 L:      linux-media@vger.kernel.org
10707 S:      Maintained
10708 W:      https://linuxtv.org
10709 W:      http://github.com/mkrufky
10710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10711 T:      git git://linuxtv.org/mkrufky/tuners.git
10712 F:      drivers/media/dvb-frontends/lgdt3305.*
10713
10714 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10715 M:      Viresh Kumar <vireshk@kernel.org>
10716 L:      linux-ide@vger.kernel.org
10717 S:      Maintained
10718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10719 F:      drivers/ata/pata_arasan_cf.c
10720 F:      include/linux/pata_arasan_cf_data.h
10721
10722 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10723 M:      Linus Walleij <linus.walleij@linaro.org>
10724 L:      linux-ide@vger.kernel.org
10725 S:      Maintained
10726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10727 F:      drivers/ata/pata_ftide010.c
10728 F:      drivers/ata/sata_gemini.c
10729 F:      drivers/ata/sata_gemini.h
10730
10731 LIBATA SATA AHCI PLATFORM devices support
10732 M:      Hans de Goede <hdegoede@redhat.com>
10733 M:      Jens Axboe <axboe@kernel.dk>
10734 L:      linux-ide@vger.kernel.org
10735 S:      Maintained
10736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10737 F:      drivers/ata/ahci_platform.c
10738 F:      drivers/ata/libahci_platform.c
10739 F:      include/linux/ahci_platform.h
10740
10741 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10742 M:      Mikael Pettersson <mikpelinux@gmail.com>
10743 L:      linux-ide@vger.kernel.org
10744 S:      Maintained
10745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10746 F:      drivers/ata/sata_promise.*
10747
10748 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10749 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10750 L:      linux-ide@vger.kernel.org
10751 S:      Maintained
10752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10753 F:      Documentation/devicetree/bindings/ata/
10754 F:      drivers/ata/
10755 F:      include/linux/ata.h
10756 F:      include/linux/libata.h
10757
10758 LIBLOCKDEP
10759 M:      Sasha Levin <alexander.levin@microsoft.com>
10760 S:      Maintained
10761 F:      tools/lib/lockdep/
10762
10763 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10764 M:      Dan Williams <dan.j.williams@intel.com>
10765 M:      Vishal Verma <vishal.l.verma@intel.com>
10766 M:      Dave Jiang <dave.jiang@intel.com>
10767 L:      nvdimm@lists.linux.dev
10768 S:      Supported
10769 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10770 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10771 F:      drivers/nvdimm/blk.c
10772 F:      drivers/nvdimm/region_devs.c
10773
10774 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10775 M:      Vishal Verma <vishal.l.verma@intel.com>
10776 M:      Dan Williams <dan.j.williams@intel.com>
10777 M:      Dave Jiang <dave.jiang@intel.com>
10778 L:      nvdimm@lists.linux.dev
10779 S:      Supported
10780 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10781 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10782 F:      drivers/nvdimm/btt*
10783
10784 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10785 M:      Dan Williams <dan.j.williams@intel.com>
10786 M:      Vishal Verma <vishal.l.verma@intel.com>
10787 M:      Dave Jiang <dave.jiang@intel.com>
10788 L:      nvdimm@lists.linux.dev
10789 S:      Supported
10790 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10791 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10792 F:      drivers/nvdimm/pmem*
10793
10794 LIBNVDIMM: DEVICETREE BINDINGS
10795 M:      Oliver O'Halloran <oohall@gmail.com>
10796 L:      nvdimm@lists.linux.dev
10797 S:      Supported
10798 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10799 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10800 F:      drivers/nvdimm/of_pmem.c
10801
10802 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10803 M:      Dan Williams <dan.j.williams@intel.com>
10804 M:      Vishal Verma <vishal.l.verma@intel.com>
10805 M:      Dave Jiang <dave.jiang@intel.com>
10806 M:      Ira Weiny <ira.weiny@intel.com>
10807 L:      nvdimm@lists.linux.dev
10808 S:      Supported
10809 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10810 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10812 F:      drivers/acpi/nfit/*
10813 F:      drivers/nvdimm/*
10814 F:      include/linux/libnvdimm.h
10815 F:      include/linux/nd.h
10816 F:      include/uapi/linux/ndctl.h
10817 F:      tools/testing/nvdimm/
10818
10819 LICENSES and SPDX stuff
10820 M:      Thomas Gleixner <tglx@linutronix.de>
10821 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10822 L:      linux-spdx@vger.kernel.org
10823 S:      Maintained
10824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10825 F:      COPYING
10826 F:      Documentation/process/license-rules.rst
10827 F:      LICENSES/
10828 F:      scripts/spdxcheck-test.sh
10829 F:      scripts/spdxcheck.py
10830
10831 LINEAR RANGES HELPERS
10832 M:      Mark Brown <broonie@kernel.org>
10833 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10834 F:      lib/linear_ranges.c
10835 F:      lib/test_linear_ranges.c
10836 F:      include/linux/linear_range.h
10837
10838 LINUX FOR POWER MACINTOSH
10839 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10840 L:      linuxppc-dev@lists.ozlabs.org
10841 S:      Odd Fixes
10842 F:      arch/powerpc/platforms/powermac/
10843 F:      drivers/macintosh/
10844
10845 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10846 M:      Michael Ellerman <mpe@ellerman.id.au>
10847 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10848 R:      Paul Mackerras <paulus@samba.org>
10849 L:      linuxppc-dev@lists.ozlabs.org
10850 S:      Supported
10851 W:      https://github.com/linuxppc/wiki/wiki
10852 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10854 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10855 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10856 F:      Documentation/devicetree/bindings/powerpc/
10857 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10858 F:      Documentation/powerpc/
10859 F:      arch/powerpc/
10860 F:      drivers/*/*/*pasemi*
10861 F:      drivers/*/*pasemi*
10862 F:      drivers/char/tpm/tpm_ibmvtpm*
10863 F:      drivers/crypto/nx/
10864 F:      drivers/crypto/vmx/
10865 F:      drivers/i2c/busses/i2c-opal.c
10866 F:      drivers/net/ethernet/ibm/ibmveth.*
10867 F:      drivers/net/ethernet/ibm/ibmvnic.*
10868 F:      drivers/pci/hotplug/pnv_php.c
10869 F:      drivers/pci/hotplug/rpa*
10870 F:      drivers/rtc/rtc-opal.c
10871 F:      drivers/scsi/ibmvscsi/
10872 F:      drivers/tty/hvc/hvc_opal.c
10873 F:      drivers/watchdog/wdrtas.c
10874 F:      tools/testing/selftests/powerpc
10875 N:      /pmac
10876 N:      powermac
10877 N:      powernv
10878 N:      [^a-z0-9]ps3
10879 N:      pseries
10880
10881 LINUX FOR POWERPC EMBEDDED MPC5XXX
10882 M:      Anatolij Gustschin <agust@denx.de>
10883 L:      linuxppc-dev@lists.ozlabs.org
10884 S:      Odd Fixes
10885 F:      arch/powerpc/platforms/512x/
10886 F:      arch/powerpc/platforms/52xx/
10887
10888 LINUX FOR POWERPC EMBEDDED PPC4XX
10889 L:      linuxppc-dev@lists.ozlabs.org
10890 S:      Orphan
10891 F:      arch/powerpc/platforms/40x/
10892 F:      arch/powerpc/platforms/44x/
10893
10894 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10895 M:      Scott Wood <oss@buserror.net>
10896 L:      linuxppc-dev@lists.ozlabs.org
10897 S:      Odd fixes
10898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10899 F:      Documentation/devicetree/bindings/powerpc/fsl/
10900 F:      arch/powerpc/platforms/83xx/
10901 F:      arch/powerpc/platforms/85xx/
10902
10903 LINUX FOR POWERPC EMBEDDED PPC8XX
10904 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10905 L:      linuxppc-dev@lists.ozlabs.org
10906 S:      Maintained
10907 F:      arch/powerpc/platforms/8xx/
10908
10909 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10910 M:      Kees Cook <keescook@chromium.org>
10911 S:      Maintained
10912 F:      drivers/misc/lkdtm/*
10913 F:      tools/testing/selftests/lkdtm/*
10914
10915 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10916 M:      Alan Stern <stern@rowland.harvard.edu>
10917 M:      Andrea Parri <parri.andrea@gmail.com>
10918 M:      Will Deacon <will@kernel.org>
10919 M:      Peter Zijlstra <peterz@infradead.org>
10920 M:      Boqun Feng <boqun.feng@gmail.com>
10921 M:      Nicholas Piggin <npiggin@gmail.com>
10922 M:      David Howells <dhowells@redhat.com>
10923 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10924 M:      Luc Maranget <luc.maranget@inria.fr>
10925 M:      "Paul E. McKenney" <paulmck@kernel.org>
10926 R:      Akira Yokosawa <akiyks@gmail.com>
10927 R:      Daniel Lustig <dlustig@nvidia.com>
10928 R:      Joel Fernandes <joel@joelfernandes.org>
10929 L:      linux-kernel@vger.kernel.org
10930 L:      linux-arch@vger.kernel.org
10931 S:      Supported
10932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10933 F:      Documentation/atomic_bitops.txt
10934 F:      Documentation/atomic_t.txt
10935 F:      Documentation/core-api/refcount-vs-atomic.rst
10936 F:      Documentation/litmus-tests/
10937 F:      Documentation/memory-barriers.txt
10938 F:      tools/memory-model/
10939
10940 LIS3LV02D ACCELEROMETER DRIVER
10941 M:      Eric Piel <eric.piel@tremplin-utc.net>
10942 S:      Maintained
10943 F:      Documentation/misc-devices/lis3lv02d.rst
10944 F:      drivers/misc/lis3lv02d/
10945 F:      drivers/platform/x86/hp_accel.c
10946
10947 LIST KUNIT TEST
10948 M:      David Gow <davidgow@google.com>
10949 L:      linux-kselftest@vger.kernel.org
10950 L:      kunit-dev@googlegroups.com
10951 S:      Maintained
10952 F:      lib/list-test.c
10953
10954 LITEX PLATFORM
10955 M:      Karol Gugala <kgugala@antmicro.com>
10956 M:      Mateusz Holenko <mholenko@antmicro.com>
10957 S:      Maintained
10958 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10959 F:      arch/openrisc/boot/dts/or1klitex.dts
10960 F:      drivers/soc/litex/litex_soc_ctrl.c
10961 F:      drivers/tty/serial/liteuart.c
10962 F:      include/linux/litex.h
10963
10964 LIVE PATCHING
10965 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10966 M:      Jiri Kosina <jikos@kernel.org>
10967 M:      Miroslav Benes <mbenes@suse.cz>
10968 M:      Petr Mladek <pmladek@suse.com>
10969 R:      Joe Lawrence <joe.lawrence@redhat.com>
10970 L:      live-patching@vger.kernel.org
10971 S:      Maintained
10972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10973 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10974 F:      Documentation/livepatch/
10975 F:      arch/powerpc/include/asm/livepatch.h
10976 F:      arch/s390/include/asm/livepatch.h
10977 F:      arch/x86/include/asm/livepatch.h
10978 F:      include/linux/livepatch.h
10979 F:      kernel/livepatch/
10980 F:      lib/livepatch/
10981 F:      samples/livepatch/
10982 F:      tools/testing/selftests/livepatch/
10983
10984 LLC (802.2)
10985 L:      netdev@vger.kernel.org
10986 S:      Odd fixes
10987 F:      include/linux/llc.h
10988 F:      include/net/llc*
10989 F:      include/uapi/linux/llc.h
10990 F:      net/llc/
10991
10992 LM73 HARDWARE MONITOR DRIVER
10993 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10994 L:      linux-hwmon@vger.kernel.org
10995 S:      Maintained
10996 F:      drivers/hwmon/lm73.c
10997
10998 LM78 HARDWARE MONITOR DRIVER
10999 M:      Jean Delvare <jdelvare@suse.com>
11000 L:      linux-hwmon@vger.kernel.org
11001 S:      Maintained
11002 F:      Documentation/hwmon/lm78.rst
11003 F:      drivers/hwmon/lm78.c
11004
11005 LM83 HARDWARE MONITOR DRIVER
11006 M:      Jean Delvare <jdelvare@suse.com>
11007 L:      linux-hwmon@vger.kernel.org
11008 S:      Maintained
11009 F:      Documentation/hwmon/lm83.rst
11010 F:      drivers/hwmon/lm83.c
11011
11012 LM90 HARDWARE MONITOR DRIVER
11013 M:      Jean Delvare <jdelvare@suse.com>
11014 L:      linux-hwmon@vger.kernel.org
11015 S:      Maintained
11016 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11017 F:      Documentation/hwmon/lm90.rst
11018 F:      drivers/hwmon/lm90.c
11019 F:      include/dt-bindings/thermal/lm90.h
11020
11021 LM95234 HARDWARE MONITOR DRIVER
11022 M:      Guenter Roeck <linux@roeck-us.net>
11023 L:      linux-hwmon@vger.kernel.org
11024 S:      Maintained
11025 F:      Documentation/hwmon/lm95234.rst
11026 F:      drivers/hwmon/lm95234.c
11027
11028 LME2510 MEDIA DRIVER
11029 M:      Malcolm Priestley <tvboxspy@gmail.com>
11030 L:      linux-media@vger.kernel.org
11031 S:      Maintained
11032 W:      https://linuxtv.org
11033 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11034 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11035
11036 LOADPIN SECURITY MODULE
11037 M:      Kees Cook <keescook@chromium.org>
11038 S:      Supported
11039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11040 F:      Documentation/admin-guide/LSM/LoadPin.rst
11041 F:      security/loadpin/
11042
11043 LOCKING PRIMITIVES
11044 M:      Peter Zijlstra <peterz@infradead.org>
11045 M:      Ingo Molnar <mingo@redhat.com>
11046 M:      Will Deacon <will@kernel.org>
11047 R:      Waiman Long <longman@redhat.com>
11048 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11049 L:      linux-kernel@vger.kernel.org
11050 S:      Maintained
11051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11052 F:      Documentation/locking/
11053 F:      arch/*/include/asm/spinlock*.h
11054 F:      include/linux/lockdep.h
11055 F:      include/linux/mutex*.h
11056 F:      include/linux/rwlock*.h
11057 F:      include/linux/rwsem*.h
11058 F:      include/linux/seqlock.h
11059 F:      include/linux/spinlock*.h
11060 F:      kernel/locking/
11061 F:      lib/locking*.[ch]
11062 X:      kernel/locking/locktorture.c
11063
11064 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11065 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11066 L:      linux-ntfs-dev@lists.sourceforge.net
11067 S:      Maintained
11068 W:      http://www.linux-ntfs.org/content/view/19/37/
11069 F:      Documentation/admin-guide/ldm.rst
11070 F:      block/partitions/ldm.*
11071
11072 LOGITECH HID GAMING KEYBOARDS
11073 M:      Hans de Goede <hdegoede@redhat.com>
11074 L:      linux-input@vger.kernel.org
11075 S:      Maintained
11076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11077 F:      drivers/hid/hid-lg-g15.c
11078
11079 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11080 M:      Adrien Grassein <adrien.grassein@gmail.com>
11081 S:      Maintained
11082 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11083 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11084
11085 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11086 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11087 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11088 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11089 L:      MPT-FusionLinux.pdl@broadcom.com
11090 L:      linux-scsi@vger.kernel.org
11091 S:      Supported
11092 W:      http://www.avagotech.com/support/
11093 F:      drivers/message/fusion/
11094 F:      drivers/scsi/mpt3sas/
11095
11096 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11097 M:      Matthew Wilcox <willy@infradead.org>
11098 L:      linux-scsi@vger.kernel.org
11099 S:      Maintained
11100 F:      drivers/scsi/sym53c8xx_2/
11101
11102 LTC1660 DAC DRIVER
11103 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11104 L:      linux-iio@vger.kernel.org
11105 S:      Maintained
11106 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11107 F:      drivers/iio/dac/ltc1660.c
11108
11109 LTC2947 HARDWARE MONITOR DRIVER
11110 M:      Nuno Sá <nuno.sa@analog.com>
11111 L:      linux-hwmon@vger.kernel.org
11112 S:      Supported
11113 W:      http://ez.analog.com/community/linux-device-drivers
11114 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11115 F:      drivers/hwmon/ltc2947-core.c
11116 F:      drivers/hwmon/ltc2947-i2c.c
11117 F:      drivers/hwmon/ltc2947-spi.c
11118 F:      drivers/hwmon/ltc2947.h
11119
11120 LTC2983 IIO TEMPERATURE DRIVER
11121 M:      Nuno Sá <nuno.sa@analog.com>
11122 L:      linux-iio@vger.kernel.org
11123 S:      Supported
11124 W:      http://ez.analog.com/community/linux-device-drivers
11125 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11126 F:      drivers/iio/temperature/ltc2983.c
11127
11128 LTC4261 HARDWARE MONITOR DRIVER
11129 M:      Guenter Roeck <linux@roeck-us.net>
11130 L:      linux-hwmon@vger.kernel.org
11131 S:      Maintained
11132 F:      Documentation/hwmon/ltc4261.rst
11133 F:      drivers/hwmon/ltc4261.c
11134
11135 LTC4306 I2C MULTIPLEXER DRIVER
11136 M:      Michael Hennerich <michael.hennerich@analog.com>
11137 L:      linux-i2c@vger.kernel.org
11138 S:      Supported
11139 W:      http://ez.analog.com/community/linux-device-drivers
11140 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11141 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11142
11143 LTP (Linux Test Project)
11144 M:      Mike Frysinger <vapier@gentoo.org>
11145 M:      Cyril Hrubis <chrubis@suse.cz>
11146 M:      Wanlong Gao <wanlong.gao@gmail.com>
11147 M:      Jan Stancek <jstancek@redhat.com>
11148 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11149 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11150 L:      ltp@lists.linux.it (subscribers-only)
11151 S:      Maintained
11152 W:      http://linux-test-project.github.io/
11153 T:      git git://github.com/linux-test-project/ltp.git
11154
11155 LYNX PCS MODULE
11156 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11157 L:      netdev@vger.kernel.org
11158 S:      Supported
11159 F:      drivers/net/pcs/pcs-lynx.c
11160 F:      include/linux/pcs-lynx.h
11161
11162 M68K ARCHITECTURE
11163 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11164 L:      linux-m68k@lists.linux-m68k.org
11165 S:      Maintained
11166 W:      http://www.linux-m68k.org/
11167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11168 F:      arch/m68k/
11169 F:      drivers/zorro/
11170
11171 M68K ON APPLE MACINTOSH
11172 M:      Joshua Thompson <funaho@jurai.org>
11173 L:      linux-m68k@lists.linux-m68k.org
11174 S:      Maintained
11175 W:      http://www.mac.linux-m68k.org/
11176 F:      arch/m68k/mac/
11177 F:      drivers/macintosh/adb-iop.c
11178 F:      drivers/macintosh/via-macii.c
11179
11180 M68K ON HP9000/300
11181 M:      Philip Blundell <philb@gnu.org>
11182 S:      Maintained
11183 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11184 F:      arch/m68k/hp300/
11185
11186 M88DS3103 MEDIA DRIVER
11187 M:      Antti Palosaari <crope@iki.fi>
11188 L:      linux-media@vger.kernel.org
11189 S:      Maintained
11190 W:      https://linuxtv.org
11191 W:      http://palosaari.fi/linux/
11192 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11193 T:      git git://linuxtv.org/anttip/media_tree.git
11194 F:      drivers/media/dvb-frontends/m88ds3103*
11195
11196 M88RS2000 MEDIA DRIVER
11197 M:      Malcolm Priestley <tvboxspy@gmail.com>
11198 L:      linux-media@vger.kernel.org
11199 S:      Maintained
11200 W:      https://linuxtv.org
11201 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11202 F:      drivers/media/dvb-frontends/m88rs2000*
11203
11204 MA901 MASTERKIT USB FM RADIO DRIVER
11205 M:      Alexey Klimov <klimov.linux@gmail.com>
11206 L:      linux-media@vger.kernel.org
11207 S:      Maintained
11208 T:      git git://linuxtv.org/media_tree.git
11209 F:      drivers/media/radio/radio-ma901.c
11210
11211 MAC80211
11212 M:      Johannes Berg <johannes@sipsolutions.net>
11213 L:      linux-wireless@vger.kernel.org
11214 S:      Maintained
11215 W:      https://wireless.wiki.kernel.org/
11216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11218 F:      Documentation/networking/mac80211-injection.rst
11219 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11220 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11221 F:      include/net/mac80211.h
11222 F:      net/mac80211/
11223
11224 MAILBOX API
11225 M:      Jassi Brar <jassisinghbrar@gmail.com>
11226 L:      linux-kernel@vger.kernel.org
11227 S:      Maintained
11228 F:      drivers/mailbox/
11229 F:      include/linux/mailbox_client.h
11230 F:      include/linux/mailbox_controller.h
11231 F:      include/dt-bindings/mailbox/
11232 F:      Documentation/devicetree/bindings/mailbox/
11233
11234 MAILBOX ARM MHUv2
11235 M:      Viresh Kumar <viresh.kumar@linaro.org>
11236 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11237 L:      linux-kernel@vger.kernel.org
11238 S:      Maintained
11239 F:      drivers/mailbox/arm_mhuv2.c
11240 F:      include/linux/mailbox/arm_mhuv2_message.h
11241 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11242
11243 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11244 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11245 M:      Matt Johnston <matt@codeconstruct.com.au>
11246 L:      netdev@vger.kernel.org
11247 S:      Maintained
11248 F:      Documentation/networking/mctp.rst
11249 F:      drivers/net/mctp/
11250 F:      include/net/mctp.h
11251 F:      include/net/mctpdevice.h
11252 F:      include/net/netns/mctp.h
11253 F:      net/mctp/
11254
11255 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11256 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11257 L:      linux-man@vger.kernel.org
11258 S:      Maintained
11259 W:      http://www.kernel.org/doc/man-pages
11260
11261 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11262 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11263 L:      linux-mips@vger.kernel.org
11264 S:      Maintained
11265 F:      arch/mips/boot/dts/img/pistachio*
11266
11267 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11268 M:      Andrew Lunn <andrew@lunn.ch>
11269 M:      Vivien Didelot <vivien.didelot@gmail.com>
11270 L:      netdev@vger.kernel.org
11271 S:      Maintained
11272 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11273 F:      Documentation/networking/devlink/mv88e6xxx.rst
11274 F:      drivers/net/dsa/mv88e6xxx/
11275 F:      include/linux/dsa/mv88e6xxx.h
11276 F:      include/linux/platform_data/mv88e6xxx.h
11277
11278 MARVELL ARMADA 3700 PHY DRIVERS
11279 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11280 S:      Maintained
11281 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11282 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11283 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11284 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11285
11286 MARVELL ARMADA DRM SUPPORT
11287 M:      Russell King <linux@armlinux.org.uk>
11288 S:      Maintained
11289 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11290 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11291 F:      Documentation/devicetree/bindings/display/armada/
11292 F:      drivers/gpu/drm/armada/
11293 F:      include/uapi/drm/armada_drm.h
11294
11295 MARVELL CRYPTO DRIVER
11296 M:      Boris Brezillon <bbrezillon@kernel.org>
11297 M:      Arnaud Ebalard <arno@natisbad.org>
11298 M:      Srujana Challa <schalla@marvell.com>
11299 L:      linux-crypto@vger.kernel.org
11300 S:      Maintained
11301 F:      drivers/crypto/marvell/
11302 F:      include/linux/soc/marvell/octeontx2/
11303
11304 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11305 M:      Mirko Lindner <mlindner@marvell.com>
11306 M:      Stephen Hemminger <stephen@networkplumber.org>
11307 L:      netdev@vger.kernel.org
11308 S:      Maintained
11309 F:      drivers/net/ethernet/marvell/sk*
11310
11311 MARVELL LIBERTAS WIRELESS DRIVER
11312 L:      libertas-dev@lists.infradead.org
11313 S:      Orphan
11314 F:      drivers/net/wireless/marvell/libertas/
11315
11316 MARVELL MACCHIATOBIN SUPPORT
11317 M:      Russell King <linux@armlinux.org.uk>
11318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11319 S:      Maintained
11320 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11321
11322 MARVELL MV643XX ETHERNET DRIVER
11323 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11324 L:      netdev@vger.kernel.org
11325 S:      Maintained
11326 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11327 F:      include/linux/mv643xx.h
11328
11329 MARVELL MV88X3310 PHY DRIVER
11330 M:      Russell King <linux@armlinux.org.uk>
11331 M:      Marek Behún <kabel@kernel.org>
11332 L:      netdev@vger.kernel.org
11333 S:      Maintained
11334 F:      drivers/net/phy/marvell10g.c
11335
11336 MARVELL MVEBU THERMAL DRIVER
11337 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11338 S:      Maintained
11339 F:      drivers/thermal/armada_thermal.c
11340
11341 MARVELL MVNETA ETHERNET DRIVER
11342 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11343 L:      netdev@vger.kernel.org
11344 S:      Maintained
11345 F:      drivers/net/ethernet/marvell/mvneta.*
11346
11347 MARVELL MVPP2 ETHERNET DRIVER
11348 M:      Marcin Wojtas <mw@semihalf.com>
11349 M:      Russell King <linux@armlinux.org.uk>
11350 L:      netdev@vger.kernel.org
11351 S:      Maintained
11352 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11353 F:      drivers/net/ethernet/marvell/mvpp2/
11354
11355 MARVELL MWIFIEX WIRELESS DRIVER
11356 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11357 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11358 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11359 M:      Xinming Hu <huxinming820@gmail.com>
11360 L:      linux-wireless@vger.kernel.org
11361 S:      Maintained
11362 F:      drivers/net/wireless/marvell/mwifiex/
11363
11364 MARVELL MWL8K WIRELESS DRIVER
11365 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11366 L:      linux-wireless@vger.kernel.org
11367 S:      Odd Fixes
11368 F:      drivers/net/wireless/marvell/mwl8k.c
11369
11370 MARVELL NAND CONTROLLER DRIVER
11371 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11372 L:      linux-mtd@lists.infradead.org
11373 S:      Maintained
11374 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11375 F:      drivers/mtd/nand/raw/marvell_nand.c
11376
11377 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11378 M:      Sunil Goutham <sgoutham@marvell.com>
11379 M:      Geetha sowjanya <gakula@marvell.com>
11380 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11381 M:      hariprasad <hkelam@marvell.com>
11382 L:      netdev@vger.kernel.org
11383 S:      Supported
11384 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11385 F:      include/linux/soc/marvell/octeontx2/
11386
11387 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11388 M:      Sunil Goutham <sgoutham@marvell.com>
11389 M:      Linu Cherian <lcherian@marvell.com>
11390 M:      Geetha sowjanya <gakula@marvell.com>
11391 M:      Jerin Jacob <jerinj@marvell.com>
11392 M:      hariprasad <hkelam@marvell.com>
11393 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11394 L:      netdev@vger.kernel.org
11395 S:      Supported
11396 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11397 F:      drivers/net/ethernet/marvell/octeontx2/af/
11398
11399 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11400 M:      Taras Chornyi <tchornyi@marvell.com>
11401 S:      Supported
11402 W:      https://github.com/Marvell-switching/switchdev-prestera
11403 F:      drivers/net/ethernet/marvell/prestera/
11404
11405 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11406 M:      Nicolas Pitre <nico@fluxnic.net>
11407 S:      Odd Fixes
11408 F:      drivers/mmc/host/mvsdio.*
11409
11410 MARVELL USB MDIO CONTROLLER DRIVER
11411 M:      Tobias Waldekranz <tobias@waldekranz.com>
11412 L:      netdev@vger.kernel.org
11413 S:      Maintained
11414 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11415 F:      drivers/net/mdio/mdio-mvusb.c
11416
11417 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11418 M:      Hu Ziji <huziji@marvell.com>
11419 L:      linux-mmc@vger.kernel.org
11420 S:      Supported
11421 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11422 F:      drivers/mmc/host/sdhci-xenon*
11423
11424 MATROX FRAMEBUFFER DRIVER
11425 L:      linux-fbdev@vger.kernel.org
11426 S:      Orphan
11427 F:      drivers/video/fbdev/matrox/matroxfb_*
11428 F:      include/uapi/linux/matroxfb.h
11429
11430 MAX15301 DRIVER
11431 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11432 L:      linux-hwmon@vger.kernel.org
11433 S:      Maintained
11434 F:      Documentation/hwmon/max15301.rst
11435 F:      drivers/hwmon/pmbus/max15301.c
11436
11437 MAX16065 HARDWARE MONITOR DRIVER
11438 M:      Guenter Roeck <linux@roeck-us.net>
11439 L:      linux-hwmon@vger.kernel.org
11440 S:      Maintained
11441 F:      Documentation/hwmon/max16065.rst
11442 F:      drivers/hwmon/max16065.c
11443
11444 MAX2175 SDR TUNER DRIVER
11445 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11446 L:      linux-media@vger.kernel.org
11447 S:      Maintained
11448 T:      git git://linuxtv.org/media_tree.git
11449 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11450 F:      Documentation/userspace-api/media/drivers/max2175.rst
11451 F:      drivers/media/i2c/max2175*
11452 F:      include/uapi/linux/max2175.h
11453
11454 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11455 L:      linux-hwmon@vger.kernel.org
11456 S:      Orphan
11457 F:      Documentation/hwmon/max6650.rst
11458 F:      drivers/hwmon/max6650.c
11459
11460 MAX6697 HARDWARE MONITOR DRIVER
11461 M:      Guenter Roeck <linux@roeck-us.net>
11462 L:      linux-hwmon@vger.kernel.org
11463 S:      Maintained
11464 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11465 F:      Documentation/hwmon/max6697.rst
11466 F:      drivers/hwmon/max6697.c
11467 F:      include/linux/platform_data/max6697.h
11468
11469 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11470 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11471 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11472 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11473 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11474 L:      linux-media@vger.kernel.org
11475 S:      Maintained
11476 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11477 F:      drivers/media/i2c/max9286.c
11478
11479 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11480 M:      Peter Rosin <peda@axentia.se>
11481 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11482 S:      Maintained
11483 F:      Documentation/devicetree/bindings/sound/max9860.txt
11484 F:      sound/soc/codecs/max9860.*
11485
11486 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11487 M:      Andreas Klinger <ak@it-klinger.de>
11488 L:      linux-iio@vger.kernel.org
11489 S:      Maintained
11490 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11491 F:      drivers/iio/proximity/mb1232.c
11492
11493 MAXIM MAX77650 PMIC MFD DRIVER
11494 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11495 L:      linux-kernel@vger.kernel.org
11496 S:      Maintained
11497 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11498 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11499 F:      drivers/gpio/gpio-max77650.c
11500 F:      drivers/input/misc/max77650-onkey.c
11501 F:      drivers/leds/leds-max77650.c
11502 F:      drivers/mfd/max77650.c
11503 F:      drivers/power/supply/max77650-charger.c
11504 F:      drivers/regulator/max77650-regulator.c
11505 F:      include/linux/mfd/max77650.h
11506
11507 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11508 M:      Javier Martinez Canillas <javier@dowhile0.org>
11509 L:      linux-kernel@vger.kernel.org
11510 S:      Supported
11511 F:      Documentation/devicetree/bindings/*/*max77802.txt
11512 F:      drivers/regulator/max77802-regulator.c
11513 F:      include/dt-bindings/*/*max77802.h
11514
11515 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11516 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11517 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11518 L:      linux-pm@vger.kernel.org
11519 S:      Supported
11520 F:      drivers/power/supply/max14577_charger.c
11521 F:      drivers/power/supply/max77693_charger.c
11522
11523 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11524 M:      Chanwoo Choi <cw00.choi@samsung.com>
11525 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11526 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11527 L:      linux-kernel@vger.kernel.org
11528 S:      Supported
11529 F:      Documentation/devicetree/bindings/*/max77686.txt
11530 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11531 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11532 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11533 F:      drivers/*/max14577*.c
11534 F:      drivers/*/max77686*.c
11535 F:      drivers/*/max77693*.c
11536 F:      drivers/clk/clk-max77686.c
11537 F:      drivers/extcon/extcon-max14577.c
11538 F:      drivers/extcon/extcon-max77693.c
11539 F:      drivers/rtc/rtc-max77686.c
11540 F:      include/linux/mfd/max14577*.h
11541 F:      include/linux/mfd/max77686*.h
11542 F:      include/linux/mfd/max77693*.h
11543
11544 MAXIRADIO FM RADIO RECEIVER DRIVER
11545 M:      Hans Verkuil <hverkuil@xs4all.nl>
11546 L:      linux-media@vger.kernel.org
11547 S:      Maintained
11548 W:      https://linuxtv.org
11549 T:      git git://linuxtv.org/media_tree.git
11550 F:      drivers/media/radio/radio-maxiradio*
11551
11552 MAXLINEAR ETHERNET PHY DRIVER
11553 M:      Xu Liang <lxu@maxlinear.com>
11554 L:      netdev@vger.kernel.org
11555 S:      Supported
11556 F:      drivers/net/phy/mxl-gpy.c
11557
11558 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11559 R:      Yasushi SHOJI <yashi@spacecubics.com>
11560 L:      linux-can@vger.kernel.org
11561 S:      Maintained
11562 F:      drivers/net/can/usb/mcba_usb.c
11563
11564 MCAN MMIO DEVICE DRIVER
11565 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11566 L:      linux-can@vger.kernel.org
11567 S:      Maintained
11568 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11569 F:      drivers/net/can/m_can/m_can.c
11570 F:      drivers/net/can/m_can/m_can.h
11571 F:      drivers/net/can/m_can/m_can_platform.c
11572
11573 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11574 M:      Rishi Gupta <gupt21@gmail.com>
11575 L:      linux-i2c@vger.kernel.org
11576 L:      linux-input@vger.kernel.org
11577 S:      Maintained
11578 F:      drivers/hid/hid-mcp2221.c
11579
11580 MCP251XFD SPI-CAN NETWORK DRIVER
11581 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11582 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11583 R:      Thomas Kopp <thomas.kopp@microchip.com>
11584 L:      linux-can@vger.kernel.org
11585 S:      Maintained
11586 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11587 F:      drivers/net/can/spi/mcp251xfd/
11588
11589 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11590 M:      Peter Rosin <peda@axentia.se>
11591 L:      linux-iio@vger.kernel.org
11592 S:      Maintained
11593 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11594 F:      drivers/iio/potentiometer/mcp4018.c
11595 F:      drivers/iio/potentiometer/mcp4531.c
11596
11597 MCR20A IEEE-802.15.4 RADIO DRIVER
11598 M:      Xue Liu <liuxuenetmail@gmail.com>
11599 L:      linux-wpan@vger.kernel.org
11600 S:      Maintained
11601 W:      https://github.com/xueliu/mcr20a-linux
11602 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11603 F:      drivers/net/ieee802154/mcr20a.c
11604 F:      drivers/net/ieee802154/mcr20a.h
11605
11606 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11607 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11608 L:      linux-iio@vger.kernel.org
11609 S:      Maintained
11610 F:      drivers/iio/dac/cio-dac.c
11611
11612 MEDIA CONTROLLER FRAMEWORK
11613 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11614 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11615 L:      linux-media@vger.kernel.org
11616 S:      Supported
11617 W:      https://www.linuxtv.org
11618 T:      git git://linuxtv.org/media_tree.git
11619 F:      drivers/media/mc/
11620 F:      include/media/media-*.h
11621 F:      include/uapi/linux/media.h
11622
11623 MEDIA DRIVER FOR FREESCALE IMX PXP
11624 M:      Philipp Zabel <p.zabel@pengutronix.de>
11625 L:      linux-media@vger.kernel.org
11626 S:      Maintained
11627 T:      git git://linuxtv.org/media_tree.git
11628 F:      drivers/media/platform/imx-pxp.[ch]
11629
11630 MEDIA DRIVERS FOR ASCOT2E
11631 M:      Sergey Kozlov <serjk@netup.ru>
11632 M:      Abylay Ospan <aospan@netup.ru>
11633 L:      linux-media@vger.kernel.org
11634 S:      Supported
11635 W:      https://linuxtv.org
11636 W:      http://netup.tv/
11637 T:      git git://linuxtv.org/media_tree.git
11638 F:      drivers/media/dvb-frontends/ascot2e*
11639
11640 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11641 M:      Jasmin Jessich <jasmin@anw.at>
11642 L:      linux-media@vger.kernel.org
11643 S:      Maintained
11644 W:      https://linuxtv.org
11645 T:      git git://linuxtv.org/media_tree.git
11646 F:      drivers/media/dvb-frontends/cxd2099*
11647
11648 MEDIA DRIVERS FOR CXD2841ER
11649 M:      Sergey Kozlov <serjk@netup.ru>
11650 M:      Abylay Ospan <aospan@netup.ru>
11651 L:      linux-media@vger.kernel.org
11652 S:      Supported
11653 W:      https://linuxtv.org
11654 W:      http://netup.tv/
11655 T:      git git://linuxtv.org/media_tree.git
11656 F:      drivers/media/dvb-frontends/cxd2841er*
11657
11658 MEDIA DRIVERS FOR CXD2880
11659 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11660 L:      linux-media@vger.kernel.org
11661 S:      Supported
11662 W:      http://linuxtv.org/
11663 T:      git git://linuxtv.org/media_tree.git
11664 F:      drivers/media/dvb-frontends/cxd2880/*
11665 F:      drivers/media/spi/cxd2880*
11666
11667 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11668 L:      linux-media@vger.kernel.org
11669 S:      Orphan
11670 W:      https://linuxtv.org
11671 T:      git git://linuxtv.org/media_tree.git
11672 F:      drivers/media/pci/ddbridge/*
11673
11674 MEDIA DRIVERS FOR FREESCALE IMX
11675 M:      Steve Longerbeam <slongerbeam@gmail.com>
11676 M:      Philipp Zabel <p.zabel@pengutronix.de>
11677 L:      linux-media@vger.kernel.org
11678 S:      Maintained
11679 T:      git git://linuxtv.org/media_tree.git
11680 F:      Documentation/admin-guide/media/imx.rst
11681 F:      Documentation/devicetree/bindings/media/imx.txt
11682 F:      drivers/staging/media/imx/
11683 F:      include/linux/imx-media.h
11684 F:      include/media/imx.h
11685
11686 MEDIA DRIVERS FOR FREESCALE IMX7
11687 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11688 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11689 L:      linux-media@vger.kernel.org
11690 S:      Maintained
11691 T:      git git://linuxtv.org/media_tree.git
11692 F:      Documentation/admin-guide/media/imx7.rst
11693 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11694 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11695 F:      drivers/staging/media/imx/imx7-media-csi.c
11696 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11697
11698 MEDIA DRIVERS FOR HELENE
11699 M:      Abylay Ospan <aospan@netup.ru>
11700 L:      linux-media@vger.kernel.org
11701 S:      Supported
11702 W:      https://linuxtv.org
11703 W:      http://netup.tv/
11704 T:      git git://linuxtv.org/media_tree.git
11705 F:      drivers/media/dvb-frontends/helene*
11706
11707 MEDIA DRIVERS FOR HORUS3A
11708 M:      Sergey Kozlov <serjk@netup.ru>
11709 M:      Abylay Ospan <aospan@netup.ru>
11710 L:      linux-media@vger.kernel.org
11711 S:      Supported
11712 W:      https://linuxtv.org
11713 W:      http://netup.tv/
11714 T:      git git://linuxtv.org/media_tree.git
11715 F:      drivers/media/dvb-frontends/horus3a*
11716
11717 MEDIA DRIVERS FOR LNBH25
11718 M:      Sergey Kozlov <serjk@netup.ru>
11719 M:      Abylay Ospan <aospan@netup.ru>
11720 L:      linux-media@vger.kernel.org
11721 S:      Supported
11722 W:      https://linuxtv.org
11723 W:      http://netup.tv/
11724 T:      git git://linuxtv.org/media_tree.git
11725 F:      drivers/media/dvb-frontends/lnbh25*
11726
11727 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11728 L:      linux-media@vger.kernel.org
11729 S:      Orphan
11730 W:      https://linuxtv.org
11731 T:      git git://linuxtv.org/media_tree.git
11732 F:      drivers/media/dvb-frontends/mxl5xx*
11733
11734 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11735 M:      Sergey Kozlov <serjk@netup.ru>
11736 M:      Abylay Ospan <aospan@netup.ru>
11737 L:      linux-media@vger.kernel.org
11738 S:      Supported
11739 W:      https://linuxtv.org
11740 W:      http://netup.tv/
11741 T:      git git://linuxtv.org/media_tree.git
11742 F:      drivers/media/pci/netup_unidvb/*
11743
11744 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11745 M:      Dmitry Osipenko <digetx@gmail.com>
11746 L:      linux-media@vger.kernel.org
11747 L:      linux-tegra@vger.kernel.org
11748 S:      Maintained
11749 T:      git git://linuxtv.org/media_tree.git
11750 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11751 F:      drivers/staging/media/tegra-vde/
11752
11753 MEDIA DRIVERS FOR RENESAS - CEU
11754 M:      Jacopo Mondi <jacopo@jmondi.org>
11755 L:      linux-media@vger.kernel.org
11756 L:      linux-renesas-soc@vger.kernel.org
11757 S:      Supported
11758 T:      git git://linuxtv.org/media_tree.git
11759 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11760 F:      drivers/media/platform/renesas-ceu.c
11761 F:      include/media/drv-intf/renesas-ceu.h
11762
11763 MEDIA DRIVERS FOR RENESAS - DRIF
11764 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11765 L:      linux-media@vger.kernel.org
11766 L:      linux-renesas-soc@vger.kernel.org
11767 S:      Supported
11768 T:      git git://linuxtv.org/media_tree.git
11769 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11770 F:      drivers/media/platform/rcar_drif.c
11771
11772 MEDIA DRIVERS FOR RENESAS - FCP
11773 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11774 L:      linux-media@vger.kernel.org
11775 L:      linux-renesas-soc@vger.kernel.org
11776 S:      Supported
11777 T:      git git://linuxtv.org/media_tree.git
11778 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11779 F:      drivers/media/platform/rcar-fcp.c
11780 F:      include/media/rcar-fcp.h
11781
11782 MEDIA DRIVERS FOR RENESAS - FDP1
11783 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11784 L:      linux-media@vger.kernel.org
11785 L:      linux-renesas-soc@vger.kernel.org
11786 S:      Supported
11787 T:      git git://linuxtv.org/media_tree.git
11788 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11789 F:      drivers/media/platform/rcar_fdp1.c
11790
11791 MEDIA DRIVERS FOR RENESAS - VIN
11792 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11793 L:      linux-media@vger.kernel.org
11794 L:      linux-renesas-soc@vger.kernel.org
11795 S:      Supported
11796 T:      git git://linuxtv.org/media_tree.git
11797 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11798 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11799 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11800 F:      drivers/media/platform/rcar-isp.c
11801 F:      drivers/media/platform/rcar-vin/
11802
11803 MEDIA DRIVERS FOR RENESAS - VSP1
11804 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11805 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11806 L:      linux-media@vger.kernel.org
11807 L:      linux-renesas-soc@vger.kernel.org
11808 S:      Supported
11809 T:      git git://linuxtv.org/media_tree.git
11810 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11811 F:      drivers/media/platform/vsp1/
11812
11813 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11814 L:      linux-media@vger.kernel.org
11815 S:      Orphan
11816 W:      https://linuxtv.org
11817 T:      git git://linuxtv.org/media_tree.git
11818 F:      drivers/media/dvb-frontends/stv0910*
11819
11820 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11821 L:      linux-media@vger.kernel.org
11822 S:      Orphan
11823 W:      https://linuxtv.org
11824 T:      git git://linuxtv.org/media_tree.git
11825 F:      drivers/media/dvb-frontends/stv6111*
11826
11827 MEDIA DRIVERS FOR STM32 - DCMI
11828 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11829 L:      linux-media@vger.kernel.org
11830 S:      Supported
11831 T:      git git://linuxtv.org/media_tree.git
11832 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11833 F:      drivers/media/platform/stm32/stm32-dcmi.c
11834
11835 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11836 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11837 L:      linux-media@vger.kernel.org
11838 S:      Maintained
11839 W:      https://linuxtv.org
11840 Q:      http://patchwork.kernel.org/project/linux-media/list/
11841 T:      git git://linuxtv.org/media_tree.git
11842 F:      Documentation/admin-guide/media/
11843 F:      Documentation/devicetree/bindings/media/
11844 F:      Documentation/driver-api/media/
11845 F:      Documentation/userspace-api/media/
11846 F:      drivers/media/
11847 F:      drivers/staging/media/
11848 F:      include/linux/platform_data/media/
11849 F:      include/media/
11850 F:      include/uapi/linux/dvb/
11851 F:      include/uapi/linux/ivtv*
11852 F:      include/uapi/linux/media.h
11853 F:      include/uapi/linux/meye.h
11854 F:      include/uapi/linux/uvcvideo.h
11855 F:      include/uapi/linux/v4l2-*
11856 F:      include/uapi/linux/videodev2.h
11857
11858 MEDIATEK BLUETOOTH DRIVER
11859 M:      Sean Wang <sean.wang@mediatek.com>
11860 L:      linux-bluetooth@vger.kernel.org
11861 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11862 S:      Maintained
11863 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11864 F:      drivers/bluetooth/btmtkuart.c
11865
11866 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11867 M:      Sean Wang <sean.wang@mediatek.com>
11868 L:      linux-pm@vger.kernel.org
11869 S:      Maintained
11870 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11871 F:      drivers/power/reset/mt6323-poweroff.c
11872
11873 MEDIATEK CIR DRIVER
11874 M:      Sean Wang <sean.wang@mediatek.com>
11875 S:      Maintained
11876 F:      drivers/media/rc/mtk-cir.c
11877
11878 MEDIATEK DMA DRIVER
11879 M:      Sean Wang <sean.wang@mediatek.com>
11880 L:      dmaengine@vger.kernel.org
11881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11882 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11883 S:      Maintained
11884 F:      Documentation/devicetree/bindings/dma/mtk-*
11885 F:      drivers/dma/mediatek/
11886
11887 MEDIATEK ETHERNET DRIVER
11888 M:      Felix Fietkau <nbd@nbd.name>
11889 M:      John Crispin <john@phrozen.org>
11890 M:      Sean Wang <sean.wang@mediatek.com>
11891 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11892 L:      netdev@vger.kernel.org
11893 S:      Maintained
11894 F:      drivers/net/ethernet/mediatek/
11895
11896 MEDIATEK I2C CONTROLLER DRIVER
11897 M:      Qii Wang <qii.wang@mediatek.com>
11898 L:      linux-i2c@vger.kernel.org
11899 S:      Maintained
11900 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11901 F:      drivers/i2c/busses/i2c-mt65xx.c
11902
11903 MEDIATEK IOMMU DRIVER
11904 M:      Yong Wu <yong.wu@mediatek.com>
11905 L:      iommu@lists.linux-foundation.org
11906 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11907 S:      Supported
11908 F:      Documentation/devicetree/bindings/iommu/mediatek*
11909 F:      drivers/iommu/mtk_iommu*
11910 F:      include/dt-bindings/memory/mt*-port.h
11911
11912 MEDIATEK JPEG DRIVER
11913 M:      Rick Chang <rick.chang@mediatek.com>
11914 M:      Bin Liu <bin.liu@mediatek.com>
11915 S:      Supported
11916 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11917 F:      drivers/media/platform/mtk-jpeg/
11918
11919 MEDIATEK MDP DRIVER
11920 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11921 M:      Houlong Wei <houlong.wei@mediatek.com>
11922 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11923 S:      Supported
11924 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11925 F:      drivers/media/platform/mtk-mdp/
11926 F:      drivers/media/platform/mtk-vpu/
11927
11928 MEDIATEK MEDIA DRIVER
11929 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11930 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11931 S:      Supported
11932 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11933 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11934 F:      drivers/media/platform/mtk-vcodec/
11935 F:      drivers/media/platform/mtk-vpu/
11936
11937 MEDIATEK MMC/SD/SDIO DRIVER
11938 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11939 S:      Maintained
11940 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11941 F:      drivers/mmc/host/mtk-sd.c
11942
11943 MEDIATEK MT76 WIRELESS LAN DRIVER
11944 M:      Felix Fietkau <nbd@nbd.name>
11945 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11946 M:      Ryder Lee <ryder.lee@mediatek.com>
11947 R:      Shayne Chen <shayne.chen@mediatek.com>
11948 R:      Sean Wang <sean.wang@mediatek.com>
11949 L:      linux-wireless@vger.kernel.org
11950 S:      Maintained
11951 F:      drivers/net/wireless/mediatek/mt76/
11952
11953 MEDIATEK MT7601U WIRELESS LAN DRIVER
11954 M:      Jakub Kicinski <kubakici@wp.pl>
11955 L:      linux-wireless@vger.kernel.org
11956 S:      Maintained
11957 F:      drivers/net/wireless/mediatek/mt7601u/
11958
11959 MEDIATEK MT7621 CLOCK DRIVER
11960 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11961 S:      Maintained
11962 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11963 F:      drivers/clk/ralink/clk-mt7621.c
11964
11965 MEDIATEK MT7621/28/88 I2C DRIVER
11966 M:      Stefan Roese <sr@denx.de>
11967 L:      linux-i2c@vger.kernel.org
11968 S:      Maintained
11969 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11970 F:      drivers/i2c/busses/i2c-mt7621.c
11971
11972 MEDIATEK MT7621 PHY PCI DRIVER
11973 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11974 S:      Maintained
11975 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11976 F:      drivers/phy/ralink/phy-mt7621-pci.c
11977
11978 MEDIATEK NAND CONTROLLER DRIVER
11979 L:      linux-mtd@lists.infradead.org
11980 S:      Orphan
11981 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11982 F:      drivers/mtd/nand/raw/mtk_*
11983
11984 MEDIATEK PMIC LED DRIVER
11985 M:      Sean Wang <sean.wang@mediatek.com>
11986 S:      Maintained
11987 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11988 F:      drivers/leds/leds-mt6323.c
11989
11990 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11991 M:      Sean Wang <sean.wang@mediatek.com>
11992 S:      Maintained
11993 F:      drivers/char/hw_random/mtk-rng.c
11994
11995 MEDIATEK SWITCH DRIVER
11996 M:      Sean Wang <sean.wang@mediatek.com>
11997 M:      Landen Chao <Landen.Chao@mediatek.com>
11998 M:      DENG Qingfang <dqfext@gmail.com>
11999 L:      netdev@vger.kernel.org
12000 S:      Maintained
12001 F:      drivers/net/dsa/mt7530.*
12002 F:      net/dsa/tag_mtk.c
12003
12004 MEDIATEK USB3 DRD IP DRIVER
12005 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12006 L:      linux-usb@vger.kernel.org
12007 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12008 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12009 S:      Maintained
12010 F:      Documentation/devicetree/bindings/usb/mediatek,*
12011 F:      drivers/usb/host/xhci-mtk*
12012 F:      drivers/usb/mtu3/
12013
12014 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12015 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12016 M:      Martin Donnelly <martin.donnelly@ge.com>
12017 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12018 S:      Maintained
12019 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12020 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12021
12022 MEGARAID SCSI/SAS DRIVERS
12023 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12024 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12025 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12026 L:      megaraidlinux.pdl@broadcom.com
12027 L:      linux-scsi@vger.kernel.org
12028 S:      Maintained
12029 W:      http://www.avagotech.com/support/
12030 F:      Documentation/scsi/megaraid.rst
12031 F:      drivers/scsi/megaraid.*
12032 F:      drivers/scsi/megaraid/
12033
12034 MELEXIS MLX90614 DRIVER
12035 M:      Crt Mori <cmo@melexis.com>
12036 L:      linux-iio@vger.kernel.org
12037 S:      Supported
12038 W:      http://www.melexis.com
12039 F:      drivers/iio/temperature/mlx90614.c
12040
12041 MELEXIS MLX90632 DRIVER
12042 M:      Crt Mori <cmo@melexis.com>
12043 L:      linux-iio@vger.kernel.org
12044 S:      Supported
12045 W:      http://www.melexis.com
12046 F:      drivers/iio/temperature/mlx90632.c
12047
12048 MELFAS MIP4 TOUCHSCREEN DRIVER
12049 M:      Sangwon Jee <jeesw@melfas.com>
12050 S:      Supported
12051 W:      http://www.melfas.com
12052 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12053 F:      drivers/input/touchscreen/melfas_mip4.c
12054
12055 MELLANOX BLUEFIELD I2C DRIVER
12056 M:      Khalil Blaiech <kblaiech@nvidia.com>
12057 L:      linux-i2c@vger.kernel.org
12058 S:      Supported
12059 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12060 F:      drivers/i2c/busses/i2c-mlxbf.c
12061
12062 MELLANOX ETHERNET DRIVER (mlx4_en)
12063 M:      Tariq Toukan <tariqt@nvidia.com>
12064 L:      netdev@vger.kernel.org
12065 S:      Supported
12066 W:      http://www.mellanox.com
12067 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12068 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12069
12070 MELLANOX ETHERNET DRIVER (mlx5e)
12071 M:      Saeed Mahameed <saeedm@nvidia.com>
12072 L:      netdev@vger.kernel.org
12073 S:      Supported
12074 W:      http://www.mellanox.com
12075 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12076 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12077
12078 MELLANOX ETHERNET INNOVA DRIVERS
12079 R:      Boris Pismenny <borisp@nvidia.com>
12080 L:      netdev@vger.kernel.org
12081 S:      Supported
12082 W:      http://www.mellanox.com
12083 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12084 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12085 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12086 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12087 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12088
12089 MELLANOX ETHERNET SWITCH DRIVERS
12090 M:      Jiri Pirko <jiri@nvidia.com>
12091 M:      Ido Schimmel <idosch@nvidia.com>
12092 L:      netdev@vger.kernel.org
12093 S:      Supported
12094 W:      http://www.mellanox.com
12095 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12096 F:      drivers/net/ethernet/mellanox/mlxsw/
12097 F:      tools/testing/selftests/drivers/net/mlxsw/
12098
12099 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12100 M:      mlxsw@nvidia.com
12101 L:      netdev@vger.kernel.org
12102 S:      Supported
12103 W:      http://www.mellanox.com
12104 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12105 F:      drivers/net/ethernet/mellanox/mlxfw/
12106
12107 MELLANOX HARDWARE PLATFORM SUPPORT
12108 M:      Hans de Goede <hdegoede@redhat.com>
12109 M:      Mark Gross <markgross@kernel.org>
12110 M:      Vadim Pasternak <vadimp@nvidia.com>
12111 L:      platform-driver-x86@vger.kernel.org
12112 S:      Supported
12113 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12114 F:      drivers/platform/mellanox/
12115 F:      include/linux/platform_data/mlxreg.h
12116
12117 MELLANOX MLX4 core VPI driver
12118 M:      Tariq Toukan <tariqt@nvidia.com>
12119 L:      netdev@vger.kernel.org
12120 L:      linux-rdma@vger.kernel.org
12121 S:      Supported
12122 W:      http://www.mellanox.com
12123 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12124 F:      drivers/net/ethernet/mellanox/mlx4/
12125 F:      include/linux/mlx4/
12126
12127 MELLANOX MLX4 IB driver
12128 M:      Yishai Hadas <yishaih@nvidia.com>
12129 L:      linux-rdma@vger.kernel.org
12130 S:      Supported
12131 W:      http://www.mellanox.com
12132 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12133 F:      drivers/infiniband/hw/mlx4/
12134 F:      include/linux/mlx4/
12135 F:      include/uapi/rdma/mlx4-abi.h
12136
12137 MELLANOX MLX5 core VPI driver
12138 M:      Saeed Mahameed <saeedm@nvidia.com>
12139 M:      Leon Romanovsky <leonro@nvidia.com>
12140 L:      netdev@vger.kernel.org
12141 L:      linux-rdma@vger.kernel.org
12142 S:      Supported
12143 W:      http://www.mellanox.com
12144 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12145 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12146 F:      drivers/net/ethernet/mellanox/mlx5/core/
12147 F:      include/linux/mlx5/
12148
12149 MELLANOX MLX5 IB driver
12150 M:      Leon Romanovsky <leonro@nvidia.com>
12151 L:      linux-rdma@vger.kernel.org
12152 S:      Supported
12153 W:      http://www.mellanox.com
12154 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12155 F:      drivers/infiniband/hw/mlx5/
12156 F:      include/linux/mlx5/
12157 F:      include/uapi/rdma/mlx5-abi.h
12158
12159 MELLANOX MLXCPLD I2C AND MUX DRIVER
12160 M:      Vadim Pasternak <vadimp@nvidia.com>
12161 M:      Michael Shych <michaelsh@nvidia.com>
12162 L:      linux-i2c@vger.kernel.org
12163 S:      Supported
12164 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12165 F:      drivers/i2c/busses/i2c-mlxcpld.c
12166 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12167
12168 MELLANOX MLXCPLD LED DRIVER
12169 M:      Vadim Pasternak <vadimp@nvidia.com>
12170 L:      linux-leds@vger.kernel.org
12171 S:      Supported
12172 F:      Documentation/leds/leds-mlxcpld.rst
12173 F:      drivers/leds/leds-mlxcpld.c
12174 F:      drivers/leds/leds-mlxreg.c
12175
12176 MELLANOX PLATFORM DRIVER
12177 M:      Vadim Pasternak <vadimp@nvidia.com>
12178 L:      platform-driver-x86@vger.kernel.org
12179 S:      Supported
12180 F:      drivers/platform/x86/mlx-platform.c
12181
12182 MEMBARRIER SUPPORT
12183 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12184 M:      "Paul E. McKenney" <paulmck@kernel.org>
12185 L:      linux-kernel@vger.kernel.org
12186 S:      Supported
12187 F:      arch/powerpc/include/asm/membarrier.h
12188 F:      include/uapi/linux/membarrier.h
12189 F:      kernel/sched/membarrier.c
12190
12191 MEMBLOCK
12192 M:      Mike Rapoport <rppt@linux.ibm.com>
12193 L:      linux-mm@kvack.org
12194 S:      Maintained
12195 F:      Documentation/core-api/boot-time-mm.rst
12196 F:      include/linux/memblock.h
12197 F:      mm/memblock.c
12198
12199 MEMORY CONTROLLER DRIVERS
12200 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12201 L:      linux-kernel@vger.kernel.org
12202 S:      Maintained
12203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12204 F:      Documentation/devicetree/bindings/memory-controllers/
12205 F:      drivers/memory/
12206 F:      include/dt-bindings/memory/
12207 F:      include/memory/
12208
12209 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12210 M:      Dmitry Osipenko <digetx@gmail.com>
12211 L:      linux-pm@vger.kernel.org
12212 L:      linux-tegra@vger.kernel.org
12213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12214 S:      Maintained
12215 F:      drivers/devfreq/tegra30-devfreq.c
12216
12217 MEMORY MANAGEMENT
12218 M:      Andrew Morton <akpm@linux-foundation.org>
12219 L:      linux-mm@kvack.org
12220 S:      Maintained
12221 W:      http://www.linux-mm.org
12222 T:      quilt https://ozlabs.org/~akpm/mmotm/
12223 T:      quilt https://ozlabs.org/~akpm/mmots/
12224 T:      git git://github.com/hnaz/linux-mm.git
12225 F:      include/linux/gfp.h
12226 F:      include/linux/memory_hotplug.h
12227 F:      include/linux/mm.h
12228 F:      include/linux/mmzone.h
12229 F:      include/linux/pagewalk.h
12230 F:      include/linux/vmalloc.h
12231 F:      mm/
12232 F:      tools/testing/selftests/vm/
12233
12234 MEMORY TECHNOLOGY DEVICES (MTD)
12235 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12236 M:      Richard Weinberger <richard@nod.at>
12237 M:      Vignesh Raghavendra <vigneshr@ti.com>
12238 L:      linux-mtd@lists.infradead.org
12239 S:      Maintained
12240 W:      http://www.linux-mtd.infradead.org/
12241 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12242 C:      irc://irc.oftc.net/mtd
12243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12245 F:      Documentation/devicetree/bindings/mtd/
12246 F:      drivers/mtd/
12247 F:      include/linux/mtd/
12248 F:      include/uapi/mtd/
12249
12250 MEN A21 WATCHDOG DRIVER
12251 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12252 L:      linux-watchdog@vger.kernel.org
12253 S:      Maintained
12254 F:      drivers/watchdog/mena21_wdt.c
12255
12256 MEN CHAMELEON BUS (mcb)
12257 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12258 S:      Maintained
12259 F:      Documentation/driver-api/men-chameleon-bus.rst
12260 F:      drivers/mcb/
12261 F:      include/linux/mcb.h
12262
12263 MEN F21BMC (Board Management Controller)
12264 M:      Andreas Werner <andreas.werner@men.de>
12265 S:      Supported
12266 F:      Documentation/hwmon/menf21bmc.rst
12267 F:      drivers/hwmon/menf21bmc_hwmon.c
12268 F:      drivers/leds/leds-menf21bmc.c
12269 F:      drivers/mfd/menf21bmc.c
12270 F:      drivers/watchdog/menf21bmc_wdt.c
12271
12272 MEN Z069 WATCHDOG DRIVER
12273 M:      Johannes Thumshirn <jth@kernel.org>
12274 L:      linux-watchdog@vger.kernel.org
12275 S:      Maintained
12276 F:      drivers/watchdog/menz69_wdt.c
12277
12278 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12279 M:      Neil Armstrong <narmstrong@baylibre.com>
12280 L:      linux-media@vger.kernel.org
12281 L:      linux-amlogic@lists.infradead.org
12282 S:      Supported
12283 W:      http://linux-meson.com/
12284 T:      git git://linuxtv.org/media_tree.git
12285 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12286 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12287 F:      drivers/media/cec/platform/meson/ao-cec.c
12288
12289 MESON GE2D DRIVER FOR AMLOGIC SOCS
12290 M:      Neil Armstrong <narmstrong@baylibre.com>
12291 L:      linux-media@vger.kernel.org
12292 L:      linux-amlogic@lists.infradead.org
12293 S:      Supported
12294 T:      git git://linuxtv.org/media_tree.git
12295 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12296 F:      drivers/media/platform/meson/ge2d/
12297
12298 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12299 M:      Liang Yang <liang.yang@amlogic.com>
12300 L:      linux-mtd@lists.infradead.org
12301 S:      Maintained
12302 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12303 F:      drivers/mtd/nand/raw/meson_*
12304
12305 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12306 M:      Neil Armstrong <narmstrong@baylibre.com>
12307 L:      linux-media@vger.kernel.org
12308 L:      linux-amlogic@lists.infradead.org
12309 S:      Supported
12310 T:      git git://linuxtv.org/media_tree.git
12311 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12312 F:      drivers/staging/media/meson/vdec/
12313
12314 METHODE UDPU SUPPORT
12315 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12316 S:      Maintained
12317 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12318
12319 MHI BUS
12320 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12321 M:      Hemant Kumar <hemantk@codeaurora.org>
12322 L:      linux-arm-msm@vger.kernel.org
12323 S:      Maintained
12324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12325 F:      Documentation/ABI/stable/sysfs-bus-mhi
12326 F:      Documentation/mhi/
12327 F:      drivers/bus/mhi/
12328 F:      include/linux/mhi.h
12329
12330 MICROBLAZE ARCHITECTURE
12331 M:      Michal Simek <monstr@monstr.eu>
12332 S:      Supported
12333 W:      http://www.monstr.eu/fdt/
12334 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12335 F:      arch/microblaze/
12336
12337 MICROCHIP AT91 DMA DRIVERS
12338 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12339 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12341 L:      dmaengine@vger.kernel.org
12342 S:      Supported
12343 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12344 F:      drivers/dma/at_hdmac.c
12345 F:      drivers/dma/at_hdmac_regs.h
12346 F:      drivers/dma/at_xdmac.c
12347 F:      include/dt-bindings/dma/at91.h
12348
12349 MICROCHIP AT91 SERIAL DRIVER
12350 M:      Richard Genoud <richard.genoud@gmail.com>
12351 S:      Maintained
12352 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12353 F:      drivers/tty/serial/atmel_serial.c
12354 F:      drivers/tty/serial/atmel_serial.h
12355
12356 MICROCHIP AT91 USART MFD DRIVER
12357 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12358 L:      linux-kernel@vger.kernel.org
12359 S:      Supported
12360 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12361 F:      drivers/mfd/at91-usart.c
12362 F:      include/dt-bindings/mfd/at91-usart.h
12363
12364 MICROCHIP AT91 USART SPI DRIVER
12365 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12366 L:      linux-spi@vger.kernel.org
12367 S:      Supported
12368 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12369 F:      drivers/spi/spi-at91-usart.c
12370
12371 MICROCHIP AUDIO ASOC DRIVERS
12372 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12373 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12374 S:      Supported
12375 F:      sound/soc/atmel
12376
12377 MICROCHIP ECC DRIVER
12378 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12379 L:      linux-crypto@vger.kernel.org
12380 S:      Maintained
12381 F:      drivers/crypto/atmel-ecc.*
12382
12383 MICROCHIP EIC DRIVER
12384 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12386 S:      Supported
12387 F:      drivers/irqchip/irq-mchp-eic.c
12388
12389 MICROCHIP I2C DRIVER
12390 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12391 L:      linux-i2c@vger.kernel.org
12392 S:      Supported
12393 F:      drivers/i2c/busses/i2c-at91-*.c
12394 F:      drivers/i2c/busses/i2c-at91.h
12395
12396 MICROCHIP ISC DRIVER
12397 M:      Eugen Hristev <eugen.hristev@microchip.com>
12398 L:      linux-media@vger.kernel.org
12399 S:      Supported
12400 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12401 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12402 F:      drivers/media/platform/atmel/atmel-isc-base.c
12403 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12404 F:      drivers/media/platform/atmel/atmel-isc.h
12405 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12406 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12407 F:      include/linux/atmel-isc-media.h
12408
12409 MICROCHIP ISI DRIVER
12410 M:      Eugen Hristev <eugen.hristev@microchip.com>
12411 L:      linux-media@vger.kernel.org
12412 S:      Supported
12413 F:      drivers/media/platform/atmel/atmel-isi.c
12414 F:      drivers/media/platform/atmel/atmel-isi.h
12415
12416 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12417 M:      Woojung Huh <woojung.huh@microchip.com>
12418 M:      UNGLinuxDriver@microchip.com
12419 L:      netdev@vger.kernel.org
12420 S:      Maintained
12421 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12422 F:      drivers/net/dsa/microchip/*
12423 F:      include/linux/platform_data/microchip-ksz.h
12424 F:      net/dsa/tag_ksz.c
12425
12426 MICROCHIP LAN743X ETHERNET DRIVER
12427 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12428 M:      UNGLinuxDriver@microchip.com
12429 L:      netdev@vger.kernel.org
12430 S:      Maintained
12431 F:      drivers/net/ethernet/microchip/lan743x_*
12432
12433 MICROCHIP LCDFB DRIVER
12434 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12435 L:      linux-fbdev@vger.kernel.org
12436 S:      Maintained
12437 F:      drivers/video/fbdev/atmel_lcdfb.c
12438 F:      include/video/atmel_lcdc.h
12439
12440 MICROCHIP MCP16502 PMIC DRIVER
12441 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12443 S:      Supported
12444 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12445 F:      drivers/regulator/mcp16502.c
12446
12447 MICROCHIP MCP3911 ADC DRIVER
12448 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12449 M:      Kent Gustavsson <kent@minoris.se>
12450 L:      linux-iio@vger.kernel.org
12451 S:      Supported
12452 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12453 F:      drivers/iio/adc/mcp3911.c
12454
12455 MICROCHIP MMC/SD/SDIO MCI DRIVER
12456 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12457 S:      Maintained
12458 F:      drivers/mmc/host/atmel-mci.c
12459
12460 MICROCHIP NAND DRIVER
12461 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12462 L:      linux-mtd@lists.infradead.org
12463 S:      Supported
12464 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12465 F:      drivers/mtd/nand/raw/atmel/*
12466
12467 MICROCHIP PWM DRIVER
12468 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12470 L:      linux-pwm@vger.kernel.org
12471 S:      Supported
12472 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12473 F:      drivers/pwm/pwm-atmel.c
12474
12475 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12476 M:      Eugen Hristev <eugen.hristev@microchip.com>
12477 L:      linux-iio@vger.kernel.org
12478 S:      Supported
12479 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12480 F:      drivers/iio/adc/at91-sama5d2_adc.c
12481 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12482
12483 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12484 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12485 S:      Supported
12486 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12487
12488 MICROCHIP SPI DRIVER
12489 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12490 S:      Supported
12491 F:      drivers/spi/spi-atmel.*
12492
12493 MICROCHIP SSC DRIVER
12494 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12496 S:      Supported
12497 F:      drivers/misc/atmel-ssc.c
12498 F:      include/linux/atmel-ssc.h
12499
12500 MICROCHIP USB251XB DRIVER
12501 M:      Richard Leitner <richard.leitner@skidata.com>
12502 L:      linux-usb@vger.kernel.org
12503 S:      Maintained
12504 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12505 F:      drivers/usb/misc/usb251xb.c
12506
12507 MICROCHIP USBA UDC DRIVER
12508 M:      Cristian Birsan <cristian.birsan@microchip.com>
12509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12510 S:      Supported
12511 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12512
12513 MICROCHIP WILC1000 WIFI DRIVER
12514 M:      Ajay Singh <ajay.kathat@microchip.com>
12515 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12516 L:      linux-wireless@vger.kernel.org
12517 S:      Supported
12518 F:      drivers/net/wireless/microchip/wilc1000/
12519
12520 MICROSEMI MIPS SOCS
12521 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12522 M:      UNGLinuxDriver@microchip.com
12523 L:      linux-mips@vger.kernel.org
12524 S:      Supported
12525 F:      Documentation/devicetree/bindings/mips/mscc.txt
12526 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12527 F:      arch/mips/boot/dts/mscc/
12528 F:      arch/mips/configs/generic/board-ocelot.config
12529 F:      arch/mips/generic/board-ocelot.c
12530
12531 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12532 M:      Don Brace <don.brace@microchip.com>
12533 L:      storagedev@microchip.com
12534 L:      linux-scsi@vger.kernel.org
12535 S:      Supported
12536 F:      Documentation/scsi/smartpqi.rst
12537 F:      drivers/scsi/smartpqi/Kconfig
12538 F:      drivers/scsi/smartpqi/Makefile
12539 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12540 F:      include/linux/cciss*.h
12541 F:      include/uapi/linux/cciss*.h
12542
12543 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12544 M:      Maximilian Luz <luzmaximilian@gmail.com>
12545 L:      linux-pm@vger.kernel.org
12546 L:      platform-driver-x86@vger.kernel.org
12547 S:      Maintained
12548 F:      drivers/power/supply/surface_battery.c
12549 F:      drivers/power/supply/surface_charger.c
12550
12551 MICROSOFT SURFACE DTX DRIVER
12552 M:      Maximilian Luz <luzmaximilian@gmail.com>
12553 L:      platform-driver-x86@vger.kernel.org
12554 S:      Maintained
12555 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12556 F:      drivers/platform/surface/surface_dtx.c
12557 F:      include/uapi/linux/surface_aggregator/dtx.h
12558
12559 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12560 M:      Maximilian Luz <luzmaximilian@gmail.com>
12561 L:      platform-driver-x86@vger.kernel.org
12562 S:      Maintained
12563 F:      drivers/platform/surface/surface_gpe.c
12564
12565 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12566 M:      Hans de Goede <hdegoede@redhat.com>
12567 M:      Mark Gross <markgross@kernel.org>
12568 M:      Maximilian Luz <luzmaximilian@gmail.com>
12569 L:      platform-driver-x86@vger.kernel.org
12570 S:      Maintained
12571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12572 F:      drivers/platform/surface/
12573
12574 MICROSOFT SURFACE HID TRANSPORT DRIVER
12575 M:      Maximilian Luz <luzmaximilian@gmail.com>
12576 L:      linux-input@vger.kernel.org
12577 L:      platform-driver-x86@vger.kernel.org
12578 S:      Maintained
12579 F:      drivers/hid/surface-hid/
12580
12581 MICROSOFT SURFACE HOT-PLUG DRIVER
12582 M:      Maximilian Luz <luzmaximilian@gmail.com>
12583 L:      platform-driver-x86@vger.kernel.org
12584 S:      Maintained
12585 F:      drivers/platform/surface/surface_hotplug.c
12586
12587 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12588 M:      Maximilian Luz <luzmaximilian@gmail.com>
12589 L:      platform-driver-x86@vger.kernel.org
12590 S:      Maintained
12591 F:      drivers/platform/surface/surface_platform_profile.c
12592
12593 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12594 M:      Chen Yu <yu.c.chen@intel.com>
12595 L:      platform-driver-x86@vger.kernel.org
12596 S:      Supported
12597 F:      drivers/platform/surface/surfacepro3_button.c
12598
12599 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12600 M:      Maximilian Luz <luzmaximilian@gmail.com>
12601 L:      platform-driver-x86@vger.kernel.org
12602 S:      Maintained
12603 W:      https://github.com/linux-surface/surface-aggregator-module
12604 C:      irc://irc.libera.chat/linux-surface
12605 F:      Documentation/driver-api/surface_aggregator/
12606 F:      drivers/platform/surface/aggregator/
12607 F:      drivers/platform/surface/surface_acpi_notify.c
12608 F:      drivers/platform/surface/surface_aggregator_cdev.c
12609 F:      drivers/platform/surface/surface_aggregator_registry.c
12610 F:      include/linux/surface_acpi_notify.h
12611 F:      include/linux/surface_aggregator/
12612 F:      include/uapi/linux/surface_aggregator/
12613
12614 MICROTEK X6 SCANNER
12615 M:      Oliver Neukum <oliver@neukum.org>
12616 S:      Maintained
12617 F:      drivers/usb/image/microtek.*
12618
12619 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12620 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12621 M:      Luka Perkov <luka.perkov@sartura.hr>
12622 S:      Maintained
12623 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12624 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12625 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12626 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12627 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12628 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12629
12630 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12631 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12632 L:      linux-media@vger.kernel.org
12633 S:      Maintained
12634 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12635 F:      Documentation/driver-api/media/drivers/ccs/
12636 F:      Documentation/userspace-api/media/drivers/ccs.rst
12637 F:      drivers/media/i2c/ccs-pll.c
12638 F:      drivers/media/i2c/ccs-pll.h
12639 F:      drivers/media/i2c/ccs/
12640 F:      include/uapi/linux/ccs.h
12641 F:      include/uapi/linux/smiapp.h
12642
12643 MIPS
12644 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12645 L:      linux-mips@vger.kernel.org
12646 S:      Maintained
12647 W:      http://www.linux-mips.org/
12648 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12650 F:      Documentation/devicetree/bindings/mips/
12651 F:      Documentation/mips/
12652 F:      arch/mips/
12653 F:      drivers/platform/mips/
12654
12655 MIPS BOSTON DEVELOPMENT BOARD
12656 M:      Paul Burton <paulburton@kernel.org>
12657 L:      linux-mips@vger.kernel.org
12658 S:      Maintained
12659 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12660 F:      arch/mips/boot/dts/img/boston.dts
12661 F:      arch/mips/configs/generic/board-boston.config
12662 F:      drivers/clk/imgtec/clk-boston.c
12663 F:      include/dt-bindings/clock/boston-clock.h
12664
12665 MIPS CORE DRIVERS
12666 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12667 M:      Serge Semin <fancer.lancer@gmail.com>
12668 L:      linux-mips@vger.kernel.org
12669 S:      Supported
12670 F:      drivers/bus/mips_cdmm.c
12671 F:      drivers/clocksource/mips-gic-timer.c
12672 F:      drivers/cpuidle/cpuidle-cps.c
12673 F:      drivers/irqchip/irq-mips-cpu.c
12674 F:      drivers/irqchip/irq-mips-gic.c
12675
12676 MIPS GENERIC PLATFORM
12677 M:      Paul Burton <paulburton@kernel.org>
12678 L:      linux-mips@vger.kernel.org
12679 S:      Supported
12680 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12681 F:      arch/mips/generic/
12682 F:      arch/mips/tools/generic-board-config.sh
12683
12684 MIPS RINT INSTRUCTION EMULATION
12685 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12686 L:      linux-mips@vger.kernel.org
12687 S:      Supported
12688 F:      arch/mips/math-emu/dp_rint.c
12689 F:      arch/mips/math-emu/sp_rint.c
12690
12691 MIPS/LOONGSON1 ARCHITECTURE
12692 M:      Keguang Zhang <keguang.zhang@gmail.com>
12693 L:      linux-mips@vger.kernel.org
12694 S:      Maintained
12695 F:      arch/mips/include/asm/mach-loongson32/
12696 F:      arch/mips/loongson32/
12697 F:      drivers/*/*/*loongson1*
12698 F:      drivers/*/*loongson1*
12699
12700 MIPS/LOONGSON2EF ARCHITECTURE
12701 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12702 L:      linux-mips@vger.kernel.org
12703 S:      Maintained
12704 F:      arch/mips/include/asm/mach-loongson2ef/
12705 F:      arch/mips/loongson2ef/
12706 F:      drivers/cpufreq/loongson2_cpufreq.c
12707
12708 MIPS/LOONGSON64 ARCHITECTURE
12709 M:      Huacai Chen <chenhuacai@kernel.org>
12710 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12711 L:      linux-mips@vger.kernel.org
12712 S:      Maintained
12713 F:      arch/mips/include/asm/mach-loongson64/
12714 F:      arch/mips/loongson64/
12715 F:      drivers/irqchip/irq-loongson*
12716 F:      drivers/platform/mips/cpu_hwmon.c
12717
12718 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12719 M:      Hans Verkuil <hverkuil@xs4all.nl>
12720 L:      linux-media@vger.kernel.org
12721 S:      Odd Fixes
12722 W:      https://linuxtv.org
12723 T:      git git://linuxtv.org/media_tree.git
12724 F:      drivers/media/radio/radio-miropcm20*
12725
12726 MMP SUPPORT
12727 R:      Lubomir Rintel <lkundrak@v3.sk>
12728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12729 S:      Odd Fixes
12730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12731 F:      arch/arm/boot/dts/mmp*
12732 F:      arch/arm/mach-mmp/
12733 F:      include/linux/soc/mmp/
12734
12735 MMP USB PHY DRIVERS
12736 R:      Lubomir Rintel <lkundrak@v3.sk>
12737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12738 S:      Maintained
12739 F:      drivers/phy/marvell/phy-mmp3-usb.c
12740 F:      drivers/phy/marvell/phy-pxa-usb.c
12741
12742 MMU GATHER AND TLB INVALIDATION
12743 M:      Will Deacon <will@kernel.org>
12744 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12745 M:      Andrew Morton <akpm@linux-foundation.org>
12746 M:      Nick Piggin <npiggin@gmail.com>
12747 M:      Peter Zijlstra <peterz@infradead.org>
12748 L:      linux-arch@vger.kernel.org
12749 L:      linux-mm@kvack.org
12750 S:      Maintained
12751 F:      arch/*/include/asm/tlb.h
12752 F:      include/asm-generic/tlb.h
12753 F:      mm/mmu_gather.c
12754
12755 MN88472 MEDIA DRIVER
12756 M:      Antti Palosaari <crope@iki.fi>
12757 L:      linux-media@vger.kernel.org
12758 S:      Maintained
12759 W:      https://linuxtv.org
12760 W:      http://palosaari.fi/linux/
12761 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12762 F:      drivers/media/dvb-frontends/mn88472*
12763
12764 MN88473 MEDIA DRIVER
12765 M:      Antti Palosaari <crope@iki.fi>
12766 L:      linux-media@vger.kernel.org
12767 S:      Maintained
12768 W:      https://linuxtv.org
12769 W:      http://palosaari.fi/linux/
12770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12771 F:      drivers/media/dvb-frontends/mn88473*
12772
12773 MODULE SUPPORT
12774 M:      Luis Chamberlain <mcgrof@kernel.org>
12775 M:      Jessica Yu <jeyu@kernel.org>
12776 S:      Maintained
12777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12778 F:      include/linux/module.h
12779 F:      kernel/module.c
12780
12781 MONOLITHIC POWER SYSTEM PMIC DRIVER
12782 M:      Saravanan Sekar <sravanhome@gmail.com>
12783 S:      Maintained
12784 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12785 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12786 F:      drivers/iio/adc/mp2629_adc.c
12787 F:      drivers/mfd/mp2629.c
12788 F:      drivers/power/supply/mp2629_charger.c
12789 F:      drivers/regulator/mp5416.c
12790 F:      drivers/regulator/mpq7920.c
12791 F:      drivers/regulator/mpq7920.h
12792 F:      include/linux/mfd/mp2629.h
12793
12794 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12795 S:      Orphan
12796 W:      http://popies.net/meye/
12797 F:      Documentation/userspace-api/media/drivers/meye*
12798 F:      drivers/media/pci/meye/
12799 F:      include/uapi/linux/meye.h
12800
12801 MOTORCOMM PHY DRIVER
12802 M:      Peter Geis <pgwipeout@gmail.com>
12803 L:      netdev@vger.kernel.org
12804 S:      Maintained
12805 F:      drivers/net/phy/motorcomm.c
12806
12807 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12808 M:      Jiri Slaby <jirislaby@kernel.org>
12809 S:      Maintained
12810 F:      Documentation/driver-api/serial/moxa-smartio.rst
12811 F:      drivers/tty/mxser.*
12812
12813 MR800 AVERMEDIA USB FM RADIO DRIVER
12814 M:      Alexey Klimov <klimov.linux@gmail.com>
12815 L:      linux-media@vger.kernel.org
12816 S:      Maintained
12817 T:      git git://linuxtv.org/media_tree.git
12818 F:      drivers/media/radio/radio-mr800.c
12819
12820 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12821 M:      Alan Ott <alan@signal11.us>
12822 L:      linux-wpan@vger.kernel.org
12823 S:      Maintained
12824 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12825 F:      drivers/net/ieee802154/mrf24j40.c
12826
12827 MSI LAPTOP SUPPORT
12828 M:      "Lee, Chun-Yi" <jlee@suse.com>
12829 L:      platform-driver-x86@vger.kernel.org
12830 S:      Maintained
12831 F:      drivers/platform/x86/msi-laptop.c
12832
12833 MSI WMI SUPPORT
12834 L:      platform-driver-x86@vger.kernel.org
12835 S:      Orphan
12836 F:      drivers/platform/x86/msi-wmi.c
12837
12838 MSI001 MEDIA DRIVER
12839 M:      Antti Palosaari <crope@iki.fi>
12840 L:      linux-media@vger.kernel.org
12841 S:      Maintained
12842 W:      https://linuxtv.org
12843 W:      http://palosaari.fi/linux/
12844 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12845 T:      git git://linuxtv.org/anttip/media_tree.git
12846 F:      drivers/media/tuners/msi001*
12847
12848 MSI2500 MEDIA DRIVER
12849 M:      Antti Palosaari <crope@iki.fi>
12850 L:      linux-media@vger.kernel.org
12851 S:      Maintained
12852 W:      https://linuxtv.org
12853 W:      http://palosaari.fi/linux/
12854 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12855 T:      git git://linuxtv.org/anttip/media_tree.git
12856 F:      drivers/media/usb/msi2500/
12857
12858 MSTAR INTERRUPT CONTROLLER DRIVER
12859 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12860 M:      Daniel Palmer <daniel@thingy.jp>
12861 S:      Maintained
12862 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12863 F:      drivers/irqchip/irq-mst-intc.c
12864
12865 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12866 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12867 L:      linux-mtd@lists.infradead.org
12868 S:      Maintained
12869 F:      drivers/mtd/devices/docg3*
12870
12871 MT9M032 APTINA SENSOR DRIVER
12872 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12873 L:      linux-media@vger.kernel.org
12874 S:      Maintained
12875 T:      git git://linuxtv.org/media_tree.git
12876 F:      drivers/media/i2c/mt9m032.c
12877 F:      include/media/i2c/mt9m032.h
12878
12879 MT9P031 APTINA CAMERA SENSOR
12880 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12881 L:      linux-media@vger.kernel.org
12882 S:      Maintained
12883 T:      git git://linuxtv.org/media_tree.git
12884 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
12885 F:      drivers/media/i2c/mt9p031.c
12886 F:      include/media/i2c/mt9p031.h
12887
12888 MT9T001 APTINA CAMERA SENSOR
12889 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12890 L:      linux-media@vger.kernel.org
12891 S:      Maintained
12892 T:      git git://linuxtv.org/media_tree.git
12893 F:      drivers/media/i2c/mt9t001.c
12894 F:      include/media/i2c/mt9t001.h
12895
12896 MT9T112 APTINA CAMERA SENSOR
12897 M:      Jacopo Mondi <jacopo@jmondi.org>
12898 L:      linux-media@vger.kernel.org
12899 S:      Odd Fixes
12900 T:      git git://linuxtv.org/media_tree.git
12901 F:      drivers/media/i2c/mt9t112.c
12902 F:      include/media/i2c/mt9t112.h
12903
12904 MT9V032 APTINA CAMERA SENSOR
12905 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12906 L:      linux-media@vger.kernel.org
12907 S:      Maintained
12908 T:      git git://linuxtv.org/media_tree.git
12909 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12910 F:      drivers/media/i2c/mt9v032.c
12911 F:      include/media/i2c/mt9v032.h
12912
12913 MT9V111 APTINA CAMERA SENSOR
12914 M:      Jacopo Mondi <jacopo@jmondi.org>
12915 L:      linux-media@vger.kernel.org
12916 S:      Maintained
12917 T:      git git://linuxtv.org/media_tree.git
12918 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12919 F:      drivers/media/i2c/mt9v111.c
12920
12921 MULTIFUNCTION DEVICES (MFD)
12922 M:      Lee Jones <lee.jones@linaro.org>
12923 S:      Supported
12924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12925 F:      Documentation/devicetree/bindings/mfd/
12926 F:      drivers/mfd/
12927 F:      include/dt-bindings/mfd/
12928 F:      include/linux/mfd/
12929
12930 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12931 S:      Orphan
12932 F:      drivers/mmc/host/mmc_spi.c
12933 F:      include/linux/spi/mmc_spi.h
12934
12935 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12936 M:      Ulf Hansson <ulf.hansson@linaro.org>
12937 L:      linux-mmc@vger.kernel.org
12938 S:      Maintained
12939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12940 F:      Documentation/devicetree/bindings/mmc/
12941 F:      drivers/mmc/
12942 F:      include/linux/mmc/
12943 F:      include/uapi/linux/mmc/
12944
12945 MULTIPLEXER SUBSYSTEM
12946 M:      Peter Rosin <peda@axentia.se>
12947 S:      Maintained
12948 F:      Documentation/ABI/testing/sysfs-class-mux*
12949 F:      Documentation/devicetree/bindings/mux/
12950 F:      drivers/mux/
12951 F:      include/dt-bindings/mux/
12952 F:      include/linux/mux/
12953
12954 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12955 M:      Bin Liu <b-liu@ti.com>
12956 L:      linux-usb@vger.kernel.org
12957 S:      Maintained
12958 F:      drivers/usb/musb/
12959
12960 MXL301RF MEDIA DRIVER
12961 M:      Akihiro Tsukada <tskd08@gmail.com>
12962 L:      linux-media@vger.kernel.org
12963 S:      Odd Fixes
12964 F:      drivers/media/tuners/mxl301rf*
12965
12966 MXL5007T MEDIA DRIVER
12967 M:      Michael Krufky <mkrufky@linuxtv.org>
12968 L:      linux-media@vger.kernel.org
12969 S:      Maintained
12970 W:      https://linuxtv.org
12971 W:      http://github.com/mkrufky
12972 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12973 T:      git git://linuxtv.org/mkrufky/tuners.git
12974 F:      drivers/media/tuners/mxl5007t.*
12975
12976 MXSFB DRM DRIVER
12977 M:      Marek Vasut <marex@denx.de>
12978 M:      Stefan Agner <stefan@agner.ch>
12979 L:      dri-devel@lists.freedesktop.org
12980 S:      Supported
12981 T:      git git://anongit.freedesktop.org/drm/drm-misc
12982 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12983 F:      drivers/gpu/drm/mxsfb/
12984
12985 MYLEX DAC960 PCI RAID Controller
12986 M:      Hannes Reinecke <hare@kernel.org>
12987 L:      linux-scsi@vger.kernel.org
12988 S:      Supported
12989 F:      drivers/scsi/myrb.*
12990 F:      drivers/scsi/myrs.*
12991
12992 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12993 M:      Chris Lee <christopher.lee@cspi.com>
12994 L:      netdev@vger.kernel.org
12995 S:      Supported
12996 W:      https://www.cspi.com/ethernet-products/support/downloads/
12997 F:      drivers/net/ethernet/myricom/myri10ge/
12998
12999 NAND FLASH SUBSYSTEM
13000 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13001 R:      Richard Weinberger <richard@nod.at>
13002 L:      linux-mtd@lists.infradead.org
13003 S:      Maintained
13004 W:      http://www.linux-mtd.infradead.org/
13005 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13006 C:      irc://irc.oftc.net/mtd
13007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13008 F:      drivers/mtd/nand/
13009 F:      include/linux/mtd/*nand*.h
13010
13011 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13012 M:      Daniel Mack <zonque@gmail.com>
13013 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13014 S:      Maintained
13015 W:      http://www.native-instruments.com
13016 F:      sound/usb/caiaq/
13017
13018 NATSEMI ETHERNET DRIVER (DP8381x)
13019 S:      Orphan
13020 F:      drivers/net/ethernet/natsemi/natsemi.c
13021
13022 NCR 5380 SCSI DRIVERS
13023 M:      Finn Thain <fthain@linux-m68k.org>
13024 M:      Michael Schmitz <schmitzmic@gmail.com>
13025 L:      linux-scsi@vger.kernel.org
13026 S:      Maintained
13027 F:      Documentation/scsi/g_NCR5380.rst
13028 F:      drivers/scsi/NCR5380.*
13029 F:      drivers/scsi/arm/cumana_1.c
13030 F:      drivers/scsi/arm/oak.c
13031 F:      drivers/scsi/atari_scsi.*
13032 F:      drivers/scsi/dmx3191d.c
13033 F:      drivers/scsi/g_NCR5380.*
13034 F:      drivers/scsi/mac_scsi.*
13035 F:      drivers/scsi/sun3_scsi.*
13036 F:      drivers/scsi/sun3_scsi_vme.c
13037
13038 NCSI LIBRARY
13039 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13040 S:      Maintained
13041 F:      net/ncsi/
13042
13043 NCT6775 HARDWARE MONITOR DRIVER
13044 M:      Guenter Roeck <linux@roeck-us.net>
13045 L:      linux-hwmon@vger.kernel.org
13046 S:      Maintained
13047 F:      Documentation/hwmon/nct6775.rst
13048 F:      drivers/hwmon/nct6775.c
13049
13050 NETDEVSIM
13051 M:      Jakub Kicinski <kuba@kernel.org>
13052 S:      Maintained
13053 F:      drivers/net/netdevsim/*
13054
13055 NETEM NETWORK EMULATOR
13056 M:      Stephen Hemminger <stephen@networkplumber.org>
13057 L:      netdev@vger.kernel.org
13058 S:      Maintained
13059 F:      net/sched/sch_netem.c
13060
13061 NETERION 10GbE DRIVERS (s2io/vxge)
13062 M:      Jon Mason <jdmason@kudzu.us>
13063 L:      netdev@vger.kernel.org
13064 S:      Supported
13065 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13066 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13067 F:      drivers/net/ethernet/neterion/
13068
13069 NETFILTER
13070 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13071 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13072 M:      Florian Westphal <fw@strlen.de>
13073 L:      netfilter-devel@vger.kernel.org
13074 L:      coreteam@netfilter.org
13075 S:      Maintained
13076 W:      http://www.netfilter.org/
13077 W:      http://www.iptables.org/
13078 W:      http://www.nftables.org/
13079 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13080 C:      irc://irc.libera.chat/netfilter
13081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13083 F:      include/linux/netfilter*
13084 F:      include/linux/netfilter/
13085 F:      include/net/netfilter/
13086 F:      include/uapi/linux/netfilter*
13087 F:      include/uapi/linux/netfilter/
13088 F:      net/*/netfilter.c
13089 F:      net/*/netfilter/
13090 F:      net/bridge/br_netfilter*.c
13091 F:      net/netfilter/
13092
13093 NETROM NETWORK LAYER
13094 M:      Ralf Baechle <ralf@linux-mips.org>
13095 L:      linux-hams@vger.kernel.org
13096 S:      Maintained
13097 W:      http://www.linux-ax25.org/
13098 F:      include/net/netrom.h
13099 F:      include/uapi/linux/netrom.h
13100 F:      net/netrom/
13101
13102 NETRONIX EMBEDDED CONTROLLER
13103 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13104 S:      Maintained
13105 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13106 F:      drivers/mfd/ntxec.c
13107 F:      drivers/pwm/pwm-ntxec.c
13108 F:      drivers/rtc/rtc-ntxec.c
13109 F:      include/linux/mfd/ntxec.h
13110
13111 NETRONOME ETHERNET DRIVERS
13112 M:      Simon Horman <simon.horman@corigine.com>
13113 R:      Jakub Kicinski <kuba@kernel.org>
13114 L:      oss-drivers@corigine.com
13115 S:      Maintained
13116 F:      drivers/net/ethernet/netronome/
13117
13118 NETWORK BLOCK DEVICE (NBD)
13119 M:      Josef Bacik <josef@toxicpanda.com>
13120 L:      linux-block@vger.kernel.org
13121 L:      nbd@other.debian.org
13122 S:      Maintained
13123 F:      Documentation/admin-guide/blockdev/nbd.rst
13124 F:      drivers/block/nbd.c
13125 F:      include/trace/events/nbd.h
13126 F:      include/uapi/linux/nbd.h
13127
13128 NETWORK DROP MONITOR
13129 M:      Neil Horman <nhorman@tuxdriver.com>
13130 L:      netdev@vger.kernel.org
13131 S:      Maintained
13132 W:      https://fedorahosted.org/dropwatch/
13133 F:      include/uapi/linux/net_dropmon.h
13134 F:      net/core/drop_monitor.c
13135
13136 NETWORKING DRIVERS
13137 M:      "David S. Miller" <davem@davemloft.net>
13138 M:      Jakub Kicinski <kuba@kernel.org>
13139 L:      netdev@vger.kernel.org
13140 S:      Maintained
13141 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13144 F:      Documentation/devicetree/bindings/net/
13145 F:      drivers/connector/
13146 F:      drivers/net/
13147 F:      include/linux/etherdevice.h
13148 F:      include/linux/fcdevice.h
13149 F:      include/linux/fddidevice.h
13150 F:      include/linux/hippidevice.h
13151 F:      include/linux/if_*
13152 F:      include/linux/inetdevice.h
13153 F:      include/linux/netdevice.h
13154 F:      include/uapi/linux/if_*
13155 F:      include/uapi/linux/netdevice.h
13156
13157 NETWORKING DRIVERS (WIRELESS)
13158 M:      Kalle Valo <kvalo@codeaurora.org>
13159 L:      linux-wireless@vger.kernel.org
13160 S:      Maintained
13161 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13164 F:      Documentation/devicetree/bindings/net/wireless/
13165 F:      drivers/net/wireless/
13166
13167 NETWORKING [DSA]
13168 M:      Andrew Lunn <andrew@lunn.ch>
13169 M:      Vivien Didelot <vivien.didelot@gmail.com>
13170 M:      Florian Fainelli <f.fainelli@gmail.com>
13171 M:      Vladimir Oltean <olteanv@gmail.com>
13172 S:      Maintained
13173 F:      Documentation/devicetree/bindings/net/dsa/
13174 F:      drivers/net/dsa/
13175 F:      include/linux/dsa/
13176 F:      include/linux/platform_data/dsa.h
13177 F:      include/net/dsa.h
13178 F:      net/dsa/
13179 F:      tools/testing/selftests/drivers/net/dsa/
13180
13181 NETWORKING [GENERAL]
13182 M:      "David S. Miller" <davem@davemloft.net>
13183 M:      Jakub Kicinski <kuba@kernel.org>
13184 L:      netdev@vger.kernel.org
13185 S:      Maintained
13186 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13187 B:      mailto:netdev@vger.kernel.org
13188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13190 F:      Documentation/networking/
13191 F:      include/linux/in.h
13192 F:      include/linux/net.h
13193 F:      include/linux/netdevice.h
13194 F:      include/net/
13195 F:      include/uapi/linux/in.h
13196 F:      include/uapi/linux/net.h
13197 F:      include/uapi/linux/net_namespace.h
13198 F:      include/uapi/linux/netdevice.h
13199 F:      lib/net_utils.c
13200 F:      lib/random32.c
13201 F:      net/
13202 F:      tools/testing/selftests/net/
13203
13204 NETWORKING [IPSEC]
13205 M:      Steffen Klassert <steffen.klassert@secunet.com>
13206 M:      Herbert Xu <herbert@gondor.apana.org.au>
13207 M:      "David S. Miller" <davem@davemloft.net>
13208 L:      netdev@vger.kernel.org
13209 S:      Maintained
13210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13212 F:      include/net/xfrm.h
13213 F:      include/uapi/linux/xfrm.h
13214 F:      net/ipv4/ah4.c
13215 F:      net/ipv4/esp4*
13216 F:      net/ipv4/ip_vti.c
13217 F:      net/ipv4/ipcomp.c
13218 F:      net/ipv4/xfrm*
13219 F:      net/ipv6/ah6.c
13220 F:      net/ipv6/esp6*
13221 F:      net/ipv6/ip6_vti.c
13222 F:      net/ipv6/ipcomp6.c
13223 F:      net/ipv6/xfrm*
13224 F:      net/key/
13225 F:      net/xfrm/
13226 F:      tools/testing/selftests/net/ipsec.c
13227
13228 NETWORKING [IPv4/IPv6]
13229 M:      "David S. Miller" <davem@davemloft.net>
13230 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13231 M:      David Ahern <dsahern@kernel.org>
13232 L:      netdev@vger.kernel.org
13233 S:      Maintained
13234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13235 F:      arch/x86/net/*
13236 F:      include/net/ip*
13237 F:      net/ipv4/
13238 F:      net/ipv6/
13239
13240 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13241 M:      Paul Moore <paul@paul-moore.com>
13242 L:      netdev@vger.kernel.org
13243 L:      linux-security-module@vger.kernel.org
13244 S:      Maintained
13245 W:      https://github.com/netlabel
13246 F:      Documentation/netlabel/
13247 F:      include/net/calipso.h
13248 F:      include/net/cipso_ipv4.h
13249 F:      include/net/netlabel.h
13250 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13251 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13252 F:      net/ipv4/cipso_ipv4.c
13253 F:      net/ipv6/calipso.c
13254 F:      net/netfilter/xt_CONNSECMARK.c
13255 F:      net/netfilter/xt_SECMARK.c
13256 F:      net/netlabel/
13257
13258 NETWORKING [MPTCP]
13259 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13260 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13261 L:      netdev@vger.kernel.org
13262 L:      mptcp@lists.linux.dev
13263 S:      Maintained
13264 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13265 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13266 F:      Documentation/networking/mptcp-sysctl.rst
13267 F:      include/net/mptcp.h
13268 F:      include/trace/events/mptcp.h
13269 F:      include/uapi/linux/mptcp.h
13270 F:      net/mptcp/
13271 F:      tools/testing/selftests/net/mptcp/
13272
13273 NETWORKING [TCP]
13274 M:      Eric Dumazet <edumazet@google.com>
13275 L:      netdev@vger.kernel.org
13276 S:      Maintained
13277 F:      include/linux/tcp.h
13278 F:      include/net/tcp.h
13279 F:      include/trace/events/tcp.h
13280 F:      include/uapi/linux/tcp.h
13281 F:      net/ipv4/syncookies.c
13282 F:      net/ipv4/tcp*.c
13283 F:      net/ipv6/syncookies.c
13284 F:      net/ipv6/tcp*.c
13285
13286 NETWORKING [TLS]
13287 M:      Boris Pismenny <borisp@nvidia.com>
13288 M:      John Fastabend <john.fastabend@gmail.com>
13289 M:      Daniel Borkmann <daniel@iogearbox.net>
13290 M:      Jakub Kicinski <kuba@kernel.org>
13291 L:      netdev@vger.kernel.org
13292 S:      Maintained
13293 F:      include/net/tls.h
13294 F:      include/uapi/linux/tls.h
13295 F:      net/tls/*
13296
13297 NETWORKING [WIRELESS]
13298 L:      linux-wireless@vger.kernel.org
13299 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13300
13301 NETXEN (1/10) GbE SUPPORT
13302 M:      Manish Chopra <manishc@marvell.com>
13303 M:      Rahul Verma <rahulv@marvell.com>
13304 M:      GR-Linux-NIC-Dev@marvell.com
13305 L:      netdev@vger.kernel.org
13306 S:      Supported
13307 F:      drivers/net/ethernet/qlogic/netxen/
13308
13309 NET_FAILOVER MODULE
13310 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13311 L:      netdev@vger.kernel.org
13312 S:      Supported
13313 F:      Documentation/networking/net_failover.rst
13314 F:      drivers/net/net_failover.c
13315 F:      include/net/net_failover.h
13316
13317 NEXTHOP
13318 M:      David Ahern <dsahern@kernel.org>
13319 L:      netdev@vger.kernel.org
13320 S:      Maintained
13321 F:      include/net/netns/nexthop.h
13322 F:      include/net/nexthop.h
13323 F:      include/uapi/linux/nexthop.h
13324 F:      net/ipv4/nexthop.c
13325
13326 NFC SUBSYSTEM
13327 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13328 L:      linux-nfc@lists.01.org (subscribers-only)
13329 L:      netdev@vger.kernel.org
13330 S:      Maintained
13331 F:      Documentation/devicetree/bindings/net/nfc/
13332 F:      drivers/nfc/
13333 F:      include/linux/platform_data/nfcmrvl.h
13334 F:      include/net/nfc/
13335 F:      include/uapi/linux/nfc.h
13336 F:      net/nfc/
13337
13338 NFC VIRTUAL NCI DEVICE DRIVER
13339 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13340 L:      netdev@vger.kernel.org
13341 L:      linux-nfc@lists.01.org (subscribers-only)
13342 S:      Supported
13343 F:      drivers/nfc/virtual_ncidev.c
13344 F:      tools/testing/selftests/nci/
13345
13346 NFS, SUNRPC, AND LOCKD CLIENTS
13347 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13348 M:      Anna Schumaker <anna.schumaker@netapp.com>
13349 L:      linux-nfs@vger.kernel.org
13350 S:      Maintained
13351 W:      http://client.linux-nfs.org
13352 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13353 F:      fs/lockd/
13354 F:      fs/nfs/
13355 F:      fs/nfs_common/
13356 F:      include/linux/lockd/
13357 F:      include/linux/nfs*
13358 F:      include/linux/sunrpc/
13359 F:      include/uapi/linux/nfs*
13360 F:      include/uapi/linux/sunrpc/
13361 F:      net/sunrpc/
13362 F:      Documentation/filesystems/nfs/
13363
13364 NILFS2 FILESYSTEM
13365 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13366 L:      linux-nilfs@vger.kernel.org
13367 S:      Supported
13368 W:      https://nilfs.sourceforge.io/
13369 W:      https://nilfs.osdn.jp/
13370 T:      git git://github.com/konis/nilfs2.git
13371 F:      Documentation/filesystems/nilfs2.rst
13372 F:      fs/nilfs2/
13373 F:      include/trace/events/nilfs2.h
13374 F:      include/uapi/linux/nilfs2_api.h
13375 F:      include/uapi/linux/nilfs2_ondisk.h
13376
13377 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13378 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13379 S:      Maintained
13380 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13381 F:      Documentation/scsi/NinjaSCSI.rst
13382 F:      drivers/scsi/pcmcia/nsp_*
13383
13384 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13385 M:      GOTO Masanori <gotom@debian.or.jp>
13386 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13387 S:      Maintained
13388 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13389 F:      Documentation/scsi/NinjaSCSI.rst
13390 F:      drivers/scsi/nsp32*
13391
13392 NIOS2 ARCHITECTURE
13393 M:      Dinh Nguyen <dinguyen@kernel.org>
13394 S:      Maintained
13395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13396 F:      arch/nios2/
13397
13398 NITRO ENCLAVES (NE)
13399 M:      Andra Paraschiv <andraprs@amazon.com>
13400 M:      Alexandru Vasile <lexnv@amazon.com>
13401 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13402 L:      linux-kernel@vger.kernel.org
13403 S:      Supported
13404 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13405 F:      Documentation/virt/ne_overview.rst
13406 F:      drivers/virt/nitro_enclaves/
13407 F:      include/linux/nitro_enclaves.h
13408 F:      include/uapi/linux/nitro_enclaves.h
13409 F:      samples/nitro_enclaves/
13410
13411 NOHZ, DYNTICKS SUPPORT
13412 M:      Frederic Weisbecker <fweisbec@gmail.com>
13413 M:      Thomas Gleixner <tglx@linutronix.de>
13414 M:      Ingo Molnar <mingo@kernel.org>
13415 L:      linux-kernel@vger.kernel.org
13416 S:      Maintained
13417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13418 F:      include/linux/sched/nohz.h
13419 F:      include/linux/tick.h
13420 F:      kernel/time/tick*.*
13421
13422 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13423 M:      Pavel Machek <pavel@ucw.cz>
13424 M:      Sakari Ailus <sakari.ailus@iki.fi>
13425 L:      linux-media@vger.kernel.org
13426 S:      Maintained
13427 F:      drivers/media/i2c/ad5820.c
13428 F:      drivers/media/i2c/et8ek8
13429
13430 NOKIA N900 POWER SUPPLY DRIVERS
13431 R:      Pali Rohár <pali@kernel.org>
13432 F:      drivers/power/supply/bq2415x_charger.c
13433 F:      drivers/power/supply/bq27xxx_battery.c
13434 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13435 F:      drivers/power/supply/isp1704_charger.c
13436 F:      drivers/power/supply/rx51_battery.c
13437 F:      include/linux/power/bq2415x_charger.h
13438 F:      include/linux/power/bq27xxx_battery.h
13439
13440 NOLIBC HEADER FILE
13441 M:      Willy Tarreau <w@1wt.eu>
13442 S:      Maintained
13443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13444 F:      tools/include/nolibc/
13445
13446 NSDEPS
13447 M:      Matthias Maennich <maennich@google.com>
13448 S:      Maintained
13449 F:      Documentation/core-api/symbol-namespaces.rst
13450 F:      scripts/nsdeps
13451
13452 NTB AMD DRIVER
13453 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13454 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13455 L:      linux-ntb@googlegroups.com
13456 S:      Supported
13457 F:      drivers/ntb/hw/amd/
13458
13459 NTB DRIVER CORE
13460 M:      Jon Mason <jdmason@kudzu.us>
13461 M:      Dave Jiang <dave.jiang@intel.com>
13462 M:      Allen Hubbe <allenbh@gmail.com>
13463 L:      linux-ntb@googlegroups.com
13464 S:      Supported
13465 W:      https://github.com/jonmason/ntb/wiki
13466 T:      git git://github.com/jonmason/ntb.git
13467 F:      drivers/net/ntb_netdev.c
13468 F:      drivers/ntb/
13469 F:      include/linux/ntb.h
13470 F:      include/linux/ntb_transport.h
13471 F:      tools/testing/selftests/ntb/
13472
13473 NTB IDT DRIVER
13474 M:      Serge Semin <fancer.lancer@gmail.com>
13475 L:      linux-ntb@googlegroups.com
13476 S:      Supported
13477 F:      drivers/ntb/hw/idt/
13478
13479 NTB INTEL DRIVER
13480 M:      Dave Jiang <dave.jiang@intel.com>
13481 L:      linux-ntb@googlegroups.com
13482 S:      Supported
13483 W:      https://github.com/davejiang/linux/wiki
13484 T:      git https://github.com/davejiang/linux.git
13485 F:      drivers/ntb/hw/intel/
13486
13487 NTFS FILESYSTEM
13488 M:      Anton Altaparmakov <anton@tuxera.com>
13489 L:      linux-ntfs-dev@lists.sourceforge.net
13490 S:      Supported
13491 W:      http://www.tuxera.com/
13492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13493 F:      Documentation/filesystems/ntfs.rst
13494 F:      fs/ntfs/
13495
13496 NTFS3 FILESYSTEM
13497 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13498 L:      ntfs3@lists.linux.dev
13499 S:      Supported
13500 W:      http://www.paragon-software.com/
13501 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13502 F:      Documentation/filesystems/ntfs3.rst
13503 F:      fs/ntfs3/
13504
13505 NUBUS SUBSYSTEM
13506 M:      Finn Thain <fthain@linux-m68k.org>
13507 L:      linux-m68k@lists.linux-m68k.org
13508 S:      Maintained
13509 F:      arch/*/include/asm/nubus.h
13510 F:      drivers/nubus/
13511 F:      include/linux/nubus.h
13512 F:      include/uapi/linux/nubus.h
13513
13514 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13515 M:      Antonino Daplas <adaplas@gmail.com>
13516 L:      linux-fbdev@vger.kernel.org
13517 S:      Maintained
13518 F:      drivers/video/fbdev/nvidia/
13519 F:      drivers/video/fbdev/riva/
13520
13521 NVIDIA WMI EC BACKLIGHT DRIVER
13522 M:      Daniel Dadap <ddadap@nvidia.com>
13523 L:      platform-driver-x86@vger.kernel.org
13524 S:      Supported
13525 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13526
13527 NVM EXPRESS DRIVER
13528 M:      Keith Busch <kbusch@kernel.org>
13529 M:      Jens Axboe <axboe@fb.com>
13530 M:      Christoph Hellwig <hch@lst.de>
13531 M:      Sagi Grimberg <sagi@grimberg.me>
13532 L:      linux-nvme@lists.infradead.org
13533 S:      Supported
13534 W:      http://git.infradead.org/nvme.git
13535 T:      git://git.infradead.org/nvme.git
13536 F:      drivers/nvme/host/
13537 F:      include/linux/nvme.h
13538 F:      include/uapi/linux/nvme_ioctl.h
13539
13540 NVM EXPRESS FC TRANSPORT DRIVERS
13541 M:      James Smart <james.smart@broadcom.com>
13542 L:      linux-nvme@lists.infradead.org
13543 S:      Supported
13544 F:      drivers/nvme/host/fc.c
13545 F:      drivers/nvme/target/fc.c
13546 F:      drivers/nvme/target/fcloop.c
13547 F:      include/linux/nvme-fc-driver.h
13548 F:      include/linux/nvme-fc.h
13549
13550 NVM EXPRESS TARGET DRIVER
13551 M:      Christoph Hellwig <hch@lst.de>
13552 M:      Sagi Grimberg <sagi@grimberg.me>
13553 M:      Chaitanya Kulkarni <kch@nvidia.com>
13554 L:      linux-nvme@lists.infradead.org
13555 S:      Supported
13556 W:      http://git.infradead.org/nvme.git
13557 T:      git://git.infradead.org/nvme.git
13558 F:      drivers/nvme/target/
13559
13560 NVMEM FRAMEWORK
13561 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13562 S:      Maintained
13563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13564 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13565 F:      Documentation/devicetree/bindings/nvmem/
13566 F:      drivers/nvmem/
13567 F:      include/linux/nvmem-consumer.h
13568 F:      include/linux/nvmem-provider.h
13569
13570 NXP C45 TJA11XX PHY DRIVER
13571 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13572 L:      netdev@vger.kernel.org
13573 S:      Maintained
13574 F:      drivers/net/phy/nxp-c45-tja11xx.c
13575
13576 NXP FSPI DRIVER
13577 M:      Ashish Kumar <ashish.kumar@nxp.com>
13578 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13579 L:      linux-spi@vger.kernel.org
13580 S:      Maintained
13581 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13582 F:      drivers/spi/spi-nxp-fspi.c
13583
13584 NXP FXAS21002C DRIVER
13585 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13586 L:      linux-iio@vger.kernel.org
13587 S:      Maintained
13588 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13589 F:      drivers/iio/gyro/fxas21002c.h
13590 F:      drivers/iio/gyro/fxas21002c_core.c
13591 F:      drivers/iio/gyro/fxas21002c_i2c.c
13592 F:      drivers/iio/gyro/fxas21002c_spi.c
13593
13594 NXP i.MX CLOCK DRIVERS
13595 M:      Abel Vesa <abel.vesa@nxp.com>
13596 L:      linux-clk@vger.kernel.org
13597 L:      linux-imx@nxp.com
13598 S:      Maintained
13599 F:      drivers/clk/imx/
13600
13601 NXP i.MX 8MQ DCSS DRIVER
13602 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13603 R:      Lucas Stach <l.stach@pengutronix.de>
13604 L:      dri-devel@lists.freedesktop.org
13605 S:      Maintained
13606 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13607 F:      drivers/gpu/drm/imx/dcss/
13608
13609 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13610 M:      Jagan Teki <jagan@amarulasolutions.com>
13611 S:      Maintained
13612 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13613 F:      drivers/regulator/pf8x00-regulator.c
13614
13615 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13616 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13617 L:      linux-kernel@vger.kernel.org
13618 S:      Maintained
13619 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13620 F:      drivers/extcon/extcon-ptn5150.c
13621
13622 NXP SGTL5000 DRIVER
13623 M:      Fabio Estevam <festevam@gmail.com>
13624 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13625 S:      Maintained
13626 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13627 F:      sound/soc/codecs/sgtl5000*
13628
13629 NXP SJA1105 ETHERNET SWITCH DRIVER
13630 M:      Vladimir Oltean <olteanv@gmail.com>
13631 L:      linux-kernel@vger.kernel.org
13632 S:      Maintained
13633 F:      drivers/net/dsa/sja1105
13634 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13635
13636 NXP TDA998X DRM DRIVER
13637 M:      Russell King <linux@armlinux.org.uk>
13638 S:      Maintained
13639 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13640 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13641 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13642 F:      include/drm/i2c/tda998x.h
13643 F:      include/dt-bindings/display/tda998x.h
13644 K:      "nxp,tda998x"
13645
13646 NXP TFA9879 DRIVER
13647 M:      Peter Rosin <peda@axentia.se>
13648 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13649 S:      Maintained
13650 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13651 F:      sound/soc/codecs/tfa9879*
13652
13653 NXP/Goodix TFA989X (TFA1) DRIVER
13654 M:      Stephan Gerhold <stephan@gerhold.net>
13655 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13656 S:      Maintained
13657 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13658 F:      sound/soc/codecs/tfa989x.c
13659
13660 NXP-NCI NFC DRIVER
13661 R:      Charles Gorand <charles.gorand@effinnov.com>
13662 L:      linux-nfc@lists.01.org (subscribers-only)
13663 S:      Supported
13664 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13665 F:      drivers/nfc/nxp-nci
13666
13667 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13668 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13669 R:      NXP Linux Team <linux-imx@nxp.com>
13670 L:      linux-media@vger.kernel.org
13671 S:      Maintained
13672 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13673 F:      drivers/media/platform/imx-jpeg
13674
13675 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13676 M:      Jonas Malaco <jonas@protocubo.io>
13677 L:      linux-hwmon@vger.kernel.org
13678 S:      Maintained
13679 F:      Documentation/hwmon/nzxt-kraken2.rst
13680 F:      drivers/hwmon/nzxt-kraken2.c
13681
13682 OBJAGG
13683 M:      Jiri Pirko <jiri@nvidia.com>
13684 L:      netdev@vger.kernel.org
13685 S:      Supported
13686 F:      include/linux/objagg.h
13687 F:      lib/objagg.c
13688 F:      lib/test_objagg.c
13689
13690 OBJTOOL
13691 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13692 M:      Peter Zijlstra <peterz@infradead.org>
13693 S:      Supported
13694 F:      tools/objtool/
13695 F:      include/linux/objtool.h
13696
13697 OCELOT ETHERNET SWITCH DRIVER
13698 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13699 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13700 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13701 M:      UNGLinuxDriver@microchip.com
13702 L:      netdev@vger.kernel.org
13703 S:      Supported
13704 F:      drivers/net/dsa/ocelot/*
13705 F:      drivers/net/ethernet/mscc/
13706 F:      include/soc/mscc/ocelot*
13707 F:      net/dsa/tag_ocelot.c
13708 F:      net/dsa/tag_ocelot_8021q.c
13709 F:      tools/testing/selftests/drivers/net/ocelot/*
13710
13711 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13712 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13713 M:      Andrew Donnellan <ajd@linux.ibm.com>
13714 L:      linuxppc-dev@lists.ozlabs.org
13715 S:      Supported
13716 F:      Documentation/userspace-api/accelerators/ocxl.rst
13717 F:      arch/powerpc/include/asm/pnv-ocxl.h
13718 F:      arch/powerpc/platforms/powernv/ocxl.c
13719 F:      drivers/misc/ocxl/
13720 F:      include/misc/ocxl*
13721 F:      include/uapi/misc/ocxl.h
13722
13723 OMAP AUDIO SUPPORT
13724 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13725 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13726 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13727 L:      linux-omap@vger.kernel.org
13728 S:      Maintained
13729 F:      sound/soc/ti/n810.c
13730 F:      sound/soc/ti/omap*
13731 F:      sound/soc/ti/rx51.c
13732 F:      sound/soc/ti/sdma-pcm.*
13733
13734 OMAP CLOCK FRAMEWORK SUPPORT
13735 M:      Paul Walmsley <paul@pwsan.com>
13736 L:      linux-omap@vger.kernel.org
13737 S:      Maintained
13738 F:      arch/arm/*omap*/*clock*
13739
13740 OMAP DEVICE TREE SUPPORT
13741 M:      Benoît Cousson <bcousson@baylibre.com>
13742 M:      Tony Lindgren <tony@atomide.com>
13743 L:      linux-omap@vger.kernel.org
13744 L:      devicetree@vger.kernel.org
13745 S:      Maintained
13746 F:      arch/arm/boot/dts/*am3*
13747 F:      arch/arm/boot/dts/*am4*
13748 F:      arch/arm/boot/dts/*am5*
13749 F:      arch/arm/boot/dts/*dra7*
13750 F:      arch/arm/boot/dts/*omap*
13751 F:      arch/arm/boot/dts/logicpd-som-lv*
13752 F:      arch/arm/boot/dts/logicpd-torpedo*
13753
13754 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13755 L:      linux-omap@vger.kernel.org
13756 L:      linux-fbdev@vger.kernel.org
13757 S:      Orphan
13758 F:      Documentation/arm/omap/dss.rst
13759 F:      drivers/video/fbdev/omap2/
13760
13761 OMAP FRAMEBUFFER SUPPORT
13762 L:      linux-fbdev@vger.kernel.org
13763 L:      linux-omap@vger.kernel.org
13764 S:      Orphan
13765 F:      drivers/video/fbdev/omap/
13766
13767 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13768 M:      Roger Quadros <rogerq@kernel.org>
13769 M:      Tony Lindgren <tony@atomide.com>
13770 L:      linux-omap@vger.kernel.org
13771 S:      Maintained
13772 F:      arch/arm/mach-omap2/*gpmc*
13773 F:      drivers/memory/omap-gpmc.c
13774
13775 OMAP GPIO DRIVER
13776 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13777 M:      Santosh Shilimkar <ssantosh@kernel.org>
13778 M:      Kevin Hilman <khilman@kernel.org>
13779 L:      linux-omap@vger.kernel.org
13780 S:      Maintained
13781 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13782 F:      drivers/gpio/gpio-omap.c
13783
13784 OMAP HARDWARE SPINLOCK SUPPORT
13785 M:      Ohad Ben-Cohen <ohad@wizery.com>
13786 L:      linux-omap@vger.kernel.org
13787 S:      Maintained
13788 F:      drivers/hwspinlock/omap_hwspinlock.c
13789
13790 OMAP HS MMC SUPPORT
13791 L:      linux-mmc@vger.kernel.org
13792 L:      linux-omap@vger.kernel.org
13793 S:      Orphan
13794 F:      drivers/mmc/host/omap_hsmmc.c
13795
13796 OMAP HWMOD DATA
13797 M:      Paul Walmsley <paul@pwsan.com>
13798 L:      linux-omap@vger.kernel.org
13799 S:      Maintained
13800 F:      arch/arm/mach-omap2/omap_hwmod*data*
13801
13802 OMAP HWMOD SUPPORT
13803 M:      Benoît Cousson <bcousson@baylibre.com>
13804 M:      Paul Walmsley <paul@pwsan.com>
13805 L:      linux-omap@vger.kernel.org
13806 S:      Maintained
13807 F:      arch/arm/mach-omap2/omap_hwmod.*
13808
13809 OMAP I2C DRIVER
13810 M:      Vignesh R <vigneshr@ti.com>
13811 L:      linux-omap@vger.kernel.org
13812 L:      linux-i2c@vger.kernel.org
13813 S:      Maintained
13814 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13815 F:      drivers/i2c/busses/i2c-omap.c
13816
13817 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13818 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13819 L:      linux-media@vger.kernel.org
13820 S:      Maintained
13821 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13822 F:      drivers/media/platform/omap3isp/
13823 F:      drivers/staging/media/omap4iss/
13824
13825 OMAP MMC SUPPORT
13826 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13827 L:      linux-omap@vger.kernel.org
13828 S:      Odd Fixes
13829 F:      drivers/mmc/host/omap.c
13830
13831 OMAP POWER MANAGEMENT SUPPORT
13832 M:      Kevin Hilman <khilman@kernel.org>
13833 L:      linux-omap@vger.kernel.org
13834 S:      Maintained
13835 F:      arch/arm/*omap*/*pm*
13836 F:      drivers/cpufreq/omap-cpufreq.c
13837
13838 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13839 M:      Rajendra Nayak <rnayak@codeaurora.org>
13840 M:      Paul Walmsley <paul@pwsan.com>
13841 L:      linux-omap@vger.kernel.org
13842 S:      Maintained
13843 F:      arch/arm/mach-omap2/prm*
13844
13845 OMAP RANDOM NUMBER GENERATOR SUPPORT
13846 M:      Deepak Saxena <dsaxena@plexity.net>
13847 S:      Maintained
13848 F:      drivers/char/hw_random/omap-rng.c
13849
13850 OMAP USB SUPPORT
13851 L:      linux-usb@vger.kernel.org
13852 L:      linux-omap@vger.kernel.org
13853 S:      Orphan
13854 F:      arch/arm/*omap*/usb*
13855 F:      drivers/usb/*/*omap*
13856
13857 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13858 M:      Mark Jackson <mpfj@newflow.co.uk>
13859 L:      linux-omap@vger.kernel.org
13860 S:      Maintained
13861 F:      arch/arm/boot/dts/am335x-nano.dts
13862
13863 OMAP1 SUPPORT
13864 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13865 M:      Tony Lindgren <tony@atomide.com>
13866 L:      linux-omap@vger.kernel.org
13867 S:      Maintained
13868 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13870 F:      arch/arm/configs/omap1_defconfig
13871 F:      arch/arm/mach-omap1/
13872 F:      arch/arm/plat-omap/
13873 F:      drivers/i2c/busses/i2c-omap.c
13874 F:      include/linux/platform_data/ams-delta-fiq.h
13875 F:      include/linux/platform_data/i2c-omap.h
13876
13877 OMAP2+ SUPPORT
13878 M:      Tony Lindgren <tony@atomide.com>
13879 L:      linux-omap@vger.kernel.org
13880 S:      Maintained
13881 W:      http://www.muru.com/linux/omap/
13882 W:      http://linux.omap.com/
13883 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13885 F:      arch/arm/configs/omap2plus_defconfig
13886 F:      arch/arm/mach-omap2/
13887 F:      arch/arm/plat-omap/
13888 F:      drivers/bus/ti-sysc.c
13889 F:      drivers/i2c/busses/i2c-omap.c
13890 F:      drivers/irqchip/irq-omap-intc.c
13891 F:      drivers/mfd/*omap*.c
13892 F:      drivers/mfd/menelaus.c
13893 F:      drivers/mfd/palmas.c
13894 F:      drivers/mfd/tps65217.c
13895 F:      drivers/mfd/tps65218.c
13896 F:      drivers/mfd/tps65910.c
13897 F:      drivers/mfd/twl-core.[ch]
13898 F:      drivers/mfd/twl4030*.c
13899 F:      drivers/mfd/twl6030*.c
13900 F:      drivers/mfd/twl6040*.c
13901 F:      drivers/regulator/palmas-regulator*.c
13902 F:      drivers/regulator/pbias-regulator.c
13903 F:      drivers/regulator/tps65217-regulator.c
13904 F:      drivers/regulator/tps65218-regulator.c
13905 F:      drivers/regulator/tps65910-regulator.c
13906 F:      drivers/regulator/twl-regulator.c
13907 F:      drivers/regulator/twl6030-regulator.c
13908 F:      include/linux/platform_data/i2c-omap.h
13909 F:      include/linux/platform_data/ti-sysc.h
13910
13911 OMFS FILESYSTEM
13912 M:      Bob Copeland <me@bobcopeland.com>
13913 L:      linux-karma-devel@lists.sourceforge.net
13914 S:      Maintained
13915 F:      Documentation/filesystems/omfs.rst
13916 F:      fs/omfs/
13917
13918 OMNIKEY CARDMAN 4000 DRIVER
13919 M:      Harald Welte <laforge@gnumonks.org>
13920 S:      Maintained
13921 F:      drivers/char/pcmcia/cm4000_cs.c
13922 F:      include/linux/cm4000_cs.h
13923 F:      include/uapi/linux/cm4000_cs.h
13924
13925 OMNIKEY CARDMAN 4040 DRIVER
13926 M:      Harald Welte <laforge@gnumonks.org>
13927 S:      Maintained
13928 F:      drivers/char/pcmcia/cm4040_cs.*
13929
13930 OMNIVISION OV02A10 SENSOR DRIVER
13931 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13932 L:      linux-media@vger.kernel.org
13933 S:      Maintained
13934 T:      git git://linuxtv.org/media_tree.git
13935 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13936 F:      drivers/media/i2c/ov02a10.c
13937
13938 OMNIVISION OV13858 SENSOR DRIVER
13939 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13940 L:      linux-media@vger.kernel.org
13941 S:      Maintained
13942 T:      git git://linuxtv.org/media_tree.git
13943 F:      drivers/media/i2c/ov13858.c
13944
13945 OMNIVISION OV13B10 SENSOR DRIVER
13946 M:      Arec Kao <arec.kao@intel.com>
13947 L:      linux-media@vger.kernel.org
13948 S:      Maintained
13949 T:      git git://linuxtv.org/media_tree.git
13950 F:      drivers/media/i2c/ov13b10.c
13951
13952 OMNIVISION OV2680 SENSOR DRIVER
13953 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13954 L:      linux-media@vger.kernel.org
13955 S:      Maintained
13956 T:      git git://linuxtv.org/media_tree.git
13957 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13958 F:      drivers/media/i2c/ov2680.c
13959
13960 OMNIVISION OV2685 SENSOR DRIVER
13961 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13962 L:      linux-media@vger.kernel.org
13963 S:      Maintained
13964 T:      git git://linuxtv.org/media_tree.git
13965 F:      drivers/media/i2c/ov2685.c
13966
13967 OMNIVISION OV2740 SENSOR DRIVER
13968 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13969 R:      Shawn Tu <shawnx.tu@intel.com>
13970 R:      Bingbu Cao <bingbu.cao@intel.com>
13971 L:      linux-media@vger.kernel.org
13972 S:      Maintained
13973 T:      git git://linuxtv.org/media_tree.git
13974 F:      drivers/media/i2c/ov2740.c
13975
13976 OMNIVISION OV5640 SENSOR DRIVER
13977 M:      Steve Longerbeam <slongerbeam@gmail.com>
13978 L:      linux-media@vger.kernel.org
13979 S:      Maintained
13980 T:      git git://linuxtv.org/media_tree.git
13981 F:      drivers/media/i2c/ov5640.c
13982
13983 OMNIVISION OV5647 SENSOR DRIVER
13984 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13985 M:      Jacopo Mondi <jacopo@jmondi.org>
13986 L:      linux-media@vger.kernel.org
13987 S:      Maintained
13988 T:      git git://linuxtv.org/media_tree.git
13989 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13990 F:      drivers/media/i2c/ov5647.c
13991
13992 OMNIVISION OV5670 SENSOR DRIVER
13993 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13994 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13995 L:      linux-media@vger.kernel.org
13996 S:      Maintained
13997 T:      git git://linuxtv.org/media_tree.git
13998 F:      drivers/media/i2c/ov5670.c
13999
14000 OMNIVISION OV5675 SENSOR DRIVER
14001 M:      Shawn Tu <shawnx.tu@intel.com>
14002 L:      linux-media@vger.kernel.org
14003 S:      Maintained
14004 T:      git git://linuxtv.org/media_tree.git
14005 F:      drivers/media/i2c/ov5675.c
14006
14007 OMNIVISION OV5695 SENSOR DRIVER
14008 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14009 L:      linux-media@vger.kernel.org
14010 S:      Maintained
14011 T:      git git://linuxtv.org/media_tree.git
14012 F:      drivers/media/i2c/ov5695.c
14013
14014 OMNIVISION OV7670 SENSOR DRIVER
14015 L:      linux-media@vger.kernel.org
14016 S:      Orphan
14017 T:      git git://linuxtv.org/media_tree.git
14018 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14019 F:      drivers/media/i2c/ov7670.c
14020
14021 OMNIVISION OV772x SENSOR DRIVER
14022 M:      Jacopo Mondi <jacopo@jmondi.org>
14023 L:      linux-media@vger.kernel.org
14024 S:      Odd fixes
14025 T:      git git://linuxtv.org/media_tree.git
14026 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14027 F:      drivers/media/i2c/ov772x.c
14028 F:      include/media/i2c/ov772x.h
14029
14030 OMNIVISION OV7740 SENSOR DRIVER
14031 M:      Wenyou Yang <wenyou.yang@microchip.com>
14032 L:      linux-media@vger.kernel.org
14033 S:      Maintained
14034 T:      git git://linuxtv.org/media_tree.git
14035 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14036 F:      drivers/media/i2c/ov7740.c
14037
14038 OMNIVISION OV8856 SENSOR DRIVER
14039 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14040 L:      linux-media@vger.kernel.org
14041 S:      Maintained
14042 T:      git git://linuxtv.org/media_tree.git
14043 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14044 F:      drivers/media/i2c/ov8856.c
14045
14046 OMNIVISION OV9282 SENSOR DRIVER
14047 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14048 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14049 L:      linux-media@vger.kernel.org
14050 S:      Maintained
14051 T:      git git://linuxtv.org/media_tree.git
14052 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14053 F:      drivers/media/i2c/ov9282.c
14054
14055 OMNIVISION OV9640 SENSOR DRIVER
14056 M:      Petr Cvek <petrcvekcz@gmail.com>
14057 L:      linux-media@vger.kernel.org
14058 S:      Maintained
14059 F:      drivers/media/i2c/ov9640.*
14060
14061 OMNIVISION OV9650 SENSOR DRIVER
14062 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14063 R:      Akinobu Mita <akinobu.mita@gmail.com>
14064 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14065 L:      linux-media@vger.kernel.org
14066 S:      Maintained
14067 T:      git git://linuxtv.org/media_tree.git
14068 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14069 F:      drivers/media/i2c/ov9650.c
14070
14071 OMNIVISION OV9734 SENSOR DRIVER
14072 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14073 R:      Bingbu Cao <bingbu.cao@intel.com>
14074 L:      linux-media@vger.kernel.org
14075 S:      Maintained
14076 T:      git git://linuxtv.org/media_tree.git
14077 F:      drivers/media/i2c/ov9734.c
14078
14079 ONENAND FLASH DRIVER
14080 M:      Kyungmin Park <kyungmin.park@samsung.com>
14081 L:      linux-mtd@lists.infradead.org
14082 S:      Maintained
14083 F:      drivers/mtd/nand/onenand/
14084 F:      include/linux/mtd/onenand*.h
14085
14086 ONION OMEGA2+ BOARD
14087 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14088 L:      linux-mips@vger.kernel.org
14089 S:      Maintained
14090 F:      arch/mips/boot/dts/ralink/omega2p.dts
14091
14092 OP-TEE DRIVER
14093 M:      Jens Wiklander <jens.wiklander@linaro.org>
14094 L:      op-tee@lists.trustedfirmware.org
14095 S:      Maintained
14096 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14097 F:      drivers/tee/optee/
14098
14099 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14100 M:      Sumit Garg <sumit.garg@linaro.org>
14101 L:      op-tee@lists.trustedfirmware.org
14102 S:      Maintained
14103 F:      drivers/char/hw_random/optee-rng.c
14104
14105 OPA-VNIC DRIVER
14106 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14107 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14108 L:      linux-rdma@vger.kernel.org
14109 S:      Supported
14110 F:      drivers/infiniband/ulp/opa_vnic
14111
14112 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14113 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14114 M:      Frank Rowand <frowand.list@gmail.com>
14115 L:      devicetree@vger.kernel.org
14116 S:      Maintained
14117 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14118 F:      Documentation/devicetree/overlay-notes.rst
14119 F:      drivers/of/overlay.c
14120 F:      drivers/of/resolver.c
14121 K:      of_overlay_notifier_
14122
14123 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14124 M:      Rob Herring <robh+dt@kernel.org>
14125 M:      Frank Rowand <frowand.list@gmail.com>
14126 L:      devicetree@vger.kernel.org
14127 S:      Maintained
14128 W:      http://www.devicetree.org/
14129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14130 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14131 F:      drivers/of/
14132 F:      include/linux/of*.h
14133 F:      scripts/dtc/
14134
14135 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14136 M:      Rob Herring <robh+dt@kernel.org>
14137 L:      devicetree@vger.kernel.org
14138 S:      Maintained
14139 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14141 F:      Documentation/devicetree/
14142 F:      arch/*/boot/dts/
14143 F:      include/dt-bindings/
14144
14145 OPENCOMPUTE PTP CLOCK DRIVER
14146 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14147 L:      netdev@vger.kernel.org
14148 S:      Maintained
14149 F:      drivers/ptp/ptp_ocp.c
14150
14151 OPENCORES I2C BUS DRIVER
14152 M:      Peter Korsgaard <peter@korsgaard.com>
14153 M:      Andrew Lunn <andrew@lunn.ch>
14154 L:      linux-i2c@vger.kernel.org
14155 S:      Maintained
14156 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14157 F:      Documentation/i2c/busses/i2c-ocores.rst
14158 F:      drivers/i2c/busses/i2c-ocores.c
14159 F:      include/linux/platform_data/i2c-ocores.h
14160
14161 OPENRISC ARCHITECTURE
14162 M:      Jonas Bonn <jonas@southpole.se>
14163 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14164 M:      Stafford Horne <shorne@gmail.com>
14165 L:      openrisc@lists.librecores.org
14166 S:      Maintained
14167 W:      http://openrisc.io
14168 T:      git git://github.com/openrisc/linux.git
14169 F:      Documentation/devicetree/bindings/openrisc/
14170 F:      Documentation/openrisc/
14171 F:      arch/openrisc/
14172 F:      drivers/irqchip/irq-ompic.c
14173 F:      drivers/irqchip/irq-or1k-*
14174
14175 OPENVSWITCH
14176 M:      Pravin B Shelar <pshelar@ovn.org>
14177 L:      netdev@vger.kernel.org
14178 L:      dev@openvswitch.org
14179 S:      Maintained
14180 W:      http://openvswitch.org
14181 F:      include/uapi/linux/openvswitch.h
14182 F:      net/openvswitch/
14183
14184 OPERATING PERFORMANCE POINTS (OPP)
14185 M:      Viresh Kumar <vireshk@kernel.org>
14186 M:      Nishanth Menon <nm@ti.com>
14187 M:      Stephen Boyd <sboyd@kernel.org>
14188 L:      linux-pm@vger.kernel.org
14189 S:      Maintained
14190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14191 F:      Documentation/devicetree/bindings/opp/
14192 F:      Documentation/power/opp.rst
14193 F:      drivers/opp/
14194 F:      include/linux/pm_opp.h
14195
14196 OPL4 DRIVER
14197 M:      Clemens Ladisch <clemens@ladisch.de>
14198 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14199 S:      Maintained
14200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14201 F:      sound/drivers/opl4/
14202
14203 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14204 M:      Mark Fasheh <mark@fasheh.com>
14205 M:      Joel Becker <jlbec@evilplan.org>
14206 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14207 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14208 S:      Supported
14209 W:      http://ocfs2.wiki.kernel.org
14210 F:      Documentation/filesystems/dlmfs.rst
14211 F:      Documentation/filesystems/ocfs2.rst
14212 F:      fs/ocfs2/
14213
14214 ORANGEFS FILESYSTEM
14215 M:      Mike Marshall <hubcap@omnibond.com>
14216 R:      Martin Brandenburg <martin@omnibond.com>
14217 L:      devel@lists.orangefs.org
14218 S:      Supported
14219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14220 F:      Documentation/filesystems/orangefs.rst
14221 F:      fs/orangefs/
14222
14223 ORINOCO DRIVER
14224 L:      linux-wireless@vger.kernel.org
14225 S:      Orphan
14226 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14227 W:      http://www.nongnu.org/orinoco/
14228 F:      drivers/net/wireless/intersil/orinoco/
14229
14230 OV2659 OMNIVISION SENSOR DRIVER
14231 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14232 L:      linux-media@vger.kernel.org
14233 S:      Maintained
14234 W:      https://linuxtv.org
14235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14236 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14237 F:      drivers/media/i2c/ov2659.c
14238 F:      include/media/i2c/ov2659.h
14239
14240 OVERLAY FILESYSTEM
14241 M:      Miklos Szeredi <miklos@szeredi.hu>
14242 L:      linux-unionfs@vger.kernel.org
14243 S:      Supported
14244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14245 F:      Documentation/filesystems/overlayfs.rst
14246 F:      fs/overlayfs/
14247
14248 P54 WIRELESS DRIVER
14249 M:      Christian Lamparter <chunkeey@googlemail.com>
14250 L:      linux-wireless@vger.kernel.org
14251 S:      Maintained
14252 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14253 F:      drivers/net/wireless/intersil/p54/
14254
14255 PACKING
14256 M:      Vladimir Oltean <olteanv@gmail.com>
14257 L:      netdev@vger.kernel.org
14258 S:      Supported
14259 F:      Documentation/core-api/packing.rst
14260 F:      include/linux/packing.h
14261 F:      lib/packing.c
14262
14263 PADATA PARALLEL EXECUTION MECHANISM
14264 M:      Steffen Klassert <steffen.klassert@secunet.com>
14265 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14266 L:      linux-crypto@vger.kernel.org
14267 L:      linux-kernel@vger.kernel.org
14268 S:      Maintained
14269 F:      Documentation/core-api/padata.rst
14270 F:      include/linux/padata.h
14271 F:      kernel/padata.c
14272
14273 PAGE POOL
14274 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14275 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14276 L:      netdev@vger.kernel.org
14277 S:      Supported
14278 F:      Documentation/networking/page_pool.rst
14279 F:      include/net/page_pool.h
14280 F:      include/trace/events/page_pool.h
14281 F:      net/core/page_pool.c
14282
14283 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14284 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14285 L:      platform-driver-x86@vger.kernel.org
14286 S:      Maintained
14287 F:      drivers/platform/x86/panasonic-laptop.c
14288
14289 PARALLAX PING IIO SENSOR DRIVER
14290 M:      Andreas Klinger <ak@it-klinger.de>
14291 L:      linux-iio@vger.kernel.org
14292 S:      Maintained
14293 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14294 F:      drivers/iio/proximity/ping.c
14295
14296 PARALLEL LCD/KEYPAD PANEL DRIVER
14297 M:      Willy Tarreau <willy@haproxy.com>
14298 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14299 S:      Odd Fixes
14300 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14301 F:      drivers/auxdisplay/panel.c
14302
14303 PARALLEL PORT SUBSYSTEM
14304 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14305 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14306 L:      linux-parport@lists.infradead.org (subscribers-only)
14307 S:      Maintained
14308 F:      Documentation/driver-api/parport*.rst
14309 F:      drivers/char/ppdev.c
14310 F:      drivers/parport/
14311 F:      include/linux/parport*.h
14312 F:      include/uapi/linux/ppdev.h
14313
14314 PARAVIRT_OPS INTERFACE
14315 M:      Juergen Gross <jgross@suse.com>
14316 M:      Deep Shah <sdeep@vmware.com>
14317 M:      "VMware, Inc." <pv-drivers@vmware.com>
14318 L:      virtualization@lists.linux-foundation.org
14319 S:      Supported
14320 F:      Documentation/virt/paravirt_ops.rst
14321 F:      arch/*/include/asm/paravirt*.h
14322 F:      arch/*/kernel/paravirt*
14323 F:      include/linux/hypervisor.h
14324
14325 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14326 M:      Tim Waugh <tim@cyberelk.net>
14327 L:      linux-parport@lists.infradead.org (subscribers-only)
14328 S:      Maintained
14329 F:      Documentation/admin-guide/blockdev/paride.rst
14330 F:      drivers/block/paride/
14331
14332 PARISC ARCHITECTURE
14333 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14334 M:      Helge Deller <deller@gmx.de>
14335 L:      linux-parisc@vger.kernel.org
14336 S:      Maintained
14337 W:      https://parisc.wiki.kernel.org
14338 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14341 F:      Documentation/parisc/
14342 F:      arch/parisc/
14343 F:      drivers/char/agp/parisc-agp.c
14344 F:      drivers/input/misc/hp_sdc_rtc.c
14345 F:      drivers/input/serio/gscps2.c
14346 F:      drivers/input/serio/hp_sdc*
14347 F:      drivers/parisc/
14348 F:      drivers/parport/parport_gsc.*
14349 F:      drivers/tty/serial/8250/8250_gsc.c
14350 F:      drivers/video/console/sti*
14351 F:      drivers/video/fbdev/sti*
14352 F:      drivers/video/logo/logo_parisc*
14353 F:      include/linux/hp_sdc.h
14354
14355 PARMAN
14356 M:      Jiri Pirko <jiri@nvidia.com>
14357 L:      netdev@vger.kernel.org
14358 S:      Supported
14359 F:      include/linux/parman.h
14360 F:      lib/parman.c
14361 F:      lib/test_parman.c
14362
14363 PC ENGINES APU BOARD DRIVER
14364 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14365 S:      Maintained
14366 F:      drivers/platform/x86/pcengines-apuv2.c
14367
14368 PC87360 HARDWARE MONITORING DRIVER
14369 M:      Jim Cromie <jim.cromie@gmail.com>
14370 L:      linux-hwmon@vger.kernel.org
14371 S:      Maintained
14372 F:      Documentation/hwmon/pc87360.rst
14373 F:      drivers/hwmon/pc87360.c
14374
14375 PC8736x GPIO DRIVER
14376 M:      Jim Cromie <jim.cromie@gmail.com>
14377 S:      Maintained
14378 F:      drivers/char/pc8736x_gpio.c
14379
14380 PC87427 HARDWARE MONITORING DRIVER
14381 M:      Jean Delvare <jdelvare@suse.com>
14382 L:      linux-hwmon@vger.kernel.org
14383 S:      Maintained
14384 F:      Documentation/hwmon/pc87427.rst
14385 F:      drivers/hwmon/pc87427.c
14386
14387 PCA9532 LED DRIVER
14388 M:      Riku Voipio <riku.voipio@iki.fi>
14389 S:      Maintained
14390 F:      drivers/leds/leds-pca9532.c
14391 F:      include/linux/leds-pca9532.h
14392
14393 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14394 M:      Guenter Roeck <linux@roeck-us.net>
14395 L:      linux-i2c@vger.kernel.org
14396 S:      Maintained
14397 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14398
14399 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14400 M:      Khalid Aziz <khalid@gonehiking.org>
14401 S:      Maintained
14402 F:      drivers/firmware/pcdp.*
14403
14404 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14405 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14406 M:      Pali Rohár <pali@kernel.org>
14407 L:      linux-pci@vger.kernel.org
14408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14409 S:      Maintained
14410 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14411 F:      drivers/pci/controller/pci-aardvark.c
14412
14413 PCI DRIVER FOR ALTERA PCIE IP
14414 M:      Joyce Ooi <joyce.ooi@intel.com>
14415 L:      linux-pci@vger.kernel.org
14416 S:      Supported
14417 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14418 F:      drivers/pci/controller/pcie-altera.c
14419
14420 PCI DRIVER FOR APPLIEDMICRO XGENE
14421 M:      Toan Le <toan@os.amperecomputing.com>
14422 L:      linux-pci@vger.kernel.org
14423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14424 S:      Maintained
14425 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14426 F:      drivers/pci/controller/pci-xgene.c
14427
14428 PCI DRIVER FOR ARM VERSATILE PLATFORM
14429 M:      Rob Herring <robh@kernel.org>
14430 L:      linux-pci@vger.kernel.org
14431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14432 S:      Maintained
14433 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14434 F:      drivers/pci/controller/pci-versatile.c
14435
14436 PCI DRIVER FOR ARMADA 8K
14437 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14438 L:      linux-pci@vger.kernel.org
14439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14440 S:      Maintained
14441 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14442 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14443
14444 PCI DRIVER FOR CADENCE PCIE IP
14445 M:      Tom Joseph <tjoseph@cadence.com>
14446 L:      linux-pci@vger.kernel.org
14447 S:      Maintained
14448 F:      Documentation/devicetree/bindings/pci/cdns,*
14449 F:      drivers/pci/controller/cadence/
14450
14451 PCI DRIVER FOR FREESCALE LAYERSCAPE
14452 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14453 M:      Mingkai Hu <mingkai.hu@nxp.com>
14454 M:      Roy Zang <roy.zang@nxp.com>
14455 L:      linuxppc-dev@lists.ozlabs.org
14456 L:      linux-pci@vger.kernel.org
14457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14458 S:      Maintained
14459 F:      drivers/pci/controller/dwc/*layerscape*
14460
14461 PCI DRIVER FOR GENERIC OF HOSTS
14462 M:      Will Deacon <will@kernel.org>
14463 L:      linux-pci@vger.kernel.org
14464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14465 S:      Maintained
14466 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14467 F:      drivers/pci/controller/pci-host-common.c
14468 F:      drivers/pci/controller/pci-host-generic.c
14469
14470 PCI DRIVER FOR IMX6
14471 M:      Richard Zhu <hongxing.zhu@nxp.com>
14472 M:      Lucas Stach <l.stach@pengutronix.de>
14473 L:      linux-pci@vger.kernel.org
14474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14475 S:      Maintained
14476 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14477 F:      drivers/pci/controller/dwc/*imx6*
14478
14479 PCI DRIVER FOR FU740
14480 M:      Paul Walmsley <paul.walmsley@sifive.com>
14481 M:      Greentime Hu <greentime.hu@sifive.com>
14482 L:      linux-pci@vger.kernel.org
14483 S:      Maintained
14484 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14485 F:      drivers/pci/controller/dwc/pcie-fu740.c
14486
14487 PCI DRIVER FOR INTEL IXP4XX
14488 M:      Linus Walleij <linus.walleij@linaro.org>
14489 S:      Maintained
14490 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14491 F:      drivers/pci/controller/pci-ixp4xx.c
14492
14493 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14494 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14495 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14496 L:      linux-pci@vger.kernel.org
14497 S:      Supported
14498 F:      drivers/pci/controller/vmd.c
14499
14500 PCI DRIVER FOR MICROSEMI SWITCHTEC
14501 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14502 M:      Logan Gunthorpe <logang@deltatee.com>
14503 L:      linux-pci@vger.kernel.org
14504 S:      Maintained
14505 F:      Documentation/ABI/testing/sysfs-class-switchtec
14506 F:      Documentation/driver-api/switchtec.rst
14507 F:      drivers/ntb/hw/mscc/
14508 F:      drivers/pci/switch/switchtec*
14509 F:      include/linux/switchtec.h
14510 F:      include/uapi/linux/switchtec_ioctl.h
14511
14512 PCI DRIVER FOR MOBIVEIL PCIE IP
14513 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14514 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14515 L:      linux-pci@vger.kernel.org
14516 S:      Supported
14517 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14518 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14519
14520 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14521 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14522 L:      linux-pci@vger.kernel.org
14523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14524 S:      Maintained
14525 F:      drivers/pci/controller/*mvebu*
14526
14527 PCI DRIVER FOR NVIDIA TEGRA
14528 M:      Thierry Reding <thierry.reding@gmail.com>
14529 L:      linux-tegra@vger.kernel.org
14530 L:      linux-pci@vger.kernel.org
14531 S:      Supported
14532 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14533 F:      drivers/pci/controller/pci-tegra.c
14534
14535 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14536 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14537 L:      linux-pci@vger.kernel.org
14538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14539 S:      Maintained
14540 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14541 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14542
14543 PCI DRIVER FOR RENESAS R-CAR
14544 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14545 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14546 L:      linux-pci@vger.kernel.org
14547 L:      linux-renesas-soc@vger.kernel.org
14548 S:      Maintained
14549 F:      Documentation/devicetree/bindings/pci/*rcar*
14550 F:      drivers/pci/controller/*rcar*
14551
14552 PCI DRIVER FOR SAMSUNG EXYNOS
14553 M:      Jingoo Han <jingoohan1@gmail.com>
14554 L:      linux-pci@vger.kernel.org
14555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14556 L:      linux-samsung-soc@vger.kernel.org
14557 S:      Maintained
14558 F:      drivers/pci/controller/dwc/pci-exynos.c
14559
14560 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14561 M:      Jingoo Han <jingoohan1@gmail.com>
14562 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14563 L:      linux-pci@vger.kernel.org
14564 S:      Maintained
14565 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14566 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14567 F:      drivers/pci/controller/dwc/*designware*
14568
14569 PCI DRIVER FOR TI DRA7XX/J721E
14570 M:      Kishon Vijay Abraham I <kishon@ti.com>
14571 L:      linux-omap@vger.kernel.org
14572 L:      linux-pci@vger.kernel.org
14573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14574 S:      Supported
14575 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14576 F:      drivers/pci/controller/cadence/pci-j721e.c
14577 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14578
14579 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14580 M:      Linus Walleij <linus.walleij@linaro.org>
14581 L:      linux-pci@vger.kernel.org
14582 S:      Maintained
14583 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14584 F:      drivers/pci/controller/pci-v3-semi.c
14585
14586 PCI ENDPOINT SUBSYSTEM
14587 M:      Kishon Vijay Abraham I <kishon@ti.com>
14588 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14589 R:      Krzysztof Wilczyński <kw@linux.com>
14590 L:      linux-pci@vger.kernel.org
14591 S:      Supported
14592 F:      Documentation/PCI/endpoint/*
14593 F:      Documentation/misc-devices/pci-endpoint-test.rst
14594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14595 F:      drivers/misc/pci_endpoint_test.c
14596 F:      drivers/pci/endpoint/
14597 F:      tools/pci/
14598
14599 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14600 M:      Russell Currey <ruscur@russell.cc>
14601 M:      Oliver O'Halloran <oohall@gmail.com>
14602 L:      linuxppc-dev@lists.ozlabs.org
14603 S:      Supported
14604 F:      Documentation/PCI/pci-error-recovery.rst
14605 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14606 F:      arch/powerpc/include/*/eeh*.h
14607 F:      arch/powerpc/kernel/eeh*.c
14608 F:      arch/powerpc/platforms/*/eeh*.c
14609 F:      drivers/pci/pcie/aer.c
14610 F:      drivers/pci/pcie/dpc.c
14611 F:      drivers/pci/pcie/err.c
14612
14613 PCI ERROR RECOVERY
14614 M:      Linas Vepstas <linasvepstas@gmail.com>
14615 L:      linux-pci@vger.kernel.org
14616 S:      Supported
14617 F:      Documentation/PCI/pci-error-recovery.rst
14618
14619 PCI MSI DRIVER FOR ALTERA MSI IP
14620 M:      Joyce Ooi <joyce.ooi@intel.com>
14621 L:      linux-pci@vger.kernel.org
14622 S:      Supported
14623 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14624 F:      drivers/pci/controller/pcie-altera-msi.c
14625
14626 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14627 M:      Toan Le <toan@os.amperecomputing.com>
14628 L:      linux-pci@vger.kernel.org
14629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14630 S:      Maintained
14631 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14632 F:      drivers/pci/controller/pci-xgene-msi.c
14633
14634 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14635 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14636 R:      Rob Herring <robh@kernel.org>
14637 R:      Krzysztof Wilczyński <kw@linux.com>
14638 L:      linux-pci@vger.kernel.org
14639 S:      Supported
14640 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14642 F:      drivers/pci/controller/
14643
14644 PCI SUBSYSTEM
14645 M:      Bjorn Helgaas <bhelgaas@google.com>
14646 L:      linux-pci@vger.kernel.org
14647 S:      Supported
14648 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14650 F:      Documentation/PCI/
14651 F:      Documentation/devicetree/bindings/pci/
14652 F:      arch/x86/kernel/early-quirks.c
14653 F:      arch/x86/kernel/quirks.c
14654 F:      arch/x86/pci/
14655 F:      drivers/acpi/pci*
14656 F:      drivers/pci/
14657 F:      include/asm-generic/pci*
14658 F:      include/linux/of_pci.h
14659 F:      include/linux/pci*
14660 F:      include/uapi/linux/pci*
14661 F:      lib/pci*
14662
14663 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14664 M:      Jonathan Chocron <jonnyc@amazon.com>
14665 L:      linux-pci@vger.kernel.org
14666 S:      Maintained
14667 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14668 F:      drivers/pci/controller/dwc/pcie-al.c
14669
14670 PCIE DRIVER FOR AMLOGIC MESON
14671 M:      Yue Wang <yue.wang@Amlogic.com>
14672 L:      linux-pci@vger.kernel.org
14673 L:      linux-amlogic@lists.infradead.org
14674 S:      Maintained
14675 F:      drivers/pci/controller/dwc/pci-meson.c
14676
14677 PCIE DRIVER FOR AXIS ARTPEC
14678 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14679 L:      linux-arm-kernel@axis.com
14680 L:      linux-pci@vger.kernel.org
14681 S:      Maintained
14682 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14683 F:      drivers/pci/controller/dwc/*artpec*
14684
14685 PCIE DRIVER FOR CAVIUM THUNDERX
14686 M:      Robert Richter <rric@kernel.org>
14687 L:      linux-pci@vger.kernel.org
14688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14689 S:      Odd Fixes
14690 F:      drivers/pci/controller/pci-thunder-*
14691
14692 PCIE DRIVER FOR HISILICON
14693 M:      Zhou Wang <wangzhou1@hisilicon.com>
14694 L:      linux-pci@vger.kernel.org
14695 S:      Maintained
14696 F:      drivers/pci/controller/dwc/pcie-hisi.c
14697
14698 PCIE DRIVER FOR HISILICON KIRIN
14699 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14700 M:      Binghui Wang <wangbinghui@hisilicon.com>
14701 L:      linux-pci@vger.kernel.org
14702 S:      Maintained
14703 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14704 F:      drivers/pci/controller/dwc/pcie-kirin.c
14705
14706 PCIE DRIVER FOR HISILICON STB
14707 M:      Shawn Guo <shawn.guo@linaro.org>
14708 L:      linux-pci@vger.kernel.org
14709 S:      Maintained
14710 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14711 F:      drivers/pci/controller/dwc/pcie-histb.c
14712
14713 PCIE DRIVER FOR INTEL KEEM BAY
14714 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14715 L:      linux-pci@vger.kernel.org
14716 S:      Supported
14717 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14718 F:      drivers/pci/controller/dwc/pcie-keembay.c
14719
14720 PCIE DRIVER FOR INTEL LGM GW SOC
14721 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14722 L:      linux-pci@vger.kernel.org
14723 S:      Maintained
14724 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14725 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14726
14727 PCIE DRIVER FOR MEDIATEK
14728 M:      Ryder Lee <ryder.lee@mediatek.com>
14729 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14730 L:      linux-pci@vger.kernel.org
14731 L:      linux-mediatek@lists.infradead.org
14732 S:      Supported
14733 F:      Documentation/devicetree/bindings/pci/mediatek*
14734 F:      drivers/pci/controller/*mediatek*
14735
14736 PCIE DRIVER FOR MICROCHIP
14737 M:      Daire McNamara <daire.mcnamara@microchip.com>
14738 L:      linux-pci@vger.kernel.org
14739 S:      Supported
14740 F:      Documentation/devicetree/bindings/pci/microchip*
14741 F:      drivers/pci/controller/*microchip*
14742
14743 PCIE DRIVER FOR QUALCOMM MSM
14744 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14745 L:      linux-pci@vger.kernel.org
14746 L:      linux-arm-msm@vger.kernel.org
14747 S:      Maintained
14748 F:      drivers/pci/controller/dwc/*qcom*
14749
14750 PCIE DRIVER FOR ROCKCHIP
14751 M:      Shawn Lin <shawn.lin@rock-chips.com>
14752 L:      linux-pci@vger.kernel.org
14753 L:      linux-rockchip@lists.infradead.org
14754 S:      Maintained
14755 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14756 F:      drivers/pci/controller/pcie-rockchip*
14757
14758 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14759 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14760 L:      linux-pci@vger.kernel.org
14761 S:      Maintained
14762 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14763 F:      drivers/pci/controller/dwc/pcie-uniphier*
14764
14765 PCIE DRIVER FOR ST SPEAR13XX
14766 M:      Pratyush Anand <pratyush.anand@gmail.com>
14767 L:      linux-pci@vger.kernel.org
14768 S:      Maintained
14769 F:      drivers/pci/controller/dwc/*spear*
14770
14771 PCMCIA SUBSYSTEM
14772 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14773 S:      Odd Fixes
14774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14775 F:      Documentation/pcmcia/
14776 F:      drivers/pcmcia/
14777 F:      include/pcmcia/
14778 F:      tools/pcmcia/
14779
14780 PCNET32 NETWORK DRIVER
14781 M:      Don Fry <pcnet32@frontier.com>
14782 L:      netdev@vger.kernel.org
14783 S:      Maintained
14784 F:      drivers/net/ethernet/amd/pcnet32.c
14785
14786 PCRYPT PARALLEL CRYPTO ENGINE
14787 M:      Steffen Klassert <steffen.klassert@secunet.com>
14788 L:      linux-crypto@vger.kernel.org
14789 S:      Maintained
14790 F:      crypto/pcrypt.c
14791 F:      include/crypto/pcrypt.h
14792
14793 PEAQ WMI HOTKEYS DRIVER
14794 M:      Hans de Goede <hdegoede@redhat.com>
14795 L:      platform-driver-x86@vger.kernel.org
14796 S:      Maintained
14797 F:      drivers/platform/x86/peaq-wmi.c
14798
14799 PENSANDO ETHERNET DRIVERS
14800 M:      Shannon Nelson <snelson@pensando.io>
14801 M:      drivers@pensando.io
14802 L:      netdev@vger.kernel.org
14803 S:      Supported
14804 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14805 F:      drivers/net/ethernet/pensando/
14806
14807 PER-CPU MEMORY ALLOCATOR
14808 M:      Dennis Zhou <dennis@kernel.org>
14809 M:      Tejun Heo <tj@kernel.org>
14810 M:      Christoph Lameter <cl@linux.com>
14811 L:      linux-mm@kvack.org
14812 S:      Maintained
14813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14814 F:      arch/*/include/asm/percpu.h
14815 F:      include/linux/percpu*.h
14816 F:      lib/percpu*.c
14817 F:      mm/percpu*.c
14818
14819 PER-TASK DELAY ACCOUNTING
14820 M:      Balbir Singh <bsingharora@gmail.com>
14821 S:      Maintained
14822 F:      include/linux/delayacct.h
14823 F:      kernel/delayacct.c
14824
14825 PERFORMANCE EVENTS SUBSYSTEM
14826 M:      Peter Zijlstra <peterz@infradead.org>
14827 M:      Ingo Molnar <mingo@redhat.com>
14828 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14829 R:      Mark Rutland <mark.rutland@arm.com>
14830 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14831 R:      Jiri Olsa <jolsa@redhat.com>
14832 R:      Namhyung Kim <namhyung@kernel.org>
14833 L:      linux-perf-users@vger.kernel.org
14834 L:      linux-kernel@vger.kernel.org
14835 S:      Supported
14836 W:      https://perf.wiki.kernel.org/
14837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14838 F:      arch/*/events/*
14839 F:      arch/*/events/*/*
14840 F:      arch/*/include/asm/perf_event.h
14841 F:      arch/*/kernel/*/*/perf_event*.c
14842 F:      arch/*/kernel/*/perf_event*.c
14843 F:      arch/*/kernel/perf_callchain.c
14844 F:      arch/*/kernel/perf_event*.c
14845 F:      include/linux/perf_event.h
14846 F:      include/uapi/linux/perf_event.h
14847 F:      kernel/events/*
14848 F:      tools/lib/perf/
14849 F:      tools/perf/
14850
14851 PERFORMANCE EVENTS TOOLING ARM64
14852 R:      John Garry <john.garry@huawei.com>
14853 R:      Will Deacon <will@kernel.org>
14854 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14855 R:      Leo Yan <leo.yan@linaro.org>
14856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14857 S:      Supported
14858 F:      tools/build/feature/test-libopencsd.c
14859 F:      tools/perf/arch/arm*/
14860 F:      tools/perf/pmu-events/arch/arm64/
14861 F:      tools/perf/util/arm-spe*
14862 F:      tools/perf/util/cs-etm*
14863
14864 PERSONALITY HANDLING
14865 M:      Christoph Hellwig <hch@infradead.org>
14866 L:      linux-abi-devel@lists.sourceforge.net
14867 S:      Maintained
14868 F:      include/linux/personality.h
14869 F:      include/uapi/linux/personality.h
14870
14871 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14872 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14873 L:      linux-input@vger.kernel.org
14874 S:      Maintained
14875 F:      Documentation/input/devices/pxrc.rst
14876 F:      drivers/input/joystick/pxrc.c
14877
14878 PHONET PROTOCOL
14879 M:      Remi Denis-Courmont <courmisch@gmail.com>
14880 S:      Supported
14881 F:      Documentation/networking/phonet.rst
14882 F:      include/linux/phonet.h
14883 F:      include/net/phonet/
14884 F:      include/uapi/linux/phonet.h
14885 F:      net/phonet/
14886
14887 PHRAM MTD DRIVER
14888 M:      Joern Engel <joern@lazybastard.org>
14889 L:      linux-mtd@lists.infradead.org
14890 S:      Maintained
14891 F:      drivers/mtd/devices/phram.c
14892
14893 PICOLCD HID DRIVER
14894 M:      Bruno Prémont <bonbons@linux-vserver.org>
14895 L:      linux-input@vger.kernel.org
14896 S:      Maintained
14897 F:      drivers/hid/hid-picolcd*
14898
14899 PIDFD API
14900 M:      Christian Brauner <christian@brauner.io>
14901 L:      linux-kernel@vger.kernel.org
14902 S:      Maintained
14903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14904 F:      samples/pidfd/
14905 F:      tools/testing/selftests/clone3/
14906 F:      tools/testing/selftests/pid_namespace/
14907 F:      tools/testing/selftests/pidfd/
14908 K:      (?i)pidfd
14909 K:      (?i)clone3
14910 K:      \b(clone_args|kernel_clone_args)\b
14911
14912 PIN CONTROL SUBSYSTEM
14913 M:      Linus Walleij <linus.walleij@linaro.org>
14914 L:      linux-gpio@vger.kernel.org
14915 S:      Maintained
14916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14917 F:      Documentation/devicetree/bindings/pinctrl/
14918 F:      Documentation/driver-api/pin-control.rst
14919 F:      drivers/pinctrl/
14920 F:      include/linux/pinctrl/
14921
14922 PIN CONTROLLER - AMD
14923 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14924 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14925 S:      Maintained
14926 F:      drivers/pinctrl/pinctrl-amd.c
14927
14928 PIN CONTROLLER - FREESCALE
14929 M:      Dong Aisheng <aisheng.dong@nxp.com>
14930 M:      Fabio Estevam <festevam@gmail.com>
14931 M:      Shawn Guo <shawnguo@kernel.org>
14932 M:      Stefan Agner <stefan@agner.ch>
14933 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14934 L:      linux-gpio@vger.kernel.org
14935 S:      Maintained
14936 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14937 F:      drivers/pinctrl/freescale/
14938
14939 PIN CONTROLLER - INTEL
14940 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14941 M:      Andy Shevchenko <andy@kernel.org>
14942 S:      Maintained
14943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14944 F:      drivers/pinctrl/intel/
14945
14946 PIN CONTROLLER - KEEMBAY
14947 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14948 S:      Supported
14949 F:      drivers/pinctrl/pinctrl-keembay*
14950
14951 PIN CONTROLLER - MEDIATEK
14952 M:      Sean Wang <sean.wang@kernel.org>
14953 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14954 S:      Maintained
14955 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14956 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14957 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14958 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14959 F:      drivers/pinctrl/mediatek/
14960
14961 PIN CONTROLLER - MICROCHIP AT91
14962 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14964 L:      linux-gpio@vger.kernel.org
14965 S:      Supported
14966 F:      drivers/gpio/gpio-sama5d2-piobu.c
14967 F:      drivers/pinctrl/pinctrl-at91*
14968
14969 PIN CONTROLLER - QUALCOMM
14970 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14971 L:      linux-arm-msm@vger.kernel.org
14972 S:      Maintained
14973 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14974 F:      drivers/pinctrl/qcom/
14975
14976 PIN CONTROLLER - RENESAS
14977 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14978 L:      linux-renesas-soc@vger.kernel.org
14979 S:      Supported
14980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14981 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14982 F:      drivers/pinctrl/renesas/
14983
14984 PIN CONTROLLER - SAMSUNG
14985 M:      Tomasz Figa <tomasz.figa@gmail.com>
14986 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14987 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14989 L:      linux-samsung-soc@vger.kernel.org
14990 S:      Maintained
14991 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14993 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14994 F:      drivers/pinctrl/samsung/
14995 F:      include/dt-bindings/pinctrl/samsung.h
14996
14997 PIN CONTROLLER - SINGLE
14998 M:      Tony Lindgren <tony@atomide.com>
14999 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15001 L:      linux-omap@vger.kernel.org
15002 S:      Maintained
15003 F:      drivers/pinctrl/pinctrl-single.c
15004
15005 PKTCDVD DRIVER
15006 M:      linux-block@vger.kernel.org
15007 S:      Orphan
15008 F:      drivers/block/pktcdvd.c
15009 F:      include/linux/pktcdvd.h
15010 F:      include/uapi/linux/pktcdvd.h
15011
15012 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15013 M:      Tomasz Duszynski <tduszyns@gmail.com>
15014 S:      Maintained
15015 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15016 F:      drivers/iio/chemical/pms7003.c
15017
15018 PLDMFW LIBRARY
15019 M:      Jacob Keller <jacob.e.keller@intel.com>
15020 S:      Maintained
15021 F:      Documentation/driver-api/pldmfw/
15022 F:      include/linux/pldmfw.h
15023 F:      lib/pldmfw/
15024
15025 PLX DMA DRIVER
15026 M:      Logan Gunthorpe <logang@deltatee.com>
15027 S:      Maintained
15028 F:      drivers/dma/plx_dma.c
15029
15030 PM6764TR DRIVER
15031 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15032 L:      linux-hwmon@vger.kernel.org
15033 S:      Maintained
15034 F:      Documentation/hwmon/pm6764tr.rst
15035 F:      drivers/hwmon/pmbus/pm6764tr.c
15036
15037 PM-GRAPH UTILITY
15038 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15039 L:      linux-pm@vger.kernel.org
15040 S:      Supported
15041 W:      https://01.org/pm-graph
15042 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15043 T:      git git://github.com/intel/pm-graph
15044 F:      tools/power/pm-graph
15045
15046 PMBUS HARDWARE MONITORING DRIVERS
15047 M:      Guenter Roeck <linux@roeck-us.net>
15048 L:      linux-hwmon@vger.kernel.org
15049 S:      Maintained
15050 W:      http://hwmon.wiki.kernel.org/
15051 W:      http://www.roeck-us.net/linux/drivers/
15052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15053 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15054 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15055 F:      Documentation/hwmon/adm1275.rst
15056 F:      Documentation/hwmon/ibm-cffps.rst
15057 F:      Documentation/hwmon/ir35221.rst
15058 F:      Documentation/hwmon/lm25066.rst
15059 F:      Documentation/hwmon/ltc2978.rst
15060 F:      Documentation/hwmon/ltc3815.rst
15061 F:      Documentation/hwmon/max16064.rst
15062 F:      Documentation/hwmon/max20751.rst
15063 F:      Documentation/hwmon/max31785.rst
15064 F:      Documentation/hwmon/max34440.rst
15065 F:      Documentation/hwmon/max8688.rst
15066 F:      Documentation/hwmon/pmbus-core.rst
15067 F:      Documentation/hwmon/pmbus.rst
15068 F:      Documentation/hwmon/tps40422.rst
15069 F:      Documentation/hwmon/ucd9000.rst
15070 F:      Documentation/hwmon/ucd9200.rst
15071 F:      Documentation/hwmon/zl6100.rst
15072 F:      drivers/hwmon/pmbus/
15073 F:      include/linux/pmbus.h
15074
15075 PMC SIERRA MaxRAID DRIVER
15076 L:      linux-scsi@vger.kernel.org
15077 S:      Orphan
15078 W:      http://www.pmc-sierra.com/
15079 F:      drivers/scsi/pmcraid.*
15080
15081 PMC SIERRA PM8001 DRIVER
15082 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15083 L:      linux-scsi@vger.kernel.org
15084 S:      Supported
15085 F:      drivers/scsi/pm8001/
15086
15087 PNI RM3100 IIO DRIVER
15088 M:      Song Qiang <songqiang1304521@gmail.com>
15089 L:      linux-iio@vger.kernel.org
15090 S:      Maintained
15091 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15092 F:      drivers/iio/magnetometer/rm3100*
15093
15094 PNP SUPPORT
15095 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15096 L:      linux-acpi@vger.kernel.org
15097 S:      Maintained
15098 F:      drivers/pnp/
15099 F:      include/linux/pnp.h
15100
15101 POSIX CLOCKS and TIMERS
15102 M:      Thomas Gleixner <tglx@linutronix.de>
15103 L:      linux-kernel@vger.kernel.org
15104 S:      Maintained
15105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15106 F:      fs/timerfd.c
15107 F:      include/linux/time_namespace.h
15108 F:      include/linux/timer*
15109 F:      kernel/time/*timer*
15110 F:      kernel/time/namespace.c
15111
15112 POWER MANAGEMENT CORE
15113 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15114 L:      linux-pm@vger.kernel.org
15115 S:      Supported
15116 B:      https://bugzilla.kernel.org
15117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15118 F:      drivers/base/power/
15119 F:      drivers/powercap/
15120 F:      include/linux/intel_rapl.h
15121 F:      include/linux/pm.h
15122 F:      include/linux/pm_*
15123 F:      include/linux/powercap.h
15124 F:      kernel/configs/nopm.config
15125
15126 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15127 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15128 L:      linux-pm@vger.kernel.org
15129 S:      Supported
15130 B:      https://bugzilla.kernel.org
15131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15132 F:      drivers/powercap/dtpm*
15133 F:      include/linux/dtpm.h
15134
15135 POWER STATE COORDINATION INTERFACE (PSCI)
15136 M:      Mark Rutland <mark.rutland@arm.com>
15137 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15139 S:      Maintained
15140 F:      drivers/firmware/psci/
15141 F:      include/linux/psci.h
15142 F:      include/uapi/linux/psci.h
15143
15144 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15145 M:      Sebastian Reichel <sre@kernel.org>
15146 L:      linux-pm@vger.kernel.org
15147 S:      Maintained
15148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15149 F:      Documentation/ABI/testing/sysfs-class-power
15150 F:      Documentation/devicetree/bindings/power/supply/
15151 F:      drivers/power/supply/
15152 F:      include/linux/power/
15153 F:      include/linux/power_supply.h
15154
15155 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15156 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15157 L:      linuxppc-dev@lists.ozlabs.org
15158 S:      Maintained
15159 F:      drivers/char/powernv-op-panel.c
15160
15161 PPP OVER ATM (RFC 2364)
15162 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15163 S:      Maintained
15164 F:      include/uapi/linux/atmppp.h
15165 F:      net/atm/pppoatm.c
15166
15167 PPP OVER ETHERNET
15168 M:      Michal Ostrowski <mostrows@earthlink.net>
15169 S:      Maintained
15170 F:      drivers/net/ppp/pppoe.c
15171 F:      drivers/net/ppp/pppox.c
15172
15173 PPP OVER L2TP
15174 M:      James Chapman <jchapman@katalix.com>
15175 S:      Maintained
15176 F:      include/linux/if_pppol2tp.h
15177 F:      include/uapi/linux/if_pppol2tp.h
15178 F:      net/l2tp/l2tp_ppp.c
15179
15180 PPP PROTOCOL DRIVERS AND COMPRESSORS
15181 M:      Paul Mackerras <paulus@samba.org>
15182 L:      linux-ppp@vger.kernel.org
15183 S:      Maintained
15184 F:      drivers/net/ppp/ppp_*
15185
15186 PPS SUPPORT
15187 M:      Rodolfo Giometti <giometti@enneenne.com>
15188 L:      linuxpps@ml.enneenne.com (subscribers-only)
15189 S:      Maintained
15190 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15191 F:      Documentation/ABI/testing/sysfs-pps
15192 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15193 F:      Documentation/driver-api/pps.rst
15194 F:      drivers/pps/
15195 F:      include/linux/pps*.h
15196 F:      include/uapi/linux/pps.h
15197
15198 PPTP DRIVER
15199 M:      Dmitry Kozlov <xeb@mail.ru>
15200 L:      netdev@vger.kernel.org
15201 S:      Maintained
15202 W:      http://sourceforge.net/projects/accel-pptp
15203 F:      drivers/net/ppp/pptp.c
15204
15205 PRESSURE STALL INFORMATION (PSI)
15206 M:      Johannes Weiner <hannes@cmpxchg.org>
15207 S:      Maintained
15208 F:      include/linux/psi*
15209 F:      kernel/sched/psi.c
15210
15211 PRINTK
15212 M:      Petr Mladek <pmladek@suse.com>
15213 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15214 R:      Steven Rostedt <rostedt@goodmis.org>
15215 R:      John Ogness <john.ogness@linutronix.de>
15216 S:      Maintained
15217 F:      include/linux/printk.h
15218 F:      kernel/printk/
15219
15220 PRINTK INDEXING
15221 R:      Chris Down <chris@chrisdown.name>
15222 S:      Maintained
15223 F:      kernel/printk/index.c
15224
15225 PROC FILESYSTEM
15226 L:      linux-kernel@vger.kernel.org
15227 L:      linux-fsdevel@vger.kernel.org
15228 S:      Maintained
15229 F:      Documentation/filesystems/proc.rst
15230 F:      fs/proc/
15231 F:      include/linux/proc_fs.h
15232 F:      tools/testing/selftests/proc/
15233
15234 PROC SYSCTL
15235 M:      Luis Chamberlain <mcgrof@kernel.org>
15236 M:      Kees Cook <keescook@chromium.org>
15237 M:      Iurii Zaikin <yzaikin@google.com>
15238 L:      linux-kernel@vger.kernel.org
15239 L:      linux-fsdevel@vger.kernel.org
15240 S:      Maintained
15241 F:      fs/proc/proc_sysctl.c
15242 F:      include/linux/sysctl.h
15243 F:      kernel/sysctl-test.c
15244 F:      kernel/sysctl.c
15245 F:      tools/testing/selftests/sysctl/
15246
15247 PS3 NETWORK SUPPORT
15248 M:      Geoff Levand <geoff@infradead.org>
15249 L:      netdev@vger.kernel.org
15250 L:      linuxppc-dev@lists.ozlabs.org
15251 S:      Maintained
15252 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15253
15254 PS3 PLATFORM SUPPORT
15255 M:      Geoff Levand <geoff@infradead.org>
15256 L:      linuxppc-dev@lists.ozlabs.org
15257 S:      Maintained
15258 F:      arch/powerpc/boot/ps3*
15259 F:      arch/powerpc/include/asm/lv1call.h
15260 F:      arch/powerpc/include/asm/ps3*.h
15261 F:      arch/powerpc/platforms/ps3/
15262 F:      drivers/*/ps3*
15263 F:      drivers/ps3/
15264 F:      drivers/rtc/rtc-ps3.c
15265 F:      drivers/usb/host/*ps3.c
15266 F:      sound/ppc/snd_ps3*
15267
15268 PS3VRAM DRIVER
15269 M:      Jim Paris <jim@jtan.com>
15270 M:      Geoff Levand <geoff@infradead.org>
15271 L:      linuxppc-dev@lists.ozlabs.org
15272 S:      Maintained
15273 F:      drivers/block/ps3vram.c
15274
15275 PSAMPLE PACKET SAMPLING SUPPORT
15276 M:      Yotam Gigi <yotam.gi@gmail.com>
15277 S:      Maintained
15278 F:      include/net/psample.h
15279 F:      include/uapi/linux/psample.h
15280 F:      net/psample
15281
15282 PSTORE FILESYSTEM
15283 M:      Kees Cook <keescook@chromium.org>
15284 M:      Anton Vorontsov <anton@enomsg.org>
15285 M:      Colin Cross <ccross@android.com>
15286 M:      Tony Luck <tony.luck@intel.com>
15287 S:      Maintained
15288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15289 F:      Documentation/admin-guide/ramoops.rst
15290 F:      Documentation/admin-guide/pstore-blk.rst
15291 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15292 F:      drivers/acpi/apei/erst.c
15293 F:      drivers/firmware/efi/efi-pstore.c
15294 F:      fs/pstore/
15295 F:      include/linux/pstore*
15296 K:      \b(pstore|ramoops)
15297
15298 PTP HARDWARE CLOCK SUPPORT
15299 M:      Richard Cochran <richardcochran@gmail.com>
15300 L:      netdev@vger.kernel.org
15301 S:      Maintained
15302 W:      http://linuxptp.sourceforge.net/
15303 F:      Documentation/ABI/testing/sysfs-ptp
15304 F:      Documentation/driver-api/ptp.rst
15305 F:      drivers/net/phy/dp83640*
15306 F:      drivers/ptp/*
15307 F:      include/linux/ptp_cl*
15308
15309 PTP VIRTUAL CLOCK SUPPORT
15310 M:      Yangbo Lu <yangbo.lu@nxp.com>
15311 L:      netdev@vger.kernel.org
15312 S:      Maintained
15313 F:      drivers/ptp/ptp_vclock.c
15314 F:      net/ethtool/phc_vclocks.c
15315
15316 PTRACE SUPPORT
15317 M:      Oleg Nesterov <oleg@redhat.com>
15318 S:      Maintained
15319 F:      arch/*/*/ptrace*.c
15320 F:      arch/*/include/asm/ptrace*.h
15321 F:      arch/*/ptrace*.c
15322 F:      include/asm-generic/syscall.h
15323 F:      include/linux/ptrace.h
15324 F:      include/linux/regset.h
15325 F:      include/linux/tracehook.h
15326 F:      include/uapi/linux/ptrace.h
15327 F:      include/uapi/linux/ptrace.h
15328 F:      kernel/ptrace.c
15329
15330 PULSE8-CEC DRIVER
15331 M:      Hans Verkuil <hverkuil@xs4all.nl>
15332 L:      linux-media@vger.kernel.org
15333 S:      Maintained
15334 T:      git git://linuxtv.org/media_tree.git
15335 F:      Documentation/admin-guide/media/pulse8-cec.rst
15336 F:      drivers/media/cec/usb/pulse8/
15337
15338 PVRUSB2 VIDEO4LINUX DRIVER
15339 M:      Mike Isely <isely@pobox.com>
15340 L:      pvrusb2@isely.net       (subscribers-only)
15341 L:      linux-media@vger.kernel.org
15342 S:      Maintained
15343 W:      http://www.isely.net/pvrusb2/
15344 T:      git git://linuxtv.org/media_tree.git
15345 F:      Documentation/driver-api/media/drivers/pvrusb2*
15346 F:      drivers/media/usb/pvrusb2/
15347
15348 PWC WEBCAM DRIVER
15349 M:      Hans Verkuil <hverkuil@xs4all.nl>
15350 L:      linux-media@vger.kernel.org
15351 S:      Odd Fixes
15352 T:      git git://linuxtv.org/media_tree.git
15353 F:      drivers/media/usb/pwc/*
15354 F:      include/trace/events/pwc.h
15355
15356 PWM FAN DRIVER
15357 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15358 L:      linux-hwmon@vger.kernel.org
15359 S:      Supported
15360 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15361 F:      Documentation/hwmon/pwm-fan.rst
15362 F:      drivers/hwmon/pwm-fan.c
15363
15364 PWM IR Transmitter
15365 M:      Sean Young <sean@mess.org>
15366 L:      linux-media@vger.kernel.org
15367 S:      Maintained
15368 F:      drivers/media/rc/pwm-ir-tx.c
15369
15370 PWM SUBSYSTEM
15371 M:      Thierry Reding <thierry.reding@gmail.com>
15372 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15373 M:      Lee Jones <lee.jones@linaro.org>
15374 L:      linux-pwm@vger.kernel.org
15375 S:      Maintained
15376 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15378 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15379 F:      Documentation/devicetree/bindings/pwm/
15380 F:      Documentation/driver-api/pwm.rst
15381 F:      drivers/gpio/gpio-mvebu.c
15382 F:      drivers/pwm/
15383 F:      drivers/video/backlight/pwm_bl.c
15384 F:      include/linux/pwm.h
15385 F:      include/linux/pwm_backlight.h
15386 K:      pwm_(config|apply_state|ops)
15387
15388 PXA GPIO DRIVER
15389 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15390 L:      linux-gpio@vger.kernel.org
15391 S:      Maintained
15392 F:      drivers/gpio/gpio-pxa.c
15393
15394 PXA MMCI DRIVER
15395 S:      Orphan
15396
15397 PXA RTC DRIVER
15398 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15399 L:      linux-rtc@vger.kernel.org
15400 S:      Maintained
15401
15402 PXA2xx/PXA3xx SUPPORT
15403 M:      Daniel Mack <daniel@zonque.org>
15404 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15405 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15407 S:      Maintained
15408 T:      git git://github.com/hzhuang1/linux.git
15409 T:      git git://github.com/rjarzmik/linux.git
15410 F:      arch/arm/boot/dts/pxa*
15411 F:      arch/arm/mach-pxa/
15412 F:      drivers/dma/pxa*
15413 F:      drivers/pcmcia/pxa2xx*
15414 F:      drivers/pinctrl/pxa/
15415 F:      drivers/spi/spi-pxa2xx*
15416 F:      drivers/usb/gadget/udc/pxa2*
15417 F:      include/sound/pxa2xx-lib.h
15418 F:      sound/arm/pxa*
15419 F:      sound/soc/pxa/
15420
15421 QAT DRIVER
15422 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15423 L:      qat-linux@intel.com
15424 S:      Supported
15425 F:      drivers/crypto/qat/
15426
15427 QCOM AUDIO (ASoC) DRIVERS
15428 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15429 M:      Banajit Goswami <bgoswami@codeaurora.org>
15430 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15431 S:      Supported
15432 F:      sound/soc/codecs/lpass-va-macro.c
15433 F:      sound/soc/codecs/lpass-wsa-macro.*
15434 F:      sound/soc/codecs/msm8916-wcd-analog.c
15435 F:      sound/soc/codecs/msm8916-wcd-digital.c
15436 F:      sound/soc/codecs/wcd9335.*
15437 F:      sound/soc/codecs/wcd934x.c
15438 F:      sound/soc/codecs/wcd-clsh-v2.*
15439 F:      sound/soc/codecs/wsa881x.c
15440 F:      sound/soc/qcom/
15441
15442 QCOM IPA DRIVER
15443 M:      Alex Elder <elder@kernel.org>
15444 L:      netdev@vger.kernel.org
15445 S:      Supported
15446 F:      drivers/net/ipa/
15447
15448 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15449 M:      Gabriel Somlo <somlo@cmu.edu>
15450 M:      "Michael S. Tsirkin" <mst@redhat.com>
15451 L:      qemu-devel@nongnu.org
15452 S:      Maintained
15453 F:      drivers/firmware/qemu_fw_cfg.c
15454 F:      include/uapi/linux/qemu_fw_cfg.h
15455
15456 QIB DRIVER
15457 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15458 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15459 L:      linux-rdma@vger.kernel.org
15460 S:      Supported
15461 F:      drivers/infiniband/hw/qib/
15462
15463 QLOGIC QL41xxx FCOE DRIVER
15464 M:      Saurav Kashyap <skashyap@marvell.com>
15465 M:      Javed Hasan <jhasan@marvell.com>
15466 M:      GR-QLogic-Storage-Upstream@marvell.com
15467 L:      linux-scsi@vger.kernel.org
15468 S:      Supported
15469 F:      drivers/scsi/qedf/
15470
15471 QLOGIC QL41xxx ISCSI DRIVER
15472 M:      Nilesh Javali <njavali@marvell.com>
15473 M:      Manish Rangankar <mrangankar@marvell.com>
15474 M:      GR-QLogic-Storage-Upstream@marvell.com
15475 L:      linux-scsi@vger.kernel.org
15476 S:      Supported
15477 F:      drivers/scsi/qedi/
15478
15479 QLOGIC QL4xxx ETHERNET DRIVER
15480 M:      Ariel Elior <aelior@marvell.com>
15481 M:      GR-everest-linux-l2@marvell.com
15482 L:      netdev@vger.kernel.org
15483 S:      Supported
15484 F:      drivers/net/ethernet/qlogic/qed/
15485 F:      drivers/net/ethernet/qlogic/qede/
15486 F:      include/linux/qed/
15487
15488 QLOGIC QL4xxx RDMA DRIVER
15489 M:      Michal Kalderon <mkalderon@marvell.com>
15490 M:      Ariel Elior <aelior@marvell.com>
15491 L:      linux-rdma@vger.kernel.org
15492 S:      Supported
15493 F:      drivers/infiniband/hw/qedr/
15494 F:      include/uapi/rdma/qedr-abi.h
15495
15496 QLOGIC QLA1280 SCSI DRIVER
15497 M:      Michael Reed <mdr@sgi.com>
15498 L:      linux-scsi@vger.kernel.org
15499 S:      Maintained
15500 F:      drivers/scsi/qla1280.[ch]
15501
15502 QLOGIC QLA2XXX FC-SCSI DRIVER
15503 M:      Nilesh Javali <njavali@marvell.com>
15504 M:      GR-QLogic-Storage-Upstream@marvell.com
15505 L:      linux-scsi@vger.kernel.org
15506 S:      Supported
15507 F:      drivers/scsi/qla2xxx/
15508
15509 QLOGIC QLA3XXX NETWORK DRIVER
15510 M:      GR-Linux-NIC-Dev@marvell.com
15511 L:      netdev@vger.kernel.org
15512 S:      Supported
15513 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15514
15515 QLOGIC QLA4XXX iSCSI DRIVER
15516 M:      Nilesh Javali <njavali@marvell.com>
15517 M:      Manish Rangankar <mrangankar@marvell.com>
15518 M:      GR-QLogic-Storage-Upstream@marvell.com
15519 L:      linux-scsi@vger.kernel.org
15520 S:      Supported
15521 F:      drivers/scsi/qla4xxx/
15522
15523 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15524 M:      Shahed Shaikh <shshaikh@marvell.com>
15525 M:      Manish Chopra <manishc@marvell.com>
15526 M:      GR-Linux-NIC-Dev@marvell.com
15527 L:      netdev@vger.kernel.org
15528 S:      Supported
15529 F:      drivers/net/ethernet/qlogic/qlcnic/
15530
15531 QLOGIC QLGE 10Gb ETHERNET DRIVER
15532 M:      Manish Chopra <manishc@marvell.com>
15533 M:      GR-Linux-NIC-Dev@marvell.com
15534 M:      Coiby Xu <coiby.xu@gmail.com>
15535 L:      netdev@vger.kernel.org
15536 S:      Supported
15537 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15538 F:      drivers/staging/qlge/
15539
15540 QM1D1B0004 MEDIA DRIVER
15541 M:      Akihiro Tsukada <tskd08@gmail.com>
15542 L:      linux-media@vger.kernel.org
15543 S:      Odd Fixes
15544 F:      drivers/media/tuners/qm1d1b0004*
15545
15546 QM1D1C0042 MEDIA DRIVER
15547 M:      Akihiro Tsukada <tskd08@gmail.com>
15548 L:      linux-media@vger.kernel.org
15549 S:      Odd Fixes
15550 F:      drivers/media/tuners/qm1d1c0042*
15551
15552 QNX4 FILESYSTEM
15553 M:      Anders Larsen <al@alarsen.net>
15554 S:      Maintained
15555 W:      http://www.alarsen.net/linux/qnx4fs/
15556 F:      fs/qnx4/
15557 F:      include/uapi/linux/qnx4_fs.h
15558 F:      include/uapi/linux/qnxtypes.h
15559
15560 QORIQ DPAA2 FSL-MC BUS DRIVER
15561 M:      Stuart Yoder <stuyoder@gmail.com>
15562 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15563 L:      linux-kernel@vger.kernel.org
15564 S:      Maintained
15565 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15566 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15567 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15568 F:      drivers/bus/fsl-mc/
15569 F:      include/uapi/linux/fsl_mc.h
15570
15571 QT1010 MEDIA DRIVER
15572 M:      Antti Palosaari <crope@iki.fi>
15573 L:      linux-media@vger.kernel.org
15574 S:      Maintained
15575 W:      https://linuxtv.org
15576 W:      http://palosaari.fi/linux/
15577 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15578 T:      git git://linuxtv.org/anttip/media_tree.git
15579 F:      drivers/media/tuners/qt1010*
15580
15581 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15582 M:      Kalle Valo <kvalo@codeaurora.org>
15583 L:      ath10k@lists.infradead.org
15584 S:      Supported
15585 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15587 F:      drivers/net/wireless/ath/ath10k/
15588
15589 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15590 M:      Kalle Valo <kvalo@codeaurora.org>
15591 L:      ath11k@lists.infradead.org
15592 S:      Supported
15593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15594 F:      drivers/net/wireless/ath/ath11k/
15595
15596 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15597 M:      ath9k-devel@qca.qualcomm.com
15598 L:      linux-wireless@vger.kernel.org
15599 S:      Supported
15600 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15601 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15602 F:      drivers/net/wireless/ath/ath9k/
15603
15604 QUALCOMM CAMERA SUBSYSTEM DRIVER
15605 M:      Robert Foss <robert.foss@linaro.org>
15606 M:      Todor Tomov <todor.too@gmail.com>
15607 L:      linux-media@vger.kernel.org
15608 S:      Maintained
15609 F:      Documentation/admin-guide/media/qcom_camss.rst
15610 F:      Documentation/devicetree/bindings/media/*camss*
15611 F:      drivers/media/platform/qcom/camss/
15612
15613 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15614 M:      Niklas Cassel <nks@flawful.org>
15615 L:      linux-pm@vger.kernel.org
15616 L:      linux-arm-msm@vger.kernel.org
15617 S:      Maintained
15618 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15619 F:      drivers/soc/qcom/cpr.c
15620
15621 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15622 M:      Ilia Lin <ilia.lin@kernel.org>
15623 L:      linux-pm@vger.kernel.org
15624 S:      Maintained
15625 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15626 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15627
15628 QUALCOMM CRYPTO DRIVERS
15629 M:      Thara Gopinath <thara.gopinath@linaro.org>
15630 L:      linux-crypto@vger.kernel.org
15631 L:      linux-arm-msm@vger.kernel.org
15632 S:      Maintained
15633 F:      drivers/crypto/qce/
15634
15635 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15636 M:      Timur Tabi <timur@kernel.org>
15637 L:      netdev@vger.kernel.org
15638 S:      Maintained
15639 F:      drivers/net/ethernet/qualcomm/emac/
15640
15641 QUALCOMM ETHQOS ETHERNET DRIVER
15642 M:      Vinod Koul <vkoul@kernel.org>
15643 L:      netdev@vger.kernel.org
15644 S:      Maintained
15645 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15646 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15647
15648 QUALCOMM GENERIC INTERFACE I2C DRIVER
15649 M:      Akash Asthana <akashast@codeaurora.org>
15650 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15651 L:      linux-i2c@vger.kernel.org
15652 L:      linux-arm-msm@vger.kernel.org
15653 S:      Supported
15654 F:      drivers/i2c/busses/i2c-qcom-geni.c
15655
15656 QUALCOMM HEXAGON ARCHITECTURE
15657 M:      Brian Cain <bcain@codeaurora.org>
15658 L:      linux-hexagon@vger.kernel.org
15659 S:      Supported
15660 F:      arch/hexagon/
15661
15662 QUALCOMM HIDMA DRIVER
15663 M:      Sinan Kaya <okaya@kernel.org>
15664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15665 L:      linux-arm-msm@vger.kernel.org
15666 L:      dmaengine@vger.kernel.org
15667 S:      Supported
15668 F:      drivers/dma/qcom/hidma*
15669
15670 QUALCOMM I2C CCI DRIVER
15671 M:      Loic Poulain <loic.poulain@linaro.org>
15672 M:      Robert Foss <robert.foss@linaro.org>
15673 L:      linux-i2c@vger.kernel.org
15674 L:      linux-arm-msm@vger.kernel.org
15675 S:      Maintained
15676 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15677 F:      drivers/i2c/busses/i2c-qcom-cci.c
15678
15679 QUALCOMM IOMMU
15680 M:      Rob Clark <robdclark@gmail.com>
15681 L:      iommu@lists.linux-foundation.org
15682 L:      linux-arm-msm@vger.kernel.org
15683 S:      Maintained
15684 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15685
15686 QUALCOMM IPC ROUTER (QRTR) DRIVER
15687 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15688 L:      linux-arm-msm@vger.kernel.org
15689 S:      Maintained
15690 F:      include/trace/events/qrtr.h
15691 F:      include/uapi/linux/qrtr.h
15692 F:      net/qrtr/
15693
15694 QUALCOMM IPCC MAILBOX DRIVER
15695 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15696 L:      linux-arm-msm@vger.kernel.org
15697 S:      Supported
15698 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15699 F:      drivers/mailbox/qcom-ipcc.c
15700 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15701
15702 QUALCOMM IPQ4019 USB PHY DRIVER
15703 M:      Robert Marko <robert.marko@sartura.hr>
15704 M:      Luka Perkov <luka.perkov@sartura.hr>
15705 L:      linux-arm-msm@vger.kernel.org
15706 S:      Maintained
15707 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15708 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15709
15710 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15711 M:      Robert Marko <robert.marko@sartura.hr>
15712 M:      Luka Perkov <luka.perkov@sartura.hr>
15713 L:      linux-arm-msm@vger.kernel.org
15714 S:      Maintained
15715 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15716 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15717
15718 QUALCOMM RMNET DRIVER
15719 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15720 M:      Sean Tranchetti <stranche@codeaurora.org>
15721 L:      netdev@vger.kernel.org
15722 S:      Maintained
15723 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15724 F:      drivers/net/ethernet/qualcomm/rmnet/
15725 F:      include/linux/if_rmnet.h
15726
15727 QUALCOMM TSENS THERMAL DRIVER
15728 M:      Amit Kucheria <amitk@kernel.org>
15729 M:      Thara Gopinath <thara.gopinath@linaro.org>
15730 L:      linux-pm@vger.kernel.org
15731 L:      linux-arm-msm@vger.kernel.org
15732 S:      Maintained
15733 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15734 F:      drivers/thermal/qcom/
15735
15736 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15737 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15738 L:      linux-media@vger.kernel.org
15739 L:      linux-arm-msm@vger.kernel.org
15740 S:      Maintained
15741 T:      git git://linuxtv.org/media_tree.git
15742 F:      Documentation/devicetree/bindings/media/*venus*
15743 F:      drivers/media/platform/qcom/venus/
15744
15745 QUALCOMM WCN36XX WIRELESS DRIVER
15746 M:      Kalle Valo <kvalo@codeaurora.org>
15747 L:      wcn36xx@lists.infradead.org
15748 S:      Supported
15749 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15750 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15751 F:      drivers/net/wireless/ath/wcn36xx/
15752
15753 QUANTENNA QTNFMAC WIRELESS DRIVER
15754 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15755 R:      Sergey Matyukevich <geomatsi@gmail.com>
15756 L:      linux-wireless@vger.kernel.org
15757 S:      Maintained
15758 F:      drivers/net/wireless/quantenna
15759
15760 RADEON and AMDGPU DRM DRIVERS
15761 M:      Alex Deucher <alexander.deucher@amd.com>
15762 M:      Christian König <christian.koenig@amd.com>
15763 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15764 L:      amd-gfx@lists.freedesktop.org
15765 S:      Supported
15766 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15767 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15768 C:      irc://irc.oftc.net/radeon
15769 F:      drivers/gpu/drm/amd/
15770 F:      drivers/gpu/drm/radeon/
15771 F:      include/uapi/drm/amdgpu_drm.h
15772 F:      include/uapi/drm/radeon_drm.h
15773
15774 RADEON FRAMEBUFFER DISPLAY DRIVER
15775 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15776 L:      linux-fbdev@vger.kernel.org
15777 S:      Maintained
15778 F:      drivers/video/fbdev/aty/radeon*
15779 F:      include/uapi/linux/radeonfb.h
15780
15781 RADIOSHARK RADIO DRIVER
15782 M:      Hans Verkuil <hverkuil@xs4all.nl>
15783 L:      linux-media@vger.kernel.org
15784 S:      Maintained
15785 T:      git git://linuxtv.org/media_tree.git
15786 F:      drivers/media/radio/radio-shark.c
15787
15788 RADIOSHARK2 RADIO DRIVER
15789 M:      Hans Verkuil <hverkuil@xs4all.nl>
15790 L:      linux-media@vger.kernel.org
15791 S:      Maintained
15792 T:      git git://linuxtv.org/media_tree.git
15793 F:      drivers/media/radio/radio-shark2.c
15794 F:      drivers/media/radio/radio-tea5777.c
15795
15796 RADOS BLOCK DEVICE (RBD)
15797 M:      Ilya Dryomov <idryomov@gmail.com>
15798 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15799 L:      ceph-devel@vger.kernel.org
15800 S:      Supported
15801 W:      http://ceph.com/
15802 T:      git git://github.com/ceph/ceph-client.git
15803 F:      Documentation/ABI/testing/sysfs-bus-rbd
15804 F:      drivers/block/rbd.c
15805 F:      drivers/block/rbd_types.h
15806
15807 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15808 M:      Paul Mackerras <paulus@samba.org>
15809 L:      linux-fbdev@vger.kernel.org
15810 S:      Maintained
15811 F:      drivers/video/fbdev/aty/aty128fb.c
15812
15813 RAINSHADOW-CEC DRIVER
15814 M:      Hans Verkuil <hverkuil@xs4all.nl>
15815 L:      linux-media@vger.kernel.org
15816 S:      Maintained
15817 T:      git git://linuxtv.org/media_tree.git
15818 F:      drivers/media/cec/usb/rainshadow/
15819
15820 RALINK MIPS ARCHITECTURE
15821 M:      John Crispin <john@phrozen.org>
15822 L:      linux-mips@vger.kernel.org
15823 S:      Maintained
15824 F:      arch/mips/ralink
15825
15826 RALINK RT2X00 WIRELESS LAN DRIVER
15827 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15828 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15829 L:      linux-wireless@vger.kernel.org
15830 S:      Maintained
15831 F:      drivers/net/wireless/ralink/rt2x00/
15832
15833 RAMDISK RAM BLOCK DEVICE DRIVER
15834 M:      Jens Axboe <axboe@kernel.dk>
15835 S:      Maintained
15836 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15837 F:      drivers/block/brd.c
15838
15839 RANCHU VIRTUAL BOARD FOR MIPS
15840 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15841 L:      linux-mips@vger.kernel.org
15842 S:      Supported
15843 F:      arch/mips/configs/generic/board-ranchu.config
15844 F:      arch/mips/generic/board-ranchu.c
15845
15846 RANDOM NUMBER DRIVER
15847 M:      "Theodore Ts'o" <tytso@mit.edu>
15848 S:      Maintained
15849 F:      drivers/char/random.c
15850
15851 RAPIDIO SUBSYSTEM
15852 M:      Matt Porter <mporter@kernel.crashing.org>
15853 M:      Alexandre Bounine <alex.bou9@gmail.com>
15854 S:      Maintained
15855 F:      drivers/rapidio/
15856
15857 RAS INFRASTRUCTURE
15858 M:      Tony Luck <tony.luck@intel.com>
15859 M:      Borislav Petkov <bp@alien8.de>
15860 L:      linux-edac@vger.kernel.org
15861 S:      Maintained
15862 F:      Documentation/admin-guide/ras.rst
15863 F:      drivers/ras/
15864 F:      include/linux/ras.h
15865 F:      include/ras/ras_event.h
15866
15867 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15868 L:      linux-wireless@vger.kernel.org
15869 S:      Orphan
15870 F:      drivers/net/wireless/ray*
15871
15872 RC-CORE / LIRC FRAMEWORK
15873 M:      Sean Young <sean@mess.org>
15874 L:      linux-media@vger.kernel.org
15875 S:      Maintained
15876 W:      http://linuxtv.org
15877 T:      git git://linuxtv.org/media_tree.git
15878 F:      Documentation/driver-api/media/rc-core.rst
15879 F:      Documentation/userspace-api/media/rc/
15880 F:      drivers/media/rc/
15881 F:      include/media/rc-map.h
15882 F:      include/media/rc-core.h
15883 F:      include/uapi/linux/lirc.h
15884
15885 RCMM REMOTE CONTROLS DECODER
15886 M:      Patrick Lerda <patrick9876@free.fr>
15887 S:      Maintained
15888 F:      drivers/media/rc/ir-rcmm-decoder.c
15889
15890 RCUTORTURE TEST FRAMEWORK
15891 M:      "Paul E. McKenney" <paulmck@kernel.org>
15892 M:      Josh Triplett <josh@joshtriplett.org>
15893 R:      Steven Rostedt <rostedt@goodmis.org>
15894 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15895 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15896 L:      rcu@vger.kernel.org
15897 S:      Supported
15898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15899 F:      tools/testing/selftests/rcutorture
15900
15901 RDACM20 Camera Sensor
15902 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15903 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15904 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15905 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15906 L:      linux-media@vger.kernel.org
15907 S:      Maintained
15908 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15909 F:      drivers/media/i2c/max9271.c
15910 F:      drivers/media/i2c/max9271.h
15911 F:      drivers/media/i2c/rdacm20.c
15912
15913 RDACM21 Camera Sensor
15914 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15915 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15916 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15917 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15918 L:      linux-media@vger.kernel.org
15919 S:      Maintained
15920 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15921 F:      drivers/media/i2c/max9271.c
15922 F:      drivers/media/i2c/max9271.h
15923 F:      drivers/media/i2c/rdacm21.c
15924
15925 RDC R-321X SoC
15926 M:      Florian Fainelli <florian@openwrt.org>
15927 S:      Maintained
15928
15929 RDC R6040 FAST ETHERNET DRIVER
15930 M:      Florian Fainelli <f.fainelli@gmail.com>
15931 L:      netdev@vger.kernel.org
15932 S:      Maintained
15933 F:      drivers/net/ethernet/rdc/r6040.c
15934
15935 RDMAVT - RDMA verbs software
15936 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15937 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15938 L:      linux-rdma@vger.kernel.org
15939 S:      Supported
15940 F:      drivers/infiniband/sw/rdmavt
15941
15942 RDS - RELIABLE DATAGRAM SOCKETS
15943 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15944 L:      netdev@vger.kernel.org
15945 L:      linux-rdma@vger.kernel.org
15946 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15947 S:      Supported
15948 W:      https://oss.oracle.com/projects/rds/
15949 F:      Documentation/networking/rds.rst
15950 F:      net/rds/
15951
15952 RDT - RESOURCE ALLOCATION
15953 M:      Fenghua Yu <fenghua.yu@intel.com>
15954 M:      Reinette Chatre <reinette.chatre@intel.com>
15955 L:      linux-kernel@vger.kernel.org
15956 S:      Supported
15957 F:      Documentation/x86/resctrl*
15958 F:      arch/x86/include/asm/resctrl.h
15959 F:      arch/x86/kernel/cpu/resctrl/
15960 F:      tools/testing/selftests/resctrl/
15961
15962 READ-COPY UPDATE (RCU)
15963 M:      "Paul E. McKenney" <paulmck@kernel.org>
15964 M:      Josh Triplett <josh@joshtriplett.org>
15965 R:      Steven Rostedt <rostedt@goodmis.org>
15966 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15967 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15968 R:      Joel Fernandes <joel@joelfernandes.org>
15969 L:      rcu@vger.kernel.org
15970 S:      Supported
15971 W:      http://www.rdrop.com/users/paulmck/RCU/
15972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15973 F:      Documentation/RCU/
15974 F:      include/linux/rcu*
15975 F:      kernel/rcu/
15976 X:      Documentation/RCU/torture.rst
15977 X:      include/linux/srcu*.h
15978 X:      kernel/rcu/srcu*.c
15979
15980 REAL TIME CLOCK (RTC) SUBSYSTEM
15981 M:      Alessandro Zummo <a.zummo@towertech.it>
15982 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15983 L:      linux-rtc@vger.kernel.org
15984 S:      Maintained
15985 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15987 F:      Documentation/admin-guide/rtc.rst
15988 F:      Documentation/devicetree/bindings/rtc/
15989 F:      drivers/rtc/
15990 F:      include/linux/platform_data/rtc-*
15991 F:      include/linux/rtc.h
15992 F:      include/linux/rtc/
15993 F:      include/uapi/linux/rtc.h
15994 F:      tools/testing/selftests/rtc/
15995
15996 REALTEK AUDIO CODECS
15997 M:      Oder Chiou <oder_chiou@realtek.com>
15998 S:      Maintained
15999 F:      include/sound/rt*.h
16000 F:      sound/soc/codecs/rt*
16001
16002 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16003 M:      Linus Walleij <linus.walleij@linaro.org>
16004 S:      Maintained
16005 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
16006 F:      drivers/net/dsa/realtek-smi*
16007 F:      drivers/net/dsa/rtl83*
16008
16009 REALTEK WIRELESS DRIVER (rtlwifi family)
16010 M:      Ping-Ke Shih <pkshih@realtek.com>
16011 L:      linux-wireless@vger.kernel.org
16012 S:      Maintained
16013 W:      https://wireless.wiki.kernel.org/
16014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16015 F:      drivers/net/wireless/realtek/rtlwifi/
16016
16017 REALTEK WIRELESS DRIVER (rtw88)
16018 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16019 L:      linux-wireless@vger.kernel.org
16020 S:      Maintained
16021 F:      drivers/net/wireless/realtek/rtw88/
16022
16023 REALTEK WIRELESS DRIVER (rtw89)
16024 M:      Ping-Ke Shih <pkshih@realtek.com>
16025 L:      linux-wireless@vger.kernel.org
16026 S:      Maintained
16027 F:      drivers/net/wireless/realtek/rtw89/
16028
16029 REDPINE WIRELESS DRIVER
16030 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16031 M:      Siva Rebbagondla <siva8118@gmail.com>
16032 L:      linux-wireless@vger.kernel.org
16033 S:      Maintained
16034 F:      drivers/net/wireless/rsi/
16035
16036 REGISTER MAP ABSTRACTION
16037 M:      Mark Brown <broonie@kernel.org>
16038 L:      linux-kernel@vger.kernel.org
16039 S:      Supported
16040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16041 F:      Documentation/devicetree/bindings/regmap/
16042 F:      drivers/base/regmap/
16043 F:      include/linux/regmap.h
16044
16045 REISERFS FILE SYSTEM
16046 L:      reiserfs-devel@vger.kernel.org
16047 S:      Supported
16048 F:      fs/reiserfs/
16049
16050 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16051 M:      Ohad Ben-Cohen <ohad@wizery.com>
16052 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16053 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16054 L:      linux-remoteproc@vger.kernel.org
16055 S:      Maintained
16056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
16057 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16058 F:      Documentation/devicetree/bindings/remoteproc/
16059 F:      Documentation/staging/remoteproc.rst
16060 F:      drivers/remoteproc/
16061 F:      include/linux/remoteproc.h
16062 F:      include/linux/remoteproc/
16063
16064 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16065 M:      Ohad Ben-Cohen <ohad@wizery.com>
16066 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16067 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16068 L:      linux-remoteproc@vger.kernel.org
16069 S:      Maintained
16070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
16071 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16072 F:      Documentation/staging/rpmsg.rst
16073 F:      drivers/rpmsg/
16074 F:      include/linux/rpmsg.h
16075 F:      include/linux/rpmsg/
16076 F:      include/uapi/linux/rpmsg.h
16077 F:      samples/rpmsg/
16078
16079 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16080 M:      Stephan Gerhold <stephan@gerhold.net>
16081 L:      netdev@vger.kernel.org
16082 L:      linux-remoteproc@vger.kernel.org
16083 S:      Maintained
16084 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16085
16086 RENESAS CLOCK DRIVERS
16087 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16088 L:      linux-renesas-soc@vger.kernel.org
16089 S:      Supported
16090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16091 F:      Documentation/devicetree/bindings/clock/renesas,*
16092 F:      drivers/clk/renesas/
16093
16094 RENESAS EMEV2 I2C DRIVER
16095 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16096 L:      linux-renesas-soc@vger.kernel.org
16097 S:      Supported
16098 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16099 F:      drivers/i2c/busses/i2c-emev2.c
16100
16101 RENESAS ETHERNET DRIVERS
16102 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16103 L:      netdev@vger.kernel.org
16104 L:      linux-renesas-soc@vger.kernel.org
16105 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16106 F:      drivers/net/ethernet/renesas/
16107 F:      include/linux/sh_eth.h
16108
16109 RENESAS R-CAR GYROADC DRIVER
16110 M:      Marek Vasut <marek.vasut@gmail.com>
16111 L:      linux-iio@vger.kernel.org
16112 S:      Supported
16113 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16114 F:      drivers/iio/adc/rcar-gyroadc.c
16115
16116 RENESAS R-CAR I2C DRIVERS
16117 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16118 L:      linux-renesas-soc@vger.kernel.org
16119 S:      Supported
16120 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16121 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16122 F:      drivers/i2c/busses/i2c-rcar.c
16123 F:      drivers/i2c/busses/i2c-sh_mobile.c
16124
16125 RENESAS R-CAR THERMAL DRIVERS
16126 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16127 L:      linux-renesas-soc@vger.kernel.org
16128 S:      Supported
16129 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16130 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16131 F:      drivers/thermal/rcar_gen3_thermal.c
16132 F:      drivers/thermal/rcar_thermal.c
16133
16134 RENESAS RIIC DRIVER
16135 M:      Chris Brandt <chris.brandt@renesas.com>
16136 L:      linux-renesas-soc@vger.kernel.org
16137 S:      Supported
16138 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16139 F:      drivers/i2c/busses/i2c-riic.c
16140
16141 RENESAS USB PHY DRIVER
16142 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16143 L:      linux-renesas-soc@vger.kernel.org
16144 S:      Maintained
16145 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16146
16147 RENESAS RZ/G2L A/D DRIVER
16148 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16149 L:      linux-iio@vger.kernel.org
16150 L:      linux-renesas-soc@vger.kernel.org
16151 S:      Supported
16152 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16153 F:      drivers/iio/adc/rzg2l_adc.c
16154
16155 RESET CONTROLLER FRAMEWORK
16156 M:      Philipp Zabel <p.zabel@pengutronix.de>
16157 S:      Maintained
16158 T:      git git://git.pengutronix.de/git/pza/linux
16159 F:      Documentation/devicetree/bindings/reset/
16160 F:      Documentation/driver-api/reset.rst
16161 F:      drivers/reset/
16162 F:      include/dt-bindings/reset/
16163 F:      include/linux/reset-controller.h
16164 F:      include/linux/reset.h
16165 F:      include/linux/reset/
16166 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16167
16168 RESTARTABLE SEQUENCES SUPPORT
16169 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16170 M:      Peter Zijlstra <peterz@infradead.org>
16171 M:      "Paul E. McKenney" <paulmck@kernel.org>
16172 M:      Boqun Feng <boqun.feng@gmail.com>
16173 L:      linux-kernel@vger.kernel.org
16174 S:      Supported
16175 F:      include/trace/events/rseq.h
16176 F:      include/uapi/linux/rseq.h
16177 F:      kernel/rseq.c
16178 F:      tools/testing/selftests/rseq/
16179
16180 RFKILL
16181 M:      Johannes Berg <johannes@sipsolutions.net>
16182 L:      linux-wireless@vger.kernel.org
16183 S:      Maintained
16184 W:      https://wireless.wiki.kernel.org/
16185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16187 F:      Documentation/ABI/stable/sysfs-class-rfkill
16188 F:      Documentation/driver-api/rfkill.rst
16189 F:      include/linux/rfkill.h
16190 F:      include/uapi/linux/rfkill.h
16191 F:      net/rfkill/
16192
16193 RHASHTABLE
16194 M:      Thomas Graf <tgraf@suug.ch>
16195 M:      Herbert Xu <herbert@gondor.apana.org.au>
16196 L:      netdev@vger.kernel.org
16197 S:      Maintained
16198 F:      include/linux/rhashtable-types.h
16199 F:      include/linux/rhashtable.h
16200 F:      lib/rhashtable.c
16201 F:      lib/test_rhashtable.c
16202
16203 RICOH R5C592 MEMORYSTICK DRIVER
16204 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16205 S:      Maintained
16206 F:      drivers/memstick/host/r592.*
16207
16208 RICOH SMARTMEDIA/XD DRIVER
16209 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16210 S:      Maintained
16211 F:      drivers/mtd/nand/raw/r852.c
16212 F:      drivers/mtd/nand/raw/r852.h
16213
16214 RISC-V ARCHITECTURE
16215 M:      Paul Walmsley <paul.walmsley@sifive.com>
16216 M:      Palmer Dabbelt <palmer@dabbelt.com>
16217 M:      Albert Ou <aou@eecs.berkeley.edu>
16218 L:      linux-riscv@lists.infradead.org
16219 S:      Supported
16220 P:      Documentation/riscv/patch-acceptance.rst
16221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16222 F:      arch/riscv/
16223 N:      riscv
16224 K:      riscv
16225
16226 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16227 M:      Lewis Hanly <lewis.hanly@microchip.com>
16228 L:      linux-riscv@lists.infradead.org
16229 S:      Supported
16230 F:      drivers/mailbox/mailbox-mpfs.c
16231 F:      drivers/soc/microchip/
16232 F:      include/soc/microchip/mpfs.h
16233
16234 RNBD BLOCK DRIVERS
16235 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16236 M:      Jack Wang <jinpu.wang@ionos.com>
16237 L:      linux-block@vger.kernel.org
16238 S:      Maintained
16239 F:      drivers/block/rnbd/
16240
16241 ROCCAT DRIVERS
16242 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16243 S:      Maintained
16244 W:      http://sourceforge.net/projects/roccat/
16245 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16246 F:      drivers/hid/hid-roccat*
16247 F:      include/linux/hid-roccat*
16248
16249 ROCKCHIP I2S TDM DRIVER
16250 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16251 L:      linux-rockchip@lists.infradead.org
16252 S:      Maintained
16253 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16254 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16255
16256 ROCKCHIP ISP V1 DRIVER
16257 M:      Helen Koike <helen.koike@collabora.com>
16258 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16259 L:      linux-media@vger.kernel.org
16260 L:      linux-rockchip@lists.infradead.org
16261 S:      Maintained
16262 F:      Documentation/admin-guide/media/rkisp1.rst
16263 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16264 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16265 F:      drivers/media/platform/rockchip/rkisp1
16266 F:      include/uapi/linux/rkisp1-config.h
16267
16268 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16269 M:      Jacob Chen <jacob-chen@iotwrt.com>
16270 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16271 L:      linux-media@vger.kernel.org
16272 L:      linux-rockchip@lists.infradead.org
16273 S:      Maintained
16274 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16275 F:      drivers/media/platform/rockchip/rga/
16276
16277 ROCKCHIP VIDEO DECODER DRIVER
16278 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16279 L:      linux-media@vger.kernel.org
16280 L:      linux-rockchip@lists.infradead.org
16281 S:      Maintained
16282 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16283 F:      drivers/staging/media/rkvdec/
16284
16285 ROCKER DRIVER
16286 M:      Jiri Pirko <jiri@resnulli.us>
16287 L:      netdev@vger.kernel.org
16288 S:      Supported
16289 F:      drivers/net/ethernet/rocker/
16290
16291 ROCKETPORT EXPRESS/INFINITY DRIVER
16292 M:      Kevin Cernekee <cernekee@gmail.com>
16293 L:      linux-serial@vger.kernel.org
16294 S:      Odd Fixes
16295 F:      drivers/tty/serial/rp2.*
16296
16297 ROHM BD99954 CHARGER IC
16298 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16299 L:      linux-power@fi.rohmeurope.com
16300 S:      Supported
16301 F:      drivers/power/supply/bd99954-charger.c
16302 F:      drivers/power/supply/bd99954-charger.h
16303
16304 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16305 M:      Tomasz Duszynski <tduszyns@gmail.com>
16306 S:      Maintained
16307 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16308 F:      drivers/iio/light/bh1750.c
16309
16310 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16311 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16312 L:      linux-kernel@vger.kernel.org
16313 L:      linux-renesas-soc@vger.kernel.org
16314 S:      Supported
16315 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16316 F:      drivers/gpio/gpio-bd9571mwv.c
16317 F:      drivers/mfd/bd9571mwv.c
16318 F:      drivers/regulator/bd9571mwv-regulator.c
16319 F:      include/linux/mfd/bd9571mwv.h
16320
16321 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16322 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16323 L:      linux-power@fi.rohmeurope.com
16324 S:      Supported
16325 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16326 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16327 F:      drivers/clk/clk-bd718x7.c
16328 F:      drivers/gpio/gpio-bd70528.c
16329 F:      drivers/gpio/gpio-bd71815.c
16330 F:      drivers/gpio/gpio-bd71828.c
16331 F:      drivers/mfd/rohm-bd70528.c
16332 F:      drivers/mfd/rohm-bd71828.c
16333 F:      drivers/mfd/rohm-bd718x7.c
16334 F:      drivers/mfd/rohm-bd9576.c
16335 F:      drivers/power/supply/bd70528-charger.c
16336 F:      drivers/regulator/bd70528-regulator.c
16337 F:      drivers/regulator/bd71815-regulator.c
16338 F:      drivers/regulator/bd71828-regulator.c
16339 F:      drivers/regulator/bd718x7-regulator.c
16340 F:      drivers/regulator/bd9576-regulator.c
16341 F:      drivers/regulator/rohm-regulator.c
16342 F:      drivers/rtc/rtc-bd70528.c
16343 F:      drivers/watchdog/bd70528_wdt.c
16344 F:      drivers/watchdog/bd9576_wdt.c
16345 F:      include/linux/mfd/rohm-bd70528.h
16346 F:      include/linux/mfd/rohm-bd71815.h
16347 F:      include/linux/mfd/rohm-bd71828.h
16348 F:      include/linux/mfd/rohm-bd718x7.h
16349 F:      include/linux/mfd/rohm-bd957x.h
16350 F:      include/linux/mfd/rohm-generic.h
16351 F:      include/linux/mfd/rohm-shared.h
16352
16353 ROSE NETWORK LAYER
16354 M:      Ralf Baechle <ralf@linux-mips.org>
16355 L:      linux-hams@vger.kernel.org
16356 S:      Maintained
16357 W:      http://www.linux-ax25.org/
16358 F:      include/net/rose.h
16359 F:      include/uapi/linux/rose.h
16360 F:      net/rose/
16361
16362 ROTATION DRIVER FOR ALLWINNER A83T
16363 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16364 L:      linux-media@vger.kernel.org
16365 S:      Maintained
16366 T:      git git://linuxtv.org/media_tree.git
16367 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16368 F:      drivers/media/platform/sunxi/sun8i-rotate/
16369
16370 RTL2830 MEDIA DRIVER
16371 M:      Antti Palosaari <crope@iki.fi>
16372 L:      linux-media@vger.kernel.org
16373 S:      Maintained
16374 W:      https://linuxtv.org
16375 W:      http://palosaari.fi/linux/
16376 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16377 T:      git git://linuxtv.org/anttip/media_tree.git
16378 F:      drivers/media/dvb-frontends/rtl2830*
16379
16380 RTL2832 MEDIA DRIVER
16381 M:      Antti Palosaari <crope@iki.fi>
16382 L:      linux-media@vger.kernel.org
16383 S:      Maintained
16384 W:      https://linuxtv.org
16385 W:      http://palosaari.fi/linux/
16386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16387 T:      git git://linuxtv.org/anttip/media_tree.git
16388 F:      drivers/media/dvb-frontends/rtl2832*
16389
16390 RTL2832_SDR MEDIA DRIVER
16391 M:      Antti Palosaari <crope@iki.fi>
16392 L:      linux-media@vger.kernel.org
16393 S:      Maintained
16394 W:      https://linuxtv.org
16395 W:      http://palosaari.fi/linux/
16396 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16397 T:      git git://linuxtv.org/anttip/media_tree.git
16398 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16399
16400 RTL8180 WIRELESS DRIVER
16401 L:      linux-wireless@vger.kernel.org
16402 S:      Orphan
16403 W:      https://wireless.wiki.kernel.org/
16404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16405 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16406
16407 RTL8187 WIRELESS DRIVER
16408 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16409 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16410 M:      Larry Finger <Larry.Finger@lwfinger.net>
16411 L:      linux-wireless@vger.kernel.org
16412 S:      Maintained
16413 W:      https://wireless.wiki.kernel.org/
16414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16415 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16416
16417 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16418 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16419 L:      linux-wireless@vger.kernel.org
16420 S:      Maintained
16421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16422 F:      drivers/net/wireless/realtek/rtl8xxxu/
16423
16424 RTRS TRANSPORT DRIVERS
16425 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16426 M:      Jack Wang <jinpu.wang@ionos.com>
16427 L:      linux-rdma@vger.kernel.org
16428 S:      Maintained
16429 F:      drivers/infiniband/ulp/rtrs/
16430
16431 RXRPC SOCKETS (AF_RXRPC)
16432 M:      David Howells <dhowells@redhat.com>
16433 M:      Marc Dionne <marc.dionne@auristor.com>
16434 L:      linux-afs@lists.infradead.org
16435 S:      Supported
16436 W:      https://www.infradead.org/~dhowells/kafs/
16437 F:      Documentation/networking/rxrpc.rst
16438 F:      include/keys/rxrpc-type.h
16439 F:      include/net/af_rxrpc.h
16440 F:      include/trace/events/rxrpc.h
16441 F:      include/uapi/linux/rxrpc.h
16442 F:      net/rxrpc/
16443
16444 S3 SAVAGE FRAMEBUFFER DRIVER
16445 M:      Antonino Daplas <adaplas@gmail.com>
16446 L:      linux-fbdev@vger.kernel.org
16447 S:      Maintained
16448 F:      drivers/video/fbdev/savage/
16449
16450 S390
16451 M:      Heiko Carstens <hca@linux.ibm.com>
16452 M:      Vasily Gorbik <gor@linux.ibm.com>
16453 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16454 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16455 L:      linux-s390@vger.kernel.org
16456 S:      Supported
16457 W:      http://www.ibm.com/developerworks/linux/linux390/
16458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16459 F:      Documentation/driver-api/s390-drivers.rst
16460 F:      Documentation/s390/
16461 F:      arch/s390/
16462 F:      drivers/s390/
16463
16464 S390 COMMON I/O LAYER
16465 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16466 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16467 L:      linux-s390@vger.kernel.org
16468 S:      Supported
16469 W:      http://www.ibm.com/developerworks/linux/linux390/
16470 F:      drivers/s390/cio/
16471
16472 S390 DASD DRIVER
16473 M:      Stefan Haberland <sth@linux.ibm.com>
16474 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16475 L:      linux-s390@vger.kernel.org
16476 S:      Supported
16477 W:      http://www.ibm.com/developerworks/linux/linux390/
16478 F:      block/partitions/ibm.c
16479 F:      drivers/s390/block/dasd*
16480 F:      include/linux/dasd_mod.h
16481
16482 S390 IOMMU (PCI)
16483 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16484 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16485 L:      linux-s390@vger.kernel.org
16486 S:      Supported
16487 W:      http://www.ibm.com/developerworks/linux/linux390/
16488 F:      drivers/iommu/s390-iommu.c
16489
16490 S390 IUCV NETWORK LAYER
16491 M:      Julian Wiedmann <jwi@linux.ibm.com>
16492 M:      Karsten Graul <kgraul@linux.ibm.com>
16493 L:      linux-s390@vger.kernel.org
16494 L:      netdev@vger.kernel.org
16495 S:      Supported
16496 W:      http://www.ibm.com/developerworks/linux/linux390/
16497 F:      drivers/s390/net/*iucv*
16498 F:      include/net/iucv/
16499 F:      net/iucv/
16500
16501 S390 NETWORK DRIVERS
16502 M:      Julian Wiedmann <jwi@linux.ibm.com>
16503 M:      Karsten Graul <kgraul@linux.ibm.com>
16504 L:      linux-s390@vger.kernel.org
16505 L:      netdev@vger.kernel.org
16506 S:      Supported
16507 W:      http://www.ibm.com/developerworks/linux/linux390/
16508 F:      drivers/s390/net/
16509
16510 S390 PCI SUBSYSTEM
16511 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16512 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16513 L:      linux-s390@vger.kernel.org
16514 S:      Supported
16515 W:      http://www.ibm.com/developerworks/linux/linux390/
16516 F:      arch/s390/pci/
16517 F:      drivers/pci/hotplug/s390_pci_hpc.c
16518 F:      Documentation/s390/pci.rst
16519
16520 S390 VFIO AP DRIVER
16521 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16522 M:      Halil Pasic <pasic@linux.ibm.com>
16523 M:      Jason Herne <jjherne@linux.ibm.com>
16524 L:      linux-s390@vger.kernel.org
16525 S:      Supported
16526 W:      http://www.ibm.com/developerworks/linux/linux390/
16527 F:      Documentation/s390/vfio-ap.rst
16528 F:      drivers/s390/crypto/vfio_ap_drv.c
16529 F:      drivers/s390/crypto/vfio_ap_ops.c
16530 F:      drivers/s390/crypto/vfio_ap_private.h
16531
16532 S390 VFIO-CCW DRIVER
16533 M:      Eric Farman <farman@linux.ibm.com>
16534 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16535 R:      Halil Pasic <pasic@linux.ibm.com>
16536 L:      linux-s390@vger.kernel.org
16537 L:      kvm@vger.kernel.org
16538 S:      Supported
16539 F:      Documentation/s390/vfio-ccw.rst
16540 F:      drivers/s390/cio/vfio_ccw*
16541 F:      include/uapi/linux/vfio_ccw.h
16542
16543 S390 VFIO-PCI DRIVER
16544 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16545 M:      Eric Farman <farman@linux.ibm.com>
16546 L:      linux-s390@vger.kernel.org
16547 L:      kvm@vger.kernel.org
16548 S:      Supported
16549 F:      drivers/vfio/pci/vfio_pci_zdev.c
16550 F:      include/uapi/linux/vfio_zdev.h
16551
16552 S390 ZCRYPT DRIVER
16553 M:      Harald Freudenberger <freude@linux.ibm.com>
16554 L:      linux-s390@vger.kernel.org
16555 S:      Supported
16556 W:      http://www.ibm.com/developerworks/linux/linux390/
16557 F:      drivers/s390/crypto/
16558
16559 S390 ZFCP DRIVER
16560 M:      Steffen Maier <maier@linux.ibm.com>
16561 M:      Benjamin Block <bblock@linux.ibm.com>
16562 L:      linux-s390@vger.kernel.org
16563 S:      Supported
16564 W:      http://www.ibm.com/developerworks/linux/linux390/
16565 F:      drivers/s390/scsi/zfcp_*
16566
16567 S3C ADC BATTERY DRIVER
16568 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16569 L:      linux-samsung-soc@vger.kernel.org
16570 S:      Odd Fixes
16571 F:      drivers/power/supply/s3c_adc_battery.c
16572 F:      include/linux/s3c_adc_battery.h
16573
16574 S3C24XX SD/MMC Driver
16575 M:      Ben Dooks <ben-linux@fluff.org>
16576 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16577 S:      Supported
16578 F:      drivers/mmc/host/s3cmci.*
16579
16580 SAA6588 RDS RECEIVER DRIVER
16581 M:      Hans Verkuil <hverkuil@xs4all.nl>
16582 L:      linux-media@vger.kernel.org
16583 S:      Odd Fixes
16584 W:      https://linuxtv.org
16585 T:      git git://linuxtv.org/media_tree.git
16586 F:      drivers/media/i2c/saa6588*
16587
16588 SAA7134 VIDEO4LINUX DRIVER
16589 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16590 L:      linux-media@vger.kernel.org
16591 S:      Odd fixes
16592 W:      https://linuxtv.org
16593 T:      git git://linuxtv.org/media_tree.git
16594 F:      Documentation/driver-api/media/drivers/saa7134*
16595 F:      drivers/media/pci/saa7134/
16596
16597 SAA7146 VIDEO4LINUX-2 DRIVER
16598 M:      Hans Verkuil <hverkuil@xs4all.nl>
16599 L:      linux-media@vger.kernel.org
16600 S:      Maintained
16601 T:      git git://linuxtv.org/media_tree.git
16602 F:      drivers/media/common/saa7146/
16603 F:      drivers/media/pci/saa7146/
16604 F:      include/media/drv-intf/saa7146*
16605
16606 SAFESETID SECURITY MODULE
16607 M:      Micah Morton <mortonm@chromium.org>
16608 S:      Supported
16609 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16610 F:      security/safesetid/
16611
16612 SAMSUNG AUDIO (ASoC) DRIVERS
16613 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16614 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16615 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16616 S:      Supported
16617 F:      Documentation/devicetree/bindings/sound/samsung*
16618 F:      sound/soc/samsung/
16619
16620 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16621 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16622 L:      linux-crypto@vger.kernel.org
16623 L:      linux-samsung-soc@vger.kernel.org
16624 S:      Maintained
16625 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16626 F:      drivers/crypto/exynos-rng.c
16627
16628 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16629 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16630 L:      linux-samsung-soc@vger.kernel.org
16631 S:      Maintained
16632 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16633 F:      drivers/char/hw_random/exynos-trng.c
16634
16635 SAMSUNG FRAMEBUFFER DRIVER
16636 M:      Jingoo Han <jingoohan1@gmail.com>
16637 L:      linux-fbdev@vger.kernel.org
16638 S:      Maintained
16639 F:      drivers/video/fbdev/s3c-fb.c
16640
16641 SAMSUNG INTERCONNECT DRIVERS
16642 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16643 M:      Artur Świgoń <a.swigon@samsung.com>
16644 L:      linux-pm@vger.kernel.org
16645 L:      linux-samsung-soc@vger.kernel.org
16646 S:      Supported
16647 F:      drivers/interconnect/samsung/
16648
16649 SAMSUNG LAPTOP DRIVER
16650 M:      Corentin Chary <corentin.chary@gmail.com>
16651 L:      platform-driver-x86@vger.kernel.org
16652 S:      Maintained
16653 F:      drivers/platform/x86/samsung-laptop.c
16654
16655 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16656 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16657 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16658 L:      linux-kernel@vger.kernel.org
16659 L:      linux-samsung-soc@vger.kernel.org
16660 S:      Supported
16661 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
16662 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16663 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
16664 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
16665 F:      drivers/clk/clk-s2mps11.c
16666 F:      drivers/mfd/sec*.c
16667 F:      drivers/regulator/s2m*.c
16668 F:      drivers/regulator/s5m*.c
16669 F:      drivers/rtc/rtc-s5m.c
16670 F:      include/linux/mfd/samsung/
16671
16672 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16673 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16674 L:      linux-media@vger.kernel.org
16675 L:      linux-samsung-soc@vger.kernel.org
16676 S:      Maintained
16677 F:      drivers/media/platform/s3c-camif/
16678 F:      include/media/drv-intf/s3c_camif.h
16679
16680 SAMSUNG S3FWRN5 NFC DRIVER
16681 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16682 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16683 L:      linux-nfc@lists.01.org (subscribers-only)
16684 S:      Maintained
16685 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16686 F:      drivers/nfc/s3fwrn5
16687
16688 SAMSUNG S5C73M3 CAMERA DRIVER
16689 M:      Andrzej Hajda <a.hajda@samsung.com>
16690 L:      linux-media@vger.kernel.org
16691 S:      Supported
16692 F:      drivers/media/i2c/s5c73m3/*
16693
16694 SAMSUNG S5K5BAF CAMERA DRIVER
16695 M:      Andrzej Hajda <a.hajda@samsung.com>
16696 L:      linux-media@vger.kernel.org
16697 S:      Supported
16698 F:      drivers/media/i2c/s5k5baf.c
16699
16700 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16701 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16702 M:      Vladimir Zapolskiy <vz@mleia.com>
16703 L:      linux-crypto@vger.kernel.org
16704 L:      linux-samsung-soc@vger.kernel.org
16705 S:      Maintained
16706 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16707 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16708 F:      drivers/crypto/s5p-sss.c
16709
16710 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16711 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16712 L:      linux-media@vger.kernel.org
16713 S:      Supported
16714 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16715 F:      drivers/media/platform/exynos4-is/
16716
16717 SAMSUNG SOC CLOCK DRIVERS
16718 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16719 M:      Tomasz Figa <tomasz.figa@gmail.com>
16720 M:      Chanwoo Choi <cw00.choi@samsung.com>
16721 L:      linux-samsung-soc@vger.kernel.org
16722 S:      Supported
16723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16724 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16725 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16726 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16727 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16728 F:      drivers/clk/samsung/
16729 F:      include/dt-bindings/clock/exynos*.h
16730 F:      include/dt-bindings/clock/s3c*.h
16731 F:      include/dt-bindings/clock/s5p*.h
16732 F:      include/dt-bindings/clock/samsung,*.h
16733 F:      include/linux/clk/samsung.h
16734 F:      include/linux/platform_data/clk-s3c2410.h
16735
16736 SAMSUNG SPI DRIVERS
16737 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16738 M:      Andi Shyti <andi@etezian.org>
16739 L:      linux-spi@vger.kernel.org
16740 L:      linux-samsung-soc@vger.kernel.org
16741 S:      Maintained
16742 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16743 F:      drivers/spi/spi-s3c*
16744 F:      include/linux/platform_data/spi-s3c64xx.h
16745 F:      include/linux/spi/s3c24xx-fiq.h
16746
16747 SAMSUNG SXGBE DRIVERS
16748 M:      Byungho An <bh74.an@samsung.com>
16749 L:      netdev@vger.kernel.org
16750 S:      Supported
16751 F:      drivers/net/ethernet/samsung/sxgbe/
16752
16753 SAMSUNG THERMAL DRIVER
16754 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16755 L:      linux-pm@vger.kernel.org
16756 L:      linux-samsung-soc@vger.kernel.org
16757 S:      Supported
16758 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16759 F:      drivers/thermal/samsung/
16760
16761 SAMSUNG USB2 PHY DRIVER
16762 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16763 L:      linux-kernel@vger.kernel.org
16764 S:      Supported
16765 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16766 F:      Documentation/driver-api/phy/samsung-usb2.rst
16767 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16768 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16769 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16770 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16771 F:      drivers/phy/samsung/phy-samsung-usb2.c
16772 F:      drivers/phy/samsung/phy-samsung-usb2.h
16773
16774 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16775 M:      Paul Barker <paul.barker@sancloud.com>
16776 R:      Marc Murphy <marc.murphy@sancloud.com>
16777 S:      Supported
16778 F:      arch/arm/boot/dts/am335x-sancloud*
16779
16780 SC1200 WDT DRIVER
16781 M:      Zwane Mwaikambo <zwanem@gmail.com>
16782 S:      Maintained
16783 F:      drivers/watchdog/sc1200wdt.c
16784
16785 SCHEDULER
16786 M:      Ingo Molnar <mingo@redhat.com>
16787 M:      Peter Zijlstra <peterz@infradead.org>
16788 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16789 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16790 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16791 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16792 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16793 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16794 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16795 L:      linux-kernel@vger.kernel.org
16796 S:      Maintained
16797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16798 F:      include/linux/preempt.h
16799 F:      include/linux/sched.h
16800 F:      include/linux/wait.h
16801 F:      include/uapi/linux/sched.h
16802 F:      kernel/sched/
16803
16804 SCR24X CHIP CARD INTERFACE DRIVER
16805 M:      Lubomir Rintel <lkundrak@v3.sk>
16806 S:      Supported
16807 F:      drivers/char/pcmcia/scr24x_cs.c
16808
16809 SCSI RDMA PROTOCOL (SRP) INITIATOR
16810 M:      Bart Van Assche <bvanassche@acm.org>
16811 L:      linux-rdma@vger.kernel.org
16812 S:      Supported
16813 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16814 F:      drivers/infiniband/ulp/srp/
16815 F:      include/scsi/srp.h
16816
16817 SCSI RDMA PROTOCOL (SRP) TARGET
16818 M:      Bart Van Assche <bvanassche@acm.org>
16819 L:      linux-rdma@vger.kernel.org
16820 L:      target-devel@vger.kernel.org
16821 S:      Supported
16822 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16823 F:      drivers/infiniband/ulp/srpt/
16824
16825 SCSI SG DRIVER
16826 M:      Doug Gilbert <dgilbert@interlog.com>
16827 L:      linux-scsi@vger.kernel.org
16828 S:      Maintained
16829 W:      http://sg.danny.cz/sg
16830 F:      Documentation/scsi/scsi-generic.rst
16831 F:      drivers/scsi/sg.c
16832 F:      include/scsi/sg.h
16833
16834 SCSI SUBSYSTEM
16835 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16836 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16837 L:      linux-scsi@vger.kernel.org
16838 S:      Maintained
16839 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16842 F:      Documentation/devicetree/bindings/scsi/
16843 F:      drivers/scsi/
16844 F:      include/scsi/
16845
16846 SCSI TAPE DRIVER
16847 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16848 L:      linux-scsi@vger.kernel.org
16849 S:      Maintained
16850 F:      Documentation/scsi/st.rst
16851 F:      drivers/scsi/st.*
16852 F:      drivers/scsi/st_*.h
16853
16854 SCSI TARGET CORE USER DRIVER
16855 M:      Bodo Stroesser <bostroesser@gmail.com>
16856 L:      linux-scsi@vger.kernel.org
16857 L:      target-devel@vger.kernel.org
16858 S:      Supported
16859 F:      Documentation/target/tcmu-design.rst
16860 F:      drivers/target/target_core_user.c
16861 F:      include/uapi/linux/target_core_user.h
16862
16863 SCSI TARGET SUBSYSTEM
16864 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16865 L:      linux-scsi@vger.kernel.org
16866 L:      target-devel@vger.kernel.org
16867 S:      Supported
16868 W:      http://www.linux-iscsi.org
16869 Q:      https://patchwork.kernel.org/project/target-devel/list/
16870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16871 F:      Documentation/target/
16872 F:      drivers/target/
16873 F:      include/target/
16874
16875 SCTP PROTOCOL
16876 M:      Vlad Yasevich <vyasevich@gmail.com>
16877 M:      Neil Horman <nhorman@tuxdriver.com>
16878 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16879 L:      linux-sctp@vger.kernel.org
16880 S:      Maintained
16881 W:      http://lksctp.sourceforge.net
16882 F:      Documentation/networking/sctp.rst
16883 F:      include/linux/sctp.h
16884 F:      include/net/sctp/
16885 F:      include/uapi/linux/sctp.h
16886 F:      net/sctp/
16887
16888 SCx200 CPU SUPPORT
16889 M:      Jim Cromie <jim.cromie@gmail.com>
16890 S:      Odd Fixes
16891 F:      Documentation/i2c/busses/scx200_acb.rst
16892 F:      arch/x86/platform/scx200/
16893 F:      drivers/i2c/busses/scx200*
16894 F:      drivers/mtd/maps/scx200_docflash.c
16895 F:      drivers/watchdog/scx200_wdt.c
16896 F:      include/linux/scx200.h
16897
16898 SCx200 GPIO DRIVER
16899 M:      Jim Cromie <jim.cromie@gmail.com>
16900 S:      Maintained
16901 F:      drivers/char/scx200_gpio.c
16902 F:      include/linux/scx200_gpio.h
16903
16904 SCx200 HRT CLOCKSOURCE DRIVER
16905 M:      Jim Cromie <jim.cromie@gmail.com>
16906 S:      Maintained
16907 F:      drivers/clocksource/scx200_hrt.c
16908
16909 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16910 M:      Sascha Sommer <saschasommer@freenet.de>
16911 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16912 S:      Maintained
16913 F:      drivers/mmc/host/sdricoh_cs.c
16914
16915 SECO BOARDS CEC DRIVER
16916 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16917 S:      Maintained
16918 F:      drivers/media/cec/platform/seco/seco-cec.c
16919 F:      drivers/media/cec/platform/seco/seco-cec.h
16920
16921 SECURE COMPUTING
16922 M:      Kees Cook <keescook@chromium.org>
16923 R:      Andy Lutomirski <luto@amacapital.net>
16924 R:      Will Drewry <wad@chromium.org>
16925 S:      Supported
16926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16927 F:      Documentation/userspace-api/seccomp_filter.rst
16928 F:      include/linux/seccomp.h
16929 F:      include/uapi/linux/seccomp.h
16930 F:      kernel/seccomp.c
16931 F:      tools/testing/selftests/kselftest_harness.h
16932 F:      tools/testing/selftests/seccomp/*
16933 K:      \bsecure_computing
16934 K:      \bTIF_SECCOMP\b
16935
16936 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16937 M:      Al Cooper <alcooperx@gmail.com>
16938 L:      linux-mmc@vger.kernel.org
16939 L:      bcm-kernel-feedback-list@broadcom.com
16940 S:      Maintained
16941 F:      drivers/mmc/host/sdhci-brcmstb*
16942
16943 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16944 M:      Adrian Hunter <adrian.hunter@intel.com>
16945 L:      linux-mmc@vger.kernel.org
16946 S:      Maintained
16947 F:      drivers/mmc/host/sdhci*
16948
16949 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16950 M:      Eugen Hristev <eugen.hristev@microchip.com>
16951 L:      linux-mmc@vger.kernel.org
16952 S:      Supported
16953 F:      drivers/mmc/host/sdhci-of-at91.c
16954
16955 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16956 M:      Ben Dooks <ben-linux@fluff.org>
16957 M:      Jaehoon Chung <jh80.chung@samsung.com>
16958 L:      linux-mmc@vger.kernel.org
16959 S:      Maintained
16960 F:      drivers/mmc/host/sdhci-s3c*
16961
16962 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16963 M:      Viresh Kumar <vireshk@kernel.org>
16964 L:      linux-mmc@vger.kernel.org
16965 S:      Maintained
16966 F:      drivers/mmc/host/sdhci-spear.c
16967
16968 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16969 M:      Kishon Vijay Abraham I <kishon@ti.com>
16970 L:      linux-mmc@vger.kernel.org
16971 S:      Maintained
16972 F:      drivers/mmc/host/sdhci-omap.c
16973
16974 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16975 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16976 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16977 L:      linux-block@vger.kernel.org
16978 S:      Supported
16979 F:      block/opal_proto.h
16980 F:      block/sed*
16981 F:      include/linux/sed*
16982 F:      include/uapi/linux/sed*
16983
16984 SECURITY CONTACT
16985 M:      Security Officers <security@kernel.org>
16986 S:      Supported
16987 F:      Documentation/admin-guide/security-bugs.rst
16988
16989 SECURITY SUBSYSTEM
16990 M:      James Morris <jmorris@namei.org>
16991 M:      "Serge E. Hallyn" <serge@hallyn.com>
16992 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16993 S:      Supported
16994 W:      http://kernsec.org/
16995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16996 F:      security/
16997 X:      security/selinux/
16998
16999 SELINUX SECURITY MODULE
17000 M:      Paul Moore <paul@paul-moore.com>
17001 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17002 M:      Eric Paris <eparis@parisplace.org>
17003 L:      selinux@vger.kernel.org
17004 S:      Supported
17005 W:      https://selinuxproject.org
17006 W:      https://github.com/SELinuxProject
17007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17008 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17009 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17010 F:      Documentation/admin-guide/LSM/SELinux.rst
17011 F:      include/trace/events/avc.h
17012 F:      include/uapi/linux/selinux_netlink.h
17013 F:      scripts/selinux/
17014 F:      security/selinux/
17015
17016 SENSABLE PHANTOM
17017 M:      Jiri Slaby <jirislaby@kernel.org>
17018 S:      Maintained
17019 F:      drivers/misc/phantom.c
17020 F:      include/uapi/linux/phantom.h
17021
17022 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17023 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17024 S:      Maintained
17025 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17026 F:      drivers/iio/chemical/scd30.h
17027 F:      drivers/iio/chemical/scd30_core.c
17028 F:      drivers/iio/chemical/scd30_i2c.c
17029 F:      drivers/iio/chemical/scd30_serial.c
17030
17031 SENSIRION SGP40 GAS SENSOR DRIVER
17032 M:      Andreas Klinger <ak@it-klinger.de>
17033 S:      Maintained
17034 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17035 F:      drivers/iio/chemical/sgp40.c
17036
17037 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17038 M:      Tomasz Duszynski <tduszyns@gmail.com>
17039 S:      Maintained
17040 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17041 F:      drivers/iio/chemical/sps30.c
17042 F:      drivers/iio/chemical/sps30_i2c.c
17043 F:      drivers/iio/chemical/sps30_serial.c
17044
17045 SERIAL DEVICE BUS
17046 M:      Rob Herring <robh@kernel.org>
17047 L:      linux-serial@vger.kernel.org
17048 S:      Maintained
17049 F:      Documentation/devicetree/bindings/serial/serial.yaml
17050 F:      drivers/tty/serdev/
17051 F:      include/linux/serdev.h
17052
17053 SERIAL DRIVERS
17054 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17055 L:      linux-serial@vger.kernel.org
17056 S:      Maintained
17057 F:      Documentation/devicetree/bindings/serial/
17058 F:      drivers/tty/serial/
17059
17060 SERIAL IR RECEIVER
17061 M:      Sean Young <sean@mess.org>
17062 L:      linux-media@vger.kernel.org
17063 S:      Maintained
17064 F:      drivers/media/rc/serial_ir.c
17065
17066 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17067 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17069 S:      Maintained
17070 F:      Documentation/devicetree/bindings/slimbus/
17071 F:      drivers/slimbus/
17072 F:      include/linux/slimbus.h
17073
17074 SFC NETWORK DRIVER
17075 M:      Edward Cree <ecree.xilinx@gmail.com>
17076 M:      Martin Habets <habetsm.xilinx@gmail.com>
17077 L:      netdev@vger.kernel.org
17078 S:      Supported
17079 F:      drivers/net/ethernet/sfc/
17080
17081 SFF/SFP/SFP+ MODULE SUPPORT
17082 M:      Russell King <linux@armlinux.org.uk>
17083 L:      netdev@vger.kernel.org
17084 S:      Maintained
17085 F:      drivers/net/phy/phylink.c
17086 F:      drivers/net/phy/sfp*
17087 F:      include/linux/mdio/mdio-i2c.h
17088 F:      include/linux/phylink.h
17089 F:      include/linux/sfp.h
17090 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)
17091
17092 SGI GRU DRIVER
17093 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17094 S:      Maintained
17095 F:      drivers/misc/sgi-gru/
17096
17097 SGI XP/XPC/XPNET DRIVER
17098 M:      Robin Holt <robinmholt@gmail.com>
17099 M:      Steve Wahl <steve.wahl@hpe.com>
17100 R:      Mike Travis <mike.travis@hpe.com>
17101 S:      Maintained
17102 F:      drivers/misc/sgi-xp/
17103
17104 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17105 M:      Karsten Graul <kgraul@linux.ibm.com>
17106 L:      linux-s390@vger.kernel.org
17107 S:      Supported
17108 W:      http://www.ibm.com/developerworks/linux/linux390/
17109 F:      net/smc/
17110
17111 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17112 M:      Linus Walleij <linus.walleij@linaro.org>
17113 L:      linux-iio@vger.kernel.org
17114 S:      Maintained
17115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17116 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17117 F:      drivers/iio/light/gp2ap002.c
17118
17119 SHARP RJ54N1CB0C SENSOR DRIVER
17120 M:      Jacopo Mondi <jacopo@jmondi.org>
17121 L:      linux-media@vger.kernel.org
17122 S:      Odd fixes
17123 T:      git git://linuxtv.org/media_tree.git
17124 F:      drivers/media/i2c/rj54n1cb0c.c
17125 F:      include/media/i2c/rj54n1cb0c.h
17126
17127 SH_VOU V4L2 OUTPUT DRIVER
17128 L:      linux-media@vger.kernel.org
17129 S:      Orphan
17130 F:      drivers/media/platform/sh_vou.c
17131 F:      include/media/drv-intf/sh_vou.h
17132
17133 SI2157 MEDIA DRIVER
17134 M:      Antti Palosaari <crope@iki.fi>
17135 L:      linux-media@vger.kernel.org
17136 S:      Maintained
17137 W:      https://linuxtv.org
17138 W:      http://palosaari.fi/linux/
17139 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17140 T:      git git://linuxtv.org/anttip/media_tree.git
17141 F:      drivers/media/tuners/si2157*
17142
17143 SI2165 MEDIA DRIVER
17144 M:      Matthias Schwarzott <zzam@gentoo.org>
17145 L:      linux-media@vger.kernel.org
17146 S:      Maintained
17147 W:      https://linuxtv.org
17148 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17149 F:      drivers/media/dvb-frontends/si2165*
17150
17151 SI2168 MEDIA DRIVER
17152 M:      Antti Palosaari <crope@iki.fi>
17153 L:      linux-media@vger.kernel.org
17154 S:      Maintained
17155 W:      https://linuxtv.org
17156 W:      http://palosaari.fi/linux/
17157 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17158 T:      git git://linuxtv.org/anttip/media_tree.git
17159 F:      drivers/media/dvb-frontends/si2168*
17160
17161 SI470X FM RADIO RECEIVER I2C DRIVER
17162 M:      Hans Verkuil <hverkuil@xs4all.nl>
17163 L:      linux-media@vger.kernel.org
17164 S:      Odd Fixes
17165 W:      https://linuxtv.org
17166 T:      git git://linuxtv.org/media_tree.git
17167 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17168
17169 SI470X FM RADIO RECEIVER USB DRIVER
17170 M:      Hans Verkuil <hverkuil@xs4all.nl>
17171 L:      linux-media@vger.kernel.org
17172 S:      Maintained
17173 W:      https://linuxtv.org
17174 T:      git git://linuxtv.org/media_tree.git
17175 F:      drivers/media/radio/si470x/radio-si470x-common.c
17176 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17177 F:      drivers/media/radio/si470x/radio-si470x.h
17178
17179 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17180 M:      Eduardo Valentin <edubezval@gmail.com>
17181 L:      linux-media@vger.kernel.org
17182 S:      Odd Fixes
17183 W:      https://linuxtv.org
17184 T:      git git://linuxtv.org/media_tree.git
17185 F:      drivers/media/radio/si4713/si4713.?
17186
17187 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17188 M:      Eduardo Valentin <edubezval@gmail.com>
17189 L:      linux-media@vger.kernel.org
17190 S:      Odd Fixes
17191 W:      https://linuxtv.org
17192 T:      git git://linuxtv.org/media_tree.git
17193 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17194
17195 SI4713 FM RADIO TRANSMITTER USB DRIVER
17196 M:      Hans Verkuil <hverkuil@xs4all.nl>
17197 L:      linux-media@vger.kernel.org
17198 S:      Maintained
17199 W:      https://linuxtv.org
17200 T:      git git://linuxtv.org/media_tree.git
17201 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17202
17203 SIANO DVB DRIVER
17204 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17205 L:      linux-media@vger.kernel.org
17206 S:      Odd fixes
17207 W:      https://linuxtv.org
17208 T:      git git://linuxtv.org/media_tree.git
17209 F:      drivers/media/common/siano/
17210 F:      drivers/media/mmc/siano/
17211 F:      drivers/media/usb/siano/
17212 F:      drivers/media/usb/siano/
17213
17214 SIFIVE DRIVERS
17215 M:      Palmer Dabbelt <palmer@dabbelt.com>
17216 M:      Paul Walmsley <paul.walmsley@sifive.com>
17217 L:      linux-riscv@lists.infradead.org
17218 S:      Supported
17219 T:      git git://github.com/sifive/riscv-linux.git
17220 N:      sifive
17221 K:      [^@]sifive
17222
17223 SIFIVE FU540 SYSTEM-ON-CHIP
17224 M:      Paul Walmsley <paul.walmsley@sifive.com>
17225 M:      Palmer Dabbelt <palmer@dabbelt.com>
17226 L:      linux-riscv@lists.infradead.org
17227 S:      Supported
17228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17229 N:      fu540
17230 K:      fu540
17231
17232 SIFIVE PDMA DRIVER
17233 M:      Green Wan <green.wan@sifive.com>
17234 S:      Maintained
17235 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17236 F:      drivers/dma/sf-pdma/
17237
17238 SILEAD TOUCHSCREEN DRIVER
17239 M:      Hans de Goede <hdegoede@redhat.com>
17240 L:      linux-input@vger.kernel.org
17241 L:      platform-driver-x86@vger.kernel.org
17242 S:      Maintained
17243 F:      drivers/input/touchscreen/silead.c
17244 F:      drivers/platform/x86/touchscreen_dmi.c
17245
17246 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17247 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17248 S:      Supported
17249 F:      drivers/staging/wfx/
17250
17251 SILICON MOTION SM712 FRAME BUFFER DRIVER
17252 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17253 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17254 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17255 L:      linux-fbdev@vger.kernel.org
17256 S:      Maintained
17257 F:      Documentation/fb/sm712fb.rst
17258 F:      drivers/video/fbdev/sm712*
17259
17260 SILVACO I3C DUAL-ROLE MASTER
17261 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17262 M:      Conor Culhane <conor.culhane@silvaco.com>
17263 L:      linux-i3c@lists.infradead.org
17264 S:      Maintained
17265 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17266 F:      drivers/i3c/master/svc-i3c-master.c
17267
17268 SIMPLEFB FB DRIVER
17269 M:      Hans de Goede <hdegoede@redhat.com>
17270 L:      linux-fbdev@vger.kernel.org
17271 S:      Maintained
17272 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17273 F:      drivers/video/fbdev/simplefb.c
17274 F:      include/linux/platform_data/simplefb.h
17275
17276 SIMTEC EB110ATX (Chalice CATS)
17277 M:      Simtec Linux Team <linux@simtec.co.uk>
17278 S:      Supported
17279 W:      http://www.simtec.co.uk/products/EB110ATX/
17280
17281 SIMTEC EB2410ITX (BAST)
17282 M:      Simtec Linux Team <linux@simtec.co.uk>
17283 S:      Supported
17284 W:      http://www.simtec.co.uk/products/EB2410ITX/
17285 F:      arch/arm/mach-s3c/bast-ide.c
17286 F:      arch/arm/mach-s3c/bast-irq.c
17287 F:      arch/arm/mach-s3c/mach-bast.c
17288
17289 SIOX
17290 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17291 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17292 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17293 S:      Supported
17294 F:      drivers/gpio/gpio-siox.c
17295 F:      drivers/siox/*
17296 F:      include/trace/events/siox.h
17297
17298 SIPHASH PRF ROUTINES
17299 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17300 S:      Maintained
17301 F:      include/linux/siphash.h
17302 F:      lib/siphash.c
17303 F:      lib/test_siphash.c
17304
17305 SIS 190 ETHERNET DRIVER
17306 M:      Francois Romieu <romieu@fr.zoreil.com>
17307 L:      netdev@vger.kernel.org
17308 S:      Maintained
17309 F:      drivers/net/ethernet/sis/sis190.c
17310
17311 SIS 900/7016 FAST ETHERNET DRIVER
17312 M:      Daniele Venzano <venza@brownhat.org>
17313 L:      netdev@vger.kernel.org
17314 S:      Maintained
17315 W:      http://www.brownhat.org/sis900.html
17316 F:      drivers/net/ethernet/sis/sis900.*
17317
17318 SIS FRAMEBUFFER DRIVER
17319 M:      Thomas Winischhofer <thomas@winischhofer.net>
17320 S:      Maintained
17321 W:      http://www.winischhofer.net/linuxsisvga.shtml
17322 F:      Documentation/fb/sisfb.rst
17323 F:      drivers/video/fbdev/sis/
17324 F:      include/video/sisfb.h
17325
17326 SIS I2C TOUCHSCREEN DRIVER
17327 M:      Mika Penttilä <mika.penttila@nextfour.com>
17328 L:      linux-input@vger.kernel.org
17329 S:      Maintained
17330 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17331 F:      drivers/input/touchscreen/sis_i2c.c
17332
17333 SIS USB2VGA DRIVER
17334 M:      Thomas Winischhofer <thomas@winischhofer.net>
17335 S:      Maintained
17336 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17337 F:      drivers/usb/misc/sisusbvga/
17338
17339 SLAB ALLOCATOR
17340 M:      Christoph Lameter <cl@linux.com>
17341 M:      Pekka Enberg <penberg@kernel.org>
17342 M:      David Rientjes <rientjes@google.com>
17343 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17344 M:      Andrew Morton <akpm@linux-foundation.org>
17345 M:      Vlastimil Babka <vbabka@suse.cz>
17346 L:      linux-mm@kvack.org
17347 S:      Maintained
17348 F:      include/linux/sl?b*.h
17349 F:      mm/sl?b*
17350
17351 SLEEPABLE READ-COPY UPDATE (SRCU)
17352 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17353 M:      "Paul E. McKenney" <paulmck@kernel.org>
17354 M:      Josh Triplett <josh@joshtriplett.org>
17355 R:      Steven Rostedt <rostedt@goodmis.org>
17356 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17357 L:      rcu@vger.kernel.org
17358 S:      Supported
17359 W:      http://www.rdrop.com/users/paulmck/RCU/
17360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17361 F:      include/linux/srcu*.h
17362 F:      kernel/rcu/srcu*.c
17363
17364 SMACK SECURITY MODULE
17365 M:      Casey Schaufler <casey@schaufler-ca.com>
17366 L:      linux-security-module@vger.kernel.org
17367 S:      Maintained
17368 W:      http://schaufler-ca.com
17369 T:      git git://github.com/cschaufler/smack-next
17370 F:      Documentation/admin-guide/LSM/Smack.rst
17371 F:      security/smack/
17372
17373 SMC91x ETHERNET DRIVER
17374 M:      Nicolas Pitre <nico@fluxnic.net>
17375 S:      Odd Fixes
17376 F:      drivers/net/ethernet/smsc/smc91x.*
17377
17378 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17379 M:      Mark Rutland <mark.rutland@arm.com>
17380 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17381 M:      Sudeep Holla <sudeep.holla@arm.com>
17382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17383 S:      Maintained
17384 F:      drivers/firmware/smccc/
17385 F:      include/linux/arm-smccc.h
17386
17387 SMM665 HARDWARE MONITOR DRIVER
17388 M:      Guenter Roeck <linux@roeck-us.net>
17389 L:      linux-hwmon@vger.kernel.org
17390 S:      Maintained
17391 F:      Documentation/hwmon/smm665.rst
17392 F:      drivers/hwmon/smm665.c
17393
17394 SMSC EMC2103 HARDWARE MONITOR DRIVER
17395 M:      Steve Glendinning <steve.glendinning@shawell.net>
17396 L:      linux-hwmon@vger.kernel.org
17397 S:      Maintained
17398 F:      Documentation/hwmon/emc2103.rst
17399 F:      drivers/hwmon/emc2103.c
17400
17401 SMSC SCH5627 HARDWARE MONITOR DRIVER
17402 M:      Hans de Goede <hdegoede@redhat.com>
17403 L:      linux-hwmon@vger.kernel.org
17404 S:      Supported
17405 F:      Documentation/hwmon/sch5627.rst
17406 F:      drivers/hwmon/sch5627.c
17407
17408 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17409 M:      Steve Glendinning <steve.glendinning@shawell.net>
17410 L:      linux-fbdev@vger.kernel.org
17411 S:      Maintained
17412 F:      drivers/video/fbdev/smscufx.c
17413
17414 SMSC47B397 HARDWARE MONITOR DRIVER
17415 M:      Jean Delvare <jdelvare@suse.com>
17416 L:      linux-hwmon@vger.kernel.org
17417 S:      Maintained
17418 F:      Documentation/hwmon/smsc47b397.rst
17419 F:      drivers/hwmon/smsc47b397.c
17420
17421 SMSC911x ETHERNET DRIVER
17422 M:      Steve Glendinning <steve.glendinning@shawell.net>
17423 L:      netdev@vger.kernel.org
17424 S:      Maintained
17425 F:      drivers/net/ethernet/smsc/smsc911x.*
17426 F:      include/linux/smsc911x.h
17427
17428 SMSC9420 PCI ETHERNET DRIVER
17429 M:      Steve Glendinning <steve.glendinning@shawell.net>
17430 L:      netdev@vger.kernel.org
17431 S:      Maintained
17432 F:      drivers/net/ethernet/smsc/smsc9420.*
17433
17434 SOCIONEXT (SNI) AVE NETWORK DRIVER
17435 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17436 L:      netdev@vger.kernel.org
17437 S:      Maintained
17438 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17439 F:      drivers/net/ethernet/socionext/sni_ave.c
17440
17441 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17442 M:      Jassi Brar <jaswinder.singh@linaro.org>
17443 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17444 L:      netdev@vger.kernel.org
17445 S:      Maintained
17446 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17447 F:      drivers/net/ethernet/socionext/netsec.c
17448
17449 SOCIONEXT (SNI) Synquacer SPI DRIVER
17450 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17451 M:      Jassi Brar <jaswinder.singh@linaro.org>
17452 L:      linux-spi@vger.kernel.org
17453 S:      Maintained
17454 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17455 F:      drivers/spi/spi-synquacer.c
17456
17457 SOCIONEXT SYNQUACER I2C DRIVER
17458 M:      Ard Biesheuvel <ardb@kernel.org>
17459 L:      linux-i2c@vger.kernel.org
17460 S:      Maintained
17461 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17462 F:      drivers/i2c/busses/i2c-synquacer.c
17463
17464 SOCIONEXT UNIPHIER SOUND DRIVER
17465 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17466 S:      Orphan
17467 F:      sound/soc/uniphier/
17468
17469 SOEKRIS NET48XX LED SUPPORT
17470 M:      Chris Boot <bootc@bootc.net>
17471 S:      Maintained
17472 F:      drivers/leds/leds-net48xx.c
17473
17474 SOFT-IWARP DRIVER (siw)
17475 M:      Bernard Metzler <bmt@zurich.ibm.com>
17476 L:      linux-rdma@vger.kernel.org
17477 S:      Supported
17478 F:      drivers/infiniband/sw/siw/
17479 F:      include/uapi/rdma/siw-abi.h
17480
17481 SOFT-ROCE DRIVER (rxe)
17482 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17483 L:      linux-rdma@vger.kernel.org
17484 S:      Supported
17485 F:      drivers/infiniband/sw/rxe/
17486 F:      include/uapi/rdma/rdma_user_rxe.h
17487
17488 SOFTLOGIC 6x10 MPEG CODEC
17489 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17490 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17491 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17492 M:      Ismael Luceno <ismael@iodev.co.uk>
17493 L:      linux-media@vger.kernel.org
17494 S:      Supported
17495 F:      drivers/media/pci/solo6x10/
17496
17497 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17498 M:      James Morse <james.morse@arm.com>
17499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17500 S:      Maintained
17501 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17502 F:      drivers/firmware/arm_sdei.c
17503 F:      include/linux/arm_sdei.h
17504 F:      include/uapi/linux/arm_sdei.h
17505
17506 SOFTWARE NODES
17507 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17508 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17509 L:      linux-acpi@vger.kernel.org
17510 S:      Maintained
17511 F:      drivers/base/swnode.c
17512
17513 SOFTWARE RAID (Multiple Disks) SUPPORT
17514 M:      Song Liu <song@kernel.org>
17515 L:      linux-raid@vger.kernel.org
17516 S:      Supported
17517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17518 F:      drivers/md/Kconfig
17519 F:      drivers/md/Makefile
17520 F:      drivers/md/md*
17521 F:      drivers/md/raid*
17522 F:      include/linux/raid/
17523 F:      include/uapi/linux/raid/
17524
17525 SOLIDRUN CLEARFOG SUPPORT
17526 M:      Russell King <linux@armlinux.org.uk>
17527 S:      Maintained
17528 F:      arch/arm/boot/dts/armada-388-clearfog*
17529 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17530
17531 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17532 M:      Russell King <linux@armlinux.org.uk>
17533 S:      Maintained
17534 F:      arch/arm/boot/dts/imx6*-cubox-i*
17535 F:      arch/arm/boot/dts/imx6*-hummingboard*
17536 F:      arch/arm/boot/dts/imx6*-sr-*
17537
17538 SONIC NETWORK DRIVER
17539 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17540 L:      netdev@vger.kernel.org
17541 S:      Maintained
17542 F:      drivers/net/ethernet/natsemi/sonic.*
17543
17544 SONICS SILICON BACKPLANE DRIVER (SSB)
17545 M:      Michael Buesch <m@bues.ch>
17546 L:      linux-wireless@vger.kernel.org
17547 S:      Maintained
17548 F:      drivers/ssb/
17549 F:      include/linux/ssb/
17550
17551 SONY IMX208 SENSOR DRIVER
17552 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17553 L:      linux-media@vger.kernel.org
17554 S:      Maintained
17555 T:      git git://linuxtv.org/media_tree.git
17556 F:      drivers/media/i2c/imx208.c
17557
17558 SONY IMX214 SENSOR DRIVER
17559 M:      Ricardo Ribalda <ribalda@kernel.org>
17560 L:      linux-media@vger.kernel.org
17561 S:      Maintained
17562 T:      git git://linuxtv.org/media_tree.git
17563 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17564 F:      drivers/media/i2c/imx214.c
17565
17566 SONY IMX219 SENSOR DRIVER
17567 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17568 L:      linux-media@vger.kernel.org
17569 S:      Maintained
17570 T:      git git://linuxtv.org/media_tree.git
17571 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17572 F:      drivers/media/i2c/imx219.c
17573
17574 SONY IMX258 SENSOR DRIVER
17575 M:      Sakari Ailus <sakari.ailus@linux.intel.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/imx258.yaml
17580 F:      drivers/media/i2c/imx258.c
17581
17582 SONY IMX274 SENSOR DRIVER
17583 M:      Leon Luo <leonl@leopardimaging.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/sony,imx274.yaml
17588 F:      drivers/media/i2c/imx274.c
17589
17590 SONY IMX290 SENSOR DRIVER
17591 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17592 L:      linux-media@vger.kernel.org
17593 S:      Maintained
17594 T:      git git://linuxtv.org/media_tree.git
17595 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17596 F:      drivers/media/i2c/imx290.c
17597
17598 SONY IMX319 SENSOR DRIVER
17599 M:      Bingbu Cao <bingbu.cao@intel.com>
17600 L:      linux-media@vger.kernel.org
17601 S:      Maintained
17602 T:      git git://linuxtv.org/media_tree.git
17603 F:      drivers/media/i2c/imx319.c
17604
17605 SONY IMX334 SENSOR DRIVER
17606 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17607 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17608 L:      linux-media@vger.kernel.org
17609 S:      Maintained
17610 T:      git git://linuxtv.org/media_tree.git
17611 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17612 F:      drivers/media/i2c/imx334.c
17613
17614 SONY IMX335 SENSOR DRIVER
17615 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17616 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17617 L:      linux-media@vger.kernel.org
17618 S:      Maintained
17619 T:      git git://linuxtv.org/media_tree.git
17620 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17621 F:      drivers/media/i2c/imx335.c
17622
17623 SONY IMX355 SENSOR DRIVER
17624 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17625 L:      linux-media@vger.kernel.org
17626 S:      Maintained
17627 T:      git git://linuxtv.org/media_tree.git
17628 F:      drivers/media/i2c/imx355.c
17629
17630 SONY IMX412 SENSOR DRIVER
17631 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17632 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17633 L:      linux-media@vger.kernel.org
17634 S:      Maintained
17635 T:      git git://linuxtv.org/media_tree.git
17636 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17637 F:      drivers/media/i2c/imx412.c
17638
17639 SONY MEMORYSTICK SUBSYSTEM
17640 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17641 M:      Alex Dubov <oakad@yahoo.com>
17642 M:      Ulf Hansson <ulf.hansson@linaro.org>
17643 L:      linux-mmc@vger.kernel.org
17644 S:      Maintained
17645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17646 F:      drivers/memstick/
17647 F:      include/linux/memstick.h
17648
17649 SONY VAIO CONTROL DEVICE DRIVER
17650 M:      Mattia Dongili <malattia@linux.it>
17651 L:      platform-driver-x86@vger.kernel.org
17652 S:      Maintained
17653 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17654 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17655 F:      drivers/char/sonypi.c
17656 F:      drivers/platform/x86/sony-laptop.c
17657 F:      include/linux/sony-laptop.h
17658
17659 SOUND
17660 M:      Jaroslav Kysela <perex@perex.cz>
17661 M:      Takashi Iwai <tiwai@suse.com>
17662 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17663 S:      Maintained
17664 W:      http://www.alsa-project.org/
17665 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17667 F:      Documentation/sound/
17668 F:      include/sound/
17669 F:      include/uapi/sound/
17670 F:      sound/
17671
17672 SOUND - COMPRESSED AUDIO
17673 M:      Vinod Koul <vkoul@kernel.org>
17674 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17675 S:      Supported
17676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17677 F:      Documentation/sound/designs/compress-offload.rst
17678 F:      include/sound/compress_driver.h
17679 F:      include/uapi/sound/compress_*
17680 F:      sound/core/compress_offload.c
17681 F:      sound/soc/soc-compress.c
17682
17683 SOUND - DMAENGINE HELPERS
17684 M:      Lars-Peter Clausen <lars@metafoo.de>
17685 S:      Supported
17686 F:      include/sound/dmaengine_pcm.h
17687 F:      sound/core/pcm_dmaengine.c
17688 F:      sound/soc/soc-generic-dmaengine-pcm.c
17689
17690 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17691 M:      Liam Girdwood <lgirdwood@gmail.com>
17692 M:      Mark Brown <broonie@kernel.org>
17693 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17694 S:      Supported
17695 W:      http://alsa-project.org/main/index.php/ASoC
17696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17697 F:      Documentation/devicetree/bindings/sound/
17698 F:      Documentation/sound/soc/
17699 F:      include/dt-bindings/sound/
17700 F:      include/sound/soc*
17701 F:      sound/soc/
17702
17703 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17704 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17705 M:      Liam Girdwood <lgirdwood@gmail.com>
17706 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17707 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17708 M:      Daniel Baluta <daniel.baluta@nxp.com>
17709 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17710 S:      Supported
17711 W:      https://github.com/thesofproject/linux/
17712 F:      sound/soc/sof/
17713
17714 SOUNDWIRE SUBSYSTEM
17715 M:      Vinod Koul <vkoul@kernel.org>
17716 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17717 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17718 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17719 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17720 S:      Supported
17721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17722 F:      Documentation/driver-api/soundwire/
17723 F:      drivers/soundwire/
17724 F:      include/linux/soundwire/
17725
17726 SP2 MEDIA DRIVER
17727 M:      Olli Salonen <olli.salonen@iki.fi>
17728 L:      linux-media@vger.kernel.org
17729 S:      Maintained
17730 W:      https://linuxtv.org
17731 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17732 F:      drivers/media/dvb-frontends/sp2*
17733
17734 SPARC + UltraSPARC (sparc/sparc64)
17735 M:      "David S. Miller" <davem@davemloft.net>
17736 L:      sparclinux@vger.kernel.org
17737 S:      Maintained
17738 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17741 F:      arch/sparc/
17742 F:      drivers/sbus/
17743
17744 SPARC SERIAL DRIVERS
17745 M:      "David S. Miller" <davem@davemloft.net>
17746 L:      sparclinux@vger.kernel.org
17747 S:      Maintained
17748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17750 F:      drivers/tty/serial/suncore.c
17751 F:      drivers/tty/serial/sunhv.c
17752 F:      drivers/tty/serial/sunsab.c
17753 F:      drivers/tty/serial/sunsab.h
17754 F:      drivers/tty/serial/sunsu.c
17755 F:      drivers/tty/serial/sunzilog.c
17756 F:      drivers/tty/serial/sunzilog.h
17757 F:      drivers/tty/vcc.c
17758 F:      include/linux/sunserialcore.h
17759
17760 SPARSE CHECKER
17761 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17762 L:      linux-sparse@vger.kernel.org
17763 S:      Maintained
17764 W:      https://sparse.docs.kernel.org/
17765 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17766 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17767 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17768 F:      include/linux/compiler.h
17769
17770 SPEAKUP CONSOLE SPEECH DRIVER
17771 M:      William Hubbs <w.d.hubbs@gmail.com>
17772 M:      Chris Brannon <chris@the-brannons.com>
17773 M:      Kirk Reiser <kirk@reisers.ca>
17774 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17775 L:      speakup@linux-speakup.org
17776 S:      Odd Fixes
17777 W:      http://www.linux-speakup.org/
17778 W:      https://github.com/linux-speakup/speakup
17779 B:      https://github.com/linux-speakup/speakup/issues
17780 F:      drivers/accessibility/speakup/
17781
17782 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
17783 M:      Viresh Kumar <vireshk@kernel.org>
17784 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17785 M:      soc@kernel.org
17786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17787 S:      Maintained
17788 W:      http://www.st.com/spear
17789 F:      arch/arm/boot/dts/spear*
17790 F:      arch/arm/mach-spear/
17791 F:      drivers/clk/spear/
17792 F:      drivers/pinctrl/spear/
17793
17794 SPI NOR SUBSYSTEM
17795 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17796 R:      Michael Walle <michael@walle.cc>
17797 R:      Pratyush Yadav <p.yadav@ti.com>
17798 L:      linux-mtd@lists.infradead.org
17799 S:      Maintained
17800 W:      http://www.linux-mtd.infradead.org/
17801 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17802 C:      irc://irc.oftc.net/mtd
17803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17804 F:      drivers/mtd/spi-nor/
17805 F:      include/linux/mtd/spi-nor.h
17806
17807 SPI SUBSYSTEM
17808 M:      Mark Brown <broonie@kernel.org>
17809 L:      linux-spi@vger.kernel.org
17810 S:      Maintained
17811 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17813 F:      Documentation/devicetree/bindings/spi/
17814 F:      Documentation/spi/
17815 F:      drivers/spi/
17816 F:      include/linux/spi/
17817 F:      include/uapi/linux/spi/
17818 F:      tools/spi/
17819
17820 SPIDERNET NETWORK DRIVER for CELL
17821 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17822 M:      Geoff Levand <geoff@infradead.org>
17823 L:      netdev@vger.kernel.org
17824 L:      linuxppc-dev@lists.ozlabs.org
17825 S:      Maintained
17826 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17827 F:      drivers/net/ethernet/toshiba/spider_net*
17828
17829 SPMI SUBSYSTEM
17830 M:      Stephen Boyd <sboyd@kernel.org>
17831 L:      linux-kernel@vger.kernel.org
17832 S:      Maintained
17833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17834 F:      Documentation/devicetree/bindings/spmi/
17835 F:      drivers/spmi/
17836 F:      include/dt-bindings/spmi/spmi.h
17837 F:      include/linux/spmi.h
17838 F:      include/trace/events/spmi.h
17839
17840 SPU FILE SYSTEM
17841 M:      Jeremy Kerr <jk@ozlabs.org>
17842 L:      linuxppc-dev@lists.ozlabs.org
17843 S:      Supported
17844 W:      http://www.ibm.com/developerworks/power/cell/
17845 F:      Documentation/filesystems/spufs/spufs.rst
17846 F:      arch/powerpc/platforms/cell/spufs/
17847
17848 SQUASHFS FILE SYSTEM
17849 M:      Phillip Lougher <phillip@squashfs.org.uk>
17850 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17851 S:      Maintained
17852 W:      http://squashfs.org.uk
17853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17854 F:      Documentation/filesystems/squashfs.rst
17855 F:      fs/squashfs/
17856
17857 SRM (Alpha) environment access
17858 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17859 S:      Maintained
17860 F:      arch/alpha/kernel/srm_env.c
17861
17862 ST LSM6DSx IMU IIO DRIVER
17863 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17864 L:      linux-iio@vger.kernel.org
17865 S:      Maintained
17866 W:      http://www.st.com/
17867 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17868 F:      drivers/iio/imu/st_lsm6dsx/
17869
17870 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17871 M:      Mickael Guene <mickael.guene@st.com>
17872 L:      linux-media@vger.kernel.org
17873 S:      Maintained
17874 T:      git git://linuxtv.org/media_tree.git
17875 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17876 F:      drivers/media/i2c/st-mipid02.c
17877
17878 ST STM32 I2C/SMBUS DRIVER
17879 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17880 M:      Alain Volmat <alain.volmat@foss.st.com>
17881 L:      linux-i2c@vger.kernel.org
17882 S:      Maintained
17883 F:      drivers/i2c/busses/i2c-stm32*
17884
17885 ST STM32 SPI DRIVER
17886 M:      Alain Volmat <alain.volmat@foss.st.com>
17887 L:      linux-spi@vger.kernel.org
17888 S:      Maintained
17889 F:      drivers/spi/spi-stm32.c
17890
17891 ST STPDDC60 DRIVER
17892 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17893 L:      linux-hwmon@vger.kernel.org
17894 S:      Maintained
17895 F:      Documentation/hwmon/stpddc60.rst
17896 F:      drivers/hwmon/pmbus/stpddc60.c
17897
17898 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17899 M:      Song Qiang <songqiang1304521@gmail.com>
17900 L:      linux-iio@vger.kernel.org
17901 S:      Maintained
17902 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17903 F:      drivers/iio/proximity/vl53l0x-i2c.c
17904
17905 STABLE BRANCH
17906 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17907 M:      Sasha Levin <sashal@kernel.org>
17908 L:      stable@vger.kernel.org
17909 S:      Supported
17910 F:      Documentation/process/stable-kernel-rules.rst
17911
17912 STAGING - ATOMISP DRIVER
17913 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17914 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17915 L:      linux-media@vger.kernel.org
17916 S:      Maintained
17917 F:      drivers/staging/media/atomisp/
17918
17919 STAGING - FIELDBUS SUBSYSTEM
17920 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17921 S:      Maintained
17922 F:      drivers/staging/fieldbus/*
17923 F:      drivers/staging/fieldbus/Documentation/
17924
17925 STAGING - HMS ANYBUS-S BUS
17926 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17927 S:      Maintained
17928 F:      drivers/staging/fieldbus/anybuss/
17929
17930 STAGING - INDUSTRIAL IO
17931 M:      Jonathan Cameron <jic23@kernel.org>
17932 L:      linux-iio@vger.kernel.org
17933 S:      Odd Fixes
17934 F:      Documentation/devicetree/bindings/staging/iio/
17935 F:      drivers/staging/iio/
17936
17937 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17938 M:      Marc Dietrich <marvin24@gmx.de>
17939 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17940 L:      linux-tegra@vger.kernel.org
17941 S:      Maintained
17942 F:      drivers/staging/nvec/
17943
17944 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17945 M:      Jens Frederich <jfrederich@gmail.com>
17946 M:      Jon Nettleton <jon.nettleton@gmail.com>
17947 S:      Maintained
17948 W:      http://wiki.laptop.org/go/DCON
17949 F:      drivers/staging/olpc_dcon/
17950
17951 STAGING - REALTEK RTL8188EU DRIVERS
17952 M:      Larry Finger <Larry.Finger@lwfinger.net>
17953 M:      Phillip Potter <phil@philpotter.co.uk>
17954 S:      Supported
17955 F:      drivers/staging/r8188eu/
17956
17957 STAGING - REALTEK RTL8712U DRIVERS
17958 M:      Larry Finger <Larry.Finger@lwfinger.net>
17959 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17960 S:      Odd Fixes
17961 F:      drivers/staging/rtl8712/
17962
17963 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17964 M:      Michael Hennerich <michael.hennerich@analog.com>
17965 L:      linux-fbdev@vger.kernel.org
17966 S:      Supported
17967 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17968 F:      drivers/staging/fbtft/fb_seps525.c
17969
17970 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17971 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17972 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17973 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17974 L:      linux-fbdev@vger.kernel.org
17975 S:      Maintained
17976 F:      drivers/staging/sm750fb/
17977
17978 STAGING - VIA VT665X DRIVERS
17979 M:      Forest Bond <forest@alittletooquiet.net>
17980 S:      Odd Fixes
17981 F:      drivers/staging/vt665?/
17982
17983 STAGING SUBSYSTEM
17984 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17985 L:      linux-staging@lists.linux.dev
17986 S:      Supported
17987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17988 F:      drivers/staging/
17989
17990 STARFIRE/DURALAN NETWORK DRIVER
17991 M:      Ion Badulescu <ionut@badula.org>
17992 S:      Odd Fixes
17993 F:      drivers/net/ethernet/adaptec/starfire*
17994
17995 STATIC BRANCH/CALL
17996 M:      Peter Zijlstra <peterz@infradead.org>
17997 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17998 M:      Jason Baron <jbaron@akamai.com>
17999 R:      Steven Rostedt <rostedt@goodmis.org>
18000 R:      Ard Biesheuvel <ardb@kernel.org>
18001 S:      Supported
18002 F:      arch/*/include/asm/jump_label*.h
18003 F:      arch/*/include/asm/static_call*.h
18004 F:      arch/*/kernel/jump_label.c
18005 F:      arch/*/kernel/static_call.c
18006 F:      include/linux/jump_label*.h
18007 F:      include/linux/static_call*.h
18008 F:      kernel/jump_label.c
18009 F:      kernel/static_call.c
18010
18011 STI AUDIO (ASoC) DRIVERS
18012 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18013 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18014 S:      Maintained
18015 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18016 F:      sound/soc/sti/
18017
18018 STI CEC DRIVER
18019 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
18020 S:      Maintained
18021 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18022 F:      drivers/media/cec/platform/sti/
18023
18024 STK1160 USB VIDEO CAPTURE DRIVER
18025 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18026 L:      linux-media@vger.kernel.org
18027 S:      Maintained
18028 T:      git git://linuxtv.org/media_tree.git
18029 F:      drivers/media/usb/stk1160/
18030
18031 STM32 AUDIO (ASoC) DRIVERS
18032 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18033 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18034 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18035 S:      Maintained
18036 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18037 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18038 F:      sound/soc/stm/
18039
18040 STM32 TIMER/LPTIMER DRIVERS
18041 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18042 S:      Maintained
18043 F:      Documentation/ABI/testing/*timer-stm32
18044 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18045 F:      drivers/*/stm32-*timer*
18046 F:      drivers/pwm/pwm-stm32*
18047 F:      include/linux/*/stm32-*tim*
18048
18049 STMMAC ETHERNET DRIVER
18050 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18051 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18052 M:      Jose Abreu <joabreu@synopsys.com>
18053 L:      netdev@vger.kernel.org
18054 S:      Supported
18055 W:      http://www.stlinux.com
18056 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18057 F:      drivers/net/ethernet/stmicro/stmmac/
18058
18059 SUN3/3X
18060 M:      Sam Creasey <sammy@sammy.net>
18061 S:      Maintained
18062 W:      http://sammy.net/sun3/
18063 F:      arch/m68k/include/asm/sun3*
18064 F:      arch/m68k/kernel/*sun3*
18065 F:      arch/m68k/sun3*/
18066 F:      drivers/net/ethernet/i825xx/sun3*
18067
18068 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18069 M:      Hans de Goede <hdegoede@redhat.com>
18070 L:      linux-input@vger.kernel.org
18071 S:      Maintained
18072 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18073 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18074
18075 SUNDANCE NETWORK DRIVER
18076 M:      Denis Kirjanov <kda@linux-powerpc.org>
18077 L:      netdev@vger.kernel.org
18078 S:      Maintained
18079 F:      drivers/net/ethernet/dlink/sundance.c
18080
18081 SUPERH
18082 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18083 M:      Rich Felker <dalias@libc.org>
18084 L:      linux-sh@vger.kernel.org
18085 S:      Maintained
18086 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18087 F:      Documentation/sh/
18088 F:      arch/sh/
18089 F:      drivers/sh/
18090
18091 SUSPEND TO RAM
18092 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18093 M:      Len Brown <len.brown@intel.com>
18094 M:      Pavel Machek <pavel@ucw.cz>
18095 L:      linux-pm@vger.kernel.org
18096 S:      Supported
18097 B:      https://bugzilla.kernel.org
18098 F:      Documentation/power/
18099 F:      arch/x86/kernel/acpi/
18100 F:      drivers/base/power/
18101 F:      include/linux/freezer.h
18102 F:      include/linux/pm.h
18103 F:      include/linux/suspend.h
18104 F:      kernel/power/
18105
18106 SVGA HANDLING
18107 M:      Martin Mares <mj@ucw.cz>
18108 L:      linux-video@atrey.karlin.mff.cuni.cz
18109 S:      Maintained
18110 F:      Documentation/admin-guide/svga.rst
18111 F:      arch/x86/boot/video*
18112
18113 SWIOTLB SUBSYSTEM
18114 M:      Christoph Hellwig <hch@infradead.org>
18115 L:      iommu@lists.linux-foundation.org
18116 S:      Supported
18117 W:      http://git.infradead.org/users/hch/dma-mapping.git
18118 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18119 F:      arch/*/kernel/pci-swiotlb.c
18120 F:      include/linux/swiotlb.h
18121 F:      kernel/dma/swiotlb.c
18122
18123 SWITCHDEV
18124 M:      Jiri Pirko <jiri@resnulli.us>
18125 M:      Ivan Vecera <ivecera@redhat.com>
18126 L:      netdev@vger.kernel.org
18127 S:      Supported
18128 F:      include/net/switchdev.h
18129 F:      net/switchdev/
18130
18131 SY8106A REGULATOR DRIVER
18132 M:      Icenowy Zheng <icenowy@aosc.io>
18133 S:      Maintained
18134 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18135 F:      drivers/regulator/sy8106a-regulator.c
18136
18137 SYNC FILE FRAMEWORK
18138 M:      Sumit Semwal <sumit.semwal@linaro.org>
18139 R:      Gustavo Padovan <gustavo@padovan.org>
18140 L:      linux-media@vger.kernel.org
18141 L:      dri-devel@lists.freedesktop.org
18142 S:      Maintained
18143 T:      git git://anongit.freedesktop.org/drm/drm-misc
18144 F:      Documentation/driver-api/sync_file.rst
18145 F:      drivers/dma-buf/dma-fence*
18146 F:      drivers/dma-buf/sw_sync.c
18147 F:      drivers/dma-buf/sync_*
18148 F:      include/linux/sync_file.h
18149 F:      include/uapi/linux/sync_file.h
18150
18151 SYNOPSYS ARC ARCHITECTURE
18152 M:      Vineet Gupta <vgupta@kernel.org>
18153 L:      linux-snps-arc@lists.infradead.org
18154 S:      Supported
18155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18156 F:      Documentation/devicetree/bindings/arc/*
18157 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18158 F:      arch/arc/
18159 F:      drivers/clocksource/arc_timer.c
18160 F:      drivers/tty/serial/arc_uart.c
18161
18162 SYNOPSYS ARC HSDK SDP pll clock driver
18163 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18164 S:      Supported
18165 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18166 F:      drivers/clk/clk-hsdk-pll.c
18167
18168 SYNOPSYS ARC SDP clock driver
18169 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18170 S:      Supported
18171 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18172 F:      drivers/clk/axs10x/*
18173
18174 SYNOPSYS ARC SDP platform support
18175 M:      Alexey Brodkin <abrodkin@synopsys.com>
18176 S:      Supported
18177 F:      Documentation/devicetree/bindings/arc/axs10*
18178 F:      arch/arc/boot/dts/ax*
18179 F:      arch/arc/plat-axs10x
18180
18181 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18182 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18183 S:      Supported
18184 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18185 F:      drivers/reset/reset-axs10x.c
18186
18187 SYNOPSYS CREG GPIO DRIVER
18188 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18189 S:      Maintained
18190 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18191 F:      drivers/gpio/gpio-creg-snps.c
18192
18193 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18194 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18195 S:      Maintained
18196 F:      drivers/tty/serial/8250/8250_dw.c
18197 F:      drivers/tty/serial/8250/8250_dwlib.*
18198 F:      drivers/tty/serial/8250/8250_lpss.c
18199
18200 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18201 M:      Hoan Tran <hoan@os.amperecomputing.com>
18202 M:      Serge Semin <fancer.lancer@gmail.com>
18203 L:      linux-gpio@vger.kernel.org
18204 S:      Maintained
18205 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18206 F:      drivers/gpio/gpio-dwapb.c
18207
18208 SYNOPSYS DESIGNWARE APB SSI DRIVER
18209 M:      Serge Semin <fancer.lancer@gmail.com>
18210 L:      linux-spi@vger.kernel.org
18211 S:      Supported
18212 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18213 F:      drivers/spi/spi-dw*
18214
18215 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18216 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18217 S:      Maintained
18218 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18219 F:      drivers/dma/dw-axi-dmac/
18220
18221 SYNOPSYS DESIGNWARE DMAC DRIVER
18222 M:      Viresh Kumar <vireshk@kernel.org>
18223 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18224 S:      Maintained
18225 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18226 F:      drivers/dma/dw/
18227 F:      include/dt-bindings/dma/dw-dmac.h
18228 F:      include/linux/dma/dw.h
18229 F:      include/linux/platform_data/dma-dw.h
18230
18231 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18232 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18233 L:      netdev@vger.kernel.org
18234 S:      Supported
18235 F:      drivers/net/ethernet/synopsys/
18236
18237 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18238 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18239 L:      netdev@vger.kernel.org
18240 S:      Supported
18241 F:      drivers/net/pcs/pcs-xpcs.c
18242 F:      drivers/net/pcs/pcs-xpcs.h
18243 F:      include/linux/pcs/pcs-xpcs.h
18244
18245 SYNOPSYS DESIGNWARE I2C DRIVER
18246 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18247 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18248 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18249 L:      linux-i2c@vger.kernel.org
18250 S:      Maintained
18251 F:      drivers/i2c/busses/i2c-designware-*
18252
18253 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18254 M:      Jaehoon Chung <jh80.chung@samsung.com>
18255 L:      linux-mmc@vger.kernel.org
18256 S:      Maintained
18257 F:      drivers/mmc/host/dw_mmc*
18258
18259 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18260 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18261 S:      Supported
18262 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18263 F:      drivers/reset/reset-hsdk.c
18264 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18265
18266 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18267 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18268 M:      Manjunath M B <manjumb@synopsys.com>
18269 L:      linux-mmc@vger.kernel.org
18270 S:      Maintained
18271 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18272
18273 SYSTEM CONFIGURATION (SYSCON)
18274 M:      Lee Jones <lee.jones@linaro.org>
18275 M:      Arnd Bergmann <arnd@arndb.de>
18276 S:      Supported
18277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18278 F:      drivers/mfd/syscon.c
18279
18280 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18281 M:      Sudeep Holla <sudeep.holla@arm.com>
18282 R:      Cristian Marussi <cristian.marussi@arm.com>
18283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18284 S:      Maintained
18285 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18286 F:      drivers/clk/clk-sc[mp]i.c
18287 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18288 F:      drivers/firmware/arm_scmi/
18289 F:      drivers/firmware/arm_scpi.c
18290 F:      drivers/regulator/scmi-regulator.c
18291 F:      drivers/reset/reset-scmi.c
18292 F:      include/linux/sc[mp]i_protocol.h
18293 F:      include/trace/events/scmi.h
18294 F:      include/uapi/linux/virtio_scmi.h
18295
18296 SYSTEM RESET/SHUTDOWN DRIVERS
18297 M:      Sebastian Reichel <sre@kernel.org>
18298 L:      linux-pm@vger.kernel.org
18299 S:      Maintained
18300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18301 F:      Documentation/devicetree/bindings/power/reset/
18302 F:      drivers/power/reset/
18303
18304 SYSTEM TRACE MODULE CLASS
18305 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18306 S:      Maintained
18307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18308 F:      Documentation/trace/stm.rst
18309 F:      drivers/hwtracing/stm/
18310 F:      include/linux/stm.h
18311 F:      include/uapi/linux/stm.h
18312
18313 SYSTEM76 ACPI DRIVER
18314 M:      Jeremy Soller <jeremy@system76.com>
18315 M:      System76 Product Development <productdev@system76.com>
18316 L:      platform-driver-x86@vger.kernel.org
18317 S:      Maintained
18318 F:      drivers/platform/x86/system76_acpi.c
18319
18320 SYSV FILESYSTEM
18321 M:      Christoph Hellwig <hch@infradead.org>
18322 S:      Maintained
18323 F:      Documentation/filesystems/sysv-fs.rst
18324 F:      fs/sysv/
18325 F:      include/linux/sysv_fs.h
18326
18327 TASKSTATS STATISTICS INTERFACE
18328 M:      Balbir Singh <bsingharora@gmail.com>
18329 S:      Maintained
18330 F:      Documentation/accounting/taskstats*
18331 F:      include/linux/taskstats*
18332 F:      kernel/taskstats.c
18333
18334 TC subsystem
18335 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18336 M:      Cong Wang <xiyou.wangcong@gmail.com>
18337 M:      Jiri Pirko <jiri@resnulli.us>
18338 L:      netdev@vger.kernel.org
18339 S:      Maintained
18340 F:      include/net/pkt_cls.h
18341 F:      include/net/pkt_sched.h
18342 F:      include/net/tc_act/
18343 F:      include/uapi/linux/pkt_cls.h
18344 F:      include/uapi/linux/pkt_sched.h
18345 F:      include/uapi/linux/tc_act/
18346 F:      include/uapi/linux/tc_ematch/
18347 F:      net/sched/
18348
18349 TC90522 MEDIA DRIVER
18350 M:      Akihiro Tsukada <tskd08@gmail.com>
18351 L:      linux-media@vger.kernel.org
18352 S:      Odd Fixes
18353 F:      drivers/media/dvb-frontends/tc90522*
18354
18355 TCP LOW PRIORITY MODULE
18356 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18357 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18358 S:      Maintained
18359 W:      http://tcp-lp-mod.sourceforge.net/
18360 F:      net/ipv4/tcp_lp.c
18361
18362 TDA10071 MEDIA DRIVER
18363 M:      Antti Palosaari <crope@iki.fi>
18364 L:      linux-media@vger.kernel.org
18365 S:      Maintained
18366 W:      https://linuxtv.org
18367 W:      http://palosaari.fi/linux/
18368 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18369 T:      git git://linuxtv.org/anttip/media_tree.git
18370 F:      drivers/media/dvb-frontends/tda10071*
18371
18372 TDA18212 MEDIA DRIVER
18373 M:      Antti Palosaari <crope@iki.fi>
18374 L:      linux-media@vger.kernel.org
18375 S:      Maintained
18376 W:      https://linuxtv.org
18377 W:      http://palosaari.fi/linux/
18378 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18379 T:      git git://linuxtv.org/anttip/media_tree.git
18380 F:      drivers/media/tuners/tda18212*
18381
18382 TDA18218 MEDIA DRIVER
18383 M:      Antti Palosaari <crope@iki.fi>
18384 L:      linux-media@vger.kernel.org
18385 S:      Maintained
18386 W:      https://linuxtv.org
18387 W:      http://palosaari.fi/linux/
18388 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18389 T:      git git://linuxtv.org/anttip/media_tree.git
18390 F:      drivers/media/tuners/tda18218*
18391
18392 TDA18250 MEDIA DRIVER
18393 M:      Olli Salonen <olli.salonen@iki.fi>
18394 L:      linux-media@vger.kernel.org
18395 S:      Maintained
18396 W:      https://linuxtv.org
18397 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18398 T:      git git://linuxtv.org/media_tree.git
18399 F:      drivers/media/tuners/tda18250*
18400
18401 TDA18271 MEDIA DRIVER
18402 M:      Michael Krufky <mkrufky@linuxtv.org>
18403 L:      linux-media@vger.kernel.org
18404 S:      Maintained
18405 W:      https://linuxtv.org
18406 W:      http://github.com/mkrufky
18407 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18408 T:      git git://linuxtv.org/mkrufky/tuners.git
18409 F:      drivers/media/tuners/tda18271*
18410
18411 TDA1997x MEDIA DRIVER
18412 M:      Tim Harvey <tharvey@gateworks.com>
18413 L:      linux-media@vger.kernel.org
18414 S:      Maintained
18415 W:      https://linuxtv.org
18416 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18417 F:      drivers/media/i2c/tda1997x.*
18418
18419 TDA827x MEDIA DRIVER
18420 M:      Michael Krufky <mkrufky@linuxtv.org>
18421 L:      linux-media@vger.kernel.org
18422 S:      Maintained
18423 W:      https://linuxtv.org
18424 W:      http://github.com/mkrufky
18425 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18426 T:      git git://linuxtv.org/mkrufky/tuners.git
18427 F:      drivers/media/tuners/tda8290.*
18428
18429 TDA8290 MEDIA DRIVER
18430 M:      Michael Krufky <mkrufky@linuxtv.org>
18431 L:      linux-media@vger.kernel.org
18432 S:      Maintained
18433 W:      https://linuxtv.org
18434 W:      http://github.com/mkrufky
18435 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18436 T:      git git://linuxtv.org/mkrufky/tuners.git
18437 F:      drivers/media/tuners/tda8290.*
18438
18439 TDA9840 MEDIA DRIVER
18440 M:      Hans Verkuil <hverkuil@xs4all.nl>
18441 L:      linux-media@vger.kernel.org
18442 S:      Maintained
18443 W:      https://linuxtv.org
18444 T:      git git://linuxtv.org/media_tree.git
18445 F:      drivers/media/i2c/tda9840*
18446
18447 TEA5761 TUNER DRIVER
18448 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18449 L:      linux-media@vger.kernel.org
18450 S:      Odd fixes
18451 W:      https://linuxtv.org
18452 T:      git git://linuxtv.org/media_tree.git
18453 F:      drivers/media/tuners/tea5761.*
18454
18455 TEA5767 TUNER DRIVER
18456 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18457 L:      linux-media@vger.kernel.org
18458 S:      Maintained
18459 W:      https://linuxtv.org
18460 T:      git git://linuxtv.org/media_tree.git
18461 F:      drivers/media/tuners/tea5767.*
18462
18463 TEA6415C MEDIA DRIVER
18464 M:      Hans Verkuil <hverkuil@xs4all.nl>
18465 L:      linux-media@vger.kernel.org
18466 S:      Maintained
18467 W:      https://linuxtv.org
18468 T:      git git://linuxtv.org/media_tree.git
18469 F:      drivers/media/i2c/tea6415c*
18470
18471 TEA6420 MEDIA DRIVER
18472 M:      Hans Verkuil <hverkuil@xs4all.nl>
18473 L:      linux-media@vger.kernel.org
18474 S:      Maintained
18475 W:      https://linuxtv.org
18476 T:      git git://linuxtv.org/media_tree.git
18477 F:      drivers/media/i2c/tea6420*
18478
18479 TEAM DRIVER
18480 M:      Jiri Pirko <jiri@resnulli.us>
18481 L:      netdev@vger.kernel.org
18482 S:      Supported
18483 F:      drivers/net/team/
18484 F:      include/linux/if_team.h
18485 F:      include/uapi/linux/if_team.h
18486
18487 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18488 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18489 S:      Maintained
18490 F:      arch/x86/platform/ts5500/
18491
18492 TECHNOTREND USB IR RECEIVER
18493 M:      Sean Young <sean@mess.org>
18494 L:      linux-media@vger.kernel.org
18495 S:      Maintained
18496 F:      drivers/media/rc/ttusbir.c
18497
18498 TECHWELL TW9910 VIDEO DECODER
18499 L:      linux-media@vger.kernel.org
18500 S:      Orphan
18501 F:      drivers/media/i2c/tw9910.c
18502 F:      include/media/i2c/tw9910.h
18503
18504 TEE SUBSYSTEM
18505 M:      Jens Wiklander <jens.wiklander@linaro.org>
18506 R:      Sumit Garg <sumit.garg@linaro.org>
18507 L:      op-tee@lists.trustedfirmware.org
18508 S:      Maintained
18509 F:      Documentation/staging/tee.rst
18510 F:      drivers/tee/
18511 F:      include/linux/tee_drv.h
18512 F:      include/uapi/linux/tee.h
18513
18514 TEGRA ARCHITECTURE SUPPORT
18515 M:      Thierry Reding <thierry.reding@gmail.com>
18516 M:      Jonathan Hunter <jonathanh@nvidia.com>
18517 L:      linux-tegra@vger.kernel.org
18518 S:      Supported
18519 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18521 N:      [^a-z]tegra
18522
18523 TEGRA CLOCK DRIVER
18524 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18525 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18526 S:      Supported
18527 F:      drivers/clk/tegra/
18528
18529 TEGRA DMA DRIVERS
18530 M:      Laxman Dewangan <ldewangan@nvidia.com>
18531 M:      Jon Hunter <jonathanh@nvidia.com>
18532 S:      Supported
18533 F:      drivers/dma/tegra*
18534
18535 TEGRA I2C DRIVER
18536 M:      Laxman Dewangan <ldewangan@nvidia.com>
18537 R:      Dmitry Osipenko <digetx@gmail.com>
18538 S:      Supported
18539 F:      drivers/i2c/busses/i2c-tegra.c
18540
18541 TEGRA IOMMU DRIVERS
18542 M:      Thierry Reding <thierry.reding@gmail.com>
18543 R:      Krishna Reddy <vdumpa@nvidia.com>
18544 L:      linux-tegra@vger.kernel.org
18545 S:      Supported
18546 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18547 F:      drivers/iommu/tegra*
18548
18549 TEGRA KBC DRIVER
18550 M:      Laxman Dewangan <ldewangan@nvidia.com>
18551 S:      Supported
18552 F:      drivers/input/keyboard/tegra-kbc.c
18553
18554 TEGRA NAND DRIVER
18555 M:      Stefan Agner <stefan@agner.ch>
18556 M:      Lucas Stach <dev@lynxeye.de>
18557 S:      Maintained
18558 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18559 F:      drivers/mtd/nand/raw/tegra_nand.c
18560
18561 TEGRA PWM DRIVER
18562 M:      Thierry Reding <thierry.reding@gmail.com>
18563 S:      Supported
18564 F:      drivers/pwm/pwm-tegra.c
18565
18566 TEGRA SERIAL DRIVER
18567 M:      Laxman Dewangan <ldewangan@nvidia.com>
18568 S:      Supported
18569 F:      drivers/tty/serial/serial-tegra.c
18570
18571 TEGRA SPI DRIVER
18572 M:      Laxman Dewangan <ldewangan@nvidia.com>
18573 S:      Supported
18574 F:      drivers/spi/spi-tegra*
18575
18576 TEGRA QUAD SPI DRIVER
18577 M:      Thierry Reding <thierry.reding@gmail.com>
18578 M:      Jonathan Hunter <jonathanh@nvidia.com>
18579 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18580 L:      linux-tegra@vger.kernel.org
18581 S:      Maintained
18582 F:      drivers/spi/spi-tegra210-quad.c
18583
18584 TEGRA VIDEO DRIVER
18585 M:      Thierry Reding <thierry.reding@gmail.com>
18586 M:      Jonathan Hunter <jonathanh@nvidia.com>
18587 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18588 L:      linux-media@vger.kernel.org
18589 L:      linux-tegra@vger.kernel.org
18590 S:      Maintained
18591 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18592 F:      drivers/staging/media/tegra-video/
18593
18594 TEGRA XUSB PADCTL DRIVER
18595 M:      JC Kuo <jckuo@nvidia.com>
18596 S:      Supported
18597 F:      drivers/phy/tegra/xusb*
18598
18599 TEHUTI ETHERNET DRIVER
18600 M:      Andy Gospodarek <andy@greyhouse.net>
18601 L:      netdev@vger.kernel.org
18602 S:      Supported
18603 F:      drivers/net/ethernet/tehuti/*
18604
18605 TELECOM CLOCK DRIVER FOR MCPL0010
18606 M:      Mark Gross <markgross@kernel.org>
18607 S:      Supported
18608 F:      drivers/char/tlclk.c
18609
18610 TEMPO SEMICONDUCTOR DRIVERS
18611 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18612 S:      Maintained
18613 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18614 F:      sound/soc/codecs/tscs*.c
18615 F:      sound/soc/codecs/tscs*.h
18616
18617 TENSILICA XTENSA PORT (xtensa)
18618 M:      Chris Zankel <chris@zankel.net>
18619 M:      Max Filippov <jcmvbkbc@gmail.com>
18620 L:      linux-xtensa@linux-xtensa.org
18621 S:      Maintained
18622 T:      git git://github.com/czankel/xtensa-linux.git
18623 F:      arch/xtensa/
18624 F:      drivers/irqchip/irq-xtensa-*
18625
18626 TEXAS INSTRUMENTS ASoC DRIVERS
18627 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18628 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18629 S:      Maintained
18630 F:      sound/soc/ti/
18631
18632 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18633 M:      Ricardo Ribalda <ribalda@kernel.org>
18634 L:      linux-iio@vger.kernel.org
18635 S:      Supported
18636 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18637 F:      drivers/iio/dac/ti-dac7612.c
18638
18639 TEXAS INSTRUMENTS DMA DRIVERS
18640 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18641 L:      dmaengine@vger.kernel.org
18642 S:      Maintained
18643 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18644 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18645 F:      Documentation/devicetree/bindings/dma/ti/
18646 F:      drivers/dma/ti/
18647 X:      drivers/dma/ti/cppi41.c
18648 F:      include/linux/dma/k3-udma-glue.h
18649 F:      include/linux/dma/ti-cppi5.h
18650 F:      include/linux/dma/k3-psil.h
18651
18652 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18653 M:      Nishanth Menon <nm@ti.com>
18654 M:      Tero Kristo <kristo@kernel.org>
18655 M:      Santosh Shilimkar <ssantosh@kernel.org>
18656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18657 S:      Maintained
18658 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18659 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
18660 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18661 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18662 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18663 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18664 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18665 F:      drivers/clk/keystone/sci-clk.c
18666 F:      drivers/firmware/ti_sci*
18667 F:      drivers/irqchip/irq-ti-sci-inta.c
18668 F:      drivers/irqchip/irq-ti-sci-intr.c
18669 F:      drivers/reset/reset-ti-sci.c
18670 F:      drivers/soc/ti/ti_sci_inta_msi.c
18671 F:      drivers/soc/ti/ti_sci_pm_domains.c
18672 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18673 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18674 F:      include/linux/soc/ti/ti_sci_protocol.h
18675
18676 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18677 M:      Robert Marko <robert.marko@sartura.hr>
18678 M:      Luka Perkov <luka.perkov@sartura.hr>
18679 L:      linux-hwmon@vger.kernel.org
18680 S:      Maintained
18681 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18682 F:      Documentation/hwmon/tps23861.rst
18683 F:      drivers/hwmon/tps23861.c
18684
18685 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18686 M:      Puranjay Mohan <puranjay12@gmail.com>
18687 L:      linux-iio@vger.kernel.org
18688 S:      Supported
18689 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18690 F:      drivers/iio/temperature/tmp117.c
18691
18692 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18693 M:      Hans Verkuil <hverkuil@xs4all.nl>
18694 L:      linux-media@vger.kernel.org
18695 S:      Maintained
18696 W:      https://linuxtv.org
18697 T:      git git://linuxtv.org/media_tree.git
18698 F:      drivers/media/radio/radio-raremono.c
18699
18700 THERMAL
18701 M:      Rafael J. Wysocki <rafael@kernel.org>
18702 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18703 R:      Amit Kucheria <amitk@kernel.org>
18704 R:      Zhang Rui <rui.zhang@intel.com>
18705 L:      linux-pm@vger.kernel.org
18706 S:      Supported
18707 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18709 F:      Documentation/ABI/testing/sysfs-class-thermal
18710 F:      Documentation/devicetree/bindings/thermal/
18711 F:      Documentation/driver-api/thermal/
18712 F:      drivers/thermal/
18713 F:      include/linux/cpu_cooling.h
18714 F:      include/linux/thermal.h
18715 F:      include/uapi/linux/thermal.h
18716 F:      tools/thermal/
18717
18718 THERMAL DRIVER FOR AMLOGIC SOCS
18719 M:      Guillaume La Roque <glaroque@baylibre.com>
18720 L:      linux-pm@vger.kernel.org
18721 L:      linux-amlogic@lists.infradead.org
18722 S:      Supported
18723 W:      http://linux-meson.com/
18724 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18725 F:      drivers/thermal/amlogic_thermal.c
18726
18727 THERMAL/CPU_COOLING
18728 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18729 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18730 M:      Viresh Kumar <viresh.kumar@linaro.org>
18731 R:      Lukasz Luba <lukasz.luba@arm.com>
18732 L:      linux-pm@vger.kernel.org
18733 S:      Supported
18734 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18735 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18736 F:      drivers/thermal/cpufreq_cooling.c
18737 F:      drivers/thermal/cpuidle_cooling.c
18738 F:      include/linux/cpu_cooling.h
18739
18740 THERMAL/POWER_ALLOCATOR
18741 M:      Lukasz Luba <lukasz.luba@arm.com>
18742 L:      linux-pm@vger.kernel.org
18743 S:      Maintained
18744 F:      Documentation/driver-api/thermal/power_allocator.rst
18745 F:      drivers/thermal/gov_power_allocator.c
18746 F:      include/trace/events/thermal_power_allocator.h
18747
18748 THINKPAD ACPI EXTRAS DRIVER
18749 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18750 L:      ibm-acpi-devel@lists.sourceforge.net
18751 L:      platform-driver-x86@vger.kernel.org
18752 S:      Maintained
18753 W:      http://ibm-acpi.sourceforge.net
18754 W:      http://thinkwiki.org/wiki/Ibm-acpi
18755 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18756 F:      drivers/platform/x86/thinkpad_acpi.c
18757
18758 THINKPAD LMI DRIVER
18759 M:      Mark Pearson <markpearson@lenovo.com>
18760 L:      platform-driver-x86@vger.kernel.org
18761 S:      Maintained
18762 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18763 F:      drivers/platform/x86/think-lmi.?
18764
18765 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18766 M:      Isaac Hazan <isaac.hazan@intel.com>
18767 L:      linux-usb@vger.kernel.org
18768 S:      Maintained
18769 F:      drivers/thunderbolt/dma_test.c
18770
18771 THUNDERBOLT DRIVER
18772 M:      Andreas Noever <andreas.noever@gmail.com>
18773 M:      Michael Jamet <michael.jamet@intel.com>
18774 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18775 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18776 L:      linux-usb@vger.kernel.org
18777 S:      Maintained
18778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18779 F:      Documentation/admin-guide/thunderbolt.rst
18780 F:      drivers/thunderbolt/
18781 F:      include/linux/thunderbolt.h
18782
18783 THUNDERBOLT NETWORK DRIVER
18784 M:      Michael Jamet <michael.jamet@intel.com>
18785 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18786 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18787 L:      netdev@vger.kernel.org
18788 S:      Maintained
18789 F:      drivers/net/thunderbolt.c
18790
18791 THUNDERX GPIO DRIVER
18792 M:      Robert Richter <rric@kernel.org>
18793 S:      Odd Fixes
18794 F:      drivers/gpio/gpio-thunderx.c
18795
18796 TI ADS131E0X ADC SERIES DRIVER
18797 M:      Tomislav Denis <tomislav.denis@avl.com>
18798 L:      linux-iio@vger.kernel.org
18799 S:      Maintained
18800 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18801 F:      drivers/iio/adc/ti-ads131e08.c
18802
18803 TI AM437X VPFE DRIVER
18804 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18805 L:      linux-media@vger.kernel.org
18806 S:      Maintained
18807 W:      https://linuxtv.org
18808 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18809 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18810 F:      drivers/media/platform/am437x/
18811
18812 TI BANDGAP AND THERMAL DRIVER
18813 M:      Eduardo Valentin <edubezval@gmail.com>
18814 M:      Keerthy <j-keerthy@ti.com>
18815 L:      linux-pm@vger.kernel.org
18816 L:      linux-omap@vger.kernel.org
18817 S:      Maintained
18818 F:      drivers/thermal/ti-soc-thermal/
18819
18820 TI BQ27XXX POWER SUPPLY DRIVER
18821 F:      drivers/power/supply/bq27xxx_battery.c
18822 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18823 F:      include/linux/power/bq27xxx_battery.h
18824
18825 TI CDCE706 CLOCK DRIVER
18826 M:      Max Filippov <jcmvbkbc@gmail.com>
18827 S:      Maintained
18828 F:      drivers/clk/clk-cdce706.c
18829
18830 TI CLOCK DRIVER
18831 M:      Tero Kristo <kristo@kernel.org>
18832 L:      linux-omap@vger.kernel.org
18833 S:      Odd Fixes
18834 F:      drivers/clk/ti/
18835 F:      include/linux/clk/ti.h
18836
18837 TI DAVINCI MACHINE SUPPORT
18838 M:      Sekhar Nori <nsekhar@ti.com>
18839 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18841 S:      Supported
18842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18843 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18844 F:      arch/arm/boot/dts/da850*
18845 F:      arch/arm/mach-davinci/
18846 F:      drivers/i2c/busses/i2c-davinci.c
18847
18848 TI DAVINCI SERIES CLOCK DRIVER
18849 M:      David Lechner <david@lechnology.com>
18850 R:      Sekhar Nori <nsekhar@ti.com>
18851 S:      Maintained
18852 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18853 F:      drivers/clk/davinci/
18854
18855 TI DAVINCI SERIES GPIO DRIVER
18856 M:      Keerthy <j-keerthy@ti.com>
18857 L:      linux-gpio@vger.kernel.org
18858 S:      Maintained
18859 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18860 F:      drivers/gpio/gpio-davinci.c
18861
18862 TI DAVINCI SERIES MEDIA DRIVER
18863 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18864 L:      linux-media@vger.kernel.org
18865 S:      Maintained
18866 W:      https://linuxtv.org
18867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18868 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18869 F:      drivers/media/platform/davinci/
18870 F:      include/media/davinci/
18871
18872 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18873 R:      David Lechner <david@lechnology.com>
18874 L:      linux-iio@vger.kernel.org
18875 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18876 F:      drivers/counter/ti-eqep.c
18877
18878 TI ETHERNET SWITCH DRIVER (CPSW)
18879 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18880 L:      linux-omap@vger.kernel.org
18881 L:      netdev@vger.kernel.org
18882 S:      Maintained
18883 F:      drivers/net/ethernet/ti/cpsw*
18884 F:      drivers/net/ethernet/ti/davinci*
18885
18886 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18887 M:      Alex Dubov <oakad@yahoo.com>
18888 S:      Maintained
18889 W:      http://tifmxx.berlios.de/
18890 F:      drivers/memstick/host/tifm_ms.c
18891 F:      drivers/misc/tifm*
18892 F:      drivers/mmc/host/tifm_sd.c
18893 F:      include/linux/tifm.h
18894
18895 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18896 M:      Santosh Shilimkar <ssantosh@kernel.org>
18897 L:      linux-kernel@vger.kernel.org
18898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18899 S:      Maintained
18900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18901 F:      drivers/soc/ti/*
18902
18903 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18904 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18905 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18906 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18907 S:      Maintained
18908 F:      sound/soc/codecs/isabelle*
18909 F:      sound/soc/codecs/lm49453*
18910
18911 TI PCM3060 ASoC CODEC DRIVER
18912 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18913 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18914 S:      Maintained
18915 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18916 F:      sound/soc/codecs/pcm3060*
18917
18918 TI TAS571X FAMILY ASoC CODEC DRIVER
18919 M:      Kevin Cernekee <cernekee@chromium.org>
18920 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18921 S:      Odd Fixes
18922 F:      sound/soc/codecs/tas571x*
18923
18924 TI TRF7970A NFC DRIVER
18925 M:      Mark Greer <mgreer@animalcreek.com>
18926 L:      linux-wireless@vger.kernel.org
18927 L:      linux-nfc@lists.01.org (subscribers-only)
18928 S:      Supported
18929 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
18930 F:      drivers/nfc/trf7970a.c
18931
18932 TI TSC2046 ADC DRIVER
18933 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18934 R:      kernel@pengutronix.de
18935 L:      linux-iio@vger.kernel.org
18936 S:      Maintained
18937 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18938 F:      drivers/iio/adc/ti-tsc2046.c
18939
18940 TI TWL4030 SERIES SOC CODEC DRIVER
18941 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18942 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18943 S:      Maintained
18944 F:      sound/soc/codecs/twl4030*
18945
18946 TI VPE/CAL DRIVERS
18947 M:      Benoit Parrot <bparrot@ti.com>
18948 L:      linux-media@vger.kernel.org
18949 S:      Maintained
18950 W:      http://linuxtv.org/
18951 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18952 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18953 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18954 F:      drivers/media/platform/ti-vpe/
18955
18956 TI WILINK WIRELESS DRIVERS
18957 L:      linux-wireless@vger.kernel.org
18958 S:      Orphan
18959 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18960 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18962 F:      drivers/net/wireless/ti/
18963 F:      include/linux/wl12xx.h
18964
18965 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18966 M:      John Stultz <john.stultz@linaro.org>
18967 M:      Thomas Gleixner <tglx@linutronix.de>
18968 R:      Stephen Boyd <sboyd@kernel.org>
18969 L:      linux-kernel@vger.kernel.org
18970 S:      Supported
18971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18972 F:      include/linux/clocksource.h
18973 F:      include/linux/time.h
18974 F:      include/linux/timex.h
18975 F:      include/uapi/linux/time.h
18976 F:      include/uapi/linux/timex.h
18977 F:      kernel/time/alarmtimer.c
18978 F:      kernel/time/clocksource.c
18979 F:      kernel/time/ntp.c
18980 F:      kernel/time/time*.c
18981 F:      tools/testing/selftests/timers/
18982
18983 TIPC NETWORK LAYER
18984 M:      Jon Maloy <jmaloy@redhat.com>
18985 M:      Ying Xue <ying.xue@windriver.com>
18986 L:      netdev@vger.kernel.org (core kernel code)
18987 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18988 S:      Maintained
18989 W:      http://tipc.sourceforge.net/
18990 F:      include/uapi/linux/tipc*.h
18991 F:      net/tipc/
18992
18993 TLAN NETWORK DRIVER
18994 M:      Samuel Chessman <chessman@tux.org>
18995 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18996 S:      Maintained
18997 W:      http://sourceforge.net/projects/tlan/
18998 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18999 F:      drivers/net/ethernet/ti/tlan.*
19000
19001 TM6000 VIDEO4LINUX DRIVER
19002 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19003 L:      linux-media@vger.kernel.org
19004 S:      Odd fixes
19005 W:      https://linuxtv.org
19006 T:      git git://linuxtv.org/media_tree.git
19007 F:      Documentation/admin-guide/media/tm6000*
19008 F:      drivers/media/usb/tm6000/
19009
19010 TMIO/SDHI MMC DRIVER
19011 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19012 L:      linux-mmc@vger.kernel.org
19013 S:      Supported
19014 F:      drivers/mmc/host/renesas_sdhi*
19015 F:      drivers/mmc/host/tmio_mmc*
19016 F:      include/linux/mfd/tmio.h
19017
19018 TMP401 HARDWARE MONITOR DRIVER
19019 M:      Guenter Roeck <linux@roeck-us.net>
19020 L:      linux-hwmon@vger.kernel.org
19021 S:      Maintained
19022 F:      Documentation/hwmon/tmp401.rst
19023 F:      drivers/hwmon/tmp401.c
19024
19025 TMP513 HARDWARE MONITOR DRIVER
19026 M:      Eric Tremblay <etremblay@distech-controls.com>
19027 L:      linux-hwmon@vger.kernel.org
19028 S:      Maintained
19029 F:      Documentation/hwmon/tmp513.rst
19030 F:      drivers/hwmon/tmp513.c
19031
19032 TMPFS (SHMEM FILESYSTEM)
19033 M:      Hugh Dickins <hughd@google.com>
19034 L:      linux-mm@kvack.org
19035 S:      Maintained
19036 F:      include/linux/shmem_fs.h
19037 F:      mm/shmem.c
19038
19039 TOMOYO SECURITY MODULE
19040 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19041 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19042 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19043 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19044 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19045 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19046 S:      Maintained
19047 W:      https://tomoyo.osdn.jp/
19048 F:      security/tomoyo/
19049
19050 TOPSTAR LAPTOP EXTRAS DRIVER
19051 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19052 L:      platform-driver-x86@vger.kernel.org
19053 S:      Maintained
19054 F:      drivers/platform/x86/topstar-laptop.c
19055
19056 TORTURE-TEST MODULES
19057 M:      Davidlohr Bueso <dave@stgolabs.net>
19058 M:      "Paul E. McKenney" <paulmck@kernel.org>
19059 M:      Josh Triplett <josh@joshtriplett.org>
19060 L:      linux-kernel@vger.kernel.org
19061 S:      Supported
19062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19063 F:      Documentation/RCU/torture.rst
19064 F:      kernel/locking/locktorture.c
19065 F:      kernel/rcu/rcuscale.c
19066 F:      kernel/rcu/rcutorture.c
19067 F:      kernel/rcu/refscale.c
19068 F:      kernel/torture.c
19069
19070 TOSHIBA ACPI EXTRAS DRIVER
19071 M:      Azael Avalos <coproscefalo@gmail.com>
19072 L:      platform-driver-x86@vger.kernel.org
19073 S:      Maintained
19074 F:      drivers/platform/x86/toshiba_acpi.c
19075
19076 TOSHIBA BLUETOOTH DRIVER
19077 M:      Azael Avalos <coproscefalo@gmail.com>
19078 L:      platform-driver-x86@vger.kernel.org
19079 S:      Maintained
19080 F:      drivers/platform/x86/toshiba_bluetooth.c
19081
19082 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19083 M:      Azael Avalos <coproscefalo@gmail.com>
19084 L:      platform-driver-x86@vger.kernel.org
19085 S:      Maintained
19086 F:      drivers/platform/x86/toshiba_haps.c
19087
19088 TOSHIBA SMM DRIVER
19089 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19090 S:      Maintained
19091 W:      http://www.buzzard.org.uk/toshiba/
19092 F:      drivers/char/toshiba.c
19093 F:      include/linux/toshiba.h
19094 F:      include/uapi/linux/toshiba.h
19095
19096 TOSHIBA TC358743 DRIVER
19097 M:      Mats Randgaard <matrandg@cisco.com>
19098 L:      linux-media@vger.kernel.org
19099 S:      Maintained
19100 F:      drivers/media/i2c/tc358743*
19101 F:      include/media/i2c/tc358743.h
19102
19103 TOSHIBA WMI HOTKEYS DRIVER
19104 M:      Azael Avalos <coproscefalo@gmail.com>
19105 L:      platform-driver-x86@vger.kernel.org
19106 S:      Maintained
19107 F:      drivers/platform/x86/toshiba-wmi.c
19108
19109 TPM DEVICE DRIVER
19110 M:      Peter Huewe <peterhuewe@gmx.de>
19111 M:      Jarkko Sakkinen <jarkko@kernel.org>
19112 R:      Jason Gunthorpe <jgg@ziepe.ca>
19113 L:      linux-integrity@vger.kernel.org
19114 S:      Maintained
19115 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19116 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19118 F:      drivers/char/tpm/
19119
19120 TRACING
19121 M:      Steven Rostedt <rostedt@goodmis.org>
19122 M:      Ingo Molnar <mingo@redhat.com>
19123 S:      Maintained
19124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19125 F:      Documentation/trace/ftrace.rst
19126 F:      arch/*/*/*/ftrace.h
19127 F:      arch/*/kernel/ftrace.c
19128 F:      fs/tracefs/
19129 F:      include/*/ftrace.h
19130 F:      include/linux/trace*.h
19131 F:      include/trace/
19132 F:      kernel/trace/
19133 F:      tools/testing/selftests/ftrace/
19134
19135 TRACING MMIO ACCESSES (MMIOTRACE)
19136 M:      Steven Rostedt <rostedt@goodmis.org>
19137 M:      Ingo Molnar <mingo@kernel.org>
19138 R:      Karol Herbst <karolherbst@gmail.com>
19139 R:      Pekka Paalanen <ppaalanen@gmail.com>
19140 L:      linux-kernel@vger.kernel.org
19141 L:      nouveau@lists.freedesktop.org
19142 S:      Maintained
19143 F:      arch/x86/mm/kmmio.c
19144 F:      arch/x86/mm/mmio-mod.c
19145 F:      arch/x86/mm/testmmiotrace.c
19146 F:      include/linux/mmiotrace.h
19147 F:      kernel/trace/trace_mmiotrace.c
19148
19149 TRACING OS NOISE / LATENCY TRACERS
19150 M:      Steven Rostedt <rostedt@goodmis.org>
19151 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19152 S:      Maintained
19153 F:      kernel/trace/trace_osnoise.c
19154 F:      include/trace/events/osnoise.h
19155 F:      kernel/trace/trace_hwlat.c
19156 F:      kernel/trace/trace_irqsoff.c
19157 F:      kernel/trace/trace_sched_wakeup.c
19158 F:      Documentation/trace/osnoise-tracer.rst
19159 F:      Documentation/trace/timerlat-tracer.rst
19160 F:      Documentation/trace/hwlat_detector.rst
19161 F:      arch/*/kernel/trace.c
19162
19163 TRADITIONAL CHINESE DOCUMENTATION
19164 M:      Hu Haowen <src.res@email.cn>
19165 L:      linux-doc-tw-discuss@lists.sourceforge.net
19166 S:      Maintained
19167 W:      https://github.com/srcres258/linux-doc
19168 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19169 F:      Documentation/translations/zh_TW/
19170
19171 TRIVIAL PATCHES
19172 M:      Jiri Kosina <trivial@kernel.org>
19173 S:      Maintained
19174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19175 K:      ^Subject:.*(?i)trivial
19176
19177 TTY LAYER
19178 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19179 M:      Jiri Slaby <jirislaby@kernel.org>
19180 S:      Supported
19181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19182 F:      Documentation/driver-api/serial/
19183 F:      drivers/tty/
19184 F:      drivers/tty/serial/serial_core.c
19185 F:      include/linux/selection.h
19186 F:      include/linux/serial.h
19187 F:      include/linux/serial_core.h
19188 F:      include/linux/sysrq.h
19189 F:      include/linux/tty*.h
19190 F:      include/linux/vt.h
19191 F:      include/linux/vt_*.h
19192 F:      include/uapi/linux/serial.h
19193 F:      include/uapi/linux/serial_core.h
19194 F:      include/uapi/linux/tty.h
19195
19196 TUA9001 MEDIA DRIVER
19197 M:      Antti Palosaari <crope@iki.fi>
19198 L:      linux-media@vger.kernel.org
19199 S:      Maintained
19200 W:      https://linuxtv.org
19201 W:      http://palosaari.fi/linux/
19202 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19203 T:      git git://linuxtv.org/anttip/media_tree.git
19204 F:      drivers/media/tuners/tua9001*
19205
19206 TULIP NETWORK DRIVERS
19207 L:      netdev@vger.kernel.org
19208 L:      linux-parisc@vger.kernel.org
19209 S:      Orphan
19210 F:      drivers/net/ethernet/dec/tulip/
19211
19212 TUN/TAP driver
19213 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19214 S:      Maintained
19215 W:      http://vtun.sourceforge.net/tun
19216 F:      Documentation/networking/tuntap.rst
19217 F:      arch/um/os-Linux/drivers/
19218
19219 TURBOCHANNEL SUBSYSTEM
19220 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19221 M:      Ralf Baechle <ralf@linux-mips.org>
19222 L:      linux-mips@vger.kernel.org
19223 S:      Maintained
19224 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19225 F:      drivers/tc/
19226 F:      include/linux/tc.h
19227
19228 TURBOSTAT UTILITY
19229 M:      "Len Brown" <lenb@kernel.org>
19230 L:      linux-pm@vger.kernel.org
19231 S:      Supported
19232 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19233 B:      https://bugzilla.kernel.org
19234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19235 F:      tools/power/x86/turbostat/
19236
19237 TW5864 VIDEO4LINUX DRIVER
19238 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19239 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19240 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19241 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19242 L:      linux-media@vger.kernel.org
19243 S:      Supported
19244 F:      drivers/media/pci/tw5864/
19245
19246 TW68 VIDEO4LINUX DRIVER
19247 M:      Hans Verkuil <hverkuil@xs4all.nl>
19248 L:      linux-media@vger.kernel.org
19249 S:      Odd Fixes
19250 W:      https://linuxtv.org
19251 T:      git git://linuxtv.org/media_tree.git
19252 F:      drivers/media/pci/tw68/
19253
19254 TW686X VIDEO4LINUX DRIVER
19255 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19256 L:      linux-media@vger.kernel.org
19257 S:      Maintained
19258 W:      http://linuxtv.org
19259 T:      git git://linuxtv.org/media_tree.git
19260 F:      drivers/media/pci/tw686x/
19261
19262 UACCE ACCELERATOR FRAMEWORK
19263 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19264 M:      Zhou Wang <wangzhou1@hisilicon.com>
19265 L:      linux-accelerators@lists.ozlabs.org
19266 L:      linux-kernel@vger.kernel.org
19267 S:      Maintained
19268 F:      Documentation/ABI/testing/sysfs-driver-uacce
19269 F:      Documentation/misc-devices/uacce.rst
19270 F:      drivers/misc/uacce/
19271 F:      include/linux/uacce.h
19272 F:      include/uapi/misc/uacce/
19273
19274 UBI FILE SYSTEM (UBIFS)
19275 M:      Richard Weinberger <richard@nod.at>
19276 L:      linux-mtd@lists.infradead.org
19277 S:      Supported
19278 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19281 F:      Documentation/filesystems/ubifs-authentication.rst
19282 F:      Documentation/filesystems/ubifs.rst
19283 F:      fs/ubifs/
19284
19285 UCLINUX (M68KNOMMU AND COLDFIRE)
19286 M:      Greg Ungerer <gerg@linux-m68k.org>
19287 L:      linux-m68k@lists.linux-m68k.org
19288 L:      uclinux-dev@uclinux.org  (subscribers-only)
19289 S:      Maintained
19290 W:      http://www.linux-m68k.org/
19291 W:      http://www.uclinux.org/
19292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19293 F:      arch/m68k/*/*_no.*
19294 F:      arch/m68k/68*/
19295 F:      arch/m68k/coldfire/
19296 F:      arch/m68k/include/asm/*_no.*
19297
19298 UDF FILESYSTEM
19299 M:      Jan Kara <jack@suse.com>
19300 S:      Maintained
19301 F:      Documentation/filesystems/udf.rst
19302 F:      fs/udf/
19303
19304 UDRAW TABLET
19305 M:      Bastien Nocera <hadess@hadess.net>
19306 L:      linux-input@vger.kernel.org
19307 S:      Maintained
19308 F:      drivers/hid/hid-udraw-ps3.c
19309
19310 UFS FILESYSTEM
19311 M:      Evgeniy Dushistov <dushistov@mail.ru>
19312 S:      Maintained
19313 F:      Documentation/admin-guide/ufs.rst
19314 F:      fs/ufs/
19315
19316 UHID USERSPACE HID IO DRIVER
19317 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19318 L:      linux-input@vger.kernel.org
19319 S:      Maintained
19320 F:      drivers/hid/uhid.c
19321 F:      include/uapi/linux/uhid.h
19322
19323 ULPI BUS
19324 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19325 L:      linux-usb@vger.kernel.org
19326 S:      Maintained
19327 F:      drivers/usb/common/ulpi.c
19328 F:      include/linux/ulpi/
19329
19330 UNICODE SUBSYSTEM
19331 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19332 L:      linux-fsdevel@vger.kernel.org
19333 S:      Supported
19334 F:      fs/unicode/
19335
19336 UNIFDEF
19337 M:      Tony Finch <dot@dotat.at>
19338 S:      Maintained
19339 W:      http://dotat.at/prog/unifdef
19340 F:      scripts/unifdef.c
19341
19342 UNIFORM CDROM DRIVER
19343 M:      Phillip Potter <phil@philpotter.co.uk>
19344 S:      Maintained
19345 F:      Documentation/cdrom/
19346 F:      drivers/cdrom/cdrom.c
19347 F:      include/linux/cdrom.h
19348 F:      include/uapi/linux/cdrom.h
19349
19350 UNISYS S-PAR DRIVERS
19351 M:      David Kershner <david.kershner@unisys.com>
19352 L:      sparmaintainer@unisys.com (Unisys internal)
19353 S:      Supported
19354 F:      drivers/staging/unisys/
19355 F:      drivers/visorbus/
19356 F:      include/linux/visorbus.h
19357
19358 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19359 R:      Alim Akhtar <alim.akhtar@samsung.com>
19360 R:      Avri Altman <avri.altman@wdc.com>
19361 L:      linux-scsi@vger.kernel.org
19362 S:      Supported
19363 F:      Documentation/scsi/ufs.rst
19364 F:      drivers/scsi/ufs/
19365
19366 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19367 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19368 L:      linux-scsi@vger.kernel.org
19369 S:      Supported
19370 F:      drivers/scsi/ufs/*dwc*
19371
19372 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19373 M:      Stanley Chu <stanley.chu@mediatek.com>
19374 L:      linux-scsi@vger.kernel.org
19375 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19376 S:      Maintained
19377 F:      drivers/scsi/ufs/ufs-mediatek*
19378
19379 UNSORTED BLOCK IMAGES (UBI)
19380 M:      Richard Weinberger <richard@nod.at>
19381 L:      linux-mtd@lists.infradead.org
19382 S:      Supported
19383 W:      http://www.linux-mtd.infradead.org/
19384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19386 F:      drivers/mtd/ubi/
19387 F:      include/linux/mtd/ubi.h
19388 F:      include/uapi/mtd/ubi-user.h
19389
19390 USB "USBNET" DRIVER FRAMEWORK
19391 M:      Oliver Neukum <oneukum@suse.com>
19392 L:      netdev@vger.kernel.org
19393 S:      Maintained
19394 W:      http://www.linux-usb.org/usbnet
19395 F:      drivers/net/usb/usbnet.c
19396 F:      include/linux/usb/usbnet.h
19397
19398 USB ACM DRIVER
19399 M:      Oliver Neukum <oneukum@suse.com>
19400 L:      linux-usb@vger.kernel.org
19401 S:      Maintained
19402 F:      Documentation/usb/acm.rst
19403 F:      drivers/usb/class/cdc-acm.*
19404
19405 USB APPLE MFI FASTCHARGE DRIVER
19406 M:      Bastien Nocera <hadess@hadess.net>
19407 L:      linux-usb@vger.kernel.org
19408 S:      Maintained
19409 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19410
19411 USB AR5523 WIRELESS DRIVER
19412 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19413 L:      linux-wireless@vger.kernel.org
19414 S:      Maintained
19415 F:      drivers/net/wireless/ath/ar5523/
19416
19417 USB ATTACHED SCSI
19418 M:      Oliver Neukum <oneukum@suse.com>
19419 L:      linux-usb@vger.kernel.org
19420 L:      linux-scsi@vger.kernel.org
19421 S:      Maintained
19422 F:      drivers/usb/storage/uas.c
19423
19424 USB CDC ETHERNET DRIVER
19425 M:      Oliver Neukum <oliver@neukum.org>
19426 L:      linux-usb@vger.kernel.org
19427 S:      Maintained
19428 F:      drivers/net/usb/cdc_*.c
19429 F:      include/uapi/linux/usb/cdc.h
19430
19431 USB CHAOSKEY DRIVER
19432 M:      Keith Packard <keithp@keithp.com>
19433 L:      linux-usb@vger.kernel.org
19434 S:      Maintained
19435 F:      drivers/usb/misc/chaoskey.c
19436
19437 USB CYPRESS C67X00 DRIVER
19438 L:      linux-usb@vger.kernel.org
19439 S:      Orphan
19440 F:      drivers/usb/c67x00/
19441
19442 USB DAVICOM DM9601 DRIVER
19443 M:      Peter Korsgaard <peter@korsgaard.com>
19444 L:      netdev@vger.kernel.org
19445 S:      Maintained
19446 W:      http://www.linux-usb.org/usbnet
19447 F:      drivers/net/usb/dm9601.c
19448
19449 USB EHCI DRIVER
19450 M:      Alan Stern <stern@rowland.harvard.edu>
19451 L:      linux-usb@vger.kernel.org
19452 S:      Maintained
19453 F:      Documentation/usb/ehci.rst
19454 F:      drivers/usb/host/ehci*
19455
19456 USB GADGET/PERIPHERAL SUBSYSTEM
19457 M:      Felipe Balbi <balbi@kernel.org>
19458 L:      linux-usb@vger.kernel.org
19459 S:      Maintained
19460 W:      http://www.linux-usb.org/gadget
19461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19462 F:      drivers/usb/gadget/
19463 F:      include/linux/usb/gadget*
19464
19465 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19466 M:      Jiri Kosina <jikos@kernel.org>
19467 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19468 L:      linux-usb@vger.kernel.org
19469 S:      Maintained
19470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19471 F:      Documentation/hid/hiddev.rst
19472 F:      drivers/hid/usbhid/
19473
19474 USB INTEL XHCI ROLE MUX DRIVER
19475 M:      Hans de Goede <hdegoede@redhat.com>
19476 L:      linux-usb@vger.kernel.org
19477 S:      Maintained
19478 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19479
19480 USB IP DRIVER FOR HISILICON KIRIN 960
19481 M:      Yu Chen <chenyu56@huawei.com>
19482 M:      Binghui Wang <wangbinghui@hisilicon.com>
19483 L:      linux-usb@vger.kernel.org
19484 S:      Maintained
19485 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19486 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19487
19488 USB IP DRIVER FOR HISILICON KIRIN 970
19489 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19490 L:      linux-usb@vger.kernel.org
19491 S:      Maintained
19492 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19493 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19494
19495 USB ISP116X DRIVER
19496 M:      Olav Kongas <ok@artecdesign.ee>
19497 L:      linux-usb@vger.kernel.org
19498 S:      Maintained
19499 F:      drivers/usb/host/isp116x*
19500 F:      include/linux/usb/isp116x.h
19501
19502 USB ISP1760 DRIVER
19503 M:      Rui Miguel Silva <rui.silva@linaro.org>
19504 L:      linux-usb@vger.kernel.org
19505 S:      Maintained
19506 F:      drivers/usb/isp1760/*
19507 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19508
19509 USB LAN78XX ETHERNET DRIVER
19510 M:      Woojung Huh <woojung.huh@microchip.com>
19511 M:      UNGLinuxDriver@microchip.com
19512 L:      netdev@vger.kernel.org
19513 S:      Maintained
19514 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19515 F:      drivers/net/usb/lan78xx.*
19516 F:      include/dt-bindings/net/microchip-lan78xx.h
19517
19518 USB MASS STORAGE DRIVER
19519 M:      Alan Stern <stern@rowland.harvard.edu>
19520 L:      linux-usb@vger.kernel.org
19521 L:      usb-storage@lists.one-eyed-alien.net
19522 S:      Maintained
19523 F:      drivers/usb/storage/
19524
19525 USB MIDI DRIVER
19526 M:      Clemens Ladisch <clemens@ladisch.de>
19527 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19528 S:      Maintained
19529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19530 F:      sound/usb/midi.*
19531
19532 USB NETWORKING DRIVERS
19533 L:      linux-usb@vger.kernel.org
19534 S:      Odd Fixes
19535 F:      drivers/net/usb/
19536
19537 USB OHCI DRIVER
19538 M:      Alan Stern <stern@rowland.harvard.edu>
19539 L:      linux-usb@vger.kernel.org
19540 S:      Maintained
19541 F:      Documentation/usb/ohci.rst
19542 F:      drivers/usb/host/ohci*
19543
19544 USB OTG FSM (Finite State Machine)
19545 M:      Peter Chen <peter.chen@kernel.org>
19546 L:      linux-usb@vger.kernel.org
19547 S:      Maintained
19548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19549 F:      drivers/usb/common/usb-otg-fsm.c
19550
19551 USB OVER IP DRIVER
19552 M:      Valentina Manea <valentina.manea.m@gmail.com>
19553 M:      Shuah Khan <shuah@kernel.org>
19554 M:      Shuah Khan <skhan@linuxfoundation.org>
19555 L:      linux-usb@vger.kernel.org
19556 S:      Maintained
19557 F:      Documentation/usb/usbip_protocol.rst
19558 F:      drivers/usb/usbip/
19559 F:      tools/testing/selftests/drivers/usb/usbip/
19560 F:      tools/usb/usbip/
19561
19562 USB PEGASUS DRIVER
19563 M:      Petko Manolov <petkan@nucleusys.com>
19564 L:      linux-usb@vger.kernel.org
19565 L:      netdev@vger.kernel.org
19566 S:      Maintained
19567 W:      https://github.com/petkan/pegasus
19568 T:      git git://github.com/petkan/pegasus.git
19569 F:      drivers/net/usb/pegasus.*
19570
19571 USB PHY LAYER
19572 M:      Felipe Balbi <balbi@kernel.org>
19573 L:      linux-usb@vger.kernel.org
19574 S:      Maintained
19575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19576 F:      drivers/usb/phy/
19577
19578 USB PRINTER DRIVER (usblp)
19579 M:      Pete Zaitcev <zaitcev@redhat.com>
19580 L:      linux-usb@vger.kernel.org
19581 S:      Supported
19582 F:      drivers/usb/class/usblp.c
19583
19584 USB RAW GADGET DRIVER
19585 R:      Andrey Konovalov <andreyknvl@gmail.com>
19586 L:      linux-usb@vger.kernel.org
19587 S:      Maintained
19588 F:      Documentation/usb/raw-gadget.rst
19589 F:      drivers/usb/gadget/legacy/raw_gadget.c
19590 F:      include/uapi/linux/usb/raw_gadget.h
19591
19592 USB QMI WWAN NETWORK DRIVER
19593 M:      Bjørn Mork <bjorn@mork.no>
19594 L:      netdev@vger.kernel.org
19595 S:      Maintained
19596 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19597 F:      drivers/net/usb/qmi_wwan.c
19598
19599 USB RTL8150 DRIVER
19600 M:      Petko Manolov <petkan@nucleusys.com>
19601 L:      linux-usb@vger.kernel.org
19602 L:      netdev@vger.kernel.org
19603 S:      Maintained
19604 W:      https://github.com/petkan/rtl8150
19605 T:      git git://github.com/petkan/rtl8150.git
19606 F:      drivers/net/usb/rtl8150.c
19607
19608 USB SERIAL SUBSYSTEM
19609 M:      Johan Hovold <johan@kernel.org>
19610 L:      linux-usb@vger.kernel.org
19611 S:      Maintained
19612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19613 F:      Documentation/usb/usb-serial.rst
19614 F:      drivers/usb/serial/
19615 F:      include/linux/usb/serial.h
19616
19617 USB SMSC75XX ETHERNET DRIVER
19618 M:      Steve Glendinning <steve.glendinning@shawell.net>
19619 L:      netdev@vger.kernel.org
19620 S:      Maintained
19621 F:      drivers/net/usb/smsc75xx.*
19622
19623 USB SMSC95XX ETHERNET DRIVER
19624 M:      Steve Glendinning <steve.glendinning@shawell.net>
19625 M:      UNGLinuxDriver@microchip.com
19626 L:      netdev@vger.kernel.org
19627 S:      Maintained
19628 F:      drivers/net/usb/smsc95xx.*
19629
19630 USB SUBSYSTEM
19631 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19632 L:      linux-usb@vger.kernel.org
19633 S:      Supported
19634 W:      http://www.linux-usb.org
19635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19636 F:      Documentation/devicetree/bindings/usb/
19637 F:      Documentation/usb/
19638 F:      drivers/usb/
19639 F:      include/linux/usb.h
19640 F:      include/linux/usb/
19641
19642 USB TYPEC BUS FOR ALTERNATE MODES
19643 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19644 L:      linux-usb@vger.kernel.org
19645 S:      Maintained
19646 F:      Documentation/ABI/testing/sysfs-bus-typec
19647 F:      Documentation/driver-api/usb/typec_bus.rst
19648 F:      drivers/usb/typec/altmodes/
19649 F:      include/linux/usb/typec_altmode.h
19650
19651 USB TYPEC CLASS
19652 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19653 L:      linux-usb@vger.kernel.org
19654 S:      Maintained
19655 F:      Documentation/ABI/testing/sysfs-class-typec
19656 F:      Documentation/driver-api/usb/typec.rst
19657 F:      drivers/usb/typec/
19658 F:      include/linux/usb/typec.h
19659
19660 USB TYPEC INTEL PMC MUX DRIVER
19661 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19662 L:      linux-usb@vger.kernel.org
19663 S:      Maintained
19664 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19665 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19666
19667 USB TYPEC PI3USB30532 MUX DRIVER
19668 M:      Hans de Goede <hdegoede@redhat.com>
19669 L:      linux-usb@vger.kernel.org
19670 S:      Maintained
19671 F:      drivers/usb/typec/mux/pi3usb30532.c
19672
19673 USB TYPEC PORT CONTROLLER DRIVERS
19674 M:      Guenter Roeck <linux@roeck-us.net>
19675 L:      linux-usb@vger.kernel.org
19676 S:      Maintained
19677 F:      drivers/usb/typec/tcpm/
19678
19679 USB UHCI DRIVER
19680 M:      Alan Stern <stern@rowland.harvard.edu>
19681 L:      linux-usb@vger.kernel.org
19682 S:      Maintained
19683 F:      drivers/usb/host/uhci*
19684
19685 USB VIDEO CLASS
19686 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19687 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19688 L:      linux-media@vger.kernel.org
19689 S:      Maintained
19690 W:      http://www.ideasonboard.org/uvc/
19691 T:      git git://linuxtv.org/media_tree.git
19692 F:      drivers/media/usb/uvc/
19693 F:      include/uapi/linux/uvcvideo.h
19694
19695 USB WEBCAM GADGET
19696 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19697 L:      linux-usb@vger.kernel.org
19698 S:      Maintained
19699 F:      drivers/usb/gadget/function/*uvc*
19700 F:      drivers/usb/gadget/legacy/webcam.c
19701 F:      include/uapi/linux/usb/g_uvc.h
19702
19703 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19704 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19705 L:      linux-wireless@vger.kernel.org
19706 S:      Maintained
19707 F:      drivers/net/wireless/rndis_wlan.c
19708
19709 USB XHCI DRIVER
19710 M:      Mathias Nyman <mathias.nyman@intel.com>
19711 L:      linux-usb@vger.kernel.org
19712 S:      Supported
19713 F:      drivers/usb/host/pci-quirks*
19714 F:      drivers/usb/host/xhci*
19715
19716 USB ZD1201 DRIVER
19717 L:      linux-wireless@vger.kernel.org
19718 S:      Orphan
19719 W:      http://linux-lc100020.sourceforge.net
19720 F:      drivers/net/wireless/zydas/zd1201.*
19721
19722 USB ZR364XX DRIVER
19723 M:      Antoine Jacquet <royale@zerezo.com>
19724 L:      linux-usb@vger.kernel.org
19725 L:      linux-media@vger.kernel.org
19726 S:      Maintained
19727 W:      http://royale.zerezo.com/zr364xx/
19728 T:      git git://linuxtv.org/media_tree.git
19729 F:      Documentation/admin-guide/media/zr364xx*
19730 F:      drivers/media/usb/zr364xx/
19731
19732 USER-MODE LINUX (UML)
19733 M:      Jeff Dike <jdike@addtoit.com>
19734 M:      Richard Weinberger <richard@nod.at>
19735 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19736 L:      linux-um@lists.infradead.org
19737 S:      Maintained
19738 W:      http://user-mode-linux.sourceforge.net
19739 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19741 F:      Documentation/virt/uml/
19742 F:      arch/um/
19743 F:      arch/x86/um/
19744 F:      fs/hostfs/
19745
19746 USERSPACE COPYIN/COPYOUT (UIOVEC)
19747 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19748 S:      Maintained
19749 F:      include/linux/uio.h
19750 F:      lib/iov_iter.c
19751
19752 USERSPACE DMA BUFFER DRIVER
19753 M:      Gerd Hoffmann <kraxel@redhat.com>
19754 L:      dri-devel@lists.freedesktop.org
19755 S:      Maintained
19756 T:      git git://anongit.freedesktop.org/drm/drm-misc
19757 F:      drivers/dma-buf/udmabuf.c
19758 F:      include/uapi/linux/udmabuf.h
19759
19760 USERSPACE I/O (UIO)
19761 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19762 S:      Maintained
19763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19764 F:      Documentation/driver-api/uio-howto.rst
19765 F:      drivers/uio/
19766 F:      include/linux/uio_driver.h
19767
19768 UTIL-LINUX PACKAGE
19769 M:      Karel Zak <kzak@redhat.com>
19770 L:      util-linux@vger.kernel.org
19771 S:      Maintained
19772 W:      http://en.wikipedia.org/wiki/Util-linux
19773 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19774
19775 UUID HELPERS
19776 M:      Christoph Hellwig <hch@lst.de>
19777 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19778 L:      linux-kernel@vger.kernel.org
19779 S:      Maintained
19780 T:      git git://git.infradead.org/users/hch/uuid.git
19781 F:      include/linux/uuid.h
19782 F:      include/uapi/linux/uuid.h
19783 F:      lib/test_uuid.c
19784 F:      lib/uuid.c
19785
19786 UV SYSFS DRIVER
19787 M:      Justin Ernst <justin.ernst@hpe.com>
19788 L:      platform-driver-x86@vger.kernel.org
19789 S:      Maintained
19790 F:      drivers/platform/x86/uv_sysfs.c
19791
19792 UVESAFB DRIVER
19793 M:      Michal Januszewski <spock@gentoo.org>
19794 L:      linux-fbdev@vger.kernel.org
19795 S:      Maintained
19796 W:      https://github.com/mjanusz/v86d
19797 F:      Documentation/fb/uvesafb.rst
19798 F:      drivers/video/fbdev/uvesafb.*
19799
19800 Ux500 CLOCK DRIVERS
19801 M:      Ulf Hansson <ulf.hansson@linaro.org>
19802 L:      linux-clk@vger.kernel.org
19803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19804 S:      Maintained
19805 F:      drivers/clk/ux500/
19806
19807 VF610 NAND DRIVER
19808 M:      Stefan Agner <stefan@agner.ch>
19809 L:      linux-mtd@lists.infradead.org
19810 S:      Supported
19811 F:      drivers/mtd/nand/raw/vf610_nfc.c
19812
19813 VFAT/FAT/MSDOS FILESYSTEM
19814 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19815 S:      Maintained
19816 F:      Documentation/filesystems/vfat.rst
19817 F:      fs/fat/
19818
19819 VFIO DRIVER
19820 M:      Alex Williamson <alex.williamson@redhat.com>
19821 R:      Cornelia Huck <cohuck@redhat.com>
19822 L:      kvm@vger.kernel.org
19823 S:      Maintained
19824 T:      git git://github.com/awilliam/linux-vfio.git
19825 F:      Documentation/driver-api/vfio.rst
19826 F:      drivers/vfio/
19827 F:      include/linux/vfio.h
19828 F:      include/linux/vfio_pci_core.h
19829 F:      include/uapi/linux/vfio.h
19830
19831 VFIO FSL-MC DRIVER
19832 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19833 L:      kvm@vger.kernel.org
19834 S:      Maintained
19835 F:      drivers/vfio/fsl-mc/
19836
19837 VFIO MEDIATED DEVICE DRIVERS
19838 M:      Kirti Wankhede <kwankhede@nvidia.com>
19839 L:      kvm@vger.kernel.org
19840 S:      Maintained
19841 F:      Documentation/driver-api/vfio-mediated-device.rst
19842 F:      drivers/vfio/mdev/
19843 F:      include/linux/mdev.h
19844 F:      samples/vfio-mdev/
19845
19846 VFIO PLATFORM DRIVER
19847 M:      Eric Auger <eric.auger@redhat.com>
19848 L:      kvm@vger.kernel.org
19849 S:      Maintained
19850 F:      drivers/vfio/platform/
19851
19852 VGA_SWITCHEROO
19853 R:      Lukas Wunner <lukas@wunner.de>
19854 S:      Maintained
19855 T:      git git://anongit.freedesktop.org/drm/drm-misc
19856 F:      Documentation/gpu/vga-switcheroo.rst
19857 F:      drivers/gpu/vga/vga_switcheroo.c
19858 F:      include/linux/vga_switcheroo.h
19859
19860 VIA RHINE NETWORK DRIVER
19861 S:      Maintained
19862 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19863 F:      drivers/net/ethernet/via/via-rhine.c
19864
19865 VIA SD/MMC CARD CONTROLLER DRIVER
19866 M:      Bruce Chang <brucechang@via.com.tw>
19867 M:      Harald Welte <HaraldWelte@viatech.com>
19868 S:      Maintained
19869 F:      drivers/mmc/host/via-sdmmc.c
19870
19871 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19872 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19873 L:      linux-fbdev@vger.kernel.org
19874 S:      Maintained
19875 F:      drivers/video/fbdev/via/
19876 F:      include/linux/via-core.h
19877 F:      include/linux/via-gpio.h
19878 F:      include/linux/via_i2c.h
19879
19880 VIA VELOCITY NETWORK DRIVER
19881 M:      Francois Romieu <romieu@fr.zoreil.com>
19882 L:      netdev@vger.kernel.org
19883 S:      Maintained
19884 F:      drivers/net/ethernet/via/via-velocity.*
19885
19886 VICODEC VIRTUAL CODEC DRIVER
19887 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19888 L:      linux-media@vger.kernel.org
19889 S:      Maintained
19890 W:      https://linuxtv.org
19891 T:      git git://linuxtv.org/media_tree.git
19892 F:      drivers/media/test-drivers/vicodec/*
19893
19894 VIDEO I2C POLLING DRIVER
19895 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19896 L:      linux-media@vger.kernel.org
19897 S:      Maintained
19898 F:      drivers/media/i2c/video-i2c.c
19899
19900 VIDEO MULTIPLEXER DRIVER
19901 M:      Philipp Zabel <p.zabel@pengutronix.de>
19902 L:      linux-media@vger.kernel.org
19903 S:      Maintained
19904 F:      drivers/media/platform/video-mux.c
19905
19906 VIDEOBUF2 FRAMEWORK
19907 M:      Tomasz Figa <tfiga@chromium.org>
19908 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19909 L:      linux-media@vger.kernel.org
19910 S:      Maintained
19911 F:      drivers/media/common/videobuf2/*
19912 F:      include/media/videobuf2-*
19913
19914 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19915 M:      Helen Koike <helen.koike@collabora.com>
19916 R:      Shuah Khan <skhan@linuxfoundation.org>
19917 L:      linux-media@vger.kernel.org
19918 S:      Maintained
19919 W:      https://linuxtv.org
19920 T:      git git://linuxtv.org/media_tree.git
19921 F:      drivers/media/test-drivers/vimc/*
19922
19923 VIRT LIB
19924 M:      Alex Williamson <alex.williamson@redhat.com>
19925 M:      Paolo Bonzini <pbonzini@redhat.com>
19926 L:      kvm@vger.kernel.org
19927 S:      Supported
19928 F:      virt/lib/
19929
19930 VIRTIO AND VHOST VSOCK DRIVER
19931 M:      Stefan Hajnoczi <stefanha@redhat.com>
19932 M:      Stefano Garzarella <sgarzare@redhat.com>
19933 L:      kvm@vger.kernel.org
19934 L:      virtualization@lists.linux-foundation.org
19935 L:      netdev@vger.kernel.org
19936 S:      Maintained
19937 F:      drivers/vhost/vsock.c
19938 F:      include/linux/virtio_vsock.h
19939 F:      include/uapi/linux/virtio_vsock.h
19940 F:      net/vmw_vsock/virtio_transport.c
19941 F:      net/vmw_vsock/virtio_transport_common.c
19942
19943 VIRTIO BLOCK AND SCSI DRIVERS
19944 M:      "Michael S. Tsirkin" <mst@redhat.com>
19945 M:      Jason Wang <jasowang@redhat.com>
19946 R:      Paolo Bonzini <pbonzini@redhat.com>
19947 R:      Stefan Hajnoczi <stefanha@redhat.com>
19948 L:      virtualization@lists.linux-foundation.org
19949 S:      Maintained
19950 F:      drivers/block/virtio_blk.c
19951 F:      drivers/scsi/virtio_scsi.c
19952 F:      drivers/vhost/scsi.c
19953 F:      include/uapi/linux/virtio_blk.h
19954 F:      include/uapi/linux/virtio_scsi.h
19955
19956 VIRTIO CONSOLE DRIVER
19957 M:      Amit Shah <amit@kernel.org>
19958 L:      virtualization@lists.linux-foundation.org
19959 S:      Maintained
19960 F:      drivers/char/virtio_console.c
19961 F:      include/linux/virtio_console.h
19962 F:      include/uapi/linux/virtio_console.h
19963
19964 VIRTIO CORE AND NET DRIVERS
19965 M:      "Michael S. Tsirkin" <mst@redhat.com>
19966 M:      Jason Wang <jasowang@redhat.com>
19967 L:      virtualization@lists.linux-foundation.org
19968 S:      Maintained
19969 F:      Documentation/devicetree/bindings/virtio/
19970 F:      drivers/block/virtio_blk.c
19971 F:      drivers/crypto/virtio/
19972 F:      drivers/net/virtio_net.c
19973 F:      drivers/vdpa/
19974 F:      drivers/virtio/
19975 F:      include/linux/vdpa.h
19976 F:      include/linux/virtio*.h
19977 F:      include/uapi/linux/virtio_*.h
19978 F:      tools/virtio/
19979
19980 VIRTIO BALLOON
19981 M:      "Michael S. Tsirkin" <mst@redhat.com>
19982 M:      David Hildenbrand <david@redhat.com>
19983 L:      virtualization@lists.linux-foundation.org
19984 S:      Maintained
19985 F:      drivers/virtio/virtio_balloon.c
19986 F:      include/uapi/linux/virtio_balloon.h
19987 F:      include/linux/balloon_compaction.h
19988 F:      mm/balloon_compaction.c
19989
19990 VIRTIO CRYPTO DRIVER
19991 M:      Gonglei <arei.gonglei@huawei.com>
19992 L:      virtualization@lists.linux-foundation.org
19993 L:      linux-crypto@vger.kernel.org
19994 S:      Maintained
19995 F:      drivers/crypto/virtio/
19996 F:      include/uapi/linux/virtio_crypto.h
19997
19998 VIRTIO DRIVERS FOR S390
19999 M:      Cornelia Huck <cohuck@redhat.com>
20000 M:      Halil Pasic <pasic@linux.ibm.com>
20001 L:      linux-s390@vger.kernel.org
20002 L:      virtualization@lists.linux-foundation.org
20003 L:      kvm@vger.kernel.org
20004 S:      Supported
20005 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20006 F:      drivers/s390/virtio/
20007
20008 VIRTIO FILE SYSTEM
20009 M:      Vivek Goyal <vgoyal@redhat.com>
20010 M:      Stefan Hajnoczi <stefanha@redhat.com>
20011 M:      Miklos Szeredi <miklos@szeredi.hu>
20012 L:      virtualization@lists.linux-foundation.org
20013 L:      linux-fsdevel@vger.kernel.org
20014 S:      Supported
20015 W:      https://virtio-fs.gitlab.io/
20016 F:      Documentation/filesystems/virtiofs.rst
20017 F:      fs/fuse/virtio_fs.c
20018 F:      include/uapi/linux/virtio_fs.h
20019
20020 VIRTIO GPIO DRIVER
20021 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20022 M:      Viresh Kumar <vireshk@kernel.org>
20023 L:      linux-gpio@vger.kernel.org
20024 L:      virtualization@lists.linux-foundation.org
20025 S:      Maintained
20026 F:      drivers/gpio/gpio-virtio.c
20027 F:      include/uapi/linux/virtio_gpio.h
20028
20029 VIRTIO GPU DRIVER
20030 M:      David Airlie <airlied@linux.ie>
20031 M:      Gerd Hoffmann <kraxel@redhat.com>
20032 L:      dri-devel@lists.freedesktop.org
20033 L:      virtualization@lists.linux-foundation.org
20034 S:      Maintained
20035 T:      git git://anongit.freedesktop.org/drm/drm-misc
20036 F:      drivers/gpu/drm/virtio/
20037 F:      include/uapi/linux/virtio_gpu.h
20038
20039 VIRTIO HOST (VHOST)
20040 M:      "Michael S. Tsirkin" <mst@redhat.com>
20041 M:      Jason Wang <jasowang@redhat.com>
20042 L:      kvm@vger.kernel.org
20043 L:      virtualization@lists.linux-foundation.org
20044 L:      netdev@vger.kernel.org
20045 S:      Maintained
20046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20047 F:      drivers/vhost/
20048 F:      include/linux/vhost_iotlb.h
20049 F:      include/uapi/linux/vhost.h
20050
20051 VIRTIO INPUT DRIVER
20052 M:      Gerd Hoffmann <kraxel@redhat.com>
20053 S:      Maintained
20054 F:      drivers/virtio/virtio_input.c
20055 F:      include/uapi/linux/virtio_input.h
20056
20057 VIRTIO IOMMU DRIVER
20058 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20059 L:      virtualization@lists.linux-foundation.org
20060 S:      Maintained
20061 F:      drivers/iommu/virtio-iommu.c
20062 F:      include/uapi/linux/virtio_iommu.h
20063
20064 VIRTIO MEM DRIVER
20065 M:      David Hildenbrand <david@redhat.com>
20066 L:      virtualization@lists.linux-foundation.org
20067 S:      Maintained
20068 W:      https://virtio-mem.gitlab.io/
20069 F:      drivers/virtio/virtio_mem.c
20070 F:      include/uapi/linux/virtio_mem.h
20071
20072 VIRTIO SOUND DRIVER
20073 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20074 M:      "Michael S. Tsirkin" <mst@redhat.com>
20075 L:      virtualization@lists.linux-foundation.org
20076 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20077 S:      Maintained
20078 F:      include/uapi/linux/virtio_snd.h
20079 F:      sound/virtio/*
20080
20081 VIRTIO I2C DRIVER
20082 M:      Jie Deng <jie.deng@intel.com>
20083 M:      Viresh Kumar <viresh.kumar@linaro.org>
20084 L:      linux-i2c@vger.kernel.org
20085 L:      virtualization@lists.linux-foundation.org
20086 S:      Maintained
20087 F:      drivers/i2c/busses/i2c-virtio.c
20088 F:      include/uapi/linux/virtio_i2c.h
20089
20090 VIRTIO PMEM DRIVER
20091 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20092 L:      virtualization@lists.linux-foundation.org
20093 S:      Maintained
20094 F:      drivers/nvdimm/virtio_pmem.c
20095 F:      drivers/nvdimm/nd_virtio.c
20096
20097 VIRTUAL BOX GUEST DEVICE DRIVER
20098 M:      Hans de Goede <hdegoede@redhat.com>
20099 M:      Arnd Bergmann <arnd@arndb.de>
20100 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20101 S:      Maintained
20102 F:      drivers/virt/vboxguest/
20103 F:      include/linux/vbox_utils.h
20104 F:      include/uapi/linux/vbox*.h
20105
20106 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20107 M:      Hans de Goede <hdegoede@redhat.com>
20108 L:      linux-fsdevel@vger.kernel.org
20109 S:      Maintained
20110 F:      fs/vboxsf/*
20111
20112 VIRTUAL SERIO DEVICE DRIVER
20113 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20114 S:      Maintained
20115 F:      drivers/input/serio/userio.c
20116 F:      include/uapi/linux/userio.h
20117
20118 VIVID VIRTUAL VIDEO DRIVER
20119 M:      Hans Verkuil <hverkuil@xs4all.nl>
20120 L:      linux-media@vger.kernel.org
20121 S:      Maintained
20122 W:      https://linuxtv.org
20123 T:      git git://linuxtv.org/media_tree.git
20124 F:      drivers/media/test-drivers/vivid/*
20125
20126 VIDTV VIRTUAL DIGITAL TV DRIVER
20127 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20128 L:      linux-media@vger.kernel.org
20129 S:      Maintained
20130 W:      https://linuxtv.org
20131 T:      git git://linuxtv.org/media_tree.git
20132 F:      drivers/media/test-drivers/vidtv/*
20133
20134 VLYNQ BUS
20135 M:      Florian Fainelli <f.fainelli@gmail.com>
20136 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20137 S:      Maintained
20138 F:      drivers/vlynq/vlynq.c
20139 F:      include/linux/vlynq.h
20140
20141 VME SUBSYSTEM
20142 M:      Martyn Welch <martyn@welchs.me.uk>
20143 M:      Manohar Vanga <manohar.vanga@gmail.com>
20144 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20145 L:      linux-kernel@vger.kernel.org
20146 S:      Maintained
20147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20148 F:      Documentation/driver-api/vme.rst
20149 F:      drivers/staging/vme/
20150 F:      drivers/vme/
20151 F:      include/linux/vme*
20152
20153 VM SOCKETS (AF_VSOCK)
20154 M:      Stefano Garzarella <sgarzare@redhat.com>
20155 L:      virtualization@lists.linux-foundation.org
20156 L:      netdev@vger.kernel.org
20157 S:      Maintained
20158 F:      drivers/net/vsockmon.c
20159 F:      include/net/af_vsock.h
20160 F:      include/uapi/linux/vm_sockets.h
20161 F:      include/uapi/linux/vm_sockets_diag.h
20162 F:      include/uapi/linux/vsockmon.h
20163 F:      net/vmw_vsock/
20164 F:      tools/testing/vsock/
20165
20166 VMWARE BALLOON DRIVER
20167 M:      Nadav Amit <namit@vmware.com>
20168 M:      "VMware, Inc." <pv-drivers@vmware.com>
20169 L:      linux-kernel@vger.kernel.org
20170 S:      Maintained
20171 F:      drivers/misc/vmw_balloon.c
20172
20173 VMWARE HYPERVISOR INTERFACE
20174 M:      Deep Shah <sdeep@vmware.com>
20175 M:      "VMware, Inc." <pv-drivers@vmware.com>
20176 L:      virtualization@lists.linux-foundation.org
20177 S:      Supported
20178 F:      arch/x86/include/asm/vmware.h
20179 F:      arch/x86/kernel/cpu/vmware.c
20180
20181 VMWARE PVRDMA DRIVER
20182 M:      Adit Ranadive <aditr@vmware.com>
20183 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20184 L:      linux-rdma@vger.kernel.org
20185 S:      Maintained
20186 F:      drivers/infiniband/hw/vmw_pvrdma/
20187
20188 VMware PVSCSI driver
20189 M:      Vishal Bhakta <vbhakta@vmware.com>
20190 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20191 L:      linux-scsi@vger.kernel.org
20192 S:      Maintained
20193 F:      drivers/scsi/vmw_pvscsi.c
20194 F:      drivers/scsi/vmw_pvscsi.h
20195
20196 VMWARE VIRTUAL PTP CLOCK DRIVER
20197 M:      Vivek Thampi <vithampi@vmware.com>
20198 M:      "VMware, Inc." <pv-drivers@vmware.com>
20199 L:      netdev@vger.kernel.org
20200 S:      Supported
20201 F:      drivers/ptp/ptp_vmw.c
20202
20203 VMWARE VMCI DRIVER
20204 M:      Jorgen Hansen <jhansen@vmware.com>
20205 M:      Vishnu Dasa <vdasa@vmware.com>
20206 L:      linux-kernel@vger.kernel.org
20207 L:      pv-drivers@vmware.com (private)
20208 S:      Maintained
20209 F:      drivers/misc/vmw_vmci/
20210
20211 VMWARE VMMOUSE SUBDRIVER
20212 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20213 M:      "VMware, Inc." <pv-drivers@vmware.com>
20214 L:      linux-input@vger.kernel.org
20215 S:      Maintained
20216 F:      drivers/input/mouse/vmmouse.c
20217 F:      drivers/input/mouse/vmmouse.h
20218
20219 VMWARE VMXNET3 ETHERNET DRIVER
20220 M:      Ronak Doshi <doshir@vmware.com>
20221 M:      pv-drivers@vmware.com
20222 L:      netdev@vger.kernel.org
20223 S:      Maintained
20224 F:      drivers/net/vmxnet3/
20225
20226 VOCORE VOCORE2 BOARD
20227 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20228 L:      linux-mips@vger.kernel.org
20229 S:      Maintained
20230 F:      arch/mips/boot/dts/ralink/vocore2.dts
20231
20232 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20233 M:      Liam Girdwood <lgirdwood@gmail.com>
20234 M:      Mark Brown <broonie@kernel.org>
20235 L:      linux-kernel@vger.kernel.org
20236 S:      Supported
20237 W:      http://www.slimlogic.co.uk/?p=48
20238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20239 F:      Documentation/devicetree/bindings/regulator/
20240 F:      Documentation/power/regulator/
20241 F:      drivers/regulator/
20242 F:      include/dt-bindings/regulator/
20243 F:      include/linux/regulator/
20244 K:      regulator_get_optional
20245
20246 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20247 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20248 F:      drivers/regulator/irq_helpers.c
20249
20250 VRF
20251 M:      David Ahern <dsahern@kernel.org>
20252 L:      netdev@vger.kernel.org
20253 S:      Maintained
20254 F:      Documentation/networking/vrf.rst
20255 F:      drivers/net/vrf.c
20256
20257 VSPRINTF
20258 M:      Petr Mladek <pmladek@suse.com>
20259 M:      Steven Rostedt <rostedt@goodmis.org>
20260 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20261 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20262 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20263 S:      Maintained
20264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20265 F:      Documentation/core-api/printk-formats.rst
20266 F:      lib/test_printf.c
20267 F:      lib/test_scanf.c
20268 F:      lib/vsprintf.c
20269
20270 VT1211 HARDWARE MONITOR DRIVER
20271 M:      Juerg Haefliger <juergh@gmail.com>
20272 L:      linux-hwmon@vger.kernel.org
20273 S:      Maintained
20274 F:      Documentation/hwmon/vt1211.rst
20275 F:      drivers/hwmon/vt1211.c
20276
20277 VT8231 HARDWARE MONITOR DRIVER
20278 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20279 L:      linux-hwmon@vger.kernel.org
20280 S:      Maintained
20281 F:      drivers/hwmon/vt8231.c
20282
20283 VUB300 USB to SDIO/SD/MMC bridge chip
20284 L:      linux-mmc@vger.kernel.org
20285 S:      Orphan
20286 F:      drivers/mmc/host/vub300.c
20287
20288 W1 DALLAS'S 1-WIRE BUS
20289 M:      Evgeniy Polyakov <zbr@ioremap.net>
20290 S:      Maintained
20291 F:      Documentation/devicetree/bindings/w1/
20292 F:      Documentation/w1/
20293 F:      drivers/w1/
20294 F:      include/linux/w1.h
20295
20296 W83791D HARDWARE MONITORING DRIVER
20297 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20298 L:      linux-hwmon@vger.kernel.org
20299 S:      Maintained
20300 F:      Documentation/hwmon/w83791d.rst
20301 F:      drivers/hwmon/w83791d.c
20302
20303 W83793 HARDWARE MONITORING DRIVER
20304 M:      Rudolf Marek <r.marek@assembler.cz>
20305 L:      linux-hwmon@vger.kernel.org
20306 S:      Maintained
20307 F:      Documentation/hwmon/w83793.rst
20308 F:      drivers/hwmon/w83793.c
20309
20310 W83795 HARDWARE MONITORING DRIVER
20311 M:      Jean Delvare <jdelvare@suse.com>
20312 L:      linux-hwmon@vger.kernel.org
20313 S:      Maintained
20314 F:      drivers/hwmon/w83795.c
20315
20316 W83L51xD SD/MMC CARD INTERFACE DRIVER
20317 M:      Pierre Ossman <pierre@ossman.eu>
20318 S:      Maintained
20319 F:      drivers/mmc/host/wbsd.*
20320
20321 WACOM PROTOCOL 4 SERIAL TABLETS
20322 M:      Julian Squires <julian@cipht.net>
20323 M:      Hans de Goede <hdegoede@redhat.com>
20324 L:      linux-input@vger.kernel.org
20325 S:      Maintained
20326 F:      drivers/input/tablet/wacom_serial4.c
20327
20328 WATCHDOG DEVICE DRIVERS
20329 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20330 M:      Guenter Roeck <linux@roeck-us.net>
20331 L:      linux-watchdog@vger.kernel.org
20332 S:      Maintained
20333 W:      http://www.linux-watchdog.org/
20334 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20335 F:      Documentation/devicetree/bindings/watchdog/
20336 F:      Documentation/watchdog/
20337 F:      drivers/watchdog/
20338 F:      include/linux/watchdog.h
20339 F:      include/uapi/linux/watchdog.h
20340
20341 WHISKEYCOVE PMIC GPIO DRIVER
20342 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20343 L:      linux-gpio@vger.kernel.org
20344 S:      Maintained
20345 F:      drivers/gpio/gpio-wcove.c
20346
20347 WHWAVE RTC DRIVER
20348 M:      Dianlong Li <long17.cool@163.com>
20349 L:      linux-rtc@vger.kernel.org
20350 S:      Maintained
20351 F:      drivers/rtc/rtc-sd3078.c
20352
20353 WIIMOTE HID DRIVER
20354 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20355 L:      linux-input@vger.kernel.org
20356 S:      Maintained
20357 F:      drivers/hid/hid-wiimote*
20358
20359 WILOCITY WIL6210 WIRELESS DRIVER
20360 M:      Maya Erez <merez@codeaurora.org>
20361 L:      linux-wireless@vger.kernel.org
20362 L:      wil6210@qti.qualcomm.com
20363 S:      Supported
20364 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20365 F:      drivers/net/wireless/ath/wil6210/
20366
20367 WINBOND CIR DRIVER
20368 M:      David Härdeman <david@hardeman.nu>
20369 S:      Maintained
20370 F:      drivers/media/rc/winbond-cir.c
20371
20372 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20373 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20374 L:      linux-watchdog@vger.kernel.org
20375 S:      Maintained
20376 F:      drivers/watchdog/ebc-c384_wdt.c
20377
20378 WINSYSTEMS WS16C48 GPIO DRIVER
20379 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20380 L:      linux-gpio@vger.kernel.org
20381 S:      Maintained
20382 F:      drivers/gpio/gpio-ws16c48.c
20383
20384 WIREGUARD SECURE NETWORK TUNNEL
20385 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20386 L:      wireguard@lists.zx2c4.com
20387 L:      netdev@vger.kernel.org
20388 S:      Maintained
20389 F:      drivers/net/wireguard/
20390 F:      tools/testing/selftests/wireguard/
20391
20392 WISTRON LAPTOP BUTTON DRIVER
20393 M:      Miloslav Trmac <mitr@volny.cz>
20394 S:      Maintained
20395 F:      drivers/input/misc/wistron_btns.c
20396
20397 WL3501 WIRELESS PCMCIA CARD DRIVER
20398 L:      linux-wireless@vger.kernel.org
20399 S:      Odd fixes
20400 F:      drivers/net/wireless/wl3501*
20401
20402 WOLFSON MICROELECTRONICS DRIVERS
20403 L:      patches@opensource.cirrus.com
20404 S:      Supported
20405 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20406 T:      git https://github.com/CirrusLogic/linux-drivers.git
20407 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20408 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20409 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20410 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20411 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20412 F:      Documentation/devicetree/bindings/sound/wm*
20413 F:      Documentation/hwmon/wm83??.rst
20414 F:      arch/arm/mach-s3c/mach-crag6410*
20415 F:      drivers/clk/clk-wm83*.c
20416 F:      drivers/gpio/gpio-*wm*.c
20417 F:      drivers/gpio/gpio-arizona.c
20418 F:      drivers/hwmon/wm83??-hwmon.c
20419 F:      drivers/input/misc/wm831x-on.c
20420 F:      drivers/input/touchscreen/wm831x-ts.c
20421 F:      drivers/input/touchscreen/wm97*.c
20422 F:      drivers/leds/leds-wm83*.c
20423 F:      drivers/mfd/arizona*
20424 F:      drivers/mfd/cs47l24*
20425 F:      drivers/mfd/wm*.c
20426 F:      drivers/power/supply/wm83*.c
20427 F:      drivers/regulator/arizona*
20428 F:      drivers/regulator/wm8*.c
20429 F:      drivers/rtc/rtc-wm83*.c
20430 F:      drivers/video/backlight/wm83*_bl.c
20431 F:      drivers/watchdog/wm83*_wdt.c
20432 F:      include/linux/mfd/arizona/
20433 F:      include/linux/mfd/wm831x/
20434 F:      include/linux/mfd/wm8350/
20435 F:      include/linux/mfd/wm8400*
20436 F:      include/linux/regulator/arizona*
20437 F:      include/linux/wm97xx.h
20438 F:      include/sound/wm????.h
20439 F:      sound/soc/codecs/arizona*
20440 F:      sound/soc/codecs/cs47l24*
20441 F:      sound/soc/codecs/wm*
20442
20443 WORKQUEUE
20444 M:      Tejun Heo <tj@kernel.org>
20445 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20446 S:      Maintained
20447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20448 F:      Documentation/core-api/workqueue.rst
20449 F:      include/linux/workqueue.h
20450 F:      kernel/workqueue.c
20451
20452 WWAN DRIVERS
20453 M:      Loic Poulain <loic.poulain@linaro.org>
20454 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20455 R:      Johannes Berg <johannes@sipsolutions.net>
20456 L:      netdev@vger.kernel.org
20457 S:      Maintained
20458 F:      drivers/net/wwan/
20459 F:      include/linux/wwan.h
20460 F:      include/uapi/linux/wwan.h
20461
20462 X-POWERS AXP288 PMIC DRIVERS
20463 M:      Hans de Goede <hdegoede@redhat.com>
20464 S:      Maintained
20465 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20466 N:      axp288
20467
20468 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20469 M:      Chen-Yu Tsai <wens@csie.org>
20470 L:      linux-kernel@vger.kernel.org
20471 S:      Maintained
20472 N:      axp[128]
20473
20474 X.25 STACK
20475 M:      Martin Schiller <ms@dev.tdt.de>
20476 L:      linux-x25@vger.kernel.org
20477 S:      Maintained
20478 F:      Documentation/networking/lapb-module.rst
20479 F:      Documentation/networking/x25*
20480 F:      drivers/net/wan/hdlc_x25.c
20481 F:      drivers/net/wan/lapbether.c
20482 F:      include/*/lapb.h
20483 F:      include/net/x25*
20484 F:      include/uapi/linux/x25.h
20485 F:      net/lapb/
20486 F:      net/x25/
20487
20488 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20489 M:      Thomas Gleixner <tglx@linutronix.de>
20490 M:      Ingo Molnar <mingo@redhat.com>
20491 M:      Borislav Petkov <bp@alien8.de>
20492 M:      Dave Hansen <dave.hansen@linux.intel.com>
20493 M:      x86@kernel.org
20494 R:      "H. Peter Anvin" <hpa@zytor.com>
20495 L:      linux-kernel@vger.kernel.org
20496 S:      Maintained
20497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20498 F:      Documentation/devicetree/bindings/x86/
20499 F:      Documentation/x86/
20500 F:      arch/x86/
20501
20502 X86 ENTRY CODE
20503 M:      Andy Lutomirski <luto@kernel.org>
20504 L:      linux-kernel@vger.kernel.org
20505 S:      Maintained
20506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20507 F:      arch/x86/entry/
20508
20509 X86 MCE INFRASTRUCTURE
20510 M:      Tony Luck <tony.luck@intel.com>
20511 M:      Borislav Petkov <bp@alien8.de>
20512 L:      linux-edac@vger.kernel.org
20513 S:      Maintained
20514 F:      arch/x86/kernel/cpu/mce/*
20515
20516 X86 MICROCODE UPDATE SUPPORT
20517 M:      Borislav Petkov <bp@alien8.de>
20518 S:      Maintained
20519 F:      arch/x86/kernel/cpu/microcode/*
20520
20521 X86 MM
20522 M:      Dave Hansen <dave.hansen@linux.intel.com>
20523 M:      Andy Lutomirski <luto@kernel.org>
20524 M:      Peter Zijlstra <peterz@infradead.org>
20525 L:      linux-kernel@vger.kernel.org
20526 S:      Maintained
20527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20528 F:      arch/x86/mm/
20529
20530 X86 PLATFORM DRIVERS
20531 M:      Hans de Goede <hdegoede@redhat.com>
20532 M:      Mark Gross <markgross@kernel.org>
20533 L:      platform-driver-x86@vger.kernel.org
20534 S:      Maintained
20535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20536 F:      drivers/platform/olpc/
20537 F:      drivers/platform/x86/
20538
20539 X86 PLATFORM DRIVERS - ARCH
20540 R:      Darren Hart <dvhart@infradead.org>
20541 R:      Andy Shevchenko <andy@infradead.org>
20542 L:      platform-driver-x86@vger.kernel.org
20543 L:      x86@kernel.org
20544 S:      Maintained
20545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20546 F:      arch/x86/platform
20547
20548 X86 PLATFORM UV HPE SUPERDOME FLEX
20549 M:      Steve Wahl <steve.wahl@hpe.com>
20550 R:      Mike Travis <mike.travis@hpe.com>
20551 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20552 R:      Russ Anderson <russ.anderson@hpe.com>
20553 S:      Supported
20554 F:      arch/x86/include/asm/uv/
20555 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20556 F:      arch/x86/platform/uv/
20557
20558 X86 VDSO
20559 M:      Andy Lutomirski <luto@kernel.org>
20560 L:      linux-kernel@vger.kernel.org
20561 S:      Maintained
20562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20563 F:      arch/x86/entry/vdso/
20564
20565 XARRAY
20566 M:      Matthew Wilcox <willy@infradead.org>
20567 L:      linux-fsdevel@vger.kernel.org
20568 S:      Supported
20569 F:      Documentation/core-api/xarray.rst
20570 F:      include/linux/idr.h
20571 F:      include/linux/xarray.h
20572 F:      lib/idr.c
20573 F:      lib/xarray.c
20574 F:      tools/testing/radix-tree
20575
20576 XBOX DVD IR REMOTE
20577 M:      Benjamin Valentin <benpicco@googlemail.com>
20578 S:      Maintained
20579 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20580 F:      drivers/media/rc/xbox_remote.c
20581
20582 XC2028/3028 TUNER DRIVER
20583 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20584 L:      linux-media@vger.kernel.org
20585 S:      Maintained
20586 W:      https://linuxtv.org
20587 T:      git git://linuxtv.org/media_tree.git
20588 F:      drivers/media/tuners/tuner-xc2028.*
20589
20590 XDP (eXpress Data Path)
20591 M:      Alexei Starovoitov <ast@kernel.org>
20592 M:      Daniel Borkmann <daniel@iogearbox.net>
20593 M:      David S. Miller <davem@davemloft.net>
20594 M:      Jakub Kicinski <kuba@kernel.org>
20595 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20596 M:      John Fastabend <john.fastabend@gmail.com>
20597 L:      netdev@vger.kernel.org
20598 L:      bpf@vger.kernel.org
20599 S:      Supported
20600 F:      include/net/xdp.h
20601 F:      include/net/xdp_priv.h
20602 F:      include/trace/events/xdp.h
20603 F:      kernel/bpf/cpumap.c
20604 F:      kernel/bpf/devmap.c
20605 F:      net/core/xdp.c
20606 F:      samples/bpf/xdp*
20607 F:      tools/testing/selftests/bpf/*xdp*
20608 F:      tools/testing/selftests/bpf/*/*xdp*
20609 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20610 F:      drivers/net/ethernet/*/*/*xdp*
20611 K:      (?:\b|_)xdp(?:\b|_)
20612
20613 XDP SOCKETS (AF_XDP)
20614 M:      Björn Töpel <bjorn@kernel.org>
20615 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20616 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20617 L:      netdev@vger.kernel.org
20618 L:      bpf@vger.kernel.org
20619 S:      Maintained
20620 F:      Documentation/networking/af_xdp.rst
20621 F:      include/net/xdp_sock*
20622 F:      include/net/xsk_buff_pool.h
20623 F:      include/uapi/linux/if_xdp.h
20624 F:      include/uapi/linux/xdp_diag.h
20625 F:      include/net/netns/xdp.h
20626 F:      net/xdp/
20627 F:      samples/bpf/xdpsock*
20628 F:      tools/lib/bpf/xsk*
20629
20630 XEN BLOCK SUBSYSTEM
20631 M:      Roger Pau Monné <roger.pau@citrix.com>
20632 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20633 S:      Supported
20634 F:      drivers/block/xen*
20635 F:      drivers/block/xen-blkback/*
20636
20637 XEN HYPERVISOR ARM
20638 M:      Stefano Stabellini <sstabellini@kernel.org>
20639 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20640 S:      Maintained
20641 F:      arch/arm/include/asm/xen/
20642 F:      arch/arm/xen/
20643
20644 XEN HYPERVISOR ARM64
20645 M:      Stefano Stabellini <sstabellini@kernel.org>
20646 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20647 S:      Maintained
20648 F:      arch/arm64/include/asm/xen/
20649 F:      arch/arm64/xen/
20650
20651 XEN HYPERVISOR INTERFACE
20652 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20653 M:      Juergen Gross <jgross@suse.com>
20654 R:      Stefano Stabellini <sstabellini@kernel.org>
20655 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20656 S:      Supported
20657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20658 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20659 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20660 F:      arch/x86/include/asm/pvclock-abi.h
20661 F:      arch/x86/include/asm/xen/
20662 F:      arch/x86/platform/pvh/
20663 F:      arch/x86/xen/
20664 F:      drivers/*/xen-*front.c
20665 F:      drivers/xen/
20666 F:      include/uapi/xen/
20667 F:      include/xen/
20668
20669 XEN NETWORK BACKEND DRIVER
20670 M:      Wei Liu <wei.liu@kernel.org>
20671 M:      Paul Durrant <paul@xen.org>
20672 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20673 L:      netdev@vger.kernel.org
20674 S:      Supported
20675 F:      drivers/net/xen-netback/*
20676
20677 XEN PCI SUBSYSTEM
20678 M:      Juergen Gross <jgross@suse.com>
20679 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20680 S:      Supported
20681 F:      arch/x86/pci/*xen*
20682 F:      drivers/pci/*xen*
20683
20684 XEN PVSCSI DRIVERS
20685 M:      Juergen Gross <jgross@suse.com>
20686 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20687 L:      linux-scsi@vger.kernel.org
20688 S:      Supported
20689 F:      drivers/scsi/xen-scsifront.c
20690 F:      drivers/xen/xen-scsiback.c
20691 F:      include/xen/interface/io/vscsiif.h
20692
20693 XEN SOUND FRONTEND DRIVER
20694 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20695 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20696 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20697 S:      Supported
20698 F:      sound/xen/*
20699
20700 XEN SWIOTLB SUBSYSTEM
20701 M:      Juergen Gross <jgross@suse.com>
20702 M:      Stefano Stabellini <sstabellini@kernel.org>
20703 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20704 L:      iommu@lists.linux-foundation.org
20705 S:      Supported
20706 F:      arch/x86/xen/*swiotlb*
20707 F:      drivers/xen/*swiotlb*
20708
20709 XFS FILESYSTEM
20710 C:      irc://irc.oftc.net/xfs
20711 M:      Darrick J. Wong <djwong@kernel.org>
20712 M:      linux-xfs@vger.kernel.org
20713 L:      linux-xfs@vger.kernel.org
20714 S:      Supported
20715 W:      http://xfs.org/
20716 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20717 F:      Documentation/ABI/testing/sysfs-fs-xfs
20718 F:      Documentation/admin-guide/xfs.rst
20719 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20720 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20721 F:      fs/xfs/
20722 F:      include/uapi/linux/dqblk_xfs.h
20723 F:      include/uapi/linux/fsmap.h
20724
20725 XILINX AXI ETHERNET DRIVER
20726 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20727 S:      Maintained
20728 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20729
20730 XILINX CAN DRIVER
20731 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20732 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20733 L:      linux-can@vger.kernel.org
20734 S:      Maintained
20735 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20736 F:      drivers/net/can/xilinx_can.c
20737
20738 XILINX GPIO DRIVER
20739 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20740 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20741 R:      Michal Simek <michal.simek@xilinx.com>
20742 S:      Maintained
20743 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20744 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20745 F:      drivers/gpio/gpio-xilinx.c
20746 F:      drivers/gpio/gpio-zynq.c
20747
20748 XILINX SD-FEC IP CORES
20749 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20750 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20751 S:      Maintained
20752 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20753 F:      Documentation/misc-devices/xilinx_sdfec.rst
20754 F:      drivers/misc/Kconfig
20755 F:      drivers/misc/Makefile
20756 F:      drivers/misc/xilinx_sdfec.c
20757 F:      include/uapi/misc/xilinx_sdfec.h
20758
20759 XILINX UARTLITE SERIAL DRIVER
20760 M:      Peter Korsgaard <jacmet@sunsite.dk>
20761 L:      linux-serial@vger.kernel.org
20762 S:      Maintained
20763 F:      drivers/tty/serial/uartlite.c
20764
20765 XILINX VIDEO IP CORES
20766 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20767 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20768 L:      linux-media@vger.kernel.org
20769 S:      Supported
20770 T:      git git://linuxtv.org/media_tree.git
20771 F:      Documentation/devicetree/bindings/media/xilinx/
20772 F:      drivers/media/platform/xilinx/
20773 F:      include/uapi/linux/xilinx-v4l2-controls.h
20774
20775 XILINX ZYNQMP DPDMA DRIVER
20776 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20777 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20778 L:      dmaengine@vger.kernel.org
20779 S:      Supported
20780 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20781 F:      drivers/dma/xilinx/xilinx_dpdma.c
20782 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20783
20784 XILINX ZYNQMP PSGTR PHY DRIVER
20785 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20786 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20787 L:      linux-kernel@vger.kernel.org
20788 S:      Supported
20789 T:      git https://github.com/Xilinx/linux-xlnx.git
20790 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20791 F:      drivers/phy/xilinx/phy-zynqmp.c
20792
20793 XILLYBUS DRIVER
20794 M:      Eli Billauer <eli.billauer@gmail.com>
20795 L:      linux-kernel@vger.kernel.org
20796 S:      Supported
20797 F:      drivers/char/xillybus/
20798
20799 XLP9XX I2C DRIVER
20800 M:      George Cherian <gcherian@marvell.com>
20801 L:      linux-i2c@vger.kernel.org
20802 S:      Supported
20803 W:      http://www.marvell.com
20804 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20805 F:      drivers/i2c/busses/i2c-xlp9xx.c
20806
20807 XRA1403 GPIO EXPANDER
20808 M:      Nandor Han <nandor.han@ge.com>
20809 M:      Semi Malinen <semi.malinen@ge.com>
20810 L:      linux-gpio@vger.kernel.org
20811 S:      Maintained
20812 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20813 F:      drivers/gpio/gpio-xra1403.c
20814
20815 XTENSA XTFPGA PLATFORM SUPPORT
20816 M:      Max Filippov <jcmvbkbc@gmail.com>
20817 L:      linux-xtensa@linux-xtensa.org
20818 S:      Maintained
20819 F:      drivers/spi/spi-xtensa-xtfpga.c
20820 F:      sound/soc/xtensa/xtfpga-i2s.c
20821
20822 YAM DRIVER FOR AX.25
20823 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20824 L:      linux-hams@vger.kernel.org
20825 S:      Maintained
20826 F:      drivers/net/hamradio/yam*
20827 F:      include/linux/yam.h
20828
20829 YAMA SECURITY MODULE
20830 M:      Kees Cook <keescook@chromium.org>
20831 S:      Supported
20832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20833 F:      Documentation/admin-guide/LSM/Yama.rst
20834 F:      security/yama/
20835
20836 YEALINK PHONE DRIVER
20837 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20838 L:      usbb2k-api-dev@nongnu.org
20839 S:      Maintained
20840 F:      Documentation/input/devices/yealink.rst
20841 F:      drivers/input/misc/yealink.*
20842
20843 Z8530 DRIVER FOR AX.25
20844 M:      Joerg Reuter <jreuter@yaina.de>
20845 L:      linux-hams@vger.kernel.org
20846 S:      Maintained
20847 W:      http://yaina.de/jreuter/
20848 W:      http://www.qsl.net/dl1bke/
20849 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20850 F:      drivers/net/hamradio/*scc.c
20851 F:      drivers/net/hamradio/z8530.h
20852
20853 ZBUD COMPRESSED PAGE ALLOCATOR
20854 M:      Seth Jennings <sjenning@redhat.com>
20855 M:      Dan Streetman <ddstreet@ieee.org>
20856 L:      linux-mm@kvack.org
20857 S:      Maintained
20858 F:      mm/zbud.c
20859
20860 ZD1211RW WIRELESS DRIVER
20861 M:      Ulrich Kunitz <kune@deine-taler.de>
20862 L:      linux-wireless@vger.kernel.org
20863 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20864 S:      Maintained
20865 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20866 F:      drivers/net/wireless/zydas/zd1211rw/
20867
20868 ZD1301 MEDIA DRIVER
20869 M:      Antti Palosaari <crope@iki.fi>
20870 L:      linux-media@vger.kernel.org
20871 S:      Maintained
20872 W:      https://linuxtv.org/
20873 W:      http://palosaari.fi/linux/
20874 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20875 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20876
20877 ZD1301_DEMOD MEDIA DRIVER
20878 M:      Antti Palosaari <crope@iki.fi>
20879 L:      linux-media@vger.kernel.org
20880 S:      Maintained
20881 W:      https://linuxtv.org/
20882 W:      http://palosaari.fi/linux/
20883 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20884 F:      drivers/media/dvb-frontends/zd1301_demod*
20885
20886 ZHAOXIN PROCESSOR SUPPORT
20887 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20888 L:      linux-kernel@vger.kernel.org
20889 S:      Maintained
20890 F:      arch/x86/kernel/cpu/zhaoxin.c
20891
20892 ZONEFS FILESYSTEM
20893 M:      Damien Le Moal <damien.lemoal@wdc.com>
20894 M:      Naohiro Aota <naohiro.aota@wdc.com>
20895 R:      Johannes Thumshirn <jth@kernel.org>
20896 L:      linux-fsdevel@vger.kernel.org
20897 S:      Maintained
20898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20899 F:      Documentation/filesystems/zonefs.rst
20900 F:      fs/zonefs/
20901
20902 ZPOOL COMPRESSED PAGE STORAGE API
20903 M:      Dan Streetman <ddstreet@ieee.org>
20904 L:      linux-mm@kvack.org
20905 S:      Maintained
20906 F:      include/linux/zpool.h
20907 F:      mm/zpool.c
20908
20909 ZR36067 VIDEO FOR LINUX DRIVER
20910 M:      Corentin Labbe <clabbe@baylibre.com>
20911 L:      mjpeg-users@lists.sourceforge.net
20912 L:      linux-media@vger.kernel.org
20913 S:      Maintained
20914 W:      http://mjpeg.sourceforge.net/driver-zoran/
20915 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20916 F:      Documentation/driver-api/media/drivers/zoran.rst
20917 F:      drivers/staging/media/zoran/
20918
20919 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20920 M:      Minchan Kim <minchan@kernel.org>
20921 M:      Nitin Gupta <ngupta@vflare.org>
20922 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20923 L:      linux-kernel@vger.kernel.org
20924 S:      Maintained
20925 F:      Documentation/admin-guide/blockdev/zram.rst
20926 F:      drivers/block/zram/
20927
20928 ZS DECSTATION Z85C30 SERIAL DRIVER
20929 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20930 S:      Maintained
20931 F:      drivers/tty/serial/zs.*
20932
20933 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20934 M:      Minchan Kim <minchan@kernel.org>
20935 M:      Nitin Gupta <ngupta@vflare.org>
20936 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20937 L:      linux-mm@kvack.org
20938 S:      Maintained
20939 F:      Documentation/vm/zsmalloc.rst
20940 F:      include/linux/zsmalloc.h
20941 F:      mm/zsmalloc.c
20942
20943 ZSWAP COMPRESSED SWAP CACHING
20944 M:      Seth Jennings <sjenning@redhat.com>
20945 M:      Dan Streetman <ddstreet@ieee.org>
20946 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20947 L:      linux-mm@kvack.org
20948 S:      Maintained
20949 F:      mm/zswap.c
20950
20951 THE REST
20952 M:      Linus Torvalds <torvalds@linux-foundation.org>
20953 L:      linux-kernel@vger.kernel.org
20954 S:      Buried alive in reporters
20955 Q:      http://patchwork.kernel.org/project/LKML/list/
20956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20957 F:      *
20958 F:      */