Merge tag 'hwmon-for-v5.15' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck...
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      Erik Kaneda <erik.kaneda@intel.com>
368 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      devel@acpica.org
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M:      Zhang Rui <rui.zhang@intel.com>
384 L:      linux-acpi@vger.kernel.org
385 S:      Supported
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 F:      drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
392 M:      Hanjun Guo <guohanjun@huawei.com>
393 M:      Sudeep Holla <sudeep.holla@arm.com>
394 L:      linux-acpi@vger.kernel.org
395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <hdegoede@redhat.com>
401 L:      platform-driver-x86@vger.kernel.org
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI VIOT DRIVER
434 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
435 L:      linux-acpi@vger.kernel.org
436 L:      iommu@lists.linux-foundation.org
437 S:      Maintained
438 F:      drivers/acpi/viot.c
439 F:      include/linux/acpi_viot.h
440
441 ACPI WMI DRIVER
442 L:      platform-driver-x86@vger.kernel.org
443 S:      Orphan
444 F:      drivers/platform/x86/wmi.c
445 F:      include/uapi/linux/wmi.h
446
447 ACRN HYPERVISOR SERVICE MODULE
448 M:      Fei Li <fei1.li@intel.com>
449 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
450 S:      Supported
451 W:      https://projectacrn.org
452 F:      Documentation/virt/acrn/
453 F:      drivers/virt/acrn/
454 F:      include/uapi/linux/acrn.h
455
456 AD1889 ALSA SOUND DRIVER
457 L:      linux-parisc@vger.kernel.org
458 S:      Maintained
459 W:      https://parisc.wiki.kernel.org/index.php/AD1889
460 F:      sound/pci/ad1889.*
461
462 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
463 M:      Michael Hennerich <michael.hennerich@analog.com>
464 S:      Supported
465 W:      http://wiki.analog.com/AD5254
466 W:      http://ez.analog.com/community/linux-device-drivers
467 F:      drivers/misc/ad525x_dpot.c
468
469 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
470 M:      Michael Hennerich <michael.hennerich@analog.com>
471 S:      Supported
472 W:      http://wiki.analog.com/AD5398
473 W:      http://ez.analog.com/community/linux-device-drivers
474 F:      drivers/regulator/ad5398.c
475
476 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD7142
480 W:      http://ez.analog.com/community/linux-device-drivers
481 F:      drivers/input/misc/ad714x.c
482
483 AD7877 TOUCHSCREEN DRIVER
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD7877
487 W:      http://ez.analog.com/community/linux-device-drivers
488 F:      drivers/input/touchscreen/ad7877.c
489
490 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
491 M:      Michael Hennerich <michael.hennerich@analog.com>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7879
494 W:      http://ez.analog.com/community/linux-device-drivers
495 F:      drivers/input/touchscreen/ad7879.c
496
497 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
498 M:      Jiri Kosina <jikos@kernel.org>
499 S:      Maintained
500
501 ADF7242 IEEE 802.15.4 RADIO DRIVER
502 M:      Michael Hennerich <michael.hennerich@analog.com>
503 L:      linux-wpan@vger.kernel.org
504 S:      Supported
505 W:      https://wiki.analog.com/ADF7242
506 W:      http://ez.analog.com/community/linux-device-drivers
507 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
508 F:      drivers/net/ieee802154/adf7242.c
509
510 ADM1025 HARDWARE MONITOR DRIVER
511 M:      Jean Delvare <jdelvare@suse.com>
512 L:      linux-hwmon@vger.kernel.org
513 S:      Maintained
514 F:      Documentation/hwmon/adm1025.rst
515 F:      drivers/hwmon/adm1025.c
516
517 ADM1029 HARDWARE MONITOR DRIVER
518 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
519 L:      linux-hwmon@vger.kernel.org
520 S:      Maintained
521 F:      drivers/hwmon/adm1029.c
522
523 ADM8211 WIRELESS DRIVER
524 L:      linux-wireless@vger.kernel.org
525 S:      Orphan
526 W:      https://wireless.wiki.kernel.org/
527 F:      drivers/net/wireless/admtek/adm8211.*
528
529 ADP1653 FLASH CONTROLLER DRIVER
530 M:      Sakari Ailus <sakari.ailus@iki.fi>
531 L:      linux-media@vger.kernel.org
532 S:      Maintained
533 F:      drivers/media/i2c/adp1653.c
534 F:      include/media/i2c/adp1653.h
535
536 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
537 M:      Michael Hennerich <michael.hennerich@analog.com>
538 S:      Supported
539 W:      http://wiki.analog.com/ADP5520
540 W:      http://ez.analog.com/community/linux-device-drivers
541 F:      drivers/gpio/gpio-adp5520.c
542 F:      drivers/input/keyboard/adp5520-keys.c
543 F:      drivers/leds/leds-adp5520.c
544 F:      drivers/mfd/adp5520.c
545 F:      drivers/video/backlight/adp5520_bl.c
546
547 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
548 M:      Michael Hennerich <michael.hennerich@analog.com>
549 S:      Supported
550 W:      http://wiki.analog.com/ADP5588
551 W:      http://ez.analog.com/community/linux-device-drivers
552 F:      drivers/gpio/gpio-adp5588.c
553 F:      drivers/input/keyboard/adp5588-keys.c
554
555 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
556 M:      Michael Hennerich <michael.hennerich@analog.com>
557 S:      Supported
558 W:      http://wiki.analog.com/ADP8860
559 W:      http://ez.analog.com/community/linux-device-drivers
560 F:      drivers/video/backlight/adp8860_bl.c
561
562 ADT746X FAN DRIVER
563 M:      Colin Leroy <colin@colino.net>
564 S:      Maintained
565 F:      drivers/macintosh/therm_adt746x.c
566
567 ADT7475 HARDWARE MONITOR DRIVER
568 M:      Jean Delvare <jdelvare@suse.com>
569 L:      linux-hwmon@vger.kernel.org
570 S:      Maintained
571 F:      Documentation/hwmon/adt7475.rst
572 F:      drivers/hwmon/adt7475.c
573
574 ADVANSYS SCSI DRIVER
575 M:      Matthew Wilcox <willy@infradead.org>
576 M:      Hannes Reinecke <hare@suse.com>
577 L:      linux-scsi@vger.kernel.org
578 S:      Maintained
579 F:      Documentation/scsi/advansys.rst
580 F:      drivers/scsi/advansys.c
581
582 ADVANTECH SWBTN DRIVER
583 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
584 L:      platform-driver-x86@vger.kernel.org
585 S:      Maintained
586 F:      drivers/platform/x86/adv_swbutton.c
587
588 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
589 M:      Michael Hennerich <michael.hennerich@analog.com>
590 S:      Supported
591 W:      http://wiki.analog.com/ADXL345
592 W:      http://ez.analog.com/community/linux-device-drivers
593 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
594 F:      drivers/input/misc/adxl34x.c
595
596 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
597 M:      Michael Hennerich <michael.hennerich@analog.com>
598 S:      Supported
599 W:      http://ez.analog.com/community/linux-device-drivers
600 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
601 F:      drivers/iio/accel/adxl372.c
602 F:      drivers/iio/accel/adxl372_i2c.c
603 F:      drivers/iio/accel/adxl372_spi.c
604
605 AF9013 MEDIA DRIVER
606 M:      Antti Palosaari <crope@iki.fi>
607 L:      linux-media@vger.kernel.org
608 S:      Maintained
609 W:      https://linuxtv.org
610 W:      http://palosaari.fi/linux/
611 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
612 T:      git git://linuxtv.org/anttip/media_tree.git
613 F:      drivers/media/dvb-frontends/af9013*
614
615 AF9033 MEDIA DRIVER
616 M:      Antti Palosaari <crope@iki.fi>
617 L:      linux-media@vger.kernel.org
618 S:      Maintained
619 W:      https://linuxtv.org
620 W:      http://palosaari.fi/linux/
621 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
622 T:      git git://linuxtv.org/anttip/media_tree.git
623 F:      drivers/media/dvb-frontends/af9033*
624
625 AFFS FILE SYSTEM
626 M:      David Sterba <dsterba@suse.com>
627 L:      linux-fsdevel@vger.kernel.org
628 S:      Odd Fixes
629 F:      Documentation/filesystems/affs.rst
630 F:      fs/affs/
631
632 AFS FILESYSTEM
633 M:      David Howells <dhowells@redhat.com>
634 M:      Marc Dionne <marc.dionne@auristor.com>
635 L:      linux-afs@lists.infradead.org
636 S:      Supported
637 W:      https://www.infradead.org/~dhowells/kafs/
638 F:      Documentation/filesystems/afs.rst
639 F:      fs/afs/
640 F:      include/trace/events/afs.h
641
642 AGPGART DRIVER
643 M:      David Airlie <airlied@linux.ie>
644 S:      Maintained
645 T:      git git://anongit.freedesktop.org/drm/drm
646 F:      drivers/char/agp/
647 F:      include/linux/agp*
648 F:      include/uapi/linux/agp*
649
650 AHA152X SCSI DRIVER
651 M:      "Juergen E. Fischer" <fischer@norbit.de>
652 L:      linux-scsi@vger.kernel.org
653 S:      Maintained
654 F:      drivers/scsi/aha152x*
655 F:      drivers/scsi/pcmcia/aha152x*
656
657 AIC7XXX / AIC79XX SCSI DRIVER
658 M:      Hannes Reinecke <hare@suse.com>
659 L:      linux-scsi@vger.kernel.org
660 S:      Maintained
661 F:      drivers/scsi/aic7xxx/
662
663 AIMSLAB FM RADIO RECEIVER DRIVER
664 M:      Hans Verkuil <hverkuil@xs4all.nl>
665 L:      linux-media@vger.kernel.org
666 S:      Maintained
667 W:      https://linuxtv.org
668 T:      git git://linuxtv.org/media_tree.git
669 F:      drivers/media/radio/radio-aimslab*
670
671 AIO
672 M:      Benjamin LaHaise <bcrl@kvack.org>
673 L:      linux-aio@kvack.org
674 S:      Supported
675 F:      fs/aio.c
676 F:      include/linux/*aio*.h
677
678 AIRSPY MEDIA DRIVER
679 M:      Antti Palosaari <crope@iki.fi>
680 L:      linux-media@vger.kernel.org
681 S:      Maintained
682 W:      https://linuxtv.org
683 W:      http://palosaari.fi/linux/
684 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
685 T:      git git://linuxtv.org/anttip/media_tree.git
686 F:      drivers/media/usb/airspy/
687
688 ALACRITECH GIGABIT ETHERNET DRIVER
689 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
690 S:      Maintained
691 F:      drivers/net/ethernet/alacritech/*
692
693 ALCATEL SPEEDTOUCH USB DRIVER
694 M:      Duncan Sands <duncan.sands@free.fr>
695 L:      linux-usb@vger.kernel.org
696 S:      Maintained
697 W:      http://www.linux-usb.org/SpeedTouch/
698 F:      drivers/usb/atm/speedtch.c
699 F:      drivers/usb/atm/usbatm.c
700
701 ALCHEMY AU1XX0 MMC DRIVER
702 M:      Manuel Lauss <manuel.lauss@gmail.com>
703 S:      Maintained
704 F:      drivers/mmc/host/au1xmmc.c
705
706 ALI1563 I2C DRIVER
707 M:      Rudolf Marek <r.marek@assembler.cz>
708 L:      linux-i2c@vger.kernel.org
709 S:      Maintained
710 F:      Documentation/i2c/busses/i2c-ali1563.rst
711 F:      drivers/i2c/busses/i2c-ali1563.c
712
713 ALIENWARE WMI DRIVER
714 L:      Dell.Client.Kernel@dell.com
715 S:      Maintained
716 F:      drivers/platform/x86/dell/alienware-wmi.c
717
718 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
719 M:      Tomislav Denis <tomislav.denis@avl.com>
720 L:      linux-iio@vger.kernel.org
721 S:      Maintained
722 W:      http://www.allsensors.com/
723 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
724 F:      drivers/iio/pressure/dlhl60d.c
725
726 ALLEGRO DVT VIDEO IP CORE DRIVER
727 M:      Michael Tretter <m.tretter@pengutronix.de>
728 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
729 L:      linux-media@vger.kernel.org
730 S:      Maintained
731 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
732 F:      drivers/media/platform/allegro-dvt/
733
734 ALLWINNER A10 CSI DRIVER
735 M:      Maxime Ripard <mripard@kernel.org>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 T:      git git://linuxtv.org/media_tree.git
739 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
740 F:      drivers/media/platform/sunxi/sun4i-csi/
741
742 ALLWINNER CPUFREQ DRIVER
743 M:      Yangtao Li <tiny.windzz@gmail.com>
744 L:      linux-pm@vger.kernel.org
745 S:      Maintained
746 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
747 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
748
749 ALLWINNER CRYPTO DRIVERS
750 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
751 L:      linux-crypto@vger.kernel.org
752 S:      Maintained
753 F:      drivers/crypto/allwinner/
754
755 ALLWINNER HARDWARE SPINLOCK SUPPORT
756 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
757 S:      Maintained
758 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
759 F:      drivers/hwspinlock/sun6i_hwspinlock.c
760
761 ALLWINNER THERMAL DRIVER
762 M:      Vasily Khoruzhick <anarsoul@gmail.com>
763 M:      Yangtao Li <tiny.windzz@gmail.com>
764 L:      linux-pm@vger.kernel.org
765 S:      Maintained
766 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
767 F:      drivers/thermal/sun8i_thermal.c
768
769 ALLWINNER VPU DRIVER
770 M:      Maxime Ripard <mripard@kernel.org>
771 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
772 L:      linux-media@vger.kernel.org
773 S:      Maintained
774 F:      drivers/staging/media/sunxi/cedrus/
775
776 ALPHA PORT
777 M:      Richard Henderson <rth@twiddle.net>
778 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
779 M:      Matt Turner <mattst88@gmail.com>
780 L:      linux-alpha@vger.kernel.org
781 S:      Odd Fixes
782 F:      arch/alpha/
783
784 ALPS PS/2 TOUCHPAD DRIVER
785 R:      Pali Rohár <pali@kernel.org>
786 F:      drivers/input/mouse/alps.*
787
788 ALTERA I2C CONTROLLER DRIVER
789 M:      Thor Thayer <thor.thayer@linux.intel.com>
790 S:      Maintained
791 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
792 F:      drivers/i2c/busses/i2c-altera.c
793
794 ALTERA MAILBOX DRIVER
795 M:      Ley Foon Tan <ley.foon.tan@intel.com>
796 S:      Maintained
797 F:      drivers/mailbox/mailbox-altera.c
798
799 ALTERA MSGDMA IP CORE DRIVER
800 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
801 R:      Stefan Roese <sr@denx.de>
802 L:      dmaengine@vger.kernel.org
803 S:      Odd Fixes
804 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
805 F:      drivers/dma/altera-msgdma.c
806
807 ALTERA PIO DRIVER
808 M:      Joyce Ooi <joyce.ooi@intel.com>
809 L:      linux-gpio@vger.kernel.org
810 S:      Maintained
811 F:      drivers/gpio/gpio-altera.c
812
813 ALTERA SYSTEM MANAGER DRIVER
814 M:      Thor Thayer <thor.thayer@linux.intel.com>
815 S:      Maintained
816 F:      drivers/mfd/altera-sysmgr.c
817 F:      include/linux/mfd/altera-sysmgr.h
818
819 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
820 M:      Thor Thayer <thor.thayer@linux.intel.com>
821 S:      Maintained
822 F:      drivers/gpio/gpio-altera-a10sr.c
823 F:      drivers/mfd/altera-a10sr.c
824 F:      drivers/reset/reset-a10sr.c
825 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
826 F:      include/linux/mfd/altera-a10sr.h
827
828 ALTERA TRIPLE SPEED ETHERNET DRIVER
829 M:      Joyce Ooi <joyce.ooi@intel.com>
830 L:      netdev@vger.kernel.org
831 S:      Maintained
832 F:      drivers/net/ethernet/altera/
833
834 ALTERA UART/JTAG UART SERIAL DRIVERS
835 M:      Tobias Klauser <tklauser@distanz.ch>
836 L:      linux-serial@vger.kernel.org
837 S:      Maintained
838 F:      drivers/tty/serial/altera_jtaguart.c
839 F:      drivers/tty/serial/altera_uart.c
840 F:      include/linux/altera_jtaguart.h
841 F:      include/linux/altera_uart.h
842
843 AMAZON ANNAPURNA LABS FIC DRIVER
844 M:      Talel Shenhar <talel@amazon.com>
845 S:      Maintained
846 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
847 F:      drivers/irqchip/irq-al-fic.c
848
849 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
850 M:      Talel Shenhar <talel@amazon.com>
851 M:      Talel Shenhar <talelshenhar@gmail.com>
852 S:      Maintained
853 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
854 F:      drivers/edac/al_mc_edac.c
855
856 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
857 M:      Talel Shenhar <talel@amazon.com>
858 S:      Maintained
859 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
860 F:      drivers/thermal/thermal_mmio.c
861
862 AMAZON ETHERNET DRIVERS
863 M:      Netanel Belgazal <netanel@amazon.com>
864 M:      Arthur Kiyanovski <akiyano@amazon.com>
865 R:      Guy Tzalik <gtzalik@amazon.com>
866 R:      Saeed Bishara <saeedb@amazon.com>
867 L:      netdev@vger.kernel.org
868 S:      Supported
869 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
870 F:      drivers/net/ethernet/amazon/
871
872 AMAZON RDMA EFA DRIVER
873 M:      Gal Pressman <galpress@amazon.com>
874 R:      Yossi Leybovich <sleybo@amazon.com>
875 L:      linux-rdma@vger.kernel.org
876 S:      Supported
877 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
878 F:      drivers/infiniband/hw/efa/
879 F:      include/uapi/rdma/efa-abi.h
880
881 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
882 M:      Tom Lendacky <thomas.lendacky@amd.com>
883 M:      John Allen <john.allen@amd.com>
884 L:      linux-crypto@vger.kernel.org
885 S:      Supported
886 F:      drivers/crypto/ccp/
887 F:      include/linux/ccp.h
888
889 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
890 M:      Brijesh Singh <brijesh.singh@amd.com>
891 M:      Tom Lendacky <thomas.lendacky@amd.com>
892 L:      linux-crypto@vger.kernel.org
893 S:      Supported
894 F:      drivers/crypto/ccp/sev*
895 F:      include/uapi/linux/psp-sev.h
896
897 AMD DISPLAY CORE
898 M:      Harry Wentland <harry.wentland@amd.com>
899 M:      Leo Li <sunpeng.li@amd.com>
900 L:      amd-gfx@lists.freedesktop.org
901 S:      Supported
902 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
903 F:      drivers/gpu/drm/amd/display/
904
905 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
906 M:      Huang Rui <ray.huang@amd.com>
907 L:      linux-hwmon@vger.kernel.org
908 S:      Supported
909 F:      Documentation/hwmon/fam15h_power.rst
910 F:      drivers/hwmon/fam15h_power.c
911
912 AMD FCH GPIO DRIVER
913 M:      Enrico Weigelt, metux IT consult <info@metux.net>
914 L:      linux-gpio@vger.kernel.org
915 S:      Maintained
916 F:      drivers/gpio/gpio-amd-fch.c
917 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
918
919 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
920 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
921 S:      Orphan
922 F:      drivers/usb/gadget/udc/amd5536udc.*
923
924 AMD GEODE PROCESSOR/CHIPSET SUPPORT
925 M:      Andres Salomon <dilinger@queued.net>
926 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
927 S:      Supported
928 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
929 F:      arch/x86/include/asm/geode.h
930 F:      drivers/char/hw_random/geode-rng.c
931 F:      drivers/crypto/geode*
932 F:      drivers/video/fbdev/geode/
933
934 AMD IOMMU (AMD-VI)
935 M:      Joerg Roedel <joro@8bytes.org>
936 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
937 L:      iommu@lists.linux-foundation.org
938 S:      Maintained
939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
940 F:      drivers/iommu/amd/
941 F:      include/linux/amd-iommu.h
942
943 AMD KFD
944 M:      Felix Kuehling <Felix.Kuehling@amd.com>
945 L:      amd-gfx@lists.freedesktop.org
946 S:      Supported
947 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
948 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
949 F:      drivers/gpu/drm/amd/amdkfd/
950 F:      drivers/gpu/drm/amd/include/cik_structs.h
951 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
952 F:      drivers/gpu/drm/amd/include/v9_structs.h
953 F:      drivers/gpu/drm/amd/include/vi_structs.h
954 F:      include/uapi/linux/kfd_ioctl.h
955
956 AMD SPI DRIVER
957 M:      Sanjay R Mehta <sanju.mehta@amd.com>
958 S:      Maintained
959 F:      drivers/spi/spi-amd.c
960
961 AMD MP2 I2C DRIVER
962 M:      Elie Morisse <syniurge@gmail.com>
963 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
964 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
965 L:      linux-i2c@vger.kernel.org
966 S:      Maintained
967 F:      drivers/i2c/busses/i2c-amd-mp2*
968
969 AMD PMC DRIVER
970 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
971 L:      platform-driver-x86@vger.kernel.org
972 S:      Maintained
973 F:      drivers/platform/x86/amd-pmc.*
974
975 AMD POWERPLAY
976 M:      Evan Quan <evan.quan@amd.com>
977 L:      amd-gfx@lists.freedesktop.org
978 S:      Supported
979 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
980 F:      drivers/gpu/drm/amd/pm/powerplay/
981
982 AMD SEATTLE DEVICE TREE SUPPORT
983 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
984 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
985 M:      Tom Lendacky <thomas.lendacky@amd.com>
986 S:      Supported
987 F:      arch/arm64/boot/dts/amd/
988
989 AMD XGBE DRIVER
990 M:      Tom Lendacky <thomas.lendacky@amd.com>
991 L:      netdev@vger.kernel.org
992 S:      Supported
993 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
994 F:      drivers/net/ethernet/amd/xgbe/
995
996 AMD SENSOR FUSION HUB DRIVER
997 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
998 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
999 L:      linux-input@vger.kernel.org
1000 S:      Maintained
1001 F:      Documentation/hid/amd-sfh*
1002 F:      drivers/hid/amd-sfh-hid/
1003
1004 AMS AS73211 DRIVER
1005 M:      Christian Eggers <ceggers@arri.de>
1006 L:      linux-iio@vger.kernel.org
1007 S:      Maintained
1008 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1009 F:      drivers/iio/light/as73211.c
1010
1011 ANALOG DEVICES INC AD7192 DRIVER
1012 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1013 L:      linux-iio@vger.kernel.org
1014 S:      Supported
1015 W:      http://ez.analog.com/community/linux-device-drivers
1016 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1017 F:      drivers/iio/adc/ad7192.c
1018
1019 ANALOG DEVICES INC AD7292 DRIVER
1020 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1021 L:      linux-iio@vger.kernel.org
1022 S:      Supported
1023 W:      http://ez.analog.com/community/linux-device-drivers
1024 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1025 F:      drivers/iio/adc/ad7292.c
1026
1027 ANALOG DEVICES INC AD7768-1 DRIVER
1028 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1029 L:      linux-iio@vger.kernel.org
1030 S:      Supported
1031 W:      http://ez.analog.com/community/linux-device-drivers
1032 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1033 F:      drivers/iio/adc/ad7768-1.c
1034
1035 ANALOG DEVICES INC AD7780 DRIVER
1036 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1037 M:      Renato Lui Geh <renatogeh@gmail.com>
1038 L:      linux-iio@vger.kernel.org
1039 S:      Supported
1040 W:      http://ez.analog.com/community/linux-device-drivers
1041 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1042 F:      drivers/iio/adc/ad7780.c
1043
1044 ANALOG DEVICES INC AD9389B DRIVER
1045 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1046 L:      linux-media@vger.kernel.org
1047 S:      Maintained
1048 F:      drivers/media/i2c/ad9389b*
1049
1050 ANALOG DEVICES INC ADGS1408 DRIVER
1051 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1052 S:      Supported
1053 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1054 F:      drivers/mux/adgs1408.c
1055
1056 ANALOG DEVICES INC ADIN DRIVER
1057 M:      Michael Hennerich <michael.hennerich@analog.com>
1058 L:      netdev@vger.kernel.org
1059 S:      Supported
1060 W:      http://ez.analog.com/community/linux-device-drivers
1061 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1062 F:      drivers/net/phy/adin.c
1063
1064 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1065 M:      Nuno Sa <nuno.sa@analog.com>
1066 L:      linux-iio@vger.kernel.org
1067 S:      Supported
1068 F:      drivers/iio/imu/adis.c
1069 F:      include/linux/iio/imu/adis.h
1070
1071 ANALOG DEVICES INC ADIS16460 DRIVER
1072 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1073 L:      linux-iio@vger.kernel.org
1074 S:      Supported
1075 W:      http://ez.analog.com/community/linux-device-drivers
1076 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1077 F:      drivers/iio/imu/adis16460.c
1078
1079 ANALOG DEVICES INC ADIS16475 DRIVER
1080 M:      Nuno Sa <nuno.sa@analog.com>
1081 L:      linux-iio@vger.kernel.org
1082 W:      http://ez.analog.com/community/linux-device-drivers
1083 S:      Supported
1084 F:      drivers/iio/imu/adis16475.c
1085 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1086
1087 ANALOG DEVICES INC ADM1177 DRIVER
1088 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1089 L:      linux-hwmon@vger.kernel.org
1090 S:      Supported
1091 W:      http://ez.analog.com/community/linux-device-drivers
1092 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1093 F:      drivers/hwmon/adm1177.c
1094
1095 ANALOG DEVICES INC ADP5061 DRIVER
1096 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1097 L:      linux-pm@vger.kernel.org
1098 S:      Supported
1099 W:      http://ez.analog.com/community/linux-device-drivers
1100 F:      drivers/power/supply/adp5061.c
1101
1102 ANALOG DEVICES INC ADV7180 DRIVER
1103 M:      Lars-Peter Clausen <lars@metafoo.de>
1104 L:      linux-media@vger.kernel.org
1105 S:      Supported
1106 W:      http://ez.analog.com/community/linux-device-drivers
1107 F:      drivers/media/i2c/adv7180.c
1108 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1109
1110 ANALOG DEVICES INC ADV748X DRIVER
1111 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1112 L:      linux-media@vger.kernel.org
1113 S:      Maintained
1114 F:      drivers/media/i2c/adv748x/*
1115
1116 ANALOG DEVICES INC ADV7511 DRIVER
1117 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1118 L:      linux-media@vger.kernel.org
1119 S:      Maintained
1120 F:      drivers/media/i2c/adv7511*
1121
1122 ANALOG DEVICES INC ADV7604 DRIVER
1123 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1124 L:      linux-media@vger.kernel.org
1125 S:      Maintained
1126 F:      drivers/media/i2c/adv7604*
1127 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1128
1129 ANALOG DEVICES INC ADV7842 DRIVER
1130 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1131 L:      linux-media@vger.kernel.org
1132 S:      Maintained
1133 F:      drivers/media/i2c/adv7842*
1134
1135 ANALOG DEVICES INC ADXRS290 DRIVER
1136 M:      Nishant Malpani <nish.malpani25@gmail.com>
1137 L:      linux-iio@vger.kernel.org
1138 S:      Supported
1139 F:      drivers/iio/gyro/adxrs290.c
1140 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1141
1142 ANALOG DEVICES INC ASOC CODEC DRIVERS
1143 M:      Lars-Peter Clausen <lars@metafoo.de>
1144 M:      Nuno Sá <nuno.sa@analog.com>
1145 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1146 S:      Supported
1147 W:      http://wiki.analog.com/
1148 W:      http://ez.analog.com/community/linux-device-drivers
1149 F:      sound/soc/codecs/ad1*
1150 F:      sound/soc/codecs/ad7*
1151 F:      sound/soc/codecs/adau*
1152 F:      sound/soc/codecs/adav*
1153 F:      sound/soc/codecs/sigmadsp.*
1154 F:      sound/soc/codecs/ssm*
1155
1156 ANALOG DEVICES INC DMA DRIVERS
1157 M:      Lars-Peter Clausen <lars@metafoo.de>
1158 S:      Supported
1159 W:      http://ez.analog.com/community/linux-device-drivers
1160 F:      drivers/dma/dma-axi-dmac.c
1161
1162 ANALOG DEVICES INC IIO DRIVERS
1163 M:      Lars-Peter Clausen <lars@metafoo.de>
1164 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1165 S:      Supported
1166 W:      http://wiki.analog.com/
1167 W:      http://ez.analog.com/community/linux-device-drivers
1168 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1169 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1170 F:      Documentation/devicetree/bindings/iio/*/adi,*
1171 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1172 F:      drivers/iio/*/ad*
1173 F:      drivers/iio/adc/ltc249*
1174 F:      drivers/iio/amplifiers/hmc425a.c
1175 F:      drivers/staging/iio/*/ad*
1176 X:      drivers/iio/*/adjd*
1177
1178 ANALOGBITS PLL LIBRARIES
1179 M:      Paul Walmsley <paul.walmsley@sifive.com>
1180 S:      Supported
1181 F:      drivers/clk/analogbits/*
1182 F:      include/linux/clk/analogbits*
1183
1184 ANDES ARCHITECTURE
1185 M:      Nick Hu <nickhu@andestech.com>
1186 M:      Greentime Hu <green.hu@gmail.com>
1187 M:      Vincent Chen <deanbo422@gmail.com>
1188 S:      Supported
1189 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1190 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1191 F:      Documentation/devicetree/bindings/nds32/
1192 F:      arch/nds32/
1193 N:      nds32
1194 K:      nds32
1195
1196 ANDROID CONFIG FRAGMENTS
1197 M:      Rob Herring <robh@kernel.org>
1198 S:      Supported
1199 F:      kernel/configs/android*
1200
1201 ANDROID DRIVERS
1202 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1203 M:      Arve Hjønnevåg <arve@android.com>
1204 M:      Todd Kjos <tkjos@android.com>
1205 M:      Martijn Coenen <maco@android.com>
1206 M:      Joel Fernandes <joel@joelfernandes.org>
1207 M:      Christian Brauner <christian@brauner.io>
1208 M:      Hridya Valsaraju <hridya@google.com>
1209 M:      Suren Baghdasaryan <surenb@google.com>
1210 L:      linux-kernel@vger.kernel.org
1211 S:      Supported
1212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1213 F:      drivers/android/
1214 F:      drivers/staging/android/
1215
1216 ANDROID GOLDFISH PIC DRIVER
1217 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1218 S:      Supported
1219 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1220 F:      drivers/irqchip/irq-goldfish-pic.c
1221
1222 ANDROID GOLDFISH RTC DRIVER
1223 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1224 S:      Supported
1225 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1226 F:      drivers/rtc/rtc-goldfish.c
1227
1228 AOA (Apple Onboard Audio) ALSA DRIVER
1229 M:      Johannes Berg <johannes@sipsolutions.net>
1230 L:      linuxppc-dev@lists.ozlabs.org
1231 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1232 S:      Maintained
1233 F:      sound/aoa/
1234
1235 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1236 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1237 L:      linux-iio@vger.kernel.org
1238 S:      Maintained
1239 F:      drivers/iio/adc/stx104.c
1240
1241 APM DRIVER
1242 M:      Jiri Kosina <jikos@kernel.org>
1243 S:      Odd fixes
1244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1245 F:      arch/x86/kernel/apm_32.c
1246 F:      drivers/char/apm-emulation.c
1247 F:      include/linux/apm_bios.h
1248 F:      include/uapi/linux/apm_bios.h
1249
1250 APPARMOR SECURITY MODULE
1251 M:      John Johansen <john.johansen@canonical.com>
1252 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1253 S:      Supported
1254 W:      wiki.apparmor.net
1255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1256 F:      Documentation/admin-guide/LSM/apparmor.rst
1257 F:      security/apparmor/
1258
1259 APPLE BCM5974 MULTITOUCH DRIVER
1260 M:      Henrik Rydberg <rydberg@bitmath.org>
1261 L:      linux-input@vger.kernel.org
1262 S:      Odd fixes
1263 F:      drivers/input/mouse/bcm5974.c
1264
1265 APPLE SMC DRIVER
1266 M:      Henrik Rydberg <rydberg@bitmath.org>
1267 L:      linux-hwmon@vger.kernel.org
1268 S:      Odd fixes
1269 F:      drivers/hwmon/applesmc.c
1270
1271 APPLETALK NETWORK LAYER
1272 L:      netdev@vger.kernel.org
1273 S:      Odd fixes
1274 F:      drivers/net/appletalk/
1275 F:      include/linux/atalk.h
1276 F:      include/uapi/linux/atalk.h
1277 F:      net/appletalk/
1278
1279 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1280 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1281 S:      Supported
1282 F:      arch/arm64/boot/dts/apm/
1283
1284 APPLIED MICRO (APM) X-GENE SOC EDAC
1285 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1286 S:      Supported
1287 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1288 F:      drivers/edac/xgene_edac.c
1289
1290 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1291 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1292 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1293 S:      Supported
1294 F:      drivers/net/ethernet/apm/xgene-v2/
1295
1296 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1297 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1298 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1299 M:      Quan Nguyen <quan@os.amperecomputing.com>
1300 S:      Supported
1301 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1302 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1303 F:      drivers/net/ethernet/apm/xgene/
1304 F:      drivers/net/mdio/mdio-xgene.c
1305
1306 APPLIED MICRO (APM) X-GENE SOC PMU
1307 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1308 S:      Supported
1309 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1310 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1311 F:      drivers/perf/xgene_pmu.c
1312
1313 APTINA CAMERA SENSOR PLL
1314 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1315 L:      linux-media@vger.kernel.org
1316 S:      Maintained
1317 F:      drivers/media/i2c/aptina-pll.*
1318
1319 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1320 M:      Aleksa Savic <savicaleksa83@gmail.com>
1321 L:      linux-hwmon@vger.kernel.org
1322 S:      Maintained
1323 F:      Documentation/hwmon/aquacomputer_d5next.rst
1324 F:      drivers/hwmon/aquacomputer_d5next.c
1325
1326 AQUANTIA ETHERNET DRIVER (atlantic)
1327 M:      Igor Russkikh <irusskikh@marvell.com>
1328 L:      netdev@vger.kernel.org
1329 S:      Supported
1330 W:      https://www.marvell.com/
1331 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1332 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1333 F:      drivers/net/ethernet/aquantia/atlantic/
1334
1335 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1336 M:      Egor Pomozov <epomozov@marvell.com>
1337 L:      netdev@vger.kernel.org
1338 S:      Supported
1339 W:      http://www.aquantia.com
1340 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1341
1342 ARASAN NAND CONTROLLER DRIVER
1343 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1344 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1345 L:      linux-mtd@lists.infradead.org
1346 S:      Maintained
1347 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1348 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1349
1350 ARC FRAMEBUFFER DRIVER
1351 M:      Jaya Kumar <jayalk@intworks.biz>
1352 S:      Maintained
1353 F:      drivers/video/fbdev/arcfb.c
1354 F:      drivers/video/fbdev/core/fb_defio.c
1355
1356 ARC PGU DRM DRIVER
1357 M:      Alexey Brodkin <abrodkin@synopsys.com>
1358 S:      Supported
1359 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1360 F:      drivers/gpu/drm/tiny/arcpgu.c
1361
1362 ARCNET NETWORK LAYER
1363 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1364 L:      netdev@vger.kernel.org
1365 S:      Maintained
1366 F:      drivers/net/arcnet/
1367 F:      include/uapi/linux/if_arcnet.h
1368
1369 ARM ARCHITECTED TIMER DRIVER
1370 M:      Mark Rutland <mark.rutland@arm.com>
1371 M:      Marc Zyngier <maz@kernel.org>
1372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1373 S:      Maintained
1374 F:      arch/arm/include/asm/arch_timer.h
1375 F:      arch/arm64/include/asm/arch_timer.h
1376 F:      drivers/clocksource/arm_arch_timer.c
1377
1378 ARM HDLCD DRM DRIVER
1379 M:      Liviu Dudau <liviu.dudau@arm.com>
1380 S:      Supported
1381 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1382 F:      drivers/gpu/drm/arm/hdlcd_*
1383
1384 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1385 M:      Linus Walleij <linus.walleij@linaro.org>
1386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1387 S:      Maintained
1388 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1389 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1390 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1391 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1392 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1393 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1394 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1395 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1396 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1397 F:      arch/arm/boot/dts/arm-realview-*
1398 F:      arch/arm/boot/dts/integrator*
1399 F:      arch/arm/boot/dts/versatile*
1400 F:      arch/arm/mach-integrator/
1401 F:      arch/arm/mach-realview/
1402 F:      arch/arm/mach-versatile/
1403 F:      arch/arm/plat-versatile/
1404 F:      drivers/bus/arm-integrator-lm.c
1405 F:      drivers/clk/versatile/
1406 F:      drivers/i2c/busses/i2c-versatile.c
1407 F:      drivers/irqchip/irq-versatile-fpga.c
1408 F:      drivers/mtd/maps/physmap-versatile.*
1409 F:      drivers/power/reset/arm-versatile-reboot.c
1410 F:      drivers/soc/versatile/
1411
1412 ARM KOMEDA DRM-KMS DRIVER
1413 M:      James (Qian) Wang <james.qian.wang@arm.com>
1414 M:      Liviu Dudau <liviu.dudau@arm.com>
1415 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1416 L:      Mali DP Maintainers <malidp@foss.arm.com>
1417 S:      Supported
1418 T:      git git://anongit.freedesktop.org/drm/drm-misc
1419 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1420 F:      Documentation/gpu/komeda-kms.rst
1421 F:      drivers/gpu/drm/arm/display/include/
1422 F:      drivers/gpu/drm/arm/display/komeda/
1423
1424 ARM MALI PANFROST DRM DRIVER
1425 M:      Rob Herring <robh@kernel.org>
1426 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1427 R:      Steven Price <steven.price@arm.com>
1428 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1429 L:      dri-devel@lists.freedesktop.org
1430 S:      Supported
1431 T:      git git://anongit.freedesktop.org/drm/drm-misc
1432 F:      drivers/gpu/drm/panfrost/
1433 F:      include/uapi/drm/panfrost_drm.h
1434
1435 ARM MALI-DP DRM DRIVER
1436 M:      Liviu Dudau <liviu.dudau@arm.com>
1437 M:      Brian Starkey <brian.starkey@arm.com>
1438 L:      Mali DP Maintainers <malidp@foss.arm.com>
1439 S:      Supported
1440 T:      git git://anongit.freedesktop.org/drm/drm-misc
1441 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1442 F:      Documentation/gpu/afbc.rst
1443 F:      drivers/gpu/drm/arm/
1444
1445 ARM MFM AND FLOPPY DRIVERS
1446 M:      Ian Molton <spyro@f2s.com>
1447 S:      Maintained
1448 F:      arch/arm/include/asm/floppy.h
1449 F:      arch/arm/mach-rpc/floppydma.S
1450
1451 ARM PMU PROFILING AND DEBUGGING
1452 M:      Will Deacon <will@kernel.org>
1453 M:      Mark Rutland <mark.rutland@arm.com>
1454 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1455 S:      Maintained
1456 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1457 F:      Documentation/devicetree/bindings/perf/
1458 F:      arch/arm*/include/asm/hw_breakpoint.h
1459 F:      arch/arm*/include/asm/perf_event.h
1460 F:      arch/arm*/kernel/hw_breakpoint.c
1461 F:      arch/arm*/kernel/perf_*
1462 F:      drivers/perf/
1463 F:      include/linux/perf/arm_pmu.h
1464
1465 ARM PORT
1466 M:      Russell King <linux@armlinux.org.uk>
1467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1468 S:      Odd Fixes
1469 W:      http://www.armlinux.org.uk/
1470 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1471 F:      arch/arm/
1472 X:      arch/arm/boot/dts/
1473
1474 ARM PRIMECELL AACI PL041 DRIVER
1475 M:      Russell King <linux@armlinux.org.uk>
1476 S:      Odd Fixes
1477 F:      sound/arm/aaci.*
1478
1479 ARM PRIMECELL BUS SUPPORT
1480 M:      Russell King <linux@armlinux.org.uk>
1481 S:      Odd Fixes
1482 F:      drivers/amba/
1483 F:      include/linux/amba/bus.h
1484
1485 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1486 M:      Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1487 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1488 L:      linux-mtd@lists.infradead.org
1489 S:      Maintained
1490 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1491 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1492
1493 ARM PRIMECELL PL35X SMC DRIVER
1494 M:      Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1495 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497 S:      Maintained
1498 F:      Documentation/devicetree/bindings/mtd/arm,pl353-smc.yaml
1499 F:      drivers/memory/pl353-smc.c
1500
1501 ARM PRIMECELL CLCD PL110 DRIVER
1502 M:      Russell King <linux@armlinux.org.uk>
1503 S:      Odd Fixes
1504 F:      drivers/video/fbdev/amba-clcd.*
1505
1506 ARM PRIMECELL KMI PL050 DRIVER
1507 M:      Russell King <linux@armlinux.org.uk>
1508 S:      Odd Fixes
1509 F:      drivers/input/serio/ambakmi.*
1510 F:      include/linux/amba/kmi.h
1511
1512 ARM PRIMECELL MMCI PL180/1 DRIVER
1513 M:      Russell King <linux@armlinux.org.uk>
1514 S:      Odd Fixes
1515 F:      drivers/mmc/host/mmci.*
1516 F:      include/linux/amba/mmci.h
1517
1518 ARM PRIMECELL SSP PL022 SPI DRIVER
1519 M:      Linus Walleij <linus.walleij@linaro.org>
1520 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1521 S:      Maintained
1522 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1523 F:      drivers/spi/spi-pl022.c
1524
1525 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1526 M:      Russell King <linux@armlinux.org.uk>
1527 S:      Odd Fixes
1528 F:      drivers/tty/serial/amba-pl01*.c
1529 F:      include/linux/amba/serial.h
1530
1531 ARM PRIMECELL VIC PL190/PL192 DRIVER
1532 M:      Linus Walleij <linus.walleij@linaro.org>
1533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1534 S:      Maintained
1535 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1536 F:      drivers/irqchip/irq-vic.c
1537
1538 ARM SMC WATCHDOG DRIVER
1539 M:      Julius Werner <jwerner@chromium.org>
1540 R:      Evan Benn <evanbenn@chromium.org>
1541 S:      Maintained
1542 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1543 F:      drivers/watchdog/arm_smc_wdt.c
1544
1545 ARM SMMU DRIVERS
1546 M:      Will Deacon <will@kernel.org>
1547 R:      Robin Murphy <robin.murphy@arm.com>
1548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1549 S:      Maintained
1550 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1551 F:      drivers/iommu/arm/
1552 F:      drivers/iommu/io-pgtable-arm*
1553
1554 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1555 M:      Arnd Bergmann <arnd@arndb.de>
1556 M:      Olof Johansson <olof@lixom.net>
1557 M:      soc@kernel.org
1558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1559 S:      Maintained
1560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1561 F:      arch/arm/boot/dts/Makefile
1562 F:      arch/arm64/boot/dts/Makefile
1563
1564 ARM SUB-ARCHITECTURES
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S:      Maintained
1567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1568 F:      arch/arm/mach-*/
1569 F:      arch/arm/plat-*/
1570
1571 ARM/ACTIONS SEMI ARCHITECTURE
1572 M:      Andreas Färber <afaerber@suse.de>
1573 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1575 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1576 S:      Maintained
1577 F:      Documentation/devicetree/bindings/arm/actions.yaml
1578 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1579 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1580 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1581 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1582 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1583 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1584 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1585 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1586 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1587 F:      arch/arm/boot/dts/owl-*
1588 F:      arch/arm/mach-actions/
1589 F:      arch/arm64/boot/dts/actions/
1590 F:      drivers/clk/actions/
1591 F:      drivers/clocksource/timer-owl*
1592 F:      drivers/dma/owl-dma.c
1593 F:      drivers/i2c/busses/i2c-owl.c
1594 F:      drivers/irqchip/irq-owl-sirq.c
1595 F:      drivers/mmc/host/owl-mmc.c
1596 F:      drivers/net/ethernet/actions/
1597 F:      drivers/pinctrl/actions/*
1598 F:      drivers/soc/actions/
1599 F:      include/dt-bindings/power/owl-*
1600 F:      include/dt-bindings/reset/actions,*
1601 F:      include/linux/soc/actions/
1602 N:      owl
1603
1604 ARM/ADS SPHERE MACHINE SUPPORT
1605 M:      Lennert Buytenhek <kernel@wantstofly.org>
1606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 S:      Maintained
1608
1609 ARM/AFEB9260 MACHINE SUPPORT
1610 M:      Sergey Lapin <slapin@ossfans.org>
1611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1612 S:      Maintained
1613
1614 ARM/AJECO 1ARM MACHINE SUPPORT
1615 M:      Lennert Buytenhek <kernel@wantstofly.org>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 S:      Maintained
1618
1619 ARM/Allwinner SoC Clock Support
1620 M:      Emilio López <emilio@elopez.com.ar>
1621 S:      Maintained
1622 F:      drivers/clk/sunxi/
1623
1624 ARM/Allwinner sunXi SoC support
1625 M:      Maxime Ripard <mripard@kernel.org>
1626 M:      Chen-Yu Tsai <wens@csie.org>
1627 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 S:      Maintained
1630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1631 L:      linux-sunxi@lists.linux.dev
1632 F:      arch/arm/mach-sunxi/
1633 F:      arch/arm64/boot/dts/allwinner/
1634 F:      drivers/clk/sunxi-ng/
1635 F:      drivers/pinctrl/sunxi/
1636 F:      drivers/soc/sunxi/
1637 N:      allwinner
1638 N:      sun[x456789]i
1639 N:      sun50i
1640
1641 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1642 M:      Neil Armstrong <narmstrong@baylibre.com>
1643 M:      Jerome Brunet <jbrunet@baylibre.com>
1644 L:      linux-amlogic@lists.infradead.org
1645 S:      Maintained
1646 F:      Documentation/devicetree/bindings/clock/amlogic*
1647 F:      drivers/clk/meson/
1648 F:      include/dt-bindings/clock/gxbb*
1649 F:      include/dt-bindings/clock/meson*
1650
1651 ARM/Amlogic Meson SoC Crypto Drivers
1652 M:      Corentin Labbe <clabbe@baylibre.com>
1653 L:      linux-crypto@vger.kernel.org
1654 L:      linux-amlogic@lists.infradead.org
1655 S:      Maintained
1656 F:      Documentation/devicetree/bindings/crypto/amlogic*
1657 F:      drivers/crypto/amlogic/
1658
1659 ARM/Amlogic Meson SoC Sound Drivers
1660 M:      Jerome Brunet <jbrunet@baylibre.com>
1661 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1662 S:      Maintained
1663 F:      Documentation/devicetree/bindings/sound/amlogic*
1664 F:      sound/soc/meson/
1665
1666 ARM/Amlogic Meson SoC support
1667 M:      Neil Armstrong <narmstrong@baylibre.com>
1668 M:      Kevin Hilman <khilman@baylibre.com>
1669 R:      Jerome Brunet <jbrunet@baylibre.com>
1670 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 L:      linux-amlogic@lists.infradead.org
1673 S:      Maintained
1674 W:      http://linux-meson.com/
1675 F:      arch/arm/boot/dts/meson*
1676 F:      arch/arm/mach-meson/
1677 F:      arch/arm64/boot/dts/amlogic/
1678 F:      drivers/mmc/host/meson*
1679 F:      drivers/pinctrl/meson/
1680 F:      drivers/rtc/rtc-meson*
1681 F:      drivers/soc/amlogic/
1682 N:      meson
1683
1684 ARM/Annapurna Labs ALPINE ARCHITECTURE
1685 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1686 M:      Antoine Tenart <atenart@kernel.org>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S:      Maintained
1689 F:      arch/arm/boot/dts/alpine*
1690 F:      arch/arm/mach-alpine/
1691 F:      arch/arm64/boot/dts/amazon/
1692 F:      drivers/*/*alpine*
1693
1694 ARM/APPLE MACHINE SUPPORT
1695 M:      Hector Martin <marcan@marcan.st>
1696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1697 S:      Maintained
1698 W:      https://asahilinux.org
1699 B:      https://github.com/AsahiLinux/linux/issues
1700 C:      irc://chat.freenode.net/asahi-dev
1701 T:      git https://github.com/AsahiLinux/linux.git
1702 F:      Documentation/devicetree/bindings/arm/apple.yaml
1703 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1704 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1705 F:      arch/arm64/boot/dts/apple/
1706 F:      drivers/irqchip/irq-apple-aic.c
1707 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1708 F:      include/dt-bindings/pinctrl/apple.h
1709
1710 ARM/ARTPEC MACHINE SUPPORT
1711 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1712 M:      Lars Persson <lars.persson@axis.com>
1713 L:      linux-arm-kernel@axis.com
1714 S:      Maintained
1715 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1716 F:      arch/arm/boot/dts/artpec6*
1717 F:      arch/arm/mach-artpec
1718 F:      drivers/clk/axis
1719 F:      drivers/crypto/axis
1720 F:      drivers/mmc/host/usdhi6rol0.c
1721 F:      drivers/pinctrl/pinctrl-artpec*
1722
1723 ARM/ASPEED I2C DRIVER
1724 M:      Brendan Higgins <brendanhiggins@google.com>
1725 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1726 R:      Joel Stanley <joel@jms.id.au>
1727 L:      linux-i2c@vger.kernel.org
1728 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1729 S:      Maintained
1730 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1731 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1732 F:      drivers/i2c/busses/i2c-aspeed.c
1733 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1734
1735 ARM/ASPEED MACHINE SUPPORT
1736 M:      Joel Stanley <joel@jms.id.au>
1737 R:      Andrew Jeffery <andrew@aj.id.au>
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1740 S:      Supported
1741 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1743 F:      arch/arm/boot/dts/aspeed-*
1744 F:      arch/arm/mach-aspeed/
1745 N:      aspeed
1746
1747 ARM/BITMAIN ARCHITECTURE
1748 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 S:      Maintained
1751 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1752 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1753 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1754 F:      arch/arm64/boot/dts/bitmain/
1755 F:      drivers/clk/clk-bm1880.c
1756 F:      drivers/pinctrl/pinctrl-bm1880.c
1757
1758 ARM/CALXEDA HIGHBANK ARCHITECTURE
1759 M:      Andre Przywara <andre.przywara@arm.com>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 S:      Maintained
1762 F:      arch/arm/boot/dts/ecx-*.dts*
1763 F:      arch/arm/boot/dts/highbank.dts
1764 F:      arch/arm/mach-highbank/
1765
1766 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1767 M:      Krzysztof Halasa <khalasa@piap.pl>
1768 S:      Maintained
1769 F:      arch/arm/mach-cns3xxx/
1770
1771 ARM/CAVIUM THUNDER NETWORK DRIVER
1772 M:      Sunil Goutham <sgoutham@marvell.com>
1773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1774 S:      Supported
1775 F:      drivers/net/ethernet/cavium/thunder/
1776
1777 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1778 M:      Lukasz Majewski <lukma@denx.de>
1779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1780 S:      Maintained
1781 F:      arch/arm/mach-ep93xx/ts72xx.c
1782
1783 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1784 M:      Alexander Shiyan <shc_work@mail.ru>
1785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1786 S:      Odd Fixes
1787 N:      clps711x
1788
1789 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1790 M:      Lennert Buytenhek <kernel@wantstofly.org>
1791 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1792 S:      Maintained
1793
1794 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1795 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1796 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 S:      Maintained
1799 F:      arch/arm/mach-ep93xx/
1800 F:      arch/arm/mach-ep93xx/include/mach/
1801
1802 ARM/CLKDEV SUPPORT
1803 M:      Russell King <linux@armlinux.org.uk>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1807 F:      drivers/clk/clkdev.c
1808
1809 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1810 M:      Baruch Siach <baruch@tkos.co.il>
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 S:      Maintained
1813 F:      arch/arm/boot/dts/cx92755*
1814 N:      digicolor
1815
1816 ARM/CONTEC MICRO9 MACHINE SUPPORT
1817 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1818 S:      Maintained
1819 F:      arch/arm/mach-ep93xx/micro9.c
1820
1821 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1822 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1823 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1824 R:      Mike Leach <mike.leach@linaro.org>
1825 R:      Leo Yan <leo.yan@linaro.org>
1826 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 S:      Maintained
1829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1830 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1831 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1832 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1833 F:      Documentation/devicetree/bindings/arm/coresight.txt
1834 F:      Documentation/devicetree/bindings/arm/ete.yaml
1835 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1836 F:      Documentation/trace/coresight/*
1837 F:      drivers/hwtracing/coresight/*
1838 F:      include/dt-bindings/arm/coresight-cti-dt.h
1839 F:      include/linux/coresight*
1840 F:      tools/perf/arch/arm/util/auxtrace.c
1841 F:      tools/perf/arch/arm/util/cs-etm.c
1842 F:      tools/perf/arch/arm/util/cs-etm.h
1843 F:      tools/perf/arch/arm/util/pmu.c
1844 F:      tools/perf/util/cs-etm-decoder/*
1845 F:      tools/perf/util/cs-etm.*
1846
1847 ARM/CORGI MACHINE SUPPORT
1848 M:      Richard Purdie <rpurdie@rpsys.net>
1849 S:      Maintained
1850
1851 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1852 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1853 M:      Linus Walleij <linus.walleij@linaro.org>
1854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S:      Maintained
1856 T:      git git://github.com/ulli-kroll/linux.git
1857 F:      Documentation/devicetree/bindings/arm/gemini.txt
1858 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1859 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1860 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1861 F:      arch/arm/boot/dts/gemini*
1862 F:      arch/arm/mach-gemini/
1863 F:      drivers/crypto/gemini/
1864 F:      drivers/net/ethernet/cortina/
1865 F:      drivers/pinctrl/pinctrl-gemini.c
1866 F:      drivers/rtc/rtc-ftrtc010.c
1867
1868 ARM/CZ.NIC TURRIS SUPPORT
1869 M:      Marek Behún <kabel@kernel.org>
1870 S:      Maintained
1871 W:      https://www.turris.cz/
1872 F:      Documentation/ABI/testing/debugfs-moxtet
1873 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1874 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1875 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1876 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1877 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1878 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1879 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1880 F:      drivers/bus/moxtet.c
1881 F:      drivers/firmware/turris-mox-rwtm.c
1882 F:      drivers/leds/leds-turris-omnia.c
1883 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1884 F:      drivers/gpio/gpio-moxtet.c
1885 F:      drivers/watchdog/armada_37xx_wdt.c
1886 F:      include/dt-bindings/bus/moxtet.h
1887 F:      include/linux/armada-37xx-rwtm-mailbox.h
1888 F:      include/linux/moxtet.h
1889
1890 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1891 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1893 S:      Maintained
1894 F:      arch/arm/mach-pxa/ezx.c
1895
1896 ARM/FARADAY FA526 PORT
1897 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1899 S:      Maintained
1900 T:      git git://git.berlios.de/gemini-board
1901 F:      arch/arm/mm/*-fa*
1902
1903 ARM/FOOTBRIDGE ARCHITECTURE
1904 M:      Russell King <linux@armlinux.org.uk>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Maintained
1907 W:      http://www.armlinux.org.uk/
1908 F:      arch/arm/include/asm/hardware/dec21285.h
1909 F:      arch/arm/mach-footbridge/
1910
1911 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1912 M:      Shawn Guo <shawnguo@kernel.org>
1913 M:      Sascha Hauer <s.hauer@pengutronix.de>
1914 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1915 R:      Fabio Estevam <festevam@gmail.com>
1916 R:      NXP Linux Team <linux-imx@nxp.com>
1917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1918 S:      Maintained
1919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1920 X:      drivers/media/i2c/
1921 N:      imx
1922 N:      mxs
1923
1924 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1925 M:      Shawn Guo <shawnguo@kernel.org>
1926 M:      Li Yang <leoyang.li@nxp.com>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1930 F:      arch/arm/boot/dts/ls1021a*
1931 F:      arch/arm64/boot/dts/freescale/fsl-*
1932 F:      arch/arm64/boot/dts/freescale/qoriq-*
1933
1934 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1935 M:      Shawn Guo <shawnguo@kernel.org>
1936 M:      Sascha Hauer <s.hauer@pengutronix.de>
1937 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1938 R:      Stefan Agner <stefan@agner.ch>
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S:      Maintained
1941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1942 F:      arch/arm/boot/dts/vf*
1943 F:      arch/arm/mach-imx/*vf610*
1944
1945 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1946 M:      Lennert Buytenhek <kernel@wantstofly.org>
1947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1948 S:      Maintained
1949
1950 ARM/GUMSTIX MACHINE SUPPORT
1951 M:      Steve Sakoman <sakoman@gmail.com>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Maintained
1954
1955 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1956 M:      Philipp Zabel <philipp.zabel@gmail.com>
1957 M:      Paul Parsons <lost.distance@yahoo.com>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S:      Maintained
1960 F:      arch/arm/mach-pxa/hx4700.c
1961 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1962 F:      sound/soc/pxa/hx4700.c
1963
1964 ARM/HISILICON SOC SUPPORT
1965 M:      Wei Xu <xuwei5@hisilicon.com>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Supported
1968 W:      http://www.hisilicon.com
1969 T:      git git://github.com/hisilicon/linux-hisi.git
1970 F:      arch/arm/boot/dts/hi3*
1971 F:      arch/arm/boot/dts/hip*
1972 F:      arch/arm/boot/dts/hisi*
1973 F:      arch/arm/mach-hisi/
1974 F:      arch/arm64/boot/dts/hisilicon/
1975
1976 ARM/HP JORNADA 7XX MACHINE SUPPORT
1977 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1978 S:      Maintained
1979 W:      www.jlime.com
1980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1981 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1982 F:      arch/arm/mach-sa1100/jornada720.c
1983
1984 ARM/IGEP MACHINE SUPPORT
1985 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1986 M:      Javier Martinez Canillas <javier@dowhile0.org>
1987 L:      linux-omap@vger.kernel.org
1988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1989 S:      Maintained
1990 F:      arch/arm/boot/dts/omap3-igep*
1991
1992 ARM/INCOME PXA270 SUPPORT
1993 M:      Marek Vasut <marek.vasut@gmail.com>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1997
1998 ARM/INTEL IOP32X ARM ARCHITECTURE
1999 M:      Lennert Buytenhek <kernel@wantstofly.org>
2000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2001 S:      Maintained
2002
2003 ARM/INTEL IQ81342EX MACHINE SUPPORT
2004 M:      Lennert Buytenhek <kernel@wantstofly.org>
2005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2006 S:      Maintained
2007
2008 ARM/INTEL IXDP2850 MACHINE SUPPORT
2009 M:      Lennert Buytenhek <kernel@wantstofly.org>
2010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S:      Maintained
2012
2013 ARM/INTEL IXP4XX ARM ARCHITECTURE
2014 M:      Linus Walleij <linusw@kernel.org>
2015 M:      Imre Kaloz <kaloz@openwrt.org>
2016 M:      Krzysztof Halasa <khalasa@piap.pl>
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 S:      Maintained
2019 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2020 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2021 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2022 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2023 F:      arch/arm/mach-ixp4xx/
2024 F:      drivers/clocksource/timer-ixp4xx.c
2025 F:      drivers/crypto/ixp4xx_crypto.c
2026 F:      drivers/gpio/gpio-ixp4xx.c
2027 F:      drivers/irqchip/irq-ixp4xx.c
2028 F:      include/linux/irqchip/irq-ixp4xx.h
2029 F:      include/linux/platform_data/timer-ixp4xx.h
2030
2031 ARM/INTEL KEEMBAY ARCHITECTURE
2032 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2033 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2034 S:      Maintained
2035 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2036 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2037 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2038
2039 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2040 M:      Jonathan Cameron <jic23@cam.ac.uk>
2041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 S:      Maintained
2043 F:      arch/arm/mach-pxa/stargate2.c
2044 F:      drivers/pcmcia/pxa2xx_stargate2.c
2045
2046 ARM/INTEL XSC3 (MANZANO) ARM CORE
2047 M:      Lennert Buytenhek <kernel@wantstofly.org>
2048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 S:      Maintained
2050
2051 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2052 M:      Lennert Buytenhek <kernel@wantstofly.org>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 S:      Maintained
2055
2056 ARM/LG1K ARCHITECTURE
2057 M:      Chanho Min <chanho.min@lge.com>
2058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2059 S:      Maintained
2060 F:      arch/arm64/boot/dts/lg/
2061
2062 ARM/LOGICPD PXA270 MACHINE SUPPORT
2063 M:      Lennert Buytenhek <kernel@wantstofly.org>
2064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2065 S:      Maintained
2066
2067 ARM/LPC18XX ARCHITECTURE
2068 M:      Vladimir Zapolskiy <vz@mleia.com>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 S:      Maintained
2071 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2072 F:      arch/arm/boot/dts/lpc43*
2073 F:      drivers/i2c/busses/i2c-lpc2k.c
2074 F:      drivers/memory/pl172.c
2075 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2076 F:      drivers/rtc/rtc-lpc24xx.c
2077 N:      lpc18xx
2078
2079 ARM/LPC32XX SOC SUPPORT
2080 M:      Vladimir Zapolskiy <vz@mleia.com>
2081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2082 S:      Maintained
2083 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2084 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2085 F:      arch/arm/boot/dts/lpc32*
2086 F:      arch/arm/mach-lpc32xx/
2087 F:      drivers/i2c/busses/i2c-pnx.c
2088 F:      drivers/net/ethernet/nxp/lpc_eth.c
2089 F:      drivers/usb/host/ohci-nxp.c
2090 F:      drivers/watchdog/pnx4008_wdt.c
2091 N:      lpc32xx
2092
2093 ARM/MAGICIAN MACHINE SUPPORT
2094 M:      Philipp Zabel <philipp.zabel@gmail.com>
2095 S:      Maintained
2096
2097 ARM/Marvell Dove/MV78xx0/Orion SOC support
2098 M:      Andrew Lunn <andrew@lunn.ch>
2099 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2100 M:      Gregory Clement <gregory.clement@bootlin.com>
2101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 S:      Maintained
2103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2104 F:      Documentation/devicetree/bindings/soc/dove/
2105 F:      arch/arm/boot/dts/dove*
2106 F:      arch/arm/boot/dts/orion5x*
2107 F:      arch/arm/mach-dove/
2108 F:      arch/arm/mach-mv78xx0/
2109 F:      arch/arm/mach-orion5x/
2110 F:      arch/arm/plat-orion/
2111 F:      drivers/soc/dove/
2112
2113 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2114 M:      Andrew Lunn <andrew@lunn.ch>
2115 M:      Gregory Clement <gregory.clement@bootlin.com>
2116 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2118 S:      Maintained
2119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2120 F:      arch/arm/boot/dts/armada*
2121 F:      arch/arm/boot/dts/kirkwood*
2122 F:      arch/arm/configs/mvebu_*_defconfig
2123 F:      arch/arm/mach-mvebu/
2124 F:      arch/arm64/boot/dts/marvell/armada*
2125 F:      arch/arm64/boot/dts/marvell/cn913*
2126 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2127 F:      drivers/cpufreq/armada-8k-cpufreq.c
2128 F:      drivers/cpufreq/mvebu-cpufreq.c
2129 F:      drivers/irqchip/irq-armada-370-xp.c
2130 F:      drivers/irqchip/irq-mvebu-*
2131 F:      drivers/pinctrl/mvebu/
2132 F:      drivers/rtc/rtc-armada38x.c
2133
2134 ARM/Mediatek RTC DRIVER
2135 M:      Eddie Huang <eddie.huang@mediatek.com>
2136 M:      Sean Wang <sean.wang@mediatek.com>
2137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2139 S:      Maintained
2140 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2141 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2142 F:      drivers/rtc/rtc-mt2712.c
2143 F:      drivers/rtc/rtc-mt6397.c
2144 F:      drivers/rtc/rtc-mt7622.c
2145
2146 ARM/Mediatek SoC support
2147 M:      Matthias Brugger <matthias.bgg@gmail.com>
2148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2149 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2150 S:      Maintained
2151 W:      https://mtk.wiki.kernel.org/
2152 C:      irc://chat.freenode.net/linux-mediatek
2153 F:      arch/arm/boot/dts/mt6*
2154 F:      arch/arm/boot/dts/mt7*
2155 F:      arch/arm/boot/dts/mt8*
2156 F:      arch/arm/mach-mediatek/
2157 F:      arch/arm64/boot/dts/mediatek/
2158 F:      drivers/soc/mediatek/
2159 N:      mtk
2160 N:      mt[678]
2161 K:      mediatek
2162
2163 ARM/Mediatek USB3 PHY DRIVER
2164 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2166 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2167 S:      Maintained
2168 F:      Documentation/devicetree/bindings/phy/mediatek,*
2169 F:      drivers/phy/mediatek/
2170
2171 ARM/Microchip (AT91) SoC support
2172 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2173 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2174 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 S:      Supported
2177 W:      http://www.linux4sam.org
2178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2179 F:      arch/arm/boot/dts/at91*.dts
2180 F:      arch/arm/boot/dts/at91*.dtsi
2181 F:      arch/arm/boot/dts/sama*.dts
2182 F:      arch/arm/boot/dts/sama*.dtsi
2183 F:      arch/arm/include/debug/at91.S
2184 F:      arch/arm/mach-at91/
2185 F:      drivers/memory/atmel*
2186 F:      drivers/watchdog/sama5d4_wdt.c
2187 F:      include/soc/at91/
2188 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2189 X:      drivers/net/wireless/atmel/
2190 N:      at91
2191 N:      atmel
2192
2193 ARM/Microchip Sparx5 SoC support
2194 M:      Lars Povlsen <lars.povlsen@microchip.com>
2195 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2196 M:      UNGLinuxDriver@microchip.com
2197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2198 S:      Supported
2199 T:      git git://github.com/microchip-ung/linux-upstream.git
2200 F:      arch/arm64/boot/dts/microchip/
2201 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2202 N:      sparx5
2203
2204 Microchip Timer Counter Block (TCB) Capture Driver
2205 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2207 L:      linux-iio@vger.kernel.org
2208 S:      Maintained
2209 F:      drivers/counter/microchip-tcb-capture.c
2210
2211 ARM/MIOA701 MACHINE SUPPORT
2212 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 S:      Maintained
2215 F:      arch/arm/mach-pxa/mioa701.c
2216
2217 ARM/MStar/Sigmastar Armv7 SoC support
2218 M:      Daniel Palmer <daniel@thingy.jp>
2219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2220 S:      Maintained
2221 W:      http://linux-chenxing.org/
2222 T:      git git://github.com/linux-chenxing/linux.git
2223 F:      Documentation/devicetree/bindings/arm/mstar/*
2224 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2225 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2226 F:      arch/arm/boot/dts/mstar-*
2227 F:      arch/arm/mach-mstar/
2228 F:      drivers/clk/mstar/
2229 F:      drivers/gpio/gpio-msc313.c
2230 F:      drivers/watchdog/msc313e_wdt.c
2231 F:      include/dt-bindings/clock/mstar-*
2232 F:      include/dt-bindings/gpio/msc313-gpio.h
2233
2234 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2235 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2236 S:      Maintained
2237
2238 ARM/NOMADIK/Ux500 ARCHITECTURES
2239 M:      Linus Walleij <linus.walleij@linaro.org>
2240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2241 S:      Maintained
2242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2243 F:      Documentation/devicetree/bindings/arm/ste-*
2244 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2245 F:      Documentation/devicetree/bindings/arm/ux500/
2246 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2247 F:      arch/arm/boot/dts/ste-*
2248 F:      arch/arm/mach-nomadik/
2249 F:      arch/arm/mach-ux500/
2250 F:      drivers/clk/clk-nomadik.c
2251 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2252 F:      drivers/dma/ste_dma40*
2253 F:      drivers/hwspinlock/u8500_hsem.c
2254 F:      drivers/i2c/busses/i2c-nomadik.c
2255 F:      drivers/iio/adc/ab8500-gpadc.c
2256 F:      drivers/mfd/ab8500*
2257 F:      drivers/mfd/abx500*
2258 F:      drivers/mfd/db8500*
2259 F:      drivers/mfd/dbx500*
2260 F:      drivers/pinctrl/nomadik/
2261 F:      drivers/rtc/rtc-ab8500.c
2262 F:      drivers/rtc/rtc-pl031.c
2263 F:      drivers/soc/ux500/
2264
2265 ARM/NUVOTON NPCM ARCHITECTURE
2266 M:      Avi Fishman <avifishman70@gmail.com>
2267 M:      Tomer Maimon <tmaimon77@gmail.com>
2268 M:      Tali Perry <tali.perry1@gmail.com>
2269 R:      Patrick Venture <venture@google.com>
2270 R:      Nancy Yuen <yuenn@google.com>
2271 R:      Benjamin Fair <benjaminfair@google.com>
2272 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2273 S:      Supported
2274 F:      Documentation/devicetree/bindings/*/*/*npcm*
2275 F:      Documentation/devicetree/bindings/*/*npcm*
2276 F:      arch/arm/boot/dts/nuvoton-npcm*
2277 F:      arch/arm/mach-npcm/
2278 F:      drivers/*/*npcm*
2279 F:      drivers/*/*/*npcm*
2280 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2281
2282 ARM/NUVOTON WPCM450 ARCHITECTURE
2283 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2284 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2285 S:      Maintained
2286 F:      Documentation/devicetree/bindings/*/*wpcm*
2287 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2288 F:      arch/arm/mach-npcm/wpcm450.c
2289 F:      drivers/*/*wpcm*
2290
2291 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2292 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2293 S:      Orphan
2294 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2295 F:      arch/arm/mach-s3c/gta02.h
2296 F:      arch/arm/mach-s3c/mach-gta02.c
2297
2298 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2299 M:      Alexander Clouter <alex@digriz.org.uk>
2300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2301 S:      Maintained
2302 W:      http://www.digriz.org.uk/ts78xx/kernel
2303 F:      arch/arm/mach-orion5x/ts78xx-*
2304
2305 ARM/OXNAS platform support
2306 M:      Neil Armstrong <narmstrong@baylibre.com>
2307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2308 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2309 S:      Maintained
2310 F:      arch/arm/boot/dts/ox8*.dts*
2311 F:      arch/arm/mach-oxnas/
2312 F:      drivers/power/reset/oxnas-restart.c
2313 N:      oxnas
2314
2315 ARM/PALM TREO SUPPORT
2316 M:      Tomas Cech <sleep_walker@suse.com>
2317 L:      linux-arm-kernel@lists.infradead.org
2318 S:      Maintained
2319 W:      http://hackndev.com
2320 F:      arch/arm/mach-pxa/palmtreo.*
2321
2322 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2323 M:      Marek Vasut <marek.vasut@gmail.com>
2324 L:      linux-arm-kernel@lists.infradead.org
2325 S:      Maintained
2326 W:      http://hackndev.com
2327 F:      arch/arm/mach-pxa/include/mach/palmld.h
2328 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2329 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2330 F:      arch/arm/mach-pxa/palmld.c
2331 F:      arch/arm/mach-pxa/palmt5.*
2332 F:      arch/arm/mach-pxa/palmtc.c
2333 F:      arch/arm/mach-pxa/palmte2.*
2334 F:      arch/arm/mach-pxa/palmtx.c
2335
2336 ARM/PALMZ72 SUPPORT
2337 M:      Sergey Lapin <slapin@ossfans.org>
2338 L:      linux-arm-kernel@lists.infradead.org
2339 S:      Maintained
2340 W:      http://hackndev.com
2341 F:      arch/arm/mach-pxa/palmz72.*
2342
2343 ARM/PLEB SUPPORT
2344 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2345 S:      Maintained
2346 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2347
2348 ARM/PT DIGITAL BOARD PORT
2349 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2351 S:      Maintained
2352 W:      http://www.armlinux.org.uk/
2353
2354 ARM/QUALCOMM SUPPORT
2355 M:      Andy Gross <agross@kernel.org>
2356 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2357 L:      linux-arm-msm@vger.kernel.org
2358 S:      Maintained
2359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2360 F:      Documentation/devicetree/bindings/*/qcom*
2361 F:      Documentation/devicetree/bindings/soc/qcom/
2362 F:      arch/arm/boot/dts/qcom-*.dts
2363 F:      arch/arm/boot/dts/qcom-*.dtsi
2364 F:      arch/arm/mach-qcom/
2365 F:      arch/arm64/boot/dts/qcom/
2366 F:      drivers/*/*/qcom*
2367 F:      drivers/*/*/qcom/
2368 F:      drivers/*/pm8???-*
2369 F:      drivers/*/qcom*
2370 F:      drivers/*/qcom/
2371 F:      drivers/bluetooth/btqcomsmd.c
2372 F:      drivers/clocksource/timer-qcom.c
2373 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2374 F:      drivers/extcon/extcon-qcom*
2375 F:      drivers/i2c/busses/i2c-qcom-geni.c
2376 F:      drivers/i2c/busses/i2c-qup.c
2377 F:      drivers/iommu/msm*
2378 F:      drivers/mfd/ssbi.c
2379 F:      drivers/mmc/host/mmci_qcom*
2380 F:      drivers/mmc/host/sdhci-msm.c
2381 F:      drivers/pci/controller/dwc/pcie-qcom.c
2382 F:      drivers/phy/qualcomm/
2383 F:      drivers/power/*/msm*
2384 F:      drivers/reset/reset-qcom-*
2385 F:      drivers/scsi/ufs/ufs-qcom*
2386 F:      drivers/spi/spi-geni-qcom.c
2387 F:      drivers/spi/spi-qcom-qspi.c
2388 F:      drivers/spi/spi-qup.c
2389 F:      drivers/tty/serial/msm_serial.c
2390 F:      drivers/usb/dwc3/dwc3-qcom.c
2391 F:      include/dt-bindings/*/qcom*
2392 F:      include/linux/*/qcom*
2393 F:      include/linux/soc/qcom/
2394
2395 ARM/RADISYS ENP2611 MACHINE SUPPORT
2396 M:      Lennert Buytenhek <kernel@wantstofly.org>
2397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2398 S:      Maintained
2399
2400 ARM/RDA MICRO ARCHITECTURE
2401 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2402 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2403 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2404 S:      Maintained
2405 F:      Documentation/devicetree/bindings/arm/rda.yaml
2406 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2407 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2408 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2409 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2410 F:      arch/arm/boot/dts/rda8810pl-*
2411 F:      drivers/clocksource/timer-rda.c
2412 F:      drivers/gpio/gpio-rda.c
2413 F:      drivers/irqchip/irq-rda-intc.c
2414 F:      drivers/tty/serial/rda-uart.c
2415
2416 ARM/REALTEK ARCHITECTURE
2417 M:      Andreas Färber <afaerber@suse.de>
2418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2419 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2420 S:      Maintained
2421 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2422 F:      arch/arm/boot/dts/rtd*
2423 F:      arch/arm/mach-realtek/
2424 F:      arch/arm64/boot/dts/realtek/
2425
2426 ARM/RENESAS ARM64 ARCHITECTURE
2427 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2428 M:      Magnus Damm <magnus.damm@gmail.com>
2429 L:      linux-renesas-soc@vger.kernel.org
2430 S:      Supported
2431 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2433 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2434 F:      arch/arm64/boot/dts/renesas/
2435 F:      drivers/soc/renesas/
2436 F:      include/linux/soc/renesas/
2437
2438 ARM/RISCPC ARCHITECTURE
2439 M:      Russell King <linux@armlinux.org.uk>
2440 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2441 S:      Maintained
2442 W:      http://www.armlinux.org.uk/
2443 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2444 F:      arch/arm/include/asm/hardware/ioc.h
2445 F:      arch/arm/include/asm/hardware/iomd.h
2446 F:      arch/arm/include/asm/hardware/memc.h
2447 F:      arch/arm/mach-rpc/
2448 F:      drivers/net/ethernet/8390/etherh.c
2449 F:      drivers/net/ethernet/i825xx/ether1*
2450 F:      drivers/net/ethernet/seeq/ether3*
2451 F:      drivers/scsi/arm/
2452
2453 ARM/Rockchip SoC support
2454 M:      Heiko Stuebner <heiko@sntech.de>
2455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2456 L:      linux-rockchip@lists.infradead.org
2457 S:      Maintained
2458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2459 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2460 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2461 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2462 F:      arch/arm/boot/dts/rk3*
2463 F:      arch/arm/boot/dts/rv1108*
2464 F:      arch/arm/mach-rockchip/
2465 F:      drivers/*/*/*rockchip*
2466 F:      drivers/*/*rockchip*
2467 F:      drivers/clk/rockchip/
2468 F:      drivers/i2c/busses/i2c-rk3x.c
2469 F:      sound/soc/rockchip/
2470 N:      rockchip
2471
2472 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2473 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2475 L:      linux-samsung-soc@vger.kernel.org
2476 S:      Maintained
2477 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2478 F:      Documentation/arm/samsung/
2479 F:      Documentation/devicetree/bindings/arm/samsung/
2480 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2481 F:      arch/arm/boot/dts/exynos*
2482 F:      arch/arm/boot/dts/s3c*
2483 F:      arch/arm/boot/dts/s5p*
2484 F:      arch/arm/mach-exynos*/
2485 F:      arch/arm/mach-s3c/
2486 F:      arch/arm/mach-s5p*/
2487 F:      arch/arm64/boot/dts/exynos/
2488 F:      drivers/*/*/*s3c24*
2489 F:      drivers/*/*s3c24*
2490 F:      drivers/*/*s3c64xx*
2491 F:      drivers/*/*s5pv210*
2492 F:      drivers/clocksource/samsung_pwm_timer.c
2493 F:      drivers/memory/samsung/
2494 F:      drivers/pwm/pwm-samsung.c
2495 F:      drivers/soc/samsung/
2496 F:      drivers/tty/serial/samsung*
2497 F:      include/clocksource/samsung_pwm.h
2498 F:      include/linux/platform_data/*s3c*
2499 F:      include/linux/serial_s3c.h
2500 F:      include/linux/soc/samsung/
2501 N:      exynos
2502 N:      s3c2410
2503 N:      s3c64xx
2504 N:      s5pv210
2505
2506 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2507 M:      Andrzej Hajda <a.hajda@samsung.com>
2508 L:      linux-arm-kernel@lists.infradead.org
2509 L:      linux-media@vger.kernel.org
2510 S:      Maintained
2511 F:      drivers/media/platform/s5p-g2d/
2512
2513 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2514 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2515 L:      linux-samsung-soc@vger.kernel.org
2516 L:      linux-media@vger.kernel.org
2517 S:      Maintained
2518 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2519 F:      drivers/media/cec/platform/s5p/
2520
2521 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2522 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2523 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2524 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2525 L:      linux-arm-kernel@lists.infradead.org
2526 L:      linux-media@vger.kernel.org
2527 S:      Maintained
2528 F:      drivers/media/platform/s5p-jpeg/
2529
2530 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2531 M:      Andrzej Hajda <a.hajda@samsung.com>
2532 L:      linux-arm-kernel@lists.infradead.org
2533 L:      linux-media@vger.kernel.org
2534 S:      Maintained
2535 F:      drivers/media/platform/s5p-mfc/
2536
2537 ARM/SHMOBILE ARM ARCHITECTURE
2538 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2539 M:      Magnus Damm <magnus.damm@gmail.com>
2540 L:      linux-renesas-soc@vger.kernel.org
2541 S:      Supported
2542 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2544 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2545 F:      arch/arm/boot/dts/emev2*
2546 F:      arch/arm/boot/dts/gr-peach*
2547 F:      arch/arm/boot/dts/iwg20d-q7*
2548 F:      arch/arm/boot/dts/r7s*
2549 F:      arch/arm/boot/dts/r8a*
2550 F:      arch/arm/boot/dts/r9a*
2551 F:      arch/arm/boot/dts/sh*
2552 F:      arch/arm/configs/shmobile_defconfig
2553 F:      arch/arm/include/debug/renesas-scif.S
2554 F:      arch/arm/mach-shmobile/
2555 F:      drivers/soc/renesas/
2556 F:      include/linux/soc/renesas/
2557
2558 ARM/SOCFPGA ARCHITECTURE
2559 M:      Dinh Nguyen <dinguyen@kernel.org>
2560 S:      Maintained
2561 W:      http://www.rocketboards.org
2562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2563 F:      arch/arm/boot/dts/socfpga*
2564 F:      arch/arm/configs/socfpga_defconfig
2565 F:      arch/arm/mach-socfpga/
2566 F:      arch/arm64/boot/dts/altera/
2567 F:      arch/arm64/boot/dts/intel/
2568
2569 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2570 M:      Dinh Nguyen <dinguyen@kernel.org>
2571 S:      Maintained
2572 F:      drivers/clk/socfpga/
2573
2574 ARM/SOCFPGA EDAC SUPPORT
2575 M:      Dinh Nguyen <dinguyen@kernel.org>
2576 S:      Maintained
2577 F:      drivers/edac/altera_edac.[ch]
2578
2579 ARM/SPREADTRUM SoC SUPPORT
2580 M:      Orson Zhai <orsonzhai@gmail.com>
2581 M:      Baolin Wang <baolin.wang7@gmail.com>
2582 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2583 S:      Maintained
2584 F:      arch/arm64/boot/dts/sprd
2585 N:      sprd
2586 N:      sc27xx
2587 N:      sc2731
2588
2589 ARM/STI ARCHITECTURE
2590 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2592 S:      Maintained
2593 W:      http://www.stlinux.com
2594 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2595 F:      arch/arm/boot/dts/sti*
2596 F:      arch/arm/mach-sti/
2597 F:      drivers/ata/ahci_st.c
2598 F:      drivers/char/hw_random/st-rng.c
2599 F:      drivers/clocksource/arm_global_timer.c
2600 F:      drivers/clocksource/clksrc_st_lpc.c
2601 F:      drivers/cpufreq/sti-cpufreq.c
2602 F:      drivers/dma/st_fdma*
2603 F:      drivers/i2c/busses/i2c-st.c
2604 F:      drivers/media/platform/sti/c8sectpfe/
2605 F:      drivers/media/rc/st_rc.c
2606 F:      drivers/mmc/host/sdhci-st.c
2607 F:      drivers/phy/st/phy-miphy28lp.c
2608 F:      drivers/phy/st/phy-stih407-usb.c
2609 F:      drivers/pinctrl/pinctrl-st.c
2610 F:      drivers/remoteproc/st_remoteproc.c
2611 F:      drivers/remoteproc/st_slim_rproc.c
2612 F:      drivers/reset/sti/
2613 F:      drivers/rtc/rtc-st-lpc.c
2614 F:      drivers/tty/serial/st-asc.c
2615 F:      drivers/usb/dwc3/dwc3-st.c
2616 F:      drivers/usb/host/ehci-st.c
2617 F:      drivers/usb/host/ohci-st.c
2618 F:      drivers/watchdog/st_lpc_wdt.c
2619 F:      include/linux/remoteproc/st_slim_rproc.h
2620
2621 ARM/STM32 ARCHITECTURE
2622 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2623 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2624 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2626 S:      Maintained
2627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2628 F:      arch/arm/boot/dts/stm32*
2629 F:      arch/arm/mach-stm32/
2630 F:      drivers/clocksource/armv7m_systick.c
2631 N:      stm32
2632 N:      stm
2633
2634 ARM/Synaptics SoC support
2635 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2636 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2638 S:      Maintained
2639 F:      arch/arm/boot/dts/berlin*
2640 F:      arch/arm/mach-berlin/
2641 F:      arch/arm64/boot/dts/synaptics/
2642
2643 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2644 M:      Lennert Buytenhek <kernel@wantstofly.org>
2645 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2646 S:      Maintained
2647
2648 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2649 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2650 L:      linux-tegra@vger.kernel.org
2651 L:      linux-media@vger.kernel.org
2652 S:      Maintained
2653 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2654 F:      drivers/media/cec/platform/tegra/
2655
2656 ARM/TETON BGA MACHINE SUPPORT
2657 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2659 S:      Maintained
2660
2661 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2662 M:      Santosh Shilimkar <ssantosh@kernel.org>
2663 L:      linux-kernel@vger.kernel.org
2664 S:      Maintained
2665 F:      drivers/memory/*emif*
2666
2667 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2668 M:      Santosh Shilimkar <ssantosh@kernel.org>
2669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2670 S:      Maintained
2671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2672 F:      arch/arm/boot/dts/keystone-*
2673 F:      arch/arm/mach-keystone/
2674
2675 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2676 M:      Santosh Shilimkar <ssantosh@kernel.org>
2677 L:      linux-kernel@vger.kernel.org
2678 S:      Maintained
2679 F:      drivers/clk/keystone/
2680
2681 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2682 M:      Santosh Shilimkar <ssantosh@kernel.org>
2683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2684 L:      linux-kernel@vger.kernel.org
2685 S:      Maintained
2686 F:      drivers/clocksource/timer-keystone.c
2687
2688 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2689 M:      Santosh Shilimkar <ssantosh@kernel.org>
2690 L:      linux-kernel@vger.kernel.org
2691 S:      Maintained
2692 F:      drivers/power/reset/keystone-reset.c
2693
2694 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2695 M:      Nishanth Menon <nm@ti.com>
2696 M:      Tero Kristo <kristo@kernel.org>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S:      Supported
2699 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2700 F:      arch/arm64/boot/dts/ti/Makefile
2701 F:      arch/arm64/boot/dts/ti/k3-*
2702 F:      include/dt-bindings/pinctrl/k3.h
2703
2704 ARM/THECUS N2100 MACHINE SUPPORT
2705 M:      Lennert Buytenhek <kernel@wantstofly.org>
2706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2707 S:      Maintained
2708
2709 ARM/TOSA MACHINE SUPPORT
2710 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2711 M:      Dirk Opfer <dirk@opfer-online.de>
2712 S:      Maintained
2713
2714 ARM/TOSHIBA VISCONTI ARCHITECTURE
2715 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2717 S:      Supported
2718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2719 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2720 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2721 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2722 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2723 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2724 F:      arch/arm64/boot/dts/toshiba/
2725 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2726 F:      drivers/gpio/gpio-visconti.c
2727 F:      drivers/pinctrl/visconti/
2728 F:      drivers/watchdog/visconti_wdt.c
2729 N:      visconti
2730
2731 ARM/UNIPHIER ARCHITECTURE
2732 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2733 M:      Masami Hiramatsu <mhiramat@kernel.org>
2734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2735 S:      Maintained
2736 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2737 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2738 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2739 F:      arch/arm/boot/dts/uniphier*
2740 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2741 F:      arch/arm/mach-uniphier/
2742 F:      arch/arm/mm/cache-uniphier.c
2743 F:      arch/arm64/boot/dts/socionext/uniphier*
2744 F:      drivers/bus/uniphier-system-bus.c
2745 F:      drivers/clk/uniphier/
2746 F:      drivers/dma/uniphier-mdmac.c
2747 F:      drivers/gpio/gpio-uniphier.c
2748 F:      drivers/i2c/busses/i2c-uniphier*
2749 F:      drivers/irqchip/irq-uniphier-aidet.c
2750 F:      drivers/mmc/host/uniphier-sd.c
2751 F:      drivers/pinctrl/uniphier/
2752 F:      drivers/reset/reset-uniphier.c
2753 F:      drivers/tty/serial/8250/8250_uniphier.c
2754 N:      uniphier
2755
2756 ARM/VERSATILE EXPRESS PLATFORM
2757 M:      Liviu Dudau <liviu.dudau@arm.com>
2758 M:      Sudeep Holla <sudeep.holla@arm.com>
2759 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2761 S:      Maintained
2762 F:      */*/*/vexpress*
2763 F:      */*/vexpress*
2764 F:      arch/arm/boot/dts/vexpress*
2765 F:      arch/arm/mach-vexpress/
2766 F:      arch/arm64/boot/dts/arm/
2767 F:      drivers/clk/versatile/clk-vexpress-osc.c
2768 F:      drivers/clocksource/timer-versatile.c
2769 N:      mps2
2770
2771 ARM/VFP SUPPORT
2772 M:      Russell King <linux@armlinux.org.uk>
2773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2774 S:      Maintained
2775 W:      http://www.armlinux.org.uk/
2776 F:      arch/arm/vfp/
2777
2778 ARM/VOIPAC PXA270 SUPPORT
2779 M:      Marek Vasut <marek.vasut@gmail.com>
2780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2781 S:      Maintained
2782 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2783 F:      arch/arm/mach-pxa/vpac270.c
2784
2785 ARM/VT8500 ARM ARCHITECTURE
2786 M:      Tony Prisk <linux@prisktech.co.nz>
2787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2788 S:      Maintained
2789 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2790 F:      arch/arm/mach-vt8500/
2791 F:      drivers/clocksource/timer-vt8500.c
2792 F:      drivers/i2c/busses/i2c-wmt.c
2793 F:      drivers/mmc/host/wmt-sdmmc.c
2794 F:      drivers/pwm/pwm-vt8500.c
2795 F:      drivers/rtc/rtc-vt8500.c
2796 F:      drivers/tty/serial/vt8500_serial.c
2797 F:      drivers/usb/host/ehci-platform.c
2798 F:      drivers/usb/host/uhci-platform.c
2799 F:      drivers/video/fbdev/vt8500lcdfb.*
2800 F:      drivers/video/fbdev/wm8505fb*
2801 F:      drivers/video/fbdev/wmt_ge_rops.*
2802
2803 ARM/ZIPIT Z2 SUPPORT
2804 M:      Marek Vasut <marek.vasut@gmail.com>
2805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2806 S:      Maintained
2807 F:      arch/arm/mach-pxa/include/mach/z2.h
2808 F:      arch/arm/mach-pxa/z2.c
2809
2810 ARM/ZYNQ ARCHITECTURE
2811 M:      Michal Simek <michal.simek@xilinx.com>
2812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2813 S:      Supported
2814 W:      http://wiki.xilinx.com
2815 T:      git https://github.com/Xilinx/linux-xlnx.git
2816 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2817 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2818 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2819 F:      arch/arm/mach-zynq/
2820 F:      drivers/clocksource/timer-cadence-ttc.c
2821 F:      drivers/cpuidle/cpuidle-zynq.c
2822 F:      drivers/edac/synopsys_edac.c
2823 F:      drivers/i2c/busses/i2c-cadence.c
2824 F:      drivers/i2c/busses/i2c-xiic.c
2825 F:      drivers/mmc/host/sdhci-of-arasan.c
2826 N:      zynq
2827 N:      xilinx
2828
2829 ARM64 PORT (AARCH64 ARCHITECTURE)
2830 M:      Catalin Marinas <catalin.marinas@arm.com>
2831 M:      Will Deacon <will@kernel.org>
2832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2833 S:      Maintained
2834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2835 F:      Documentation/arm64/
2836 F:      arch/arm64/
2837 F:      tools/testing/selftests/arm64/
2838 X:      arch/arm64/boot/dts/
2839
2840 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2841 M:      George McCollister <george.mccollister@gmail.com>
2842 L:      netdev@vger.kernel.org
2843 S:      Maintained
2844 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2845 F:      drivers/net/dsa/xrs700x/*
2846 F:      net/dsa/tag_xrs700x.c
2847
2848 AS3645A LED FLASH CONTROLLER DRIVER
2849 M:      Sakari Ailus <sakari.ailus@iki.fi>
2850 L:      linux-leds@vger.kernel.org
2851 S:      Maintained
2852 F:      drivers/leds/leds-as3645a.c
2853
2854 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2855 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2856 L:      linux-media@vger.kernel.org
2857 S:      Maintained
2858 T:      git git://linuxtv.org/media_tree.git
2859 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2860 F:      drivers/media/i2c/ak7375.c
2861
2862 ASAHI KASEI AK8974 DRIVER
2863 M:      Linus Walleij <linus.walleij@linaro.org>
2864 L:      linux-iio@vger.kernel.org
2865 S:      Supported
2866 W:      http://www.akm.com/
2867 F:      drivers/iio/magnetometer/ak8974.c
2868
2869 ASC7621 HARDWARE MONITOR DRIVER
2870 M:      George Joseph <george.joseph@fairview5.com>
2871 L:      linux-hwmon@vger.kernel.org
2872 S:      Maintained
2873 F:      Documentation/hwmon/asc7621.rst
2874 F:      drivers/hwmon/asc7621.c
2875
2876 ASPEED PINCTRL DRIVERS
2877 M:      Andrew Jeffery <andrew@aj.id.au>
2878 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2879 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2880 L:      linux-gpio@vger.kernel.org
2881 S:      Maintained
2882 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2883 F:      drivers/pinctrl/aspeed/
2884
2885 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2886 M:      Eddie James <eajames@linux.ibm.com>
2887 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2888 S:      Maintained
2889 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2890 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2891 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2892
2893 ASPEED SD/MMC DRIVER
2894 M:      Andrew Jeffery <andrew@aj.id.au>
2895 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2896 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2897 L:      linux-mmc@vger.kernel.org
2898 S:      Maintained
2899 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2900 F:      drivers/mmc/host/sdhci-of-aspeed*
2901
2902 ASPEED VIDEO ENGINE DRIVER
2903 M:      Eddie James <eajames@linux.ibm.com>
2904 L:      linux-media@vger.kernel.org
2905 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2906 S:      Maintained
2907 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2908 F:      drivers/media/platform/aspeed-video.c
2909
2910 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2911 M:      Corentin Chary <corentin.chary@gmail.com>
2912 L:      acpi4asus-user@lists.sourceforge.net
2913 L:      platform-driver-x86@vger.kernel.org
2914 S:      Maintained
2915 W:      http://acpi4asus.sf.net
2916 F:      drivers/platform/x86/asus*.c
2917 F:      drivers/platform/x86/eeepc*.c
2918
2919 ASUS WIRELESS RADIO CONTROL DRIVER
2920 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2921 L:      platform-driver-x86@vger.kernel.org
2922 S:      Maintained
2923 F:      drivers/platform/x86/asus-wireless.c
2924
2925 ASYMMETRIC KEYS
2926 M:      David Howells <dhowells@redhat.com>
2927 L:      keyrings@vger.kernel.org
2928 S:      Maintained
2929 F:      Documentation/crypto/asymmetric-keys.rst
2930 F:      crypto/asymmetric_keys/
2931 F:      include/crypto/pkcs7.h
2932 F:      include/crypto/public_key.h
2933 F:      include/linux/verification.h
2934
2935 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2936 R:      Dan Williams <dan.j.williams@intel.com>
2937 S:      Odd fixes
2938 W:      http://sourceforge.net/projects/xscaleiop
2939 F:      Documentation/crypto/async-tx-api.rst
2940 F:      crypto/async_tx/
2941 F:      include/linux/async_tx.h
2942
2943 AT24 EEPROM DRIVER
2944 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2945 L:      linux-i2c@vger.kernel.org
2946 S:      Maintained
2947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2948 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2949 F:      drivers/misc/eeprom/at24.c
2950
2951 ATA OVER ETHERNET (AOE) DRIVER
2952 M:      "Justin Sanders" <justin@coraid.com>
2953 S:      Supported
2954 W:      http://www.openaoe.org/
2955 F:      Documentation/admin-guide/aoe/
2956 F:      drivers/block/aoe/
2957
2958 ATC260X PMIC MFD DRIVER
2959 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2960 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2961 L:      linux-actions@lists.infradead.org
2962 S:      Maintained
2963 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2964 F:      drivers/input/misc/atc260x-onkey.c
2965 F:      drivers/mfd/atc260*
2966 F:      drivers/power/reset/atc260x-poweroff.c
2967 F:      drivers/regulator/atc260x-regulator.c
2968 F:      include/linux/mfd/atc260x/*
2969
2970 ATHEROS 71XX/9XXX GPIO DRIVER
2971 M:      Alban Bedel <albeu@free.fr>
2972 S:      Maintained
2973 W:      https://github.com/AlbanBedel/linux
2974 T:      git git://github.com/AlbanBedel/linux
2975 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2976 F:      drivers/gpio/gpio-ath79.c
2977
2978 ATHEROS 71XX/9XXX USB PHY DRIVER
2979 M:      Alban Bedel <albeu@free.fr>
2980 S:      Maintained
2981 W:      https://github.com/AlbanBedel/linux
2982 T:      git git://github.com/AlbanBedel/linux
2983 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2984 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2985
2986 ATHEROS ATH GENERIC UTILITIES
2987 M:      Kalle Valo <kvalo@codeaurora.org>
2988 L:      linux-wireless@vger.kernel.org
2989 S:      Supported
2990 F:      drivers/net/wireless/ath/*
2991
2992 ATHEROS ATH5K WIRELESS DRIVER
2993 M:      Jiri Slaby <jirislaby@kernel.org>
2994 M:      Nick Kossifidis <mickflemm@gmail.com>
2995 M:      Luis Chamberlain <mcgrof@kernel.org>
2996 L:      linux-wireless@vger.kernel.org
2997 S:      Maintained
2998 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2999 F:      drivers/net/wireless/ath/ath5k/
3000
3001 ATHEROS ATH6KL WIRELESS DRIVER
3002 M:      Kalle Valo <kvalo@codeaurora.org>
3003 L:      linux-wireless@vger.kernel.org
3004 S:      Supported
3005 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3007 F:      drivers/net/wireless/ath/ath6kl/
3008
3009 ATI_REMOTE2 DRIVER
3010 M:      Ville Syrjala <syrjala@sci.fi>
3011 S:      Maintained
3012 F:      drivers/input/misc/ati_remote2.c
3013
3014 ATK0110 HWMON DRIVER
3015 M:      Luca Tettamanti <kronos.it@gmail.com>
3016 L:      linux-hwmon@vger.kernel.org
3017 S:      Maintained
3018 F:      drivers/hwmon/asus_atk0110.c
3019
3020 ATLX ETHERNET DRIVERS
3021 M:      Chris Snook <chris.snook@gmail.com>
3022 L:      netdev@vger.kernel.org
3023 S:      Maintained
3024 W:      http://sourceforge.net/projects/atl1
3025 W:      http://atl1.sourceforge.net
3026 F:      drivers/net/ethernet/atheros/
3027
3028 ATM
3029 M:      Chas Williams <3chas3@gmail.com>
3030 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3031 L:      netdev@vger.kernel.org
3032 S:      Maintained
3033 W:      http://linux-atm.sourceforge.net
3034 F:      drivers/atm/
3035 F:      include/linux/atm*
3036 F:      include/uapi/linux/atm*
3037
3038 ATMEL MACB ETHERNET DRIVER
3039 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3040 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3041 S:      Supported
3042 F:      drivers/net/ethernet/cadence/
3043
3044 ATMEL MAXTOUCH DRIVER
3045 M:      Nick Dyer <nick@shmanahar.org>
3046 S:      Maintained
3047 T:      git git://github.com/ndyer/linux.git
3048 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3049 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3050
3051 ATMEL WIRELESS DRIVER
3052 M:      Simon Kelley <simon@thekelleys.org.uk>
3053 L:      linux-wireless@vger.kernel.org
3054 S:      Maintained
3055 W:      http://www.thekelleys.org.uk/atmel
3056 W:      http://atmelwlandriver.sourceforge.net/
3057 F:      drivers/net/wireless/atmel/atmel*
3058
3059 ATOMIC INFRASTRUCTURE
3060 M:      Will Deacon <will@kernel.org>
3061 M:      Peter Zijlstra <peterz@infradead.org>
3062 R:      Boqun Feng <boqun.feng@gmail.com>
3063 L:      linux-kernel@vger.kernel.org
3064 S:      Maintained
3065 F:      arch/*/include/asm/atomic*.h
3066 F:      include/*/atomic*.h
3067 F:      include/linux/refcount.h
3068 F:      Documentation/atomic_*.txt
3069 F:      scripts/atomic/
3070
3071 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3072 M:      Bradley Grove <linuxdrivers@attotech.com>
3073 L:      linux-scsi@vger.kernel.org
3074 S:      Supported
3075 W:      http://www.attotech.com
3076 F:      drivers/scsi/esas2r
3077
3078 ATUSB IEEE 802.15.4 RADIO DRIVER
3079 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3080 L:      linux-wpan@vger.kernel.org
3081 S:      Maintained
3082 F:      drivers/net/ieee802154/at86rf230.h
3083 F:      drivers/net/ieee802154/atusb.c
3084 F:      drivers/net/ieee802154/atusb.h
3085
3086 AUDIT SUBSYSTEM
3087 M:      Paul Moore <paul@paul-moore.com>
3088 M:      Eric Paris <eparis@redhat.com>
3089 L:      linux-audit@redhat.com (moderated for non-subscribers)
3090 S:      Supported
3091 W:      https://github.com/linux-audit
3092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3093 F:      include/asm-generic/audit_*.h
3094 F:      include/linux/audit.h
3095 F:      include/uapi/linux/audit.h
3096 F:      kernel/audit*
3097 F:      lib/*audit.c
3098
3099 AUXILIARY DISPLAY DRIVERS
3100 M:      Miguel Ojeda <ojeda@kernel.org>
3101 S:      Maintained
3102 F:      drivers/auxdisplay/
3103 F:      include/linux/cfag12864b.h
3104
3105 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3106 M:      Andreas Klinger <ak@it-klinger.de>
3107 L:      linux-iio@vger.kernel.org
3108 S:      Maintained
3109 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3110 F:      drivers/iio/adc/hx711.c
3111
3112 AX.25 NETWORK LAYER
3113 M:      Ralf Baechle <ralf@linux-mips.org>
3114 L:      linux-hams@vger.kernel.org
3115 S:      Maintained
3116 W:      http://www.linux-ax25.org/
3117 F:      include/net/ax25.h
3118 F:      include/uapi/linux/ax25.h
3119 F:      net/ax25/
3120
3121 AXENTIA ARM DEVICES
3122 M:      Peter Rosin <peda@axentia.se>
3123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3124 S:      Maintained
3125 F:      arch/arm/boot/dts/at91-linea.dtsi
3126 F:      arch/arm/boot/dts/at91-natte.dtsi
3127 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3128 F:      arch/arm/boot/dts/at91-tse850-3.dts
3129
3130 AXENTIA ASOC DRIVERS
3131 M:      Peter Rosin <peda@axentia.se>
3132 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3133 S:      Maintained
3134 F:      Documentation/devicetree/bindings/sound/axentia,*
3135 F:      sound/soc/atmel/tse850-pcm5142.c
3136
3137 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3138 M:      Nuno Sá <nuno.sa@analog.com>
3139 L:      linux-hwmon@vger.kernel.org
3140 S:      Supported
3141 W:      http://ez.analog.com/community/linux-device-drivers
3142 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3143 F:      drivers/hwmon/axi-fan-control.c
3144
3145 AXXIA I2C CONTROLLER
3146 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3147 L:      linux-i2c@vger.kernel.org
3148 S:      Maintained
3149 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3150 F:      drivers/i2c/busses/i2c-axxia.c
3151
3152 AZ6007 DVB DRIVER
3153 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3154 L:      linux-media@vger.kernel.org
3155 S:      Maintained
3156 W:      https://linuxtv.org
3157 T:      git git://linuxtv.org/media_tree.git
3158 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3159
3160 AZTECH FM RADIO RECEIVER DRIVER
3161 M:      Hans Verkuil <hverkuil@xs4all.nl>
3162 L:      linux-media@vger.kernel.org
3163 S:      Maintained
3164 W:      https://linuxtv.org
3165 T:      git git://linuxtv.org/media_tree.git
3166 F:      drivers/media/radio/radio-aztech*
3167
3168 B43 WIRELESS DRIVER
3169 L:      linux-wireless@vger.kernel.org
3170 L:      b43-dev@lists.infradead.org
3171 S:      Odd Fixes
3172 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3173 F:      drivers/net/wireless/broadcom/b43/
3174
3175 B43LEGACY WIRELESS DRIVER
3176 M:      Larry Finger <Larry.Finger@lwfinger.net>
3177 L:      linux-wireless@vger.kernel.org
3178 L:      b43-dev@lists.infradead.org
3179 S:      Maintained
3180 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3181 F:      drivers/net/wireless/broadcom/b43legacy/
3182
3183 BACKLIGHT CLASS/SUBSYSTEM
3184 M:      Lee Jones <lee.jones@linaro.org>
3185 M:      Daniel Thompson <daniel.thompson@linaro.org>
3186 M:      Jingoo Han <jingoohan1@gmail.com>
3187 L:      dri-devel@lists.freedesktop.org
3188 S:      Maintained
3189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3190 F:      Documentation/ABI/stable/sysfs-class-backlight
3191 F:      Documentation/ABI/testing/sysfs-class-backlight
3192 F:      Documentation/devicetree/bindings/leds/backlight
3193 F:      drivers/video/backlight/
3194 F:      include/linux/backlight.h
3195 F:      include/linux/pwm_backlight.h
3196
3197 BATMAN ADVANCED
3198 M:      Marek Lindner <mareklindner@neomailbox.ch>
3199 M:      Simon Wunderlich <sw@simonwunderlich.de>
3200 M:      Antonio Quartulli <a@unstable.cc>
3201 M:      Sven Eckelmann <sven@narfation.org>
3202 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3203 S:      Maintained
3204 W:      https://www.open-mesh.org/
3205 Q:      https://patchwork.open-mesh.org/project/batman/list/
3206 B:      https://www.open-mesh.org/projects/batman-adv/issues
3207 C:      irc://chat.freenode.net/batman
3208 T:      git https://git.open-mesh.org/linux-merge.git
3209 F:      Documentation/networking/batman-adv.rst
3210 F:      include/uapi/linux/batadv_packet.h
3211 F:      include/uapi/linux/batman_adv.h
3212 F:      net/batman-adv/
3213
3214 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3215 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3216 L:      linux-hams@vger.kernel.org
3217 S:      Maintained
3218 W:      http://www.baycom.org/~tom/ham/ham.html
3219 F:      drivers/net/hamradio/baycom*
3220
3221 BCACHE (BLOCK LAYER CACHE)
3222 M:      Coly Li <colyli@suse.de>
3223 M:      Kent Overstreet <kent.overstreet@gmail.com>
3224 L:      linux-bcache@vger.kernel.org
3225 S:      Maintained
3226 W:      http://bcache.evilpiepirate.org
3227 C:      irc://irc.oftc.net/bcache
3228 F:      drivers/md/bcache/
3229
3230 BDISP ST MEDIA DRIVER
3231 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3232 L:      linux-media@vger.kernel.org
3233 S:      Supported
3234 W:      https://linuxtv.org
3235 T:      git git://linuxtv.org/media_tree.git
3236 F:      drivers/media/platform/sti/bdisp
3237
3238 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3239 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3240 L:      netdev@vger.kernel.org
3241 S:      Maintained
3242 F:      drivers/net/ethernet/ec_bhf.c
3243
3244 BEFS FILE SYSTEM
3245 M:      Luis de Bethencourt <luisbg@kernel.org>
3246 M:      Salah Triki <salah.triki@gmail.com>
3247 S:      Maintained
3248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3249 F:      Documentation/filesystems/befs.rst
3250 F:      fs/befs/
3251
3252 BFQ I/O SCHEDULER
3253 M:      Paolo Valente <paolo.valente@linaro.org>
3254 M:      Jens Axboe <axboe@kernel.dk>
3255 L:      linux-block@vger.kernel.org
3256 S:      Maintained
3257 F:      Documentation/block/bfq-iosched.rst
3258 F:      block/bfq-*
3259
3260 BFS FILE SYSTEM
3261 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3262 S:      Maintained
3263 F:      Documentation/filesystems/bfs.rst
3264 F:      fs/bfs/
3265 F:      include/uapi/linux/bfs_fs.h
3266
3267 BITMAP API
3268 M:      Yury Norov <yury.norov@gmail.com>
3269 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3270 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3271 S:      Maintained
3272 F:      include/asm-generic/bitops/find.h
3273 F:      include/linux/bitmap.h
3274 F:      lib/bitmap.c
3275 F:      lib/find_bit.c
3276 F:      lib/find_bit_benchmark.c
3277 F:      lib/test_bitmap.c
3278 F:      tools/include/asm-generic/bitops/find.h
3279 F:      tools/include/linux/bitmap.h
3280 F:      tools/lib/bitmap.c
3281 F:      tools/lib/find_bit.c
3282
3283 BLINKM RGB LED DRIVER
3284 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3285 S:      Maintained
3286 F:      drivers/leds/leds-blinkm.c
3287
3288 BLOCK LAYER
3289 M:      Jens Axboe <axboe@kernel.dk>
3290 L:      linux-block@vger.kernel.org
3291 S:      Maintained
3292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3293 F:      block/
3294 F:      drivers/block/
3295 F:      fs/block_dev.c
3296 F:      include/linux/blk*
3297 F:      kernel/trace/blktrace.c
3298 F:      lib/sbitmap.c
3299
3300 BLOCK2MTD DRIVER
3301 M:      Joern Engel <joern@lazybastard.org>
3302 L:      linux-mtd@lists.infradead.org
3303 S:      Maintained
3304 F:      drivers/mtd/devices/block2mtd.c
3305
3306 BLUETOOTH DRIVERS
3307 M:      Marcel Holtmann <marcel@holtmann.org>
3308 M:      Johan Hedberg <johan.hedberg@gmail.com>
3309 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3310 L:      linux-bluetooth@vger.kernel.org
3311 S:      Supported
3312 W:      http://www.bluez.org/
3313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3315 F:      drivers/bluetooth/
3316
3317 BLUETOOTH SUBSYSTEM
3318 M:      Marcel Holtmann <marcel@holtmann.org>
3319 M:      Johan Hedberg <johan.hedberg@gmail.com>
3320 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3321 L:      linux-bluetooth@vger.kernel.org
3322 S:      Supported
3323 W:      http://www.bluez.org/
3324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3326 F:      include/net/bluetooth/
3327 F:      net/bluetooth/
3328
3329 BONDING DRIVER
3330 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3331 M:      Veaceslav Falico <vfalico@gmail.com>
3332 M:      Andy Gospodarek <andy@greyhouse.net>
3333 L:      netdev@vger.kernel.org
3334 S:      Supported
3335 W:      http://sourceforge.net/projects/bonding/
3336 F:      drivers/net/bonding/
3337 F:      include/net/bonding.h
3338 F:      include/uapi/linux/if_bonding.h
3339
3340 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3341 M:      Dan Robertson <dan@dlrobertson.com>
3342 L:      linux-iio@vger.kernel.org
3343 S:      Maintained
3344 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3345 F:      drivers/iio/accel/bma400*
3346
3347 BPF (Safe dynamic programs and tools)
3348 M:      Alexei Starovoitov <ast@kernel.org>
3349 M:      Daniel Borkmann <daniel@iogearbox.net>
3350 M:      Andrii Nakryiko <andrii@kernel.org>
3351 R:      Martin KaFai Lau <kafai@fb.com>
3352 R:      Song Liu <songliubraving@fb.com>
3353 R:      Yonghong Song <yhs@fb.com>
3354 R:      John Fastabend <john.fastabend@gmail.com>
3355 R:      KP Singh <kpsingh@kernel.org>
3356 L:      netdev@vger.kernel.org
3357 L:      bpf@vger.kernel.org
3358 S:      Supported
3359 W:      https://bpf.io/
3360 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3363 F:      Documentation/bpf/
3364 F:      Documentation/networking/filter.rst
3365 F:      Documentation/userspace-api/ebpf/
3366 F:      arch/*/net/*
3367 F:      include/linux/bpf*
3368 F:      include/linux/filter.h
3369 F:      include/trace/events/xdp.h
3370 F:      include/uapi/linux/bpf*
3371 F:      include/uapi/linux/filter.h
3372 F:      kernel/bpf/
3373 F:      kernel/trace/bpf_trace.c
3374 F:      lib/test_bpf.c
3375 F:      net/bpf/
3376 F:      net/core/filter.c
3377 F:      net/sched/act_bpf.c
3378 F:      net/sched/cls_bpf.c
3379 F:      samples/bpf/
3380 F:      scripts/bpf_doc.py
3381 F:      tools/bpf/
3382 F:      tools/lib/bpf/
3383 F:      tools/testing/selftests/bpf/
3384 N:      bpf
3385 K:      bpf
3386
3387 BPF JIT for ARM
3388 M:      Shubham Bansal <illusionist.neo@gmail.com>
3389 L:      netdev@vger.kernel.org
3390 L:      bpf@vger.kernel.org
3391 S:      Maintained
3392 F:      arch/arm/net/
3393
3394 BPF JIT for ARM64
3395 M:      Daniel Borkmann <daniel@iogearbox.net>
3396 M:      Alexei Starovoitov <ast@kernel.org>
3397 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3398 L:      netdev@vger.kernel.org
3399 L:      bpf@vger.kernel.org
3400 S:      Supported
3401 F:      arch/arm64/net/
3402
3403 BPF JIT for MIPS (32-BIT AND 64-BIT)
3404 M:      Paul Burton <paulburton@kernel.org>
3405 L:      netdev@vger.kernel.org
3406 L:      bpf@vger.kernel.org
3407 S:      Maintained
3408 F:      arch/mips/net/
3409
3410 BPF JIT for NFP NICs
3411 M:      Jakub Kicinski <kuba@kernel.org>
3412 L:      netdev@vger.kernel.org
3413 L:      bpf@vger.kernel.org
3414 S:      Supported
3415 F:      drivers/net/ethernet/netronome/nfp/bpf/
3416
3417 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3418 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3419 M:      Sandipan Das <sandipan@linux.ibm.com>
3420 L:      netdev@vger.kernel.org
3421 L:      bpf@vger.kernel.org
3422 S:      Maintained
3423 F:      arch/powerpc/net/
3424
3425 BPF JIT for RISC-V (32-bit)
3426 M:      Luke Nelson <luke.r.nels@gmail.com>
3427 M:      Xi Wang <xi.wang@gmail.com>
3428 L:      netdev@vger.kernel.org
3429 L:      bpf@vger.kernel.org
3430 S:      Maintained
3431 F:      arch/riscv/net/
3432 X:      arch/riscv/net/bpf_jit_comp64.c
3433
3434 BPF JIT for RISC-V (64-bit)
3435 M:      Björn Töpel <bjorn@kernel.org>
3436 L:      netdev@vger.kernel.org
3437 L:      bpf@vger.kernel.org
3438 S:      Maintained
3439 F:      arch/riscv/net/
3440 X:      arch/riscv/net/bpf_jit_comp32.c
3441
3442 BPF JIT for S390
3443 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3444 M:      Heiko Carstens <hca@linux.ibm.com>
3445 M:      Vasily Gorbik <gor@linux.ibm.com>
3446 L:      netdev@vger.kernel.org
3447 L:      bpf@vger.kernel.org
3448 S:      Maintained
3449 F:      arch/s390/net/
3450 X:      arch/s390/net/pnet.c
3451
3452 BPF JIT for SPARC (32-BIT AND 64-BIT)
3453 M:      David S. Miller <davem@davemloft.net>
3454 L:      netdev@vger.kernel.org
3455 L:      bpf@vger.kernel.org
3456 S:      Maintained
3457 F:      arch/sparc/net/
3458
3459 BPF JIT for X86 32-BIT
3460 M:      Wang YanQing <udknight@gmail.com>
3461 L:      netdev@vger.kernel.org
3462 L:      bpf@vger.kernel.org
3463 S:      Maintained
3464 F:      arch/x86/net/bpf_jit_comp32.c
3465
3466 BPF JIT for X86 64-BIT
3467 M:      Alexei Starovoitov <ast@kernel.org>
3468 M:      Daniel Borkmann <daniel@iogearbox.net>
3469 L:      netdev@vger.kernel.org
3470 L:      bpf@vger.kernel.org
3471 S:      Supported
3472 F:      arch/x86/net/
3473 X:      arch/x86/net/bpf_jit_comp32.c
3474
3475 BPF LSM (Security Audit and Enforcement using BPF)
3476 M:      KP Singh <kpsingh@kernel.org>
3477 R:      Florent Revest <revest@chromium.org>
3478 R:      Brendan Jackman <jackmanb@chromium.org>
3479 L:      bpf@vger.kernel.org
3480 S:      Maintained
3481 F:      Documentation/bpf/bpf_lsm.rst
3482 F:      include/linux/bpf_lsm.h
3483 F:      kernel/bpf/bpf_lsm.c
3484 F:      security/bpf/
3485
3486 BROADCOM B44 10/100 ETHERNET DRIVER
3487 M:      Michael Chan <michael.chan@broadcom.com>
3488 L:      netdev@vger.kernel.org
3489 S:      Supported
3490 F:      drivers/net/ethernet/broadcom/b44.*
3491
3492 BROADCOM B53 ETHERNET SWITCH DRIVER
3493 M:      Florian Fainelli <f.fainelli@gmail.com>
3494 L:      netdev@vger.kernel.org
3495 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3496 S:      Supported
3497 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3498 F:      drivers/net/dsa/b53/*
3499 F:      include/linux/dsa/brcm.h
3500 F:      include/linux/platform_data/b53.h
3501
3502 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3503 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3504 L:      bcm-kernel-feedback-list@broadcom.com
3505 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3507 S:      Maintained
3508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3509 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3510 F:      drivers/pci/controller/pcie-brcmstb.c
3511 F:      drivers/staging/vc04_services
3512 N:      bcm2711
3513 N:      bcm283*
3514
3515 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3516 M:      Florian Fainelli <f.fainelli@gmail.com>
3517 M:      Ray Jui <rjui@broadcom.com>
3518 M:      Scott Branden <sbranden@broadcom.com>
3519 M:      bcm-kernel-feedback-list@broadcom.com
3520 S:      Maintained
3521 T:      git git://github.com/broadcom/mach-bcm
3522 F:      arch/arm/mach-bcm/
3523 N:      bcm281*
3524 N:      bcm113*
3525 N:      bcm216*
3526 N:      kona
3527
3528 BROADCOM BCM47XX MIPS ARCHITECTURE
3529 M:      Hauke Mehrtens <hauke@hauke-m.de>
3530 M:      Rafał Miłecki <zajec5@gmail.com>
3531 L:      linux-mips@vger.kernel.org
3532 S:      Maintained
3533 F:      Documentation/devicetree/bindings/mips/brcm/
3534 F:      arch/mips/bcm47xx/*
3535 F:      arch/mips/include/asm/mach-bcm47xx/*
3536
3537 BROADCOM BCM4908 ETHERNET DRIVER
3538 M:      Rafał Miłecki <rafal@milecki.pl>
3539 M:      bcm-kernel-feedback-list@broadcom.com
3540 L:      netdev@vger.kernel.org
3541 S:      Maintained
3542 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3543 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3544 F:      drivers/net/ethernet/broadcom/unimac.h
3545
3546 BROADCOM BCM5301X ARM ARCHITECTURE
3547 M:      Hauke Mehrtens <hauke@hauke-m.de>
3548 M:      Rafał Miłecki <zajec5@gmail.com>
3549 M:      bcm-kernel-feedback-list@broadcom.com
3550 L:      linux-arm-kernel@lists.infradead.org
3551 S:      Maintained
3552 F:      arch/arm/boot/dts/bcm470*
3553 F:      arch/arm/boot/dts/bcm5301*
3554 F:      arch/arm/boot/dts/bcm953012*
3555 F:      arch/arm/mach-bcm/bcm_5301x.c
3556
3557 BROADCOM BCM53573 ARM ARCHITECTURE
3558 M:      Rafał Miłecki <rafal@milecki.pl>
3559 L:      bcm-kernel-feedback-list@broadcom.com
3560 L:      linux-arm-kernel@lists.infradead.org
3561 S:      Maintained
3562 F:      arch/arm/boot/dts/bcm47189*
3563 F:      arch/arm/boot/dts/bcm53573*
3564
3565 BROADCOM BCM63XX ARM ARCHITECTURE
3566 M:      Florian Fainelli <f.fainelli@gmail.com>
3567 M:      bcm-kernel-feedback-list@broadcom.com
3568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3569 S:      Maintained
3570 T:      git git://github.com/broadcom/stblinux.git
3571 N:      bcm63xx
3572
3573 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3574 M:      Kevin Cernekee <cernekee@gmail.com>
3575 L:      linux-usb@vger.kernel.org
3576 S:      Maintained
3577 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3578
3579 BROADCOM BCM7XXX ARM ARCHITECTURE
3580 M:      Florian Fainelli <f.fainelli@gmail.com>
3581 M:      bcm-kernel-feedback-list@broadcom.com
3582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3583 S:      Maintained
3584 T:      git git://github.com/broadcom/stblinux.git
3585 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3586 F:      arch/arm/boot/dts/bcm7*.dts*
3587 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3588 F:      arch/arm/mach-bcm/*brcmstb*
3589 F:      arch/arm/mm/cache-b15-rac.c
3590 F:      drivers/bus/brcmstb_gisb.c
3591 F:      drivers/pci/controller/pcie-brcmstb.c
3592 N:      brcmstb
3593
3594 BROADCOM BDC DRIVER
3595 M:      Al Cooper <alcooperx@gmail.com>
3596 L:      linux-usb@vger.kernel.org
3597 L:      bcm-kernel-feedback-list@broadcom.com
3598 S:      Maintained
3599 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3600 F:      drivers/usb/gadget/udc/bdc/
3601
3602 BROADCOM BMIPS CPUFREQ DRIVER
3603 M:      Markus Mayer <mmayer@broadcom.com>
3604 M:      bcm-kernel-feedback-list@broadcom.com
3605 L:      linux-pm@vger.kernel.org
3606 S:      Maintained
3607 F:      drivers/cpufreq/bmips-cpufreq.c
3608
3609 BROADCOM BMIPS MIPS ARCHITECTURE
3610 M:      Florian Fainelli <f.fainelli@gmail.com>
3611 L:      bcm-kernel-feedback-list@broadcom.com
3612 L:      linux-mips@vger.kernel.org
3613 S:      Maintained
3614 T:      git git://github.com/broadcom/stblinux.git
3615 F:      arch/mips/bmips/*
3616 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3617 F:      arch/mips/include/asm/mach-bmips/*
3618 F:      arch/mips/kernel/*bmips*
3619 F:      drivers/soc/bcm/bcm63xx
3620 F:      drivers/irqchip/irq-bcm63*
3621 F:      drivers/irqchip/irq-bcm7*
3622 F:      drivers/irqchip/irq-brcmstb*
3623 F:      include/linux/bcm963xx_nvram.h
3624 F:      include/linux/bcm963xx_tag.h
3625
3626 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3627 M:      Rasesh Mody <rmody@marvell.com>
3628 M:      GR-Linux-NIC-Dev@marvell.com
3629 L:      netdev@vger.kernel.org
3630 S:      Supported
3631 F:      drivers/net/ethernet/broadcom/bnx2.*
3632 F:      drivers/net/ethernet/broadcom/bnx2_*
3633
3634 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3635 M:      Saurav Kashyap <skashyap@marvell.com>
3636 M:      Javed Hasan <jhasan@marvell.com>
3637 M:      GR-QLogic-Storage-Upstream@marvell.com
3638 L:      linux-scsi@vger.kernel.org
3639 S:      Supported
3640 F:      drivers/scsi/bnx2fc/
3641
3642 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3643 M:      Nilesh Javali <njavali@marvell.com>
3644 M:      Manish Rangankar <mrangankar@marvell.com>
3645 M:      GR-QLogic-Storage-Upstream@marvell.com
3646 L:      linux-scsi@vger.kernel.org
3647 S:      Supported
3648 F:      drivers/scsi/bnx2i/
3649
3650 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3651 M:      Ariel Elior <aelior@marvell.com>
3652 M:      Sudarsana Kalluru <skalluru@marvell.com>
3653 M:      GR-everest-linux-l2@marvell.com
3654 L:      netdev@vger.kernel.org
3655 S:      Supported
3656 F:      drivers/net/ethernet/broadcom/bnx2x/
3657
3658 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3659 M:      Michael Chan <michael.chan@broadcom.com>
3660 L:      netdev@vger.kernel.org
3661 S:      Supported
3662 F:      drivers/net/ethernet/broadcom/bnxt/
3663
3664 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3665 M:      Arend van Spriel <aspriel@gmail.com>
3666 M:      Franky Lin <franky.lin@broadcom.com>
3667 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3668 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3669 M:      Wright Feng <wright.feng@infineon.com>
3670 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3671 L:      linux-wireless@vger.kernel.org
3672 L:      brcm80211-dev-list.pdl@broadcom.com
3673 L:      SHA-cyfmac-dev-list@infineon.com
3674 S:      Supported
3675 F:      drivers/net/wireless/broadcom/brcm80211/
3676
3677 BROADCOM BRCMSTB GPIO DRIVER
3678 M:      Gregory Fong <gregory.0xf0@gmail.com>
3679 L:      bcm-kernel-feedback-list@broadcom.com
3680 S:      Supported
3681 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3682 F:      drivers/gpio/gpio-brcmstb.c
3683
3684 BROADCOM BRCMSTB I2C DRIVER
3685 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3686 L:      linux-i2c@vger.kernel.org
3687 L:      bcm-kernel-feedback-list@broadcom.com
3688 S:      Supported
3689 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3690 F:      drivers/i2c/busses/i2c-brcmstb.c
3691
3692 BROADCOM BRCMSTB UART DRIVER
3693 M:      Al Cooper <alcooperx@gmail.com>
3694 L:      linux-serial@vger.kernel.org
3695 L:      bcm-kernel-feedback-list@broadcom.com
3696 S:      Maintained
3697 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3698 F:      drivers/tty/serial/8250/8250_bcm7271.c
3699
3700 BROADCOM BRCMSTB USB EHCI DRIVER
3701 M:      Al Cooper <alcooperx@gmail.com>
3702 L:      linux-usb@vger.kernel.org
3703 L:      bcm-kernel-feedback-list@broadcom.com
3704 S:      Maintained
3705 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3706 F:      drivers/usb/host/ehci-brcm.*
3707
3708 BROADCOM BRCMSTB USB PIN MAP DRIVER
3709 M:      Al Cooper <alcooperx@gmail.com>
3710 L:      linux-usb@vger.kernel.org
3711 L:      bcm-kernel-feedback-list@broadcom.com
3712 S:      Maintained
3713 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3714 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3715
3716 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3717 M:      Al Cooper <alcooperx@gmail.com>
3718 L:      linux-kernel@vger.kernel.org
3719 L:      bcm-kernel-feedback-list@broadcom.com
3720 S:      Maintained
3721 F:      drivers/phy/broadcom/phy-brcm-usb*
3722
3723 BROADCOM ETHERNET PHY DRIVERS
3724 M:      Florian Fainelli <f.fainelli@gmail.com>
3725 L:      bcm-kernel-feedback-list@broadcom.com
3726 L:      netdev@vger.kernel.org
3727 S:      Supported
3728 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3729 F:      drivers/net/phy/bcm*.[ch]
3730 F:      drivers/net/phy/broadcom.c
3731 F:      include/linux/brcmphy.h
3732
3733 BROADCOM GENET ETHERNET DRIVER
3734 M:      Doug Berger <opendmb@gmail.com>
3735 M:      Florian Fainelli <f.fainelli@gmail.com>
3736 L:      bcm-kernel-feedback-list@broadcom.com
3737 L:      netdev@vger.kernel.org
3738 S:      Supported
3739 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3740 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3741 F:      drivers/net/ethernet/broadcom/genet/
3742 F:      drivers/net/ethernet/broadcom/unimac.h
3743 F:      drivers/net/mdio/mdio-bcm-unimac.c
3744 F:      include/linux/platform_data/bcmgenet.h
3745 F:      include/linux/platform_data/mdio-bcm-unimac.h
3746
3747 BROADCOM IPROC ARM ARCHITECTURE
3748 M:      Ray Jui <rjui@broadcom.com>
3749 M:      Scott Branden <sbranden@broadcom.com>
3750 M:      bcm-kernel-feedback-list@broadcom.com
3751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3752 S:      Maintained
3753 T:      git git://github.com/broadcom/cygnus-linux.git
3754 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3755 F:      arch/arm64/boot/dts/broadcom/stingray/*
3756 F:      drivers/clk/bcm/clk-ns*
3757 F:      drivers/clk/bcm/clk-sr*
3758 F:      drivers/pinctrl/bcm/pinctrl-ns*
3759 F:      include/dt-bindings/clock/bcm-sr*
3760 N:      iproc
3761 N:      cygnus
3762 N:      bcm[-_]nsp
3763 N:      bcm9113*
3764 N:      bcm9583*
3765 N:      bcm9585*
3766 N:      bcm9586*
3767 N:      bcm988312
3768 N:      bcm113*
3769 N:      bcm583*
3770 N:      bcm585*
3771 N:      bcm586*
3772 N:      bcm88312
3773 N:      hr2
3774 N:      stingray
3775
3776 BROADCOM IPROC GBIT ETHERNET DRIVER
3777 M:      Rafał Miłecki <rafal@milecki.pl>
3778 M:      bcm-kernel-feedback-list@broadcom.com
3779 L:      netdev@vger.kernel.org
3780 S:      Maintained
3781 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3782 F:      drivers/net/ethernet/broadcom/bgmac*
3783 F:      drivers/net/ethernet/broadcom/unimac.h
3784
3785 BROADCOM KONA GPIO DRIVER
3786 M:      Ray Jui <rjui@broadcom.com>
3787 L:      bcm-kernel-feedback-list@broadcom.com
3788 S:      Supported
3789 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3790 F:      drivers/gpio/gpio-bcm-kona.c
3791
3792 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3793 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3794 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3795 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3796 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3797 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3798 L:      linux-scsi@vger.kernel.org
3799 S:      Supported
3800 W:      https://www.broadcom.com/support/storage
3801 F:      drivers/scsi/mpi3mr/
3802
3803 BROADCOM NETXTREME-E ROCE DRIVER
3804 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3805 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3806 L:      linux-rdma@vger.kernel.org
3807 S:      Supported
3808 W:      http://www.broadcom.com
3809 F:      drivers/infiniband/hw/bnxt_re/
3810 F:      include/uapi/rdma/bnxt_re-abi.h
3811
3812 BROADCOM NVRAM DRIVER
3813 M:      Rafał Miłecki <zajec5@gmail.com>
3814 L:      linux-mips@vger.kernel.org
3815 S:      Maintained
3816 F:      drivers/firmware/broadcom/*
3817
3818 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3819 M:      Rafał Miłecki <rafal@milecki.pl>
3820 M:      Florian Fainelli <f.fainelli@gmail.com>
3821 M:      bcm-kernel-feedback-list@broadcom.com
3822 L:      linux-pm@vger.kernel.org
3823 S:      Maintained
3824 T:      git git://github.com/broadcom/stblinux.git
3825 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3826 F:      include/dt-bindings/soc/bcm-pmb.h
3827
3828 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3829 M:      Rafał Miłecki <zajec5@gmail.com>
3830 L:      linux-wireless@vger.kernel.org
3831 S:      Maintained
3832 F:      drivers/bcma/
3833 F:      include/linux/bcma/
3834
3835 BROADCOM SPI DRIVER
3836 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3837 M:      bcm-kernel-feedback-list@broadcom.com
3838 S:      Maintained
3839 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3840 F:      drivers/spi/spi-bcm-qspi.*
3841 F:      drivers/spi/spi-brcmstb-qspi.c
3842 F:      drivers/spi/spi-iproc-qspi.c
3843
3844 BROADCOM STB AVS CPUFREQ DRIVER
3845 M:      Markus Mayer <mmayer@broadcom.com>
3846 M:      bcm-kernel-feedback-list@broadcom.com
3847 L:      linux-pm@vger.kernel.org
3848 S:      Maintained
3849 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3850 F:      drivers/cpufreq/brcmstb*
3851
3852 BROADCOM STB AVS TMON DRIVER
3853 M:      Markus Mayer <mmayer@broadcom.com>
3854 M:      bcm-kernel-feedback-list@broadcom.com
3855 L:      linux-pm@vger.kernel.org
3856 S:      Maintained
3857 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3858 F:      drivers/thermal/broadcom/brcmstb*
3859
3860 BROADCOM STB DPFE DRIVER
3861 M:      Markus Mayer <mmayer@broadcom.com>
3862 M:      bcm-kernel-feedback-list@broadcom.com
3863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3864 S:      Maintained
3865 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3866 F:      drivers/memory/brcmstb_dpfe.c
3867
3868 BROADCOM STB NAND FLASH DRIVER
3869 M:      Brian Norris <computersforpeace@gmail.com>
3870 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3871 L:      linux-mtd@lists.infradead.org
3872 L:      bcm-kernel-feedback-list@broadcom.com
3873 S:      Maintained
3874 F:      drivers/mtd/nand/raw/brcmnand/
3875
3876 BROADCOM STB PCIE DRIVER
3877 M:      Jim Quinlan <jim2101024@gmail.com>
3878 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3879 M:      Florian Fainelli <f.fainelli@gmail.com>
3880 M:      bcm-kernel-feedback-list@broadcom.com
3881 L:      linux-pci@vger.kernel.org
3882 S:      Maintained
3883 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3884 F:      drivers/pci/controller/pcie-brcmstb.c
3885
3886 BROADCOM SYSTEMPORT ETHERNET DRIVER
3887 M:      Florian Fainelli <f.fainelli@gmail.com>
3888 L:      bcm-kernel-feedback-list@broadcom.com
3889 L:      netdev@vger.kernel.org
3890 S:      Supported
3891 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3892 F:      drivers/net/ethernet/broadcom/unimac.h
3893
3894 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3895 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3896 M:      Prashant Sreedharan <prashant@broadcom.com>
3897 M:      Michael Chan <mchan@broadcom.com>
3898 L:      netdev@vger.kernel.org
3899 S:      Supported
3900 F:      drivers/net/ethernet/broadcom/tg3.*
3901
3902 BROADCOM VK DRIVER
3903 M:      Scott Branden <scott.branden@broadcom.com>
3904 L:      bcm-kernel-feedback-list@broadcom.com
3905 S:      Supported
3906 F:      drivers/misc/bcm-vk/
3907 F:      include/uapi/linux/misc/bcm_vk.h
3908
3909 BROCADE BFA FC SCSI DRIVER
3910 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3911 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3912 L:      linux-scsi@vger.kernel.org
3913 S:      Supported
3914 F:      drivers/scsi/bfa/
3915
3916 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3917 M:      Rasesh Mody <rmody@marvell.com>
3918 M:      Sudarsana Kalluru <skalluru@marvell.com>
3919 M:      GR-Linux-NIC-Dev@marvell.com
3920 L:      netdev@vger.kernel.org
3921 S:      Supported
3922 F:      drivers/net/ethernet/brocade/bna/
3923
3924 BSG (block layer generic sg v4 driver)
3925 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3926 L:      linux-scsi@vger.kernel.org
3927 S:      Supported
3928 F:      block/bsg.c
3929 F:      include/linux/bsg.h
3930 F:      include/uapi/linux/bsg.h
3931
3932 BT87X AUDIO DRIVER
3933 M:      Clemens Ladisch <clemens@ladisch.de>
3934 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3935 S:      Maintained
3936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3937 F:      Documentation/sound/cards/bt87x.rst
3938 F:      sound/pci/bt87x.c
3939
3940 BT8XXGPIO DRIVER
3941 M:      Michael Buesch <m@bues.ch>
3942 S:      Maintained
3943 W:      http://bu3sch.de/btgpio.php
3944 F:      drivers/gpio/gpio-bt8xx.c
3945
3946 BTRFS FILE SYSTEM
3947 M:      Chris Mason <clm@fb.com>
3948 M:      Josef Bacik <josef@toxicpanda.com>
3949 M:      David Sterba <dsterba@suse.com>
3950 L:      linux-btrfs@vger.kernel.org
3951 S:      Maintained
3952 W:      http://btrfs.wiki.kernel.org/
3953 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3954 C:      irc://irc.libera.chat/btrfs
3955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3956 F:      Documentation/filesystems/btrfs.rst
3957 F:      fs/btrfs/
3958 F:      include/linux/btrfs*
3959 F:      include/uapi/linux/btrfs*
3960
3961 BTTV VIDEO4LINUX DRIVER
3962 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3963 L:      linux-media@vger.kernel.org
3964 S:      Odd fixes
3965 W:      https://linuxtv.org
3966 T:      git git://linuxtv.org/media_tree.git
3967 F:      Documentation/driver-api/media/drivers/bttv*
3968 F:      drivers/media/pci/bt8xx/bttv*
3969
3970 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3971 M:      Chanwoo Choi <cw00.choi@samsung.com>
3972 L:      linux-pm@vger.kernel.org
3973 L:      linux-samsung-soc@vger.kernel.org
3974 S:      Maintained
3975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3976 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3977 F:      drivers/devfreq/exynos-bus.c
3978
3979 BUSLOGIC SCSI DRIVER
3980 M:      Khalid Aziz <khalid@gonehiking.org>
3981 L:      linux-scsi@vger.kernel.org
3982 S:      Maintained
3983 F:      drivers/scsi/BusLogic.*
3984 F:      drivers/scsi/FlashPoint.*
3985
3986 C-MEDIA CMI8788 DRIVER
3987 M:      Clemens Ladisch <clemens@ladisch.de>
3988 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3989 S:      Maintained
3990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3991 F:      sound/pci/oxygen/
3992
3993 C-SKY ARCHITECTURE
3994 M:      Guo Ren <guoren@kernel.org>
3995 L:      linux-csky@vger.kernel.org
3996 S:      Supported
3997 T:      git https://github.com/c-sky/csky-linux.git
3998 F:      Documentation/devicetree/bindings/csky/
3999 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4000 F:      Documentation/devicetree/bindings/timer/csky,*
4001 F:      arch/csky/
4002 F:      drivers/clocksource/timer-gx6605s.c
4003 F:      drivers/clocksource/timer-mp-csky.c
4004 F:      drivers/irqchip/irq-csky-*
4005 N:      csky
4006 K:      csky
4007
4008 CA8210 IEEE-802.15.4 RADIO DRIVER
4009 M:      Harry Morris <h.morris@cascoda.com>
4010 L:      linux-wpan@vger.kernel.org
4011 S:      Maintained
4012 W:      https://github.com/Cascoda/ca8210-linux.git
4013 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4014 F:      drivers/net/ieee802154/ca8210.c
4015
4016 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4017 M:      Damien Le Moal <damien.lemoal@wdc.com>
4018 L:      linux-riscv@lists.infradead.org
4019 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4020 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4021 F:      drivers/pinctrl/pinctrl-k210.c
4022
4023 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4024 M:      Damien Le Moal <damien.lemoal@wdc.com>
4025 L:      linux-kernel@vger.kernel.org
4026 L:      linux-riscv@lists.infradead.org
4027 S:      Maintained
4028 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4029 F:      drivers/reset/reset-k210.c
4030
4031 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4032 M:      Damien Le Moal <damien.lemoal@wdc.com>
4033 L:      linux-riscv@lists.infradead.org
4034 S:      Maintained
4035 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4036 F:      drivers/soc/canaan/
4037 F:      include/soc/canaan/
4038
4039 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4040 M:      David Howells <dhowells@redhat.com>
4041 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4042 S:      Supported
4043 F:      Documentation/filesystems/caching/cachefiles.rst
4044 F:      fs/cachefiles/
4045
4046 CADENCE MIPI-CSI2 BRIDGES
4047 M:      Maxime Ripard <mripard@kernel.org>
4048 L:      linux-media@vger.kernel.org
4049 S:      Maintained
4050 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4051 F:      drivers/media/platform/cadence/cdns-csi2*
4052
4053 CADENCE NAND DRIVER
4054 L:      linux-mtd@lists.infradead.org
4055 S:      Orphan
4056 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4057 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4058
4059 CADENCE USB3 DRD IP DRIVER
4060 M:      Peter Chen <peter.chen@kernel.org>
4061 M:      Pawel Laszczak <pawell@cadence.com>
4062 R:      Roger Quadros <rogerq@kernel.org>
4063 R:      Aswath Govindraju <a-govindraju@ti.com>
4064 L:      linux-usb@vger.kernel.org
4065 S:      Maintained
4066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4067 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4068 F:      drivers/usb/cdns3/
4069 X:      drivers/usb/cdns3/cdnsp*
4070
4071 CADENCE USBSSP DRD IP DRIVER
4072 M:      Pawel Laszczak <pawell@cadence.com>
4073 L:      linux-usb@vger.kernel.org
4074 S:      Maintained
4075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4076 F:      drivers/usb/cdns3/
4077 X:      drivers/usb/cdns3/cdns3*
4078
4079 CADET FM/AM RADIO RECEIVER DRIVER
4080 M:      Hans Verkuil <hverkuil@xs4all.nl>
4081 L:      linux-media@vger.kernel.org
4082 S:      Maintained
4083 W:      https://linuxtv.org
4084 T:      git git://linuxtv.org/media_tree.git
4085 F:      drivers/media/radio/radio-cadet*
4086
4087 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4088 L:      linux-media@vger.kernel.org
4089 S:      Orphan
4090 T:      git git://linuxtv.org/media_tree.git
4091 F:      Documentation/admin-guide/media/cafe_ccic*
4092 F:      drivers/media/platform/marvell-ccic/
4093
4094 CAIF NETWORK LAYER
4095 L:      netdev@vger.kernel.org
4096 S:      Orphan
4097 F:      Documentation/networking/caif/
4098 F:      drivers/net/caif/
4099 F:      include/net/caif/
4100 F:      include/uapi/linux/caif/
4101 F:      net/caif/
4102
4103 CAKE QDISC
4104 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4105 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4106 S:      Maintained
4107 F:      net/sched/sch_cake.c
4108
4109 CAN NETWORK DRIVERS
4110 M:      Wolfgang Grandegger <wg@grandegger.com>
4111 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4112 L:      linux-can@vger.kernel.org
4113 S:      Maintained
4114 W:      https://github.com/linux-can
4115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4117 F:      Documentation/devicetree/bindings/net/can/
4118 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4119 F:      drivers/net/can/
4120 F:      drivers/phy/phy-can-transceiver.c
4121 F:      include/linux/can/bittiming.h
4122 F:      include/linux/can/dev.h
4123 F:      include/linux/can/led.h
4124 F:      include/linux/can/length.h
4125 F:      include/linux/can/platform/
4126 F:      include/linux/can/rx-offload.h
4127 F:      include/uapi/linux/can/error.h
4128 F:      include/uapi/linux/can/netlink.h
4129 F:      include/uapi/linux/can/vxcan.h
4130
4131 CAN NETWORK LAYER
4132 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4133 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4134 L:      linux-can@vger.kernel.org
4135 S:      Maintained
4136 W:      https://github.com/linux-can
4137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4139 F:      Documentation/networking/can.rst
4140 F:      include/linux/can/can-ml.h
4141 F:      include/linux/can/core.h
4142 F:      include/linux/can/skb.h
4143 F:      include/net/netns/can.h
4144 F:      include/uapi/linux/can.h
4145 F:      include/uapi/linux/can/bcm.h
4146 F:      include/uapi/linux/can/gw.h
4147 F:      include/uapi/linux/can/isotp.h
4148 F:      include/uapi/linux/can/raw.h
4149 F:      net/can/
4150
4151 CAN-J1939 NETWORK LAYER
4152 M:      Robin van der Gracht <robin@protonic.nl>
4153 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4154 R:      kernel@pengutronix.de
4155 L:      linux-can@vger.kernel.org
4156 S:      Maintained
4157 F:      Documentation/networking/j1939.rst
4158 F:      include/uapi/linux/can/j1939.h
4159 F:      net/can/j1939/
4160
4161 CAPABILITIES
4162 M:      Serge Hallyn <serge@hallyn.com>
4163 L:      linux-security-module@vger.kernel.org
4164 S:      Supported
4165 F:      include/linux/capability.h
4166 F:      include/uapi/linux/capability.h
4167 F:      kernel/capability.c
4168 F:      security/commoncap.c
4169
4170 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4171 M:      Kevin Tsai <ktsai@capellamicro.com>
4172 S:      Maintained
4173 F:      drivers/iio/light/cm*
4174
4175 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4176 M:      Christian Lamparter <chunkeey@googlemail.com>
4177 L:      linux-wireless@vger.kernel.org
4178 S:      Maintained
4179 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4180 F:      drivers/net/wireless/ath/carl9170/
4181
4182 CAVIUM I2C DRIVER
4183 M:      Robert Richter <rric@kernel.org>
4184 S:      Odd Fixes
4185 W:      http://www.marvell.com
4186 F:      drivers/i2c/busses/i2c-octeon*
4187 F:      drivers/i2c/busses/i2c-thunderx*
4188
4189 CAVIUM LIQUIDIO NETWORK DRIVER
4190 M:      Derek Chickles <dchickles@marvell.com>
4191 M:      Satanand Burla <sburla@marvell.com>
4192 M:      Felix Manlunas <fmanlunas@marvell.com>
4193 L:      netdev@vger.kernel.org
4194 S:      Supported
4195 W:      http://www.marvell.com
4196 F:      drivers/net/ethernet/cavium/liquidio/
4197
4198 CAVIUM MMC DRIVER
4199 M:      Robert Richter <rric@kernel.org>
4200 S:      Odd Fixes
4201 W:      http://www.marvell.com
4202 F:      drivers/mmc/host/cavium*
4203
4204 CAVIUM OCTEON-TX CRYPTO DRIVER
4205 M:      George Cherian <gcherian@marvell.com>
4206 L:      linux-crypto@vger.kernel.org
4207 S:      Supported
4208 W:      http://www.marvell.com
4209 F:      drivers/crypto/cavium/cpt/
4210
4211 CAVIUM THUNDERX2 ARM64 SOC
4212 M:      Robert Richter <rric@kernel.org>
4213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4214 S:      Odd Fixes
4215 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4216 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4217
4218 CBS/ETF/TAPRIO QDISCS
4219 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4220 S:      Maintained
4221 L:      netdev@vger.kernel.org
4222 F:      net/sched/sch_cbs.c
4223 F:      net/sched/sch_etf.c
4224 F:      net/sched/sch_taprio.c
4225
4226 CC2520 IEEE-802.15.4 RADIO DRIVER
4227 M:      Varka Bhadram <varkabhadram@gmail.com>
4228 L:      linux-wpan@vger.kernel.org
4229 S:      Maintained
4230 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4231 F:      drivers/net/ieee802154/cc2520.c
4232 F:      include/linux/spi/cc2520.h
4233
4234 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4235 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4236 L:      linux-crypto@vger.kernel.org
4237 S:      Supported
4238 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4239 F:      drivers/crypto/ccree/
4240
4241 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4242 M:      Hadar Gat <hadar.gat@arm.com>
4243 L:      linux-crypto@vger.kernel.org
4244 S:      Supported
4245 F:      drivers/char/hw_random/cctrng.c
4246 F:      drivers/char/hw_random/cctrng.h
4247 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4248 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4249
4250 CEC FRAMEWORK
4251 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4252 L:      linux-media@vger.kernel.org
4253 S:      Supported
4254 W:      http://linuxtv.org
4255 T:      git git://linuxtv.org/media_tree.git
4256 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4257 F:      Documentation/devicetree/bindings/media/cec.txt
4258 F:      Documentation/driver-api/media/cec-core.rst
4259 F:      Documentation/userspace-api/media/cec
4260 F:      drivers/media/cec/
4261 F:      drivers/media/rc/keymaps/rc-cec.c
4262 F:      include/media/cec-notifier.h
4263 F:      include/media/cec.h
4264 F:      include/uapi/linux/cec-funcs.h
4265 F:      include/uapi/linux/cec.h
4266
4267 CEC GPIO DRIVER
4268 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4269 L:      linux-media@vger.kernel.org
4270 S:      Supported
4271 W:      http://linuxtv.org
4272 T:      git git://linuxtv.org/media_tree.git
4273 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4274 F:      drivers/media/cec/platform/cec-gpio/
4275
4276 CELL BROADBAND ENGINE ARCHITECTURE
4277 M:      Arnd Bergmann <arnd@arndb.de>
4278 L:      linuxppc-dev@lists.ozlabs.org
4279 S:      Supported
4280 W:      http://www.ibm.com/developerworks/power/cell/
4281 F:      arch/powerpc/include/asm/cell*.h
4282 F:      arch/powerpc/include/asm/spu*.h
4283 F:      arch/powerpc/include/uapi/asm/spu*.h
4284 F:      arch/powerpc/platforms/cell/
4285
4286 CELLWISE CW2015 BATTERY DRIVER
4287 M:      Tobias Schrammm <t.schramm@manjaro.org>
4288 S:      Maintained
4289 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4290 F:      drivers/power/supply/cw2015_battery.c
4291
4292 CEPH COMMON CODE (LIBCEPH)
4293 M:      Ilya Dryomov <idryomov@gmail.com>
4294 M:      Jeff Layton <jlayton@kernel.org>
4295 L:      ceph-devel@vger.kernel.org
4296 S:      Supported
4297 W:      http://ceph.com/
4298 T:      git git://github.com/ceph/ceph-client.git
4299 F:      include/linux/ceph/
4300 F:      include/linux/crush/
4301 F:      net/ceph/
4302
4303 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4304 M:      Jeff Layton <jlayton@kernel.org>
4305 M:      Ilya Dryomov <idryomov@gmail.com>
4306 L:      ceph-devel@vger.kernel.org
4307 S:      Supported
4308 W:      http://ceph.com/
4309 T:      git git://github.com/ceph/ceph-client.git
4310 F:      Documentation/filesystems/ceph.rst
4311 F:      fs/ceph/
4312
4313 CERTIFICATE HANDLING
4314 M:      David Howells <dhowells@redhat.com>
4315 M:      David Woodhouse <dwmw2@infradead.org>
4316 L:      keyrings@vger.kernel.org
4317 S:      Maintained
4318 F:      Documentation/admin-guide/module-signing.rst
4319 F:      certs/
4320 F:      scripts/extract-cert.c
4321 F:      scripts/sign-file.c
4322
4323 CFAG12864B LCD DRIVER
4324 M:      Miguel Ojeda <ojeda@kernel.org>
4325 S:      Maintained
4326 F:      drivers/auxdisplay/cfag12864b.c
4327 F:      include/linux/cfag12864b.h
4328
4329 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4330 M:      Miguel Ojeda <ojeda@kernel.org>
4331 S:      Maintained
4332 F:      drivers/auxdisplay/cfag12864bfb.c
4333 F:      include/linux/cfag12864b.h
4334
4335 CHAR and MISC DRIVERS
4336 M:      Arnd Bergmann <arnd@arndb.de>
4337 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4338 S:      Supported
4339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4340 F:      drivers/char/
4341 F:      drivers/misc/
4342 F:      include/linux/miscdevice.h
4343 X:      drivers/char/agp/
4344 X:      drivers/char/hw_random/
4345 X:      drivers/char/ipmi/
4346 X:      drivers/char/random.c
4347 X:      drivers/char/tpm/
4348
4349 CHECKPATCH
4350 M:      Andy Whitcroft <apw@canonical.com>
4351 M:      Joe Perches <joe@perches.com>
4352 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4353 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4354 S:      Maintained
4355 F:      scripts/checkpatch.pl
4356
4357 CHECKPATCH DOCUMENTATION
4358 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4359 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4360 R:      Joe Perches <joe@perches.com>
4361 S:      Maintained
4362 F:      Documentation/dev-tools/checkpatch.rst
4363
4364 CHINESE DOCUMENTATION
4365 M:      Alex Shi <alexs@kernel.org>
4366 S:      Maintained
4367 F:      Documentation/translations/zh_CN/
4368
4369 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4370 M:      Peter Chen <peter.chen@kernel.org>
4371 L:      linux-usb@vger.kernel.org
4372 S:      Maintained
4373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4374 F:      drivers/usb/chipidea/
4375
4376 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4377 M:      Hans de Goede <hdegoede@redhat.com>
4378 L:      linux-input@vger.kernel.org
4379 S:      Maintained
4380 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4381 F:      drivers/input/touchscreen/chipone_icn8318.c
4382
4383 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4384 M:      Hans de Goede <hdegoede@redhat.com>
4385 L:      linux-input@vger.kernel.org
4386 S:      Maintained
4387 F:      drivers/input/touchscreen/chipone_icn8505.c
4388
4389 CHROME HARDWARE PLATFORM SUPPORT
4390 M:      Benson Leung <bleung@chromium.org>
4391 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4392 S:      Maintained
4393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4394 F:      drivers/platform/chrome/
4395
4396 CHROMEOS EC CODEC DRIVER
4397 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4398 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4399 R:      Guenter Roeck <groeck@chromium.org>
4400 S:      Maintained
4401 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4402 F:      sound/soc/codecs/cros_ec_codec.*
4403
4404 CHROMEOS EC SUBDRIVERS
4405 M:      Benson Leung <bleung@chromium.org>
4406 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4407 R:      Guenter Roeck <groeck@chromium.org>
4408 S:      Maintained
4409 F:      drivers/power/supply/cros_usbpd-charger.c
4410 N:      cros_ec
4411 N:      cros-ec
4412
4413 CHRONTEL CH7322 CEC DRIVER
4414 M:      Jeff Chase <jnchase@google.com>
4415 L:      linux-media@vger.kernel.org
4416 S:      Maintained
4417 T:      git git://linuxtv.org/media_tree.git
4418 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4419 F:      drivers/media/cec/i2c/ch7322.c
4420
4421 CIRRUS LOGIC AUDIO CODEC DRIVERS
4422 M:      James Schulman <james.schulman@cirrus.com>
4423 M:      David Rhodes <david.rhodes@cirrus.com>
4424 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4425 L:      patches@opensource.cirrus.com
4426 S:      Maintained
4427 F:      sound/soc/codecs/cs*
4428
4429 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4430 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4431 L:      netdev@vger.kernel.org
4432 S:      Maintained
4433 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4434
4435 CIRRUS LOGIC LOCHNAGAR DRIVER
4436 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4437 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4438 L:      patches@opensource.cirrus.com
4439 S:      Supported
4440 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4441 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4442 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4443 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4444 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4445 F:      Documentation/hwmon/lochnagar.rst
4446 F:      drivers/clk/clk-lochnagar.c
4447 F:      drivers/hwmon/lochnagar-hwmon.c
4448 F:      drivers/mfd/lochnagar-i2c.c
4449 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4450 F:      drivers/regulator/lochnagar-regulator.c
4451 F:      include/dt-bindings/clk/lochnagar.h
4452 F:      include/dt-bindings/pinctrl/lochnagar.h
4453 F:      include/linux/mfd/lochnagar*
4454 F:      sound/soc/codecs/lochnagar-sc.c
4455
4456 CIRRUS LOGIC MADERA CODEC DRIVERS
4457 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4458 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4459 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4460 L:      patches@opensource.cirrus.com
4461 S:      Supported
4462 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4463 T:      git https://github.com/CirrusLogic/linux-drivers.git
4464 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4465 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4466 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4467 F:      drivers/gpio/gpio-madera*
4468 F:      drivers/irqchip/irq-madera*
4469 F:      drivers/mfd/cs47l*
4470 F:      drivers/mfd/madera*
4471 F:      drivers/pinctrl/cirrus/*
4472 F:      include/dt-bindings/sound/madera*
4473 F:      include/linux/irqchip/irq-madera*
4474 F:      include/linux/mfd/madera/*
4475 F:      include/sound/madera*
4476 F:      sound/soc/codecs/cs47l*
4477 F:      sound/soc/codecs/madera*
4478
4479 CISCO FCOE HBA DRIVER
4480 M:      Satish Kharat <satishkh@cisco.com>
4481 M:      Sesidhar Baddela <sebaddel@cisco.com>
4482 M:      Karan Tilak Kumar <kartilak@cisco.com>
4483 L:      linux-scsi@vger.kernel.org
4484 S:      Supported
4485 F:      drivers/scsi/fnic/
4486
4487 CISCO SCSI HBA DRIVER
4488 M:      Karan Tilak Kumar <kartilak@cisco.com>
4489 M:      Sesidhar Baddela <sebaddel@cisco.com>
4490 L:      linux-scsi@vger.kernel.org
4491 S:      Supported
4492 F:      drivers/scsi/snic/
4493
4494 CISCO VIC ETHERNET NIC DRIVER
4495 M:      Christian Benvenuti <benve@cisco.com>
4496 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4497 S:      Supported
4498 F:      drivers/net/ethernet/cisco/enic/
4499
4500 CISCO VIC LOW LATENCY NIC DRIVER
4501 M:      Christian Benvenuti <benve@cisco.com>
4502 M:      Nelson Escobar <neescoba@cisco.com>
4503 S:      Supported
4504 F:      drivers/infiniband/hw/usnic/
4505
4506 CLANG-FORMAT FILE
4507 M:      Miguel Ojeda <ojeda@kernel.org>
4508 S:      Maintained
4509 F:      .clang-format
4510
4511 CLANG/LLVM BUILD SUPPORT
4512 M:      Nathan Chancellor <nathan@kernel.org>
4513 M:      Nick Desaulniers <ndesaulniers@google.com>
4514 L:      clang-built-linux@googlegroups.com
4515 S:      Supported
4516 W:      https://clangbuiltlinux.github.io/
4517 B:      https://github.com/ClangBuiltLinux/linux/issues
4518 C:      irc://irc.libera.chat/clangbuiltlinux
4519 F:      Documentation/kbuild/llvm.rst
4520 F:      include/linux/compiler-clang.h
4521 F:      scripts/clang-tools/
4522 K:      \b(?i:clang|llvm)\b
4523
4524 CLANG CONTROL FLOW INTEGRITY SUPPORT
4525 M:      Sami Tolvanen <samitolvanen@google.com>
4526 M:      Kees Cook <keescook@chromium.org>
4527 R:      Nathan Chancellor <nathan@kernel.org>
4528 R:      Nick Desaulniers <ndesaulniers@google.com>
4529 L:      clang-built-linux@googlegroups.com
4530 S:      Supported
4531 B:      https://github.com/ClangBuiltLinux/linux/issues
4532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4533 F:      include/linux/cfi.h
4534 F:      kernel/cfi.c
4535
4536 CLEANCACHE API
4537 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4538 L:      linux-kernel@vger.kernel.org
4539 S:      Maintained
4540 F:      include/linux/cleancache.h
4541 F:      mm/cleancache.c
4542
4543 CLK API
4544 M:      Russell King <linux@armlinux.org.uk>
4545 L:      linux-clk@vger.kernel.org
4546 S:      Maintained
4547 F:      include/linux/clk.h
4548
4549 CLOCKSOURCE, CLOCKEVENT DRIVERS
4550 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4551 M:      Thomas Gleixner <tglx@linutronix.de>
4552 L:      linux-kernel@vger.kernel.org
4553 S:      Supported
4554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4555 F:      Documentation/devicetree/bindings/timer/
4556 F:      drivers/clocksource/
4557
4558 CMPC ACPI DRIVER
4559 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4560 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4561 L:      platform-driver-x86@vger.kernel.org
4562 S:      Supported
4563 F:      drivers/platform/x86/classmate-laptop.c
4564
4565 COBALT MEDIA DRIVER
4566 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4567 L:      linux-media@vger.kernel.org
4568 S:      Supported
4569 W:      https://linuxtv.org
4570 T:      git git://linuxtv.org/media_tree.git
4571 F:      drivers/media/pci/cobalt/
4572
4573 COCCINELLE/Semantic Patches (SmPL)
4574 M:      Julia Lawall <Julia.Lawall@inria.fr>
4575 M:      Gilles Muller <Gilles.Muller@inria.fr>
4576 M:      Nicolas Palix <nicolas.palix@imag.fr>
4577 M:      Michal Marek <michal.lkml@markovi.net>
4578 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4579 S:      Supported
4580 W:      http://coccinelle.lip6.fr/
4581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4582 F:      Documentation/dev-tools/coccinelle.rst
4583 F:      scripts/coccicheck
4584 F:      scripts/coccinelle/
4585
4586 CODA FILE SYSTEM
4587 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4588 M:      coda@cs.cmu.edu
4589 L:      codalist@coda.cs.cmu.edu
4590 S:      Maintained
4591 W:      http://www.coda.cs.cmu.edu/
4592 F:      Documentation/filesystems/coda.rst
4593 F:      fs/coda/
4594 F:      include/linux/coda*.h
4595 F:      include/uapi/linux/coda*.h
4596
4597 CODA V4L2 MEM2MEM DRIVER
4598 M:      Philipp Zabel <p.zabel@pengutronix.de>
4599 L:      linux-media@vger.kernel.org
4600 S:      Maintained
4601 F:      Documentation/devicetree/bindings/media/coda.yaml
4602 F:      drivers/media/platform/coda/
4603
4604 CODE OF CONDUCT
4605 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4606 S:      Supported
4607 F:      Documentation/process/code-of-conduct-interpretation.rst
4608 F:      Documentation/process/code-of-conduct.rst
4609
4610 COMEDI DRIVERS
4611 M:      Ian Abbott <abbotti@mev.co.uk>
4612 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4613 S:      Odd Fixes
4614 F:      drivers/comedi/
4615
4616 COMMON CLK FRAMEWORK
4617 M:      Michael Turquette <mturquette@baylibre.com>
4618 M:      Stephen Boyd <sboyd@kernel.org>
4619 L:      linux-clk@vger.kernel.org
4620 S:      Maintained
4621 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4623 F:      Documentation/devicetree/bindings/clock/
4624 F:      drivers/clk/
4625 F:      include/linux/clk-pr*
4626 F:      include/linux/clk/
4627 F:      include/linux/of_clk.h
4628 X:      drivers/clk/clkdev.c
4629
4630 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4631 M:      Steve French <sfrench@samba.org>
4632 L:      linux-cifs@vger.kernel.org
4633 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4634 S:      Supported
4635 W:      http://linux-cifs.samba.org/
4636 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4637 F:      Documentation/admin-guide/cifs/
4638 F:      fs/cifs/
4639 F:      fs/cifs_common/
4640
4641 COMPACTPCI HOTPLUG CORE
4642 M:      Scott Murray <scott@spiteful.org>
4643 L:      linux-pci@vger.kernel.org
4644 S:      Maintained
4645 F:      drivers/pci/hotplug/cpci_hotplug*
4646
4647 COMPACTPCI HOTPLUG GENERIC DRIVER
4648 M:      Scott Murray <scott@spiteful.org>
4649 L:      linux-pci@vger.kernel.org
4650 S:      Maintained
4651 F:      drivers/pci/hotplug/cpcihp_generic.c
4652
4653 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4654 M:      Scott Murray <scott@spiteful.org>
4655 L:      linux-pci@vger.kernel.org
4656 S:      Maintained
4657 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4658
4659 COMPAL LAPTOP SUPPORT
4660 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4661 L:      platform-driver-x86@vger.kernel.org
4662 S:      Maintained
4663 F:      drivers/platform/x86/compal-laptop.c
4664
4665 COMPILER ATTRIBUTES
4666 M:      Miguel Ojeda <ojeda@kernel.org>
4667 S:      Maintained
4668 F:      include/linux/compiler_attributes.h
4669
4670 COMPUTE EXPRESS LINK (CXL)
4671 M:      Alison Schofield <alison.schofield@intel.com>
4672 M:      Vishal Verma <vishal.l.verma@intel.com>
4673 M:      Ira Weiny <ira.weiny@intel.com>
4674 M:      Ben Widawsky <ben.widawsky@intel.com>
4675 M:      Dan Williams <dan.j.williams@intel.com>
4676 L:      linux-cxl@vger.kernel.org
4677 S:      Maintained
4678 F:      drivers/cxl/
4679 F:      include/uapi/linux/cxl_mem.h
4680
4681 CONEXANT ACCESSRUNNER USB DRIVER
4682 L:      accessrunner-general@lists.sourceforge.net
4683 S:      Orphan
4684 W:      http://accessrunner.sourceforge.net/
4685 F:      drivers/usb/atm/cxacru.c
4686
4687 CONFIGFS
4688 M:      Joel Becker <jlbec@evilplan.org>
4689 M:      Christoph Hellwig <hch@lst.de>
4690 S:      Supported
4691 T:      git git://git.infradead.org/users/hch/configfs.git
4692 F:      fs/configfs/
4693 F:      include/linux/configfs.h
4694 F:      samples/configfs/
4695
4696 CONSOLE SUBSYSTEM
4697 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4698 S:      Supported
4699 F:      drivers/video/console/
4700 F:      include/linux/console*
4701
4702 CONTEXT TRACKING
4703 M:      Frederic Weisbecker <frederic@kernel.org>
4704 S:      Maintained
4705 F:      kernel/context_tracking.c
4706 F:      include/linux/context_tracking*
4707
4708 CONTROL GROUP (CGROUP)
4709 M:      Tejun Heo <tj@kernel.org>
4710 M:      Zefan Li <lizefan.x@bytedance.com>
4711 M:      Johannes Weiner <hannes@cmpxchg.org>
4712 L:      cgroups@vger.kernel.org
4713 S:      Maintained
4714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4715 F:      Documentation/admin-guide/cgroup-v1/
4716 F:      Documentation/admin-guide/cgroup-v2.rst
4717 F:      include/linux/cgroup*
4718 F:      kernel/cgroup/
4719
4720 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4721 M:      Tejun Heo <tj@kernel.org>
4722 M:      Jens Axboe <axboe@kernel.dk>
4723 L:      cgroups@vger.kernel.org
4724 L:      linux-block@vger.kernel.org
4725 T:      git git://git.kernel.dk/linux-block
4726 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4727 F:      block/bfq-cgroup.c
4728 F:      block/blk-cgroup.c
4729 F:      block/blk-iolatency.c
4730 F:      block/blk-throttle.c
4731 F:      include/linux/blk-cgroup.h
4732
4733 CONTROL GROUP - CPUSET
4734 M:      Zefan Li <lizefan.x@bytedance.com>
4735 L:      cgroups@vger.kernel.org
4736 S:      Maintained
4737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4738 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4739 F:      include/linux/cpuset.h
4740 F:      kernel/cgroup/cpuset.c
4741
4742 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4743 M:      Johannes Weiner <hannes@cmpxchg.org>
4744 M:      Michal Hocko <mhocko@kernel.org>
4745 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4746 L:      cgroups@vger.kernel.org
4747 L:      linux-mm@kvack.org
4748 S:      Maintained
4749 F:      mm/memcontrol.c
4750 F:      mm/swap_cgroup.c
4751
4752 CORETEMP HARDWARE MONITORING DRIVER
4753 M:      Fenghua Yu <fenghua.yu@intel.com>
4754 L:      linux-hwmon@vger.kernel.org
4755 S:      Maintained
4756 F:      Documentation/hwmon/coretemp.rst
4757 F:      drivers/hwmon/coretemp.c
4758
4759 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4760 M:      Marius Zachmann <mail@mariuszachmann.de>
4761 L:      linux-hwmon@vger.kernel.org
4762 S:      Maintained
4763 F:      drivers/hwmon/corsair-cpro.c
4764
4765 CORSAIR-PSU HARDWARE MONITOR DRIVER
4766 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4767 L:      linux-hwmon@vger.kernel.org
4768 S:      Maintained
4769 F:      Documentation/hwmon/corsair-psu.rst
4770 F:      drivers/hwmon/corsair-psu.c
4771
4772 COSA/SRP SYNC SERIAL DRIVER
4773 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4774 S:      Maintained
4775 W:      http://www.fi.muni.cz/~kas/cosa/
4776 F:      drivers/net/wan/cosa*
4777
4778 COUNTER SUBSYSTEM
4779 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4780 L:      linux-iio@vger.kernel.org
4781 S:      Maintained
4782 F:      Documentation/ABI/testing/sysfs-bus-counter
4783 F:      Documentation/driver-api/generic-counter.rst
4784 F:      drivers/counter/
4785 F:      include/linux/counter.h
4786 F:      include/linux/counter_enum.h
4787
4788 CP2615 I2C DRIVER
4789 M:      Bence Csókás <bence98@sch.bme.hu>
4790 S:      Maintained
4791 F:      drivers/i2c/busses/i2c-cp2615.c
4792
4793 CPMAC ETHERNET DRIVER
4794 M:      Florian Fainelli <f.fainelli@gmail.com>
4795 L:      netdev@vger.kernel.org
4796 S:      Maintained
4797 F:      drivers/net/ethernet/ti/cpmac.c
4798
4799 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4800 M:      Viresh Kumar <viresh.kumar@linaro.org>
4801 M:      Sudeep Holla <sudeep.holla@arm.com>
4802 L:      linux-pm@vger.kernel.org
4803 S:      Maintained
4804 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4805 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4806
4807 CPU FREQUENCY SCALING FRAMEWORK
4808 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4809 M:      Viresh Kumar <viresh.kumar@linaro.org>
4810 L:      linux-pm@vger.kernel.org
4811 S:      Maintained
4812 B:      https://bugzilla.kernel.org
4813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4815 F:      Documentation/admin-guide/pm/cpufreq.rst
4816 F:      Documentation/admin-guide/pm/intel_pstate.rst
4817 F:      Documentation/cpu-freq/
4818 F:      Documentation/devicetree/bindings/cpufreq/
4819 F:      drivers/cpufreq/
4820 F:      include/linux/cpufreq.h
4821 F:      include/linux/sched/cpufreq.h
4822 F:      kernel/sched/cpufreq*.c
4823 F:      tools/testing/selftests/cpufreq/
4824
4825 CPU IDLE TIME MANAGEMENT FRAMEWORK
4826 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4827 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4828 L:      linux-pm@vger.kernel.org
4829 S:      Maintained
4830 B:      https://bugzilla.kernel.org
4831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4832 F:      Documentation/admin-guide/pm/cpuidle.rst
4833 F:      Documentation/driver-api/pm/cpuidle.rst
4834 F:      drivers/cpuidle/
4835 F:      include/linux/cpuidle.h
4836
4837 CPU POWER MONITORING SUBSYSTEM
4838 M:      Thomas Renninger <trenn@suse.com>
4839 M:      Shuah Khan <shuah@kernel.org>
4840 M:      Shuah Khan <skhan@linuxfoundation.org>
4841 L:      linux-pm@vger.kernel.org
4842 S:      Maintained
4843 F:      tools/power/cpupower/
4844
4845 CPUID/MSR DRIVER
4846 M:      "H. Peter Anvin" <hpa@zytor.com>
4847 S:      Maintained
4848 F:      arch/x86/kernel/cpuid.c
4849 F:      arch/x86/kernel/msr.c
4850
4851 CPUIDLE DRIVER - ARM BIG LITTLE
4852 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4853 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4854 L:      linux-pm@vger.kernel.org
4855 L:      linux-arm-kernel@lists.infradead.org
4856 S:      Maintained
4857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4858 F:      drivers/cpuidle/cpuidle-big_little.c
4859
4860 CPUIDLE DRIVER - ARM EXYNOS
4861 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4862 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4863 M:      Kukjin Kim <kgene@kernel.org>
4864 L:      linux-pm@vger.kernel.org
4865 L:      linux-samsung-soc@vger.kernel.org
4866 S:      Supported
4867 F:      arch/arm/mach-exynos/pm.c
4868 F:      drivers/cpuidle/cpuidle-exynos.c
4869 F:      include/linux/platform_data/cpuidle-exynos.h
4870
4871 CPUIDLE DRIVER - ARM PSCI
4872 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4873 M:      Sudeep Holla <sudeep.holla@arm.com>
4874 L:      linux-pm@vger.kernel.org
4875 L:      linux-arm-kernel@lists.infradead.org
4876 S:      Supported
4877 F:      drivers/cpuidle/cpuidle-psci.c
4878
4879 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4880 M:      Ulf Hansson <ulf.hansson@linaro.org>
4881 L:      linux-pm@vger.kernel.org
4882 L:      linux-arm-kernel@lists.infradead.org
4883 S:      Supported
4884 F:      drivers/cpuidle/cpuidle-psci.h
4885 F:      drivers/cpuidle/cpuidle-psci-domain.c
4886
4887 CRAMFS FILESYSTEM
4888 M:      Nicolas Pitre <nico@fluxnic.net>
4889 S:      Maintained
4890 F:      Documentation/filesystems/cramfs.rst
4891 F:      fs/cramfs/
4892
4893 CREATIVE SB0540
4894 M:      Bastien Nocera <hadess@hadess.net>
4895 L:      linux-input@vger.kernel.org
4896 S:      Maintained
4897 F:      drivers/hid/hid-creative-sb0540.c
4898
4899 CRYPTO API
4900 M:      Herbert Xu <herbert@gondor.apana.org.au>
4901 M:      "David S. Miller" <davem@davemloft.net>
4902 L:      linux-crypto@vger.kernel.org
4903 S:      Maintained
4904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4906 F:      Documentation/crypto/
4907 F:      Documentation/devicetree/bindings/crypto/
4908 F:      arch/*/crypto/
4909 F:      crypto/
4910 F:      drivers/crypto/
4911 F:      include/crypto/
4912 F:      include/linux/crypto*
4913 F:      lib/crypto/
4914
4915 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4916 M:      Neil Horman <nhorman@tuxdriver.com>
4917 L:      linux-crypto@vger.kernel.org
4918 S:      Maintained
4919 F:      crypto/ansi_cprng.c
4920 F:      crypto/rng.c
4921
4922 CS3308 MEDIA DRIVER
4923 M:      Hans Verkuil <hverkuil@xs4all.nl>
4924 L:      linux-media@vger.kernel.org
4925 S:      Odd Fixes
4926 W:      http://linuxtv.org
4927 T:      git git://linuxtv.org/media_tree.git
4928 F:      drivers/media/i2c/cs3308.c
4929
4930 CS5535 Audio ALSA driver
4931 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4932 S:      Maintained
4933 F:      sound/pci/cs5535audio/
4934
4935 CSI DRIVERS FOR ALLWINNER V3s
4936 M:      Yong Deng <yong.deng@magewell.com>
4937 L:      linux-media@vger.kernel.org
4938 S:      Maintained
4939 T:      git git://linuxtv.org/media_tree.git
4940 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4941 F:      drivers/media/platform/sunxi/sun6i-csi/
4942
4943 CW1200 WLAN driver
4944 M:      Solomon Peachy <pizza@shaftnet.org>
4945 S:      Maintained
4946 F:      drivers/net/wireless/st/cw1200/
4947
4948 CX18 VIDEO4LINUX DRIVER
4949 M:      Andy Walls <awalls@md.metrocast.net>
4950 L:      linux-media@vger.kernel.org
4951 S:      Maintained
4952 W:      https://linuxtv.org
4953 T:      git git://linuxtv.org/media_tree.git
4954 F:      drivers/media/pci/cx18/
4955 F:      include/uapi/linux/ivtv*
4956
4957 CX2341X MPEG ENCODER HELPER MODULE
4958 M:      Hans Verkuil <hverkuil@xs4all.nl>
4959 L:      linux-media@vger.kernel.org
4960 S:      Maintained
4961 W:      https://linuxtv.org
4962 T:      git git://linuxtv.org/media_tree.git
4963 F:      drivers/media/common/cx2341x*
4964 F:      include/media/drv-intf/cx2341x.h
4965
4966 CX24120 MEDIA DRIVER
4967 M:      Jemma Denson <jdenson@gmail.com>
4968 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4969 L:      linux-media@vger.kernel.org
4970 S:      Maintained
4971 W:      https://linuxtv.org
4972 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4973 F:      drivers/media/dvb-frontends/cx24120*
4974
4975 CX88 VIDEO4LINUX DRIVER
4976 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4977 L:      linux-media@vger.kernel.org
4978 S:      Odd fixes
4979 W:      https://linuxtv.org
4980 T:      git git://linuxtv.org/media_tree.git
4981 F:      Documentation/driver-api/media/drivers/cx88*
4982 F:      drivers/media/pci/cx88/
4983
4984 CXD2820R MEDIA DRIVER
4985 M:      Antti Palosaari <crope@iki.fi>
4986 L:      linux-media@vger.kernel.org
4987 S:      Maintained
4988 W:      https://linuxtv.org
4989 W:      http://palosaari.fi/linux/
4990 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4991 T:      git git://linuxtv.org/anttip/media_tree.git
4992 F:      drivers/media/dvb-frontends/cxd2820r*
4993
4994 CXGB3 ETHERNET DRIVER (CXGB3)
4995 M:      Raju Rangoju <rajur@chelsio.com>
4996 L:      netdev@vger.kernel.org
4997 S:      Supported
4998 W:      http://www.chelsio.com
4999 F:      drivers/net/ethernet/chelsio/cxgb3/
5000
5001 CXGB3 ISCSI DRIVER (CXGB3I)
5002 M:      Karen Xie <kxie@chelsio.com>
5003 L:      linux-scsi@vger.kernel.org
5004 S:      Supported
5005 W:      http://www.chelsio.com
5006 F:      drivers/scsi/cxgbi/cxgb3i
5007
5008 CXGB4 CRYPTO DRIVER (chcr)
5009 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5010 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5011 M:      Rohit Maheshwari <rohitm@chelsio.com>
5012 L:      linux-crypto@vger.kernel.org
5013 S:      Supported
5014 W:      http://www.chelsio.com
5015 F:      drivers/crypto/chelsio
5016
5017 CXGB4 INLINE CRYPTO DRIVER
5018 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5019 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5020 M:      Rohit Maheshwari <rohitm@chelsio.com>
5021 L:      netdev@vger.kernel.org
5022 S:      Supported
5023 W:      http://www.chelsio.com
5024 F:      drivers/net/ethernet/chelsio/inline_crypto/
5025
5026 CXGB4 ETHERNET DRIVER (CXGB4)
5027 M:      Raju Rangoju <rajur@chelsio.com>
5028 L:      netdev@vger.kernel.org
5029 S:      Supported
5030 W:      http://www.chelsio.com
5031 F:      drivers/net/ethernet/chelsio/cxgb4/
5032
5033 CXGB4 ISCSI DRIVER (CXGB4I)
5034 M:      Karen Xie <kxie@chelsio.com>
5035 L:      linux-scsi@vger.kernel.org
5036 S:      Supported
5037 W:      http://www.chelsio.com
5038 F:      drivers/scsi/cxgbi/cxgb4i
5039
5040 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5041 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5042 L:      linux-rdma@vger.kernel.org
5043 S:      Supported
5044 W:      http://www.openfabrics.org
5045 F:      drivers/infiniband/hw/cxgb4/
5046 F:      include/uapi/rdma/cxgb4-abi.h
5047
5048 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5049 M:      Raju Rangoju <rajur@chelsio.com>
5050 L:      netdev@vger.kernel.org
5051 S:      Supported
5052 W:      http://www.chelsio.com
5053 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5054
5055 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5056 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5057 M:      Andrew Donnellan <ajd@linux.ibm.com>
5058 L:      linuxppc-dev@lists.ozlabs.org
5059 S:      Supported
5060 F:      Documentation/ABI/testing/sysfs-class-cxl
5061 F:      Documentation/powerpc/cxl.rst
5062 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5063 F:      drivers/misc/cxl/
5064 F:      include/misc/cxl*
5065 F:      include/uapi/misc/cxl.h
5066
5067 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5068 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5069 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5070 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5071 L:      linux-scsi@vger.kernel.org
5072 S:      Supported
5073 F:      Documentation/powerpc/cxlflash.rst
5074 F:      drivers/scsi/cxlflash/
5075 F:      include/uapi/scsi/cxlflash_ioctl.h
5076
5077 CYBERPRO FB DRIVER
5078 M:      Russell King <linux@armlinux.org.uk>
5079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5080 S:      Maintained
5081 W:      http://www.armlinux.org.uk/
5082 F:      drivers/video/fbdev/cyber2000fb.*
5083
5084 CYCLADES PC300 DRIVER
5085 S:      Orphan
5086 F:      drivers/net/wan/pc300*
5087
5088 CYPRESS_FIRMWARE MEDIA DRIVER
5089 M:      Antti Palosaari <crope@iki.fi>
5090 L:      linux-media@vger.kernel.org
5091 S:      Maintained
5092 W:      https://linuxtv.org
5093 W:      http://palosaari.fi/linux/
5094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5095 T:      git git://linuxtv.org/anttip/media_tree.git
5096 F:      drivers/media/common/cypress_firmware*
5097
5098 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5099 M:      Linus Walleij <linus.walleij@linaro.org>
5100 L:      linux-input@vger.kernel.org
5101 S:      Maintained
5102 F:      drivers/input/touchscreen/cy8ctma140.c
5103
5104 CYTTSP TOUCHSCREEN DRIVER
5105 M:      Linus Walleij <linus.walleij@linaro.org>
5106 L:      linux-input@vger.kernel.org
5107 S:      Maintained
5108 F:      drivers/input/touchscreen/cyttsp*
5109
5110 D-LINK DIR-685 TOUCHKEYS DRIVER
5111 M:      Linus Walleij <linus.walleij@linaro.org>
5112 L:      linux-input@vger.kernel.org
5113 S:      Supported
5114 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5115
5116 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5117 M:      Joshua Kinard <kumba@gentoo.org>
5118 S:      Maintained
5119 F:      drivers/rtc/rtc-ds1685.c
5120 F:      include/linux/rtc/ds1685.h
5121
5122 DAMA SLAVE for AX.25
5123 M:      Joerg Reuter <jreuter@yaina.de>
5124 L:      linux-hams@vger.kernel.org
5125 S:      Maintained
5126 W:      http://yaina.de/jreuter/
5127 W:      http://www.qsl.net/dl1bke/
5128 F:      net/ax25/af_ax25.c
5129 F:      net/ax25/ax25_dev.c
5130 F:      net/ax25/ax25_ds_*
5131 F:      net/ax25/ax25_in.c
5132 F:      net/ax25/ax25_out.c
5133 F:      net/ax25/ax25_timer.c
5134 F:      net/ax25/sysctl_net_ax25.c
5135
5136 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5137 L:      netdev@vger.kernel.org
5138 S:      Orphan
5139 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5140 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5141
5142 DC390/AM53C974 SCSI driver
5143 M:      Hannes Reinecke <hare@suse.com>
5144 L:      linux-scsi@vger.kernel.org
5145 S:      Maintained
5146 F:      drivers/scsi/am53c974.c
5147
5148 DC395x SCSI driver
5149 M:      Oliver Neukum <oliver@neukum.org>
5150 M:      Ali Akcaagac <aliakc@web.de>
5151 M:      Jamie Lenehan <lenehan@twibble.org>
5152 L:      dc395x@twibble.org
5153 S:      Maintained
5154 W:      http://twibble.org/dist/dc395x/
5155 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5156 F:      Documentation/scsi/dc395x.rst
5157 F:      drivers/scsi/dc395x.*
5158
5159 DCCP PROTOCOL
5160 L:      dccp@vger.kernel.org
5161 S:      Orphan
5162 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5163 F:      include/linux/dccp.h
5164 F:      include/linux/tfrc.h
5165 F:      include/uapi/linux/dccp.h
5166 F:      net/dccp/
5167
5168 DECnet NETWORK LAYER
5169 L:      linux-decnet-user@lists.sourceforge.net
5170 S:      Orphan
5171 W:      http://linux-decnet.sourceforge.net
5172 F:      Documentation/networking/decnet.rst
5173 F:      net/decnet/
5174
5175 DECSTATION PLATFORM SUPPORT
5176 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5177 L:      linux-mips@vger.kernel.org
5178 S:      Maintained
5179 W:      http://www.linux-mips.org/wiki/DECstation
5180 F:      arch/mips/dec/
5181 F:      arch/mips/include/asm/dec/
5182 F:      arch/mips/include/asm/mach-dec/
5183
5184 DEFXX FDDI NETWORK DRIVER
5185 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5186 S:      Maintained
5187 F:      drivers/net/fddi/defxx.*
5188
5189 DEFZA FDDI NETWORK DRIVER
5190 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5191 S:      Maintained
5192 F:      drivers/net/fddi/defza.*
5193
5194 DEINTERLACE DRIVERS FOR ALLWINNER H3
5195 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5196 L:      linux-media@vger.kernel.org
5197 S:      Maintained
5198 T:      git git://linuxtv.org/media_tree.git
5199 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5200 F:      drivers/media/platform/sunxi/sun8i-di/
5201
5202 DELL LAPTOP DRIVER
5203 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5204 M:      Pali Rohár <pali@kernel.org>
5205 L:      platform-driver-x86@vger.kernel.org
5206 S:      Maintained
5207 F:      drivers/platform/x86/dell/dell-laptop.c
5208
5209 DELL LAPTOP FREEFALL DRIVER
5210 M:      Pali Rohár <pali@kernel.org>
5211 S:      Maintained
5212 F:      drivers/platform/x86/dell/dell-smo8800.c
5213
5214 DELL LAPTOP RBTN DRIVER
5215 M:      Pali Rohár <pali@kernel.org>
5216 S:      Maintained
5217 F:      drivers/platform/x86/dell/dell-rbtn.*
5218
5219 DELL LAPTOP SMM DRIVER
5220 M:      Pali Rohár <pali@kernel.org>
5221 S:      Maintained
5222 F:      drivers/hwmon/dell-smm-hwmon.c
5223 F:      include/uapi/linux/i8k.h
5224
5225 DELL REMOTE BIOS UPDATE DRIVER
5226 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5227 L:      platform-driver-x86@vger.kernel.org
5228 S:      Maintained
5229 F:      drivers/platform/x86/dell/dell_rbu.c
5230
5231 DELL SMBIOS DRIVER
5232 M:      Pali Rohár <pali@kernel.org>
5233 L:      Dell.Client.Kernel@dell.com
5234 L:      platform-driver-x86@vger.kernel.org
5235 S:      Maintained
5236 F:      drivers/platform/x86/dell/dell-smbios.*
5237
5238 DELL SMBIOS SMM DRIVER
5239 L:      Dell.Client.Kernel@dell.com
5240 L:      platform-driver-x86@vger.kernel.org
5241 S:      Maintained
5242 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5243
5244 DELL SMBIOS WMI DRIVER
5245 L:      Dell.Client.Kernel@dell.com
5246 L:      platform-driver-x86@vger.kernel.org
5247 S:      Maintained
5248 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5249 F:      tools/wmi/dell-smbios-example.c
5250
5251 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5252 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5253 L:      platform-driver-x86@vger.kernel.org
5254 S:      Maintained
5255 F:      Documentation/driver-api/dcdbas.rst
5256 F:      drivers/platform/x86/dell/dcdbas.*
5257
5258 DELL WMI DESCRIPTOR DRIVER
5259 L:      Dell.Client.Kernel@dell.com
5260 S:      Maintained
5261 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5262
5263 DELL WMI SYSMAN DRIVER
5264 M:      Divya Bharathi <divya.bharathi@dell.com>
5265 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5266 L:      Dell.Client.Kernel@dell.com
5267 L:      platform-driver-x86@vger.kernel.org
5268 S:      Maintained
5269 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5270 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5271
5272 DELL WMI NOTIFICATIONS DRIVER
5273 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5274 M:      Pali Rohár <pali@kernel.org>
5275 S:      Maintained
5276 F:      drivers/platform/x86/dell/dell-wmi-base.c
5277
5278 DELL WMI HARDWARE PRIVACY SUPPORT
5279 M:      Perry Yuan <Perry.Yuan@dell.com>
5280 L:      Dell.Client.Kernel@dell.com
5281 L:      platform-driver-x86@vger.kernel.org
5282 S:      Maintained
5283 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5284
5285 DELTA ST MEDIA DRIVER
5286 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5287 L:      linux-media@vger.kernel.org
5288 S:      Supported
5289 W:      https://linuxtv.org
5290 T:      git git://linuxtv.org/media_tree.git
5291 F:      drivers/media/platform/sti/delta
5292
5293 DELTA DPS920AB PSU DRIVER
5294 M:      Robert Marko <robert.marko@sartura.hr>
5295 L:      linux-hwmon@vger.kernel.org
5296 S:      Maintained
5297 F:      Documentation/hwmon/dps920ab.rst
5298 F:      drivers/hwmon/pmbus/dps920ab.c
5299
5300 DENALI NAND DRIVER
5301 L:      linux-mtd@lists.infradead.org
5302 S:      Orphan
5303 F:      drivers/mtd/nand/raw/denali*
5304
5305 DESIGNWARE EDMA CORE IP DRIVER
5306 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5307 L:      dmaengine@vger.kernel.org
5308 S:      Maintained
5309 F:      drivers/dma/dw-edma/
5310 F:      include/linux/dma/edma.h
5311
5312 DESIGNWARE XDATA IP DRIVER
5313 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5314 L:      linux-pci@vger.kernel.org
5315 S:      Maintained
5316 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5317 F:      drivers/misc/dw-xdata-pcie.c
5318
5319 DESIGNWARE USB2 DRD IP DRIVER
5320 M:      Minas Harutyunyan <hminas@synopsys.com>
5321 L:      linux-usb@vger.kernel.org
5322 S:      Maintained
5323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5324 F:      drivers/usb/dwc2/
5325
5326 DESIGNWARE USB3 DRD IP DRIVER
5327 M:      Felipe Balbi <balbi@kernel.org>
5328 L:      linux-usb@vger.kernel.org
5329 S:      Maintained
5330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5331 F:      drivers/usb/dwc3/
5332
5333 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5334 M:      Andreas Klinger <ak@it-klinger.de>
5335 L:      linux-iio@vger.kernel.org
5336 S:      Maintained
5337 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5338 F:      drivers/iio/proximity/srf*.c
5339
5340 DEVICE COREDUMP (DEV_COREDUMP)
5341 M:      Johannes Berg <johannes@sipsolutions.net>
5342 L:      linux-kernel@vger.kernel.org
5343 S:      Maintained
5344 F:      drivers/base/devcoredump.c
5345 F:      include/linux/devcoredump.h
5346
5347 DEVICE DEPENDENCY HELPER SCRIPT
5348 M:      Saravana Kannan <saravanak@google.com>
5349 L:      linux-kernel@vger.kernel.org
5350 S:      Maintained
5351 F:      scripts/dev-needs.sh
5352
5353 DEVICE DIRECT ACCESS (DAX)
5354 M:      Dan Williams <dan.j.williams@intel.com>
5355 M:      Vishal Verma <vishal.l.verma@intel.com>
5356 M:      Dave Jiang <dave.jiang@intel.com>
5357 L:      nvdimm@lists.linux.dev
5358 S:      Supported
5359 F:      drivers/dax/
5360
5361 DEVICE FREQUENCY (DEVFREQ)
5362 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5363 M:      Kyungmin Park <kyungmin.park@samsung.com>
5364 M:      Chanwoo Choi <cw00.choi@samsung.com>
5365 L:      linux-pm@vger.kernel.org
5366 S:      Maintained
5367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5368 F:      Documentation/devicetree/bindings/devfreq/
5369 F:      drivers/devfreq/
5370 F:      include/linux/devfreq.h
5371 F:      include/trace/events/devfreq.h
5372
5373 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5374 M:      Chanwoo Choi <cw00.choi@samsung.com>
5375 L:      linux-pm@vger.kernel.org
5376 S:      Supported
5377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5378 F:      Documentation/devicetree/bindings/devfreq/event/
5379 F:      drivers/devfreq/devfreq-event.c
5380 F:      drivers/devfreq/event/
5381 F:      include/dt-bindings/pmu/exynos_ppmu.h
5382 F:      include/linux/devfreq-event.h
5383
5384 DEVICE NUMBER REGISTRY
5385 M:      Torben Mathiasen <device@lanana.org>
5386 S:      Maintained
5387 W:      http://lanana.org/docs/device-list/index.html
5388
5389 DEVICE RESOURCE MANAGEMENT HELPERS
5390 M:      Hans de Goede <hdegoede@redhat.com>
5391 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5392 S:      Maintained
5393 F:      include/linux/devm-helpers.h
5394
5395 DEVICE-MAPPER  (LVM)
5396 M:      Alasdair Kergon <agk@redhat.com>
5397 M:      Mike Snitzer <snitzer@redhat.com>
5398 M:      dm-devel@redhat.com
5399 L:      dm-devel@redhat.com
5400 S:      Maintained
5401 W:      http://sources.redhat.com/dm
5402 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5404 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5405 F:      Documentation/admin-guide/device-mapper/
5406 F:      drivers/md/Kconfig
5407 F:      drivers/md/Makefile
5408 F:      drivers/md/dm*
5409 F:      drivers/md/persistent-data/
5410 F:      include/linux/device-mapper.h
5411 F:      include/linux/dm-*.h
5412 F:      include/uapi/linux/dm-*.h
5413
5414 DEVLINK
5415 M:      Jiri Pirko <jiri@nvidia.com>
5416 L:      netdev@vger.kernel.org
5417 S:      Supported
5418 F:      Documentation/networking/devlink
5419 F:      include/net/devlink.h
5420 F:      include/uapi/linux/devlink.h
5421 F:      net/core/devlink.c
5422
5423 DIALOG SEMICONDUCTOR DRIVERS
5424 M:      Support Opensource <support.opensource@diasemi.com>
5425 S:      Supported
5426 W:      http://www.dialog-semiconductor.com/products
5427 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5428 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5429 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5430 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5431 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5432 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5433 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5434 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5435 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5436 F:      Documentation/hwmon/da90??.rst
5437 F:      drivers/gpio/gpio-da90??.c
5438 F:      drivers/hwmon/da90??-hwmon.c
5439 F:      drivers/iio/adc/da91??-*.c
5440 F:      drivers/input/misc/da72??.[ch]
5441 F:      drivers/input/misc/da90??_onkey.c
5442 F:      drivers/input/touchscreen/da9052_tsi.c
5443 F:      drivers/leds/leds-da90??.c
5444 F:      drivers/mfd/da903x.c
5445 F:      drivers/mfd/da90??-*.c
5446 F:      drivers/mfd/da91??-*.c
5447 F:      drivers/pinctrl/pinctrl-da90??.c
5448 F:      drivers/power/supply/da9052-battery.c
5449 F:      drivers/power/supply/da91??-*.c
5450 F:      drivers/regulator/da9???-regulator.[ch]
5451 F:      drivers/regulator/slg51000-regulator.[ch]
5452 F:      drivers/rtc/rtc-da90??.c
5453 F:      drivers/thermal/da90??-thermal.c
5454 F:      drivers/video/backlight/da90??_bl.c
5455 F:      drivers/watchdog/da90??_wdt.c
5456 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5457 F:      include/linux/mfd/da903x.h
5458 F:      include/linux/mfd/da9052/
5459 F:      include/linux/mfd/da9055/
5460 F:      include/linux/mfd/da9062/
5461 F:      include/linux/mfd/da9063/
5462 F:      include/linux/mfd/da9150/
5463 F:      include/linux/regulator/da9211.h
5464 F:      include/sound/da[79]*.h
5465 F:      sound/soc/codecs/da[79]*.[ch]
5466
5467 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5468 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5469 L:      linux-gpio@vger.kernel.org
5470 S:      Maintained
5471 F:      drivers/gpio/gpio-gpio-mm.c
5472
5473 DIOLAN U2C-12 I2C DRIVER
5474 M:      Guenter Roeck <linux@roeck-us.net>
5475 L:      linux-i2c@vger.kernel.org
5476 S:      Maintained
5477 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5478
5479 DIRECTORY NOTIFICATION (DNOTIFY)
5480 M:      Jan Kara <jack@suse.cz>
5481 R:      Amir Goldstein <amir73il@gmail.com>
5482 L:      linux-fsdevel@vger.kernel.org
5483 S:      Maintained
5484 F:      Documentation/filesystems/dnotify.rst
5485 F:      fs/notify/dnotify/
5486 F:      include/linux/dnotify.h
5487
5488 DISK GEOMETRY AND PARTITION HANDLING
5489 M:      Andries Brouwer <aeb@cwi.nl>
5490 S:      Maintained
5491 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5492 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5493 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5494
5495 DISKQUOTA
5496 M:      Jan Kara <jack@suse.com>
5497 S:      Maintained
5498 F:      Documentation/filesystems/quota.rst
5499 F:      fs/quota/
5500 F:      include/linux/quota*.h
5501 F:      include/uapi/linux/quota*.h
5502
5503 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5504 M:      Bernie Thompson <bernie@plugable.com>
5505 L:      linux-fbdev@vger.kernel.org
5506 S:      Maintained
5507 W:      http://plugable.com/category/projects/udlfb/
5508 F:      Documentation/fb/udlfb.rst
5509 F:      drivers/video/fbdev/udlfb.c
5510 F:      include/video/udlfb.h
5511
5512 DISTRIBUTED LOCK MANAGER (DLM)
5513 M:      Christine Caulfield <ccaulfie@redhat.com>
5514 M:      David Teigland <teigland@redhat.com>
5515 L:      cluster-devel@redhat.com
5516 S:      Supported
5517 W:      http://sources.redhat.com/cluster/
5518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5519 F:      fs/dlm/
5520
5521 DMA BUFFER SHARING FRAMEWORK
5522 M:      Sumit Semwal <sumit.semwal@linaro.org>
5523 M:      Christian König <christian.koenig@amd.com>
5524 L:      linux-media@vger.kernel.org
5525 L:      dri-devel@lists.freedesktop.org
5526 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5527 S:      Maintained
5528 T:      git git://anongit.freedesktop.org/drm/drm-misc
5529 F:      Documentation/driver-api/dma-buf.rst
5530 F:      drivers/dma-buf/
5531 F:      include/linux/*fence.h
5532 F:      include/linux/dma-buf*
5533 F:      include/linux/dma-resv.h
5534 K:      \bdma_(?:buf|fence|resv)\b
5535
5536 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5537 M:      Vinod Koul <vkoul@kernel.org>
5538 L:      dmaengine@vger.kernel.org
5539 S:      Maintained
5540 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5542 F:      Documentation/devicetree/bindings/dma/
5543 F:      Documentation/driver-api/dmaengine/
5544 F:      drivers/dma/
5545 F:      include/linux/dma/
5546 F:      include/linux/dmaengine.h
5547 F:      include/linux/of_dma.h
5548
5549 DMA MAPPING HELPERS
5550 M:      Christoph Hellwig <hch@lst.de>
5551 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5552 R:      Robin Murphy <robin.murphy@arm.com>
5553 L:      iommu@lists.linux-foundation.org
5554 S:      Supported
5555 W:      http://git.infradead.org/users/hch/dma-mapping.git
5556 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5557 F:      include/asm-generic/dma-mapping.h
5558 F:      include/linux/dma-direct.h
5559 F:      include/linux/dma-mapping.h
5560 F:      include/linux/dma-map-ops.h
5561 F:      kernel/dma/
5562
5563 DMA MAPPING BENCHMARK
5564 M:      Barry Song <song.bao.hua@hisilicon.com>
5565 L:      iommu@lists.linux-foundation.org
5566 F:      kernel/dma/map_benchmark.c
5567 F:      tools/testing/selftests/dma/
5568
5569 DMA-BUF HEAPS FRAMEWORK
5570 M:      Sumit Semwal <sumit.semwal@linaro.org>
5571 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5572 R:      Liam Mark <lmark@codeaurora.org>
5573 R:      Laura Abbott <labbott@redhat.com>
5574 R:      Brian Starkey <Brian.Starkey@arm.com>
5575 R:      John Stultz <john.stultz@linaro.org>
5576 L:      linux-media@vger.kernel.org
5577 L:      dri-devel@lists.freedesktop.org
5578 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5579 S:      Maintained
5580 T:      git git://anongit.freedesktop.org/drm/drm-misc
5581 F:      drivers/dma-buf/dma-heap.c
5582 F:      drivers/dma-buf/heaps/*
5583 F:      include/linux/dma-heap.h
5584 F:      include/uapi/linux/dma-heap.h
5585
5586 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5587 M:      Lukasz Luba <lukasz.luba@arm.com>
5588 L:      linux-pm@vger.kernel.org
5589 L:      linux-samsung-soc@vger.kernel.org
5590 S:      Maintained
5591 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5592 F:      drivers/memory/samsung/exynos5422-dmc.c
5593
5594 DME1737 HARDWARE MONITOR DRIVER
5595 M:      Juerg Haefliger <juergh@gmail.com>
5596 L:      linux-hwmon@vger.kernel.org
5597 S:      Maintained
5598 F:      Documentation/hwmon/dme1737.rst
5599 F:      drivers/hwmon/dme1737.c
5600
5601 DMI/SMBIOS SUPPORT
5602 M:      Jean Delvare <jdelvare@suse.com>
5603 S:      Maintained
5604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5605 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5606 F:      drivers/firmware/dmi-id.c
5607 F:      drivers/firmware/dmi_scan.c
5608 F:      include/linux/dmi.h
5609
5610 DOCUMENTATION
5611 M:      Jonathan Corbet <corbet@lwn.net>
5612 L:      linux-doc@vger.kernel.org
5613 S:      Maintained
5614 P:      Documentation/doc-guide/maintainer-profile.rst
5615 T:      git git://git.lwn.net/linux.git docs-next
5616 F:      Documentation/
5617 F:      scripts/documentation-file-ref-check
5618 F:      scripts/kernel-doc
5619 F:      scripts/sphinx-pre-install
5620 X:      Documentation/ABI/
5621 X:      Documentation/admin-guide/media/
5622 X:      Documentation/devicetree/
5623 X:      Documentation/driver-api/media/
5624 X:      Documentation/firmware-guide/acpi/
5625 X:      Documentation/i2c/
5626 X:      Documentation/power/
5627 X:      Documentation/spi/
5628 X:      Documentation/userspace-api/media/
5629
5630 DOCUMENTATION REPORTING ISSUES
5631 M:      Thorsten Leemhuis <linux@leemhuis.info>
5632 L:      linux-doc@vger.kernel.org
5633 S:      Maintained
5634 F:      Documentation/admin-guide/reporting-issues.rst
5635
5636 DOCUMENTATION SCRIPTS
5637 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5638 L:      linux-doc@vger.kernel.org
5639 S:      Maintained
5640 F:      Documentation/sphinx/parse-headers.pl
5641 F:      scripts/documentation-file-ref-check
5642 F:      scripts/sphinx-pre-install
5643
5644 DOCUMENTATION/ITALIAN
5645 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5646 L:      linux-doc@vger.kernel.org
5647 S:      Maintained
5648 F:      Documentation/translations/it_IT
5649
5650 DONGWOON DW9714 LENS VOICE COIL DRIVER
5651 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5652 L:      linux-media@vger.kernel.org
5653 S:      Maintained
5654 T:      git git://linuxtv.org/media_tree.git
5655 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5656 F:      drivers/media/i2c/dw9714.c
5657
5658 DONGWOON DW9768 LENS VOICE COIL DRIVER
5659 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5660 L:      linux-media@vger.kernel.org
5661 S:      Maintained
5662 T:      git git://linuxtv.org/media_tree.git
5663 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5664 F:      drivers/media/i2c/dw9768.c
5665
5666 DONGWOON DW9807 LENS VOICE COIL DRIVER
5667 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5668 L:      linux-media@vger.kernel.org
5669 S:      Maintained
5670 T:      git git://linuxtv.org/media_tree.git
5671 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5672 F:      drivers/media/i2c/dw9807-vcm.c
5673
5674 DOUBLETALK DRIVER
5675 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5676 L:      blinux-list@redhat.com
5677 S:      Maintained
5678 F:      drivers/char/dtlk.c
5679 F:      include/linux/dtlk.h
5680
5681 DPAA2 DATAPATH I/O (DPIO) DRIVER
5682 M:      Roy Pledge <Roy.Pledge@nxp.com>
5683 L:      linux-kernel@vger.kernel.org
5684 S:      Maintained
5685 F:      drivers/soc/fsl/dpio
5686
5687 DPAA2 ETHERNET DRIVER
5688 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5689 L:      netdev@vger.kernel.org
5690 S:      Maintained
5691 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5692 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5693 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5694 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5695 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5696 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5697 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5698 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5699 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5700
5701 DPAA2 ETHERNET SWITCH DRIVER
5702 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5703 L:      netdev@vger.kernel.org
5704 S:      Maintained
5705 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5706 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5707
5708 DPT_I2O SCSI RAID DRIVER
5709 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5710 L:      linux-scsi@vger.kernel.org
5711 S:      Maintained
5712 W:      http://www.adaptec.com/
5713 F:      drivers/scsi/dpt*
5714 F:      drivers/scsi/dpt/
5715
5716 DRBD DRIVER
5717 M:      Philipp Reisner <philipp.reisner@linbit.com>
5718 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5719 L:      drbd-dev@lists.linbit.com
5720 S:      Supported
5721 W:      http://www.drbd.org
5722 T:      git git://git.linbit.com/linux-drbd.git
5723 T:      git git://git.linbit.com/drbd-8.4.git
5724 F:      Documentation/admin-guide/blockdev/
5725 F:      drivers/block/drbd/
5726 F:      lib/lru_cache.c
5727
5728 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5729 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5730 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5731 S:      Supported
5732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5733 F:      Documentation/core-api/kobject.rst
5734 F:      drivers/base/
5735 F:      fs/debugfs/
5736 F:      fs/sysfs/
5737 F:      include/linux/debugfs.h
5738 F:      include/linux/kobj*
5739 F:      lib/kobj*
5740
5741 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5742 M:      Nishanth Menon <nm@ti.com>
5743 L:      linux-pm@vger.kernel.org
5744 S:      Maintained
5745 F:      drivers/soc/ti/smartreflex.c
5746 F:      include/linux/power/smartreflex.h
5747
5748 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5749 M:      Maxime Ripard <mripard@kernel.org>
5750 M:      Chen-Yu Tsai <wens@csie.org>
5751 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5752 L:      dri-devel@lists.freedesktop.org
5753 S:      Supported
5754 T:      git git://anongit.freedesktop.org/drm/drm-misc
5755 F:      drivers/gpu/drm/sun4i/sun8i*
5756
5757 DRM DRIVER FOR ARM PL111 CLCD
5758 M:      Emma Anholt <emma@anholt.net>
5759 S:      Supported
5760 T:      git git://anongit.freedesktop.org/drm/drm-misc
5761 F:      drivers/gpu/drm/pl111/
5762
5763 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5764 M:      Linus Walleij <linus.walleij@linaro.org>
5765 S:      Maintained
5766 T:      git git://anongit.freedesktop.org/drm/drm-misc
5767 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5768 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5769
5770 DRM DRIVER FOR ASPEED BMC GFX
5771 M:      Joel Stanley <joel@jms.id.au>
5772 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5773 S:      Supported
5774 T:      git git://anongit.freedesktop.org/drm/drm-misc
5775 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5776 F:      drivers/gpu/drm/aspeed/
5777
5778 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5779 M:      Dave Airlie <airlied@redhat.com>
5780 R:      Thomas Zimmermann <tzimmermann@suse.de>
5781 L:      dri-devel@lists.freedesktop.org
5782 S:      Supported
5783 T:      git git://anongit.freedesktop.org/drm/drm-misc
5784 F:      drivers/gpu/drm/ast/
5785
5786 DRM DRIVER FOR BOCHS VIRTUAL GPU
5787 M:      Gerd Hoffmann <kraxel@redhat.com>
5788 L:      virtualization@lists.linux-foundation.org
5789 S:      Maintained
5790 T:      git git://anongit.freedesktop.org/drm/drm-misc
5791 F:      drivers/gpu/drm/bochs/
5792
5793 DRM DRIVER FOR BOE HIMAX8279D PANELS
5794 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5795 S:      Maintained
5796 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5797 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5798
5799 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5800 M:      Jagan Teki <jagan@amarulasolutions.com>
5801 S:      Maintained
5802 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5803 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5804
5805 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5806 M:      Linus Walleij <linus.walleij@linaro.org>
5807 S:      Maintained
5808 T:      git git://anongit.freedesktop.org/drm/drm-misc
5809 F:      drivers/gpu/drm/tve200/
5810
5811 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5812 M:      Icenowy Zheng <icenowy@aosc.io>
5813 S:      Maintained
5814 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5815 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5816
5817 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5818 M:      Jagan Teki <jagan@amarulasolutions.com>
5819 S:      Maintained
5820 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5821 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5822
5823 DRM DRIVER FOR GENERIC USB DISPLAY
5824 M:      Noralf Trønnes <noralf@tronnes.org>
5825 S:      Maintained
5826 W:      https://github.com/notro/gud/wiki
5827 T:      git git://anongit.freedesktop.org/drm/drm-misc
5828 F:      drivers/gpu/drm/gud/
5829 F:      include/drm/gud.h
5830
5831 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5832 M:      Hans de Goede <hdegoede@redhat.com>
5833 S:      Maintained
5834 T:      git git://anongit.freedesktop.org/drm/drm-misc
5835 F:      drivers/gpu/drm/tiny/gm12u320.c
5836
5837 DRM DRIVER FOR HX8357D PANELS
5838 M:      Emma Anholt <emma@anholt.net>
5839 S:      Maintained
5840 T:      git git://anongit.freedesktop.org/drm/drm-misc
5841 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5842 F:      drivers/gpu/drm/tiny/hx8357d.c
5843
5844 DRM DRIVER FOR ILITEK ILI9225 PANELS
5845 M:      David Lechner <david@lechnology.com>
5846 S:      Maintained
5847 T:      git git://anongit.freedesktop.org/drm/drm-misc
5848 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5849 F:      drivers/gpu/drm/tiny/ili9225.c
5850
5851 DRM DRIVER FOR ILITEK ILI9486 PANELS
5852 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5853 S:      Maintained
5854 T:      git git://anongit.freedesktop.org/drm/drm-misc
5855 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5856 F:      drivers/gpu/drm/tiny/ili9486.c
5857
5858 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5859 S:      Orphan / Obsolete
5860 F:      drivers/gpu/drm/i810/
5861 F:      include/uapi/drm/i810_drm.h
5862
5863 DRM DRIVER FOR LVDS PANELS
5864 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5865 L:      dri-devel@lists.freedesktop.org
5866 T:      git git://anongit.freedesktop.org/drm/drm-misc
5867 S:      Maintained
5868 F:      drivers/gpu/drm/panel/panel-lvds.c
5869 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5870
5871 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5872 M:      Guido Günther <agx@sigxcpu.org>
5873 R:      Purism Kernel Team <kernel@puri.sm>
5874 S:      Maintained
5875 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5876 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5877
5878 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5879 S:      Orphan / Obsolete
5880 F:      drivers/gpu/drm/mga/
5881 F:      include/uapi/drm/mga_drm.h
5882
5883 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5884 M:      Dave Airlie <airlied@redhat.com>
5885 R:      Thomas Zimmermann <tzimmermann@suse.de>
5886 L:      dri-devel@lists.freedesktop.org
5887 S:      Supported
5888 T:      git git://anongit.freedesktop.org/drm/drm-misc
5889 F:      drivers/gpu/drm/mgag200/
5890
5891 DRM DRIVER FOR MI0283QT
5892 M:      Noralf Trønnes <noralf@tronnes.org>
5893 S:      Maintained
5894 T:      git git://anongit.freedesktop.org/drm/drm-misc
5895 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5896 F:      drivers/gpu/drm/tiny/mi0283qt.c
5897
5898 DRM DRIVER FOR MSM ADRENO GPU
5899 M:      Rob Clark <robdclark@gmail.com>
5900 M:      Sean Paul <sean@poorly.run>
5901 L:      linux-arm-msm@vger.kernel.org
5902 L:      dri-devel@lists.freedesktop.org
5903 L:      freedreno@lists.freedesktop.org
5904 S:      Maintained
5905 T:      git https://gitlab.freedesktop.org/drm/msm.git
5906 F:      Documentation/devicetree/bindings/display/msm/
5907 F:      drivers/gpu/drm/msm/
5908 F:      include/uapi/drm/msm_drm.h
5909
5910 DRM DRIVER FOR NOVATEK NT35510 PANELS
5911 M:      Linus Walleij <linus.walleij@linaro.org>
5912 S:      Maintained
5913 T:      git git://anongit.freedesktop.org/drm/drm-misc
5914 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5915 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5916
5917 DRM DRIVER FOR NOVATEK NT36672A PANELS
5918 M:      Sumit Semwal <sumit.semwal@linaro.org>
5919 S:      Maintained
5920 T:      git git://anongit.freedesktop.org/drm/drm-misc
5921 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5922 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5923
5924 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5925 M:      Ben Skeggs <bskeggs@redhat.com>
5926 L:      dri-devel@lists.freedesktop.org
5927 L:      nouveau@lists.freedesktop.org
5928 S:      Supported
5929 T:      git git://github.com/skeggsb/linux
5930 F:      drivers/gpu/drm/nouveau/
5931 F:      include/uapi/drm/nouveau_drm.h
5932
5933 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5934 M:      Stefan Mavrodiev <stefan@olimex.com>
5935 S:      Maintained
5936 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5937 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5938
5939 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5940 M:      Noralf Trønnes <noralf@tronnes.org>
5941 S:      Maintained
5942 T:      git git://anongit.freedesktop.org/drm/drm-misc
5943 F:      Documentation/devicetree/bindings/display/repaper.txt
5944 F:      drivers/gpu/drm/tiny/repaper.c
5945
5946 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5947 M:      Dave Airlie <airlied@redhat.com>
5948 M:      Gerd Hoffmann <kraxel@redhat.com>
5949 L:      virtualization@lists.linux-foundation.org
5950 S:      Obsolete
5951 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5952 T:      git git://anongit.freedesktop.org/drm/drm-misc
5953 F:      drivers/gpu/drm/tiny/cirrus.c
5954
5955 DRM DRIVER FOR QXL VIRTUAL GPU
5956 M:      Dave Airlie <airlied@redhat.com>
5957 M:      Gerd Hoffmann <kraxel@redhat.com>
5958 L:      virtualization@lists.linux-foundation.org
5959 L:      spice-devel@lists.freedesktop.org
5960 S:      Maintained
5961 T:      git git://anongit.freedesktop.org/drm/drm-misc
5962 F:      drivers/gpu/drm/qxl/
5963 F:      include/uapi/drm/qxl_drm.h
5964
5965 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5966 S:      Orphan / Obsolete
5967 F:      drivers/gpu/drm/r128/
5968 F:      include/uapi/drm/r128_drm.h
5969
5970 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5971 M:      Robert Chiras <robert.chiras@nxp.com>
5972 S:      Maintained
5973 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5974 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5975
5976 DRM DRIVER FOR SITRONIX ST7703 PANELS
5977 M:      Guido Günther <agx@sigxcpu.org>
5978 R:      Purism Kernel Team <kernel@puri.sm>
5979 R:      Ondrej Jirman <megous@megous.com>
5980 S:      Maintained
5981 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5982 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5983
5984 DRM DRIVER FOR SAVAGE VIDEO CARDS
5985 S:      Orphan / Obsolete
5986 F:      drivers/gpu/drm/savage/
5987 F:      include/uapi/drm/savage_drm.h
5988
5989 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
5990 M:      Thomas Zimmermann <tzimmermann@suse.de>
5991 L:      dri-devel@lists.freedesktop.org
5992 S:      Maintained
5993 T:      git git://anongit.freedesktop.org/drm/drm-misc
5994 F:      drivers/gpu/drm/tiny/simpledrm.c
5995
5996 DRM DRIVER FOR SIS VIDEO CARDS
5997 S:      Orphan / Obsolete
5998 F:      drivers/gpu/drm/sis/
5999 F:      include/uapi/drm/sis_drm.h
6000
6001 DRM DRIVER FOR SITRONIX ST7586 PANELS
6002 M:      David Lechner <david@lechnology.com>
6003 S:      Maintained
6004 T:      git git://anongit.freedesktop.org/drm/drm-misc
6005 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6006 F:      drivers/gpu/drm/tiny/st7586.c
6007
6008 DRM DRIVER FOR SITRONIX ST7701 PANELS
6009 M:      Jagan Teki <jagan@amarulasolutions.com>
6010 S:      Maintained
6011 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6012 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6013
6014 DRM DRIVER FOR SITRONIX ST7735R PANELS
6015 M:      David Lechner <david@lechnology.com>
6016 S:      Maintained
6017 T:      git git://anongit.freedesktop.org/drm/drm-misc
6018 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6019 F:      drivers/gpu/drm/tiny/st7735r.c
6020
6021 DRM DRIVER FOR SONY ACX424AKP PANELS
6022 M:      Linus Walleij <linus.walleij@linaro.org>
6023 S:      Maintained
6024 T:      git git://anongit.freedesktop.org/drm/drm-misc
6025 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6026
6027 DRM DRIVER FOR ST-ERICSSON MCDE
6028 M:      Linus Walleij <linus.walleij@linaro.org>
6029 S:      Maintained
6030 T:      git git://anongit.freedesktop.org/drm/drm-misc
6031 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6032 F:      drivers/gpu/drm/mcde/
6033
6034 DRM DRIVER FOR TDFX VIDEO CARDS
6035 S:      Orphan / Obsolete
6036 F:      drivers/gpu/drm/tdfx/
6037
6038 DRM DRIVER FOR TPO TPG110 PANELS
6039 M:      Linus Walleij <linus.walleij@linaro.org>
6040 S:      Maintained
6041 T:      git git://anongit.freedesktop.org/drm/drm-misc
6042 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6043 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6044
6045 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6046 M:      Dave Airlie <airlied@redhat.com>
6047 R:      Sean Paul <sean@poorly.run>
6048 R:      Thomas Zimmermann <tzimmermann@suse.de>
6049 L:      dri-devel@lists.freedesktop.org
6050 S:      Supported
6051 T:      git git://anongit.freedesktop.org/drm/drm-misc
6052 F:      drivers/gpu/drm/udl/
6053
6054 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6055 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6056 M:      Melissa Wen <melissa.srw@gmail.com>
6057 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6058 R:      Daniel Vetter <daniel@ffwll.ch>
6059 L:      dri-devel@lists.freedesktop.org
6060 S:      Maintained
6061 T:      git git://anongit.freedesktop.org/drm/drm-misc
6062 F:      Documentation/gpu/vkms.rst
6063 F:      drivers/gpu/drm/vkms/
6064
6065 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6066 M:      Hans de Goede <hdegoede@redhat.com>
6067 L:      dri-devel@lists.freedesktop.org
6068 S:      Maintained
6069 T:      git git://anongit.freedesktop.org/drm/drm-misc
6070 F:      drivers/gpu/drm/vboxvideo/
6071
6072 DRM DRIVER FOR VMWARE VIRTUAL GPU
6073 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6074 M:      Roland Scheidegger <sroland@vmware.com>
6075 M:      Zack Rusin <zackr@vmware.com>
6076 L:      dri-devel@lists.freedesktop.org
6077 S:      Supported
6078 T:      git git://people.freedesktop.org/~sroland/linux
6079 F:      drivers/gpu/drm/vmwgfx/
6080 F:      include/uapi/drm/vmwgfx_drm.h
6081
6082 DRM DRIVERS
6083 M:      David Airlie <airlied@linux.ie>
6084 M:      Daniel Vetter <daniel@ffwll.ch>
6085 L:      dri-devel@lists.freedesktop.org
6086 S:      Maintained
6087 B:      https://gitlab.freedesktop.org/drm
6088 C:      irc://chat.freenode.net/dri-devel
6089 T:      git git://anongit.freedesktop.org/drm/drm
6090 F:      Documentation/devicetree/bindings/display/
6091 F:      Documentation/devicetree/bindings/gpu/
6092 F:      Documentation/gpu/
6093 F:      drivers/gpu/drm/
6094 F:      drivers/gpu/vga/
6095 F:      include/drm/
6096 F:      include/linux/vga*
6097 F:      include/uapi/drm/
6098
6099 DRM DRIVERS AND MISC GPU PATCHES
6100 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6101 M:      Maxime Ripard <mripard@kernel.org>
6102 M:      Thomas Zimmermann <tzimmermann@suse.de>
6103 S:      Maintained
6104 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6105 T:      git git://anongit.freedesktop.org/drm/drm-misc
6106 F:      Documentation/gpu/
6107 F:      drivers/gpu/drm/*
6108 F:      drivers/gpu/vga/
6109 F:      include/drm/drm*
6110 F:      include/linux/vga*
6111 F:      include/uapi/drm/drm*
6112
6113 DRM DRIVERS FOR ALLWINNER A10
6114 M:      Maxime Ripard <mripard@kernel.org>
6115 M:      Chen-Yu Tsai <wens@csie.org>
6116 L:      dri-devel@lists.freedesktop.org
6117 S:      Supported
6118 T:      git git://anongit.freedesktop.org/drm/drm-misc
6119 F:      Documentation/devicetree/bindings/display/allwinner*
6120 F:      drivers/gpu/drm/sun4i/
6121
6122 DRM DRIVERS FOR AMLOGIC SOCS
6123 M:      Neil Armstrong <narmstrong@baylibre.com>
6124 L:      dri-devel@lists.freedesktop.org
6125 L:      linux-amlogic@lists.infradead.org
6126 S:      Supported
6127 W:      http://linux-meson.com/
6128 T:      git git://anongit.freedesktop.org/drm/drm-misc
6129 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6130 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6131 F:      Documentation/gpu/meson.rst
6132 F:      drivers/gpu/drm/meson/
6133
6134 DRM DRIVERS FOR ATMEL HLCDC
6135 M:      Sam Ravnborg <sam@ravnborg.org>
6136 M:      Boris Brezillon <bbrezillon@kernel.org>
6137 L:      dri-devel@lists.freedesktop.org
6138 S:      Supported
6139 T:      git git://anongit.freedesktop.org/drm/drm-misc
6140 F:      Documentation/devicetree/bindings/display/atmel/
6141 F:      drivers/gpu/drm/atmel-hlcdc/
6142
6143 DRM DRIVERS FOR BRIDGE CHIPS
6144 M:      Andrzej Hajda <a.hajda@samsung.com>
6145 M:      Neil Armstrong <narmstrong@baylibre.com>
6146 M:      Robert Foss <robert.foss@linaro.org>
6147 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6148 R:      Jonas Karlman <jonas@kwiboo.se>
6149 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6150 S:      Maintained
6151 T:      git git://anongit.freedesktop.org/drm/drm-misc
6152 F:      drivers/gpu/drm/bridge/
6153
6154 DRM DRIVERS FOR EXYNOS
6155 M:      Inki Dae <inki.dae@samsung.com>
6156 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6157 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6158 M:      Kyungmin Park <kyungmin.park@samsung.com>
6159 L:      dri-devel@lists.freedesktop.org
6160 S:      Supported
6161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6162 F:      Documentation/devicetree/bindings/display/exynos/
6163 F:      drivers/gpu/drm/exynos/
6164 F:      include/uapi/drm/exynos_drm.h
6165
6166 DRM DRIVERS FOR FREESCALE DCU
6167 M:      Stefan Agner <stefan@agner.ch>
6168 M:      Alison Wang <alison.wang@nxp.com>
6169 L:      dri-devel@lists.freedesktop.org
6170 S:      Supported
6171 T:      git git://anongit.freedesktop.org/drm/drm-misc
6172 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6173 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6174 F:      drivers/gpu/drm/fsl-dcu/
6175
6176 DRM DRIVERS FOR FREESCALE IMX
6177 M:      Philipp Zabel <p.zabel@pengutronix.de>
6178 L:      dri-devel@lists.freedesktop.org
6179 S:      Maintained
6180 F:      Documentation/devicetree/bindings/display/imx/
6181 F:      drivers/gpu/drm/imx/
6182 F:      drivers/gpu/ipu-v3/
6183
6184 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6185 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6186 L:      dri-devel@lists.freedesktop.org
6187 S:      Maintained
6188 T:      git git://github.com/patjak/drm-gma500
6189 F:      drivers/gpu/drm/gma500/
6190
6191 DRM DRIVERS FOR HISILICON
6192 M:      Xinliang Liu <xinliang.liu@linaro.org>
6193 M:      Tian Tao  <tiantao6@hisilicon.com>
6194 R:      John Stultz <john.stultz@linaro.org>
6195 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6196 R:      Chen Feng <puck.chen@hisilicon.com>
6197 L:      dri-devel@lists.freedesktop.org
6198 S:      Maintained
6199 T:      git git://anongit.freedesktop.org/drm/drm-misc
6200 F:      Documentation/devicetree/bindings/display/hisilicon/
6201 F:      drivers/gpu/drm/hisilicon/
6202
6203 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6204 M:      Deepak Rawat <drawat.floss@gmail.com>
6205 L:      linux-hyperv@vger.kernel.org
6206 L:      dri-devel@lists.freedesktop.org
6207 S:      Maintained
6208 T:      git git://anongit.freedesktop.org/drm/drm-misc
6209 F:      drivers/gpu/drm/hyperv
6210
6211 DRM DRIVERS FOR LIMA
6212 M:      Qiang Yu <yuq825@gmail.com>
6213 L:      dri-devel@lists.freedesktop.org
6214 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6215 S:      Maintained
6216 T:      git git://anongit.freedesktop.org/drm/drm-misc
6217 F:      drivers/gpu/drm/lima/
6218 F:      include/uapi/drm/lima_drm.h
6219
6220 DRM DRIVERS FOR MEDIATEK
6221 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6222 M:      Philipp Zabel <p.zabel@pengutronix.de>
6223 L:      dri-devel@lists.freedesktop.org
6224 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6225 S:      Supported
6226 F:      Documentation/devicetree/bindings/display/mediatek/
6227 F:      drivers/gpu/drm/mediatek/
6228 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6229 F:      drivers/phy/mediatek/phy-mtk-mipi*
6230
6231 DRM DRIVERS FOR NVIDIA TEGRA
6232 M:      Thierry Reding <thierry.reding@gmail.com>
6233 L:      dri-devel@lists.freedesktop.org
6234 L:      linux-tegra@vger.kernel.org
6235 S:      Supported
6236 T:      git git://anongit.freedesktop.org/tegra/linux.git
6237 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6238 F:      drivers/gpu/drm/tegra/
6239 F:      drivers/gpu/host1x/
6240 F:      include/linux/host1x.h
6241 F:      include/uapi/drm/tegra_drm.h
6242
6243 DRM DRIVERS FOR RENESAS
6244 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6245 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6246 L:      dri-devel@lists.freedesktop.org
6247 L:      linux-renesas-soc@vger.kernel.org
6248 S:      Supported
6249 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6250 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6251 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6252 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6253 F:      drivers/gpu/drm/rcar-du/
6254 F:      drivers/gpu/drm/shmobile/
6255 F:      include/linux/platform_data/shmob_drm.h
6256
6257 DRM DRIVERS FOR ROCKCHIP
6258 M:      Sandy Huang <hjc@rock-chips.com>
6259 M:      Heiko Stübner <heiko@sntech.de>
6260 L:      dri-devel@lists.freedesktop.org
6261 S:      Maintained
6262 T:      git git://anongit.freedesktop.org/drm/drm-misc
6263 F:      Documentation/devicetree/bindings/display/rockchip/
6264 F:      drivers/gpu/drm/rockchip/
6265
6266 DRM DRIVERS FOR STI
6267 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6268 L:      dri-devel@lists.freedesktop.org
6269 S:      Maintained
6270 T:      git git://anongit.freedesktop.org/drm/drm-misc
6271 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6272 F:      drivers/gpu/drm/sti
6273
6274 DRM DRIVERS FOR STM
6275 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6276 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6277 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6278 L:      dri-devel@lists.freedesktop.org
6279 S:      Maintained
6280 T:      git git://anongit.freedesktop.org/drm/drm-misc
6281 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6282 F:      drivers/gpu/drm/stm
6283
6284 DRM DRIVERS FOR TI KEYSTONE
6285 M:      Jyri Sarha <jyri.sarha@iki.fi>
6286 M:      Tomi Valkeinen <tomba@kernel.org>
6287 L:      dri-devel@lists.freedesktop.org
6288 S:      Maintained
6289 T:      git git://anongit.freedesktop.org/drm/drm-misc
6290 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6291 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6292 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6293 F:      drivers/gpu/drm/tidss/
6294
6295 DRM DRIVERS FOR TI LCDC
6296 M:      Jyri Sarha <jyri.sarha@iki.fi>
6297 R:      Tomi Valkeinen <tomba@kernel.org>
6298 L:      dri-devel@lists.freedesktop.org
6299 S:      Maintained
6300 F:      Documentation/devicetree/bindings/display/tilcdc/
6301 F:      drivers/gpu/drm/tilcdc/
6302
6303 DRM DRIVERS FOR TI OMAP
6304 M:      Tomi Valkeinen <tomba@kernel.org>
6305 L:      dri-devel@lists.freedesktop.org
6306 S:      Maintained
6307 F:      Documentation/devicetree/bindings/display/ti/
6308 F:      drivers/gpu/drm/omapdrm/
6309
6310 DRM DRIVERS FOR V3D
6311 M:      Emma Anholt <emma@anholt.net>
6312 S:      Supported
6313 T:      git git://anongit.freedesktop.org/drm/drm-misc
6314 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6315 F:      drivers/gpu/drm/v3d/
6316 F:      include/uapi/drm/v3d_drm.h
6317
6318 DRM DRIVERS FOR VC4
6319 M:      Emma Anholt <emma@anholt.net>
6320 M:      Maxime Ripard <mripard@kernel.org>
6321 S:      Supported
6322 T:      git git://github.com/anholt/linux
6323 T:      git git://anongit.freedesktop.org/drm/drm-misc
6324 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6325 F:      drivers/gpu/drm/vc4/
6326 F:      include/uapi/drm/vc4_drm.h
6327
6328 DRM DRIVERS FOR VIVANTE GPU IP
6329 M:      Lucas Stach <l.stach@pengutronix.de>
6330 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6331 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6332 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6333 L:      dri-devel@lists.freedesktop.org
6334 S:      Maintained
6335 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6336 F:      drivers/gpu/drm/etnaviv/
6337 F:      include/uapi/drm/etnaviv_drm.h
6338
6339 DRM DRIVERS FOR XEN
6340 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6341 L:      dri-devel@lists.freedesktop.org
6342 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6343 S:      Supported
6344 T:      git git://anongit.freedesktop.org/drm/drm-misc
6345 F:      Documentation/gpu/xen-front.rst
6346 F:      drivers/gpu/drm/xen/
6347
6348 DRM DRIVERS FOR XILINX
6349 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6350 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6351 L:      dri-devel@lists.freedesktop.org
6352 S:      Maintained
6353 T:      git git://anongit.freedesktop.org/drm/drm-misc
6354 F:      Documentation/devicetree/bindings/display/xlnx/
6355 F:      drivers/gpu/drm/xlnx/
6356
6357 DRM PANEL DRIVERS
6358 M:      Thierry Reding <thierry.reding@gmail.com>
6359 R:      Sam Ravnborg <sam@ravnborg.org>
6360 L:      dri-devel@lists.freedesktop.org
6361 S:      Maintained
6362 T:      git git://anongit.freedesktop.org/drm/drm-misc
6363 F:      Documentation/devicetree/bindings/display/panel/
6364 F:      drivers/gpu/drm/drm_panel.c
6365 F:      drivers/gpu/drm/panel/
6366 F:      include/drm/drm_panel.h
6367
6368 DRM TTM SUBSYSTEM
6369 M:      Christian Koenig <christian.koenig@amd.com>
6370 M:      Huang Rui <ray.huang@amd.com>
6371 L:      dri-devel@lists.freedesktop.org
6372 S:      Maintained
6373 T:      git git://anongit.freedesktop.org/drm/drm-misc
6374 F:      drivers/gpu/drm/ttm/
6375 F:      include/drm/ttm/
6376
6377 DSBR100 USB FM RADIO DRIVER
6378 M:      Alexey Klimov <klimov.linux@gmail.com>
6379 L:      linux-media@vger.kernel.org
6380 S:      Maintained
6381 T:      git git://linuxtv.org/media_tree.git
6382 F:      drivers/media/radio/dsbr100.c
6383
6384 DT3155 MEDIA DRIVER
6385 M:      Hans Verkuil <hverkuil@xs4all.nl>
6386 L:      linux-media@vger.kernel.org
6387 S:      Odd Fixes
6388 W:      https://linuxtv.org
6389 T:      git git://linuxtv.org/media_tree.git
6390 F:      drivers/media/pci/dt3155/
6391
6392 DVB_USB_AF9015 MEDIA DRIVER
6393 M:      Antti Palosaari <crope@iki.fi>
6394 L:      linux-media@vger.kernel.org
6395 S:      Maintained
6396 W:      https://linuxtv.org
6397 W:      http://palosaari.fi/linux/
6398 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6399 T:      git git://linuxtv.org/anttip/media_tree.git
6400 F:      drivers/media/usb/dvb-usb-v2/af9015*
6401
6402 DVB_USB_AF9035 MEDIA DRIVER
6403 M:      Antti Palosaari <crope@iki.fi>
6404 L:      linux-media@vger.kernel.org
6405 S:      Maintained
6406 W:      https://linuxtv.org
6407 W:      http://palosaari.fi/linux/
6408 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6409 T:      git git://linuxtv.org/anttip/media_tree.git
6410 F:      drivers/media/usb/dvb-usb-v2/af9035*
6411
6412 DVB_USB_ANYSEE MEDIA DRIVER
6413 M:      Antti Palosaari <crope@iki.fi>
6414 L:      linux-media@vger.kernel.org
6415 S:      Maintained
6416 W:      https://linuxtv.org
6417 W:      http://palosaari.fi/linux/
6418 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6419 T:      git git://linuxtv.org/anttip/media_tree.git
6420 F:      drivers/media/usb/dvb-usb-v2/anysee*
6421
6422 DVB_USB_AU6610 MEDIA DRIVER
6423 M:      Antti Palosaari <crope@iki.fi>
6424 L:      linux-media@vger.kernel.org
6425 S:      Maintained
6426 W:      https://linuxtv.org
6427 W:      http://palosaari.fi/linux/
6428 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6429 T:      git git://linuxtv.org/anttip/media_tree.git
6430 F:      drivers/media/usb/dvb-usb-v2/au6610*
6431
6432 DVB_USB_CE6230 MEDIA DRIVER
6433 M:      Antti Palosaari <crope@iki.fi>
6434 L:      linux-media@vger.kernel.org
6435 S:      Maintained
6436 W:      https://linuxtv.org
6437 W:      http://palosaari.fi/linux/
6438 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6439 T:      git git://linuxtv.org/anttip/media_tree.git
6440 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6441
6442 DVB_USB_CXUSB MEDIA DRIVER
6443 M:      Michael Krufky <mkrufky@linuxtv.org>
6444 L:      linux-media@vger.kernel.org
6445 S:      Maintained
6446 W:      https://linuxtv.org
6447 W:      http://github.com/mkrufky
6448 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6449 T:      git git://linuxtv.org/media_tree.git
6450 F:      drivers/media/usb/dvb-usb/cxusb*
6451
6452 DVB_USB_EC168 MEDIA DRIVER
6453 M:      Antti Palosaari <crope@iki.fi>
6454 L:      linux-media@vger.kernel.org
6455 S:      Maintained
6456 W:      https://linuxtv.org
6457 W:      http://palosaari.fi/linux/
6458 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6459 T:      git git://linuxtv.org/anttip/media_tree.git
6460 F:      drivers/media/usb/dvb-usb-v2/ec168*
6461
6462 DVB_USB_GL861 MEDIA DRIVER
6463 M:      Antti Palosaari <crope@iki.fi>
6464 L:      linux-media@vger.kernel.org
6465 S:      Maintained
6466 W:      https://linuxtv.org
6467 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6468 T:      git git://linuxtv.org/anttip/media_tree.git
6469 F:      drivers/media/usb/dvb-usb-v2/gl861*
6470
6471 DVB_USB_MXL111SF MEDIA DRIVER
6472 M:      Michael Krufky <mkrufky@linuxtv.org>
6473 L:      linux-media@vger.kernel.org
6474 S:      Maintained
6475 W:      https://linuxtv.org
6476 W:      http://github.com/mkrufky
6477 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6478 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6479 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6480
6481 DVB_USB_RTL28XXU MEDIA DRIVER
6482 M:      Antti Palosaari <crope@iki.fi>
6483 L:      linux-media@vger.kernel.org
6484 S:      Maintained
6485 W:      https://linuxtv.org
6486 W:      http://palosaari.fi/linux/
6487 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6488 T:      git git://linuxtv.org/anttip/media_tree.git
6489 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6490
6491 DVB_USB_V2 MEDIA DRIVER
6492 M:      Antti Palosaari <crope@iki.fi>
6493 L:      linux-media@vger.kernel.org
6494 S:      Maintained
6495 W:      https://linuxtv.org
6496 W:      http://palosaari.fi/linux/
6497 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6498 T:      git git://linuxtv.org/anttip/media_tree.git
6499 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6500 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6501
6502 DYNAMIC DEBUG
6503 M:      Jason Baron <jbaron@akamai.com>
6504 S:      Maintained
6505 F:      include/linux/dynamic_debug.h
6506 F:      lib/dynamic_debug.c
6507
6508 DYNAMIC INTERRUPT MODERATION
6509 M:      Tal Gilboa <talgi@nvidia.com>
6510 S:      Maintained
6511 F:      Documentation/networking/net_dim.rst
6512 F:      include/linux/dim.h
6513 F:      lib/dim/
6514
6515 DZ DECSTATION DZ11 SERIAL DRIVER
6516 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6517 S:      Maintained
6518 F:      drivers/tty/serial/dz.*
6519
6520 E3X0 POWER BUTTON DRIVER
6521 M:      Moritz Fischer <moritz.fischer@ettus.com>
6522 L:      usrp-users@lists.ettus.com
6523 S:      Supported
6524 W:      http://www.ettus.com
6525 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6526 F:      drivers/input/misc/e3x0-button.c
6527
6528 E4000 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/tuners/e4000*
6537
6538 EARTH_PT1 MEDIA DRIVER
6539 M:      Akihiro Tsukada <tskd08@gmail.com>
6540 L:      linux-media@vger.kernel.org
6541 S:      Odd Fixes
6542 F:      drivers/media/pci/pt1/
6543
6544 EARTH_PT3 MEDIA DRIVER
6545 M:      Akihiro Tsukada <tskd08@gmail.com>
6546 L:      linux-media@vger.kernel.org
6547 S:      Odd Fixes
6548 F:      drivers/media/pci/pt3/
6549
6550 EC100 MEDIA DRIVER
6551 M:      Antti Palosaari <crope@iki.fi>
6552 L:      linux-media@vger.kernel.org
6553 S:      Maintained
6554 W:      https://linuxtv.org
6555 W:      http://palosaari.fi/linux/
6556 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6557 T:      git git://linuxtv.org/anttip/media_tree.git
6558 F:      drivers/media/dvb-frontends/ec100*
6559
6560 ECRYPT FILE SYSTEM
6561 M:      Tyler Hicks <code@tyhicks.com>
6562 L:      ecryptfs@vger.kernel.org
6563 S:      Odd Fixes
6564 W:      http://ecryptfs.org
6565 W:      https://launchpad.net/ecryptfs
6566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6567 F:      Documentation/filesystems/ecryptfs.rst
6568 F:      fs/ecryptfs/
6569
6570 EDAC-AMD64
6571 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6572 L:      linux-edac@vger.kernel.org
6573 S:      Supported
6574 F:      drivers/edac/amd64_edac*
6575 F:      drivers/edac/mce_amd*
6576
6577 EDAC-ARMADA
6578 M:      Jan Luebbe <jlu@pengutronix.de>
6579 L:      linux-edac@vger.kernel.org
6580 S:      Maintained
6581 F:      drivers/edac/armada_xp_*
6582
6583 EDAC-AST2500
6584 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6585 S:      Supported
6586 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6587 F:      drivers/edac/aspeed_edac.c
6588
6589 EDAC-BLUEFIELD
6590 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6591 S:      Supported
6592 F:      drivers/edac/bluefield_edac.c
6593
6594 EDAC-CALXEDA
6595 M:      Andre Przywara <andre.przywara@arm.com>
6596 L:      linux-edac@vger.kernel.org
6597 S:      Maintained
6598 F:      drivers/edac/highbank*
6599
6600 EDAC-CAVIUM OCTEON
6601 M:      Ralf Baechle <ralf@linux-mips.org>
6602 L:      linux-edac@vger.kernel.org
6603 L:      linux-mips@vger.kernel.org
6604 S:      Supported
6605 F:      drivers/edac/octeon_edac*
6606
6607 EDAC-CAVIUM THUNDERX
6608 M:      Robert Richter <rric@kernel.org>
6609 L:      linux-edac@vger.kernel.org
6610 S:      Odd Fixes
6611 F:      drivers/edac/thunderx_edac*
6612
6613 EDAC-CORE
6614 M:      Borislav Petkov <bp@alien8.de>
6615 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6616 M:      Tony Luck <tony.luck@intel.com>
6617 R:      James Morse <james.morse@arm.com>
6618 R:      Robert Richter <rric@kernel.org>
6619 L:      linux-edac@vger.kernel.org
6620 S:      Supported
6621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6622 F:      Documentation/admin-guide/ras.rst
6623 F:      Documentation/driver-api/edac.rst
6624 F:      drivers/edac/
6625 F:      include/linux/edac.h
6626
6627 EDAC-DMC520
6628 M:      Lei Wang <lewan@microsoft.com>
6629 L:      linux-edac@vger.kernel.org
6630 S:      Supported
6631 F:      drivers/edac/dmc520_edac.c
6632
6633 EDAC-E752X
6634 M:      Mark Gross <mark.gross@intel.com>
6635 L:      linux-edac@vger.kernel.org
6636 S:      Maintained
6637 F:      drivers/edac/e752x_edac.c
6638
6639 EDAC-E7XXX
6640 L:      linux-edac@vger.kernel.org
6641 S:      Maintained
6642 F:      drivers/edac/e7xxx_edac.c
6643
6644 EDAC-FSL_DDR
6645 M:      York Sun <york.sun@nxp.com>
6646 L:      linux-edac@vger.kernel.org
6647 S:      Maintained
6648 F:      drivers/edac/fsl_ddr_edac.*
6649
6650 EDAC-GHES
6651 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6652 L:      linux-edac@vger.kernel.org
6653 S:      Maintained
6654 F:      drivers/edac/ghes_edac.c
6655
6656 EDAC-I10NM
6657 M:      Tony Luck <tony.luck@intel.com>
6658 L:      linux-edac@vger.kernel.org
6659 S:      Maintained
6660 F:      drivers/edac/i10nm_base.c
6661
6662 EDAC-I3000
6663 L:      linux-edac@vger.kernel.org
6664 S:      Orphan
6665 F:      drivers/edac/i3000_edac.c
6666
6667 EDAC-I5000
6668 L:      linux-edac@vger.kernel.org
6669 S:      Maintained
6670 F:      drivers/edac/i5000_edac.c
6671
6672 EDAC-I5400
6673 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6674 L:      linux-edac@vger.kernel.org
6675 S:      Maintained
6676 F:      drivers/edac/i5400_edac.c
6677
6678 EDAC-I7300
6679 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6680 L:      linux-edac@vger.kernel.org
6681 S:      Maintained
6682 F:      drivers/edac/i7300_edac.c
6683
6684 EDAC-I7CORE
6685 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6686 L:      linux-edac@vger.kernel.org
6687 S:      Maintained
6688 F:      drivers/edac/i7core_edac.c
6689
6690 EDAC-I82443BXGX
6691 M:      Tim Small <tim@buttersideup.com>
6692 L:      linux-edac@vger.kernel.org
6693 S:      Maintained
6694 F:      drivers/edac/i82443bxgx_edac.c
6695
6696 EDAC-I82975X
6697 M:      "Arvind R." <arvino55@gmail.com>
6698 L:      linux-edac@vger.kernel.org
6699 S:      Maintained
6700 F:      drivers/edac/i82975x_edac.c
6701
6702 EDAC-IE31200
6703 M:      Jason Baron <jbaron@akamai.com>
6704 L:      linux-edac@vger.kernel.org
6705 S:      Maintained
6706 F:      drivers/edac/ie31200_edac.c
6707
6708 EDAC-IGEN6
6709 M:      Tony Luck <tony.luck@intel.com>
6710 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6711 L:      linux-edac@vger.kernel.org
6712 S:      Maintained
6713 F:      drivers/edac/igen6_edac.c
6714
6715 EDAC-MPC85XX
6716 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6717 L:      linux-edac@vger.kernel.org
6718 S:      Maintained
6719 F:      drivers/edac/mpc85xx_edac.[ch]
6720
6721 EDAC-PASEMI
6722 M:      Egor Martovetsky <egor@pasemi.com>
6723 L:      linux-edac@vger.kernel.org
6724 S:      Maintained
6725 F:      drivers/edac/pasemi_edac.c
6726
6727 EDAC-PND2
6728 M:      Tony Luck <tony.luck@intel.com>
6729 L:      linux-edac@vger.kernel.org
6730 S:      Maintained
6731 F:      drivers/edac/pnd2_edac.[ch]
6732
6733 EDAC-QCOM
6734 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6735 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6736 L:      linux-arm-msm@vger.kernel.org
6737 L:      linux-edac@vger.kernel.org
6738 S:      Maintained
6739 F:      drivers/edac/qcom_edac.c
6740
6741 EDAC-R82600
6742 M:      Tim Small <tim@buttersideup.com>
6743 L:      linux-edac@vger.kernel.org
6744 S:      Maintained
6745 F:      drivers/edac/r82600_edac.c
6746
6747 EDAC-SBRIDGE
6748 M:      Tony Luck <tony.luck@intel.com>
6749 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6750 L:      linux-edac@vger.kernel.org
6751 S:      Maintained
6752 F:      drivers/edac/sb_edac.c
6753
6754 EDAC-SIFIVE
6755 M:      Yash Shah <yash.shah@sifive.com>
6756 L:      linux-edac@vger.kernel.org
6757 S:      Supported
6758 F:      drivers/edac/sifive_edac.c
6759
6760 EDAC-SKYLAKE
6761 M:      Tony Luck <tony.luck@intel.com>
6762 L:      linux-edac@vger.kernel.org
6763 S:      Maintained
6764 F:      drivers/edac/skx_*.[ch]
6765
6766 EDAC-TI
6767 M:      Tero Kristo <kristo@kernel.org>
6768 L:      linux-edac@vger.kernel.org
6769 S:      Odd Fixes
6770 F:      drivers/edac/ti_edac.c
6771
6772 EDIROL UA-101/UA-1000 DRIVER
6773 M:      Clemens Ladisch <clemens@ladisch.de>
6774 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6775 S:      Maintained
6776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6777 F:      sound/usb/misc/ua101.c
6778
6779 EFI TEST DRIVER
6780 M:      Ivan Hu <ivan.hu@canonical.com>
6781 M:      Ard Biesheuvel <ardb@kernel.org>
6782 L:      linux-efi@vger.kernel.org
6783 S:      Maintained
6784 F:      drivers/firmware/efi/test/
6785
6786 EFI VARIABLE FILESYSTEM
6787 M:      Matthew Garrett <matthew.garrett@nebula.com>
6788 M:      Jeremy Kerr <jk@ozlabs.org>
6789 M:      Ard Biesheuvel <ardb@kernel.org>
6790 L:      linux-efi@vger.kernel.org
6791 S:      Maintained
6792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6793 F:      fs/efivarfs/
6794
6795 EFIFB FRAMEBUFFER DRIVER
6796 M:      Peter Jones <pjones@redhat.com>
6797 L:      linux-fbdev@vger.kernel.org
6798 S:      Maintained
6799 F:      drivers/video/fbdev/efifb.c
6800
6801 EFS FILESYSTEM
6802 S:      Orphan
6803 W:      http://aeschi.ch.eu.org/efs/
6804 F:      fs/efs/
6805
6806 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6807 M:      Douglas Miller <dougmill@linux.ibm.com>
6808 L:      netdev@vger.kernel.org
6809 S:      Maintained
6810 F:      drivers/net/ethernet/ibm/ehea/
6811
6812 EM28XX VIDEO4LINUX DRIVER
6813 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6814 L:      linux-media@vger.kernel.org
6815 S:      Maintained
6816 W:      https://linuxtv.org
6817 T:      git git://linuxtv.org/media_tree.git
6818 F:      Documentation/admin-guide/media/em28xx*
6819 F:      drivers/media/usb/em28xx/
6820
6821 EMBEDDED LINUX
6822 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6823 M:      Matt Mackall <mpm@selenic.com>
6824 M:      David Woodhouse <dwmw2@infradead.org>
6825 L:      linux-embedded@vger.kernel.org
6826 S:      Maintained
6827
6828 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6829 M:      Adrian Hunter <adrian.hunter@intel.com>
6830 M:      Ritesh Harjani <riteshh@codeaurora.org>
6831 M:      Asutosh Das <asutoshd@codeaurora.org>
6832 L:      linux-mmc@vger.kernel.org
6833 S:      Maintained
6834 F:      drivers/mmc/host/cqhci*
6835
6836 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6837 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6838 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6839 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6840 L:      linux-scsi@vger.kernel.org
6841 S:      Supported
6842 W:      http://www.broadcom.com
6843 F:      drivers/scsi/be2iscsi/
6844
6845 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6846 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6847 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6848 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6849 L:      netdev@vger.kernel.org
6850 S:      Supported
6851 W:      http://www.emulex.com
6852 F:      drivers/net/ethernet/emulex/benet/
6853
6854 EMULEX ONECONNECT ROCE DRIVER
6855 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6856 L:      linux-rdma@vger.kernel.org
6857 S:      Odd Fixes
6858 W:      http://www.broadcom.com
6859 F:      drivers/infiniband/hw/ocrdma/
6860 F:      include/uapi/rdma/ocrdma-abi.h
6861
6862 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6863 M:      James Smart <james.smart@broadcom.com>
6864 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6865 L:      linux-scsi@vger.kernel.org
6866 S:      Supported
6867 W:      http://www.broadcom.com
6868 F:      drivers/scsi/lpfc/
6869
6870 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6871 M:      James Smart <james.smart@broadcom.com>
6872 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6873 L:      linux-scsi@vger.kernel.org
6874 L:      target-devel@vger.kernel.org
6875 S:      Supported
6876 W:      http://www.broadcom.com
6877 F:      drivers/scsi/elx/
6878
6879 ENE CB710 FLASH CARD READER DRIVER
6880 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6881 S:      Maintained
6882 F:      drivers/misc/cb710/
6883 F:      drivers/mmc/host/cb710-mmc.*
6884 F:      include/linux/cb710.h
6885
6886 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6887 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6888 S:      Maintained
6889 F:      drivers/media/rc/ene_ir.*
6890
6891 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6892 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6893 L:      linuxppc-dev@lists.ozlabs.org
6894 S:      Maintained
6895 F:      drivers/tty/ehv_bytechan.c
6896
6897 EPSON S1D13XXX FRAMEBUFFER DRIVER
6898 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6899 S:      Maintained
6900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6901 F:      drivers/video/fbdev/s1d13xxxfb.c
6902 F:      include/video/s1d13xxxfb.h
6903
6904 EROFS FILE SYSTEM
6905 M:      Gao Xiang <xiang@kernel.org>
6906 M:      Chao Yu <chao@kernel.org>
6907 L:      linux-erofs@lists.ozlabs.org
6908 S:      Maintained
6909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6910 F:      Documentation/filesystems/erofs.rst
6911 F:      fs/erofs/
6912 F:      include/trace/events/erofs.h
6913
6914 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6915 M:      Jeff Layton <jlayton@kernel.org>
6916 S:      Maintained
6917 F:      include/linux/errseq.h
6918 F:      lib/errseq.c
6919
6920 ET131X NETWORK DRIVER
6921 M:      Mark Einon <mark.einon@gmail.com>
6922 S:      Odd Fixes
6923 F:      drivers/net/ethernet/agere/
6924
6925 ETHERNET BRIDGE
6926 M:      Roopa Prabhu <roopa@nvidia.com>
6927 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6928 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6929 L:      netdev@vger.kernel.org
6930 S:      Maintained
6931 W:      http://www.linuxfoundation.org/en/Net:Bridge
6932 F:      include/linux/netfilter_bridge/
6933 F:      net/bridge/
6934
6935 ETHERNET PHY LIBRARY
6936 M:      Andrew Lunn <andrew@lunn.ch>
6937 M:      Heiner Kallweit <hkallweit1@gmail.com>
6938 R:      Russell King <linux@armlinux.org.uk>
6939 L:      netdev@vger.kernel.org
6940 S:      Maintained
6941 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6942 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6943 F:      Documentation/devicetree/bindings/net/mdio*
6944 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6945 F:      Documentation/networking/phy.rst
6946 F:      drivers/net/mdio/
6947 F:      drivers/net/mdio/acpi_mdio.c
6948 F:      drivers/net/mdio/fwnode_mdio.c
6949 F:      drivers/net/mdio/of_mdio.c
6950 F:      drivers/net/pcs/
6951 F:      drivers/net/phy/
6952 F:      drivers/of/of_net.c
6953 F:      include/dt-bindings/net/qca-ar803x.h
6954 F:      include/linux/*mdio*.h
6955 F:      include/linux/mdio/*.h
6956 F:      include/linux/of_net.h
6957 F:      include/linux/phy.h
6958 F:      include/linux/phy_fixed.h
6959 F:      include/linux/platform_data/mdio-bcm-unimac.h
6960 F:      include/linux/platform_data/mdio-gpio.h
6961 F:      include/trace/events/mdio.h
6962 F:      include/uapi/linux/mdio.h
6963 F:      include/uapi/linux/mii.h
6964
6965 EXFAT FILE SYSTEM
6966 M:      Namjae Jeon <linkinjeon@kernel.org>
6967 M:      Sungjong Seo <sj1557.seo@samsung.com>
6968 L:      linux-fsdevel@vger.kernel.org
6969 S:      Maintained
6970 F:      fs/exfat/
6971
6972 EXT2 FILE SYSTEM
6973 M:      Jan Kara <jack@suse.com>
6974 L:      linux-ext4@vger.kernel.org
6975 S:      Maintained
6976 F:      Documentation/filesystems/ext2.rst
6977 F:      fs/ext2/
6978 F:      include/linux/ext2*
6979
6980 EXT4 FILE SYSTEM
6981 M:      "Theodore Ts'o" <tytso@mit.edu>
6982 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6983 L:      linux-ext4@vger.kernel.org
6984 S:      Maintained
6985 W:      http://ext4.wiki.kernel.org
6986 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6988 F:      Documentation/filesystems/ext4/
6989 F:      fs/ext4/
6990 F:      include/trace/events/ext4.h
6991
6992 Extended Verification Module (EVM)
6993 M:      Mimi Zohar <zohar@linux.ibm.com>
6994 L:      linux-integrity@vger.kernel.org
6995 S:      Supported
6996 F:      security/integrity/evm/
6997
6998 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6999 M:      Ard Biesheuvel <ardb@kernel.org>
7000 L:      linux-efi@vger.kernel.org
7001 S:      Maintained
7002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7003 F:      Documentation/admin-guide/efi-stub.rst
7004 F:      arch/*/include/asm/efi.h
7005 F:      arch/*/kernel/efi.c
7006 F:      arch/arm/boot/compressed/efi-header.S
7007 F:      arch/arm64/kernel/efi-entry.S
7008 F:      arch/x86/platform/efi/
7009 F:      drivers/firmware/efi/
7010 F:      include/linux/efi*.h
7011
7012 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7013 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7014 M:      Chanwoo Choi <cw00.choi@samsung.com>
7015 L:      linux-kernel@vger.kernel.org
7016 S:      Maintained
7017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7018 F:      Documentation/devicetree/bindings/extcon/
7019 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7020 F:      drivers/extcon/
7021 F:      include/linux/extcon.h
7022 F:      include/linux/extcon/
7023
7024 EXTRA BOOT CONFIG
7025 M:      Masami Hiramatsu <mhiramat@kernel.org>
7026 S:      Maintained
7027 F:      Documentation/admin-guide/bootconfig.rst
7028 F:      fs/proc/bootconfig.c
7029 F:      include/linux/bootconfig.h
7030 F:      lib/bootconfig.c
7031 F:      tools/bootconfig/*
7032 F:      tools/bootconfig/scripts/*
7033
7034 EXYNOS DP DRIVER
7035 M:      Jingoo Han <jingoohan1@gmail.com>
7036 L:      dri-devel@lists.freedesktop.org
7037 S:      Maintained
7038 F:      drivers/gpu/drm/exynos/exynos_dp*
7039
7040 EXYNOS SYSMMU (IOMMU) driver
7041 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7042 L:      iommu@lists.linux-foundation.org
7043 S:      Maintained
7044 F:      drivers/iommu/exynos-iommu.c
7045
7046 F2FS FILE SYSTEM
7047 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7048 M:      Chao Yu <chao@kernel.org>
7049 L:      linux-f2fs-devel@lists.sourceforge.net
7050 S:      Maintained
7051 W:      https://f2fs.wiki.kernel.org/
7052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7053 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7054 F:      Documentation/filesystems/f2fs.rst
7055 F:      fs/f2fs/
7056 F:      include/linux/f2fs_fs.h
7057 F:      include/trace/events/f2fs.h
7058 F:      include/uapi/linux/f2fs.h
7059
7060 F71805F HARDWARE MONITORING DRIVER
7061 M:      Jean Delvare <jdelvare@suse.com>
7062 L:      linux-hwmon@vger.kernel.org
7063 S:      Maintained
7064 F:      Documentation/hwmon/f71805f.rst
7065 F:      drivers/hwmon/f71805f.c
7066
7067 FADDR2LINE
7068 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7069 S:      Maintained
7070 F:      scripts/faddr2line
7071
7072 FAILOVER MODULE
7073 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7074 L:      netdev@vger.kernel.org
7075 S:      Supported
7076 F:      Documentation/networking/failover.rst
7077 F:      include/net/failover.h
7078 F:      net/core/failover.c
7079
7080 FANOTIFY
7081 M:      Jan Kara <jack@suse.cz>
7082 R:      Amir Goldstein <amir73il@gmail.com>
7083 R:      Matthew Bobrowski <repnop@google.com>
7084 L:      linux-fsdevel@vger.kernel.org
7085 S:      Maintained
7086 F:      fs/notify/fanotify/
7087 F:      include/linux/fanotify.h
7088 F:      include/uapi/linux/fanotify.h
7089
7090 FARSYNC SYNCHRONOUS DRIVER
7091 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7092 S:      Supported
7093 W:      http://www.farsite.co.uk/
7094 F:      drivers/net/wan/farsync.*
7095
7096 FAULT INJECTION SUPPORT
7097 M:      Akinobu Mita <akinobu.mita@gmail.com>
7098 S:      Supported
7099 F:      Documentation/fault-injection/
7100 F:      lib/fault-inject.c
7101
7102 FBTFT Framebuffer drivers
7103 L:      dri-devel@lists.freedesktop.org
7104 L:      linux-fbdev@vger.kernel.org
7105 S:      Orphan
7106 F:      drivers/staging/fbtft/
7107
7108 FC0011 TUNER DRIVER
7109 M:      Michael Buesch <m@bues.ch>
7110 L:      linux-media@vger.kernel.org
7111 S:      Maintained
7112 F:      drivers/media/tuners/fc0011.c
7113 F:      drivers/media/tuners/fc0011.h
7114
7115 FC2580 MEDIA DRIVER
7116 M:      Antti Palosaari <crope@iki.fi>
7117 L:      linux-media@vger.kernel.org
7118 S:      Maintained
7119 W:      https://linuxtv.org
7120 W:      http://palosaari.fi/linux/
7121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7122 T:      git git://linuxtv.org/anttip/media_tree.git
7123 F:      drivers/media/tuners/fc2580*
7124
7125 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7126 M:      Hannes Reinecke <hare@suse.de>
7127 L:      linux-scsi@vger.kernel.org
7128 S:      Supported
7129 W:      www.Open-FCoE.org
7130 F:      drivers/scsi/fcoe/
7131 F:      drivers/scsi/libfc/
7132 F:      include/scsi/fc/
7133 F:      include/scsi/libfc.h
7134 F:      include/scsi/libfcoe.h
7135 F:      include/uapi/scsi/fc/
7136
7137 FILE LOCKING (flock() and fcntl()/lockf())
7138 M:      Jeff Layton <jlayton@kernel.org>
7139 M:      "J. Bruce Fields" <bfields@fieldses.org>
7140 L:      linux-fsdevel@vger.kernel.org
7141 S:      Maintained
7142 F:      fs/fcntl.c
7143 F:      fs/locks.c
7144 F:      include/linux/fcntl.h
7145 F:      include/uapi/linux/fcntl.h
7146
7147 FILESYSTEM DIRECT ACCESS (DAX)
7148 M:      Dan Williams <dan.j.williams@intel.com>
7149 R:      Matthew Wilcox <willy@infradead.org>
7150 R:      Jan Kara <jack@suse.cz>
7151 L:      linux-fsdevel@vger.kernel.org
7152 L:      nvdimm@lists.linux.dev
7153 S:      Supported
7154 F:      fs/dax.c
7155 F:      include/linux/dax.h
7156 F:      include/trace/events/fs_dax.h
7157
7158 FILESYSTEMS (VFS and infrastructure)
7159 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7160 L:      linux-fsdevel@vger.kernel.org
7161 S:      Maintained
7162 F:      fs/*
7163 F:      include/linux/fs.h
7164 F:      include/linux/fs_types.h
7165 F:      include/uapi/linux/fs.h
7166 F:      include/uapi/linux/openat2.h
7167 X:      fs/io-wq.c
7168 X:      fs/io-wq.h
7169 X:      fs/io_uring.c
7170
7171 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7172 M:      Riku Voipio <riku.voipio@iki.fi>
7173 L:      linux-hwmon@vger.kernel.org
7174 S:      Maintained
7175 F:      drivers/hwmon/f75375s.c
7176 F:      include/linux/f75375s.h
7177
7178 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7179 M:      Clemens Ladisch <clemens@ladisch.de>
7180 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7181 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7182 S:      Maintained
7183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7184 F:      include/uapi/sound/firewire.h
7185 F:      sound/firewire/
7186
7187 FIREWIRE MEDIA DRIVERS (firedtv)
7188 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7189 L:      linux-media@vger.kernel.org
7190 L:      linux1394-devel@lists.sourceforge.net
7191 S:      Maintained
7192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7193 F:      drivers/media/firewire/
7194
7195 FIREWIRE SBP-2 TARGET
7196 M:      Chris Boot <bootc@bootc.net>
7197 L:      linux-scsi@vger.kernel.org
7198 L:      target-devel@vger.kernel.org
7199 L:      linux1394-devel@lists.sourceforge.net
7200 S:      Maintained
7201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7202 F:      drivers/target/sbp/
7203
7204 FIREWIRE SUBSYSTEM
7205 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7206 L:      linux1394-devel@lists.sourceforge.net
7207 S:      Maintained
7208 W:      http://ieee1394.wiki.kernel.org/
7209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7210 F:      drivers/firewire/
7211 F:      include/linux/firewire.h
7212 F:      include/uapi/linux/firewire*.h
7213 F:      tools/firewire/
7214
7215 FIRMWARE FRAMEWORK FOR ARMV8-A
7216 M:      Sudeep Holla <sudeep.holla@arm.com>
7217 L:      linux-arm-kernel@lists.infradead.org
7218 S:      Maintained
7219 F:      drivers/firmware/arm_ffa/
7220 F:      include/linux/arm_ffa.h
7221
7222 FIRMWARE LOADER (request_firmware)
7223 M:      Luis Chamberlain <mcgrof@kernel.org>
7224 L:      linux-kernel@vger.kernel.org
7225 S:      Maintained
7226 F:      Documentation/firmware_class/
7227 F:      drivers/base/firmware_loader/
7228 F:      include/linux/firmware.h
7229
7230 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7231 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7232 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7233 S:      Maintained
7234 F:      drivers/block/rsxx/
7235
7236 FLEXTIMER FTM-QUADDEC DRIVER
7237 M:      Patrick Havelange <patrick.havelange@essensium.com>
7238 L:      linux-iio@vger.kernel.org
7239 S:      Maintained
7240 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7241 F:      drivers/counter/ftm-quaddec.c
7242
7243 FLOPPY DRIVER
7244 M:      Denis Efremov <efremov@linux.com>
7245 L:      linux-block@vger.kernel.org
7246 S:      Odd Fixes
7247 F:      drivers/block/floppy.c
7248
7249 FLYSKY FSIA6B RC RECEIVER
7250 M:      Markus Koch <markus@notsyncing.net>
7251 L:      linux-input@vger.kernel.org
7252 S:      Maintained
7253 F:      drivers/input/joystick/fsia6b.c
7254
7255 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7256 M:      Geoffrey D. Bennett <g@b4.vu>
7257 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7258 S:      Maintained
7259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7260 F:      sound/usb/mixer_scarlett_gen2.c
7261
7262 FORCEDETH GIGABIT ETHERNET DRIVER
7263 M:      Rain River <rain.1986.08.12@gmail.com>
7264 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7265 L:      netdev@vger.kernel.org
7266 S:      Maintained
7267 F:      drivers/net/ethernet/nvidia/*
7268
7269 FPGA DFL DRIVERS
7270 M:      Wu Hao <hao.wu@intel.com>
7271 R:      Tom Rix <trix@redhat.com>
7272 L:      linux-fpga@vger.kernel.org
7273 S:      Maintained
7274 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7275 F:      Documentation/fpga/dfl.rst
7276 F:      drivers/fpga/dfl*
7277 F:      drivers/uio/uio_dfl.c
7278 F:      include/linux/dfl.h
7279 F:      include/uapi/linux/fpga-dfl.h
7280
7281 FPGA MANAGER FRAMEWORK
7282 M:      Moritz Fischer <mdf@kernel.org>
7283 R:      Tom Rix <trix@redhat.com>
7284 L:      linux-fpga@vger.kernel.org
7285 S:      Maintained
7286 W:      http://www.rocketboards.org
7287 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7289 F:      Documentation/devicetree/bindings/fpga/
7290 F:      Documentation/driver-api/fpga/
7291 F:      Documentation/fpga/
7292 F:      drivers/fpga/
7293 F:      include/linux/fpga/
7294
7295 FPU EMULATOR
7296 M:      Bill Metzenthen <billm@melbpc.org.au>
7297 S:      Maintained
7298 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7299 F:      arch/x86/math-emu/
7300
7301 FRAMEBUFFER LAYER
7302 L:      dri-devel@lists.freedesktop.org
7303 L:      linux-fbdev@vger.kernel.org
7304 S:      Orphan
7305 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7306 T:      git git://anongit.freedesktop.org/drm/drm-misc
7307 F:      Documentation/fb/
7308 F:      drivers/video/
7309 F:      include/linux/fb.h
7310 F:      include/uapi/linux/fb.h
7311 F:      include/uapi/video/
7312 F:      include/video/
7313
7314 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7315 M:      Horia Geantă <horia.geanta@nxp.com>
7316 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7317 L:      linux-crypto@vger.kernel.org
7318 S:      Maintained
7319 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7320 F:      drivers/crypto/caam/
7321
7322 FREESCALE COLDFIRE M5441X MMC DRIVER
7323 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7324 L:      linux-mmc@vger.kernel.org
7325 S:      Maintained
7326 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7327 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7328
7329 FREESCALE DIU FRAMEBUFFER DRIVER
7330 M:      Timur Tabi <timur@kernel.org>
7331 L:      linux-fbdev@vger.kernel.org
7332 S:      Maintained
7333 F:      drivers/video/fbdev/fsl-diu-fb.*
7334
7335 FREESCALE DMA DRIVER
7336 M:      Li Yang <leoyang.li@nxp.com>
7337 M:      Zhang Wei <zw@zh-kernel.org>
7338 L:      linuxppc-dev@lists.ozlabs.org
7339 S:      Maintained
7340 F:      drivers/dma/fsldma.*
7341
7342 FREESCALE DSPI DRIVER
7343 M:      Vladimir Oltean <olteanv@gmail.com>
7344 L:      linux-spi@vger.kernel.org
7345 S:      Maintained
7346 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7347 F:      drivers/spi/spi-fsl-dspi.c
7348 F:      include/linux/spi/spi-fsl-dspi.h
7349
7350 FREESCALE ENETC ETHERNET DRIVERS
7351 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7352 L:      netdev@vger.kernel.org
7353 S:      Maintained
7354 F:      drivers/net/ethernet/freescale/enetc/
7355
7356 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7357 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7358 L:      netdev@vger.kernel.org
7359 S:      Maintained
7360 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7361 F:      drivers/net/ethernet/freescale/gianfar*
7362
7363 FREESCALE GPMI NAND DRIVER
7364 M:      Han Xu <han.xu@nxp.com>
7365 L:      linux-mtd@lists.infradead.org
7366 S:      Maintained
7367 F:      drivers/mtd/nand/raw/gpmi-nand/*
7368
7369 FREESCALE I2C CPM DRIVER
7370 M:      Jochen Friedrich <jochen@scram.de>
7371 L:      linuxppc-dev@lists.ozlabs.org
7372 L:      linux-i2c@vger.kernel.org
7373 S:      Maintained
7374 F:      drivers/i2c/busses/i2c-cpm.c
7375
7376 FREESCALE IMX / MXC FEC DRIVER
7377 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7378 L:      netdev@vger.kernel.org
7379 S:      Maintained
7380 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7381 F:      drivers/net/ethernet/freescale/fec.h
7382 F:      drivers/net/ethernet/freescale/fec_main.c
7383 F:      drivers/net/ethernet/freescale/fec_ptp.c
7384
7385 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7386 M:      Sascha Hauer <s.hauer@pengutronix.de>
7387 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7388 L:      linux-fbdev@vger.kernel.org
7389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7390 S:      Maintained
7391 F:      drivers/video/fbdev/imxfb.c
7392 F:      include/linux/platform_data/video-imxfb.h
7393
7394 FREESCALE IMX DDR PMU DRIVER
7395 M:      Frank Li <Frank.li@nxp.com>
7396 L:      linux-arm-kernel@lists.infradead.org
7397 S:      Maintained
7398 F:      Documentation/admin-guide/perf/imx-ddr.rst
7399 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7400 F:      drivers/perf/fsl_imx8_ddr_perf.c
7401
7402 FREESCALE IMX I2C DRIVER
7403 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7404 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7405 L:      linux-i2c@vger.kernel.org
7406 S:      Maintained
7407 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7408 F:      drivers/i2c/busses/i2c-imx.c
7409
7410 FREESCALE IMX LPI2C DRIVER
7411 M:      Dong Aisheng <aisheng.dong@nxp.com>
7412 L:      linux-i2c@vger.kernel.org
7413 L:      linux-imx@nxp.com
7414 S:      Maintained
7415 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7416 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7417
7418 FREESCALE MPC I2C DRIVER
7419 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7420 L:      linux-i2c@vger.kernel.org
7421 S:      Maintained
7422 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7423 F:      drivers/i2c/busses/i2c-mpc.c
7424
7425 FREESCALE QORIQ DPAA ETHERNET DRIVER
7426 M:      Madalin Bucur <madalin.bucur@nxp.com>
7427 L:      netdev@vger.kernel.org
7428 S:      Maintained
7429 F:      drivers/net/ethernet/freescale/dpaa
7430
7431 FREESCALE QORIQ DPAA FMAN DRIVER
7432 M:      Madalin Bucur <madalin.bucur@nxp.com>
7433 L:      netdev@vger.kernel.org
7434 S:      Maintained
7435 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7436 F:      drivers/net/ethernet/freescale/fman
7437
7438 FREESCALE QORIQ PTP CLOCK DRIVER
7439 M:      Yangbo Lu <yangbo.lu@nxp.com>
7440 L:      netdev@vger.kernel.org
7441 S:      Maintained
7442 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7443 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7444 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7445 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7446 F:      drivers/ptp/ptp_qoriq.c
7447 F:      drivers/ptp/ptp_qoriq_debugfs.c
7448 F:      include/linux/fsl/ptp_qoriq.h
7449
7450 FREESCALE QUAD SPI DRIVER
7451 M:      Han Xu <han.xu@nxp.com>
7452 L:      linux-spi@vger.kernel.org
7453 S:      Maintained
7454 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7455 F:      drivers/spi/spi-fsl-qspi.c
7456
7457 FREESCALE QUICC ENGINE LIBRARY
7458 M:      Qiang Zhao <qiang.zhao@nxp.com>
7459 L:      linuxppc-dev@lists.ozlabs.org
7460 S:      Maintained
7461 F:      drivers/soc/fsl/qe/
7462 F:      include/soc/fsl/*qe*.h
7463 F:      include/soc/fsl/*ucc*.h
7464
7465 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7466 M:      Li Yang <leoyang.li@nxp.com>
7467 L:      netdev@vger.kernel.org
7468 L:      linuxppc-dev@lists.ozlabs.org
7469 S:      Maintained
7470 F:      drivers/net/ethernet/freescale/ucc_geth*
7471
7472 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7473 M:      Zhao Qiang <qiang.zhao@nxp.com>
7474 L:      netdev@vger.kernel.org
7475 L:      linuxppc-dev@lists.ozlabs.org
7476 S:      Maintained
7477 F:      drivers/net/wan/fsl_ucc_hdlc*
7478
7479 FREESCALE QUICC ENGINE UCC UART DRIVER
7480 M:      Timur Tabi <timur@kernel.org>
7481 L:      linuxppc-dev@lists.ozlabs.org
7482 S:      Maintained
7483 F:      drivers/tty/serial/ucc_uart.c
7484
7485 FREESCALE SOC DRIVERS
7486 M:      Li Yang <leoyang.li@nxp.com>
7487 L:      linuxppc-dev@lists.ozlabs.org
7488 L:      linux-arm-kernel@lists.infradead.org
7489 S:      Maintained
7490 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7491 F:      Documentation/devicetree/bindings/soc/fsl/
7492 F:      drivers/soc/fsl/
7493 F:      include/linux/fsl/
7494
7495 FREESCALE SOC FS_ENET DRIVER
7496 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7497 L:      linuxppc-dev@lists.ozlabs.org
7498 L:      netdev@vger.kernel.org
7499 S:      Maintained
7500 F:      drivers/net/ethernet/freescale/fs_enet/
7501 F:      include/linux/fs_enet_pd.h
7502
7503 FREESCALE SOC SOUND DRIVERS
7504 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7505 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7506 R:      Fabio Estevam <festevam@gmail.com>
7507 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7508 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7509 L:      linuxppc-dev@lists.ozlabs.org
7510 S:      Maintained
7511 F:      sound/soc/fsl/fsl*
7512 F:      sound/soc/fsl/imx*
7513 F:      sound/soc/fsl/mpc8610_hpcd.c
7514
7515 FREESCALE USB PERIPHERAL DRIVERS
7516 M:      Li Yang <leoyang.li@nxp.com>
7517 L:      linux-usb@vger.kernel.org
7518 L:      linuxppc-dev@lists.ozlabs.org
7519 S:      Maintained
7520 F:      drivers/usb/gadget/udc/fsl*
7521
7522 FREESCALE USB PHY DRIVER
7523 M:      Ran Wang <ran.wang_1@nxp.com>
7524 L:      linux-usb@vger.kernel.org
7525 L:      linuxppc-dev@lists.ozlabs.org
7526 S:      Maintained
7527 F:      drivers/usb/phy/phy-fsl-usb*
7528
7529 FREEVXFS FILESYSTEM
7530 M:      Christoph Hellwig <hch@infradead.org>
7531 S:      Maintained
7532 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7533 F:      fs/freevxfs/
7534
7535 FREEZER
7536 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7537 M:      Pavel Machek <pavel@ucw.cz>
7538 L:      linux-pm@vger.kernel.org
7539 S:      Supported
7540 F:      Documentation/power/freezing-of-tasks.rst
7541 F:      include/linux/freezer.h
7542 F:      kernel/freezer.c
7543
7544 FRONTSWAP API
7545 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7546 L:      linux-kernel@vger.kernel.org
7547 S:      Maintained
7548 F:      include/linux/frontswap.h
7549 F:      mm/frontswap.c
7550
7551 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7552 M:      David Howells <dhowells@redhat.com>
7553 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7554 S:      Supported
7555 F:      Documentation/filesystems/caching/
7556 F:      fs/fscache/
7557 F:      include/linux/fscache*.h
7558
7559 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7560 M:      Theodore Y. Ts'o <tytso@mit.edu>
7561 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7562 M:      Eric Biggers <ebiggers@kernel.org>
7563 L:      linux-fscrypt@vger.kernel.org
7564 S:      Supported
7565 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7566 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7567 F:      Documentation/filesystems/fscrypt.rst
7568 F:      fs/crypto/
7569 F:      include/linux/fscrypt*.h
7570 F:      include/uapi/linux/fscrypt.h
7571
7572 FSI SUBSYSTEM
7573 M:      Jeremy Kerr <jk@ozlabs.org>
7574 M:      Joel Stanley <joel@jms.id.au>
7575 R:      Alistar Popple <alistair@popple.id.au>
7576 R:      Eddie James <eajames@linux.ibm.com>
7577 L:      linux-fsi@lists.ozlabs.org
7578 S:      Supported
7579 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7581 F:      drivers/fsi/
7582 F:      include/linux/fsi*.h
7583 F:      include/trace/events/fsi*.h
7584
7585 FSI-ATTACHED I2C DRIVER
7586 M:      Eddie James <eajames@linux.ibm.com>
7587 L:      linux-i2c@vger.kernel.org
7588 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7589 S:      Maintained
7590 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7591 F:      drivers/i2c/busses/i2c-fsi.c
7592
7593 FSI-ATTACHED SPI DRIVER
7594 M:      Eddie James <eajames@linux.ibm.com>
7595 L:      linux-spi@vger.kernel.org
7596 S:      Maintained
7597 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7598 F:      drivers/spi/spi-fsi.c
7599
7600 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7601 M:      Jan Kara <jack@suse.cz>
7602 R:      Amir Goldstein <amir73il@gmail.com>
7603 L:      linux-fsdevel@vger.kernel.org
7604 S:      Maintained
7605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7606 F:      fs/notify/
7607 F:      include/linux/fsnotify*.h
7608
7609 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7610 M:      Eric Biggers <ebiggers@kernel.org>
7611 M:      Theodore Y. Ts'o <tytso@mit.edu>
7612 L:      linux-fscrypt@vger.kernel.org
7613 S:      Supported
7614 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7615 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7616 F:      Documentation/filesystems/fsverity.rst
7617 F:      fs/verity/
7618 F:      include/linux/fsverity.h
7619 F:      include/uapi/linux/fsverity.h
7620
7621 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7622 M:      Michael Zaidman <michael.zaidman@gmail.com>
7623 L:      linux-i2c@vger.kernel.org
7624 L:      linux-input@vger.kernel.org
7625 S:      Maintained
7626 F:      drivers/hid/hid-ft260.c
7627
7628 FUJITSU LAPTOP EXTRAS
7629 M:      Jonathan Woithe <jwoithe@just42.net>
7630 L:      platform-driver-x86@vger.kernel.org
7631 S:      Maintained
7632 F:      drivers/platform/x86/fujitsu-laptop.c
7633
7634 FUJITSU M-5MO LS CAMERA ISP DRIVER
7635 M:      Kyungmin Park <kyungmin.park@samsung.com>
7636 M:      Heungjun Kim <riverful.kim@samsung.com>
7637 L:      linux-media@vger.kernel.org
7638 S:      Maintained
7639 F:      drivers/media/i2c/m5mols/
7640 F:      include/media/i2c/m5mols.h
7641
7642 FUJITSU TABLET EXTRAS
7643 M:      Robert Gerlach <khnz@gmx.de>
7644 L:      platform-driver-x86@vger.kernel.org
7645 S:      Maintained
7646 F:      drivers/platform/x86/fujitsu-tablet.c
7647
7648 FUSE: FILESYSTEM IN USERSPACE
7649 M:      Miklos Szeredi <miklos@szeredi.hu>
7650 L:      linux-fsdevel@vger.kernel.org
7651 S:      Maintained
7652 W:      https://github.com/libfuse/
7653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7654 F:      Documentation/filesystems/fuse.rst
7655 F:      fs/fuse/
7656 F:      include/uapi/linux/fuse.h
7657
7658 FUTEX SUBSYSTEM
7659 M:      Thomas Gleixner <tglx@linutronix.de>
7660 M:      Ingo Molnar <mingo@redhat.com>
7661 R:      Peter Zijlstra <peterz@infradead.org>
7662 R:      Darren Hart <dvhart@infradead.org>
7663 R:      Davidlohr Bueso <dave@stgolabs.net>
7664 L:      linux-kernel@vger.kernel.org
7665 S:      Maintained
7666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7667 F:      Documentation/locking/*futex*
7668 F:      include/asm-generic/futex.h
7669 F:      include/linux/futex.h
7670 F:      include/uapi/linux/futex.h
7671 F:      kernel/futex.c
7672 F:      tools/perf/bench/futex*
7673 F:      tools/testing/selftests/futex/
7674
7675 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7676 M:      Tim Harvey <tharvey@gateworks.com>
7677 M:      Robert Jones <rjones@gateworks.com>
7678 S:      Maintained
7679 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7680 F:      drivers/mfd/gateworks-gsc.c
7681 F:      include/linux/mfd/gsc.h
7682 F:      Documentation/hwmon/gsc-hwmon.rst
7683 F:      drivers/hwmon/gsc-hwmon.c
7684 F:      include/linux/platform_data/gsc_hwmon.h
7685
7686 GCC PLUGINS
7687 M:      Kees Cook <keescook@chromium.org>
7688 L:      linux-hardening@vger.kernel.org
7689 S:      Maintained
7690 F:      Documentation/kbuild/gcc-plugins.rst
7691 F:      scripts/Makefile.gcc-plugins
7692 F:      scripts/gcc-plugins/
7693
7694 GCOV BASED KERNEL PROFILING
7695 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7696 S:      Maintained
7697 F:      Documentation/dev-tools/gcov.rst
7698 F:      kernel/gcov/
7699
7700 GDB KERNEL DEBUGGING HELPER SCRIPTS
7701 M:      Jan Kiszka <jan.kiszka@siemens.com>
7702 M:      Kieran Bingham <kbingham@kernel.org>
7703 S:      Supported
7704 F:      scripts/gdb/
7705
7706 GEMINI CRYPTO DRIVER
7707 M:      Corentin Labbe <clabbe@baylibre.com>
7708 L:      linux-crypto@vger.kernel.org
7709 S:      Maintained
7710 F:      drivers/crypto/gemini/
7711
7712 GEMTEK FM RADIO RECEIVER DRIVER
7713 M:      Hans Verkuil <hverkuil@xs4all.nl>
7714 L:      linux-media@vger.kernel.org
7715 S:      Maintained
7716 W:      https://linuxtv.org
7717 T:      git git://linuxtv.org/media_tree.git
7718 F:      drivers/media/radio/radio-gemtek*
7719
7720 GENERIC ARCHITECTURE TOPOLOGY
7721 M:      Sudeep Holla <sudeep.holla@arm.com>
7722 L:      linux-kernel@vger.kernel.org
7723 S:      Maintained
7724 F:      drivers/base/arch_topology.c
7725 F:      include/linux/arch_topology.h
7726
7727 GENERIC ENTRY CODE
7728 M:      Thomas Gleixner <tglx@linutronix.de>
7729 M:      Peter Zijlstra <peterz@infradead.org>
7730 M:      Andy Lutomirski <luto@kernel.org>
7731 L:      linux-kernel@vger.kernel.org
7732 S:      Maintained
7733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7734 F:      include/linux/entry-common.h
7735 F:      include/linux/entry-kvm.h
7736 F:      kernel/entry/
7737
7738 GENERIC GPIO I2C DRIVER
7739 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7740 S:      Supported
7741 F:      drivers/i2c/busses/i2c-gpio.c
7742 F:      include/linux/platform_data/i2c-gpio.h
7743
7744 GENERIC GPIO I2C MULTIPLEXER DRIVER
7745 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7746 L:      linux-i2c@vger.kernel.org
7747 S:      Supported
7748 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7749 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7750 F:      include/linux/platform_data/i2c-mux-gpio.h
7751
7752 GENERIC HDLC (WAN) DRIVERS
7753 M:      Krzysztof Halasa <khc@pm.waw.pl>
7754 S:      Maintained
7755 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7756 F:      drivers/net/wan/c101.c
7757 F:      drivers/net/wan/hd6457*
7758 F:      drivers/net/wan/hdlc*
7759 F:      drivers/net/wan/n2.c
7760 F:      drivers/net/wan/pc300too.c
7761 F:      drivers/net/wan/pci200syn.c
7762 F:      drivers/net/wan/wanxl*
7763
7764 GENERIC INCLUDE/ASM HEADER FILES
7765 M:      Arnd Bergmann <arnd@arndb.de>
7766 L:      linux-arch@vger.kernel.org
7767 S:      Maintained
7768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7769 F:      include/asm-generic/
7770 F:      include/uapi/asm-generic/
7771
7772 GENERIC PHY FRAMEWORK
7773 M:      Kishon Vijay Abraham I <kishon@ti.com>
7774 M:      Vinod Koul <vkoul@kernel.org>
7775 L:      linux-phy@lists.infradead.org
7776 S:      Supported
7777 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7779 F:      Documentation/devicetree/bindings/phy/
7780 F:      drivers/phy/
7781 F:      include/linux/phy/
7782
7783 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7784 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7785 S:      Supported
7786 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7787
7788 GENERIC PM DOMAINS
7789 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7790 M:      Kevin Hilman <khilman@kernel.org>
7791 M:      Ulf Hansson <ulf.hansson@linaro.org>
7792 L:      linux-pm@vger.kernel.org
7793 S:      Supported
7794 F:      Documentation/devicetree/bindings/power/power?domain*
7795 F:      drivers/base/power/domain*.c
7796 F:      include/linux/pm_domain.h
7797
7798 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7799 M:      Eugen Hristev <eugen.hristev@microchip.com>
7800 L:      linux-input@vger.kernel.org
7801 S:      Maintained
7802 F:      drivers/input/touchscreen/resistive-adc-touch.c
7803
7804 GENERIC STRING LIBRARY
7805 R:      Andy Shevchenko <andy@kernel.org>
7806 S:      Maintained
7807 F:      lib/string.c
7808 F:      lib/string_helpers.c
7809 F:      lib/test_string.c
7810 F:      lib/test-string_helpers.c
7811
7812 GENERIC UIO DRIVER FOR PCI DEVICES
7813 M:      "Michael S. Tsirkin" <mst@redhat.com>
7814 L:      kvm@vger.kernel.org
7815 S:      Supported
7816 F:      drivers/uio/uio_pci_generic.c
7817
7818 GENERIC VDSO LIBRARY
7819 M:      Andy Lutomirski <luto@kernel.org>
7820 M:      Thomas Gleixner <tglx@linutronix.de>
7821 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7822 L:      linux-kernel@vger.kernel.org
7823 S:      Maintained
7824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7825 F:      include/asm-generic/vdso/vsyscall.h
7826 F:      include/vdso/
7827 F:      kernel/time/vsyscall.c
7828 F:      lib/vdso/
7829
7830 GENWQE (IBM Generic Workqueue Card)
7831 M:      Frank Haverkamp <haver@linux.ibm.com>
7832 S:      Supported
7833 F:      drivers/misc/genwqe/
7834
7835 GET_MAINTAINER SCRIPT
7836 M:      Joe Perches <joe@perches.com>
7837 S:      Maintained
7838 F:      scripts/get_maintainer.pl
7839
7840 GFS2 FILE SYSTEM
7841 M:      Bob Peterson <rpeterso@redhat.com>
7842 M:      Andreas Gruenbacher <agruenba@redhat.com>
7843 L:      cluster-devel@redhat.com
7844 S:      Supported
7845 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7847 F:      Documentation/filesystems/gfs2*
7848 F:      fs/gfs2/
7849 F:      include/uapi/linux/gfs2_ondisk.h
7850
7851 GIGABYTE WMI DRIVER
7852 M:      Thomas Weißschuh <thomas@weissschuh.net>
7853 L:      platform-driver-x86@vger.kernel.org
7854 S:      Maintained
7855 F:      drivers/platform/x86/gigabyte-wmi.c
7856
7857 GNSS SUBSYSTEM
7858 M:      Johan Hovold <johan@kernel.org>
7859 S:      Maintained
7860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7861 F:      Documentation/ABI/testing/sysfs-class-gnss
7862 F:      Documentation/devicetree/bindings/gnss/
7863 F:      drivers/gnss/
7864 F:      include/linux/gnss.h
7865
7866 GO7007 MPEG CODEC
7867 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7868 L:      linux-media@vger.kernel.org
7869 S:      Maintained
7870 F:      drivers/media/usb/go7007/
7871
7872 GOODIX TOUCHSCREEN
7873 M:      Bastien Nocera <hadess@hadess.net>
7874 L:      linux-input@vger.kernel.org
7875 S:      Maintained
7876 F:      drivers/input/touchscreen/goodix.c
7877
7878 GOOGLE ETHERNET DRIVERS
7879 M:      Jeroen de Borst <jeroendb@google.com>
7880 R:      Catherine Sullivan <csully@google.com>
7881 R:      David Awogbemila <awogbemila@google.com>
7882 L:      netdev@vger.kernel.org
7883 S:      Supported
7884 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7885 F:      drivers/net/ethernet/google
7886
7887 GPD POCKET FAN DRIVER
7888 M:      Hans de Goede <hdegoede@redhat.com>
7889 L:      platform-driver-x86@vger.kernel.org
7890 S:      Maintained
7891 F:      drivers/platform/x86/gpd-pocket-fan.c
7892
7893 GPIO ACPI SUPPORT
7894 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7895 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7896 L:      linux-gpio@vger.kernel.org
7897 L:      linux-acpi@vger.kernel.org
7898 S:      Maintained
7899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7900 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7901 F:      drivers/gpio/gpiolib-acpi.c
7902 F:      drivers/gpio/gpiolib-acpi.h
7903
7904 GPIO AGGREGATOR
7905 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7906 L:      linux-gpio@vger.kernel.org
7907 S:      Supported
7908 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7909 F:      drivers/gpio/gpio-aggregator.c
7910
7911 GPIO IR Transmitter
7912 M:      Sean Young <sean@mess.org>
7913 L:      linux-media@vger.kernel.org
7914 S:      Maintained
7915 F:      drivers/media/rc/gpio-ir-tx.c
7916
7917 GPIO MOCKUP DRIVER
7918 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7919 L:      linux-gpio@vger.kernel.org
7920 S:      Maintained
7921 F:      drivers/gpio/gpio-mockup.c
7922 F:      tools/testing/selftests/gpio/
7923
7924 GPIO REGMAP
7925 R:      Michael Walle <michael@walle.cc>
7926 S:      Maintained
7927 F:      drivers/gpio/gpio-regmap.c
7928 F:      include/linux/gpio/regmap.h
7929
7930 GPIO SUBSYSTEM
7931 M:      Linus Walleij <linus.walleij@linaro.org>
7932 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7933 L:      linux-gpio@vger.kernel.org
7934 S:      Maintained
7935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7936 F:      Documentation/ABI/obsolete/sysfs-gpio
7937 F:      Documentation/ABI/testing/gpio-cdev
7938 F:      Documentation/admin-guide/gpio/
7939 F:      Documentation/devicetree/bindings/gpio/
7940 F:      Documentation/driver-api/gpio/
7941 F:      drivers/gpio/
7942 F:      include/asm-generic/gpio.h
7943 F:      include/linux/gpio.h
7944 F:      include/linux/gpio/
7945 F:      include/linux/of_gpio.h
7946 F:      include/uapi/linux/gpio.h
7947 F:      tools/gpio/
7948
7949 GRE DEMULTIPLEXER DRIVER
7950 M:      Dmitry Kozlov <xeb@mail.ru>
7951 L:      netdev@vger.kernel.org
7952 S:      Maintained
7953 F:      include/net/gre.h
7954 F:      net/ipv4/gre_demux.c
7955 F:      net/ipv4/gre_offload.c
7956
7957 GRETH 10/100/1G Ethernet MAC device driver
7958 M:      Andreas Larsson <andreas@gaisler.com>
7959 L:      netdev@vger.kernel.org
7960 S:      Maintained
7961 F:      drivers/net/ethernet/aeroflex/
7962
7963 GREYBUS AUDIO PROTOCOLS DRIVERS
7964 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7965 M:      Mark Greer <mgreer@animalcreek.com>
7966 S:      Maintained
7967 F:      drivers/staging/greybus/audio_apbridgea.c
7968 F:      drivers/staging/greybus/audio_apbridgea.h
7969 F:      drivers/staging/greybus/audio_codec.c
7970 F:      drivers/staging/greybus/audio_codec.h
7971 F:      drivers/staging/greybus/audio_gb.c
7972 F:      drivers/staging/greybus/audio_manager.c
7973 F:      drivers/staging/greybus/audio_manager.h
7974 F:      drivers/staging/greybus/audio_manager_module.c
7975 F:      drivers/staging/greybus/audio_manager_private.h
7976 F:      drivers/staging/greybus/audio_manager_sysfs.c
7977 F:      drivers/staging/greybus/audio_module.c
7978 F:      drivers/staging/greybus/audio_topology.c
7979
7980 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7981 M:      Viresh Kumar <vireshk@kernel.org>
7982 S:      Maintained
7983 F:      drivers/staging/greybus/authentication.c
7984 F:      drivers/staging/greybus/bootrom.c
7985 F:      drivers/staging/greybus/firmware.h
7986 F:      drivers/staging/greybus/fw-core.c
7987 F:      drivers/staging/greybus/fw-download.c
7988 F:      drivers/staging/greybus/fw-management.c
7989 F:      drivers/staging/greybus/greybus_authentication.h
7990 F:      drivers/staging/greybus/greybus_firmware.h
7991 F:      drivers/staging/greybus/hid.c
7992 F:      drivers/staging/greybus/i2c.c
7993 F:      drivers/staging/greybus/spi.c
7994 F:      drivers/staging/greybus/spilib.c
7995 F:      drivers/staging/greybus/spilib.h
7996
7997 GREYBUS LOOPBACK DRIVER
7998 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7999 S:      Maintained
8000 F:      drivers/staging/greybus/loopback.c
8001
8002 GREYBUS PLATFORM DRIVERS
8003 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8004 S:      Maintained
8005 F:      drivers/staging/greybus/arche-apb-ctrl.c
8006 F:      drivers/staging/greybus/arche-platform.c
8007 F:      drivers/staging/greybus/arche_platform.h
8008
8009 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8010 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8011 S:      Maintained
8012 F:      drivers/staging/greybus/gpio.c
8013 F:      drivers/staging/greybus/light.c
8014 F:      drivers/staging/greybus/power_supply.c
8015 F:      drivers/staging/greybus/sdio.c
8016 F:      drivers/staging/greybus/spi.c
8017 F:      drivers/staging/greybus/spilib.c
8018
8019 GREYBUS SUBSYSTEM
8020 M:      Johan Hovold <johan@kernel.org>
8021 M:      Alex Elder <elder@kernel.org>
8022 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8023 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8024 S:      Maintained
8025 F:      drivers/greybus/
8026 F:      drivers/staging/greybus/
8027 F:      include/linux/greybus.h
8028 F:      include/linux/greybus/
8029
8030 GREYBUS UART PROTOCOLS DRIVERS
8031 M:      David Lin <dtwlin@gmail.com>
8032 S:      Maintained
8033 F:      drivers/staging/greybus/log.c
8034 F:      drivers/staging/greybus/uart.c
8035
8036 GS1662 VIDEO SERIALIZER
8037 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8038 L:      linux-media@vger.kernel.org
8039 S:      Maintained
8040 T:      git git://linuxtv.org/media_tree.git
8041 F:      drivers/media/spi/gs1662.c
8042
8043 GSPCA FINEPIX SUBDRIVER
8044 M:      Frank Zago <frank@zago.net>
8045 L:      linux-media@vger.kernel.org
8046 S:      Maintained
8047 T:      git git://linuxtv.org/media_tree.git
8048 F:      drivers/media/usb/gspca/finepix.c
8049
8050 GSPCA GL860 SUBDRIVER
8051 M:      Olivier Lorin <o.lorin@laposte.net>
8052 L:      linux-media@vger.kernel.org
8053 S:      Maintained
8054 T:      git git://linuxtv.org/media_tree.git
8055 F:      drivers/media/usb/gspca/gl860/
8056
8057 GSPCA M5602 SUBDRIVER
8058 M:      Erik Andren <erik.andren@gmail.com>
8059 L:      linux-media@vger.kernel.org
8060 S:      Maintained
8061 T:      git git://linuxtv.org/media_tree.git
8062 F:      drivers/media/usb/gspca/m5602/
8063
8064 GSPCA PAC207 SONIXB SUBDRIVER
8065 M:      Hans Verkuil <hverkuil@xs4all.nl>
8066 L:      linux-media@vger.kernel.org
8067 S:      Odd Fixes
8068 T:      git git://linuxtv.org/media_tree.git
8069 F:      drivers/media/usb/gspca/pac207.c
8070
8071 GSPCA SN9C20X SUBDRIVER
8072 M:      Brian Johnson <brijohn@gmail.com>
8073 L:      linux-media@vger.kernel.org
8074 S:      Maintained
8075 T:      git git://linuxtv.org/media_tree.git
8076 F:      drivers/media/usb/gspca/sn9c20x.c
8077
8078 GSPCA T613 SUBDRIVER
8079 M:      Leandro Costantino <lcostantino@gmail.com>
8080 L:      linux-media@vger.kernel.org
8081 S:      Maintained
8082 T:      git git://linuxtv.org/media_tree.git
8083 F:      drivers/media/usb/gspca/t613.c
8084
8085 GSPCA USB WEBCAM DRIVER
8086 M:      Hans Verkuil <hverkuil@xs4all.nl>
8087 L:      linux-media@vger.kernel.org
8088 S:      Odd Fixes
8089 T:      git git://linuxtv.org/media_tree.git
8090 F:      drivers/media/usb/gspca/
8091
8092 GTP (GPRS Tunneling Protocol)
8093 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8094 M:      Harald Welte <laforge@gnumonks.org>
8095 L:      osmocom-net-gprs@lists.osmocom.org
8096 S:      Maintained
8097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8098 F:      drivers/net/gtp.c
8099
8100 GUID PARTITION TABLE (GPT)
8101 M:      Davidlohr Bueso <dave@stgolabs.net>
8102 L:      linux-efi@vger.kernel.org
8103 S:      Maintained
8104 F:      block/partitions/efi.*
8105
8106 H8/300 ARCHITECTURE
8107 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8108 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8109 S:      Maintained
8110 W:      http://uclinux-h8.sourceforge.jp
8111 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8112 F:      arch/h8300/
8113 F:      drivers/clk/h8300/
8114 F:      drivers/clocksource/h8300_*.c
8115 F:      drivers/irqchip/irq-renesas-h8*.c
8116
8117 HABANALABS PCI DRIVER
8118 M:      Oded Gabbay <ogabbay@kernel.org>
8119 S:      Supported
8120 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8121 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8122 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8123 F:      drivers/misc/habanalabs/
8124 F:      include/uapi/misc/habanalabs.h
8125
8126 HACKRF MEDIA DRIVER
8127 M:      Antti Palosaari <crope@iki.fi>
8128 L:      linux-media@vger.kernel.org
8129 S:      Maintained
8130 W:      https://linuxtv.org
8131 W:      http://palosaari.fi/linux/
8132 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8133 T:      git git://linuxtv.org/anttip/media_tree.git
8134 F:      drivers/media/usb/hackrf/
8135
8136 HANTRO VPU CODEC DRIVER
8137 M:      Ezequiel Garcia <ezequiel@collabora.com>
8138 M:      Philipp Zabel <p.zabel@pengutronix.de>
8139 L:      linux-media@vger.kernel.org
8140 L:      linux-rockchip@lists.infradead.org
8141 S:      Maintained
8142 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8143 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8144 F:      drivers/staging/media/hantro/
8145
8146 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8147 M:      Frank Seidel <frank@f-seidel.de>
8148 L:      platform-driver-x86@vger.kernel.org
8149 S:      Maintained
8150 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8151 F:      drivers/platform/x86/hdaps.c
8152
8153 HARDWARE MONITORING
8154 M:      Jean Delvare <jdelvare@suse.com>
8155 M:      Guenter Roeck <linux@roeck-us.net>
8156 L:      linux-hwmon@vger.kernel.org
8157 S:      Maintained
8158 W:      http://hwmon.wiki.kernel.org/
8159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8160 F:      Documentation/devicetree/bindings/hwmon/
8161 F:      Documentation/hwmon/
8162 F:      drivers/hwmon/
8163 F:      include/linux/hwmon*.h
8164 F:      include/trace/events/hwmon*.h
8165 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8166
8167 HARDWARE RANDOM NUMBER GENERATOR CORE
8168 M:      Matt Mackall <mpm@selenic.com>
8169 M:      Herbert Xu <herbert@gondor.apana.org.au>
8170 L:      linux-crypto@vger.kernel.org
8171 S:      Odd fixes
8172 F:      Documentation/admin-guide/hw_random.rst
8173 F:      Documentation/devicetree/bindings/rng/
8174 F:      drivers/char/hw_random/
8175 F:      include/linux/hw_random.h
8176
8177 HARDWARE SPINLOCK CORE
8178 M:      Ohad Ben-Cohen <ohad@wizery.com>
8179 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8180 R:      Baolin Wang <baolin.wang7@gmail.com>
8181 L:      linux-remoteproc@vger.kernel.org
8182 S:      Maintained
8183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8184 F:      Documentation/devicetree/bindings/hwlock/
8185 F:      Documentation/locking/hwspinlock.rst
8186 F:      drivers/hwspinlock/
8187 F:      include/linux/hwspinlock.h
8188
8189 HARDWARE TRACING FACILITIES
8190 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8191 S:      Maintained
8192 F:      drivers/hwtracing/
8193
8194 HARMONY SOUND DRIVER
8195 L:      linux-parisc@vger.kernel.org
8196 S:      Maintained
8197 F:      sound/parisc/harmony.*
8198
8199 HDPVR USB VIDEO ENCODER DRIVER
8200 M:      Hans Verkuil <hverkuil@xs4all.nl>
8201 L:      linux-media@vger.kernel.org
8202 S:      Odd Fixes
8203 W:      https://linuxtv.org
8204 T:      git git://linuxtv.org/media_tree.git
8205 F:      drivers/media/usb/hdpvr/
8206
8207 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8208 M:      Matt Hsiao <matt.hsiao@hpe.com>
8209 S:      Supported
8210 F:      drivers/misc/hpilo.[ch]
8211
8212 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8213 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8214 S:      Supported
8215 F:      Documentation/watchdog/hpwdt.rst
8216 F:      drivers/watchdog/hpwdt.c
8217
8218 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8219 M:      Don Brace <don.brace@microchip.com>
8220 L:      storagedev@microchip.com
8221 L:      linux-scsi@vger.kernel.org
8222 S:      Supported
8223 F:      Documentation/scsi/hpsa.rst
8224 F:      drivers/scsi/hpsa*.[ch]
8225 F:      include/linux/cciss*.h
8226 F:      include/uapi/linux/cciss*.h
8227
8228 HFI1 DRIVER
8229 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8230 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8231 L:      linux-rdma@vger.kernel.org
8232 S:      Supported
8233 F:      drivers/infiniband/hw/hfi1
8234
8235 HFS FILESYSTEM
8236 L:      linux-fsdevel@vger.kernel.org
8237 S:      Orphan
8238 F:      Documentation/filesystems/hfs.rst
8239 F:      fs/hfs/
8240
8241 HFSPLUS FILESYSTEM
8242 L:      linux-fsdevel@vger.kernel.org
8243 S:      Orphan
8244 F:      Documentation/filesystems/hfsplus.rst
8245 F:      fs/hfsplus/
8246
8247 HGA FRAMEBUFFER DRIVER
8248 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8249 L:      linux-nvidia@lists.surfsouth.com
8250 S:      Maintained
8251 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8252 F:      drivers/video/fbdev/hgafb.c
8253
8254 HIBERNATION (aka Software Suspend, aka swsusp)
8255 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8256 M:      Pavel Machek <pavel@ucw.cz>
8257 L:      linux-pm@vger.kernel.org
8258 S:      Supported
8259 B:      https://bugzilla.kernel.org
8260 F:      arch/*/include/asm/suspend*.h
8261 F:      arch/x86/power/
8262 F:      drivers/base/power/
8263 F:      include/linux/freezer.h
8264 F:      include/linux/pm.h
8265 F:      include/linux/suspend.h
8266 F:      kernel/power/
8267
8268 HID CORE LAYER
8269 M:      Jiri Kosina <jikos@kernel.org>
8270 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8271 L:      linux-input@vger.kernel.org
8272 S:      Maintained
8273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8274 F:      drivers/hid/
8275 F:      include/linux/hid*
8276 F:      include/uapi/linux/hid*
8277
8278 HID PLAYSTATION DRIVER
8279 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8280 L:      linux-input@vger.kernel.org
8281 S:      Supported
8282 F:      drivers/hid/hid-playstation.c
8283
8284 HID SENSOR HUB DRIVERS
8285 M:      Jiri Kosina <jikos@kernel.org>
8286 M:      Jonathan Cameron <jic23@kernel.org>
8287 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8288 L:      linux-input@vger.kernel.org
8289 L:      linux-iio@vger.kernel.org
8290 S:      Maintained
8291 F:      Documentation/hid/hid-sensor*
8292 F:      drivers/hid/hid-sensor-*
8293 F:      drivers/iio/*/hid-*
8294 F:      include/linux/hid-sensor-*
8295
8296 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8297 M:      Thomas Gleixner <tglx@linutronix.de>
8298 L:      linux-kernel@vger.kernel.org
8299 S:      Maintained
8300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8301 F:      Documentation/timers/
8302 F:      include/linux/clockchips.h
8303 F:      include/linux/hrtimer.h
8304 F:      kernel/time/clockevents.c
8305 F:      kernel/time/hrtimer.c
8306 F:      kernel/time/timer_*.c
8307
8308 HIGH-SPEED SCC DRIVER FOR AX.25
8309 L:      linux-hams@vger.kernel.org
8310 S:      Orphan
8311 F:      drivers/net/hamradio/dmascc.c
8312 F:      drivers/net/hamradio/scc.c
8313
8314 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8315 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8316 S:      Supported
8317 W:      http://www.highpoint-tech.com
8318 F:      Documentation/scsi/hptiop.rst
8319 F:      drivers/scsi/hptiop.c
8320
8321 HIPPI
8322 M:      Jes Sorensen <jes@trained-monkey.org>
8323 L:      linux-hippi@sunsite.dk
8324 S:      Maintained
8325 F:      drivers/net/hippi/
8326 F:      include/linux/hippidevice.h
8327 F:      include/uapi/linux/if_hippi.h
8328 F:      net/802/hippi.c
8329
8330 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8331 M:      Kurt Kanzenbach <kurt@linutronix.de>
8332 L:      netdev@vger.kernel.org
8333 S:      Maintained
8334 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8335 F:      drivers/net/dsa/hirschmann/*
8336 F:      include/linux/platform_data/hirschmann-hellcreek.h
8337 F:      net/dsa/tag_hellcreek.c
8338
8339 HISILICON DMA DRIVER
8340 M:      Zhou Wang <wangzhou1@hisilicon.com>
8341 L:      dmaengine@vger.kernel.org
8342 S:      Maintained
8343 F:      drivers/dma/hisi_dma.c
8344
8345 HISILICON GPIO DRIVER
8346 M:      Luo Jiaxing <luojiaxing@huawei.com>
8347 L:      linux-gpio@vger.kernel.org
8348 S:      Maintained
8349 F:      drivers/gpio/gpio-hisi.c
8350
8351 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8352 M:      Zaibo Xu <xuzaibo@huawei.com>
8353 L:      linux-crypto@vger.kernel.org
8354 S:      Maintained
8355 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8356 F:      drivers/crypto/hisilicon/hpre/hpre.h
8357 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8358 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8359
8360 HISILICON I2C CONTROLLER DRIVER
8361 M:      Yicong Yang <yangyicong@hisilicon.com>
8362 L:      linux-i2c@vger.kernel.org
8363 S:      Maintained
8364 W:      https://www.hisilicon.com
8365 F:      drivers/i2c/busses/i2c-hisi.c
8366
8367 HISILICON LPC BUS DRIVER
8368 M:      john.garry@huawei.com
8369 S:      Maintained
8370 W:      http://www.hisilicon.com
8371 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8372 F:      drivers/bus/hisi_lpc.c
8373
8374 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8375 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8376 M:      Salil Mehta <salil.mehta@huawei.com>
8377 L:      netdev@vger.kernel.org
8378 S:      Maintained
8379 W:      http://www.hisilicon.com
8380 F:      drivers/net/ethernet/hisilicon/hns3/
8381
8382 HISILICON NETWORK SUBSYSTEM DRIVER
8383 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8384 M:      Salil Mehta <salil.mehta@huawei.com>
8385 L:      netdev@vger.kernel.org
8386 S:      Maintained
8387 W:      http://www.hisilicon.com
8388 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8389 F:      drivers/net/ethernet/hisilicon/
8390
8391 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8392 M:      John Stultz <john.stultz@linaro.org>
8393 L:      linux-kernel@vger.kernel.org
8394 S:      Maintained
8395 F:      drivers/misc/hisi_hikey_usb.c
8396 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8397
8398 HISILICON PMU DRIVER
8399 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8400 S:      Supported
8401 W:      http://www.hisilicon.com
8402 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8403 F:      drivers/perf/hisilicon
8404
8405 HISILICON QM AND ZIP Controller DRIVER
8406 M:      Zhou Wang <wangzhou1@hisilicon.com>
8407 L:      linux-crypto@vger.kernel.org
8408 S:      Maintained
8409 F:      Documentation/ABI/testing/debugfs-hisi-zip
8410 F:      drivers/crypto/hisilicon/qm.c
8411 F:      drivers/crypto/hisilicon/qm.h
8412 F:      drivers/crypto/hisilicon/sgl.c
8413 F:      drivers/crypto/hisilicon/zip/
8414
8415 HISILICON ROCE DRIVER
8416 M:      Lijun Ou <oulijun@huawei.com>
8417 M:      Weihang Li <liweihang@huawei.com>
8418 L:      linux-rdma@vger.kernel.org
8419 S:      Maintained
8420 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8421 F:      drivers/infiniband/hw/hns/
8422
8423 HISILICON SAS Controller
8424 M:      John Garry <john.garry@huawei.com>
8425 S:      Supported
8426 W:      http://www.hisilicon.com
8427 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8428 F:      drivers/scsi/hisi_sas/
8429
8430 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8431 M:      Zaibo Xu <xuzaibo@huawei.com>
8432 L:      linux-crypto@vger.kernel.org
8433 S:      Maintained
8434 F:      Documentation/ABI/testing/debugfs-hisi-sec
8435 F:      drivers/crypto/hisilicon/sec2/sec.h
8436 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8437 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8438 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8439
8440 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8441 M:      Jay Fang <f.fangjian@huawei.com>
8442 L:      linux-spi@vger.kernel.org
8443 S:      Maintained
8444 W:      http://www.hisilicon.com
8445 F:      drivers/spi/spi-hisi-kunpeng.c
8446
8447 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8448 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8449 L:      linux-kernel@vger.kernel.org
8450 S:      Maintained
8451 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8452 F:      drivers/spmi/hisi-spmi-controller.c
8453
8454 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8455 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8456 S:      Maintained
8457 F:      drivers/staging/hikey9xx/
8458
8459 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8460 M:      Zaibo Xu <xuzaibo@huawei.com>
8461 S:      Maintained
8462 F:      drivers/crypto/hisilicon/trng/trng.c
8463
8464 HISILICON V3XX SPI NOR FLASH Controller Driver
8465 M:      John Garry <john.garry@huawei.com>
8466 S:      Maintained
8467 W:      http://www.hisilicon.com
8468 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8469
8470 HMM - Heterogeneous Memory Management
8471 M:      Jérôme Glisse <jglisse@redhat.com>
8472 L:      linux-mm@kvack.org
8473 S:      Maintained
8474 F:      Documentation/vm/hmm.rst
8475 F:      include/linux/hmm*
8476 F:      lib/test_hmm*
8477 F:      mm/hmm*
8478 F:      tools/testing/selftests/vm/*hmm*
8479
8480 HOST AP DRIVER
8481 M:      Jouni Malinen <j@w1.fi>
8482 L:      linux-wireless@vger.kernel.org
8483 S:      Obsolete
8484 W:      http://w1.fi/hostap-driver.html
8485 F:      drivers/net/wireless/intersil/hostap/
8486
8487 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8488 L:      platform-driver-x86@vger.kernel.org
8489 S:      Orphan
8490 F:      drivers/platform/x86/tc1100-wmi.c
8491
8492 HPET:   High Precision Event Timers driver
8493 M:      Clemens Ladisch <clemens@ladisch.de>
8494 S:      Maintained
8495 F:      Documentation/timers/hpet.rst
8496 F:      drivers/char/hpet.c
8497 F:      include/linux/hpet.h
8498 F:      include/uapi/linux/hpet.h
8499
8500 HPET:   x86
8501 S:      Orphan
8502 F:      arch/x86/include/asm/hpet.h
8503 F:      arch/x86/kernel/hpet.c
8504
8505 HPFS FILESYSTEM
8506 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8507 S:      Maintained
8508 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8509 F:      fs/hpfs/
8510
8511 HSI SUBSYSTEM
8512 M:      Sebastian Reichel <sre@kernel.org>
8513 S:      Maintained
8514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8515 F:      Documentation/ABI/testing/sysfs-bus-hsi
8516 F:      Documentation/driver-api/hsi.rst
8517 F:      drivers/hsi/
8518 F:      include/linux/hsi/
8519 F:      include/uapi/linux/hsi/
8520
8521 HSO 3G MODEM DRIVER
8522 L:      linux-usb@vger.kernel.org
8523 S:      Orphan
8524 F:      drivers/net/usb/hso.c
8525
8526 HSR NETWORK PROTOCOL
8527 L:      netdev@vger.kernel.org
8528 S:      Orphan
8529 F:      net/hsr/
8530
8531 HT16K33 LED CONTROLLER DRIVER
8532 M:      Robin van der Gracht <robin@protonic.nl>
8533 S:      Maintained
8534 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8535 F:      drivers/auxdisplay/ht16k33.c
8536
8537 HTCPEN TOUCHSCREEN DRIVER
8538 M:      Pau Oliva Fora <pof@eslack.org>
8539 L:      linux-input@vger.kernel.org
8540 S:      Maintained
8541 F:      drivers/input/touchscreen/htcpen.c
8542
8543 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8544 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8545 L:      linux-iio@vger.kernel.org
8546 S:      Maintained
8547 W:      http://www.st.com/
8548 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8549 F:      drivers/iio/humidity/hts221*
8550
8551 HUAWEI ETHERNET DRIVER
8552 M:      Bin Luo <luobin9@huawei.com>
8553 L:      netdev@vger.kernel.org
8554 S:      Supported
8555 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8556 F:      drivers/net/ethernet/huawei/hinic/
8557
8558 HUGETLB FILESYSTEM
8559 M:      Mike Kravetz <mike.kravetz@oracle.com>
8560 L:      linux-mm@kvack.org
8561 S:      Maintained
8562 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8563 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8564 F:      Documentation/vm/hugetlbfs_reserv.rst
8565 F:      fs/hugetlbfs/
8566 F:      include/linux/hugetlb.h
8567 F:      mm/hugetlb.c
8568
8569 HVA ST MEDIA DRIVER
8570 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8571 L:      linux-media@vger.kernel.org
8572 S:      Supported
8573 W:      https://linuxtv.org
8574 T:      git git://linuxtv.org/media_tree.git
8575 F:      drivers/media/platform/sti/hva
8576
8577 HWPOISON MEMORY FAILURE HANDLING
8578 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8579 L:      linux-mm@kvack.org
8580 S:      Maintained
8581 F:      mm/hwpoison-inject.c
8582 F:      mm/memory-failure.c
8583
8584 HYCON HY46XX TOUCHSCREEN SUPPORT
8585 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8586 L:      linux-input@vger.kernel.org
8587 S:      Maintained
8588 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8589 F:      drivers/input/touchscreen/hycon-hy46xx.c
8590
8591 HYGON PROCESSOR SUPPORT
8592 M:      Pu Wen <puwen@hygon.cn>
8593 L:      linux-kernel@vger.kernel.org
8594 S:      Maintained
8595 F:      arch/x86/kernel/cpu/hygon.c
8596
8597 HYNIX HI556 SENSOR DRIVER
8598 M:      Shawn Tu <shawnx.tu@intel.com>
8599 L:      linux-media@vger.kernel.org
8600 S:      Maintained
8601 T:      git git://linuxtv.org/media_tree.git
8602 F:      drivers/media/i2c/hi556.c
8603
8604 Hyper-V/Azure CORE AND DRIVERS
8605 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8606 M:      Haiyang Zhang <haiyangz@microsoft.com>
8607 M:      Stephen Hemminger <sthemmin@microsoft.com>
8608 M:      Wei Liu <wei.liu@kernel.org>
8609 M:      Dexuan Cui <decui@microsoft.com>
8610 L:      linux-hyperv@vger.kernel.org
8611 S:      Supported
8612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8613 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8614 F:      Documentation/ABI/testing/debugfs-hyperv
8615 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8616 F:      arch/x86/hyperv
8617 F:      arch/x86/include/asm/hyperv-tlfs.h
8618 F:      arch/x86/include/asm/mshyperv.h
8619 F:      arch/x86/include/asm/trace/hyperv.h
8620 F:      arch/x86/kernel/cpu/mshyperv.c
8621 F:      drivers/clocksource/hyperv_timer.c
8622 F:      drivers/hid/hid-hyperv.c
8623 F:      drivers/hv/
8624 F:      drivers/input/serio/hyperv-keyboard.c
8625 F:      drivers/iommu/hyperv-iommu.c
8626 F:      drivers/net/ethernet/microsoft/
8627 F:      drivers/net/hyperv/
8628 F:      drivers/pci/controller/pci-hyperv-intf.c
8629 F:      drivers/pci/controller/pci-hyperv.c
8630 F:      drivers/scsi/storvsc_drv.c
8631 F:      drivers/uio/uio_hv_generic.c
8632 F:      drivers/video/fbdev/hyperv_fb.c
8633 F:      include/asm-generic/hyperv-tlfs.h
8634 F:      include/asm-generic/mshyperv.h
8635 F:      include/clocksource/hyperv_timer.h
8636 F:      include/linux/hyperv.h
8637 F:      include/uapi/linux/hyperv.h
8638 F:      net/vmw_vsock/hyperv_transport.c
8639 F:      tools/hv/
8640
8641 HYPERBUS SUPPORT
8642 M:      Vignesh Raghavendra <vigneshr@ti.com>
8643 L:      linux-mtd@lists.infradead.org
8644 S:      Supported
8645 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8646 C:      irc://irc.oftc.net/mtd
8647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8648 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8649 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8650 F:      drivers/mtd/hyperbus/
8651 F:      include/linux/mtd/hyperbus.h
8652
8653 HYPERVISOR VIRTUAL CONSOLE DRIVER
8654 L:      linuxppc-dev@lists.ozlabs.org
8655 S:      Odd Fixes
8656 F:      drivers/tty/hvc/
8657
8658 I2C ACPI SUPPORT
8659 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8660 L:      linux-i2c@vger.kernel.org
8661 L:      linux-acpi@vger.kernel.org
8662 S:      Maintained
8663 F:      drivers/i2c/i2c-core-acpi.c
8664
8665 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8666 M:      Ajay Gupta <ajayg@nvidia.com>
8667 L:      linux-i2c@vger.kernel.org
8668 S:      Maintained
8669 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8670 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8671
8672 I2C MUXES
8673 M:      Peter Rosin <peda@axentia.se>
8674 L:      linux-i2c@vger.kernel.org
8675 S:      Maintained
8676 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8677 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8678 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8679 F:      Documentation/i2c/i2c-topology.rst
8680 F:      Documentation/i2c/muxes/
8681 F:      drivers/i2c/i2c-mux.c
8682 F:      drivers/i2c/muxes/
8683 F:      include/linux/i2c-mux.h
8684
8685 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8686 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8687 L:      linux-i2c@vger.kernel.org
8688 S:      Maintained
8689 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8690 F:      drivers/i2c/busses/i2c-mv64xxx.c
8691
8692 I2C OVER PARALLEL PORT
8693 M:      Jean Delvare <jdelvare@suse.com>
8694 L:      linux-i2c@vger.kernel.org
8695 S:      Maintained
8696 F:      Documentation/i2c/busses/i2c-parport.rst
8697 F:      drivers/i2c/busses/i2c-parport.c
8698
8699 I2C SUBSYSTEM
8700 M:      Wolfram Sang <wsa@kernel.org>
8701 L:      linux-i2c@vger.kernel.org
8702 S:      Maintained
8703 W:      https://i2c.wiki.kernel.org/
8704 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8706 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8707 F:      Documentation/i2c/
8708 F:      drivers/i2c/*
8709 F:      include/linux/i2c-dev.h
8710 F:      include/linux/i2c-smbus.h
8711 F:      include/linux/i2c.h
8712 F:      include/uapi/linux/i2c-*.h
8713 F:      include/uapi/linux/i2c.h
8714
8715 I2C SUBSYSTEM HOST DRIVERS
8716 L:      linux-i2c@vger.kernel.org
8717 S:      Odd Fixes
8718 W:      https://i2c.wiki.kernel.org/
8719 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8721 F:      Documentation/devicetree/bindings/i2c/
8722 F:      drivers/i2c/algos/
8723 F:      drivers/i2c/busses/
8724
8725 I2C-TAOS-EVM DRIVER
8726 M:      Jean Delvare <jdelvare@suse.com>
8727 L:      linux-i2c@vger.kernel.org
8728 S:      Maintained
8729 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8730 F:      drivers/i2c/busses/i2c-taos-evm.c
8731
8732 I2C-TINY-USB DRIVER
8733 M:      Till Harbaum <till@harbaum.org>
8734 L:      linux-i2c@vger.kernel.org
8735 S:      Maintained
8736 W:      http://www.harbaum.org/till/i2c_tiny_usb
8737 F:      drivers/i2c/busses/i2c-tiny-usb.c
8738
8739 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8740 M:      Jean Delvare <jdelvare@suse.com>
8741 L:      linux-i2c@vger.kernel.org
8742 S:      Maintained
8743 F:      Documentation/i2c/busses/i2c-ali1535.rst
8744 F:      Documentation/i2c/busses/i2c-ali1563.rst
8745 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8746 F:      Documentation/i2c/busses/i2c-amd756.rst
8747 F:      Documentation/i2c/busses/i2c-amd8111.rst
8748 F:      Documentation/i2c/busses/i2c-i801.rst
8749 F:      Documentation/i2c/busses/i2c-nforce2.rst
8750 F:      Documentation/i2c/busses/i2c-piix4.rst
8751 F:      Documentation/i2c/busses/i2c-sis5595.rst
8752 F:      Documentation/i2c/busses/i2c-sis630.rst
8753 F:      Documentation/i2c/busses/i2c-sis96x.rst
8754 F:      Documentation/i2c/busses/i2c-via.rst
8755 F:      Documentation/i2c/busses/i2c-viapro.rst
8756 F:      drivers/i2c/busses/i2c-ali1535.c
8757 F:      drivers/i2c/busses/i2c-ali1563.c
8758 F:      drivers/i2c/busses/i2c-ali15x3.c
8759 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8760 F:      drivers/i2c/busses/i2c-amd756.c
8761 F:      drivers/i2c/busses/i2c-amd8111.c
8762 F:      drivers/i2c/busses/i2c-i801.c
8763 F:      drivers/i2c/busses/i2c-isch.c
8764 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8765 F:      drivers/i2c/busses/i2c-nforce2.c
8766 F:      drivers/i2c/busses/i2c-piix4.c
8767 F:      drivers/i2c/busses/i2c-sis5595.c
8768 F:      drivers/i2c/busses/i2c-sis630.c
8769 F:      drivers/i2c/busses/i2c-sis96x.c
8770 F:      drivers/i2c/busses/i2c-via.c
8771 F:      drivers/i2c/busses/i2c-viapro.c
8772
8773 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8774 M:      Hans de Goede <hdegoede@redhat.com>
8775 L:      linux-i2c@vger.kernel.org
8776 S:      Maintained
8777 F:      drivers/i2c/busses/i2c-cht-wc.c
8778
8779 I2C/SMBUS ISMT DRIVER
8780 M:      Seth Heasley <seth.heasley@intel.com>
8781 M:      Neil Horman <nhorman@tuxdriver.com>
8782 L:      linux-i2c@vger.kernel.org
8783 F:      Documentation/i2c/busses/i2c-ismt.rst
8784 F:      drivers/i2c/busses/i2c-ismt.c
8785
8786 I2C/SMBUS STUB DRIVER
8787 M:      Jean Delvare <jdelvare@suse.com>
8788 L:      linux-i2c@vger.kernel.org
8789 S:      Maintained
8790 F:      drivers/i2c/i2c-stub.c
8791
8792 I3C DRIVER FOR CADENCE I3C MASTER IP
8793 M:      Przemysław Gaj <pgaj@cadence.com>
8794 S:      Maintained
8795 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8796 F:      drivers/i3c/master/i3c-master-cdns.c
8797
8798 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8799 M:      Vitor Soares <vitor.soares@synopsys.com>
8800 S:      Maintained
8801 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8802 F:      drivers/i3c/master/dw*
8803
8804 I3C SUBSYSTEM
8805 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8806 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8807 S:      Maintained
8808 C:      irc://chat.freenode.net/linux-i3c
8809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8810 F:      Documentation/ABI/testing/sysfs-bus-i3c
8811 F:      Documentation/devicetree/bindings/i3c/
8812 F:      Documentation/driver-api/i3c
8813 F:      drivers/i3c/
8814 F:      include/linux/i3c/
8815
8816 IA64 (Itanium) PLATFORM
8817 L:      linux-ia64@vger.kernel.org
8818 S:      Orphan
8819 F:      Documentation/ia64/
8820 F:      arch/ia64/
8821
8822 IBM Power 842 compression accelerator
8823 M:      Haren Myneni <haren@us.ibm.com>
8824 S:      Supported
8825 F:      crypto/842.c
8826 F:      drivers/crypto/nx/Kconfig
8827 F:      drivers/crypto/nx/Makefile
8828 F:      drivers/crypto/nx/nx-842*
8829 F:      include/linux/sw842.h
8830 F:      lib/842/
8831
8832 IBM Power in-Nest Crypto Acceleration
8833 M:      Breno Leitão <leitao@debian.org>
8834 M:      Nayna Jain <nayna@linux.ibm.com>
8835 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8836 L:      linux-crypto@vger.kernel.org
8837 S:      Supported
8838 F:      drivers/crypto/nx/Kconfig
8839 F:      drivers/crypto/nx/Makefile
8840 F:      drivers/crypto/nx/nx-aes*
8841 F:      drivers/crypto/nx/nx-sha*
8842 F:      drivers/crypto/nx/nx.*
8843 F:      drivers/crypto/nx/nx_csbcpb.h
8844 F:      drivers/crypto/nx/nx_debugfs.c
8845
8846 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8847 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8848 L:      linux-pci@vger.kernel.org
8849 L:      linuxppc-dev@lists.ozlabs.org
8850 S:      Supported
8851 F:      drivers/pci/hotplug/rpadlpar*
8852
8853 IBM Power Linux RAID adapter
8854 M:      Brian King <brking@us.ibm.com>
8855 S:      Supported
8856 F:      drivers/scsi/ipr.*
8857
8858 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8859 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8860 L:      linux-pci@vger.kernel.org
8861 L:      linuxppc-dev@lists.ozlabs.org
8862 S:      Supported
8863 F:      drivers/pci/hotplug/rpaphp*
8864
8865 IBM Power SRIOV Virtual NIC Device Driver
8866 M:      Dany Madden <drt@linux.ibm.com>
8867 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8868 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8869 L:      netdev@vger.kernel.org
8870 S:      Supported
8871 F:      drivers/net/ethernet/ibm/ibmvnic.*
8872
8873 IBM Power Virtual Accelerator Switchboard
8874 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8875 L:      linuxppc-dev@lists.ozlabs.org
8876 S:      Supported
8877 F:      arch/powerpc/include/asm/vas.h
8878 F:      arch/powerpc/platforms/powernv/copy-paste.h
8879 F:      arch/powerpc/platforms/powernv/vas*
8880
8881 IBM Power Virtual Ethernet Device Driver
8882 M:      Cristobal Forno <cforno12@linux.ibm.com>
8883 L:      netdev@vger.kernel.org
8884 S:      Supported
8885 F:      drivers/net/ethernet/ibm/ibmveth.*
8886
8887 IBM Power Virtual FC Device Drivers
8888 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8889 L:      linux-scsi@vger.kernel.org
8890 S:      Supported
8891 F:      drivers/scsi/ibmvscsi/ibmvfc*
8892
8893 IBM Power Virtual Management Channel Driver
8894 M:      Brad Warrum <bwarrum@linux.ibm.com>
8895 M:      Ritu Agarwal <rituagar@linux.ibm.com>
8896 S:      Supported
8897 F:      drivers/misc/ibmvmc.*
8898
8899 IBM Power Virtual SCSI Device Drivers
8900 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8901 L:      linux-scsi@vger.kernel.org
8902 S:      Supported
8903 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8904 F:      include/scsi/viosrp.h
8905
8906 IBM Power Virtual SCSI Device Target Driver
8907 M:      Michael Cyr <mikecyr@linux.ibm.com>
8908 L:      linux-scsi@vger.kernel.org
8909 L:      target-devel@vger.kernel.org
8910 S:      Supported
8911 F:      drivers/scsi/ibmvscsi_tgt/
8912
8913 IBM Power VMX Cryptographic instructions
8914 M:      Breno Leitão <leitao@debian.org>
8915 M:      Nayna Jain <nayna@linux.ibm.com>
8916 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8917 L:      linux-crypto@vger.kernel.org
8918 S:      Supported
8919 F:      drivers/crypto/vmx/Kconfig
8920 F:      drivers/crypto/vmx/Makefile
8921 F:      drivers/crypto/vmx/aes*
8922 F:      drivers/crypto/vmx/ghash*
8923 F:      drivers/crypto/vmx/ppc-xlate.pl
8924 F:      drivers/crypto/vmx/vmx.c
8925
8926 IBM ServeRAID RAID DRIVER
8927 S:      Orphan
8928 F:      drivers/scsi/ips.*
8929
8930 ICH LPC AND GPIO DRIVER
8931 M:      Peter Tyser <ptyser@xes-inc.com>
8932 S:      Maintained
8933 F:      drivers/gpio/gpio-ich.c
8934 F:      drivers/mfd/lpc_ich.c
8935
8936 ICY I2C DRIVER
8937 M:      Max Staudt <max@enpas.org>
8938 L:      linux-i2c@vger.kernel.org
8939 S:      Maintained
8940 F:      drivers/i2c/busses/i2c-icy.c
8941
8942 IDEAPAD LAPTOP EXTRAS DRIVER
8943 M:      Ike Panhc <ike.pan@canonical.com>
8944 L:      platform-driver-x86@vger.kernel.org
8945 S:      Maintained
8946 W:      http://launchpad.net/ideapad-laptop
8947 F:      drivers/platform/x86/ideapad-laptop.c
8948
8949 IDEAPAD LAPTOP SLIDEBAR DRIVER
8950 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8951 L:      linux-input@vger.kernel.org
8952 S:      Maintained
8953 W:      https://github.com/o2genum/ideapad-slidebar
8954 F:      drivers/input/misc/ideapad_slidebar.c
8955
8956 IDT VersaClock 5 CLOCK DRIVER
8957 M:      Luca Ceresoli <luca@lucaceresoli.net>
8958 S:      Maintained
8959 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8960 F:      drivers/clk/clk-versaclock5.c
8961
8962 IEEE 802.15.4 SUBSYSTEM
8963 M:      Alexander Aring <alex.aring@gmail.com>
8964 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8965 L:      linux-wpan@vger.kernel.org
8966 S:      Maintained
8967 W:      https://linux-wpan.org/
8968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8970 F:      Documentation/networking/ieee802154.rst
8971 F:      drivers/net/ieee802154/
8972 F:      include/linux/ieee802154.h
8973 F:      include/linux/nl802154.h
8974 F:      include/net/af_ieee802154.h
8975 F:      include/net/cfg802154.h
8976 F:      include/net/ieee802154_netdev.h
8977 F:      include/net/mac802154.h
8978 F:      include/net/nl802154.h
8979 F:      net/ieee802154/
8980 F:      net/mac802154/
8981
8982 IFE PROTOCOL
8983 M:      Yotam Gigi <yotam.gi@gmail.com>
8984 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8985 F:      include/net/ife.h
8986 F:      include/uapi/linux/ife.h
8987 F:      net/ife
8988
8989 IGORPLUG-USB IR RECEIVER
8990 M:      Sean Young <sean@mess.org>
8991 L:      linux-media@vger.kernel.org
8992 S:      Maintained
8993 F:      drivers/media/rc/igorplugusb.c
8994
8995 IGUANAWORKS USB IR TRANSCEIVER
8996 M:      Sean Young <sean@mess.org>
8997 L:      linux-media@vger.kernel.org
8998 S:      Maintained
8999 F:      drivers/media/rc/iguanair.c
9000
9001 IIO DIGITAL POTENTIOMETER DAC
9002 M:      Peter Rosin <peda@axentia.se>
9003 L:      linux-iio@vger.kernel.org
9004 S:      Maintained
9005 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9006 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9007 F:      drivers/iio/dac/dpot-dac.c
9008
9009 IIO ENVELOPE DETECTOR
9010 M:      Peter Rosin <peda@axentia.se>
9011 L:      linux-iio@vger.kernel.org
9012 S:      Maintained
9013 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9014 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9015 F:      drivers/iio/adc/envelope-detector.c
9016
9017 IIO MULTIPLEXER
9018 M:      Peter Rosin <peda@axentia.se>
9019 L:      linux-iio@vger.kernel.org
9020 S:      Maintained
9021 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9022 F:      drivers/iio/multiplexer/iio-mux.c
9023
9024 IIO SCMI BASED DRIVER
9025 M:      Jyoti Bhayana <jbhayana@google.com>
9026 L:      linux-iio@vger.kernel.org
9027 S:      Maintained
9028 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9029
9030 IIO SUBSYSTEM AND DRIVERS
9031 M:      Jonathan Cameron <jic23@kernel.org>
9032 R:      Lars-Peter Clausen <lars@metafoo.de>
9033 L:      linux-iio@vger.kernel.org
9034 S:      Maintained
9035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9036 F:      Documentation/ABI/testing/configfs-iio*
9037 F:      Documentation/ABI/testing/sysfs-bus-iio*
9038 F:      Documentation/devicetree/bindings/iio/
9039 F:      drivers/iio/
9040 F:      drivers/staging/iio/
9041 F:      include/linux/iio/
9042 F:      tools/iio/
9043
9044 IIO UNIT CONVERTER
9045 M:      Peter Rosin <peda@axentia.se>
9046 L:      linux-iio@vger.kernel.org
9047 S:      Maintained
9048 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9049 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9050 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9051 F:      drivers/iio/afe/iio-rescale.c
9052
9053 IKANOS/ADI EAGLE ADSL USB DRIVER
9054 M:      Matthieu Castet <castet.matthieu@free.fr>
9055 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9056 S:      Maintained
9057 F:      drivers/usb/atm/ueagle-atm.c
9058
9059 IMGTEC ASCII LCD DRIVER
9060 M:      Paul Burton <paulburton@kernel.org>
9061 S:      Maintained
9062 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
9063 F:      drivers/auxdisplay/img-ascii-lcd.c
9064
9065 IMGTEC IR DECODER DRIVER
9066 S:      Orphan
9067 F:      drivers/media/rc/img-ir/
9068
9069 IMON SOUNDGRAPH USB IR RECEIVER
9070 M:      Sean Young <sean@mess.org>
9071 L:      linux-media@vger.kernel.org
9072 S:      Maintained
9073 F:      drivers/media/rc/imon.c
9074 F:      drivers/media/rc/imon_raw.c
9075
9076 IMS TWINTURBO FRAMEBUFFER DRIVER
9077 L:      linux-fbdev@vger.kernel.org
9078 S:      Orphan
9079 F:      drivers/video/fbdev/imsttfb.c
9080
9081 INA209 HARDWARE MONITOR DRIVER
9082 M:      Guenter Roeck <linux@roeck-us.net>
9083 L:      linux-hwmon@vger.kernel.org
9084 S:      Maintained
9085 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9086 F:      Documentation/hwmon/ina209.rst
9087 F:      drivers/hwmon/ina209.c
9088
9089 INA2XX HARDWARE MONITOR DRIVER
9090 M:      Guenter Roeck <linux@roeck-us.net>
9091 L:      linux-hwmon@vger.kernel.org
9092 S:      Maintained
9093 F:      Documentation/hwmon/ina2xx.rst
9094 F:      drivers/hwmon/ina2xx.c
9095 F:      include/linux/platform_data/ina2xx.h
9096
9097 INDUSTRY PACK SUBSYSTEM (IPACK)
9098 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9099 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9100 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9101 L:      industrypack-devel@lists.sourceforge.net
9102 S:      Maintained
9103 W:      http://industrypack.sourceforge.net
9104 F:      drivers/ipack/
9105
9106 INFINEON DPS310 Driver
9107 M:      Eddie James <eajames@linux.ibm.com>
9108 L:      linux-iio@vger.kernel.org
9109 S:      Maintained
9110 F:      drivers/iio/pressure/dps310.c
9111
9112 INFINIBAND SUBSYSTEM
9113 M:      Doug Ledford <dledford@redhat.com>
9114 M:      Jason Gunthorpe <jgg@nvidia.com>
9115 L:      linux-rdma@vger.kernel.org
9116 S:      Supported
9117 W:      https://github.com/linux-rdma/rdma-core
9118 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9120 F:      Documentation/devicetree/bindings/infiniband/
9121 F:      Documentation/infiniband/
9122 F:      drivers/infiniband/
9123 F:      include/rdma/
9124 F:      include/trace/events/ib_mad.h
9125 F:      include/trace/events/ib_umad.h
9126 F:      include/uapi/linux/if_infiniband.h
9127 F:      include/uapi/rdma/
9128 F:      samples/bpf/ibumad_kern.c
9129 F:      samples/bpf/ibumad_user.c
9130
9131 INGENIC JZ4780 NAND DRIVER
9132 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9133 L:      linux-mtd@lists.infradead.org
9134 L:      linux-mips@vger.kernel.org
9135 S:      Maintained
9136 F:      drivers/mtd/nand/raw/ingenic/
9137
9138 INGENIC JZ47xx SoCs
9139 M:      Paul Cercueil <paul@crapouillou.net>
9140 L:      linux-mips@vger.kernel.org
9141 S:      Maintained
9142 F:      arch/mips/boot/dts/ingenic/
9143 F:      arch/mips/generic/board-ingenic.c
9144 F:      arch/mips/include/asm/mach-ingenic/
9145 F:      arch/mips/ingenic/Kconfig
9146 F:      drivers/clk/ingenic/
9147 F:      drivers/dma/dma-jz4780.c
9148 F:      drivers/gpu/drm/ingenic/
9149 F:      drivers/i2c/busses/i2c-jz4780.c
9150 F:      drivers/iio/adc/ingenic-adc.c
9151 F:      drivers/irqchip/irq-ingenic.c
9152 F:      drivers/memory/jz4780-nemc.c
9153 F:      drivers/mmc/host/jz4740_mmc.c
9154 F:      drivers/mtd/nand/raw/ingenic/
9155 F:      drivers/pinctrl/pinctrl-ingenic.c
9156 F:      drivers/power/supply/ingenic-battery.c
9157 F:      drivers/pwm/pwm-jz4740.c
9158 F:      drivers/remoteproc/ingenic_rproc.c
9159 F:      drivers/rtc/rtc-jz4740.c
9160 F:      drivers/tty/serial/8250/8250_ingenic.c
9161 F:      drivers/usb/musb/jz4740.c
9162 F:      drivers/watchdog/jz4740_wdt.c
9163 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9164 F:      include/linux/mfd/ingenic-tcu.h
9165 F:      sound/soc/codecs/jz47*
9166 F:      sound/soc/jz4740/
9167
9168 INOTIFY
9169 M:      Jan Kara <jack@suse.cz>
9170 R:      Amir Goldstein <amir73il@gmail.com>
9171 L:      linux-fsdevel@vger.kernel.org
9172 S:      Maintained
9173 F:      Documentation/filesystems/inotify.rst
9174 F:      fs/notify/inotify/
9175 F:      include/linux/inotify.h
9176 F:      include/uapi/linux/inotify.h
9177
9178 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9179 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9180 L:      linux-input@vger.kernel.org
9181 S:      Maintained
9182 Q:      http://patchwork.kernel.org/project/linux-input/list/
9183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9184 F:      Documentation/devicetree/bindings/input/
9185 F:      Documentation/devicetree/bindings/serio/
9186 F:      Documentation/input/
9187 F:      drivers/input/
9188 F:      include/linux/input.h
9189 F:      include/linux/input/
9190 F:      include/uapi/linux/input-event-codes.h
9191 F:      include/uapi/linux/input.h
9192
9193 INPUT MULTITOUCH (MT) PROTOCOL
9194 M:      Henrik Rydberg <rydberg@bitmath.org>
9195 L:      linux-input@vger.kernel.org
9196 S:      Odd fixes
9197 F:      Documentation/input/multi-touch-protocol.rst
9198 F:      drivers/input/input-mt.c
9199 K:      \b(ABS|SYN)_MT_
9200
9201 INSIDE SECURE CRYPTO DRIVER
9202 M:      Antoine Tenart <atenart@kernel.org>
9203 L:      linux-crypto@vger.kernel.org
9204 S:      Maintained
9205 F:      drivers/crypto/inside-secure/
9206
9207 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9208 M:      Mimi Zohar <zohar@linux.ibm.com>
9209 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9210 L:      linux-integrity@vger.kernel.org
9211 S:      Supported
9212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9213 F:      security/integrity/ima/
9214
9215 INTEL 810/815 FRAMEBUFFER DRIVER
9216 M:      Antonino Daplas <adaplas@gmail.com>
9217 L:      linux-fbdev@vger.kernel.org
9218 S:      Maintained
9219 F:      drivers/video/fbdev/i810/
9220
9221 INTEL ASoC DRIVERS
9222 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9223 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9224 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9225 M:      Jie Yang <yang.jie@linux.intel.com>
9226 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9227 S:      Supported
9228 F:      sound/soc/intel/
9229
9230 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9231 M:      Hans de Goede <hdegoede@redhat.com>
9232 L:      platform-driver-x86@vger.kernel.org
9233 S:      Maintained
9234 F:      drivers/platform/x86/intel_atomisp2_pm.c
9235
9236 INTEL ATOMISP2 LED DRIVER
9237 M:      Hans de Goede <hdegoede@redhat.com>
9238 L:      platform-driver-x86@vger.kernel.org
9239 S:      Maintained
9240 F:      drivers/platform/x86/intel_atomisp2_led.c
9241
9242 INTEL BROXTON PMC DRIVER
9243 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9244 M:      Zha Qipeng <qipeng.zha@intel.com>
9245 S:      Maintained
9246 F:      drivers/mfd/intel_pmc_bxt.c
9247 F:      include/linux/mfd/intel_pmc_bxt.h
9248
9249 INTEL C600 SERIES SAS CONTROLLER DRIVER
9250 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9251 L:      linux-scsi@vger.kernel.org
9252 S:      Supported
9253 T:      git git://git.code.sf.net/p/intel-sas/isci
9254 F:      drivers/scsi/isci/
9255
9256 INTEL CPU family model numbers
9257 M:      Tony Luck <tony.luck@intel.com>
9258 M:      x86@kernel.org
9259 L:      linux-kernel@vger.kernel.org
9260 S:      Supported
9261 F:      arch/x86/include/asm/intel-family.h
9262
9263 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9264 M:      Jani Nikula <jani.nikula@linux.intel.com>
9265 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9266 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9267 L:      intel-gfx@lists.freedesktop.org
9268 S:      Supported
9269 W:      https://01.org/linuxgraphics/
9270 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9271 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9272 C:      irc://chat.freenode.net/intel-gfx
9273 T:      git git://anongit.freedesktop.org/drm-intel
9274 F:      Documentation/gpu/i915.rst
9275 F:      drivers/gpu/drm/i915/
9276 F:      include/drm/i915*
9277 F:      include/uapi/drm/i915_drm.h
9278
9279 INTEL ETHERNET DRIVERS
9280 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9281 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9282 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9283 S:      Supported
9284 W:      http://www.intel.com/support/feedback.htm
9285 W:      http://e1000.sourceforge.net/
9286 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9289 F:      Documentation/networking/device_drivers/ethernet/intel/
9290 F:      drivers/net/ethernet/intel/
9291 F:      drivers/net/ethernet/intel/*/
9292 F:      include/linux/avf/virtchnl.h
9293 F:      include/linux/net/intel/iidc.h
9294
9295 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9296 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9297 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9298 L:      linux-rdma@vger.kernel.org
9299 S:      Supported
9300 F:      drivers/infiniband/hw/irdma/
9301 F:      include/uapi/rdma/irdma-abi.h
9302
9303 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9304 M:      Maik Broemme <mbroemme@libmpq.org>
9305 L:      linux-fbdev@vger.kernel.org
9306 S:      Maintained
9307 F:      Documentation/fb/intelfb.rst
9308 F:      drivers/video/fbdev/intelfb/
9309
9310 INTEL GPIO DRIVERS
9311 M:      Andy Shevchenko <andy@kernel.org>
9312 L:      linux-gpio@vger.kernel.org
9313 S:      Maintained
9314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9315 F:      drivers/gpio/gpio-ich.c
9316 F:      drivers/gpio/gpio-merrifield.c
9317 F:      drivers/gpio/gpio-ml-ioh.c
9318 F:      drivers/gpio/gpio-pch.c
9319 F:      drivers/gpio/gpio-sch.c
9320 F:      drivers/gpio/gpio-sodaville.c
9321
9322 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9323 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9324 M:      Zhi Wang <zhi.a.wang@intel.com>
9325 L:      intel-gvt-dev@lists.freedesktop.org
9326 L:      intel-gfx@lists.freedesktop.org
9327 S:      Supported
9328 W:      https://01.org/igvt-g
9329 T:      git https://github.com/intel/gvt-linux.git
9330 F:      drivers/gpu/drm/i915/gvt/
9331
9332 INTEL HID EVENT DRIVER
9333 M:      Alex Hung <alex.hung@canonical.com>
9334 L:      platform-driver-x86@vger.kernel.org
9335 S:      Maintained
9336 F:      drivers/platform/x86/intel-hid.c
9337
9338 INTEL I/OAT DMA DRIVER
9339 M:      Dave Jiang <dave.jiang@intel.com>
9340 R:      Dan Williams <dan.j.williams@intel.com>
9341 L:      dmaengine@vger.kernel.org
9342 S:      Supported
9343 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9344 F:      drivers/dma/ioat*
9345
9346 INTEL IADX DRIVER
9347 M:      Dave Jiang <dave.jiang@intel.com>
9348 L:      dmaengine@vger.kernel.org
9349 S:      Supported
9350 F:      drivers/dma/idxd/*
9351 F:      include/uapi/linux/idxd.h
9352
9353 INTEL IDLE DRIVER
9354 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9355 M:      Len Brown <lenb@kernel.org>
9356 L:      linux-pm@vger.kernel.org
9357 S:      Supported
9358 B:      https://bugzilla.kernel.org
9359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9360 F:      drivers/idle/intel_idle.c
9361
9362 INTEL INTEGRATED SENSOR HUB DRIVER
9363 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9364 M:      Jiri Kosina <jikos@kernel.org>
9365 L:      linux-input@vger.kernel.org
9366 S:      Maintained
9367 F:      drivers/hid/intel-ish-hid/
9368
9369 INTEL IOMMU (VT-d)
9370 M:      David Woodhouse <dwmw2@infradead.org>
9371 M:      Lu Baolu <baolu.lu@linux.intel.com>
9372 L:      iommu@lists.linux-foundation.org
9373 S:      Supported
9374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9375 F:      drivers/iommu/intel/
9376 F:      include/linux/intel-iommu.h
9377 F:      include/linux/intel-svm.h
9378
9379 INTEL IOP-ADMA DMA DRIVER
9380 R:      Dan Williams <dan.j.williams@intel.com>
9381 S:      Odd fixes
9382 F:      drivers/dma/iop-adma.c
9383
9384 INTEL IPU3 CSI-2 CIO2 DRIVER
9385 M:      Yong Zhi <yong.zhi@intel.com>
9386 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9387 M:      Bingbu Cao <bingbu.cao@intel.com>
9388 M:      Dan Scally <djrscally@gmail.com>
9389 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9390 L:      linux-media@vger.kernel.org
9391 S:      Maintained
9392 T:      git git://linuxtv.org/media_tree.git
9393 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9394 F:      drivers/media/pci/intel/ipu3/
9395
9396 INTEL IPU3 CSI-2 IMGU DRIVER
9397 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9398 R:      Bingbu Cao <bingbu.cao@intel.com>
9399 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9400 L:      linux-media@vger.kernel.org
9401 S:      Maintained
9402 F:      Documentation/admin-guide/media/ipu3.rst
9403 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9404 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9405 F:      drivers/staging/media/ipu3/
9406
9407 INTEL IXP4XX CRYPTO SUPPORT
9408 M:      Corentin Labbe <clabbe@baylibre.com>
9409 L:      linux-crypto@vger.kernel.org
9410 S:      Maintained
9411 F:      drivers/crypto/ixp4xx_crypto.c
9412
9413 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9414 M:      Krzysztof Halasa <khalasa@piap.pl>
9415 S:      Maintained
9416 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9417 F:      drivers/net/wan/ixp4xx_hss.c
9418 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9419 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9420 F:      include/linux/soc/ixp4xx/npe.h
9421 F:      include/linux/soc/ixp4xx/qmgr.h
9422
9423 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9424 M:      Deepak Saxena <dsaxena@plexity.net>
9425 S:      Maintained
9426 F:      Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9427 F:      drivers/char/hw_random/ixp4xx-rng.c
9428
9429 INTEL KEEM BAY DRM DRIVER
9430 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9431 M:      Edmund Dea <edmund.j.dea@intel.com>
9432 S:      Maintained
9433 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9434 F:      drivers/gpu/drm/kmb/
9435
9436 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9437 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9438 S:      Maintained
9439 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9440 F:      drivers/crypto/keembay/Kconfig
9441 F:      drivers/crypto/keembay/Makefile
9442 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9443 F:      drivers/crypto/keembay/ocs-aes.c
9444 F:      drivers/crypto/keembay/ocs-aes.h
9445
9446 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9447 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9448 M:      Declan Murphy <declan.murphy@intel.com>
9449 S:      Maintained
9450 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9451 F:      drivers/crypto/keembay/Kconfig
9452 F:      drivers/crypto/keembay/Makefile
9453 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9454 F:      drivers/crypto/keembay/ocs-hcu.c
9455 F:      drivers/crypto/keembay/ocs-hcu.h
9456
9457 INTEL MANAGEMENT ENGINE (mei)
9458 M:      Tomas Winkler <tomas.winkler@intel.com>
9459 L:      linux-kernel@vger.kernel.org
9460 S:      Supported
9461 F:      Documentation/driver-api/mei/*
9462 F:      drivers/misc/mei/
9463 F:      drivers/watchdog/mei_wdt.c
9464 F:      include/linux/mei_cl_bus.h
9465 F:      include/uapi/linux/mei.h
9466 F:      samples/mei/*
9467
9468 INTEL MAX 10 BMC MFD DRIVER
9469 M:      Xu Yilun <yilun.xu@intel.com>
9470 R:      Tom Rix <trix@redhat.com>
9471 S:      Maintained
9472 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9473 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9474 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9475 F:      drivers/mfd/intel-m10-bmc.c
9476 F:      include/linux/mfd/intel-m10-bmc.h
9477
9478 INTEL MENLOW THERMAL DRIVER
9479 M:      Sujith Thomas <sujith.thomas@intel.com>
9480 L:      platform-driver-x86@vger.kernel.org
9481 S:      Supported
9482 W:      https://01.org/linux-acpi
9483 F:      drivers/platform/x86/intel_menlow.c
9484
9485 INTEL P-Unit IPC DRIVER
9486 M:      Zha Qipeng <qipeng.zha@intel.com>
9487 L:      platform-driver-x86@vger.kernel.org
9488 S:      Maintained
9489 F:      arch/x86/include/asm/intel_punit_ipc.h
9490 F:      drivers/platform/x86/intel_punit_ipc.c
9491
9492 INTEL PMC CORE DRIVER
9493 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9494 M:      David E Box <david.e.box@intel.com>
9495 L:      platform-driver-x86@vger.kernel.org
9496 S:      Maintained
9497 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9498 F:      drivers/platform/x86/intel_pmc_core*
9499
9500 INTEL PMIC GPIO DRIVERS
9501 M:      Andy Shevchenko <andy@kernel.org>
9502 S:      Maintained
9503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9504 F:      drivers/gpio/gpio-*cove.c
9505
9506 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9507 M:      Andy Shevchenko <andy@kernel.org>
9508 S:      Maintained
9509 F:      drivers/mfd/intel_soc_pmic*
9510 F:      include/linux/mfd/intel_soc_pmic*
9511
9512 INTEL PMT DRIVER
9513 M:      "David E. Box" <david.e.box@linux.intel.com>
9514 S:      Maintained
9515 F:      drivers/mfd/intel_pmt.c
9516 F:      drivers/platform/x86/intel_pmt_*
9517
9518 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9519 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9520 L:      linux-wireless@vger.kernel.org
9521 S:      Maintained
9522 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9523 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9524 F:      drivers/net/wireless/intel/ipw2x00/
9525
9526 INTEL PSTATE DRIVER
9527 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9528 M:      Len Brown <lenb@kernel.org>
9529 L:      linux-pm@vger.kernel.org
9530 S:      Supported
9531 F:      drivers/cpufreq/intel_pstate.c
9532
9533 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9534 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9535 L:      linux-iio@vger.kernel.org
9536 F:      drivers/counter/intel-qep.c
9537
9538 INTEL SCU DRIVERS
9539 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9540 S:      Maintained
9541 F:      arch/x86/include/asm/intel_scu_ipc.h
9542 F:      drivers/platform/x86/intel_scu_*
9543
9544 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9545 M:      Daniel Scally <djrscally@gmail.com>
9546 S:      Maintained
9547 F:      drivers/platform/x86/intel/int3472/
9548
9549 INTEL SPEED SELECT TECHNOLOGY
9550 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9551 L:      platform-driver-x86@vger.kernel.org
9552 S:      Maintained
9553 F:      drivers/platform/x86/intel_speed_select_if/
9554 F:      include/uapi/linux/isst_if.h
9555 F:      tools/power/x86/intel-speed-select/
9556
9557 INTEL STRATIX10 FIRMWARE DRIVERS
9558 M:      Richard Gong <richard.gong@linux.intel.com>
9559 L:      linux-kernel@vger.kernel.org
9560 S:      Maintained
9561 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9562 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9563 F:      drivers/firmware/stratix10-rsu.c
9564 F:      drivers/firmware/stratix10-svc.c
9565 F:      include/linux/firmware/intel/stratix10-smc.h
9566 F:      include/linux/firmware/intel/stratix10-svc-client.h
9567
9568 INTEL TELEMETRY DRIVER
9569 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9570 M:      "David E. Box" <david.e.box@linux.intel.com>
9571 L:      platform-driver-x86@vger.kernel.org
9572 S:      Maintained
9573 F:      arch/x86/include/asm/intel_telemetry.h
9574 F:      drivers/platform/x86/intel_telemetry*
9575
9576 INTEL UNCORE FREQUENCY CONTROL
9577 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9578 L:      platform-driver-x86@vger.kernel.org
9579 S:      Maintained
9580 F:      drivers/platform/x86/intel-uncore-frequency.c
9581
9582 INTEL VIRTUAL BUTTON DRIVER
9583 M:      AceLan Kao <acelan.kao@canonical.com>
9584 L:      platform-driver-x86@vger.kernel.org
9585 S:      Maintained
9586 F:      drivers/platform/x86/intel-vbtn.c
9587
9588 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9589 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9590 L:      linux-wireless@vger.kernel.org
9591 S:      Supported
9592 F:      drivers/net/wireless/intel/iwlegacy/
9593
9594 INTEL WIRELESS WIFI LINK (iwlwifi)
9595 M:      Luca Coelho <luciano.coelho@intel.com>
9596 L:      linux-wireless@vger.kernel.org
9597 S:      Supported
9598 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9600 F:      drivers/net/wireless/intel/iwlwifi/
9601
9602 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9603 M:      Jithu Joseph <jithu.joseph@intel.com>
9604 R:      Maurice Ma <maurice.ma@intel.com>
9605 S:      Maintained
9606 W:      https://slimbootloader.github.io/security/firmware-update.html
9607 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9608
9609 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9610 L:      Dell.Client.Kernel@dell.com
9611 S:      Maintained
9612 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9613
9614 INTEL WWAN IOSM DRIVER
9615 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9616 M:      Intel Corporation <linuxwwan@intel.com>
9617 L:      netdev@vger.kernel.org
9618 S:      Maintained
9619 F:      drivers/net/wwan/iosm/
9620
9621 INTEL(R) TRACE HUB
9622 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9623 S:      Supported
9624 F:      Documentation/trace/intel_th.rst
9625 F:      drivers/hwtracing/intel_th/
9626 F:      include/linux/intel_th.h
9627
9628 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9629 M:      Ning Sun <ning.sun@intel.com>
9630 L:      tboot-devel@lists.sourceforge.net
9631 S:      Supported
9632 W:      http://tboot.sourceforge.net
9633 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9634 F:      Documentation/x86/intel_txt.rst
9635 F:      arch/x86/kernel/tboot.c
9636 F:      include/linux/tboot.h
9637
9638 INTEL SGX
9639 M:      Jarkko Sakkinen <jarkko@kernel.org>
9640 R:      Dave Hansen <dave.hansen@linux.intel.com>
9641 L:      linux-sgx@vger.kernel.org
9642 S:      Supported
9643 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9645 F:      Documentation/x86/sgx.rst
9646 F:      arch/x86/entry/vdso/vsgx.S
9647 F:      arch/x86/include/asm/sgx.h
9648 F:      arch/x86/include/uapi/asm/sgx.h
9649 F:      arch/x86/kernel/cpu/sgx/*
9650 F:      tools/testing/selftests/sgx/*
9651 K:      \bSGX_
9652
9653 INTERCONNECT API
9654 M:      Georgi Djakov <djakov@kernel.org>
9655 L:      linux-pm@vger.kernel.org
9656 S:      Maintained
9657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9658 F:      Documentation/devicetree/bindings/interconnect/
9659 F:      Documentation/driver-api/interconnect.rst
9660 F:      drivers/interconnect/
9661 F:      include/dt-bindings/interconnect/
9662 F:      include/linux/interconnect-provider.h
9663 F:      include/linux/interconnect.h
9664
9665 INTERRUPT COUNTER DRIVER
9666 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9667 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9668 L:      linux-iio@vger.kernel.org
9669 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9670 F:      drivers/counter/interrupt-cnt.c
9671
9672 INVENSENSE ICM-426xx IMU DRIVER
9673 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9674 L:      linux-iio@vger.kernel.org
9675 S:      Maintained
9676 W:      https://invensense.tdk.com/
9677 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9678 F:      drivers/iio/imu/inv_icm42600/
9679
9680 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9681 M:      Linus Walleij <linus.walleij@linaro.org>
9682 L:      linux-iio@vger.kernel.org
9683 S:      Maintained
9684 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9685 F:      drivers/iio/gyro/mpu3050*
9686
9687 IOC3 ETHERNET DRIVER
9688 M:      Ralf Baechle <ralf@linux-mips.org>
9689 L:      linux-mips@vger.kernel.org
9690 S:      Maintained
9691 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9692
9693 IOMAP FILESYSTEM LIBRARY
9694 M:      Christoph Hellwig <hch@infradead.org>
9695 M:      Darrick J. Wong <djwong@kernel.org>
9696 M:      linux-xfs@vger.kernel.org
9697 M:      linux-fsdevel@vger.kernel.org
9698 L:      linux-xfs@vger.kernel.org
9699 L:      linux-fsdevel@vger.kernel.org
9700 S:      Supported
9701 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9702 F:      fs/iomap/
9703 F:      include/linux/iomap.h
9704
9705 IOMMU DRIVERS
9706 M:      Joerg Roedel <joro@8bytes.org>
9707 M:      Will Deacon <will@kernel.org>
9708 L:      iommu@lists.linux-foundation.org
9709 S:      Maintained
9710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9711 F:      Documentation/devicetree/bindings/iommu/
9712 F:      Documentation/userspace-api/iommu.rst
9713 F:      drivers/iommu/
9714 F:      include/linux/iommu.h
9715 F:      include/linux/iova.h
9716 F:      include/linux/of_iommu.h
9717 F:      include/uapi/linux/iommu.h
9718
9719 IO_URING
9720 M:      Jens Axboe <axboe@kernel.dk>
9721 R:      Pavel Begunkov <asml.silence@gmail.com>
9722 L:      io-uring@vger.kernel.org
9723 S:      Maintained
9724 T:      git git://git.kernel.dk/linux-block
9725 T:      git git://git.kernel.dk/liburing
9726 F:      fs/io-wq.c
9727 F:      fs/io-wq.h
9728 F:      fs/io_uring.c
9729 F:      include/linux/io_uring.h
9730 F:      include/uapi/linux/io_uring.h
9731 F:      tools/io_uring/
9732
9733 IPMI SUBSYSTEM
9734 M:      Corey Minyard <minyard@acm.org>
9735 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9736 S:      Supported
9737 W:      http://openipmi.sourceforge.net/
9738 F:      Documentation/driver-api/ipmi.rst
9739 F:      Documentation/devicetree/bindings/ipmi/
9740 F:      drivers/char/ipmi/
9741 F:      include/linux/ipmi*
9742 F:      include/uapi/linux/ipmi*
9743
9744 IPS SCSI RAID DRIVER
9745 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9746 L:      linux-scsi@vger.kernel.org
9747 S:      Maintained
9748 W:      http://www.adaptec.com/
9749 F:      drivers/scsi/ips*
9750
9751 IPVS
9752 M:      Simon Horman <horms@verge.net.au>
9753 M:      Julian Anastasov <ja@ssi.bg>
9754 L:      netdev@vger.kernel.org
9755 L:      lvs-devel@vger.kernel.org
9756 S:      Maintained
9757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9759 F:      Documentation/networking/ipvs-sysctl.rst
9760 F:      include/net/ip_vs.h
9761 F:      include/uapi/linux/ip_vs.h
9762 F:      net/netfilter/ipvs/
9763
9764 IPWIRELESS DRIVER
9765 M:      Jiri Kosina <jikos@kernel.org>
9766 M:      David Sterba <dsterba@suse.com>
9767 S:      Odd Fixes
9768 F:      drivers/tty/ipwireless/
9769
9770 IPX NETWORK LAYER
9771 L:      netdev@vger.kernel.org
9772 S:      Obsolete
9773 F:      include/uapi/linux/ipx.h
9774
9775 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9776 M:      Marc Zyngier <maz@kernel.org>
9777 S:      Maintained
9778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9779 F:      Documentation/core-api/irq/irq-domain.rst
9780 F:      include/linux/irqdomain.h
9781 F:      kernel/irq/irqdomain.c
9782 F:      kernel/irq/msi.c
9783
9784 IRQ SUBSYSTEM
9785 M:      Thomas Gleixner <tglx@linutronix.de>
9786 L:      linux-kernel@vger.kernel.org
9787 S:      Maintained
9788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9789 F:      kernel/irq/
9790
9791 IRQCHIP DRIVERS
9792 M:      Thomas Gleixner <tglx@linutronix.de>
9793 M:      Marc Zyngier <maz@kernel.org>
9794 L:      linux-kernel@vger.kernel.org
9795 S:      Maintained
9796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9797 F:      Documentation/devicetree/bindings/interrupt-controller/
9798 F:      drivers/irqchip/
9799
9800 ISA
9801 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9802 S:      Maintained
9803 F:      Documentation/driver-api/isa.rst
9804 F:      drivers/base/isa.c
9805 F:      include/linux/isa.h
9806
9807 ISA RADIO MODULE
9808 M:      Hans Verkuil <hverkuil@xs4all.nl>
9809 L:      linux-media@vger.kernel.org
9810 S:      Maintained
9811 W:      https://linuxtv.org
9812 T:      git git://linuxtv.org/media_tree.git
9813 F:      drivers/media/radio/radio-isa*
9814
9815 ISAPNP
9816 M:      Jaroslav Kysela <perex@perex.cz>
9817 S:      Maintained
9818 F:      Documentation/driver-api/isapnp.rst
9819 F:      drivers/pnp/isapnp/
9820 F:      include/linux/isapnp.h
9821
9822 ISCSI
9823 M:      Lee Duncan <lduncan@suse.com>
9824 M:      Chris Leech <cleech@redhat.com>
9825 L:      open-iscsi@googlegroups.com
9826 L:      linux-scsi@vger.kernel.org
9827 S:      Maintained
9828 W:      www.open-iscsi.com
9829 F:      drivers/scsi/*iscsi*
9830 F:      include/scsi/*iscsi*
9831
9832 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9833 M:      Peter Jones <pjones@redhat.com>
9834 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9835 S:      Maintained
9836 F:      drivers/firmware/iscsi_ibft*
9837
9838 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9839 M:      Sagi Grimberg <sagi@grimberg.me>
9840 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9841 L:      linux-rdma@vger.kernel.org
9842 S:      Supported
9843 W:      http://www.openfabrics.org
9844 W:      www.open-iscsi.org
9845 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9846 F:      drivers/infiniband/ulp/iser/
9847
9848 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9849 M:      Sagi Grimberg <sagi@grimberg.me>
9850 L:      linux-rdma@vger.kernel.org
9851 L:      target-devel@vger.kernel.org
9852 S:      Supported
9853 W:      http://www.linux-iscsi.org
9854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9855 F:      drivers/infiniband/ulp/isert
9856
9857 ISDN/CMTP OVER BLUETOOTH
9858 M:      Karsten Keil <isdn@linux-pingi.de>
9859 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9860 L:      netdev@vger.kernel.org
9861 S:      Odd Fixes
9862 W:      http://www.isdn4linux.de
9863 F:      Documentation/isdn/
9864 F:      drivers/isdn/capi/
9865 F:      include/linux/isdn/
9866 F:      include/uapi/linux/isdn/
9867 F:      net/bluetooth/cmtp/
9868
9869 ISDN/mISDN SUBSYSTEM
9870 M:      Karsten Keil <isdn@linux-pingi.de>
9871 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9872 L:      netdev@vger.kernel.org
9873 S:      Maintained
9874 W:      http://www.isdn4linux.de
9875 F:      drivers/isdn/Kconfig
9876 F:      drivers/isdn/Makefile
9877 F:      drivers/isdn/hardware/
9878 F:      drivers/isdn/mISDN/
9879
9880 IT87 HARDWARE MONITORING DRIVER
9881 M:      Jean Delvare <jdelvare@suse.com>
9882 L:      linux-hwmon@vger.kernel.org
9883 S:      Maintained
9884 F:      Documentation/hwmon/it87.rst
9885 F:      drivers/hwmon/it87.c
9886
9887 IT913X MEDIA DRIVER
9888 M:      Antti Palosaari <crope@iki.fi>
9889 L:      linux-media@vger.kernel.org
9890 S:      Maintained
9891 W:      https://linuxtv.org
9892 W:      http://palosaari.fi/linux/
9893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9894 T:      git git://linuxtv.org/anttip/media_tree.git
9895 F:      drivers/media/tuners/it913x*
9896
9897 ITE IT66121 HDMI BRIDGE DRIVER
9898 M:      Phong LE <ple@baylibre.com>
9899 M:      Neil Armstrong <narmstrong@baylibre.com>
9900 S:      Maintained
9901 T:      git git://anongit.freedesktop.org/drm/drm-misc
9902 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
9903 F:      drivers/gpu/drm/bridge/ite-it66121.c
9904
9905 IVTV VIDEO4LINUX DRIVER
9906 M:      Andy Walls <awalls@md.metrocast.net>
9907 L:      linux-media@vger.kernel.org
9908 S:      Maintained
9909 W:      https://linuxtv.org
9910 T:      git git://linuxtv.org/media_tree.git
9911 F:      Documentation/admin-guide/media/ivtv*
9912 F:      drivers/media/pci/ivtv/
9913 F:      include/uapi/linux/ivtv*
9914
9915 IX2505V MEDIA DRIVER
9916 M:      Malcolm Priestley <tvboxspy@gmail.com>
9917 L:      linux-media@vger.kernel.org
9918 S:      Maintained
9919 W:      https://linuxtv.org
9920 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9921 F:      drivers/media/dvb-frontends/ix2505v*
9922
9923 JAILHOUSE HYPERVISOR INTERFACE
9924 M:      Jan Kiszka <jan.kiszka@siemens.com>
9925 L:      jailhouse-dev@googlegroups.com
9926 S:      Maintained
9927 F:      arch/x86/include/asm/jailhouse_para.h
9928 F:      arch/x86/kernel/jailhouse.c
9929
9930 JC42.4 TEMPERATURE SENSOR DRIVER
9931 M:      Guenter Roeck <linux@roeck-us.net>
9932 L:      linux-hwmon@vger.kernel.org
9933 S:      Maintained
9934 F:      Documentation/hwmon/jc42.rst
9935 F:      drivers/hwmon/jc42.c
9936
9937 JFS FILESYSTEM
9938 M:      Dave Kleikamp <shaggy@kernel.org>
9939 L:      jfs-discussion@lists.sourceforge.net
9940 S:      Maintained
9941 W:      http://jfs.sourceforge.net/
9942 T:      git git://github.com/kleikamp/linux-shaggy.git
9943 F:      Documentation/admin-guide/jfs.rst
9944 F:      fs/jfs/
9945
9946 JME NETWORK DRIVER
9947 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9948 L:      netdev@vger.kernel.org
9949 S:      Maintained
9950 F:      drivers/net/ethernet/jme.*
9951
9952 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9953 M:      David Woodhouse <dwmw2@infradead.org>
9954 M:      Richard Weinberger <richard@nod.at>
9955 L:      linux-mtd@lists.infradead.org
9956 S:      Odd Fixes
9957 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9958 T:      git git://git.infradead.org/ubifs-2.6.git
9959 F:      fs/jffs2/
9960 F:      include/uapi/linux/jffs2.h
9961
9962 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9963 M:      "Theodore Ts'o" <tytso@mit.edu>
9964 M:      Jan Kara <jack@suse.com>
9965 L:      linux-ext4@vger.kernel.org
9966 S:      Maintained
9967 F:      fs/jbd2/
9968 F:      include/linux/jbd2.h
9969
9970 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9971 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9972 L:      linux-media@vger.kernel.org
9973 S:      Maintained
9974 F:      drivers/media/platform/rcar_jpu.c
9975
9976 JSM Neo PCI based serial card
9977 L:      linux-serial@vger.kernel.org
9978 S:      Orphan
9979 F:      drivers/tty/serial/jsm/
9980
9981 K10TEMP HARDWARE MONITORING DRIVER
9982 M:      Clemens Ladisch <clemens@ladisch.de>
9983 L:      linux-hwmon@vger.kernel.org
9984 S:      Maintained
9985 F:      Documentation/hwmon/k10temp.rst
9986 F:      drivers/hwmon/k10temp.c
9987
9988 K8TEMP HARDWARE MONITORING DRIVER
9989 M:      Rudolf Marek <r.marek@assembler.cz>
9990 L:      linux-hwmon@vger.kernel.org
9991 S:      Maintained
9992 F:      Documentation/hwmon/k8temp.rst
9993 F:      drivers/hwmon/k8temp.c
9994
9995 KASAN
9996 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
9997 R:      Alexander Potapenko <glider@google.com>
9998 R:      Andrey Konovalov <andreyknvl@gmail.com>
9999 R:      Dmitry Vyukov <dvyukov@google.com>
10000 L:      kasan-dev@googlegroups.com
10001 S:      Maintained
10002 F:      Documentation/dev-tools/kasan.rst
10003 F:      arch/*/include/asm/*kasan.h
10004 F:      arch/*/mm/kasan_init*
10005 F:      include/linux/kasan*.h
10006 F:      lib/Kconfig.kasan
10007 F:      lib/test_kasan*.c
10008 F:      mm/kasan/
10009 F:      scripts/Makefile.kasan
10010
10011 KCONFIG
10012 M:      Masahiro Yamada <masahiroy@kernel.org>
10013 L:      linux-kbuild@vger.kernel.org
10014 S:      Maintained
10015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10016 F:      Documentation/kbuild/kconfig*
10017 F:      scripts/Kconfig.include
10018 F:      scripts/kconfig/
10019
10020 KCOV
10021 R:      Dmitry Vyukov <dvyukov@google.com>
10022 R:      Andrey Konovalov <andreyknvl@gmail.com>
10023 L:      kasan-dev@googlegroups.com
10024 S:      Maintained
10025 F:      Documentation/dev-tools/kcov.rst
10026 F:      include/linux/kcov.h
10027 F:      include/uapi/linux/kcov.h
10028 F:      kernel/kcov.c
10029 F:      scripts/Makefile.kcov
10030
10031 KCSAN
10032 M:      Marco Elver <elver@google.com>
10033 R:      Dmitry Vyukov <dvyukov@google.com>
10034 L:      kasan-dev@googlegroups.com
10035 S:      Maintained
10036 F:      Documentation/dev-tools/kcsan.rst
10037 F:      include/linux/kcsan*.h
10038 F:      kernel/kcsan/
10039 F:      lib/Kconfig.kcsan
10040 F:      scripts/Makefile.kcsan
10041
10042 KDUMP
10043 M:      Dave Young <dyoung@redhat.com>
10044 M:      Baoquan He <bhe@redhat.com>
10045 R:      Vivek Goyal <vgoyal@redhat.com>
10046 L:      kexec@lists.infradead.org
10047 S:      Maintained
10048 W:      http://lse.sourceforge.net/kdump/
10049 F:      Documentation/admin-guide/kdump/
10050 F:      fs/proc/vmcore.c
10051 F:      include/linux/crash_core.h
10052 F:      include/linux/crash_dump.h
10053 F:      include/uapi/linux/vmcore.h
10054 F:      kernel/crash_*.c
10055
10056 KEENE FM RADIO TRANSMITTER DRIVER
10057 M:      Hans Verkuil <hverkuil@xs4all.nl>
10058 L:      linux-media@vger.kernel.org
10059 S:      Maintained
10060 W:      https://linuxtv.org
10061 T:      git git://linuxtv.org/media_tree.git
10062 F:      drivers/media/radio/radio-keene*
10063
10064 KERNEL AUTOMOUNTER
10065 M:      Ian Kent <raven@themaw.net>
10066 L:      autofs@vger.kernel.org
10067 S:      Maintained
10068 F:      fs/autofs/
10069
10070 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10071 M:      Masahiro Yamada <masahiroy@kernel.org>
10072 M:      Michal Marek <michal.lkml@markovi.net>
10073 L:      linux-kbuild@vger.kernel.org
10074 S:      Maintained
10075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10076 F:      Documentation/kbuild/
10077 F:      Makefile
10078 F:      scripts/*vmlinux*
10079 F:      scripts/Kbuild*
10080 F:      scripts/Makefile*
10081 F:      scripts/basic/
10082 F:      scripts/dummy-tools/
10083 F:      scripts/mk*
10084 F:      scripts/mod/
10085 F:      scripts/package/
10086
10087 KERNEL JANITORS
10088 L:      kernel-janitors@vger.kernel.org
10089 S:      Odd Fixes
10090 W:      http://kernelnewbies.org/KernelJanitors
10091
10092 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10093 M:      "J. Bruce Fields" <bfields@fieldses.org>
10094 M:      Chuck Lever <chuck.lever@oracle.com>
10095 L:      linux-nfs@vger.kernel.org
10096 S:      Supported
10097 W:      http://nfs.sourceforge.net/
10098 T:      git git://linux-nfs.org/~bfields/linux.git
10099 F:      fs/lockd/
10100 F:      fs/nfs_common/
10101 F:      fs/nfsd/
10102 F:      include/linux/lockd/
10103 F:      include/linux/sunrpc/
10104 F:      include/uapi/linux/nfsd/
10105 F:      include/uapi/linux/sunrpc/
10106 F:      net/sunrpc/
10107 F:      Documentation/filesystems/nfs/
10108
10109 KERNEL REGRESSIONS
10110 M:      Thorsten Leemhuis <linux@leemhuis.info>
10111 L:      regressions@lists.linux.dev
10112 S:      Supported
10113
10114 KERNEL SELFTEST FRAMEWORK
10115 M:      Shuah Khan <shuah@kernel.org>
10116 M:      Shuah Khan <skhan@linuxfoundation.org>
10117 L:      linux-kselftest@vger.kernel.org
10118 S:      Maintained
10119 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10121 F:      Documentation/dev-tools/kselftest*
10122 F:      tools/testing/selftests/
10123
10124 KERNEL SMB3 SERVER (KSMBD)
10125 M:      Namjae Jeon <linkinjeon@kernel.org>
10126 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10127 M:      Steve French <sfrench@samba.org>
10128 M:      Hyunchul Lee <hyc.lee@gmail.com>
10129 L:      linux-cifs@vger.kernel.org
10130 S:      Maintained
10131 T:      git git://git.samba.org/ksmbd.git
10132 F:      fs/cifs_common/
10133 F:      fs/ksmbd/
10134
10135 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10136 M:      Brendan Higgins <brendanhiggins@google.com>
10137 L:      linux-kselftest@vger.kernel.org
10138 L:      kunit-dev@googlegroups.com
10139 S:      Maintained
10140 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10141 F:      Documentation/dev-tools/kunit/
10142 F:      include/kunit/
10143 F:      lib/kunit/
10144 F:      tools/testing/kunit/
10145
10146 KERNEL USERMODE HELPER
10147 M:      Luis Chamberlain <mcgrof@kernel.org>
10148 L:      linux-kernel@vger.kernel.org
10149 S:      Maintained
10150 F:      include/linux/umh.h
10151 F:      kernel/umh.c
10152
10153 KERNEL VIRTUAL MACHINE (KVM)
10154 M:      Paolo Bonzini <pbonzini@redhat.com>
10155 L:      kvm@vger.kernel.org
10156 S:      Supported
10157 W:      http://www.linux-kvm.org
10158 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10159 F:      Documentation/virt/kvm/
10160 F:      include/asm-generic/kvm*
10161 F:      include/kvm/iodev.h
10162 F:      include/linux/kvm*
10163 F:      include/trace/events/kvm.h
10164 F:      include/uapi/asm-generic/kvm*
10165 F:      include/uapi/linux/kvm*
10166 F:      tools/kvm/
10167 F:      tools/testing/selftests/kvm/
10168 F:      virt/kvm/*
10169
10170 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10171 M:      Marc Zyngier <maz@kernel.org>
10172 R:      James Morse <james.morse@arm.com>
10173 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10174 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10176 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10177 S:      Maintained
10178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10179 F:      arch/arm64/include/asm/kvm*
10180 F:      arch/arm64/include/uapi/asm/kvm*
10181 F:      arch/arm64/kvm/
10182 F:      include/kvm/arm_*
10183 F:      tools/testing/selftests/kvm/*/aarch64/
10184 F:      tools/testing/selftests/kvm/aarch64/
10185
10186 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10187 M:      Huacai Chen <chenhuacai@kernel.org>
10188 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10189 L:      linux-mips@vger.kernel.org
10190 L:      kvm@vger.kernel.org
10191 S:      Maintained
10192 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10193 F:      arch/mips/include/asm/kvm*
10194 F:      arch/mips/include/uapi/asm/kvm*
10195 F:      arch/mips/kvm/
10196
10197 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10198 M:      Paul Mackerras <paulus@ozlabs.org>
10199 L:      kvm-ppc@vger.kernel.org
10200 S:      Supported
10201 W:      http://www.linux-kvm.org/
10202 T:      git git://github.com/agraf/linux-2.6.git
10203 F:      arch/powerpc/include/asm/kvm*
10204 F:      arch/powerpc/include/uapi/asm/kvm*
10205 F:      arch/powerpc/kernel/kvm*
10206 F:      arch/powerpc/kvm/
10207
10208 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10209 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10210 M:      Janosch Frank <frankja@linux.ibm.com>
10211 R:      David Hildenbrand <david@redhat.com>
10212 R:      Cornelia Huck <cohuck@redhat.com>
10213 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10214 L:      kvm@vger.kernel.org
10215 S:      Supported
10216 W:      http://www.ibm.com/developerworks/linux/linux390/
10217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10218 F:      Documentation/virt/kvm/s390*
10219 F:      arch/s390/include/asm/gmap.h
10220 F:      arch/s390/include/asm/kvm*
10221 F:      arch/s390/include/uapi/asm/kvm*
10222 F:      arch/s390/kernel/uv.c
10223 F:      arch/s390/kvm/
10224 F:      arch/s390/mm/gmap.c
10225 F:      tools/testing/selftests/kvm/*/s390x/
10226 F:      tools/testing/selftests/kvm/s390x/
10227
10228 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10229 M:      Paolo Bonzini <pbonzini@redhat.com>
10230 R:      Sean Christopherson <seanjc@google.com>
10231 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10232 R:      Wanpeng Li <wanpengli@tencent.com>
10233 R:      Jim Mattson <jmattson@google.com>
10234 R:      Joerg Roedel <joro@8bytes.org>
10235 L:      kvm@vger.kernel.org
10236 S:      Supported
10237 W:      http://www.linux-kvm.org
10238 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10239 F:      arch/x86/include/asm/kvm*
10240 F:      arch/x86/include/asm/pvclock-abi.h
10241 F:      arch/x86/include/asm/svm.h
10242 F:      arch/x86/include/asm/vmx*.h
10243 F:      arch/x86/include/uapi/asm/kvm*
10244 F:      arch/x86/include/uapi/asm/svm.h
10245 F:      arch/x86/include/uapi/asm/vmx.h
10246 F:      arch/x86/kernel/kvm.c
10247 F:      arch/x86/kernel/kvmclock.c
10248 F:      arch/x86/kvm/
10249 F:      arch/x86/kvm/*/
10250
10251 KERNFS
10252 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10253 M:      Tejun Heo <tj@kernel.org>
10254 S:      Supported
10255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10256 F:      fs/kernfs/
10257 F:      include/linux/kernfs.h
10258
10259 KEXEC
10260 M:      Eric Biederman <ebiederm@xmission.com>
10261 L:      kexec@lists.infradead.org
10262 S:      Maintained
10263 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10264 F:      include/linux/kexec.h
10265 F:      include/uapi/linux/kexec.h
10266 F:      kernel/kexec*
10267
10268 KEYS-ENCRYPTED
10269 M:      Mimi Zohar <zohar@linux.ibm.com>
10270 L:      linux-integrity@vger.kernel.org
10271 L:      keyrings@vger.kernel.org
10272 S:      Supported
10273 F:      Documentation/security/keys/trusted-encrypted.rst
10274 F:      include/keys/encrypted-type.h
10275 F:      security/keys/encrypted-keys/
10276
10277 KEYS-TRUSTED
10278 M:      James Bottomley <jejb@linux.ibm.com>
10279 M:      Jarkko Sakkinen <jarkko@kernel.org>
10280 M:      Mimi Zohar <zohar@linux.ibm.com>
10281 L:      linux-integrity@vger.kernel.org
10282 L:      keyrings@vger.kernel.org
10283 S:      Supported
10284 F:      Documentation/security/keys/trusted-encrypted.rst
10285 F:      include/keys/trusted-type.h
10286 F:      include/keys/trusted_tpm.h
10287 F:      security/keys/trusted-keys/
10288
10289 KEYS-TRUSTED-TEE
10290 M:      Sumit Garg <sumit.garg@linaro.org>
10291 L:      linux-integrity@vger.kernel.org
10292 L:      keyrings@vger.kernel.org
10293 S:      Supported
10294 F:      include/keys/trusted_tee.h
10295 F:      security/keys/trusted-keys/trusted_tee.c
10296
10297 KEYS/KEYRINGS
10298 M:      David Howells <dhowells@redhat.com>
10299 M:      Jarkko Sakkinen <jarkko@kernel.org>
10300 L:      keyrings@vger.kernel.org
10301 S:      Maintained
10302 F:      Documentation/security/keys/core.rst
10303 F:      include/keys/
10304 F:      include/linux/key-type.h
10305 F:      include/linux/key.h
10306 F:      include/linux/keyctl.h
10307 F:      include/uapi/linux/keyctl.h
10308 F:      security/keys/
10309
10310 KFENCE
10311 M:      Alexander Potapenko <glider@google.com>
10312 M:      Marco Elver <elver@google.com>
10313 R:      Dmitry Vyukov <dvyukov@google.com>
10314 L:      kasan-dev@googlegroups.com
10315 S:      Maintained
10316 F:      Documentation/dev-tools/kfence.rst
10317 F:      arch/*/include/asm/kfence.h
10318 F:      include/linux/kfence.h
10319 F:      lib/Kconfig.kfence
10320 F:      mm/kfence/
10321
10322 KFIFO
10323 M:      Stefani Seibold <stefani@seibold.net>
10324 S:      Maintained
10325 F:      include/linux/kfifo.h
10326 F:      lib/kfifo.c
10327 F:      samples/kfifo/
10328
10329 KGDB / KDB /debug_core
10330 M:      Jason Wessel <jason.wessel@windriver.com>
10331 M:      Daniel Thompson <daniel.thompson@linaro.org>
10332 R:      Douglas Anderson <dianders@chromium.org>
10333 L:      kgdb-bugreport@lists.sourceforge.net
10334 S:      Maintained
10335 W:      http://kgdb.wiki.kernel.org/
10336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10337 F:      Documentation/dev-tools/kgdb.rst
10338 F:      drivers/misc/kgdbts.c
10339 F:      drivers/tty/serial/kgdboc.c
10340 F:      include/linux/kdb.h
10341 F:      include/linux/kgdb.h
10342 F:      kernel/debug/
10343
10344 KHADAS MCU MFD DRIVER
10345 M:      Neil Armstrong <narmstrong@baylibre.com>
10346 L:      linux-amlogic@lists.infradead.org
10347 S:      Maintained
10348 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10349 F:      drivers/mfd/khadas-mcu.c
10350 F:      include/linux/mfd/khadas-mcu.h
10351 F:      drivers/thermal/khadas_mcu_fan.c
10352
10353 KMEMLEAK
10354 M:      Catalin Marinas <catalin.marinas@arm.com>
10355 S:      Maintained
10356 F:      Documentation/dev-tools/kmemleak.rst
10357 F:      include/linux/kmemleak.h
10358 F:      mm/kmemleak.c
10359 F:      samples/kmemleak/kmemleak-test.c
10360
10361 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10362 M:      Luis Chamberlain <mcgrof@kernel.org>
10363 L:      linux-kernel@vger.kernel.org
10364 S:      Maintained
10365 F:      include/linux/kmod.h
10366 F:      kernel/kmod.c
10367 F:      lib/test_kmod.c
10368 F:      tools/testing/selftests/kmod/
10369
10370 KPROBES
10371 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10372 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10373 M:      "David S. Miller" <davem@davemloft.net>
10374 M:      Masami Hiramatsu <mhiramat@kernel.org>
10375 S:      Maintained
10376 F:      Documentation/trace/kprobes.rst
10377 F:      include/asm-generic/kprobes.h
10378 F:      include/linux/kprobes.h
10379 F:      kernel/kprobes.c
10380
10381 KS0108 LCD CONTROLLER DRIVER
10382 M:      Miguel Ojeda <ojeda@kernel.org>
10383 S:      Maintained
10384 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10385 F:      drivers/auxdisplay/ks0108.c
10386 F:      include/linux/ks0108.h
10387
10388 KTD253 BACKLIGHT DRIVER
10389 M:      Linus Walleij <linus.walleij@linaro.org>
10390 S:      Maintained
10391 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10392 F:      drivers/video/backlight/ktd253-backlight.c
10393
10394 KTEST
10395 M:      Steven Rostedt <rostedt@goodmis.org>
10396 M:      John Hawley <warthog9@eaglescrag.net>
10397 S:      Maintained
10398 F:      tools/testing/ktest
10399
10400 L3MDEV
10401 M:      David Ahern <dsahern@kernel.org>
10402 L:      netdev@vger.kernel.org
10403 S:      Maintained
10404 F:      include/net/l3mdev.h
10405 F:      net/l3mdev
10406
10407 L7 BPF FRAMEWORK
10408 M:      John Fastabend <john.fastabend@gmail.com>
10409 M:      Daniel Borkmann <daniel@iogearbox.net>
10410 M:      Jakub Sitnicki <jakub@cloudflare.com>
10411 M:      Lorenz Bauer <lmb@cloudflare.com>
10412 L:      netdev@vger.kernel.org
10413 L:      bpf@vger.kernel.org
10414 S:      Maintained
10415 F:      include/linux/skmsg.h
10416 F:      net/core/skmsg.c
10417 F:      net/core/sock_map.c
10418 F:      net/ipv4/tcp_bpf.c
10419 F:      net/ipv4/udp_bpf.c
10420
10421 LANDLOCK SECURITY MODULE
10422 M:      Mickaël Salaün <mic@digikod.net>
10423 L:      linux-security-module@vger.kernel.org
10424 S:      Supported
10425 W:      https://landlock.io
10426 T:      git https://github.com/landlock-lsm/linux.git
10427 F:      Documentation/security/landlock.rst
10428 F:      Documentation/userspace-api/landlock.rst
10429 F:      include/uapi/linux/landlock.h
10430 F:      samples/landlock/
10431 F:      security/landlock/
10432 F:      tools/testing/selftests/landlock/
10433 K:      landlock
10434 K:      LANDLOCK
10435
10436 LANTIQ / INTEL Ethernet drivers
10437 M:      Hauke Mehrtens <hauke@hauke-m.de>
10438 L:      netdev@vger.kernel.org
10439 S:      Maintained
10440 F:      drivers/net/dsa/lantiq_gswip.c
10441 F:      drivers/net/dsa/lantiq_pce.h
10442 F:      drivers/net/ethernet/lantiq_xrx200.c
10443 F:      net/dsa/tag_gswip.c
10444
10445 LANTIQ MIPS ARCHITECTURE
10446 M:      John Crispin <john@phrozen.org>
10447 L:      linux-mips@vger.kernel.org
10448 S:      Maintained
10449 F:      arch/mips/lantiq
10450 F:      drivers/soc/lantiq
10451
10452 LASI 53c700 driver for PARISC
10453 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10454 L:      linux-scsi@vger.kernel.org
10455 S:      Maintained
10456 F:      Documentation/scsi/53c700.rst
10457 F:      drivers/scsi/53c700*
10458
10459 LEAKING_ADDRESSES
10460 M:      Tobin C. Harding <me@tobin.cc>
10461 M:      Tycho Andersen <tycho@tycho.pizza>
10462 L:      linux-hardening@vger.kernel.org
10463 S:      Maintained
10464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10465 F:      scripts/leaking_addresses.pl
10466
10467 LED SUBSYSTEM
10468 M:      Pavel Machek <pavel@ucw.cz>
10469 L:      linux-leds@vger.kernel.org
10470 S:      Maintained
10471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10472 F:      Documentation/devicetree/bindings/leds/
10473 F:      drivers/leds/
10474 F:      include/linux/leds.h
10475
10476 LEGACY EEPROM DRIVER
10477 M:      Jean Delvare <jdelvare@suse.com>
10478 S:      Maintained
10479 F:      Documentation/misc-devices/eeprom.rst
10480 F:      drivers/misc/eeprom/eeprom.c
10481
10482 LEGO MINDSTORMS EV3
10483 R:      David Lechner <david@lechnology.com>
10484 S:      Maintained
10485 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10486 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10487 F:      drivers/power/supply/lego_ev3_battery.c
10488
10489 LEGO USB Tower driver
10490 M:      Juergen Stuber <starblue@users.sourceforge.net>
10491 L:      legousb-devel@lists.sourceforge.net
10492 S:      Maintained
10493 W:      http://legousb.sourceforge.net/
10494 F:      drivers/usb/misc/legousbtower.c
10495
10496 LG LAPTOP EXTRAS
10497 M:      Matan Ziv-Av <matan@svgalib.org>
10498 L:      platform-driver-x86@vger.kernel.org
10499 S:      Maintained
10500 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10501 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10502 F:      drivers/platform/x86/lg-laptop.c
10503
10504 LG2160 MEDIA DRIVER
10505 M:      Michael Krufky <mkrufky@linuxtv.org>
10506 L:      linux-media@vger.kernel.org
10507 S:      Maintained
10508 W:      https://linuxtv.org
10509 W:      http://github.com/mkrufky
10510 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10511 T:      git git://linuxtv.org/mkrufky/tuners.git
10512 F:      drivers/media/dvb-frontends/lg2160.*
10513
10514 LGDT3305 MEDIA DRIVER
10515 M:      Michael Krufky <mkrufky@linuxtv.org>
10516 L:      linux-media@vger.kernel.org
10517 S:      Maintained
10518 W:      https://linuxtv.org
10519 W:      http://github.com/mkrufky
10520 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10521 T:      git git://linuxtv.org/mkrufky/tuners.git
10522 F:      drivers/media/dvb-frontends/lgdt3305.*
10523
10524 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10525 M:      Viresh Kumar <vireshk@kernel.org>
10526 L:      linux-ide@vger.kernel.org
10527 S:      Maintained
10528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10529 F:      drivers/ata/pata_arasan_cf.c
10530 F:      include/linux/pata_arasan_cf_data.h
10531
10532 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10533 M:      Linus Walleij <linus.walleij@linaro.org>
10534 L:      linux-ide@vger.kernel.org
10535 S:      Maintained
10536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10537 F:      drivers/ata/pata_ftide010.c
10538 F:      drivers/ata/sata_gemini.c
10539 F:      drivers/ata/sata_gemini.h
10540
10541 LIBATA SATA AHCI PLATFORM devices support
10542 M:      Hans de Goede <hdegoede@redhat.com>
10543 M:      Jens Axboe <axboe@kernel.dk>
10544 L:      linux-ide@vger.kernel.org
10545 S:      Maintained
10546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10547 F:      drivers/ata/ahci_platform.c
10548 F:      drivers/ata/libahci_platform.c
10549 F:      include/linux/ahci_platform.h
10550
10551 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10552 M:      Mikael Pettersson <mikpelinux@gmail.com>
10553 L:      linux-ide@vger.kernel.org
10554 S:      Maintained
10555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10556 F:      drivers/ata/sata_promise.*
10557
10558 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10559 M:      Jens Axboe <axboe@kernel.dk>
10560 L:      linux-ide@vger.kernel.org
10561 S:      Maintained
10562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10563 F:      Documentation/devicetree/bindings/ata/
10564 F:      drivers/ata/
10565 F:      include/linux/ata.h
10566 F:      include/linux/libata.h
10567
10568 LIBLOCKDEP
10569 M:      Sasha Levin <alexander.levin@microsoft.com>
10570 S:      Maintained
10571 F:      tools/lib/lockdep/
10572
10573 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10574 M:      Dan Williams <dan.j.williams@intel.com>
10575 M:      Vishal Verma <vishal.l.verma@intel.com>
10576 M:      Dave Jiang <dave.jiang@intel.com>
10577 L:      nvdimm@lists.linux.dev
10578 S:      Supported
10579 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10580 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10581 F:      drivers/nvdimm/blk.c
10582 F:      drivers/nvdimm/region_devs.c
10583
10584 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10585 M:      Vishal Verma <vishal.l.verma@intel.com>
10586 M:      Dan Williams <dan.j.williams@intel.com>
10587 M:      Dave Jiang <dave.jiang@intel.com>
10588 L:      nvdimm@lists.linux.dev
10589 S:      Supported
10590 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10591 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10592 F:      drivers/nvdimm/btt*
10593
10594 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10595 M:      Dan Williams <dan.j.williams@intel.com>
10596 M:      Vishal Verma <vishal.l.verma@intel.com>
10597 M:      Dave Jiang <dave.jiang@intel.com>
10598 L:      nvdimm@lists.linux.dev
10599 S:      Supported
10600 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10601 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10602 F:      drivers/nvdimm/pmem*
10603
10604 LIBNVDIMM: DEVICETREE BINDINGS
10605 M:      Oliver O'Halloran <oohall@gmail.com>
10606 L:      nvdimm@lists.linux.dev
10607 S:      Supported
10608 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10609 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10610 F:      drivers/nvdimm/of_pmem.c
10611
10612 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10613 M:      Dan Williams <dan.j.williams@intel.com>
10614 M:      Vishal Verma <vishal.l.verma@intel.com>
10615 M:      Dave Jiang <dave.jiang@intel.com>
10616 M:      Ira Weiny <ira.weiny@intel.com>
10617 L:      nvdimm@lists.linux.dev
10618 S:      Supported
10619 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10620 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10622 F:      drivers/acpi/nfit/*
10623 F:      drivers/nvdimm/*
10624 F:      include/linux/libnvdimm.h
10625 F:      include/linux/nd.h
10626 F:      include/uapi/linux/ndctl.h
10627 F:      tools/testing/nvdimm/
10628
10629 LICENSES and SPDX stuff
10630 M:      Thomas Gleixner <tglx@linutronix.de>
10631 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10632 L:      linux-spdx@vger.kernel.org
10633 S:      Maintained
10634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10635 F:      COPYING
10636 F:      Documentation/process/license-rules.rst
10637 F:      LICENSES/
10638 F:      scripts/spdxcheck-test.sh
10639 F:      scripts/spdxcheck.py
10640
10641 LINEAR RANGES HELPERS
10642 M:      Mark Brown <broonie@kernel.org>
10643 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10644 F:      lib/linear_ranges.c
10645 F:      lib/test_linear_ranges.c
10646 F:      include/linux/linear_range.h
10647
10648 LINUX FOR POWER MACINTOSH
10649 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10650 L:      linuxppc-dev@lists.ozlabs.org
10651 S:      Odd Fixes
10652 F:      arch/powerpc/platforms/powermac/
10653 F:      drivers/macintosh/
10654
10655 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10656 M:      Michael Ellerman <mpe@ellerman.id.au>
10657 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10658 R:      Paul Mackerras <paulus@samba.org>
10659 L:      linuxppc-dev@lists.ozlabs.org
10660 S:      Supported
10661 W:      https://github.com/linuxppc/wiki/wiki
10662 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10664 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10665 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10666 F:      Documentation/devicetree/bindings/powerpc/
10667 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10668 F:      Documentation/powerpc/
10669 F:      arch/powerpc/
10670 F:      drivers/*/*/*pasemi*
10671 F:      drivers/*/*pasemi*
10672 F:      drivers/char/tpm/tpm_ibmvtpm*
10673 F:      drivers/crypto/nx/
10674 F:      drivers/crypto/vmx/
10675 F:      drivers/i2c/busses/i2c-opal.c
10676 F:      drivers/net/ethernet/ibm/ibmveth.*
10677 F:      drivers/net/ethernet/ibm/ibmvnic.*
10678 F:      drivers/pci/hotplug/pnv_php.c
10679 F:      drivers/pci/hotplug/rpa*
10680 F:      drivers/rtc/rtc-opal.c
10681 F:      drivers/scsi/ibmvscsi/
10682 F:      drivers/tty/hvc/hvc_opal.c
10683 F:      drivers/watchdog/wdrtas.c
10684 F:      tools/testing/selftests/powerpc
10685 N:      /pmac
10686 N:      powermac
10687 N:      powernv
10688 N:      [^a-z0-9]ps3
10689 N:      pseries
10690
10691 LINUX FOR POWERPC EMBEDDED MPC5XXX
10692 M:      Anatolij Gustschin <agust@denx.de>
10693 L:      linuxppc-dev@lists.ozlabs.org
10694 S:      Odd Fixes
10695 F:      arch/powerpc/platforms/512x/
10696 F:      arch/powerpc/platforms/52xx/
10697
10698 LINUX FOR POWERPC EMBEDDED PPC4XX
10699 L:      linuxppc-dev@lists.ozlabs.org
10700 S:      Orphan
10701 F:      arch/powerpc/platforms/40x/
10702 F:      arch/powerpc/platforms/44x/
10703
10704 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10705 M:      Scott Wood <oss@buserror.net>
10706 L:      linuxppc-dev@lists.ozlabs.org
10707 S:      Odd fixes
10708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10709 F:      Documentation/devicetree/bindings/powerpc/fsl/
10710 F:      arch/powerpc/platforms/83xx/
10711 F:      arch/powerpc/platforms/85xx/
10712
10713 LINUX FOR POWERPC EMBEDDED PPC8XX
10714 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10715 L:      linuxppc-dev@lists.ozlabs.org
10716 S:      Maintained
10717 F:      arch/powerpc/platforms/8xx/
10718
10719 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10720 M:      Kees Cook <keescook@chromium.org>
10721 S:      Maintained
10722 F:      drivers/misc/lkdtm/*
10723 F:      tools/testing/selftests/lkdtm/*
10724
10725 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10726 M:      Alan Stern <stern@rowland.harvard.edu>
10727 M:      Andrea Parri <parri.andrea@gmail.com>
10728 M:      Will Deacon <will@kernel.org>
10729 M:      Peter Zijlstra <peterz@infradead.org>
10730 M:      Boqun Feng <boqun.feng@gmail.com>
10731 M:      Nicholas Piggin <npiggin@gmail.com>
10732 M:      David Howells <dhowells@redhat.com>
10733 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10734 M:      Luc Maranget <luc.maranget@inria.fr>
10735 M:      "Paul E. McKenney" <paulmck@kernel.org>
10736 R:      Akira Yokosawa <akiyks@gmail.com>
10737 R:      Daniel Lustig <dlustig@nvidia.com>
10738 R:      Joel Fernandes <joel@joelfernandes.org>
10739 L:      linux-kernel@vger.kernel.org
10740 L:      linux-arch@vger.kernel.org
10741 S:      Supported
10742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10743 F:      Documentation/atomic_bitops.txt
10744 F:      Documentation/atomic_t.txt
10745 F:      Documentation/core-api/refcount-vs-atomic.rst
10746 F:      Documentation/litmus-tests/
10747 F:      Documentation/memory-barriers.txt
10748 F:      tools/memory-model/
10749
10750 LIS3LV02D ACCELEROMETER DRIVER
10751 M:      Eric Piel <eric.piel@tremplin-utc.net>
10752 S:      Maintained
10753 F:      Documentation/misc-devices/lis3lv02d.rst
10754 F:      drivers/misc/lis3lv02d/
10755 F:      drivers/platform/x86/hp_accel.c
10756
10757 LIST KUNIT TEST
10758 M:      David Gow <davidgow@google.com>
10759 L:      linux-kselftest@vger.kernel.org
10760 L:      kunit-dev@googlegroups.com
10761 S:      Maintained
10762 F:      lib/list-test.c
10763
10764 LITEX PLATFORM
10765 M:      Karol Gugala <kgugala@antmicro.com>
10766 M:      Mateusz Holenko <mholenko@antmicro.com>
10767 S:      Maintained
10768 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10769 F:      arch/openrisc/boot/dts/or1klitex.dts
10770 F:      drivers/soc/litex/litex_soc_ctrl.c
10771 F:      drivers/tty/serial/liteuart.c
10772 F:      include/linux/litex.h
10773
10774 LIVE PATCHING
10775 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10776 M:      Jiri Kosina <jikos@kernel.org>
10777 M:      Miroslav Benes <mbenes@suse.cz>
10778 M:      Petr Mladek <pmladek@suse.com>
10779 R:      Joe Lawrence <joe.lawrence@redhat.com>
10780 L:      live-patching@vger.kernel.org
10781 S:      Maintained
10782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10783 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10784 F:      Documentation/livepatch/
10785 F:      arch/powerpc/include/asm/livepatch.h
10786 F:      arch/s390/include/asm/livepatch.h
10787 F:      arch/x86/include/asm/livepatch.h
10788 F:      include/linux/livepatch.h
10789 F:      kernel/livepatch/
10790 F:      lib/livepatch/
10791 F:      samples/livepatch/
10792 F:      tools/testing/selftests/livepatch/
10793
10794 LLC (802.2)
10795 L:      netdev@vger.kernel.org
10796 S:      Odd fixes
10797 F:      include/linux/llc.h
10798 F:      include/net/llc*
10799 F:      include/uapi/linux/llc.h
10800 F:      net/llc/
10801
10802 LM73 HARDWARE MONITOR DRIVER
10803 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10804 L:      linux-hwmon@vger.kernel.org
10805 S:      Maintained
10806 F:      drivers/hwmon/lm73.c
10807
10808 LM78 HARDWARE MONITOR DRIVER
10809 M:      Jean Delvare <jdelvare@suse.com>
10810 L:      linux-hwmon@vger.kernel.org
10811 S:      Maintained
10812 F:      Documentation/hwmon/lm78.rst
10813 F:      drivers/hwmon/lm78.c
10814
10815 LM83 HARDWARE MONITOR DRIVER
10816 M:      Jean Delvare <jdelvare@suse.com>
10817 L:      linux-hwmon@vger.kernel.org
10818 S:      Maintained
10819 F:      Documentation/hwmon/lm83.rst
10820 F:      drivers/hwmon/lm83.c
10821
10822 LM90 HARDWARE MONITOR DRIVER
10823 M:      Jean Delvare <jdelvare@suse.com>
10824 L:      linux-hwmon@vger.kernel.org
10825 S:      Maintained
10826 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10827 F:      Documentation/hwmon/lm90.rst
10828 F:      drivers/hwmon/lm90.c
10829 F:      include/dt-bindings/thermal/lm90.h
10830
10831 LM95234 HARDWARE MONITOR DRIVER
10832 M:      Guenter Roeck <linux@roeck-us.net>
10833 L:      linux-hwmon@vger.kernel.org
10834 S:      Maintained
10835 F:      Documentation/hwmon/lm95234.rst
10836 F:      drivers/hwmon/lm95234.c
10837
10838 LME2510 MEDIA DRIVER
10839 M:      Malcolm Priestley <tvboxspy@gmail.com>
10840 L:      linux-media@vger.kernel.org
10841 S:      Maintained
10842 W:      https://linuxtv.org
10843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10844 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10845
10846 LOADPIN SECURITY MODULE
10847 M:      Kees Cook <keescook@chromium.org>
10848 S:      Supported
10849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10850 F:      Documentation/admin-guide/LSM/LoadPin.rst
10851 F:      security/loadpin/
10852
10853 LOCKING PRIMITIVES
10854 M:      Peter Zijlstra <peterz@infradead.org>
10855 M:      Ingo Molnar <mingo@redhat.com>
10856 M:      Will Deacon <will@kernel.org>
10857 R:      Waiman Long <longman@redhat.com>
10858 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10859 L:      linux-kernel@vger.kernel.org
10860 S:      Maintained
10861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10862 F:      Documentation/locking/
10863 F:      arch/*/include/asm/spinlock*.h
10864 F:      include/linux/lockdep.h
10865 F:      include/linux/mutex*.h
10866 F:      include/linux/rwlock*.h
10867 F:      include/linux/rwsem*.h
10868 F:      include/linux/seqlock.h
10869 F:      include/linux/spinlock*.h
10870 F:      kernel/locking/
10871 F:      lib/locking*.[ch]
10872 X:      kernel/locking/locktorture.c
10873
10874 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10875 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10876 L:      linux-ntfs-dev@lists.sourceforge.net
10877 S:      Maintained
10878 W:      http://www.linux-ntfs.org/content/view/19/37/
10879 F:      Documentation/admin-guide/ldm.rst
10880 F:      block/partitions/ldm.*
10881
10882 LOGITECH HID GAMING KEYBOARDS
10883 M:      Hans de Goede <hdegoede@redhat.com>
10884 L:      linux-input@vger.kernel.org
10885 S:      Maintained
10886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10887 F:      drivers/hid/hid-lg-g15.c
10888
10889 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10890 M:      Adrien Grassein <adrien.grassein@gmail.com>
10891 S:      Maintained
10892 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10893 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
10894
10895 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10896 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10897 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10898 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10899 L:      MPT-FusionLinux.pdl@broadcom.com
10900 L:      linux-scsi@vger.kernel.org
10901 S:      Supported
10902 W:      http://www.avagotech.com/support/
10903 F:      drivers/message/fusion/
10904 F:      drivers/scsi/mpt3sas/
10905
10906 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10907 M:      Matthew Wilcox <willy@infradead.org>
10908 L:      linux-scsi@vger.kernel.org
10909 S:      Maintained
10910 F:      drivers/scsi/sym53c8xx_2/
10911
10912 LTC1660 DAC DRIVER
10913 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10914 L:      linux-iio@vger.kernel.org
10915 S:      Maintained
10916 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10917 F:      drivers/iio/dac/ltc1660.c
10918
10919 LTC2947 HARDWARE MONITOR DRIVER
10920 M:      Nuno Sá <nuno.sa@analog.com>
10921 L:      linux-hwmon@vger.kernel.org
10922 S:      Supported
10923 W:      http://ez.analog.com/community/linux-device-drivers
10924 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10925 F:      drivers/hwmon/ltc2947-core.c
10926 F:      drivers/hwmon/ltc2947-i2c.c
10927 F:      drivers/hwmon/ltc2947-spi.c
10928 F:      drivers/hwmon/ltc2947.h
10929
10930 LTC2983 IIO TEMPERATURE DRIVER
10931 M:      Nuno Sá <nuno.sa@analog.com>
10932 L:      linux-iio@vger.kernel.org
10933 S:      Supported
10934 W:      http://ez.analog.com/community/linux-device-drivers
10935 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10936 F:      drivers/iio/temperature/ltc2983.c
10937
10938 LTC4261 HARDWARE MONITOR DRIVER
10939 M:      Guenter Roeck <linux@roeck-us.net>
10940 L:      linux-hwmon@vger.kernel.org
10941 S:      Maintained
10942 F:      Documentation/hwmon/ltc4261.rst
10943 F:      drivers/hwmon/ltc4261.c
10944
10945 LTC4306 I2C MULTIPLEXER DRIVER
10946 M:      Michael Hennerich <michael.hennerich@analog.com>
10947 L:      linux-i2c@vger.kernel.org
10948 S:      Supported
10949 W:      http://ez.analog.com/community/linux-device-drivers
10950 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10951 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10952
10953 LTP (Linux Test Project)
10954 M:      Mike Frysinger <vapier@gentoo.org>
10955 M:      Cyril Hrubis <chrubis@suse.cz>
10956 M:      Wanlong Gao <wanlong.gao@gmail.com>
10957 M:      Jan Stancek <jstancek@redhat.com>
10958 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10959 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10960 L:      ltp@lists.linux.it (subscribers-only)
10961 S:      Maintained
10962 W:      http://linux-test-project.github.io/
10963 T:      git git://github.com/linux-test-project/ltp.git
10964
10965 LYNX PCS MODULE
10966 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10967 L:      netdev@vger.kernel.org
10968 S:      Supported
10969 F:      drivers/net/pcs/pcs-lynx.c
10970 F:      include/linux/pcs-lynx.h
10971
10972 M68K ARCHITECTURE
10973 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10974 L:      linux-m68k@lists.linux-m68k.org
10975 S:      Maintained
10976 W:      http://www.linux-m68k.org/
10977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10978 F:      arch/m68k/
10979 F:      drivers/zorro/
10980
10981 M68K ON APPLE MACINTOSH
10982 M:      Joshua Thompson <funaho@jurai.org>
10983 L:      linux-m68k@lists.linux-m68k.org
10984 S:      Maintained
10985 W:      http://www.mac.linux-m68k.org/
10986 F:      arch/m68k/mac/
10987 F:      drivers/macintosh/adb-iop.c
10988 F:      drivers/macintosh/via-macii.c
10989
10990 M68K ON HP9000/300
10991 M:      Philip Blundell <philb@gnu.org>
10992 S:      Maintained
10993 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10994 F:      arch/m68k/hp300/
10995
10996 M88DS3103 MEDIA DRIVER
10997 M:      Antti Palosaari <crope@iki.fi>
10998 L:      linux-media@vger.kernel.org
10999 S:      Maintained
11000 W:      https://linuxtv.org
11001 W:      http://palosaari.fi/linux/
11002 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11003 T:      git git://linuxtv.org/anttip/media_tree.git
11004 F:      drivers/media/dvb-frontends/m88ds3103*
11005
11006 M88RS2000 MEDIA DRIVER
11007 M:      Malcolm Priestley <tvboxspy@gmail.com>
11008 L:      linux-media@vger.kernel.org
11009 S:      Maintained
11010 W:      https://linuxtv.org
11011 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11012 F:      drivers/media/dvb-frontends/m88rs2000*
11013
11014 MA901 MASTERKIT USB FM RADIO DRIVER
11015 M:      Alexey Klimov <klimov.linux@gmail.com>
11016 L:      linux-media@vger.kernel.org
11017 S:      Maintained
11018 T:      git git://linuxtv.org/media_tree.git
11019 F:      drivers/media/radio/radio-ma901.c
11020
11021 MAC80211
11022 M:      Johannes Berg <johannes@sipsolutions.net>
11023 L:      linux-wireless@vger.kernel.org
11024 S:      Maintained
11025 W:      https://wireless.wiki.kernel.org/
11026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11028 F:      Documentation/networking/mac80211-injection.rst
11029 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11030 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11031 F:      include/net/mac80211.h
11032 F:      net/mac80211/
11033
11034 MAILBOX API
11035 M:      Jassi Brar <jassisinghbrar@gmail.com>
11036 L:      linux-kernel@vger.kernel.org
11037 S:      Maintained
11038 F:      drivers/mailbox/
11039 F:      include/linux/mailbox_client.h
11040 F:      include/linux/mailbox_controller.h
11041 F:      include/dt-bindings/mailbox/
11042 F:      Documentation/devicetree/bindings/mailbox/
11043
11044 MAILBOX ARM MHUv2
11045 M:      Viresh Kumar <viresh.kumar@linaro.org>
11046 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11047 L:      linux-kernel@vger.kernel.org
11048 S:      Maintained
11049 F:      drivers/mailbox/arm_mhuv2.c
11050 F:      include/linux/mailbox/arm_mhuv2_message.h
11051 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11052
11053 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11054 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11055 L:      linux-man@vger.kernel.org
11056 S:      Maintained
11057 W:      http://www.kernel.org/doc/man-pages
11058
11059 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11060 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11061 L:      linux-mips@vger.kernel.org
11062 S:      Maintained
11063 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
11064
11065 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11066 M:      Andrew Lunn <andrew@lunn.ch>
11067 M:      Vivien Didelot <vivien.didelot@gmail.com>
11068 L:      netdev@vger.kernel.org
11069 S:      Maintained
11070 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11071 F:      Documentation/networking/devlink/mv88e6xxx.rst
11072 F:      drivers/net/dsa/mv88e6xxx/
11073 F:      include/linux/platform_data/mv88e6xxx.h
11074
11075 MARVELL ARMADA 3700 PHY DRIVERS
11076 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11077 S:      Maintained
11078 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11079 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11080 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11081 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11082
11083 MARVELL ARMADA DRM SUPPORT
11084 M:      Russell King <linux@armlinux.org.uk>
11085 S:      Maintained
11086 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11087 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11088 F:      Documentation/devicetree/bindings/display/armada/
11089 F:      drivers/gpu/drm/armada/
11090 F:      include/uapi/drm/armada_drm.h
11091
11092 MARVELL CRYPTO DRIVER
11093 M:      Boris Brezillon <bbrezillon@kernel.org>
11094 M:      Arnaud Ebalard <arno@natisbad.org>
11095 M:      Srujana Challa <schalla@marvell.com>
11096 L:      linux-crypto@vger.kernel.org
11097 S:      Maintained
11098 F:      drivers/crypto/marvell/
11099 F:      include/linux/soc/marvell/octeontx2/
11100
11101 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11102 M:      Mirko Lindner <mlindner@marvell.com>
11103 M:      Stephen Hemminger <stephen@networkplumber.org>
11104 L:      netdev@vger.kernel.org
11105 S:      Maintained
11106 F:      drivers/net/ethernet/marvell/sk*
11107
11108 MARVELL LIBERTAS WIRELESS DRIVER
11109 L:      libertas-dev@lists.infradead.org
11110 S:      Orphan
11111 F:      drivers/net/wireless/marvell/libertas/
11112
11113 MARVELL MACCHIATOBIN SUPPORT
11114 M:      Russell King <linux@armlinux.org.uk>
11115 L:      linux-arm-kernel@lists.infradead.org
11116 S:      Maintained
11117 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11118
11119 MARVELL MV643XX ETHERNET DRIVER
11120 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11121 L:      netdev@vger.kernel.org
11122 S:      Maintained
11123 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11124 F:      include/linux/mv643xx.h
11125
11126 MARVELL MV88X3310 PHY DRIVER
11127 M:      Russell King <linux@armlinux.org.uk>
11128 M:      Marek Behún <kabel@kernel.org>
11129 L:      netdev@vger.kernel.org
11130 S:      Maintained
11131 F:      drivers/net/phy/marvell10g.c
11132
11133 MARVELL MVEBU THERMAL DRIVER
11134 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11135 S:      Maintained
11136 F:      drivers/thermal/armada_thermal.c
11137
11138 MARVELL MVNETA ETHERNET DRIVER
11139 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11140 L:      netdev@vger.kernel.org
11141 S:      Maintained
11142 F:      drivers/net/ethernet/marvell/mvneta.*
11143
11144 MARVELL MVPP2 ETHERNET DRIVER
11145 M:      Marcin Wojtas <mw@semihalf.com>
11146 M:      Russell King <linux@armlinux.org.uk>
11147 L:      netdev@vger.kernel.org
11148 S:      Maintained
11149 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11150 F:      drivers/net/ethernet/marvell/mvpp2/
11151
11152 MARVELL MWIFIEX WIRELESS DRIVER
11153 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11154 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11155 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11156 M:      Xinming Hu <huxinming820@gmail.com>
11157 L:      linux-wireless@vger.kernel.org
11158 S:      Maintained
11159 F:      drivers/net/wireless/marvell/mwifiex/
11160
11161 MARVELL MWL8K WIRELESS DRIVER
11162 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11163 L:      linux-wireless@vger.kernel.org
11164 S:      Odd Fixes
11165 F:      drivers/net/wireless/marvell/mwl8k.c
11166
11167 MARVELL NAND CONTROLLER DRIVER
11168 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11169 L:      linux-mtd@lists.infradead.org
11170 S:      Maintained
11171 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11172 F:      drivers/mtd/nand/raw/marvell_nand.c
11173
11174 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11175 M:      Sunil Goutham <sgoutham@marvell.com>
11176 M:      Geetha sowjanya <gakula@marvell.com>
11177 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11178 M:      hariprasad <hkelam@marvell.com>
11179 L:      netdev@vger.kernel.org
11180 S:      Supported
11181 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11182 F:      include/linux/soc/marvell/octeontx2/
11183
11184 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11185 M:      Sunil Goutham <sgoutham@marvell.com>
11186 M:      Linu Cherian <lcherian@marvell.com>
11187 M:      Geetha sowjanya <gakula@marvell.com>
11188 M:      Jerin Jacob <jerinj@marvell.com>
11189 M:      hariprasad <hkelam@marvell.com>
11190 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11191 L:      netdev@vger.kernel.org
11192 S:      Supported
11193 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11194 F:      drivers/net/ethernet/marvell/octeontx2/af/
11195
11196 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11197 M:      Vadym Kochan <vkochan@marvell.com>
11198 M:      Taras Chornyi <tchornyi@marvell.com>
11199 S:      Supported
11200 W:      https://github.com/Marvell-switching/switchdev-prestera
11201 F:      drivers/net/ethernet/marvell/prestera/
11202
11203 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11204 M:      Nicolas Pitre <nico@fluxnic.net>
11205 S:      Odd Fixes
11206 F:      drivers/mmc/host/mvsdio.*
11207
11208 MARVELL USB MDIO CONTROLLER DRIVER
11209 M:      Tobias Waldekranz <tobias@waldekranz.com>
11210 L:      netdev@vger.kernel.org
11211 S:      Maintained
11212 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11213 F:      drivers/net/mdio/mdio-mvusb.c
11214
11215 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11216 M:      Hu Ziji <huziji@marvell.com>
11217 L:      linux-mmc@vger.kernel.org
11218 S:      Supported
11219 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11220 F:      drivers/mmc/host/sdhci-xenon*
11221
11222 MATROX FRAMEBUFFER DRIVER
11223 L:      linux-fbdev@vger.kernel.org
11224 S:      Orphan
11225 F:      drivers/video/fbdev/matrox/matroxfb_*
11226 F:      include/uapi/linux/matroxfb.h
11227
11228 MAX15301 DRIVER
11229 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11230 L:      linux-hwmon@vger.kernel.org
11231 S:      Maintained
11232 F:      Documentation/hwmon/max15301.rst
11233 F:      drivers/hwmon/pmbus/max15301.c
11234
11235 MAX16065 HARDWARE MONITOR DRIVER
11236 M:      Guenter Roeck <linux@roeck-us.net>
11237 L:      linux-hwmon@vger.kernel.org
11238 S:      Maintained
11239 F:      Documentation/hwmon/max16065.rst
11240 F:      drivers/hwmon/max16065.c
11241
11242 MAX2175 SDR TUNER DRIVER
11243 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11244 L:      linux-media@vger.kernel.org
11245 S:      Maintained
11246 T:      git git://linuxtv.org/media_tree.git
11247 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11248 F:      Documentation/userspace-api/media/drivers/max2175.rst
11249 F:      drivers/media/i2c/max2175*
11250 F:      include/uapi/linux/max2175.h
11251
11252 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11253 L:      linux-hwmon@vger.kernel.org
11254 S:      Orphan
11255 F:      Documentation/hwmon/max6650.rst
11256 F:      drivers/hwmon/max6650.c
11257
11258 MAX6697 HARDWARE MONITOR DRIVER
11259 M:      Guenter Roeck <linux@roeck-us.net>
11260 L:      linux-hwmon@vger.kernel.org
11261 S:      Maintained
11262 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11263 F:      Documentation/hwmon/max6697.rst
11264 F:      drivers/hwmon/max6697.c
11265 F:      include/linux/platform_data/max6697.h
11266
11267 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11268 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11269 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11270 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11271 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11272 L:      linux-media@vger.kernel.org
11273 S:      Maintained
11274 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11275 F:      drivers/media/i2c/max9286.c
11276
11277 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11278 M:      Peter Rosin <peda@axentia.se>
11279 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11280 S:      Maintained
11281 F:      Documentation/devicetree/bindings/sound/max9860.txt
11282 F:      sound/soc/codecs/max9860.*
11283
11284 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11285 M:      Andreas Klinger <ak@it-klinger.de>
11286 L:      linux-iio@vger.kernel.org
11287 S:      Maintained
11288 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11289 F:      drivers/iio/proximity/mb1232.c
11290
11291 MAXIM MAX77650 PMIC MFD DRIVER
11292 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
11293 L:      linux-kernel@vger.kernel.org
11294 S:      Maintained
11295 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11296 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11297 F:      drivers/gpio/gpio-max77650.c
11298 F:      drivers/input/misc/max77650-onkey.c
11299 F:      drivers/leds/leds-max77650.c
11300 F:      drivers/mfd/max77650.c
11301 F:      drivers/power/supply/max77650-charger.c
11302 F:      drivers/regulator/max77650-regulator.c
11303 F:      include/linux/mfd/max77650.h
11304
11305 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11306 M:      Javier Martinez Canillas <javier@dowhile0.org>
11307 L:      linux-kernel@vger.kernel.org
11308 S:      Supported
11309 F:      Documentation/devicetree/bindings/*/*max77802.txt
11310 F:      drivers/regulator/max77802-regulator.c
11311 F:      include/dt-bindings/*/*max77802.h
11312
11313 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11314 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11315 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11316 L:      linux-pm@vger.kernel.org
11317 S:      Supported
11318 F:      drivers/power/supply/max14577_charger.c
11319 F:      drivers/power/supply/max77693_charger.c
11320
11321 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11322 M:      Chanwoo Choi <cw00.choi@samsung.com>
11323 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11324 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11325 L:      linux-kernel@vger.kernel.org
11326 S:      Supported
11327 F:      Documentation/devicetree/bindings/*/max77686.txt
11328 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11329 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11330 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11331 F:      drivers/*/max14577*.c
11332 F:      drivers/*/max77686*.c
11333 F:      drivers/*/max77693*.c
11334 F:      drivers/clk/clk-max77686.c
11335 F:      drivers/extcon/extcon-max14577.c
11336 F:      drivers/extcon/extcon-max77693.c
11337 F:      drivers/rtc/rtc-max77686.c
11338 F:      include/linux/mfd/max14577*.h
11339 F:      include/linux/mfd/max77686*.h
11340 F:      include/linux/mfd/max77693*.h
11341
11342 MAXIRADIO FM RADIO RECEIVER DRIVER
11343 M:      Hans Verkuil <hverkuil@xs4all.nl>
11344 L:      linux-media@vger.kernel.org
11345 S:      Maintained
11346 W:      https://linuxtv.org
11347 T:      git git://linuxtv.org/media_tree.git
11348 F:      drivers/media/radio/radio-maxiradio*
11349
11350 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11351 R:      Yasushi SHOJI <yashi@spacecubics.com>
11352 L:      linux-can@vger.kernel.org
11353 S:      Maintained
11354 F:      drivers/net/can/usb/mcba_usb.c
11355
11356 MCAN MMIO DEVICE DRIVER
11357 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11358 L:      linux-can@vger.kernel.org
11359 S:      Maintained
11360 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11361 F:      drivers/net/can/m_can/m_can.c
11362 F:      drivers/net/can/m_can/m_can.h
11363 F:      drivers/net/can/m_can/m_can_platform.c
11364
11365 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11366 M:      Rishi Gupta <gupt21@gmail.com>
11367 L:      linux-i2c@vger.kernel.org
11368 L:      linux-input@vger.kernel.org
11369 S:      Maintained
11370 F:      drivers/hid/hid-mcp2221.c
11371
11372 MCP251XFD SPI-CAN NETWORK DRIVER
11373 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11374 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11375 R:      Thomas Kopp <thomas.kopp@microchip.com>
11376 L:      linux-can@vger.kernel.org
11377 S:      Maintained
11378 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11379 F:      drivers/net/can/spi/mcp251xfd/
11380
11381 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11382 M:      Peter Rosin <peda@axentia.se>
11383 L:      linux-iio@vger.kernel.org
11384 S:      Maintained
11385 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11386 F:      drivers/iio/potentiometer/mcp4018.c
11387 F:      drivers/iio/potentiometer/mcp4531.c
11388
11389 MCR20A IEEE-802.15.4 RADIO DRIVER
11390 M:      Xue Liu <liuxuenetmail@gmail.com>
11391 L:      linux-wpan@vger.kernel.org
11392 S:      Maintained
11393 W:      https://github.com/xueliu/mcr20a-linux
11394 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11395 F:      drivers/net/ieee802154/mcr20a.c
11396 F:      drivers/net/ieee802154/mcr20a.h
11397
11398 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11399 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11400 L:      linux-iio@vger.kernel.org
11401 S:      Maintained
11402 F:      drivers/iio/dac/cio-dac.c
11403
11404 MEDIA CONTROLLER FRAMEWORK
11405 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11406 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11407 L:      linux-media@vger.kernel.org
11408 S:      Supported
11409 W:      https://www.linuxtv.org
11410 T:      git git://linuxtv.org/media_tree.git
11411 F:      drivers/media/mc/
11412 F:      include/media/media-*.h
11413 F:      include/uapi/linux/media.h
11414
11415 MEDIA DRIVER FOR FREESCALE IMX PXP
11416 M:      Philipp Zabel <p.zabel@pengutronix.de>
11417 L:      linux-media@vger.kernel.org
11418 S:      Maintained
11419 T:      git git://linuxtv.org/media_tree.git
11420 F:      drivers/media/platform/imx-pxp.[ch]
11421
11422 MEDIA DRIVERS FOR ASCOT2E
11423 M:      Sergey Kozlov <serjk@netup.ru>
11424 M:      Abylay Ospan <aospan@netup.ru>
11425 L:      linux-media@vger.kernel.org
11426 S:      Supported
11427 W:      https://linuxtv.org
11428 W:      http://netup.tv/
11429 T:      git git://linuxtv.org/media_tree.git
11430 F:      drivers/media/dvb-frontends/ascot2e*
11431
11432 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11433 M:      Jasmin Jessich <jasmin@anw.at>
11434 L:      linux-media@vger.kernel.org
11435 S:      Maintained
11436 W:      https://linuxtv.org
11437 T:      git git://linuxtv.org/media_tree.git
11438 F:      drivers/media/dvb-frontends/cxd2099*
11439
11440 MEDIA DRIVERS FOR CXD2841ER
11441 M:      Sergey Kozlov <serjk@netup.ru>
11442 M:      Abylay Ospan <aospan@netup.ru>
11443 L:      linux-media@vger.kernel.org
11444 S:      Supported
11445 W:      https://linuxtv.org
11446 W:      http://netup.tv/
11447 T:      git git://linuxtv.org/media_tree.git
11448 F:      drivers/media/dvb-frontends/cxd2841er*
11449
11450 MEDIA DRIVERS FOR CXD2880
11451 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11452 L:      linux-media@vger.kernel.org
11453 S:      Supported
11454 W:      http://linuxtv.org/
11455 T:      git git://linuxtv.org/media_tree.git
11456 F:      drivers/media/dvb-frontends/cxd2880/*
11457 F:      drivers/media/spi/cxd2880*
11458
11459 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11460 L:      linux-media@vger.kernel.org
11461 S:      Orphan
11462 W:      https://linuxtv.org
11463 T:      git git://linuxtv.org/media_tree.git
11464 F:      drivers/media/pci/ddbridge/*
11465
11466 MEDIA DRIVERS FOR FREESCALE IMX
11467 M:      Steve Longerbeam <slongerbeam@gmail.com>
11468 M:      Philipp Zabel <p.zabel@pengutronix.de>
11469 L:      linux-media@vger.kernel.org
11470 S:      Maintained
11471 T:      git git://linuxtv.org/media_tree.git
11472 F:      Documentation/admin-guide/media/imx.rst
11473 F:      Documentation/devicetree/bindings/media/imx.txt
11474 F:      drivers/staging/media/imx/
11475 F:      include/linux/imx-media.h
11476 F:      include/media/imx.h
11477
11478 MEDIA DRIVERS FOR FREESCALE IMX7
11479 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11480 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11481 L:      linux-media@vger.kernel.org
11482 S:      Maintained
11483 T:      git git://linuxtv.org/media_tree.git
11484 F:      Documentation/admin-guide/media/imx7.rst
11485 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11486 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11487 F:      drivers/staging/media/imx/imx7-media-csi.c
11488 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11489
11490 MEDIA DRIVERS FOR HELENE
11491 M:      Abylay Ospan <aospan@netup.ru>
11492 L:      linux-media@vger.kernel.org
11493 S:      Supported
11494 W:      https://linuxtv.org
11495 W:      http://netup.tv/
11496 T:      git git://linuxtv.org/media_tree.git
11497 F:      drivers/media/dvb-frontends/helene*
11498
11499 MEDIA DRIVERS FOR HORUS3A
11500 M:      Sergey Kozlov <serjk@netup.ru>
11501 M:      Abylay Ospan <aospan@netup.ru>
11502 L:      linux-media@vger.kernel.org
11503 S:      Supported
11504 W:      https://linuxtv.org
11505 W:      http://netup.tv/
11506 T:      git git://linuxtv.org/media_tree.git
11507 F:      drivers/media/dvb-frontends/horus3a*
11508
11509 MEDIA DRIVERS FOR LNBH25
11510 M:      Sergey Kozlov <serjk@netup.ru>
11511 M:      Abylay Ospan <aospan@netup.ru>
11512 L:      linux-media@vger.kernel.org
11513 S:      Supported
11514 W:      https://linuxtv.org
11515 W:      http://netup.tv/
11516 T:      git git://linuxtv.org/media_tree.git
11517 F:      drivers/media/dvb-frontends/lnbh25*
11518
11519 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11520 L:      linux-media@vger.kernel.org
11521 S:      Orphan
11522 W:      https://linuxtv.org
11523 T:      git git://linuxtv.org/media_tree.git
11524 F:      drivers/media/dvb-frontends/mxl5xx*
11525
11526 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11527 M:      Sergey Kozlov <serjk@netup.ru>
11528 M:      Abylay Ospan <aospan@netup.ru>
11529 L:      linux-media@vger.kernel.org
11530 S:      Supported
11531 W:      https://linuxtv.org
11532 W:      http://netup.tv/
11533 T:      git git://linuxtv.org/media_tree.git
11534 F:      drivers/media/pci/netup_unidvb/*
11535
11536 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11537 M:      Dmitry Osipenko <digetx@gmail.com>
11538 L:      linux-media@vger.kernel.org
11539 L:      linux-tegra@vger.kernel.org
11540 S:      Maintained
11541 T:      git git://linuxtv.org/media_tree.git
11542 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11543 F:      drivers/staging/media/tegra-vde/
11544
11545 MEDIA DRIVERS FOR RENESAS - CEU
11546 M:      Jacopo Mondi <jacopo@jmondi.org>
11547 L:      linux-media@vger.kernel.org
11548 L:      linux-renesas-soc@vger.kernel.org
11549 S:      Supported
11550 T:      git git://linuxtv.org/media_tree.git
11551 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11552 F:      drivers/media/platform/renesas-ceu.c
11553 F:      include/media/drv-intf/renesas-ceu.h
11554
11555 MEDIA DRIVERS FOR RENESAS - DRIF
11556 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11557 L:      linux-media@vger.kernel.org
11558 L:      linux-renesas-soc@vger.kernel.org
11559 S:      Supported
11560 T:      git git://linuxtv.org/media_tree.git
11561 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11562 F:      drivers/media/platform/rcar_drif.c
11563
11564 MEDIA DRIVERS FOR RENESAS - FCP
11565 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11566 L:      linux-media@vger.kernel.org
11567 L:      linux-renesas-soc@vger.kernel.org
11568 S:      Supported
11569 T:      git git://linuxtv.org/media_tree.git
11570 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11571 F:      drivers/media/platform/rcar-fcp.c
11572 F:      include/media/rcar-fcp.h
11573
11574 MEDIA DRIVERS FOR RENESAS - FDP1
11575 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11576 L:      linux-media@vger.kernel.org
11577 L:      linux-renesas-soc@vger.kernel.org
11578 S:      Supported
11579 T:      git git://linuxtv.org/media_tree.git
11580 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11581 F:      drivers/media/platform/rcar_fdp1.c
11582
11583 MEDIA DRIVERS FOR RENESAS - VIN
11584 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11585 L:      linux-media@vger.kernel.org
11586 L:      linux-renesas-soc@vger.kernel.org
11587 S:      Supported
11588 T:      git git://linuxtv.org/media_tree.git
11589 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11590 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11591 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11592 F:      drivers/media/platform/rcar-vin/
11593
11594 MEDIA DRIVERS FOR RENESAS - VSP1
11595 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11596 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11597 L:      linux-media@vger.kernel.org
11598 L:      linux-renesas-soc@vger.kernel.org
11599 S:      Supported
11600 T:      git git://linuxtv.org/media_tree.git
11601 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11602 F:      drivers/media/platform/vsp1/
11603
11604 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11605 L:      linux-media@vger.kernel.org
11606 S:      Orphan
11607 W:      https://linuxtv.org
11608 T:      git git://linuxtv.org/media_tree.git
11609 F:      drivers/media/dvb-frontends/stv0910*
11610
11611 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11612 L:      linux-media@vger.kernel.org
11613 S:      Orphan
11614 W:      https://linuxtv.org
11615 T:      git git://linuxtv.org/media_tree.git
11616 F:      drivers/media/dvb-frontends/stv6111*
11617
11618 MEDIA DRIVERS FOR STM32 - DCMI
11619 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11620 L:      linux-media@vger.kernel.org
11621 S:      Supported
11622 T:      git git://linuxtv.org/media_tree.git
11623 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11624 F:      drivers/media/platform/stm32/stm32-dcmi.c
11625
11626 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11627 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11628 L:      linux-media@vger.kernel.org
11629 S:      Maintained
11630 W:      https://linuxtv.org
11631 Q:      http://patchwork.kernel.org/project/linux-media/list/
11632 T:      git git://linuxtv.org/media_tree.git
11633 F:      Documentation/admin-guide/media/
11634 F:      Documentation/devicetree/bindings/media/
11635 F:      Documentation/driver-api/media/
11636 F:      Documentation/userspace-api/media/
11637 F:      drivers/media/
11638 F:      drivers/staging/media/
11639 F:      include/linux/platform_data/media/
11640 F:      include/media/
11641 F:      include/uapi/linux/dvb/
11642 F:      include/uapi/linux/ivtv*
11643 F:      include/uapi/linux/media.h
11644 F:      include/uapi/linux/meye.h
11645 F:      include/uapi/linux/uvcvideo.h
11646 F:      include/uapi/linux/v4l2-*
11647 F:      include/uapi/linux/videodev2.h
11648
11649 MEDIATEK BLUETOOTH DRIVER
11650 M:      Sean Wang <sean.wang@mediatek.com>
11651 L:      linux-bluetooth@vger.kernel.org
11652 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11653 S:      Maintained
11654 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11655 F:      drivers/bluetooth/btmtkuart.c
11656
11657 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11658 M:      Sean Wang <sean.wang@mediatek.com>
11659 L:      linux-pm@vger.kernel.org
11660 S:      Maintained
11661 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11662 F:      drivers/power/reset/mt6323-poweroff.c
11663
11664 MEDIATEK CIR DRIVER
11665 M:      Sean Wang <sean.wang@mediatek.com>
11666 S:      Maintained
11667 F:      drivers/media/rc/mtk-cir.c
11668
11669 MEDIATEK DMA DRIVER
11670 M:      Sean Wang <sean.wang@mediatek.com>
11671 L:      dmaengine@vger.kernel.org
11672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11673 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11674 S:      Maintained
11675 F:      Documentation/devicetree/bindings/dma/mtk-*
11676 F:      drivers/dma/mediatek/
11677
11678 MEDIATEK ETHERNET DRIVER
11679 M:      Felix Fietkau <nbd@nbd.name>
11680 M:      John Crispin <john@phrozen.org>
11681 M:      Sean Wang <sean.wang@mediatek.com>
11682 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11683 L:      netdev@vger.kernel.org
11684 S:      Maintained
11685 F:      drivers/net/ethernet/mediatek/
11686
11687 MEDIATEK I2C CONTROLLER DRIVER
11688 M:      Qii Wang <qii.wang@mediatek.com>
11689 L:      linux-i2c@vger.kernel.org
11690 S:      Maintained
11691 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11692 F:      drivers/i2c/busses/i2c-mt65xx.c
11693
11694 MEDIATEK IOMMU DRIVER
11695 M:      Yong Wu <yong.wu@mediatek.com>
11696 L:      iommu@lists.linux-foundation.org
11697 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11698 S:      Supported
11699 F:      Documentation/devicetree/bindings/iommu/mediatek*
11700 F:      drivers/iommu/mtk_iommu*
11701 F:      include/dt-bindings/memory/mt*-port.h
11702
11703 MEDIATEK JPEG DRIVER
11704 M:      Rick Chang <rick.chang@mediatek.com>
11705 M:      Bin Liu <bin.liu@mediatek.com>
11706 S:      Supported
11707 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11708 F:      drivers/media/platform/mtk-jpeg/
11709
11710 MEDIATEK MDP DRIVER
11711 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11712 M:      Houlong Wei <houlong.wei@mediatek.com>
11713 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11714 S:      Supported
11715 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11716 F:      drivers/media/platform/mtk-mdp/
11717 F:      drivers/media/platform/mtk-vpu/
11718
11719 MEDIATEK MEDIA DRIVER
11720 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11721 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11722 S:      Supported
11723 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11724 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11725 F:      drivers/media/platform/mtk-vcodec/
11726 F:      drivers/media/platform/mtk-vpu/
11727
11728 MEDIATEK MMC/SD/SDIO DRIVER
11729 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11730 S:      Maintained
11731 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11732 F:      drivers/mmc/host/mtk-sd.c
11733
11734 MEDIATEK MT76 WIRELESS LAN DRIVER
11735 M:      Felix Fietkau <nbd@nbd.name>
11736 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11737 R:      Ryder Lee <ryder.lee@mediatek.com>
11738 L:      linux-wireless@vger.kernel.org
11739 S:      Maintained
11740 F:      drivers/net/wireless/mediatek/mt76/
11741
11742 MEDIATEK MT7601U WIRELESS LAN DRIVER
11743 M:      Jakub Kicinski <kubakici@wp.pl>
11744 L:      linux-wireless@vger.kernel.org
11745 S:      Maintained
11746 F:      drivers/net/wireless/mediatek/mt7601u/
11747
11748 MEDIATEK MT7621 CLOCK DRIVER
11749 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11750 S:      Maintained
11751 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11752 F:      drivers/clk/ralink/clk-mt7621.c
11753
11754 MEDIATEK MT7621/28/88 I2C DRIVER
11755 M:      Stefan Roese <sr@denx.de>
11756 L:      linux-i2c@vger.kernel.org
11757 S:      Maintained
11758 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11759 F:      drivers/i2c/busses/i2c-mt7621.c
11760
11761 MEDIATEK MT7621 PHY PCI DRIVER
11762 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11763 S:      Maintained
11764 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11765 F:      drivers/phy/ralink/phy-mt7621-pci.c
11766
11767 MEDIATEK NAND CONTROLLER DRIVER
11768 L:      linux-mtd@lists.infradead.org
11769 S:      Orphan
11770 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11771 F:      drivers/mtd/nand/raw/mtk_*
11772
11773 MEDIATEK PMIC LED DRIVER
11774 M:      Sean Wang <sean.wang@mediatek.com>
11775 S:      Maintained
11776 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11777 F:      drivers/leds/leds-mt6323.c
11778
11779 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11780 M:      Sean Wang <sean.wang@mediatek.com>
11781 S:      Maintained
11782 F:      drivers/char/hw_random/mtk-rng.c
11783
11784 MEDIATEK SWITCH DRIVER
11785 M:      Sean Wang <sean.wang@mediatek.com>
11786 M:      Landen Chao <Landen.Chao@mediatek.com>
11787 M:      DENG Qingfang <dqfext@gmail.com>
11788 L:      netdev@vger.kernel.org
11789 S:      Maintained
11790 F:      drivers/net/dsa/mt7530.*
11791 F:      net/dsa/tag_mtk.c
11792
11793 MEDIATEK USB3 DRD IP DRIVER
11794 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11795 L:      linux-usb@vger.kernel.org
11796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11797 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11798 S:      Maintained
11799 F:      Documentation/devicetree/bindings/usb/mediatek,*
11800 F:      drivers/usb/host/xhci-mtk*
11801 F:      drivers/usb/mtu3/
11802
11803 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11804 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11805 M:      Martin Donnelly <martin.donnelly@ge.com>
11806 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11807 S:      Maintained
11808 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11809 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11810
11811 MEGARAID SCSI/SAS DRIVERS
11812 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11813 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11814 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11815 L:      megaraidlinux.pdl@broadcom.com
11816 L:      linux-scsi@vger.kernel.org
11817 S:      Maintained
11818 W:      http://www.avagotech.com/support/
11819 F:      Documentation/scsi/megaraid.rst
11820 F:      drivers/scsi/megaraid.*
11821 F:      drivers/scsi/megaraid/
11822
11823 MELEXIS MLX90614 DRIVER
11824 M:      Crt Mori <cmo@melexis.com>
11825 L:      linux-iio@vger.kernel.org
11826 S:      Supported
11827 W:      http://www.melexis.com
11828 F:      drivers/iio/temperature/mlx90614.c
11829
11830 MELEXIS MLX90632 DRIVER
11831 M:      Crt Mori <cmo@melexis.com>
11832 L:      linux-iio@vger.kernel.org
11833 S:      Supported
11834 W:      http://www.melexis.com
11835 F:      drivers/iio/temperature/mlx90632.c
11836
11837 MELFAS MIP4 TOUCHSCREEN DRIVER
11838 M:      Sangwon Jee <jeesw@melfas.com>
11839 S:      Supported
11840 W:      http://www.melfas.com
11841 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11842 F:      drivers/input/touchscreen/melfas_mip4.c
11843
11844 MELLANOX BLUEFIELD I2C DRIVER
11845 M:      Khalil Blaiech <kblaiech@nvidia.com>
11846 L:      linux-i2c@vger.kernel.org
11847 S:      Supported
11848 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11849 F:      drivers/i2c/busses/i2c-mlxbf.c
11850
11851 MELLANOX ETHERNET DRIVER (mlx4_en)
11852 M:      Tariq Toukan <tariqt@nvidia.com>
11853 L:      netdev@vger.kernel.org
11854 S:      Supported
11855 W:      http://www.mellanox.com
11856 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11857 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11858
11859 MELLANOX ETHERNET DRIVER (mlx5e)
11860 M:      Saeed Mahameed <saeedm@nvidia.com>
11861 L:      netdev@vger.kernel.org
11862 S:      Supported
11863 W:      http://www.mellanox.com
11864 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11865 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11866
11867 MELLANOX ETHERNET INNOVA DRIVERS
11868 R:      Boris Pismenny <borisp@nvidia.com>
11869 L:      netdev@vger.kernel.org
11870 S:      Supported
11871 W:      http://www.mellanox.com
11872 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11873 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11874 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11875 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11876 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11877
11878 MELLANOX ETHERNET SWITCH DRIVERS
11879 M:      Jiri Pirko <jiri@nvidia.com>
11880 M:      Ido Schimmel <idosch@nvidia.com>
11881 L:      netdev@vger.kernel.org
11882 S:      Supported
11883 W:      http://www.mellanox.com
11884 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11885 F:      drivers/net/ethernet/mellanox/mlxsw/
11886 F:      tools/testing/selftests/drivers/net/mlxsw/
11887
11888 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11889 M:      mlxsw@nvidia.com
11890 L:      netdev@vger.kernel.org
11891 S:      Supported
11892 W:      http://www.mellanox.com
11893 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11894 F:      drivers/net/ethernet/mellanox/mlxfw/
11895
11896 MELLANOX HARDWARE PLATFORM SUPPORT
11897 M:      Hans de Goede <hdegoede@redhat.com>
11898 M:      Mark Gross <mgross@linux.intel.com>
11899 M:      Vadim Pasternak <vadimp@nvidia.com>
11900 L:      platform-driver-x86@vger.kernel.org
11901 S:      Supported
11902 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11903 F:      drivers/platform/mellanox/
11904 F:      include/linux/platform_data/mlxreg.h
11905
11906 MELLANOX MLX4 core VPI driver
11907 M:      Tariq Toukan <tariqt@nvidia.com>
11908 L:      netdev@vger.kernel.org
11909 L:      linux-rdma@vger.kernel.org
11910 S:      Supported
11911 W:      http://www.mellanox.com
11912 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11913 F:      drivers/net/ethernet/mellanox/mlx4/
11914 F:      include/linux/mlx4/
11915
11916 MELLANOX MLX4 IB driver
11917 M:      Yishai Hadas <yishaih@nvidia.com>
11918 L:      linux-rdma@vger.kernel.org
11919 S:      Supported
11920 W:      http://www.mellanox.com
11921 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11922 F:      drivers/infiniband/hw/mlx4/
11923 F:      include/linux/mlx4/
11924 F:      include/uapi/rdma/mlx4-abi.h
11925
11926 MELLANOX MLX5 core VPI driver
11927 M:      Saeed Mahameed <saeedm@nvidia.com>
11928 M:      Leon Romanovsky <leonro@nvidia.com>
11929 L:      netdev@vger.kernel.org
11930 L:      linux-rdma@vger.kernel.org
11931 S:      Supported
11932 W:      http://www.mellanox.com
11933 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11934 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11935 F:      drivers/net/ethernet/mellanox/mlx5/core/
11936 F:      include/linux/mlx5/
11937
11938 MELLANOX MLX5 IB driver
11939 M:      Leon Romanovsky <leonro@nvidia.com>
11940 L:      linux-rdma@vger.kernel.org
11941 S:      Supported
11942 W:      http://www.mellanox.com
11943 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11944 F:      drivers/infiniband/hw/mlx5/
11945 F:      include/linux/mlx5/
11946 F:      include/uapi/rdma/mlx5-abi.h
11947
11948 MELLANOX MLXCPLD I2C AND MUX DRIVER
11949 M:      Vadim Pasternak <vadimp@nvidia.com>
11950 M:      Michael Shych <michaelsh@nvidia.com>
11951 L:      linux-i2c@vger.kernel.org
11952 S:      Supported
11953 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11954 F:      drivers/i2c/busses/i2c-mlxcpld.c
11955 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11956
11957 MELLANOX MLXCPLD LED DRIVER
11958 M:      Vadim Pasternak <vadimp@nvidia.com>
11959 L:      linux-leds@vger.kernel.org
11960 S:      Supported
11961 F:      Documentation/leds/leds-mlxcpld.rst
11962 F:      drivers/leds/leds-mlxcpld.c
11963 F:      drivers/leds/leds-mlxreg.c
11964
11965 MELLANOX PLATFORM DRIVER
11966 M:      Vadim Pasternak <vadimp@nvidia.com>
11967 L:      platform-driver-x86@vger.kernel.org
11968 S:      Supported
11969 F:      drivers/platform/x86/mlx-platform.c
11970
11971 MEMBARRIER SUPPORT
11972 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11973 M:      "Paul E. McKenney" <paulmck@kernel.org>
11974 L:      linux-kernel@vger.kernel.org
11975 S:      Supported
11976 F:      arch/powerpc/include/asm/membarrier.h
11977 F:      include/uapi/linux/membarrier.h
11978 F:      kernel/sched/membarrier.c
11979
11980 MEMBLOCK
11981 M:      Mike Rapoport <rppt@linux.ibm.com>
11982 L:      linux-mm@kvack.org
11983 S:      Maintained
11984 F:      Documentation/core-api/boot-time-mm.rst
11985 F:      include/linux/memblock.h
11986 F:      mm/memblock.c
11987
11988 MEMORY CONTROLLER DRIVERS
11989 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11990 L:      linux-kernel@vger.kernel.org
11991 S:      Maintained
11992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11993 F:      Documentation/devicetree/bindings/memory-controllers/
11994 F:      drivers/memory/
11995 F:      include/dt-bindings/memory/
11996 F:      include/memory/
11997
11998 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11999 M:      Dmitry Osipenko <digetx@gmail.com>
12000 L:      linux-pm@vger.kernel.org
12001 L:      linux-tegra@vger.kernel.org
12002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12003 S:      Maintained
12004 F:      drivers/devfreq/tegra30-devfreq.c
12005
12006 MEMORY MANAGEMENT
12007 M:      Andrew Morton <akpm@linux-foundation.org>
12008 L:      linux-mm@kvack.org
12009 S:      Maintained
12010 W:      http://www.linux-mm.org
12011 T:      quilt https://ozlabs.org/~akpm/mmotm/
12012 T:      quilt https://ozlabs.org/~akpm/mmots/
12013 T:      git git://github.com/hnaz/linux-mm.git
12014 F:      include/linux/gfp.h
12015 F:      include/linux/memory_hotplug.h
12016 F:      include/linux/mm.h
12017 F:      include/linux/mmzone.h
12018 F:      include/linux/pagewalk.h
12019 F:      include/linux/vmalloc.h
12020 F:      mm/
12021 F:      tools/testing/selftests/vm/
12022
12023 MEMORY TECHNOLOGY DEVICES (MTD)
12024 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12025 M:      Richard Weinberger <richard@nod.at>
12026 M:      Vignesh Raghavendra <vigneshr@ti.com>
12027 L:      linux-mtd@lists.infradead.org
12028 S:      Maintained
12029 W:      http://www.linux-mtd.infradead.org/
12030 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12031 C:      irc://irc.oftc.net/mtd
12032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12034 F:      Documentation/devicetree/bindings/mtd/
12035 F:      drivers/mtd/
12036 F:      include/linux/mtd/
12037 F:      include/uapi/mtd/
12038
12039 MEN A21 WATCHDOG DRIVER
12040 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12041 L:      linux-watchdog@vger.kernel.org
12042 S:      Maintained
12043 F:      drivers/watchdog/mena21_wdt.c
12044
12045 MEN CHAMELEON BUS (mcb)
12046 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12047 S:      Maintained
12048 F:      Documentation/driver-api/men-chameleon-bus.rst
12049 F:      drivers/mcb/
12050 F:      include/linux/mcb.h
12051
12052 MEN F21BMC (Board Management Controller)
12053 M:      Andreas Werner <andreas.werner@men.de>
12054 S:      Supported
12055 F:      Documentation/hwmon/menf21bmc.rst
12056 F:      drivers/hwmon/menf21bmc_hwmon.c
12057 F:      drivers/leds/leds-menf21bmc.c
12058 F:      drivers/mfd/menf21bmc.c
12059 F:      drivers/watchdog/menf21bmc_wdt.c
12060
12061 MEN Z069 WATCHDOG DRIVER
12062 M:      Johannes Thumshirn <jth@kernel.org>
12063 L:      linux-watchdog@vger.kernel.org
12064 S:      Maintained
12065 F:      drivers/watchdog/menz69_wdt.c
12066
12067 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12068 M:      Neil Armstrong <narmstrong@baylibre.com>
12069 L:      linux-media@vger.kernel.org
12070 L:      linux-amlogic@lists.infradead.org
12071 S:      Supported
12072 W:      http://linux-meson.com/
12073 T:      git git://linuxtv.org/media_tree.git
12074 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12075 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12076 F:      drivers/media/cec/platform/meson/ao-cec.c
12077
12078 MESON GE2D DRIVER FOR AMLOGIC SOCS
12079 M:      Neil Armstrong <narmstrong@baylibre.com>
12080 L:      linux-media@vger.kernel.org
12081 L:      linux-amlogic@lists.infradead.org
12082 S:      Supported
12083 T:      git git://linuxtv.org/media_tree.git
12084 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12085 F:      drivers/media/platform/meson/ge2d/
12086
12087 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12088 M:      Liang Yang <liang.yang@amlogic.com>
12089 L:      linux-mtd@lists.infradead.org
12090 S:      Maintained
12091 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12092 F:      drivers/mtd/nand/raw/meson_*
12093
12094 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12095 M:      Neil Armstrong <narmstrong@baylibre.com>
12096 L:      linux-media@vger.kernel.org
12097 L:      linux-amlogic@lists.infradead.org
12098 S:      Supported
12099 T:      git git://linuxtv.org/media_tree.git
12100 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12101 F:      drivers/staging/media/meson/vdec/
12102
12103 METHODE UDPU SUPPORT
12104 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12105 S:      Maintained
12106 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12107
12108 MHI BUS
12109 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12110 M:      Hemant Kumar <hemantk@codeaurora.org>
12111 L:      linux-arm-msm@vger.kernel.org
12112 S:      Maintained
12113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12114 F:      Documentation/ABI/stable/sysfs-bus-mhi
12115 F:      Documentation/mhi/
12116 F:      drivers/bus/mhi/
12117 F:      include/linux/mhi.h
12118
12119 MICROBLAZE ARCHITECTURE
12120 M:      Michal Simek <monstr@monstr.eu>
12121 S:      Supported
12122 W:      http://www.monstr.eu/fdt/
12123 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12124 F:      arch/microblaze/
12125
12126 MICROCHIP AT91 DMA DRIVERS
12127 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12128 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12129 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12130 L:      dmaengine@vger.kernel.org
12131 S:      Supported
12132 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12133 F:      drivers/dma/at_hdmac.c
12134 F:      drivers/dma/at_hdmac_regs.h
12135 F:      drivers/dma/at_xdmac.c
12136 F:      include/dt-bindings/dma/at91.h
12137
12138 MICROCHIP AT91 SERIAL DRIVER
12139 M:      Richard Genoud <richard.genoud@gmail.com>
12140 S:      Maintained
12141 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12142 F:      drivers/tty/serial/atmel_serial.c
12143 F:      drivers/tty/serial/atmel_serial.h
12144
12145 MICROCHIP AT91 USART MFD DRIVER
12146 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12147 L:      linux-kernel@vger.kernel.org
12148 S:      Supported
12149 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12150 F:      drivers/mfd/at91-usart.c
12151 F:      include/dt-bindings/mfd/at91-usart.h
12152
12153 MICROCHIP AT91 USART SPI DRIVER
12154 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12155 L:      linux-spi@vger.kernel.org
12156 S:      Supported
12157 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12158 F:      drivers/spi/spi-at91-usart.c
12159
12160 MICROCHIP AUDIO ASOC DRIVERS
12161 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12162 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12163 S:      Supported
12164 F:      sound/soc/atmel
12165
12166 MICROCHIP ECC DRIVER
12167 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12168 L:      linux-crypto@vger.kernel.org
12169 S:      Maintained
12170 F:      drivers/crypto/atmel-ecc.*
12171
12172 MICROCHIP I2C DRIVER
12173 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12174 L:      linux-i2c@vger.kernel.org
12175 S:      Supported
12176 F:      drivers/i2c/busses/i2c-at91-*.c
12177 F:      drivers/i2c/busses/i2c-at91.h
12178
12179 MICROCHIP ISC DRIVER
12180 M:      Eugen Hristev <eugen.hristev@microchip.com>
12181 L:      linux-media@vger.kernel.org
12182 S:      Supported
12183 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12184 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12185 F:      drivers/media/platform/atmel/atmel-isc-base.c
12186 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12187 F:      drivers/media/platform/atmel/atmel-isc.h
12188 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12189 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12190 F:      include/linux/atmel-isc-media.h
12191
12192 MICROCHIP ISI DRIVER
12193 M:      Eugen Hristev <eugen.hristev@microchip.com>
12194 L:      linux-media@vger.kernel.org
12195 S:      Supported
12196 F:      drivers/media/platform/atmel/atmel-isi.c
12197 F:      drivers/media/platform/atmel/atmel-isi.h
12198
12199 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12200 M:      Woojung Huh <woojung.huh@microchip.com>
12201 M:      UNGLinuxDriver@microchip.com
12202 L:      netdev@vger.kernel.org
12203 S:      Maintained
12204 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12205 F:      drivers/net/dsa/microchip/*
12206 F:      include/linux/platform_data/microchip-ksz.h
12207 F:      net/dsa/tag_ksz.c
12208
12209 MICROCHIP LAN743X ETHERNET DRIVER
12210 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12211 M:      UNGLinuxDriver@microchip.com
12212 L:      netdev@vger.kernel.org
12213 S:      Maintained
12214 F:      drivers/net/ethernet/microchip/lan743x_*
12215
12216 MICROCHIP LCDFB DRIVER
12217 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12218 L:      linux-fbdev@vger.kernel.org
12219 S:      Maintained
12220 F:      drivers/video/fbdev/atmel_lcdfb.c
12221 F:      include/video/atmel_lcdc.h
12222
12223 MICROCHIP MCP16502 PMIC DRIVER
12224 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12226 S:      Supported
12227 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12228 F:      drivers/regulator/mcp16502.c
12229
12230 MICROCHIP MCP3911 ADC DRIVER
12231 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12232 M:      Kent Gustavsson <kent@minoris.se>
12233 L:      linux-iio@vger.kernel.org
12234 S:      Supported
12235 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12236 F:      drivers/iio/adc/mcp3911.c
12237
12238 MICROCHIP MMC/SD/SDIO MCI DRIVER
12239 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12240 S:      Maintained
12241 F:      drivers/mmc/host/atmel-mci.c
12242
12243 MICROCHIP NAND DRIVER
12244 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12245 L:      linux-mtd@lists.infradead.org
12246 S:      Supported
12247 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12248 F:      drivers/mtd/nand/raw/atmel/*
12249
12250 MICROCHIP PWM DRIVER
12251 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12252 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12253 L:      linux-pwm@vger.kernel.org
12254 S:      Supported
12255 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12256 F:      drivers/pwm/pwm-atmel.c
12257
12258 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12259 M:      Eugen Hristev <eugen.hristev@microchip.com>
12260 L:      linux-iio@vger.kernel.org
12261 S:      Supported
12262 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12263 F:      drivers/iio/adc/at91-sama5d2_adc.c
12264 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12265
12266 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12267 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12268 S:      Supported
12269 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12270
12271 MICROCHIP SPI DRIVER
12272 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12273 S:      Supported
12274 F:      drivers/spi/spi-atmel.*
12275
12276 MICROCHIP SSC DRIVER
12277 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12278 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12279 S:      Supported
12280 F:      drivers/misc/atmel-ssc.c
12281 F:      include/linux/atmel-ssc.h
12282
12283 MICROCHIP USB251XB DRIVER
12284 M:      Richard Leitner <richard.leitner@skidata.com>
12285 L:      linux-usb@vger.kernel.org
12286 S:      Maintained
12287 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12288 F:      drivers/usb/misc/usb251xb.c
12289
12290 MICROCHIP USBA UDC DRIVER
12291 M:      Cristian Birsan <cristian.birsan@microchip.com>
12292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12293 S:      Supported
12294 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12295
12296 MICROCHIP WILC1000 WIFI DRIVER
12297 M:      Ajay Singh <ajay.kathat@microchip.com>
12298 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12299 L:      linux-wireless@vger.kernel.org
12300 S:      Supported
12301 F:      drivers/net/wireless/microchip/wilc1000/
12302
12303 MICROSEMI MIPS SOCS
12304 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12305 M:      UNGLinuxDriver@microchip.com
12306 L:      linux-mips@vger.kernel.org
12307 S:      Supported
12308 F:      Documentation/devicetree/bindings/mips/mscc.txt
12309 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12310 F:      arch/mips/boot/dts/mscc/
12311 F:      arch/mips/configs/generic/board-ocelot.config
12312 F:      arch/mips/generic/board-ocelot.c
12313
12314 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12315 M:      Don Brace <don.brace@microchip.com>
12316 L:      storagedev@microchip.com
12317 L:      linux-scsi@vger.kernel.org
12318 S:      Supported
12319 F:      Documentation/scsi/smartpqi.rst
12320 F:      drivers/scsi/smartpqi/Kconfig
12321 F:      drivers/scsi/smartpqi/Makefile
12322 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12323 F:      include/linux/cciss*.h
12324 F:      include/uapi/linux/cciss*.h
12325
12326 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12327 M:      Maximilian Luz <luzmaximilian@gmail.com>
12328 L:      linux-pm@vger.kernel.org
12329 L:      platform-driver-x86@vger.kernel.org
12330 S:      Maintained
12331 F:      drivers/power/supply/surface_battery.c
12332 F:      drivers/power/supply/surface_charger.c
12333
12334 MICROSOFT SURFACE DTX DRIVER
12335 M:      Maximilian Luz <luzmaximilian@gmail.com>
12336 L:      platform-driver-x86@vger.kernel.org
12337 S:      Maintained
12338 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12339 F:      drivers/platform/surface/surface_dtx.c
12340 F:      include/uapi/linux/surface_aggregator/dtx.h
12341
12342 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12343 M:      Maximilian Luz <luzmaximilian@gmail.com>
12344 L:      platform-driver-x86@vger.kernel.org
12345 S:      Maintained
12346 F:      drivers/platform/surface/surface_gpe.c
12347
12348 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12349 M:      Hans de Goede <hdegoede@redhat.com>
12350 M:      Mark Gross <mgross@linux.intel.com>
12351 M:      Maximilian Luz <luzmaximilian@gmail.com>
12352 L:      platform-driver-x86@vger.kernel.org
12353 S:      Maintained
12354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12355 F:      drivers/platform/surface/
12356
12357 MICROSOFT SURFACE HID TRANSPORT DRIVER
12358 M:      Maximilian Luz <luzmaximilian@gmail.com>
12359 L:      linux-input@vger.kernel.org
12360 L:      platform-driver-x86@vger.kernel.org
12361 S:      Maintained
12362 F:      drivers/hid/surface-hid/
12363
12364 MICROSOFT SURFACE HOT-PLUG DRIVER
12365 M:      Maximilian Luz <luzmaximilian@gmail.com>
12366 L:      platform-driver-x86@vger.kernel.org
12367 S:      Maintained
12368 F:      drivers/platform/surface/surface_hotplug.c
12369
12370 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12371 M:      Maximilian Luz <luzmaximilian@gmail.com>
12372 L:      platform-driver-x86@vger.kernel.org
12373 S:      Maintained
12374 F:      drivers/platform/surface/surface_platform_profile.c
12375
12376 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12377 M:      Chen Yu <yu.c.chen@intel.com>
12378 L:      platform-driver-x86@vger.kernel.org
12379 S:      Supported
12380 F:      drivers/platform/surface/surfacepro3_button.c
12381
12382 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12383 M:      Maximilian Luz <luzmaximilian@gmail.com>
12384 L:      platform-driver-x86@vger.kernel.org
12385 S:      Maintained
12386 W:      https://github.com/linux-surface/surface-aggregator-module
12387 C:      irc://irc.libera.chat/linux-surface
12388 F:      Documentation/driver-api/surface_aggregator/
12389 F:      drivers/platform/surface/aggregator/
12390 F:      drivers/platform/surface/surface_acpi_notify.c
12391 F:      drivers/platform/surface/surface_aggregator_cdev.c
12392 F:      drivers/platform/surface/surface_aggregator_registry.c
12393 F:      include/linux/surface_acpi_notify.h
12394 F:      include/linux/surface_aggregator/
12395 F:      include/uapi/linux/surface_aggregator/
12396
12397 MICROTEK X6 SCANNER
12398 M:      Oliver Neukum <oliver@neukum.org>
12399 S:      Maintained
12400 F:      drivers/usb/image/microtek.*
12401
12402 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12403 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12404 M:      Luka Perkov <luka.perkov@sartura.hr>
12405 S:      Maintained
12406 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12407 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12408 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12409 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12410 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12411 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12412
12413 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12414 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12415 L:      linux-media@vger.kernel.org
12416 S:      Maintained
12417 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12418 F:      Documentation/driver-api/media/drivers/ccs/
12419 F:      Documentation/userspace-api/media/drivers/ccs.rst
12420 F:      drivers/media/i2c/ccs-pll.c
12421 F:      drivers/media/i2c/ccs-pll.h
12422 F:      drivers/media/i2c/ccs/
12423 F:      include/uapi/linux/ccs.h
12424 F:      include/uapi/linux/smiapp.h
12425
12426 MIPS
12427 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12428 L:      linux-mips@vger.kernel.org
12429 S:      Maintained
12430 W:      http://www.linux-mips.org/
12431 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12433 F:      Documentation/devicetree/bindings/mips/
12434 F:      Documentation/mips/
12435 F:      arch/mips/
12436 F:      drivers/platform/mips/
12437
12438 MIPS BOSTON DEVELOPMENT BOARD
12439 M:      Paul Burton <paulburton@kernel.org>
12440 L:      linux-mips@vger.kernel.org
12441 S:      Maintained
12442 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12443 F:      arch/mips/boot/dts/img/boston.dts
12444 F:      arch/mips/configs/generic/board-boston.config
12445 F:      drivers/clk/imgtec/clk-boston.c
12446 F:      include/dt-bindings/clock/boston-clock.h
12447
12448 MIPS CORE DRIVERS
12449 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12450 M:      Serge Semin <fancer.lancer@gmail.com>
12451 L:      linux-mips@vger.kernel.org
12452 S:      Supported
12453 F:      drivers/bus/mips_cdmm.c
12454 F:      drivers/clocksource/mips-gic-timer.c
12455 F:      drivers/cpuidle/cpuidle-cps.c
12456 F:      drivers/irqchip/irq-mips-cpu.c
12457 F:      drivers/irqchip/irq-mips-gic.c
12458
12459 MIPS GENERIC PLATFORM
12460 M:      Paul Burton <paulburton@kernel.org>
12461 L:      linux-mips@vger.kernel.org
12462 S:      Supported
12463 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12464 F:      arch/mips/generic/
12465 F:      arch/mips/tools/generic-board-config.sh
12466
12467 MIPS RINT INSTRUCTION EMULATION
12468 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12469 L:      linux-mips@vger.kernel.org
12470 S:      Supported
12471 F:      arch/mips/math-emu/dp_rint.c
12472 F:      arch/mips/math-emu/sp_rint.c
12473
12474 MIPS/LOONGSON1 ARCHITECTURE
12475 M:      Keguang Zhang <keguang.zhang@gmail.com>
12476 L:      linux-mips@vger.kernel.org
12477 S:      Maintained
12478 F:      arch/mips/include/asm/mach-loongson32/
12479 F:      arch/mips/loongson32/
12480 F:      drivers/*/*/*loongson1*
12481 F:      drivers/*/*loongson1*
12482
12483 MIPS/LOONGSON2EF ARCHITECTURE
12484 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12485 L:      linux-mips@vger.kernel.org
12486 S:      Maintained
12487 F:      arch/mips/include/asm/mach-loongson2ef/
12488 F:      arch/mips/loongson2ef/
12489 F:      drivers/cpufreq/loongson2_cpufreq.c
12490
12491 MIPS/LOONGSON64 ARCHITECTURE
12492 M:      Huacai Chen <chenhuacai@kernel.org>
12493 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12494 L:      linux-mips@vger.kernel.org
12495 S:      Maintained
12496 F:      arch/mips/include/asm/mach-loongson64/
12497 F:      arch/mips/loongson64/
12498 F:      drivers/irqchip/irq-loongson*
12499 F:      drivers/platform/mips/cpu_hwmon.c
12500
12501 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12502 M:      Hans Verkuil <hverkuil@xs4all.nl>
12503 L:      linux-media@vger.kernel.org
12504 S:      Odd Fixes
12505 W:      https://linuxtv.org
12506 T:      git git://linuxtv.org/media_tree.git
12507 F:      drivers/media/radio/radio-miropcm20*
12508
12509 MMP SUPPORT
12510 R:      Lubomir Rintel <lkundrak@v3.sk>
12511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12512 S:      Odd Fixes
12513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12514 F:      arch/arm/boot/dts/mmp*
12515 F:      arch/arm/mach-mmp/
12516 F:      include/linux/soc/mmp/
12517
12518 MMP USB PHY DRIVERS
12519 R:      Lubomir Rintel <lkundrak@v3.sk>
12520 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12521 S:      Maintained
12522 F:      drivers/phy/marvell/phy-mmp3-usb.c
12523 F:      drivers/phy/marvell/phy-pxa-usb.c
12524
12525 MMU GATHER AND TLB INVALIDATION
12526 M:      Will Deacon <will@kernel.org>
12527 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12528 M:      Andrew Morton <akpm@linux-foundation.org>
12529 M:      Nick Piggin <npiggin@gmail.com>
12530 M:      Peter Zijlstra <peterz@infradead.org>
12531 L:      linux-arch@vger.kernel.org
12532 L:      linux-mm@kvack.org
12533 S:      Maintained
12534 F:      arch/*/include/asm/tlb.h
12535 F:      include/asm-generic/tlb.h
12536 F:      mm/mmu_gather.c
12537
12538 MN88472 MEDIA DRIVER
12539 M:      Antti Palosaari <crope@iki.fi>
12540 L:      linux-media@vger.kernel.org
12541 S:      Maintained
12542 W:      https://linuxtv.org
12543 W:      http://palosaari.fi/linux/
12544 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12545 F:      drivers/media/dvb-frontends/mn88472*
12546
12547 MN88473 MEDIA DRIVER
12548 M:      Antti Palosaari <crope@iki.fi>
12549 L:      linux-media@vger.kernel.org
12550 S:      Maintained
12551 W:      https://linuxtv.org
12552 W:      http://palosaari.fi/linux/
12553 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12554 F:      drivers/media/dvb-frontends/mn88473*
12555
12556 MODULE SUPPORT
12557 M:      Jessica Yu <jeyu@kernel.org>
12558 S:      Maintained
12559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12560 F:      include/linux/module.h
12561 F:      kernel/module.c
12562
12563 MONOLITHIC POWER SYSTEM PMIC DRIVER
12564 M:      Saravanan Sekar <sravanhome@gmail.com>
12565 S:      Maintained
12566 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12567 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12568 F:      drivers/iio/adc/mp2629_adc.c
12569 F:      drivers/mfd/mp2629.c
12570 F:      drivers/power/supply/mp2629_charger.c
12571 F:      drivers/regulator/mp5416.c
12572 F:      drivers/regulator/mpq7920.c
12573 F:      drivers/regulator/mpq7920.h
12574 F:      include/linux/mfd/mp2629.h
12575
12576 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12577 S:      Orphan
12578 W:      http://popies.net/meye/
12579 F:      Documentation/userspace-api/media/drivers/meye*
12580 F:      drivers/media/pci/meye/
12581 F:      include/uapi/linux/meye.h
12582
12583 MOTORCOMM PHY DRIVER
12584 M:      Peter Geis <pgwipeout@gmail.com>
12585 L:      netdev@vger.kernel.org
12586 S:      Maintained
12587 F:      drivers/net/phy/motorcomm.c
12588
12589 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12590 M:      Jiri Slaby <jirislaby@kernel.org>
12591 S:      Maintained
12592 F:      Documentation/driver-api/serial/moxa-smartio.rst
12593 F:      drivers/tty/mxser.*
12594
12595 MR800 AVERMEDIA USB FM RADIO DRIVER
12596 M:      Alexey Klimov <klimov.linux@gmail.com>
12597 L:      linux-media@vger.kernel.org
12598 S:      Maintained
12599 T:      git git://linuxtv.org/media_tree.git
12600 F:      drivers/media/radio/radio-mr800.c
12601
12602 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12603 M:      Alan Ott <alan@signal11.us>
12604 L:      linux-wpan@vger.kernel.org
12605 S:      Maintained
12606 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12607 F:      drivers/net/ieee802154/mrf24j40.c
12608
12609 MSI LAPTOP SUPPORT
12610 M:      "Lee, Chun-Yi" <jlee@suse.com>
12611 L:      platform-driver-x86@vger.kernel.org
12612 S:      Maintained
12613 F:      drivers/platform/x86/msi-laptop.c
12614
12615 MSI WMI SUPPORT
12616 L:      platform-driver-x86@vger.kernel.org
12617 S:      Orphan
12618 F:      drivers/platform/x86/msi-wmi.c
12619
12620 MSI001 MEDIA DRIVER
12621 M:      Antti Palosaari <crope@iki.fi>
12622 L:      linux-media@vger.kernel.org
12623 S:      Maintained
12624 W:      https://linuxtv.org
12625 W:      http://palosaari.fi/linux/
12626 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12627 T:      git git://linuxtv.org/anttip/media_tree.git
12628 F:      drivers/media/tuners/msi001*
12629
12630 MSI2500 MEDIA DRIVER
12631 M:      Antti Palosaari <crope@iki.fi>
12632 L:      linux-media@vger.kernel.org
12633 S:      Maintained
12634 W:      https://linuxtv.org
12635 W:      http://palosaari.fi/linux/
12636 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12637 T:      git git://linuxtv.org/anttip/media_tree.git
12638 F:      drivers/media/usb/msi2500/
12639
12640 MSTAR INTERRUPT CONTROLLER DRIVER
12641 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12642 M:      Daniel Palmer <daniel@thingy.jp>
12643 S:      Maintained
12644 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12645 F:      drivers/irqchip/irq-mst-intc.c
12646
12647 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12648 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12649 L:      linux-mtd@lists.infradead.org
12650 S:      Maintained
12651 F:      drivers/mtd/devices/docg3*
12652
12653 MT9M032 APTINA SENSOR DRIVER
12654 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12655 L:      linux-media@vger.kernel.org
12656 S:      Maintained
12657 T:      git git://linuxtv.org/media_tree.git
12658 F:      drivers/media/i2c/mt9m032.c
12659 F:      include/media/i2c/mt9m032.h
12660
12661 MT9P031 APTINA CAMERA SENSOR
12662 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12663 L:      linux-media@vger.kernel.org
12664 S:      Maintained
12665 T:      git git://linuxtv.org/media_tree.git
12666 F:      drivers/media/i2c/mt9p031.c
12667 F:      include/media/i2c/mt9p031.h
12668
12669 MT9T001 APTINA CAMERA SENSOR
12670 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12671 L:      linux-media@vger.kernel.org
12672 S:      Maintained
12673 T:      git git://linuxtv.org/media_tree.git
12674 F:      drivers/media/i2c/mt9t001.c
12675 F:      include/media/i2c/mt9t001.h
12676
12677 MT9T112 APTINA CAMERA SENSOR
12678 M:      Jacopo Mondi <jacopo@jmondi.org>
12679 L:      linux-media@vger.kernel.org
12680 S:      Odd Fixes
12681 T:      git git://linuxtv.org/media_tree.git
12682 F:      drivers/media/i2c/mt9t112.c
12683 F:      include/media/i2c/mt9t112.h
12684
12685 MT9V032 APTINA CAMERA SENSOR
12686 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12687 L:      linux-media@vger.kernel.org
12688 S:      Maintained
12689 T:      git git://linuxtv.org/media_tree.git
12690 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12691 F:      drivers/media/i2c/mt9v032.c
12692 F:      include/media/i2c/mt9v032.h
12693
12694 MT9V111 APTINA CAMERA SENSOR
12695 M:      Jacopo Mondi <jacopo@jmondi.org>
12696 L:      linux-media@vger.kernel.org
12697 S:      Maintained
12698 T:      git git://linuxtv.org/media_tree.git
12699 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12700 F:      drivers/media/i2c/mt9v111.c
12701
12702 MULTIFUNCTION DEVICES (MFD)
12703 M:      Lee Jones <lee.jones@linaro.org>
12704 S:      Supported
12705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12706 F:      Documentation/devicetree/bindings/mfd/
12707 F:      drivers/mfd/
12708 F:      include/dt-bindings/mfd/
12709 F:      include/linux/mfd/
12710
12711 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12712 S:      Orphan
12713 F:      drivers/mmc/host/mmc_spi.c
12714 F:      include/linux/spi/mmc_spi.h
12715
12716 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12717 M:      Ulf Hansson <ulf.hansson@linaro.org>
12718 L:      linux-mmc@vger.kernel.org
12719 S:      Maintained
12720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12721 F:      Documentation/devicetree/bindings/mmc/
12722 F:      drivers/mmc/
12723 F:      include/linux/mmc/
12724 F:      include/uapi/linux/mmc/
12725
12726 MULTIPLEXER SUBSYSTEM
12727 M:      Peter Rosin <peda@axentia.se>
12728 S:      Maintained
12729 F:      Documentation/ABI/testing/sysfs-class-mux*
12730 F:      Documentation/devicetree/bindings/mux/
12731 F:      drivers/mux/
12732 F:      include/dt-bindings/mux/
12733 F:      include/linux/mux/
12734
12735 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12736 M:      Bin Liu <b-liu@ti.com>
12737 L:      linux-usb@vger.kernel.org
12738 S:      Maintained
12739 F:      drivers/usb/musb/
12740
12741 MXL301RF MEDIA DRIVER
12742 M:      Akihiro Tsukada <tskd08@gmail.com>
12743 L:      linux-media@vger.kernel.org
12744 S:      Odd Fixes
12745 F:      drivers/media/tuners/mxl301rf*
12746
12747 MXL5007T MEDIA DRIVER
12748 M:      Michael Krufky <mkrufky@linuxtv.org>
12749 L:      linux-media@vger.kernel.org
12750 S:      Maintained
12751 W:      https://linuxtv.org
12752 W:      http://github.com/mkrufky
12753 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12754 T:      git git://linuxtv.org/mkrufky/tuners.git
12755 F:      drivers/media/tuners/mxl5007t.*
12756
12757 MXSFB DRM DRIVER
12758 M:      Marek Vasut <marex@denx.de>
12759 M:      Stefan Agner <stefan@agner.ch>
12760 L:      dri-devel@lists.freedesktop.org
12761 S:      Supported
12762 T:      git git://anongit.freedesktop.org/drm/drm-misc
12763 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12764 F:      drivers/gpu/drm/mxsfb/
12765
12766 MYLEX DAC960 PCI RAID Controller
12767 M:      Hannes Reinecke <hare@kernel.org>
12768 L:      linux-scsi@vger.kernel.org
12769 S:      Supported
12770 F:      drivers/scsi/myrb.*
12771 F:      drivers/scsi/myrs.*
12772
12773 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12774 M:      Chris Lee <christopher.lee@cspi.com>
12775 L:      netdev@vger.kernel.org
12776 S:      Supported
12777 W:      https://www.cspi.com/ethernet-products/support/downloads/
12778 F:      drivers/net/ethernet/myricom/myri10ge/
12779
12780 NAND FLASH SUBSYSTEM
12781 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12782 R:      Richard Weinberger <richard@nod.at>
12783 L:      linux-mtd@lists.infradead.org
12784 S:      Maintained
12785 W:      http://www.linux-mtd.infradead.org/
12786 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12787 C:      irc://irc.oftc.net/mtd
12788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12789 F:      drivers/mtd/nand/
12790 F:      include/linux/mtd/*nand*.h
12791
12792 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12793 M:      Daniel Mack <zonque@gmail.com>
12794 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12795 S:      Maintained
12796 W:      http://www.native-instruments.com
12797 F:      sound/usb/caiaq/
12798
12799 NATSEMI ETHERNET DRIVER (DP8381x)
12800 S:      Orphan
12801 F:      drivers/net/ethernet/natsemi/natsemi.c
12802
12803 NCR 5380 SCSI DRIVERS
12804 M:      Finn Thain <fthain@linux-m68k.org>
12805 M:      Michael Schmitz <schmitzmic@gmail.com>
12806 L:      linux-scsi@vger.kernel.org
12807 S:      Maintained
12808 F:      Documentation/scsi/g_NCR5380.rst
12809 F:      drivers/scsi/NCR5380.*
12810 F:      drivers/scsi/arm/cumana_1.c
12811 F:      drivers/scsi/arm/oak.c
12812 F:      drivers/scsi/atari_scsi.*
12813 F:      drivers/scsi/dmx3191d.c
12814 F:      drivers/scsi/g_NCR5380.*
12815 F:      drivers/scsi/mac_scsi.*
12816 F:      drivers/scsi/sun3_scsi.*
12817 F:      drivers/scsi/sun3_scsi_vme.c
12818
12819 NCSI LIBRARY
12820 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12821 S:      Maintained
12822 F:      net/ncsi/
12823
12824 NCT6775 HARDWARE MONITOR DRIVER
12825 M:      Guenter Roeck <linux@roeck-us.net>
12826 L:      linux-hwmon@vger.kernel.org
12827 S:      Maintained
12828 F:      Documentation/hwmon/nct6775.rst
12829 F:      drivers/hwmon/nct6775.c
12830
12831 NETDEVSIM
12832 M:      Jakub Kicinski <kuba@kernel.org>
12833 S:      Maintained
12834 F:      drivers/net/netdevsim/*
12835
12836 NETEM NETWORK EMULATOR
12837 M:      Stephen Hemminger <stephen@networkplumber.org>
12838 L:      netdev@vger.kernel.org
12839 S:      Maintained
12840 F:      net/sched/sch_netem.c
12841
12842 NETERION 10GbE DRIVERS (s2io/vxge)
12843 M:      Jon Mason <jdmason@kudzu.us>
12844 L:      netdev@vger.kernel.org
12845 S:      Supported
12846 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12847 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12848 F:      drivers/net/ethernet/neterion/
12849
12850 NETFILTER
12851 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12852 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12853 M:      Florian Westphal <fw@strlen.de>
12854 L:      netfilter-devel@vger.kernel.org
12855 L:      coreteam@netfilter.org
12856 S:      Maintained
12857 W:      http://www.netfilter.org/
12858 W:      http://www.iptables.org/
12859 W:      http://www.nftables.org/
12860 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12861 C:      irc://irc.libera.chat/netfilter
12862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12864 F:      include/linux/netfilter*
12865 F:      include/linux/netfilter/
12866 F:      include/net/netfilter/
12867 F:      include/uapi/linux/netfilter*
12868 F:      include/uapi/linux/netfilter/
12869 F:      net/*/netfilter.c
12870 F:      net/*/netfilter/
12871 F:      net/bridge/br_netfilter*.c
12872 F:      net/netfilter/
12873
12874 NETROM NETWORK LAYER
12875 M:      Ralf Baechle <ralf@linux-mips.org>
12876 L:      linux-hams@vger.kernel.org
12877 S:      Maintained
12878 W:      http://www.linux-ax25.org/
12879 F:      include/net/netrom.h
12880 F:      include/uapi/linux/netrom.h
12881 F:      net/netrom/
12882
12883 NETRONIX EMBEDDED CONTROLLER
12884 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
12885 S:      Maintained
12886 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12887 F:      drivers/mfd/ntxec.c
12888 F:      drivers/pwm/pwm-ntxec.c
12889 F:      drivers/rtc/rtc-ntxec.c
12890 F:      include/linux/mfd/ntxec.h
12891
12892 NETRONOME ETHERNET DRIVERS
12893 M:      Simon Horman <simon.horman@corigine.com>
12894 R:      Jakub Kicinski <kuba@kernel.org>
12895 L:      oss-drivers@corigine.com
12896 S:      Maintained
12897 F:      drivers/net/ethernet/netronome/
12898
12899 NETWORK BLOCK DEVICE (NBD)
12900 M:      Josef Bacik <josef@toxicpanda.com>
12901 L:      linux-block@vger.kernel.org
12902 L:      nbd@other.debian.org
12903 S:      Maintained
12904 F:      Documentation/admin-guide/blockdev/nbd.rst
12905 F:      drivers/block/nbd.c
12906 F:      include/trace/events/nbd.h
12907 F:      include/uapi/linux/nbd.h
12908
12909 NETWORK DROP MONITOR
12910 M:      Neil Horman <nhorman@tuxdriver.com>
12911 L:      netdev@vger.kernel.org
12912 S:      Maintained
12913 W:      https://fedorahosted.org/dropwatch/
12914 F:      include/uapi/linux/net_dropmon.h
12915 F:      net/core/drop_monitor.c
12916
12917 NETWORKING DRIVERS
12918 M:      "David S. Miller" <davem@davemloft.net>
12919 M:      Jakub Kicinski <kuba@kernel.org>
12920 L:      netdev@vger.kernel.org
12921 S:      Maintained
12922 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12925 F:      Documentation/devicetree/bindings/net/
12926 F:      drivers/connector/
12927 F:      drivers/net/
12928 F:      include/linux/etherdevice.h
12929 F:      include/linux/fcdevice.h
12930 F:      include/linux/fddidevice.h
12931 F:      include/linux/hippidevice.h
12932 F:      include/linux/if_*
12933 F:      include/linux/inetdevice.h
12934 F:      include/linux/netdevice.h
12935 F:      include/uapi/linux/if_*
12936 F:      include/uapi/linux/netdevice.h
12937
12938 NETWORKING DRIVERS (WIRELESS)
12939 M:      Kalle Valo <kvalo@codeaurora.org>
12940 L:      linux-wireless@vger.kernel.org
12941 S:      Maintained
12942 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12945 F:      Documentation/devicetree/bindings/net/wireless/
12946 F:      drivers/net/wireless/
12947
12948 NETWORKING [DSA]
12949 M:      Andrew Lunn <andrew@lunn.ch>
12950 M:      Vivien Didelot <vivien.didelot@gmail.com>
12951 M:      Florian Fainelli <f.fainelli@gmail.com>
12952 M:      Vladimir Oltean <olteanv@gmail.com>
12953 S:      Maintained
12954 F:      Documentation/devicetree/bindings/net/dsa/
12955 F:      drivers/net/dsa/
12956 F:      include/linux/dsa/
12957 F:      include/linux/platform_data/dsa.h
12958 F:      include/net/dsa.h
12959 F:      net/dsa/
12960
12961 NETWORKING [GENERAL]
12962 M:      "David S. Miller" <davem@davemloft.net>
12963 M:      Jakub Kicinski <kuba@kernel.org>
12964 L:      netdev@vger.kernel.org
12965 S:      Maintained
12966 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12967 B:      mailto:netdev@vger.kernel.org
12968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12970 F:      Documentation/networking/
12971 F:      include/linux/in.h
12972 F:      include/linux/net.h
12973 F:      include/linux/netdevice.h
12974 F:      include/net/
12975 F:      include/uapi/linux/in.h
12976 F:      include/uapi/linux/net.h
12977 F:      include/uapi/linux/net_namespace.h
12978 F:      include/uapi/linux/netdevice.h
12979 F:      lib/net_utils.c
12980 F:      lib/random32.c
12981 F:      net/
12982 F:      tools/testing/selftests/net/
12983
12984 NETWORKING [IPSEC]
12985 M:      Steffen Klassert <steffen.klassert@secunet.com>
12986 M:      Herbert Xu <herbert@gondor.apana.org.au>
12987 M:      "David S. Miller" <davem@davemloft.net>
12988 L:      netdev@vger.kernel.org
12989 S:      Maintained
12990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12992 F:      include/net/xfrm.h
12993 F:      include/uapi/linux/xfrm.h
12994 F:      net/ipv4/ah4.c
12995 F:      net/ipv4/esp4*
12996 F:      net/ipv4/ip_vti.c
12997 F:      net/ipv4/ipcomp.c
12998 F:      net/ipv4/xfrm*
12999 F:      net/ipv6/ah6.c
13000 F:      net/ipv6/esp6*
13001 F:      net/ipv6/ip6_vti.c
13002 F:      net/ipv6/ipcomp6.c
13003 F:      net/ipv6/xfrm*
13004 F:      net/key/
13005 F:      net/xfrm/
13006 F:      tools/testing/selftests/net/ipsec.c
13007
13008 NETWORKING [IPv4/IPv6]
13009 M:      "David S. Miller" <davem@davemloft.net>
13010 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13011 M:      David Ahern <dsahern@kernel.org>
13012 L:      netdev@vger.kernel.org
13013 S:      Maintained
13014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13015 F:      arch/x86/net/*
13016 F:      include/net/ip*
13017 F:      net/ipv4/
13018 F:      net/ipv6/
13019
13020 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13021 M:      Paul Moore <paul@paul-moore.com>
13022 L:      netdev@vger.kernel.org
13023 L:      linux-security-module@vger.kernel.org
13024 S:      Maintained
13025 W:      https://github.com/netlabel
13026 F:      Documentation/netlabel/
13027 F:      include/net/calipso.h
13028 F:      include/net/cipso_ipv4.h
13029 F:      include/net/netlabel.h
13030 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13031 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13032 F:      net/ipv4/cipso_ipv4.c
13033 F:      net/ipv6/calipso.c
13034 F:      net/netfilter/xt_CONNSECMARK.c
13035 F:      net/netfilter/xt_SECMARK.c
13036 F:      net/netlabel/
13037
13038 NETWORKING [MPTCP]
13039 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13040 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13041 L:      netdev@vger.kernel.org
13042 L:      mptcp@lists.linux.dev
13043 S:      Maintained
13044 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13045 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13046 F:      Documentation/networking/mptcp-sysctl.rst
13047 F:      include/net/mptcp.h
13048 F:      include/trace/events/mptcp.h
13049 F:      include/uapi/linux/mptcp.h
13050 F:      net/mptcp/
13051 F:      tools/testing/selftests/net/mptcp/
13052
13053 NETWORKING [TCP]
13054 M:      Eric Dumazet <edumazet@google.com>
13055 L:      netdev@vger.kernel.org
13056 S:      Maintained
13057 F:      include/linux/tcp.h
13058 F:      include/net/tcp.h
13059 F:      include/trace/events/tcp.h
13060 F:      include/uapi/linux/tcp.h
13061 F:      net/ipv4/syncookies.c
13062 F:      net/ipv4/tcp*.c
13063 F:      net/ipv6/syncookies.c
13064 F:      net/ipv6/tcp*.c
13065
13066 NETWORKING [TLS]
13067 M:      Boris Pismenny <borisp@nvidia.com>
13068 M:      John Fastabend <john.fastabend@gmail.com>
13069 M:      Daniel Borkmann <daniel@iogearbox.net>
13070 M:      Jakub Kicinski <kuba@kernel.org>
13071 L:      netdev@vger.kernel.org
13072 S:      Maintained
13073 F:      include/net/tls.h
13074 F:      include/uapi/linux/tls.h
13075 F:      net/tls/*
13076
13077 NETWORKING [WIRELESS]
13078 L:      linux-wireless@vger.kernel.org
13079 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13080
13081 NETXEN (1/10) GbE SUPPORT
13082 M:      Manish Chopra <manishc@marvell.com>
13083 M:      Rahul Verma <rahulv@marvell.com>
13084 M:      GR-Linux-NIC-Dev@marvell.com
13085 L:      netdev@vger.kernel.org
13086 S:      Supported
13087 F:      drivers/net/ethernet/qlogic/netxen/
13088
13089 NET_FAILOVER MODULE
13090 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13091 L:      netdev@vger.kernel.org
13092 S:      Supported
13093 F:      Documentation/networking/net_failover.rst
13094 F:      drivers/net/net_failover.c
13095 F:      include/net/net_failover.h
13096
13097 NEXTHOP
13098 M:      David Ahern <dsahern@kernel.org>
13099 L:      netdev@vger.kernel.org
13100 S:      Maintained
13101 F:      include/net/netns/nexthop.h
13102 F:      include/net/nexthop.h
13103 F:      include/uapi/linux/nexthop.h
13104 F:      net/ipv4/nexthop.c
13105
13106 NFC SUBSYSTEM
13107 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13108 L:      linux-nfc@lists.01.org (subscribers-only)
13109 L:      netdev@vger.kernel.org
13110 S:      Maintained
13111 F:      Documentation/devicetree/bindings/net/nfc/
13112 F:      drivers/nfc/
13113 F:      include/linux/platform_data/nfcmrvl.h
13114 F:      include/net/nfc/
13115 F:      include/uapi/linux/nfc.h
13116 F:      net/nfc/
13117
13118 NFC VIRTUAL NCI DEVICE DRIVER
13119 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13120 L:      netdev@vger.kernel.org
13121 L:      linux-nfc@lists.01.org (subscribers-only)
13122 S:      Supported
13123 F:      drivers/nfc/virtual_ncidev.c
13124 F:      tools/testing/selftests/nci/
13125
13126 NFS, SUNRPC, AND LOCKD CLIENTS
13127 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13128 M:      Anna Schumaker <anna.schumaker@netapp.com>
13129 L:      linux-nfs@vger.kernel.org
13130 S:      Maintained
13131 W:      http://client.linux-nfs.org
13132 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13133 F:      fs/lockd/
13134 F:      fs/nfs/
13135 F:      fs/nfs_common/
13136 F:      include/linux/lockd/
13137 F:      include/linux/nfs*
13138 F:      include/linux/sunrpc/
13139 F:      include/uapi/linux/nfs*
13140 F:      include/uapi/linux/sunrpc/
13141 F:      net/sunrpc/
13142 F:      Documentation/filesystems/nfs/
13143
13144 NILFS2 FILESYSTEM
13145 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13146 L:      linux-nilfs@vger.kernel.org
13147 S:      Supported
13148 W:      https://nilfs.sourceforge.io/
13149 W:      https://nilfs.osdn.jp/
13150 T:      git git://github.com/konis/nilfs2.git
13151 F:      Documentation/filesystems/nilfs2.rst
13152 F:      fs/nilfs2/
13153 F:      include/trace/events/nilfs2.h
13154 F:      include/uapi/linux/nilfs2_api.h
13155 F:      include/uapi/linux/nilfs2_ondisk.h
13156
13157 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13158 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13159 S:      Maintained
13160 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13161 F:      Documentation/scsi/NinjaSCSI.rst
13162 F:      drivers/scsi/pcmcia/nsp_*
13163
13164 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13165 M:      GOTO Masanori <gotom@debian.or.jp>
13166 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13167 S:      Maintained
13168 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13169 F:      Documentation/scsi/NinjaSCSI.rst
13170 F:      drivers/scsi/nsp32*
13171
13172 NIOS2 ARCHITECTURE
13173 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13174 S:      Maintained
13175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
13176 F:      arch/nios2/
13177
13178 NITRO ENCLAVES (NE)
13179 M:      Andra Paraschiv <andraprs@amazon.com>
13180 M:      Alexandru Vasile <lexnv@amazon.com>
13181 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13182 L:      linux-kernel@vger.kernel.org
13183 S:      Supported
13184 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13185 F:      Documentation/virt/ne_overview.rst
13186 F:      drivers/virt/nitro_enclaves/
13187 F:      include/linux/nitro_enclaves.h
13188 F:      include/uapi/linux/nitro_enclaves.h
13189 F:      samples/nitro_enclaves/
13190
13191 NOHZ, DYNTICKS SUPPORT
13192 M:      Frederic Weisbecker <fweisbec@gmail.com>
13193 M:      Thomas Gleixner <tglx@linutronix.de>
13194 M:      Ingo Molnar <mingo@kernel.org>
13195 L:      linux-kernel@vger.kernel.org
13196 S:      Maintained
13197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13198 F:      include/linux/sched/nohz.h
13199 F:      include/linux/tick.h
13200 F:      kernel/time/tick*.*
13201
13202 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13203 M:      Pavel Machek <pavel@ucw.cz>
13204 M:      Sakari Ailus <sakari.ailus@iki.fi>
13205 L:      linux-media@vger.kernel.org
13206 S:      Maintained
13207 F:      drivers/media/i2c/ad5820.c
13208 F:      drivers/media/i2c/et8ek8
13209
13210 NOKIA N900 POWER SUPPLY DRIVERS
13211 R:      Pali Rohár <pali@kernel.org>
13212 F:      drivers/power/supply/bq2415x_charger.c
13213 F:      drivers/power/supply/bq27xxx_battery.c
13214 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13215 F:      drivers/power/supply/isp1704_charger.c
13216 F:      drivers/power/supply/rx51_battery.c
13217 F:      include/linux/power/bq2415x_charger.h
13218 F:      include/linux/power/bq27xxx_battery.h
13219
13220 NOLIBC HEADER FILE
13221 M:      Willy Tarreau <w@1wt.eu>
13222 S:      Maintained
13223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13224 F:      tools/include/nolibc/
13225
13226 NSDEPS
13227 M:      Matthias Maennich <maennich@google.com>
13228 S:      Maintained
13229 F:      Documentation/core-api/symbol-namespaces.rst
13230 F:      scripts/nsdeps
13231
13232 NTB AMD DRIVER
13233 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13234 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13235 L:      linux-ntb@googlegroups.com
13236 S:      Supported
13237 F:      drivers/ntb/hw/amd/
13238
13239 NTB DRIVER CORE
13240 M:      Jon Mason <jdmason@kudzu.us>
13241 M:      Dave Jiang <dave.jiang@intel.com>
13242 M:      Allen Hubbe <allenbh@gmail.com>
13243 L:      linux-ntb@googlegroups.com
13244 S:      Supported
13245 W:      https://github.com/jonmason/ntb/wiki
13246 T:      git git://github.com/jonmason/ntb.git
13247 F:      drivers/net/ntb_netdev.c
13248 F:      drivers/ntb/
13249 F:      include/linux/ntb.h
13250 F:      include/linux/ntb_transport.h
13251 F:      tools/testing/selftests/ntb/
13252
13253 NTB IDT DRIVER
13254 M:      Serge Semin <fancer.lancer@gmail.com>
13255 L:      linux-ntb@googlegroups.com
13256 S:      Supported
13257 F:      drivers/ntb/hw/idt/
13258
13259 NTB INTEL DRIVER
13260 M:      Dave Jiang <dave.jiang@intel.com>
13261 L:      linux-ntb@googlegroups.com
13262 S:      Supported
13263 W:      https://github.com/davejiang/linux/wiki
13264 T:      git https://github.com/davejiang/linux.git
13265 F:      drivers/ntb/hw/intel/
13266
13267 NTFS FILESYSTEM
13268 M:      Anton Altaparmakov <anton@tuxera.com>
13269 L:      linux-ntfs-dev@lists.sourceforge.net
13270 S:      Supported
13271 W:      http://www.tuxera.com/
13272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13273 F:      Documentation/filesystems/ntfs.rst
13274 F:      fs/ntfs/
13275
13276 NUBUS SUBSYSTEM
13277 M:      Finn Thain <fthain@linux-m68k.org>
13278 L:      linux-m68k@lists.linux-m68k.org
13279 S:      Maintained
13280 F:      arch/*/include/asm/nubus.h
13281 F:      drivers/nubus/
13282 F:      include/linux/nubus.h
13283 F:      include/uapi/linux/nubus.h
13284
13285 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13286 M:      Antonino Daplas <adaplas@gmail.com>
13287 L:      linux-fbdev@vger.kernel.org
13288 S:      Maintained
13289 F:      drivers/video/fbdev/nvidia/
13290 F:      drivers/video/fbdev/riva/
13291
13292 NVM EXPRESS DRIVER
13293 M:      Keith Busch <kbusch@kernel.org>
13294 M:      Jens Axboe <axboe@fb.com>
13295 M:      Christoph Hellwig <hch@lst.de>
13296 M:      Sagi Grimberg <sagi@grimberg.me>
13297 L:      linux-nvme@lists.infradead.org
13298 S:      Supported
13299 W:      http://git.infradead.org/nvme.git
13300 T:      git://git.infradead.org/nvme.git
13301 F:      drivers/nvme/host/
13302 F:      include/linux/nvme.h
13303 F:      include/uapi/linux/nvme_ioctl.h
13304
13305 NVM EXPRESS FC TRANSPORT DRIVERS
13306 M:      James Smart <james.smart@broadcom.com>
13307 L:      linux-nvme@lists.infradead.org
13308 S:      Supported
13309 F:      drivers/nvme/host/fc.c
13310 F:      drivers/nvme/target/fc.c
13311 F:      drivers/nvme/target/fcloop.c
13312 F:      include/linux/nvme-fc-driver.h
13313 F:      include/linux/nvme-fc.h
13314
13315 NVM EXPRESS TARGET DRIVER
13316 M:      Christoph Hellwig <hch@lst.de>
13317 M:      Sagi Grimberg <sagi@grimberg.me>
13318 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
13319 L:      linux-nvme@lists.infradead.org
13320 S:      Supported
13321 W:      http://git.infradead.org/nvme.git
13322 T:      git://git.infradead.org/nvme.git
13323 F:      drivers/nvme/target/
13324
13325 NVMEM FRAMEWORK
13326 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13327 S:      Maintained
13328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13329 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13330 F:      Documentation/devicetree/bindings/nvmem/
13331 F:      drivers/nvmem/
13332 F:      include/linux/nvmem-consumer.h
13333 F:      include/linux/nvmem-provider.h
13334
13335 NXP C45 TJA11XX PHY DRIVER
13336 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13337 L:      netdev@vger.kernel.org
13338 S:      Maintained
13339 F:      drivers/net/phy/nxp-c45-tja11xx.c
13340
13341 NXP FSPI DRIVER
13342 M:      Ashish Kumar <ashish.kumar@nxp.com>
13343 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13344 L:      linux-spi@vger.kernel.org
13345 S:      Maintained
13346 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13347 F:      drivers/spi/spi-nxp-fspi.c
13348
13349 NXP FXAS21002C DRIVER
13350 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13351 L:      linux-iio@vger.kernel.org
13352 S:      Maintained
13353 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13354 F:      drivers/iio/gyro/fxas21002c.h
13355 F:      drivers/iio/gyro/fxas21002c_core.c
13356 F:      drivers/iio/gyro/fxas21002c_i2c.c
13357 F:      drivers/iio/gyro/fxas21002c_spi.c
13358
13359 NXP i.MX CLOCK DRIVERS
13360 M:      Abel Vesa <abel.vesa@nxp.com>
13361 L:      linux-clk@vger.kernel.org
13362 L:      linux-imx@nxp.com
13363 S:      Maintained
13364 F:      drivers/clk/imx/
13365
13366 NXP i.MX 8MQ DCSS DRIVER
13367 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13368 R:      Lucas Stach <l.stach@pengutronix.de>
13369 L:      dri-devel@lists.freedesktop.org
13370 S:      Maintained
13371 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13372 F:      drivers/gpu/drm/imx/dcss/
13373
13374 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13375 M:      Jagan Teki <jagan@amarulasolutions.com>
13376 S:      Maintained
13377 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13378 F:      drivers/regulator/pf8x00-regulator.c
13379
13380 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13381 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13382 L:      linux-kernel@vger.kernel.org
13383 S:      Maintained
13384 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13385 F:      drivers/extcon/extcon-ptn5150.c
13386
13387 NXP SGTL5000 DRIVER
13388 M:      Fabio Estevam <festevam@gmail.com>
13389 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13390 S:      Maintained
13391 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13392 F:      sound/soc/codecs/sgtl5000*
13393
13394 NXP SJA1105 ETHERNET SWITCH DRIVER
13395 M:      Vladimir Oltean <olteanv@gmail.com>
13396 L:      linux-kernel@vger.kernel.org
13397 S:      Maintained
13398 F:      drivers/net/dsa/sja1105
13399 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13400
13401 NXP TDA998X DRM DRIVER
13402 M:      Russell King <linux@armlinux.org.uk>
13403 S:      Maintained
13404 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13405 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13406 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13407 F:      include/drm/i2c/tda998x.h
13408 F:      include/dt-bindings/display/tda998x.h
13409 K:      "nxp,tda998x"
13410
13411 NXP TFA9879 DRIVER
13412 M:      Peter Rosin <peda@axentia.se>
13413 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13414 S:      Maintained
13415 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13416 F:      sound/soc/codecs/tfa9879*
13417
13418 NXP/Goodix TFA989X (TFA1) DRIVER
13419 M:      Stephan Gerhold <stephan@gerhold.net>
13420 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13421 S:      Maintained
13422 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13423 F:      sound/soc/codecs/tfa989x.c
13424
13425 NXP-NCI NFC DRIVER
13426 R:      Charles Gorand <charles.gorand@effinnov.com>
13427 L:      linux-nfc@lists.01.org (subscribers-only)
13428 S:      Supported
13429 F:      drivers/nfc/nxp-nci
13430
13431 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13432 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13433 R:      NXP Linux Team <linux-imx@nxp.com>
13434 L:      linux-media@vger.kernel.org
13435 S:      Maintained
13436 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13437 F:      drivers/media/platform/imx-jpeg
13438
13439 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13440 M:      Jonas Malaco <jonas@protocubo.io>
13441 L:      linux-hwmon@vger.kernel.org
13442 S:      Maintained
13443 F:      Documentation/hwmon/nzxt-kraken2.rst
13444 F:      drivers/hwmon/nzxt-kraken2.c
13445
13446 OBJAGG
13447 M:      Jiri Pirko <jiri@nvidia.com>
13448 L:      netdev@vger.kernel.org
13449 S:      Supported
13450 F:      include/linux/objagg.h
13451 F:      lib/objagg.c
13452 F:      lib/test_objagg.c
13453
13454 OBJTOOL
13455 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13456 M:      Peter Zijlstra <peterz@infradead.org>
13457 S:      Supported
13458 F:      tools/objtool/
13459 F:      include/linux/objtool.h
13460
13461 OCELOT ETHERNET SWITCH DRIVER
13462 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13463 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13464 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13465 M:      UNGLinuxDriver@microchip.com
13466 L:      netdev@vger.kernel.org
13467 S:      Supported
13468 F:      drivers/net/dsa/ocelot/*
13469 F:      drivers/net/ethernet/mscc/
13470 F:      include/soc/mscc/ocelot*
13471 F:      net/dsa/tag_ocelot.c
13472 F:      net/dsa/tag_ocelot_8021q.c
13473 F:      tools/testing/selftests/drivers/net/ocelot/*
13474
13475 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13476 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13477 M:      Andrew Donnellan <ajd@linux.ibm.com>
13478 L:      linuxppc-dev@lists.ozlabs.org
13479 S:      Supported
13480 F:      Documentation/userspace-api/accelerators/ocxl.rst
13481 F:      arch/powerpc/include/asm/pnv-ocxl.h
13482 F:      arch/powerpc/platforms/powernv/ocxl.c
13483 F:      drivers/misc/ocxl/
13484 F:      include/misc/ocxl*
13485 F:      include/uapi/misc/ocxl.h
13486
13487 OMAP AUDIO SUPPORT
13488 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13489 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13490 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13491 L:      linux-omap@vger.kernel.org
13492 S:      Maintained
13493 F:      sound/soc/ti/n810.c
13494 F:      sound/soc/ti/omap*
13495 F:      sound/soc/ti/rx51.c
13496 F:      sound/soc/ti/sdma-pcm.*
13497
13498 OMAP CLOCK FRAMEWORK SUPPORT
13499 M:      Paul Walmsley <paul@pwsan.com>
13500 L:      linux-omap@vger.kernel.org
13501 S:      Maintained
13502 F:      arch/arm/*omap*/*clock*
13503
13504 OMAP DEVICE TREE SUPPORT
13505 M:      Benoît Cousson <bcousson@baylibre.com>
13506 M:      Tony Lindgren <tony@atomide.com>
13507 L:      linux-omap@vger.kernel.org
13508 L:      devicetree@vger.kernel.org
13509 S:      Maintained
13510 F:      arch/arm/boot/dts/*am3*
13511 F:      arch/arm/boot/dts/*am4*
13512 F:      arch/arm/boot/dts/*am5*
13513 F:      arch/arm/boot/dts/*dra7*
13514 F:      arch/arm/boot/dts/*omap*
13515 F:      arch/arm/boot/dts/logicpd-som-lv*
13516 F:      arch/arm/boot/dts/logicpd-torpedo*
13517
13518 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13519 L:      linux-omap@vger.kernel.org
13520 L:      linux-fbdev@vger.kernel.org
13521 S:      Orphan
13522 F:      Documentation/arm/omap/dss.rst
13523 F:      drivers/video/fbdev/omap2/
13524
13525 OMAP FRAMEBUFFER SUPPORT
13526 L:      linux-fbdev@vger.kernel.org
13527 L:      linux-omap@vger.kernel.org
13528 S:      Orphan
13529 F:      drivers/video/fbdev/omap/
13530
13531 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13532 M:      Roger Quadros <rogerq@kernel.org>
13533 M:      Tony Lindgren <tony@atomide.com>
13534 L:      linux-omap@vger.kernel.org
13535 S:      Maintained
13536 F:      arch/arm/mach-omap2/*gpmc*
13537 F:      drivers/memory/omap-gpmc.c
13538
13539 OMAP GPIO DRIVER
13540 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13541 M:      Santosh Shilimkar <ssantosh@kernel.org>
13542 M:      Kevin Hilman <khilman@kernel.org>
13543 L:      linux-omap@vger.kernel.org
13544 S:      Maintained
13545 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13546 F:      drivers/gpio/gpio-omap.c
13547
13548 OMAP HARDWARE SPINLOCK SUPPORT
13549 M:      Ohad Ben-Cohen <ohad@wizery.com>
13550 L:      linux-omap@vger.kernel.org
13551 S:      Maintained
13552 F:      drivers/hwspinlock/omap_hwspinlock.c
13553
13554 OMAP HS MMC SUPPORT
13555 L:      linux-mmc@vger.kernel.org
13556 L:      linux-omap@vger.kernel.org
13557 S:      Orphan
13558 F:      drivers/mmc/host/omap_hsmmc.c
13559
13560 OMAP HWMOD DATA
13561 M:      Paul Walmsley <paul@pwsan.com>
13562 L:      linux-omap@vger.kernel.org
13563 S:      Maintained
13564 F:      arch/arm/mach-omap2/omap_hwmod*data*
13565
13566 OMAP HWMOD SUPPORT
13567 M:      Benoît Cousson <bcousson@baylibre.com>
13568 M:      Paul Walmsley <paul@pwsan.com>
13569 L:      linux-omap@vger.kernel.org
13570 S:      Maintained
13571 F:      arch/arm/mach-omap2/omap_hwmod.*
13572
13573 OMAP I2C DRIVER
13574 M:      Vignesh R <vigneshr@ti.com>
13575 L:      linux-omap@vger.kernel.org
13576 L:      linux-i2c@vger.kernel.org
13577 S:      Maintained
13578 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13579 F:      drivers/i2c/busses/i2c-omap.c
13580
13581 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13582 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13583 L:      linux-media@vger.kernel.org
13584 S:      Maintained
13585 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13586 F:      drivers/media/platform/omap3isp/
13587 F:      drivers/staging/media/omap4iss/
13588
13589 OMAP MMC SUPPORT
13590 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13591 L:      linux-omap@vger.kernel.org
13592 S:      Odd Fixes
13593 F:      drivers/mmc/host/omap.c
13594
13595 OMAP POWER MANAGEMENT SUPPORT
13596 M:      Kevin Hilman <khilman@kernel.org>
13597 L:      linux-omap@vger.kernel.org
13598 S:      Maintained
13599 F:      arch/arm/*omap*/*pm*
13600 F:      drivers/cpufreq/omap-cpufreq.c
13601
13602 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13603 M:      Rajendra Nayak <rnayak@codeaurora.org>
13604 M:      Paul Walmsley <paul@pwsan.com>
13605 L:      linux-omap@vger.kernel.org
13606 S:      Maintained
13607 F:      arch/arm/mach-omap2/prm*
13608
13609 OMAP RANDOM NUMBER GENERATOR SUPPORT
13610 M:      Deepak Saxena <dsaxena@plexity.net>
13611 S:      Maintained
13612 F:      drivers/char/hw_random/omap-rng.c
13613
13614 OMAP USB SUPPORT
13615 L:      linux-usb@vger.kernel.org
13616 L:      linux-omap@vger.kernel.org
13617 S:      Orphan
13618 F:      arch/arm/*omap*/usb*
13619 F:      drivers/usb/*/*omap*
13620
13621 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13622 M:      Mark Jackson <mpfj@newflow.co.uk>
13623 L:      linux-omap@vger.kernel.org
13624 S:      Maintained
13625 F:      arch/arm/boot/dts/am335x-nano.dts
13626
13627 OMAP1 SUPPORT
13628 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13629 M:      Tony Lindgren <tony@atomide.com>
13630 L:      linux-omap@vger.kernel.org
13631 S:      Maintained
13632 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13634 F:      arch/arm/configs/omap1_defconfig
13635 F:      arch/arm/mach-omap1/
13636 F:      arch/arm/plat-omap/
13637 F:      drivers/i2c/busses/i2c-omap.c
13638 F:      include/linux/platform_data/ams-delta-fiq.h
13639 F:      include/linux/platform_data/i2c-omap.h
13640
13641 OMAP2+ SUPPORT
13642 M:      Tony Lindgren <tony@atomide.com>
13643 L:      linux-omap@vger.kernel.org
13644 S:      Maintained
13645 W:      http://www.muru.com/linux/omap/
13646 W:      http://linux.omap.com/
13647 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13649 F:      arch/arm/configs/omap2plus_defconfig
13650 F:      arch/arm/mach-omap2/
13651 F:      arch/arm/plat-omap/
13652 F:      drivers/bus/ti-sysc.c
13653 F:      drivers/i2c/busses/i2c-omap.c
13654 F:      drivers/irqchip/irq-omap-intc.c
13655 F:      drivers/mfd/*omap*.c
13656 F:      drivers/mfd/menelaus.c
13657 F:      drivers/mfd/palmas.c
13658 F:      drivers/mfd/tps65217.c
13659 F:      drivers/mfd/tps65218.c
13660 F:      drivers/mfd/tps65910.c
13661 F:      drivers/mfd/twl-core.[ch]
13662 F:      drivers/mfd/twl4030*.c
13663 F:      drivers/mfd/twl6030*.c
13664 F:      drivers/mfd/twl6040*.c
13665 F:      drivers/regulator/palmas-regulator*.c
13666 F:      drivers/regulator/pbias-regulator.c
13667 F:      drivers/regulator/tps65217-regulator.c
13668 F:      drivers/regulator/tps65218-regulator.c
13669 F:      drivers/regulator/tps65910-regulator.c
13670 F:      drivers/regulator/twl-regulator.c
13671 F:      drivers/regulator/twl6030-regulator.c
13672 F:      include/linux/platform_data/i2c-omap.h
13673 F:      include/linux/platform_data/ti-sysc.h
13674
13675 OMFS FILESYSTEM
13676 M:      Bob Copeland <me@bobcopeland.com>
13677 L:      linux-karma-devel@lists.sourceforge.net
13678 S:      Maintained
13679 F:      Documentation/filesystems/omfs.rst
13680 F:      fs/omfs/
13681
13682 OMNIKEY CARDMAN 4000 DRIVER
13683 M:      Harald Welte <laforge@gnumonks.org>
13684 S:      Maintained
13685 F:      drivers/char/pcmcia/cm4000_cs.c
13686 F:      include/linux/cm4000_cs.h
13687 F:      include/uapi/linux/cm4000_cs.h
13688
13689 OMNIKEY CARDMAN 4040 DRIVER
13690 M:      Harald Welte <laforge@gnumonks.org>
13691 S:      Maintained
13692 F:      drivers/char/pcmcia/cm4040_cs.*
13693
13694 OMNIVISION OV02A10 SENSOR DRIVER
13695 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13696 L:      linux-media@vger.kernel.org
13697 S:      Maintained
13698 T:      git git://linuxtv.org/media_tree.git
13699 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13700 F:      drivers/media/i2c/ov02a10.c
13701
13702 OMNIVISION OV13858 SENSOR DRIVER
13703 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13704 L:      linux-media@vger.kernel.org
13705 S:      Maintained
13706 T:      git git://linuxtv.org/media_tree.git
13707 F:      drivers/media/i2c/ov13858.c
13708
13709 OMNIVISION OV2680 SENSOR DRIVER
13710 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13711 L:      linux-media@vger.kernel.org
13712 S:      Maintained
13713 T:      git git://linuxtv.org/media_tree.git
13714 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13715 F:      drivers/media/i2c/ov2680.c
13716
13717 OMNIVISION OV2685 SENSOR DRIVER
13718 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13719 L:      linux-media@vger.kernel.org
13720 S:      Maintained
13721 T:      git git://linuxtv.org/media_tree.git
13722 F:      drivers/media/i2c/ov2685.c
13723
13724 OMNIVISION OV2740 SENSOR DRIVER
13725 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13726 R:      Shawn Tu <shawnx.tu@intel.com>
13727 R:      Bingbu Cao <bingbu.cao@intel.com>
13728 L:      linux-media@vger.kernel.org
13729 S:      Maintained
13730 T:      git git://linuxtv.org/media_tree.git
13731 F:      drivers/media/i2c/ov2740.c
13732
13733 OMNIVISION OV5640 SENSOR DRIVER
13734 M:      Steve Longerbeam <slongerbeam@gmail.com>
13735 L:      linux-media@vger.kernel.org
13736 S:      Maintained
13737 T:      git git://linuxtv.org/media_tree.git
13738 F:      drivers/media/i2c/ov5640.c
13739
13740 OMNIVISION OV5647 SENSOR DRIVER
13741 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13742 M:      Jacopo Mondi <jacopo@jmondi.org>
13743 L:      linux-media@vger.kernel.org
13744 S:      Maintained
13745 T:      git git://linuxtv.org/media_tree.git
13746 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13747 F:      drivers/media/i2c/ov5647.c
13748
13749 OMNIVISION OV5670 SENSOR DRIVER
13750 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13751 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13752 L:      linux-media@vger.kernel.org
13753 S:      Maintained
13754 T:      git git://linuxtv.org/media_tree.git
13755 F:      drivers/media/i2c/ov5670.c
13756
13757 OMNIVISION OV5675 SENSOR DRIVER
13758 M:      Shawn Tu <shawnx.tu@intel.com>
13759 L:      linux-media@vger.kernel.org
13760 S:      Maintained
13761 T:      git git://linuxtv.org/media_tree.git
13762 F:      drivers/media/i2c/ov5675.c
13763
13764 OMNIVISION OV5695 SENSOR DRIVER
13765 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13766 L:      linux-media@vger.kernel.org
13767 S:      Maintained
13768 T:      git git://linuxtv.org/media_tree.git
13769 F:      drivers/media/i2c/ov5695.c
13770
13771 OMNIVISION OV7670 SENSOR DRIVER
13772 L:      linux-media@vger.kernel.org
13773 S:      Orphan
13774 T:      git git://linuxtv.org/media_tree.git
13775 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13776 F:      drivers/media/i2c/ov7670.c
13777
13778 OMNIVISION OV772x SENSOR DRIVER
13779 M:      Jacopo Mondi <jacopo@jmondi.org>
13780 L:      linux-media@vger.kernel.org
13781 S:      Odd fixes
13782 T:      git git://linuxtv.org/media_tree.git
13783 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13784 F:      drivers/media/i2c/ov772x.c
13785 F:      include/media/i2c/ov772x.h
13786
13787 OMNIVISION OV7740 SENSOR DRIVER
13788 M:      Wenyou Yang <wenyou.yang@microchip.com>
13789 L:      linux-media@vger.kernel.org
13790 S:      Maintained
13791 T:      git git://linuxtv.org/media_tree.git
13792 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13793 F:      drivers/media/i2c/ov7740.c
13794
13795 OMNIVISION OV8856 SENSOR DRIVER
13796 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13797 L:      linux-media@vger.kernel.org
13798 S:      Maintained
13799 T:      git git://linuxtv.org/media_tree.git
13800 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13801 F:      drivers/media/i2c/ov8856.c
13802
13803 OMNIVISION OV9640 SENSOR DRIVER
13804 M:      Petr Cvek <petrcvekcz@gmail.com>
13805 L:      linux-media@vger.kernel.org
13806 S:      Maintained
13807 F:      drivers/media/i2c/ov9640.*
13808
13809 OMNIVISION OV9650 SENSOR DRIVER
13810 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13811 R:      Akinobu Mita <akinobu.mita@gmail.com>
13812 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13813 L:      linux-media@vger.kernel.org
13814 S:      Maintained
13815 T:      git git://linuxtv.org/media_tree.git
13816 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13817 F:      drivers/media/i2c/ov9650.c
13818
13819 OMNIVISION OV9734 SENSOR DRIVER
13820 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13821 R:      Bingbu Cao <bingbu.cao@intel.com>
13822 L:      linux-media@vger.kernel.org
13823 S:      Maintained
13824 T:      git git://linuxtv.org/media_tree.git
13825 F:      drivers/media/i2c/ov9734.c
13826
13827 ONENAND FLASH DRIVER
13828 M:      Kyungmin Park <kyungmin.park@samsung.com>
13829 L:      linux-mtd@lists.infradead.org
13830 S:      Maintained
13831 F:      drivers/mtd/nand/onenand/
13832 F:      include/linux/mtd/onenand*.h
13833
13834 ONION OMEGA2+ BOARD
13835 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13836 L:      linux-mips@vger.kernel.org
13837 S:      Maintained
13838 F:      arch/mips/boot/dts/ralink/omega2p.dts
13839
13840 OP-TEE DRIVER
13841 M:      Jens Wiklander <jens.wiklander@linaro.org>
13842 L:      op-tee@lists.trustedfirmware.org
13843 S:      Maintained
13844 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13845 F:      drivers/tee/optee/
13846
13847 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13848 M:      Sumit Garg <sumit.garg@linaro.org>
13849 L:      op-tee@lists.trustedfirmware.org
13850 S:      Maintained
13851 F:      drivers/char/hw_random/optee-rng.c
13852
13853 OPA-VNIC DRIVER
13854 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13855 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13856 L:      linux-rdma@vger.kernel.org
13857 S:      Supported
13858 F:      drivers/infiniband/ulp/opa_vnic
13859
13860 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13861 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13862 M:      Frank Rowand <frowand.list@gmail.com>
13863 L:      devicetree@vger.kernel.org
13864 S:      Maintained
13865 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13866 F:      Documentation/devicetree/overlay-notes.rst
13867 F:      drivers/of/overlay.c
13868 F:      drivers/of/resolver.c
13869 K:      of_overlay_notifier_
13870
13871 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13872 M:      Rob Herring <robh+dt@kernel.org>
13873 M:      Frank Rowand <frowand.list@gmail.com>
13874 L:      devicetree@vger.kernel.org
13875 S:      Maintained
13876 W:      http://www.devicetree.org/
13877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13878 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13879 F:      drivers/of/
13880 F:      include/linux/of*.h
13881 F:      scripts/dtc/
13882
13883 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13884 M:      Rob Herring <robh+dt@kernel.org>
13885 L:      devicetree@vger.kernel.org
13886 S:      Maintained
13887 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13889 F:      Documentation/devicetree/
13890 F:      arch/*/boot/dts/
13891 F:      include/dt-bindings/
13892
13893 OPENCORES I2C BUS DRIVER
13894 M:      Peter Korsgaard <peter@korsgaard.com>
13895 M:      Andrew Lunn <andrew@lunn.ch>
13896 L:      linux-i2c@vger.kernel.org
13897 S:      Maintained
13898 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13899 F:      Documentation/i2c/busses/i2c-ocores.rst
13900 F:      drivers/i2c/busses/i2c-ocores.c
13901 F:      include/linux/platform_data/i2c-ocores.h
13902
13903 OPENRISC ARCHITECTURE
13904 M:      Jonas Bonn <jonas@southpole.se>
13905 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13906 M:      Stafford Horne <shorne@gmail.com>
13907 L:      openrisc@lists.librecores.org
13908 S:      Maintained
13909 W:      http://openrisc.io
13910 T:      git git://github.com/openrisc/linux.git
13911 F:      Documentation/devicetree/bindings/openrisc/
13912 F:      Documentation/openrisc/
13913 F:      arch/openrisc/
13914 F:      drivers/irqchip/irq-ompic.c
13915 F:      drivers/irqchip/irq-or1k-*
13916
13917 OPENVSWITCH
13918 M:      Pravin B Shelar <pshelar@ovn.org>
13919 L:      netdev@vger.kernel.org
13920 L:      dev@openvswitch.org
13921 S:      Maintained
13922 W:      http://openvswitch.org
13923 F:      include/uapi/linux/openvswitch.h
13924 F:      net/openvswitch/
13925
13926 OPERATING PERFORMANCE POINTS (OPP)
13927 M:      Viresh Kumar <vireshk@kernel.org>
13928 M:      Nishanth Menon <nm@ti.com>
13929 M:      Stephen Boyd <sboyd@kernel.org>
13930 L:      linux-pm@vger.kernel.org
13931 S:      Maintained
13932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13933 F:      Documentation/devicetree/bindings/opp/
13934 F:      Documentation/power/opp.rst
13935 F:      drivers/opp/
13936 F:      include/linux/pm_opp.h
13937
13938 OPL4 DRIVER
13939 M:      Clemens Ladisch <clemens@ladisch.de>
13940 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13941 S:      Maintained
13942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13943 F:      sound/drivers/opl4/
13944
13945 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13946 M:      Mark Fasheh <mark@fasheh.com>
13947 M:      Joel Becker <jlbec@evilplan.org>
13948 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13949 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13950 S:      Supported
13951 W:      http://ocfs2.wiki.kernel.org
13952 F:      Documentation/filesystems/dlmfs.rst
13953 F:      Documentation/filesystems/ocfs2.rst
13954 F:      fs/ocfs2/
13955
13956 ORANGEFS FILESYSTEM
13957 M:      Mike Marshall <hubcap@omnibond.com>
13958 R:      Martin Brandenburg <martin@omnibond.com>
13959 L:      devel@lists.orangefs.org
13960 S:      Supported
13961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13962 F:      Documentation/filesystems/orangefs.rst
13963 F:      fs/orangefs/
13964
13965 ORINOCO DRIVER
13966 L:      linux-wireless@vger.kernel.org
13967 S:      Orphan
13968 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13969 W:      http://www.nongnu.org/orinoco/
13970 F:      drivers/net/wireless/intersil/orinoco/
13971
13972 OV2659 OMNIVISION SENSOR DRIVER
13973 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13974 L:      linux-media@vger.kernel.org
13975 S:      Maintained
13976 W:      https://linuxtv.org
13977 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13978 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13979 F:      drivers/media/i2c/ov2659.c
13980 F:      include/media/i2c/ov2659.h
13981
13982 OVERLAY FILESYSTEM
13983 M:      Miklos Szeredi <miklos@szeredi.hu>
13984 L:      linux-unionfs@vger.kernel.org
13985 S:      Supported
13986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13987 F:      Documentation/filesystems/overlayfs.rst
13988 F:      fs/overlayfs/
13989
13990 P54 WIRELESS DRIVER
13991 M:      Christian Lamparter <chunkeey@googlemail.com>
13992 L:      linux-wireless@vger.kernel.org
13993 S:      Maintained
13994 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13995 F:      drivers/net/wireless/intersil/p54/
13996
13997 PACKING
13998 M:      Vladimir Oltean <olteanv@gmail.com>
13999 L:      netdev@vger.kernel.org
14000 S:      Supported
14001 F:      Documentation/core-api/packing.rst
14002 F:      include/linux/packing.h
14003 F:      lib/packing.c
14004
14005 PADATA PARALLEL EXECUTION MECHANISM
14006 M:      Steffen Klassert <steffen.klassert@secunet.com>
14007 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14008 L:      linux-crypto@vger.kernel.org
14009 L:      linux-kernel@vger.kernel.org
14010 S:      Maintained
14011 F:      Documentation/core-api/padata.rst
14012 F:      include/linux/padata.h
14013 F:      kernel/padata.c
14014
14015 PAGE POOL
14016 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14017 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14018 L:      netdev@vger.kernel.org
14019 S:      Supported
14020 F:      Documentation/networking/page_pool.rst
14021 F:      include/net/page_pool.h
14022 F:      include/trace/events/page_pool.h
14023 F:      net/core/page_pool.c
14024
14025 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14026 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14027 L:      platform-driver-x86@vger.kernel.org
14028 S:      Maintained
14029 F:      drivers/platform/x86/panasonic-laptop.c
14030
14031 PARALLAX PING IIO SENSOR DRIVER
14032 M:      Andreas Klinger <ak@it-klinger.de>
14033 L:      linux-iio@vger.kernel.org
14034 S:      Maintained
14035 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14036 F:      drivers/iio/proximity/ping.c
14037
14038 PARALLEL LCD/KEYPAD PANEL DRIVER
14039 M:      Willy Tarreau <willy@haproxy.com>
14040 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14041 S:      Odd Fixes
14042 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14043 F:      drivers/auxdisplay/panel.c
14044
14045 PARALLEL PORT SUBSYSTEM
14046 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14047 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14048 L:      linux-parport@lists.infradead.org (subscribers-only)
14049 S:      Maintained
14050 F:      Documentation/driver-api/parport*.rst
14051 F:      drivers/char/ppdev.c
14052 F:      drivers/parport/
14053 F:      include/linux/parport*.h
14054 F:      include/uapi/linux/ppdev.h
14055
14056 PARAVIRT_OPS INTERFACE
14057 M:      Juergen Gross <jgross@suse.com>
14058 M:      Deep Shah <sdeep@vmware.com>
14059 M:      "VMware, Inc." <pv-drivers@vmware.com>
14060 L:      virtualization@lists.linux-foundation.org
14061 S:      Supported
14062 F:      Documentation/virt/paravirt_ops.rst
14063 F:      arch/*/include/asm/paravirt*.h
14064 F:      arch/*/kernel/paravirt*
14065 F:      include/linux/hypervisor.h
14066
14067 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14068 M:      Tim Waugh <tim@cyberelk.net>
14069 L:      linux-parport@lists.infradead.org (subscribers-only)
14070 S:      Maintained
14071 F:      Documentation/admin-guide/blockdev/paride.rst
14072 F:      drivers/block/paride/
14073
14074 PARISC ARCHITECTURE
14075 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14076 M:      Helge Deller <deller@gmx.de>
14077 L:      linux-parisc@vger.kernel.org
14078 S:      Maintained
14079 W:      https://parisc.wiki.kernel.org
14080 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14083 F:      Documentation/parisc/
14084 F:      arch/parisc/
14085 F:      drivers/char/agp/parisc-agp.c
14086 F:      drivers/input/misc/hp_sdc_rtc.c
14087 F:      drivers/input/serio/gscps2.c
14088 F:      drivers/input/serio/hp_sdc*
14089 F:      drivers/parisc/
14090 F:      drivers/parport/parport_gsc.*
14091 F:      drivers/tty/serial/8250/8250_gsc.c
14092 F:      drivers/video/console/sti*
14093 F:      drivers/video/fbdev/sti*
14094 F:      drivers/video/logo/logo_parisc*
14095 F:      include/linux/hp_sdc.h
14096
14097 PARMAN
14098 M:      Jiri Pirko <jiri@nvidia.com>
14099 L:      netdev@vger.kernel.org
14100 S:      Supported
14101 F:      include/linux/parman.h
14102 F:      lib/parman.c
14103 F:      lib/test_parman.c
14104
14105 PC ENGINES APU BOARD DRIVER
14106 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14107 S:      Maintained
14108 F:      drivers/platform/x86/pcengines-apuv2.c
14109
14110 PC87360 HARDWARE MONITORING DRIVER
14111 M:      Jim Cromie <jim.cromie@gmail.com>
14112 L:      linux-hwmon@vger.kernel.org
14113 S:      Maintained
14114 F:      Documentation/hwmon/pc87360.rst
14115 F:      drivers/hwmon/pc87360.c
14116
14117 PC8736x GPIO DRIVER
14118 M:      Jim Cromie <jim.cromie@gmail.com>
14119 S:      Maintained
14120 F:      drivers/char/pc8736x_gpio.c
14121
14122 PC87427 HARDWARE MONITORING DRIVER
14123 M:      Jean Delvare <jdelvare@suse.com>
14124 L:      linux-hwmon@vger.kernel.org
14125 S:      Maintained
14126 F:      Documentation/hwmon/pc87427.rst
14127 F:      drivers/hwmon/pc87427.c
14128
14129 PCA9532 LED DRIVER
14130 M:      Riku Voipio <riku.voipio@iki.fi>
14131 S:      Maintained
14132 F:      drivers/leds/leds-pca9532.c
14133 F:      include/linux/leds-pca9532.h
14134
14135 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14136 M:      Guenter Roeck <linux@roeck-us.net>
14137 L:      linux-i2c@vger.kernel.org
14138 S:      Maintained
14139 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14140
14141 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14142 M:      Khalid Aziz <khalid@gonehiking.org>
14143 S:      Maintained
14144 F:      drivers/firmware/pcdp.*
14145
14146 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14147 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14148 M:      Pali Rohár <pali@kernel.org>
14149 L:      linux-pci@vger.kernel.org
14150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14151 S:      Maintained
14152 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14153 F:      drivers/pci/controller/pci-aardvark.c
14154
14155 PCI DRIVER FOR ALTERA PCIE IP
14156 M:      Joyce Ooi <joyce.ooi@intel.com>
14157 L:      linux-pci@vger.kernel.org
14158 S:      Supported
14159 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14160 F:      drivers/pci/controller/pcie-altera.c
14161
14162 PCI DRIVER FOR APPLIEDMICRO XGENE
14163 M:      Toan Le <toan@os.amperecomputing.com>
14164 L:      linux-pci@vger.kernel.org
14165 L:      linux-arm-kernel@lists.infradead.org
14166 S:      Maintained
14167 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14168 F:      drivers/pci/controller/pci-xgene.c
14169
14170 PCI DRIVER FOR ARM VERSATILE PLATFORM
14171 M:      Rob Herring <robh@kernel.org>
14172 L:      linux-pci@vger.kernel.org
14173 L:      linux-arm-kernel@lists.infradead.org
14174 S:      Maintained
14175 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14176 F:      drivers/pci/controller/pci-versatile.c
14177
14178 PCI DRIVER FOR ARMADA 8K
14179 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14180 L:      linux-pci@vger.kernel.org
14181 L:      linux-arm-kernel@lists.infradead.org
14182 S:      Maintained
14183 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14184 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14185
14186 PCI DRIVER FOR CADENCE PCIE IP
14187 M:      Tom Joseph <tjoseph@cadence.com>
14188 L:      linux-pci@vger.kernel.org
14189 S:      Maintained
14190 F:      Documentation/devicetree/bindings/pci/cdns,*
14191 F:      drivers/pci/controller/cadence/
14192
14193 PCI DRIVER FOR FREESCALE LAYERSCAPE
14194 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14195 M:      Mingkai Hu <mingkai.hu@nxp.com>
14196 M:      Roy Zang <roy.zang@nxp.com>
14197 L:      linuxppc-dev@lists.ozlabs.org
14198 L:      linux-pci@vger.kernel.org
14199 L:      linux-arm-kernel@lists.infradead.org
14200 S:      Maintained
14201 F:      drivers/pci/controller/dwc/*layerscape*
14202
14203 PCI DRIVER FOR GENERIC OF HOSTS
14204 M:      Will Deacon <will@kernel.org>
14205 L:      linux-pci@vger.kernel.org
14206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14207 S:      Maintained
14208 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14209 F:      drivers/pci/controller/pci-host-common.c
14210 F:      drivers/pci/controller/pci-host-generic.c
14211
14212 PCI DRIVER FOR IMX6
14213 M:      Richard Zhu <hongxing.zhu@nxp.com>
14214 M:      Lucas Stach <l.stach@pengutronix.de>
14215 L:      linux-pci@vger.kernel.org
14216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14217 S:      Maintained
14218 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
14219 F:      drivers/pci/controller/dwc/*imx6*
14220
14221 PCI DRIVER FOR FU740
14222 M:      Paul Walmsley <paul.walmsley@sifive.com>
14223 M:      Greentime Hu <greentime.hu@sifive.com>
14224 L:      linux-pci@vger.kernel.org
14225 S:      Maintained
14226 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14227 F:      drivers/pci/controller/dwc/pcie-fu740.c
14228
14229 PCI DRIVER FOR INTEL IXP4XX
14230 M:      Linus Walleij <linus.walleij@linaro.org>
14231 S:      Maintained
14232 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14233 F:      drivers/pci/controller/pci-ixp4xx.c
14234
14235 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14236 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14237 L:      linux-pci@vger.kernel.org
14238 S:      Supported
14239 F:      drivers/pci/controller/vmd.c
14240
14241 PCI DRIVER FOR MICROSEMI SWITCHTEC
14242 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14243 M:      Logan Gunthorpe <logang@deltatee.com>
14244 L:      linux-pci@vger.kernel.org
14245 S:      Maintained
14246 F:      Documentation/ABI/testing/sysfs-class-switchtec
14247 F:      Documentation/driver-api/switchtec.rst
14248 F:      drivers/ntb/hw/mscc/
14249 F:      drivers/pci/switch/switchtec*
14250 F:      include/linux/switchtec.h
14251 F:      include/uapi/linux/switchtec_ioctl.h
14252
14253 PCI DRIVER FOR MOBIVEIL PCIE IP
14254 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14255 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14256 L:      linux-pci@vger.kernel.org
14257 S:      Supported
14258 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14259 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14260
14261 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14262 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14263 L:      linux-pci@vger.kernel.org
14264 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14265 S:      Maintained
14266 F:      drivers/pci/controller/*mvebu*
14267
14268 PCI DRIVER FOR NVIDIA TEGRA
14269 M:      Thierry Reding <thierry.reding@gmail.com>
14270 L:      linux-tegra@vger.kernel.org
14271 L:      linux-pci@vger.kernel.org
14272 S:      Supported
14273 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14274 F:      drivers/pci/controller/pci-tegra.c
14275
14276 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14277 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14278 L:      linux-pci@vger.kernel.org
14279 L:      linux-arm-kernel@lists.infradead.org
14280 S:      Maintained
14281 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14282 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14283
14284 PCI DRIVER FOR RENESAS R-CAR
14285 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14286 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14287 L:      linux-pci@vger.kernel.org
14288 L:      linux-renesas-soc@vger.kernel.org
14289 S:      Maintained
14290 F:      Documentation/devicetree/bindings/pci/*rcar*
14291 F:      drivers/pci/controller/*rcar*
14292
14293 PCI DRIVER FOR SAMSUNG EXYNOS
14294 M:      Jingoo Han <jingoohan1@gmail.com>
14295 L:      linux-pci@vger.kernel.org
14296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14297 L:      linux-samsung-soc@vger.kernel.org
14298 S:      Maintained
14299 F:      drivers/pci/controller/dwc/pci-exynos.c
14300
14301 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14302 M:      Jingoo Han <jingoohan1@gmail.com>
14303 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14304 L:      linux-pci@vger.kernel.org
14305 S:      Maintained
14306 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
14307 F:      drivers/pci/controller/dwc/*designware*
14308
14309 PCI DRIVER FOR TI DRA7XX/J721E
14310 M:      Kishon Vijay Abraham I <kishon@ti.com>
14311 L:      linux-omap@vger.kernel.org
14312 L:      linux-pci@vger.kernel.org
14313 L:      linux-arm-kernel@lists.infradead.org
14314 S:      Supported
14315 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14316 F:      drivers/pci/controller/cadence/pci-j721e.c
14317 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14318
14319 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14320 M:      Linus Walleij <linus.walleij@linaro.org>
14321 L:      linux-pci@vger.kernel.org
14322 S:      Maintained
14323 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14324 F:      drivers/pci/controller/pci-v3-semi.c
14325
14326 PCI ENDPOINT SUBSYSTEM
14327 M:      Kishon Vijay Abraham I <kishon@ti.com>
14328 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14329 R:      Krzysztof Wilczyński <kw@linux.com>
14330 L:      linux-pci@vger.kernel.org
14331 S:      Supported
14332 F:      Documentation/PCI/endpoint/*
14333 F:      Documentation/misc-devices/pci-endpoint-test.rst
14334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14335 F:      drivers/misc/pci_endpoint_test.c
14336 F:      drivers/pci/endpoint/
14337 F:      tools/pci/
14338
14339 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14340 M:      Russell Currey <ruscur@russell.cc>
14341 M:      Oliver O'Halloran <oohall@gmail.com>
14342 L:      linuxppc-dev@lists.ozlabs.org
14343 S:      Supported
14344 F:      Documentation/PCI/pci-error-recovery.rst
14345 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14346 F:      arch/powerpc/include/*/eeh*.h
14347 F:      arch/powerpc/kernel/eeh*.c
14348 F:      arch/powerpc/platforms/*/eeh*.c
14349 F:      drivers/pci/pcie/aer.c
14350 F:      drivers/pci/pcie/dpc.c
14351 F:      drivers/pci/pcie/err.c
14352
14353 PCI ERROR RECOVERY
14354 M:      Linas Vepstas <linasvepstas@gmail.com>
14355 L:      linux-pci@vger.kernel.org
14356 S:      Supported
14357 F:      Documentation/PCI/pci-error-recovery.rst
14358
14359 PCI MSI DRIVER FOR ALTERA MSI IP
14360 M:      Joyce Ooi <joyce.ooi@intel.com>
14361 L:      linux-pci@vger.kernel.org
14362 S:      Supported
14363 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14364 F:      drivers/pci/controller/pcie-altera-msi.c
14365
14366 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14367 M:      Toan Le <toan@os.amperecomputing.com>
14368 L:      linux-pci@vger.kernel.org
14369 L:      linux-arm-kernel@lists.infradead.org
14370 S:      Maintained
14371 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14372 F:      drivers/pci/controller/pci-xgene-msi.c
14373
14374 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14375 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14376 R:      Rob Herring <robh@kernel.org>
14377 R:      Krzysztof Wilczyński <kw@linux.com>
14378 L:      linux-pci@vger.kernel.org
14379 S:      Supported
14380 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14382 F:      drivers/pci/controller/
14383
14384 PCI SUBSYSTEM
14385 M:      Bjorn Helgaas <bhelgaas@google.com>
14386 L:      linux-pci@vger.kernel.org
14387 S:      Supported
14388 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14390 F:      Documentation/PCI/
14391 F:      Documentation/devicetree/bindings/pci/
14392 F:      arch/x86/kernel/early-quirks.c
14393 F:      arch/x86/kernel/quirks.c
14394 F:      arch/x86/pci/
14395 F:      drivers/acpi/pci*
14396 F:      drivers/pci/
14397 F:      include/asm-generic/pci*
14398 F:      include/linux/of_pci.h
14399 F:      include/linux/pci*
14400 F:      include/uapi/linux/pci*
14401 F:      lib/pci*
14402
14403 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14404 M:      Jonathan Chocron <jonnyc@amazon.com>
14405 L:      linux-pci@vger.kernel.org
14406 S:      Maintained
14407 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14408 F:      drivers/pci/controller/dwc/pcie-al.c
14409
14410 PCIE DRIVER FOR AMLOGIC MESON
14411 M:      Yue Wang <yue.wang@Amlogic.com>
14412 L:      linux-pci@vger.kernel.org
14413 L:      linux-amlogic@lists.infradead.org
14414 S:      Maintained
14415 F:      drivers/pci/controller/dwc/pci-meson.c
14416
14417 PCIE DRIVER FOR AXIS ARTPEC
14418 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14419 L:      linux-arm-kernel@axis.com
14420 L:      linux-pci@vger.kernel.org
14421 S:      Maintained
14422 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14423 F:      drivers/pci/controller/dwc/*artpec*
14424
14425 PCIE DRIVER FOR CAVIUM THUNDERX
14426 M:      Robert Richter <rric@kernel.org>
14427 L:      linux-pci@vger.kernel.org
14428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14429 S:      Odd Fixes
14430 F:      drivers/pci/controller/pci-thunder-*
14431
14432 PCIE DRIVER FOR HISILICON
14433 M:      Zhou Wang <wangzhou1@hisilicon.com>
14434 L:      linux-pci@vger.kernel.org
14435 S:      Maintained
14436 F:      drivers/pci/controller/dwc/pcie-hisi.c
14437
14438 PCIE DRIVER FOR HISILICON KIRIN
14439 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14440 M:      Binghui Wang <wangbinghui@hisilicon.com>
14441 L:      linux-pci@vger.kernel.org
14442 S:      Maintained
14443 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
14444 F:      drivers/pci/controller/dwc/pcie-kirin.c
14445
14446 PCIE DRIVER FOR HISILICON STB
14447 M:      Shawn Guo <shawn.guo@linaro.org>
14448 L:      linux-pci@vger.kernel.org
14449 S:      Maintained
14450 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14451 F:      drivers/pci/controller/dwc/pcie-histb.c
14452
14453 PCIE DRIVER FOR INTEL LGM GW SOC
14454 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14455 L:      linux-pci@vger.kernel.org
14456 S:      Maintained
14457 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14458 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14459
14460 PCIE DRIVER FOR MEDIATEK
14461 M:      Ryder Lee <ryder.lee@mediatek.com>
14462 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14463 L:      linux-pci@vger.kernel.org
14464 L:      linux-mediatek@lists.infradead.org
14465 S:      Supported
14466 F:      Documentation/devicetree/bindings/pci/mediatek*
14467 F:      drivers/pci/controller/*mediatek*
14468
14469 PCIE DRIVER FOR MICROCHIP
14470 M:      Daire McNamara <daire.mcnamara@microchip.com>
14471 L:      linux-pci@vger.kernel.org
14472 S:      Supported
14473 F:      Documentation/devicetree/bindings/pci/microchip*
14474 F:      drivers/pci/controller/*microchip*
14475
14476 PCIE DRIVER FOR QUALCOMM MSM
14477 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14478 L:      linux-pci@vger.kernel.org
14479 L:      linux-arm-msm@vger.kernel.org
14480 S:      Maintained
14481 F:      drivers/pci/controller/dwc/*qcom*
14482
14483 PCIE DRIVER FOR ROCKCHIP
14484 M:      Shawn Lin <shawn.lin@rock-chips.com>
14485 L:      linux-pci@vger.kernel.org
14486 L:      linux-rockchip@lists.infradead.org
14487 S:      Maintained
14488 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14489 F:      drivers/pci/controller/pcie-rockchip*
14490
14491 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14492 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14493 L:      linux-pci@vger.kernel.org
14494 S:      Maintained
14495 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14496 F:      drivers/pci/controller/dwc/pcie-uniphier*
14497
14498 PCIE DRIVER FOR ST SPEAR13XX
14499 M:      Pratyush Anand <pratyush.anand@gmail.com>
14500 L:      linux-pci@vger.kernel.org
14501 S:      Maintained
14502 F:      drivers/pci/controller/dwc/*spear*
14503
14504 PCMCIA SUBSYSTEM
14505 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14506 S:      Odd Fixes
14507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14508 F:      Documentation/pcmcia/
14509 F:      drivers/pcmcia/
14510 F:      include/pcmcia/
14511 F:      tools/pcmcia/
14512
14513 PCNET32 NETWORK DRIVER
14514 M:      Don Fry <pcnet32@frontier.com>
14515 L:      netdev@vger.kernel.org
14516 S:      Maintained
14517 F:      drivers/net/ethernet/amd/pcnet32.c
14518
14519 PCRYPT PARALLEL CRYPTO ENGINE
14520 M:      Steffen Klassert <steffen.klassert@secunet.com>
14521 L:      linux-crypto@vger.kernel.org
14522 S:      Maintained
14523 F:      crypto/pcrypt.c
14524 F:      include/crypto/pcrypt.h
14525
14526 PEAQ WMI HOTKEYS DRIVER
14527 M:      Hans de Goede <hdegoede@redhat.com>
14528 L:      platform-driver-x86@vger.kernel.org
14529 S:      Maintained
14530 F:      drivers/platform/x86/peaq-wmi.c
14531
14532 PENSANDO ETHERNET DRIVERS
14533 M:      Shannon Nelson <snelson@pensando.io>
14534 M:      drivers@pensando.io
14535 L:      netdev@vger.kernel.org
14536 S:      Supported
14537 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14538 F:      drivers/net/ethernet/pensando/
14539
14540 PER-CPU MEMORY ALLOCATOR
14541 M:      Dennis Zhou <dennis@kernel.org>
14542 M:      Tejun Heo <tj@kernel.org>
14543 M:      Christoph Lameter <cl@linux.com>
14544 L:      linux-mm@kvack.org
14545 S:      Maintained
14546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14547 F:      arch/*/include/asm/percpu.h
14548 F:      include/linux/percpu*.h
14549 F:      lib/percpu*.c
14550 F:      mm/percpu*.c
14551
14552 PER-TASK DELAY ACCOUNTING
14553 M:      Balbir Singh <bsingharora@gmail.com>
14554 S:      Maintained
14555 F:      include/linux/delayacct.h
14556 F:      kernel/delayacct.c
14557
14558 PERFORMANCE EVENTS SUBSYSTEM
14559 M:      Peter Zijlstra <peterz@infradead.org>
14560 M:      Ingo Molnar <mingo@redhat.com>
14561 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14562 R:      Mark Rutland <mark.rutland@arm.com>
14563 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14564 R:      Jiri Olsa <jolsa@redhat.com>
14565 R:      Namhyung Kim <namhyung@kernel.org>
14566 L:      linux-perf-users@vger.kernel.org
14567 L:      linux-kernel@vger.kernel.org
14568 S:      Supported
14569 W:      https://perf.wiki.kernel.org/
14570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14571 F:      arch/*/events/*
14572 F:      arch/*/events/*/*
14573 F:      arch/*/include/asm/perf_event.h
14574 F:      arch/*/kernel/*/*/perf_event*.c
14575 F:      arch/*/kernel/*/perf_event*.c
14576 F:      arch/*/kernel/perf_callchain.c
14577 F:      arch/*/kernel/perf_event*.c
14578 F:      include/linux/perf_event.h
14579 F:      include/uapi/linux/perf_event.h
14580 F:      kernel/events/*
14581 F:      tools/lib/perf/
14582 F:      tools/perf/
14583
14584 PERFORMANCE EVENTS TOOLING ARM64
14585 R:      John Garry <john.garry@huawei.com>
14586 R:      Will Deacon <will@kernel.org>
14587 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14588 R:      Leo Yan <leo.yan@linaro.org>
14589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14590 S:      Supported
14591 F:      tools/build/feature/test-libopencsd.c
14592 F:      tools/perf/arch/arm*/
14593 F:      tools/perf/pmu-events/arch/arm64/
14594 F:      tools/perf/util/arm-spe*
14595 F:      tools/perf/util/cs-etm*
14596
14597 PERSONALITY HANDLING
14598 M:      Christoph Hellwig <hch@infradead.org>
14599 L:      linux-abi-devel@lists.sourceforge.net
14600 S:      Maintained
14601 F:      include/linux/personality.h
14602 F:      include/uapi/linux/personality.h
14603
14604 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14605 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14606 L:      linux-input@vger.kernel.org
14607 S:      Maintained
14608 F:      Documentation/input/devices/pxrc.rst
14609 F:      drivers/input/joystick/pxrc.c
14610
14611 PHONET PROTOCOL
14612 M:      Remi Denis-Courmont <courmisch@gmail.com>
14613 S:      Supported
14614 F:      Documentation/networking/phonet.rst
14615 F:      include/linux/phonet.h
14616 F:      include/net/phonet/
14617 F:      include/uapi/linux/phonet.h
14618 F:      net/phonet/
14619
14620 PHRAM MTD DRIVER
14621 M:      Joern Engel <joern@lazybastard.org>
14622 L:      linux-mtd@lists.infradead.org
14623 S:      Maintained
14624 F:      drivers/mtd/devices/phram.c
14625
14626 PICOLCD HID DRIVER
14627 M:      Bruno Prémont <bonbons@linux-vserver.org>
14628 L:      linux-input@vger.kernel.org
14629 S:      Maintained
14630 F:      drivers/hid/hid-picolcd*
14631
14632 PIDFD API
14633 M:      Christian Brauner <christian@brauner.io>
14634 L:      linux-kernel@vger.kernel.org
14635 S:      Maintained
14636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14637 F:      samples/pidfd/
14638 F:      tools/testing/selftests/clone3/
14639 F:      tools/testing/selftests/pid_namespace/
14640 F:      tools/testing/selftests/pidfd/
14641 K:      (?i)pidfd
14642 K:      (?i)clone3
14643 K:      \b(clone_args|kernel_clone_args)\b
14644
14645 PIN CONTROL SUBSYSTEM
14646 M:      Linus Walleij <linus.walleij@linaro.org>
14647 L:      linux-gpio@vger.kernel.org
14648 S:      Maintained
14649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14650 F:      Documentation/devicetree/bindings/pinctrl/
14651 F:      Documentation/driver-api/pin-control.rst
14652 F:      drivers/pinctrl/
14653 F:      include/linux/pinctrl/
14654
14655 PIN CONTROLLER - FREESCALE
14656 M:      Dong Aisheng <aisheng.dong@nxp.com>
14657 M:      Fabio Estevam <festevam@gmail.com>
14658 M:      Shawn Guo <shawnguo@kernel.org>
14659 M:      Stefan Agner <stefan@agner.ch>
14660 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14661 L:      linux-gpio@vger.kernel.org
14662 S:      Maintained
14663 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14664 F:      drivers/pinctrl/freescale/
14665
14666 PIN CONTROLLER - INTEL
14667 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14668 M:      Andy Shevchenko <andy@kernel.org>
14669 S:      Maintained
14670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14671 F:      drivers/pinctrl/intel/
14672
14673 PIN CONTROLLER - MEDIATEK
14674 M:      Sean Wang <sean.wang@kernel.org>
14675 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14676 S:      Maintained
14677 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14678 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14679 F:      drivers/pinctrl/mediatek/
14680
14681 PIN CONTROLLER - MICROCHIP AT91
14682 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14684 L:      linux-gpio@vger.kernel.org
14685 S:      Supported
14686 F:      drivers/gpio/gpio-sama5d2-piobu.c
14687 F:      drivers/pinctrl/pinctrl-at91*
14688
14689 PIN CONTROLLER - QUALCOMM
14690 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14691 L:      linux-arm-msm@vger.kernel.org
14692 S:      Maintained
14693 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14694 F:      drivers/pinctrl/qcom/
14695
14696 PIN CONTROLLER - RENESAS
14697 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14698 L:      linux-renesas-soc@vger.kernel.org
14699 S:      Supported
14700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14701 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14702 F:      drivers/pinctrl/renesas/
14703
14704 PIN CONTROLLER - SAMSUNG
14705 M:      Tomasz Figa <tomasz.figa@gmail.com>
14706 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14707 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14709 L:      linux-samsung-soc@vger.kernel.org
14710 S:      Maintained
14711 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14713 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14714 F:      drivers/pinctrl/samsung/
14715 F:      include/dt-bindings/pinctrl/samsung.h
14716
14717 PIN CONTROLLER - SINGLE
14718 M:      Tony Lindgren <tony@atomide.com>
14719 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14721 L:      linux-omap@vger.kernel.org
14722 S:      Maintained
14723 F:      drivers/pinctrl/pinctrl-single.c
14724
14725 PIN CONTROLLER - ST SPEAR
14726 M:      Viresh Kumar <vireshk@kernel.org>
14727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14728 S:      Maintained
14729 W:      http://www.st.com/spear
14730 F:      drivers/pinctrl/spear/
14731
14732 PISTACHIO SOC SUPPORT
14733 M:      James Hartley <james.hartley@sondrel.com>
14734 L:      linux-mips@vger.kernel.org
14735 S:      Odd Fixes
14736 F:      arch/mips/boot/dts/img/pistachio*
14737 F:      arch/mips/configs/pistachio*_defconfig
14738 F:      arch/mips/pistachio/
14739
14740 PKTCDVD DRIVER
14741 M:      linux-block@vger.kernel.org
14742 S:      Orphan
14743 F:      drivers/block/pktcdvd.c
14744 F:      include/linux/pktcdvd.h
14745 F:      include/uapi/linux/pktcdvd.h
14746
14747 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14748 M:      Tomasz Duszynski <tduszyns@gmail.com>
14749 S:      Maintained
14750 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14751 F:      drivers/iio/chemical/pms7003.c
14752
14753 PLDMFW LIBRARY
14754 M:      Jacob Keller <jacob.e.keller@intel.com>
14755 S:      Maintained
14756 F:      Documentation/driver-api/pldmfw/
14757 F:      include/linux/pldmfw.h
14758 F:      lib/pldmfw/
14759
14760 PLX DMA DRIVER
14761 M:      Logan Gunthorpe <logang@deltatee.com>
14762 S:      Maintained
14763 F:      drivers/dma/plx_dma.c
14764
14765 PM6764TR DRIVER
14766 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14767 L:      linux-hwmon@vger.kernel.org
14768 S:      Maintained
14769 F:      Documentation/hwmon/pm6764tr.rst
14770 F:      drivers/hwmon/pmbus/pm6764tr.c
14771
14772 PM-GRAPH UTILITY
14773 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14774 L:      linux-pm@vger.kernel.org
14775 S:      Supported
14776 W:      https://01.org/pm-graph
14777 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14778 T:      git git://github.com/intel/pm-graph
14779 F:      tools/power/pm-graph
14780
14781 PMBUS HARDWARE MONITORING DRIVERS
14782 M:      Guenter Roeck <linux@roeck-us.net>
14783 L:      linux-hwmon@vger.kernel.org
14784 S:      Maintained
14785 W:      http://hwmon.wiki.kernel.org/
14786 W:      http://www.roeck-us.net/linux/drivers/
14787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14788 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14789 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14790 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14791 F:      Documentation/hwmon/adm1275.rst
14792 F:      Documentation/hwmon/ibm-cffps.rst
14793 F:      Documentation/hwmon/ir35221.rst
14794 F:      Documentation/hwmon/lm25066.rst
14795 F:      Documentation/hwmon/ltc2978.rst
14796 F:      Documentation/hwmon/ltc3815.rst
14797 F:      Documentation/hwmon/max16064.rst
14798 F:      Documentation/hwmon/max20751.rst
14799 F:      Documentation/hwmon/max31785.rst
14800 F:      Documentation/hwmon/max34440.rst
14801 F:      Documentation/hwmon/max8688.rst
14802 F:      Documentation/hwmon/pmbus-core.rst
14803 F:      Documentation/hwmon/pmbus.rst
14804 F:      Documentation/hwmon/tps40422.rst
14805 F:      Documentation/hwmon/ucd9000.rst
14806 F:      Documentation/hwmon/ucd9200.rst
14807 F:      Documentation/hwmon/zl6100.rst
14808 F:      drivers/hwmon/pmbus/
14809 F:      include/linux/pmbus.h
14810
14811 PMC SIERRA MaxRAID DRIVER
14812 L:      linux-scsi@vger.kernel.org
14813 S:      Orphan
14814 W:      http://www.pmc-sierra.com/
14815 F:      drivers/scsi/pmcraid.*
14816
14817 PMC SIERRA PM8001 DRIVER
14818 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14819 L:      linux-scsi@vger.kernel.org
14820 S:      Supported
14821 F:      drivers/scsi/pm8001/
14822
14823 PNI RM3100 IIO DRIVER
14824 M:      Song Qiang <songqiang1304521@gmail.com>
14825 L:      linux-iio@vger.kernel.org
14826 S:      Maintained
14827 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14828 F:      drivers/iio/magnetometer/rm3100*
14829
14830 PNP SUPPORT
14831 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14832 L:      linux-acpi@vger.kernel.org
14833 S:      Maintained
14834 F:      drivers/pnp/
14835 F:      include/linux/pnp.h
14836
14837 POSIX CLOCKS and TIMERS
14838 M:      Thomas Gleixner <tglx@linutronix.de>
14839 L:      linux-kernel@vger.kernel.org
14840 S:      Maintained
14841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14842 F:      fs/timerfd.c
14843 F:      include/linux/time_namespace.h
14844 F:      include/linux/timer*
14845 F:      kernel/time/*timer*
14846 F:      kernel/time/namespace.c
14847
14848 POWER MANAGEMENT CORE
14849 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14850 L:      linux-pm@vger.kernel.org
14851 S:      Supported
14852 B:      https://bugzilla.kernel.org
14853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14854 F:      drivers/base/power/
14855 F:      drivers/powercap/
14856 F:      include/linux/intel_rapl.h
14857 F:      include/linux/pm.h
14858 F:      include/linux/pm_*
14859 F:      include/linux/powercap.h
14860 F:      kernel/configs/nopm.config
14861
14862 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
14863 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
14864 L:      linux-pm@vger.kernel.org
14865 S:      Supported
14866 B:      https://bugzilla.kernel.org
14867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14868 F:      drivers/powercap/dtpm*
14869 F:      include/linux/dtpm.h
14870
14871 POWER STATE COORDINATION INTERFACE (PSCI)
14872 M:      Mark Rutland <mark.rutland@arm.com>
14873 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14874 L:      linux-arm-kernel@lists.infradead.org
14875 S:      Maintained
14876 F:      drivers/firmware/psci/
14877 F:      include/linux/psci.h
14878 F:      include/uapi/linux/psci.h
14879
14880 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14881 M:      Sebastian Reichel <sre@kernel.org>
14882 L:      linux-pm@vger.kernel.org
14883 S:      Maintained
14884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14885 F:      Documentation/ABI/testing/sysfs-class-power
14886 F:      Documentation/devicetree/bindings/power/supply/
14887 F:      drivers/power/supply/
14888 F:      include/linux/power/
14889 F:      include/linux/power_supply.h
14890
14891 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14892 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14893 L:      linuxppc-dev@lists.ozlabs.org
14894 S:      Maintained
14895 F:      drivers/char/powernv-op-panel.c
14896
14897 PPP OVER ATM (RFC 2364)
14898 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14899 S:      Maintained
14900 F:      include/uapi/linux/atmppp.h
14901 F:      net/atm/pppoatm.c
14902
14903 PPP OVER ETHERNET
14904 M:      Michal Ostrowski <mostrows@earthlink.net>
14905 S:      Maintained
14906 F:      drivers/net/ppp/pppoe.c
14907 F:      drivers/net/ppp/pppox.c
14908
14909 PPP OVER L2TP
14910 M:      James Chapman <jchapman@katalix.com>
14911 S:      Maintained
14912 F:      include/linux/if_pppol2tp.h
14913 F:      include/uapi/linux/if_pppol2tp.h
14914 F:      net/l2tp/l2tp_ppp.c
14915
14916 PPP PROTOCOL DRIVERS AND COMPRESSORS
14917 M:      Paul Mackerras <paulus@samba.org>
14918 L:      linux-ppp@vger.kernel.org
14919 S:      Maintained
14920 F:      drivers/net/ppp/ppp_*
14921
14922 PPS SUPPORT
14923 M:      Rodolfo Giometti <giometti@enneenne.com>
14924 L:      linuxpps@ml.enneenne.com (subscribers-only)
14925 S:      Maintained
14926 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14927 F:      Documentation/ABI/testing/sysfs-pps
14928 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14929 F:      Documentation/driver-api/pps.rst
14930 F:      drivers/pps/
14931 F:      include/linux/pps*.h
14932 F:      include/uapi/linux/pps.h
14933
14934 PPTP DRIVER
14935 M:      Dmitry Kozlov <xeb@mail.ru>
14936 L:      netdev@vger.kernel.org
14937 S:      Maintained
14938 W:      http://sourceforge.net/projects/accel-pptp
14939 F:      drivers/net/ppp/pptp.c
14940
14941 PRESSURE STALL INFORMATION (PSI)
14942 M:      Johannes Weiner <hannes@cmpxchg.org>
14943 S:      Maintained
14944 F:      include/linux/psi*
14945 F:      kernel/sched/psi.c
14946
14947 PRINTK
14948 M:      Petr Mladek <pmladek@suse.com>
14949 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
14950 R:      Steven Rostedt <rostedt@goodmis.org>
14951 R:      John Ogness <john.ogness@linutronix.de>
14952 S:      Maintained
14953 F:      include/linux/printk.h
14954 F:      kernel/printk/
14955
14956 PRISM54 WIRELESS DRIVER
14957 M:      Luis Chamberlain <mcgrof@kernel.org>
14958 L:      linux-wireless@vger.kernel.org
14959 S:      Obsolete
14960 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14961 F:      drivers/net/wireless/intersil/prism54/
14962
14963 PROC FILESYSTEM
14964 L:      linux-kernel@vger.kernel.org
14965 L:      linux-fsdevel@vger.kernel.org
14966 S:      Maintained
14967 F:      Documentation/filesystems/proc.rst
14968 F:      fs/proc/
14969 F:      include/linux/proc_fs.h
14970 F:      tools/testing/selftests/proc/
14971
14972 PROC SYSCTL
14973 M:      Luis Chamberlain <mcgrof@kernel.org>
14974 M:      Kees Cook <keescook@chromium.org>
14975 M:      Iurii Zaikin <yzaikin@google.com>
14976 L:      linux-kernel@vger.kernel.org
14977 L:      linux-fsdevel@vger.kernel.org
14978 S:      Maintained
14979 F:      fs/proc/proc_sysctl.c
14980 F:      include/linux/sysctl.h
14981 F:      kernel/sysctl-test.c
14982 F:      kernel/sysctl.c
14983 F:      tools/testing/selftests/sysctl/
14984
14985 PS3 NETWORK SUPPORT
14986 M:      Geoff Levand <geoff@infradead.org>
14987 L:      netdev@vger.kernel.org
14988 L:      linuxppc-dev@lists.ozlabs.org
14989 S:      Maintained
14990 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14991
14992 PS3 PLATFORM SUPPORT
14993 M:      Geoff Levand <geoff@infradead.org>
14994 L:      linuxppc-dev@lists.ozlabs.org
14995 S:      Maintained
14996 F:      arch/powerpc/boot/ps3*
14997 F:      arch/powerpc/include/asm/lv1call.h
14998 F:      arch/powerpc/include/asm/ps3*.h
14999 F:      arch/powerpc/platforms/ps3/
15000 F:      drivers/*/ps3*
15001 F:      drivers/ps3/
15002 F:      drivers/rtc/rtc-ps3.c
15003 F:      drivers/usb/host/*ps3.c
15004 F:      sound/ppc/snd_ps3*
15005
15006 PS3VRAM DRIVER
15007 M:      Jim Paris <jim@jtan.com>
15008 M:      Geoff Levand <geoff@infradead.org>
15009 L:      linuxppc-dev@lists.ozlabs.org
15010 S:      Maintained
15011 F:      drivers/block/ps3vram.c
15012
15013 PSAMPLE PACKET SAMPLING SUPPORT
15014 M:      Yotam Gigi <yotam.gi@gmail.com>
15015 S:      Maintained
15016 F:      include/net/psample.h
15017 F:      include/uapi/linux/psample.h
15018 F:      net/psample
15019
15020 PSTORE FILESYSTEM
15021 M:      Kees Cook <keescook@chromium.org>
15022 M:      Anton Vorontsov <anton@enomsg.org>
15023 M:      Colin Cross <ccross@android.com>
15024 M:      Tony Luck <tony.luck@intel.com>
15025 S:      Maintained
15026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15027 F:      Documentation/admin-guide/ramoops.rst
15028 F:      Documentation/admin-guide/pstore-blk.rst
15029 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15030 F:      drivers/acpi/apei/erst.c
15031 F:      drivers/firmware/efi/efi-pstore.c
15032 F:      fs/pstore/
15033 F:      include/linux/pstore*
15034 K:      \b(pstore|ramoops)
15035
15036 PTP HARDWARE CLOCK SUPPORT
15037 M:      Richard Cochran <richardcochran@gmail.com>
15038 L:      netdev@vger.kernel.org
15039 S:      Maintained
15040 W:      http://linuxptp.sourceforge.net/
15041 F:      Documentation/ABI/testing/sysfs-ptp
15042 F:      Documentation/driver-api/ptp.rst
15043 F:      drivers/net/phy/dp83640*
15044 F:      drivers/ptp/*
15045 F:      include/linux/ptp_cl*
15046
15047 PTP VIRTUAL CLOCK SUPPORT
15048 M:      Yangbo Lu <yangbo.lu@nxp.com>
15049 L:      netdev@vger.kernel.org
15050 S:      Maintained
15051 F:      drivers/ptp/ptp_vclock.c
15052 F:      net/ethtool/phc_vclocks.c
15053
15054 PTRACE SUPPORT
15055 M:      Oleg Nesterov <oleg@redhat.com>
15056 S:      Maintained
15057 F:      arch/*/*/ptrace*.c
15058 F:      arch/*/include/asm/ptrace*.h
15059 F:      arch/*/ptrace*.c
15060 F:      include/asm-generic/syscall.h
15061 F:      include/linux/ptrace.h
15062 F:      include/linux/regset.h
15063 F:      include/linux/tracehook.h
15064 F:      include/uapi/linux/ptrace.h
15065 F:      include/uapi/linux/ptrace.h
15066 F:      kernel/ptrace.c
15067
15068 PULSE8-CEC DRIVER
15069 M:      Hans Verkuil <hverkuil@xs4all.nl>
15070 L:      linux-media@vger.kernel.org
15071 S:      Maintained
15072 T:      git git://linuxtv.org/media_tree.git
15073 F:      Documentation/admin-guide/media/pulse8-cec.rst
15074 F:      drivers/media/cec/usb/pulse8/
15075
15076 PVRUSB2 VIDEO4LINUX DRIVER
15077 M:      Mike Isely <isely@pobox.com>
15078 L:      pvrusb2@isely.net       (subscribers-only)
15079 L:      linux-media@vger.kernel.org
15080 S:      Maintained
15081 W:      http://www.isely.net/pvrusb2/
15082 T:      git git://linuxtv.org/media_tree.git
15083 F:      Documentation/driver-api/media/drivers/pvrusb2*
15084 F:      drivers/media/usb/pvrusb2/
15085
15086 PWC WEBCAM DRIVER
15087 M:      Hans Verkuil <hverkuil@xs4all.nl>
15088 L:      linux-media@vger.kernel.org
15089 S:      Odd Fixes
15090 T:      git git://linuxtv.org/media_tree.git
15091 F:      drivers/media/usb/pwc/*
15092 F:      include/trace/events/pwc.h
15093
15094 PWM FAN DRIVER
15095 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15096 L:      linux-hwmon@vger.kernel.org
15097 S:      Supported
15098 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15099 F:      Documentation/hwmon/pwm-fan.rst
15100 F:      drivers/hwmon/pwm-fan.c
15101
15102 PWM IR Transmitter
15103 M:      Sean Young <sean@mess.org>
15104 L:      linux-media@vger.kernel.org
15105 S:      Maintained
15106 F:      drivers/media/rc/pwm-ir-tx.c
15107
15108 PWM SUBSYSTEM
15109 M:      Thierry Reding <thierry.reding@gmail.com>
15110 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15111 M:      Lee Jones <lee.jones@linaro.org>
15112 L:      linux-pwm@vger.kernel.org
15113 S:      Maintained
15114 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15116 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15117 F:      Documentation/devicetree/bindings/pwm/
15118 F:      Documentation/driver-api/pwm.rst
15119 F:      drivers/gpio/gpio-mvebu.c
15120 F:      drivers/pwm/
15121 F:      drivers/video/backlight/pwm_bl.c
15122 F:      include/linux/pwm.h
15123 F:      include/linux/pwm_backlight.h
15124 K:      pwm_(config|apply_state|ops)
15125
15126 PXA GPIO DRIVER
15127 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15128 L:      linux-gpio@vger.kernel.org
15129 S:      Maintained
15130 F:      drivers/gpio/gpio-pxa.c
15131
15132 PXA MMCI DRIVER
15133 S:      Orphan
15134
15135 PXA RTC DRIVER
15136 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15137 L:      linux-rtc@vger.kernel.org
15138 S:      Maintained
15139
15140 PXA2xx/PXA3xx SUPPORT
15141 M:      Daniel Mack <daniel@zonque.org>
15142 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15143 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15145 S:      Maintained
15146 T:      git git://github.com/hzhuang1/linux.git
15147 T:      git git://github.com/rjarzmik/linux.git
15148 F:      arch/arm/boot/dts/pxa*
15149 F:      arch/arm/mach-pxa/
15150 F:      drivers/dma/pxa*
15151 F:      drivers/pcmcia/pxa2xx*
15152 F:      drivers/pinctrl/pxa/
15153 F:      drivers/spi/spi-pxa2xx*
15154 F:      drivers/usb/gadget/udc/pxa2*
15155 F:      include/sound/pxa2xx-lib.h
15156 F:      sound/arm/pxa*
15157 F:      sound/soc/pxa/
15158
15159 QAT DRIVER
15160 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15161 L:      qat-linux@intel.com
15162 S:      Supported
15163 F:      drivers/crypto/qat/
15164
15165 QCOM AUDIO (ASoC) DRIVERS
15166 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15167 M:      Banajit Goswami <bgoswami@codeaurora.org>
15168 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15169 S:      Supported
15170 F:      sound/soc/codecs/lpass-va-macro.c
15171 F:      sound/soc/codecs/lpass-wsa-macro.*
15172 F:      sound/soc/codecs/msm8916-wcd-analog.c
15173 F:      sound/soc/codecs/msm8916-wcd-digital.c
15174 F:      sound/soc/codecs/wcd9335.*
15175 F:      sound/soc/codecs/wcd934x.c
15176 F:      sound/soc/codecs/wcd-clsh-v2.*
15177 F:      sound/soc/codecs/wsa881x.c
15178 F:      sound/soc/qcom/
15179
15180 QCOM IPA DRIVER
15181 M:      Alex Elder <elder@kernel.org>
15182 L:      netdev@vger.kernel.org
15183 S:      Supported
15184 F:      drivers/net/ipa/
15185
15186 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15187 M:      Gabriel Somlo <somlo@cmu.edu>
15188 M:      "Michael S. Tsirkin" <mst@redhat.com>
15189 L:      qemu-devel@nongnu.org
15190 S:      Maintained
15191 F:      drivers/firmware/qemu_fw_cfg.c
15192 F:      include/uapi/linux/qemu_fw_cfg.h
15193
15194 QIB DRIVER
15195 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15196 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15197 L:      linux-rdma@vger.kernel.org
15198 S:      Supported
15199 F:      drivers/infiniband/hw/qib/
15200
15201 QLOGIC QL41xxx FCOE DRIVER
15202 M:      Saurav Kashyap <skashyap@marvell.com>
15203 M:      Javed Hasan <jhasan@marvell.com>
15204 M:      GR-QLogic-Storage-Upstream@marvell.com
15205 L:      linux-scsi@vger.kernel.org
15206 S:      Supported
15207 F:      drivers/scsi/qedf/
15208
15209 QLOGIC QL41xxx ISCSI DRIVER
15210 M:      Nilesh Javali <njavali@marvell.com>
15211 M:      Manish Rangankar <mrangankar@marvell.com>
15212 M:      GR-QLogic-Storage-Upstream@marvell.com
15213 L:      linux-scsi@vger.kernel.org
15214 S:      Supported
15215 F:      drivers/scsi/qedi/
15216
15217 QLOGIC QL4xxx ETHERNET DRIVER
15218 M:      Ariel Elior <aelior@marvell.com>
15219 M:      GR-everest-linux-l2@marvell.com
15220 L:      netdev@vger.kernel.org
15221 S:      Supported
15222 F:      drivers/net/ethernet/qlogic/qed/
15223 F:      drivers/net/ethernet/qlogic/qede/
15224 F:      include/linux/qed/
15225
15226 QLOGIC QL4xxx RDMA DRIVER
15227 M:      Michal Kalderon <mkalderon@marvell.com>
15228 M:      Ariel Elior <aelior@marvell.com>
15229 L:      linux-rdma@vger.kernel.org
15230 S:      Supported
15231 F:      drivers/infiniband/hw/qedr/
15232 F:      include/uapi/rdma/qedr-abi.h
15233
15234 QLOGIC QLA1280 SCSI DRIVER
15235 M:      Michael Reed <mdr@sgi.com>
15236 L:      linux-scsi@vger.kernel.org
15237 S:      Maintained
15238 F:      drivers/scsi/qla1280.[ch]
15239
15240 QLOGIC QLA2XXX FC-SCSI DRIVER
15241 M:      Nilesh Javali <njavali@marvell.com>
15242 M:      GR-QLogic-Storage-Upstream@marvell.com
15243 L:      linux-scsi@vger.kernel.org
15244 S:      Supported
15245 F:      drivers/scsi/qla2xxx/
15246
15247 QLOGIC QLA3XXX NETWORK DRIVER
15248 M:      GR-Linux-NIC-Dev@marvell.com
15249 L:      netdev@vger.kernel.org
15250 S:      Supported
15251 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15252
15253 QLOGIC QLA4XXX iSCSI DRIVER
15254 M:      Nilesh Javali <njavali@marvell.com>
15255 M:      Manish Rangankar <mrangankar@marvell.com>
15256 M:      GR-QLogic-Storage-Upstream@marvell.com
15257 L:      linux-scsi@vger.kernel.org
15258 S:      Supported
15259 F:      drivers/scsi/qla4xxx/
15260
15261 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15262 M:      Shahed Shaikh <shshaikh@marvell.com>
15263 M:      Manish Chopra <manishc@marvell.com>
15264 M:      GR-Linux-NIC-Dev@marvell.com
15265 L:      netdev@vger.kernel.org
15266 S:      Supported
15267 F:      drivers/net/ethernet/qlogic/qlcnic/
15268
15269 QLOGIC QLGE 10Gb ETHERNET DRIVER
15270 M:      Manish Chopra <manishc@marvell.com>
15271 M:      GR-Linux-NIC-Dev@marvell.com
15272 M:      Coiby Xu <coiby.xu@gmail.com>
15273 L:      netdev@vger.kernel.org
15274 S:      Supported
15275 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15276 F:      drivers/staging/qlge/
15277
15278 QM1D1B0004 MEDIA DRIVER
15279 M:      Akihiro Tsukada <tskd08@gmail.com>
15280 L:      linux-media@vger.kernel.org
15281 S:      Odd Fixes
15282 F:      drivers/media/tuners/qm1d1b0004*
15283
15284 QM1D1C0042 MEDIA DRIVER
15285 M:      Akihiro Tsukada <tskd08@gmail.com>
15286 L:      linux-media@vger.kernel.org
15287 S:      Odd Fixes
15288 F:      drivers/media/tuners/qm1d1c0042*
15289
15290 QNX4 FILESYSTEM
15291 M:      Anders Larsen <al@alarsen.net>
15292 S:      Maintained
15293 W:      http://www.alarsen.net/linux/qnx4fs/
15294 F:      fs/qnx4/
15295 F:      include/uapi/linux/qnx4_fs.h
15296 F:      include/uapi/linux/qnxtypes.h
15297
15298 QORIQ DPAA2 FSL-MC BUS DRIVER
15299 M:      Stuart Yoder <stuyoder@gmail.com>
15300 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15301 L:      linux-kernel@vger.kernel.org
15302 S:      Maintained
15303 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15304 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15305 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15306 F:      drivers/bus/fsl-mc/
15307 F:      include/uapi/linux/fsl_mc.h
15308
15309 QT1010 MEDIA DRIVER
15310 M:      Antti Palosaari <crope@iki.fi>
15311 L:      linux-media@vger.kernel.org
15312 S:      Maintained
15313 W:      https://linuxtv.org
15314 W:      http://palosaari.fi/linux/
15315 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15316 T:      git git://linuxtv.org/anttip/media_tree.git
15317 F:      drivers/media/tuners/qt1010*
15318
15319 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15320 M:      Kalle Valo <kvalo@codeaurora.org>
15321 L:      ath10k@lists.infradead.org
15322 S:      Supported
15323 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15325 F:      drivers/net/wireless/ath/ath10k/
15326
15327 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15328 M:      Kalle Valo <kvalo@codeaurora.org>
15329 L:      ath11k@lists.infradead.org
15330 S:      Supported
15331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15332 F:      drivers/net/wireless/ath/ath11k/
15333
15334 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15335 M:      ath9k-devel@qca.qualcomm.com
15336 L:      linux-wireless@vger.kernel.org
15337 S:      Supported
15338 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15339 F:      drivers/net/wireless/ath/ath9k/
15340
15341 QUALCOMM CAMERA SUBSYSTEM DRIVER
15342 M:      Robert Foss <robert.foss@linaro.org>
15343 M:      Todor Tomov <todor.too@gmail.com>
15344 L:      linux-media@vger.kernel.org
15345 S:      Maintained
15346 F:      Documentation/admin-guide/media/qcom_camss.rst
15347 F:      Documentation/devicetree/bindings/media/*camss*
15348 F:      drivers/media/platform/qcom/camss/
15349
15350 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15351 M:      Niklas Cassel <nks@flawful.org>
15352 L:      linux-pm@vger.kernel.org
15353 L:      linux-arm-msm@vger.kernel.org
15354 S:      Maintained
15355 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15356 F:      drivers/soc/qcom/cpr.c
15357
15358 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15359 M:      Ilia Lin <ilia.lin@kernel.org>
15360 L:      linux-pm@vger.kernel.org
15361 S:      Maintained
15362 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15363 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15364
15365 QUALCOMM CRYPTO DRIVERS
15366 M:      Thara Gopinath <thara.gopinath@linaro.org>
15367 L:      linux-crypto@vger.kernel.org
15368 L:      linux-arm-msm@vger.kernel.org
15369 S:      Maintained
15370 F:      drivers/crypto/qce/
15371
15372 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15373 M:      Timur Tabi <timur@kernel.org>
15374 L:      netdev@vger.kernel.org
15375 S:      Maintained
15376 F:      drivers/net/ethernet/qualcomm/emac/
15377
15378 QUALCOMM ETHQOS ETHERNET DRIVER
15379 M:      Vinod Koul <vkoul@kernel.org>
15380 L:      netdev@vger.kernel.org
15381 S:      Maintained
15382 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15383 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15384
15385 QUALCOMM GENERIC INTERFACE I2C DRIVER
15386 M:      Akash Asthana <akashast@codeaurora.org>
15387 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15388 L:      linux-i2c@vger.kernel.org
15389 L:      linux-arm-msm@vger.kernel.org
15390 S:      Supported
15391 F:      drivers/i2c/busses/i2c-qcom-geni.c
15392
15393 QUALCOMM HEXAGON ARCHITECTURE
15394 M:      Brian Cain <bcain@codeaurora.org>
15395 L:      linux-hexagon@vger.kernel.org
15396 S:      Supported
15397 F:      arch/hexagon/
15398
15399 QUALCOMM HIDMA DRIVER
15400 M:      Sinan Kaya <okaya@kernel.org>
15401 L:      linux-arm-kernel@lists.infradead.org
15402 L:      linux-arm-msm@vger.kernel.org
15403 L:      dmaengine@vger.kernel.org
15404 S:      Supported
15405 F:      drivers/dma/qcom/hidma*
15406
15407 QUALCOMM I2C CCI DRIVER
15408 M:      Loic Poulain <loic.poulain@linaro.org>
15409 M:      Robert Foss <robert.foss@linaro.org>
15410 L:      linux-i2c@vger.kernel.org
15411 L:      linux-arm-msm@vger.kernel.org
15412 S:      Maintained
15413 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15414 F:      drivers/i2c/busses/i2c-qcom-cci.c
15415
15416 QUALCOMM IOMMU
15417 M:      Rob Clark <robdclark@gmail.com>
15418 L:      iommu@lists.linux-foundation.org
15419 L:      linux-arm-msm@vger.kernel.org
15420 S:      Maintained
15421 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15422
15423 QUALCOMM IPC ROUTER (QRTR) DRIVER
15424 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15425 L:      linux-arm-msm@vger.kernel.org
15426 S:      Maintained
15427 F:      include/trace/events/qrtr.h
15428 F:      include/uapi/linux/qrtr.h
15429 F:      net/qrtr/
15430
15431 QUALCOMM IPCC MAILBOX DRIVER
15432 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15433 L:      linux-arm-msm@vger.kernel.org
15434 S:      Supported
15435 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15436 F:      drivers/mailbox/qcom-ipcc.c
15437 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15438
15439 QUALCOMM IPQ4019 USB PHY DRIVER
15440 M:      Robert Marko <robert.marko@sartura.hr>
15441 M:      Luka Perkov <luka.perkov@sartura.hr>
15442 L:      linux-arm-msm@vger.kernel.org
15443 S:      Maintained
15444 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15445 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15446
15447 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15448 M:      Robert Marko <robert.marko@sartura.hr>
15449 M:      Luka Perkov <luka.perkov@sartura.hr>
15450 L:      linux-arm-msm@vger.kernel.org
15451 S:      Maintained
15452 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15453 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15454
15455 QUALCOMM RMNET DRIVER
15456 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15457 M:      Sean Tranchetti <stranche@codeaurora.org>
15458 L:      netdev@vger.kernel.org
15459 S:      Maintained
15460 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15461 F:      drivers/net/ethernet/qualcomm/rmnet/
15462 F:      include/linux/if_rmnet.h
15463
15464 QUALCOMM TSENS THERMAL DRIVER
15465 M:      Amit Kucheria <amitk@kernel.org>
15466 M:      Thara Gopinath <thara.gopinath@linaro.org>
15467 L:      linux-pm@vger.kernel.org
15468 L:      linux-arm-msm@vger.kernel.org
15469 S:      Maintained
15470 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15471 F:      drivers/thermal/qcom/
15472
15473 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15474 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15475 L:      linux-media@vger.kernel.org
15476 L:      linux-arm-msm@vger.kernel.org
15477 S:      Maintained
15478 T:      git git://linuxtv.org/media_tree.git
15479 F:      Documentation/devicetree/bindings/media/*venus*
15480 F:      drivers/media/platform/qcom/venus/
15481
15482 QUALCOMM WCN36XX WIRELESS DRIVER
15483 M:      Kalle Valo <kvalo@codeaurora.org>
15484 L:      wcn36xx@lists.infradead.org
15485 S:      Supported
15486 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15487 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15488 F:      drivers/net/wireless/ath/wcn36xx/
15489
15490 QUANTENNA QTNFMAC WIRELESS DRIVER
15491 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15492 R:      Sergey Matyukevich <geomatsi@gmail.com>
15493 L:      linux-wireless@vger.kernel.org
15494 S:      Maintained
15495 F:      drivers/net/wireless/quantenna
15496
15497 RADEON and AMDGPU DRM DRIVERS
15498 M:      Alex Deucher <alexander.deucher@amd.com>
15499 M:      Christian König <christian.koenig@amd.com>
15500 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15501 L:      amd-gfx@lists.freedesktop.org
15502 S:      Supported
15503 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15504 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15505 C:      irc://irc.oftc.net/radeon
15506 F:      drivers/gpu/drm/amd/
15507 F:      drivers/gpu/drm/radeon/
15508 F:      include/uapi/drm/amdgpu_drm.h
15509 F:      include/uapi/drm/radeon_drm.h
15510
15511 RADEON FRAMEBUFFER DISPLAY DRIVER
15512 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15513 L:      linux-fbdev@vger.kernel.org
15514 S:      Maintained
15515 F:      drivers/video/fbdev/aty/radeon*
15516 F:      include/uapi/linux/radeonfb.h
15517
15518 RADIOSHARK RADIO DRIVER
15519 M:      Hans Verkuil <hverkuil@xs4all.nl>
15520 L:      linux-media@vger.kernel.org
15521 S:      Maintained
15522 T:      git git://linuxtv.org/media_tree.git
15523 F:      drivers/media/radio/radio-shark.c
15524
15525 RADIOSHARK2 RADIO DRIVER
15526 M:      Hans Verkuil <hverkuil@xs4all.nl>
15527 L:      linux-media@vger.kernel.org
15528 S:      Maintained
15529 T:      git git://linuxtv.org/media_tree.git
15530 F:      drivers/media/radio/radio-shark2.c
15531 F:      drivers/media/radio/radio-tea5777.c
15532
15533 RADOS BLOCK DEVICE (RBD)
15534 M:      Ilya Dryomov <idryomov@gmail.com>
15535 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15536 L:      ceph-devel@vger.kernel.org
15537 S:      Supported
15538 W:      http://ceph.com/
15539 T:      git git://github.com/ceph/ceph-client.git
15540 F:      Documentation/ABI/testing/sysfs-bus-rbd
15541 F:      drivers/block/rbd.c
15542 F:      drivers/block/rbd_types.h
15543
15544 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15545 M:      Paul Mackerras <paulus@samba.org>
15546 L:      linux-fbdev@vger.kernel.org
15547 S:      Maintained
15548 F:      drivers/video/fbdev/aty/aty128fb.c
15549
15550 RAINSHADOW-CEC DRIVER
15551 M:      Hans Verkuil <hverkuil@xs4all.nl>
15552 L:      linux-media@vger.kernel.org
15553 S:      Maintained
15554 T:      git git://linuxtv.org/media_tree.git
15555 F:      drivers/media/cec/usb/rainshadow/
15556
15557 RALINK MIPS ARCHITECTURE
15558 M:      John Crispin <john@phrozen.org>
15559 L:      linux-mips@vger.kernel.org
15560 S:      Maintained
15561 F:      arch/mips/ralink
15562
15563 RALINK RT2X00 WIRELESS LAN DRIVER
15564 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15565 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15566 L:      linux-wireless@vger.kernel.org
15567 S:      Maintained
15568 F:      drivers/net/wireless/ralink/rt2x00/
15569
15570 RAMDISK RAM BLOCK DEVICE DRIVER
15571 M:      Jens Axboe <axboe@kernel.dk>
15572 S:      Maintained
15573 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15574 F:      drivers/block/brd.c
15575
15576 RANCHU VIRTUAL BOARD FOR MIPS
15577 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15578 L:      linux-mips@vger.kernel.org
15579 S:      Supported
15580 F:      arch/mips/configs/generic/board-ranchu.config
15581 F:      arch/mips/generic/board-ranchu.c
15582
15583 RANDOM NUMBER DRIVER
15584 M:      "Theodore Ts'o" <tytso@mit.edu>
15585 S:      Maintained
15586 F:      drivers/char/random.c
15587
15588 RAPIDIO SUBSYSTEM
15589 M:      Matt Porter <mporter@kernel.crashing.org>
15590 M:      Alexandre Bounine <alex.bou9@gmail.com>
15591 S:      Maintained
15592 F:      drivers/rapidio/
15593
15594 RAS INFRASTRUCTURE
15595 M:      Tony Luck <tony.luck@intel.com>
15596 M:      Borislav Petkov <bp@alien8.de>
15597 L:      linux-edac@vger.kernel.org
15598 S:      Maintained
15599 F:      Documentation/admin-guide/ras.rst
15600 F:      drivers/ras/
15601 F:      include/linux/ras.h
15602 F:      include/ras/ras_event.h
15603
15604 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15605 L:      linux-wireless@vger.kernel.org
15606 S:      Orphan
15607 F:      drivers/net/wireless/ray*
15608
15609 RC-CORE / LIRC FRAMEWORK
15610 M:      Sean Young <sean@mess.org>
15611 L:      linux-media@vger.kernel.org
15612 S:      Maintained
15613 W:      http://linuxtv.org
15614 T:      git git://linuxtv.org/media_tree.git
15615 F:      Documentation/driver-api/media/rc-core.rst
15616 F:      Documentation/userspace-api/media/rc/
15617 F:      drivers/media/rc/
15618 F:      include/media/rc-map.h
15619 F:      include/media/rc-core.h
15620 F:      include/uapi/linux/lirc.h
15621
15622 RCMM REMOTE CONTROLS DECODER
15623 M:      Patrick Lerda <patrick9876@free.fr>
15624 S:      Maintained
15625 F:      drivers/media/rc/ir-rcmm-decoder.c
15626
15627 RCUTORTURE TEST FRAMEWORK
15628 M:      "Paul E. McKenney" <paulmck@kernel.org>
15629 M:      Josh Triplett <josh@joshtriplett.org>
15630 R:      Steven Rostedt <rostedt@goodmis.org>
15631 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15632 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15633 L:      rcu@vger.kernel.org
15634 S:      Supported
15635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15636 F:      tools/testing/selftests/rcutorture
15637
15638 RDACM20 Camera Sensor
15639 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15640 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15641 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15642 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15643 L:      linux-media@vger.kernel.org
15644 S:      Maintained
15645 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15646 F:      drivers/media/i2c/max9271.c
15647 F:      drivers/media/i2c/max9271.h
15648 F:      drivers/media/i2c/rdacm20.c
15649
15650 RDACM21 Camera Sensor
15651 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15652 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15653 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15654 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15655 L:      linux-media@vger.kernel.org
15656 S:      Maintained
15657 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15658 F:      drivers/media/i2c/max9271.c
15659 F:      drivers/media/i2c/max9271.h
15660 F:      drivers/media/i2c/rdacm21.c
15661
15662 RDC R-321X SoC
15663 M:      Florian Fainelli <florian@openwrt.org>
15664 S:      Maintained
15665
15666 RDC R6040 FAST ETHERNET DRIVER
15667 M:      Florian Fainelli <f.fainelli@gmail.com>
15668 L:      netdev@vger.kernel.org
15669 S:      Maintained
15670 F:      drivers/net/ethernet/rdc/r6040.c
15671
15672 RDMAVT - RDMA verbs software
15673 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15674 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15675 L:      linux-rdma@vger.kernel.org
15676 S:      Supported
15677 F:      drivers/infiniband/sw/rdmavt
15678
15679 RDS - RELIABLE DATAGRAM SOCKETS
15680 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15681 L:      netdev@vger.kernel.org
15682 L:      linux-rdma@vger.kernel.org
15683 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15684 S:      Supported
15685 W:      https://oss.oracle.com/projects/rds/
15686 F:      Documentation/networking/rds.rst
15687 F:      net/rds/
15688
15689 RDT - RESOURCE ALLOCATION
15690 M:      Fenghua Yu <fenghua.yu@intel.com>
15691 M:      Reinette Chatre <reinette.chatre@intel.com>
15692 L:      linux-kernel@vger.kernel.org
15693 S:      Supported
15694 F:      Documentation/x86/resctrl*
15695 F:      arch/x86/include/asm/resctrl.h
15696 F:      arch/x86/kernel/cpu/resctrl/
15697 F:      tools/testing/selftests/resctrl/
15698
15699 READ-COPY UPDATE (RCU)
15700 M:      "Paul E. McKenney" <paulmck@kernel.org>
15701 M:      Josh Triplett <josh@joshtriplett.org>
15702 R:      Steven Rostedt <rostedt@goodmis.org>
15703 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15704 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15705 R:      Joel Fernandes <joel@joelfernandes.org>
15706 L:      rcu@vger.kernel.org
15707 S:      Supported
15708 W:      http://www.rdrop.com/users/paulmck/RCU/
15709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15710 F:      Documentation/RCU/
15711 F:      include/linux/rcu*
15712 F:      kernel/rcu/
15713 X:      Documentation/RCU/torture.rst
15714 X:      include/linux/srcu*.h
15715 X:      kernel/rcu/srcu*.c
15716
15717 REAL TIME CLOCK (RTC) SUBSYSTEM
15718 M:      Alessandro Zummo <a.zummo@towertech.it>
15719 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15720 L:      linux-rtc@vger.kernel.org
15721 S:      Maintained
15722 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15724 F:      Documentation/admin-guide/rtc.rst
15725 F:      Documentation/devicetree/bindings/rtc/
15726 F:      drivers/rtc/
15727 F:      include/linux/platform_data/rtc-*
15728 F:      include/linux/rtc.h
15729 F:      include/linux/rtc/
15730 F:      include/uapi/linux/rtc.h
15731 F:      tools/testing/selftests/rtc/
15732
15733 REALTEK AUDIO CODECS
15734 M:      Oder Chiou <oder_chiou@realtek.com>
15735 S:      Maintained
15736 F:      include/sound/rt*.h
15737 F:      sound/soc/codecs/rt*
15738
15739 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15740 M:      Linus Walleij <linus.walleij@linaro.org>
15741 S:      Maintained
15742 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15743 F:      drivers/net/dsa/realtek-smi*
15744 F:      drivers/net/dsa/rtl83*
15745
15746 REALTEK WIRELESS DRIVER (rtlwifi family)
15747 M:      Ping-Ke Shih <pkshih@realtek.com>
15748 L:      linux-wireless@vger.kernel.org
15749 S:      Maintained
15750 W:      https://wireless.wiki.kernel.org/
15751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15752 F:      drivers/net/wireless/realtek/rtlwifi/
15753
15754 REALTEK WIRELESS DRIVER (rtw88)
15755 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15756 L:      linux-wireless@vger.kernel.org
15757 S:      Maintained
15758 F:      drivers/net/wireless/realtek/rtw88/
15759
15760 REDPINE WIRELESS DRIVER
15761 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15762 M:      Siva Rebbagondla <siva8118@gmail.com>
15763 L:      linux-wireless@vger.kernel.org
15764 S:      Maintained
15765 F:      drivers/net/wireless/rsi/
15766
15767 REGISTER MAP ABSTRACTION
15768 M:      Mark Brown <broonie@kernel.org>
15769 L:      linux-kernel@vger.kernel.org
15770 S:      Supported
15771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15772 F:      Documentation/devicetree/bindings/regmap/
15773 F:      drivers/base/regmap/
15774 F:      include/linux/regmap.h
15775
15776 REISERFS FILE SYSTEM
15777 L:      reiserfs-devel@vger.kernel.org
15778 S:      Supported
15779 F:      fs/reiserfs/
15780
15781 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15782 M:      Ohad Ben-Cohen <ohad@wizery.com>
15783 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15784 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15785 L:      linux-remoteproc@vger.kernel.org
15786 S:      Maintained
15787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15788 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15789 F:      Documentation/devicetree/bindings/remoteproc/
15790 F:      Documentation/staging/remoteproc.rst
15791 F:      drivers/remoteproc/
15792 F:      include/linux/remoteproc.h
15793 F:      include/linux/remoteproc/
15794
15795 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15796 M:      Ohad Ben-Cohen <ohad@wizery.com>
15797 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15798 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15799 L:      linux-remoteproc@vger.kernel.org
15800 S:      Maintained
15801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15802 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15803 F:      Documentation/staging/rpmsg.rst
15804 F:      drivers/rpmsg/
15805 F:      include/linux/rpmsg.h
15806 F:      include/linux/rpmsg/
15807 F:      include/uapi/linux/rpmsg.h
15808 F:      samples/rpmsg/
15809
15810 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15811 M:      Stephan Gerhold <stephan@gerhold.net>
15812 L:      netdev@vger.kernel.org
15813 L:      linux-remoteproc@vger.kernel.org
15814 S:      Maintained
15815 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
15816
15817 RENESAS CLOCK DRIVERS
15818 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15819 L:      linux-renesas-soc@vger.kernel.org
15820 S:      Supported
15821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15822 F:      Documentation/devicetree/bindings/clock/renesas,*
15823 F:      drivers/clk/renesas/
15824
15825 RENESAS EMEV2 I2C DRIVER
15826 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15827 L:      linux-renesas-soc@vger.kernel.org
15828 S:      Supported
15829 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
15830 F:      drivers/i2c/busses/i2c-emev2.c
15831
15832 RENESAS ETHERNET DRIVERS
15833 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
15834 L:      netdev@vger.kernel.org
15835 L:      linux-renesas-soc@vger.kernel.org
15836 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15837 F:      drivers/net/ethernet/renesas/
15838 F:      include/linux/sh_eth.h
15839
15840 RENESAS R-CAR GYROADC DRIVER
15841 M:      Marek Vasut <marek.vasut@gmail.com>
15842 L:      linux-iio@vger.kernel.org
15843 S:      Supported
15844 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15845 F:      drivers/iio/adc/rcar-gyroadc.c
15846
15847 RENESAS R-CAR I2C DRIVERS
15848 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15849 L:      linux-renesas-soc@vger.kernel.org
15850 S:      Supported
15851 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
15852 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
15853 F:      drivers/i2c/busses/i2c-rcar.c
15854 F:      drivers/i2c/busses/i2c-sh_mobile.c
15855
15856 RENESAS R-CAR THERMAL DRIVERS
15857 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15858 L:      linux-renesas-soc@vger.kernel.org
15859 S:      Supported
15860 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15861 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15862 F:      drivers/thermal/rcar_gen3_thermal.c
15863 F:      drivers/thermal/rcar_thermal.c
15864
15865 RENESAS RIIC DRIVER
15866 M:      Chris Brandt <chris.brandt@renesas.com>
15867 L:      linux-renesas-soc@vger.kernel.org
15868 S:      Supported
15869 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
15870 F:      drivers/i2c/busses/i2c-riic.c
15871
15872 RENESAS USB PHY DRIVER
15873 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15874 L:      linux-renesas-soc@vger.kernel.org
15875 S:      Maintained
15876 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15877
15878 RESET CONTROLLER FRAMEWORK
15879 M:      Philipp Zabel <p.zabel@pengutronix.de>
15880 S:      Maintained
15881 T:      git git://git.pengutronix.de/git/pza/linux
15882 F:      Documentation/devicetree/bindings/reset/
15883 F:      Documentation/driver-api/reset.rst
15884 F:      drivers/reset/
15885 F:      include/dt-bindings/reset/
15886 F:      include/linux/reset-controller.h
15887 F:      include/linux/reset.h
15888 F:      include/linux/reset/
15889 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15890
15891 RESTARTABLE SEQUENCES SUPPORT
15892 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15893 M:      Peter Zijlstra <peterz@infradead.org>
15894 M:      "Paul E. McKenney" <paulmck@kernel.org>
15895 M:      Boqun Feng <boqun.feng@gmail.com>
15896 L:      linux-kernel@vger.kernel.org
15897 S:      Supported
15898 F:      include/trace/events/rseq.h
15899 F:      include/uapi/linux/rseq.h
15900 F:      kernel/rseq.c
15901 F:      tools/testing/selftests/rseq/
15902
15903 RFKILL
15904 M:      Johannes Berg <johannes@sipsolutions.net>
15905 L:      linux-wireless@vger.kernel.org
15906 S:      Maintained
15907 W:      https://wireless.wiki.kernel.org/
15908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15910 F:      Documentation/ABI/stable/sysfs-class-rfkill
15911 F:      Documentation/driver-api/rfkill.rst
15912 F:      include/linux/rfkill.h
15913 F:      include/uapi/linux/rfkill.h
15914 F:      net/rfkill/
15915
15916 RHASHTABLE
15917 M:      Thomas Graf <tgraf@suug.ch>
15918 M:      Herbert Xu <herbert@gondor.apana.org.au>
15919 L:      netdev@vger.kernel.org
15920 S:      Maintained
15921 F:      include/linux/rhashtable-types.h
15922 F:      include/linux/rhashtable.h
15923 F:      lib/rhashtable.c
15924 F:      lib/test_rhashtable.c
15925
15926 RICOH R5C592 MEMORYSTICK DRIVER
15927 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15928 S:      Maintained
15929 F:      drivers/memstick/host/r592.*
15930
15931 RICOH SMARTMEDIA/XD DRIVER
15932 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15933 S:      Maintained
15934 F:      drivers/mtd/nand/raw/r852.c
15935 F:      drivers/mtd/nand/raw/r852.h
15936
15937 RISC-V ARCHITECTURE
15938 M:      Paul Walmsley <paul.walmsley@sifive.com>
15939 M:      Palmer Dabbelt <palmer@dabbelt.com>
15940 M:      Albert Ou <aou@eecs.berkeley.edu>
15941 L:      linux-riscv@lists.infradead.org
15942 S:      Supported
15943 P:      Documentation/riscv/patch-acceptance.rst
15944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15945 F:      arch/riscv/
15946 N:      riscv
15947 K:      riscv
15948
15949 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
15950 M:      Lewis Hanly <lewis.hanly@microchip.com>
15951 L:      linux-riscv@lists.infradead.org
15952 S:      Supported
15953 F:      drivers/mailbox/mailbox-mpfs.c
15954 F:      drivers/soc/microchip/
15955 F:      include/soc/microchip/mpfs.h
15956
15957 RNBD BLOCK DRIVERS
15958 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
15959 M:      Jack Wang <jinpu.wang@ionos.com>
15960 L:      linux-block@vger.kernel.org
15961 S:      Maintained
15962 F:      drivers/block/rnbd/
15963
15964 ROCCAT DRIVERS
15965 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15966 S:      Maintained
15967 W:      http://sourceforge.net/projects/roccat/
15968 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15969 F:      drivers/hid/hid-roccat*
15970 F:      include/linux/hid-roccat*
15971
15972 ROCKCHIP ISP V1 DRIVER
15973 M:      Helen Koike <helen.koike@collabora.com>
15974 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15975 L:      linux-media@vger.kernel.org
15976 L:      linux-rockchip@lists.infradead.org
15977 S:      Maintained
15978 F:      Documentation/admin-guide/media/rkisp1.rst
15979 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15980 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15981 F:      drivers/media/platform/rockchip/rkisp1
15982 F:      include/uapi/linux/rkisp1-config.h
15983
15984 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15985 M:      Jacob Chen <jacob-chen@iotwrt.com>
15986 M:      Ezequiel Garcia <ezequiel@collabora.com>
15987 L:      linux-media@vger.kernel.org
15988 L:      linux-rockchip@lists.infradead.org
15989 S:      Maintained
15990 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15991 F:      drivers/media/platform/rockchip/rga/
15992
15993 ROCKCHIP VIDEO DECODER DRIVER
15994 M:      Ezequiel Garcia <ezequiel@collabora.com>
15995 L:      linux-media@vger.kernel.org
15996 L:      linux-rockchip@lists.infradead.org
15997 S:      Maintained
15998 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15999 F:      drivers/staging/media/rkvdec/
16000
16001 ROCKER DRIVER
16002 M:      Jiri Pirko <jiri@resnulli.us>
16003 L:      netdev@vger.kernel.org
16004 S:      Supported
16005 F:      drivers/net/ethernet/rocker/
16006
16007 ROCKETPORT EXPRESS/INFINITY DRIVER
16008 M:      Kevin Cernekee <cernekee@gmail.com>
16009 L:      linux-serial@vger.kernel.org
16010 S:      Odd Fixes
16011 F:      drivers/tty/serial/rp2.*
16012
16013 ROHM BD99954 CHARGER IC
16014 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16015 L:      linux-power@fi.rohmeurope.com
16016 S:      Supported
16017 F:      drivers/power/supply/bd99954-charger.c
16018 F:      drivers/power/supply/bd99954-charger.h
16019
16020 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16021 M:      Tomasz Duszynski <tduszyns@gmail.com>
16022 S:      Maintained
16023 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16024 F:      drivers/iio/light/bh1750.c
16025
16026 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16027 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16028 L:      linux-kernel@vger.kernel.org
16029 L:      linux-renesas-soc@vger.kernel.org
16030 S:      Supported
16031 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16032 F:      drivers/gpio/gpio-bd9571mwv.c
16033 F:      drivers/mfd/bd9571mwv.c
16034 F:      drivers/regulator/bd9571mwv-regulator.c
16035 F:      include/linux/mfd/bd9571mwv.h
16036
16037 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16038 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16039 L:      linux-power@fi.rohmeurope.com
16040 S:      Supported
16041 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16042 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16043 F:      drivers/clk/clk-bd718x7.c
16044 F:      drivers/gpio/gpio-bd70528.c
16045 F:      drivers/gpio/gpio-bd71815.c
16046 F:      drivers/gpio/gpio-bd71828.c
16047 F:      drivers/mfd/rohm-bd70528.c
16048 F:      drivers/mfd/rohm-bd71828.c
16049 F:      drivers/mfd/rohm-bd718x7.c
16050 F:      drivers/mfd/rohm-bd9576.c
16051 F:      drivers/power/supply/bd70528-charger.c
16052 F:      drivers/regulator/bd70528-regulator.c
16053 F:      drivers/regulator/bd71815-regulator.c
16054 F:      drivers/regulator/bd71828-regulator.c
16055 F:      drivers/regulator/bd718x7-regulator.c
16056 F:      drivers/regulator/bd9576-regulator.c
16057 F:      drivers/regulator/rohm-regulator.c
16058 F:      drivers/rtc/rtc-bd70528.c
16059 F:      drivers/watchdog/bd70528_wdt.c
16060 F:      drivers/watchdog/bd9576_wdt.c
16061 F:      include/linux/mfd/rohm-bd70528.h
16062 F:      include/linux/mfd/rohm-bd71815.h
16063 F:      include/linux/mfd/rohm-bd71828.h
16064 F:      include/linux/mfd/rohm-bd718x7.h
16065 F:      include/linux/mfd/rohm-bd957x.h
16066 F:      include/linux/mfd/rohm-generic.h
16067 F:      include/linux/mfd/rohm-shared.h
16068
16069 ROSE NETWORK LAYER
16070 M:      Ralf Baechle <ralf@linux-mips.org>
16071 L:      linux-hams@vger.kernel.org
16072 S:      Maintained
16073 W:      http://www.linux-ax25.org/
16074 F:      include/net/rose.h
16075 F:      include/uapi/linux/rose.h
16076 F:      net/rose/
16077
16078 ROTATION DRIVER FOR ALLWINNER A83T
16079 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16080 L:      linux-media@vger.kernel.org
16081 S:      Maintained
16082 T:      git git://linuxtv.org/media_tree.git
16083 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16084 F:      drivers/media/platform/sunxi/sun8i-rotate/
16085
16086 RTL2830 MEDIA DRIVER
16087 M:      Antti Palosaari <crope@iki.fi>
16088 L:      linux-media@vger.kernel.org
16089 S:      Maintained
16090 W:      https://linuxtv.org
16091 W:      http://palosaari.fi/linux/
16092 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16093 T:      git git://linuxtv.org/anttip/media_tree.git
16094 F:      drivers/media/dvb-frontends/rtl2830*
16095
16096 RTL2832 MEDIA DRIVER
16097 M:      Antti Palosaari <crope@iki.fi>
16098 L:      linux-media@vger.kernel.org
16099 S:      Maintained
16100 W:      https://linuxtv.org
16101 W:      http://palosaari.fi/linux/
16102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16103 T:      git git://linuxtv.org/anttip/media_tree.git
16104 F:      drivers/media/dvb-frontends/rtl2832*
16105
16106 RTL2832_SDR MEDIA DRIVER
16107 M:      Antti Palosaari <crope@iki.fi>
16108 L:      linux-media@vger.kernel.org
16109 S:      Maintained
16110 W:      https://linuxtv.org
16111 W:      http://palosaari.fi/linux/
16112 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16113 T:      git git://linuxtv.org/anttip/media_tree.git
16114 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16115
16116 RTL8180 WIRELESS DRIVER
16117 L:      linux-wireless@vger.kernel.org
16118 S:      Orphan
16119 W:      https://wireless.wiki.kernel.org/
16120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16121 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16122
16123 RTL8187 WIRELESS DRIVER
16124 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16125 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16126 M:      Larry Finger <Larry.Finger@lwfinger.net>
16127 L:      linux-wireless@vger.kernel.org
16128 S:      Maintained
16129 W:      https://wireless.wiki.kernel.org/
16130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16131 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16132
16133 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16134 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16135 L:      linux-wireless@vger.kernel.org
16136 S:      Maintained
16137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16138 F:      drivers/net/wireless/realtek/rtl8xxxu/
16139
16140 RTRS TRANSPORT DRIVERS
16141 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16142 M:      Jack Wang <jinpu.wang@ionos.com>
16143 L:      linux-rdma@vger.kernel.org
16144 S:      Maintained
16145 F:      drivers/infiniband/ulp/rtrs/
16146
16147 RXRPC SOCKETS (AF_RXRPC)
16148 M:      David Howells <dhowells@redhat.com>
16149 M:      Marc Dionne <marc.dionne@auristor.com>
16150 L:      linux-afs@lists.infradead.org
16151 S:      Supported
16152 W:      https://www.infradead.org/~dhowells/kafs/
16153 F:      Documentation/networking/rxrpc.rst
16154 F:      include/keys/rxrpc-type.h
16155 F:      include/net/af_rxrpc.h
16156 F:      include/trace/events/rxrpc.h
16157 F:      include/uapi/linux/rxrpc.h
16158 F:      net/rxrpc/
16159
16160 S3 SAVAGE FRAMEBUFFER DRIVER
16161 M:      Antonino Daplas <adaplas@gmail.com>
16162 L:      linux-fbdev@vger.kernel.org
16163 S:      Maintained
16164 F:      drivers/video/fbdev/savage/
16165
16166 S390
16167 M:      Heiko Carstens <hca@linux.ibm.com>
16168 M:      Vasily Gorbik <gor@linux.ibm.com>
16169 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16170 L:      linux-s390@vger.kernel.org
16171 S:      Supported
16172 W:      http://www.ibm.com/developerworks/linux/linux390/
16173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16174 F:      Documentation/driver-api/s390-drivers.rst
16175 F:      Documentation/s390/
16176 F:      arch/s390/
16177 F:      drivers/s390/
16178
16179 S390 COMMON I/O LAYER
16180 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16181 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16182 L:      linux-s390@vger.kernel.org
16183 S:      Supported
16184 W:      http://www.ibm.com/developerworks/linux/linux390/
16185 F:      drivers/s390/cio/
16186
16187 S390 DASD DRIVER
16188 M:      Stefan Haberland <sth@linux.ibm.com>
16189 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16190 L:      linux-s390@vger.kernel.org
16191 S:      Supported
16192 W:      http://www.ibm.com/developerworks/linux/linux390/
16193 F:      block/partitions/ibm.c
16194 F:      drivers/s390/block/dasd*
16195 F:      include/linux/dasd_mod.h
16196
16197 S390 IOMMU (PCI)
16198 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16199 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16200 L:      linux-s390@vger.kernel.org
16201 S:      Supported
16202 W:      http://www.ibm.com/developerworks/linux/linux390/
16203 F:      drivers/iommu/s390-iommu.c
16204
16205 S390 IUCV NETWORK LAYER
16206 M:      Julian Wiedmann <jwi@linux.ibm.com>
16207 M:      Karsten Graul <kgraul@linux.ibm.com>
16208 L:      linux-s390@vger.kernel.org
16209 L:      netdev@vger.kernel.org
16210 S:      Supported
16211 W:      http://www.ibm.com/developerworks/linux/linux390/
16212 F:      drivers/s390/net/*iucv*
16213 F:      include/net/iucv/
16214 F:      net/iucv/
16215
16216 S390 NETWORK DRIVERS
16217 M:      Julian Wiedmann <jwi@linux.ibm.com>
16218 M:      Karsten Graul <kgraul@linux.ibm.com>
16219 L:      linux-s390@vger.kernel.org
16220 L:      netdev@vger.kernel.org
16221 S:      Supported
16222 W:      http://www.ibm.com/developerworks/linux/linux390/
16223 F:      drivers/s390/net/
16224
16225 S390 PCI SUBSYSTEM
16226 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16227 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16228 L:      linux-s390@vger.kernel.org
16229 S:      Supported
16230 W:      http://www.ibm.com/developerworks/linux/linux390/
16231 F:      arch/s390/pci/
16232 F:      drivers/pci/hotplug/s390_pci_hpc.c
16233 F:      Documentation/s390/pci.rst
16234
16235 S390 VFIO AP DRIVER
16236 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16237 M:      Halil Pasic <pasic@linux.ibm.com>
16238 M:      Jason Herne <jjherne@linux.ibm.com>
16239 L:      linux-s390@vger.kernel.org
16240 S:      Supported
16241 W:      http://www.ibm.com/developerworks/linux/linux390/
16242 F:      Documentation/s390/vfio-ap.rst
16243 F:      drivers/s390/crypto/vfio_ap_drv.c
16244 F:      drivers/s390/crypto/vfio_ap_ops.c
16245 F:      drivers/s390/crypto/vfio_ap_private.h
16246
16247 S390 VFIO-CCW DRIVER
16248 M:      Cornelia Huck <cohuck@redhat.com>
16249 M:      Eric Farman <farman@linux.ibm.com>
16250 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16251 R:      Halil Pasic <pasic@linux.ibm.com>
16252 L:      linux-s390@vger.kernel.org
16253 L:      kvm@vger.kernel.org
16254 S:      Supported
16255 F:      Documentation/s390/vfio-ccw.rst
16256 F:      drivers/s390/cio/vfio_ccw*
16257 F:      include/uapi/linux/vfio_ccw.h
16258
16259 S390 VFIO-PCI DRIVER
16260 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16261 M:      Eric Farman <farman@linux.ibm.com>
16262 L:      linux-s390@vger.kernel.org
16263 L:      kvm@vger.kernel.org
16264 S:      Supported
16265 F:      drivers/vfio/pci/vfio_pci_zdev.c
16266 F:      include/uapi/linux/vfio_zdev.h
16267
16268 S390 ZCRYPT DRIVER
16269 M:      Harald Freudenberger <freude@linux.ibm.com>
16270 L:      linux-s390@vger.kernel.org
16271 S:      Supported
16272 W:      http://www.ibm.com/developerworks/linux/linux390/
16273 F:      drivers/s390/crypto/
16274
16275 S390 ZFCP DRIVER
16276 M:      Steffen Maier <maier@linux.ibm.com>
16277 M:      Benjamin Block <bblock@linux.ibm.com>
16278 L:      linux-s390@vger.kernel.org
16279 S:      Supported
16280 W:      http://www.ibm.com/developerworks/linux/linux390/
16281 F:      drivers/s390/scsi/zfcp_*
16282
16283 S3C ADC BATTERY DRIVER
16284 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16285 L:      linux-samsung-soc@vger.kernel.org
16286 S:      Odd Fixes
16287 F:      drivers/power/supply/s3c_adc_battery.c
16288 F:      include/linux/s3c_adc_battery.h
16289
16290 S3C24XX SD/MMC Driver
16291 M:      Ben Dooks <ben-linux@fluff.org>
16292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16293 S:      Supported
16294 F:      drivers/mmc/host/s3cmci.*
16295
16296 SAA6588 RDS RECEIVER DRIVER
16297 M:      Hans Verkuil <hverkuil@xs4all.nl>
16298 L:      linux-media@vger.kernel.org
16299 S:      Odd Fixes
16300 W:      https://linuxtv.org
16301 T:      git git://linuxtv.org/media_tree.git
16302 F:      drivers/media/i2c/saa6588*
16303
16304 SAA7134 VIDEO4LINUX DRIVER
16305 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16306 L:      linux-media@vger.kernel.org
16307 S:      Odd fixes
16308 W:      https://linuxtv.org
16309 T:      git git://linuxtv.org/media_tree.git
16310 F:      Documentation/driver-api/media/drivers/saa7134*
16311 F:      drivers/media/pci/saa7134/
16312
16313 SAA7146 VIDEO4LINUX-2 DRIVER
16314 M:      Hans Verkuil <hverkuil@xs4all.nl>
16315 L:      linux-media@vger.kernel.org
16316 S:      Maintained
16317 T:      git git://linuxtv.org/media_tree.git
16318 F:      drivers/media/common/saa7146/
16319 F:      drivers/media/pci/saa7146/
16320 F:      include/media/drv-intf/saa7146*
16321
16322 SAFESETID SECURITY MODULE
16323 M:      Micah Morton <mortonm@chromium.org>
16324 S:      Supported
16325 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16326 F:      security/safesetid/
16327
16328 SAMSUNG AUDIO (ASoC) DRIVERS
16329 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16330 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16331 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16332 S:      Supported
16333 F:      Documentation/devicetree/bindings/sound/samsung*
16334 F:      sound/soc/samsung/
16335
16336 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16337 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16338 L:      linux-crypto@vger.kernel.org
16339 L:      linux-samsung-soc@vger.kernel.org
16340 S:      Maintained
16341 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16342 F:      drivers/crypto/exynos-rng.c
16343
16344 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16345 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16346 L:      linux-samsung-soc@vger.kernel.org
16347 S:      Maintained
16348 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
16349 F:      drivers/char/hw_random/exynos-trng.c
16350
16351 SAMSUNG FRAMEBUFFER DRIVER
16352 M:      Jingoo Han <jingoohan1@gmail.com>
16353 L:      linux-fbdev@vger.kernel.org
16354 S:      Maintained
16355 F:      drivers/video/fbdev/s3c-fb.c
16356
16357 SAMSUNG INTERCONNECT DRIVERS
16358 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16359 M:      Artur Świgoń <a.swigon@samsung.com>
16360 L:      linux-pm@vger.kernel.org
16361 L:      linux-samsung-soc@vger.kernel.org
16362 S:      Supported
16363 F:      drivers/interconnect/samsung/
16364
16365 SAMSUNG LAPTOP DRIVER
16366 M:      Corentin Chary <corentin.chary@gmail.com>
16367 L:      platform-driver-x86@vger.kernel.org
16368 S:      Maintained
16369 F:      drivers/platform/x86/samsung-laptop.c
16370
16371 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16372 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16373 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16374 L:      linux-kernel@vger.kernel.org
16375 L:      linux-samsung-soc@vger.kernel.org
16376 S:      Supported
16377 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16378 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16379 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16380 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16381 F:      drivers/clk/clk-s2mps11.c
16382 F:      drivers/mfd/sec*.c
16383 F:      drivers/regulator/s2m*.c
16384 F:      drivers/regulator/s5m*.c
16385 F:      drivers/rtc/rtc-s5m.c
16386 F:      include/linux/mfd/samsung/
16387
16388 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16389 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16390 L:      linux-media@vger.kernel.org
16391 L:      linux-samsung-soc@vger.kernel.org
16392 S:      Maintained
16393 F:      drivers/media/platform/s3c-camif/
16394 F:      include/media/drv-intf/s3c_camif.h
16395
16396 SAMSUNG S3FWRN5 NFC DRIVER
16397 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16398 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16399 L:      linux-nfc@lists.01.org (subscribers-only)
16400 S:      Maintained
16401 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16402 F:      drivers/nfc/s3fwrn5
16403
16404 SAMSUNG S5C73M3 CAMERA DRIVER
16405 M:      Andrzej Hajda <a.hajda@samsung.com>
16406 L:      linux-media@vger.kernel.org
16407 S:      Supported
16408 F:      drivers/media/i2c/s5c73m3/*
16409
16410 SAMSUNG S5K5BAF CAMERA DRIVER
16411 M:      Andrzej Hajda <a.hajda@samsung.com>
16412 L:      linux-media@vger.kernel.org
16413 S:      Supported
16414 F:      drivers/media/i2c/s5k5baf.c
16415
16416 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16417 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16418 M:      Vladimir Zapolskiy <vz@mleia.com>
16419 L:      linux-crypto@vger.kernel.org
16420 L:      linux-samsung-soc@vger.kernel.org
16421 S:      Maintained
16422 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16423 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16424 F:      drivers/crypto/s5p-sss.c
16425
16426 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16427 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16428 L:      linux-media@vger.kernel.org
16429 S:      Supported
16430 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16431 F:      drivers/media/platform/exynos4-is/
16432
16433 SAMSUNG SOC CLOCK DRIVERS
16434 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16435 M:      Tomasz Figa <tomasz.figa@gmail.com>
16436 M:      Chanwoo Choi <cw00.choi@samsung.com>
16437 L:      linux-samsung-soc@vger.kernel.org
16438 S:      Supported
16439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16440 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16441 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16442 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16443 F:      drivers/clk/samsung/
16444 F:      include/dt-bindings/clock/exynos*.h
16445 F:      include/linux/clk/samsung.h
16446 F:      include/linux/platform_data/clk-s3c2410.h
16447
16448 SAMSUNG SPI DRIVERS
16449 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16450 M:      Andi Shyti <andi@etezian.org>
16451 L:      linux-spi@vger.kernel.org
16452 L:      linux-samsung-soc@vger.kernel.org
16453 S:      Maintained
16454 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16455 F:      drivers/spi/spi-s3c*
16456 F:      include/linux/platform_data/spi-s3c64xx.h
16457 F:      include/linux/spi/s3c24xx-fiq.h
16458
16459 SAMSUNG SXGBE DRIVERS
16460 M:      Byungho An <bh74.an@samsung.com>
16461 L:      netdev@vger.kernel.org
16462 S:      Supported
16463 F:      drivers/net/ethernet/samsung/sxgbe/
16464
16465 SAMSUNG THERMAL DRIVER
16466 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16467 L:      linux-pm@vger.kernel.org
16468 L:      linux-samsung-soc@vger.kernel.org
16469 S:      Supported
16470 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16471 F:      drivers/thermal/samsung/
16472
16473 SAMSUNG USB2 PHY DRIVER
16474 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16475 L:      linux-kernel@vger.kernel.org
16476 S:      Supported
16477 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16478 F:      Documentation/driver-api/phy/samsung-usb2.rst
16479 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16480 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16481 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16482 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16483 F:      drivers/phy/samsung/phy-samsung-usb2.c
16484 F:      drivers/phy/samsung/phy-samsung-usb2.h
16485
16486 SC1200 WDT DRIVER
16487 M:      Zwane Mwaikambo <zwanem@gmail.com>
16488 S:      Maintained
16489 F:      drivers/watchdog/sc1200wdt.c
16490
16491 SCHEDULER
16492 M:      Ingo Molnar <mingo@redhat.com>
16493 M:      Peter Zijlstra <peterz@infradead.org>
16494 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16495 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16496 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16497 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16498 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16499 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16500 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16501 L:      linux-kernel@vger.kernel.org
16502 S:      Maintained
16503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16504 F:      include/linux/preempt.h
16505 F:      include/linux/sched.h
16506 F:      include/linux/wait.h
16507 F:      include/uapi/linux/sched.h
16508 F:      kernel/sched/
16509
16510 SCR24X CHIP CARD INTERFACE DRIVER
16511 M:      Lubomir Rintel <lkundrak@v3.sk>
16512 S:      Supported
16513 F:      drivers/char/pcmcia/scr24x_cs.c
16514
16515 SCSI CDROM DRIVER
16516 M:      Jens Axboe <axboe@kernel.dk>
16517 L:      linux-scsi@vger.kernel.org
16518 S:      Maintained
16519 W:      http://www.kernel.dk
16520 F:      drivers/scsi/sr*
16521
16522 SCSI RDMA PROTOCOL (SRP) INITIATOR
16523 M:      Bart Van Assche <bvanassche@acm.org>
16524 L:      linux-rdma@vger.kernel.org
16525 S:      Supported
16526 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16527 F:      drivers/infiniband/ulp/srp/
16528 F:      include/scsi/srp.h
16529
16530 SCSI RDMA PROTOCOL (SRP) TARGET
16531 M:      Bart Van Assche <bvanassche@acm.org>
16532 L:      linux-rdma@vger.kernel.org
16533 L:      target-devel@vger.kernel.org
16534 S:      Supported
16535 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16536 F:      drivers/infiniband/ulp/srpt/
16537
16538 SCSI SG DRIVER
16539 M:      Doug Gilbert <dgilbert@interlog.com>
16540 L:      linux-scsi@vger.kernel.org
16541 S:      Maintained
16542 W:      http://sg.danny.cz/sg
16543 F:      Documentation/scsi/scsi-generic.rst
16544 F:      drivers/scsi/sg.c
16545 F:      include/scsi/sg.h
16546
16547 SCSI SUBSYSTEM
16548 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16549 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16550 L:      linux-scsi@vger.kernel.org
16551 S:      Maintained
16552 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16555 F:      Documentation/devicetree/bindings/scsi/
16556 F:      drivers/scsi/
16557 F:      include/scsi/
16558
16559 SCSI TAPE DRIVER
16560 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16561 L:      linux-scsi@vger.kernel.org
16562 S:      Maintained
16563 F:      Documentation/scsi/st.rst
16564 F:      drivers/scsi/st.*
16565 F:      drivers/scsi/st_*.h
16566
16567 SCSI TARGET CORE USER DRIVER
16568 M:      Bodo Stroesser <bostroesser@gmail.com>
16569 L:      linux-scsi@vger.kernel.org
16570 L:      target-devel@vger.kernel.org
16571 S:      Supported
16572 F:      Documentation/target/tcmu-design.rst
16573 F:      drivers/target/target_core_user.c
16574 F:      include/uapi/linux/target_core_user.h
16575
16576 SCSI TARGET SUBSYSTEM
16577 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16578 L:      linux-scsi@vger.kernel.org
16579 L:      target-devel@vger.kernel.org
16580 S:      Supported
16581 W:      http://www.linux-iscsi.org
16582 Q:      https://patchwork.kernel.org/project/target-devel/list/
16583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16584 F:      Documentation/target/
16585 F:      drivers/target/
16586 F:      include/target/
16587
16588 SCTP PROTOCOL
16589 M:      Vlad Yasevich <vyasevich@gmail.com>
16590 M:      Neil Horman <nhorman@tuxdriver.com>
16591 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16592 L:      linux-sctp@vger.kernel.org
16593 S:      Maintained
16594 W:      http://lksctp.sourceforge.net
16595 F:      Documentation/networking/sctp.rst
16596 F:      include/linux/sctp.h
16597 F:      include/net/sctp/
16598 F:      include/uapi/linux/sctp.h
16599 F:      net/sctp/
16600
16601 SCx200 CPU SUPPORT
16602 M:      Jim Cromie <jim.cromie@gmail.com>
16603 S:      Odd Fixes
16604 F:      Documentation/i2c/busses/scx200_acb.rst
16605 F:      arch/x86/platform/scx200/
16606 F:      drivers/i2c/busses/scx200*
16607 F:      drivers/mtd/maps/scx200_docflash.c
16608 F:      drivers/watchdog/scx200_wdt.c
16609 F:      include/linux/scx200.h
16610
16611 SCx200 GPIO DRIVER
16612 M:      Jim Cromie <jim.cromie@gmail.com>
16613 S:      Maintained
16614 F:      drivers/char/scx200_gpio.c
16615 F:      include/linux/scx200_gpio.h
16616
16617 SCx200 HRT CLOCKSOURCE DRIVER
16618 M:      Jim Cromie <jim.cromie@gmail.com>
16619 S:      Maintained
16620 F:      drivers/clocksource/scx200_hrt.c
16621
16622 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16623 M:      Sascha Sommer <saschasommer@freenet.de>
16624 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16625 S:      Maintained
16626 F:      drivers/mmc/host/sdricoh_cs.c
16627
16628 SECO BOARDS CEC DRIVER
16629 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16630 S:      Maintained
16631 F:      drivers/media/cec/platform/seco/seco-cec.c
16632 F:      drivers/media/cec/platform/seco/seco-cec.h
16633
16634 SECURE COMPUTING
16635 M:      Kees Cook <keescook@chromium.org>
16636 R:      Andy Lutomirski <luto@amacapital.net>
16637 R:      Will Drewry <wad@chromium.org>
16638 S:      Supported
16639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16640 F:      Documentation/userspace-api/seccomp_filter.rst
16641 F:      include/linux/seccomp.h
16642 F:      include/uapi/linux/seccomp.h
16643 F:      kernel/seccomp.c
16644 F:      tools/testing/selftests/kselftest_harness.h
16645 F:      tools/testing/selftests/seccomp/*
16646 K:      \bsecure_computing
16647 K:      \bTIF_SECCOMP\b
16648
16649 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16650 M:      Al Cooper <alcooperx@gmail.com>
16651 L:      linux-mmc@vger.kernel.org
16652 L:      bcm-kernel-feedback-list@broadcom.com
16653 S:      Maintained
16654 F:      drivers/mmc/host/sdhci-brcmstb*
16655
16656 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16657 M:      Adrian Hunter <adrian.hunter@intel.com>
16658 L:      linux-mmc@vger.kernel.org
16659 S:      Maintained
16660 F:      drivers/mmc/host/sdhci*
16661 F:      include/linux/mmc/sdhci*
16662
16663 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16664 M:      Eugen Hristev <eugen.hristev@microchip.com>
16665 L:      linux-mmc@vger.kernel.org
16666 S:      Supported
16667 F:      drivers/mmc/host/sdhci-of-at91.c
16668
16669 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16670 M:      Ben Dooks <ben-linux@fluff.org>
16671 M:      Jaehoon Chung <jh80.chung@samsung.com>
16672 L:      linux-mmc@vger.kernel.org
16673 S:      Maintained
16674 F:      drivers/mmc/host/sdhci-s3c*
16675
16676 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16677 M:      Viresh Kumar <vireshk@kernel.org>
16678 L:      linux-mmc@vger.kernel.org
16679 S:      Maintained
16680 F:      drivers/mmc/host/sdhci-spear.c
16681
16682 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16683 M:      Kishon Vijay Abraham I <kishon@ti.com>
16684 L:      linux-mmc@vger.kernel.org
16685 S:      Maintained
16686 F:      drivers/mmc/host/sdhci-omap.c
16687
16688 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16689 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16690 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16691 L:      linux-block@vger.kernel.org
16692 S:      Supported
16693 F:      block/opal_proto.h
16694 F:      block/sed*
16695 F:      include/linux/sed*
16696 F:      include/uapi/linux/sed*
16697
16698 SECURITY CONTACT
16699 M:      Security Officers <security@kernel.org>
16700 S:      Supported
16701 F:      Documentation/admin-guide/security-bugs.rst
16702
16703 SECURITY SUBSYSTEM
16704 M:      James Morris <jmorris@namei.org>
16705 M:      "Serge E. Hallyn" <serge@hallyn.com>
16706 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16707 S:      Supported
16708 W:      http://kernsec.org/
16709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16710 F:      security/
16711 X:      security/selinux/
16712
16713 SELINUX SECURITY MODULE
16714 M:      Paul Moore <paul@paul-moore.com>
16715 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16716 M:      Eric Paris <eparis@parisplace.org>
16717 L:      selinux@vger.kernel.org
16718 S:      Supported
16719 W:      https://selinuxproject.org
16720 W:      https://github.com/SELinuxProject
16721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16722 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16723 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16724 F:      Documentation/admin-guide/LSM/SELinux.rst
16725 F:      include/trace/events/avc.h
16726 F:      include/uapi/linux/selinux_netlink.h
16727 F:      scripts/selinux/
16728 F:      security/selinux/
16729
16730 SENSABLE PHANTOM
16731 M:      Jiri Slaby <jirislaby@kernel.org>
16732 S:      Maintained
16733 F:      drivers/misc/phantom.c
16734 F:      include/uapi/linux/phantom.h
16735
16736 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16737 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16738 S:      Maintained
16739 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16740 F:      drivers/iio/chemical/scd30.h
16741 F:      drivers/iio/chemical/scd30_core.c
16742 F:      drivers/iio/chemical/scd30_i2c.c
16743 F:      drivers/iio/chemical/scd30_serial.c
16744
16745 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16746 M:      Tomasz Duszynski <tduszyns@gmail.com>
16747 S:      Maintained
16748 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16749 F:      drivers/iio/chemical/sps30.c
16750 F:      drivers/iio/chemical/sps30_i2c.c
16751 F:      drivers/iio/chemical/sps30_serial.c
16752
16753 SERIAL DEVICE BUS
16754 M:      Rob Herring <robh@kernel.org>
16755 L:      linux-serial@vger.kernel.org
16756 S:      Maintained
16757 F:      Documentation/devicetree/bindings/serial/serial.yaml
16758 F:      drivers/tty/serdev/
16759 F:      include/linux/serdev.h
16760
16761 SERIAL DRIVERS
16762 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16763 L:      linux-serial@vger.kernel.org
16764 S:      Maintained
16765 F:      Documentation/devicetree/bindings/serial/
16766 F:      drivers/tty/serial/
16767
16768 SERIAL IR RECEIVER
16769 M:      Sean Young <sean@mess.org>
16770 L:      linux-media@vger.kernel.org
16771 S:      Maintained
16772 F:      drivers/media/rc/serial_ir.c
16773
16774 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16775 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16777 S:      Maintained
16778 F:      Documentation/devicetree/bindings/slimbus/
16779 F:      drivers/slimbus/
16780 F:      include/linux/slimbus.h
16781
16782 SFC NETWORK DRIVER
16783 M:      Edward Cree <ecree.xilinx@gmail.com>
16784 M:      Martin Habets <habetsm.xilinx@gmail.com>
16785 L:      netdev@vger.kernel.org
16786 S:      Supported
16787 F:      drivers/net/ethernet/sfc/
16788
16789 SFF/SFP/SFP+ MODULE SUPPORT
16790 M:      Russell King <linux@armlinux.org.uk>
16791 L:      netdev@vger.kernel.org
16792 S:      Maintained
16793 F:      drivers/net/phy/phylink.c
16794 F:      drivers/net/phy/sfp*
16795 F:      include/linux/mdio/mdio-i2c.h
16796 F:      include/linux/phylink.h
16797 F:      include/linux/sfp.h
16798 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)
16799
16800 SGI GRU DRIVER
16801 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16802 S:      Maintained
16803 F:      drivers/misc/sgi-gru/
16804
16805 SGI XP/XPC/XPNET DRIVER
16806 M:      Robin Holt <robinmholt@gmail.com>
16807 M:      Steve Wahl <steve.wahl@hpe.com>
16808 R:      Mike Travis <mike.travis@hpe.com>
16809 S:      Maintained
16810 F:      drivers/misc/sgi-xp/
16811
16812 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16813 M:      Karsten Graul <kgraul@linux.ibm.com>
16814 M:      Guvenc Gulce <guvenc@linux.ibm.com>
16815 L:      linux-s390@vger.kernel.org
16816 S:      Supported
16817 W:      http://www.ibm.com/developerworks/linux/linux390/
16818 F:      net/smc/
16819
16820 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16821 M:      Linus Walleij <linus.walleij@linaro.org>
16822 L:      linux-iio@vger.kernel.org
16823 S:      Maintained
16824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16825 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16826 F:      drivers/iio/light/gp2ap002.c
16827
16828 SHARP RJ54N1CB0C SENSOR DRIVER
16829 M:      Jacopo Mondi <jacopo@jmondi.org>
16830 L:      linux-media@vger.kernel.org
16831 S:      Odd fixes
16832 T:      git git://linuxtv.org/media_tree.git
16833 F:      drivers/media/i2c/rj54n1cb0c.c
16834 F:      include/media/i2c/rj54n1cb0c.h
16835
16836 SH_VOU V4L2 OUTPUT DRIVER
16837 L:      linux-media@vger.kernel.org
16838 S:      Orphan
16839 F:      drivers/media/platform/sh_vou.c
16840 F:      include/media/drv-intf/sh_vou.h
16841
16842 SI2157 MEDIA DRIVER
16843 M:      Antti Palosaari <crope@iki.fi>
16844 L:      linux-media@vger.kernel.org
16845 S:      Maintained
16846 W:      https://linuxtv.org
16847 W:      http://palosaari.fi/linux/
16848 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16849 T:      git git://linuxtv.org/anttip/media_tree.git
16850 F:      drivers/media/tuners/si2157*
16851
16852 SI2165 MEDIA DRIVER
16853 M:      Matthias Schwarzott <zzam@gentoo.org>
16854 L:      linux-media@vger.kernel.org
16855 S:      Maintained
16856 W:      https://linuxtv.org
16857 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16858 F:      drivers/media/dvb-frontends/si2165*
16859
16860 SI2168 MEDIA DRIVER
16861 M:      Antti Palosaari <crope@iki.fi>
16862 L:      linux-media@vger.kernel.org
16863 S:      Maintained
16864 W:      https://linuxtv.org
16865 W:      http://palosaari.fi/linux/
16866 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16867 T:      git git://linuxtv.org/anttip/media_tree.git
16868 F:      drivers/media/dvb-frontends/si2168*
16869
16870 SI470X FM RADIO RECEIVER I2C DRIVER
16871 M:      Hans Verkuil <hverkuil@xs4all.nl>
16872 L:      linux-media@vger.kernel.org
16873 S:      Odd Fixes
16874 W:      https://linuxtv.org
16875 T:      git git://linuxtv.org/media_tree.git
16876 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16877
16878 SI470X FM RADIO RECEIVER USB DRIVER
16879 M:      Hans Verkuil <hverkuil@xs4all.nl>
16880 L:      linux-media@vger.kernel.org
16881 S:      Maintained
16882 W:      https://linuxtv.org
16883 T:      git git://linuxtv.org/media_tree.git
16884 F:      drivers/media/radio/si470x/radio-si470x-common.c
16885 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16886 F:      drivers/media/radio/si470x/radio-si470x.h
16887
16888 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16889 M:      Eduardo Valentin <edubezval@gmail.com>
16890 L:      linux-media@vger.kernel.org
16891 S:      Odd Fixes
16892 W:      https://linuxtv.org
16893 T:      git git://linuxtv.org/media_tree.git
16894 F:      drivers/media/radio/si4713/si4713.?
16895
16896 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16897 M:      Eduardo Valentin <edubezval@gmail.com>
16898 L:      linux-media@vger.kernel.org
16899 S:      Odd Fixes
16900 W:      https://linuxtv.org
16901 T:      git git://linuxtv.org/media_tree.git
16902 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16903
16904 SI4713 FM RADIO TRANSMITTER USB DRIVER
16905 M:      Hans Verkuil <hverkuil@xs4all.nl>
16906 L:      linux-media@vger.kernel.org
16907 S:      Maintained
16908 W:      https://linuxtv.org
16909 T:      git git://linuxtv.org/media_tree.git
16910 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16911
16912 SIANO DVB DRIVER
16913 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16914 L:      linux-media@vger.kernel.org
16915 S:      Odd fixes
16916 W:      https://linuxtv.org
16917 T:      git git://linuxtv.org/media_tree.git
16918 F:      drivers/media/common/siano/
16919 F:      drivers/media/mmc/siano/
16920 F:      drivers/media/usb/siano/
16921 F:      drivers/media/usb/siano/
16922
16923 SIFIVE DRIVERS
16924 M:      Palmer Dabbelt <palmer@dabbelt.com>
16925 M:      Paul Walmsley <paul.walmsley@sifive.com>
16926 L:      linux-riscv@lists.infradead.org
16927 S:      Supported
16928 T:      git git://github.com/sifive/riscv-linux.git
16929 N:      sifive
16930 K:      [^@]sifive
16931
16932 SIFIVE FU540 SYSTEM-ON-CHIP
16933 M:      Paul Walmsley <paul.walmsley@sifive.com>
16934 M:      Palmer Dabbelt <palmer@dabbelt.com>
16935 L:      linux-riscv@lists.infradead.org
16936 S:      Supported
16937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16938 N:      fu540
16939 K:      fu540
16940
16941 SIFIVE PDMA DRIVER
16942 M:      Green Wan <green.wan@sifive.com>
16943 S:      Maintained
16944 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16945 F:      drivers/dma/sf-pdma/
16946
16947 SILEAD TOUCHSCREEN DRIVER
16948 M:      Hans de Goede <hdegoede@redhat.com>
16949 L:      linux-input@vger.kernel.org
16950 L:      platform-driver-x86@vger.kernel.org
16951 S:      Maintained
16952 F:      drivers/input/touchscreen/silead.c
16953 F:      drivers/platform/x86/touchscreen_dmi.c
16954
16955 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16956 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16957 S:      Supported
16958 F:      drivers/staging/wfx/
16959
16960 SILICON MOTION SM712 FRAME BUFFER DRIVER
16961 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16962 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16963 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16964 L:      linux-fbdev@vger.kernel.org
16965 S:      Maintained
16966 F:      Documentation/fb/sm712fb.rst
16967 F:      drivers/video/fbdev/sm712*
16968
16969 SILVACO I3C DUAL-ROLE MASTER
16970 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16971 M:      Conor Culhane <conor.culhane@silvaco.com>
16972 L:      linux-i3c@lists.infradead.org
16973 S:      Maintained
16974 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16975 F:      drivers/i3c/master/svc-i3c-master.c
16976
16977 SIMPLEFB FB DRIVER
16978 M:      Hans de Goede <hdegoede@redhat.com>
16979 L:      linux-fbdev@vger.kernel.org
16980 S:      Maintained
16981 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16982 F:      drivers/video/fbdev/simplefb.c
16983 F:      include/linux/platform_data/simplefb.h
16984
16985 SIMTEC EB110ATX (Chalice CATS)
16986 M:      Simtec Linux Team <linux@simtec.co.uk>
16987 S:      Supported
16988 W:      http://www.simtec.co.uk/products/EB110ATX/
16989
16990 SIMTEC EB2410ITX (BAST)
16991 M:      Simtec Linux Team <linux@simtec.co.uk>
16992 S:      Supported
16993 W:      http://www.simtec.co.uk/products/EB2410ITX/
16994 F:      arch/arm/mach-s3c/bast-ide.c
16995 F:      arch/arm/mach-s3c/bast-irq.c
16996 F:      arch/arm/mach-s3c/mach-bast.c
16997
16998 SIOX
16999 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17000 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17001 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17002 S:      Supported
17003 F:      drivers/gpio/gpio-siox.c
17004 F:      drivers/siox/*
17005 F:      include/trace/events/siox.h
17006
17007 SIPHASH PRF ROUTINES
17008 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17009 S:      Maintained
17010 F:      include/linux/siphash.h
17011 F:      lib/siphash.c
17012 F:      lib/test_siphash.c
17013
17014 SIS 190 ETHERNET DRIVER
17015 M:      Francois Romieu <romieu@fr.zoreil.com>
17016 L:      netdev@vger.kernel.org
17017 S:      Maintained
17018 F:      drivers/net/ethernet/sis/sis190.c
17019
17020 SIS 900/7016 FAST ETHERNET DRIVER
17021 M:      Daniele Venzano <venza@brownhat.org>
17022 L:      netdev@vger.kernel.org
17023 S:      Maintained
17024 W:      http://www.brownhat.org/sis900.html
17025 F:      drivers/net/ethernet/sis/sis900.*
17026
17027 SIS FRAMEBUFFER DRIVER
17028 M:      Thomas Winischhofer <thomas@winischhofer.net>
17029 S:      Maintained
17030 W:      http://www.winischhofer.net/linuxsisvga.shtml
17031 F:      Documentation/fb/sisfb.rst
17032 F:      drivers/video/fbdev/sis/
17033 F:      include/video/sisfb.h
17034
17035 SIS I2C TOUCHSCREEN DRIVER
17036 M:      Mika Penttilä <mika.penttila@nextfour.com>
17037 L:      linux-input@vger.kernel.org
17038 S:      Maintained
17039 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17040 F:      drivers/input/touchscreen/sis_i2c.c
17041
17042 SIS USB2VGA DRIVER
17043 M:      Thomas Winischhofer <thomas@winischhofer.net>
17044 S:      Maintained
17045 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17046 F:      drivers/usb/misc/sisusbvga/
17047
17048 SLAB ALLOCATOR
17049 M:      Christoph Lameter <cl@linux.com>
17050 M:      Pekka Enberg <penberg@kernel.org>
17051 M:      David Rientjes <rientjes@google.com>
17052 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17053 M:      Andrew Morton <akpm@linux-foundation.org>
17054 M:      Vlastimil Babka <vbabka@suse.cz>
17055 L:      linux-mm@kvack.org
17056 S:      Maintained
17057 F:      include/linux/sl?b*.h
17058 F:      mm/sl?b*
17059
17060 SLEEPABLE READ-COPY UPDATE (SRCU)
17061 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17062 M:      "Paul E. McKenney" <paulmck@kernel.org>
17063 M:      Josh Triplett <josh@joshtriplett.org>
17064 R:      Steven Rostedt <rostedt@goodmis.org>
17065 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17066 L:      rcu@vger.kernel.org
17067 S:      Supported
17068 W:      http://www.rdrop.com/users/paulmck/RCU/
17069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17070 F:      include/linux/srcu*.h
17071 F:      kernel/rcu/srcu*.c
17072
17073 SMACK SECURITY MODULE
17074 M:      Casey Schaufler <casey@schaufler-ca.com>
17075 L:      linux-security-module@vger.kernel.org
17076 S:      Maintained
17077 W:      http://schaufler-ca.com
17078 T:      git git://github.com/cschaufler/smack-next
17079 F:      Documentation/admin-guide/LSM/Smack.rst
17080 F:      security/smack/
17081
17082 SMC91x ETHERNET DRIVER
17083 M:      Nicolas Pitre <nico@fluxnic.net>
17084 S:      Odd Fixes
17085 F:      drivers/net/ethernet/smsc/smc91x.*
17086
17087 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17088 M:      Mark Rutland <mark.rutland@arm.com>
17089 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17090 M:      Sudeep Holla <sudeep.holla@arm.com>
17091 L:      linux-arm-kernel@lists.infradead.org
17092 S:      Maintained
17093 F:      drivers/firmware/smccc/
17094 F:      include/linux/arm-smccc.h
17095
17096 SMM665 HARDWARE MONITOR DRIVER
17097 M:      Guenter Roeck <linux@roeck-us.net>
17098 L:      linux-hwmon@vger.kernel.org
17099 S:      Maintained
17100 F:      Documentation/hwmon/smm665.rst
17101 F:      drivers/hwmon/smm665.c
17102
17103 SMSC EMC2103 HARDWARE MONITOR DRIVER
17104 M:      Steve Glendinning <steve.glendinning@shawell.net>
17105 L:      linux-hwmon@vger.kernel.org
17106 S:      Maintained
17107 F:      Documentation/hwmon/emc2103.rst
17108 F:      drivers/hwmon/emc2103.c
17109
17110 SMSC SCH5627 HARDWARE MONITOR DRIVER
17111 M:      Hans de Goede <hdegoede@redhat.com>
17112 L:      linux-hwmon@vger.kernel.org
17113 S:      Supported
17114 F:      Documentation/hwmon/sch5627.rst
17115 F:      drivers/hwmon/sch5627.c
17116
17117 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17118 M:      Steve Glendinning <steve.glendinning@shawell.net>
17119 L:      linux-fbdev@vger.kernel.org
17120 S:      Maintained
17121 F:      drivers/video/fbdev/smscufx.c
17122
17123 SMSC47B397 HARDWARE MONITOR DRIVER
17124 M:      Jean Delvare <jdelvare@suse.com>
17125 L:      linux-hwmon@vger.kernel.org
17126 S:      Maintained
17127 F:      Documentation/hwmon/smsc47b397.rst
17128 F:      drivers/hwmon/smsc47b397.c
17129
17130 SMSC911x ETHERNET DRIVER
17131 M:      Steve Glendinning <steve.glendinning@shawell.net>
17132 L:      netdev@vger.kernel.org
17133 S:      Maintained
17134 F:      drivers/net/ethernet/smsc/smsc911x.*
17135 F:      include/linux/smsc911x.h
17136
17137 SMSC9420 PCI ETHERNET DRIVER
17138 M:      Steve Glendinning <steve.glendinning@shawell.net>
17139 L:      netdev@vger.kernel.org
17140 S:      Maintained
17141 F:      drivers/net/ethernet/smsc/smsc9420.*
17142
17143 SOCIONEXT (SNI) AVE NETWORK DRIVER
17144 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17145 L:      netdev@vger.kernel.org
17146 S:      Maintained
17147 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17148 F:      drivers/net/ethernet/socionext/sni_ave.c
17149
17150 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17151 M:      Jassi Brar <jaswinder.singh@linaro.org>
17152 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17153 L:      netdev@vger.kernel.org
17154 S:      Maintained
17155 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17156 F:      drivers/net/ethernet/socionext/netsec.c
17157
17158 SOCIONEXT (SNI) Synquacer SPI DRIVER
17159 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17160 M:      Jassi Brar <jaswinder.singh@linaro.org>
17161 L:      linux-spi@vger.kernel.org
17162 S:      Maintained
17163 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17164 F:      drivers/spi/spi-synquacer.c
17165
17166 SOCIONEXT SYNQUACER I2C DRIVER
17167 M:      Ard Biesheuvel <ardb@kernel.org>
17168 L:      linux-i2c@vger.kernel.org
17169 S:      Maintained
17170 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17171 F:      drivers/i2c/busses/i2c-synquacer.c
17172
17173 SOCIONEXT UNIPHIER SOUND DRIVER
17174 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17175 S:      Orphan
17176 F:      sound/soc/uniphier/
17177
17178 SOEKRIS NET48XX LED SUPPORT
17179 M:      Chris Boot <bootc@bootc.net>
17180 S:      Maintained
17181 F:      drivers/leds/leds-net48xx.c
17182
17183 SOFT-IWARP DRIVER (siw)
17184 M:      Bernard Metzler <bmt@zurich.ibm.com>
17185 L:      linux-rdma@vger.kernel.org
17186 S:      Supported
17187 F:      drivers/infiniband/sw/siw/
17188 F:      include/uapi/rdma/siw-abi.h
17189
17190 SOFT-ROCE DRIVER (rxe)
17191 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17192 L:      linux-rdma@vger.kernel.org
17193 S:      Supported
17194 F:      drivers/infiniband/sw/rxe/
17195 F:      include/uapi/rdma/rdma_user_rxe.h
17196
17197 SOFTLOGIC 6x10 MPEG CODEC
17198 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17199 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17200 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17201 M:      Ismael Luceno <ismael@iodev.co.uk>
17202 L:      linux-media@vger.kernel.org
17203 S:      Supported
17204 F:      drivers/media/pci/solo6x10/
17205
17206 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17207 M:      James Morse <james.morse@arm.com>
17208 L:      linux-arm-kernel@lists.infradead.org
17209 S:      Maintained
17210 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17211 F:      drivers/firmware/arm_sdei.c
17212 F:      include/linux/arm_sdei.h
17213 F:      include/uapi/linux/arm_sdei.h
17214
17215 SOFTWARE NODES
17216 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17217 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17218 L:      linux-acpi@vger.kernel.org
17219 S:      Maintained
17220 F:      drivers/base/swnode.c
17221
17222 SOFTWARE RAID (Multiple Disks) SUPPORT
17223 M:      Song Liu <song@kernel.org>
17224 L:      linux-raid@vger.kernel.org
17225 S:      Supported
17226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17227 F:      drivers/md/Kconfig
17228 F:      drivers/md/Makefile
17229 F:      drivers/md/md*
17230 F:      drivers/md/raid*
17231 F:      include/linux/raid/
17232 F:      include/uapi/linux/raid/
17233
17234 SOLIDRUN CLEARFOG SUPPORT
17235 M:      Russell King <linux@armlinux.org.uk>
17236 S:      Maintained
17237 F:      arch/arm/boot/dts/armada-388-clearfog*
17238 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17239
17240 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17241 M:      Russell King <linux@armlinux.org.uk>
17242 S:      Maintained
17243 F:      arch/arm/boot/dts/imx6*-cubox-i*
17244 F:      arch/arm/boot/dts/imx6*-hummingboard*
17245 F:      arch/arm/boot/dts/imx6*-sr-*
17246
17247 SONIC NETWORK DRIVER
17248 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17249 L:      netdev@vger.kernel.org
17250 S:      Maintained
17251 F:      drivers/net/ethernet/natsemi/sonic.*
17252
17253 SONICS SILICON BACKPLANE DRIVER (SSB)
17254 M:      Michael Buesch <m@bues.ch>
17255 L:      linux-wireless@vger.kernel.org
17256 S:      Maintained
17257 F:      drivers/ssb/
17258 F:      include/linux/ssb/
17259
17260 SONY IMX208 SENSOR DRIVER
17261 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17262 L:      linux-media@vger.kernel.org
17263 S:      Maintained
17264 T:      git git://linuxtv.org/media_tree.git
17265 F:      drivers/media/i2c/imx208.c
17266
17267 SONY IMX214 SENSOR DRIVER
17268 M:      Ricardo Ribalda <ribalda@kernel.org>
17269 L:      linux-media@vger.kernel.org
17270 S:      Maintained
17271 T:      git git://linuxtv.org/media_tree.git
17272 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17273 F:      drivers/media/i2c/imx214.c
17274
17275 SONY IMX219 SENSOR DRIVER
17276 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17277 L:      linux-media@vger.kernel.org
17278 S:      Maintained
17279 T:      git git://linuxtv.org/media_tree.git
17280 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17281 F:      drivers/media/i2c/imx219.c
17282
17283 SONY IMX258 SENSOR DRIVER
17284 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17285 L:      linux-media@vger.kernel.org
17286 S:      Maintained
17287 T:      git git://linuxtv.org/media_tree.git
17288 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17289 F:      drivers/media/i2c/imx258.c
17290
17291 SONY IMX274 SENSOR DRIVER
17292 M:      Leon Luo <leonl@leopardimaging.com>
17293 L:      linux-media@vger.kernel.org
17294 S:      Maintained
17295 T:      git git://linuxtv.org/media_tree.git
17296 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17297 F:      drivers/media/i2c/imx274.c
17298
17299 SONY IMX290 SENSOR DRIVER
17300 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17301 L:      linux-media@vger.kernel.org
17302 S:      Maintained
17303 T:      git git://linuxtv.org/media_tree.git
17304 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17305 F:      drivers/media/i2c/imx290.c
17306
17307 SONY IMX319 SENSOR DRIVER
17308 M:      Bingbu Cao <bingbu.cao@intel.com>
17309 L:      linux-media@vger.kernel.org
17310 S:      Maintained
17311 T:      git git://linuxtv.org/media_tree.git
17312 F:      drivers/media/i2c/imx319.c
17313
17314 SONY IMX334 SENSOR DRIVER
17315 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17316 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17317 L:      linux-media@vger.kernel.org
17318 S:      Maintained
17319 T:      git git://linuxtv.org/media_tree.git
17320 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17321 F:      drivers/media/i2c/imx334.c
17322
17323 SONY IMX355 SENSOR DRIVER
17324 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17325 L:      linux-media@vger.kernel.org
17326 S:      Maintained
17327 T:      git git://linuxtv.org/media_tree.git
17328 F:      drivers/media/i2c/imx355.c
17329
17330 SONY MEMORYSTICK SUBSYSTEM
17331 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17332 M:      Alex Dubov <oakad@yahoo.com>
17333 M:      Ulf Hansson <ulf.hansson@linaro.org>
17334 L:      linux-mmc@vger.kernel.org
17335 S:      Maintained
17336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17337 F:      drivers/memstick/
17338 F:      include/linux/memstick.h
17339
17340 SONY VAIO CONTROL DEVICE DRIVER
17341 M:      Mattia Dongili <malattia@linux.it>
17342 L:      platform-driver-x86@vger.kernel.org
17343 S:      Maintained
17344 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17345 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17346 F:      drivers/char/sonypi.c
17347 F:      drivers/platform/x86/sony-laptop.c
17348 F:      include/linux/sony-laptop.h
17349
17350 SOUND
17351 M:      Jaroslav Kysela <perex@perex.cz>
17352 M:      Takashi Iwai <tiwai@suse.com>
17353 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17354 S:      Maintained
17355 W:      http://www.alsa-project.org/
17356 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17358 F:      Documentation/sound/
17359 F:      include/sound/
17360 F:      include/uapi/sound/
17361 F:      sound/
17362
17363 SOUND - COMPRESSED AUDIO
17364 M:      Vinod Koul <vkoul@kernel.org>
17365 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17366 S:      Supported
17367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17368 F:      Documentation/sound/designs/compress-offload.rst
17369 F:      include/sound/compress_driver.h
17370 F:      include/uapi/sound/compress_*
17371 F:      sound/core/compress_offload.c
17372 F:      sound/soc/soc-compress.c
17373
17374 SOUND - DMAENGINE HELPERS
17375 M:      Lars-Peter Clausen <lars@metafoo.de>
17376 S:      Supported
17377 F:      include/sound/dmaengine_pcm.h
17378 F:      sound/core/pcm_dmaengine.c
17379 F:      sound/soc/soc-generic-dmaengine-pcm.c
17380
17381 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17382 M:      Liam Girdwood <lgirdwood@gmail.com>
17383 M:      Mark Brown <broonie@kernel.org>
17384 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17385 S:      Supported
17386 W:      http://alsa-project.org/main/index.php/ASoC
17387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17388 F:      Documentation/devicetree/bindings/sound/
17389 F:      Documentation/sound/soc/
17390 F:      include/dt-bindings/sound/
17391 F:      include/sound/soc*
17392 F:      sound/soc/
17393
17394 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17395 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17396 M:      Liam Girdwood <lgirdwood@gmail.com>
17397 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17398 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17399 M:      Daniel Baluta <daniel.baluta@nxp.com>
17400 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17401 S:      Supported
17402 W:      https://github.com/thesofproject/linux/
17403 F:      sound/soc/sof/
17404
17405 SOUNDWIRE SUBSYSTEM
17406 M:      Vinod Koul <vkoul@kernel.org>
17407 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17408 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17409 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17410 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17411 S:      Supported
17412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17413 F:      Documentation/driver-api/soundwire/
17414 F:      drivers/soundwire/
17415 F:      include/linux/soundwire/
17416
17417 SP2 MEDIA DRIVER
17418 M:      Olli Salonen <olli.salonen@iki.fi>
17419 L:      linux-media@vger.kernel.org
17420 S:      Maintained
17421 W:      https://linuxtv.org
17422 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17423 F:      drivers/media/dvb-frontends/sp2*
17424
17425 SPARC + UltraSPARC (sparc/sparc64)
17426 M:      "David S. Miller" <davem@davemloft.net>
17427 L:      sparclinux@vger.kernel.org
17428 S:      Maintained
17429 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17432 F:      arch/sparc/
17433 F:      drivers/sbus/
17434
17435 SPARC SERIAL DRIVERS
17436 M:      "David S. Miller" <davem@davemloft.net>
17437 L:      sparclinux@vger.kernel.org
17438 S:      Maintained
17439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17441 F:      drivers/tty/serial/suncore.c
17442 F:      drivers/tty/serial/sunhv.c
17443 F:      drivers/tty/serial/sunsab.c
17444 F:      drivers/tty/serial/sunsab.h
17445 F:      drivers/tty/serial/sunsu.c
17446 F:      drivers/tty/serial/sunzilog.c
17447 F:      drivers/tty/serial/sunzilog.h
17448 F:      drivers/tty/vcc.c
17449 F:      include/linux/sunserialcore.h
17450
17451 SPARSE CHECKER
17452 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17453 L:      linux-sparse@vger.kernel.org
17454 S:      Maintained
17455 W:      https://sparse.docs.kernel.org/
17456 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17457 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17458 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17459 F:      include/linux/compiler.h
17460
17461 SPEAKUP CONSOLE SPEECH DRIVER
17462 M:      William Hubbs <w.d.hubbs@gmail.com>
17463 M:      Chris Brannon <chris@the-brannons.com>
17464 M:      Kirk Reiser <kirk@reisers.ca>
17465 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17466 L:      speakup@linux-speakup.org
17467 S:      Odd Fixes
17468 W:      http://www.linux-speakup.org/
17469 W:      https://github.com/linux-speakup/speakup
17470 B:      https://github.com/linux-speakup/speakup/issues
17471 F:      drivers/accessibility/speakup/
17472
17473 SPEAR CLOCK FRAMEWORK SUPPORT
17474 M:      Viresh Kumar <vireshk@kernel.org>
17475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17476 S:      Maintained
17477 W:      http://www.st.com/spear
17478 F:      drivers/clk/spear/
17479
17480 SPEAR PLATFORM SUPPORT
17481 M:      Viresh Kumar <vireshk@kernel.org>
17482 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17484 S:      Maintained
17485 W:      http://www.st.com/spear
17486 F:      arch/arm/boot/dts/spear*
17487 F:      arch/arm/mach-spear/
17488
17489 SPI NOR SUBSYSTEM
17490 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17491 R:      Michael Walle <michael@walle.cc>
17492 R:      Pratyush Yadav <p.yadav@ti.com>
17493 L:      linux-mtd@lists.infradead.org
17494 S:      Maintained
17495 W:      http://www.linux-mtd.infradead.org/
17496 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17497 C:      irc://irc.oftc.net/mtd
17498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17499 F:      drivers/mtd/spi-nor/
17500 F:      include/linux/mtd/spi-nor.h
17501
17502 SPI SUBSYSTEM
17503 M:      Mark Brown <broonie@kernel.org>
17504 L:      linux-spi@vger.kernel.org
17505 S:      Maintained
17506 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17508 F:      Documentation/devicetree/bindings/spi/
17509 F:      Documentation/spi/
17510 F:      drivers/spi/
17511 F:      include/linux/spi/
17512 F:      include/uapi/linux/spi/
17513 F:      tools/spi/
17514
17515 SPIDERNET NETWORK DRIVER for CELL
17516 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17517 M:      Geoff Levand <geoff@infradead.org>
17518 L:      netdev@vger.kernel.org
17519 L:      linuxppc-dev@lists.ozlabs.org
17520 S:      Maintained
17521 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17522 F:      drivers/net/ethernet/toshiba/spider_net*
17523
17524 SPMI SUBSYSTEM
17525 M:      Stephen Boyd <sboyd@kernel.org>
17526 L:      linux-kernel@vger.kernel.org
17527 S:      Maintained
17528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17529 F:      Documentation/devicetree/bindings/spmi/
17530 F:      drivers/spmi/
17531 F:      include/dt-bindings/spmi/spmi.h
17532 F:      include/linux/spmi.h
17533 F:      include/trace/events/spmi.h
17534
17535 SPU FILE SYSTEM
17536 M:      Jeremy Kerr <jk@ozlabs.org>
17537 L:      linuxppc-dev@lists.ozlabs.org
17538 S:      Supported
17539 W:      http://www.ibm.com/developerworks/power/cell/
17540 F:      Documentation/filesystems/spufs/spufs.rst
17541 F:      arch/powerpc/platforms/cell/spufs/
17542
17543 SQUASHFS FILE SYSTEM
17544 M:      Phillip Lougher <phillip@squashfs.org.uk>
17545 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17546 S:      Maintained
17547 W:      http://squashfs.org.uk
17548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17549 F:      Documentation/filesystems/squashfs.rst
17550 F:      fs/squashfs/
17551
17552 SRM (Alpha) environment access
17553 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17554 S:      Maintained
17555 F:      arch/alpha/kernel/srm_env.c
17556
17557 ST LSM6DSx IMU IIO DRIVER
17558 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17559 L:      linux-iio@vger.kernel.org
17560 S:      Maintained
17561 W:      http://www.st.com/
17562 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17563 F:      drivers/iio/imu/st_lsm6dsx/
17564
17565 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17566 M:      Mickael Guene <mickael.guene@st.com>
17567 L:      linux-media@vger.kernel.org
17568 S:      Maintained
17569 T:      git git://linuxtv.org/media_tree.git
17570 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17571 F:      drivers/media/i2c/st-mipid02.c
17572
17573 ST STM32 I2C/SMBUS DRIVER
17574 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17575 M:      Alain Volmat <alain.volmat@foss.st.com>
17576 L:      linux-i2c@vger.kernel.org
17577 S:      Maintained
17578 F:      drivers/i2c/busses/i2c-stm32*
17579
17580 ST STM32 SPI DRIVER
17581 M:      Alain Volmat <alain.volmat@foss.st.com>
17582 L:      linux-spi@vger.kernel.org
17583 S:      Maintained
17584 F:      drivers/spi/spi-stm32.c
17585
17586 ST STPDDC60 DRIVER
17587 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17588 L:      linux-hwmon@vger.kernel.org
17589 S:      Maintained
17590 F:      Documentation/hwmon/stpddc60.rst
17591 F:      drivers/hwmon/pmbus/stpddc60.c
17592
17593 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17594 M:      Song Qiang <songqiang1304521@gmail.com>
17595 L:      linux-iio@vger.kernel.org
17596 S:      Maintained
17597 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17598 F:      drivers/iio/proximity/vl53l0x-i2c.c
17599
17600 STABLE BRANCH
17601 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17602 M:      Sasha Levin <sashal@kernel.org>
17603 L:      stable@vger.kernel.org
17604 S:      Supported
17605 F:      Documentation/process/stable-kernel-rules.rst
17606
17607 STAGING - ATOMISP DRIVER
17608 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17609 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17610 L:      linux-media@vger.kernel.org
17611 S:      Maintained
17612 F:      drivers/staging/media/atomisp/
17613
17614 STAGING - FIELDBUS SUBSYSTEM
17615 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17616 S:      Maintained
17617 F:      drivers/staging/fieldbus/*
17618 F:      drivers/staging/fieldbus/Documentation/
17619
17620 STAGING - HMS ANYBUS-S BUS
17621 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17622 S:      Maintained
17623 F:      drivers/staging/fieldbus/anybuss/
17624
17625 STAGING - INDUSTRIAL IO
17626 M:      Jonathan Cameron <jic23@kernel.org>
17627 L:      linux-iio@vger.kernel.org
17628 S:      Odd Fixes
17629 F:      Documentation/devicetree/bindings/staging/iio/
17630 F:      drivers/staging/iio/
17631
17632 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17633 M:      Marc Dietrich <marvin24@gmx.de>
17634 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17635 L:      linux-tegra@vger.kernel.org
17636 S:      Maintained
17637 F:      drivers/staging/nvec/
17638
17639 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17640 M:      Jens Frederich <jfrederich@gmail.com>
17641 M:      Daniel Drake <dsd@laptop.org>
17642 M:      Jon Nettleton <jon.nettleton@gmail.com>
17643 S:      Maintained
17644 W:      http://wiki.laptop.org/go/DCON
17645 F:      drivers/staging/olpc_dcon/
17646
17647 STAGING - REALTEK RTL8188EU DRIVERS
17648 M:      Larry Finger <Larry.Finger@lwfinger.net>
17649 S:      Odd Fixes
17650 F:      drivers/staging/rtl8188eu/
17651
17652 STAGING - REALTEK RTL8712U DRIVERS
17653 M:      Larry Finger <Larry.Finger@lwfinger.net>
17654 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17655 S:      Odd Fixes
17656 F:      drivers/staging/rtl8712/
17657
17658 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17659 M:      Michael Hennerich <michael.hennerich@analog.com>
17660 L:      linux-fbdev@vger.kernel.org
17661 S:      Supported
17662 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17663 F:      drivers/staging/fbtft/fb_seps525.c
17664
17665 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17666 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17667 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17668 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17669 L:      linux-fbdev@vger.kernel.org
17670 S:      Maintained
17671 F:      drivers/staging/sm750fb/
17672
17673 STAGING - VIA VT665X DRIVERS
17674 M:      Forest Bond <forest@alittletooquiet.net>
17675 S:      Odd Fixes
17676 F:      drivers/staging/vt665?/
17677
17678 STAGING SUBSYSTEM
17679 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17680 L:      linux-staging@lists.linux.dev
17681 S:      Supported
17682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17683 F:      drivers/staging/
17684
17685 STARFIRE/DURALAN NETWORK DRIVER
17686 M:      Ion Badulescu <ionut@badula.org>
17687 S:      Odd Fixes
17688 F:      drivers/net/ethernet/adaptec/starfire*
17689
17690 STATIC BRANCH/CALL
17691 M:      Peter Zijlstra <peterz@infradead.org>
17692 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17693 M:      Jason Baron <jbaron@akamai.com>
17694 R:      Steven Rostedt <rostedt@goodmis.org>
17695 R:      Ard Biesheuvel <ardb@kernel.org>
17696 S:      Supported
17697 F:      arch/*/include/asm/jump_label*.h
17698 F:      arch/*/include/asm/static_call*.h
17699 F:      arch/*/kernel/jump_label.c
17700 F:      arch/*/kernel/static_call.c
17701 F:      include/linux/jump_label*.h
17702 F:      include/linux/static_call*.h
17703 F:      kernel/jump_label.c
17704 F:      kernel/static_call.c
17705
17706 STI AUDIO (ASoC) DRIVERS
17707 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17708 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17709 S:      Maintained
17710 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17711 F:      sound/soc/sti/
17712
17713 STI CEC DRIVER
17714 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17715 S:      Maintained
17716 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17717 F:      drivers/media/cec/platform/sti/
17718
17719 STK1160 USB VIDEO CAPTURE DRIVER
17720 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17721 L:      linux-media@vger.kernel.org
17722 S:      Maintained
17723 T:      git git://linuxtv.org/media_tree.git
17724 F:      drivers/media/usb/stk1160/
17725
17726 STM32 AUDIO (ASoC) DRIVERS
17727 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17728 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17729 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17730 S:      Maintained
17731 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17732 F:      sound/soc/stm/
17733
17734 STM32 TIMER/LPTIMER DRIVERS
17735 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17736 S:      Maintained
17737 F:      Documentation/ABI/testing/*timer-stm32
17738 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17739 F:      drivers/*/stm32-*timer*
17740 F:      drivers/pwm/pwm-stm32*
17741 F:      include/linux/*/stm32-*tim*
17742
17743 STMMAC ETHERNET DRIVER
17744 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17745 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
17746 M:      Jose Abreu <joabreu@synopsys.com>
17747 L:      netdev@vger.kernel.org
17748 S:      Supported
17749 W:      http://www.stlinux.com
17750 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17751 F:      drivers/net/ethernet/stmicro/stmmac/
17752
17753 SUN3/3X
17754 M:      Sam Creasey <sammy@sammy.net>
17755 S:      Maintained
17756 W:      http://sammy.net/sun3/
17757 F:      arch/m68k/include/asm/sun3*
17758 F:      arch/m68k/kernel/*sun3*
17759 F:      arch/m68k/sun3*/
17760 F:      drivers/net/ethernet/i825xx/sun3*
17761
17762 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17763 M:      Hans de Goede <hdegoede@redhat.com>
17764 L:      linux-input@vger.kernel.org
17765 S:      Maintained
17766 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17767 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17768
17769 SUNDANCE NETWORK DRIVER
17770 M:      Denis Kirjanov <kda@linux-powerpc.org>
17771 L:      netdev@vger.kernel.org
17772 S:      Maintained
17773 F:      drivers/net/ethernet/dlink/sundance.c
17774
17775 SUPERH
17776 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17777 M:      Rich Felker <dalias@libc.org>
17778 L:      linux-sh@vger.kernel.org
17779 S:      Maintained
17780 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17781 F:      Documentation/sh/
17782 F:      arch/sh/
17783 F:      drivers/sh/
17784
17785 SUSPEND TO RAM
17786 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
17787 M:      Len Brown <len.brown@intel.com>
17788 M:      Pavel Machek <pavel@ucw.cz>
17789 L:      linux-pm@vger.kernel.org
17790 S:      Supported
17791 B:      https://bugzilla.kernel.org
17792 F:      Documentation/power/
17793 F:      arch/x86/kernel/acpi/
17794 F:      drivers/base/power/
17795 F:      include/linux/freezer.h
17796 F:      include/linux/pm.h
17797 F:      include/linux/suspend.h
17798 F:      kernel/power/
17799
17800 SVGA HANDLING
17801 M:      Martin Mares <mj@ucw.cz>
17802 L:      linux-video@atrey.karlin.mff.cuni.cz
17803 S:      Maintained
17804 F:      Documentation/admin-guide/svga.rst
17805 F:      arch/x86/boot/video*
17806
17807 SWIOTLB SUBSYSTEM
17808 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17809 L:      iommu@lists.linux-foundation.org
17810 S:      Supported
17811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17812 F:      arch/*/kernel/pci-swiotlb.c
17813 F:      include/linux/swiotlb.h
17814 F:      kernel/dma/swiotlb.c
17815
17816 SWITCHDEV
17817 M:      Jiri Pirko <jiri@resnulli.us>
17818 M:      Ivan Vecera <ivecera@redhat.com>
17819 L:      netdev@vger.kernel.org
17820 S:      Supported
17821 F:      include/net/switchdev.h
17822 F:      net/switchdev/
17823
17824 SY8106A REGULATOR DRIVER
17825 M:      Icenowy Zheng <icenowy@aosc.io>
17826 S:      Maintained
17827 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17828 F:      drivers/regulator/sy8106a-regulator.c
17829
17830 SYNC FILE FRAMEWORK
17831 M:      Sumit Semwal <sumit.semwal@linaro.org>
17832 R:      Gustavo Padovan <gustavo@padovan.org>
17833 L:      linux-media@vger.kernel.org
17834 L:      dri-devel@lists.freedesktop.org
17835 S:      Maintained
17836 T:      git git://anongit.freedesktop.org/drm/drm-misc
17837 F:      Documentation/driver-api/sync_file.rst
17838 F:      drivers/dma-buf/dma-fence*
17839 F:      drivers/dma-buf/sw_sync.c
17840 F:      drivers/dma-buf/sync_*
17841 F:      include/linux/sync_file.h
17842 F:      include/uapi/linux/sync_file.h
17843
17844 SYNOPSYS ARC ARCHITECTURE
17845 M:      Vineet Gupta <vgupta@kernel.org>
17846 L:      linux-snps-arc@lists.infradead.org
17847 S:      Supported
17848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17849 F:      Documentation/devicetree/bindings/arc/*
17850 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17851 F:      arch/arc/
17852 F:      drivers/clocksource/arc_timer.c
17853 F:      drivers/tty/serial/arc_uart.c
17854
17855 SYNOPSYS ARC HSDK SDP pll clock driver
17856 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17857 S:      Supported
17858 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17859 F:      drivers/clk/clk-hsdk-pll.c
17860
17861 SYNOPSYS ARC SDP clock driver
17862 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17863 S:      Supported
17864 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17865 F:      drivers/clk/axs10x/*
17866
17867 SYNOPSYS ARC SDP platform support
17868 M:      Alexey Brodkin <abrodkin@synopsys.com>
17869 S:      Supported
17870 F:      Documentation/devicetree/bindings/arc/axs10*
17871 F:      arch/arc/boot/dts/ax*
17872 F:      arch/arc/plat-axs10x
17873
17874 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17875 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17876 S:      Supported
17877 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17878 F:      drivers/reset/reset-axs10x.c
17879
17880 SYNOPSYS CREG GPIO DRIVER
17881 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17882 S:      Maintained
17883 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17884 F:      drivers/gpio/gpio-creg-snps.c
17885
17886 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17887 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17888 S:      Maintained
17889 F:      drivers/tty/serial/8250/8250_dw.c
17890 F:      drivers/tty/serial/8250/8250_dwlib.*
17891 F:      drivers/tty/serial/8250/8250_lpss.c
17892
17893 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17894 M:      Hoan Tran <hoan@os.amperecomputing.com>
17895 M:      Serge Semin <fancer.lancer@gmail.com>
17896 L:      linux-gpio@vger.kernel.org
17897 S:      Maintained
17898 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17899 F:      drivers/gpio/gpio-dwapb.c
17900
17901 SYNOPSYS DESIGNWARE APB SSI DRIVER
17902 M:      Serge Semin <fancer.lancer@gmail.com>
17903 L:      linux-spi@vger.kernel.org
17904 S:      Supported
17905 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17906 F:      drivers/spi/spi-dw*
17907
17908 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17909 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17910 S:      Maintained
17911 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
17912 F:      drivers/dma/dw-axi-dmac/
17913
17914 SYNOPSYS DESIGNWARE DMAC DRIVER
17915 M:      Viresh Kumar <vireshk@kernel.org>
17916 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17917 S:      Maintained
17918 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17919 F:      drivers/dma/dw/
17920 F:      include/dt-bindings/dma/dw-dmac.h
17921 F:      include/linux/dma/dw.h
17922 F:      include/linux/platform_data/dma-dw.h
17923
17924 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17925 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17926 L:      netdev@vger.kernel.org
17927 S:      Supported
17928 F:      drivers/net/ethernet/synopsys/
17929
17930 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17931 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17932 L:      netdev@vger.kernel.org
17933 S:      Supported
17934 F:      drivers/net/pcs/pcs-xpcs.c
17935 F:      drivers/net/pcs/pcs-xpcs.h
17936 F:      include/linux/pcs/pcs-xpcs.h
17937
17938 SYNOPSYS DESIGNWARE I2C DRIVER
17939 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17940 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17941 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17942 L:      linux-i2c@vger.kernel.org
17943 S:      Maintained
17944 F:      drivers/i2c/busses/i2c-designware-*
17945
17946 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17947 M:      Jaehoon Chung <jh80.chung@samsung.com>
17948 L:      linux-mmc@vger.kernel.org
17949 S:      Maintained
17950 F:      drivers/mmc/host/dw_mmc*
17951
17952 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17953 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17954 S:      Supported
17955 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17956 F:      drivers/reset/reset-hsdk.c
17957 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17958
17959 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17960 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17961 M:      Manjunath M B <manjumb@synopsys.com>
17962 L:      linux-mmc@vger.kernel.org
17963 S:      Maintained
17964 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17965
17966 SYSTEM CONFIGURATION (SYSCON)
17967 M:      Lee Jones <lee.jones@linaro.org>
17968 M:      Arnd Bergmann <arnd@arndb.de>
17969 S:      Supported
17970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17971 F:      drivers/mfd/syscon.c
17972
17973 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17974 M:      Sudeep Holla <sudeep.holla@arm.com>
17975 R:      Cristian Marussi <cristian.marussi@arm.com>
17976 L:      linux-arm-kernel@lists.infradead.org
17977 S:      Maintained
17978 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
17979 F:      drivers/clk/clk-sc[mp]i.c
17980 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17981 F:      drivers/firmware/arm_scmi/
17982 F:      drivers/firmware/arm_scpi.c
17983 F:      drivers/regulator/scmi-regulator.c
17984 F:      drivers/reset/reset-scmi.c
17985 F:      include/linux/sc[mp]i_protocol.h
17986 F:      include/trace/events/scmi.h
17987
17988 SYSTEM RESET/SHUTDOWN DRIVERS
17989 M:      Sebastian Reichel <sre@kernel.org>
17990 L:      linux-pm@vger.kernel.org
17991 S:      Maintained
17992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17993 F:      Documentation/devicetree/bindings/power/reset/
17994 F:      drivers/power/reset/
17995
17996 SYSTEM TRACE MODULE CLASS
17997 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17998 S:      Maintained
17999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18000 F:      Documentation/trace/stm.rst
18001 F:      drivers/hwtracing/stm/
18002 F:      include/linux/stm.h
18003 F:      include/uapi/linux/stm.h
18004
18005 SYSTEM76 ACPI DRIVER
18006 M:      Jeremy Soller <jeremy@system76.com>
18007 M:      System76 Product Development <productdev@system76.com>
18008 L:      platform-driver-x86@vger.kernel.org
18009 S:      Maintained
18010 F:      drivers/platform/x86/system76_acpi.c
18011
18012 SYSV FILESYSTEM
18013 M:      Christoph Hellwig <hch@infradead.org>
18014 S:      Maintained
18015 F:      Documentation/filesystems/sysv-fs.rst
18016 F:      fs/sysv/
18017 F:      include/linux/sysv_fs.h
18018
18019 TASKSTATS STATISTICS INTERFACE
18020 M:      Balbir Singh <bsingharora@gmail.com>
18021 S:      Maintained
18022 F:      Documentation/accounting/taskstats*
18023 F:      include/linux/taskstats*
18024 F:      kernel/taskstats.c
18025
18026 TC subsystem
18027 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18028 M:      Cong Wang <xiyou.wangcong@gmail.com>
18029 M:      Jiri Pirko <jiri@resnulli.us>
18030 L:      netdev@vger.kernel.org
18031 S:      Maintained
18032 F:      include/net/pkt_cls.h
18033 F:      include/net/pkt_sched.h
18034 F:      include/net/tc_act/
18035 F:      include/uapi/linux/pkt_cls.h
18036 F:      include/uapi/linux/pkt_sched.h
18037 F:      include/uapi/linux/tc_act/
18038 F:      include/uapi/linux/tc_ematch/
18039 F:      net/sched/
18040
18041 TC90522 MEDIA DRIVER
18042 M:      Akihiro Tsukada <tskd08@gmail.com>
18043 L:      linux-media@vger.kernel.org
18044 S:      Odd Fixes
18045 F:      drivers/media/dvb-frontends/tc90522*
18046
18047 TCP LOW PRIORITY MODULE
18048 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18049 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18050 S:      Maintained
18051 W:      http://tcp-lp-mod.sourceforge.net/
18052 F:      net/ipv4/tcp_lp.c
18053
18054 TDA10071 MEDIA DRIVER
18055 M:      Antti Palosaari <crope@iki.fi>
18056 L:      linux-media@vger.kernel.org
18057 S:      Maintained
18058 W:      https://linuxtv.org
18059 W:      http://palosaari.fi/linux/
18060 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18061 T:      git git://linuxtv.org/anttip/media_tree.git
18062 F:      drivers/media/dvb-frontends/tda10071*
18063
18064 TDA18212 MEDIA DRIVER
18065 M:      Antti Palosaari <crope@iki.fi>
18066 L:      linux-media@vger.kernel.org
18067 S:      Maintained
18068 W:      https://linuxtv.org
18069 W:      http://palosaari.fi/linux/
18070 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18071 T:      git git://linuxtv.org/anttip/media_tree.git
18072 F:      drivers/media/tuners/tda18212*
18073
18074 TDA18218 MEDIA DRIVER
18075 M:      Antti Palosaari <crope@iki.fi>
18076 L:      linux-media@vger.kernel.org
18077 S:      Maintained
18078 W:      https://linuxtv.org
18079 W:      http://palosaari.fi/linux/
18080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18081 T:      git git://linuxtv.org/anttip/media_tree.git
18082 F:      drivers/media/tuners/tda18218*
18083
18084 TDA18250 MEDIA DRIVER
18085 M:      Olli Salonen <olli.salonen@iki.fi>
18086 L:      linux-media@vger.kernel.org
18087 S:      Maintained
18088 W:      https://linuxtv.org
18089 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18090 T:      git git://linuxtv.org/media_tree.git
18091 F:      drivers/media/tuners/tda18250*
18092
18093 TDA18271 MEDIA DRIVER
18094 M:      Michael Krufky <mkrufky@linuxtv.org>
18095 L:      linux-media@vger.kernel.org
18096 S:      Maintained
18097 W:      https://linuxtv.org
18098 W:      http://github.com/mkrufky
18099 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18100 T:      git git://linuxtv.org/mkrufky/tuners.git
18101 F:      drivers/media/tuners/tda18271*
18102
18103 TDA1997x MEDIA DRIVER
18104 M:      Tim Harvey <tharvey@gateworks.com>
18105 L:      linux-media@vger.kernel.org
18106 S:      Maintained
18107 W:      https://linuxtv.org
18108 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18109 F:      drivers/media/i2c/tda1997x.*
18110
18111 TDA827x MEDIA DRIVER
18112 M:      Michael Krufky <mkrufky@linuxtv.org>
18113 L:      linux-media@vger.kernel.org
18114 S:      Maintained
18115 W:      https://linuxtv.org
18116 W:      http://github.com/mkrufky
18117 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18118 T:      git git://linuxtv.org/mkrufky/tuners.git
18119 F:      drivers/media/tuners/tda8290.*
18120
18121 TDA8290 MEDIA DRIVER
18122 M:      Michael Krufky <mkrufky@linuxtv.org>
18123 L:      linux-media@vger.kernel.org
18124 S:      Maintained
18125 W:      https://linuxtv.org
18126 W:      http://github.com/mkrufky
18127 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18128 T:      git git://linuxtv.org/mkrufky/tuners.git
18129 F:      drivers/media/tuners/tda8290.*
18130
18131 TDA9840 MEDIA DRIVER
18132 M:      Hans Verkuil <hverkuil@xs4all.nl>
18133 L:      linux-media@vger.kernel.org
18134 S:      Maintained
18135 W:      https://linuxtv.org
18136 T:      git git://linuxtv.org/media_tree.git
18137 F:      drivers/media/i2c/tda9840*
18138
18139 TEA5761 TUNER DRIVER
18140 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18141 L:      linux-media@vger.kernel.org
18142 S:      Odd fixes
18143 W:      https://linuxtv.org
18144 T:      git git://linuxtv.org/media_tree.git
18145 F:      drivers/media/tuners/tea5761.*
18146
18147 TEA5767 TUNER DRIVER
18148 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18149 L:      linux-media@vger.kernel.org
18150 S:      Maintained
18151 W:      https://linuxtv.org
18152 T:      git git://linuxtv.org/media_tree.git
18153 F:      drivers/media/tuners/tea5767.*
18154
18155 TEA6415C MEDIA DRIVER
18156 M:      Hans Verkuil <hverkuil@xs4all.nl>
18157 L:      linux-media@vger.kernel.org
18158 S:      Maintained
18159 W:      https://linuxtv.org
18160 T:      git git://linuxtv.org/media_tree.git
18161 F:      drivers/media/i2c/tea6415c*
18162
18163 TEA6420 MEDIA DRIVER
18164 M:      Hans Verkuil <hverkuil@xs4all.nl>
18165 L:      linux-media@vger.kernel.org
18166 S:      Maintained
18167 W:      https://linuxtv.org
18168 T:      git git://linuxtv.org/media_tree.git
18169 F:      drivers/media/i2c/tea6420*
18170
18171 TEAM DRIVER
18172 M:      Jiri Pirko <jiri@resnulli.us>
18173 L:      netdev@vger.kernel.org
18174 S:      Supported
18175 F:      drivers/net/team/
18176 F:      include/linux/if_team.h
18177 F:      include/uapi/linux/if_team.h
18178
18179 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18180 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18181 S:      Maintained
18182 F:      arch/x86/platform/ts5500/
18183
18184 TECHNOTREND USB IR RECEIVER
18185 M:      Sean Young <sean@mess.org>
18186 L:      linux-media@vger.kernel.org
18187 S:      Maintained
18188 F:      drivers/media/rc/ttusbir.c
18189
18190 TECHWELL TW9910 VIDEO DECODER
18191 L:      linux-media@vger.kernel.org
18192 S:      Orphan
18193 F:      drivers/media/i2c/tw9910.c
18194 F:      include/media/i2c/tw9910.h
18195
18196 TEE SUBSYSTEM
18197 M:      Jens Wiklander <jens.wiklander@linaro.org>
18198 R:      Sumit Garg <sumit.garg@linaro.org>
18199 L:      op-tee@lists.trustedfirmware.org
18200 S:      Maintained
18201 F:      Documentation/staging/tee.rst
18202 F:      drivers/tee/
18203 F:      include/linux/tee_drv.h
18204 F:      include/uapi/linux/tee.h
18205
18206 TEGRA ARCHITECTURE SUPPORT
18207 M:      Thierry Reding <thierry.reding@gmail.com>
18208 M:      Jonathan Hunter <jonathanh@nvidia.com>
18209 L:      linux-tegra@vger.kernel.org
18210 S:      Supported
18211 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18213 N:      [^a-z]tegra
18214
18215 TEGRA CLOCK DRIVER
18216 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18217 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18218 S:      Supported
18219 F:      drivers/clk/tegra/
18220
18221 TEGRA DMA DRIVERS
18222 M:      Laxman Dewangan <ldewangan@nvidia.com>
18223 M:      Jon Hunter <jonathanh@nvidia.com>
18224 S:      Supported
18225 F:      drivers/dma/tegra*
18226
18227 TEGRA I2C DRIVER
18228 M:      Laxman Dewangan <ldewangan@nvidia.com>
18229 R:      Dmitry Osipenko <digetx@gmail.com>
18230 S:      Supported
18231 F:      drivers/i2c/busses/i2c-tegra.c
18232
18233 TEGRA IOMMU DRIVERS
18234 M:      Thierry Reding <thierry.reding@gmail.com>
18235 R:      Krishna Reddy <vdumpa@nvidia.com>
18236 L:      linux-tegra@vger.kernel.org
18237 S:      Supported
18238 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18239 F:      drivers/iommu/tegra*
18240
18241 TEGRA KBC DRIVER
18242 M:      Laxman Dewangan <ldewangan@nvidia.com>
18243 S:      Supported
18244 F:      drivers/input/keyboard/tegra-kbc.c
18245
18246 TEGRA NAND DRIVER
18247 M:      Stefan Agner <stefan@agner.ch>
18248 M:      Lucas Stach <dev@lynxeye.de>
18249 S:      Maintained
18250 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18251 F:      drivers/mtd/nand/raw/tegra_nand.c
18252
18253 TEGRA PWM DRIVER
18254 M:      Thierry Reding <thierry.reding@gmail.com>
18255 S:      Supported
18256 F:      drivers/pwm/pwm-tegra.c
18257
18258 TEGRA SERIAL DRIVER
18259 M:      Laxman Dewangan <ldewangan@nvidia.com>
18260 S:      Supported
18261 F:      drivers/tty/serial/serial-tegra.c
18262
18263 TEGRA SPI DRIVER
18264 M:      Laxman Dewangan <ldewangan@nvidia.com>
18265 S:      Supported
18266 F:      drivers/spi/spi-tegra*
18267
18268 TEGRA QUAD SPI DRIVER
18269 M:      Thierry Reding <thierry.reding@gmail.com>
18270 M:      Jonathan Hunter <jonathanh@nvidia.com>
18271 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18272 L:      linux-tegra@vger.kernel.org
18273 S:      Maintained
18274 F:      drivers/spi/spi-tegra210-quad.c
18275
18276 TEGRA VIDEO DRIVER
18277 M:      Thierry Reding <thierry.reding@gmail.com>
18278 M:      Jonathan Hunter <jonathanh@nvidia.com>
18279 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18280 L:      linux-media@vger.kernel.org
18281 L:      linux-tegra@vger.kernel.org
18282 S:      Maintained
18283 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18284 F:      drivers/staging/media/tegra-video/
18285
18286 TEGRA XUSB PADCTL DRIVER
18287 M:      JC Kuo <jckuo@nvidia.com>
18288 S:      Supported
18289 F:      drivers/phy/tegra/xusb*
18290
18291 TEHUTI ETHERNET DRIVER
18292 M:      Andy Gospodarek <andy@greyhouse.net>
18293 L:      netdev@vger.kernel.org
18294 S:      Supported
18295 F:      drivers/net/ethernet/tehuti/*
18296
18297 TELECOM CLOCK DRIVER FOR MCPL0010
18298 M:      Mark Gross <mark.gross@intel.com>
18299 S:      Supported
18300 F:      drivers/char/tlclk.c
18301
18302 TEMPO SEMICONDUCTOR DRIVERS
18303 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18304 S:      Maintained
18305 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18306 F:      sound/soc/codecs/tscs*.c
18307 F:      sound/soc/codecs/tscs*.h
18308
18309 TENSILICA XTENSA PORT (xtensa)
18310 M:      Chris Zankel <chris@zankel.net>
18311 M:      Max Filippov <jcmvbkbc@gmail.com>
18312 L:      linux-xtensa@linux-xtensa.org
18313 S:      Maintained
18314 T:      git git://github.com/czankel/xtensa-linux.git
18315 F:      arch/xtensa/
18316 F:      drivers/irqchip/irq-xtensa-*
18317
18318 TEXAS INSTRUMENTS ASoC DRIVERS
18319 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18320 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18321 S:      Maintained
18322 F:      sound/soc/ti/
18323
18324 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18325 M:      Ricardo Ribalda <ribalda@kernel.org>
18326 L:      linux-iio@vger.kernel.org
18327 S:      Supported
18328 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18329 F:      drivers/iio/dac/ti-dac7612.c
18330
18331 TEXAS INSTRUMENTS DMA DRIVERS
18332 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18333 L:      dmaengine@vger.kernel.org
18334 S:      Maintained
18335 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18336 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18337 F:      Documentation/devicetree/bindings/dma/ti/
18338 F:      drivers/dma/ti/
18339 X:      drivers/dma/ti/cppi41.c
18340 F:      include/linux/dma/k3-udma-glue.h
18341 F:      include/linux/dma/ti-cppi5.h
18342 F:      include/linux/dma/k3-psil.h
18343
18344 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18345 M:      Nishanth Menon <nm@ti.com>
18346 M:      Tero Kristo <kristo@kernel.org>
18347 M:      Santosh Shilimkar <ssantosh@kernel.org>
18348 L:      linux-arm-kernel@lists.infradead.org
18349 S:      Maintained
18350 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18351 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18352 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18353 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18354 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18355 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18356 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18357 F:      drivers/clk/keystone/sci-clk.c
18358 F:      drivers/firmware/ti_sci*
18359 F:      drivers/irqchip/irq-ti-sci-inta.c
18360 F:      drivers/irqchip/irq-ti-sci-intr.c
18361 F:      drivers/reset/reset-ti-sci.c
18362 F:      drivers/soc/ti/ti_sci_inta_msi.c
18363 F:      drivers/soc/ti/ti_sci_pm_domains.c
18364 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18365 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18366 F:      include/linux/soc/ti/ti_sci_protocol.h
18367
18368 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18369 M:      Robert Marko <robert.marko@sartura.hr>
18370 M:      Luka Perkov <luka.perkov@sartura.hr>
18371 L:      linux-hwmon@vger.kernel.org
18372 S:      Maintained
18373 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18374 F:      Documentation/hwmon/tps23861.rst
18375 F:      drivers/hwmon/tps23861.c
18376
18377 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18378 M:      Puranjay Mohan <puranjay12@gmail.com>
18379 L:      linux-iio@vger.kernel.org
18380 S:      Supported
18381 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18382 F:      drivers/iio/temperature/tmp117.c
18383
18384 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18385 M:      Hans Verkuil <hverkuil@xs4all.nl>
18386 L:      linux-media@vger.kernel.org
18387 S:      Maintained
18388 W:      https://linuxtv.org
18389 T:      git git://linuxtv.org/media_tree.git
18390 F:      drivers/media/radio/radio-raremono.c
18391
18392 THERMAL
18393 M:      Zhang Rui <rui.zhang@intel.com>
18394 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18395 R:      Amit Kucheria <amitk@kernel.org>
18396 L:      linux-pm@vger.kernel.org
18397 S:      Supported
18398 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
18400 F:      Documentation/devicetree/bindings/thermal/
18401 F:      drivers/thermal/
18402 F:      include/linux/cpu_cooling.h
18403 F:      include/linux/thermal.h
18404 F:      include/uapi/linux/thermal.h
18405
18406 THERMAL DRIVER FOR AMLOGIC SOCS
18407 M:      Guillaume La Roque <glaroque@baylibre.com>
18408 L:      linux-pm@vger.kernel.org
18409 L:      linux-amlogic@lists.infradead.org
18410 S:      Supported
18411 W:      http://linux-meson.com/
18412 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18413 F:      drivers/thermal/amlogic_thermal.c
18414
18415 THERMAL/CPU_COOLING
18416 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18417 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18418 M:      Viresh Kumar <viresh.kumar@linaro.org>
18419 R:      Lukasz Luba <lukasz.luba@arm.com>
18420 L:      linux-pm@vger.kernel.org
18421 S:      Supported
18422 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18423 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18424 F:      drivers/thermal/cpufreq_cooling.c
18425 F:      drivers/thermal/cpuidle_cooling.c
18426 F:      include/linux/cpu_cooling.h
18427
18428 THERMAL/POWER_ALLOCATOR
18429 M:      Lukasz Luba <lukasz.luba@arm.com>
18430 L:      linux-pm@vger.kernel.org
18431 S:      Maintained
18432 F:      Documentation/driver-api/thermal/power_allocator.rst
18433 F:      drivers/thermal/gov_power_allocator.c
18434 F:      include/trace/events/thermal_power_allocator.h
18435
18436 THINKPAD ACPI EXTRAS DRIVER
18437 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18438 L:      ibm-acpi-devel@lists.sourceforge.net
18439 L:      platform-driver-x86@vger.kernel.org
18440 S:      Maintained
18441 W:      http://ibm-acpi.sourceforge.net
18442 W:      http://thinkwiki.org/wiki/Ibm-acpi
18443 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18444 F:      drivers/platform/x86/thinkpad_acpi.c
18445
18446 THINKPAD LMI DRIVER
18447 M:      Mark Pearson <markpearson@lenovo.com>
18448 L:      platform-driver-x86@vger.kernel.org
18449 S:      Maintained
18450 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18451 F:      drivers/platform/x86/think-lmi.?
18452
18453 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18454 M:      Isaac Hazan <isaac.hazan@intel.com>
18455 L:      linux-usb@vger.kernel.org
18456 S:      Maintained
18457 F:      drivers/thunderbolt/dma_test.c
18458
18459 THUNDERBOLT DRIVER
18460 M:      Andreas Noever <andreas.noever@gmail.com>
18461 M:      Michael Jamet <michael.jamet@intel.com>
18462 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18463 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18464 L:      linux-usb@vger.kernel.org
18465 S:      Maintained
18466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18467 F:      Documentation/admin-guide/thunderbolt.rst
18468 F:      drivers/thunderbolt/
18469 F:      include/linux/thunderbolt.h
18470
18471 THUNDERBOLT NETWORK DRIVER
18472 M:      Michael Jamet <michael.jamet@intel.com>
18473 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18474 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18475 L:      netdev@vger.kernel.org
18476 S:      Maintained
18477 F:      drivers/net/thunderbolt.c
18478
18479 THUNDERX GPIO DRIVER
18480 M:      Robert Richter <rric@kernel.org>
18481 S:      Odd Fixes
18482 F:      drivers/gpio/gpio-thunderx.c
18483
18484 TI ADS131E0X ADC SERIES DRIVER
18485 M:      Tomislav Denis <tomislav.denis@avl.com>
18486 L:      linux-iio@vger.kernel.org
18487 S:      Maintained
18488 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18489 F:      drivers/iio/adc/ti-ads131e08.c
18490
18491 TI AM437X VPFE DRIVER
18492 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18493 L:      linux-media@vger.kernel.org
18494 S:      Maintained
18495 W:      https://linuxtv.org
18496 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18497 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18498 F:      drivers/media/platform/am437x/
18499
18500 TI BANDGAP AND THERMAL DRIVER
18501 M:      Eduardo Valentin <edubezval@gmail.com>
18502 M:      Keerthy <j-keerthy@ti.com>
18503 L:      linux-pm@vger.kernel.org
18504 L:      linux-omap@vger.kernel.org
18505 S:      Maintained
18506 F:      drivers/thermal/ti-soc-thermal/
18507
18508 TI BQ27XXX POWER SUPPLY DRIVER
18509 F:      drivers/power/supply/bq27xxx_battery.c
18510 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18511 F:      include/linux/power/bq27xxx_battery.h
18512
18513 TI CDCE706 CLOCK DRIVER
18514 M:      Max Filippov <jcmvbkbc@gmail.com>
18515 S:      Maintained
18516 F:      drivers/clk/clk-cdce706.c
18517
18518 TI CLOCK DRIVER
18519 M:      Tero Kristo <kristo@kernel.org>
18520 L:      linux-omap@vger.kernel.org
18521 S:      Odd Fixes
18522 F:      drivers/clk/ti/
18523 F:      include/linux/clk/ti.h
18524
18525 TI DAVINCI MACHINE SUPPORT
18526 M:      Sekhar Nori <nsekhar@ti.com>
18527 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
18528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18529 S:      Supported
18530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18531 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18532 F:      arch/arm/boot/dts/da850*
18533 F:      arch/arm/mach-davinci/
18534 F:      drivers/i2c/busses/i2c-davinci.c
18535
18536 TI DAVINCI SERIES CLOCK DRIVER
18537 M:      David Lechner <david@lechnology.com>
18538 R:      Sekhar Nori <nsekhar@ti.com>
18539 S:      Maintained
18540 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18541 F:      drivers/clk/davinci/
18542
18543 TI DAVINCI SERIES GPIO DRIVER
18544 M:      Keerthy <j-keerthy@ti.com>
18545 L:      linux-gpio@vger.kernel.org
18546 S:      Maintained
18547 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18548 F:      drivers/gpio/gpio-davinci.c
18549
18550 TI DAVINCI SERIES MEDIA DRIVER
18551 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18552 L:      linux-media@vger.kernel.org
18553 S:      Maintained
18554 W:      https://linuxtv.org
18555 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18556 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18557 F:      drivers/media/platform/davinci/
18558 F:      include/media/davinci/
18559
18560 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18561 R:      David Lechner <david@lechnology.com>
18562 L:      linux-iio@vger.kernel.org
18563 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18564 F:      drivers/counter/ti-eqep.c
18565
18566 TI ETHERNET SWITCH DRIVER (CPSW)
18567 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18568 L:      linux-omap@vger.kernel.org
18569 L:      netdev@vger.kernel.org
18570 S:      Maintained
18571 F:      drivers/net/ethernet/ti/cpsw*
18572 F:      drivers/net/ethernet/ti/davinci*
18573
18574 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18575 M:      Alex Dubov <oakad@yahoo.com>
18576 S:      Maintained
18577 W:      http://tifmxx.berlios.de/
18578 F:      drivers/memstick/host/tifm_ms.c
18579 F:      drivers/misc/tifm*
18580 F:      drivers/mmc/host/tifm_sd.c
18581 F:      include/linux/tifm.h
18582
18583 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18584 M:      Santosh Shilimkar <ssantosh@kernel.org>
18585 L:      linux-kernel@vger.kernel.org
18586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18587 S:      Maintained
18588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18589 F:      drivers/soc/ti/*
18590
18591 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18592 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18593 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18594 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18595 S:      Maintained
18596 F:      sound/soc/codecs/isabelle*
18597 F:      sound/soc/codecs/lm49453*
18598
18599 TI PCM3060 ASoC CODEC DRIVER
18600 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18601 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18602 S:      Maintained
18603 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18604 F:      sound/soc/codecs/pcm3060*
18605
18606 TI TAS571X FAMILY ASoC CODEC DRIVER
18607 M:      Kevin Cernekee <cernekee@chromium.org>
18608 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18609 S:      Odd Fixes
18610 F:      sound/soc/codecs/tas571x*
18611
18612 TI TRF7970A NFC DRIVER
18613 M:      Mark Greer <mgreer@animalcreek.com>
18614 L:      linux-wireless@vger.kernel.org
18615 L:      linux-nfc@lists.01.org (subscribers-only)
18616 S:      Supported
18617 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18618 F:      drivers/nfc/trf7970a.c
18619
18620 TI TSC2046 ADC DRIVER
18621 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18622 R:      kernel@pengutronix.de
18623 L:      linux-iio@vger.kernel.org
18624 S:      Maintained
18625 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18626 F:      drivers/iio/adc/ti-tsc2046.c
18627
18628 TI TWL4030 SERIES SOC CODEC DRIVER
18629 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18630 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18631 S:      Maintained
18632 F:      sound/soc/codecs/twl4030*
18633
18634 TI VPE/CAL DRIVERS
18635 M:      Benoit Parrot <bparrot@ti.com>
18636 L:      linux-media@vger.kernel.org
18637 S:      Maintained
18638 W:      http://linuxtv.org/
18639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18640 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18641 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18642 F:      drivers/media/platform/ti-vpe/
18643
18644 TI WILINK WIRELESS DRIVERS
18645 L:      linux-wireless@vger.kernel.org
18646 S:      Orphan
18647 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18648 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18650 F:      drivers/net/wireless/ti/
18651 F:      include/linux/wl12xx.h
18652
18653 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18654 M:      John Stultz <john.stultz@linaro.org>
18655 M:      Thomas Gleixner <tglx@linutronix.de>
18656 R:      Stephen Boyd <sboyd@kernel.org>
18657 L:      linux-kernel@vger.kernel.org
18658 S:      Supported
18659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18660 F:      include/linux/clocksource.h
18661 F:      include/linux/time.h
18662 F:      include/linux/timex.h
18663 F:      include/uapi/linux/time.h
18664 F:      include/uapi/linux/timex.h
18665 F:      kernel/time/alarmtimer.c
18666 F:      kernel/time/clocksource.c
18667 F:      kernel/time/ntp.c
18668 F:      kernel/time/time*.c
18669 F:      tools/testing/selftests/timers/
18670
18671 TIPC NETWORK LAYER
18672 M:      Jon Maloy <jmaloy@redhat.com>
18673 M:      Ying Xue <ying.xue@windriver.com>
18674 L:      netdev@vger.kernel.org (core kernel code)
18675 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18676 S:      Maintained
18677 W:      http://tipc.sourceforge.net/
18678 F:      include/uapi/linux/tipc*.h
18679 F:      net/tipc/
18680
18681 TLAN NETWORK DRIVER
18682 M:      Samuel Chessman <chessman@tux.org>
18683 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18684 S:      Maintained
18685 W:      http://sourceforge.net/projects/tlan/
18686 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18687 F:      drivers/net/ethernet/ti/tlan.*
18688
18689 TM6000 VIDEO4LINUX DRIVER
18690 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18691 L:      linux-media@vger.kernel.org
18692 S:      Odd fixes
18693 W:      https://linuxtv.org
18694 T:      git git://linuxtv.org/media_tree.git
18695 F:      Documentation/admin-guide/media/tm6000*
18696 F:      drivers/media/usb/tm6000/
18697
18698 TMIO/SDHI MMC DRIVER
18699 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18700 L:      linux-mmc@vger.kernel.org
18701 S:      Supported
18702 F:      drivers/mmc/host/renesas_sdhi*
18703 F:      drivers/mmc/host/tmio_mmc*
18704 F:      include/linux/mfd/tmio.h
18705
18706 TMP401 HARDWARE MONITOR DRIVER
18707 M:      Guenter Roeck <linux@roeck-us.net>
18708 L:      linux-hwmon@vger.kernel.org
18709 S:      Maintained
18710 F:      Documentation/hwmon/tmp401.rst
18711 F:      drivers/hwmon/tmp401.c
18712
18713 TMP513 HARDWARE MONITOR DRIVER
18714 M:      Eric Tremblay <etremblay@distech-controls.com>
18715 L:      linux-hwmon@vger.kernel.org
18716 S:      Maintained
18717 F:      Documentation/hwmon/tmp513.rst
18718 F:      drivers/hwmon/tmp513.c
18719
18720 TMPFS (SHMEM FILESYSTEM)
18721 M:      Hugh Dickins <hughd@google.com>
18722 L:      linux-mm@kvack.org
18723 S:      Maintained
18724 F:      include/linux/shmem_fs.h
18725 F:      mm/shmem.c
18726
18727 TOMOYO SECURITY MODULE
18728 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18729 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18730 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18731 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18732 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18733 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18734 S:      Maintained
18735 W:      https://tomoyo.osdn.jp/
18736 F:      security/tomoyo/
18737
18738 TOPSTAR LAPTOP EXTRAS DRIVER
18739 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18740 L:      platform-driver-x86@vger.kernel.org
18741 S:      Maintained
18742 F:      drivers/platform/x86/topstar-laptop.c
18743
18744 TORTURE-TEST MODULES
18745 M:      Davidlohr Bueso <dave@stgolabs.net>
18746 M:      "Paul E. McKenney" <paulmck@kernel.org>
18747 M:      Josh Triplett <josh@joshtriplett.org>
18748 L:      linux-kernel@vger.kernel.org
18749 S:      Supported
18750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18751 F:      Documentation/RCU/torture.rst
18752 F:      kernel/locking/locktorture.c
18753 F:      kernel/rcu/rcuscale.c
18754 F:      kernel/rcu/rcutorture.c
18755 F:      kernel/rcu/refscale.c
18756 F:      kernel/torture.c
18757
18758 TOSHIBA ACPI EXTRAS DRIVER
18759 M:      Azael Avalos <coproscefalo@gmail.com>
18760 L:      platform-driver-x86@vger.kernel.org
18761 S:      Maintained
18762 F:      drivers/platform/x86/toshiba_acpi.c
18763
18764 TOSHIBA BLUETOOTH DRIVER
18765 M:      Azael Avalos <coproscefalo@gmail.com>
18766 L:      platform-driver-x86@vger.kernel.org
18767 S:      Maintained
18768 F:      drivers/platform/x86/toshiba_bluetooth.c
18769
18770 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18771 M:      Azael Avalos <coproscefalo@gmail.com>
18772 L:      platform-driver-x86@vger.kernel.org
18773 S:      Maintained
18774 F:      drivers/platform/x86/toshiba_haps.c
18775
18776 TOSHIBA SMM DRIVER
18777 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18778 S:      Maintained
18779 W:      http://www.buzzard.org.uk/toshiba/
18780 F:      drivers/char/toshiba.c
18781 F:      include/linux/toshiba.h
18782 F:      include/uapi/linux/toshiba.h
18783
18784 TOSHIBA TC358743 DRIVER
18785 M:      Mats Randgaard <matrandg@cisco.com>
18786 L:      linux-media@vger.kernel.org
18787 S:      Maintained
18788 F:      drivers/media/i2c/tc358743*
18789 F:      include/media/i2c/tc358743.h
18790
18791 TOSHIBA WMI HOTKEYS DRIVER
18792 M:      Azael Avalos <coproscefalo@gmail.com>
18793 L:      platform-driver-x86@vger.kernel.org
18794 S:      Maintained
18795 F:      drivers/platform/x86/toshiba-wmi.c
18796
18797 TPM DEVICE DRIVER
18798 M:      Peter Huewe <peterhuewe@gmx.de>
18799 M:      Jarkko Sakkinen <jarkko@kernel.org>
18800 R:      Jason Gunthorpe <jgg@ziepe.ca>
18801 L:      linux-integrity@vger.kernel.org
18802 S:      Maintained
18803 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18804 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18806 F:      drivers/char/tpm/
18807
18808 TRACING
18809 M:      Steven Rostedt <rostedt@goodmis.org>
18810 M:      Ingo Molnar <mingo@redhat.com>
18811 S:      Maintained
18812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18813 F:      Documentation/trace/ftrace.rst
18814 F:      arch/*/*/*/ftrace.h
18815 F:      arch/*/kernel/ftrace.c
18816 F:      fs/tracefs/
18817 F:      include/*/ftrace.h
18818 F:      include/linux/trace*.h
18819 F:      include/trace/
18820 F:      kernel/trace/
18821 F:      tools/testing/selftests/ftrace/
18822
18823 TRACING MMIO ACCESSES (MMIOTRACE)
18824 M:      Steven Rostedt <rostedt@goodmis.org>
18825 M:      Ingo Molnar <mingo@kernel.org>
18826 R:      Karol Herbst <karolherbst@gmail.com>
18827 R:      Pekka Paalanen <ppaalanen@gmail.com>
18828 L:      linux-kernel@vger.kernel.org
18829 L:      nouveau@lists.freedesktop.org
18830 S:      Maintained
18831 F:      arch/x86/mm/kmmio.c
18832 F:      arch/x86/mm/mmio-mod.c
18833 F:      arch/x86/mm/testmmiotrace.c
18834 F:      include/linux/mmiotrace.h
18835 F:      kernel/trace/trace_mmiotrace.c
18836
18837 TRIVIAL PATCHES
18838 M:      Jiri Kosina <trivial@kernel.org>
18839 S:      Maintained
18840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18841 K:      ^Subject:.*(?i)trivial
18842
18843 TTY LAYER
18844 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18845 M:      Jiri Slaby <jirislaby@kernel.org>
18846 S:      Supported
18847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18848 F:      Documentation/driver-api/serial/
18849 F:      drivers/tty/
18850 F:      drivers/tty/serial/serial_core.c
18851 F:      include/linux/selection.h
18852 F:      include/linux/serial.h
18853 F:      include/linux/serial_core.h
18854 F:      include/linux/sysrq.h
18855 F:      include/linux/tty*.h
18856 F:      include/linux/vt.h
18857 F:      include/linux/vt_*.h
18858 F:      include/uapi/linux/serial.h
18859 F:      include/uapi/linux/serial_core.h
18860 F:      include/uapi/linux/tty.h
18861
18862 TUA9001 MEDIA DRIVER
18863 M:      Antti Palosaari <crope@iki.fi>
18864 L:      linux-media@vger.kernel.org
18865 S:      Maintained
18866 W:      https://linuxtv.org
18867 W:      http://palosaari.fi/linux/
18868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18869 T:      git git://linuxtv.org/anttip/media_tree.git
18870 F:      drivers/media/tuners/tua9001*
18871
18872 TULIP NETWORK DRIVERS
18873 L:      netdev@vger.kernel.org
18874 L:      linux-parisc@vger.kernel.org
18875 S:      Orphan
18876 F:      drivers/net/ethernet/dec/tulip/
18877
18878 TUN/TAP driver
18879 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18880 S:      Maintained
18881 W:      http://vtun.sourceforge.net/tun
18882 F:      Documentation/networking/tuntap.rst
18883 F:      arch/um/os-Linux/drivers/
18884
18885 TURBOCHANNEL SUBSYSTEM
18886 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
18887 M:      Ralf Baechle <ralf@linux-mips.org>
18888 L:      linux-mips@vger.kernel.org
18889 S:      Maintained
18890 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18891 F:      drivers/tc/
18892 F:      include/linux/tc.h
18893
18894 TURBOSTAT UTILITY
18895 M:      "Len Brown" <lenb@kernel.org>
18896 L:      linux-pm@vger.kernel.org
18897 S:      Supported
18898 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18899 B:      https://bugzilla.kernel.org
18900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18901 F:      tools/power/x86/turbostat/
18902
18903 TW5864 VIDEO4LINUX DRIVER
18904 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18905 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18906 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18907 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18908 L:      linux-media@vger.kernel.org
18909 S:      Supported
18910 F:      drivers/media/pci/tw5864/
18911
18912 TW68 VIDEO4LINUX DRIVER
18913 M:      Hans Verkuil <hverkuil@xs4all.nl>
18914 L:      linux-media@vger.kernel.org
18915 S:      Odd Fixes
18916 W:      https://linuxtv.org
18917 T:      git git://linuxtv.org/media_tree.git
18918 F:      drivers/media/pci/tw68/
18919
18920 TW686X VIDEO4LINUX DRIVER
18921 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18922 L:      linux-media@vger.kernel.org
18923 S:      Maintained
18924 W:      http://linuxtv.org
18925 T:      git git://linuxtv.org/media_tree.git
18926 F:      drivers/media/pci/tw686x/
18927
18928 UACCE ACCELERATOR FRAMEWORK
18929 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18930 M:      Zhou Wang <wangzhou1@hisilicon.com>
18931 L:      linux-accelerators@lists.ozlabs.org
18932 L:      linux-kernel@vger.kernel.org
18933 S:      Maintained
18934 F:      Documentation/ABI/testing/sysfs-driver-uacce
18935 F:      Documentation/misc-devices/uacce.rst
18936 F:      drivers/misc/uacce/
18937 F:      include/linux/uacce.h
18938 F:      include/uapi/misc/uacce/
18939
18940 UBI FILE SYSTEM (UBIFS)
18941 M:      Richard Weinberger <richard@nod.at>
18942 L:      linux-mtd@lists.infradead.org
18943 S:      Supported
18944 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18947 F:      Documentation/filesystems/ubifs-authentication.rst
18948 F:      Documentation/filesystems/ubifs.rst
18949 F:      fs/ubifs/
18950
18951 UCLINUX (M68KNOMMU AND COLDFIRE)
18952 M:      Greg Ungerer <gerg@linux-m68k.org>
18953 L:      linux-m68k@lists.linux-m68k.org
18954 L:      uclinux-dev@uclinux.org  (subscribers-only)
18955 S:      Maintained
18956 W:      http://www.linux-m68k.org/
18957 W:      http://www.uclinux.org/
18958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18959 F:      arch/m68k/*/*_no.*
18960 F:      arch/m68k/68*/
18961 F:      arch/m68k/coldfire/
18962 F:      arch/m68k/include/asm/*_no.*
18963
18964 UDF FILESYSTEM
18965 M:      Jan Kara <jack@suse.com>
18966 S:      Maintained
18967 F:      Documentation/filesystems/udf.rst
18968 F:      fs/udf/
18969
18970 UDRAW TABLET
18971 M:      Bastien Nocera <hadess@hadess.net>
18972 L:      linux-input@vger.kernel.org
18973 S:      Maintained
18974 F:      drivers/hid/hid-udraw-ps3.c
18975
18976 UFS FILESYSTEM
18977 M:      Evgeniy Dushistov <dushistov@mail.ru>
18978 S:      Maintained
18979 F:      Documentation/admin-guide/ufs.rst
18980 F:      fs/ufs/
18981
18982 UHID USERSPACE HID IO DRIVER
18983 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18984 L:      linux-input@vger.kernel.org
18985 S:      Maintained
18986 F:      drivers/hid/uhid.c
18987 F:      include/uapi/linux/uhid.h
18988
18989 ULPI BUS
18990 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18991 L:      linux-usb@vger.kernel.org
18992 S:      Maintained
18993 F:      drivers/usb/common/ulpi.c
18994 F:      include/linux/ulpi/
18995
18996 UNICODE SUBSYSTEM
18997 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18998 L:      linux-fsdevel@vger.kernel.org
18999 S:      Supported
19000 F:      fs/unicode/
19001
19002 UNIFDEF
19003 M:      Tony Finch <dot@dotat.at>
19004 S:      Maintained
19005 W:      http://dotat.at/prog/unifdef
19006 F:      scripts/unifdef.c
19007
19008 UNIFORM CDROM DRIVER
19009 M:      Jens Axboe <axboe@kernel.dk>
19010 S:      Maintained
19011 W:      http://www.kernel.dk
19012 F:      Documentation/cdrom/
19013 F:      drivers/cdrom/cdrom.c
19014 F:      include/linux/cdrom.h
19015 F:      include/uapi/linux/cdrom.h
19016
19017 UNISYS S-PAR DRIVERS
19018 M:      David Kershner <david.kershner@unisys.com>
19019 L:      sparmaintainer@unisys.com (Unisys internal)
19020 S:      Supported
19021 F:      drivers/staging/unisys/
19022 F:      drivers/visorbus/
19023 F:      include/linux/visorbus.h
19024
19025 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19026 R:      Alim Akhtar <alim.akhtar@samsung.com>
19027 R:      Avri Altman <avri.altman@wdc.com>
19028 L:      linux-scsi@vger.kernel.org
19029 S:      Supported
19030 F:      Documentation/scsi/ufs.rst
19031 F:      drivers/scsi/ufs/
19032
19033 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19034 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19035 L:      linux-scsi@vger.kernel.org
19036 S:      Supported
19037 F:      drivers/scsi/ufs/*dwc*
19038
19039 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19040 M:      Stanley Chu <stanley.chu@mediatek.com>
19041 L:      linux-scsi@vger.kernel.org
19042 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19043 S:      Maintained
19044 F:      drivers/scsi/ufs/ufs-mediatek*
19045
19046 UNSORTED BLOCK IMAGES (UBI)
19047 M:      Richard Weinberger <richard@nod.at>
19048 L:      linux-mtd@lists.infradead.org
19049 S:      Supported
19050 W:      http://www.linux-mtd.infradead.org/
19051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19053 F:      drivers/mtd/ubi/
19054 F:      include/linux/mtd/ubi.h
19055 F:      include/uapi/mtd/ubi-user.h
19056
19057 USB "USBNET" DRIVER FRAMEWORK
19058 M:      Oliver Neukum <oneukum@suse.com>
19059 L:      netdev@vger.kernel.org
19060 S:      Maintained
19061 W:      http://www.linux-usb.org/usbnet
19062 F:      drivers/net/usb/usbnet.c
19063 F:      include/linux/usb/usbnet.h
19064
19065 USB ACM DRIVER
19066 M:      Oliver Neukum <oneukum@suse.com>
19067 L:      linux-usb@vger.kernel.org
19068 S:      Maintained
19069 F:      Documentation/usb/acm.rst
19070 F:      drivers/usb/class/cdc-acm.*
19071
19072 USB APPLE MFI FASTCHARGE DRIVER
19073 M:      Bastien Nocera <hadess@hadess.net>
19074 L:      linux-usb@vger.kernel.org
19075 S:      Maintained
19076 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19077
19078 USB AR5523 WIRELESS DRIVER
19079 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19080 L:      linux-wireless@vger.kernel.org
19081 S:      Maintained
19082 F:      drivers/net/wireless/ath/ar5523/
19083
19084 USB ATTACHED SCSI
19085 M:      Oliver Neukum <oneukum@suse.com>
19086 L:      linux-usb@vger.kernel.org
19087 L:      linux-scsi@vger.kernel.org
19088 S:      Maintained
19089 F:      drivers/usb/storage/uas.c
19090
19091 USB CDC ETHERNET DRIVER
19092 M:      Oliver Neukum <oliver@neukum.org>
19093 L:      linux-usb@vger.kernel.org
19094 S:      Maintained
19095 F:      drivers/net/usb/cdc_*.c
19096 F:      include/uapi/linux/usb/cdc.h
19097
19098 USB CHAOSKEY DRIVER
19099 M:      Keith Packard <keithp@keithp.com>
19100 L:      linux-usb@vger.kernel.org
19101 S:      Maintained
19102 F:      drivers/usb/misc/chaoskey.c
19103
19104 USB CYPRESS C67X00 DRIVER
19105 M:      Peter Korsgaard <jacmet@sunsite.dk>
19106 L:      linux-usb@vger.kernel.org
19107 S:      Maintained
19108 F:      drivers/usb/c67x00/
19109
19110 USB DAVICOM DM9601 DRIVER
19111 M:      Peter Korsgaard <jacmet@sunsite.dk>
19112 L:      netdev@vger.kernel.org
19113 S:      Maintained
19114 W:      http://www.linux-usb.org/usbnet
19115 F:      drivers/net/usb/dm9601.c
19116
19117 USB EHCI DRIVER
19118 M:      Alan Stern <stern@rowland.harvard.edu>
19119 L:      linux-usb@vger.kernel.org
19120 S:      Maintained
19121 F:      Documentation/usb/ehci.rst
19122 F:      drivers/usb/host/ehci*
19123
19124 USB GADGET/PERIPHERAL SUBSYSTEM
19125 M:      Felipe Balbi <balbi@kernel.org>
19126 L:      linux-usb@vger.kernel.org
19127 S:      Maintained
19128 W:      http://www.linux-usb.org/gadget
19129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19130 F:      drivers/usb/gadget/
19131 F:      include/linux/usb/gadget*
19132
19133 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19134 M:      Jiri Kosina <jikos@kernel.org>
19135 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19136 L:      linux-usb@vger.kernel.org
19137 S:      Maintained
19138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19139 F:      Documentation/hid/hiddev.rst
19140 F:      drivers/hid/usbhid/
19141
19142 USB INTEL XHCI ROLE MUX DRIVER
19143 M:      Hans de Goede <hdegoede@redhat.com>
19144 L:      linux-usb@vger.kernel.org
19145 S:      Maintained
19146 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19147
19148 USB IP DRIVER FOR HISILICON KIRIN 960
19149 M:      Yu Chen <chenyu56@huawei.com>
19150 M:      Binghui Wang <wangbinghui@hisilicon.com>
19151 L:      linux-usb@vger.kernel.org
19152 S:      Maintained
19153 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19154 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19155
19156 USB IP DRIVER FOR HISILICON KIRIN 970
19157 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19158 L:      linux-usb@vger.kernel.org
19159 S:      Maintained
19160 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19161 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19162
19163 USB ISP116X DRIVER
19164 M:      Olav Kongas <ok@artecdesign.ee>
19165 L:      linux-usb@vger.kernel.org
19166 S:      Maintained
19167 F:      drivers/usb/host/isp116x*
19168 F:      include/linux/usb/isp116x.h
19169
19170 USB ISP1760 DRIVER
19171 M:      Rui Miguel Silva <rui.silva@linaro.org>
19172 L:      linux-usb@vger.kernel.org
19173 S:      Maintained
19174 F:      drivers/usb/isp1760/*
19175 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19176
19177 USB LAN78XX ETHERNET DRIVER
19178 M:      Woojung Huh <woojung.huh@microchip.com>
19179 M:      UNGLinuxDriver@microchip.com
19180 L:      netdev@vger.kernel.org
19181 S:      Maintained
19182 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19183 F:      drivers/net/usb/lan78xx.*
19184 F:      include/dt-bindings/net/microchip-lan78xx.h
19185
19186 USB MASS STORAGE DRIVER
19187 M:      Alan Stern <stern@rowland.harvard.edu>
19188 L:      linux-usb@vger.kernel.org
19189 L:      usb-storage@lists.one-eyed-alien.net
19190 S:      Maintained
19191 F:      drivers/usb/storage/
19192
19193 USB MIDI DRIVER
19194 M:      Clemens Ladisch <clemens@ladisch.de>
19195 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19196 S:      Maintained
19197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19198 F:      sound/usb/midi.*
19199
19200 USB NETWORKING DRIVERS
19201 L:      linux-usb@vger.kernel.org
19202 S:      Odd Fixes
19203 F:      drivers/net/usb/
19204
19205 USB OHCI DRIVER
19206 M:      Alan Stern <stern@rowland.harvard.edu>
19207 L:      linux-usb@vger.kernel.org
19208 S:      Maintained
19209 F:      Documentation/usb/ohci.rst
19210 F:      drivers/usb/host/ohci*
19211
19212 USB OTG FSM (Finite State Machine)
19213 M:      Peter Chen <peter.chen@kernel.org>
19214 L:      linux-usb@vger.kernel.org
19215 S:      Maintained
19216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19217 F:      drivers/usb/common/usb-otg-fsm.c
19218
19219 USB OVER IP DRIVER
19220 M:      Valentina Manea <valentina.manea.m@gmail.com>
19221 M:      Shuah Khan <shuah@kernel.org>
19222 M:      Shuah Khan <skhan@linuxfoundation.org>
19223 L:      linux-usb@vger.kernel.org
19224 S:      Maintained
19225 F:      Documentation/usb/usbip_protocol.rst
19226 F:      drivers/usb/usbip/
19227 F:      tools/testing/selftests/drivers/usb/usbip/
19228 F:      tools/usb/usbip/
19229
19230 USB PEGASUS DRIVER
19231 M:      Petko Manolov <petkan@nucleusys.com>
19232 L:      linux-usb@vger.kernel.org
19233 L:      netdev@vger.kernel.org
19234 S:      Maintained
19235 W:      https://github.com/petkan/pegasus
19236 T:      git git://github.com/petkan/pegasus.git
19237 F:      drivers/net/usb/pegasus.*
19238
19239 USB PHY LAYER
19240 M:      Felipe Balbi <balbi@kernel.org>
19241 L:      linux-usb@vger.kernel.org
19242 S:      Maintained
19243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19244 F:      drivers/usb/phy/
19245
19246 USB PRINTER DRIVER (usblp)
19247 M:      Pete Zaitcev <zaitcev@redhat.com>
19248 L:      linux-usb@vger.kernel.org
19249 S:      Supported
19250 F:      drivers/usb/class/usblp.c
19251
19252 USB RAW GADGET DRIVER
19253 R:      Andrey Konovalov <andreyknvl@gmail.com>
19254 L:      linux-usb@vger.kernel.org
19255 S:      Maintained
19256 F:      Documentation/usb/raw-gadget.rst
19257 F:      drivers/usb/gadget/legacy/raw_gadget.c
19258 F:      include/uapi/linux/usb/raw_gadget.h
19259
19260 USB QMI WWAN NETWORK DRIVER
19261 M:      Bjørn Mork <bjorn@mork.no>
19262 L:      netdev@vger.kernel.org
19263 S:      Maintained
19264 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19265 F:      drivers/net/usb/qmi_wwan.c
19266
19267 USB RTL8150 DRIVER
19268 M:      Petko Manolov <petkan@nucleusys.com>
19269 L:      linux-usb@vger.kernel.org
19270 L:      netdev@vger.kernel.org
19271 S:      Maintained
19272 W:      https://github.com/petkan/rtl8150
19273 T:      git git://github.com/petkan/rtl8150.git
19274 F:      drivers/net/usb/rtl8150.c
19275
19276 USB SERIAL SUBSYSTEM
19277 M:      Johan Hovold <johan@kernel.org>
19278 L:      linux-usb@vger.kernel.org
19279 S:      Maintained
19280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19281 F:      Documentation/usb/usb-serial.rst
19282 F:      drivers/usb/serial/
19283 F:      include/linux/usb/serial.h
19284
19285 USB SMSC75XX ETHERNET DRIVER
19286 M:      Steve Glendinning <steve.glendinning@shawell.net>
19287 L:      netdev@vger.kernel.org
19288 S:      Maintained
19289 F:      drivers/net/usb/smsc75xx.*
19290
19291 USB SMSC95XX ETHERNET DRIVER
19292 M:      Steve Glendinning <steve.glendinning@shawell.net>
19293 M:      UNGLinuxDriver@microchip.com
19294 L:      netdev@vger.kernel.org
19295 S:      Maintained
19296 F:      drivers/net/usb/smsc95xx.*
19297
19298 USB SUBSYSTEM
19299 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19300 L:      linux-usb@vger.kernel.org
19301 S:      Supported
19302 W:      http://www.linux-usb.org
19303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19304 F:      Documentation/devicetree/bindings/usb/
19305 F:      Documentation/usb/
19306 F:      drivers/usb/
19307 F:      include/linux/usb.h
19308 F:      include/linux/usb/
19309
19310 USB TYPEC BUS FOR ALTERNATE MODES
19311 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19312 L:      linux-usb@vger.kernel.org
19313 S:      Maintained
19314 F:      Documentation/ABI/testing/sysfs-bus-typec
19315 F:      Documentation/driver-api/usb/typec_bus.rst
19316 F:      drivers/usb/typec/altmodes/
19317 F:      include/linux/usb/typec_altmode.h
19318
19319 USB TYPEC CLASS
19320 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19321 L:      linux-usb@vger.kernel.org
19322 S:      Maintained
19323 F:      Documentation/ABI/testing/sysfs-class-typec
19324 F:      Documentation/driver-api/usb/typec.rst
19325 F:      drivers/usb/typec/
19326 F:      include/linux/usb/typec.h
19327
19328 USB TYPEC INTEL PMC MUX DRIVER
19329 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19330 L:      linux-usb@vger.kernel.org
19331 S:      Maintained
19332 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19333 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19334
19335 USB TYPEC PI3USB30532 MUX DRIVER
19336 M:      Hans de Goede <hdegoede@redhat.com>
19337 L:      linux-usb@vger.kernel.org
19338 S:      Maintained
19339 F:      drivers/usb/typec/mux/pi3usb30532.c
19340
19341 USB TYPEC PORT CONTROLLER DRIVERS
19342 M:      Guenter Roeck <linux@roeck-us.net>
19343 L:      linux-usb@vger.kernel.org
19344 S:      Maintained
19345 F:      drivers/usb/typec/tcpm/
19346
19347 USB UHCI DRIVER
19348 M:      Alan Stern <stern@rowland.harvard.edu>
19349 L:      linux-usb@vger.kernel.org
19350 S:      Maintained
19351 F:      drivers/usb/host/uhci*
19352
19353 USB VIDEO CLASS
19354 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19355 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19356 L:      linux-media@vger.kernel.org
19357 S:      Maintained
19358 W:      http://www.ideasonboard.org/uvc/
19359 T:      git git://linuxtv.org/media_tree.git
19360 F:      drivers/media/usb/uvc/
19361 F:      include/uapi/linux/uvcvideo.h
19362
19363 USB WEBCAM GADGET
19364 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19365 L:      linux-usb@vger.kernel.org
19366 S:      Maintained
19367 F:      drivers/usb/gadget/function/*uvc*
19368 F:      drivers/usb/gadget/legacy/webcam.c
19369 F:      include/uapi/linux/usb/g_uvc.h
19370
19371 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19372 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19373 L:      linux-wireless@vger.kernel.org
19374 S:      Maintained
19375 F:      drivers/net/wireless/rndis_wlan.c
19376
19377 USB XHCI DRIVER
19378 M:      Mathias Nyman <mathias.nyman@intel.com>
19379 L:      linux-usb@vger.kernel.org
19380 S:      Supported
19381 F:      drivers/usb/host/pci-quirks*
19382 F:      drivers/usb/host/xhci*
19383
19384 USB ZD1201 DRIVER
19385 L:      linux-wireless@vger.kernel.org
19386 S:      Orphan
19387 W:      http://linux-lc100020.sourceforge.net
19388 F:      drivers/net/wireless/zydas/zd1201.*
19389
19390 USB ZR364XX DRIVER
19391 M:      Antoine Jacquet <royale@zerezo.com>
19392 L:      linux-usb@vger.kernel.org
19393 L:      linux-media@vger.kernel.org
19394 S:      Maintained
19395 W:      http://royale.zerezo.com/zr364xx/
19396 T:      git git://linuxtv.org/media_tree.git
19397 F:      Documentation/admin-guide/media/zr364xx*
19398 F:      drivers/media/usb/zr364xx/
19399
19400 USER-MODE LINUX (UML)
19401 M:      Jeff Dike <jdike@addtoit.com>
19402 M:      Richard Weinberger <richard@nod.at>
19403 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19404 L:      linux-um@lists.infradead.org
19405 S:      Maintained
19406 W:      http://user-mode-linux.sourceforge.net
19407 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19409 F:      Documentation/virt/uml/
19410 F:      arch/um/
19411 F:      arch/x86/um/
19412 F:      fs/hostfs/
19413
19414 USERSPACE COPYIN/COPYOUT (UIOVEC)
19415 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19416 S:      Maintained
19417 F:      include/linux/uio.h
19418 F:      lib/iov_iter.c
19419
19420 USERSPACE DMA BUFFER DRIVER
19421 M:      Gerd Hoffmann <kraxel@redhat.com>
19422 L:      dri-devel@lists.freedesktop.org
19423 S:      Maintained
19424 T:      git git://anongit.freedesktop.org/drm/drm-misc
19425 F:      drivers/dma-buf/udmabuf.c
19426 F:      include/uapi/linux/udmabuf.h
19427
19428 USERSPACE I/O (UIO)
19429 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19430 S:      Maintained
19431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19432 F:      Documentation/driver-api/uio-howto.rst
19433 F:      drivers/uio/
19434 F:      include/linux/uio_driver.h
19435
19436 UTIL-LINUX PACKAGE
19437 M:      Karel Zak <kzak@redhat.com>
19438 L:      util-linux@vger.kernel.org
19439 S:      Maintained
19440 W:      http://en.wikipedia.org/wiki/Util-linux
19441 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19442
19443 UUID HELPERS
19444 M:      Christoph Hellwig <hch@lst.de>
19445 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19446 L:      linux-kernel@vger.kernel.org
19447 S:      Maintained
19448 T:      git git://git.infradead.org/users/hch/uuid.git
19449 F:      include/linux/uuid.h
19450 F:      include/uapi/linux/uuid.h
19451 F:      lib/test_uuid.c
19452 F:      lib/uuid.c
19453
19454 UV SYSFS DRIVER
19455 M:      Justin Ernst <justin.ernst@hpe.com>
19456 L:      platform-driver-x86@vger.kernel.org
19457 S:      Maintained
19458 F:      drivers/platform/x86/uv_sysfs.c
19459
19460 UVESAFB DRIVER
19461 M:      Michal Januszewski <spock@gentoo.org>
19462 L:      linux-fbdev@vger.kernel.org
19463 S:      Maintained
19464 W:      https://github.com/mjanusz/v86d
19465 F:      Documentation/fb/uvesafb.rst
19466 F:      drivers/video/fbdev/uvesafb.*
19467
19468 Ux500 CLOCK DRIVERS
19469 M:      Ulf Hansson <ulf.hansson@linaro.org>
19470 L:      linux-clk@vger.kernel.org
19471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19472 S:      Maintained
19473 F:      drivers/clk/ux500/
19474
19475 VF610 NAND DRIVER
19476 M:      Stefan Agner <stefan@agner.ch>
19477 L:      linux-mtd@lists.infradead.org
19478 S:      Supported
19479 F:      drivers/mtd/nand/raw/vf610_nfc.c
19480
19481 VFAT/FAT/MSDOS FILESYSTEM
19482 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19483 S:      Maintained
19484 F:      Documentation/filesystems/vfat.rst
19485 F:      fs/fat/
19486
19487 VFIO DRIVER
19488 M:      Alex Williamson <alex.williamson@redhat.com>
19489 R:      Cornelia Huck <cohuck@redhat.com>
19490 L:      kvm@vger.kernel.org
19491 S:      Maintained
19492 T:      git git://github.com/awilliam/linux-vfio.git
19493 F:      Documentation/driver-api/vfio.rst
19494 F:      drivers/vfio/
19495 F:      include/linux/vfio.h
19496 F:      include/uapi/linux/vfio.h
19497
19498 VFIO FSL-MC DRIVER
19499 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19500 L:      kvm@vger.kernel.org
19501 S:      Maintained
19502 F:      drivers/vfio/fsl-mc/
19503
19504 VFIO MEDIATED DEVICE DRIVERS
19505 M:      Kirti Wankhede <kwankhede@nvidia.com>
19506 L:      kvm@vger.kernel.org
19507 S:      Maintained
19508 F:      Documentation/driver-api/vfio-mediated-device.rst
19509 F:      drivers/vfio/mdev/
19510 F:      include/linux/mdev.h
19511 F:      samples/vfio-mdev/
19512
19513 VFIO PLATFORM DRIVER
19514 M:      Eric Auger <eric.auger@redhat.com>
19515 L:      kvm@vger.kernel.org
19516 S:      Maintained
19517 F:      drivers/vfio/platform/
19518
19519 VGA_SWITCHEROO
19520 R:      Lukas Wunner <lukas@wunner.de>
19521 S:      Maintained
19522 T:      git git://anongit.freedesktop.org/drm/drm-misc
19523 F:      Documentation/gpu/vga-switcheroo.rst
19524 F:      drivers/gpu/vga/vga_switcheroo.c
19525 F:      include/linux/vga_switcheroo.h
19526
19527 VIA RHINE NETWORK DRIVER
19528 S:      Maintained
19529 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19530 F:      drivers/net/ethernet/via/via-rhine.c
19531
19532 VIA SD/MMC CARD CONTROLLER DRIVER
19533 M:      Bruce Chang <brucechang@via.com.tw>
19534 M:      Harald Welte <HaraldWelte@viatech.com>
19535 S:      Maintained
19536 F:      drivers/mmc/host/via-sdmmc.c
19537
19538 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19539 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19540 L:      linux-fbdev@vger.kernel.org
19541 S:      Maintained
19542 F:      drivers/video/fbdev/via/
19543 F:      include/linux/via-core.h
19544 F:      include/linux/via-gpio.h
19545 F:      include/linux/via_i2c.h
19546
19547 VIA VELOCITY NETWORK DRIVER
19548 M:      Francois Romieu <romieu@fr.zoreil.com>
19549 L:      netdev@vger.kernel.org
19550 S:      Maintained
19551 F:      drivers/net/ethernet/via/via-velocity.*
19552
19553 VICODEC VIRTUAL CODEC DRIVER
19554 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19555 L:      linux-media@vger.kernel.org
19556 S:      Maintained
19557 W:      https://linuxtv.org
19558 T:      git git://linuxtv.org/media_tree.git
19559 F:      drivers/media/test-drivers/vicodec/*
19560
19561 VIDEO I2C POLLING DRIVER
19562 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19563 L:      linux-media@vger.kernel.org
19564 S:      Maintained
19565 F:      drivers/media/i2c/video-i2c.c
19566
19567 VIDEO MULTIPLEXER DRIVER
19568 M:      Philipp Zabel <p.zabel@pengutronix.de>
19569 L:      linux-media@vger.kernel.org
19570 S:      Maintained
19571 F:      drivers/media/platform/video-mux.c
19572
19573 VIDEOBUF2 FRAMEWORK
19574 M:      Tomasz Figa <tfiga@chromium.org>
19575 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19576 L:      linux-media@vger.kernel.org
19577 S:      Maintained
19578 F:      drivers/media/common/videobuf2/*
19579 F:      include/media/videobuf2-*
19580
19581 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19582 M:      Helen Koike <helen.koike@collabora.com>
19583 R:      Shuah Khan <skhan@linuxfoundation.org>
19584 L:      linux-media@vger.kernel.org
19585 S:      Maintained
19586 W:      https://linuxtv.org
19587 T:      git git://linuxtv.org/media_tree.git
19588 F:      drivers/media/test-drivers/vimc/*
19589
19590 VIRT LIB
19591 M:      Alex Williamson <alex.williamson@redhat.com>
19592 M:      Paolo Bonzini <pbonzini@redhat.com>
19593 L:      kvm@vger.kernel.org
19594 S:      Supported
19595 F:      virt/lib/
19596
19597 VIRTIO AND VHOST VSOCK DRIVER
19598 M:      Stefan Hajnoczi <stefanha@redhat.com>
19599 M:      Stefano Garzarella <sgarzare@redhat.com>
19600 L:      kvm@vger.kernel.org
19601 L:      virtualization@lists.linux-foundation.org
19602 L:      netdev@vger.kernel.org
19603 S:      Maintained
19604 F:      drivers/net/vsockmon.c
19605 F:      drivers/vhost/vsock.c
19606 F:      include/linux/virtio_vsock.h
19607 F:      include/uapi/linux/virtio_vsock.h
19608 F:      include/uapi/linux/vm_sockets_diag.h
19609 F:      include/uapi/linux/vsockmon.h
19610 F:      net/vmw_vsock/af_vsock_tap.c
19611 F:      net/vmw_vsock/diag.c
19612 F:      net/vmw_vsock/virtio_transport.c
19613 F:      net/vmw_vsock/virtio_transport_common.c
19614 F:      net/vmw_vsock/vsock_loopback.c
19615 F:      tools/testing/vsock/
19616
19617 VIRTIO BLOCK AND SCSI DRIVERS
19618 M:      "Michael S. Tsirkin" <mst@redhat.com>
19619 M:      Jason Wang <jasowang@redhat.com>
19620 R:      Paolo Bonzini <pbonzini@redhat.com>
19621 R:      Stefan Hajnoczi <stefanha@redhat.com>
19622 L:      virtualization@lists.linux-foundation.org
19623 S:      Maintained
19624 F:      drivers/block/virtio_blk.c
19625 F:      drivers/scsi/virtio_scsi.c
19626 F:      drivers/vhost/scsi.c
19627 F:      include/uapi/linux/virtio_blk.h
19628 F:      include/uapi/linux/virtio_scsi.h
19629
19630 VIRTIO CONSOLE DRIVER
19631 M:      Amit Shah <amit@kernel.org>
19632 L:      virtualization@lists.linux-foundation.org
19633 S:      Maintained
19634 F:      drivers/char/virtio_console.c
19635 F:      include/linux/virtio_console.h
19636 F:      include/uapi/linux/virtio_console.h
19637
19638 VIRTIO CORE AND NET DRIVERS
19639 M:      "Michael S. Tsirkin" <mst@redhat.com>
19640 M:      Jason Wang <jasowang@redhat.com>
19641 L:      virtualization@lists.linux-foundation.org
19642 S:      Maintained
19643 F:      Documentation/devicetree/bindings/virtio/
19644 F:      drivers/block/virtio_blk.c
19645 F:      drivers/crypto/virtio/
19646 F:      drivers/net/virtio_net.c
19647 F:      drivers/vdpa/
19648 F:      drivers/virtio/
19649 F:      include/linux/vdpa.h
19650 F:      include/linux/virtio*.h
19651 F:      include/uapi/linux/virtio_*.h
19652 F:      tools/virtio/
19653
19654 VIRTIO BALLOON
19655 M:      "Michael S. Tsirkin" <mst@redhat.com>
19656 M:      David Hildenbrand <david@redhat.com>
19657 L:      virtualization@lists.linux-foundation.org
19658 S:      Maintained
19659 F:      drivers/virtio/virtio_balloon.c
19660 F:      include/uapi/linux/virtio_balloon.h
19661 F:      include/linux/balloon_compaction.h
19662 F:      mm/balloon_compaction.c
19663
19664 VIRTIO CRYPTO DRIVER
19665 M:      Gonglei <arei.gonglei@huawei.com>
19666 L:      virtualization@lists.linux-foundation.org
19667 L:      linux-crypto@vger.kernel.org
19668 S:      Maintained
19669 F:      drivers/crypto/virtio/
19670 F:      include/uapi/linux/virtio_crypto.h
19671
19672 VIRTIO DRIVERS FOR S390
19673 M:      Cornelia Huck <cohuck@redhat.com>
19674 M:      Halil Pasic <pasic@linux.ibm.com>
19675 L:      linux-s390@vger.kernel.org
19676 L:      virtualization@lists.linux-foundation.org
19677 L:      kvm@vger.kernel.org
19678 S:      Supported
19679 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19680 F:      drivers/s390/virtio/
19681
19682 VIRTIO FILE SYSTEM
19683 M:      Vivek Goyal <vgoyal@redhat.com>
19684 M:      Stefan Hajnoczi <stefanha@redhat.com>
19685 M:      Miklos Szeredi <miklos@szeredi.hu>
19686 L:      virtualization@lists.linux-foundation.org
19687 L:      linux-fsdevel@vger.kernel.org
19688 S:      Supported
19689 W:      https://virtio-fs.gitlab.io/
19690 F:      Documentation/filesystems/virtiofs.rst
19691 F:      fs/fuse/virtio_fs.c
19692 F:      include/uapi/linux/virtio_fs.h
19693
19694 VIRTIO GPU DRIVER
19695 M:      David Airlie <airlied@linux.ie>
19696 M:      Gerd Hoffmann <kraxel@redhat.com>
19697 L:      dri-devel@lists.freedesktop.org
19698 L:      virtualization@lists.linux-foundation.org
19699 S:      Maintained
19700 T:      git git://anongit.freedesktop.org/drm/drm-misc
19701 F:      drivers/gpu/drm/virtio/
19702 F:      include/uapi/linux/virtio_gpu.h
19703
19704 VIRTIO HOST (VHOST)
19705 M:      "Michael S. Tsirkin" <mst@redhat.com>
19706 M:      Jason Wang <jasowang@redhat.com>
19707 L:      kvm@vger.kernel.org
19708 L:      virtualization@lists.linux-foundation.org
19709 L:      netdev@vger.kernel.org
19710 S:      Maintained
19711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19712 F:      drivers/vhost/
19713 F:      include/linux/vhost_iotlb.h
19714 F:      include/uapi/linux/vhost.h
19715
19716 VIRTIO INPUT DRIVER
19717 M:      Gerd Hoffmann <kraxel@redhat.com>
19718 S:      Maintained
19719 F:      drivers/virtio/virtio_input.c
19720 F:      include/uapi/linux/virtio_input.h
19721
19722 VIRTIO IOMMU DRIVER
19723 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19724 L:      virtualization@lists.linux-foundation.org
19725 S:      Maintained
19726 F:      drivers/iommu/virtio-iommu.c
19727 F:      include/uapi/linux/virtio_iommu.h
19728
19729 VIRTIO MEM DRIVER
19730 M:      David Hildenbrand <david@redhat.com>
19731 L:      virtualization@lists.linux-foundation.org
19732 S:      Maintained
19733 W:      https://virtio-mem.gitlab.io/
19734 F:      drivers/virtio/virtio_mem.c
19735 F:      include/uapi/linux/virtio_mem.h
19736
19737 VIRTIO SOUND DRIVER
19738 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
19739 M:      "Michael S. Tsirkin" <mst@redhat.com>
19740 L:      virtualization@lists.linux-foundation.org
19741 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19742 S:      Maintained
19743 F:      include/uapi/linux/virtio_snd.h
19744 F:      sound/virtio/*
19745
19746 VIRTIO I2C DRIVER
19747 M:      Jie Deng <jie.deng@intel.com>
19748 M:      Viresh Kumar <viresh.kumar@linaro.org>
19749 L:      linux-i2c@vger.kernel.org
19750 L:      virtualization@lists.linux-foundation.org
19751 S:      Maintained
19752 F:      drivers/i2c/busses/i2c-virtio.c
19753 F:      include/uapi/linux/virtio_i2c.h
19754
19755 VIRTUAL BOX GUEST DEVICE DRIVER
19756 M:      Hans de Goede <hdegoede@redhat.com>
19757 M:      Arnd Bergmann <arnd@arndb.de>
19758 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19759 S:      Maintained
19760 F:      drivers/virt/vboxguest/
19761 F:      include/linux/vbox_utils.h
19762 F:      include/uapi/linux/vbox*.h
19763
19764 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19765 M:      Hans de Goede <hdegoede@redhat.com>
19766 L:      linux-fsdevel@vger.kernel.org
19767 S:      Maintained
19768 F:      fs/vboxsf/*
19769
19770 VIRTUAL SERIO DEVICE DRIVER
19771 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19772 S:      Maintained
19773 F:      drivers/input/serio/userio.c
19774 F:      include/uapi/linux/userio.h
19775
19776 VIVID VIRTUAL VIDEO DRIVER
19777 M:      Hans Verkuil <hverkuil@xs4all.nl>
19778 L:      linux-media@vger.kernel.org
19779 S:      Maintained
19780 W:      https://linuxtv.org
19781 T:      git git://linuxtv.org/media_tree.git
19782 F:      drivers/media/test-drivers/vivid/*
19783
19784 VIDTV VIRTUAL DIGITAL TV DRIVER
19785 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19786 L:      linux-media@vger.kernel.org
19787 S:      Maintained
19788 W:      https://linuxtv.org
19789 T:      git git://linuxtv.org/media_tree.git
19790 F:      drivers/media/test-drivers/vidtv/*
19791
19792 VLYNQ BUS
19793 M:      Florian Fainelli <f.fainelli@gmail.com>
19794 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
19795 S:      Maintained
19796 F:      drivers/vlynq/vlynq.c
19797 F:      include/linux/vlynq.h
19798
19799 VME SUBSYSTEM
19800 M:      Martyn Welch <martyn@welchs.me.uk>
19801 M:      Manohar Vanga <manohar.vanga@gmail.com>
19802 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19803 L:      linux-kernel@vger.kernel.org
19804 S:      Maintained
19805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19806 F:      Documentation/driver-api/vme.rst
19807 F:      drivers/staging/vme/
19808 F:      drivers/vme/
19809 F:      include/linux/vme*
19810
19811 VMWARE BALLOON DRIVER
19812 M:      Nadav Amit <namit@vmware.com>
19813 M:      "VMware, Inc." <pv-drivers@vmware.com>
19814 L:      linux-kernel@vger.kernel.org
19815 S:      Maintained
19816 F:      drivers/misc/vmw_balloon.c
19817
19818 VMWARE HYPERVISOR INTERFACE
19819 M:      Deep Shah <sdeep@vmware.com>
19820 M:      "VMware, Inc." <pv-drivers@vmware.com>
19821 L:      virtualization@lists.linux-foundation.org
19822 S:      Supported
19823 F:      arch/x86/include/asm/vmware.h
19824 F:      arch/x86/kernel/cpu/vmware.c
19825
19826 VMWARE PVRDMA DRIVER
19827 M:      Adit Ranadive <aditr@vmware.com>
19828 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19829 L:      linux-rdma@vger.kernel.org
19830 S:      Maintained
19831 F:      drivers/infiniband/hw/vmw_pvrdma/
19832
19833 VMware PVSCSI driver
19834 M:      Vishal Bhakta <vbhakta@vmware.com>
19835 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19836 L:      linux-scsi@vger.kernel.org
19837 S:      Maintained
19838 F:      drivers/scsi/vmw_pvscsi.c
19839 F:      drivers/scsi/vmw_pvscsi.h
19840
19841 VMWARE VIRTUAL PTP CLOCK DRIVER
19842 M:      Vivek Thampi <vithampi@vmware.com>
19843 M:      "VMware, Inc." <pv-drivers@vmware.com>
19844 L:      netdev@vger.kernel.org
19845 S:      Supported
19846 F:      drivers/ptp/ptp_vmw.c
19847
19848 VMWARE VMCI DRIVER
19849 M:      Jorgen Hansen <jhansen@vmware.com>
19850 M:      Vishnu Dasa <vdasa@vmware.com>
19851 L:      linux-kernel@vger.kernel.org
19852 L:      pv-drivers@vmware.com (private)
19853 S:      Maintained
19854 F:      drivers/misc/vmw_vmci/
19855
19856 VMWARE VMMOUSE SUBDRIVER
19857 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19858 M:      "VMware, Inc." <pv-drivers@vmware.com>
19859 L:      linux-input@vger.kernel.org
19860 S:      Maintained
19861 F:      drivers/input/mouse/vmmouse.c
19862 F:      drivers/input/mouse/vmmouse.h
19863
19864 VMWARE VMXNET3 ETHERNET DRIVER
19865 M:      Ronak Doshi <doshir@vmware.com>
19866 M:      pv-drivers@vmware.com
19867 L:      netdev@vger.kernel.org
19868 S:      Maintained
19869 F:      drivers/net/vmxnet3/
19870
19871 VOCORE VOCORE2 BOARD
19872 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19873 L:      linux-mips@vger.kernel.org
19874 S:      Maintained
19875 F:      arch/mips/boot/dts/ralink/vocore2.dts
19876
19877 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19878 M:      Liam Girdwood <lgirdwood@gmail.com>
19879 M:      Mark Brown <broonie@kernel.org>
19880 L:      linux-kernel@vger.kernel.org
19881 S:      Supported
19882 W:      http://www.slimlogic.co.uk/?p=48
19883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19884 F:      Documentation/devicetree/bindings/regulator/
19885 F:      Documentation/power/regulator/
19886 F:      drivers/regulator/
19887 F:      include/dt-bindings/regulator/
19888 F:      include/linux/regulator/
19889 K:      regulator_get_optional
19890
19891 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
19892 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
19893 F:      drivers/regulator/irq_helpers.c
19894
19895 VRF
19896 M:      David Ahern <dsahern@kernel.org>
19897 L:      netdev@vger.kernel.org
19898 S:      Maintained
19899 F:      Documentation/networking/vrf.rst
19900 F:      drivers/net/vrf.c
19901
19902 VSPRINTF
19903 M:      Petr Mladek <pmladek@suse.com>
19904 M:      Steven Rostedt <rostedt@goodmis.org>
19905 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
19906 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19907 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19908 S:      Maintained
19909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19910 F:      Documentation/core-api/printk-formats.rst
19911 F:      lib/test_printf.c
19912 F:      lib/test_scanf.c
19913 F:      lib/vsprintf.c
19914
19915 VT1211 HARDWARE MONITOR DRIVER
19916 M:      Juerg Haefliger <juergh@gmail.com>
19917 L:      linux-hwmon@vger.kernel.org
19918 S:      Maintained
19919 F:      Documentation/hwmon/vt1211.rst
19920 F:      drivers/hwmon/vt1211.c
19921
19922 VT8231 HARDWARE MONITOR DRIVER
19923 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19924 L:      linux-hwmon@vger.kernel.org
19925 S:      Maintained
19926 F:      drivers/hwmon/vt8231.c
19927
19928 VUB300 USB to SDIO/SD/MMC bridge chip
19929 L:      linux-mmc@vger.kernel.org
19930 S:      Orphan
19931 F:      drivers/mmc/host/vub300.c
19932
19933 W1 DALLAS'S 1-WIRE BUS
19934 M:      Evgeniy Polyakov <zbr@ioremap.net>
19935 S:      Maintained
19936 F:      Documentation/devicetree/bindings/w1/
19937 F:      Documentation/w1/
19938 F:      drivers/w1/
19939 F:      include/linux/w1.h
19940
19941 W83791D HARDWARE MONITORING DRIVER
19942 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19943 L:      linux-hwmon@vger.kernel.org
19944 S:      Maintained
19945 F:      Documentation/hwmon/w83791d.rst
19946 F:      drivers/hwmon/w83791d.c
19947
19948 W83793 HARDWARE MONITORING DRIVER
19949 M:      Rudolf Marek <r.marek@assembler.cz>
19950 L:      linux-hwmon@vger.kernel.org
19951 S:      Maintained
19952 F:      Documentation/hwmon/w83793.rst
19953 F:      drivers/hwmon/w83793.c
19954
19955 W83795 HARDWARE MONITORING DRIVER
19956 M:      Jean Delvare <jdelvare@suse.com>
19957 L:      linux-hwmon@vger.kernel.org
19958 S:      Maintained
19959 F:      drivers/hwmon/w83795.c
19960
19961 W83L51xD SD/MMC CARD INTERFACE DRIVER
19962 M:      Pierre Ossman <pierre@ossman.eu>
19963 S:      Maintained
19964 F:      drivers/mmc/host/wbsd.*
19965
19966 WACOM PROTOCOL 4 SERIAL TABLETS
19967 M:      Julian Squires <julian@cipht.net>
19968 M:      Hans de Goede <hdegoede@redhat.com>
19969 L:      linux-input@vger.kernel.org
19970 S:      Maintained
19971 F:      drivers/input/tablet/wacom_serial4.c
19972
19973 WATCHDOG DEVICE DRIVERS
19974 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19975 M:      Guenter Roeck <linux@roeck-us.net>
19976 L:      linux-watchdog@vger.kernel.org
19977 S:      Maintained
19978 W:      http://www.linux-watchdog.org/
19979 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19980 F:      Documentation/devicetree/bindings/watchdog/
19981 F:      Documentation/watchdog/
19982 F:      drivers/watchdog/
19983 F:      include/linux/watchdog.h
19984 F:      include/uapi/linux/watchdog.h
19985
19986 WHISKEYCOVE PMIC GPIO DRIVER
19987 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19988 L:      linux-gpio@vger.kernel.org
19989 S:      Maintained
19990 F:      drivers/gpio/gpio-wcove.c
19991
19992 WHWAVE RTC DRIVER
19993 M:      Dianlong Li <long17.cool@163.com>
19994 L:      linux-rtc@vger.kernel.org
19995 S:      Maintained
19996 F:      drivers/rtc/rtc-sd3078.c
19997
19998 WIIMOTE HID DRIVER
19999 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20000 L:      linux-input@vger.kernel.org
20001 S:      Maintained
20002 F:      drivers/hid/hid-wiimote*
20003
20004 WILOCITY WIL6210 WIRELESS DRIVER
20005 M:      Maya Erez <merez@codeaurora.org>
20006 L:      linux-wireless@vger.kernel.org
20007 L:      wil6210@qti.qualcomm.com
20008 S:      Supported
20009 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20010 F:      drivers/net/wireless/ath/wil6210/
20011
20012 WINBOND CIR DRIVER
20013 M:      David Härdeman <david@hardeman.nu>
20014 S:      Maintained
20015 F:      drivers/media/rc/winbond-cir.c
20016
20017 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20018 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20019 L:      linux-watchdog@vger.kernel.org
20020 S:      Maintained
20021 F:      drivers/watchdog/ebc-c384_wdt.c
20022
20023 WINSYSTEMS WS16C48 GPIO DRIVER
20024 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20025 L:      linux-gpio@vger.kernel.org
20026 S:      Maintained
20027 F:      drivers/gpio/gpio-ws16c48.c
20028
20029 WIREGUARD SECURE NETWORK TUNNEL
20030 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20031 L:      wireguard@lists.zx2c4.com
20032 L:      netdev@vger.kernel.org
20033 S:      Maintained
20034 F:      drivers/net/wireguard/
20035 F:      tools/testing/selftests/wireguard/
20036
20037 WISTRON LAPTOP BUTTON DRIVER
20038 M:      Miloslav Trmac <mitr@volny.cz>
20039 S:      Maintained
20040 F:      drivers/input/misc/wistron_btns.c
20041
20042 WL3501 WIRELESS PCMCIA CARD DRIVER
20043 L:      linux-wireless@vger.kernel.org
20044 S:      Odd fixes
20045 F:      drivers/net/wireless/wl3501*
20046
20047 WOLFSON MICROELECTRONICS DRIVERS
20048 L:      patches@opensource.cirrus.com
20049 S:      Supported
20050 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20051 T:      git https://github.com/CirrusLogic/linux-drivers.git
20052 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20053 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20054 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20055 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20056 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20057 F:      Documentation/devicetree/bindings/sound/wm*
20058 F:      Documentation/hwmon/wm83??.rst
20059 F:      arch/arm/mach-s3c/mach-crag6410*
20060 F:      drivers/clk/clk-wm83*.c
20061 F:      drivers/gpio/gpio-*wm*.c
20062 F:      drivers/gpio/gpio-arizona.c
20063 F:      drivers/hwmon/wm83??-hwmon.c
20064 F:      drivers/input/misc/wm831x-on.c
20065 F:      drivers/input/touchscreen/wm831x-ts.c
20066 F:      drivers/input/touchscreen/wm97*.c
20067 F:      drivers/leds/leds-wm83*.c
20068 F:      drivers/mfd/arizona*
20069 F:      drivers/mfd/cs47l24*
20070 F:      drivers/mfd/wm*.c
20071 F:      drivers/power/supply/wm83*.c
20072 F:      drivers/regulator/arizona*
20073 F:      drivers/regulator/wm8*.c
20074 F:      drivers/rtc/rtc-wm83*.c
20075 F:      drivers/video/backlight/wm83*_bl.c
20076 F:      drivers/watchdog/wm83*_wdt.c
20077 F:      include/linux/mfd/arizona/
20078 F:      include/linux/mfd/wm831x/
20079 F:      include/linux/mfd/wm8350/
20080 F:      include/linux/mfd/wm8400*
20081 F:      include/linux/regulator/arizona*
20082 F:      include/linux/wm97xx.h
20083 F:      include/sound/wm????.h
20084 F:      sound/soc/codecs/arizona*
20085 F:      sound/soc/codecs/cs47l24*
20086 F:      sound/soc/codecs/wm*
20087
20088 WORKQUEUE
20089 M:      Tejun Heo <tj@kernel.org>
20090 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20091 S:      Maintained
20092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20093 F:      Documentation/core-api/workqueue.rst
20094 F:      include/linux/workqueue.h
20095 F:      kernel/workqueue.c
20096
20097 WWAN DRIVERS
20098 M:      Loic Poulain <loic.poulain@linaro.org>
20099 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20100 R:      Johannes Berg <johannes@sipsolutions.net>
20101 L:      netdev@vger.kernel.org
20102 S:      Maintained
20103 F:      drivers/net/wwan/
20104 F:      include/linux/wwan.h
20105 F:      include/uapi/linux/wwan.h
20106
20107 X-POWERS AXP288 PMIC DRIVERS
20108 M:      Hans de Goede <hdegoede@redhat.com>
20109 S:      Maintained
20110 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20111 N:      axp288
20112
20113 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20114 M:      Chen-Yu Tsai <wens@csie.org>
20115 L:      linux-kernel@vger.kernel.org
20116 S:      Maintained
20117 N:      axp[128]
20118
20119 X.25 STACK
20120 M:      Martin Schiller <ms@dev.tdt.de>
20121 L:      linux-x25@vger.kernel.org
20122 S:      Maintained
20123 F:      Documentation/networking/lapb-module.rst
20124 F:      Documentation/networking/x25*
20125 F:      drivers/net/wan/hdlc_x25.c
20126 F:      drivers/net/wan/lapbether.c
20127 F:      include/*/lapb.h
20128 F:      include/net/x25*
20129 F:      include/uapi/linux/x25.h
20130 F:      net/lapb/
20131 F:      net/x25/
20132
20133 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20134 M:      Thomas Gleixner <tglx@linutronix.de>
20135 M:      Ingo Molnar <mingo@redhat.com>
20136 M:      Borislav Petkov <bp@alien8.de>
20137 M:      x86@kernel.org
20138 R:      "H. Peter Anvin" <hpa@zytor.com>
20139 L:      linux-kernel@vger.kernel.org
20140 S:      Maintained
20141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20142 F:      Documentation/devicetree/bindings/x86/
20143 F:      Documentation/x86/
20144 F:      arch/x86/
20145
20146 X86 ENTRY CODE
20147 M:      Andy Lutomirski <luto@kernel.org>
20148 L:      linux-kernel@vger.kernel.org
20149 S:      Maintained
20150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20151 F:      arch/x86/entry/
20152
20153 X86 MCE INFRASTRUCTURE
20154 M:      Tony Luck <tony.luck@intel.com>
20155 M:      Borislav Petkov <bp@alien8.de>
20156 L:      linux-edac@vger.kernel.org
20157 S:      Maintained
20158 F:      arch/x86/kernel/cpu/mce/*
20159
20160 X86 MICROCODE UPDATE SUPPORT
20161 M:      Borislav Petkov <bp@alien8.de>
20162 S:      Maintained
20163 F:      arch/x86/kernel/cpu/microcode/*
20164
20165 X86 MM
20166 M:      Dave Hansen <dave.hansen@linux.intel.com>
20167 M:      Andy Lutomirski <luto@kernel.org>
20168 M:      Peter Zijlstra <peterz@infradead.org>
20169 L:      linux-kernel@vger.kernel.org
20170 S:      Maintained
20171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20172 F:      arch/x86/mm/
20173
20174 X86 PLATFORM DRIVERS
20175 M:      Hans de Goede <hdegoede@redhat.com>
20176 M:      Mark Gross <mgross@linux.intel.com>
20177 L:      platform-driver-x86@vger.kernel.org
20178 S:      Maintained
20179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20180 F:      drivers/platform/olpc/
20181 F:      drivers/platform/x86/
20182
20183 X86 PLATFORM DRIVERS - ARCH
20184 R:      Darren Hart <dvhart@infradead.org>
20185 R:      Andy Shevchenko <andy@infradead.org>
20186 L:      platform-driver-x86@vger.kernel.org
20187 L:      x86@kernel.org
20188 S:      Maintained
20189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20190 F:      arch/x86/platform
20191
20192 X86 PLATFORM UV HPE SUPERDOME FLEX
20193 M:      Steve Wahl <steve.wahl@hpe.com>
20194 R:      Mike Travis <mike.travis@hpe.com>
20195 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20196 R:      Russ Anderson <russ.anderson@hpe.com>
20197 S:      Supported
20198 F:      arch/x86/include/asm/uv/
20199 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20200 F:      arch/x86/platform/uv/
20201
20202 X86 VDSO
20203 M:      Andy Lutomirski <luto@kernel.org>
20204 L:      linux-kernel@vger.kernel.org
20205 S:      Maintained
20206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20207 F:      arch/x86/entry/vdso/
20208
20209 XARRAY
20210 M:      Matthew Wilcox <willy@infradead.org>
20211 L:      linux-fsdevel@vger.kernel.org
20212 S:      Supported
20213 F:      Documentation/core-api/xarray.rst
20214 F:      include/linux/idr.h
20215 F:      include/linux/xarray.h
20216 F:      lib/idr.c
20217 F:      lib/xarray.c
20218 F:      tools/testing/radix-tree
20219
20220 XBOX DVD IR REMOTE
20221 M:      Benjamin Valentin <benpicco@googlemail.com>
20222 S:      Maintained
20223 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20224 F:      drivers/media/rc/xbox_remote.c
20225
20226 XC2028/3028 TUNER DRIVER
20227 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20228 L:      linux-media@vger.kernel.org
20229 S:      Maintained
20230 W:      https://linuxtv.org
20231 T:      git git://linuxtv.org/media_tree.git
20232 F:      drivers/media/tuners/tuner-xc2028.*
20233
20234 XDP (eXpress Data Path)
20235 M:      Alexei Starovoitov <ast@kernel.org>
20236 M:      Daniel Borkmann <daniel@iogearbox.net>
20237 M:      David S. Miller <davem@davemloft.net>
20238 M:      Jakub Kicinski <kuba@kernel.org>
20239 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20240 M:      John Fastabend <john.fastabend@gmail.com>
20241 L:      netdev@vger.kernel.org
20242 L:      bpf@vger.kernel.org
20243 S:      Supported
20244 F:      include/net/xdp.h
20245 F:      include/net/xdp_priv.h
20246 F:      include/trace/events/xdp.h
20247 F:      kernel/bpf/cpumap.c
20248 F:      kernel/bpf/devmap.c
20249 F:      net/core/xdp.c
20250 F:      samples/bpf/xdp*
20251 F:      tools/testing/selftests/bpf/*xdp*
20252 F:      tools/testing/selftests/bpf/*/*xdp*
20253 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20254 F:      drivers/net/ethernet/*/*/*xdp*
20255 K:      (?:\b|_)xdp(?:\b|_)
20256
20257 XDP SOCKETS (AF_XDP)
20258 M:      Björn Töpel <bjorn@kernel.org>
20259 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20260 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20261 L:      netdev@vger.kernel.org
20262 L:      bpf@vger.kernel.org
20263 S:      Maintained
20264 F:      Documentation/networking/af_xdp.rst
20265 F:      include/net/xdp_sock*
20266 F:      include/net/xsk_buff_pool.h
20267 F:      include/uapi/linux/if_xdp.h
20268 F:      include/uapi/linux/xdp_diag.h
20269 F:      include/net/netns/xdp.h
20270 F:      net/xdp/
20271 F:      samples/bpf/xdpsock*
20272 F:      tools/lib/bpf/xsk*
20273
20274 XEN BLOCK SUBSYSTEM
20275 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20276 M:      Roger Pau Monné <roger.pau@citrix.com>
20277 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20278 S:      Supported
20279 F:      drivers/block/xen*
20280 F:      drivers/block/xen-blkback/*
20281
20282 XEN HYPERVISOR ARM
20283 M:      Stefano Stabellini <sstabellini@kernel.org>
20284 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20285 S:      Maintained
20286 F:      arch/arm/include/asm/xen/
20287 F:      arch/arm/xen/
20288
20289 XEN HYPERVISOR ARM64
20290 M:      Stefano Stabellini <sstabellini@kernel.org>
20291 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20292 S:      Maintained
20293 F:      arch/arm64/include/asm/xen/
20294 F:      arch/arm64/xen/
20295
20296 XEN HYPERVISOR INTERFACE
20297 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20298 M:      Juergen Gross <jgross@suse.com>
20299 R:      Stefano Stabellini <sstabellini@kernel.org>
20300 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20301 S:      Supported
20302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20303 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20304 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20305 F:      arch/x86/include/asm/pvclock-abi.h
20306 F:      arch/x86/include/asm/xen/
20307 F:      arch/x86/platform/pvh/
20308 F:      arch/x86/xen/
20309 F:      drivers/*/xen-*front.c
20310 F:      drivers/xen/
20311 F:      include/uapi/xen/
20312 F:      include/xen/
20313
20314 XEN NETWORK BACKEND DRIVER
20315 M:      Wei Liu <wei.liu@kernel.org>
20316 M:      Paul Durrant <paul@xen.org>
20317 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20318 L:      netdev@vger.kernel.org
20319 S:      Supported
20320 F:      drivers/net/xen-netback/*
20321
20322 XEN PCI SUBSYSTEM
20323 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20324 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20325 S:      Supported
20326 F:      arch/x86/pci/*xen*
20327 F:      drivers/pci/*xen*
20328
20329 XEN PVSCSI DRIVERS
20330 M:      Juergen Gross <jgross@suse.com>
20331 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20332 L:      linux-scsi@vger.kernel.org
20333 S:      Supported
20334 F:      drivers/scsi/xen-scsifront.c
20335 F:      drivers/xen/xen-scsiback.c
20336 F:      include/xen/interface/io/vscsiif.h
20337
20338 XEN SOUND FRONTEND DRIVER
20339 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20340 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20341 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20342 S:      Supported
20343 F:      sound/xen/*
20344
20345 XEN SWIOTLB SUBSYSTEM
20346 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20347 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20348 L:      iommu@lists.linux-foundation.org
20349 S:      Supported
20350 F:      arch/x86/xen/*swiotlb*
20351 F:      drivers/xen/*swiotlb*
20352
20353 XFS FILESYSTEM
20354 C:      irc://irc.oftc.net/xfs
20355 M:      Darrick J. Wong <djwong@kernel.org>
20356 M:      linux-xfs@vger.kernel.org
20357 L:      linux-xfs@vger.kernel.org
20358 S:      Supported
20359 W:      http://xfs.org/
20360 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20361 F:      Documentation/ABI/testing/sysfs-fs-xfs
20362 F:      Documentation/admin-guide/xfs.rst
20363 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20364 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20365 F:      fs/xfs/
20366 F:      include/uapi/linux/dqblk_xfs.h
20367 F:      include/uapi/linux/fsmap.h
20368
20369 XILINX AXI ETHERNET DRIVER
20370 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20371 S:      Maintained
20372 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20373
20374 XILINX CAN DRIVER
20375 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20376 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20377 L:      linux-can@vger.kernel.org
20378 S:      Maintained
20379 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20380 F:      drivers/net/can/xilinx_can.c
20381
20382 XILINX GPIO DRIVER
20383 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20384 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20385 R:      Michal Simek <michal.simek@xilinx.com>
20386 S:      Maintained
20387 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20388 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
20389 F:      drivers/gpio/gpio-xilinx.c
20390 F:      drivers/gpio/gpio-zynq.c
20391
20392 XILINX SD-FEC IP CORES
20393 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20394 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20395 S:      Maintained
20396 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20397 F:      Documentation/misc-devices/xilinx_sdfec.rst
20398 F:      drivers/misc/Kconfig
20399 F:      drivers/misc/Makefile
20400 F:      drivers/misc/xilinx_sdfec.c
20401 F:      include/uapi/misc/xilinx_sdfec.h
20402
20403 XILINX UARTLITE SERIAL DRIVER
20404 M:      Peter Korsgaard <jacmet@sunsite.dk>
20405 L:      linux-serial@vger.kernel.org
20406 S:      Maintained
20407 F:      drivers/tty/serial/uartlite.c
20408
20409 XILINX VIDEO IP CORES
20410 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20411 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20412 L:      linux-media@vger.kernel.org
20413 S:      Supported
20414 T:      git git://linuxtv.org/media_tree.git
20415 F:      Documentation/devicetree/bindings/media/xilinx/
20416 F:      drivers/media/platform/xilinx/
20417 F:      include/uapi/linux/xilinx-v4l2-controls.h
20418
20419 XILINX ZYNQMP DPDMA DRIVER
20420 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20421 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20422 L:      dmaengine@vger.kernel.org
20423 S:      Supported
20424 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20425 F:      drivers/dma/xilinx/xilinx_dpdma.c
20426 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20427
20428 XILINX ZYNQMP PSGTR PHY DRIVER
20429 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20430 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20431 L:      linux-kernel@vger.kernel.org
20432 S:      Supported
20433 T:      git https://github.com/Xilinx/linux-xlnx.git
20434 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20435 F:      drivers/phy/xilinx/phy-zynqmp.c
20436
20437 XILLYBUS DRIVER
20438 M:      Eli Billauer <eli.billauer@gmail.com>
20439 L:      linux-kernel@vger.kernel.org
20440 S:      Supported
20441 F:      drivers/char/xillybus/
20442
20443 XLP9XX I2C DRIVER
20444 M:      George Cherian <gcherian@marvell.com>
20445 L:      linux-i2c@vger.kernel.org
20446 S:      Supported
20447 W:      http://www.marvell.com
20448 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20449 F:      drivers/i2c/busses/i2c-xlp9xx.c
20450
20451 XRA1403 GPIO EXPANDER
20452 M:      Nandor Han <nandor.han@ge.com>
20453 M:      Semi Malinen <semi.malinen@ge.com>
20454 L:      linux-gpio@vger.kernel.org
20455 S:      Maintained
20456 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20457 F:      drivers/gpio/gpio-xra1403.c
20458
20459 XTENSA XTFPGA PLATFORM SUPPORT
20460 M:      Max Filippov <jcmvbkbc@gmail.com>
20461 L:      linux-xtensa@linux-xtensa.org
20462 S:      Maintained
20463 F:      drivers/spi/spi-xtensa-xtfpga.c
20464 F:      sound/soc/xtensa/xtfpga-i2s.c
20465
20466 YAM DRIVER FOR AX.25
20467 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20468 L:      linux-hams@vger.kernel.org
20469 S:      Maintained
20470 F:      drivers/net/hamradio/yam*
20471 F:      include/linux/yam.h
20472
20473 YAMA SECURITY MODULE
20474 M:      Kees Cook <keescook@chromium.org>
20475 S:      Supported
20476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20477 F:      Documentation/admin-guide/LSM/Yama.rst
20478 F:      security/yama/
20479
20480 YEALINK PHONE DRIVER
20481 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20482 L:      usbb2k-api-dev@nongnu.org
20483 S:      Maintained
20484 F:      Documentation/input/devices/yealink.rst
20485 F:      drivers/input/misc/yealink.*
20486
20487 Z8530 DRIVER FOR AX.25
20488 M:      Joerg Reuter <jreuter@yaina.de>
20489 L:      linux-hams@vger.kernel.org
20490 S:      Maintained
20491 W:      http://yaina.de/jreuter/
20492 W:      http://www.qsl.net/dl1bke/
20493 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20494 F:      drivers/net/hamradio/*scc.c
20495 F:      drivers/net/hamradio/z8530.h
20496
20497 ZBUD COMPRESSED PAGE ALLOCATOR
20498 M:      Seth Jennings <sjenning@redhat.com>
20499 M:      Dan Streetman <ddstreet@ieee.org>
20500 L:      linux-mm@kvack.org
20501 S:      Maintained
20502 F:      mm/zbud.c
20503
20504 ZD1211RW WIRELESS DRIVER
20505 M:      Daniel Drake <dsd@gentoo.org>
20506 M:      Ulrich Kunitz <kune@deine-taler.de>
20507 L:      linux-wireless@vger.kernel.org
20508 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20509 S:      Maintained
20510 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20511 F:      drivers/net/wireless/zydas/zd1211rw/
20512
20513 ZD1301 MEDIA DRIVER
20514 M:      Antti Palosaari <crope@iki.fi>
20515 L:      linux-media@vger.kernel.org
20516 S:      Maintained
20517 W:      https://linuxtv.org/
20518 W:      http://palosaari.fi/linux/
20519 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20520 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20521
20522 ZD1301_DEMOD MEDIA DRIVER
20523 M:      Antti Palosaari <crope@iki.fi>
20524 L:      linux-media@vger.kernel.org
20525 S:      Maintained
20526 W:      https://linuxtv.org/
20527 W:      http://palosaari.fi/linux/
20528 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20529 F:      drivers/media/dvb-frontends/zd1301_demod*
20530
20531 ZHAOXIN PROCESSOR SUPPORT
20532 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20533 L:      linux-kernel@vger.kernel.org
20534 S:      Maintained
20535 F:      arch/x86/kernel/cpu/zhaoxin.c
20536
20537 ZONEFS FILESYSTEM
20538 M:      Damien Le Moal <damien.lemoal@wdc.com>
20539 M:      Naohiro Aota <naohiro.aota@wdc.com>
20540 R:      Johannes Thumshirn <jth@kernel.org>
20541 L:      linux-fsdevel@vger.kernel.org
20542 S:      Maintained
20543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20544 F:      Documentation/filesystems/zonefs.rst
20545 F:      fs/zonefs/
20546
20547 ZPOOL COMPRESSED PAGE STORAGE API
20548 M:      Dan Streetman <ddstreet@ieee.org>
20549 L:      linux-mm@kvack.org
20550 S:      Maintained
20551 F:      include/linux/zpool.h
20552 F:      mm/zpool.c
20553
20554 ZR36067 VIDEO FOR LINUX DRIVER
20555 M:      Corentin Labbe <clabbe@baylibre.com>
20556 L:      mjpeg-users@lists.sourceforge.net
20557 L:      linux-media@vger.kernel.org
20558 S:      Maintained
20559 W:      http://mjpeg.sourceforge.net/driver-zoran/
20560 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20561 F:      Documentation/driver-api/media/drivers/zoran.rst
20562 F:      drivers/staging/media/zoran/
20563
20564 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20565 M:      Minchan Kim <minchan@kernel.org>
20566 M:      Nitin Gupta <ngupta@vflare.org>
20567 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20568 L:      linux-kernel@vger.kernel.org
20569 S:      Maintained
20570 F:      Documentation/admin-guide/blockdev/zram.rst
20571 F:      drivers/block/zram/
20572
20573 ZS DECSTATION Z85C30 SERIAL DRIVER
20574 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20575 S:      Maintained
20576 F:      drivers/tty/serial/zs.*
20577
20578 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20579 M:      Minchan Kim <minchan@kernel.org>
20580 M:      Nitin Gupta <ngupta@vflare.org>
20581 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20582 L:      linux-mm@kvack.org
20583 S:      Maintained
20584 F:      Documentation/vm/zsmalloc.rst
20585 F:      include/linux/zsmalloc.h
20586 F:      mm/zsmalloc.c
20587
20588 ZSWAP COMPRESSED SWAP CACHING
20589 M:      Seth Jennings <sjenning@redhat.com>
20590 M:      Dan Streetman <ddstreet@ieee.org>
20591 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20592 L:      linux-mm@kvack.org
20593 S:      Maintained
20594 F:      mm/zswap.c
20595
20596 THE REST
20597 M:      Linus Torvalds <torvalds@linux-foundation.org>
20598 L:      linux-kernel@vger.kernel.org
20599 S:      Buried alive in reporters
20600 Q:      http://patchwork.kernel.org/project/LKML/list/
20601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20602 F:      *
20603 F:      */