Merge tag 'rproc-v5.14' of git://git.kernel.org/pub/scm/linux/kernel/git/andersson...
[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:      Shuo Liu <shuo.a.liu@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 THERMAL DRIVER
756 M:      Vasily Khoruzhick <anarsoul@gmail.com>
757 M:      Yangtao Li <tiny.windzz@gmail.com>
758 L:      linux-pm@vger.kernel.org
759 S:      Maintained
760 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
761 F:      drivers/thermal/sun8i_thermal.c
762
763 ALLWINNER VPU DRIVER
764 M:      Maxime Ripard <mripard@kernel.org>
765 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
766 L:      linux-media@vger.kernel.org
767 S:      Maintained
768 F:      drivers/staging/media/sunxi/cedrus/
769
770 ALPHA PORT
771 M:      Richard Henderson <rth@twiddle.net>
772 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
773 M:      Matt Turner <mattst88@gmail.com>
774 L:      linux-alpha@vger.kernel.org
775 S:      Odd Fixes
776 F:      arch/alpha/
777
778 ALPS PS/2 TOUCHPAD DRIVER
779 R:      Pali Rohár <pali@kernel.org>
780 F:      drivers/input/mouse/alps.*
781
782 ALTERA I2C CONTROLLER DRIVER
783 M:      Thor Thayer <thor.thayer@linux.intel.com>
784 S:      Maintained
785 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
786 F:      drivers/i2c/busses/i2c-altera.c
787
788 ALTERA MAILBOX DRIVER
789 M:      Ley Foon Tan <ley.foon.tan@intel.com>
790 S:      Maintained
791 F:      drivers/mailbox/mailbox-altera.c
792
793 ALTERA MSGDMA IP CORE DRIVER
794 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
795 R:      Stefan Roese <sr@denx.de>
796 L:      dmaengine@vger.kernel.org
797 S:      Odd Fixes
798 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
799 F:      drivers/dma/altera-msgdma.c
800
801 ALTERA PIO DRIVER
802 M:      Joyce Ooi <joyce.ooi@intel.com>
803 L:      linux-gpio@vger.kernel.org
804 S:      Maintained
805 F:      drivers/gpio/gpio-altera.c
806
807 ALTERA SYSTEM MANAGER DRIVER
808 M:      Thor Thayer <thor.thayer@linux.intel.com>
809 S:      Maintained
810 F:      drivers/mfd/altera-sysmgr.c
811 F:      include/linux/mfd/altera-sysmgr.h
812
813 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
814 M:      Thor Thayer <thor.thayer@linux.intel.com>
815 S:      Maintained
816 F:      drivers/gpio/gpio-altera-a10sr.c
817 F:      drivers/mfd/altera-a10sr.c
818 F:      drivers/reset/reset-a10sr.c
819 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
820 F:      include/linux/mfd/altera-a10sr.h
821
822 ALTERA TRIPLE SPEED ETHERNET DRIVER
823 M:      Joyce Ooi <joyce.ooi@intel.com>
824 L:      netdev@vger.kernel.org
825 S:      Maintained
826 F:      drivers/net/ethernet/altera/
827
828 ALTERA UART/JTAG UART SERIAL DRIVERS
829 M:      Tobias Klauser <tklauser@distanz.ch>
830 L:      linux-serial@vger.kernel.org
831 S:      Maintained
832 F:      drivers/tty/serial/altera_jtaguart.c
833 F:      drivers/tty/serial/altera_uart.c
834 F:      include/linux/altera_jtaguart.h
835 F:      include/linux/altera_uart.h
836
837 AMAZON ANNAPURNA LABS FIC DRIVER
838 M:      Talel Shenhar <talel@amazon.com>
839 S:      Maintained
840 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
841 F:      drivers/irqchip/irq-al-fic.c
842
843 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
844 M:      Talel Shenhar <talel@amazon.com>
845 M:      Talel Shenhar <talelshenhar@gmail.com>
846 S:      Maintained
847 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
848 F:      drivers/edac/al_mc_edac.c
849
850 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
851 M:      Talel Shenhar <talel@amazon.com>
852 S:      Maintained
853 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
854 F:      drivers/thermal/thermal_mmio.c
855
856 AMAZON ETHERNET DRIVERS
857 M:      Netanel Belgazal <netanel@amazon.com>
858 M:      Arthur Kiyanovski <akiyano@amazon.com>
859 R:      Guy Tzalik <gtzalik@amazon.com>
860 R:      Saeed Bishara <saeedb@amazon.com>
861 L:      netdev@vger.kernel.org
862 S:      Supported
863 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
864 F:      drivers/net/ethernet/amazon/
865
866 AMAZON RDMA EFA DRIVER
867 M:      Gal Pressman <galpress@amazon.com>
868 R:      Yossi Leybovich <sleybo@amazon.com>
869 L:      linux-rdma@vger.kernel.org
870 S:      Supported
871 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
872 F:      drivers/infiniband/hw/efa/
873 F:      include/uapi/rdma/efa-abi.h
874
875 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
876 M:      Tom Lendacky <thomas.lendacky@amd.com>
877 M:      John Allen <john.allen@amd.com>
878 L:      linux-crypto@vger.kernel.org
879 S:      Supported
880 F:      drivers/crypto/ccp/
881 F:      include/linux/ccp.h
882
883 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
884 M:      Brijesh Singh <brijesh.singh@amd.com>
885 M:      Tom Lendacky <thomas.lendacky@amd.com>
886 L:      linux-crypto@vger.kernel.org
887 S:      Supported
888 F:      drivers/crypto/ccp/sev*
889 F:      include/uapi/linux/psp-sev.h
890
891 AMD DISPLAY CORE
892 M:      Harry Wentland <harry.wentland@amd.com>
893 M:      Leo Li <sunpeng.li@amd.com>
894 L:      amd-gfx@lists.freedesktop.org
895 S:      Supported
896 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
897 F:      drivers/gpu/drm/amd/display/
898
899 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
900 M:      Huang Rui <ray.huang@amd.com>
901 L:      linux-hwmon@vger.kernel.org
902 S:      Supported
903 F:      Documentation/hwmon/fam15h_power.rst
904 F:      drivers/hwmon/fam15h_power.c
905
906 AMD FCH GPIO DRIVER
907 M:      Enrico Weigelt, metux IT consult <info@metux.net>
908 L:      linux-gpio@vger.kernel.org
909 S:      Maintained
910 F:      drivers/gpio/gpio-amd-fch.c
911 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
912
913 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
914 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
915 S:      Orphan
916 F:      drivers/usb/gadget/udc/amd5536udc.*
917
918 AMD GEODE PROCESSOR/CHIPSET SUPPORT
919 M:      Andres Salomon <dilinger@queued.net>
920 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
921 S:      Supported
922 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
923 F:      arch/x86/include/asm/geode.h
924 F:      drivers/char/hw_random/geode-rng.c
925 F:      drivers/crypto/geode*
926 F:      drivers/video/fbdev/geode/
927
928 AMD IOMMU (AMD-VI)
929 M:      Joerg Roedel <joro@8bytes.org>
930 L:      iommu@lists.linux-foundation.org
931 S:      Maintained
932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
933 F:      drivers/iommu/amd/
934 F:      include/linux/amd-iommu.h
935
936 AMD KFD
937 M:      Felix Kuehling <Felix.Kuehling@amd.com>
938 L:      amd-gfx@lists.freedesktop.org
939 S:      Supported
940 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
941 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
942 F:      drivers/gpu/drm/amd/amdkfd/
943 F:      drivers/gpu/drm/amd/include/cik_structs.h
944 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
945 F:      drivers/gpu/drm/amd/include/v9_structs.h
946 F:      drivers/gpu/drm/amd/include/vi_structs.h
947 F:      include/uapi/linux/kfd_ioctl.h
948
949 AMD SPI DRIVER
950 M:      Sanjay R Mehta <sanju.mehta@amd.com>
951 S:      Maintained
952 F:      drivers/spi/spi-amd.c
953
954 AMD MP2 I2C DRIVER
955 M:      Elie Morisse <syniurge@gmail.com>
956 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
957 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
958 L:      linux-i2c@vger.kernel.org
959 S:      Maintained
960 F:      drivers/i2c/busses/i2c-amd-mp2*
961
962 AMD PMC DRIVER
963 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
964 L:      platform-driver-x86@vger.kernel.org
965 S:      Maintained
966 F:      drivers/platform/x86/amd-pmc.*
967
968 AMD POWERPLAY
969 M:      Evan Quan <evan.quan@amd.com>
970 L:      amd-gfx@lists.freedesktop.org
971 S:      Supported
972 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
973 F:      drivers/gpu/drm/amd/pm/powerplay/
974
975 AMD SEATTLE DEVICE TREE SUPPORT
976 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
977 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
978 M:      Tom Lendacky <thomas.lendacky@amd.com>
979 S:      Supported
980 F:      arch/arm64/boot/dts/amd/
981
982 AMD XGBE DRIVER
983 M:      Tom Lendacky <thomas.lendacky@amd.com>
984 L:      netdev@vger.kernel.org
985 S:      Supported
986 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
987 F:      drivers/net/ethernet/amd/xgbe/
988
989 AMD SENSOR FUSION HUB DRIVER
990 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
991 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
992 L:      linux-input@vger.kernel.org
993 S:      Maintained
994 F:      Documentation/hid/amd-sfh*
995 F:      drivers/hid/amd-sfh-hid/
996
997 AMS AS73211 DRIVER
998 M:      Christian Eggers <ceggers@arri.de>
999 L:      linux-iio@vger.kernel.org
1000 S:      Maintained
1001 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1002 F:      drivers/iio/light/as73211.c
1003
1004 ANALOG DEVICES INC AD7192 DRIVER
1005 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1006 L:      linux-iio@vger.kernel.org
1007 S:      Supported
1008 W:      http://ez.analog.com/community/linux-device-drivers
1009 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1010 F:      drivers/iio/adc/ad7192.c
1011
1012 ANALOG DEVICES INC AD7292 DRIVER
1013 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1014 L:      linux-iio@vger.kernel.org
1015 S:      Supported
1016 W:      http://ez.analog.com/community/linux-device-drivers
1017 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1018 F:      drivers/iio/adc/ad7292.c
1019
1020 ANALOG DEVICES INC AD7768-1 DRIVER
1021 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1022 L:      linux-iio@vger.kernel.org
1023 S:      Supported
1024 W:      http://ez.analog.com/community/linux-device-drivers
1025 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1026 F:      drivers/iio/adc/ad7768-1.c
1027
1028 ANALOG DEVICES INC AD7780 DRIVER
1029 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1030 M:      Renato Lui Geh <renatogeh@gmail.com>
1031 L:      linux-iio@vger.kernel.org
1032 S:      Supported
1033 W:      http://ez.analog.com/community/linux-device-drivers
1034 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1035 F:      drivers/iio/adc/ad7780.c
1036
1037 ANALOG DEVICES INC AD9389B DRIVER
1038 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1039 L:      linux-media@vger.kernel.org
1040 S:      Maintained
1041 F:      drivers/media/i2c/ad9389b*
1042
1043 ANALOG DEVICES INC ADGS1408 DRIVER
1044 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1045 S:      Supported
1046 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1047 F:      drivers/mux/adgs1408.c
1048
1049 ANALOG DEVICES INC ADIN DRIVER
1050 M:      Michael Hennerich <michael.hennerich@analog.com>
1051 L:      netdev@vger.kernel.org
1052 S:      Supported
1053 W:      http://ez.analog.com/community/linux-device-drivers
1054 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1055 F:      drivers/net/phy/adin.c
1056
1057 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1058 M:      Nuno Sa <nuno.sa@analog.com>
1059 L:      linux-iio@vger.kernel.org
1060 S:      Supported
1061 F:      drivers/iio/imu/adis.c
1062 F:      include/linux/iio/imu/adis.h
1063
1064 ANALOG DEVICES INC ADIS16460 DRIVER
1065 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1066 L:      linux-iio@vger.kernel.org
1067 S:      Supported
1068 W:      http://ez.analog.com/community/linux-device-drivers
1069 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1070 F:      drivers/iio/imu/adis16460.c
1071
1072 ANALOG DEVICES INC ADIS16475 DRIVER
1073 M:      Nuno Sa <nuno.sa@analog.com>
1074 L:      linux-iio@vger.kernel.org
1075 W:      http://ez.analog.com/community/linux-device-drivers
1076 S:      Supported
1077 F:      drivers/iio/imu/adis16475.c
1078 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1079
1080 ANALOG DEVICES INC ADM1177 DRIVER
1081 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1082 L:      linux-hwmon@vger.kernel.org
1083 S:      Supported
1084 W:      http://ez.analog.com/community/linux-device-drivers
1085 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1086 F:      drivers/hwmon/adm1177.c
1087
1088 ANALOG DEVICES INC ADP5061 DRIVER
1089 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1090 L:      linux-pm@vger.kernel.org
1091 S:      Supported
1092 W:      http://ez.analog.com/community/linux-device-drivers
1093 F:      drivers/power/supply/adp5061.c
1094
1095 ANALOG DEVICES INC ADV7180 DRIVER
1096 M:      Lars-Peter Clausen <lars@metafoo.de>
1097 L:      linux-media@vger.kernel.org
1098 S:      Supported
1099 W:      http://ez.analog.com/community/linux-device-drivers
1100 F:      drivers/media/i2c/adv7180.c
1101 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1102
1103 ANALOG DEVICES INC ADV748X DRIVER
1104 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1105 L:      linux-media@vger.kernel.org
1106 S:      Maintained
1107 F:      drivers/media/i2c/adv748x/*
1108
1109 ANALOG DEVICES INC ADV7511 DRIVER
1110 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1111 L:      linux-media@vger.kernel.org
1112 S:      Maintained
1113 F:      drivers/media/i2c/adv7511*
1114
1115 ANALOG DEVICES INC ADV7604 DRIVER
1116 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1117 L:      linux-media@vger.kernel.org
1118 S:      Maintained
1119 F:      drivers/media/i2c/adv7604*
1120 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1121
1122 ANALOG DEVICES INC ADV7842 DRIVER
1123 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1124 L:      linux-media@vger.kernel.org
1125 S:      Maintained
1126 F:      drivers/media/i2c/adv7842*
1127
1128 ANALOG DEVICES INC ADXRS290 DRIVER
1129 M:      Nishant Malpani <nish.malpani25@gmail.com>
1130 L:      linux-iio@vger.kernel.org
1131 S:      Supported
1132 F:      drivers/iio/gyro/adxrs290.c
1133 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1134
1135 ANALOG DEVICES INC ASOC CODEC DRIVERS
1136 M:      Lars-Peter Clausen <lars@metafoo.de>
1137 M:      Nuno Sá <nuno.sa@analog.com>
1138 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1139 S:      Supported
1140 W:      http://wiki.analog.com/
1141 W:      http://ez.analog.com/community/linux-device-drivers
1142 F:      sound/soc/codecs/ad1*
1143 F:      sound/soc/codecs/ad7*
1144 F:      sound/soc/codecs/adau*
1145 F:      sound/soc/codecs/adav*
1146 F:      sound/soc/codecs/sigmadsp.*
1147 F:      sound/soc/codecs/ssm*
1148
1149 ANALOG DEVICES INC DMA DRIVERS
1150 M:      Lars-Peter Clausen <lars@metafoo.de>
1151 S:      Supported
1152 W:      http://ez.analog.com/community/linux-device-drivers
1153 F:      drivers/dma/dma-axi-dmac.c
1154
1155 ANALOG DEVICES INC IIO DRIVERS
1156 M:      Lars-Peter Clausen <lars@metafoo.de>
1157 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1158 S:      Supported
1159 W:      http://wiki.analog.com/
1160 W:      http://ez.analog.com/community/linux-device-drivers
1161 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1162 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1163 F:      Documentation/devicetree/bindings/iio/*/adi,*
1164 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1165 F:      drivers/iio/*/ad*
1166 F:      drivers/iio/adc/ltc249*
1167 F:      drivers/iio/amplifiers/hmc425a.c
1168 F:      drivers/staging/iio/*/ad*
1169 X:      drivers/iio/*/adjd*
1170
1171 ANALOGBITS PLL LIBRARIES
1172 M:      Paul Walmsley <paul.walmsley@sifive.com>
1173 S:      Supported
1174 F:      drivers/clk/analogbits/*
1175 F:      include/linux/clk/analogbits*
1176
1177 ANDES ARCHITECTURE
1178 M:      Nick Hu <nickhu@andestech.com>
1179 M:      Greentime Hu <green.hu@gmail.com>
1180 M:      Vincent Chen <deanbo422@gmail.com>
1181 S:      Supported
1182 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1183 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1184 F:      Documentation/devicetree/bindings/nds32/
1185 F:      arch/nds32/
1186 N:      nds32
1187 K:      nds32
1188
1189 ANDROID CONFIG FRAGMENTS
1190 M:      Rob Herring <robh@kernel.org>
1191 S:      Supported
1192 F:      kernel/configs/android*
1193
1194 ANDROID DRIVERS
1195 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1196 M:      Arve Hjønnevåg <arve@android.com>
1197 M:      Todd Kjos <tkjos@android.com>
1198 M:      Martijn Coenen <maco@android.com>
1199 M:      Joel Fernandes <joel@joelfernandes.org>
1200 M:      Christian Brauner <christian@brauner.io>
1201 M:      Hridya Valsaraju <hridya@google.com>
1202 M:      Suren Baghdasaryan <surenb@google.com>
1203 L:      linux-kernel@vger.kernel.org
1204 S:      Supported
1205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1206 F:      drivers/android/
1207 F:      drivers/staging/android/
1208
1209 ANDROID GOLDFISH PIC DRIVER
1210 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1211 S:      Supported
1212 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1213 F:      drivers/irqchip/irq-goldfish-pic.c
1214
1215 ANDROID GOLDFISH RTC DRIVER
1216 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1217 S:      Supported
1218 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1219 F:      drivers/rtc/rtc-goldfish.c
1220
1221 AOA (Apple Onboard Audio) ALSA DRIVER
1222 M:      Johannes Berg <johannes@sipsolutions.net>
1223 L:      linuxppc-dev@lists.ozlabs.org
1224 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1225 S:      Maintained
1226 F:      sound/aoa/
1227
1228 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1229 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1230 L:      linux-iio@vger.kernel.org
1231 S:      Maintained
1232 F:      drivers/iio/adc/stx104.c
1233
1234 APM DRIVER
1235 M:      Jiri Kosina <jikos@kernel.org>
1236 S:      Odd fixes
1237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1238 F:      arch/x86/kernel/apm_32.c
1239 F:      drivers/char/apm-emulation.c
1240 F:      include/linux/apm_bios.h
1241 F:      include/uapi/linux/apm_bios.h
1242
1243 APPARMOR SECURITY MODULE
1244 M:      John Johansen <john.johansen@canonical.com>
1245 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1246 S:      Supported
1247 W:      wiki.apparmor.net
1248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1249 F:      Documentation/admin-guide/LSM/apparmor.rst
1250 F:      security/apparmor/
1251
1252 APPLE BCM5974 MULTITOUCH DRIVER
1253 M:      Henrik Rydberg <rydberg@bitmath.org>
1254 L:      linux-input@vger.kernel.org
1255 S:      Odd fixes
1256 F:      drivers/input/mouse/bcm5974.c
1257
1258 APPLE SMC DRIVER
1259 M:      Henrik Rydberg <rydberg@bitmath.org>
1260 L:      linux-hwmon@vger.kernel.org
1261 S:      Odd fixes
1262 F:      drivers/hwmon/applesmc.c
1263
1264 APPLETALK NETWORK LAYER
1265 L:      netdev@vger.kernel.org
1266 S:      Odd fixes
1267 F:      drivers/net/appletalk/
1268 F:      include/linux/atalk.h
1269 F:      include/uapi/linux/atalk.h
1270 F:      net/appletalk/
1271
1272 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1273 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1274 S:      Supported
1275 F:      arch/arm64/boot/dts/apm/
1276
1277 APPLIED MICRO (APM) X-GENE SOC EDAC
1278 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1279 S:      Supported
1280 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1281 F:      drivers/edac/xgene_edac.c
1282
1283 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1284 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1285 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1286 S:      Supported
1287 F:      drivers/net/ethernet/apm/xgene-v2/
1288
1289 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1290 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1291 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1292 M:      Quan Nguyen <quan@os.amperecomputing.com>
1293 S:      Supported
1294 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1295 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1296 F:      drivers/net/ethernet/apm/xgene/
1297 F:      drivers/net/mdio/mdio-xgene.c
1298
1299 APPLIED MICRO (APM) X-GENE SOC PMU
1300 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1301 S:      Supported
1302 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1303 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1304 F:      drivers/perf/xgene_pmu.c
1305
1306 APTINA CAMERA SENSOR PLL
1307 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1308 L:      linux-media@vger.kernel.org
1309 S:      Maintained
1310 F:      drivers/media/i2c/aptina-pll.*
1311
1312 AQUANTIA ETHERNET DRIVER (atlantic)
1313 M:      Igor Russkikh <irusskikh@marvell.com>
1314 L:      netdev@vger.kernel.org
1315 S:      Supported
1316 W:      https://www.marvell.com/
1317 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1318 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1319 F:      drivers/net/ethernet/aquantia/atlantic/
1320
1321 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1322 M:      Egor Pomozov <epomozov@marvell.com>
1323 L:      netdev@vger.kernel.org
1324 S:      Supported
1325 W:      http://www.aquantia.com
1326 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1327
1328 ARASAN NAND CONTROLLER DRIVER
1329 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1330 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1331 L:      linux-mtd@lists.infradead.org
1332 S:      Maintained
1333 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1334 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1335
1336 ARC FRAMEBUFFER DRIVER
1337 M:      Jaya Kumar <jayalk@intworks.biz>
1338 S:      Maintained
1339 F:      drivers/video/fbdev/arcfb.c
1340 F:      drivers/video/fbdev/core/fb_defio.c
1341
1342 ARC PGU DRM DRIVER
1343 M:      Alexey Brodkin <abrodkin@synopsys.com>
1344 S:      Supported
1345 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1346 F:      drivers/gpu/drm/tiny/arcpgu.c
1347
1348 ARCNET NETWORK LAYER
1349 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1350 L:      netdev@vger.kernel.org
1351 S:      Maintained
1352 F:      drivers/net/arcnet/
1353 F:      include/uapi/linux/if_arcnet.h
1354
1355 ARM ARCHITECTED TIMER DRIVER
1356 M:      Mark Rutland <mark.rutland@arm.com>
1357 M:      Marc Zyngier <maz@kernel.org>
1358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1359 S:      Maintained
1360 F:      arch/arm/include/asm/arch_timer.h
1361 F:      arch/arm64/include/asm/arch_timer.h
1362 F:      drivers/clocksource/arm_arch_timer.c
1363
1364 ARM HDLCD DRM DRIVER
1365 M:      Liviu Dudau <liviu.dudau@arm.com>
1366 S:      Supported
1367 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1368 F:      drivers/gpu/drm/arm/hdlcd_*
1369
1370 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1371 M:      Linus Walleij <linus.walleij@linaro.org>
1372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1373 S:      Maintained
1374 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1375 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1376 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1377 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1378 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1379 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1380 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1381 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1382 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1383 F:      arch/arm/boot/dts/arm-realview-*
1384 F:      arch/arm/boot/dts/integrator*
1385 F:      arch/arm/boot/dts/versatile*
1386 F:      arch/arm/mach-integrator/
1387 F:      arch/arm/mach-realview/
1388 F:      arch/arm/mach-versatile/
1389 F:      arch/arm/plat-versatile/
1390 F:      drivers/bus/arm-integrator-lm.c
1391 F:      drivers/clk/versatile/
1392 F:      drivers/i2c/busses/i2c-versatile.c
1393 F:      drivers/irqchip/irq-versatile-fpga.c
1394 F:      drivers/mtd/maps/physmap-versatile.*
1395 F:      drivers/power/reset/arm-versatile-reboot.c
1396 F:      drivers/soc/versatile/
1397
1398 ARM KOMEDA DRM-KMS DRIVER
1399 M:      James (Qian) Wang <james.qian.wang@arm.com>
1400 M:      Liviu Dudau <liviu.dudau@arm.com>
1401 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1402 L:      Mali DP Maintainers <malidp@foss.arm.com>
1403 S:      Supported
1404 T:      git git://anongit.freedesktop.org/drm/drm-misc
1405 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1406 F:      Documentation/gpu/komeda-kms.rst
1407 F:      drivers/gpu/drm/arm/display/include/
1408 F:      drivers/gpu/drm/arm/display/komeda/
1409
1410 ARM MALI PANFROST DRM DRIVER
1411 M:      Rob Herring <robh@kernel.org>
1412 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1413 R:      Steven Price <steven.price@arm.com>
1414 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1415 L:      dri-devel@lists.freedesktop.org
1416 S:      Supported
1417 T:      git git://anongit.freedesktop.org/drm/drm-misc
1418 F:      drivers/gpu/drm/panfrost/
1419 F:      include/uapi/drm/panfrost_drm.h
1420
1421 ARM MALI-DP DRM DRIVER
1422 M:      Liviu Dudau <liviu.dudau@arm.com>
1423 M:      Brian Starkey <brian.starkey@arm.com>
1424 L:      Mali DP Maintainers <malidp@foss.arm.com>
1425 S:      Supported
1426 T:      git git://anongit.freedesktop.org/drm/drm-misc
1427 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1428 F:      Documentation/gpu/afbc.rst
1429 F:      drivers/gpu/drm/arm/
1430
1431 ARM MFM AND FLOPPY DRIVERS
1432 M:      Ian Molton <spyro@f2s.com>
1433 S:      Maintained
1434 F:      arch/arm/include/asm/floppy.h
1435 F:      arch/arm/mach-rpc/floppydma.S
1436
1437 ARM PMU PROFILING AND DEBUGGING
1438 M:      Will Deacon <will@kernel.org>
1439 M:      Mark Rutland <mark.rutland@arm.com>
1440 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1441 S:      Maintained
1442 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1443 F:      Documentation/devicetree/bindings/perf/
1444 F:      arch/arm*/include/asm/hw_breakpoint.h
1445 F:      arch/arm*/include/asm/perf_event.h
1446 F:      arch/arm*/kernel/hw_breakpoint.c
1447 F:      arch/arm*/kernel/perf_*
1448 F:      drivers/perf/
1449 F:      include/linux/perf/arm_pmu.h
1450
1451 ARM PORT
1452 M:      Russell King <linux@armlinux.org.uk>
1453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1454 S:      Odd Fixes
1455 W:      http://www.armlinux.org.uk/
1456 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1457 F:      arch/arm/
1458 X:      arch/arm/boot/dts/
1459
1460 ARM PRIMECELL AACI PL041 DRIVER
1461 M:      Russell King <linux@armlinux.org.uk>
1462 S:      Odd Fixes
1463 F:      sound/arm/aaci.*
1464
1465 ARM PRIMECELL BUS SUPPORT
1466 M:      Russell King <linux@armlinux.org.uk>
1467 S:      Odd Fixes
1468 F:      drivers/amba/
1469 F:      include/linux/amba/bus.h
1470
1471 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1472 M:      Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1473 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1474 L:      linux-mtd@lists.infradead.org
1475 S:      Maintained
1476 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1477 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1478
1479 ARM PRIMECELL PL35X SMC DRIVER
1480 M:      Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1481 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1483 S:      Maintained
1484 F:      Documentation/devicetree/bindings/mtd/arm,pl353-smc.yaml
1485 F:      drivers/memory/pl353-smc.c
1486
1487 ARM PRIMECELL CLCD PL110 DRIVER
1488 M:      Russell King <linux@armlinux.org.uk>
1489 S:      Odd Fixes
1490 F:      drivers/video/fbdev/amba-clcd.*
1491
1492 ARM PRIMECELL KMI PL050 DRIVER
1493 M:      Russell King <linux@armlinux.org.uk>
1494 S:      Odd Fixes
1495 F:      drivers/input/serio/ambakmi.*
1496 F:      include/linux/amba/kmi.h
1497
1498 ARM PRIMECELL MMCI PL180/1 DRIVER
1499 M:      Russell King <linux@armlinux.org.uk>
1500 S:      Odd Fixes
1501 F:      drivers/mmc/host/mmci.*
1502 F:      include/linux/amba/mmci.h
1503
1504 ARM PRIMECELL SSP PL022 SPI DRIVER
1505 M:      Linus Walleij <linus.walleij@linaro.org>
1506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1507 S:      Maintained
1508 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1509 F:      drivers/spi/spi-pl022.c
1510
1511 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1512 M:      Russell King <linux@armlinux.org.uk>
1513 S:      Odd Fixes
1514 F:      drivers/tty/serial/amba-pl01*.c
1515 F:      include/linux/amba/serial.h
1516
1517 ARM PRIMECELL VIC PL190/PL192 DRIVER
1518 M:      Linus Walleij <linus.walleij@linaro.org>
1519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1520 S:      Maintained
1521 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1522 F:      drivers/irqchip/irq-vic.c
1523
1524 ARM SMC WATCHDOG DRIVER
1525 M:      Julius Werner <jwerner@chromium.org>
1526 R:      Evan Benn <evanbenn@chromium.org>
1527 S:      Maintained
1528 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1529 F:      drivers/watchdog/arm_smc_wdt.c
1530
1531 ARM SMMU DRIVERS
1532 M:      Will Deacon <will@kernel.org>
1533 R:      Robin Murphy <robin.murphy@arm.com>
1534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1535 S:      Maintained
1536 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1537 F:      drivers/iommu/arm/
1538 F:      drivers/iommu/io-pgtable-arm*
1539
1540 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1541 M:      Arnd Bergmann <arnd@arndb.de>
1542 M:      Olof Johansson <olof@lixom.net>
1543 M:      soc@kernel.org
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1547 F:      arch/arm/boot/dts/Makefile
1548 F:      arch/arm64/boot/dts/Makefile
1549
1550 ARM SUB-ARCHITECTURES
1551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1552 S:      Maintained
1553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1554 F:      arch/arm/mach-*/
1555 F:      arch/arm/plat-*/
1556
1557 ARM/ACTIONS SEMI ARCHITECTURE
1558 M:      Andreas Färber <afaerber@suse.de>
1559 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1560 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1561 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1562 S:      Maintained
1563 F:      Documentation/devicetree/bindings/arm/actions.yaml
1564 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1565 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1566 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1567 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1568 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1569 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1570 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1571 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1572 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1573 F:      arch/arm/boot/dts/owl-*
1574 F:      arch/arm/mach-actions/
1575 F:      arch/arm64/boot/dts/actions/
1576 F:      drivers/clk/actions/
1577 F:      drivers/clocksource/timer-owl*
1578 F:      drivers/dma/owl-dma.c
1579 F:      drivers/i2c/busses/i2c-owl.c
1580 F:      drivers/irqchip/irq-owl-sirq.c
1581 F:      drivers/mmc/host/owl-mmc.c
1582 F:      drivers/net/ethernet/actions/
1583 F:      drivers/pinctrl/actions/*
1584 F:      drivers/soc/actions/
1585 F:      include/dt-bindings/power/owl-*
1586 F:      include/dt-bindings/reset/actions,*
1587 F:      include/linux/soc/actions/
1588 N:      owl
1589
1590 ARM/ADS SPHERE MACHINE SUPPORT
1591 M:      Lennert Buytenhek <kernel@wantstofly.org>
1592 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1593 S:      Maintained
1594
1595 ARM/AFEB9260 MACHINE SUPPORT
1596 M:      Sergey Lapin <slapin@ossfans.org>
1597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1598 S:      Maintained
1599
1600 ARM/AJECO 1ARM MACHINE SUPPORT
1601 M:      Lennert Buytenhek <kernel@wantstofly.org>
1602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1603 S:      Maintained
1604
1605 ARM/Allwinner SoC Clock Support
1606 M:      Emilio López <emilio@elopez.com.ar>
1607 S:      Maintained
1608 F:      drivers/clk/sunxi/
1609
1610 ARM/Allwinner sunXi SoC support
1611 M:      Maxime Ripard <mripard@kernel.org>
1612 M:      Chen-Yu Tsai <wens@csie.org>
1613 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1615 S:      Maintained
1616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1617 L:      linux-sunxi@lists.linux.dev
1618 F:      arch/arm/mach-sunxi/
1619 F:      arch/arm64/boot/dts/allwinner/
1620 F:      drivers/clk/sunxi-ng/
1621 F:      drivers/pinctrl/sunxi/
1622 F:      drivers/soc/sunxi/
1623 N:      allwinner
1624 N:      sun[x456789]i
1625 N:      sun50i
1626
1627 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1628 M:      Neil Armstrong <narmstrong@baylibre.com>
1629 M:      Jerome Brunet <jbrunet@baylibre.com>
1630 L:      linux-amlogic@lists.infradead.org
1631 S:      Maintained
1632 F:      Documentation/devicetree/bindings/clock/amlogic*
1633 F:      drivers/clk/meson/
1634 F:      include/dt-bindings/clock/gxbb*
1635 F:      include/dt-bindings/clock/meson*
1636
1637 ARM/Amlogic Meson SoC Crypto Drivers
1638 M:      Corentin Labbe <clabbe@baylibre.com>
1639 L:      linux-crypto@vger.kernel.org
1640 L:      linux-amlogic@lists.infradead.org
1641 S:      Maintained
1642 F:      Documentation/devicetree/bindings/crypto/amlogic*
1643 F:      drivers/crypto/amlogic/
1644
1645 ARM/Amlogic Meson SoC Sound Drivers
1646 M:      Jerome Brunet <jbrunet@baylibre.com>
1647 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1648 S:      Maintained
1649 F:      Documentation/devicetree/bindings/sound/amlogic*
1650 F:      sound/soc/meson/
1651
1652 ARM/Amlogic Meson SoC support
1653 M:      Neil Armstrong <narmstrong@baylibre.com>
1654 M:      Kevin Hilman <khilman@baylibre.com>
1655 R:      Jerome Brunet <jbrunet@baylibre.com>
1656 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 L:      linux-amlogic@lists.infradead.org
1659 S:      Maintained
1660 W:      http://linux-meson.com/
1661 F:      arch/arm/boot/dts/meson*
1662 F:      arch/arm/mach-meson/
1663 F:      arch/arm64/boot/dts/amlogic/
1664 F:      drivers/mmc/host/meson*
1665 F:      drivers/pinctrl/meson/
1666 F:      drivers/rtc/rtc-meson*
1667 F:      drivers/soc/amlogic/
1668 N:      meson
1669
1670 ARM/Annapurna Labs ALPINE ARCHITECTURE
1671 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1672 M:      Antoine Tenart <atenart@kernel.org>
1673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674 S:      Maintained
1675 F:      arch/arm/boot/dts/alpine*
1676 F:      arch/arm/mach-alpine/
1677 F:      arch/arm64/boot/dts/amazon/
1678 F:      drivers/*/*alpine*
1679
1680 ARM/APPLE MACHINE SUPPORT
1681 M:      Hector Martin <marcan@marcan.st>
1682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1683 S:      Maintained
1684 W:      https://asahilinux.org
1685 B:      https://github.com/AsahiLinux/linux/issues
1686 C:      irc://chat.freenode.net/asahi-dev
1687 T:      git https://github.com/AsahiLinux/linux.git
1688 F:      Documentation/devicetree/bindings/arm/apple.yaml
1689 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1690 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1691 F:      arch/arm64/boot/dts/apple/
1692 F:      drivers/irqchip/irq-apple-aic.c
1693 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1694 F:      include/dt-bindings/pinctrl/apple.h
1695
1696 ARM/ARTPEC MACHINE SUPPORT
1697 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1698 M:      Lars Persson <lars.persson@axis.com>
1699 L:      linux-arm-kernel@axis.com
1700 S:      Maintained
1701 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1702 F:      arch/arm/boot/dts/artpec6*
1703 F:      arch/arm/mach-artpec
1704 F:      drivers/clk/axis
1705 F:      drivers/crypto/axis
1706 F:      drivers/mmc/host/usdhi6rol0.c
1707 F:      drivers/pinctrl/pinctrl-artpec*
1708
1709 ARM/ASPEED I2C DRIVER
1710 M:      Brendan Higgins <brendanhiggins@google.com>
1711 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1712 R:      Joel Stanley <joel@jms.id.au>
1713 L:      linux-i2c@vger.kernel.org
1714 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1715 S:      Maintained
1716 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1717 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1718 F:      drivers/i2c/busses/i2c-aspeed.c
1719 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1720
1721 ARM/ASPEED MACHINE SUPPORT
1722 M:      Joel Stanley <joel@jms.id.au>
1723 R:      Andrew Jeffery <andrew@aj.id.au>
1724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1725 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1726 S:      Supported
1727 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1729 F:      arch/arm/boot/dts/aspeed-*
1730 F:      arch/arm/mach-aspeed/
1731 N:      aspeed
1732
1733 ARM/BITMAIN ARCHITECTURE
1734 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 S:      Maintained
1737 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1738 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1739 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1740 F:      arch/arm64/boot/dts/bitmain/
1741 F:      drivers/clk/clk-bm1880.c
1742 F:      drivers/pinctrl/pinctrl-bm1880.c
1743
1744 ARM/CALXEDA HIGHBANK ARCHITECTURE
1745 M:      Andre Przywara <andre.przywara@arm.com>
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748 F:      arch/arm/boot/dts/ecx-*.dts*
1749 F:      arch/arm/boot/dts/highbank.dts
1750 F:      arch/arm/mach-highbank/
1751
1752 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1753 M:      Krzysztof Halasa <khalasa@piap.pl>
1754 S:      Maintained
1755 F:      arch/arm/mach-cns3xxx/
1756
1757 ARM/CAVIUM THUNDER NETWORK DRIVER
1758 M:      Sunil Goutham <sgoutham@marvell.com>
1759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1760 S:      Supported
1761 F:      drivers/net/ethernet/cavium/thunder/
1762
1763 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1764 M:      Lukasz Majewski <lukma@denx.de>
1765 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1766 S:      Maintained
1767 F:      arch/arm/mach-ep93xx/ts72xx.c
1768
1769 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1770 M:      Alexander Shiyan <shc_work@mail.ru>
1771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 S:      Odd Fixes
1773 N:      clps711x
1774
1775 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1776 M:      Lennert Buytenhek <kernel@wantstofly.org>
1777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1778 S:      Maintained
1779
1780 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1781 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1782 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1784 S:      Maintained
1785 F:      arch/arm/mach-ep93xx/
1786 F:      arch/arm/mach-ep93xx/include/mach/
1787
1788 ARM/CLKDEV SUPPORT
1789 M:      Russell King <linux@armlinux.org.uk>
1790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1791 S:      Maintained
1792 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1793 F:      drivers/clk/clkdev.c
1794
1795 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1796 M:      Baruch Siach <baruch@tkos.co.il>
1797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 S:      Maintained
1799 F:      arch/arm/boot/dts/cx92755*
1800 N:      digicolor
1801
1802 ARM/CONTEC MICRO9 MACHINE SUPPORT
1803 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1804 S:      Maintained
1805 F:      arch/arm/mach-ep93xx/micro9.c
1806
1807 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1808 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1809 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1810 R:      Mike Leach <mike.leach@linaro.org>
1811 R:      Leo Yan <leo.yan@linaro.org>
1812 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S:      Maintained
1815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1816 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1817 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1818 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1819 F:      Documentation/devicetree/bindings/arm/coresight.txt
1820 F:      Documentation/devicetree/bindings/arm/ete.yaml
1821 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1822 F:      Documentation/trace/coresight/*
1823 F:      drivers/hwtracing/coresight/*
1824 F:      include/dt-bindings/arm/coresight-cti-dt.h
1825 F:      include/linux/coresight*
1826 F:      tools/perf/arch/arm/util/auxtrace.c
1827 F:      tools/perf/arch/arm/util/cs-etm.c
1828 F:      tools/perf/arch/arm/util/cs-etm.h
1829 F:      tools/perf/arch/arm/util/pmu.c
1830 F:      tools/perf/util/cs-etm-decoder/*
1831 F:      tools/perf/util/cs-etm.*
1832
1833 ARM/CORGI MACHINE SUPPORT
1834 M:      Richard Purdie <rpurdie@rpsys.net>
1835 S:      Maintained
1836
1837 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1838 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1839 M:      Linus Walleij <linus.walleij@linaro.org>
1840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1841 S:      Maintained
1842 T:      git git://github.com/ulli-kroll/linux.git
1843 F:      Documentation/devicetree/bindings/arm/gemini.txt
1844 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1845 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1846 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1847 F:      arch/arm/mach-gemini/
1848 F:      drivers/crypto/gemini/
1849 F:      drivers/net/ethernet/cortina/
1850 F:      drivers/pinctrl/pinctrl-gemini.c
1851 F:      drivers/rtc/rtc-ftrtc010.c
1852
1853 ARM/CZ.NIC TURRIS SUPPORT
1854 M:      Marek Behún <kabel@kernel.org>
1855 S:      Maintained
1856 W:      https://www.turris.cz/
1857 F:      Documentation/ABI/testing/debugfs-moxtet
1858 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1859 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1860 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1861 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1862 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1863 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1864 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1865 F:      drivers/bus/moxtet.c
1866 F:      drivers/firmware/turris-mox-rwtm.c
1867 F:      drivers/leds/leds-turris-omnia.c
1868 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1869 F:      drivers/gpio/gpio-moxtet.c
1870 F:      drivers/watchdog/armada_37xx_wdt.c
1871 F:      include/dt-bindings/bus/moxtet.h
1872 F:      include/linux/armada-37xx-rwtm-mailbox.h
1873 F:      include/linux/moxtet.h
1874
1875 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1876 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1878 S:      Maintained
1879 F:      arch/arm/mach-pxa/ezx.c
1880
1881 ARM/FARADAY FA526 PORT
1882 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1884 S:      Maintained
1885 T:      git git://git.berlios.de/gemini-board
1886 F:      arch/arm/mm/*-fa*
1887
1888 ARM/FOOTBRIDGE ARCHITECTURE
1889 M:      Russell King <linux@armlinux.org.uk>
1890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1891 S:      Maintained
1892 W:      http://www.armlinux.org.uk/
1893 F:      arch/arm/include/asm/hardware/dec21285.h
1894 F:      arch/arm/mach-footbridge/
1895
1896 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1897 M:      Shawn Guo <shawnguo@kernel.org>
1898 M:      Sascha Hauer <s.hauer@pengutronix.de>
1899 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1900 R:      Fabio Estevam <festevam@gmail.com>
1901 R:      NXP Linux Team <linux-imx@nxp.com>
1902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1903 S:      Maintained
1904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1905 X:      drivers/media/i2c/
1906 N:      imx
1907 N:      mxs
1908
1909 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1910 M:      Shawn Guo <shawnguo@kernel.org>
1911 M:      Li Yang <leoyang.li@nxp.com>
1912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 S:      Maintained
1914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1915 F:      arch/arm/boot/dts/ls1021a*
1916 F:      arch/arm64/boot/dts/freescale/fsl-*
1917 F:      arch/arm64/boot/dts/freescale/qoriq-*
1918
1919 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1920 M:      Shawn Guo <shawnguo@kernel.org>
1921 M:      Sascha Hauer <s.hauer@pengutronix.de>
1922 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1923 R:      Stefan Agner <stefan@agner.ch>
1924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1925 S:      Maintained
1926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1927 F:      arch/arm/boot/dts/vf*
1928 F:      arch/arm/mach-imx/*vf610*
1929
1930 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1931 M:      Lennert Buytenhek <kernel@wantstofly.org>
1932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S:      Maintained
1934
1935 ARM/GUMSTIX MACHINE SUPPORT
1936 M:      Steve Sakoman <sakoman@gmail.com>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S:      Maintained
1939
1940 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1941 M:      Philipp Zabel <philipp.zabel@gmail.com>
1942 M:      Paul Parsons <lost.distance@yahoo.com>
1943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1944 S:      Maintained
1945 F:      arch/arm/mach-pxa/hx4700.c
1946 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1947 F:      sound/soc/pxa/hx4700.c
1948
1949 ARM/HISILICON SOC SUPPORT
1950 M:      Wei Xu <xuwei5@hisilicon.com>
1951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1952 S:      Supported
1953 W:      http://www.hisilicon.com
1954 T:      git git://github.com/hisilicon/linux-hisi.git
1955 F:      arch/arm/boot/dts/hi3*
1956 F:      arch/arm/boot/dts/hip*
1957 F:      arch/arm/boot/dts/hisi*
1958 F:      arch/arm/mach-hisi/
1959 F:      arch/arm64/boot/dts/hisilicon/
1960
1961 ARM/HP JORNADA 7XX MACHINE SUPPORT
1962 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1963 S:      Maintained
1964 W:      www.jlime.com
1965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1966 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1967 F:      arch/arm/mach-sa1100/jornada720.c
1968
1969 ARM/IGEP MACHINE SUPPORT
1970 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1971 M:      Javier Martinez Canillas <javier@dowhile0.org>
1972 L:      linux-omap@vger.kernel.org
1973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1974 S:      Maintained
1975 F:      arch/arm/boot/dts/omap3-igep*
1976
1977 ARM/INCOME PXA270 SUPPORT
1978 M:      Marek Vasut <marek.vasut@gmail.com>
1979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S:      Maintained
1981 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1982
1983 ARM/INTEL IOP32X ARM ARCHITECTURE
1984 M:      Lennert Buytenhek <kernel@wantstofly.org>
1985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1986 S:      Maintained
1987
1988 ARM/INTEL IQ81342EX MACHINE SUPPORT
1989 M:      Lennert Buytenhek <kernel@wantstofly.org>
1990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1991 S:      Maintained
1992
1993 ARM/INTEL IXDP2850 MACHINE SUPPORT
1994 M:      Lennert Buytenhek <kernel@wantstofly.org>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S:      Maintained
1997
1998 ARM/INTEL IXP4XX ARM ARCHITECTURE
1999 M:      Linus Walleij <linusw@kernel.org>
2000 M:      Imre Kaloz <kaloz@openwrt.org>
2001 M:      Krzysztof Halasa <khalasa@piap.pl>
2002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2003 S:      Maintained
2004 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2005 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2006 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2007 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2008 F:      arch/arm/mach-ixp4xx/
2009 F:      drivers/clocksource/timer-ixp4xx.c
2010 F:      drivers/crypto/ixp4xx_crypto.c
2011 F:      drivers/gpio/gpio-ixp4xx.c
2012 F:      drivers/irqchip/irq-ixp4xx.c
2013 F:      include/linux/irqchip/irq-ixp4xx.h
2014 F:      include/linux/platform_data/timer-ixp4xx.h
2015
2016 ARM/INTEL KEEMBAY ARCHITECTURE
2017 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2018 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2019 S:      Maintained
2020 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2021 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2022 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2023
2024 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2025 M:      Jonathan Cameron <jic23@cam.ac.uk>
2026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2027 S:      Maintained
2028 F:      arch/arm/mach-pxa/stargate2.c
2029 F:      drivers/pcmcia/pxa2xx_stargate2.c
2030
2031 ARM/INTEL XSC3 (MANZANO) ARM CORE
2032 M:      Lennert Buytenhek <kernel@wantstofly.org>
2033 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2034 S:      Maintained
2035
2036 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2037 M:      Lennert Buytenhek <kernel@wantstofly.org>
2038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 S:      Maintained
2040
2041 ARM/LG1K ARCHITECTURE
2042 M:      Chanho Min <chanho.min@lge.com>
2043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 S:      Maintained
2045 F:      arch/arm64/boot/dts/lg/
2046
2047 ARM/LOGICPD PXA270 MACHINE SUPPORT
2048 M:      Lennert Buytenhek <kernel@wantstofly.org>
2049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2050 S:      Maintained
2051
2052 ARM/LPC18XX ARCHITECTURE
2053 M:      Vladimir Zapolskiy <vz@mleia.com>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2057 F:      arch/arm/boot/dts/lpc43*
2058 F:      drivers/i2c/busses/i2c-lpc2k.c
2059 F:      drivers/memory/pl172.c
2060 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2061 F:      drivers/rtc/rtc-lpc24xx.c
2062 N:      lpc18xx
2063
2064 ARM/LPC32XX SOC SUPPORT
2065 M:      Vladimir Zapolskiy <vz@mleia.com>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 S:      Maintained
2068 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2069 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2070 F:      arch/arm/boot/dts/lpc32*
2071 F:      arch/arm/mach-lpc32xx/
2072 F:      drivers/i2c/busses/i2c-pnx.c
2073 F:      drivers/net/ethernet/nxp/lpc_eth.c
2074 F:      drivers/usb/host/ohci-nxp.c
2075 F:      drivers/watchdog/pnx4008_wdt.c
2076 N:      lpc32xx
2077
2078 ARM/MAGICIAN MACHINE SUPPORT
2079 M:      Philipp Zabel <philipp.zabel@gmail.com>
2080 S:      Maintained
2081
2082 ARM/Marvell Dove/MV78xx0/Orion SOC support
2083 M:      Andrew Lunn <andrew@lunn.ch>
2084 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2085 M:      Gregory Clement <gregory.clement@bootlin.com>
2086 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2087 S:      Maintained
2088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2089 F:      Documentation/devicetree/bindings/soc/dove/
2090 F:      arch/arm/boot/dts/dove*
2091 F:      arch/arm/boot/dts/orion5x*
2092 F:      arch/arm/mach-dove/
2093 F:      arch/arm/mach-mv78xx0/
2094 F:      arch/arm/mach-orion5x/
2095 F:      arch/arm/plat-orion/
2096 F:      drivers/soc/dove/
2097
2098 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2099 M:      Andrew Lunn <andrew@lunn.ch>
2100 M:      Gregory Clement <gregory.clement@bootlin.com>
2101 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 S:      Maintained
2104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2105 F:      arch/arm/boot/dts/armada*
2106 F:      arch/arm/boot/dts/kirkwood*
2107 F:      arch/arm/configs/mvebu_*_defconfig
2108 F:      arch/arm/mach-mvebu/
2109 F:      arch/arm64/boot/dts/marvell/armada*
2110 F:      arch/arm64/boot/dts/marvell/cn913*
2111 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2112 F:      drivers/cpufreq/armada-8k-cpufreq.c
2113 F:      drivers/cpufreq/mvebu-cpufreq.c
2114 F:      drivers/irqchip/irq-armada-370-xp.c
2115 F:      drivers/irqchip/irq-mvebu-*
2116 F:      drivers/pinctrl/mvebu/
2117 F:      drivers/rtc/rtc-armada38x.c
2118
2119 ARM/Mediatek RTC DRIVER
2120 M:      Eddie Huang <eddie.huang@mediatek.com>
2121 M:      Sean Wang <sean.wang@mediatek.com>
2122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2123 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2124 S:      Maintained
2125 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2126 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2127 F:      drivers/rtc/rtc-mt2712.c
2128 F:      drivers/rtc/rtc-mt6397.c
2129 F:      drivers/rtc/rtc-mt7622.c
2130
2131 ARM/Mediatek SoC support
2132 M:      Matthias Brugger <matthias.bgg@gmail.com>
2133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2134 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2135 S:      Maintained
2136 W:      https://mtk.wiki.kernel.org/
2137 C:      irc://chat.freenode.net/linux-mediatek
2138 F:      arch/arm/boot/dts/mt6*
2139 F:      arch/arm/boot/dts/mt7*
2140 F:      arch/arm/boot/dts/mt8*
2141 F:      arch/arm/mach-mediatek/
2142 F:      arch/arm64/boot/dts/mediatek/
2143 F:      drivers/soc/mediatek/
2144 N:      mtk
2145 N:      mt[678]
2146 K:      mediatek
2147
2148 ARM/Mediatek USB3 PHY DRIVER
2149 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2151 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2152 S:      Maintained
2153 F:      Documentation/devicetree/bindings/phy/mediatek,*
2154 F:      drivers/phy/mediatek/
2155
2156 ARM/Microchip (AT91) SoC support
2157 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2158 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2159 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2160 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2161 S:      Supported
2162 W:      http://www.linux4sam.org
2163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2164 F:      arch/arm/boot/dts/at91*.dts
2165 F:      arch/arm/boot/dts/at91*.dtsi
2166 F:      arch/arm/boot/dts/sama*.dts
2167 F:      arch/arm/boot/dts/sama*.dtsi
2168 F:      arch/arm/include/debug/at91.S
2169 F:      arch/arm/mach-at91/
2170 F:      drivers/memory/atmel*
2171 F:      drivers/watchdog/sama5d4_wdt.c
2172 F:      include/soc/at91/
2173 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2174 X:      drivers/net/wireless/atmel/
2175 N:      at91
2176 N:      atmel
2177
2178 ARM/Microchip Sparx5 SoC support
2179 M:      Lars Povlsen <lars.povlsen@microchip.com>
2180 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2181 M:      UNGLinuxDriver@microchip.com
2182 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2183 S:      Supported
2184 T:      git git://github.com/microchip-ung/linux-upstream.git
2185 F:      arch/arm64/boot/dts/microchip/
2186 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2187 N:      sparx5
2188
2189 Microchip Timer Counter Block (TCB) Capture Driver
2190 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 L:      linux-iio@vger.kernel.org
2193 S:      Maintained
2194 F:      drivers/counter/microchip-tcb-capture.c
2195
2196 ARM/MIOA701 MACHINE SUPPORT
2197 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2199 S:      Maintained
2200 F:      arch/arm/mach-pxa/mioa701.c
2201
2202 ARM/MStar/Sigmastar Armv7 SoC support
2203 M:      Daniel Palmer <daniel@thingy.jp>
2204 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2205 S:      Maintained
2206 W:      http://linux-chenxing.org/
2207 F:      Documentation/devicetree/bindings/arm/mstar/*
2208 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2209 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2210 F:      arch/arm/boot/dts/mstar-*
2211 F:      arch/arm/mach-mstar/
2212 F:      drivers/clk/mstar/
2213 F:      drivers/gpio/gpio-msc313.c
2214 F:      include/dt-bindings/clock/mstar-*
2215 F:      include/dt-bindings/gpio/msc313-gpio.h
2216
2217 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2218 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2219 S:      Maintained
2220
2221 ARM/NOMADIK/Ux500 ARCHITECTURES
2222 M:      Linus Walleij <linus.walleij@linaro.org>
2223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2224 S:      Maintained
2225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2226 F:      Documentation/devicetree/bindings/arm/ste-*
2227 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2228 F:      Documentation/devicetree/bindings/arm/ux500/
2229 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2230 F:      arch/arm/boot/dts/ste-*
2231 F:      arch/arm/mach-nomadik/
2232 F:      arch/arm/mach-ux500/
2233 F:      drivers/clk/clk-nomadik.c
2234 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2235 F:      drivers/dma/ste_dma40*
2236 F:      drivers/hwspinlock/u8500_hsem.c
2237 F:      drivers/i2c/busses/i2c-nomadik.c
2238 F:      drivers/iio/adc/ab8500-gpadc.c
2239 F:      drivers/mfd/ab8500*
2240 F:      drivers/mfd/abx500*
2241 F:      drivers/mfd/db8500*
2242 F:      drivers/mfd/dbx500*
2243 F:      drivers/pinctrl/nomadik/
2244 F:      drivers/rtc/rtc-ab8500.c
2245 F:      drivers/rtc/rtc-pl031.c
2246 F:      drivers/soc/ux500/
2247
2248 ARM/NUVOTON NPCM ARCHITECTURE
2249 M:      Avi Fishman <avifishman70@gmail.com>
2250 M:      Tomer Maimon <tmaimon77@gmail.com>
2251 M:      Tali Perry <tali.perry1@gmail.com>
2252 R:      Patrick Venture <venture@google.com>
2253 R:      Nancy Yuen <yuenn@google.com>
2254 R:      Benjamin Fair <benjaminfair@google.com>
2255 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2256 S:      Supported
2257 F:      Documentation/devicetree/bindings/*/*/*npcm*
2258 F:      Documentation/devicetree/bindings/*/*npcm*
2259 F:      arch/arm/boot/dts/nuvoton-npcm*
2260 F:      arch/arm/mach-npcm/
2261 F:      drivers/*/*npcm*
2262 F:      drivers/*/*/*npcm*
2263 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2264
2265 ARM/NUVOTON WPCM450 ARCHITECTURE
2266 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2267 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2268 S:      Maintained
2269 F:      Documentation/devicetree/bindings/*/*wpcm*
2270 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2271 F:      arch/arm/mach-npcm/wpcm450.c
2272 F:      drivers/*/*wpcm*
2273
2274 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2275 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2276 S:      Orphan
2277 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2278 F:      arch/arm/mach-s3c/gta02.h
2279 F:      arch/arm/mach-s3c/mach-gta02.c
2280
2281 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2282 M:      Alexander Clouter <alex@digriz.org.uk>
2283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2284 S:      Maintained
2285 W:      http://www.digriz.org.uk/ts78xx/kernel
2286 F:      arch/arm/mach-orion5x/ts78xx-*
2287
2288 ARM/OXNAS platform support
2289 M:      Neil Armstrong <narmstrong@baylibre.com>
2290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2291 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2292 S:      Maintained
2293 F:      arch/arm/boot/dts/ox8*.dts*
2294 F:      arch/arm/mach-oxnas/
2295 F:      drivers/power/reset/oxnas-restart.c
2296 N:      oxnas
2297
2298 ARM/PALM TREO SUPPORT
2299 M:      Tomas Cech <sleep_walker@suse.com>
2300 L:      linux-arm-kernel@lists.infradead.org
2301 S:      Maintained
2302 W:      http://hackndev.com
2303 F:      arch/arm/mach-pxa/palmtreo.*
2304
2305 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2306 M:      Marek Vasut <marek.vasut@gmail.com>
2307 L:      linux-arm-kernel@lists.infradead.org
2308 S:      Maintained
2309 W:      http://hackndev.com
2310 F:      arch/arm/mach-pxa/include/mach/palmld.h
2311 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2312 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2313 F:      arch/arm/mach-pxa/palmld.c
2314 F:      arch/arm/mach-pxa/palmt5.*
2315 F:      arch/arm/mach-pxa/palmtc.c
2316 F:      arch/arm/mach-pxa/palmte2.*
2317 F:      arch/arm/mach-pxa/palmtx.c
2318
2319 ARM/PALMZ72 SUPPORT
2320 M:      Sergey Lapin <slapin@ossfans.org>
2321 L:      linux-arm-kernel@lists.infradead.org
2322 S:      Maintained
2323 W:      http://hackndev.com
2324 F:      arch/arm/mach-pxa/palmz72.*
2325
2326 ARM/PLEB SUPPORT
2327 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2328 S:      Maintained
2329 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2330
2331 ARM/PT DIGITAL BOARD PORT
2332 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2334 S:      Maintained
2335 W:      http://www.armlinux.org.uk/
2336
2337 ARM/QUALCOMM SUPPORT
2338 M:      Andy Gross <agross@kernel.org>
2339 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2340 L:      linux-arm-msm@vger.kernel.org
2341 S:      Maintained
2342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2343 F:      Documentation/devicetree/bindings/*/qcom*
2344 F:      Documentation/devicetree/bindings/soc/qcom/
2345 F:      arch/arm/boot/dts/qcom-*.dts
2346 F:      arch/arm/boot/dts/qcom-*.dtsi
2347 F:      arch/arm/mach-qcom/
2348 F:      arch/arm64/boot/dts/qcom/
2349 F:      drivers/*/*/qcom*
2350 F:      drivers/*/*/qcom/
2351 F:      drivers/*/pm8???-*
2352 F:      drivers/*/qcom*
2353 F:      drivers/*/qcom/
2354 F:      drivers/bluetooth/btqcomsmd.c
2355 F:      drivers/clocksource/timer-qcom.c
2356 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2357 F:      drivers/extcon/extcon-qcom*
2358 F:      drivers/i2c/busses/i2c-qcom-geni.c
2359 F:      drivers/i2c/busses/i2c-qup.c
2360 F:      drivers/iommu/msm*
2361 F:      drivers/mfd/ssbi.c
2362 F:      drivers/mmc/host/mmci_qcom*
2363 F:      drivers/mmc/host/sdhci-msm.c
2364 F:      drivers/pci/controller/dwc/pcie-qcom.c
2365 F:      drivers/phy/qualcomm/
2366 F:      drivers/power/*/msm*
2367 F:      drivers/reset/reset-qcom-*
2368 F:      drivers/scsi/ufs/ufs-qcom*
2369 F:      drivers/spi/spi-geni-qcom.c
2370 F:      drivers/spi/spi-qcom-qspi.c
2371 F:      drivers/spi/spi-qup.c
2372 F:      drivers/tty/serial/msm_serial.c
2373 F:      drivers/usb/dwc3/dwc3-qcom.c
2374 F:      include/dt-bindings/*/qcom*
2375 F:      include/linux/*/qcom*
2376 F:      include/linux/soc/qcom/
2377
2378 ARM/RADISYS ENP2611 MACHINE SUPPORT
2379 M:      Lennert Buytenhek <kernel@wantstofly.org>
2380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2381 S:      Maintained
2382
2383 ARM/RDA MICRO ARCHITECTURE
2384 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2386 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2387 S:      Maintained
2388 F:      Documentation/devicetree/bindings/arm/rda.yaml
2389 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2390 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2391 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2392 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2393 F:      arch/arm/boot/dts/rda8810pl-*
2394 F:      drivers/clocksource/timer-rda.c
2395 F:      drivers/gpio/gpio-rda.c
2396 F:      drivers/irqchip/irq-rda-intc.c
2397 F:      drivers/tty/serial/rda-uart.c
2398
2399 ARM/REALTEK ARCHITECTURE
2400 M:      Andreas Färber <afaerber@suse.de>
2401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2402 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2403 S:      Maintained
2404 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2405 F:      arch/arm/boot/dts/rtd*
2406 F:      arch/arm/mach-realtek/
2407 F:      arch/arm64/boot/dts/realtek/
2408
2409 ARM/RENESAS ARM64 ARCHITECTURE
2410 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2411 M:      Magnus Damm <magnus.damm@gmail.com>
2412 L:      linux-renesas-soc@vger.kernel.org
2413 S:      Supported
2414 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2416 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2417 F:      arch/arm64/boot/dts/renesas/
2418 F:      drivers/soc/renesas/
2419 F:      include/linux/soc/renesas/
2420
2421 ARM/RISCPC ARCHITECTURE
2422 M:      Russell King <linux@armlinux.org.uk>
2423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2424 S:      Maintained
2425 W:      http://www.armlinux.org.uk/
2426 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2427 F:      arch/arm/include/asm/hardware/ioc.h
2428 F:      arch/arm/include/asm/hardware/iomd.h
2429 F:      arch/arm/include/asm/hardware/memc.h
2430 F:      arch/arm/mach-rpc/
2431 F:      drivers/net/ethernet/8390/etherh.c
2432 F:      drivers/net/ethernet/i825xx/ether1*
2433 F:      drivers/net/ethernet/seeq/ether3*
2434 F:      drivers/scsi/arm/
2435
2436 ARM/Rockchip SoC support
2437 M:      Heiko Stuebner <heiko@sntech.de>
2438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2439 L:      linux-rockchip@lists.infradead.org
2440 S:      Maintained
2441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2442 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2443 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2444 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2445 F:      arch/arm/boot/dts/rk3*
2446 F:      arch/arm/boot/dts/rv1108*
2447 F:      arch/arm/mach-rockchip/
2448 F:      drivers/*/*/*rockchip*
2449 F:      drivers/*/*rockchip*
2450 F:      drivers/clk/rockchip/
2451 F:      drivers/i2c/busses/i2c-rk3x.c
2452 F:      sound/soc/rockchip/
2453 N:      rockchip
2454
2455 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2456 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2458 L:      linux-samsung-soc@vger.kernel.org
2459 S:      Maintained
2460 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2461 F:      Documentation/arm/samsung/
2462 F:      Documentation/devicetree/bindings/arm/samsung/
2463 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2464 F:      arch/arm/boot/dts/exynos*
2465 F:      arch/arm/boot/dts/s3c*
2466 F:      arch/arm/boot/dts/s5p*
2467 F:      arch/arm/mach-exynos*/
2468 F:      arch/arm/mach-s3c/
2469 F:      arch/arm/mach-s5p*/
2470 F:      arch/arm64/boot/dts/exynos/
2471 F:      drivers/*/*/*s3c24*
2472 F:      drivers/*/*s3c24*
2473 F:      drivers/*/*s3c64xx*
2474 F:      drivers/*/*s5pv210*
2475 F:      drivers/memory/samsung/
2476 F:      drivers/soc/samsung/
2477 F:      drivers/tty/serial/samsung*
2478 F:      include/linux/platform_data/*s3c*
2479 F:      include/linux/serial_s3c.h
2480 F:      include/linux/soc/samsung/
2481 N:      exynos
2482 N:      s3c2410
2483 N:      s3c64xx
2484 N:      s5pv210
2485
2486 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2487 M:      Andrzej Hajda <a.hajda@samsung.com>
2488 L:      linux-arm-kernel@lists.infradead.org
2489 L:      linux-media@vger.kernel.org
2490 S:      Maintained
2491 F:      drivers/media/platform/s5p-g2d/
2492
2493 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2494 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2495 L:      linux-samsung-soc@vger.kernel.org
2496 L:      linux-media@vger.kernel.org
2497 S:      Maintained
2498 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2499 F:      drivers/media/cec/platform/s5p/
2500
2501 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2502 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2503 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2504 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2505 L:      linux-arm-kernel@lists.infradead.org
2506 L:      linux-media@vger.kernel.org
2507 S:      Maintained
2508 F:      drivers/media/platform/s5p-jpeg/
2509
2510 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2511 M:      Andrzej Hajda <a.hajda@samsung.com>
2512 L:      linux-arm-kernel@lists.infradead.org
2513 L:      linux-media@vger.kernel.org
2514 S:      Maintained
2515 F:      drivers/media/platform/s5p-mfc/
2516
2517 ARM/SHMOBILE ARM ARCHITECTURE
2518 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2519 M:      Magnus Damm <magnus.damm@gmail.com>
2520 L:      linux-renesas-soc@vger.kernel.org
2521 S:      Supported
2522 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2524 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2525 F:      arch/arm/boot/dts/emev2*
2526 F:      arch/arm/boot/dts/gr-peach*
2527 F:      arch/arm/boot/dts/iwg20d-q7*
2528 F:      arch/arm/boot/dts/r7s*
2529 F:      arch/arm/boot/dts/r8a*
2530 F:      arch/arm/boot/dts/r9a*
2531 F:      arch/arm/boot/dts/sh*
2532 F:      arch/arm/configs/shmobile_defconfig
2533 F:      arch/arm/include/debug/renesas-scif.S
2534 F:      arch/arm/mach-shmobile/
2535 F:      drivers/soc/renesas/
2536 F:      include/linux/soc/renesas/
2537
2538 ARM/SOCFPGA ARCHITECTURE
2539 M:      Dinh Nguyen <dinguyen@kernel.org>
2540 S:      Maintained
2541 W:      http://www.rocketboards.org
2542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2543 F:      arch/arm/boot/dts/socfpga*
2544 F:      arch/arm/configs/socfpga_defconfig
2545 F:      arch/arm/mach-socfpga/
2546 F:      arch/arm64/boot/dts/altera/
2547 F:      arch/arm64/boot/dts/intel/
2548
2549 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2550 M:      Dinh Nguyen <dinguyen@kernel.org>
2551 S:      Maintained
2552 F:      drivers/clk/socfpga/
2553
2554 ARM/SOCFPGA EDAC SUPPORT
2555 M:      Dinh Nguyen <dinguyen@kernel.org>
2556 S:      Maintained
2557 F:      drivers/edac/altera_edac.[ch]
2558
2559 ARM/SPREADTRUM SoC SUPPORT
2560 M:      Orson Zhai <orsonzhai@gmail.com>
2561 M:      Baolin Wang <baolin.wang7@gmail.com>
2562 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2563 S:      Maintained
2564 F:      arch/arm64/boot/dts/sprd
2565 N:      sprd
2566 N:      sc27xx
2567 N:      sc2731
2568
2569 ARM/STI ARCHITECTURE
2570 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2572 S:      Maintained
2573 W:      http://www.stlinux.com
2574 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2575 F:      arch/arm/boot/dts/sti*
2576 F:      arch/arm/mach-sti/
2577 F:      drivers/ata/ahci_st.c
2578 F:      drivers/char/hw_random/st-rng.c
2579 F:      drivers/clocksource/arm_global_timer.c
2580 F:      drivers/clocksource/clksrc_st_lpc.c
2581 F:      drivers/cpufreq/sti-cpufreq.c
2582 F:      drivers/dma/st_fdma*
2583 F:      drivers/i2c/busses/i2c-st.c
2584 F:      drivers/media/platform/sti/c8sectpfe/
2585 F:      drivers/media/rc/st_rc.c
2586 F:      drivers/mmc/host/sdhci-st.c
2587 F:      drivers/phy/st/phy-miphy28lp.c
2588 F:      drivers/phy/st/phy-stih407-usb.c
2589 F:      drivers/pinctrl/pinctrl-st.c
2590 F:      drivers/remoteproc/st_remoteproc.c
2591 F:      drivers/remoteproc/st_slim_rproc.c
2592 F:      drivers/reset/sti/
2593 F:      drivers/rtc/rtc-st-lpc.c
2594 F:      drivers/tty/serial/st-asc.c
2595 F:      drivers/usb/dwc3/dwc3-st.c
2596 F:      drivers/usb/host/ehci-st.c
2597 F:      drivers/usb/host/ohci-st.c
2598 F:      drivers/watchdog/st_lpc_wdt.c
2599 F:      include/linux/remoteproc/st_slim_rproc.h
2600
2601 ARM/STM32 ARCHITECTURE
2602 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2603 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2604 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2606 S:      Maintained
2607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2608 F:      arch/arm/boot/dts/stm32*
2609 F:      arch/arm/mach-stm32/
2610 F:      drivers/clocksource/armv7m_systick.c
2611 N:      stm32
2612 N:      stm
2613
2614 ARM/Synaptics SoC support
2615 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2616 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2618 S:      Maintained
2619 F:      arch/arm/boot/dts/berlin*
2620 F:      arch/arm/mach-berlin/
2621 F:      arch/arm64/boot/dts/synaptics/
2622
2623 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2624 M:      Lennert Buytenhek <kernel@wantstofly.org>
2625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2626 S:      Maintained
2627
2628 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2629 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2630 L:      linux-tegra@vger.kernel.org
2631 L:      linux-media@vger.kernel.org
2632 S:      Maintained
2633 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2634 F:      drivers/media/cec/platform/tegra/
2635
2636 ARM/TETON BGA MACHINE SUPPORT
2637 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2639 S:      Maintained
2640
2641 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2642 M:      Santosh Shilimkar <ssantosh@kernel.org>
2643 L:      linux-kernel@vger.kernel.org
2644 S:      Maintained
2645 F:      drivers/memory/*emif*
2646
2647 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2648 M:      Santosh Shilimkar <ssantosh@kernel.org>
2649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2650 S:      Maintained
2651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2652 F:      arch/arm/boot/dts/keystone-*
2653 F:      arch/arm/mach-keystone/
2654
2655 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2656 M:      Santosh Shilimkar <ssantosh@kernel.org>
2657 L:      linux-kernel@vger.kernel.org
2658 S:      Maintained
2659 F:      drivers/clk/keystone/
2660
2661 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2662 M:      Santosh Shilimkar <ssantosh@kernel.org>
2663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2664 L:      linux-kernel@vger.kernel.org
2665 S:      Maintained
2666 F:      drivers/clocksource/timer-keystone.c
2667
2668 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2669 M:      Santosh Shilimkar <ssantosh@kernel.org>
2670 L:      linux-kernel@vger.kernel.org
2671 S:      Maintained
2672 F:      drivers/power/reset/keystone-reset.c
2673
2674 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2675 M:      Nishanth Menon <nm@ti.com>
2676 M:      Tero Kristo <kristo@kernel.org>
2677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2678 S:      Supported
2679 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2680 F:      arch/arm64/boot/dts/ti/Makefile
2681 F:      arch/arm64/boot/dts/ti/k3-*
2682 F:      include/dt-bindings/pinctrl/k3.h
2683
2684 ARM/THECUS N2100 MACHINE SUPPORT
2685 M:      Lennert Buytenhek <kernel@wantstofly.org>
2686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2687 S:      Maintained
2688
2689 ARM/TOSA MACHINE SUPPORT
2690 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2691 M:      Dirk Opfer <dirk@opfer-online.de>
2692 S:      Maintained
2693
2694 ARM/TOSHIBA VISCONTI ARCHITECTURE
2695 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2697 S:      Supported
2698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2699 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2700 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2701 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2702 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2703 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2704 F:      arch/arm64/boot/dts/toshiba/
2705 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2706 F:      drivers/gpio/gpio-visconti.c
2707 F:      drivers/pinctrl/visconti/
2708 F:      drivers/watchdog/visconti_wdt.c
2709 N:      visconti
2710
2711 ARM/UNIPHIER ARCHITECTURE
2712 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2713 M:      Masami Hiramatsu <mhiramat@kernel.org>
2714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2715 S:      Maintained
2716 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2717 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2718 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2719 F:      arch/arm/boot/dts/uniphier*
2720 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2721 F:      arch/arm/mach-uniphier/
2722 F:      arch/arm/mm/cache-uniphier.c
2723 F:      arch/arm64/boot/dts/socionext/uniphier*
2724 F:      drivers/bus/uniphier-system-bus.c
2725 F:      drivers/clk/uniphier/
2726 F:      drivers/dma/uniphier-mdmac.c
2727 F:      drivers/gpio/gpio-uniphier.c
2728 F:      drivers/i2c/busses/i2c-uniphier*
2729 F:      drivers/irqchip/irq-uniphier-aidet.c
2730 F:      drivers/mmc/host/uniphier-sd.c
2731 F:      drivers/pinctrl/uniphier/
2732 F:      drivers/reset/reset-uniphier.c
2733 F:      drivers/tty/serial/8250/8250_uniphier.c
2734 N:      uniphier
2735
2736 ARM/VERSATILE EXPRESS PLATFORM
2737 M:      Liviu Dudau <liviu.dudau@arm.com>
2738 M:      Sudeep Holla <sudeep.holla@arm.com>
2739 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2741 S:      Maintained
2742 F:      */*/*/vexpress*
2743 F:      */*/vexpress*
2744 F:      arch/arm/boot/dts/vexpress*
2745 F:      arch/arm/mach-vexpress/
2746 F:      arch/arm64/boot/dts/arm/
2747 F:      drivers/clk/versatile/clk-vexpress-osc.c
2748 F:      drivers/clocksource/timer-versatile.c
2749 N:      mps2
2750
2751 ARM/VFP SUPPORT
2752 M:      Russell King <linux@armlinux.org.uk>
2753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2754 S:      Maintained
2755 W:      http://www.armlinux.org.uk/
2756 F:      arch/arm/vfp/
2757
2758 ARM/VOIPAC PXA270 SUPPORT
2759 M:      Marek Vasut <marek.vasut@gmail.com>
2760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2761 S:      Maintained
2762 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2763 F:      arch/arm/mach-pxa/vpac270.c
2764
2765 ARM/VT8500 ARM ARCHITECTURE
2766 M:      Tony Prisk <linux@prisktech.co.nz>
2767 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2768 S:      Maintained
2769 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2770 F:      arch/arm/mach-vt8500/
2771 F:      drivers/clocksource/timer-vt8500.c
2772 F:      drivers/i2c/busses/i2c-wmt.c
2773 F:      drivers/mmc/host/wmt-sdmmc.c
2774 F:      drivers/pwm/pwm-vt8500.c
2775 F:      drivers/rtc/rtc-vt8500.c
2776 F:      drivers/tty/serial/vt8500_serial.c
2777 F:      drivers/usb/host/ehci-platform.c
2778 F:      drivers/usb/host/uhci-platform.c
2779 F:      drivers/video/fbdev/vt8500lcdfb.*
2780 F:      drivers/video/fbdev/wm8505fb*
2781 F:      drivers/video/fbdev/wmt_ge_rops.*
2782
2783 ARM/ZIPIT Z2 SUPPORT
2784 M:      Marek Vasut <marek.vasut@gmail.com>
2785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2786 S:      Maintained
2787 F:      arch/arm/mach-pxa/include/mach/z2.h
2788 F:      arch/arm/mach-pxa/z2.c
2789
2790 ARM/ZYNQ ARCHITECTURE
2791 M:      Michal Simek <michal.simek@xilinx.com>
2792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2793 S:      Supported
2794 W:      http://wiki.xilinx.com
2795 T:      git https://github.com/Xilinx/linux-xlnx.git
2796 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2797 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2798 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2799 F:      arch/arm/mach-zynq/
2800 F:      drivers/clocksource/timer-cadence-ttc.c
2801 F:      drivers/cpuidle/cpuidle-zynq.c
2802 F:      drivers/edac/synopsys_edac.c
2803 F:      drivers/i2c/busses/i2c-cadence.c
2804 F:      drivers/i2c/busses/i2c-xiic.c
2805 F:      drivers/mmc/host/sdhci-of-arasan.c
2806 N:      zynq
2807 N:      xilinx
2808
2809 ARM64 PORT (AARCH64 ARCHITECTURE)
2810 M:      Catalin Marinas <catalin.marinas@arm.com>
2811 M:      Will Deacon <will@kernel.org>
2812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2813 S:      Maintained
2814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2815 F:      Documentation/arm64/
2816 F:      arch/arm64/
2817 F:      tools/testing/selftests/arm64/
2818 X:      arch/arm64/boot/dts/
2819
2820 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2821 M:      George McCollister <george.mccollister@gmail.com>
2822 L:      netdev@vger.kernel.org
2823 S:      Maintained
2824 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2825 F:      drivers/net/dsa/xrs700x/*
2826 F:      net/dsa/tag_xrs700x.c
2827
2828 AS3645A LED FLASH CONTROLLER DRIVER
2829 M:      Sakari Ailus <sakari.ailus@iki.fi>
2830 L:      linux-leds@vger.kernel.org
2831 S:      Maintained
2832 F:      drivers/leds/leds-as3645a.c
2833
2834 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2835 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2836 L:      linux-media@vger.kernel.org
2837 S:      Maintained
2838 T:      git git://linuxtv.org/media_tree.git
2839 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2840 F:      drivers/media/i2c/ak7375.c
2841
2842 ASAHI KASEI AK8974 DRIVER
2843 M:      Linus Walleij <linus.walleij@linaro.org>
2844 L:      linux-iio@vger.kernel.org
2845 S:      Supported
2846 W:      http://www.akm.com/
2847 F:      drivers/iio/magnetometer/ak8974.c
2848
2849 ASC7621 HARDWARE MONITOR DRIVER
2850 M:      George Joseph <george.joseph@fairview5.com>
2851 L:      linux-hwmon@vger.kernel.org
2852 S:      Maintained
2853 F:      Documentation/hwmon/asc7621.rst
2854 F:      drivers/hwmon/asc7621.c
2855
2856 ASPEED PINCTRL DRIVERS
2857 M:      Andrew Jeffery <andrew@aj.id.au>
2858 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2859 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2860 L:      linux-gpio@vger.kernel.org
2861 S:      Maintained
2862 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2863 F:      drivers/pinctrl/aspeed/
2864
2865 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2866 M:      Eddie James <eajames@linux.ibm.com>
2867 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2868 S:      Maintained
2869 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2870 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2871 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2872
2873 ASPEED SD/MMC DRIVER
2874 M:      Andrew Jeffery <andrew@aj.id.au>
2875 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2876 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2877 L:      linux-mmc@vger.kernel.org
2878 S:      Maintained
2879 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2880 F:      drivers/mmc/host/sdhci-of-aspeed*
2881
2882 ASPEED VIDEO ENGINE DRIVER
2883 M:      Eddie James <eajames@linux.ibm.com>
2884 L:      linux-media@vger.kernel.org
2885 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2886 S:      Maintained
2887 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2888 F:      drivers/media/platform/aspeed-video.c
2889
2890 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2891 M:      Corentin Chary <corentin.chary@gmail.com>
2892 L:      acpi4asus-user@lists.sourceforge.net
2893 L:      platform-driver-x86@vger.kernel.org
2894 S:      Maintained
2895 W:      http://acpi4asus.sf.net
2896 F:      drivers/platform/x86/asus*.c
2897 F:      drivers/platform/x86/eeepc*.c
2898
2899 ASUS WIRELESS RADIO CONTROL DRIVER
2900 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2901 L:      platform-driver-x86@vger.kernel.org
2902 S:      Maintained
2903 F:      drivers/platform/x86/asus-wireless.c
2904
2905 ASYMMETRIC KEYS
2906 M:      David Howells <dhowells@redhat.com>
2907 L:      keyrings@vger.kernel.org
2908 S:      Maintained
2909 F:      Documentation/crypto/asymmetric-keys.rst
2910 F:      crypto/asymmetric_keys/
2911 F:      include/crypto/pkcs7.h
2912 F:      include/crypto/public_key.h
2913 F:      include/linux/verification.h
2914
2915 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2916 R:      Dan Williams <dan.j.williams@intel.com>
2917 S:      Odd fixes
2918 W:      http://sourceforge.net/projects/xscaleiop
2919 F:      Documentation/crypto/async-tx-api.rst
2920 F:      crypto/async_tx/
2921 F:      include/linux/async_tx.h
2922
2923 AT24 EEPROM DRIVER
2924 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2925 L:      linux-i2c@vger.kernel.org
2926 S:      Maintained
2927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2928 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2929 F:      drivers/misc/eeprom/at24.c
2930
2931 ATA OVER ETHERNET (AOE) DRIVER
2932 M:      "Justin Sanders" <justin@coraid.com>
2933 S:      Supported
2934 W:      http://www.openaoe.org/
2935 F:      Documentation/admin-guide/aoe/
2936 F:      drivers/block/aoe/
2937
2938 ATC260X PMIC MFD DRIVER
2939 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2940 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2941 L:      linux-actions@lists.infradead.org
2942 S:      Maintained
2943 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2944 F:      drivers/input/misc/atc260x-onkey.c
2945 F:      drivers/mfd/atc260*
2946 F:      drivers/power/reset/atc260x-poweroff.c
2947 F:      drivers/regulator/atc260x-regulator.c
2948 F:      include/linux/mfd/atc260x/*
2949
2950 ATHEROS 71XX/9XXX GPIO DRIVER
2951 M:      Alban Bedel <albeu@free.fr>
2952 S:      Maintained
2953 W:      https://github.com/AlbanBedel/linux
2954 T:      git git://github.com/AlbanBedel/linux
2955 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2956 F:      drivers/gpio/gpio-ath79.c
2957
2958 ATHEROS 71XX/9XXX USB PHY DRIVER
2959 M:      Alban Bedel <albeu@free.fr>
2960 S:      Maintained
2961 W:      https://github.com/AlbanBedel/linux
2962 T:      git git://github.com/AlbanBedel/linux
2963 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2964 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2965
2966 ATHEROS ATH GENERIC UTILITIES
2967 M:      Kalle Valo <kvalo@codeaurora.org>
2968 L:      linux-wireless@vger.kernel.org
2969 S:      Supported
2970 F:      drivers/net/wireless/ath/*
2971
2972 ATHEROS ATH5K WIRELESS DRIVER
2973 M:      Jiri Slaby <jirislaby@kernel.org>
2974 M:      Nick Kossifidis <mickflemm@gmail.com>
2975 M:      Luis Chamberlain <mcgrof@kernel.org>
2976 L:      linux-wireless@vger.kernel.org
2977 S:      Maintained
2978 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2979 F:      drivers/net/wireless/ath/ath5k/
2980
2981 ATHEROS ATH6KL WIRELESS DRIVER
2982 M:      Kalle Valo <kvalo@codeaurora.org>
2983 L:      linux-wireless@vger.kernel.org
2984 S:      Supported
2985 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2987 F:      drivers/net/wireless/ath/ath6kl/
2988
2989 ATI_REMOTE2 DRIVER
2990 M:      Ville Syrjala <syrjala@sci.fi>
2991 S:      Maintained
2992 F:      drivers/input/misc/ati_remote2.c
2993
2994 ATK0110 HWMON DRIVER
2995 M:      Luca Tettamanti <kronos.it@gmail.com>
2996 L:      linux-hwmon@vger.kernel.org
2997 S:      Maintained
2998 F:      drivers/hwmon/asus_atk0110.c
2999
3000 ATLX ETHERNET DRIVERS
3001 M:      Chris Snook <chris.snook@gmail.com>
3002 L:      netdev@vger.kernel.org
3003 S:      Maintained
3004 W:      http://sourceforge.net/projects/atl1
3005 W:      http://atl1.sourceforge.net
3006 F:      drivers/net/ethernet/atheros/
3007
3008 ATM
3009 M:      Chas Williams <3chas3@gmail.com>
3010 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3011 L:      netdev@vger.kernel.org
3012 S:      Maintained
3013 W:      http://linux-atm.sourceforge.net
3014 F:      drivers/atm/
3015 F:      include/linux/atm*
3016 F:      include/uapi/linux/atm*
3017
3018 ATMEL MACB ETHERNET DRIVER
3019 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3020 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3021 S:      Supported
3022 F:      drivers/net/ethernet/cadence/
3023
3024 ATMEL MAXTOUCH DRIVER
3025 M:      Nick Dyer <nick@shmanahar.org>
3026 S:      Maintained
3027 T:      git git://github.com/ndyer/linux.git
3028 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3029 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3030
3031 ATMEL WIRELESS DRIVER
3032 M:      Simon Kelley <simon@thekelleys.org.uk>
3033 L:      linux-wireless@vger.kernel.org
3034 S:      Maintained
3035 W:      http://www.thekelleys.org.uk/atmel
3036 W:      http://atmelwlandriver.sourceforge.net/
3037 F:      drivers/net/wireless/atmel/atmel*
3038
3039 ATOMIC INFRASTRUCTURE
3040 M:      Will Deacon <will@kernel.org>
3041 M:      Peter Zijlstra <peterz@infradead.org>
3042 R:      Boqun Feng <boqun.feng@gmail.com>
3043 L:      linux-kernel@vger.kernel.org
3044 S:      Maintained
3045 F:      arch/*/include/asm/atomic*.h
3046 F:      include/*/atomic*.h
3047 F:      include/linux/refcount.h
3048 F:      Documentation/atomic_*.txt
3049 F:      scripts/atomic/
3050
3051 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3052 M:      Bradley Grove <linuxdrivers@attotech.com>
3053 L:      linux-scsi@vger.kernel.org
3054 S:      Supported
3055 W:      http://www.attotech.com
3056 F:      drivers/scsi/esas2r
3057
3058 ATUSB IEEE 802.15.4 RADIO DRIVER
3059 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3060 L:      linux-wpan@vger.kernel.org
3061 S:      Maintained
3062 F:      drivers/net/ieee802154/at86rf230.h
3063 F:      drivers/net/ieee802154/atusb.c
3064 F:      drivers/net/ieee802154/atusb.h
3065
3066 AUDIT SUBSYSTEM
3067 M:      Paul Moore <paul@paul-moore.com>
3068 M:      Eric Paris <eparis@redhat.com>
3069 L:      linux-audit@redhat.com (moderated for non-subscribers)
3070 S:      Supported
3071 W:      https://github.com/linux-audit
3072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3073 F:      include/asm-generic/audit_*.h
3074 F:      include/linux/audit.h
3075 F:      include/uapi/linux/audit.h
3076 F:      kernel/audit*
3077 F:      lib/*audit.c
3078
3079 AUXILIARY DISPLAY DRIVERS
3080 M:      Miguel Ojeda <ojeda@kernel.org>
3081 S:      Maintained
3082 F:      drivers/auxdisplay/
3083 F:      include/linux/cfag12864b.h
3084
3085 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3086 M:      Andreas Klinger <ak@it-klinger.de>
3087 L:      linux-iio@vger.kernel.org
3088 S:      Maintained
3089 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3090 F:      drivers/iio/adc/hx711.c
3091
3092 AX.25 NETWORK LAYER
3093 M:      Ralf Baechle <ralf@linux-mips.org>
3094 L:      linux-hams@vger.kernel.org
3095 S:      Maintained
3096 W:      http://www.linux-ax25.org/
3097 F:      include/net/ax25.h
3098 F:      include/uapi/linux/ax25.h
3099 F:      net/ax25/
3100
3101 AXENTIA ARM DEVICES
3102 M:      Peter Rosin <peda@axentia.se>
3103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3104 S:      Maintained
3105 F:      arch/arm/boot/dts/at91-linea.dtsi
3106 F:      arch/arm/boot/dts/at91-natte.dtsi
3107 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3108 F:      arch/arm/boot/dts/at91-tse850-3.dts
3109
3110 AXENTIA ASOC DRIVERS
3111 M:      Peter Rosin <peda@axentia.se>
3112 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3113 S:      Maintained
3114 F:      Documentation/devicetree/bindings/sound/axentia,*
3115 F:      sound/soc/atmel/tse850-pcm5142.c
3116
3117 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3118 M:      Nuno Sá <nuno.sa@analog.com>
3119 L:      linux-hwmon@vger.kernel.org
3120 S:      Supported
3121 W:      http://ez.analog.com/community/linux-device-drivers
3122 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3123 F:      drivers/hwmon/axi-fan-control.c
3124
3125 AXXIA I2C CONTROLLER
3126 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3127 L:      linux-i2c@vger.kernel.org
3128 S:      Maintained
3129 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3130 F:      drivers/i2c/busses/i2c-axxia.c
3131
3132 AZ6007 DVB DRIVER
3133 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3134 L:      linux-media@vger.kernel.org
3135 S:      Maintained
3136 W:      https://linuxtv.org
3137 T:      git git://linuxtv.org/media_tree.git
3138 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3139
3140 AZTECH FM RADIO RECEIVER DRIVER
3141 M:      Hans Verkuil <hverkuil@xs4all.nl>
3142 L:      linux-media@vger.kernel.org
3143 S:      Maintained
3144 W:      https://linuxtv.org
3145 T:      git git://linuxtv.org/media_tree.git
3146 F:      drivers/media/radio/radio-aztech*
3147
3148 B43 WIRELESS DRIVER
3149 L:      linux-wireless@vger.kernel.org
3150 L:      b43-dev@lists.infradead.org
3151 S:      Odd Fixes
3152 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3153 F:      drivers/net/wireless/broadcom/b43/
3154
3155 B43LEGACY WIRELESS DRIVER
3156 M:      Larry Finger <Larry.Finger@lwfinger.net>
3157 L:      linux-wireless@vger.kernel.org
3158 L:      b43-dev@lists.infradead.org
3159 S:      Maintained
3160 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3161 F:      drivers/net/wireless/broadcom/b43legacy/
3162
3163 BACKLIGHT CLASS/SUBSYSTEM
3164 M:      Lee Jones <lee.jones@linaro.org>
3165 M:      Daniel Thompson <daniel.thompson@linaro.org>
3166 M:      Jingoo Han <jingoohan1@gmail.com>
3167 L:      dri-devel@lists.freedesktop.org
3168 S:      Maintained
3169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3170 F:      Documentation/ABI/stable/sysfs-class-backlight
3171 F:      Documentation/ABI/testing/sysfs-class-backlight
3172 F:      Documentation/devicetree/bindings/leds/backlight
3173 F:      drivers/video/backlight/
3174 F:      include/linux/backlight.h
3175 F:      include/linux/pwm_backlight.h
3176
3177 BATMAN ADVANCED
3178 M:      Marek Lindner <mareklindner@neomailbox.ch>
3179 M:      Simon Wunderlich <sw@simonwunderlich.de>
3180 M:      Antonio Quartulli <a@unstable.cc>
3181 M:      Sven Eckelmann <sven@narfation.org>
3182 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3183 S:      Maintained
3184 W:      https://www.open-mesh.org/
3185 Q:      https://patchwork.open-mesh.org/project/batman/list/
3186 B:      https://www.open-mesh.org/projects/batman-adv/issues
3187 C:      irc://chat.freenode.net/batman
3188 T:      git https://git.open-mesh.org/linux-merge.git
3189 F:      Documentation/networking/batman-adv.rst
3190 F:      include/uapi/linux/batadv_packet.h
3191 F:      include/uapi/linux/batman_adv.h
3192 F:      net/batman-adv/
3193
3194 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3195 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3196 L:      linux-hams@vger.kernel.org
3197 S:      Maintained
3198 W:      http://www.baycom.org/~tom/ham/ham.html
3199 F:      drivers/net/hamradio/baycom*
3200
3201 BCACHE (BLOCK LAYER CACHE)
3202 M:      Coly Li <colyli@suse.de>
3203 M:      Kent Overstreet <kent.overstreet@gmail.com>
3204 L:      linux-bcache@vger.kernel.org
3205 S:      Maintained
3206 W:      http://bcache.evilpiepirate.org
3207 C:      irc://irc.oftc.net/bcache
3208 F:      drivers/md/bcache/
3209
3210 BDISP ST MEDIA DRIVER
3211 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3212 L:      linux-media@vger.kernel.org
3213 S:      Supported
3214 W:      https://linuxtv.org
3215 T:      git git://linuxtv.org/media_tree.git
3216 F:      drivers/media/platform/sti/bdisp
3217
3218 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3219 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3220 L:      netdev@vger.kernel.org
3221 S:      Maintained
3222 F:      drivers/net/ethernet/ec_bhf.c
3223
3224 BEFS FILE SYSTEM
3225 M:      Luis de Bethencourt <luisbg@kernel.org>
3226 M:      Salah Triki <salah.triki@gmail.com>
3227 S:      Maintained
3228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3229 F:      Documentation/filesystems/befs.rst
3230 F:      fs/befs/
3231
3232 BFQ I/O SCHEDULER
3233 M:      Paolo Valente <paolo.valente@linaro.org>
3234 M:      Jens Axboe <axboe@kernel.dk>
3235 L:      linux-block@vger.kernel.org
3236 S:      Maintained
3237 F:      Documentation/block/bfq-iosched.rst
3238 F:      block/bfq-*
3239
3240 BFS FILE SYSTEM
3241 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3242 S:      Maintained
3243 F:      Documentation/filesystems/bfs.rst
3244 F:      fs/bfs/
3245 F:      include/uapi/linux/bfs_fs.h
3246
3247 BITMAP API
3248 M:      Yury Norov <yury.norov@gmail.com>
3249 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3250 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3251 S:      Maintained
3252 F:      include/asm-generic/bitops/find.h
3253 F:      include/linux/bitmap.h
3254 F:      lib/bitmap.c
3255 F:      lib/find_bit.c
3256 F:      lib/find_bit_benchmark.c
3257 F:      lib/test_bitmap.c
3258 F:      tools/include/asm-generic/bitops/find.h
3259 F:      tools/include/linux/bitmap.h
3260 F:      tools/lib/bitmap.c
3261 F:      tools/lib/find_bit.c
3262
3263 BLINKM RGB LED DRIVER
3264 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3265 S:      Maintained
3266 F:      drivers/leds/leds-blinkm.c
3267
3268 BLOCK LAYER
3269 M:      Jens Axboe <axboe@kernel.dk>
3270 L:      linux-block@vger.kernel.org
3271 S:      Maintained
3272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3273 F:      block/
3274 F:      drivers/block/
3275 F:      fs/block_dev.c
3276 F:      include/linux/blk*
3277 F:      kernel/trace/blktrace.c
3278 F:      lib/sbitmap.c
3279
3280 BLOCK2MTD DRIVER
3281 M:      Joern Engel <joern@lazybastard.org>
3282 L:      linux-mtd@lists.infradead.org
3283 S:      Maintained
3284 F:      drivers/mtd/devices/block2mtd.c
3285
3286 BLUETOOTH DRIVERS
3287 M:      Marcel Holtmann <marcel@holtmann.org>
3288 M:      Johan Hedberg <johan.hedberg@gmail.com>
3289 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3290 L:      linux-bluetooth@vger.kernel.org
3291 S:      Supported
3292 W:      http://www.bluez.org/
3293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3295 F:      drivers/bluetooth/
3296
3297 BLUETOOTH SUBSYSTEM
3298 M:      Marcel Holtmann <marcel@holtmann.org>
3299 M:      Johan Hedberg <johan.hedberg@gmail.com>
3300 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3301 L:      linux-bluetooth@vger.kernel.org
3302 S:      Supported
3303 W:      http://www.bluez.org/
3304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3306 F:      include/net/bluetooth/
3307 F:      net/bluetooth/
3308
3309 BONDING DRIVER
3310 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3311 M:      Veaceslav Falico <vfalico@gmail.com>
3312 M:      Andy Gospodarek <andy@greyhouse.net>
3313 L:      netdev@vger.kernel.org
3314 S:      Supported
3315 W:      http://sourceforge.net/projects/bonding/
3316 F:      drivers/net/bonding/
3317 F:      include/net/bonding.h
3318 F:      include/uapi/linux/if_bonding.h
3319
3320 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3321 M:      Dan Robertson <dan@dlrobertson.com>
3322 L:      linux-iio@vger.kernel.org
3323 S:      Maintained
3324 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3325 F:      drivers/iio/accel/bma400*
3326
3327 BPF (Safe dynamic programs and tools)
3328 M:      Alexei Starovoitov <ast@kernel.org>
3329 M:      Daniel Borkmann <daniel@iogearbox.net>
3330 M:      Andrii Nakryiko <andrii@kernel.org>
3331 R:      Martin KaFai Lau <kafai@fb.com>
3332 R:      Song Liu <songliubraving@fb.com>
3333 R:      Yonghong Song <yhs@fb.com>
3334 R:      John Fastabend <john.fastabend@gmail.com>
3335 R:      KP Singh <kpsingh@kernel.org>
3336 L:      netdev@vger.kernel.org
3337 L:      bpf@vger.kernel.org
3338 S:      Supported
3339 W:      https://bpf.io/
3340 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3343 F:      Documentation/bpf/
3344 F:      Documentation/networking/filter.rst
3345 F:      Documentation/userspace-api/ebpf/
3346 F:      arch/*/net/*
3347 F:      include/linux/bpf*
3348 F:      include/linux/filter.h
3349 F:      include/trace/events/xdp.h
3350 F:      include/uapi/linux/bpf*
3351 F:      include/uapi/linux/filter.h
3352 F:      kernel/bpf/
3353 F:      kernel/trace/bpf_trace.c
3354 F:      lib/test_bpf.c
3355 F:      net/bpf/
3356 F:      net/core/filter.c
3357 F:      net/sched/act_bpf.c
3358 F:      net/sched/cls_bpf.c
3359 F:      samples/bpf/
3360 F:      scripts/bpf_doc.py
3361 F:      tools/bpf/
3362 F:      tools/lib/bpf/
3363 F:      tools/testing/selftests/bpf/
3364 N:      bpf
3365 K:      bpf
3366
3367 BPF JIT for ARM
3368 M:      Shubham Bansal <illusionist.neo@gmail.com>
3369 L:      netdev@vger.kernel.org
3370 L:      bpf@vger.kernel.org
3371 S:      Maintained
3372 F:      arch/arm/net/
3373
3374 BPF JIT for ARM64
3375 M:      Daniel Borkmann <daniel@iogearbox.net>
3376 M:      Alexei Starovoitov <ast@kernel.org>
3377 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3378 L:      netdev@vger.kernel.org
3379 L:      bpf@vger.kernel.org
3380 S:      Supported
3381 F:      arch/arm64/net/
3382
3383 BPF JIT for MIPS (32-BIT AND 64-BIT)
3384 M:      Paul Burton <paulburton@kernel.org>
3385 L:      netdev@vger.kernel.org
3386 L:      bpf@vger.kernel.org
3387 S:      Maintained
3388 F:      arch/mips/net/
3389
3390 BPF JIT for NFP NICs
3391 M:      Jakub Kicinski <kuba@kernel.org>
3392 L:      netdev@vger.kernel.org
3393 L:      bpf@vger.kernel.org
3394 S:      Supported
3395 F:      drivers/net/ethernet/netronome/nfp/bpf/
3396
3397 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3398 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3399 M:      Sandipan Das <sandipan@linux.ibm.com>
3400 L:      netdev@vger.kernel.org
3401 L:      bpf@vger.kernel.org
3402 S:      Maintained
3403 F:      arch/powerpc/net/
3404
3405 BPF JIT for RISC-V (32-bit)
3406 M:      Luke Nelson <luke.r.nels@gmail.com>
3407 M:      Xi Wang <xi.wang@gmail.com>
3408 L:      netdev@vger.kernel.org
3409 L:      bpf@vger.kernel.org
3410 S:      Maintained
3411 F:      arch/riscv/net/
3412 X:      arch/riscv/net/bpf_jit_comp64.c
3413
3414 BPF JIT for RISC-V (64-bit)
3415 M:      Björn Töpel <bjorn@kernel.org>
3416 L:      netdev@vger.kernel.org
3417 L:      bpf@vger.kernel.org
3418 S:      Maintained
3419 F:      arch/riscv/net/
3420 X:      arch/riscv/net/bpf_jit_comp32.c
3421
3422 BPF JIT for S390
3423 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3424 M:      Heiko Carstens <hca@linux.ibm.com>
3425 M:      Vasily Gorbik <gor@linux.ibm.com>
3426 L:      netdev@vger.kernel.org
3427 L:      bpf@vger.kernel.org
3428 S:      Maintained
3429 F:      arch/s390/net/
3430 X:      arch/s390/net/pnet.c
3431
3432 BPF JIT for SPARC (32-BIT AND 64-BIT)
3433 M:      David S. Miller <davem@davemloft.net>
3434 L:      netdev@vger.kernel.org
3435 L:      bpf@vger.kernel.org
3436 S:      Maintained
3437 F:      arch/sparc/net/
3438
3439 BPF JIT for X86 32-BIT
3440 M:      Wang YanQing <udknight@gmail.com>
3441 L:      netdev@vger.kernel.org
3442 L:      bpf@vger.kernel.org
3443 S:      Maintained
3444 F:      arch/x86/net/bpf_jit_comp32.c
3445
3446 BPF JIT for X86 64-BIT
3447 M:      Alexei Starovoitov <ast@kernel.org>
3448 M:      Daniel Borkmann <daniel@iogearbox.net>
3449 L:      netdev@vger.kernel.org
3450 L:      bpf@vger.kernel.org
3451 S:      Supported
3452 F:      arch/x86/net/
3453 X:      arch/x86/net/bpf_jit_comp32.c
3454
3455 BPF LSM (Security Audit and Enforcement using BPF)
3456 M:      KP Singh <kpsingh@kernel.org>
3457 R:      Florent Revest <revest@chromium.org>
3458 R:      Brendan Jackman <jackmanb@chromium.org>
3459 L:      bpf@vger.kernel.org
3460 S:      Maintained
3461 F:      Documentation/bpf/bpf_lsm.rst
3462 F:      include/linux/bpf_lsm.h
3463 F:      kernel/bpf/bpf_lsm.c
3464 F:      security/bpf/
3465
3466 BROADCOM B44 10/100 ETHERNET DRIVER
3467 M:      Michael Chan <michael.chan@broadcom.com>
3468 L:      netdev@vger.kernel.org
3469 S:      Supported
3470 F:      drivers/net/ethernet/broadcom/b44.*
3471
3472 BROADCOM B53 ETHERNET SWITCH DRIVER
3473 M:      Florian Fainelli <f.fainelli@gmail.com>
3474 L:      netdev@vger.kernel.org
3475 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3476 S:      Supported
3477 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3478 F:      drivers/net/dsa/b53/*
3479 F:      include/linux/dsa/brcm.h
3480 F:      include/linux/platform_data/b53.h
3481
3482 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3483 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3484 L:      bcm-kernel-feedback-list@broadcom.com
3485 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3487 S:      Maintained
3488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3489 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3490 F:      drivers/pci/controller/pcie-brcmstb.c
3491 F:      drivers/staging/vc04_services
3492 N:      bcm2711
3493 N:      bcm283*
3494
3495 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3496 M:      Florian Fainelli <f.fainelli@gmail.com>
3497 M:      Ray Jui <rjui@broadcom.com>
3498 M:      Scott Branden <sbranden@broadcom.com>
3499 M:      bcm-kernel-feedback-list@broadcom.com
3500 S:      Maintained
3501 T:      git git://github.com/broadcom/mach-bcm
3502 F:      arch/arm/mach-bcm/
3503 N:      bcm281*
3504 N:      bcm113*
3505 N:      bcm216*
3506 N:      kona
3507
3508 BROADCOM BCM47XX MIPS ARCHITECTURE
3509 M:      Hauke Mehrtens <hauke@hauke-m.de>
3510 M:      Rafał Miłecki <zajec5@gmail.com>
3511 L:      linux-mips@vger.kernel.org
3512 S:      Maintained
3513 F:      Documentation/devicetree/bindings/mips/brcm/
3514 F:      arch/mips/bcm47xx/*
3515 F:      arch/mips/include/asm/mach-bcm47xx/*
3516
3517 BROADCOM BCM4908 ETHERNET DRIVER
3518 M:      Rafał Miłecki <rafal@milecki.pl>
3519 M:      bcm-kernel-feedback-list@broadcom.com
3520 L:      netdev@vger.kernel.org
3521 S:      Maintained
3522 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3523 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3524 F:      drivers/net/ethernet/broadcom/unimac.h
3525
3526 BROADCOM BCM5301X ARM ARCHITECTURE
3527 M:      Hauke Mehrtens <hauke@hauke-m.de>
3528 M:      Rafał Miłecki <zajec5@gmail.com>
3529 M:      bcm-kernel-feedback-list@broadcom.com
3530 L:      linux-arm-kernel@lists.infradead.org
3531 S:      Maintained
3532 F:      arch/arm/boot/dts/bcm470*
3533 F:      arch/arm/boot/dts/bcm5301*
3534 F:      arch/arm/boot/dts/bcm953012*
3535 F:      arch/arm/mach-bcm/bcm_5301x.c
3536
3537 BROADCOM BCM53573 ARM ARCHITECTURE
3538 M:      Rafał Miłecki <rafal@milecki.pl>
3539 L:      bcm-kernel-feedback-list@broadcom.com
3540 L:      linux-arm-kernel@lists.infradead.org
3541 S:      Maintained
3542 F:      arch/arm/boot/dts/bcm47189*
3543 F:      arch/arm/boot/dts/bcm53573*
3544
3545 BROADCOM BCM63XX ARM ARCHITECTURE
3546 M:      Florian Fainelli <f.fainelli@gmail.com>
3547 M:      bcm-kernel-feedback-list@broadcom.com
3548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3549 S:      Maintained
3550 T:      git git://github.com/broadcom/stblinux.git
3551 N:      bcm63xx
3552
3553 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3554 M:      Kevin Cernekee <cernekee@gmail.com>
3555 L:      linux-usb@vger.kernel.org
3556 S:      Maintained
3557 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3558
3559 BROADCOM BCM7XXX ARM ARCHITECTURE
3560 M:      Florian Fainelli <f.fainelli@gmail.com>
3561 M:      bcm-kernel-feedback-list@broadcom.com
3562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3563 S:      Maintained
3564 T:      git git://github.com/broadcom/stblinux.git
3565 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3566 F:      arch/arm/boot/dts/bcm7*.dts*
3567 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3568 F:      arch/arm/mach-bcm/*brcmstb*
3569 F:      arch/arm/mm/cache-b15-rac.c
3570 F:      drivers/bus/brcmstb_gisb.c
3571 F:      drivers/pci/controller/pcie-brcmstb.c
3572 N:      brcmstb
3573
3574 BROADCOM BDC DRIVER
3575 M:      Al Cooper <alcooperx@gmail.com>
3576 L:      linux-usb@vger.kernel.org
3577 L:      bcm-kernel-feedback-list@broadcom.com
3578 S:      Maintained
3579 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3580 F:      drivers/usb/gadget/udc/bdc/
3581
3582 BROADCOM BMIPS CPUFREQ DRIVER
3583 M:      Markus Mayer <mmayer@broadcom.com>
3584 M:      bcm-kernel-feedback-list@broadcom.com
3585 L:      linux-pm@vger.kernel.org
3586 S:      Maintained
3587 F:      drivers/cpufreq/bmips-cpufreq.c
3588
3589 BROADCOM BMIPS MIPS ARCHITECTURE
3590 M:      Florian Fainelli <f.fainelli@gmail.com>
3591 L:      bcm-kernel-feedback-list@broadcom.com
3592 L:      linux-mips@vger.kernel.org
3593 S:      Maintained
3594 T:      git git://github.com/broadcom/stblinux.git
3595 F:      arch/mips/bmips/*
3596 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3597 F:      arch/mips/include/asm/mach-bmips/*
3598 F:      arch/mips/kernel/*bmips*
3599 F:      drivers/soc/bcm/bcm63xx
3600 F:      drivers/irqchip/irq-bcm63*
3601 F:      drivers/irqchip/irq-bcm7*
3602 F:      drivers/irqchip/irq-brcmstb*
3603 F:      include/linux/bcm963xx_nvram.h
3604 F:      include/linux/bcm963xx_tag.h
3605
3606 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3607 M:      Rasesh Mody <rmody@marvell.com>
3608 M:      GR-Linux-NIC-Dev@marvell.com
3609 L:      netdev@vger.kernel.org
3610 S:      Supported
3611 F:      drivers/net/ethernet/broadcom/bnx2.*
3612 F:      drivers/net/ethernet/broadcom/bnx2_*
3613
3614 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3615 M:      Saurav Kashyap <skashyap@marvell.com>
3616 M:      Javed Hasan <jhasan@marvell.com>
3617 M:      GR-QLogic-Storage-Upstream@marvell.com
3618 L:      linux-scsi@vger.kernel.org
3619 S:      Supported
3620 F:      drivers/scsi/bnx2fc/
3621
3622 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3623 M:      Nilesh Javali <njavali@marvell.com>
3624 M:      Manish Rangankar <mrangankar@marvell.com>
3625 M:      GR-QLogic-Storage-Upstream@marvell.com
3626 L:      linux-scsi@vger.kernel.org
3627 S:      Supported
3628 F:      drivers/scsi/bnx2i/
3629
3630 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3631 M:      Ariel Elior <aelior@marvell.com>
3632 M:      Sudarsana Kalluru <skalluru@marvell.com>
3633 M:      GR-everest-linux-l2@marvell.com
3634 L:      netdev@vger.kernel.org
3635 S:      Supported
3636 F:      drivers/net/ethernet/broadcom/bnx2x/
3637
3638 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3639 M:      Michael Chan <michael.chan@broadcom.com>
3640 L:      netdev@vger.kernel.org
3641 S:      Supported
3642 F:      drivers/net/ethernet/broadcom/bnxt/
3643
3644 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3645 M:      Arend van Spriel <aspriel@gmail.com>
3646 M:      Franky Lin <franky.lin@broadcom.com>
3647 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3648 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3649 M:      Wright Feng <wright.feng@infineon.com>
3650 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3651 L:      linux-wireless@vger.kernel.org
3652 L:      brcm80211-dev-list.pdl@broadcom.com
3653 L:      SHA-cyfmac-dev-list@infineon.com
3654 S:      Supported
3655 F:      drivers/net/wireless/broadcom/brcm80211/
3656
3657 BROADCOM BRCMSTB GPIO DRIVER
3658 M:      Gregory Fong <gregory.0xf0@gmail.com>
3659 L:      bcm-kernel-feedback-list@broadcom.com
3660 S:      Supported
3661 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3662 F:      drivers/gpio/gpio-brcmstb.c
3663
3664 BROADCOM BRCMSTB I2C DRIVER
3665 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3666 L:      linux-i2c@vger.kernel.org
3667 L:      bcm-kernel-feedback-list@broadcom.com
3668 S:      Supported
3669 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3670 F:      drivers/i2c/busses/i2c-brcmstb.c
3671
3672 BROADCOM BRCMSTB UART DRIVER
3673 M:      Al Cooper <alcooperx@gmail.com>
3674 L:      linux-serial@vger.kernel.org
3675 L:      bcm-kernel-feedback-list@broadcom.com
3676 S:      Maintained
3677 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3678 F:      drivers/tty/serial/8250/8250_bcm7271.c
3679
3680 BROADCOM BRCMSTB USB EHCI DRIVER
3681 M:      Al Cooper <alcooperx@gmail.com>
3682 L:      linux-usb@vger.kernel.org
3683 L:      bcm-kernel-feedback-list@broadcom.com
3684 S:      Maintained
3685 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3686 F:      drivers/usb/host/ehci-brcm.*
3687
3688 BROADCOM BRCMSTB USB PIN MAP DRIVER
3689 M:      Al Cooper <alcooperx@gmail.com>
3690 L:      linux-usb@vger.kernel.org
3691 L:      bcm-kernel-feedback-list@broadcom.com
3692 S:      Maintained
3693 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3694 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3695
3696 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3697 M:      Al Cooper <alcooperx@gmail.com>
3698 L:      linux-kernel@vger.kernel.org
3699 L:      bcm-kernel-feedback-list@broadcom.com
3700 S:      Maintained
3701 F:      drivers/phy/broadcom/phy-brcm-usb*
3702
3703 BROADCOM ETHERNET PHY DRIVERS
3704 M:      Florian Fainelli <f.fainelli@gmail.com>
3705 L:      bcm-kernel-feedback-list@broadcom.com
3706 L:      netdev@vger.kernel.org
3707 S:      Supported
3708 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3709 F:      drivers/net/phy/bcm*.[ch]
3710 F:      drivers/net/phy/broadcom.c
3711 F:      include/linux/brcmphy.h
3712
3713 BROADCOM GENET ETHERNET DRIVER
3714 M:      Doug Berger <opendmb@gmail.com>
3715 M:      Florian Fainelli <f.fainelli@gmail.com>
3716 L:      bcm-kernel-feedback-list@broadcom.com
3717 L:      netdev@vger.kernel.org
3718 S:      Supported
3719 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3720 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3721 F:      drivers/net/ethernet/broadcom/genet/
3722 F:      drivers/net/ethernet/broadcom/unimac.h
3723 F:      drivers/net/mdio/mdio-bcm-unimac.c
3724 F:      include/linux/platform_data/bcmgenet.h
3725 F:      include/linux/platform_data/mdio-bcm-unimac.h
3726
3727 BROADCOM IPROC ARM ARCHITECTURE
3728 M:      Ray Jui <rjui@broadcom.com>
3729 M:      Scott Branden <sbranden@broadcom.com>
3730 M:      bcm-kernel-feedback-list@broadcom.com
3731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3732 S:      Maintained
3733 T:      git git://github.com/broadcom/cygnus-linux.git
3734 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3735 F:      arch/arm64/boot/dts/broadcom/stingray/*
3736 F:      drivers/clk/bcm/clk-ns*
3737 F:      drivers/clk/bcm/clk-sr*
3738 F:      drivers/pinctrl/bcm/pinctrl-ns*
3739 F:      include/dt-bindings/clock/bcm-sr*
3740 N:      iproc
3741 N:      cygnus
3742 N:      bcm[-_]nsp
3743 N:      bcm9113*
3744 N:      bcm9583*
3745 N:      bcm9585*
3746 N:      bcm9586*
3747 N:      bcm988312
3748 N:      bcm113*
3749 N:      bcm583*
3750 N:      bcm585*
3751 N:      bcm586*
3752 N:      bcm88312
3753 N:      hr2
3754 N:      stingray
3755
3756 BROADCOM IPROC GBIT ETHERNET DRIVER
3757 M:      Rafał Miłecki <rafal@milecki.pl>
3758 M:      bcm-kernel-feedback-list@broadcom.com
3759 L:      netdev@vger.kernel.org
3760 S:      Maintained
3761 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3762 F:      drivers/net/ethernet/broadcom/bgmac*
3763 F:      drivers/net/ethernet/broadcom/unimac.h
3764
3765 BROADCOM KONA GPIO DRIVER
3766 M:      Ray Jui <rjui@broadcom.com>
3767 L:      bcm-kernel-feedback-list@broadcom.com
3768 S:      Supported
3769 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3770 F:      drivers/gpio/gpio-bcm-kona.c
3771
3772 BROADCOM NETXTREME-E ROCE DRIVER
3773 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3774 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3775 L:      linux-rdma@vger.kernel.org
3776 S:      Supported
3777 W:      http://www.broadcom.com
3778 F:      drivers/infiniband/hw/bnxt_re/
3779 F:      include/uapi/rdma/bnxt_re-abi.h
3780
3781 BROADCOM NVRAM DRIVER
3782 M:      Rafał Miłecki <zajec5@gmail.com>
3783 L:      linux-mips@vger.kernel.org
3784 S:      Maintained
3785 F:      drivers/firmware/broadcom/*
3786
3787 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3788 M:      Rafał Miłecki <rafal@milecki.pl>
3789 M:      Florian Fainelli <f.fainelli@gmail.com>
3790 M:      bcm-kernel-feedback-list@broadcom.com
3791 L:      linux-pm@vger.kernel.org
3792 S:      Maintained
3793 T:      git git://github.com/broadcom/stblinux.git
3794 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3795 F:      include/dt-bindings/soc/bcm-pmb.h
3796
3797 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3798 M:      Rafał Miłecki <zajec5@gmail.com>
3799 L:      linux-wireless@vger.kernel.org
3800 S:      Maintained
3801 F:      drivers/bcma/
3802 F:      include/linux/bcma/
3803
3804 BROADCOM SPI DRIVER
3805 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3806 M:      bcm-kernel-feedback-list@broadcom.com
3807 S:      Maintained
3808 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3809 F:      drivers/spi/spi-bcm-qspi.*
3810 F:      drivers/spi/spi-brcmstb-qspi.c
3811 F:      drivers/spi/spi-iproc-qspi.c
3812
3813 BROADCOM STB AVS CPUFREQ DRIVER
3814 M:      Markus Mayer <mmayer@broadcom.com>
3815 M:      bcm-kernel-feedback-list@broadcom.com
3816 L:      linux-pm@vger.kernel.org
3817 S:      Maintained
3818 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3819 F:      drivers/cpufreq/brcmstb*
3820
3821 BROADCOM STB AVS TMON DRIVER
3822 M:      Markus Mayer <mmayer@broadcom.com>
3823 M:      bcm-kernel-feedback-list@broadcom.com
3824 L:      linux-pm@vger.kernel.org
3825 S:      Maintained
3826 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3827 F:      drivers/thermal/broadcom/brcmstb*
3828
3829 BROADCOM STB DPFE DRIVER
3830 M:      Markus Mayer <mmayer@broadcom.com>
3831 M:      bcm-kernel-feedback-list@broadcom.com
3832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3833 S:      Maintained
3834 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3835 F:      drivers/memory/brcmstb_dpfe.c
3836
3837 BROADCOM STB NAND FLASH DRIVER
3838 M:      Brian Norris <computersforpeace@gmail.com>
3839 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3840 L:      linux-mtd@lists.infradead.org
3841 L:      bcm-kernel-feedback-list@broadcom.com
3842 S:      Maintained
3843 F:      drivers/mtd/nand/raw/brcmnand/
3844
3845 BROADCOM SYSTEMPORT ETHERNET DRIVER
3846 M:      Florian Fainelli <f.fainelli@gmail.com>
3847 L:      bcm-kernel-feedback-list@broadcom.com
3848 L:      netdev@vger.kernel.org
3849 S:      Supported
3850 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3851 F:      drivers/net/ethernet/broadcom/unimac.h
3852
3853 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3854 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3855 M:      Prashant Sreedharan <prashant@broadcom.com>
3856 M:      Michael Chan <mchan@broadcom.com>
3857 L:      netdev@vger.kernel.org
3858 S:      Supported
3859 F:      drivers/net/ethernet/broadcom/tg3.*
3860
3861 BROADCOM VK DRIVER
3862 M:      Scott Branden <scott.branden@broadcom.com>
3863 L:      bcm-kernel-feedback-list@broadcom.com
3864 S:      Supported
3865 F:      drivers/misc/bcm-vk/
3866 F:      include/uapi/linux/misc/bcm_vk.h
3867
3868 BROCADE BFA FC SCSI DRIVER
3869 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3870 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3871 L:      linux-scsi@vger.kernel.org
3872 S:      Supported
3873 F:      drivers/scsi/bfa/
3874
3875 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3876 M:      Rasesh Mody <rmody@marvell.com>
3877 M:      Sudarsana Kalluru <skalluru@marvell.com>
3878 M:      GR-Linux-NIC-Dev@marvell.com
3879 L:      netdev@vger.kernel.org
3880 S:      Supported
3881 F:      drivers/net/ethernet/brocade/bna/
3882
3883 BSG (block layer generic sg v4 driver)
3884 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3885 L:      linux-scsi@vger.kernel.org
3886 S:      Supported
3887 F:      block/bsg.c
3888 F:      include/linux/bsg.h
3889 F:      include/uapi/linux/bsg.h
3890
3891 BT87X AUDIO DRIVER
3892 M:      Clemens Ladisch <clemens@ladisch.de>
3893 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3894 S:      Maintained
3895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3896 F:      Documentation/sound/cards/bt87x.rst
3897 F:      sound/pci/bt87x.c
3898
3899 BT8XXGPIO DRIVER
3900 M:      Michael Buesch <m@bues.ch>
3901 S:      Maintained
3902 W:      http://bu3sch.de/btgpio.php
3903 F:      drivers/gpio/gpio-bt8xx.c
3904
3905 BTRFS FILE SYSTEM
3906 M:      Chris Mason <clm@fb.com>
3907 M:      Josef Bacik <josef@toxicpanda.com>
3908 M:      David Sterba <dsterba@suse.com>
3909 L:      linux-btrfs@vger.kernel.org
3910 S:      Maintained
3911 W:      http://btrfs.wiki.kernel.org/
3912 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3913 C:      irc://irc.libera.chat/btrfs
3914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3915 F:      Documentation/filesystems/btrfs.rst
3916 F:      fs/btrfs/
3917 F:      include/linux/btrfs*
3918 F:      include/uapi/linux/btrfs*
3919
3920 BTTV VIDEO4LINUX DRIVER
3921 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3922 L:      linux-media@vger.kernel.org
3923 S:      Odd fixes
3924 W:      https://linuxtv.org
3925 T:      git git://linuxtv.org/media_tree.git
3926 F:      Documentation/driver-api/media/drivers/bttv*
3927 F:      drivers/media/pci/bt8xx/bttv*
3928
3929 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3930 M:      Chanwoo Choi <cw00.choi@samsung.com>
3931 L:      linux-pm@vger.kernel.org
3932 L:      linux-samsung-soc@vger.kernel.org
3933 S:      Maintained
3934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3935 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3936 F:      drivers/devfreq/exynos-bus.c
3937
3938 BUSLOGIC SCSI DRIVER
3939 M:      Khalid Aziz <khalid@gonehiking.org>
3940 L:      linux-scsi@vger.kernel.org
3941 S:      Maintained
3942 F:      drivers/scsi/BusLogic.*
3943 F:      drivers/scsi/FlashPoint.*
3944
3945 C-MEDIA CMI8788 DRIVER
3946 M:      Clemens Ladisch <clemens@ladisch.de>
3947 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3948 S:      Maintained
3949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3950 F:      sound/pci/oxygen/
3951
3952 C-SKY ARCHITECTURE
3953 M:      Guo Ren <guoren@kernel.org>
3954 L:      linux-csky@vger.kernel.org
3955 S:      Supported
3956 T:      git https://github.com/c-sky/csky-linux.git
3957 F:      Documentation/devicetree/bindings/csky/
3958 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3959 F:      Documentation/devicetree/bindings/timer/csky,*
3960 F:      arch/csky/
3961 F:      drivers/clocksource/timer-gx6605s.c
3962 F:      drivers/clocksource/timer-mp-csky.c
3963 F:      drivers/irqchip/irq-csky-*
3964 N:      csky
3965 K:      csky
3966
3967 CA8210 IEEE-802.15.4 RADIO DRIVER
3968 M:      Harry Morris <h.morris@cascoda.com>
3969 L:      linux-wpan@vger.kernel.org
3970 S:      Maintained
3971 W:      https://github.com/Cascoda/ca8210-linux.git
3972 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3973 F:      drivers/net/ieee802154/ca8210.c
3974
3975 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
3976 M:      Damien Le Moal <damien.lemoal@wdc.com>
3977 L:      linux-riscv@lists.infradead.org
3978 L:      linux-gpio@vger.kernel.org (pinctrl driver)
3979 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
3980 F:      drivers/pinctrl/pinctrl-k210.c
3981
3982 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
3983 M:      Damien Le Moal <damien.lemoal@wdc.com>
3984 L:      linux-kernel@vger.kernel.org
3985 L:      linux-riscv@lists.infradead.org
3986 S:      Maintained
3987 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
3988 F:      drivers/reset/reset-k210.c
3989
3990 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
3991 M:      Damien Le Moal <damien.lemoal@wdc.com>
3992 L:      linux-riscv@lists.infradead.org
3993 S:      Maintained
3994 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
3995 F:      drivers/soc/canaan/
3996 F:      include/soc/canaan/
3997
3998 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3999 M:      David Howells <dhowells@redhat.com>
4000 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4001 S:      Supported
4002 F:      Documentation/filesystems/caching/cachefiles.rst
4003 F:      fs/cachefiles/
4004
4005 CADENCE MIPI-CSI2 BRIDGES
4006 M:      Maxime Ripard <mripard@kernel.org>
4007 L:      linux-media@vger.kernel.org
4008 S:      Maintained
4009 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4010 F:      drivers/media/platform/cadence/cdns-csi2*
4011
4012 CADENCE NAND DRIVER
4013 L:      linux-mtd@lists.infradead.org
4014 S:      Orphan
4015 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4016 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4017
4018 CADENCE USB3 DRD IP DRIVER
4019 M:      Peter Chen <peter.chen@kernel.org>
4020 M:      Pawel Laszczak <pawell@cadence.com>
4021 R:      Roger Quadros <rogerq@kernel.org>
4022 R:      Aswath Govindraju <a-govindraju@ti.com>
4023 L:      linux-usb@vger.kernel.org
4024 S:      Maintained
4025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4026 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4027 F:      drivers/usb/cdns3/
4028 X:      drivers/usb/cdns3/cdnsp*
4029
4030 CADENCE USBSSP DRD IP DRIVER
4031 M:      Pawel Laszczak <pawell@cadence.com>
4032 L:      linux-usb@vger.kernel.org
4033 S:      Maintained
4034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4035 F:      drivers/usb/cdns3/
4036 X:      drivers/usb/cdns3/cdns3*
4037
4038 CADET FM/AM RADIO RECEIVER DRIVER
4039 M:      Hans Verkuil <hverkuil@xs4all.nl>
4040 L:      linux-media@vger.kernel.org
4041 S:      Maintained
4042 W:      https://linuxtv.org
4043 T:      git git://linuxtv.org/media_tree.git
4044 F:      drivers/media/radio/radio-cadet*
4045
4046 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4047 L:      linux-media@vger.kernel.org
4048 S:      Orphan
4049 T:      git git://linuxtv.org/media_tree.git
4050 F:      Documentation/admin-guide/media/cafe_ccic*
4051 F:      drivers/media/platform/marvell-ccic/
4052
4053 CAIF NETWORK LAYER
4054 L:      netdev@vger.kernel.org
4055 S:      Orphan
4056 F:      Documentation/networking/caif/
4057 F:      drivers/net/caif/
4058 F:      include/net/caif/
4059 F:      include/uapi/linux/caif/
4060 F:      net/caif/
4061
4062 CAKE QDISC
4063 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4064 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4065 S:      Maintained
4066 F:      net/sched/sch_cake.c
4067
4068 CAN NETWORK DRIVERS
4069 M:      Wolfgang Grandegger <wg@grandegger.com>
4070 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4071 L:      linux-can@vger.kernel.org
4072 S:      Maintained
4073 W:      https://github.com/linux-can
4074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4076 F:      Documentation/devicetree/bindings/net/can/
4077 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4078 F:      drivers/net/can/
4079 F:      drivers/phy/phy-can-transceiver.c
4080 F:      include/linux/can/bittiming.h
4081 F:      include/linux/can/dev.h
4082 F:      include/linux/can/led.h
4083 F:      include/linux/can/length.h
4084 F:      include/linux/can/platform/
4085 F:      include/linux/can/rx-offload.h
4086 F:      include/uapi/linux/can/error.h
4087 F:      include/uapi/linux/can/netlink.h
4088 F:      include/uapi/linux/can/vxcan.h
4089
4090 CAN NETWORK LAYER
4091 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4092 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4093 L:      linux-can@vger.kernel.org
4094 S:      Maintained
4095 W:      https://github.com/linux-can
4096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4098 F:      Documentation/networking/can.rst
4099 F:      include/linux/can/can-ml.h
4100 F:      include/linux/can/core.h
4101 F:      include/linux/can/skb.h
4102 F:      include/net/netns/can.h
4103 F:      include/uapi/linux/can.h
4104 F:      include/uapi/linux/can/bcm.h
4105 F:      include/uapi/linux/can/gw.h
4106 F:      include/uapi/linux/can/isotp.h
4107 F:      include/uapi/linux/can/raw.h
4108 F:      net/can/
4109
4110 CAN-J1939 NETWORK LAYER
4111 M:      Robin van der Gracht <robin@protonic.nl>
4112 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4113 R:      kernel@pengutronix.de
4114 L:      linux-can@vger.kernel.org
4115 S:      Maintained
4116 F:      Documentation/networking/j1939.rst
4117 F:      include/uapi/linux/can/j1939.h
4118 F:      net/can/j1939/
4119
4120 CAPABILITIES
4121 M:      Serge Hallyn <serge@hallyn.com>
4122 L:      linux-security-module@vger.kernel.org
4123 S:      Supported
4124 F:      include/linux/capability.h
4125 F:      include/uapi/linux/capability.h
4126 F:      kernel/capability.c
4127 F:      security/commoncap.c
4128
4129 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4130 M:      Kevin Tsai <ktsai@capellamicro.com>
4131 S:      Maintained
4132 F:      drivers/iio/light/cm*
4133
4134 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4135 M:      Christian Lamparter <chunkeey@googlemail.com>
4136 L:      linux-wireless@vger.kernel.org
4137 S:      Maintained
4138 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4139 F:      drivers/net/wireless/ath/carl9170/
4140
4141 CAVIUM I2C DRIVER
4142 M:      Robert Richter <rric@kernel.org>
4143 S:      Odd Fixes
4144 W:      http://www.marvell.com
4145 F:      drivers/i2c/busses/i2c-octeon*
4146 F:      drivers/i2c/busses/i2c-thunderx*
4147
4148 CAVIUM LIQUIDIO NETWORK DRIVER
4149 M:      Derek Chickles <dchickles@marvell.com>
4150 M:      Satanand Burla <sburla@marvell.com>
4151 M:      Felix Manlunas <fmanlunas@marvell.com>
4152 L:      netdev@vger.kernel.org
4153 S:      Supported
4154 W:      http://www.marvell.com
4155 F:      drivers/net/ethernet/cavium/liquidio/
4156
4157 CAVIUM MMC DRIVER
4158 M:      Robert Richter <rric@kernel.org>
4159 S:      Odd Fixes
4160 W:      http://www.marvell.com
4161 F:      drivers/mmc/host/cavium*
4162
4163 CAVIUM OCTEON-TX CRYPTO DRIVER
4164 M:      George Cherian <gcherian@marvell.com>
4165 L:      linux-crypto@vger.kernel.org
4166 S:      Supported
4167 W:      http://www.marvell.com
4168 F:      drivers/crypto/cavium/cpt/
4169
4170 CAVIUM THUNDERX2 ARM64 SOC
4171 M:      Robert Richter <rric@kernel.org>
4172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4173 S:      Odd Fixes
4174 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4175 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4176
4177 CBS/ETF/TAPRIO QDISCS
4178 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4179 S:      Maintained
4180 L:      netdev@vger.kernel.org
4181 F:      net/sched/sch_cbs.c
4182 F:      net/sched/sch_etf.c
4183 F:      net/sched/sch_taprio.c
4184
4185 CC2520 IEEE-802.15.4 RADIO DRIVER
4186 M:      Varka Bhadram <varkabhadram@gmail.com>
4187 L:      linux-wpan@vger.kernel.org
4188 S:      Maintained
4189 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4190 F:      drivers/net/ieee802154/cc2520.c
4191 F:      include/linux/spi/cc2520.h
4192
4193 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4194 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4195 L:      linux-crypto@vger.kernel.org
4196 S:      Supported
4197 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4198 F:      drivers/crypto/ccree/
4199
4200 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4201 M:      Hadar Gat <hadar.gat@arm.com>
4202 L:      linux-crypto@vger.kernel.org
4203 S:      Supported
4204 F:      drivers/char/hw_random/cctrng.c
4205 F:      drivers/char/hw_random/cctrng.h
4206 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4207 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4208
4209 CEC FRAMEWORK
4210 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4211 L:      linux-media@vger.kernel.org
4212 S:      Supported
4213 W:      http://linuxtv.org
4214 T:      git git://linuxtv.org/media_tree.git
4215 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4216 F:      Documentation/devicetree/bindings/media/cec.txt
4217 F:      Documentation/driver-api/media/cec-core.rst
4218 F:      Documentation/userspace-api/media/cec
4219 F:      drivers/media/cec/
4220 F:      drivers/media/rc/keymaps/rc-cec.c
4221 F:      include/media/cec-notifier.h
4222 F:      include/media/cec.h
4223 F:      include/uapi/linux/cec-funcs.h
4224 F:      include/uapi/linux/cec.h
4225
4226 CEC GPIO DRIVER
4227 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4228 L:      linux-media@vger.kernel.org
4229 S:      Supported
4230 W:      http://linuxtv.org
4231 T:      git git://linuxtv.org/media_tree.git
4232 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4233 F:      drivers/media/cec/platform/cec-gpio/
4234
4235 CELL BROADBAND ENGINE ARCHITECTURE
4236 M:      Arnd Bergmann <arnd@arndb.de>
4237 L:      linuxppc-dev@lists.ozlabs.org
4238 S:      Supported
4239 W:      http://www.ibm.com/developerworks/power/cell/
4240 F:      arch/powerpc/include/asm/cell*.h
4241 F:      arch/powerpc/include/asm/spu*.h
4242 F:      arch/powerpc/include/uapi/asm/spu*.h
4243 F:      arch/powerpc/platforms/cell/
4244
4245 CELLWISE CW2015 BATTERY DRIVER
4246 M:      Tobias Schrammm <t.schramm@manjaro.org>
4247 S:      Maintained
4248 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4249 F:      drivers/power/supply/cw2015_battery.c
4250
4251 CEPH COMMON CODE (LIBCEPH)
4252 M:      Ilya Dryomov <idryomov@gmail.com>
4253 M:      Jeff Layton <jlayton@kernel.org>
4254 L:      ceph-devel@vger.kernel.org
4255 S:      Supported
4256 W:      http://ceph.com/
4257 T:      git git://github.com/ceph/ceph-client.git
4258 F:      include/linux/ceph/
4259 F:      include/linux/crush/
4260 F:      net/ceph/
4261
4262 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4263 M:      Jeff Layton <jlayton@kernel.org>
4264 M:      Ilya Dryomov <idryomov@gmail.com>
4265 L:      ceph-devel@vger.kernel.org
4266 S:      Supported
4267 W:      http://ceph.com/
4268 T:      git git://github.com/ceph/ceph-client.git
4269 F:      Documentation/filesystems/ceph.rst
4270 F:      fs/ceph/
4271
4272 CERTIFICATE HANDLING
4273 M:      David Howells <dhowells@redhat.com>
4274 M:      David Woodhouse <dwmw2@infradead.org>
4275 L:      keyrings@vger.kernel.org
4276 S:      Maintained
4277 F:      Documentation/admin-guide/module-signing.rst
4278 F:      certs/
4279 F:      scripts/extract-cert.c
4280 F:      scripts/sign-file.c
4281
4282 CFAG12864B LCD DRIVER
4283 M:      Miguel Ojeda <ojeda@kernel.org>
4284 S:      Maintained
4285 F:      drivers/auxdisplay/cfag12864b.c
4286 F:      include/linux/cfag12864b.h
4287
4288 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4289 M:      Miguel Ojeda <ojeda@kernel.org>
4290 S:      Maintained
4291 F:      drivers/auxdisplay/cfag12864bfb.c
4292 F:      include/linux/cfag12864b.h
4293
4294 CHAR and MISC DRIVERS
4295 M:      Arnd Bergmann <arnd@arndb.de>
4296 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4297 S:      Supported
4298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4299 F:      drivers/char/
4300 F:      drivers/misc/
4301 F:      include/linux/miscdevice.h
4302 X:      drivers/char/agp/
4303 X:      drivers/char/hw_random/
4304 X:      drivers/char/ipmi/
4305 X:      drivers/char/random.c
4306 X:      drivers/char/tpm/
4307
4308 CHECKPATCH
4309 M:      Andy Whitcroft <apw@canonical.com>
4310 M:      Joe Perches <joe@perches.com>
4311 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4312 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4313 S:      Maintained
4314 F:      scripts/checkpatch.pl
4315
4316 CHECKPATCH DOCUMENTATION
4317 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4318 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4319 R:      Joe Perches <joe@perches.com>
4320 S:      Maintained
4321 F:      Documentation/dev-tools/checkpatch.rst
4322
4323 CHINESE DOCUMENTATION
4324 M:      Alex Shi <alexs@kernel.org>
4325 S:      Maintained
4326 F:      Documentation/translations/zh_CN/
4327
4328 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4329 M:      Peter Chen <peter.chen@kernel.org>
4330 L:      linux-usb@vger.kernel.org
4331 S:      Maintained
4332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4333 F:      drivers/usb/chipidea/
4334
4335 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4336 M:      Hans de Goede <hdegoede@redhat.com>
4337 L:      linux-input@vger.kernel.org
4338 S:      Maintained
4339 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4340 F:      drivers/input/touchscreen/chipone_icn8318.c
4341
4342 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4343 M:      Hans de Goede <hdegoede@redhat.com>
4344 L:      linux-input@vger.kernel.org
4345 S:      Maintained
4346 F:      drivers/input/touchscreen/chipone_icn8505.c
4347
4348 CHROME HARDWARE PLATFORM SUPPORT
4349 M:      Benson Leung <bleung@chromium.org>
4350 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4351 S:      Maintained
4352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4353 F:      drivers/platform/chrome/
4354
4355 CHROMEOS EC CODEC DRIVER
4356 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4357 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4358 R:      Guenter Roeck <groeck@chromium.org>
4359 S:      Maintained
4360 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4361 F:      sound/soc/codecs/cros_ec_codec.*
4362
4363 CHROMEOS EC SUBDRIVERS
4364 M:      Benson Leung <bleung@chromium.org>
4365 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4366 R:      Guenter Roeck <groeck@chromium.org>
4367 S:      Maintained
4368 F:      drivers/power/supply/cros_usbpd-charger.c
4369 N:      cros_ec
4370 N:      cros-ec
4371
4372 CHRONTEL CH7322 CEC DRIVER
4373 M:      Jeff Chase <jnchase@google.com>
4374 L:      linux-media@vger.kernel.org
4375 S:      Maintained
4376 T:      git git://linuxtv.org/media_tree.git
4377 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4378 F:      drivers/media/cec/i2c/ch7322.c
4379
4380 CIRRUS LOGIC AUDIO CODEC DRIVERS
4381 M:      James Schulman <james.schulman@cirrus.com>
4382 M:      David Rhodes <david.rhodes@cirrus.com>
4383 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4384 L:      patches@opensource.cirrus.com
4385 S:      Maintained
4386 F:      sound/soc/codecs/cs*
4387
4388 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4389 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4390 L:      netdev@vger.kernel.org
4391 S:      Maintained
4392 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4393
4394 CIRRUS LOGIC LOCHNAGAR DRIVER
4395 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4396 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4397 L:      patches@opensource.cirrus.com
4398 S:      Supported
4399 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4400 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4401 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4402 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4403 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4404 F:      Documentation/hwmon/lochnagar.rst
4405 F:      drivers/clk/clk-lochnagar.c
4406 F:      drivers/hwmon/lochnagar-hwmon.c
4407 F:      drivers/mfd/lochnagar-i2c.c
4408 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4409 F:      drivers/regulator/lochnagar-regulator.c
4410 F:      include/dt-bindings/clk/lochnagar.h
4411 F:      include/dt-bindings/pinctrl/lochnagar.h
4412 F:      include/linux/mfd/lochnagar*
4413 F:      sound/soc/codecs/lochnagar-sc.c
4414
4415 CIRRUS LOGIC MADERA CODEC DRIVERS
4416 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4417 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4418 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4419 L:      patches@opensource.cirrus.com
4420 S:      Supported
4421 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4422 T:      git https://github.com/CirrusLogic/linux-drivers.git
4423 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4424 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4425 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4426 F:      drivers/gpio/gpio-madera*
4427 F:      drivers/irqchip/irq-madera*
4428 F:      drivers/mfd/cs47l*
4429 F:      drivers/mfd/madera*
4430 F:      drivers/pinctrl/cirrus/*
4431 F:      include/dt-bindings/sound/madera*
4432 F:      include/linux/irqchip/irq-madera*
4433 F:      include/linux/mfd/madera/*
4434 F:      include/sound/madera*
4435 F:      sound/soc/codecs/cs47l*
4436 F:      sound/soc/codecs/madera*
4437
4438 CISCO FCOE HBA DRIVER
4439 M:      Satish Kharat <satishkh@cisco.com>
4440 M:      Sesidhar Baddela <sebaddel@cisco.com>
4441 M:      Karan Tilak Kumar <kartilak@cisco.com>
4442 L:      linux-scsi@vger.kernel.org
4443 S:      Supported
4444 F:      drivers/scsi/fnic/
4445
4446 CISCO SCSI HBA DRIVER
4447 M:      Karan Tilak Kumar <kartilak@cisco.com>
4448 M:      Sesidhar Baddela <sebaddel@cisco.com>
4449 L:      linux-scsi@vger.kernel.org
4450 S:      Supported
4451 F:      drivers/scsi/snic/
4452
4453 CISCO VIC ETHERNET NIC DRIVER
4454 M:      Christian Benvenuti <benve@cisco.com>
4455 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4456 S:      Supported
4457 F:      drivers/net/ethernet/cisco/enic/
4458
4459 CISCO VIC LOW LATENCY NIC DRIVER
4460 M:      Christian Benvenuti <benve@cisco.com>
4461 M:      Nelson Escobar <neescoba@cisco.com>
4462 S:      Supported
4463 F:      drivers/infiniband/hw/usnic/
4464
4465 CLANG-FORMAT FILE
4466 M:      Miguel Ojeda <ojeda@kernel.org>
4467 S:      Maintained
4468 F:      .clang-format
4469
4470 CLANG/LLVM BUILD SUPPORT
4471 M:      Nathan Chancellor <nathan@kernel.org>
4472 M:      Nick Desaulniers <ndesaulniers@google.com>
4473 L:      clang-built-linux@googlegroups.com
4474 S:      Supported
4475 W:      https://clangbuiltlinux.github.io/
4476 B:      https://github.com/ClangBuiltLinux/linux/issues
4477 C:      irc://chat.freenode.net/clangbuiltlinux
4478 F:      Documentation/kbuild/llvm.rst
4479 F:      include/linux/compiler-clang.h
4480 F:      scripts/clang-tools/
4481 K:      \b(?i:clang|llvm)\b
4482
4483 CLANG CONTROL FLOW INTEGRITY SUPPORT
4484 M:      Sami Tolvanen <samitolvanen@google.com>
4485 M:      Kees Cook <keescook@chromium.org>
4486 R:      Nathan Chancellor <nathan@kernel.org>
4487 R:      Nick Desaulniers <ndesaulniers@google.com>
4488 L:      clang-built-linux@googlegroups.com
4489 S:      Supported
4490 B:      https://github.com/ClangBuiltLinux/linux/issues
4491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4492 F:      include/linux/cfi.h
4493 F:      kernel/cfi.c
4494
4495 CLEANCACHE API
4496 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4497 L:      linux-kernel@vger.kernel.org
4498 S:      Maintained
4499 F:      include/linux/cleancache.h
4500 F:      mm/cleancache.c
4501
4502 CLK API
4503 M:      Russell King <linux@armlinux.org.uk>
4504 L:      linux-clk@vger.kernel.org
4505 S:      Maintained
4506 F:      include/linux/clk.h
4507
4508 CLOCKSOURCE, CLOCKEVENT DRIVERS
4509 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4510 M:      Thomas Gleixner <tglx@linutronix.de>
4511 L:      linux-kernel@vger.kernel.org
4512 S:      Supported
4513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4514 F:      Documentation/devicetree/bindings/timer/
4515 F:      drivers/clocksource/
4516
4517 CMPC ACPI DRIVER
4518 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4519 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4520 L:      platform-driver-x86@vger.kernel.org
4521 S:      Supported
4522 F:      drivers/platform/x86/classmate-laptop.c
4523
4524 COBALT MEDIA DRIVER
4525 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4526 L:      linux-media@vger.kernel.org
4527 S:      Supported
4528 W:      https://linuxtv.org
4529 T:      git git://linuxtv.org/media_tree.git
4530 F:      drivers/media/pci/cobalt/
4531
4532 COCCINELLE/Semantic Patches (SmPL)
4533 M:      Julia Lawall <Julia.Lawall@inria.fr>
4534 M:      Gilles Muller <Gilles.Muller@inria.fr>
4535 M:      Nicolas Palix <nicolas.palix@imag.fr>
4536 M:      Michal Marek <michal.lkml@markovi.net>
4537 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4538 S:      Supported
4539 W:      http://coccinelle.lip6.fr/
4540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4541 F:      Documentation/dev-tools/coccinelle.rst
4542 F:      scripts/coccicheck
4543 F:      scripts/coccinelle/
4544
4545 CODA FILE SYSTEM
4546 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4547 M:      coda@cs.cmu.edu
4548 L:      codalist@coda.cs.cmu.edu
4549 S:      Maintained
4550 W:      http://www.coda.cs.cmu.edu/
4551 F:      Documentation/filesystems/coda.rst
4552 F:      fs/coda/
4553 F:      include/linux/coda*.h
4554 F:      include/uapi/linux/coda*.h
4555
4556 CODA V4L2 MEM2MEM DRIVER
4557 M:      Philipp Zabel <p.zabel@pengutronix.de>
4558 L:      linux-media@vger.kernel.org
4559 S:      Maintained
4560 F:      Documentation/devicetree/bindings/media/coda.yaml
4561 F:      drivers/media/platform/coda/
4562
4563 CODE OF CONDUCT
4564 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4565 S:      Supported
4566 F:      Documentation/process/code-of-conduct-interpretation.rst
4567 F:      Documentation/process/code-of-conduct.rst
4568
4569 COMEDI DRIVERS
4570 M:      Ian Abbott <abbotti@mev.co.uk>
4571 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4572 S:      Odd Fixes
4573 F:      drivers/comedi/
4574
4575 COMMON CLK FRAMEWORK
4576 M:      Michael Turquette <mturquette@baylibre.com>
4577 M:      Stephen Boyd <sboyd@kernel.org>
4578 L:      linux-clk@vger.kernel.org
4579 S:      Maintained
4580 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4582 F:      Documentation/devicetree/bindings/clock/
4583 F:      drivers/clk/
4584 F:      include/linux/clk-pr*
4585 F:      include/linux/clk/
4586 F:      include/linux/of_clk.h
4587 X:      drivers/clk/clkdev.c
4588
4589 COMMON INTERNET FILE SYSTEM (CIFS)
4590 M:      Steve French <sfrench@samba.org>
4591 L:      linux-cifs@vger.kernel.org
4592 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4593 S:      Supported
4594 W:      http://linux-cifs.samba.org/
4595 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4596 F:      Documentation/admin-guide/cifs/
4597 F:      fs/cifs/
4598
4599 COMPACTPCI HOTPLUG CORE
4600 M:      Scott Murray <scott@spiteful.org>
4601 L:      linux-pci@vger.kernel.org
4602 S:      Maintained
4603 F:      drivers/pci/hotplug/cpci_hotplug*
4604
4605 COMPACTPCI HOTPLUG GENERIC DRIVER
4606 M:      Scott Murray <scott@spiteful.org>
4607 L:      linux-pci@vger.kernel.org
4608 S:      Maintained
4609 F:      drivers/pci/hotplug/cpcihp_generic.c
4610
4611 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4612 M:      Scott Murray <scott@spiteful.org>
4613 L:      linux-pci@vger.kernel.org
4614 S:      Maintained
4615 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4616
4617 COMPAL LAPTOP SUPPORT
4618 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4619 L:      platform-driver-x86@vger.kernel.org
4620 S:      Maintained
4621 F:      drivers/platform/x86/compal-laptop.c
4622
4623 COMPILER ATTRIBUTES
4624 M:      Miguel Ojeda <ojeda@kernel.org>
4625 S:      Maintained
4626 F:      include/linux/compiler_attributes.h
4627
4628 COMPUTE EXPRESS LINK (CXL)
4629 M:      Alison Schofield <alison.schofield@intel.com>
4630 M:      Vishal Verma <vishal.l.verma@intel.com>
4631 M:      Ira Weiny <ira.weiny@intel.com>
4632 M:      Ben Widawsky <ben.widawsky@intel.com>
4633 M:      Dan Williams <dan.j.williams@intel.com>
4634 L:      linux-cxl@vger.kernel.org
4635 S:      Maintained
4636 F:      drivers/cxl/
4637 F:      include/uapi/linux/cxl_mem.h
4638
4639 CONEXANT ACCESSRUNNER USB DRIVER
4640 L:      accessrunner-general@lists.sourceforge.net
4641 S:      Orphan
4642 W:      http://accessrunner.sourceforge.net/
4643 F:      drivers/usb/atm/cxacru.c
4644
4645 CONFIGFS
4646 M:      Joel Becker <jlbec@evilplan.org>
4647 M:      Christoph Hellwig <hch@lst.de>
4648 S:      Supported
4649 T:      git git://git.infradead.org/users/hch/configfs.git
4650 F:      fs/configfs/
4651 F:      include/linux/configfs.h
4652 F:      samples/configfs/
4653
4654 CONSOLE SUBSYSTEM
4655 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4656 S:      Supported
4657 F:      drivers/video/console/
4658 F:      include/linux/console*
4659
4660 CONTEXT TRACKING
4661 M:      Frederic Weisbecker <frederic@kernel.org>
4662 S:      Maintained
4663 F:      kernel/context_tracking.c
4664 F:      include/linux/context_tracking*
4665
4666 CONTROL GROUP (CGROUP)
4667 M:      Tejun Heo <tj@kernel.org>
4668 M:      Zefan Li <lizefan.x@bytedance.com>
4669 M:      Johannes Weiner <hannes@cmpxchg.org>
4670 L:      cgroups@vger.kernel.org
4671 S:      Maintained
4672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4673 F:      Documentation/admin-guide/cgroup-v1/
4674 F:      Documentation/admin-guide/cgroup-v2.rst
4675 F:      include/linux/cgroup*
4676 F:      kernel/cgroup/
4677
4678 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4679 M:      Tejun Heo <tj@kernel.org>
4680 M:      Jens Axboe <axboe@kernel.dk>
4681 L:      cgroups@vger.kernel.org
4682 L:      linux-block@vger.kernel.org
4683 T:      git git://git.kernel.dk/linux-block
4684 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4685 F:      block/bfq-cgroup.c
4686 F:      block/blk-cgroup.c
4687 F:      block/blk-iolatency.c
4688 F:      block/blk-throttle.c
4689 F:      include/linux/blk-cgroup.h
4690
4691 CONTROL GROUP - CPUSET
4692 M:      Zefan Li <lizefan.x@bytedance.com>
4693 L:      cgroups@vger.kernel.org
4694 S:      Maintained
4695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4696 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4697 F:      include/linux/cpuset.h
4698 F:      kernel/cgroup/cpuset.c
4699
4700 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4701 M:      Johannes Weiner <hannes@cmpxchg.org>
4702 M:      Michal Hocko <mhocko@kernel.org>
4703 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4704 L:      cgroups@vger.kernel.org
4705 L:      linux-mm@kvack.org
4706 S:      Maintained
4707 F:      mm/memcontrol.c
4708 F:      mm/swap_cgroup.c
4709
4710 CORETEMP HARDWARE MONITORING DRIVER
4711 M:      Fenghua Yu <fenghua.yu@intel.com>
4712 L:      linux-hwmon@vger.kernel.org
4713 S:      Maintained
4714 F:      Documentation/hwmon/coretemp.rst
4715 F:      drivers/hwmon/coretemp.c
4716
4717 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4718 M:      Marius Zachmann <mail@mariuszachmann.de>
4719 L:      linux-hwmon@vger.kernel.org
4720 S:      Maintained
4721 F:      drivers/hwmon/corsair-cpro.c
4722
4723 CORSAIR-PSU HARDWARE MONITOR DRIVER
4724 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4725 L:      linux-hwmon@vger.kernel.org
4726 S:      Maintained
4727 F:      Documentation/hwmon/corsair-psu.rst
4728 F:      drivers/hwmon/corsair-psu.c
4729
4730 COSA/SRP SYNC SERIAL DRIVER
4731 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4732 S:      Maintained
4733 W:      http://www.fi.muni.cz/~kas/cosa/
4734 F:      drivers/net/wan/cosa*
4735
4736 COUNTER SUBSYSTEM
4737 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4738 L:      linux-iio@vger.kernel.org
4739 S:      Maintained
4740 F:      Documentation/ABI/testing/sysfs-bus-counter
4741 F:      Documentation/driver-api/generic-counter.rst
4742 F:      drivers/counter/
4743 F:      include/linux/counter.h
4744 F:      include/linux/counter_enum.h
4745
4746 CP2615 I2C DRIVER
4747 M:      Bence Csókás <bence98@sch.bme.hu>
4748 S:      Maintained
4749 F:      drivers/i2c/busses/i2c-cp2615.c
4750
4751 CPMAC ETHERNET DRIVER
4752 M:      Florian Fainelli <f.fainelli@gmail.com>
4753 L:      netdev@vger.kernel.org
4754 S:      Maintained
4755 F:      drivers/net/ethernet/ti/cpmac.c
4756
4757 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4758 M:      Viresh Kumar <viresh.kumar@linaro.org>
4759 M:      Sudeep Holla <sudeep.holla@arm.com>
4760 L:      linux-pm@vger.kernel.org
4761 S:      Maintained
4762 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4763 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4764
4765 CPU FREQUENCY SCALING FRAMEWORK
4766 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4767 M:      Viresh Kumar <viresh.kumar@linaro.org>
4768 L:      linux-pm@vger.kernel.org
4769 S:      Maintained
4770 B:      https://bugzilla.kernel.org
4771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4773 F:      Documentation/admin-guide/pm/cpufreq.rst
4774 F:      Documentation/admin-guide/pm/intel_pstate.rst
4775 F:      Documentation/cpu-freq/
4776 F:      Documentation/devicetree/bindings/cpufreq/
4777 F:      drivers/cpufreq/
4778 F:      include/linux/cpufreq.h
4779 F:      include/linux/sched/cpufreq.h
4780 F:      kernel/sched/cpufreq*.c
4781 F:      tools/testing/selftests/cpufreq/
4782
4783 CPU IDLE TIME MANAGEMENT FRAMEWORK
4784 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4785 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4786 L:      linux-pm@vger.kernel.org
4787 S:      Maintained
4788 B:      https://bugzilla.kernel.org
4789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4790 F:      Documentation/admin-guide/pm/cpuidle.rst
4791 F:      Documentation/driver-api/pm/cpuidle.rst
4792 F:      drivers/cpuidle/
4793 F:      include/linux/cpuidle.h
4794
4795 CPU POWER MONITORING SUBSYSTEM
4796 M:      Thomas Renninger <trenn@suse.com>
4797 M:      Shuah Khan <shuah@kernel.org>
4798 M:      Shuah Khan <skhan@linuxfoundation.org>
4799 L:      linux-pm@vger.kernel.org
4800 S:      Maintained
4801 F:      tools/power/cpupower/
4802
4803 CPUID/MSR DRIVER
4804 M:      "H. Peter Anvin" <hpa@zytor.com>
4805 S:      Maintained
4806 F:      arch/x86/kernel/cpuid.c
4807 F:      arch/x86/kernel/msr.c
4808
4809 CPUIDLE DRIVER - ARM BIG LITTLE
4810 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4811 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4812 L:      linux-pm@vger.kernel.org
4813 L:      linux-arm-kernel@lists.infradead.org
4814 S:      Maintained
4815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4816 F:      drivers/cpuidle/cpuidle-big_little.c
4817
4818 CPUIDLE DRIVER - ARM EXYNOS
4819 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4820 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4821 M:      Kukjin Kim <kgene@kernel.org>
4822 L:      linux-pm@vger.kernel.org
4823 L:      linux-samsung-soc@vger.kernel.org
4824 S:      Supported
4825 F:      arch/arm/mach-exynos/pm.c
4826 F:      drivers/cpuidle/cpuidle-exynos.c
4827 F:      include/linux/platform_data/cpuidle-exynos.h
4828
4829 CPUIDLE DRIVER - ARM PSCI
4830 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4831 M:      Sudeep Holla <sudeep.holla@arm.com>
4832 L:      linux-pm@vger.kernel.org
4833 L:      linux-arm-kernel@lists.infradead.org
4834 S:      Supported
4835 F:      drivers/cpuidle/cpuidle-psci.c
4836
4837 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4838 M:      Ulf Hansson <ulf.hansson@linaro.org>
4839 L:      linux-pm@vger.kernel.org
4840 L:      linux-arm-kernel@lists.infradead.org
4841 S:      Supported
4842 F:      drivers/cpuidle/cpuidle-psci.h
4843 F:      drivers/cpuidle/cpuidle-psci-domain.c
4844
4845 CRAMFS FILESYSTEM
4846 M:      Nicolas Pitre <nico@fluxnic.net>
4847 S:      Maintained
4848 F:      Documentation/filesystems/cramfs.rst
4849 F:      fs/cramfs/
4850
4851 CREATIVE SB0540
4852 M:      Bastien Nocera <hadess@hadess.net>
4853 L:      linux-input@vger.kernel.org
4854 S:      Maintained
4855 F:      drivers/hid/hid-creative-sb0540.c
4856
4857 CRYPTO API
4858 M:      Herbert Xu <herbert@gondor.apana.org.au>
4859 M:      "David S. Miller" <davem@davemloft.net>
4860 L:      linux-crypto@vger.kernel.org
4861 S:      Maintained
4862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4864 F:      Documentation/crypto/
4865 F:      Documentation/devicetree/bindings/crypto/
4866 F:      arch/*/crypto/
4867 F:      crypto/
4868 F:      drivers/crypto/
4869 F:      include/crypto/
4870 F:      include/linux/crypto*
4871 F:      lib/crypto/
4872
4873 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4874 M:      Neil Horman <nhorman@tuxdriver.com>
4875 L:      linux-crypto@vger.kernel.org
4876 S:      Maintained
4877 F:      crypto/ansi_cprng.c
4878 F:      crypto/rng.c
4879
4880 CS3308 MEDIA DRIVER
4881 M:      Hans Verkuil <hverkuil@xs4all.nl>
4882 L:      linux-media@vger.kernel.org
4883 S:      Odd Fixes
4884 W:      http://linuxtv.org
4885 T:      git git://linuxtv.org/media_tree.git
4886 F:      drivers/media/i2c/cs3308.c
4887
4888 CS5535 Audio ALSA driver
4889 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4890 S:      Maintained
4891 F:      sound/pci/cs5535audio/
4892
4893 CSI DRIVERS FOR ALLWINNER V3s
4894 M:      Yong Deng <yong.deng@magewell.com>
4895 L:      linux-media@vger.kernel.org
4896 S:      Maintained
4897 T:      git git://linuxtv.org/media_tree.git
4898 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4899 F:      drivers/media/platform/sunxi/sun6i-csi/
4900
4901 CW1200 WLAN driver
4902 M:      Solomon Peachy <pizza@shaftnet.org>
4903 S:      Maintained
4904 F:      drivers/net/wireless/st/cw1200/
4905
4906 CX18 VIDEO4LINUX DRIVER
4907 M:      Andy Walls <awalls@md.metrocast.net>
4908 L:      linux-media@vger.kernel.org
4909 S:      Maintained
4910 W:      https://linuxtv.org
4911 T:      git git://linuxtv.org/media_tree.git
4912 F:      drivers/media/pci/cx18/
4913 F:      include/uapi/linux/ivtv*
4914
4915 CX2341X MPEG ENCODER HELPER MODULE
4916 M:      Hans Verkuil <hverkuil@xs4all.nl>
4917 L:      linux-media@vger.kernel.org
4918 S:      Maintained
4919 W:      https://linuxtv.org
4920 T:      git git://linuxtv.org/media_tree.git
4921 F:      drivers/media/common/cx2341x*
4922 F:      include/media/drv-intf/cx2341x.h
4923
4924 CX24120 MEDIA DRIVER
4925 M:      Jemma Denson <jdenson@gmail.com>
4926 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4927 L:      linux-media@vger.kernel.org
4928 S:      Maintained
4929 W:      https://linuxtv.org
4930 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4931 F:      drivers/media/dvb-frontends/cx24120*
4932
4933 CX88 VIDEO4LINUX DRIVER
4934 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4935 L:      linux-media@vger.kernel.org
4936 S:      Odd fixes
4937 W:      https://linuxtv.org
4938 T:      git git://linuxtv.org/media_tree.git
4939 F:      Documentation/driver-api/media/drivers/cx88*
4940 F:      drivers/media/pci/cx88/
4941
4942 CXD2820R MEDIA DRIVER
4943 M:      Antti Palosaari <crope@iki.fi>
4944 L:      linux-media@vger.kernel.org
4945 S:      Maintained
4946 W:      https://linuxtv.org
4947 W:      http://palosaari.fi/linux/
4948 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4949 T:      git git://linuxtv.org/anttip/media_tree.git
4950 F:      drivers/media/dvb-frontends/cxd2820r*
4951
4952 CXGB3 ETHERNET DRIVER (CXGB3)
4953 M:      Raju Rangoju <rajur@chelsio.com>
4954 L:      netdev@vger.kernel.org
4955 S:      Supported
4956 W:      http://www.chelsio.com
4957 F:      drivers/net/ethernet/chelsio/cxgb3/
4958
4959 CXGB3 ISCSI DRIVER (CXGB3I)
4960 M:      Karen Xie <kxie@chelsio.com>
4961 L:      linux-scsi@vger.kernel.org
4962 S:      Supported
4963 W:      http://www.chelsio.com
4964 F:      drivers/scsi/cxgbi/cxgb3i
4965
4966 CXGB4 CRYPTO DRIVER (chcr)
4967 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4968 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4969 M:      Rohit Maheshwari <rohitm@chelsio.com>
4970 L:      linux-crypto@vger.kernel.org
4971 S:      Supported
4972 W:      http://www.chelsio.com
4973 F:      drivers/crypto/chelsio
4974
4975 CXGB4 INLINE CRYPTO DRIVER
4976 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4977 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4978 M:      Rohit Maheshwari <rohitm@chelsio.com>
4979 L:      netdev@vger.kernel.org
4980 S:      Supported
4981 W:      http://www.chelsio.com
4982 F:      drivers/net/ethernet/chelsio/inline_crypto/
4983
4984 CXGB4 ETHERNET DRIVER (CXGB4)
4985 M:      Raju Rangoju <rajur@chelsio.com>
4986 L:      netdev@vger.kernel.org
4987 S:      Supported
4988 W:      http://www.chelsio.com
4989 F:      drivers/net/ethernet/chelsio/cxgb4/
4990
4991 CXGB4 ISCSI DRIVER (CXGB4I)
4992 M:      Karen Xie <kxie@chelsio.com>
4993 L:      linux-scsi@vger.kernel.org
4994 S:      Supported
4995 W:      http://www.chelsio.com
4996 F:      drivers/scsi/cxgbi/cxgb4i
4997
4998 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4999 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5000 L:      linux-rdma@vger.kernel.org
5001 S:      Supported
5002 W:      http://www.openfabrics.org
5003 F:      drivers/infiniband/hw/cxgb4/
5004 F:      include/uapi/rdma/cxgb4-abi.h
5005
5006 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5007 M:      Raju Rangoju <rajur@chelsio.com>
5008 L:      netdev@vger.kernel.org
5009 S:      Supported
5010 W:      http://www.chelsio.com
5011 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5012
5013 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5014 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5015 M:      Andrew Donnellan <ajd@linux.ibm.com>
5016 L:      linuxppc-dev@lists.ozlabs.org
5017 S:      Supported
5018 F:      Documentation/ABI/testing/sysfs-class-cxl
5019 F:      Documentation/powerpc/cxl.rst
5020 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5021 F:      drivers/misc/cxl/
5022 F:      include/misc/cxl*
5023 F:      include/uapi/misc/cxl.h
5024
5025 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5026 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5027 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5028 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5029 L:      linux-scsi@vger.kernel.org
5030 S:      Supported
5031 F:      Documentation/powerpc/cxlflash.rst
5032 F:      drivers/scsi/cxlflash/
5033 F:      include/uapi/scsi/cxlflash_ioctl.h
5034
5035 CYBERPRO FB DRIVER
5036 M:      Russell King <linux@armlinux.org.uk>
5037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5038 S:      Maintained
5039 W:      http://www.armlinux.org.uk/
5040 F:      drivers/video/fbdev/cyber2000fb.*
5041
5042 CYCLADES PC300 DRIVER
5043 S:      Orphan
5044 F:      drivers/net/wan/pc300*
5045
5046 CYPRESS_FIRMWARE MEDIA DRIVER
5047 M:      Antti Palosaari <crope@iki.fi>
5048 L:      linux-media@vger.kernel.org
5049 S:      Maintained
5050 W:      https://linuxtv.org
5051 W:      http://palosaari.fi/linux/
5052 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5053 T:      git git://linuxtv.org/anttip/media_tree.git
5054 F:      drivers/media/common/cypress_firmware*
5055
5056 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5057 M:      Linus Walleij <linus.walleij@linaro.org>
5058 L:      linux-input@vger.kernel.org
5059 S:      Maintained
5060 F:      drivers/input/touchscreen/cy8ctma140.c
5061
5062 CYTTSP TOUCHSCREEN DRIVER
5063 M:      Linus Walleij <linus.walleij@linaro.org>
5064 L:      linux-input@vger.kernel.org
5065 S:      Maintained
5066 F:      drivers/input/touchscreen/cyttsp*
5067
5068 D-LINK DIR-685 TOUCHKEYS DRIVER
5069 M:      Linus Walleij <linus.walleij@linaro.org>
5070 L:      linux-input@vger.kernel.org
5071 S:      Supported
5072 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5073
5074 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5075 M:      Joshua Kinard <kumba@gentoo.org>
5076 S:      Maintained
5077 F:      drivers/rtc/rtc-ds1685.c
5078 F:      include/linux/rtc/ds1685.h
5079
5080 DAMA SLAVE for AX.25
5081 M:      Joerg Reuter <jreuter@yaina.de>
5082 L:      linux-hams@vger.kernel.org
5083 S:      Maintained
5084 W:      http://yaina.de/jreuter/
5085 W:      http://www.qsl.net/dl1bke/
5086 F:      net/ax25/af_ax25.c
5087 F:      net/ax25/ax25_dev.c
5088 F:      net/ax25/ax25_ds_*
5089 F:      net/ax25/ax25_in.c
5090 F:      net/ax25/ax25_out.c
5091 F:      net/ax25/ax25_timer.c
5092 F:      net/ax25/sysctl_net_ax25.c
5093
5094 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5095 L:      netdev@vger.kernel.org
5096 S:      Orphan
5097 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5098 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5099
5100 DC390/AM53C974 SCSI driver
5101 M:      Hannes Reinecke <hare@suse.com>
5102 L:      linux-scsi@vger.kernel.org
5103 S:      Maintained
5104 F:      drivers/scsi/am53c974.c
5105
5106 DC395x SCSI driver
5107 M:      Oliver Neukum <oliver@neukum.org>
5108 M:      Ali Akcaagac <aliakc@web.de>
5109 M:      Jamie Lenehan <lenehan@twibble.org>
5110 L:      dc395x@twibble.org
5111 S:      Maintained
5112 W:      http://twibble.org/dist/dc395x/
5113 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5114 F:      Documentation/scsi/dc395x.rst
5115 F:      drivers/scsi/dc395x.*
5116
5117 DCCP PROTOCOL
5118 L:      dccp@vger.kernel.org
5119 S:      Orphan
5120 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5121 F:      include/linux/dccp.h
5122 F:      include/linux/tfrc.h
5123 F:      include/uapi/linux/dccp.h
5124 F:      net/dccp/
5125
5126 DECnet NETWORK LAYER
5127 L:      linux-decnet-user@lists.sourceforge.net
5128 S:      Orphan
5129 W:      http://linux-decnet.sourceforge.net
5130 F:      Documentation/networking/decnet.rst
5131 F:      net/decnet/
5132
5133 DECSTATION PLATFORM SUPPORT
5134 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5135 L:      linux-mips@vger.kernel.org
5136 S:      Maintained
5137 W:      http://www.linux-mips.org/wiki/DECstation
5138 F:      arch/mips/dec/
5139 F:      arch/mips/include/asm/dec/
5140 F:      arch/mips/include/asm/mach-dec/
5141
5142 DEFXX FDDI NETWORK DRIVER
5143 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5144 S:      Maintained
5145 F:      drivers/net/fddi/defxx.*
5146
5147 DEFZA FDDI NETWORK DRIVER
5148 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5149 S:      Maintained
5150 F:      drivers/net/fddi/defza.*
5151
5152 DEINTERLACE DRIVERS FOR ALLWINNER H3
5153 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5154 L:      linux-media@vger.kernel.org
5155 S:      Maintained
5156 T:      git git://linuxtv.org/media_tree.git
5157 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5158 F:      drivers/media/platform/sunxi/sun8i-di/
5159
5160 DELL LAPTOP DRIVER
5161 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5162 M:      Pali Rohár <pali@kernel.org>
5163 L:      platform-driver-x86@vger.kernel.org
5164 S:      Maintained
5165 F:      drivers/platform/x86/dell/dell-laptop.c
5166
5167 DELL LAPTOP FREEFALL DRIVER
5168 M:      Pali Rohár <pali@kernel.org>
5169 S:      Maintained
5170 F:      drivers/platform/x86/dell/dell-smo8800.c
5171
5172 DELL LAPTOP RBTN DRIVER
5173 M:      Pali Rohár <pali@kernel.org>
5174 S:      Maintained
5175 F:      drivers/platform/x86/dell/dell-rbtn.*
5176
5177 DELL LAPTOP SMM DRIVER
5178 M:      Pali Rohár <pali@kernel.org>
5179 S:      Maintained
5180 F:      drivers/hwmon/dell-smm-hwmon.c
5181 F:      include/uapi/linux/i8k.h
5182
5183 DELL REMOTE BIOS UPDATE DRIVER
5184 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5185 L:      platform-driver-x86@vger.kernel.org
5186 S:      Maintained
5187 F:      drivers/platform/x86/dell/dell_rbu.c
5188
5189 DELL SMBIOS DRIVER
5190 M:      Pali Rohár <pali@kernel.org>
5191 L:      Dell.Client.Kernel@dell.com
5192 L:      platform-driver-x86@vger.kernel.org
5193 S:      Maintained
5194 F:      drivers/platform/x86/dell/dell-smbios.*
5195
5196 DELL SMBIOS SMM DRIVER
5197 L:      Dell.Client.Kernel@dell.com
5198 L:      platform-driver-x86@vger.kernel.org
5199 S:      Maintained
5200 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5201
5202 DELL SMBIOS WMI DRIVER
5203 L:      Dell.Client.Kernel@dell.com
5204 L:      platform-driver-x86@vger.kernel.org
5205 S:      Maintained
5206 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5207 F:      tools/wmi/dell-smbios-example.c
5208
5209 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5210 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5211 L:      platform-driver-x86@vger.kernel.org
5212 S:      Maintained
5213 F:      Documentation/driver-api/dcdbas.rst
5214 F:      drivers/platform/x86/dell/dcdbas.*
5215
5216 DELL WMI DESCRIPTOR DRIVER
5217 L:      Dell.Client.Kernel@dell.com
5218 S:      Maintained
5219 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5220
5221 DELL WMI SYSMAN DRIVER
5222 M:      Divya Bharathi <divya.bharathi@dell.com>
5223 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5224 L:      Dell.Client.Kernel@dell.com
5225 L:      platform-driver-x86@vger.kernel.org
5226 S:      Maintained
5227 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5228 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5229
5230 DELL WMI NOTIFICATIONS DRIVER
5231 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5232 M:      Pali Rohár <pali@kernel.org>
5233 S:      Maintained
5234 F:      drivers/platform/x86/dell/dell-wmi-base.c
5235
5236 DELL WMI HARDWARE PRIVACY SUPPORT
5237 M:      Perry Yuan <Perry.Yuan@dell.com>
5238 L:      Dell.Client.Kernel@dell.com
5239 L:      platform-driver-x86@vger.kernel.org
5240 S:      Maintained
5241 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5242
5243 DELTA ST MEDIA DRIVER
5244 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5245 L:      linux-media@vger.kernel.org
5246 S:      Supported
5247 W:      https://linuxtv.org
5248 T:      git git://linuxtv.org/media_tree.git
5249 F:      drivers/media/platform/sti/delta
5250
5251 DELTA DPS920AB PSU DRIVER
5252 M:      Robert Marko <robert.marko@sartura.hr>
5253 L:      linux-hwmon@vger.kernel.org
5254 S:      Maintained
5255 F:      Documentation/hwmon/dps920ab.rst
5256 F:      drivers/hwmon/pmbus/dps920ab.c
5257
5258 DENALI NAND DRIVER
5259 L:      linux-mtd@lists.infradead.org
5260 S:      Orphan
5261 F:      drivers/mtd/nand/raw/denali*
5262
5263 DESIGNWARE EDMA CORE IP DRIVER
5264 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5265 L:      dmaengine@vger.kernel.org
5266 S:      Maintained
5267 F:      drivers/dma/dw-edma/
5268 F:      include/linux/dma/edma.h
5269
5270 DESIGNWARE XDATA IP DRIVER
5271 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5272 L:      linux-pci@vger.kernel.org
5273 S:      Maintained
5274 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5275 F:      drivers/misc/dw-xdata-pcie.c
5276
5277 DESIGNWARE USB2 DRD IP DRIVER
5278 M:      Minas Harutyunyan <hminas@synopsys.com>
5279 L:      linux-usb@vger.kernel.org
5280 S:      Maintained
5281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5282 F:      drivers/usb/dwc2/
5283
5284 DESIGNWARE USB3 DRD IP DRIVER
5285 M:      Felipe Balbi <balbi@kernel.org>
5286 L:      linux-usb@vger.kernel.org
5287 S:      Maintained
5288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5289 F:      drivers/usb/dwc3/
5290
5291 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5292 M:      Andreas Klinger <ak@it-klinger.de>
5293 L:      linux-iio@vger.kernel.org
5294 S:      Maintained
5295 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5296 F:      drivers/iio/proximity/srf*.c
5297
5298 DEVICE COREDUMP (DEV_COREDUMP)
5299 M:      Johannes Berg <johannes@sipsolutions.net>
5300 L:      linux-kernel@vger.kernel.org
5301 S:      Maintained
5302 F:      drivers/base/devcoredump.c
5303 F:      include/linux/devcoredump.h
5304
5305 DEVICE DEPENDENCY HELPER SCRIPT
5306 M:      Saravana Kannan <saravanak@google.com>
5307 L:      linux-kernel@vger.kernel.org
5308 S:      Maintained
5309 F:      scripts/dev-needs.sh
5310
5311 DEVICE DIRECT ACCESS (DAX)
5312 M:      Dan Williams <dan.j.williams@intel.com>
5313 M:      Vishal Verma <vishal.l.verma@intel.com>
5314 M:      Dave Jiang <dave.jiang@intel.com>
5315 L:      nvdimm@lists.linux.dev
5316 S:      Supported
5317 F:      drivers/dax/
5318
5319 DEVICE FREQUENCY (DEVFREQ)
5320 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5321 M:      Kyungmin Park <kyungmin.park@samsung.com>
5322 M:      Chanwoo Choi <cw00.choi@samsung.com>
5323 L:      linux-pm@vger.kernel.org
5324 S:      Maintained
5325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5326 F:      Documentation/devicetree/bindings/devfreq/
5327 F:      drivers/devfreq/
5328 F:      include/linux/devfreq.h
5329 F:      include/trace/events/devfreq.h
5330
5331 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5332 M:      Chanwoo Choi <cw00.choi@samsung.com>
5333 L:      linux-pm@vger.kernel.org
5334 S:      Supported
5335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5336 F:      Documentation/devicetree/bindings/devfreq/event/
5337 F:      drivers/devfreq/devfreq-event.c
5338 F:      drivers/devfreq/event/
5339 F:      include/dt-bindings/pmu/exynos_ppmu.h
5340 F:      include/linux/devfreq-event.h
5341
5342 DEVICE NUMBER REGISTRY
5343 M:      Torben Mathiasen <device@lanana.org>
5344 S:      Maintained
5345 W:      http://lanana.org/docs/device-list/index.html
5346
5347 DEVICE RESOURCE MANAGEMENT HELPERS
5348 M:      Hans de Goede <hdegoede@redhat.com>
5349 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5350 S:      Maintained
5351 F:      include/linux/devm-helpers.h
5352
5353 DEVICE-MAPPER  (LVM)
5354 M:      Alasdair Kergon <agk@redhat.com>
5355 M:      Mike Snitzer <snitzer@redhat.com>
5356 M:      dm-devel@redhat.com
5357 L:      dm-devel@redhat.com
5358 S:      Maintained
5359 W:      http://sources.redhat.com/dm
5360 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5362 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5363 F:      Documentation/admin-guide/device-mapper/
5364 F:      drivers/md/Kconfig
5365 F:      drivers/md/Makefile
5366 F:      drivers/md/dm*
5367 F:      drivers/md/persistent-data/
5368 F:      include/linux/device-mapper.h
5369 F:      include/linux/dm-*.h
5370 F:      include/uapi/linux/dm-*.h
5371
5372 DEVLINK
5373 M:      Jiri Pirko <jiri@nvidia.com>
5374 L:      netdev@vger.kernel.org
5375 S:      Supported
5376 F:      Documentation/networking/devlink
5377 F:      include/net/devlink.h
5378 F:      include/uapi/linux/devlink.h
5379 F:      net/core/devlink.c
5380
5381 DIALOG SEMICONDUCTOR DRIVERS
5382 M:      Support Opensource <support.opensource@diasemi.com>
5383 S:      Supported
5384 W:      http://www.dialog-semiconductor.com/products
5385 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5386 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5387 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5388 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5389 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5390 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5391 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5392 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5393 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5394 F:      Documentation/hwmon/da90??.rst
5395 F:      drivers/gpio/gpio-da90??.c
5396 F:      drivers/hwmon/da90??-hwmon.c
5397 F:      drivers/iio/adc/da91??-*.c
5398 F:      drivers/input/misc/da72??.[ch]
5399 F:      drivers/input/misc/da90??_onkey.c
5400 F:      drivers/input/touchscreen/da9052_tsi.c
5401 F:      drivers/leds/leds-da90??.c
5402 F:      drivers/mfd/da903x.c
5403 F:      drivers/mfd/da90??-*.c
5404 F:      drivers/mfd/da91??-*.c
5405 F:      drivers/pinctrl/pinctrl-da90??.c
5406 F:      drivers/power/supply/da9052-battery.c
5407 F:      drivers/power/supply/da91??-*.c
5408 F:      drivers/regulator/da9???-regulator.[ch]
5409 F:      drivers/regulator/slg51000-regulator.[ch]
5410 F:      drivers/rtc/rtc-da90??.c
5411 F:      drivers/thermal/da90??-thermal.c
5412 F:      drivers/video/backlight/da90??_bl.c
5413 F:      drivers/watchdog/da90??_wdt.c
5414 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5415 F:      include/linux/mfd/da903x.h
5416 F:      include/linux/mfd/da9052/
5417 F:      include/linux/mfd/da9055/
5418 F:      include/linux/mfd/da9062/
5419 F:      include/linux/mfd/da9063/
5420 F:      include/linux/mfd/da9150/
5421 F:      include/linux/regulator/da9211.h
5422 F:      include/sound/da[79]*.h
5423 F:      sound/soc/codecs/da[79]*.[ch]
5424
5425 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5426 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5427 L:      linux-gpio@vger.kernel.org
5428 S:      Maintained
5429 F:      drivers/gpio/gpio-gpio-mm.c
5430
5431 DIOLAN U2C-12 I2C DRIVER
5432 M:      Guenter Roeck <linux@roeck-us.net>
5433 L:      linux-i2c@vger.kernel.org
5434 S:      Maintained
5435 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5436
5437 DIRECTORY NOTIFICATION (DNOTIFY)
5438 M:      Jan Kara <jack@suse.cz>
5439 R:      Amir Goldstein <amir73il@gmail.com>
5440 L:      linux-fsdevel@vger.kernel.org
5441 S:      Maintained
5442 F:      Documentation/filesystems/dnotify.rst
5443 F:      fs/notify/dnotify/
5444 F:      include/linux/dnotify.h
5445
5446 DISK GEOMETRY AND PARTITION HANDLING
5447 M:      Andries Brouwer <aeb@cwi.nl>
5448 S:      Maintained
5449 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5450 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5451 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5452
5453 DISKQUOTA
5454 M:      Jan Kara <jack@suse.com>
5455 S:      Maintained
5456 F:      Documentation/filesystems/quota.rst
5457 F:      fs/quota/
5458 F:      include/linux/quota*.h
5459 F:      include/uapi/linux/quota*.h
5460
5461 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5462 M:      Bernie Thompson <bernie@plugable.com>
5463 L:      linux-fbdev@vger.kernel.org
5464 S:      Maintained
5465 W:      http://plugable.com/category/projects/udlfb/
5466 F:      Documentation/fb/udlfb.rst
5467 F:      drivers/video/fbdev/udlfb.c
5468 F:      include/video/udlfb.h
5469
5470 DISTRIBUTED LOCK MANAGER (DLM)
5471 M:      Christine Caulfield <ccaulfie@redhat.com>
5472 M:      David Teigland <teigland@redhat.com>
5473 L:      cluster-devel@redhat.com
5474 S:      Supported
5475 W:      http://sources.redhat.com/cluster/
5476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5477 F:      fs/dlm/
5478
5479 DMA BUFFER SHARING FRAMEWORK
5480 M:      Sumit Semwal <sumit.semwal@linaro.org>
5481 M:      Christian König <christian.koenig@amd.com>
5482 L:      linux-media@vger.kernel.org
5483 L:      dri-devel@lists.freedesktop.org
5484 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5485 S:      Maintained
5486 T:      git git://anongit.freedesktop.org/drm/drm-misc
5487 F:      Documentation/driver-api/dma-buf.rst
5488 F:      drivers/dma-buf/
5489 F:      include/linux/*fence.h
5490 F:      include/linux/dma-buf*
5491 F:      include/linux/dma-resv.h
5492 K:      \bdma_(?:buf|fence|resv)\b
5493
5494 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5495 M:      Vinod Koul <vkoul@kernel.org>
5496 L:      dmaengine@vger.kernel.org
5497 S:      Maintained
5498 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5500 F:      Documentation/devicetree/bindings/dma/
5501 F:      Documentation/driver-api/dmaengine/
5502 F:      drivers/dma/
5503 F:      include/linux/dma/
5504 F:      include/linux/dmaengine.h
5505 F:      include/linux/of_dma.h
5506
5507 DMA MAPPING HELPERS
5508 M:      Christoph Hellwig <hch@lst.de>
5509 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5510 R:      Robin Murphy <robin.murphy@arm.com>
5511 L:      iommu@lists.linux-foundation.org
5512 S:      Supported
5513 W:      http://git.infradead.org/users/hch/dma-mapping.git
5514 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5515 F:      include/asm-generic/dma-mapping.h
5516 F:      include/linux/dma-direct.h
5517 F:      include/linux/dma-mapping.h
5518 F:      include/linux/dma-map-ops.h
5519 F:      kernel/dma/
5520
5521 DMA MAPPING BENCHMARK
5522 M:      Barry Song <song.bao.hua@hisilicon.com>
5523 L:      iommu@lists.linux-foundation.org
5524 F:      kernel/dma/map_benchmark.c
5525 F:      tools/testing/selftests/dma/
5526
5527 DMA-BUF HEAPS FRAMEWORK
5528 M:      Sumit Semwal <sumit.semwal@linaro.org>
5529 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5530 R:      Liam Mark <lmark@codeaurora.org>
5531 R:      Laura Abbott <labbott@redhat.com>
5532 R:      Brian Starkey <Brian.Starkey@arm.com>
5533 R:      John Stultz <john.stultz@linaro.org>
5534 L:      linux-media@vger.kernel.org
5535 L:      dri-devel@lists.freedesktop.org
5536 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5537 S:      Maintained
5538 T:      git git://anongit.freedesktop.org/drm/drm-misc
5539 F:      drivers/dma-buf/dma-heap.c
5540 F:      drivers/dma-buf/heaps/*
5541 F:      include/linux/dma-heap.h
5542 F:      include/uapi/linux/dma-heap.h
5543
5544 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5545 M:      Lukasz Luba <lukasz.luba@arm.com>
5546 L:      linux-pm@vger.kernel.org
5547 L:      linux-samsung-soc@vger.kernel.org
5548 S:      Maintained
5549 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5550 F:      drivers/memory/samsung/exynos5422-dmc.c
5551
5552 DME1737 HARDWARE MONITOR DRIVER
5553 M:      Juerg Haefliger <juergh@gmail.com>
5554 L:      linux-hwmon@vger.kernel.org
5555 S:      Maintained
5556 F:      Documentation/hwmon/dme1737.rst
5557 F:      drivers/hwmon/dme1737.c
5558
5559 DMI/SMBIOS SUPPORT
5560 M:      Jean Delvare <jdelvare@suse.com>
5561 S:      Maintained
5562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5563 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5564 F:      drivers/firmware/dmi-id.c
5565 F:      drivers/firmware/dmi_scan.c
5566 F:      include/linux/dmi.h
5567
5568 DOCUMENTATION
5569 M:      Jonathan Corbet <corbet@lwn.net>
5570 L:      linux-doc@vger.kernel.org
5571 S:      Maintained
5572 P:      Documentation/doc-guide/maintainer-profile.rst
5573 T:      git git://git.lwn.net/linux.git docs-next
5574 F:      Documentation/
5575 F:      scripts/documentation-file-ref-check
5576 F:      scripts/kernel-doc
5577 F:      scripts/sphinx-pre-install
5578 X:      Documentation/ABI/
5579 X:      Documentation/admin-guide/media/
5580 X:      Documentation/devicetree/
5581 X:      Documentation/driver-api/media/
5582 X:      Documentation/firmware-guide/acpi/
5583 X:      Documentation/i2c/
5584 X:      Documentation/power/
5585 X:      Documentation/spi/
5586 X:      Documentation/userspace-api/media/
5587
5588 DOCUMENTATION REPORTING ISSUES
5589 M:      Thorsten Leemhuis <linux@leemhuis.info>
5590 L:      linux-doc@vger.kernel.org
5591 S:      Maintained
5592 F:      Documentation/admin-guide/reporting-issues.rst
5593
5594 DOCUMENTATION SCRIPTS
5595 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5596 L:      linux-doc@vger.kernel.org
5597 S:      Maintained
5598 F:      Documentation/sphinx/parse-headers.pl
5599 F:      scripts/documentation-file-ref-check
5600 F:      scripts/sphinx-pre-install
5601
5602 DOCUMENTATION/ITALIAN
5603 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5604 L:      linux-doc@vger.kernel.org
5605 S:      Maintained
5606 F:      Documentation/translations/it_IT
5607
5608 DONGWOON DW9714 LENS VOICE COIL DRIVER
5609 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5610 L:      linux-media@vger.kernel.org
5611 S:      Maintained
5612 T:      git git://linuxtv.org/media_tree.git
5613 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5614 F:      drivers/media/i2c/dw9714.c
5615
5616 DONGWOON DW9768 LENS VOICE COIL DRIVER
5617 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5618 L:      linux-media@vger.kernel.org
5619 S:      Maintained
5620 T:      git git://linuxtv.org/media_tree.git
5621 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5622 F:      drivers/media/i2c/dw9768.c
5623
5624 DONGWOON DW9807 LENS VOICE COIL DRIVER
5625 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5626 L:      linux-media@vger.kernel.org
5627 S:      Maintained
5628 T:      git git://linuxtv.org/media_tree.git
5629 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5630 F:      drivers/media/i2c/dw9807-vcm.c
5631
5632 DOUBLETALK DRIVER
5633 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5634 L:      blinux-list@redhat.com
5635 S:      Maintained
5636 F:      drivers/char/dtlk.c
5637 F:      include/linux/dtlk.h
5638
5639 DPAA2 DATAPATH I/O (DPIO) DRIVER
5640 M:      Roy Pledge <Roy.Pledge@nxp.com>
5641 L:      linux-kernel@vger.kernel.org
5642 S:      Maintained
5643 F:      drivers/soc/fsl/dpio
5644
5645 DPAA2 ETHERNET DRIVER
5646 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5647 L:      netdev@vger.kernel.org
5648 S:      Maintained
5649 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5650 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5651 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5652 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5653 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5654 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5655 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5656 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5657 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5658
5659 DPAA2 ETHERNET SWITCH DRIVER
5660 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5661 L:      netdev@vger.kernel.org
5662 S:      Maintained
5663 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5664 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5665
5666 DPT_I2O SCSI RAID DRIVER
5667 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5668 L:      linux-scsi@vger.kernel.org
5669 S:      Maintained
5670 W:      http://www.adaptec.com/
5671 F:      drivers/scsi/dpt*
5672 F:      drivers/scsi/dpt/
5673
5674 DRBD DRIVER
5675 M:      Philipp Reisner <philipp.reisner@linbit.com>
5676 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5677 L:      drbd-dev@lists.linbit.com
5678 S:      Supported
5679 W:      http://www.drbd.org
5680 T:      git git://git.linbit.com/linux-drbd.git
5681 T:      git git://git.linbit.com/drbd-8.4.git
5682 F:      Documentation/admin-guide/blockdev/
5683 F:      drivers/block/drbd/
5684 F:      lib/lru_cache.c
5685
5686 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5687 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5688 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5689 S:      Supported
5690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5691 F:      Documentation/core-api/kobject.rst
5692 F:      drivers/base/
5693 F:      fs/debugfs/
5694 F:      fs/sysfs/
5695 F:      include/linux/debugfs.h
5696 F:      include/linux/kobj*
5697 F:      lib/kobj*
5698
5699 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5700 M:      Nishanth Menon <nm@ti.com>
5701 L:      linux-pm@vger.kernel.org
5702 S:      Maintained
5703 F:      drivers/soc/ti/smartreflex.c
5704 F:      include/linux/power/smartreflex.h
5705
5706 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5707 M:      Maxime Ripard <mripard@kernel.org>
5708 M:      Chen-Yu Tsai <wens@csie.org>
5709 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5710 L:      dri-devel@lists.freedesktop.org
5711 S:      Supported
5712 T:      git git://anongit.freedesktop.org/drm/drm-misc
5713 F:      drivers/gpu/drm/sun4i/sun8i*
5714
5715 DRM DRIVER FOR ARM PL111 CLCD
5716 M:      Emma Anholt <emma@anholt.net>
5717 S:      Supported
5718 T:      git git://anongit.freedesktop.org/drm/drm-misc
5719 F:      drivers/gpu/drm/pl111/
5720
5721 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5722 M:      Linus Walleij <linus.walleij@linaro.org>
5723 S:      Maintained
5724 T:      git git://anongit.freedesktop.org/drm/drm-misc
5725 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5726 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5727
5728 DRM DRIVER FOR ASPEED BMC GFX
5729 M:      Joel Stanley <joel@jms.id.au>
5730 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5731 S:      Supported
5732 T:      git git://anongit.freedesktop.org/drm/drm-misc
5733 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5734 F:      drivers/gpu/drm/aspeed/
5735
5736 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5737 M:      Dave Airlie <airlied@redhat.com>
5738 R:      Thomas Zimmermann <tzimmermann@suse.de>
5739 L:      dri-devel@lists.freedesktop.org
5740 S:      Supported
5741 T:      git git://anongit.freedesktop.org/drm/drm-misc
5742 F:      drivers/gpu/drm/ast/
5743
5744 DRM DRIVER FOR BOCHS VIRTUAL GPU
5745 M:      Gerd Hoffmann <kraxel@redhat.com>
5746 L:      virtualization@lists.linux-foundation.org
5747 S:      Maintained
5748 T:      git git://anongit.freedesktop.org/drm/drm-misc
5749 F:      drivers/gpu/drm/bochs/
5750
5751 DRM DRIVER FOR BOE HIMAX8279D PANELS
5752 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5753 S:      Maintained
5754 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5755 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5756
5757 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5758 M:      Jagan Teki <jagan@amarulasolutions.com>
5759 S:      Maintained
5760 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5761 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5762
5763 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5764 M:      Linus Walleij <linus.walleij@linaro.org>
5765 S:      Maintained
5766 T:      git git://anongit.freedesktop.org/drm/drm-misc
5767 F:      drivers/gpu/drm/tve200/
5768
5769 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5770 M:      Icenowy Zheng <icenowy@aosc.io>
5771 S:      Maintained
5772 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5773 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5774
5775 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5776 M:      Jagan Teki <jagan@amarulasolutions.com>
5777 S:      Maintained
5778 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5779 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5780
5781 DRM DRIVER FOR GENERIC USB DISPLAY
5782 M:      Noralf Trønnes <noralf@tronnes.org>
5783 S:      Maintained
5784 W:      https://github.com/notro/gud/wiki
5785 T:      git git://anongit.freedesktop.org/drm/drm-misc
5786 F:      drivers/gpu/drm/gud/
5787 F:      include/drm/gud.h
5788
5789 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5790 M:      Hans de Goede <hdegoede@redhat.com>
5791 S:      Maintained
5792 T:      git git://anongit.freedesktop.org/drm/drm-misc
5793 F:      drivers/gpu/drm/tiny/gm12u320.c
5794
5795 DRM DRIVER FOR HX8357D PANELS
5796 M:      Emma Anholt <emma@anholt.net>
5797 S:      Maintained
5798 T:      git git://anongit.freedesktop.org/drm/drm-misc
5799 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5800 F:      drivers/gpu/drm/tiny/hx8357d.c
5801
5802 DRM DRIVER FOR ILITEK ILI9225 PANELS
5803 M:      David Lechner <david@lechnology.com>
5804 S:      Maintained
5805 T:      git git://anongit.freedesktop.org/drm/drm-misc
5806 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5807 F:      drivers/gpu/drm/tiny/ili9225.c
5808
5809 DRM DRIVER FOR ILITEK ILI9486 PANELS
5810 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5811 S:      Maintained
5812 T:      git git://anongit.freedesktop.org/drm/drm-misc
5813 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5814 F:      drivers/gpu/drm/tiny/ili9486.c
5815
5816 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5817 S:      Orphan / Obsolete
5818 F:      drivers/gpu/drm/i810/
5819 F:      include/uapi/drm/i810_drm.h
5820
5821 DRM DRIVER FOR LVDS PANELS
5822 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5823 L:      dri-devel@lists.freedesktop.org
5824 T:      git git://anongit.freedesktop.org/drm/drm-misc
5825 S:      Maintained
5826 F:      drivers/gpu/drm/panel/panel-lvds.c
5827 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5828
5829 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5830 M:      Guido Günther <agx@sigxcpu.org>
5831 R:      Purism Kernel Team <kernel@puri.sm>
5832 S:      Maintained
5833 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5834 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5835
5836 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5837 S:      Orphan / Obsolete
5838 F:      drivers/gpu/drm/mga/
5839 F:      include/uapi/drm/mga_drm.h
5840
5841 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5842 M:      Dave Airlie <airlied@redhat.com>
5843 R:      Thomas Zimmermann <tzimmermann@suse.de>
5844 L:      dri-devel@lists.freedesktop.org
5845 S:      Supported
5846 T:      git git://anongit.freedesktop.org/drm/drm-misc
5847 F:      drivers/gpu/drm/mgag200/
5848
5849 DRM DRIVER FOR MI0283QT
5850 M:      Noralf Trønnes <noralf@tronnes.org>
5851 S:      Maintained
5852 T:      git git://anongit.freedesktop.org/drm/drm-misc
5853 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5854 F:      drivers/gpu/drm/tiny/mi0283qt.c
5855
5856 DRM DRIVER FOR MSM ADRENO GPU
5857 M:      Rob Clark <robdclark@gmail.com>
5858 M:      Sean Paul <sean@poorly.run>
5859 L:      linux-arm-msm@vger.kernel.org
5860 L:      dri-devel@lists.freedesktop.org
5861 L:      freedreno@lists.freedesktop.org
5862 S:      Maintained
5863 T:      git https://gitlab.freedesktop.org/drm/msm.git
5864 F:      Documentation/devicetree/bindings/display/msm/
5865 F:      drivers/gpu/drm/msm/
5866 F:      include/uapi/drm/msm_drm.h
5867
5868 DRM DRIVER FOR NOVATEK NT35510 PANELS
5869 M:      Linus Walleij <linus.walleij@linaro.org>
5870 S:      Maintained
5871 T:      git git://anongit.freedesktop.org/drm/drm-misc
5872 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5873 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5874
5875 DRM DRIVER FOR NOVATEK NT36672A PANELS
5876 M:      Sumit Semwal <sumit.semwal@linaro.org>
5877 S:      Maintained
5878 T:      git git://anongit.freedesktop.org/drm/drm-misc
5879 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5880 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5881
5882 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5883 M:      Ben Skeggs <bskeggs@redhat.com>
5884 L:      dri-devel@lists.freedesktop.org
5885 L:      nouveau@lists.freedesktop.org
5886 S:      Supported
5887 T:      git git://github.com/skeggsb/linux
5888 F:      drivers/gpu/drm/nouveau/
5889 F:      include/uapi/drm/nouveau_drm.h
5890
5891 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5892 M:      Stefan Mavrodiev <stefan@olimex.com>
5893 S:      Maintained
5894 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5895 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5896
5897 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5898 M:      Noralf Trønnes <noralf@tronnes.org>
5899 S:      Maintained
5900 T:      git git://anongit.freedesktop.org/drm/drm-misc
5901 F:      Documentation/devicetree/bindings/display/repaper.txt
5902 F:      drivers/gpu/drm/tiny/repaper.c
5903
5904 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5905 M:      Dave Airlie <airlied@redhat.com>
5906 M:      Gerd Hoffmann <kraxel@redhat.com>
5907 L:      virtualization@lists.linux-foundation.org
5908 S:      Obsolete
5909 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5910 T:      git git://anongit.freedesktop.org/drm/drm-misc
5911 F:      drivers/gpu/drm/tiny/cirrus.c
5912
5913 DRM DRIVER FOR QXL VIRTUAL GPU
5914 M:      Dave Airlie <airlied@redhat.com>
5915 M:      Gerd Hoffmann <kraxel@redhat.com>
5916 L:      virtualization@lists.linux-foundation.org
5917 L:      spice-devel@lists.freedesktop.org
5918 S:      Maintained
5919 T:      git git://anongit.freedesktop.org/drm/drm-misc
5920 F:      drivers/gpu/drm/qxl/
5921 F:      include/uapi/drm/qxl_drm.h
5922
5923 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5924 S:      Orphan / Obsolete
5925 F:      drivers/gpu/drm/r128/
5926 F:      include/uapi/drm/r128_drm.h
5927
5928 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5929 M:      Robert Chiras <robert.chiras@nxp.com>
5930 S:      Maintained
5931 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5932 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5933
5934 DRM DRIVER FOR SITRONIX ST7703 PANELS
5935 M:      Guido Günther <agx@sigxcpu.org>
5936 R:      Purism Kernel Team <kernel@puri.sm>
5937 R:      Ondrej Jirman <megous@megous.com>
5938 S:      Maintained
5939 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5940 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5941
5942 DRM DRIVER FOR SAVAGE VIDEO CARDS
5943 S:      Orphan / Obsolete
5944 F:      drivers/gpu/drm/savage/
5945 F:      include/uapi/drm/savage_drm.h
5946
5947 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
5948 M:      Thomas Zimmermann <tzimmermann@suse.de>
5949 L:      dri-devel@lists.freedesktop.org
5950 S:      Maintained
5951 T:      git git://anongit.freedesktop.org/drm/drm-misc
5952 F:      drivers/gpu/drm/tiny/simpledrm.c
5953
5954 DRM DRIVER FOR SIS VIDEO CARDS
5955 S:      Orphan / Obsolete
5956 F:      drivers/gpu/drm/sis/
5957 F:      include/uapi/drm/sis_drm.h
5958
5959 DRM DRIVER FOR SITRONIX ST7586 PANELS
5960 M:      David Lechner <david@lechnology.com>
5961 S:      Maintained
5962 T:      git git://anongit.freedesktop.org/drm/drm-misc
5963 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5964 F:      drivers/gpu/drm/tiny/st7586.c
5965
5966 DRM DRIVER FOR SITRONIX ST7701 PANELS
5967 M:      Jagan Teki <jagan@amarulasolutions.com>
5968 S:      Maintained
5969 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5970 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5971
5972 DRM DRIVER FOR SITRONIX ST7735R PANELS
5973 M:      David Lechner <david@lechnology.com>
5974 S:      Maintained
5975 T:      git git://anongit.freedesktop.org/drm/drm-misc
5976 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5977 F:      drivers/gpu/drm/tiny/st7735r.c
5978
5979 DRM DRIVER FOR SONY ACX424AKP PANELS
5980 M:      Linus Walleij <linus.walleij@linaro.org>
5981 S:      Maintained
5982 T:      git git://anongit.freedesktop.org/drm/drm-misc
5983 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5984
5985 DRM DRIVER FOR ST-ERICSSON MCDE
5986 M:      Linus Walleij <linus.walleij@linaro.org>
5987 S:      Maintained
5988 T:      git git://anongit.freedesktop.org/drm/drm-misc
5989 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
5990 F:      drivers/gpu/drm/mcde/
5991
5992 DRM DRIVER FOR TDFX VIDEO CARDS
5993 S:      Orphan / Obsolete
5994 F:      drivers/gpu/drm/tdfx/
5995
5996 DRM DRIVER FOR TPO TPG110 PANELS
5997 M:      Linus Walleij <linus.walleij@linaro.org>
5998 S:      Maintained
5999 T:      git git://anongit.freedesktop.org/drm/drm-misc
6000 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6001 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6002
6003 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6004 M:      Dave Airlie <airlied@redhat.com>
6005 R:      Sean Paul <sean@poorly.run>
6006 R:      Thomas Zimmermann <tzimmermann@suse.de>
6007 L:      dri-devel@lists.freedesktop.org
6008 S:      Supported
6009 T:      git git://anongit.freedesktop.org/drm/drm-misc
6010 F:      drivers/gpu/drm/udl/
6011
6012 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6013 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6014 M:      Melissa Wen <melissa.srw@gmail.com>
6015 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6016 R:      Daniel Vetter <daniel@ffwll.ch>
6017 L:      dri-devel@lists.freedesktop.org
6018 S:      Maintained
6019 T:      git git://anongit.freedesktop.org/drm/drm-misc
6020 F:      Documentation/gpu/vkms.rst
6021 F:      drivers/gpu/drm/vkms/
6022
6023 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6024 M:      Hans de Goede <hdegoede@redhat.com>
6025 L:      dri-devel@lists.freedesktop.org
6026 S:      Maintained
6027 T:      git git://anongit.freedesktop.org/drm/drm-misc
6028 F:      drivers/gpu/drm/vboxvideo/
6029
6030 DRM DRIVER FOR VMWARE VIRTUAL GPU
6031 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6032 M:      Roland Scheidegger <sroland@vmware.com>
6033 M:      Zack Rusin <zackr@vmware.com>
6034 L:      dri-devel@lists.freedesktop.org
6035 S:      Supported
6036 T:      git git://people.freedesktop.org/~sroland/linux
6037 F:      drivers/gpu/drm/vmwgfx/
6038 F:      include/uapi/drm/vmwgfx_drm.h
6039
6040 DRM DRIVERS
6041 M:      David Airlie <airlied@linux.ie>
6042 M:      Daniel Vetter <daniel@ffwll.ch>
6043 L:      dri-devel@lists.freedesktop.org
6044 S:      Maintained
6045 B:      https://gitlab.freedesktop.org/drm
6046 C:      irc://chat.freenode.net/dri-devel
6047 T:      git git://anongit.freedesktop.org/drm/drm
6048 F:      Documentation/devicetree/bindings/display/
6049 F:      Documentation/devicetree/bindings/gpu/
6050 F:      Documentation/gpu/
6051 F:      drivers/gpu/drm/
6052 F:      drivers/gpu/vga/
6053 F:      include/drm/
6054 F:      include/linux/vga*
6055 F:      include/uapi/drm/
6056
6057 DRM DRIVERS AND MISC GPU PATCHES
6058 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6059 M:      Maxime Ripard <mripard@kernel.org>
6060 M:      Thomas Zimmermann <tzimmermann@suse.de>
6061 S:      Maintained
6062 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6063 T:      git git://anongit.freedesktop.org/drm/drm-misc
6064 F:      Documentation/gpu/
6065 F:      drivers/gpu/drm/*
6066 F:      drivers/gpu/vga/
6067 F:      include/drm/drm*
6068 F:      include/linux/vga*
6069 F:      include/uapi/drm/drm*
6070
6071 DRM DRIVERS FOR ALLWINNER A10
6072 M:      Maxime Ripard <mripard@kernel.org>
6073 M:      Chen-Yu Tsai <wens@csie.org>
6074 L:      dri-devel@lists.freedesktop.org
6075 S:      Supported
6076 T:      git git://anongit.freedesktop.org/drm/drm-misc
6077 F:      Documentation/devicetree/bindings/display/allwinner*
6078 F:      drivers/gpu/drm/sun4i/
6079
6080 DRM DRIVERS FOR AMLOGIC SOCS
6081 M:      Neil Armstrong <narmstrong@baylibre.com>
6082 L:      dri-devel@lists.freedesktop.org
6083 L:      linux-amlogic@lists.infradead.org
6084 S:      Supported
6085 W:      http://linux-meson.com/
6086 T:      git git://anongit.freedesktop.org/drm/drm-misc
6087 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6088 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6089 F:      Documentation/gpu/meson.rst
6090 F:      drivers/gpu/drm/meson/
6091
6092 DRM DRIVERS FOR ATMEL HLCDC
6093 M:      Sam Ravnborg <sam@ravnborg.org>
6094 M:      Boris Brezillon <bbrezillon@kernel.org>
6095 L:      dri-devel@lists.freedesktop.org
6096 S:      Supported
6097 T:      git git://anongit.freedesktop.org/drm/drm-misc
6098 F:      Documentation/devicetree/bindings/display/atmel/
6099 F:      drivers/gpu/drm/atmel-hlcdc/
6100
6101 DRM DRIVERS FOR BRIDGE CHIPS
6102 M:      Andrzej Hajda <a.hajda@samsung.com>
6103 M:      Neil Armstrong <narmstrong@baylibre.com>
6104 M:      Robert Foss <robert.foss@linaro.org>
6105 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6106 R:      Jonas Karlman <jonas@kwiboo.se>
6107 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6108 S:      Maintained
6109 T:      git git://anongit.freedesktop.org/drm/drm-misc
6110 F:      drivers/gpu/drm/bridge/
6111
6112 DRM DRIVERS FOR EXYNOS
6113 M:      Inki Dae <inki.dae@samsung.com>
6114 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6115 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6116 M:      Kyungmin Park <kyungmin.park@samsung.com>
6117 L:      dri-devel@lists.freedesktop.org
6118 S:      Supported
6119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6120 F:      Documentation/devicetree/bindings/display/exynos/
6121 F:      drivers/gpu/drm/exynos/
6122 F:      include/uapi/drm/exynos_drm.h
6123
6124 DRM DRIVERS FOR FREESCALE DCU
6125 M:      Stefan Agner <stefan@agner.ch>
6126 M:      Alison Wang <alison.wang@nxp.com>
6127 L:      dri-devel@lists.freedesktop.org
6128 S:      Supported
6129 T:      git git://anongit.freedesktop.org/drm/drm-misc
6130 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6131 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6132 F:      drivers/gpu/drm/fsl-dcu/
6133
6134 DRM DRIVERS FOR FREESCALE IMX
6135 M:      Philipp Zabel <p.zabel@pengutronix.de>
6136 L:      dri-devel@lists.freedesktop.org
6137 S:      Maintained
6138 F:      Documentation/devicetree/bindings/display/imx/
6139 F:      drivers/gpu/drm/imx/
6140 F:      drivers/gpu/ipu-v3/
6141
6142 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6143 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6144 L:      dri-devel@lists.freedesktop.org
6145 S:      Maintained
6146 T:      git git://github.com/patjak/drm-gma500
6147 F:      drivers/gpu/drm/gma500/
6148
6149 DRM DRIVERS FOR HISILICON
6150 M:      Xinliang Liu <xinliang.liu@linaro.org>
6151 M:      Tian Tao  <tiantao6@hisilicon.com>
6152 R:      John Stultz <john.stultz@linaro.org>
6153 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6154 R:      Chen Feng <puck.chen@hisilicon.com>
6155 L:      dri-devel@lists.freedesktop.org
6156 S:      Maintained
6157 T:      git git://anongit.freedesktop.org/drm/drm-misc
6158 F:      Documentation/devicetree/bindings/display/hisilicon/
6159 F:      drivers/gpu/drm/hisilicon/
6160
6161 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6162 M:      Deepak Rawat <drawat.floss@gmail.com>
6163 L:      linux-hyperv@vger.kernel.org
6164 L:      dri-devel@lists.freedesktop.org
6165 S:      Maintained
6166 T:      git git://anongit.freedesktop.org/drm/drm-misc
6167 F:      drivers/gpu/drm/hyperv
6168
6169 DRM DRIVERS FOR LIMA
6170 M:      Qiang Yu <yuq825@gmail.com>
6171 L:      dri-devel@lists.freedesktop.org
6172 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6173 S:      Maintained
6174 T:      git git://anongit.freedesktop.org/drm/drm-misc
6175 F:      drivers/gpu/drm/lima/
6176 F:      include/uapi/drm/lima_drm.h
6177
6178 DRM DRIVERS FOR MEDIATEK
6179 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6180 M:      Philipp Zabel <p.zabel@pengutronix.de>
6181 L:      dri-devel@lists.freedesktop.org
6182 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6183 S:      Supported
6184 F:      Documentation/devicetree/bindings/display/mediatek/
6185 F:      drivers/gpu/drm/mediatek/
6186 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6187 F:      drivers/phy/mediatek/phy-mtk-mipi*
6188
6189 DRM DRIVERS FOR NVIDIA TEGRA
6190 M:      Thierry Reding <thierry.reding@gmail.com>
6191 L:      dri-devel@lists.freedesktop.org
6192 L:      linux-tegra@vger.kernel.org
6193 S:      Supported
6194 T:      git git://anongit.freedesktop.org/tegra/linux.git
6195 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6196 F:      drivers/gpu/drm/tegra/
6197 F:      drivers/gpu/host1x/
6198 F:      include/linux/host1x.h
6199 F:      include/uapi/drm/tegra_drm.h
6200
6201 DRM DRIVERS FOR RENESAS
6202 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6203 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6204 L:      dri-devel@lists.freedesktop.org
6205 L:      linux-renesas-soc@vger.kernel.org
6206 S:      Supported
6207 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6208 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6209 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6210 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6211 F:      drivers/gpu/drm/rcar-du/
6212 F:      drivers/gpu/drm/shmobile/
6213 F:      include/linux/platform_data/shmob_drm.h
6214
6215 DRM DRIVERS FOR ROCKCHIP
6216 M:      Sandy Huang <hjc@rock-chips.com>
6217 M:      Heiko Stübner <heiko@sntech.de>
6218 L:      dri-devel@lists.freedesktop.org
6219 S:      Maintained
6220 T:      git git://anongit.freedesktop.org/drm/drm-misc
6221 F:      Documentation/devicetree/bindings/display/rockchip/
6222 F:      drivers/gpu/drm/rockchip/
6223
6224 DRM DRIVERS FOR STI
6225 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6226 L:      dri-devel@lists.freedesktop.org
6227 S:      Maintained
6228 T:      git git://anongit.freedesktop.org/drm/drm-misc
6229 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6230 F:      drivers/gpu/drm/sti
6231
6232 DRM DRIVERS FOR STM
6233 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6234 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6235 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6236 L:      dri-devel@lists.freedesktop.org
6237 S:      Maintained
6238 T:      git git://anongit.freedesktop.org/drm/drm-misc
6239 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6240 F:      drivers/gpu/drm/stm
6241
6242 DRM DRIVERS FOR TI KEYSTONE
6243 M:      Jyri Sarha <jyri.sarha@iki.fi>
6244 M:      Tomi Valkeinen <tomba@kernel.org>
6245 L:      dri-devel@lists.freedesktop.org
6246 S:      Maintained
6247 T:      git git://anongit.freedesktop.org/drm/drm-misc
6248 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6249 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6250 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6251 F:      drivers/gpu/drm/tidss/
6252
6253 DRM DRIVERS FOR TI LCDC
6254 M:      Jyri Sarha <jyri.sarha@iki.fi>
6255 R:      Tomi Valkeinen <tomba@kernel.org>
6256 L:      dri-devel@lists.freedesktop.org
6257 S:      Maintained
6258 F:      Documentation/devicetree/bindings/display/tilcdc/
6259 F:      drivers/gpu/drm/tilcdc/
6260
6261 DRM DRIVERS FOR TI OMAP
6262 M:      Tomi Valkeinen <tomba@kernel.org>
6263 L:      dri-devel@lists.freedesktop.org
6264 S:      Maintained
6265 F:      Documentation/devicetree/bindings/display/ti/
6266 F:      drivers/gpu/drm/omapdrm/
6267
6268 DRM DRIVERS FOR V3D
6269 M:      Emma Anholt <emma@anholt.net>
6270 S:      Supported
6271 T:      git git://anongit.freedesktop.org/drm/drm-misc
6272 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6273 F:      drivers/gpu/drm/v3d/
6274 F:      include/uapi/drm/v3d_drm.h
6275
6276 DRM DRIVERS FOR VC4
6277 M:      Emma Anholt <emma@anholt.net>
6278 M:      Maxime Ripard <mripard@kernel.org>
6279 S:      Supported
6280 T:      git git://github.com/anholt/linux
6281 T:      git git://anongit.freedesktop.org/drm/drm-misc
6282 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6283 F:      drivers/gpu/drm/vc4/
6284 F:      include/uapi/drm/vc4_drm.h
6285
6286 DRM DRIVERS FOR VIVANTE GPU IP
6287 M:      Lucas Stach <l.stach@pengutronix.de>
6288 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6289 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6290 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6291 L:      dri-devel@lists.freedesktop.org
6292 S:      Maintained
6293 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6294 F:      drivers/gpu/drm/etnaviv/
6295 F:      include/uapi/drm/etnaviv_drm.h
6296
6297 DRM DRIVERS FOR XEN
6298 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6299 L:      dri-devel@lists.freedesktop.org
6300 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6301 S:      Supported
6302 T:      git git://anongit.freedesktop.org/drm/drm-misc
6303 F:      Documentation/gpu/xen-front.rst
6304 F:      drivers/gpu/drm/xen/
6305
6306 DRM DRIVERS FOR XILINX
6307 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6308 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6309 L:      dri-devel@lists.freedesktop.org
6310 S:      Maintained
6311 T:      git git://anongit.freedesktop.org/drm/drm-misc
6312 F:      Documentation/devicetree/bindings/display/xlnx/
6313 F:      drivers/gpu/drm/xlnx/
6314
6315 DRM PANEL DRIVERS
6316 M:      Thierry Reding <thierry.reding@gmail.com>
6317 R:      Sam Ravnborg <sam@ravnborg.org>
6318 L:      dri-devel@lists.freedesktop.org
6319 S:      Maintained
6320 T:      git git://anongit.freedesktop.org/drm/drm-misc
6321 F:      Documentation/devicetree/bindings/display/panel/
6322 F:      drivers/gpu/drm/drm_panel.c
6323 F:      drivers/gpu/drm/panel/
6324 F:      include/drm/drm_panel.h
6325
6326 DRM TTM SUBSYSTEM
6327 M:      Christian Koenig <christian.koenig@amd.com>
6328 M:      Huang Rui <ray.huang@amd.com>
6329 L:      dri-devel@lists.freedesktop.org
6330 S:      Maintained
6331 T:      git git://anongit.freedesktop.org/drm/drm-misc
6332 F:      drivers/gpu/drm/ttm/
6333 F:      include/drm/ttm/
6334
6335 DSBR100 USB FM RADIO DRIVER
6336 M:      Alexey Klimov <klimov.linux@gmail.com>
6337 L:      linux-media@vger.kernel.org
6338 S:      Maintained
6339 T:      git git://linuxtv.org/media_tree.git
6340 F:      drivers/media/radio/dsbr100.c
6341
6342 DT3155 MEDIA DRIVER
6343 M:      Hans Verkuil <hverkuil@xs4all.nl>
6344 L:      linux-media@vger.kernel.org
6345 S:      Odd Fixes
6346 W:      https://linuxtv.org
6347 T:      git git://linuxtv.org/media_tree.git
6348 F:      drivers/media/pci/dt3155/
6349
6350 DVB_USB_AF9015 MEDIA DRIVER
6351 M:      Antti Palosaari <crope@iki.fi>
6352 L:      linux-media@vger.kernel.org
6353 S:      Maintained
6354 W:      https://linuxtv.org
6355 W:      http://palosaari.fi/linux/
6356 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6357 T:      git git://linuxtv.org/anttip/media_tree.git
6358 F:      drivers/media/usb/dvb-usb-v2/af9015*
6359
6360 DVB_USB_AF9035 MEDIA DRIVER
6361 M:      Antti Palosaari <crope@iki.fi>
6362 L:      linux-media@vger.kernel.org
6363 S:      Maintained
6364 W:      https://linuxtv.org
6365 W:      http://palosaari.fi/linux/
6366 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6367 T:      git git://linuxtv.org/anttip/media_tree.git
6368 F:      drivers/media/usb/dvb-usb-v2/af9035*
6369
6370 DVB_USB_ANYSEE MEDIA DRIVER
6371 M:      Antti Palosaari <crope@iki.fi>
6372 L:      linux-media@vger.kernel.org
6373 S:      Maintained
6374 W:      https://linuxtv.org
6375 W:      http://palosaari.fi/linux/
6376 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6377 T:      git git://linuxtv.org/anttip/media_tree.git
6378 F:      drivers/media/usb/dvb-usb-v2/anysee*
6379
6380 DVB_USB_AU6610 MEDIA DRIVER
6381 M:      Antti Palosaari <crope@iki.fi>
6382 L:      linux-media@vger.kernel.org
6383 S:      Maintained
6384 W:      https://linuxtv.org
6385 W:      http://palosaari.fi/linux/
6386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6387 T:      git git://linuxtv.org/anttip/media_tree.git
6388 F:      drivers/media/usb/dvb-usb-v2/au6610*
6389
6390 DVB_USB_CE6230 MEDIA DRIVER
6391 M:      Antti Palosaari <crope@iki.fi>
6392 L:      linux-media@vger.kernel.org
6393 S:      Maintained
6394 W:      https://linuxtv.org
6395 W:      http://palosaari.fi/linux/
6396 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6397 T:      git git://linuxtv.org/anttip/media_tree.git
6398 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6399
6400 DVB_USB_CXUSB MEDIA DRIVER
6401 M:      Michael Krufky <mkrufky@linuxtv.org>
6402 L:      linux-media@vger.kernel.org
6403 S:      Maintained
6404 W:      https://linuxtv.org
6405 W:      http://github.com/mkrufky
6406 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6407 T:      git git://linuxtv.org/media_tree.git
6408 F:      drivers/media/usb/dvb-usb/cxusb*
6409
6410 DVB_USB_EC168 MEDIA DRIVER
6411 M:      Antti Palosaari <crope@iki.fi>
6412 L:      linux-media@vger.kernel.org
6413 S:      Maintained
6414 W:      https://linuxtv.org
6415 W:      http://palosaari.fi/linux/
6416 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6417 T:      git git://linuxtv.org/anttip/media_tree.git
6418 F:      drivers/media/usb/dvb-usb-v2/ec168*
6419
6420 DVB_USB_GL861 MEDIA DRIVER
6421 M:      Antti Palosaari <crope@iki.fi>
6422 L:      linux-media@vger.kernel.org
6423 S:      Maintained
6424 W:      https://linuxtv.org
6425 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6426 T:      git git://linuxtv.org/anttip/media_tree.git
6427 F:      drivers/media/usb/dvb-usb-v2/gl861*
6428
6429 DVB_USB_MXL111SF MEDIA DRIVER
6430 M:      Michael Krufky <mkrufky@linuxtv.org>
6431 L:      linux-media@vger.kernel.org
6432 S:      Maintained
6433 W:      https://linuxtv.org
6434 W:      http://github.com/mkrufky
6435 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6436 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6437 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6438
6439 DVB_USB_RTL28XXU MEDIA DRIVER
6440 M:      Antti Palosaari <crope@iki.fi>
6441 L:      linux-media@vger.kernel.org
6442 S:      Maintained
6443 W:      https://linuxtv.org
6444 W:      http://palosaari.fi/linux/
6445 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6446 T:      git git://linuxtv.org/anttip/media_tree.git
6447 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6448
6449 DVB_USB_V2 MEDIA DRIVER
6450 M:      Antti Palosaari <crope@iki.fi>
6451 L:      linux-media@vger.kernel.org
6452 S:      Maintained
6453 W:      https://linuxtv.org
6454 W:      http://palosaari.fi/linux/
6455 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6456 T:      git git://linuxtv.org/anttip/media_tree.git
6457 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6458 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6459
6460 DYNAMIC DEBUG
6461 M:      Jason Baron <jbaron@akamai.com>
6462 S:      Maintained
6463 F:      include/linux/dynamic_debug.h
6464 F:      lib/dynamic_debug.c
6465
6466 DYNAMIC INTERRUPT MODERATION
6467 M:      Tal Gilboa <talgi@nvidia.com>
6468 S:      Maintained
6469 F:      Documentation/networking/net_dim.rst
6470 F:      include/linux/dim.h
6471 F:      lib/dim/
6472
6473 DZ DECSTATION DZ11 SERIAL DRIVER
6474 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6475 S:      Maintained
6476 F:      drivers/tty/serial/dz.*
6477
6478 E3X0 POWER BUTTON DRIVER
6479 M:      Moritz Fischer <moritz.fischer@ettus.com>
6480 L:      usrp-users@lists.ettus.com
6481 S:      Supported
6482 W:      http://www.ettus.com
6483 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6484 F:      drivers/input/misc/e3x0-button.c
6485
6486 E4000 MEDIA DRIVER
6487 M:      Antti Palosaari <crope@iki.fi>
6488 L:      linux-media@vger.kernel.org
6489 S:      Maintained
6490 W:      https://linuxtv.org
6491 W:      http://palosaari.fi/linux/
6492 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6493 T:      git git://linuxtv.org/anttip/media_tree.git
6494 F:      drivers/media/tuners/e4000*
6495
6496 EARTH_PT1 MEDIA DRIVER
6497 M:      Akihiro Tsukada <tskd08@gmail.com>
6498 L:      linux-media@vger.kernel.org
6499 S:      Odd Fixes
6500 F:      drivers/media/pci/pt1/
6501
6502 EARTH_PT3 MEDIA DRIVER
6503 M:      Akihiro Tsukada <tskd08@gmail.com>
6504 L:      linux-media@vger.kernel.org
6505 S:      Odd Fixes
6506 F:      drivers/media/pci/pt3/
6507
6508 EC100 MEDIA DRIVER
6509 M:      Antti Palosaari <crope@iki.fi>
6510 L:      linux-media@vger.kernel.org
6511 S:      Maintained
6512 W:      https://linuxtv.org
6513 W:      http://palosaari.fi/linux/
6514 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6515 T:      git git://linuxtv.org/anttip/media_tree.git
6516 F:      drivers/media/dvb-frontends/ec100*
6517
6518 ECRYPT FILE SYSTEM
6519 M:      Tyler Hicks <code@tyhicks.com>
6520 L:      ecryptfs@vger.kernel.org
6521 S:      Odd Fixes
6522 W:      http://ecryptfs.org
6523 W:      https://launchpad.net/ecryptfs
6524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6525 F:      Documentation/filesystems/ecryptfs.rst
6526 F:      fs/ecryptfs/
6527
6528 EDAC-AMD64
6529 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6530 L:      linux-edac@vger.kernel.org
6531 S:      Supported
6532 F:      drivers/edac/amd64_edac*
6533 F:      drivers/edac/mce_amd*
6534
6535 EDAC-ARMADA
6536 M:      Jan Luebbe <jlu@pengutronix.de>
6537 L:      linux-edac@vger.kernel.org
6538 S:      Maintained
6539 F:      drivers/edac/armada_xp_*
6540
6541 EDAC-AST2500
6542 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6543 S:      Supported
6544 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6545 F:      drivers/edac/aspeed_edac.c
6546
6547 EDAC-BLUEFIELD
6548 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6549 S:      Supported
6550 F:      drivers/edac/bluefield_edac.c
6551
6552 EDAC-CALXEDA
6553 M:      Andre Przywara <andre.przywara@arm.com>
6554 L:      linux-edac@vger.kernel.org
6555 S:      Maintained
6556 F:      drivers/edac/highbank*
6557
6558 EDAC-CAVIUM OCTEON
6559 M:      Ralf Baechle <ralf@linux-mips.org>
6560 L:      linux-edac@vger.kernel.org
6561 L:      linux-mips@vger.kernel.org
6562 S:      Supported
6563 F:      drivers/edac/octeon_edac*
6564
6565 EDAC-CAVIUM THUNDERX
6566 M:      Robert Richter <rric@kernel.org>
6567 L:      linux-edac@vger.kernel.org
6568 S:      Odd Fixes
6569 F:      drivers/edac/thunderx_edac*
6570
6571 EDAC-CORE
6572 M:      Borislav Petkov <bp@alien8.de>
6573 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6574 M:      Tony Luck <tony.luck@intel.com>
6575 R:      James Morse <james.morse@arm.com>
6576 R:      Robert Richter <rric@kernel.org>
6577 L:      linux-edac@vger.kernel.org
6578 S:      Supported
6579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6580 F:      Documentation/admin-guide/ras.rst
6581 F:      Documentation/driver-api/edac.rst
6582 F:      drivers/edac/
6583 F:      include/linux/edac.h
6584
6585 EDAC-DMC520
6586 M:      Lei Wang <lewan@microsoft.com>
6587 L:      linux-edac@vger.kernel.org
6588 S:      Supported
6589 F:      drivers/edac/dmc520_edac.c
6590
6591 EDAC-E752X
6592 M:      Mark Gross <mark.gross@intel.com>
6593 L:      linux-edac@vger.kernel.org
6594 S:      Maintained
6595 F:      drivers/edac/e752x_edac.c
6596
6597 EDAC-E7XXX
6598 L:      linux-edac@vger.kernel.org
6599 S:      Maintained
6600 F:      drivers/edac/e7xxx_edac.c
6601
6602 EDAC-FSL_DDR
6603 M:      York Sun <york.sun@nxp.com>
6604 L:      linux-edac@vger.kernel.org
6605 S:      Maintained
6606 F:      drivers/edac/fsl_ddr_edac.*
6607
6608 EDAC-GHES
6609 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6610 L:      linux-edac@vger.kernel.org
6611 S:      Maintained
6612 F:      drivers/edac/ghes_edac.c
6613
6614 EDAC-I10NM
6615 M:      Tony Luck <tony.luck@intel.com>
6616 L:      linux-edac@vger.kernel.org
6617 S:      Maintained
6618 F:      drivers/edac/i10nm_base.c
6619
6620 EDAC-I3000
6621 L:      linux-edac@vger.kernel.org
6622 S:      Orphan
6623 F:      drivers/edac/i3000_edac.c
6624
6625 EDAC-I5000
6626 L:      linux-edac@vger.kernel.org
6627 S:      Maintained
6628 F:      drivers/edac/i5000_edac.c
6629
6630 EDAC-I5400
6631 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6632 L:      linux-edac@vger.kernel.org
6633 S:      Maintained
6634 F:      drivers/edac/i5400_edac.c
6635
6636 EDAC-I7300
6637 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6638 L:      linux-edac@vger.kernel.org
6639 S:      Maintained
6640 F:      drivers/edac/i7300_edac.c
6641
6642 EDAC-I7CORE
6643 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6644 L:      linux-edac@vger.kernel.org
6645 S:      Maintained
6646 F:      drivers/edac/i7core_edac.c
6647
6648 EDAC-I82443BXGX
6649 M:      Tim Small <tim@buttersideup.com>
6650 L:      linux-edac@vger.kernel.org
6651 S:      Maintained
6652 F:      drivers/edac/i82443bxgx_edac.c
6653
6654 EDAC-I82975X
6655 M:      "Arvind R." <arvino55@gmail.com>
6656 L:      linux-edac@vger.kernel.org
6657 S:      Maintained
6658 F:      drivers/edac/i82975x_edac.c
6659
6660 EDAC-IE31200
6661 M:      Jason Baron <jbaron@akamai.com>
6662 L:      linux-edac@vger.kernel.org
6663 S:      Maintained
6664 F:      drivers/edac/ie31200_edac.c
6665
6666 EDAC-IGEN6
6667 M:      Tony Luck <tony.luck@intel.com>
6668 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6669 L:      linux-edac@vger.kernel.org
6670 S:      Maintained
6671 F:      drivers/edac/igen6_edac.c
6672
6673 EDAC-MPC85XX
6674 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6675 L:      linux-edac@vger.kernel.org
6676 S:      Maintained
6677 F:      drivers/edac/mpc85xx_edac.[ch]
6678
6679 EDAC-PASEMI
6680 M:      Egor Martovetsky <egor@pasemi.com>
6681 L:      linux-edac@vger.kernel.org
6682 S:      Maintained
6683 F:      drivers/edac/pasemi_edac.c
6684
6685 EDAC-PND2
6686 M:      Tony Luck <tony.luck@intel.com>
6687 L:      linux-edac@vger.kernel.org
6688 S:      Maintained
6689 F:      drivers/edac/pnd2_edac.[ch]
6690
6691 EDAC-QCOM
6692 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6693 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6694 L:      linux-arm-msm@vger.kernel.org
6695 L:      linux-edac@vger.kernel.org
6696 S:      Maintained
6697 F:      drivers/edac/qcom_edac.c
6698
6699 EDAC-R82600
6700 M:      Tim Small <tim@buttersideup.com>
6701 L:      linux-edac@vger.kernel.org
6702 S:      Maintained
6703 F:      drivers/edac/r82600_edac.c
6704
6705 EDAC-SBRIDGE
6706 M:      Tony Luck <tony.luck@intel.com>
6707 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6708 L:      linux-edac@vger.kernel.org
6709 S:      Maintained
6710 F:      drivers/edac/sb_edac.c
6711
6712 EDAC-SIFIVE
6713 M:      Yash Shah <yash.shah@sifive.com>
6714 L:      linux-edac@vger.kernel.org
6715 S:      Supported
6716 F:      drivers/edac/sifive_edac.c
6717
6718 EDAC-SKYLAKE
6719 M:      Tony Luck <tony.luck@intel.com>
6720 L:      linux-edac@vger.kernel.org
6721 S:      Maintained
6722 F:      drivers/edac/skx_*.[ch]
6723
6724 EDAC-TI
6725 M:      Tero Kristo <kristo@kernel.org>
6726 L:      linux-edac@vger.kernel.org
6727 S:      Odd Fixes
6728 F:      drivers/edac/ti_edac.c
6729
6730 EDIROL UA-101/UA-1000 DRIVER
6731 M:      Clemens Ladisch <clemens@ladisch.de>
6732 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6733 S:      Maintained
6734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6735 F:      sound/usb/misc/ua101.c
6736
6737 EFI TEST DRIVER
6738 M:      Ivan Hu <ivan.hu@canonical.com>
6739 M:      Ard Biesheuvel <ardb@kernel.org>
6740 L:      linux-efi@vger.kernel.org
6741 S:      Maintained
6742 F:      drivers/firmware/efi/test/
6743
6744 EFI VARIABLE FILESYSTEM
6745 M:      Matthew Garrett <matthew.garrett@nebula.com>
6746 M:      Jeremy Kerr <jk@ozlabs.org>
6747 M:      Ard Biesheuvel <ardb@kernel.org>
6748 L:      linux-efi@vger.kernel.org
6749 S:      Maintained
6750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6751 F:      fs/efivarfs/
6752
6753 EFIFB FRAMEBUFFER DRIVER
6754 M:      Peter Jones <pjones@redhat.com>
6755 L:      linux-fbdev@vger.kernel.org
6756 S:      Maintained
6757 F:      drivers/video/fbdev/efifb.c
6758
6759 EFS FILESYSTEM
6760 S:      Orphan
6761 W:      http://aeschi.ch.eu.org/efs/
6762 F:      fs/efs/
6763
6764 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6765 M:      Douglas Miller <dougmill@linux.ibm.com>
6766 L:      netdev@vger.kernel.org
6767 S:      Maintained
6768 F:      drivers/net/ethernet/ibm/ehea/
6769
6770 EM28XX VIDEO4LINUX DRIVER
6771 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6772 L:      linux-media@vger.kernel.org
6773 S:      Maintained
6774 W:      https://linuxtv.org
6775 T:      git git://linuxtv.org/media_tree.git
6776 F:      Documentation/admin-guide/media/em28xx*
6777 F:      drivers/media/usb/em28xx/
6778
6779 EMBEDDED LINUX
6780 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6781 M:      Matt Mackall <mpm@selenic.com>
6782 M:      David Woodhouse <dwmw2@infradead.org>
6783 L:      linux-embedded@vger.kernel.org
6784 S:      Maintained
6785
6786 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6787 M:      Adrian Hunter <adrian.hunter@intel.com>
6788 M:      Ritesh Harjani <riteshh@codeaurora.org>
6789 M:      Asutosh Das <asutoshd@codeaurora.org>
6790 L:      linux-mmc@vger.kernel.org
6791 S:      Maintained
6792 F:      drivers/mmc/host/cqhci*
6793
6794 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6795 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6796 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6797 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6798 L:      linux-scsi@vger.kernel.org
6799 S:      Supported
6800 W:      http://www.broadcom.com
6801 F:      drivers/scsi/be2iscsi/
6802
6803 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6804 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6805 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6806 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6807 L:      netdev@vger.kernel.org
6808 S:      Supported
6809 W:      http://www.emulex.com
6810 F:      drivers/net/ethernet/emulex/benet/
6811
6812 EMULEX ONECONNECT ROCE DRIVER
6813 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6814 L:      linux-rdma@vger.kernel.org
6815 S:      Odd Fixes
6816 W:      http://www.broadcom.com
6817 F:      drivers/infiniband/hw/ocrdma/
6818 F:      include/uapi/rdma/ocrdma-abi.h
6819
6820 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6821 M:      James Smart <james.smart@broadcom.com>
6822 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6823 L:      linux-scsi@vger.kernel.org
6824 S:      Supported
6825 W:      http://www.broadcom.com
6826 F:      drivers/scsi/lpfc/
6827
6828 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6829 M:      James Smart <james.smart@broadcom.com>
6830 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6831 L:      linux-scsi@vger.kernel.org
6832 L:      target-devel@vger.kernel.org
6833 S:      Supported
6834 W:      http://www.broadcom.com
6835 F:      drivers/scsi/elx/
6836
6837 ENE CB710 FLASH CARD READER DRIVER
6838 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6839 S:      Maintained
6840 F:      drivers/misc/cb710/
6841 F:      drivers/mmc/host/cb710-mmc.*
6842 F:      include/linux/cb710.h
6843
6844 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6845 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6846 S:      Maintained
6847 F:      drivers/media/rc/ene_ir.*
6848
6849 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6850 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6851 L:      linuxppc-dev@lists.ozlabs.org
6852 S:      Maintained
6853 F:      drivers/tty/ehv_bytechan.c
6854
6855 EPSON S1D13XXX FRAMEBUFFER DRIVER
6856 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6857 S:      Maintained
6858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6859 F:      drivers/video/fbdev/s1d13xxxfb.c
6860 F:      include/video/s1d13xxxfb.h
6861
6862 EROFS FILE SYSTEM
6863 M:      Gao Xiang <xiang@kernel.org>
6864 M:      Chao Yu <chao@kernel.org>
6865 L:      linux-erofs@lists.ozlabs.org
6866 S:      Maintained
6867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6868 F:      Documentation/filesystems/erofs.rst
6869 F:      fs/erofs/
6870 F:      include/trace/events/erofs.h
6871
6872 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6873 M:      Jeff Layton <jlayton@kernel.org>
6874 S:      Maintained
6875 F:      include/linux/errseq.h
6876 F:      lib/errseq.c
6877
6878 ET131X NETWORK DRIVER
6879 M:      Mark Einon <mark.einon@gmail.com>
6880 S:      Odd Fixes
6881 F:      drivers/net/ethernet/agere/
6882
6883 ETHERNET BRIDGE
6884 M:      Roopa Prabhu <roopa@nvidia.com>
6885 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6886 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6887 L:      netdev@vger.kernel.org
6888 S:      Maintained
6889 W:      http://www.linuxfoundation.org/en/Net:Bridge
6890 F:      include/linux/netfilter_bridge/
6891 F:      net/bridge/
6892
6893 ETHERNET PHY LIBRARY
6894 M:      Andrew Lunn <andrew@lunn.ch>
6895 M:      Heiner Kallweit <hkallweit1@gmail.com>
6896 R:      Russell King <linux@armlinux.org.uk>
6897 L:      netdev@vger.kernel.org
6898 S:      Maintained
6899 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6900 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6901 F:      Documentation/devicetree/bindings/net/mdio*
6902 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6903 F:      Documentation/networking/phy.rst
6904 F:      drivers/net/mdio/
6905 F:      drivers/net/mdio/acpi_mdio.c
6906 F:      drivers/net/mdio/fwnode_mdio.c
6907 F:      drivers/net/mdio/of_mdio.c
6908 F:      drivers/net/pcs/
6909 F:      drivers/net/phy/
6910 F:      drivers/of/of_net.c
6911 F:      include/dt-bindings/net/qca-ar803x.h
6912 F:      include/linux/*mdio*.h
6913 F:      include/linux/mdio/*.h
6914 F:      include/linux/of_net.h
6915 F:      include/linux/phy.h
6916 F:      include/linux/phy_fixed.h
6917 F:      include/linux/platform_data/mdio-bcm-unimac.h
6918 F:      include/linux/platform_data/mdio-gpio.h
6919 F:      include/trace/events/mdio.h
6920 F:      include/uapi/linux/mdio.h
6921 F:      include/uapi/linux/mii.h
6922
6923 EXFAT FILE SYSTEM
6924 M:      Namjae Jeon <namjae.jeon@samsung.com>
6925 M:      Sungjong Seo <sj1557.seo@samsung.com>
6926 L:      linux-fsdevel@vger.kernel.org
6927 S:      Maintained
6928 F:      fs/exfat/
6929
6930 EXT2 FILE SYSTEM
6931 M:      Jan Kara <jack@suse.com>
6932 L:      linux-ext4@vger.kernel.org
6933 S:      Maintained
6934 F:      Documentation/filesystems/ext2.rst
6935 F:      fs/ext2/
6936 F:      include/linux/ext2*
6937
6938 EXT4 FILE SYSTEM
6939 M:      "Theodore Ts'o" <tytso@mit.edu>
6940 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6941 L:      linux-ext4@vger.kernel.org
6942 S:      Maintained
6943 W:      http://ext4.wiki.kernel.org
6944 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6946 F:      Documentation/filesystems/ext4/
6947 F:      fs/ext4/
6948 F:      include/trace/events/ext4.h
6949
6950 Extended Verification Module (EVM)
6951 M:      Mimi Zohar <zohar@linux.ibm.com>
6952 L:      linux-integrity@vger.kernel.org
6953 S:      Supported
6954 F:      security/integrity/evm/
6955
6956 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6957 M:      Ard Biesheuvel <ardb@kernel.org>
6958 L:      linux-efi@vger.kernel.org
6959 S:      Maintained
6960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6961 F:      Documentation/admin-guide/efi-stub.rst
6962 F:      arch/*/include/asm/efi.h
6963 F:      arch/*/kernel/efi.c
6964 F:      arch/arm/boot/compressed/efi-header.S
6965 F:      arch/arm64/kernel/efi-entry.S
6966 F:      arch/x86/platform/efi/
6967 F:      drivers/firmware/efi/
6968 F:      include/linux/efi*.h
6969
6970 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6971 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6972 M:      Chanwoo Choi <cw00.choi@samsung.com>
6973 L:      linux-kernel@vger.kernel.org
6974 S:      Maintained
6975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6976 F:      Documentation/devicetree/bindings/extcon/
6977 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6978 F:      drivers/extcon/
6979 F:      include/linux/extcon.h
6980 F:      include/linux/extcon/
6981
6982 EXTRA BOOT CONFIG
6983 M:      Masami Hiramatsu <mhiramat@kernel.org>
6984 S:      Maintained
6985 F:      Documentation/admin-guide/bootconfig.rst
6986 F:      fs/proc/bootconfig.c
6987 F:      include/linux/bootconfig.h
6988 F:      lib/bootconfig.c
6989 F:      tools/bootconfig/*
6990 F:      tools/bootconfig/scripts/*
6991
6992 EXYNOS DP DRIVER
6993 M:      Jingoo Han <jingoohan1@gmail.com>
6994 L:      dri-devel@lists.freedesktop.org
6995 S:      Maintained
6996 F:      drivers/gpu/drm/exynos/exynos_dp*
6997
6998 EXYNOS SYSMMU (IOMMU) driver
6999 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7000 L:      iommu@lists.linux-foundation.org
7001 S:      Maintained
7002 F:      drivers/iommu/exynos-iommu.c
7003
7004 F2FS FILE SYSTEM
7005 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7006 M:      Chao Yu <yuchao0@huawei.com>
7007 L:      linux-f2fs-devel@lists.sourceforge.net
7008 S:      Maintained
7009 W:      https://f2fs.wiki.kernel.org/
7010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7011 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7012 F:      Documentation/filesystems/f2fs.rst
7013 F:      fs/f2fs/
7014 F:      include/linux/f2fs_fs.h
7015 F:      include/trace/events/f2fs.h
7016 F:      include/uapi/linux/f2fs.h
7017
7018 F71805F HARDWARE MONITORING DRIVER
7019 M:      Jean Delvare <jdelvare@suse.com>
7020 L:      linux-hwmon@vger.kernel.org
7021 S:      Maintained
7022 F:      Documentation/hwmon/f71805f.rst
7023 F:      drivers/hwmon/f71805f.c
7024
7025 FADDR2LINE
7026 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7027 S:      Maintained
7028 F:      scripts/faddr2line
7029
7030 FAILOVER MODULE
7031 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7032 L:      netdev@vger.kernel.org
7033 S:      Supported
7034 F:      Documentation/networking/failover.rst
7035 F:      include/net/failover.h
7036 F:      net/core/failover.c
7037
7038 FANOTIFY
7039 M:      Jan Kara <jack@suse.cz>
7040 R:      Amir Goldstein <amir73il@gmail.com>
7041 R:      Matthew Bobrowski <repnop@google.com>
7042 L:      linux-fsdevel@vger.kernel.org
7043 S:      Maintained
7044 F:      fs/notify/fanotify/
7045 F:      include/linux/fanotify.h
7046 F:      include/uapi/linux/fanotify.h
7047
7048 FARSYNC SYNCHRONOUS DRIVER
7049 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7050 S:      Supported
7051 W:      http://www.farsite.co.uk/
7052 F:      drivers/net/wan/farsync.*
7053
7054 FAULT INJECTION SUPPORT
7055 M:      Akinobu Mita <akinobu.mita@gmail.com>
7056 S:      Supported
7057 F:      Documentation/fault-injection/
7058 F:      lib/fault-inject.c
7059
7060 FBTFT Framebuffer drivers
7061 L:      dri-devel@lists.freedesktop.org
7062 L:      linux-fbdev@vger.kernel.org
7063 S:      Orphan
7064 F:      drivers/staging/fbtft/
7065
7066 FC0011 TUNER DRIVER
7067 M:      Michael Buesch <m@bues.ch>
7068 L:      linux-media@vger.kernel.org
7069 S:      Maintained
7070 F:      drivers/media/tuners/fc0011.c
7071 F:      drivers/media/tuners/fc0011.h
7072
7073 FC2580 MEDIA DRIVER
7074 M:      Antti Palosaari <crope@iki.fi>
7075 L:      linux-media@vger.kernel.org
7076 S:      Maintained
7077 W:      https://linuxtv.org
7078 W:      http://palosaari.fi/linux/
7079 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7080 T:      git git://linuxtv.org/anttip/media_tree.git
7081 F:      drivers/media/tuners/fc2580*
7082
7083 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7084 M:      Hannes Reinecke <hare@suse.de>
7085 L:      linux-scsi@vger.kernel.org
7086 S:      Supported
7087 W:      www.Open-FCoE.org
7088 F:      drivers/scsi/fcoe/
7089 F:      drivers/scsi/libfc/
7090 F:      include/scsi/fc/
7091 F:      include/scsi/libfc.h
7092 F:      include/scsi/libfcoe.h
7093 F:      include/uapi/scsi/fc/
7094
7095 FILE LOCKING (flock() and fcntl()/lockf())
7096 M:      Jeff Layton <jlayton@kernel.org>
7097 M:      "J. Bruce Fields" <bfields@fieldses.org>
7098 L:      linux-fsdevel@vger.kernel.org
7099 S:      Maintained
7100 F:      fs/fcntl.c
7101 F:      fs/locks.c
7102 F:      include/linux/fcntl.h
7103 F:      include/uapi/linux/fcntl.h
7104
7105 FILESYSTEM DIRECT ACCESS (DAX)
7106 M:      Dan Williams <dan.j.williams@intel.com>
7107 R:      Matthew Wilcox <willy@infradead.org>
7108 R:      Jan Kara <jack@suse.cz>
7109 L:      linux-fsdevel@vger.kernel.org
7110 L:      nvdimm@lists.linux.dev
7111 S:      Supported
7112 F:      fs/dax.c
7113 F:      include/linux/dax.h
7114 F:      include/trace/events/fs_dax.h
7115
7116 FILESYSTEMS (VFS and infrastructure)
7117 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7118 L:      linux-fsdevel@vger.kernel.org
7119 S:      Maintained
7120 F:      fs/*
7121 F:      include/linux/fs.h
7122 F:      include/linux/fs_types.h
7123 F:      include/uapi/linux/fs.h
7124 F:      include/uapi/linux/openat2.h
7125 X:      fs/io-wq.c
7126 X:      fs/io-wq.h
7127 X:      fs/io_uring.c
7128
7129 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7130 M:      Riku Voipio <riku.voipio@iki.fi>
7131 L:      linux-hwmon@vger.kernel.org
7132 S:      Maintained
7133 F:      drivers/hwmon/f75375s.c
7134 F:      include/linux/f75375s.h
7135
7136 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7137 M:      Clemens Ladisch <clemens@ladisch.de>
7138 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7139 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7140 S:      Maintained
7141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7142 F:      include/uapi/sound/firewire.h
7143 F:      sound/firewire/
7144
7145 FIREWIRE MEDIA DRIVERS (firedtv)
7146 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7147 L:      linux-media@vger.kernel.org
7148 L:      linux1394-devel@lists.sourceforge.net
7149 S:      Maintained
7150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7151 F:      drivers/media/firewire/
7152
7153 FIREWIRE SBP-2 TARGET
7154 M:      Chris Boot <bootc@bootc.net>
7155 L:      linux-scsi@vger.kernel.org
7156 L:      target-devel@vger.kernel.org
7157 L:      linux1394-devel@lists.sourceforge.net
7158 S:      Maintained
7159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7160 F:      drivers/target/sbp/
7161
7162 FIREWIRE SUBSYSTEM
7163 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7164 L:      linux1394-devel@lists.sourceforge.net
7165 S:      Maintained
7166 W:      http://ieee1394.wiki.kernel.org/
7167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7168 F:      drivers/firewire/
7169 F:      include/linux/firewire.h
7170 F:      include/uapi/linux/firewire*.h
7171 F:      tools/firewire/
7172
7173 FIRMWARE LOADER (request_firmware)
7174 M:      Luis Chamberlain <mcgrof@kernel.org>
7175 L:      linux-kernel@vger.kernel.org
7176 S:      Maintained
7177 F:      Documentation/firmware_class/
7178 F:      drivers/base/firmware_loader/
7179 F:      include/linux/firmware.h
7180
7181 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7182 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7183 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7184 S:      Maintained
7185 F:      drivers/block/rsxx/
7186
7187 FLEXTIMER FTM-QUADDEC DRIVER
7188 M:      Patrick Havelange <patrick.havelange@essensium.com>
7189 L:      linux-iio@vger.kernel.org
7190 S:      Maintained
7191 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7192 F:      drivers/counter/ftm-quaddec.c
7193
7194 FLOPPY DRIVER
7195 M:      Denis Efremov <efremov@linux.com>
7196 L:      linux-block@vger.kernel.org
7197 S:      Odd Fixes
7198 F:      drivers/block/floppy.c
7199
7200 FLYSKY FSIA6B RC RECEIVER
7201 M:      Markus Koch <markus@notsyncing.net>
7202 L:      linux-input@vger.kernel.org
7203 S:      Maintained
7204 F:      drivers/input/joystick/fsia6b.c
7205
7206 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7207 M:      Geoffrey D. Bennett <g@b4.vu>
7208 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7209 S:      Maintained
7210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7211 F:      sound/usb/mixer_scarlett_gen2.c
7212
7213 FORCEDETH GIGABIT ETHERNET DRIVER
7214 M:      Rain River <rain.1986.08.12@gmail.com>
7215 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7216 L:      netdev@vger.kernel.org
7217 S:      Maintained
7218 F:      drivers/net/ethernet/nvidia/*
7219
7220 FPGA DFL DRIVERS
7221 M:      Wu Hao <hao.wu@intel.com>
7222 R:      Tom Rix <trix@redhat.com>
7223 L:      linux-fpga@vger.kernel.org
7224 S:      Maintained
7225 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7226 F:      Documentation/fpga/dfl.rst
7227 F:      drivers/fpga/dfl*
7228 F:      drivers/uio/uio_dfl.c
7229 F:      include/linux/dfl.h
7230 F:      include/uapi/linux/fpga-dfl.h
7231
7232 FPGA MANAGER FRAMEWORK
7233 M:      Moritz Fischer <mdf@kernel.org>
7234 R:      Tom Rix <trix@redhat.com>
7235 L:      linux-fpga@vger.kernel.org
7236 S:      Maintained
7237 W:      http://www.rocketboards.org
7238 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7240 F:      Documentation/devicetree/bindings/fpga/
7241 F:      Documentation/driver-api/fpga/
7242 F:      Documentation/fpga/
7243 F:      drivers/fpga/
7244 F:      include/linux/fpga/
7245
7246 FPU EMULATOR
7247 M:      Bill Metzenthen <billm@melbpc.org.au>
7248 S:      Maintained
7249 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7250 F:      arch/x86/math-emu/
7251
7252 FRAMEBUFFER LAYER
7253 L:      dri-devel@lists.freedesktop.org
7254 L:      linux-fbdev@vger.kernel.org
7255 S:      Orphan
7256 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7257 T:      git git://anongit.freedesktop.org/drm/drm-misc
7258 F:      Documentation/fb/
7259 F:      drivers/video/
7260 F:      include/linux/fb.h
7261 F:      include/uapi/linux/fb.h
7262 F:      include/uapi/video/
7263 F:      include/video/
7264
7265 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7266 M:      Horia Geantă <horia.geanta@nxp.com>
7267 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7268 L:      linux-crypto@vger.kernel.org
7269 S:      Maintained
7270 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7271 F:      drivers/crypto/caam/
7272
7273 FREESCALE COLDFIRE M5441X MMC DRIVER
7274 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7275 L:      linux-mmc@vger.kernel.org
7276 S:      Maintained
7277 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7278 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7279
7280 FREESCALE DIU FRAMEBUFFER DRIVER
7281 M:      Timur Tabi <timur@kernel.org>
7282 L:      linux-fbdev@vger.kernel.org
7283 S:      Maintained
7284 F:      drivers/video/fbdev/fsl-diu-fb.*
7285
7286 FREESCALE DMA DRIVER
7287 M:      Li Yang <leoyang.li@nxp.com>
7288 M:      Zhang Wei <zw@zh-kernel.org>
7289 L:      linuxppc-dev@lists.ozlabs.org
7290 S:      Maintained
7291 F:      drivers/dma/fsldma.*
7292
7293 FREESCALE DSPI DRIVER
7294 M:      Vladimir Oltean <olteanv@gmail.com>
7295 L:      linux-spi@vger.kernel.org
7296 S:      Maintained
7297 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7298 F:      drivers/spi/spi-fsl-dspi.c
7299 F:      include/linux/spi/spi-fsl-dspi.h
7300
7301 FREESCALE ENETC ETHERNET DRIVERS
7302 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7303 L:      netdev@vger.kernel.org
7304 S:      Maintained
7305 F:      drivers/net/ethernet/freescale/enetc/
7306
7307 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7308 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7309 L:      netdev@vger.kernel.org
7310 S:      Maintained
7311 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7312 F:      drivers/net/ethernet/freescale/gianfar*
7313
7314 FREESCALE GPMI NAND DRIVER
7315 M:      Han Xu <han.xu@nxp.com>
7316 L:      linux-mtd@lists.infradead.org
7317 S:      Maintained
7318 F:      drivers/mtd/nand/raw/gpmi-nand/*
7319
7320 FREESCALE I2C CPM DRIVER
7321 M:      Jochen Friedrich <jochen@scram.de>
7322 L:      linuxppc-dev@lists.ozlabs.org
7323 L:      linux-i2c@vger.kernel.org
7324 S:      Maintained
7325 F:      drivers/i2c/busses/i2c-cpm.c
7326
7327 FREESCALE IMX / MXC FEC DRIVER
7328 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7329 L:      netdev@vger.kernel.org
7330 S:      Maintained
7331 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7332 F:      drivers/net/ethernet/freescale/fec.h
7333 F:      drivers/net/ethernet/freescale/fec_main.c
7334 F:      drivers/net/ethernet/freescale/fec_ptp.c
7335
7336 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7337 M:      Sascha Hauer <s.hauer@pengutronix.de>
7338 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7339 L:      linux-fbdev@vger.kernel.org
7340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7341 S:      Maintained
7342 F:      drivers/video/fbdev/imxfb.c
7343 F:      include/linux/platform_data/video-imxfb.h
7344
7345 FREESCALE IMX DDR PMU DRIVER
7346 M:      Frank Li <Frank.li@nxp.com>
7347 L:      linux-arm-kernel@lists.infradead.org
7348 S:      Maintained
7349 F:      Documentation/admin-guide/perf/imx-ddr.rst
7350 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7351 F:      drivers/perf/fsl_imx8_ddr_perf.c
7352
7353 FREESCALE IMX I2C DRIVER
7354 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7355 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7356 L:      linux-i2c@vger.kernel.org
7357 S:      Maintained
7358 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7359 F:      drivers/i2c/busses/i2c-imx.c
7360
7361 FREESCALE IMX LPI2C DRIVER
7362 M:      Dong Aisheng <aisheng.dong@nxp.com>
7363 L:      linux-i2c@vger.kernel.org
7364 L:      linux-imx@nxp.com
7365 S:      Maintained
7366 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7367 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7368
7369 FREESCALE MPC I2C DRIVER
7370 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7371 L:      linux-i2c@vger.kernel.org
7372 S:      Maintained
7373 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7374 F:      drivers/i2c/busses/i2c-mpc.c
7375
7376 FREESCALE QORIQ DPAA ETHERNET DRIVER
7377 M:      Madalin Bucur <madalin.bucur@nxp.com>
7378 L:      netdev@vger.kernel.org
7379 S:      Maintained
7380 F:      drivers/net/ethernet/freescale/dpaa
7381
7382 FREESCALE QORIQ DPAA FMAN DRIVER
7383 M:      Madalin Bucur <madalin.bucur@nxp.com>
7384 L:      netdev@vger.kernel.org
7385 S:      Maintained
7386 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7387 F:      drivers/net/ethernet/freescale/fman
7388
7389 FREESCALE QORIQ PTP CLOCK DRIVER
7390 M:      Yangbo Lu <yangbo.lu@nxp.com>
7391 L:      netdev@vger.kernel.org
7392 S:      Maintained
7393 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7394 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7395 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7396 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7397 F:      drivers/ptp/ptp_qoriq.c
7398 F:      drivers/ptp/ptp_qoriq_debugfs.c
7399 F:      include/linux/fsl/ptp_qoriq.h
7400
7401 FREESCALE QUAD SPI DRIVER
7402 M:      Han Xu <han.xu@nxp.com>
7403 L:      linux-spi@vger.kernel.org
7404 S:      Maintained
7405 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7406 F:      drivers/spi/spi-fsl-qspi.c
7407
7408 FREESCALE QUICC ENGINE LIBRARY
7409 M:      Qiang Zhao <qiang.zhao@nxp.com>
7410 L:      linuxppc-dev@lists.ozlabs.org
7411 S:      Maintained
7412 F:      drivers/soc/fsl/qe/
7413 F:      include/soc/fsl/*qe*.h
7414 F:      include/soc/fsl/*ucc*.h
7415
7416 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7417 M:      Li Yang <leoyang.li@nxp.com>
7418 L:      netdev@vger.kernel.org
7419 L:      linuxppc-dev@lists.ozlabs.org
7420 S:      Maintained
7421 F:      drivers/net/ethernet/freescale/ucc_geth*
7422
7423 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7424 M:      Zhao Qiang <qiang.zhao@nxp.com>
7425 L:      netdev@vger.kernel.org
7426 L:      linuxppc-dev@lists.ozlabs.org
7427 S:      Maintained
7428 F:      drivers/net/wan/fsl_ucc_hdlc*
7429
7430 FREESCALE QUICC ENGINE UCC UART DRIVER
7431 M:      Timur Tabi <timur@kernel.org>
7432 L:      linuxppc-dev@lists.ozlabs.org
7433 S:      Maintained
7434 F:      drivers/tty/serial/ucc_uart.c
7435
7436 FREESCALE SOC DRIVERS
7437 M:      Li Yang <leoyang.li@nxp.com>
7438 L:      linuxppc-dev@lists.ozlabs.org
7439 L:      linux-arm-kernel@lists.infradead.org
7440 S:      Maintained
7441 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7442 F:      Documentation/devicetree/bindings/soc/fsl/
7443 F:      drivers/soc/fsl/
7444 F:      include/linux/fsl/
7445
7446 FREESCALE SOC FS_ENET DRIVER
7447 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7448 L:      linuxppc-dev@lists.ozlabs.org
7449 L:      netdev@vger.kernel.org
7450 S:      Maintained
7451 F:      drivers/net/ethernet/freescale/fs_enet/
7452 F:      include/linux/fs_enet_pd.h
7453
7454 FREESCALE SOC SOUND DRIVERS
7455 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7456 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7457 R:      Fabio Estevam <festevam@gmail.com>
7458 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7459 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7460 L:      linuxppc-dev@lists.ozlabs.org
7461 S:      Maintained
7462 F:      sound/soc/fsl/fsl*
7463 F:      sound/soc/fsl/imx*
7464 F:      sound/soc/fsl/mpc8610_hpcd.c
7465
7466 FREESCALE USB PERIPHERAL DRIVERS
7467 M:      Li Yang <leoyang.li@nxp.com>
7468 L:      linux-usb@vger.kernel.org
7469 L:      linuxppc-dev@lists.ozlabs.org
7470 S:      Maintained
7471 F:      drivers/usb/gadget/udc/fsl*
7472
7473 FREESCALE USB PHY DRIVER
7474 M:      Ran Wang <ran.wang_1@nxp.com>
7475 L:      linux-usb@vger.kernel.org
7476 L:      linuxppc-dev@lists.ozlabs.org
7477 S:      Maintained
7478 F:      drivers/usb/phy/phy-fsl-usb*
7479
7480 FREEVXFS FILESYSTEM
7481 M:      Christoph Hellwig <hch@infradead.org>
7482 S:      Maintained
7483 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7484 F:      fs/freevxfs/
7485
7486 FREEZER
7487 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7488 M:      Pavel Machek <pavel@ucw.cz>
7489 L:      linux-pm@vger.kernel.org
7490 S:      Supported
7491 F:      Documentation/power/freezing-of-tasks.rst
7492 F:      include/linux/freezer.h
7493 F:      kernel/freezer.c
7494
7495 FRONTSWAP API
7496 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7497 L:      linux-kernel@vger.kernel.org
7498 S:      Maintained
7499 F:      include/linux/frontswap.h
7500 F:      mm/frontswap.c
7501
7502 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7503 M:      David Howells <dhowells@redhat.com>
7504 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7505 S:      Supported
7506 F:      Documentation/filesystems/caching/
7507 F:      fs/fscache/
7508 F:      include/linux/fscache*.h
7509
7510 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7511 M:      Theodore Y. Ts'o <tytso@mit.edu>
7512 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7513 M:      Eric Biggers <ebiggers@kernel.org>
7514 L:      linux-fscrypt@vger.kernel.org
7515 S:      Supported
7516 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7517 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7518 F:      Documentation/filesystems/fscrypt.rst
7519 F:      fs/crypto/
7520 F:      include/linux/fscrypt*.h
7521 F:      include/uapi/linux/fscrypt.h
7522
7523 FSI SUBSYSTEM
7524 M:      Jeremy Kerr <jk@ozlabs.org>
7525 M:      Joel Stanley <joel@jms.id.au>
7526 R:      Alistar Popple <alistair@popple.id.au>
7527 R:      Eddie James <eajames@linux.ibm.com>
7528 L:      linux-fsi@lists.ozlabs.org
7529 S:      Supported
7530 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7532 F:      drivers/fsi/
7533 F:      include/linux/fsi*.h
7534 F:      include/trace/events/fsi*.h
7535
7536 FSI-ATTACHED I2C DRIVER
7537 M:      Eddie James <eajames@linux.ibm.com>
7538 L:      linux-i2c@vger.kernel.org
7539 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7540 S:      Maintained
7541 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7542 F:      drivers/i2c/busses/i2c-fsi.c
7543
7544 FSI-ATTACHED SPI DRIVER
7545 M:      Eddie James <eajames@linux.ibm.com>
7546 L:      linux-spi@vger.kernel.org
7547 S:      Maintained
7548 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7549 F:      drivers/spi/spi-fsi.c
7550
7551 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7552 M:      Jan Kara <jack@suse.cz>
7553 R:      Amir Goldstein <amir73il@gmail.com>
7554 L:      linux-fsdevel@vger.kernel.org
7555 S:      Maintained
7556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7557 F:      fs/notify/
7558 F:      include/linux/fsnotify*.h
7559
7560 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7561 M:      Eric Biggers <ebiggers@kernel.org>
7562 M:      Theodore Y. Ts'o <tytso@mit.edu>
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 fsverity
7567 F:      Documentation/filesystems/fsverity.rst
7568 F:      fs/verity/
7569 F:      include/linux/fsverity.h
7570 F:      include/uapi/linux/fsverity.h
7571
7572 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7573 M:      Michael Zaidman <michael.zaidman@gmail.com>
7574 L:      linux-i2c@vger.kernel.org
7575 L:      linux-input@vger.kernel.org
7576 S:      Maintained
7577 F:      drivers/hid/hid-ft260.c
7578
7579 FUJITSU LAPTOP EXTRAS
7580 M:      Jonathan Woithe <jwoithe@just42.net>
7581 L:      platform-driver-x86@vger.kernel.org
7582 S:      Maintained
7583 F:      drivers/platform/x86/fujitsu-laptop.c
7584
7585 FUJITSU M-5MO LS CAMERA ISP DRIVER
7586 M:      Kyungmin Park <kyungmin.park@samsung.com>
7587 M:      Heungjun Kim <riverful.kim@samsung.com>
7588 L:      linux-media@vger.kernel.org
7589 S:      Maintained
7590 F:      drivers/media/i2c/m5mols/
7591 F:      include/media/i2c/m5mols.h
7592
7593 FUJITSU TABLET EXTRAS
7594 M:      Robert Gerlach <khnz@gmx.de>
7595 L:      platform-driver-x86@vger.kernel.org
7596 S:      Maintained
7597 F:      drivers/platform/x86/fujitsu-tablet.c
7598
7599 FUSE: FILESYSTEM IN USERSPACE
7600 M:      Miklos Szeredi <miklos@szeredi.hu>
7601 L:      linux-fsdevel@vger.kernel.org
7602 S:      Maintained
7603 W:      https://github.com/libfuse/
7604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7605 F:      Documentation/filesystems/fuse.rst
7606 F:      fs/fuse/
7607 F:      include/uapi/linux/fuse.h
7608
7609 FUTEX SUBSYSTEM
7610 M:      Thomas Gleixner <tglx@linutronix.de>
7611 M:      Ingo Molnar <mingo@redhat.com>
7612 R:      Peter Zijlstra <peterz@infradead.org>
7613 R:      Darren Hart <dvhart@infradead.org>
7614 R:      Davidlohr Bueso <dave@stgolabs.net>
7615 L:      linux-kernel@vger.kernel.org
7616 S:      Maintained
7617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7618 F:      Documentation/locking/*futex*
7619 F:      include/asm-generic/futex.h
7620 F:      include/linux/futex.h
7621 F:      include/uapi/linux/futex.h
7622 F:      kernel/futex.c
7623 F:      tools/perf/bench/futex*
7624 F:      tools/testing/selftests/futex/
7625
7626 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7627 M:      Tim Harvey <tharvey@gateworks.com>
7628 M:      Robert Jones <rjones@gateworks.com>
7629 S:      Maintained
7630 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7631 F:      drivers/mfd/gateworks-gsc.c
7632 F:      include/linux/mfd/gsc.h
7633 F:      Documentation/hwmon/gsc-hwmon.rst
7634 F:      drivers/hwmon/gsc-hwmon.c
7635 F:      include/linux/platform_data/gsc_hwmon.h
7636
7637 GCC PLUGINS
7638 M:      Kees Cook <keescook@chromium.org>
7639 L:      linux-hardening@vger.kernel.org
7640 S:      Maintained
7641 F:      Documentation/kbuild/gcc-plugins.rst
7642 F:      scripts/Makefile.gcc-plugins
7643 F:      scripts/gcc-plugins/
7644
7645 GCOV BASED KERNEL PROFILING
7646 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7647 S:      Maintained
7648 F:      Documentation/dev-tools/gcov.rst
7649 F:      kernel/gcov/
7650
7651 GDB KERNEL DEBUGGING HELPER SCRIPTS
7652 M:      Jan Kiszka <jan.kiszka@siemens.com>
7653 M:      Kieran Bingham <kbingham@kernel.org>
7654 S:      Supported
7655 F:      scripts/gdb/
7656
7657 GEMINI CRYPTO DRIVER
7658 M:      Corentin Labbe <clabbe@baylibre.com>
7659 L:      linux-crypto@vger.kernel.org
7660 S:      Maintained
7661 F:      drivers/crypto/gemini/
7662
7663 GEMTEK FM RADIO RECEIVER DRIVER
7664 M:      Hans Verkuil <hverkuil@xs4all.nl>
7665 L:      linux-media@vger.kernel.org
7666 S:      Maintained
7667 W:      https://linuxtv.org
7668 T:      git git://linuxtv.org/media_tree.git
7669 F:      drivers/media/radio/radio-gemtek*
7670
7671 GENERIC ARCHITECTURE TOPOLOGY
7672 M:      Sudeep Holla <sudeep.holla@arm.com>
7673 L:      linux-kernel@vger.kernel.org
7674 S:      Maintained
7675 F:      drivers/base/arch_topology.c
7676 F:      include/linux/arch_topology.h
7677
7678 GENERIC ENTRY CODE
7679 M:      Thomas Gleixner <tglx@linutronix.de>
7680 M:      Peter Zijlstra <peterz@infradead.org>
7681 M:      Andy Lutomirski <luto@kernel.org>
7682 L:      linux-kernel@vger.kernel.org
7683 S:      Maintained
7684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7685 F:      include/linux/entry-common.h
7686 F:      include/linux/entry-kvm.h
7687 F:      kernel/entry/
7688
7689 GENERIC GPIO I2C DRIVER
7690 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7691 S:      Supported
7692 F:      drivers/i2c/busses/i2c-gpio.c
7693 F:      include/linux/platform_data/i2c-gpio.h
7694
7695 GENERIC GPIO I2C MULTIPLEXER DRIVER
7696 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7697 L:      linux-i2c@vger.kernel.org
7698 S:      Supported
7699 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7700 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7701 F:      include/linux/platform_data/i2c-mux-gpio.h
7702
7703 GENERIC HDLC (WAN) DRIVERS
7704 M:      Krzysztof Halasa <khc@pm.waw.pl>
7705 S:      Maintained
7706 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7707 F:      drivers/net/wan/c101.c
7708 F:      drivers/net/wan/hd6457*
7709 F:      drivers/net/wan/hdlc*
7710 F:      drivers/net/wan/n2.c
7711 F:      drivers/net/wan/pc300too.c
7712 F:      drivers/net/wan/pci200syn.c
7713 F:      drivers/net/wan/wanxl*
7714
7715 GENERIC INCLUDE/ASM HEADER FILES
7716 M:      Arnd Bergmann <arnd@arndb.de>
7717 L:      linux-arch@vger.kernel.org
7718 S:      Maintained
7719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7720 F:      include/asm-generic/
7721 F:      include/uapi/asm-generic/
7722
7723 GENERIC PHY FRAMEWORK
7724 M:      Kishon Vijay Abraham I <kishon@ti.com>
7725 M:      Vinod Koul <vkoul@kernel.org>
7726 L:      linux-phy@lists.infradead.org
7727 S:      Supported
7728 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7730 F:      Documentation/devicetree/bindings/phy/
7731 F:      drivers/phy/
7732 F:      include/linux/phy/
7733
7734 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7735 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7736 S:      Supported
7737 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7738
7739 GENERIC PM DOMAINS
7740 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7741 M:      Kevin Hilman <khilman@kernel.org>
7742 M:      Ulf Hansson <ulf.hansson@linaro.org>
7743 L:      linux-pm@vger.kernel.org
7744 S:      Supported
7745 F:      Documentation/devicetree/bindings/power/power?domain*
7746 F:      drivers/base/power/domain*.c
7747 F:      include/linux/pm_domain.h
7748
7749 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7750 M:      Eugen Hristev <eugen.hristev@microchip.com>
7751 L:      linux-input@vger.kernel.org
7752 S:      Maintained
7753 F:      drivers/input/touchscreen/resistive-adc-touch.c
7754
7755 GENERIC STRING LIBRARY
7756 R:      Andy Shevchenko <andy@kernel.org>
7757 S:      Maintained
7758 F:      lib/string.c
7759 F:      lib/string_helpers.c
7760 F:      lib/test_string.c
7761 F:      lib/test-string_helpers.c
7762
7763 GENERIC UIO DRIVER FOR PCI DEVICES
7764 M:      "Michael S. Tsirkin" <mst@redhat.com>
7765 L:      kvm@vger.kernel.org
7766 S:      Supported
7767 F:      drivers/uio/uio_pci_generic.c
7768
7769 GENERIC VDSO LIBRARY
7770 M:      Andy Lutomirski <luto@kernel.org>
7771 M:      Thomas Gleixner <tglx@linutronix.de>
7772 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7773 L:      linux-kernel@vger.kernel.org
7774 S:      Maintained
7775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7776 F:      include/asm-generic/vdso/vsyscall.h
7777 F:      include/vdso/
7778 F:      kernel/time/vsyscall.c
7779 F:      lib/vdso/
7780
7781 GENWQE (IBM Generic Workqueue Card)
7782 M:      Frank Haverkamp <haver@linux.ibm.com>
7783 S:      Supported
7784 F:      drivers/misc/genwqe/
7785
7786 GET_MAINTAINER SCRIPT
7787 M:      Joe Perches <joe@perches.com>
7788 S:      Maintained
7789 F:      scripts/get_maintainer.pl
7790
7791 GFS2 FILE SYSTEM
7792 M:      Bob Peterson <rpeterso@redhat.com>
7793 M:      Andreas Gruenbacher <agruenba@redhat.com>
7794 L:      cluster-devel@redhat.com
7795 S:      Supported
7796 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7798 F:      Documentation/filesystems/gfs2*
7799 F:      fs/gfs2/
7800 F:      include/uapi/linux/gfs2_ondisk.h
7801
7802 GIGABYTE WMI DRIVER
7803 M:      Thomas Weißschuh <thomas@weissschuh.net>
7804 L:      platform-driver-x86@vger.kernel.org
7805 S:      Maintained
7806 F:      drivers/platform/x86/gigabyte-wmi.c
7807
7808 GNSS SUBSYSTEM
7809 M:      Johan Hovold <johan@kernel.org>
7810 S:      Maintained
7811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7812 F:      Documentation/ABI/testing/sysfs-class-gnss
7813 F:      Documentation/devicetree/bindings/gnss/
7814 F:      drivers/gnss/
7815 F:      include/linux/gnss.h
7816
7817 GO7007 MPEG CODEC
7818 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7819 L:      linux-media@vger.kernel.org
7820 S:      Maintained
7821 F:      drivers/media/usb/go7007/
7822
7823 GOODIX TOUCHSCREEN
7824 M:      Bastien Nocera <hadess@hadess.net>
7825 L:      linux-input@vger.kernel.org
7826 S:      Maintained
7827 F:      drivers/input/touchscreen/goodix.c
7828
7829 GOOGLE ETHERNET DRIVERS
7830 M:      Catherine Sullivan <csully@google.com>
7831 R:      Sagi Shahar <sagis@google.com>
7832 R:      Jon Olson <jonolson@google.com>
7833 L:      netdev@vger.kernel.org
7834 S:      Supported
7835 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7836 F:      drivers/net/ethernet/google
7837
7838 GPD POCKET FAN DRIVER
7839 M:      Hans de Goede <hdegoede@redhat.com>
7840 L:      platform-driver-x86@vger.kernel.org
7841 S:      Maintained
7842 F:      drivers/platform/x86/gpd-pocket-fan.c
7843
7844 GPIO ACPI SUPPORT
7845 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7846 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7847 L:      linux-gpio@vger.kernel.org
7848 L:      linux-acpi@vger.kernel.org
7849 S:      Maintained
7850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7851 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7852 F:      drivers/gpio/gpiolib-acpi.c
7853 F:      drivers/gpio/gpiolib-acpi.h
7854
7855 GPIO AGGREGATOR
7856 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7857 L:      linux-gpio@vger.kernel.org
7858 S:      Supported
7859 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7860 F:      drivers/gpio/gpio-aggregator.c
7861
7862 GPIO IR Transmitter
7863 M:      Sean Young <sean@mess.org>
7864 L:      linux-media@vger.kernel.org
7865 S:      Maintained
7866 F:      drivers/media/rc/gpio-ir-tx.c
7867
7868 GPIO MOCKUP DRIVER
7869 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7870 L:      linux-gpio@vger.kernel.org
7871 S:      Maintained
7872 F:      drivers/gpio/gpio-mockup.c
7873 F:      tools/testing/selftests/gpio/
7874
7875 GPIO REGMAP
7876 R:      Michael Walle <michael@walle.cc>
7877 S:      Maintained
7878 F:      drivers/gpio/gpio-regmap.c
7879 F:      include/linux/gpio/regmap.h
7880
7881 GPIO SUBSYSTEM
7882 M:      Linus Walleij <linus.walleij@linaro.org>
7883 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7884 L:      linux-gpio@vger.kernel.org
7885 S:      Maintained
7886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7887 F:      Documentation/ABI/obsolete/sysfs-gpio
7888 F:      Documentation/ABI/testing/gpio-cdev
7889 F:      Documentation/admin-guide/gpio/
7890 F:      Documentation/devicetree/bindings/gpio/
7891 F:      Documentation/driver-api/gpio/
7892 F:      drivers/gpio/
7893 F:      include/asm-generic/gpio.h
7894 F:      include/linux/gpio.h
7895 F:      include/linux/gpio/
7896 F:      include/linux/of_gpio.h
7897 F:      include/uapi/linux/gpio.h
7898 F:      tools/gpio/
7899
7900 GRE DEMULTIPLEXER DRIVER
7901 M:      Dmitry Kozlov <xeb@mail.ru>
7902 L:      netdev@vger.kernel.org
7903 S:      Maintained
7904 F:      include/net/gre.h
7905 F:      net/ipv4/gre_demux.c
7906 F:      net/ipv4/gre_offload.c
7907
7908 GRETH 10/100/1G Ethernet MAC device driver
7909 M:      Andreas Larsson <andreas@gaisler.com>
7910 L:      netdev@vger.kernel.org
7911 S:      Maintained
7912 F:      drivers/net/ethernet/aeroflex/
7913
7914 GREYBUS AUDIO PROTOCOLS DRIVERS
7915 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7916 M:      Mark Greer <mgreer@animalcreek.com>
7917 S:      Maintained
7918 F:      drivers/staging/greybus/audio_apbridgea.c
7919 F:      drivers/staging/greybus/audio_apbridgea.h
7920 F:      drivers/staging/greybus/audio_codec.c
7921 F:      drivers/staging/greybus/audio_codec.h
7922 F:      drivers/staging/greybus/audio_gb.c
7923 F:      drivers/staging/greybus/audio_manager.c
7924 F:      drivers/staging/greybus/audio_manager.h
7925 F:      drivers/staging/greybus/audio_manager_module.c
7926 F:      drivers/staging/greybus/audio_manager_private.h
7927 F:      drivers/staging/greybus/audio_manager_sysfs.c
7928 F:      drivers/staging/greybus/audio_module.c
7929 F:      drivers/staging/greybus/audio_topology.c
7930
7931 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7932 M:      Viresh Kumar <vireshk@kernel.org>
7933 S:      Maintained
7934 F:      drivers/staging/greybus/authentication.c
7935 F:      drivers/staging/greybus/bootrom.c
7936 F:      drivers/staging/greybus/firmware.h
7937 F:      drivers/staging/greybus/fw-core.c
7938 F:      drivers/staging/greybus/fw-download.c
7939 F:      drivers/staging/greybus/fw-management.c
7940 F:      drivers/staging/greybus/greybus_authentication.h
7941 F:      drivers/staging/greybus/greybus_firmware.h
7942 F:      drivers/staging/greybus/hid.c
7943 F:      drivers/staging/greybus/i2c.c
7944 F:      drivers/staging/greybus/spi.c
7945 F:      drivers/staging/greybus/spilib.c
7946 F:      drivers/staging/greybus/spilib.h
7947
7948 GREYBUS LOOPBACK DRIVER
7949 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7950 S:      Maintained
7951 F:      drivers/staging/greybus/loopback.c
7952
7953 GREYBUS PLATFORM DRIVERS
7954 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7955 S:      Maintained
7956 F:      drivers/staging/greybus/arche-apb-ctrl.c
7957 F:      drivers/staging/greybus/arche-platform.c
7958 F:      drivers/staging/greybus/arche_platform.h
7959
7960 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7961 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7962 S:      Maintained
7963 F:      drivers/staging/greybus/gpio.c
7964 F:      drivers/staging/greybus/light.c
7965 F:      drivers/staging/greybus/power_supply.c
7966 F:      drivers/staging/greybus/sdio.c
7967 F:      drivers/staging/greybus/spi.c
7968 F:      drivers/staging/greybus/spilib.c
7969
7970 GREYBUS SUBSYSTEM
7971 M:      Johan Hovold <johan@kernel.org>
7972 M:      Alex Elder <elder@kernel.org>
7973 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7974 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7975 S:      Maintained
7976 F:      drivers/greybus/
7977 F:      drivers/staging/greybus/
7978 F:      include/linux/greybus.h
7979 F:      include/linux/greybus/
7980
7981 GREYBUS UART PROTOCOLS DRIVERS
7982 M:      David Lin <dtwlin@gmail.com>
7983 S:      Maintained
7984 F:      drivers/staging/greybus/log.c
7985 F:      drivers/staging/greybus/uart.c
7986
7987 GS1662 VIDEO SERIALIZER
7988 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7989 L:      linux-media@vger.kernel.org
7990 S:      Maintained
7991 T:      git git://linuxtv.org/media_tree.git
7992 F:      drivers/media/spi/gs1662.c
7993
7994 GSPCA FINEPIX SUBDRIVER
7995 M:      Frank Zago <frank@zago.net>
7996 L:      linux-media@vger.kernel.org
7997 S:      Maintained
7998 T:      git git://linuxtv.org/media_tree.git
7999 F:      drivers/media/usb/gspca/finepix.c
8000
8001 GSPCA GL860 SUBDRIVER
8002 M:      Olivier Lorin <o.lorin@laposte.net>
8003 L:      linux-media@vger.kernel.org
8004 S:      Maintained
8005 T:      git git://linuxtv.org/media_tree.git
8006 F:      drivers/media/usb/gspca/gl860/
8007
8008 GSPCA M5602 SUBDRIVER
8009 M:      Erik Andren <erik.andren@gmail.com>
8010 L:      linux-media@vger.kernel.org
8011 S:      Maintained
8012 T:      git git://linuxtv.org/media_tree.git
8013 F:      drivers/media/usb/gspca/m5602/
8014
8015 GSPCA PAC207 SONIXB SUBDRIVER
8016 M:      Hans Verkuil <hverkuil@xs4all.nl>
8017 L:      linux-media@vger.kernel.org
8018 S:      Odd Fixes
8019 T:      git git://linuxtv.org/media_tree.git
8020 F:      drivers/media/usb/gspca/pac207.c
8021
8022 GSPCA SN9C20X SUBDRIVER
8023 M:      Brian Johnson <brijohn@gmail.com>
8024 L:      linux-media@vger.kernel.org
8025 S:      Maintained
8026 T:      git git://linuxtv.org/media_tree.git
8027 F:      drivers/media/usb/gspca/sn9c20x.c
8028
8029 GSPCA T613 SUBDRIVER
8030 M:      Leandro Costantino <lcostantino@gmail.com>
8031 L:      linux-media@vger.kernel.org
8032 S:      Maintained
8033 T:      git git://linuxtv.org/media_tree.git
8034 F:      drivers/media/usb/gspca/t613.c
8035
8036 GSPCA USB WEBCAM DRIVER
8037 M:      Hans Verkuil <hverkuil@xs4all.nl>
8038 L:      linux-media@vger.kernel.org
8039 S:      Odd Fixes
8040 T:      git git://linuxtv.org/media_tree.git
8041 F:      drivers/media/usb/gspca/
8042
8043 GTP (GPRS Tunneling Protocol)
8044 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8045 M:      Harald Welte <laforge@gnumonks.org>
8046 L:      osmocom-net-gprs@lists.osmocom.org
8047 S:      Maintained
8048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8049 F:      drivers/net/gtp.c
8050
8051 GUID PARTITION TABLE (GPT)
8052 M:      Davidlohr Bueso <dave@stgolabs.net>
8053 L:      linux-efi@vger.kernel.org
8054 S:      Maintained
8055 F:      block/partitions/efi.*
8056
8057 H8/300 ARCHITECTURE
8058 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8059 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8060 S:      Maintained
8061 W:      http://uclinux-h8.sourceforge.jp
8062 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8063 F:      arch/h8300/
8064 F:      drivers/clk/h8300/
8065 F:      drivers/clocksource/h8300_*.c
8066 F:      drivers/irqchip/irq-renesas-h8*.c
8067
8068 HABANALABS PCI DRIVER
8069 M:      Oded Gabbay <ogabbay@kernel.org>
8070 S:      Supported
8071 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8072 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8073 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8074 F:      drivers/misc/habanalabs/
8075 F:      include/uapi/misc/habanalabs.h
8076
8077 HACKRF MEDIA DRIVER
8078 M:      Antti Palosaari <crope@iki.fi>
8079 L:      linux-media@vger.kernel.org
8080 S:      Maintained
8081 W:      https://linuxtv.org
8082 W:      http://palosaari.fi/linux/
8083 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8084 T:      git git://linuxtv.org/anttip/media_tree.git
8085 F:      drivers/media/usb/hackrf/
8086
8087 HANTRO VPU CODEC DRIVER
8088 M:      Ezequiel Garcia <ezequiel@collabora.com>
8089 M:      Philipp Zabel <p.zabel@pengutronix.de>
8090 L:      linux-media@vger.kernel.org
8091 L:      linux-rockchip@lists.infradead.org
8092 S:      Maintained
8093 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8094 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8095 F:      drivers/staging/media/hantro/
8096
8097 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8098 M:      Frank Seidel <frank@f-seidel.de>
8099 L:      platform-driver-x86@vger.kernel.org
8100 S:      Maintained
8101 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8102 F:      drivers/platform/x86/hdaps.c
8103
8104 HARDWARE MONITORING
8105 M:      Jean Delvare <jdelvare@suse.com>
8106 M:      Guenter Roeck <linux@roeck-us.net>
8107 L:      linux-hwmon@vger.kernel.org
8108 S:      Maintained
8109 W:      http://hwmon.wiki.kernel.org/
8110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8111 F:      Documentation/devicetree/bindings/hwmon/
8112 F:      Documentation/hwmon/
8113 F:      drivers/hwmon/
8114 F:      include/linux/hwmon*.h
8115 F:      include/trace/events/hwmon*.h
8116 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8117
8118 HARDWARE RANDOM NUMBER GENERATOR CORE
8119 M:      Matt Mackall <mpm@selenic.com>
8120 M:      Herbert Xu <herbert@gondor.apana.org.au>
8121 L:      linux-crypto@vger.kernel.org
8122 S:      Odd fixes
8123 F:      Documentation/admin-guide/hw_random.rst
8124 F:      Documentation/devicetree/bindings/rng/
8125 F:      drivers/char/hw_random/
8126 F:      include/linux/hw_random.h
8127
8128 HARDWARE SPINLOCK CORE
8129 M:      Ohad Ben-Cohen <ohad@wizery.com>
8130 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8131 R:      Baolin Wang <baolin.wang7@gmail.com>
8132 L:      linux-remoteproc@vger.kernel.org
8133 S:      Maintained
8134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8135 F:      Documentation/devicetree/bindings/hwlock/
8136 F:      Documentation/locking/hwspinlock.rst
8137 F:      drivers/hwspinlock/
8138 F:      include/linux/hwspinlock.h
8139
8140 HARDWARE TRACING FACILITIES
8141 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8142 S:      Maintained
8143 F:      drivers/hwtracing/
8144
8145 HARMONY SOUND DRIVER
8146 L:      linux-parisc@vger.kernel.org
8147 S:      Maintained
8148 F:      sound/parisc/harmony.*
8149
8150 HDPVR USB VIDEO ENCODER DRIVER
8151 M:      Hans Verkuil <hverkuil@xs4all.nl>
8152 L:      linux-media@vger.kernel.org
8153 S:      Odd Fixes
8154 W:      https://linuxtv.org
8155 T:      git git://linuxtv.org/media_tree.git
8156 F:      drivers/media/usb/hdpvr/
8157
8158 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8159 M:      Matt Hsiao <matt.hsiao@hpe.com>
8160 S:      Supported
8161 F:      drivers/misc/hpilo.[ch]
8162
8163 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8164 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8165 S:      Supported
8166 F:      Documentation/watchdog/hpwdt.rst
8167 F:      drivers/watchdog/hpwdt.c
8168
8169 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8170 M:      Don Brace <don.brace@microchip.com>
8171 L:      storagedev@microchip.com
8172 L:      linux-scsi@vger.kernel.org
8173 S:      Supported
8174 F:      Documentation/scsi/hpsa.rst
8175 F:      drivers/scsi/hpsa*.[ch]
8176 F:      include/linux/cciss*.h
8177 F:      include/uapi/linux/cciss*.h
8178
8179 HFI1 DRIVER
8180 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8181 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8182 L:      linux-rdma@vger.kernel.org
8183 S:      Supported
8184 F:      drivers/infiniband/hw/hfi1
8185
8186 HFS FILESYSTEM
8187 L:      linux-fsdevel@vger.kernel.org
8188 S:      Orphan
8189 F:      Documentation/filesystems/hfs.rst
8190 F:      fs/hfs/
8191
8192 HFSPLUS FILESYSTEM
8193 L:      linux-fsdevel@vger.kernel.org
8194 S:      Orphan
8195 F:      Documentation/filesystems/hfsplus.rst
8196 F:      fs/hfsplus/
8197
8198 HGA FRAMEBUFFER DRIVER
8199 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8200 L:      linux-nvidia@lists.surfsouth.com
8201 S:      Maintained
8202 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8203 F:      drivers/video/fbdev/hgafb.c
8204
8205 HIBERNATION (aka Software Suspend, aka swsusp)
8206 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8207 M:      Pavel Machek <pavel@ucw.cz>
8208 L:      linux-pm@vger.kernel.org
8209 S:      Supported
8210 B:      https://bugzilla.kernel.org
8211 F:      arch/*/include/asm/suspend*.h
8212 F:      arch/x86/power/
8213 F:      drivers/base/power/
8214 F:      include/linux/freezer.h
8215 F:      include/linux/pm.h
8216 F:      include/linux/suspend.h
8217 F:      kernel/power/
8218
8219 HID CORE LAYER
8220 M:      Jiri Kosina <jikos@kernel.org>
8221 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8222 L:      linux-input@vger.kernel.org
8223 S:      Maintained
8224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8225 F:      drivers/hid/
8226 F:      include/linux/hid*
8227 F:      include/uapi/linux/hid*
8228
8229 HID PLAYSTATION DRIVER
8230 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8231 L:      linux-input@vger.kernel.org
8232 S:      Supported
8233 F:      drivers/hid/hid-playstation.c
8234
8235 HID SENSOR HUB DRIVERS
8236 M:      Jiri Kosina <jikos@kernel.org>
8237 M:      Jonathan Cameron <jic23@kernel.org>
8238 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8239 L:      linux-input@vger.kernel.org
8240 L:      linux-iio@vger.kernel.org
8241 S:      Maintained
8242 F:      Documentation/hid/hid-sensor*
8243 F:      drivers/hid/hid-sensor-*
8244 F:      drivers/iio/*/hid-*
8245 F:      include/linux/hid-sensor-*
8246
8247 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8248 M:      Thomas Gleixner <tglx@linutronix.de>
8249 L:      linux-kernel@vger.kernel.org
8250 S:      Maintained
8251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8252 F:      Documentation/timers/
8253 F:      include/linux/clockchips.h
8254 F:      include/linux/hrtimer.h
8255 F:      kernel/time/clockevents.c
8256 F:      kernel/time/hrtimer.c
8257 F:      kernel/time/timer_*.c
8258
8259 HIGH-SPEED SCC DRIVER FOR AX.25
8260 L:      linux-hams@vger.kernel.org
8261 S:      Orphan
8262 F:      drivers/net/hamradio/dmascc.c
8263 F:      drivers/net/hamradio/scc.c
8264
8265 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8266 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8267 S:      Supported
8268 W:      http://www.highpoint-tech.com
8269 F:      Documentation/scsi/hptiop.rst
8270 F:      drivers/scsi/hptiop.c
8271
8272 HIPPI
8273 M:      Jes Sorensen <jes@trained-monkey.org>
8274 L:      linux-hippi@sunsite.dk
8275 S:      Maintained
8276 F:      drivers/net/hippi/
8277 F:      include/linux/hippidevice.h
8278 F:      include/uapi/linux/if_hippi.h
8279 F:      net/802/hippi.c
8280
8281 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8282 M:      Kurt Kanzenbach <kurt@linutronix.de>
8283 L:      netdev@vger.kernel.org
8284 S:      Maintained
8285 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8286 F:      drivers/net/dsa/hirschmann/*
8287 F:      include/linux/platform_data/hirschmann-hellcreek.h
8288 F:      net/dsa/tag_hellcreek.c
8289
8290 HISILICON DMA DRIVER
8291 M:      Zhou Wang <wangzhou1@hisilicon.com>
8292 L:      dmaengine@vger.kernel.org
8293 S:      Maintained
8294 F:      drivers/dma/hisi_dma.c
8295
8296 HISILICON GPIO DRIVER
8297 M:      Luo Jiaxing <luojiaxing@huawei.com>
8298 L:      linux-gpio@vger.kernel.org
8299 S:      Maintained
8300 F:      drivers/gpio/gpio-hisi.c
8301
8302 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8303 M:      Zaibo Xu <xuzaibo@huawei.com>
8304 L:      linux-crypto@vger.kernel.org
8305 S:      Maintained
8306 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8307 F:      drivers/crypto/hisilicon/hpre/hpre.h
8308 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8309 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8310
8311 HISILICON I2C CONTROLLER DRIVER
8312 M:      Yicong Yang <yangyicong@hisilicon.com>
8313 L:      linux-i2c@vger.kernel.org
8314 S:      Maintained
8315 W:      https://www.hisilicon.com
8316 F:      drivers/i2c/busses/i2c-hisi.c
8317
8318 HISILICON LPC BUS DRIVER
8319 M:      john.garry@huawei.com
8320 S:      Maintained
8321 W:      http://www.hisilicon.com
8322 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8323 F:      drivers/bus/hisi_lpc.c
8324
8325 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8326 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8327 M:      Salil Mehta <salil.mehta@huawei.com>
8328 L:      netdev@vger.kernel.org
8329 S:      Maintained
8330 W:      http://www.hisilicon.com
8331 F:      drivers/net/ethernet/hisilicon/hns3/
8332
8333 HISILICON NETWORK SUBSYSTEM DRIVER
8334 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8335 M:      Salil Mehta <salil.mehta@huawei.com>
8336 L:      netdev@vger.kernel.org
8337 S:      Maintained
8338 W:      http://www.hisilicon.com
8339 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8340 F:      drivers/net/ethernet/hisilicon/
8341
8342 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8343 M:      John Stultz <john.stultz@linaro.org>
8344 L:      linux-kernel@vger.kernel.org
8345 S:      Maintained
8346 F:      drivers/misc/hisi_hikey_usb.c
8347 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8348
8349 HISILICON PMU DRIVER
8350 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8351 S:      Supported
8352 W:      http://www.hisilicon.com
8353 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8354 F:      drivers/perf/hisilicon
8355
8356 HISILICON QM AND ZIP Controller DRIVER
8357 M:      Zhou Wang <wangzhou1@hisilicon.com>
8358 L:      linux-crypto@vger.kernel.org
8359 S:      Maintained
8360 F:      Documentation/ABI/testing/debugfs-hisi-zip
8361 F:      drivers/crypto/hisilicon/qm.c
8362 F:      drivers/crypto/hisilicon/qm.h
8363 F:      drivers/crypto/hisilicon/sgl.c
8364 F:      drivers/crypto/hisilicon/zip/
8365
8366 HISILICON ROCE DRIVER
8367 M:      Lijun Ou <oulijun@huawei.com>
8368 M:      Weihang Li <liweihang@huawei.com>
8369 L:      linux-rdma@vger.kernel.org
8370 S:      Maintained
8371 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8372 F:      drivers/infiniband/hw/hns/
8373
8374 HISILICON SAS Controller
8375 M:      John Garry <john.garry@huawei.com>
8376 S:      Supported
8377 W:      http://www.hisilicon.com
8378 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8379 F:      drivers/scsi/hisi_sas/
8380
8381 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8382 M:      Zaibo Xu <xuzaibo@huawei.com>
8383 L:      linux-crypto@vger.kernel.org
8384 S:      Maintained
8385 F:      Documentation/ABI/testing/debugfs-hisi-sec
8386 F:      drivers/crypto/hisilicon/sec2/sec.h
8387 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8388 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8389 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8390
8391 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8392 M:      Jay Fang <f.fangjian@huawei.com>
8393 L:      linux-spi@vger.kernel.org
8394 S:      Maintained
8395 W:      http://www.hisilicon.com
8396 F:      drivers/spi/spi-hisi-kunpeng.c
8397
8398 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8399 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8400 L:      linux-kernel@vger.kernel.org
8401 S:      Maintained
8402 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8403 F:      drivers/spmi/hisi-spmi-controller.c
8404
8405 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8406 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8407 S:      Maintained
8408 F:      drivers/staging/hikey9xx/
8409
8410 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8411 M:      Zaibo Xu <xuzaibo@huawei.com>
8412 S:      Maintained
8413 F:      drivers/crypto/hisilicon/trng/trng.c
8414
8415 HISILICON V3XX SPI NOR FLASH Controller Driver
8416 M:      John Garry <john.garry@huawei.com>
8417 S:      Maintained
8418 W:      http://www.hisilicon.com
8419 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8420
8421 HMM - Heterogeneous Memory Management
8422 M:      Jérôme Glisse <jglisse@redhat.com>
8423 L:      linux-mm@kvack.org
8424 S:      Maintained
8425 F:      Documentation/vm/hmm.rst
8426 F:      include/linux/hmm*
8427 F:      lib/test_hmm*
8428 F:      mm/hmm*
8429 F:      tools/testing/selftests/vm/*hmm*
8430
8431 HOST AP DRIVER
8432 M:      Jouni Malinen <j@w1.fi>
8433 L:      linux-wireless@vger.kernel.org
8434 S:      Obsolete
8435 W:      http://w1.fi/hostap-driver.html
8436 F:      drivers/net/wireless/intersil/hostap/
8437
8438 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8439 L:      platform-driver-x86@vger.kernel.org
8440 S:      Orphan
8441 F:      drivers/platform/x86/tc1100-wmi.c
8442
8443 HPET:   High Precision Event Timers driver
8444 M:      Clemens Ladisch <clemens@ladisch.de>
8445 S:      Maintained
8446 F:      Documentation/timers/hpet.rst
8447 F:      drivers/char/hpet.c
8448 F:      include/linux/hpet.h
8449 F:      include/uapi/linux/hpet.h
8450
8451 HPET:   x86
8452 S:      Orphan
8453 F:      arch/x86/include/asm/hpet.h
8454 F:      arch/x86/kernel/hpet.c
8455
8456 HPFS FILESYSTEM
8457 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8458 S:      Maintained
8459 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8460 F:      fs/hpfs/
8461
8462 HSI SUBSYSTEM
8463 M:      Sebastian Reichel <sre@kernel.org>
8464 S:      Maintained
8465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8466 F:      Documentation/ABI/testing/sysfs-bus-hsi
8467 F:      Documentation/driver-api/hsi.rst
8468 F:      drivers/hsi/
8469 F:      include/linux/hsi/
8470 F:      include/uapi/linux/hsi/
8471
8472 HSO 3G MODEM DRIVER
8473 L:      linux-usb@vger.kernel.org
8474 S:      Orphan
8475 F:      drivers/net/usb/hso.c
8476
8477 HSR NETWORK PROTOCOL
8478 L:      netdev@vger.kernel.org
8479 S:      Orphan
8480 F:      net/hsr/
8481
8482 HT16K33 LED CONTROLLER DRIVER
8483 M:      Robin van der Gracht <robin@protonic.nl>
8484 S:      Maintained
8485 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8486 F:      drivers/auxdisplay/ht16k33.c
8487
8488 HTCPEN TOUCHSCREEN DRIVER
8489 M:      Pau Oliva Fora <pof@eslack.org>
8490 L:      linux-input@vger.kernel.org
8491 S:      Maintained
8492 F:      drivers/input/touchscreen/htcpen.c
8493
8494 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8495 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8496 L:      linux-iio@vger.kernel.org
8497 S:      Maintained
8498 W:      http://www.st.com/
8499 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8500 F:      drivers/iio/humidity/hts221*
8501
8502 HUAWEI ETHERNET DRIVER
8503 M:      Bin Luo <luobin9@huawei.com>
8504 L:      netdev@vger.kernel.org
8505 S:      Supported
8506 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8507 F:      drivers/net/ethernet/huawei/hinic/
8508
8509 HUGETLB FILESYSTEM
8510 M:      Mike Kravetz <mike.kravetz@oracle.com>
8511 L:      linux-mm@kvack.org
8512 S:      Maintained
8513 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8514 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8515 F:      Documentation/vm/hugetlbfs_reserv.rst
8516 F:      fs/hugetlbfs/
8517 F:      include/linux/hugetlb.h
8518 F:      mm/hugetlb.c
8519
8520 HVA ST MEDIA DRIVER
8521 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8522 L:      linux-media@vger.kernel.org
8523 S:      Supported
8524 W:      https://linuxtv.org
8525 T:      git git://linuxtv.org/media_tree.git
8526 F:      drivers/media/platform/sti/hva
8527
8528 HWPOISON MEMORY FAILURE HANDLING
8529 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8530 L:      linux-mm@kvack.org
8531 S:      Maintained
8532 F:      mm/hwpoison-inject.c
8533 F:      mm/memory-failure.c
8534
8535 HYCON HY46XX TOUCHSCREEN SUPPORT
8536 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8537 L:      linux-input@vger.kernel.org
8538 S:      Maintained
8539 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8540 F:      drivers/input/touchscreen/hycon-hy46xx.c
8541
8542 HYGON PROCESSOR SUPPORT
8543 M:      Pu Wen <puwen@hygon.cn>
8544 L:      linux-kernel@vger.kernel.org
8545 S:      Maintained
8546 F:      arch/x86/kernel/cpu/hygon.c
8547
8548 HYNIX HI556 SENSOR DRIVER
8549 M:      Shawn Tu <shawnx.tu@intel.com>
8550 L:      linux-media@vger.kernel.org
8551 S:      Maintained
8552 T:      git git://linuxtv.org/media_tree.git
8553 F:      drivers/media/i2c/hi556.c
8554
8555 Hyper-V/Azure CORE AND DRIVERS
8556 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8557 M:      Haiyang Zhang <haiyangz@microsoft.com>
8558 M:      Stephen Hemminger <sthemmin@microsoft.com>
8559 M:      Wei Liu <wei.liu@kernel.org>
8560 M:      Dexuan Cui <decui@microsoft.com>
8561 L:      linux-hyperv@vger.kernel.org
8562 S:      Supported
8563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8564 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8565 F:      Documentation/ABI/testing/debugfs-hyperv
8566 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8567 F:      arch/x86/hyperv
8568 F:      arch/x86/include/asm/hyperv-tlfs.h
8569 F:      arch/x86/include/asm/mshyperv.h
8570 F:      arch/x86/include/asm/trace/hyperv.h
8571 F:      arch/x86/kernel/cpu/mshyperv.c
8572 F:      drivers/clocksource/hyperv_timer.c
8573 F:      drivers/hid/hid-hyperv.c
8574 F:      drivers/hv/
8575 F:      drivers/input/serio/hyperv-keyboard.c
8576 F:      drivers/iommu/hyperv-iommu.c
8577 F:      drivers/net/ethernet/microsoft/
8578 F:      drivers/net/hyperv/
8579 F:      drivers/pci/controller/pci-hyperv-intf.c
8580 F:      drivers/pci/controller/pci-hyperv.c
8581 F:      drivers/scsi/storvsc_drv.c
8582 F:      drivers/uio/uio_hv_generic.c
8583 F:      drivers/video/fbdev/hyperv_fb.c
8584 F:      include/asm-generic/hyperv-tlfs.h
8585 F:      include/asm-generic/mshyperv.h
8586 F:      include/clocksource/hyperv_timer.h
8587 F:      include/linux/hyperv.h
8588 F:      include/uapi/linux/hyperv.h
8589 F:      net/vmw_vsock/hyperv_transport.c
8590 F:      tools/hv/
8591
8592 HYPERBUS SUPPORT
8593 M:      Vignesh Raghavendra <vigneshr@ti.com>
8594 L:      linux-mtd@lists.infradead.org
8595 S:      Supported
8596 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8597 C:      irc://irc.oftc.net/mtd
8598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8599 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8600 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8601 F:      drivers/mtd/hyperbus/
8602 F:      include/linux/mtd/hyperbus.h
8603
8604 HYPERVISOR VIRTUAL CONSOLE DRIVER
8605 L:      linuxppc-dev@lists.ozlabs.org
8606 S:      Odd Fixes
8607 F:      drivers/tty/hvc/
8608
8609 I2C ACPI SUPPORT
8610 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8611 L:      linux-i2c@vger.kernel.org
8612 L:      linux-acpi@vger.kernel.org
8613 S:      Maintained
8614 F:      drivers/i2c/i2c-core-acpi.c
8615
8616 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8617 M:      Ajay Gupta <ajayg@nvidia.com>
8618 L:      linux-i2c@vger.kernel.org
8619 S:      Maintained
8620 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8621 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8622
8623 I2C MUXES
8624 M:      Peter Rosin <peda@axentia.se>
8625 L:      linux-i2c@vger.kernel.org
8626 S:      Maintained
8627 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8628 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8629 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8630 F:      Documentation/i2c/i2c-topology.rst
8631 F:      Documentation/i2c/muxes/
8632 F:      drivers/i2c/i2c-mux.c
8633 F:      drivers/i2c/muxes/
8634 F:      include/linux/i2c-mux.h
8635
8636 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8637 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8638 L:      linux-i2c@vger.kernel.org
8639 S:      Maintained
8640 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8641 F:      drivers/i2c/busses/i2c-mv64xxx.c
8642
8643 I2C OVER PARALLEL PORT
8644 M:      Jean Delvare <jdelvare@suse.com>
8645 L:      linux-i2c@vger.kernel.org
8646 S:      Maintained
8647 F:      Documentation/i2c/busses/i2c-parport.rst
8648 F:      drivers/i2c/busses/i2c-parport.c
8649
8650 I2C SUBSYSTEM
8651 M:      Wolfram Sang <wsa@kernel.org>
8652 L:      linux-i2c@vger.kernel.org
8653 S:      Maintained
8654 W:      https://i2c.wiki.kernel.org/
8655 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8657 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8658 F:      Documentation/i2c/
8659 F:      drivers/i2c/*
8660 F:      include/linux/i2c-dev.h
8661 F:      include/linux/i2c-smbus.h
8662 F:      include/linux/i2c.h
8663 F:      include/uapi/linux/i2c-*.h
8664 F:      include/uapi/linux/i2c.h
8665
8666 I2C SUBSYSTEM HOST DRIVERS
8667 L:      linux-i2c@vger.kernel.org
8668 S:      Odd Fixes
8669 W:      https://i2c.wiki.kernel.org/
8670 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8672 F:      Documentation/devicetree/bindings/i2c/
8673 F:      drivers/i2c/algos/
8674 F:      drivers/i2c/busses/
8675
8676 I2C-TAOS-EVM DRIVER
8677 M:      Jean Delvare <jdelvare@suse.com>
8678 L:      linux-i2c@vger.kernel.org
8679 S:      Maintained
8680 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8681 F:      drivers/i2c/busses/i2c-taos-evm.c
8682
8683 I2C-TINY-USB DRIVER
8684 M:      Till Harbaum <till@harbaum.org>
8685 L:      linux-i2c@vger.kernel.org
8686 S:      Maintained
8687 W:      http://www.harbaum.org/till/i2c_tiny_usb
8688 F:      drivers/i2c/busses/i2c-tiny-usb.c
8689
8690 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8691 M:      Jean Delvare <jdelvare@suse.com>
8692 L:      linux-i2c@vger.kernel.org
8693 S:      Maintained
8694 F:      Documentation/i2c/busses/i2c-ali1535.rst
8695 F:      Documentation/i2c/busses/i2c-ali1563.rst
8696 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8697 F:      Documentation/i2c/busses/i2c-amd756.rst
8698 F:      Documentation/i2c/busses/i2c-amd8111.rst
8699 F:      Documentation/i2c/busses/i2c-i801.rst
8700 F:      Documentation/i2c/busses/i2c-nforce2.rst
8701 F:      Documentation/i2c/busses/i2c-piix4.rst
8702 F:      Documentation/i2c/busses/i2c-sis5595.rst
8703 F:      Documentation/i2c/busses/i2c-sis630.rst
8704 F:      Documentation/i2c/busses/i2c-sis96x.rst
8705 F:      Documentation/i2c/busses/i2c-via.rst
8706 F:      Documentation/i2c/busses/i2c-viapro.rst
8707 F:      drivers/i2c/busses/i2c-ali1535.c
8708 F:      drivers/i2c/busses/i2c-ali1563.c
8709 F:      drivers/i2c/busses/i2c-ali15x3.c
8710 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8711 F:      drivers/i2c/busses/i2c-amd756.c
8712 F:      drivers/i2c/busses/i2c-amd8111.c
8713 F:      drivers/i2c/busses/i2c-i801.c
8714 F:      drivers/i2c/busses/i2c-isch.c
8715 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8716 F:      drivers/i2c/busses/i2c-nforce2.c
8717 F:      drivers/i2c/busses/i2c-piix4.c
8718 F:      drivers/i2c/busses/i2c-sis5595.c
8719 F:      drivers/i2c/busses/i2c-sis630.c
8720 F:      drivers/i2c/busses/i2c-sis96x.c
8721 F:      drivers/i2c/busses/i2c-via.c
8722 F:      drivers/i2c/busses/i2c-viapro.c
8723
8724 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8725 M:      Hans de Goede <hdegoede@redhat.com>
8726 L:      linux-i2c@vger.kernel.org
8727 S:      Maintained
8728 F:      drivers/i2c/busses/i2c-cht-wc.c
8729
8730 I2C/SMBUS ISMT DRIVER
8731 M:      Seth Heasley <seth.heasley@intel.com>
8732 M:      Neil Horman <nhorman@tuxdriver.com>
8733 L:      linux-i2c@vger.kernel.org
8734 F:      Documentation/i2c/busses/i2c-ismt.rst
8735 F:      drivers/i2c/busses/i2c-ismt.c
8736
8737 I2C/SMBUS STUB DRIVER
8738 M:      Jean Delvare <jdelvare@suse.com>
8739 L:      linux-i2c@vger.kernel.org
8740 S:      Maintained
8741 F:      drivers/i2c/i2c-stub.c
8742
8743 I3C DRIVER FOR CADENCE I3C MASTER IP
8744 M:      Przemysław Gaj <pgaj@cadence.com>
8745 S:      Maintained
8746 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8747 F:      drivers/i3c/master/i3c-master-cdns.c
8748
8749 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8750 M:      Vitor Soares <vitor.soares@synopsys.com>
8751 S:      Maintained
8752 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8753 F:      drivers/i3c/master/dw*
8754
8755 I3C SUBSYSTEM
8756 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8757 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8758 S:      Maintained
8759 C:      irc://chat.freenode.net/linux-i3c
8760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8761 F:      Documentation/ABI/testing/sysfs-bus-i3c
8762 F:      Documentation/devicetree/bindings/i3c/
8763 F:      Documentation/driver-api/i3c
8764 F:      drivers/i3c/
8765 F:      include/linux/i3c/
8766
8767 IA64 (Itanium) PLATFORM
8768 L:      linux-ia64@vger.kernel.org
8769 S:      Orphan
8770 F:      Documentation/ia64/
8771 F:      arch/ia64/
8772
8773 IBM Power 842 compression accelerator
8774 M:      Haren Myneni <haren@us.ibm.com>
8775 S:      Supported
8776 F:      crypto/842.c
8777 F:      drivers/crypto/nx/Kconfig
8778 F:      drivers/crypto/nx/Makefile
8779 F:      drivers/crypto/nx/nx-842*
8780 F:      include/linux/sw842.h
8781 F:      lib/842/
8782
8783 IBM Power in-Nest Crypto Acceleration
8784 M:      Breno Leitão <leitao@debian.org>
8785 M:      Nayna Jain <nayna@linux.ibm.com>
8786 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8787 L:      linux-crypto@vger.kernel.org
8788 S:      Supported
8789 F:      drivers/crypto/nx/Kconfig
8790 F:      drivers/crypto/nx/Makefile
8791 F:      drivers/crypto/nx/nx-aes*
8792 F:      drivers/crypto/nx/nx-sha*
8793 F:      drivers/crypto/nx/nx.*
8794 F:      drivers/crypto/nx/nx_csbcpb.h
8795 F:      drivers/crypto/nx/nx_debugfs.c
8796
8797 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8798 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8799 L:      linux-pci@vger.kernel.org
8800 L:      linuxppc-dev@lists.ozlabs.org
8801 S:      Supported
8802 F:      drivers/pci/hotplug/rpadlpar*
8803
8804 IBM Power Linux RAID adapter
8805 M:      Brian King <brking@us.ibm.com>
8806 S:      Supported
8807 F:      drivers/scsi/ipr.*
8808
8809 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8810 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8811 L:      linux-pci@vger.kernel.org
8812 L:      linuxppc-dev@lists.ozlabs.org
8813 S:      Supported
8814 F:      drivers/pci/hotplug/rpaphp*
8815
8816 IBM Power SRIOV Virtual NIC Device Driver
8817 M:      Dany Madden <drt@linux.ibm.com>
8818 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8819 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8820 L:      netdev@vger.kernel.org
8821 S:      Supported
8822 F:      drivers/net/ethernet/ibm/ibmvnic.*
8823
8824 IBM Power Virtual Accelerator Switchboard
8825 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8826 L:      linuxppc-dev@lists.ozlabs.org
8827 S:      Supported
8828 F:      arch/powerpc/include/asm/vas.h
8829 F:      arch/powerpc/platforms/powernv/copy-paste.h
8830 F:      arch/powerpc/platforms/powernv/vas*
8831
8832 IBM Power Virtual Ethernet Device Driver
8833 M:      Cristobal Forno <cforno12@linux.ibm.com>
8834 L:      netdev@vger.kernel.org
8835 S:      Supported
8836 F:      drivers/net/ethernet/ibm/ibmveth.*
8837
8838 IBM Power Virtual FC Device Drivers
8839 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8840 L:      linux-scsi@vger.kernel.org
8841 S:      Supported
8842 F:      drivers/scsi/ibmvscsi/ibmvfc*
8843
8844 IBM Power Virtual Management Channel Driver
8845 M:      Brad Warrum <bwarrum@linux.ibm.com>
8846 M:      Ritu Agarwal <rituagar@linux.ibm.com>
8847 S:      Supported
8848 F:      drivers/misc/ibmvmc.*
8849
8850 IBM Power Virtual SCSI Device Drivers
8851 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8852 L:      linux-scsi@vger.kernel.org
8853 S:      Supported
8854 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8855 F:      include/scsi/viosrp.h
8856
8857 IBM Power Virtual SCSI Device Target Driver
8858 M:      Michael Cyr <mikecyr@linux.ibm.com>
8859 L:      linux-scsi@vger.kernel.org
8860 L:      target-devel@vger.kernel.org
8861 S:      Supported
8862 F:      drivers/scsi/ibmvscsi_tgt/
8863
8864 IBM Power VMX Cryptographic instructions
8865 M:      Breno Leitão <leitao@debian.org>
8866 M:      Nayna Jain <nayna@linux.ibm.com>
8867 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8868 L:      linux-crypto@vger.kernel.org
8869 S:      Supported
8870 F:      drivers/crypto/vmx/Kconfig
8871 F:      drivers/crypto/vmx/Makefile
8872 F:      drivers/crypto/vmx/aes*
8873 F:      drivers/crypto/vmx/ghash*
8874 F:      drivers/crypto/vmx/ppc-xlate.pl
8875 F:      drivers/crypto/vmx/vmx.c
8876
8877 IBM ServeRAID RAID DRIVER
8878 S:      Orphan
8879 F:      drivers/scsi/ips.*
8880
8881 ICH LPC AND GPIO DRIVER
8882 M:      Peter Tyser <ptyser@xes-inc.com>
8883 S:      Maintained
8884 F:      drivers/gpio/gpio-ich.c
8885 F:      drivers/mfd/lpc_ich.c
8886
8887 ICY I2C DRIVER
8888 M:      Max Staudt <max@enpas.org>
8889 L:      linux-i2c@vger.kernel.org
8890 S:      Maintained
8891 F:      drivers/i2c/busses/i2c-icy.c
8892
8893 IDEAPAD LAPTOP EXTRAS DRIVER
8894 M:      Ike Panhc <ike.pan@canonical.com>
8895 L:      platform-driver-x86@vger.kernel.org
8896 S:      Maintained
8897 W:      http://launchpad.net/ideapad-laptop
8898 F:      drivers/platform/x86/ideapad-laptop.c
8899
8900 IDEAPAD LAPTOP SLIDEBAR DRIVER
8901 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8902 L:      linux-input@vger.kernel.org
8903 S:      Maintained
8904 W:      https://github.com/o2genum/ideapad-slidebar
8905 F:      drivers/input/misc/ideapad_slidebar.c
8906
8907 IDT VersaClock 5 CLOCK DRIVER
8908 M:      Luca Ceresoli <luca@lucaceresoli.net>
8909 S:      Maintained
8910 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8911 F:      drivers/clk/clk-versaclock5.c
8912
8913 IEEE 802.15.4 SUBSYSTEM
8914 M:      Alexander Aring <alex.aring@gmail.com>
8915 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8916 L:      linux-wpan@vger.kernel.org
8917 S:      Maintained
8918 W:      https://linux-wpan.org/
8919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8921 F:      Documentation/networking/ieee802154.rst
8922 F:      drivers/net/ieee802154/
8923 F:      include/linux/ieee802154.h
8924 F:      include/linux/nl802154.h
8925 F:      include/net/af_ieee802154.h
8926 F:      include/net/cfg802154.h
8927 F:      include/net/ieee802154_netdev.h
8928 F:      include/net/mac802154.h
8929 F:      include/net/nl802154.h
8930 F:      net/ieee802154/
8931 F:      net/mac802154/
8932
8933 IFE PROTOCOL
8934 M:      Yotam Gigi <yotam.gi@gmail.com>
8935 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8936 F:      include/net/ife.h
8937 F:      include/uapi/linux/ife.h
8938 F:      net/ife
8939
8940 IGORPLUG-USB IR RECEIVER
8941 M:      Sean Young <sean@mess.org>
8942 L:      linux-media@vger.kernel.org
8943 S:      Maintained
8944 F:      drivers/media/rc/igorplugusb.c
8945
8946 IGUANAWORKS USB IR TRANSCEIVER
8947 M:      Sean Young <sean@mess.org>
8948 L:      linux-media@vger.kernel.org
8949 S:      Maintained
8950 F:      drivers/media/rc/iguanair.c
8951
8952 IIO DIGITAL POTENTIOMETER DAC
8953 M:      Peter Rosin <peda@axentia.se>
8954 L:      linux-iio@vger.kernel.org
8955 S:      Maintained
8956 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8957 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
8958 F:      drivers/iio/dac/dpot-dac.c
8959
8960 IIO ENVELOPE DETECTOR
8961 M:      Peter Rosin <peda@axentia.se>
8962 L:      linux-iio@vger.kernel.org
8963 S:      Maintained
8964 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8965 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
8966 F:      drivers/iio/adc/envelope-detector.c
8967
8968 IIO MULTIPLEXER
8969 M:      Peter Rosin <peda@axentia.se>
8970 L:      linux-iio@vger.kernel.org
8971 S:      Maintained
8972 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
8973 F:      drivers/iio/multiplexer/iio-mux.c
8974
8975 IIO SCMI BASED DRIVER
8976 M:      Jyoti Bhayana <jbhayana@google.com>
8977 L:      linux-iio@vger.kernel.org
8978 S:      Maintained
8979 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
8980
8981 IIO SUBSYSTEM AND DRIVERS
8982 M:      Jonathan Cameron <jic23@kernel.org>
8983 R:      Lars-Peter Clausen <lars@metafoo.de>
8984 L:      linux-iio@vger.kernel.org
8985 S:      Maintained
8986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8987 F:      Documentation/ABI/testing/configfs-iio*
8988 F:      Documentation/ABI/testing/sysfs-bus-iio*
8989 F:      Documentation/devicetree/bindings/iio/
8990 F:      drivers/iio/
8991 F:      drivers/staging/iio/
8992 F:      include/linux/iio/
8993 F:      tools/iio/
8994
8995 IIO UNIT CONVERTER
8996 M:      Peter Rosin <peda@axentia.se>
8997 L:      linux-iio@vger.kernel.org
8998 S:      Maintained
8999 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9000 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9001 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9002 F:      drivers/iio/afe/iio-rescale.c
9003
9004 IKANOS/ADI EAGLE ADSL USB DRIVER
9005 M:      Matthieu Castet <castet.matthieu@free.fr>
9006 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9007 S:      Maintained
9008 F:      drivers/usb/atm/ueagle-atm.c
9009
9010 IMGTEC ASCII LCD DRIVER
9011 M:      Paul Burton <paulburton@kernel.org>
9012 S:      Maintained
9013 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
9014 F:      drivers/auxdisplay/img-ascii-lcd.c
9015
9016 IMGTEC IR DECODER DRIVER
9017 S:      Orphan
9018 F:      drivers/media/rc/img-ir/
9019
9020 IMON SOUNDGRAPH USB IR RECEIVER
9021 M:      Sean Young <sean@mess.org>
9022 L:      linux-media@vger.kernel.org
9023 S:      Maintained
9024 F:      drivers/media/rc/imon.c
9025 F:      drivers/media/rc/imon_raw.c
9026
9027 IMS TWINTURBO FRAMEBUFFER DRIVER
9028 L:      linux-fbdev@vger.kernel.org
9029 S:      Orphan
9030 F:      drivers/video/fbdev/imsttfb.c
9031
9032 INA209 HARDWARE MONITOR DRIVER
9033 M:      Guenter Roeck <linux@roeck-us.net>
9034 L:      linux-hwmon@vger.kernel.org
9035 S:      Maintained
9036 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9037 F:      Documentation/hwmon/ina209.rst
9038 F:      drivers/hwmon/ina209.c
9039
9040 INA2XX HARDWARE MONITOR DRIVER
9041 M:      Guenter Roeck <linux@roeck-us.net>
9042 L:      linux-hwmon@vger.kernel.org
9043 S:      Maintained
9044 F:      Documentation/hwmon/ina2xx.rst
9045 F:      drivers/hwmon/ina2xx.c
9046 F:      include/linux/platform_data/ina2xx.h
9047
9048 INDUSTRY PACK SUBSYSTEM (IPACK)
9049 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9050 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9051 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9052 L:      industrypack-devel@lists.sourceforge.net
9053 S:      Maintained
9054 W:      http://industrypack.sourceforge.net
9055 F:      drivers/ipack/
9056
9057 INFINEON DPS310 Driver
9058 M:      Eddie James <eajames@linux.ibm.com>
9059 L:      linux-iio@vger.kernel.org
9060 S:      Maintained
9061 F:      drivers/iio/pressure/dps310.c
9062
9063 INFINIBAND SUBSYSTEM
9064 M:      Doug Ledford <dledford@redhat.com>
9065 M:      Jason Gunthorpe <jgg@nvidia.com>
9066 L:      linux-rdma@vger.kernel.org
9067 S:      Supported
9068 W:      https://github.com/linux-rdma/rdma-core
9069 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9071 F:      Documentation/devicetree/bindings/infiniband/
9072 F:      Documentation/infiniband/
9073 F:      drivers/infiniband/
9074 F:      include/rdma/
9075 F:      include/trace/events/ib_mad.h
9076 F:      include/trace/events/ib_umad.h
9077 F:      include/uapi/linux/if_infiniband.h
9078 F:      include/uapi/rdma/
9079 F:      samples/bpf/ibumad_kern.c
9080 F:      samples/bpf/ibumad_user.c
9081
9082 INGENIC JZ4780 NAND DRIVER
9083 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9084 L:      linux-mtd@lists.infradead.org
9085 L:      linux-mips@vger.kernel.org
9086 S:      Maintained
9087 F:      drivers/mtd/nand/raw/ingenic/
9088
9089 INGENIC JZ47xx SoCs
9090 M:      Paul Cercueil <paul@crapouillou.net>
9091 L:      linux-mips@vger.kernel.org
9092 S:      Maintained
9093 F:      arch/mips/boot/dts/ingenic/
9094 F:      arch/mips/generic/board-ingenic.c
9095 F:      arch/mips/include/asm/mach-ingenic/
9096 F:      arch/mips/ingenic/Kconfig
9097 F:      drivers/clk/ingenic/
9098 F:      drivers/dma/dma-jz4780.c
9099 F:      drivers/gpu/drm/ingenic/
9100 F:      drivers/i2c/busses/i2c-jz4780.c
9101 F:      drivers/iio/adc/ingenic-adc.c
9102 F:      drivers/irqchip/irq-ingenic.c
9103 F:      drivers/memory/jz4780-nemc.c
9104 F:      drivers/mmc/host/jz4740_mmc.c
9105 F:      drivers/mtd/nand/raw/ingenic/
9106 F:      drivers/pinctrl/pinctrl-ingenic.c
9107 F:      drivers/power/supply/ingenic-battery.c
9108 F:      drivers/pwm/pwm-jz4740.c
9109 F:      drivers/remoteproc/ingenic_rproc.c
9110 F:      drivers/rtc/rtc-jz4740.c
9111 F:      drivers/tty/serial/8250/8250_ingenic.c
9112 F:      drivers/usb/musb/jz4740.c
9113 F:      drivers/watchdog/jz4740_wdt.c
9114 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9115 F:      include/linux/mfd/ingenic-tcu.h
9116 F:      sound/soc/codecs/jz47*
9117 F:      sound/soc/jz4740/
9118
9119 INOTIFY
9120 M:      Jan Kara <jack@suse.cz>
9121 R:      Amir Goldstein <amir73il@gmail.com>
9122 L:      linux-fsdevel@vger.kernel.org
9123 S:      Maintained
9124 F:      Documentation/filesystems/inotify.rst
9125 F:      fs/notify/inotify/
9126 F:      include/linux/inotify.h
9127 F:      include/uapi/linux/inotify.h
9128
9129 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9130 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9131 L:      linux-input@vger.kernel.org
9132 S:      Maintained
9133 Q:      http://patchwork.kernel.org/project/linux-input/list/
9134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9135 F:      Documentation/devicetree/bindings/input/
9136 F:      Documentation/devicetree/bindings/serio/
9137 F:      Documentation/input/
9138 F:      drivers/input/
9139 F:      include/linux/input.h
9140 F:      include/linux/input/
9141 F:      include/uapi/linux/input-event-codes.h
9142 F:      include/uapi/linux/input.h
9143
9144 INPUT MULTITOUCH (MT) PROTOCOL
9145 M:      Henrik Rydberg <rydberg@bitmath.org>
9146 L:      linux-input@vger.kernel.org
9147 S:      Odd fixes
9148 F:      Documentation/input/multi-touch-protocol.rst
9149 F:      drivers/input/input-mt.c
9150 K:      \b(ABS|SYN)_MT_
9151
9152 INSIDE SECURE CRYPTO DRIVER
9153 M:      Antoine Tenart <atenart@kernel.org>
9154 L:      linux-crypto@vger.kernel.org
9155 S:      Maintained
9156 F:      drivers/crypto/inside-secure/
9157
9158 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9159 M:      Mimi Zohar <zohar@linux.ibm.com>
9160 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9161 L:      linux-integrity@vger.kernel.org
9162 S:      Supported
9163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9164 F:      security/integrity/ima/
9165
9166 INTEL 810/815 FRAMEBUFFER DRIVER
9167 M:      Antonino Daplas <adaplas@gmail.com>
9168 L:      linux-fbdev@vger.kernel.org
9169 S:      Maintained
9170 F:      drivers/video/fbdev/i810/
9171
9172 INTEL ASoC DRIVERS
9173 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9174 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9175 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9176 M:      Jie Yang <yang.jie@linux.intel.com>
9177 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9178 S:      Supported
9179 F:      sound/soc/intel/
9180
9181 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9182 M:      Hans de Goede <hdegoede@redhat.com>
9183 L:      platform-driver-x86@vger.kernel.org
9184 S:      Maintained
9185 F:      drivers/platform/x86/intel_atomisp2_pm.c
9186
9187 INTEL ATOMISP2 LED DRIVER
9188 M:      Hans de Goede <hdegoede@redhat.com>
9189 L:      platform-driver-x86@vger.kernel.org
9190 S:      Maintained
9191 F:      drivers/platform/x86/intel_atomisp2_led.c
9192
9193 INTEL BROXTON PMC DRIVER
9194 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9195 M:      Zha Qipeng <qipeng.zha@intel.com>
9196 S:      Maintained
9197 F:      drivers/mfd/intel_pmc_bxt.c
9198 F:      include/linux/mfd/intel_pmc_bxt.h
9199
9200 INTEL C600 SERIES SAS CONTROLLER DRIVER
9201 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9202 L:      linux-scsi@vger.kernel.org
9203 S:      Supported
9204 T:      git git://git.code.sf.net/p/intel-sas/isci
9205 F:      drivers/scsi/isci/
9206
9207 INTEL CPU family model numbers
9208 M:      Tony Luck <tony.luck@intel.com>
9209 M:      x86@kernel.org
9210 L:      linux-kernel@vger.kernel.org
9211 S:      Supported
9212 F:      arch/x86/include/asm/intel-family.h
9213
9214 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9215 M:      Jani Nikula <jani.nikula@linux.intel.com>
9216 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9217 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9218 L:      intel-gfx@lists.freedesktop.org
9219 S:      Supported
9220 W:      https://01.org/linuxgraphics/
9221 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9222 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9223 C:      irc://chat.freenode.net/intel-gfx
9224 T:      git git://anongit.freedesktop.org/drm-intel
9225 F:      Documentation/gpu/i915.rst
9226 F:      drivers/gpu/drm/i915/
9227 F:      include/drm/i915*
9228 F:      include/uapi/drm/i915_drm.h
9229
9230 INTEL ETHERNET DRIVERS
9231 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9232 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9233 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9234 S:      Supported
9235 W:      http://www.intel.com/support/feedback.htm
9236 W:      http://e1000.sourceforge.net/
9237 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9240 F:      Documentation/networking/device_drivers/ethernet/intel/
9241 F:      drivers/net/ethernet/intel/
9242 F:      drivers/net/ethernet/intel/*/
9243 F:      include/linux/avf/virtchnl.h
9244 F:      include/linux/net/intel/iidc.h
9245
9246 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9247 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9248 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9249 L:      linux-rdma@vger.kernel.org
9250 S:      Supported
9251 F:      drivers/infiniband/hw/irdma/
9252 F:      include/uapi/rdma/irdma-abi.h
9253
9254 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9255 M:      Maik Broemme <mbroemme@libmpq.org>
9256 L:      linux-fbdev@vger.kernel.org
9257 S:      Maintained
9258 F:      Documentation/fb/intelfb.rst
9259 F:      drivers/video/fbdev/intelfb/
9260
9261 INTEL GPIO DRIVERS
9262 M:      Andy Shevchenko <andy@kernel.org>
9263 L:      linux-gpio@vger.kernel.org
9264 S:      Maintained
9265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9266 F:      drivers/gpio/gpio-ich.c
9267 F:      drivers/gpio/gpio-merrifield.c
9268 F:      drivers/gpio/gpio-ml-ioh.c
9269 F:      drivers/gpio/gpio-pch.c
9270 F:      drivers/gpio/gpio-sch.c
9271 F:      drivers/gpio/gpio-sodaville.c
9272
9273 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9274 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9275 M:      Zhi Wang <zhi.a.wang@intel.com>
9276 L:      intel-gvt-dev@lists.freedesktop.org
9277 L:      intel-gfx@lists.freedesktop.org
9278 S:      Supported
9279 W:      https://01.org/igvt-g
9280 T:      git https://github.com/intel/gvt-linux.git
9281 F:      drivers/gpu/drm/i915/gvt/
9282
9283 INTEL HID EVENT DRIVER
9284 M:      Alex Hung <alex.hung@canonical.com>
9285 L:      platform-driver-x86@vger.kernel.org
9286 S:      Maintained
9287 F:      drivers/platform/x86/intel-hid.c
9288
9289 INTEL I/OAT DMA DRIVER
9290 M:      Dave Jiang <dave.jiang@intel.com>
9291 R:      Dan Williams <dan.j.williams@intel.com>
9292 L:      dmaengine@vger.kernel.org
9293 S:      Supported
9294 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9295 F:      drivers/dma/ioat*
9296
9297 INTEL IADX DRIVER
9298 M:      Dave Jiang <dave.jiang@intel.com>
9299 L:      dmaengine@vger.kernel.org
9300 S:      Supported
9301 F:      drivers/dma/idxd/*
9302 F:      include/uapi/linux/idxd.h
9303
9304 INTEL IDLE DRIVER
9305 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9306 M:      Len Brown <lenb@kernel.org>
9307 L:      linux-pm@vger.kernel.org
9308 S:      Supported
9309 B:      https://bugzilla.kernel.org
9310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9311 F:      drivers/idle/intel_idle.c
9312
9313 INTEL INTEGRATED SENSOR HUB DRIVER
9314 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9315 M:      Jiri Kosina <jikos@kernel.org>
9316 L:      linux-input@vger.kernel.org
9317 S:      Maintained
9318 F:      drivers/hid/intel-ish-hid/
9319
9320 INTEL IOMMU (VT-d)
9321 M:      David Woodhouse <dwmw2@infradead.org>
9322 M:      Lu Baolu <baolu.lu@linux.intel.com>
9323 L:      iommu@lists.linux-foundation.org
9324 S:      Supported
9325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9326 F:      drivers/iommu/intel/
9327 F:      include/linux/intel-iommu.h
9328 F:      include/linux/intel-svm.h
9329
9330 INTEL IOP-ADMA DMA DRIVER
9331 R:      Dan Williams <dan.j.williams@intel.com>
9332 S:      Odd fixes
9333 F:      drivers/dma/iop-adma.c
9334
9335 INTEL IPU3 CSI-2 CIO2 DRIVER
9336 M:      Yong Zhi <yong.zhi@intel.com>
9337 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9338 M:      Bingbu Cao <bingbu.cao@intel.com>
9339 M:      Dan Scally <djrscally@gmail.com>
9340 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9341 L:      linux-media@vger.kernel.org
9342 S:      Maintained
9343 T:      git git://linuxtv.org/media_tree.git
9344 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9345 F:      drivers/media/pci/intel/ipu3/
9346
9347 INTEL IPU3 CSI-2 IMGU DRIVER
9348 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9349 R:      Bingbu Cao <bingbu.cao@intel.com>
9350 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9351 L:      linux-media@vger.kernel.org
9352 S:      Maintained
9353 F:      Documentation/admin-guide/media/ipu3.rst
9354 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9355 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9356 F:      drivers/staging/media/ipu3/
9357
9358 INTEL IXP4XX CRYPTO SUPPORT
9359 M:      Corentin Labbe <clabbe@baylibre.com>
9360 L:      linux-crypto@vger.kernel.org
9361 S:      Maintained
9362 F:      drivers/crypto/ixp4xx_crypto.c
9363
9364 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9365 M:      Krzysztof Halasa <khalasa@piap.pl>
9366 S:      Maintained
9367 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9368 F:      drivers/net/wan/ixp4xx_hss.c
9369 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9370 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9371 F:      include/linux/soc/ixp4xx/npe.h
9372 F:      include/linux/soc/ixp4xx/qmgr.h
9373
9374 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9375 M:      Deepak Saxena <dsaxena@plexity.net>
9376 S:      Maintained
9377 F:      drivers/char/hw_random/ixp4xx-rng.c
9378
9379 INTEL KEEM BAY DRM DRIVER
9380 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9381 M:      Edmund Dea <edmund.j.dea@intel.com>
9382 S:      Maintained
9383 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9384 F:      drivers/gpu/drm/kmb/
9385
9386 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9387 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9388 S:      Maintained
9389 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9390 F:      drivers/crypto/keembay/Kconfig
9391 F:      drivers/crypto/keembay/Makefile
9392 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9393 F:      drivers/crypto/keembay/ocs-aes.c
9394 F:      drivers/crypto/keembay/ocs-aes.h
9395
9396 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9397 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9398 M:      Declan Murphy <declan.murphy@intel.com>
9399 S:      Maintained
9400 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9401 F:      drivers/crypto/keembay/Kconfig
9402 F:      drivers/crypto/keembay/Makefile
9403 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9404 F:      drivers/crypto/keembay/ocs-hcu.c
9405 F:      drivers/crypto/keembay/ocs-hcu.h
9406
9407 INTEL MANAGEMENT ENGINE (mei)
9408 M:      Tomas Winkler <tomas.winkler@intel.com>
9409 L:      linux-kernel@vger.kernel.org
9410 S:      Supported
9411 F:      Documentation/driver-api/mei/*
9412 F:      drivers/misc/mei/
9413 F:      drivers/watchdog/mei_wdt.c
9414 F:      include/linux/mei_cl_bus.h
9415 F:      include/uapi/linux/mei.h
9416 F:      samples/mei/*
9417
9418 INTEL MAX 10 BMC MFD DRIVER
9419 M:      Xu Yilun <yilun.xu@intel.com>
9420 R:      Tom Rix <trix@redhat.com>
9421 S:      Maintained
9422 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9423 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9424 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9425 F:      drivers/mfd/intel-m10-bmc.c
9426 F:      include/linux/mfd/intel-m10-bmc.h
9427
9428 INTEL MENLOW THERMAL DRIVER
9429 M:      Sujith Thomas <sujith.thomas@intel.com>
9430 L:      platform-driver-x86@vger.kernel.org
9431 S:      Supported
9432 W:      https://01.org/linux-acpi
9433 F:      drivers/platform/x86/intel_menlow.c
9434
9435 INTEL P-Unit IPC DRIVER
9436 M:      Zha Qipeng <qipeng.zha@intel.com>
9437 L:      platform-driver-x86@vger.kernel.org
9438 S:      Maintained
9439 F:      arch/x86/include/asm/intel_punit_ipc.h
9440 F:      drivers/platform/x86/intel_punit_ipc.c
9441
9442 INTEL PMC CORE DRIVER
9443 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9444 M:      David E Box <david.e.box@intel.com>
9445 L:      platform-driver-x86@vger.kernel.org
9446 S:      Maintained
9447 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9448 F:      drivers/platform/x86/intel_pmc_core*
9449
9450 INTEL PMIC GPIO DRIVERS
9451 M:      Andy Shevchenko <andy@kernel.org>
9452 S:      Maintained
9453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9454 F:      drivers/gpio/gpio-*cove.c
9455
9456 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9457 M:      Andy Shevchenko <andy@kernel.org>
9458 S:      Maintained
9459 F:      drivers/mfd/intel_soc_pmic*
9460 F:      include/linux/mfd/intel_soc_pmic*
9461
9462 INTEL PMT DRIVER
9463 M:      "David E. Box" <david.e.box@linux.intel.com>
9464 S:      Maintained
9465 F:      drivers/mfd/intel_pmt.c
9466 F:      drivers/platform/x86/intel_pmt_*
9467
9468 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9469 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9470 L:      linux-wireless@vger.kernel.org
9471 S:      Maintained
9472 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9473 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9474 F:      drivers/net/wireless/intel/ipw2x00/
9475
9476 INTEL PSTATE DRIVER
9477 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9478 M:      Len Brown <lenb@kernel.org>
9479 L:      linux-pm@vger.kernel.org
9480 S:      Supported
9481 F:      drivers/cpufreq/intel_pstate.c
9482
9483 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9484 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9485 L:      linux-iio@vger.kernel.org
9486 F:      drivers/counter/intel-qep.c
9487
9488 INTEL SCU DRIVERS
9489 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9490 S:      Maintained
9491 F:      arch/x86/include/asm/intel_scu_ipc.h
9492 F:      drivers/platform/x86/intel_scu_*
9493
9494 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9495 M:      Daniel Scally <djrscally@gmail.com>
9496 S:      Maintained
9497 F:      drivers/platform/x86/intel/int3472/
9498
9499 INTEL SPEED SELECT TECHNOLOGY
9500 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9501 L:      platform-driver-x86@vger.kernel.org
9502 S:      Maintained
9503 F:      drivers/platform/x86/intel_speed_select_if/
9504 F:      include/uapi/linux/isst_if.h
9505 F:      tools/power/x86/intel-speed-select/
9506
9507 INTEL STRATIX10 FIRMWARE DRIVERS
9508 M:      Richard Gong <richard.gong@linux.intel.com>
9509 L:      linux-kernel@vger.kernel.org
9510 S:      Maintained
9511 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9512 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9513 F:      drivers/firmware/stratix10-rsu.c
9514 F:      drivers/firmware/stratix10-svc.c
9515 F:      include/linux/firmware/intel/stratix10-smc.h
9516 F:      include/linux/firmware/intel/stratix10-svc-client.h
9517
9518 INTEL TELEMETRY DRIVER
9519 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9520 M:      "David E. Box" <david.e.box@linux.intel.com>
9521 L:      platform-driver-x86@vger.kernel.org
9522 S:      Maintained
9523 F:      arch/x86/include/asm/intel_telemetry.h
9524 F:      drivers/platform/x86/intel_telemetry*
9525
9526 INTEL UNCORE FREQUENCY CONTROL
9527 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9528 L:      platform-driver-x86@vger.kernel.org
9529 S:      Maintained
9530 F:      drivers/platform/x86/intel-uncore-frequency.c
9531
9532 INTEL VIRTUAL BUTTON DRIVER
9533 M:      AceLan Kao <acelan.kao@canonical.com>
9534 L:      platform-driver-x86@vger.kernel.org
9535 S:      Maintained
9536 F:      drivers/platform/x86/intel-vbtn.c
9537
9538 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9539 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9540 L:      linux-wireless@vger.kernel.org
9541 S:      Supported
9542 F:      drivers/net/wireless/intel/iwlegacy/
9543
9544 INTEL WIRELESS WIFI LINK (iwlwifi)
9545 M:      Luca Coelho <luciano.coelho@intel.com>
9546 L:      linux-wireless@vger.kernel.org
9547 S:      Supported
9548 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9550 F:      drivers/net/wireless/intel/iwlwifi/
9551
9552 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9553 M:      Jithu Joseph <jithu.joseph@intel.com>
9554 R:      Maurice Ma <maurice.ma@intel.com>
9555 S:      Maintained
9556 W:      https://slimbootloader.github.io/security/firmware-update.html
9557 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9558
9559 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9560 L:      Dell.Client.Kernel@dell.com
9561 S:      Maintained
9562 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9563
9564 INTEL WWAN IOSM DRIVER
9565 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9566 M:      Intel Corporation <linuxwwan@intel.com>
9567 L:      netdev@vger.kernel.org
9568 S:      Maintained
9569 F:      drivers/net/wwan/iosm/
9570
9571 INTEL(R) TRACE HUB
9572 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9573 S:      Supported
9574 F:      Documentation/trace/intel_th.rst
9575 F:      drivers/hwtracing/intel_th/
9576 F:      include/linux/intel_th.h
9577
9578 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9579 M:      Ning Sun <ning.sun@intel.com>
9580 L:      tboot-devel@lists.sourceforge.net
9581 S:      Supported
9582 W:      http://tboot.sourceforge.net
9583 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9584 F:      Documentation/x86/intel_txt.rst
9585 F:      arch/x86/kernel/tboot.c
9586 F:      include/linux/tboot.h
9587
9588 INTEL SGX
9589 M:      Jarkko Sakkinen <jarkko@kernel.org>
9590 R:      Dave Hansen <dave.hansen@linux.intel.com>
9591 L:      linux-sgx@vger.kernel.org
9592 S:      Supported
9593 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9595 F:      Documentation/x86/sgx.rst
9596 F:      arch/x86/entry/vdso/vsgx.S
9597 F:      arch/x86/include/asm/sgx.h
9598 F:      arch/x86/include/uapi/asm/sgx.h
9599 F:      arch/x86/kernel/cpu/sgx/*
9600 F:      tools/testing/selftests/sgx/*
9601 K:      \bSGX_
9602
9603 INTERCONNECT API
9604 M:      Georgi Djakov <djakov@kernel.org>
9605 L:      linux-pm@vger.kernel.org
9606 S:      Maintained
9607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9608 F:      Documentation/devicetree/bindings/interconnect/
9609 F:      Documentation/driver-api/interconnect.rst
9610 F:      drivers/interconnect/
9611 F:      include/dt-bindings/interconnect/
9612 F:      include/linux/interconnect-provider.h
9613 F:      include/linux/interconnect.h
9614
9615 INTERRUPT COUNTER DRIVER
9616 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9617 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9618 L:      linux-iio@vger.kernel.org
9619 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9620 F:      drivers/counter/interrupt-cnt.c
9621
9622 INVENSENSE ICM-426xx IMU DRIVER
9623 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9624 L:      linux-iio@vger.kernel.org
9625 S:      Maintained
9626 W:      https://invensense.tdk.com/
9627 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9628 F:      drivers/iio/imu/inv_icm42600/
9629
9630 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9631 M:      Linus Walleij <linus.walleij@linaro.org>
9632 L:      linux-iio@vger.kernel.org
9633 S:      Maintained
9634 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9635 F:      drivers/iio/gyro/mpu3050*
9636
9637 IOC3 ETHERNET DRIVER
9638 M:      Ralf Baechle <ralf@linux-mips.org>
9639 L:      linux-mips@vger.kernel.org
9640 S:      Maintained
9641 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9642
9643 IOMAP FILESYSTEM LIBRARY
9644 M:      Christoph Hellwig <hch@infradead.org>
9645 M:      Darrick J. Wong <djwong@kernel.org>
9646 M:      linux-xfs@vger.kernel.org
9647 M:      linux-fsdevel@vger.kernel.org
9648 L:      linux-xfs@vger.kernel.org
9649 L:      linux-fsdevel@vger.kernel.org
9650 S:      Supported
9651 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9652 F:      fs/iomap/
9653 F:      include/linux/iomap.h
9654
9655 IOMMU DRIVERS
9656 M:      Joerg Roedel <joro@8bytes.org>
9657 M:      Will Deacon <will@kernel.org>
9658 L:      iommu@lists.linux-foundation.org
9659 S:      Maintained
9660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9661 F:      Documentation/devicetree/bindings/iommu/
9662 F:      Documentation/userspace-api/iommu.rst
9663 F:      drivers/iommu/
9664 F:      include/linux/iommu.h
9665 F:      include/linux/iova.h
9666 F:      include/linux/of_iommu.h
9667 F:      include/uapi/linux/iommu.h
9668
9669 IO_URING
9670 M:      Jens Axboe <axboe@kernel.dk>
9671 R:      Pavel Begunkov <asml.silence@gmail.com>
9672 L:      io-uring@vger.kernel.org
9673 S:      Maintained
9674 T:      git git://git.kernel.dk/linux-block
9675 T:      git git://git.kernel.dk/liburing
9676 F:      fs/io-wq.c
9677 F:      fs/io-wq.h
9678 F:      fs/io_uring.c
9679 F:      include/linux/io_uring.h
9680 F:      include/uapi/linux/io_uring.h
9681 F:      tools/io_uring/
9682
9683 IPMI SUBSYSTEM
9684 M:      Corey Minyard <minyard@acm.org>
9685 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9686 S:      Supported
9687 W:      http://openipmi.sourceforge.net/
9688 F:      Documentation/driver-api/ipmi.rst
9689 F:      Documentation/devicetree/bindings/ipmi/
9690 F:      drivers/char/ipmi/
9691 F:      include/linux/ipmi*
9692 F:      include/uapi/linux/ipmi*
9693
9694 IPS SCSI RAID DRIVER
9695 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9696 L:      linux-scsi@vger.kernel.org
9697 S:      Maintained
9698 W:      http://www.adaptec.com/
9699 F:      drivers/scsi/ips*
9700
9701 IPVS
9702 M:      Simon Horman <horms@verge.net.au>
9703 M:      Julian Anastasov <ja@ssi.bg>
9704 L:      netdev@vger.kernel.org
9705 L:      lvs-devel@vger.kernel.org
9706 S:      Maintained
9707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9709 F:      Documentation/networking/ipvs-sysctl.rst
9710 F:      include/net/ip_vs.h
9711 F:      include/uapi/linux/ip_vs.h
9712 F:      net/netfilter/ipvs/
9713
9714 IPWIRELESS DRIVER
9715 M:      Jiri Kosina <jikos@kernel.org>
9716 M:      David Sterba <dsterba@suse.com>
9717 S:      Odd Fixes
9718 F:      drivers/tty/ipwireless/
9719
9720 IPX NETWORK LAYER
9721 L:      netdev@vger.kernel.org
9722 S:      Obsolete
9723 F:      include/uapi/linux/ipx.h
9724
9725 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9726 M:      Marc Zyngier <maz@kernel.org>
9727 S:      Maintained
9728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9729 F:      Documentation/core-api/irq/irq-domain.rst
9730 F:      include/linux/irqdomain.h
9731 F:      kernel/irq/irqdomain.c
9732 F:      kernel/irq/msi.c
9733
9734 IRQ SUBSYSTEM
9735 M:      Thomas Gleixner <tglx@linutronix.de>
9736 L:      linux-kernel@vger.kernel.org
9737 S:      Maintained
9738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9739 F:      kernel/irq/
9740
9741 IRQCHIP DRIVERS
9742 M:      Thomas Gleixner <tglx@linutronix.de>
9743 M:      Marc Zyngier <maz@kernel.org>
9744 L:      linux-kernel@vger.kernel.org
9745 S:      Maintained
9746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9747 F:      Documentation/devicetree/bindings/interrupt-controller/
9748 F:      drivers/irqchip/
9749
9750 ISA
9751 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9752 S:      Maintained
9753 F:      Documentation/driver-api/isa.rst
9754 F:      drivers/base/isa.c
9755 F:      include/linux/isa.h
9756
9757 ISA RADIO MODULE
9758 M:      Hans Verkuil <hverkuil@xs4all.nl>
9759 L:      linux-media@vger.kernel.org
9760 S:      Maintained
9761 W:      https://linuxtv.org
9762 T:      git git://linuxtv.org/media_tree.git
9763 F:      drivers/media/radio/radio-isa*
9764
9765 ISAPNP
9766 M:      Jaroslav Kysela <perex@perex.cz>
9767 S:      Maintained
9768 F:      Documentation/driver-api/isapnp.rst
9769 F:      drivers/pnp/isapnp/
9770 F:      include/linux/isapnp.h
9771
9772 ISCSI
9773 M:      Lee Duncan <lduncan@suse.com>
9774 M:      Chris Leech <cleech@redhat.com>
9775 L:      open-iscsi@googlegroups.com
9776 L:      linux-scsi@vger.kernel.org
9777 S:      Maintained
9778 W:      www.open-iscsi.com
9779 F:      drivers/scsi/*iscsi*
9780 F:      include/scsi/*iscsi*
9781
9782 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9783 M:      Peter Jones <pjones@redhat.com>
9784 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9785 S:      Maintained
9786 F:      drivers/firmware/iscsi_ibft*
9787
9788 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9789 M:      Sagi Grimberg <sagi@grimberg.me>
9790 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9791 L:      linux-rdma@vger.kernel.org
9792 S:      Supported
9793 W:      http://www.openfabrics.org
9794 W:      www.open-iscsi.org
9795 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9796 F:      drivers/infiniband/ulp/iser/
9797
9798 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9799 M:      Sagi Grimberg <sagi@grimberg.me>
9800 L:      linux-rdma@vger.kernel.org
9801 L:      target-devel@vger.kernel.org
9802 S:      Supported
9803 W:      http://www.linux-iscsi.org
9804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9805 F:      drivers/infiniband/ulp/isert
9806
9807 ISDN/CMTP OVER BLUETOOTH
9808 M:      Karsten Keil <isdn@linux-pingi.de>
9809 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9810 L:      netdev@vger.kernel.org
9811 S:      Odd Fixes
9812 W:      http://www.isdn4linux.de
9813 F:      Documentation/isdn/
9814 F:      drivers/isdn/capi/
9815 F:      include/linux/isdn/
9816 F:      include/uapi/linux/isdn/
9817 F:      net/bluetooth/cmtp/
9818
9819 ISDN/mISDN SUBSYSTEM
9820 M:      Karsten Keil <isdn@linux-pingi.de>
9821 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9822 L:      netdev@vger.kernel.org
9823 S:      Maintained
9824 W:      http://www.isdn4linux.de
9825 F:      drivers/isdn/Kconfig
9826 F:      drivers/isdn/Makefile
9827 F:      drivers/isdn/hardware/
9828 F:      drivers/isdn/mISDN/
9829
9830 IT87 HARDWARE MONITORING DRIVER
9831 M:      Jean Delvare <jdelvare@suse.com>
9832 L:      linux-hwmon@vger.kernel.org
9833 S:      Maintained
9834 F:      Documentation/hwmon/it87.rst
9835 F:      drivers/hwmon/it87.c
9836
9837 IT913X MEDIA DRIVER
9838 M:      Antti Palosaari <crope@iki.fi>
9839 L:      linux-media@vger.kernel.org
9840 S:      Maintained
9841 W:      https://linuxtv.org
9842 W:      http://palosaari.fi/linux/
9843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9844 T:      git git://linuxtv.org/anttip/media_tree.git
9845 F:      drivers/media/tuners/it913x*
9846
9847 ITE IT66121 HDMI BRIDGE DRIVER
9848 M:      Phong LE <ple@baylibre.com>
9849 M:      Neil Armstrong <narmstrong@baylibre.com>
9850 S:      Maintained
9851 T:      git git://anongit.freedesktop.org/drm/drm-misc
9852 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
9853 F:      drivers/gpu/drm/bridge/ite-it66121.c
9854
9855 IVTV VIDEO4LINUX DRIVER
9856 M:      Andy Walls <awalls@md.metrocast.net>
9857 L:      linux-media@vger.kernel.org
9858 S:      Maintained
9859 W:      https://linuxtv.org
9860 T:      git git://linuxtv.org/media_tree.git
9861 F:      Documentation/admin-guide/media/ivtv*
9862 F:      drivers/media/pci/ivtv/
9863 F:      include/uapi/linux/ivtv*
9864
9865 IX2505V MEDIA DRIVER
9866 M:      Malcolm Priestley <tvboxspy@gmail.com>
9867 L:      linux-media@vger.kernel.org
9868 S:      Maintained
9869 W:      https://linuxtv.org
9870 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9871 F:      drivers/media/dvb-frontends/ix2505v*
9872
9873 JAILHOUSE HYPERVISOR INTERFACE
9874 M:      Jan Kiszka <jan.kiszka@siemens.com>
9875 L:      jailhouse-dev@googlegroups.com
9876 S:      Maintained
9877 F:      arch/x86/include/asm/jailhouse_para.h
9878 F:      arch/x86/kernel/jailhouse.c
9879
9880 JC42.4 TEMPERATURE SENSOR DRIVER
9881 M:      Guenter Roeck <linux@roeck-us.net>
9882 L:      linux-hwmon@vger.kernel.org
9883 S:      Maintained
9884 F:      Documentation/hwmon/jc42.rst
9885 F:      drivers/hwmon/jc42.c
9886
9887 JFS FILESYSTEM
9888 M:      Dave Kleikamp <shaggy@kernel.org>
9889 L:      jfs-discussion@lists.sourceforge.net
9890 S:      Maintained
9891 W:      http://jfs.sourceforge.net/
9892 T:      git git://github.com/kleikamp/linux-shaggy.git
9893 F:      Documentation/admin-guide/jfs.rst
9894 F:      fs/jfs/
9895
9896 JME NETWORK DRIVER
9897 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9898 L:      netdev@vger.kernel.org
9899 S:      Maintained
9900 F:      drivers/net/ethernet/jme.*
9901
9902 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9903 M:      David Woodhouse <dwmw2@infradead.org>
9904 M:      Richard Weinberger <richard@nod.at>
9905 L:      linux-mtd@lists.infradead.org
9906 S:      Odd Fixes
9907 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9908 T:      git git://git.infradead.org/ubifs-2.6.git
9909 F:      fs/jffs2/
9910 F:      include/uapi/linux/jffs2.h
9911
9912 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9913 M:      "Theodore Ts'o" <tytso@mit.edu>
9914 M:      Jan Kara <jack@suse.com>
9915 L:      linux-ext4@vger.kernel.org
9916 S:      Maintained
9917 F:      fs/jbd2/
9918 F:      include/linux/jbd2.h
9919
9920 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9921 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9922 L:      linux-media@vger.kernel.org
9923 S:      Maintained
9924 F:      drivers/media/platform/rcar_jpu.c
9925
9926 JSM Neo PCI based serial card
9927 L:      linux-serial@vger.kernel.org
9928 S:      Orphan
9929 F:      drivers/tty/serial/jsm/
9930
9931 K10TEMP HARDWARE MONITORING DRIVER
9932 M:      Clemens Ladisch <clemens@ladisch.de>
9933 L:      linux-hwmon@vger.kernel.org
9934 S:      Maintained
9935 F:      Documentation/hwmon/k10temp.rst
9936 F:      drivers/hwmon/k10temp.c
9937
9938 K8TEMP HARDWARE MONITORING DRIVER
9939 M:      Rudolf Marek <r.marek@assembler.cz>
9940 L:      linux-hwmon@vger.kernel.org
9941 S:      Maintained
9942 F:      Documentation/hwmon/k8temp.rst
9943 F:      drivers/hwmon/k8temp.c
9944
9945 KASAN
9946 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
9947 R:      Alexander Potapenko <glider@google.com>
9948 R:      Andrey Konovalov <andreyknvl@gmail.com>
9949 R:      Dmitry Vyukov <dvyukov@google.com>
9950 L:      kasan-dev@googlegroups.com
9951 S:      Maintained
9952 F:      Documentation/dev-tools/kasan.rst
9953 F:      arch/*/include/asm/*kasan.h
9954 F:      arch/*/mm/kasan_init*
9955 F:      include/linux/kasan*.h
9956 F:      lib/Kconfig.kasan
9957 F:      lib/test_kasan*.c
9958 F:      mm/kasan/
9959 F:      scripts/Makefile.kasan
9960
9961 KCONFIG
9962 M:      Masahiro Yamada <masahiroy@kernel.org>
9963 L:      linux-kbuild@vger.kernel.org
9964 S:      Maintained
9965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9966 F:      Documentation/kbuild/kconfig*
9967 F:      scripts/Kconfig.include
9968 F:      scripts/kconfig/
9969
9970 KCOV
9971 R:      Dmitry Vyukov <dvyukov@google.com>
9972 R:      Andrey Konovalov <andreyknvl@gmail.com>
9973 L:      kasan-dev@googlegroups.com
9974 S:      Maintained
9975 F:      Documentation/dev-tools/kcov.rst
9976 F:      include/linux/kcov.h
9977 F:      include/uapi/linux/kcov.h
9978 F:      kernel/kcov.c
9979 F:      scripts/Makefile.kcov
9980
9981 KCSAN
9982 M:      Marco Elver <elver@google.com>
9983 R:      Dmitry Vyukov <dvyukov@google.com>
9984 L:      kasan-dev@googlegroups.com
9985 S:      Maintained
9986 F:      Documentation/dev-tools/kcsan.rst
9987 F:      include/linux/kcsan*.h
9988 F:      kernel/kcsan/
9989 F:      lib/Kconfig.kcsan
9990 F:      scripts/Makefile.kcsan
9991
9992 KDUMP
9993 M:      Dave Young <dyoung@redhat.com>
9994 M:      Baoquan He <bhe@redhat.com>
9995 R:      Vivek Goyal <vgoyal@redhat.com>
9996 L:      kexec@lists.infradead.org
9997 S:      Maintained
9998 W:      http://lse.sourceforge.net/kdump/
9999 F:      Documentation/admin-guide/kdump/
10000 F:      fs/proc/vmcore.c
10001 F:      include/linux/crash_core.h
10002 F:      include/linux/crash_dump.h
10003 F:      include/uapi/linux/vmcore.h
10004 F:      kernel/crash_*.c
10005
10006 KEENE FM RADIO TRANSMITTER DRIVER
10007 M:      Hans Verkuil <hverkuil@xs4all.nl>
10008 L:      linux-media@vger.kernel.org
10009 S:      Maintained
10010 W:      https://linuxtv.org
10011 T:      git git://linuxtv.org/media_tree.git
10012 F:      drivers/media/radio/radio-keene*
10013
10014 KERNEL AUTOMOUNTER
10015 M:      Ian Kent <raven@themaw.net>
10016 L:      autofs@vger.kernel.org
10017 S:      Maintained
10018 F:      fs/autofs/
10019
10020 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10021 M:      Masahiro Yamada <masahiroy@kernel.org>
10022 M:      Michal Marek <michal.lkml@markovi.net>
10023 L:      linux-kbuild@vger.kernel.org
10024 S:      Maintained
10025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10026 F:      Documentation/kbuild/
10027 F:      Makefile
10028 F:      scripts/*vmlinux*
10029 F:      scripts/Kbuild*
10030 F:      scripts/Makefile*
10031 F:      scripts/basic/
10032 F:      scripts/dummy-tools/
10033 F:      scripts/mk*
10034 F:      scripts/mod/
10035 F:      scripts/package/
10036
10037 KERNEL JANITORS
10038 L:      kernel-janitors@vger.kernel.org
10039 S:      Odd Fixes
10040 W:      http://kernelnewbies.org/KernelJanitors
10041
10042 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10043 M:      "J. Bruce Fields" <bfields@fieldses.org>
10044 M:      Chuck Lever <chuck.lever@oracle.com>
10045 L:      linux-nfs@vger.kernel.org
10046 S:      Supported
10047 W:      http://nfs.sourceforge.net/
10048 T:      git git://linux-nfs.org/~bfields/linux.git
10049 F:      fs/lockd/
10050 F:      fs/nfs_common/
10051 F:      fs/nfsd/
10052 F:      include/linux/lockd/
10053 F:      include/linux/sunrpc/
10054 F:      include/uapi/linux/nfsd/
10055 F:      include/uapi/linux/sunrpc/
10056 F:      net/sunrpc/
10057 F:      Documentation/filesystems/nfs/
10058
10059 KERNEL REGRESSIONS
10060 M:      Thorsten Leemhuis <linux@leemhuis.info>
10061 L:      regressions@lists.linux.dev
10062 S:      Supported
10063
10064 KERNEL SELFTEST FRAMEWORK
10065 M:      Shuah Khan <shuah@kernel.org>
10066 M:      Shuah Khan <skhan@linuxfoundation.org>
10067 L:      linux-kselftest@vger.kernel.org
10068 S:      Maintained
10069 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10071 F:      Documentation/dev-tools/kselftest*
10072 F:      tools/testing/selftests/
10073
10074 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10075 M:      Brendan Higgins <brendanhiggins@google.com>
10076 L:      linux-kselftest@vger.kernel.org
10077 L:      kunit-dev@googlegroups.com
10078 S:      Maintained
10079 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10080 F:      Documentation/dev-tools/kunit/
10081 F:      include/kunit/
10082 F:      lib/kunit/
10083 F:      tools/testing/kunit/
10084
10085 KERNEL USERMODE HELPER
10086 M:      Luis Chamberlain <mcgrof@kernel.org>
10087 L:      linux-kernel@vger.kernel.org
10088 S:      Maintained
10089 F:      include/linux/umh.h
10090 F:      kernel/umh.c
10091
10092 KERNEL VIRTUAL MACHINE (KVM)
10093 M:      Paolo Bonzini <pbonzini@redhat.com>
10094 L:      kvm@vger.kernel.org
10095 S:      Supported
10096 W:      http://www.linux-kvm.org
10097 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10098 F:      Documentation/virt/kvm/
10099 F:      include/asm-generic/kvm*
10100 F:      include/kvm/iodev.h
10101 F:      include/linux/kvm*
10102 F:      include/trace/events/kvm.h
10103 F:      include/uapi/asm-generic/kvm*
10104 F:      include/uapi/linux/kvm*
10105 F:      tools/kvm/
10106 F:      tools/testing/selftests/kvm/
10107 F:      virt/kvm/*
10108
10109 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10110 M:      Marc Zyngier <maz@kernel.org>
10111 R:      James Morse <james.morse@arm.com>
10112 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10113 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10115 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10116 S:      Maintained
10117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10118 F:      arch/arm64/include/asm/kvm*
10119 F:      arch/arm64/include/uapi/asm/kvm*
10120 F:      arch/arm64/kvm/
10121 F:      include/kvm/arm_*
10122 F:      tools/testing/selftests/kvm/*/aarch64/
10123 F:      tools/testing/selftests/kvm/aarch64/
10124
10125 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10126 M:      Huacai Chen <chenhuacai@kernel.org>
10127 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10128 L:      linux-mips@vger.kernel.org
10129 L:      kvm@vger.kernel.org
10130 S:      Maintained
10131 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10132 F:      arch/mips/include/asm/kvm*
10133 F:      arch/mips/include/uapi/asm/kvm*
10134 F:      arch/mips/kvm/
10135
10136 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10137 M:      Paul Mackerras <paulus@ozlabs.org>
10138 L:      kvm-ppc@vger.kernel.org
10139 S:      Supported
10140 W:      http://www.linux-kvm.org/
10141 T:      git git://github.com/agraf/linux-2.6.git
10142 F:      arch/powerpc/include/asm/kvm*
10143 F:      arch/powerpc/include/uapi/asm/kvm*
10144 F:      arch/powerpc/kernel/kvm*
10145 F:      arch/powerpc/kvm/
10146
10147 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10148 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10149 M:      Janosch Frank <frankja@linux.ibm.com>
10150 R:      David Hildenbrand <david@redhat.com>
10151 R:      Cornelia Huck <cohuck@redhat.com>
10152 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10153 L:      kvm@vger.kernel.org
10154 S:      Supported
10155 W:      http://www.ibm.com/developerworks/linux/linux390/
10156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10157 F:      Documentation/virt/kvm/s390*
10158 F:      arch/s390/include/asm/gmap.h
10159 F:      arch/s390/include/asm/kvm*
10160 F:      arch/s390/include/uapi/asm/kvm*
10161 F:      arch/s390/kernel/uv.c
10162 F:      arch/s390/kvm/
10163 F:      arch/s390/mm/gmap.c
10164 F:      tools/testing/selftests/kvm/*/s390x/
10165 F:      tools/testing/selftests/kvm/s390x/
10166
10167 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10168 M:      Paolo Bonzini <pbonzini@redhat.com>
10169 R:      Sean Christopherson <seanjc@google.com>
10170 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10171 R:      Wanpeng Li <wanpengli@tencent.com>
10172 R:      Jim Mattson <jmattson@google.com>
10173 R:      Joerg Roedel <joro@8bytes.org>
10174 L:      kvm@vger.kernel.org
10175 S:      Supported
10176 W:      http://www.linux-kvm.org
10177 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10178 F:      arch/x86/include/asm/kvm*
10179 F:      arch/x86/include/asm/pvclock-abi.h
10180 F:      arch/x86/include/asm/svm.h
10181 F:      arch/x86/include/asm/vmx*.h
10182 F:      arch/x86/include/uapi/asm/kvm*
10183 F:      arch/x86/include/uapi/asm/svm.h
10184 F:      arch/x86/include/uapi/asm/vmx.h
10185 F:      arch/x86/kernel/kvm.c
10186 F:      arch/x86/kernel/kvmclock.c
10187 F:      arch/x86/kvm/
10188 F:      arch/x86/kvm/*/
10189
10190 KERNFS
10191 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10192 M:      Tejun Heo <tj@kernel.org>
10193 S:      Supported
10194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10195 F:      fs/kernfs/
10196 F:      include/linux/kernfs.h
10197
10198 KEXEC
10199 M:      Eric Biederman <ebiederm@xmission.com>
10200 L:      kexec@lists.infradead.org
10201 S:      Maintained
10202 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10203 F:      include/linux/kexec.h
10204 F:      include/uapi/linux/kexec.h
10205 F:      kernel/kexec*
10206
10207 KEYS-ENCRYPTED
10208 M:      Mimi Zohar <zohar@linux.ibm.com>
10209 L:      linux-integrity@vger.kernel.org
10210 L:      keyrings@vger.kernel.org
10211 S:      Supported
10212 F:      Documentation/security/keys/trusted-encrypted.rst
10213 F:      include/keys/encrypted-type.h
10214 F:      security/keys/encrypted-keys/
10215
10216 KEYS-TRUSTED
10217 M:      James Bottomley <jejb@linux.ibm.com>
10218 M:      Jarkko Sakkinen <jarkko@kernel.org>
10219 M:      Mimi Zohar <zohar@linux.ibm.com>
10220 L:      linux-integrity@vger.kernel.org
10221 L:      keyrings@vger.kernel.org
10222 S:      Supported
10223 F:      Documentation/security/keys/trusted-encrypted.rst
10224 F:      include/keys/trusted-type.h
10225 F:      include/keys/trusted_tpm.h
10226 F:      security/keys/trusted-keys/
10227
10228 KEYS-TRUSTED-TEE
10229 M:      Sumit Garg <sumit.garg@linaro.org>
10230 L:      linux-integrity@vger.kernel.org
10231 L:      keyrings@vger.kernel.org
10232 S:      Supported
10233 F:      include/keys/trusted_tee.h
10234 F:      security/keys/trusted-keys/trusted_tee.c
10235
10236 KEYS/KEYRINGS
10237 M:      David Howells <dhowells@redhat.com>
10238 M:      Jarkko Sakkinen <jarkko@kernel.org>
10239 L:      keyrings@vger.kernel.org
10240 S:      Maintained
10241 F:      Documentation/security/keys/core.rst
10242 F:      include/keys/
10243 F:      include/linux/key-type.h
10244 F:      include/linux/key.h
10245 F:      include/linux/keyctl.h
10246 F:      include/uapi/linux/keyctl.h
10247 F:      security/keys/
10248
10249 KFENCE
10250 M:      Alexander Potapenko <glider@google.com>
10251 M:      Marco Elver <elver@google.com>
10252 R:      Dmitry Vyukov <dvyukov@google.com>
10253 L:      kasan-dev@googlegroups.com
10254 S:      Maintained
10255 F:      Documentation/dev-tools/kfence.rst
10256 F:      arch/*/include/asm/kfence.h
10257 F:      include/linux/kfence.h
10258 F:      lib/Kconfig.kfence
10259 F:      mm/kfence/
10260
10261 KFIFO
10262 M:      Stefani Seibold <stefani@seibold.net>
10263 S:      Maintained
10264 F:      include/linux/kfifo.h
10265 F:      lib/kfifo.c
10266 F:      samples/kfifo/
10267
10268 KGDB / KDB /debug_core
10269 M:      Jason Wessel <jason.wessel@windriver.com>
10270 M:      Daniel Thompson <daniel.thompson@linaro.org>
10271 R:      Douglas Anderson <dianders@chromium.org>
10272 L:      kgdb-bugreport@lists.sourceforge.net
10273 S:      Maintained
10274 W:      http://kgdb.wiki.kernel.org/
10275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10276 F:      Documentation/dev-tools/kgdb.rst
10277 F:      drivers/misc/kgdbts.c
10278 F:      drivers/tty/serial/kgdboc.c
10279 F:      include/linux/kdb.h
10280 F:      include/linux/kgdb.h
10281 F:      kernel/debug/
10282
10283 KHADAS MCU MFD DRIVER
10284 M:      Neil Armstrong <narmstrong@baylibre.com>
10285 L:      linux-amlogic@lists.infradead.org
10286 S:      Maintained
10287 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10288 F:      drivers/mfd/khadas-mcu.c
10289 F:      include/linux/mfd/khadas-mcu.h
10290 F:      drivers/thermal/khadas_mcu_fan.c
10291
10292 KMEMLEAK
10293 M:      Catalin Marinas <catalin.marinas@arm.com>
10294 S:      Maintained
10295 F:      Documentation/dev-tools/kmemleak.rst
10296 F:      include/linux/kmemleak.h
10297 F:      mm/kmemleak.c
10298 F:      samples/kmemleak/kmemleak-test.c
10299
10300 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10301 M:      Luis Chamberlain <mcgrof@kernel.org>
10302 L:      linux-kernel@vger.kernel.org
10303 S:      Maintained
10304 F:      include/linux/kmod.h
10305 F:      kernel/kmod.c
10306 F:      lib/test_kmod.c
10307 F:      tools/testing/selftests/kmod/
10308
10309 KPROBES
10310 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10311 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10312 M:      "David S. Miller" <davem@davemloft.net>
10313 M:      Masami Hiramatsu <mhiramat@kernel.org>
10314 S:      Maintained
10315 F:      Documentation/trace/kprobes.rst
10316 F:      include/asm-generic/kprobes.h
10317 F:      include/linux/kprobes.h
10318 F:      kernel/kprobes.c
10319
10320 KS0108 LCD CONTROLLER DRIVER
10321 M:      Miguel Ojeda <ojeda@kernel.org>
10322 S:      Maintained
10323 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10324 F:      drivers/auxdisplay/ks0108.c
10325 F:      include/linux/ks0108.h
10326
10327 KTD253 BACKLIGHT DRIVER
10328 M:      Linus Walleij <linus.walleij@linaro.org>
10329 S:      Maintained
10330 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10331 F:      drivers/video/backlight/ktd253-backlight.c
10332
10333 KTEST
10334 M:      Steven Rostedt <rostedt@goodmis.org>
10335 M:      John Hawley <warthog9@eaglescrag.net>
10336 S:      Maintained
10337 F:      tools/testing/ktest
10338
10339 L3MDEV
10340 M:      David Ahern <dsahern@kernel.org>
10341 L:      netdev@vger.kernel.org
10342 S:      Maintained
10343 F:      include/net/l3mdev.h
10344 F:      net/l3mdev
10345
10346 L7 BPF FRAMEWORK
10347 M:      John Fastabend <john.fastabend@gmail.com>
10348 M:      Daniel Borkmann <daniel@iogearbox.net>
10349 M:      Jakub Sitnicki <jakub@cloudflare.com>
10350 M:      Lorenz Bauer <lmb@cloudflare.com>
10351 L:      netdev@vger.kernel.org
10352 L:      bpf@vger.kernel.org
10353 S:      Maintained
10354 F:      include/linux/skmsg.h
10355 F:      net/core/skmsg.c
10356 F:      net/core/sock_map.c
10357 F:      net/ipv4/tcp_bpf.c
10358 F:      net/ipv4/udp_bpf.c
10359
10360 LANDLOCK SECURITY MODULE
10361 M:      Mickaël Salaün <mic@digikod.net>
10362 L:      linux-security-module@vger.kernel.org
10363 S:      Supported
10364 W:      https://landlock.io
10365 T:      git https://github.com/landlock-lsm/linux.git
10366 F:      Documentation/security/landlock.rst
10367 F:      Documentation/userspace-api/landlock.rst
10368 F:      include/uapi/linux/landlock.h
10369 F:      samples/landlock/
10370 F:      security/landlock/
10371 F:      tools/testing/selftests/landlock/
10372 K:      landlock
10373 K:      LANDLOCK
10374
10375 LANTIQ / INTEL Ethernet drivers
10376 M:      Hauke Mehrtens <hauke@hauke-m.de>
10377 L:      netdev@vger.kernel.org
10378 S:      Maintained
10379 F:      drivers/net/dsa/lantiq_gswip.c
10380 F:      drivers/net/dsa/lantiq_pce.h
10381 F:      drivers/net/ethernet/lantiq_xrx200.c
10382 F:      net/dsa/tag_gswip.c
10383
10384 LANTIQ MIPS ARCHITECTURE
10385 M:      John Crispin <john@phrozen.org>
10386 L:      linux-mips@vger.kernel.org
10387 S:      Maintained
10388 F:      arch/mips/lantiq
10389 F:      drivers/soc/lantiq
10390
10391 LASI 53c700 driver for PARISC
10392 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10393 L:      linux-scsi@vger.kernel.org
10394 S:      Maintained
10395 F:      Documentation/scsi/53c700.rst
10396 F:      drivers/scsi/53c700*
10397
10398 LEAKING_ADDRESSES
10399 M:      Tobin C. Harding <me@tobin.cc>
10400 M:      Tycho Andersen <tycho@tycho.pizza>
10401 L:      linux-hardening@vger.kernel.org
10402 S:      Maintained
10403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10404 F:      scripts/leaking_addresses.pl
10405
10406 LED SUBSYSTEM
10407 M:      Pavel Machek <pavel@ucw.cz>
10408 L:      linux-leds@vger.kernel.org
10409 S:      Maintained
10410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10411 F:      Documentation/devicetree/bindings/leds/
10412 F:      drivers/leds/
10413 F:      include/linux/leds.h
10414
10415 LEGACY EEPROM DRIVER
10416 M:      Jean Delvare <jdelvare@suse.com>
10417 S:      Maintained
10418 F:      Documentation/misc-devices/eeprom.rst
10419 F:      drivers/misc/eeprom/eeprom.c
10420
10421 LEGO MINDSTORMS EV3
10422 R:      David Lechner <david@lechnology.com>
10423 S:      Maintained
10424 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10425 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10426 F:      drivers/power/supply/lego_ev3_battery.c
10427
10428 LEGO USB Tower driver
10429 M:      Juergen Stuber <starblue@users.sourceforge.net>
10430 L:      legousb-devel@lists.sourceforge.net
10431 S:      Maintained
10432 W:      http://legousb.sourceforge.net/
10433 F:      drivers/usb/misc/legousbtower.c
10434
10435 LG LAPTOP EXTRAS
10436 M:      Matan Ziv-Av <matan@svgalib.org>
10437 L:      platform-driver-x86@vger.kernel.org
10438 S:      Maintained
10439 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10440 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10441 F:      drivers/platform/x86/lg-laptop.c
10442
10443 LG2160 MEDIA DRIVER
10444 M:      Michael Krufky <mkrufky@linuxtv.org>
10445 L:      linux-media@vger.kernel.org
10446 S:      Maintained
10447 W:      https://linuxtv.org
10448 W:      http://github.com/mkrufky
10449 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10450 T:      git git://linuxtv.org/mkrufky/tuners.git
10451 F:      drivers/media/dvb-frontends/lg2160.*
10452
10453 LGDT3305 MEDIA DRIVER
10454 M:      Michael Krufky <mkrufky@linuxtv.org>
10455 L:      linux-media@vger.kernel.org
10456 S:      Maintained
10457 W:      https://linuxtv.org
10458 W:      http://github.com/mkrufky
10459 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10460 T:      git git://linuxtv.org/mkrufky/tuners.git
10461 F:      drivers/media/dvb-frontends/lgdt3305.*
10462
10463 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10464 M:      Viresh Kumar <vireshk@kernel.org>
10465 L:      linux-ide@vger.kernel.org
10466 S:      Maintained
10467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10468 F:      drivers/ata/pata_arasan_cf.c
10469 F:      include/linux/pata_arasan_cf_data.h
10470
10471 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10472 M:      Linus Walleij <linus.walleij@linaro.org>
10473 L:      linux-ide@vger.kernel.org
10474 S:      Maintained
10475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10476 F:      drivers/ata/pata_ftide010.c
10477 F:      drivers/ata/sata_gemini.c
10478 F:      drivers/ata/sata_gemini.h
10479
10480 LIBATA SATA AHCI PLATFORM devices support
10481 M:      Hans de Goede <hdegoede@redhat.com>
10482 M:      Jens Axboe <axboe@kernel.dk>
10483 L:      linux-ide@vger.kernel.org
10484 S:      Maintained
10485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10486 F:      drivers/ata/ahci_platform.c
10487 F:      drivers/ata/libahci_platform.c
10488 F:      include/linux/ahci_platform.h
10489
10490 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10491 M:      Mikael Pettersson <mikpelinux@gmail.com>
10492 L:      linux-ide@vger.kernel.org
10493 S:      Maintained
10494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10495 F:      drivers/ata/sata_promise.*
10496
10497 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10498 M:      Jens Axboe <axboe@kernel.dk>
10499 L:      linux-ide@vger.kernel.org
10500 S:      Maintained
10501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10502 F:      Documentation/devicetree/bindings/ata/
10503 F:      drivers/ata/
10504 F:      include/linux/ata.h
10505 F:      include/linux/libata.h
10506
10507 LIBLOCKDEP
10508 M:      Sasha Levin <alexander.levin@microsoft.com>
10509 S:      Maintained
10510 F:      tools/lib/lockdep/
10511
10512 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10513 M:      Dan Williams <dan.j.williams@intel.com>
10514 M:      Vishal Verma <vishal.l.verma@intel.com>
10515 M:      Dave Jiang <dave.jiang@intel.com>
10516 L:      nvdimm@lists.linux.dev
10517 S:      Supported
10518 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10519 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10520 F:      drivers/nvdimm/blk.c
10521 F:      drivers/nvdimm/region_devs.c
10522
10523 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10524 M:      Vishal Verma <vishal.l.verma@intel.com>
10525 M:      Dan Williams <dan.j.williams@intel.com>
10526 M:      Dave Jiang <dave.jiang@intel.com>
10527 L:      nvdimm@lists.linux.dev
10528 S:      Supported
10529 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10530 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10531 F:      drivers/nvdimm/btt*
10532
10533 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10534 M:      Dan Williams <dan.j.williams@intel.com>
10535 M:      Vishal Verma <vishal.l.verma@intel.com>
10536 M:      Dave Jiang <dave.jiang@intel.com>
10537 L:      nvdimm@lists.linux.dev
10538 S:      Supported
10539 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10540 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10541 F:      drivers/nvdimm/pmem*
10542
10543 LIBNVDIMM: DEVICETREE BINDINGS
10544 M:      Oliver O'Halloran <oohall@gmail.com>
10545 L:      nvdimm@lists.linux.dev
10546 S:      Supported
10547 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10548 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10549 F:      drivers/nvdimm/of_pmem.c
10550
10551 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10552 M:      Dan Williams <dan.j.williams@intel.com>
10553 M:      Vishal Verma <vishal.l.verma@intel.com>
10554 M:      Dave Jiang <dave.jiang@intel.com>
10555 M:      Ira Weiny <ira.weiny@intel.com>
10556 L:      nvdimm@lists.linux.dev
10557 S:      Supported
10558 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10559 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10561 F:      drivers/acpi/nfit/*
10562 F:      drivers/nvdimm/*
10563 F:      include/linux/libnvdimm.h
10564 F:      include/linux/nd.h
10565 F:      include/uapi/linux/ndctl.h
10566 F:      tools/testing/nvdimm/
10567
10568 LICENSES and SPDX stuff
10569 M:      Thomas Gleixner <tglx@linutronix.de>
10570 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10571 L:      linux-spdx@vger.kernel.org
10572 S:      Maintained
10573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10574 F:      COPYING
10575 F:      Documentation/process/license-rules.rst
10576 F:      LICENSES/
10577 F:      scripts/spdxcheck-test.sh
10578 F:      scripts/spdxcheck.py
10579
10580 LIGHTNVM PLATFORM SUPPORT
10581 M:      Matias Bjorling <mb@lightnvm.io>
10582 L:      linux-block@vger.kernel.org
10583 S:      Maintained
10584 W:      http://github/OpenChannelSSD
10585 F:      drivers/lightnvm/
10586 F:      include/linux/lightnvm.h
10587 F:      include/uapi/linux/lightnvm.h
10588
10589 LINEAR RANGES HELPERS
10590 M:      Mark Brown <broonie@kernel.org>
10591 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10592 F:      lib/linear_ranges.c
10593 F:      lib/test_linear_ranges.c
10594 F:      include/linux/linear_range.h
10595
10596 LINUX FOR POWER MACINTOSH
10597 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10598 L:      linuxppc-dev@lists.ozlabs.org
10599 S:      Odd Fixes
10600 F:      arch/powerpc/platforms/powermac/
10601 F:      drivers/macintosh/
10602
10603 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10604 M:      Michael Ellerman <mpe@ellerman.id.au>
10605 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10606 R:      Paul Mackerras <paulus@samba.org>
10607 L:      linuxppc-dev@lists.ozlabs.org
10608 S:      Supported
10609 W:      https://github.com/linuxppc/wiki/wiki
10610 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10612 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10613 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10614 F:      Documentation/devicetree/bindings/powerpc/
10615 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10616 F:      Documentation/powerpc/
10617 F:      arch/powerpc/
10618 F:      drivers/*/*/*pasemi*
10619 F:      drivers/*/*pasemi*
10620 F:      drivers/char/tpm/tpm_ibmvtpm*
10621 F:      drivers/crypto/nx/
10622 F:      drivers/crypto/vmx/
10623 F:      drivers/i2c/busses/i2c-opal.c
10624 F:      drivers/net/ethernet/ibm/ibmveth.*
10625 F:      drivers/net/ethernet/ibm/ibmvnic.*
10626 F:      drivers/pci/hotplug/pnv_php.c
10627 F:      drivers/pci/hotplug/rpa*
10628 F:      drivers/rtc/rtc-opal.c
10629 F:      drivers/scsi/ibmvscsi/
10630 F:      drivers/tty/hvc/hvc_opal.c
10631 F:      drivers/watchdog/wdrtas.c
10632 F:      tools/testing/selftests/powerpc
10633 N:      /pmac
10634 N:      powermac
10635 N:      powernv
10636 N:      [^a-z0-9]ps3
10637 N:      pseries
10638
10639 LINUX FOR POWERPC EMBEDDED MPC5XXX
10640 M:      Anatolij Gustschin <agust@denx.de>
10641 L:      linuxppc-dev@lists.ozlabs.org
10642 S:      Odd Fixes
10643 F:      arch/powerpc/platforms/512x/
10644 F:      arch/powerpc/platforms/52xx/
10645
10646 LINUX FOR POWERPC EMBEDDED PPC4XX
10647 L:      linuxppc-dev@lists.ozlabs.org
10648 S:      Orphan
10649 F:      arch/powerpc/platforms/40x/
10650 F:      arch/powerpc/platforms/44x/
10651
10652 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10653 M:      Scott Wood <oss@buserror.net>
10654 L:      linuxppc-dev@lists.ozlabs.org
10655 S:      Odd fixes
10656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10657 F:      Documentation/devicetree/bindings/powerpc/fsl/
10658 F:      arch/powerpc/platforms/83xx/
10659 F:      arch/powerpc/platforms/85xx/
10660
10661 LINUX FOR POWERPC EMBEDDED PPC8XX
10662 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10663 L:      linuxppc-dev@lists.ozlabs.org
10664 S:      Maintained
10665 F:      arch/powerpc/platforms/8xx/
10666
10667 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10668 M:      Kees Cook <keescook@chromium.org>
10669 S:      Maintained
10670 F:      drivers/misc/lkdtm/*
10671 F:      tools/testing/selftests/lkdtm/*
10672
10673 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10674 M:      Alan Stern <stern@rowland.harvard.edu>
10675 M:      Andrea Parri <parri.andrea@gmail.com>
10676 M:      Will Deacon <will@kernel.org>
10677 M:      Peter Zijlstra <peterz@infradead.org>
10678 M:      Boqun Feng <boqun.feng@gmail.com>
10679 M:      Nicholas Piggin <npiggin@gmail.com>
10680 M:      David Howells <dhowells@redhat.com>
10681 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10682 M:      Luc Maranget <luc.maranget@inria.fr>
10683 M:      "Paul E. McKenney" <paulmck@kernel.org>
10684 R:      Akira Yokosawa <akiyks@gmail.com>
10685 R:      Daniel Lustig <dlustig@nvidia.com>
10686 R:      Joel Fernandes <joel@joelfernandes.org>
10687 L:      linux-kernel@vger.kernel.org
10688 L:      linux-arch@vger.kernel.org
10689 S:      Supported
10690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10691 F:      Documentation/atomic_bitops.txt
10692 F:      Documentation/atomic_t.txt
10693 F:      Documentation/core-api/refcount-vs-atomic.rst
10694 F:      Documentation/litmus-tests/
10695 F:      Documentation/memory-barriers.txt
10696 F:      tools/memory-model/
10697
10698 LIS3LV02D ACCELEROMETER DRIVER
10699 M:      Eric Piel <eric.piel@tremplin-utc.net>
10700 S:      Maintained
10701 F:      Documentation/misc-devices/lis3lv02d.rst
10702 F:      drivers/misc/lis3lv02d/
10703 F:      drivers/platform/x86/hp_accel.c
10704
10705 LIST KUNIT TEST
10706 M:      David Gow <davidgow@google.com>
10707 L:      linux-kselftest@vger.kernel.org
10708 L:      kunit-dev@googlegroups.com
10709 S:      Maintained
10710 F:      lib/list-test.c
10711
10712 LITEX PLATFORM
10713 M:      Karol Gugala <kgugala@antmicro.com>
10714 M:      Mateusz Holenko <mholenko@antmicro.com>
10715 S:      Maintained
10716 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10717 F:      arch/openrisc/boot/dts/or1klitex.dts
10718 F:      drivers/soc/litex/litex_soc_ctrl.c
10719 F:      drivers/tty/serial/liteuart.c
10720 F:      include/linux/litex.h
10721
10722 LIVE PATCHING
10723 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10724 M:      Jiri Kosina <jikos@kernel.org>
10725 M:      Miroslav Benes <mbenes@suse.cz>
10726 M:      Petr Mladek <pmladek@suse.com>
10727 R:      Joe Lawrence <joe.lawrence@redhat.com>
10728 L:      live-patching@vger.kernel.org
10729 S:      Maintained
10730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10731 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10732 F:      Documentation/livepatch/
10733 F:      arch/powerpc/include/asm/livepatch.h
10734 F:      arch/s390/include/asm/livepatch.h
10735 F:      arch/x86/include/asm/livepatch.h
10736 F:      include/linux/livepatch.h
10737 F:      kernel/livepatch/
10738 F:      lib/livepatch/
10739 F:      samples/livepatch/
10740 F:      tools/testing/selftests/livepatch/
10741
10742 LLC (802.2)
10743 L:      netdev@vger.kernel.org
10744 S:      Odd fixes
10745 F:      include/linux/llc.h
10746 F:      include/net/llc*
10747 F:      include/uapi/linux/llc.h
10748 F:      net/llc/
10749
10750 LM73 HARDWARE MONITOR DRIVER
10751 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10752 L:      linux-hwmon@vger.kernel.org
10753 S:      Maintained
10754 F:      drivers/hwmon/lm73.c
10755
10756 LM78 HARDWARE MONITOR DRIVER
10757 M:      Jean Delvare <jdelvare@suse.com>
10758 L:      linux-hwmon@vger.kernel.org
10759 S:      Maintained
10760 F:      Documentation/hwmon/lm78.rst
10761 F:      drivers/hwmon/lm78.c
10762
10763 LM83 HARDWARE MONITOR DRIVER
10764 M:      Jean Delvare <jdelvare@suse.com>
10765 L:      linux-hwmon@vger.kernel.org
10766 S:      Maintained
10767 F:      Documentation/hwmon/lm83.rst
10768 F:      drivers/hwmon/lm83.c
10769
10770 LM90 HARDWARE MONITOR DRIVER
10771 M:      Jean Delvare <jdelvare@suse.com>
10772 L:      linux-hwmon@vger.kernel.org
10773 S:      Maintained
10774 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10775 F:      Documentation/hwmon/lm90.rst
10776 F:      drivers/hwmon/lm90.c
10777 F:      include/dt-bindings/thermal/lm90.h
10778
10779 LM95234 HARDWARE MONITOR DRIVER
10780 M:      Guenter Roeck <linux@roeck-us.net>
10781 L:      linux-hwmon@vger.kernel.org
10782 S:      Maintained
10783 F:      Documentation/hwmon/lm95234.rst
10784 F:      drivers/hwmon/lm95234.c
10785
10786 LME2510 MEDIA DRIVER
10787 M:      Malcolm Priestley <tvboxspy@gmail.com>
10788 L:      linux-media@vger.kernel.org
10789 S:      Maintained
10790 W:      https://linuxtv.org
10791 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10792 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10793
10794 LOADPIN SECURITY MODULE
10795 M:      Kees Cook <keescook@chromium.org>
10796 S:      Supported
10797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10798 F:      Documentation/admin-guide/LSM/LoadPin.rst
10799 F:      security/loadpin/
10800
10801 LOCKING PRIMITIVES
10802 M:      Peter Zijlstra <peterz@infradead.org>
10803 M:      Ingo Molnar <mingo@redhat.com>
10804 M:      Will Deacon <will@kernel.org>
10805 R:      Waiman Long <longman@redhat.com>
10806 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10807 L:      linux-kernel@vger.kernel.org
10808 S:      Maintained
10809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10810 F:      Documentation/locking/
10811 F:      arch/*/include/asm/spinlock*.h
10812 F:      include/linux/lockdep.h
10813 F:      include/linux/mutex*.h
10814 F:      include/linux/rwlock*.h
10815 F:      include/linux/rwsem*.h
10816 F:      include/linux/seqlock.h
10817 F:      include/linux/spinlock*.h
10818 F:      kernel/locking/
10819 F:      lib/locking*.[ch]
10820 X:      kernel/locking/locktorture.c
10821
10822 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10823 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10824 L:      linux-ntfs-dev@lists.sourceforge.net
10825 S:      Maintained
10826 W:      http://www.linux-ntfs.org/content/view/19/37/
10827 F:      Documentation/admin-guide/ldm.rst
10828 F:      block/partitions/ldm.*
10829
10830 LOGITECH HID GAMING KEYBOARDS
10831 M:      Hans de Goede <hdegoede@redhat.com>
10832 L:      linux-input@vger.kernel.org
10833 S:      Maintained
10834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10835 F:      drivers/hid/hid-lg-g15.c
10836
10837 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10838 M:      Adrien Grassein <adrien.grassein@gmail.com>
10839 S:      Maintained
10840 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10841 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
10842
10843 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10844 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10845 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10846 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10847 L:      MPT-FusionLinux.pdl@broadcom.com
10848 L:      linux-scsi@vger.kernel.org
10849 S:      Supported
10850 W:      http://www.avagotech.com/support/
10851 F:      drivers/message/fusion/
10852 F:      drivers/scsi/mpt3sas/
10853
10854 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10855 M:      Matthew Wilcox <willy@infradead.org>
10856 L:      linux-scsi@vger.kernel.org
10857 S:      Maintained
10858 F:      drivers/scsi/sym53c8xx_2/
10859
10860 LTC1660 DAC DRIVER
10861 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10862 L:      linux-iio@vger.kernel.org
10863 S:      Maintained
10864 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10865 F:      drivers/iio/dac/ltc1660.c
10866
10867 LTC2947 HARDWARE MONITOR DRIVER
10868 M:      Nuno Sá <nuno.sa@analog.com>
10869 L:      linux-hwmon@vger.kernel.org
10870 S:      Supported
10871 W:      http://ez.analog.com/community/linux-device-drivers
10872 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10873 F:      drivers/hwmon/ltc2947-core.c
10874 F:      drivers/hwmon/ltc2947-i2c.c
10875 F:      drivers/hwmon/ltc2947-spi.c
10876 F:      drivers/hwmon/ltc2947.h
10877
10878 LTC2983 IIO TEMPERATURE DRIVER
10879 M:      Nuno Sá <nuno.sa@analog.com>
10880 L:      linux-iio@vger.kernel.org
10881 S:      Supported
10882 W:      http://ez.analog.com/community/linux-device-drivers
10883 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10884 F:      drivers/iio/temperature/ltc2983.c
10885
10886 LTC4261 HARDWARE MONITOR DRIVER
10887 M:      Guenter Roeck <linux@roeck-us.net>
10888 L:      linux-hwmon@vger.kernel.org
10889 S:      Maintained
10890 F:      Documentation/hwmon/ltc4261.rst
10891 F:      drivers/hwmon/ltc4261.c
10892
10893 LTC4306 I2C MULTIPLEXER DRIVER
10894 M:      Michael Hennerich <michael.hennerich@analog.com>
10895 L:      linux-i2c@vger.kernel.org
10896 S:      Supported
10897 W:      http://ez.analog.com/community/linux-device-drivers
10898 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10899 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10900
10901 LTP (Linux Test Project)
10902 M:      Mike Frysinger <vapier@gentoo.org>
10903 M:      Cyril Hrubis <chrubis@suse.cz>
10904 M:      Wanlong Gao <wanlong.gao@gmail.com>
10905 M:      Jan Stancek <jstancek@redhat.com>
10906 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10907 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10908 L:      ltp@lists.linux.it (subscribers-only)
10909 S:      Maintained
10910 W:      http://linux-test-project.github.io/
10911 T:      git git://github.com/linux-test-project/ltp.git
10912
10913 LYNX PCS MODULE
10914 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10915 L:      netdev@vger.kernel.org
10916 S:      Supported
10917 F:      drivers/net/pcs/pcs-lynx.c
10918 F:      include/linux/pcs-lynx.h
10919
10920 M68K ARCHITECTURE
10921 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10922 L:      linux-m68k@lists.linux-m68k.org
10923 S:      Maintained
10924 W:      http://www.linux-m68k.org/
10925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10926 F:      arch/m68k/
10927 F:      drivers/zorro/
10928
10929 M68K ON APPLE MACINTOSH
10930 M:      Joshua Thompson <funaho@jurai.org>
10931 L:      linux-m68k@lists.linux-m68k.org
10932 S:      Maintained
10933 W:      http://www.mac.linux-m68k.org/
10934 F:      arch/m68k/mac/
10935 F:      drivers/macintosh/adb-iop.c
10936 F:      drivers/macintosh/via-macii.c
10937
10938 M68K ON HP9000/300
10939 M:      Philip Blundell <philb@gnu.org>
10940 S:      Maintained
10941 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10942 F:      arch/m68k/hp300/
10943
10944 M88DS3103 MEDIA DRIVER
10945 M:      Antti Palosaari <crope@iki.fi>
10946 L:      linux-media@vger.kernel.org
10947 S:      Maintained
10948 W:      https://linuxtv.org
10949 W:      http://palosaari.fi/linux/
10950 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10951 T:      git git://linuxtv.org/anttip/media_tree.git
10952 F:      drivers/media/dvb-frontends/m88ds3103*
10953
10954 M88RS2000 MEDIA DRIVER
10955 M:      Malcolm Priestley <tvboxspy@gmail.com>
10956 L:      linux-media@vger.kernel.org
10957 S:      Maintained
10958 W:      https://linuxtv.org
10959 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10960 F:      drivers/media/dvb-frontends/m88rs2000*
10961
10962 MA901 MASTERKIT USB FM RADIO DRIVER
10963 M:      Alexey Klimov <klimov.linux@gmail.com>
10964 L:      linux-media@vger.kernel.org
10965 S:      Maintained
10966 T:      git git://linuxtv.org/media_tree.git
10967 F:      drivers/media/radio/radio-ma901.c
10968
10969 MAC80211
10970 M:      Johannes Berg <johannes@sipsolutions.net>
10971 L:      linux-wireless@vger.kernel.org
10972 S:      Maintained
10973 W:      https://wireless.wiki.kernel.org/
10974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10976 F:      Documentation/networking/mac80211-injection.rst
10977 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10978 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10979 F:      include/net/mac80211.h
10980 F:      net/mac80211/
10981
10982 MAILBOX API
10983 M:      Jassi Brar <jassisinghbrar@gmail.com>
10984 L:      linux-kernel@vger.kernel.org
10985 S:      Maintained
10986 F:      drivers/mailbox/
10987 F:      include/linux/mailbox_client.h
10988 F:      include/linux/mailbox_controller.h
10989 F:      include/dt-bindings/mailbox/
10990 F:      Documentation/devicetree/bindings/mailbox/
10991
10992 MAILBOX ARM MHUv2
10993 M:      Viresh Kumar <viresh.kumar@linaro.org>
10994 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
10995 L:      linux-kernel@vger.kernel.org
10996 S:      Maintained
10997 F:      drivers/mailbox/arm_mhuv2.c
10998 F:      include/linux/mailbox/arm_mhuv2_message.h
10999 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11000
11001 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11002 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11003 L:      linux-man@vger.kernel.org
11004 S:      Maintained
11005 W:      http://www.kernel.org/doc/man-pages
11006
11007 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11008 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11009 L:      linux-mips@vger.kernel.org
11010 S:      Maintained
11011 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
11012
11013 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11014 M:      Andrew Lunn <andrew@lunn.ch>
11015 M:      Vivien Didelot <vivien.didelot@gmail.com>
11016 L:      netdev@vger.kernel.org
11017 S:      Maintained
11018 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11019 F:      Documentation/networking/devlink/mv88e6xxx.rst
11020 F:      drivers/net/dsa/mv88e6xxx/
11021 F:      include/linux/platform_data/mv88e6xxx.h
11022
11023 MARVELL ARMADA 3700 PHY DRIVERS
11024 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11025 S:      Maintained
11026 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11027 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11028 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11029 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11030
11031 MARVELL ARMADA DRM SUPPORT
11032 M:      Russell King <linux@armlinux.org.uk>
11033 S:      Maintained
11034 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11035 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11036 F:      Documentation/devicetree/bindings/display/armada/
11037 F:      drivers/gpu/drm/armada/
11038 F:      include/uapi/drm/armada_drm.h
11039
11040 MARVELL CRYPTO DRIVER
11041 M:      Boris Brezillon <bbrezillon@kernel.org>
11042 M:      Arnaud Ebalard <arno@natisbad.org>
11043 M:      Srujana Challa <schalla@marvell.com>
11044 L:      linux-crypto@vger.kernel.org
11045 S:      Maintained
11046 F:      drivers/crypto/marvell/
11047 F:      include/linux/soc/marvell/octeontx2/
11048
11049 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11050 M:      Mirko Lindner <mlindner@marvell.com>
11051 M:      Stephen Hemminger <stephen@networkplumber.org>
11052 L:      netdev@vger.kernel.org
11053 S:      Maintained
11054 F:      drivers/net/ethernet/marvell/sk*
11055
11056 MARVELL LIBERTAS WIRELESS DRIVER
11057 L:      libertas-dev@lists.infradead.org
11058 S:      Orphan
11059 F:      drivers/net/wireless/marvell/libertas/
11060
11061 MARVELL MACCHIATOBIN SUPPORT
11062 M:      Russell King <linux@armlinux.org.uk>
11063 L:      linux-arm-kernel@lists.infradead.org
11064 S:      Maintained
11065 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11066
11067 MARVELL MV643XX ETHERNET DRIVER
11068 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11069 L:      netdev@vger.kernel.org
11070 S:      Maintained
11071 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11072 F:      include/linux/mv643xx.h
11073
11074 MARVELL MV88X3310 PHY DRIVER
11075 M:      Russell King <linux@armlinux.org.uk>
11076 M:      Marek Behún <kabel@kernel.org>
11077 L:      netdev@vger.kernel.org
11078 S:      Maintained
11079 F:      drivers/net/phy/marvell10g.c
11080
11081 MARVELL MVEBU THERMAL DRIVER
11082 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11083 S:      Maintained
11084 F:      drivers/thermal/armada_thermal.c
11085
11086 MARVELL MVNETA ETHERNET DRIVER
11087 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11088 L:      netdev@vger.kernel.org
11089 S:      Maintained
11090 F:      drivers/net/ethernet/marvell/mvneta.*
11091
11092 MARVELL MVPP2 ETHERNET DRIVER
11093 M:      Marcin Wojtas <mw@semihalf.com>
11094 M:      Russell King <linux@armlinux.org.uk>
11095 L:      netdev@vger.kernel.org
11096 S:      Maintained
11097 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11098 F:      drivers/net/ethernet/marvell/mvpp2/
11099
11100 MARVELL MWIFIEX WIRELESS DRIVER
11101 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11102 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11103 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11104 M:      Xinming Hu <huxinming820@gmail.com>
11105 L:      linux-wireless@vger.kernel.org
11106 S:      Maintained
11107 F:      drivers/net/wireless/marvell/mwifiex/
11108
11109 MARVELL MWL8K WIRELESS DRIVER
11110 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11111 L:      linux-wireless@vger.kernel.org
11112 S:      Odd Fixes
11113 F:      drivers/net/wireless/marvell/mwl8k.c
11114
11115 MARVELL NAND CONTROLLER DRIVER
11116 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11117 L:      linux-mtd@lists.infradead.org
11118 S:      Maintained
11119 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11120 F:      drivers/mtd/nand/raw/marvell_nand.c
11121
11122 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11123 M:      Sunil Goutham <sgoutham@marvell.com>
11124 M:      Geetha sowjanya <gakula@marvell.com>
11125 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11126 M:      hariprasad <hkelam@marvell.com>
11127 L:      netdev@vger.kernel.org
11128 S:      Supported
11129 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11130 F:      include/linux/soc/marvell/octeontx2/
11131
11132 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11133 M:      Sunil Goutham <sgoutham@marvell.com>
11134 M:      Linu Cherian <lcherian@marvell.com>
11135 M:      Geetha sowjanya <gakula@marvell.com>
11136 M:      Jerin Jacob <jerinj@marvell.com>
11137 M:      hariprasad <hkelam@marvell.com>
11138 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11139 L:      netdev@vger.kernel.org
11140 S:      Supported
11141 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11142 F:      drivers/net/ethernet/marvell/octeontx2/af/
11143
11144 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11145 M:      Vadym Kochan <vkochan@marvell.com>
11146 M:      Taras Chornyi <tchornyi@marvell.com>
11147 S:      Supported
11148 W:      https://github.com/Marvell-switching/switchdev-prestera
11149 F:      drivers/net/ethernet/marvell/prestera/
11150
11151 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11152 M:      Nicolas Pitre <nico@fluxnic.net>
11153 S:      Odd Fixes
11154 F:      drivers/mmc/host/mvsdio.*
11155
11156 MARVELL USB MDIO CONTROLLER DRIVER
11157 M:      Tobias Waldekranz <tobias@waldekranz.com>
11158 L:      netdev@vger.kernel.org
11159 S:      Maintained
11160 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11161 F:      drivers/net/mdio/mdio-mvusb.c
11162
11163 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11164 M:      Hu Ziji <huziji@marvell.com>
11165 L:      linux-mmc@vger.kernel.org
11166 S:      Supported
11167 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11168 F:      drivers/mmc/host/sdhci-xenon*
11169
11170 MATROX FRAMEBUFFER DRIVER
11171 L:      linux-fbdev@vger.kernel.org
11172 S:      Orphan
11173 F:      drivers/video/fbdev/matrox/matroxfb_*
11174 F:      include/uapi/linux/matroxfb.h
11175
11176 MAX15301 DRIVER
11177 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11178 L:      linux-hwmon@vger.kernel.org
11179 S:      Maintained
11180 F:      Documentation/hwmon/max15301.rst
11181 F:      drivers/hwmon/pmbus/max15301.c
11182
11183 MAX16065 HARDWARE MONITOR DRIVER
11184 M:      Guenter Roeck <linux@roeck-us.net>
11185 L:      linux-hwmon@vger.kernel.org
11186 S:      Maintained
11187 F:      Documentation/hwmon/max16065.rst
11188 F:      drivers/hwmon/max16065.c
11189
11190 MAX2175 SDR TUNER DRIVER
11191 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11192 L:      linux-media@vger.kernel.org
11193 S:      Maintained
11194 T:      git git://linuxtv.org/media_tree.git
11195 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11196 F:      Documentation/userspace-api/media/drivers/max2175.rst
11197 F:      drivers/media/i2c/max2175*
11198 F:      include/uapi/linux/max2175.h
11199
11200 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11201 L:      linux-hwmon@vger.kernel.org
11202 S:      Orphan
11203 F:      Documentation/hwmon/max6650.rst
11204 F:      drivers/hwmon/max6650.c
11205
11206 MAX6697 HARDWARE MONITOR DRIVER
11207 M:      Guenter Roeck <linux@roeck-us.net>
11208 L:      linux-hwmon@vger.kernel.org
11209 S:      Maintained
11210 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11211 F:      Documentation/hwmon/max6697.rst
11212 F:      drivers/hwmon/max6697.c
11213 F:      include/linux/platform_data/max6697.h
11214
11215 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11216 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11217 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11218 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11219 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11220 L:      linux-media@vger.kernel.org
11221 S:      Maintained
11222 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11223 F:      drivers/media/i2c/max9286.c
11224
11225 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11226 M:      Peter Rosin <peda@axentia.se>
11227 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11228 S:      Maintained
11229 F:      Documentation/devicetree/bindings/sound/max9860.txt
11230 F:      sound/soc/codecs/max9860.*
11231
11232 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11233 M:      Andreas Klinger <ak@it-klinger.de>
11234 L:      linux-iio@vger.kernel.org
11235 S:      Maintained
11236 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11237 F:      drivers/iio/proximity/mb1232.c
11238
11239 MAXIM MAX77650 PMIC MFD DRIVER
11240 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
11241 L:      linux-kernel@vger.kernel.org
11242 S:      Maintained
11243 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11244 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11245 F:      drivers/gpio/gpio-max77650.c
11246 F:      drivers/input/misc/max77650-onkey.c
11247 F:      drivers/leds/leds-max77650.c
11248 F:      drivers/mfd/max77650.c
11249 F:      drivers/power/supply/max77650-charger.c
11250 F:      drivers/regulator/max77650-regulator.c
11251 F:      include/linux/mfd/max77650.h
11252
11253 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11254 M:      Javier Martinez Canillas <javier@dowhile0.org>
11255 L:      linux-kernel@vger.kernel.org
11256 S:      Supported
11257 F:      Documentation/devicetree/bindings/*/*max77802.txt
11258 F:      drivers/regulator/max77802-regulator.c
11259 F:      include/dt-bindings/*/*max77802.h
11260
11261 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11262 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11263 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11264 L:      linux-pm@vger.kernel.org
11265 S:      Supported
11266 F:      drivers/power/supply/max14577_charger.c
11267 F:      drivers/power/supply/max77693_charger.c
11268
11269 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11270 M:      Chanwoo Choi <cw00.choi@samsung.com>
11271 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11272 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11273 L:      linux-kernel@vger.kernel.org
11274 S:      Supported
11275 F:      Documentation/devicetree/bindings/*/max77686.txt
11276 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11277 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11278 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11279 F:      drivers/*/max14577*.c
11280 F:      drivers/*/max77686*.c
11281 F:      drivers/*/max77693*.c
11282 F:      drivers/clk/clk-max77686.c
11283 F:      drivers/extcon/extcon-max14577.c
11284 F:      drivers/extcon/extcon-max77693.c
11285 F:      drivers/rtc/rtc-max77686.c
11286 F:      include/linux/mfd/max14577*.h
11287 F:      include/linux/mfd/max77686*.h
11288 F:      include/linux/mfd/max77693*.h
11289
11290 MAXIRADIO FM RADIO RECEIVER DRIVER
11291 M:      Hans Verkuil <hverkuil@xs4all.nl>
11292 L:      linux-media@vger.kernel.org
11293 S:      Maintained
11294 W:      https://linuxtv.org
11295 T:      git git://linuxtv.org/media_tree.git
11296 F:      drivers/media/radio/radio-maxiradio*
11297
11298 MCAN MMIO DEVICE DRIVER
11299 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11300 L:      linux-can@vger.kernel.org
11301 S:      Maintained
11302 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11303 F:      drivers/net/can/m_can/m_can.c
11304 F:      drivers/net/can/m_can/m_can.h
11305 F:      drivers/net/can/m_can/m_can_platform.c
11306
11307 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11308 M:      Rishi Gupta <gupt21@gmail.com>
11309 L:      linux-i2c@vger.kernel.org
11310 L:      linux-input@vger.kernel.org
11311 S:      Maintained
11312 F:      drivers/hid/hid-mcp2221.c
11313
11314 MCP251XFD SPI-CAN NETWORK DRIVER
11315 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11316 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11317 R:      Thomas Kopp <thomas.kopp@microchip.com>
11318 L:      linux-can@vger.kernel.org
11319 S:      Maintained
11320 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11321 F:      drivers/net/can/spi/mcp251xfd/
11322
11323 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11324 M:      Peter Rosin <peda@axentia.se>
11325 L:      linux-iio@vger.kernel.org
11326 S:      Maintained
11327 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11328 F:      drivers/iio/potentiometer/mcp4018.c
11329 F:      drivers/iio/potentiometer/mcp4531.c
11330
11331 MCR20A IEEE-802.15.4 RADIO DRIVER
11332 M:      Xue Liu <liuxuenetmail@gmail.com>
11333 L:      linux-wpan@vger.kernel.org
11334 S:      Maintained
11335 W:      https://github.com/xueliu/mcr20a-linux
11336 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11337 F:      drivers/net/ieee802154/mcr20a.c
11338 F:      drivers/net/ieee802154/mcr20a.h
11339
11340 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11341 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11342 L:      linux-iio@vger.kernel.org
11343 S:      Maintained
11344 F:      drivers/iio/dac/cio-dac.c
11345
11346 MEDIA CONTROLLER FRAMEWORK
11347 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11348 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11349 L:      linux-media@vger.kernel.org
11350 S:      Supported
11351 W:      https://www.linuxtv.org
11352 T:      git git://linuxtv.org/media_tree.git
11353 F:      drivers/media/mc/
11354 F:      include/media/media-*.h
11355 F:      include/uapi/linux/media.h
11356
11357 MEDIA DRIVER FOR FREESCALE IMX PXP
11358 M:      Philipp Zabel <p.zabel@pengutronix.de>
11359 L:      linux-media@vger.kernel.org
11360 S:      Maintained
11361 T:      git git://linuxtv.org/media_tree.git
11362 F:      drivers/media/platform/imx-pxp.[ch]
11363
11364 MEDIA DRIVERS FOR ASCOT2E
11365 M:      Sergey Kozlov <serjk@netup.ru>
11366 M:      Abylay Ospan <aospan@netup.ru>
11367 L:      linux-media@vger.kernel.org
11368 S:      Supported
11369 W:      https://linuxtv.org
11370 W:      http://netup.tv/
11371 T:      git git://linuxtv.org/media_tree.git
11372 F:      drivers/media/dvb-frontends/ascot2e*
11373
11374 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11375 M:      Jasmin Jessich <jasmin@anw.at>
11376 L:      linux-media@vger.kernel.org
11377 S:      Maintained
11378 W:      https://linuxtv.org
11379 T:      git git://linuxtv.org/media_tree.git
11380 F:      drivers/media/dvb-frontends/cxd2099*
11381
11382 MEDIA DRIVERS FOR CXD2841ER
11383 M:      Sergey Kozlov <serjk@netup.ru>
11384 M:      Abylay Ospan <aospan@netup.ru>
11385 L:      linux-media@vger.kernel.org
11386 S:      Supported
11387 W:      https://linuxtv.org
11388 W:      http://netup.tv/
11389 T:      git git://linuxtv.org/media_tree.git
11390 F:      drivers/media/dvb-frontends/cxd2841er*
11391
11392 MEDIA DRIVERS FOR CXD2880
11393 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11394 L:      linux-media@vger.kernel.org
11395 S:      Supported
11396 W:      http://linuxtv.org/
11397 T:      git git://linuxtv.org/media_tree.git
11398 F:      drivers/media/dvb-frontends/cxd2880/*
11399 F:      drivers/media/spi/cxd2880*
11400
11401 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11402 L:      linux-media@vger.kernel.org
11403 S:      Orphan
11404 W:      https://linuxtv.org
11405 T:      git git://linuxtv.org/media_tree.git
11406 F:      drivers/media/pci/ddbridge/*
11407
11408 MEDIA DRIVERS FOR FREESCALE IMX
11409 M:      Steve Longerbeam <slongerbeam@gmail.com>
11410 M:      Philipp Zabel <p.zabel@pengutronix.de>
11411 L:      linux-media@vger.kernel.org
11412 S:      Maintained
11413 T:      git git://linuxtv.org/media_tree.git
11414 F:      Documentation/admin-guide/media/imx.rst
11415 F:      Documentation/devicetree/bindings/media/imx.txt
11416 F:      drivers/staging/media/imx/
11417 F:      include/linux/imx-media.h
11418 F:      include/media/imx.h
11419
11420 MEDIA DRIVERS FOR FREESCALE IMX7
11421 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11422 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11423 L:      linux-media@vger.kernel.org
11424 S:      Maintained
11425 T:      git git://linuxtv.org/media_tree.git
11426 F:      Documentation/admin-guide/media/imx7.rst
11427 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11428 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11429 F:      drivers/staging/media/imx/imx7-media-csi.c
11430 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11431
11432 MEDIA DRIVERS FOR HELENE
11433 M:      Abylay Ospan <aospan@netup.ru>
11434 L:      linux-media@vger.kernel.org
11435 S:      Supported
11436 W:      https://linuxtv.org
11437 W:      http://netup.tv/
11438 T:      git git://linuxtv.org/media_tree.git
11439 F:      drivers/media/dvb-frontends/helene*
11440
11441 MEDIA DRIVERS FOR HORUS3A
11442 M:      Sergey Kozlov <serjk@netup.ru>
11443 M:      Abylay Ospan <aospan@netup.ru>
11444 L:      linux-media@vger.kernel.org
11445 S:      Supported
11446 W:      https://linuxtv.org
11447 W:      http://netup.tv/
11448 T:      git git://linuxtv.org/media_tree.git
11449 F:      drivers/media/dvb-frontends/horus3a*
11450
11451 MEDIA DRIVERS FOR LNBH25
11452 M:      Sergey Kozlov <serjk@netup.ru>
11453 M:      Abylay Ospan <aospan@netup.ru>
11454 L:      linux-media@vger.kernel.org
11455 S:      Supported
11456 W:      https://linuxtv.org
11457 W:      http://netup.tv/
11458 T:      git git://linuxtv.org/media_tree.git
11459 F:      drivers/media/dvb-frontends/lnbh25*
11460
11461 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11462 L:      linux-media@vger.kernel.org
11463 S:      Orphan
11464 W:      https://linuxtv.org
11465 T:      git git://linuxtv.org/media_tree.git
11466 F:      drivers/media/dvb-frontends/mxl5xx*
11467
11468 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11469 M:      Sergey Kozlov <serjk@netup.ru>
11470 M:      Abylay Ospan <aospan@netup.ru>
11471 L:      linux-media@vger.kernel.org
11472 S:      Supported
11473 W:      https://linuxtv.org
11474 W:      http://netup.tv/
11475 T:      git git://linuxtv.org/media_tree.git
11476 F:      drivers/media/pci/netup_unidvb/*
11477
11478 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11479 M:      Dmitry Osipenko <digetx@gmail.com>
11480 L:      linux-media@vger.kernel.org
11481 L:      linux-tegra@vger.kernel.org
11482 S:      Maintained
11483 T:      git git://linuxtv.org/media_tree.git
11484 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11485 F:      drivers/staging/media/tegra-vde/
11486
11487 MEDIA DRIVERS FOR RENESAS - CEU
11488 M:      Jacopo Mondi <jacopo@jmondi.org>
11489 L:      linux-media@vger.kernel.org
11490 L:      linux-renesas-soc@vger.kernel.org
11491 S:      Supported
11492 T:      git git://linuxtv.org/media_tree.git
11493 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11494 F:      drivers/media/platform/renesas-ceu.c
11495 F:      include/media/drv-intf/renesas-ceu.h
11496
11497 MEDIA DRIVERS FOR RENESAS - DRIF
11498 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11499 L:      linux-media@vger.kernel.org
11500 L:      linux-renesas-soc@vger.kernel.org
11501 S:      Supported
11502 T:      git git://linuxtv.org/media_tree.git
11503 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11504 F:      drivers/media/platform/rcar_drif.c
11505
11506 MEDIA DRIVERS FOR RENESAS - FCP
11507 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11508 L:      linux-media@vger.kernel.org
11509 L:      linux-renesas-soc@vger.kernel.org
11510 S:      Supported
11511 T:      git git://linuxtv.org/media_tree.git
11512 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11513 F:      drivers/media/platform/rcar-fcp.c
11514 F:      include/media/rcar-fcp.h
11515
11516 MEDIA DRIVERS FOR RENESAS - FDP1
11517 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11518 L:      linux-media@vger.kernel.org
11519 L:      linux-renesas-soc@vger.kernel.org
11520 S:      Supported
11521 T:      git git://linuxtv.org/media_tree.git
11522 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11523 F:      drivers/media/platform/rcar_fdp1.c
11524
11525 MEDIA DRIVERS FOR RENESAS - VIN
11526 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11527 L:      linux-media@vger.kernel.org
11528 L:      linux-renesas-soc@vger.kernel.org
11529 S:      Supported
11530 T:      git git://linuxtv.org/media_tree.git
11531 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11532 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11533 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11534 F:      drivers/media/platform/rcar-vin/
11535
11536 MEDIA DRIVERS FOR RENESAS - VSP1
11537 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11538 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11539 L:      linux-media@vger.kernel.org
11540 L:      linux-renesas-soc@vger.kernel.org
11541 S:      Supported
11542 T:      git git://linuxtv.org/media_tree.git
11543 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11544 F:      drivers/media/platform/vsp1/
11545
11546 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11547 L:      linux-media@vger.kernel.org
11548 S:      Orphan
11549 W:      https://linuxtv.org
11550 T:      git git://linuxtv.org/media_tree.git
11551 F:      drivers/media/dvb-frontends/stv0910*
11552
11553 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11554 L:      linux-media@vger.kernel.org
11555 S:      Orphan
11556 W:      https://linuxtv.org
11557 T:      git git://linuxtv.org/media_tree.git
11558 F:      drivers/media/dvb-frontends/stv6111*
11559
11560 MEDIA DRIVERS FOR STM32 - DCMI
11561 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11562 L:      linux-media@vger.kernel.org
11563 S:      Supported
11564 T:      git git://linuxtv.org/media_tree.git
11565 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11566 F:      drivers/media/platform/stm32/stm32-dcmi.c
11567
11568 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11569 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11570 L:      linux-media@vger.kernel.org
11571 S:      Maintained
11572 W:      https://linuxtv.org
11573 Q:      http://patchwork.kernel.org/project/linux-media/list/
11574 T:      git git://linuxtv.org/media_tree.git
11575 F:      Documentation/admin-guide/media/
11576 F:      Documentation/devicetree/bindings/media/
11577 F:      Documentation/driver-api/media/
11578 F:      Documentation/userspace-api/media/
11579 F:      drivers/media/
11580 F:      drivers/staging/media/
11581 F:      include/linux/platform_data/media/
11582 F:      include/media/
11583 F:      include/uapi/linux/dvb/
11584 F:      include/uapi/linux/ivtv*
11585 F:      include/uapi/linux/media.h
11586 F:      include/uapi/linux/meye.h
11587 F:      include/uapi/linux/uvcvideo.h
11588 F:      include/uapi/linux/v4l2-*
11589 F:      include/uapi/linux/videodev2.h
11590
11591 MEDIATEK BLUETOOTH DRIVER
11592 M:      Sean Wang <sean.wang@mediatek.com>
11593 L:      linux-bluetooth@vger.kernel.org
11594 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11595 S:      Maintained
11596 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11597 F:      drivers/bluetooth/btmtkuart.c
11598
11599 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11600 M:      Sean Wang <sean.wang@mediatek.com>
11601 L:      linux-pm@vger.kernel.org
11602 S:      Maintained
11603 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11604 F:      drivers/power/reset/mt6323-poweroff.c
11605
11606 MEDIATEK CIR DRIVER
11607 M:      Sean Wang <sean.wang@mediatek.com>
11608 S:      Maintained
11609 F:      drivers/media/rc/mtk-cir.c
11610
11611 MEDIATEK DMA DRIVER
11612 M:      Sean Wang <sean.wang@mediatek.com>
11613 L:      dmaengine@vger.kernel.org
11614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11615 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11616 S:      Maintained
11617 F:      Documentation/devicetree/bindings/dma/mtk-*
11618 F:      drivers/dma/mediatek/
11619
11620 MEDIATEK ETHERNET DRIVER
11621 M:      Felix Fietkau <nbd@nbd.name>
11622 M:      John Crispin <john@phrozen.org>
11623 M:      Sean Wang <sean.wang@mediatek.com>
11624 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11625 L:      netdev@vger.kernel.org
11626 S:      Maintained
11627 F:      drivers/net/ethernet/mediatek/
11628
11629 MEDIATEK I2C CONTROLLER DRIVER
11630 M:      Qii Wang <qii.wang@mediatek.com>
11631 L:      linux-i2c@vger.kernel.org
11632 S:      Maintained
11633 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11634 F:      drivers/i2c/busses/i2c-mt65xx.c
11635
11636 MEDIATEK IOMMU DRIVER
11637 M:      Yong Wu <yong.wu@mediatek.com>
11638 L:      iommu@lists.linux-foundation.org
11639 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11640 S:      Supported
11641 F:      Documentation/devicetree/bindings/iommu/mediatek*
11642 F:      drivers/iommu/mtk_iommu*
11643 F:      include/dt-bindings/memory/mt*-port.h
11644
11645 MEDIATEK JPEG DRIVER
11646 M:      Rick Chang <rick.chang@mediatek.com>
11647 M:      Bin Liu <bin.liu@mediatek.com>
11648 S:      Supported
11649 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11650 F:      drivers/media/platform/mtk-jpeg/
11651
11652 MEDIATEK MDP DRIVER
11653 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11654 M:      Houlong Wei <houlong.wei@mediatek.com>
11655 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11656 S:      Supported
11657 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11658 F:      drivers/media/platform/mtk-mdp/
11659 F:      drivers/media/platform/mtk-vpu/
11660
11661 MEDIATEK MEDIA DRIVER
11662 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11663 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11664 S:      Supported
11665 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11666 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11667 F:      drivers/media/platform/mtk-vcodec/
11668 F:      drivers/media/platform/mtk-vpu/
11669
11670 MEDIATEK MMC/SD/SDIO DRIVER
11671 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11672 S:      Maintained
11673 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11674 F:      drivers/mmc/host/mtk-sd.c
11675
11676 MEDIATEK MT76 WIRELESS LAN DRIVER
11677 M:      Felix Fietkau <nbd@nbd.name>
11678 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11679 R:      Ryder Lee <ryder.lee@mediatek.com>
11680 L:      linux-wireless@vger.kernel.org
11681 S:      Maintained
11682 F:      drivers/net/wireless/mediatek/mt76/
11683
11684 MEDIATEK MT7601U WIRELESS LAN DRIVER
11685 M:      Jakub Kicinski <kubakici@wp.pl>
11686 L:      linux-wireless@vger.kernel.org
11687 S:      Maintained
11688 F:      drivers/net/wireless/mediatek/mt7601u/
11689
11690 MEDIATEK MT7621 CLOCK DRIVER
11691 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11692 S:      Maintained
11693 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11694 F:      drivers/clk/ralink/clk-mt7621.c
11695
11696 MEDIATEK MT7621/28/88 I2C DRIVER
11697 M:      Stefan Roese <sr@denx.de>
11698 L:      linux-i2c@vger.kernel.org
11699 S:      Maintained
11700 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11701 F:      drivers/i2c/busses/i2c-mt7621.c
11702
11703 MEDIATEK MT7621 PHY PCI DRIVER
11704 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11705 S:      Maintained
11706 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11707 F:      drivers/phy/ralink/phy-mt7621-pci.c
11708
11709 MEDIATEK NAND CONTROLLER DRIVER
11710 L:      linux-mtd@lists.infradead.org
11711 S:      Orphan
11712 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11713 F:      drivers/mtd/nand/raw/mtk_*
11714
11715 MEDIATEK PMIC LED DRIVER
11716 M:      Sean Wang <sean.wang@mediatek.com>
11717 S:      Maintained
11718 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11719 F:      drivers/leds/leds-mt6323.c
11720
11721 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11722 M:      Sean Wang <sean.wang@mediatek.com>
11723 S:      Maintained
11724 F:      drivers/char/hw_random/mtk-rng.c
11725
11726 MEDIATEK SWITCH DRIVER
11727 M:      Sean Wang <sean.wang@mediatek.com>
11728 M:      Landen Chao <Landen.Chao@mediatek.com>
11729 L:      netdev@vger.kernel.org
11730 S:      Maintained
11731 F:      drivers/net/dsa/mt7530.*
11732 F:      net/dsa/tag_mtk.c
11733
11734 MEDIATEK USB3 DRD IP DRIVER
11735 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11736 L:      linux-usb@vger.kernel.org
11737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11738 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11739 S:      Maintained
11740 F:      Documentation/devicetree/bindings/usb/mediatek,*
11741 F:      drivers/usb/host/xhci-mtk*
11742 F:      drivers/usb/mtu3/
11743
11744 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11745 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11746 M:      Martin Donnelly <martin.donnelly@ge.com>
11747 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11748 S:      Maintained
11749 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11750 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11751
11752 MEGARAID SCSI/SAS DRIVERS
11753 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11754 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11755 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11756 L:      megaraidlinux.pdl@broadcom.com
11757 L:      linux-scsi@vger.kernel.org
11758 S:      Maintained
11759 W:      http://www.avagotech.com/support/
11760 F:      Documentation/scsi/megaraid.rst
11761 F:      drivers/scsi/megaraid.*
11762 F:      drivers/scsi/megaraid/
11763
11764 MELEXIS MLX90614 DRIVER
11765 M:      Crt Mori <cmo@melexis.com>
11766 L:      linux-iio@vger.kernel.org
11767 S:      Supported
11768 W:      http://www.melexis.com
11769 F:      drivers/iio/temperature/mlx90614.c
11770
11771 MELEXIS MLX90632 DRIVER
11772 M:      Crt Mori <cmo@melexis.com>
11773 L:      linux-iio@vger.kernel.org
11774 S:      Supported
11775 W:      http://www.melexis.com
11776 F:      drivers/iio/temperature/mlx90632.c
11777
11778 MELFAS MIP4 TOUCHSCREEN DRIVER
11779 M:      Sangwon Jee <jeesw@melfas.com>
11780 S:      Supported
11781 W:      http://www.melfas.com
11782 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11783 F:      drivers/input/touchscreen/melfas_mip4.c
11784
11785 MELLANOX BLUEFIELD I2C DRIVER
11786 M:      Khalil Blaiech <kblaiech@nvidia.com>
11787 L:      linux-i2c@vger.kernel.org
11788 S:      Supported
11789 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11790 F:      drivers/i2c/busses/i2c-mlxbf.c
11791
11792 MELLANOX ETHERNET DRIVER (mlx4_en)
11793 M:      Tariq Toukan <tariqt@nvidia.com>
11794 L:      netdev@vger.kernel.org
11795 S:      Supported
11796 W:      http://www.mellanox.com
11797 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11798 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11799
11800 MELLANOX ETHERNET DRIVER (mlx5e)
11801 M:      Saeed Mahameed <saeedm@nvidia.com>
11802 L:      netdev@vger.kernel.org
11803 S:      Supported
11804 W:      http://www.mellanox.com
11805 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11806 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11807
11808 MELLANOX ETHERNET INNOVA DRIVERS
11809 R:      Boris Pismenny <borisp@nvidia.com>
11810 L:      netdev@vger.kernel.org
11811 S:      Supported
11812 W:      http://www.mellanox.com
11813 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11814 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11815 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11816 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11817 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11818
11819 MELLANOX ETHERNET SWITCH DRIVERS
11820 M:      Jiri Pirko <jiri@nvidia.com>
11821 M:      Ido Schimmel <idosch@nvidia.com>
11822 L:      netdev@vger.kernel.org
11823 S:      Supported
11824 W:      http://www.mellanox.com
11825 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11826 F:      drivers/net/ethernet/mellanox/mlxsw/
11827 F:      tools/testing/selftests/drivers/net/mlxsw/
11828
11829 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11830 M:      mlxsw@nvidia.com
11831 L:      netdev@vger.kernel.org
11832 S:      Supported
11833 W:      http://www.mellanox.com
11834 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11835 F:      drivers/net/ethernet/mellanox/mlxfw/
11836
11837 MELLANOX HARDWARE PLATFORM SUPPORT
11838 M:      Hans de Goede <hdegoede@redhat.com>
11839 M:      Mark Gross <mgross@linux.intel.com>
11840 M:      Vadim Pasternak <vadimp@nvidia.com>
11841 L:      platform-driver-x86@vger.kernel.org
11842 S:      Supported
11843 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11844 F:      drivers/platform/mellanox/
11845 F:      include/linux/platform_data/mlxreg.h
11846
11847 MELLANOX MLX4 core VPI driver
11848 M:      Tariq Toukan <tariqt@nvidia.com>
11849 L:      netdev@vger.kernel.org
11850 L:      linux-rdma@vger.kernel.org
11851 S:      Supported
11852 W:      http://www.mellanox.com
11853 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11854 F:      drivers/net/ethernet/mellanox/mlx4/
11855 F:      include/linux/mlx4/
11856
11857 MELLANOX MLX4 IB driver
11858 M:      Yishai Hadas <yishaih@nvidia.com>
11859 L:      linux-rdma@vger.kernel.org
11860 S:      Supported
11861 W:      http://www.mellanox.com
11862 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11863 F:      drivers/infiniband/hw/mlx4/
11864 F:      include/linux/mlx4/
11865 F:      include/uapi/rdma/mlx4-abi.h
11866
11867 MELLANOX MLX5 core VPI driver
11868 M:      Saeed Mahameed <saeedm@nvidia.com>
11869 M:      Leon Romanovsky <leonro@nvidia.com>
11870 L:      netdev@vger.kernel.org
11871 L:      linux-rdma@vger.kernel.org
11872 S:      Supported
11873 W:      http://www.mellanox.com
11874 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11875 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11876 F:      drivers/net/ethernet/mellanox/mlx5/core/
11877 F:      include/linux/mlx5/
11878
11879 MELLANOX MLX5 IB driver
11880 M:      Leon Romanovsky <leonro@nvidia.com>
11881 L:      linux-rdma@vger.kernel.org
11882 S:      Supported
11883 W:      http://www.mellanox.com
11884 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11885 F:      drivers/infiniband/hw/mlx5/
11886 F:      include/linux/mlx5/
11887 F:      include/uapi/rdma/mlx5-abi.h
11888
11889 MELLANOX MLXCPLD I2C AND MUX DRIVER
11890 M:      Vadim Pasternak <vadimp@nvidia.com>
11891 M:      Michael Shych <michaelsh@nvidia.com>
11892 L:      linux-i2c@vger.kernel.org
11893 S:      Supported
11894 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11895 F:      drivers/i2c/busses/i2c-mlxcpld.c
11896 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11897
11898 MELLANOX MLXCPLD LED DRIVER
11899 M:      Vadim Pasternak <vadimp@nvidia.com>
11900 L:      linux-leds@vger.kernel.org
11901 S:      Supported
11902 F:      Documentation/leds/leds-mlxcpld.rst
11903 F:      drivers/leds/leds-mlxcpld.c
11904 F:      drivers/leds/leds-mlxreg.c
11905
11906 MELLANOX PLATFORM DRIVER
11907 M:      Vadim Pasternak <vadimp@nvidia.com>
11908 L:      platform-driver-x86@vger.kernel.org
11909 S:      Supported
11910 F:      drivers/platform/x86/mlx-platform.c
11911
11912 MEMBARRIER SUPPORT
11913 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11914 M:      "Paul E. McKenney" <paulmck@kernel.org>
11915 L:      linux-kernel@vger.kernel.org
11916 S:      Supported
11917 F:      arch/powerpc/include/asm/membarrier.h
11918 F:      include/uapi/linux/membarrier.h
11919 F:      kernel/sched/membarrier.c
11920
11921 MEMBLOCK
11922 M:      Mike Rapoport <rppt@linux.ibm.com>
11923 L:      linux-mm@kvack.org
11924 S:      Maintained
11925 F:      Documentation/core-api/boot-time-mm.rst
11926 F:      include/linux/memblock.h
11927 F:      mm/memblock.c
11928
11929 MEMORY CONTROLLER DRIVERS
11930 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11931 L:      linux-kernel@vger.kernel.org
11932 S:      Maintained
11933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11934 F:      Documentation/devicetree/bindings/memory-controllers/
11935 F:      drivers/memory/
11936 F:      include/dt-bindings/memory/
11937
11938 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11939 M:      Dmitry Osipenko <digetx@gmail.com>
11940 L:      linux-pm@vger.kernel.org
11941 L:      linux-tegra@vger.kernel.org
11942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11943 S:      Maintained
11944 F:      drivers/devfreq/tegra30-devfreq.c
11945
11946 MEMORY MANAGEMENT
11947 M:      Andrew Morton <akpm@linux-foundation.org>
11948 L:      linux-mm@kvack.org
11949 S:      Maintained
11950 W:      http://www.linux-mm.org
11951 T:      quilt https://ozlabs.org/~akpm/mmotm/
11952 T:      quilt https://ozlabs.org/~akpm/mmots/
11953 T:      git git://github.com/hnaz/linux-mm.git
11954 F:      include/linux/gfp.h
11955 F:      include/linux/memory_hotplug.h
11956 F:      include/linux/mm.h
11957 F:      include/linux/mmzone.h
11958 F:      include/linux/pagewalk.h
11959 F:      include/linux/vmalloc.h
11960 F:      mm/
11961 F:      tools/testing/selftests/vm/
11962
11963 MEMORY TECHNOLOGY DEVICES (MTD)
11964 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11965 M:      Richard Weinberger <richard@nod.at>
11966 M:      Vignesh Raghavendra <vigneshr@ti.com>
11967 L:      linux-mtd@lists.infradead.org
11968 S:      Maintained
11969 W:      http://www.linux-mtd.infradead.org/
11970 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11971 C:      irc://irc.oftc.net/mtd
11972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11974 F:      Documentation/devicetree/bindings/mtd/
11975 F:      drivers/mtd/
11976 F:      include/linux/mtd/
11977 F:      include/uapi/mtd/
11978
11979 MEN A21 WATCHDOG DRIVER
11980 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11981 L:      linux-watchdog@vger.kernel.org
11982 S:      Maintained
11983 F:      drivers/watchdog/mena21_wdt.c
11984
11985 MEN CHAMELEON BUS (mcb)
11986 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11987 S:      Maintained
11988 F:      Documentation/driver-api/men-chameleon-bus.rst
11989 F:      drivers/mcb/
11990 F:      include/linux/mcb.h
11991
11992 MEN F21BMC (Board Management Controller)
11993 M:      Andreas Werner <andreas.werner@men.de>
11994 S:      Supported
11995 F:      Documentation/hwmon/menf21bmc.rst
11996 F:      drivers/hwmon/menf21bmc_hwmon.c
11997 F:      drivers/leds/leds-menf21bmc.c
11998 F:      drivers/mfd/menf21bmc.c
11999 F:      drivers/watchdog/menf21bmc_wdt.c
12000
12001 MEN Z069 WATCHDOG DRIVER
12002 M:      Johannes Thumshirn <jth@kernel.org>
12003 L:      linux-watchdog@vger.kernel.org
12004 S:      Maintained
12005 F:      drivers/watchdog/menz69_wdt.c
12006
12007 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12008 M:      Neil Armstrong <narmstrong@baylibre.com>
12009 L:      linux-media@vger.kernel.org
12010 L:      linux-amlogic@lists.infradead.org
12011 S:      Supported
12012 W:      http://linux-meson.com/
12013 T:      git git://linuxtv.org/media_tree.git
12014 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12015 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12016 F:      drivers/media/cec/platform/meson/ao-cec.c
12017
12018 MESON GE2D DRIVER FOR AMLOGIC SOCS
12019 M:      Neil Armstrong <narmstrong@baylibre.com>
12020 L:      linux-media@vger.kernel.org
12021 L:      linux-amlogic@lists.infradead.org
12022 S:      Supported
12023 T:      git git://linuxtv.org/media_tree.git
12024 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12025 F:      drivers/media/platform/meson/ge2d/
12026
12027 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12028 M:      Liang Yang <liang.yang@amlogic.com>
12029 L:      linux-mtd@lists.infradead.org
12030 S:      Maintained
12031 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12032 F:      drivers/mtd/nand/raw/meson_*
12033
12034 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12035 M:      Neil Armstrong <narmstrong@baylibre.com>
12036 L:      linux-media@vger.kernel.org
12037 L:      linux-amlogic@lists.infradead.org
12038 S:      Supported
12039 T:      git git://linuxtv.org/media_tree.git
12040 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12041 F:      drivers/staging/media/meson/vdec/
12042
12043 METHODE UDPU SUPPORT
12044 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12045 S:      Maintained
12046 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12047
12048 MHI BUS
12049 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12050 M:      Hemant Kumar <hemantk@codeaurora.org>
12051 L:      linux-arm-msm@vger.kernel.org
12052 S:      Maintained
12053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12054 F:      Documentation/ABI/stable/sysfs-bus-mhi
12055 F:      Documentation/mhi/
12056 F:      drivers/bus/mhi/
12057 F:      include/linux/mhi.h
12058
12059 MICROBLAZE ARCHITECTURE
12060 M:      Michal Simek <monstr@monstr.eu>
12061 S:      Supported
12062 W:      http://www.monstr.eu/fdt/
12063 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12064 F:      arch/microblaze/
12065
12066 MICROCHIP AT91 DMA DRIVERS
12067 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12068 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12070 L:      dmaengine@vger.kernel.org
12071 S:      Supported
12072 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12073 F:      drivers/dma/at_hdmac.c
12074 F:      drivers/dma/at_hdmac_regs.h
12075 F:      drivers/dma/at_xdmac.c
12076 F:      include/dt-bindings/dma/at91.h
12077
12078 MICROCHIP AT91 SERIAL DRIVER
12079 M:      Richard Genoud <richard.genoud@gmail.com>
12080 S:      Maintained
12081 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12082 F:      drivers/tty/serial/atmel_serial.c
12083 F:      drivers/tty/serial/atmel_serial.h
12084
12085 MICROCHIP AT91 USART MFD DRIVER
12086 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12087 L:      linux-kernel@vger.kernel.org
12088 S:      Supported
12089 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12090 F:      drivers/mfd/at91-usart.c
12091 F:      include/dt-bindings/mfd/at91-usart.h
12092
12093 MICROCHIP AT91 USART SPI DRIVER
12094 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12095 L:      linux-spi@vger.kernel.org
12096 S:      Supported
12097 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12098 F:      drivers/spi/spi-at91-usart.c
12099
12100 MICROCHIP AUDIO ASOC DRIVERS
12101 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12102 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12103 S:      Supported
12104 F:      sound/soc/atmel
12105
12106 MICROCHIP ECC DRIVER
12107 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12108 L:      linux-crypto@vger.kernel.org
12109 S:      Maintained
12110 F:      drivers/crypto/atmel-ecc.*
12111
12112 MICROCHIP I2C DRIVER
12113 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12114 L:      linux-i2c@vger.kernel.org
12115 S:      Supported
12116 F:      drivers/i2c/busses/i2c-at91-*.c
12117 F:      drivers/i2c/busses/i2c-at91.h
12118
12119 MICROCHIP ISC DRIVER
12120 M:      Eugen Hristev <eugen.hristev@microchip.com>
12121 L:      linux-media@vger.kernel.org
12122 S:      Supported
12123 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12124 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12125 F:      drivers/media/platform/atmel/atmel-isc-base.c
12126 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12127 F:      drivers/media/platform/atmel/atmel-isc.h
12128 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12129 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12130 F:      include/linux/atmel-isc-media.h
12131
12132 MICROCHIP ISI DRIVER
12133 M:      Eugen Hristev <eugen.hristev@microchip.com>
12134 L:      linux-media@vger.kernel.org
12135 S:      Supported
12136 F:      drivers/media/platform/atmel/atmel-isi.c
12137 F:      drivers/media/platform/atmel/atmel-isi.h
12138
12139 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12140 M:      Woojung Huh <woojung.huh@microchip.com>
12141 M:      UNGLinuxDriver@microchip.com
12142 L:      netdev@vger.kernel.org
12143 S:      Maintained
12144 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12145 F:      drivers/net/dsa/microchip/*
12146 F:      include/linux/platform_data/microchip-ksz.h
12147 F:      net/dsa/tag_ksz.c
12148
12149 MICROCHIP LAN743X ETHERNET DRIVER
12150 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12151 M:      UNGLinuxDriver@microchip.com
12152 L:      netdev@vger.kernel.org
12153 S:      Maintained
12154 F:      drivers/net/ethernet/microchip/lan743x_*
12155
12156 MICROCHIP LCDFB DRIVER
12157 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12158 L:      linux-fbdev@vger.kernel.org
12159 S:      Maintained
12160 F:      drivers/video/fbdev/atmel_lcdfb.c
12161 F:      include/video/atmel_lcdc.h
12162
12163 MICROCHIP MCP16502 PMIC DRIVER
12164 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12166 S:      Supported
12167 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12168 F:      drivers/regulator/mcp16502.c
12169
12170 MICROCHIP MCP3911 ADC DRIVER
12171 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12172 M:      Kent Gustavsson <kent@minoris.se>
12173 L:      linux-iio@vger.kernel.org
12174 S:      Supported
12175 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12176 F:      drivers/iio/adc/mcp3911.c
12177
12178 MICROCHIP MMC/SD/SDIO MCI DRIVER
12179 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12180 S:      Maintained
12181 F:      drivers/mmc/host/atmel-mci.c
12182
12183 MICROCHIP NAND DRIVER
12184 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12185 L:      linux-mtd@lists.infradead.org
12186 S:      Supported
12187 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12188 F:      drivers/mtd/nand/raw/atmel/*
12189
12190 MICROCHIP PWM DRIVER
12191 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12193 L:      linux-pwm@vger.kernel.org
12194 S:      Supported
12195 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12196 F:      drivers/pwm/pwm-atmel.c
12197
12198 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12199 M:      Eugen Hristev <eugen.hristev@microchip.com>
12200 L:      linux-iio@vger.kernel.org
12201 S:      Supported
12202 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12203 F:      drivers/iio/adc/at91-sama5d2_adc.c
12204 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12205
12206 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12207 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12208 S:      Supported
12209 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12210
12211 MICROCHIP SPI DRIVER
12212 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12213 S:      Supported
12214 F:      drivers/spi/spi-atmel.*
12215
12216 MICROCHIP SSC DRIVER
12217 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12218 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12219 S:      Supported
12220 F:      drivers/misc/atmel-ssc.c
12221 F:      include/linux/atmel-ssc.h
12222
12223 MICROCHIP USB251XB DRIVER
12224 M:      Richard Leitner <richard.leitner@skidata.com>
12225 L:      linux-usb@vger.kernel.org
12226 S:      Maintained
12227 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12228 F:      drivers/usb/misc/usb251xb.c
12229
12230 MICROCHIP USBA UDC DRIVER
12231 M:      Cristian Birsan <cristian.birsan@microchip.com>
12232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12233 S:      Supported
12234 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12235
12236 MICROCHIP WILC1000 WIFI DRIVER
12237 M:      Ajay Singh <ajay.kathat@microchip.com>
12238 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12239 L:      linux-wireless@vger.kernel.org
12240 S:      Supported
12241 F:      drivers/net/wireless/microchip/wilc1000/
12242
12243 MICROSEMI MIPS SOCS
12244 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12245 M:      UNGLinuxDriver@microchip.com
12246 L:      linux-mips@vger.kernel.org
12247 S:      Supported
12248 F:      Documentation/devicetree/bindings/mips/mscc.txt
12249 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12250 F:      arch/mips/boot/dts/mscc/
12251 F:      arch/mips/configs/generic/board-ocelot.config
12252 F:      arch/mips/generic/board-ocelot.c
12253
12254 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12255 M:      Don Brace <don.brace@microchip.com>
12256 L:      storagedev@microchip.com
12257 L:      linux-scsi@vger.kernel.org
12258 S:      Supported
12259 F:      Documentation/scsi/smartpqi.rst
12260 F:      drivers/scsi/smartpqi/Kconfig
12261 F:      drivers/scsi/smartpqi/Makefile
12262 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12263 F:      include/linux/cciss*.h
12264 F:      include/uapi/linux/cciss*.h
12265
12266 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12267 M:      Maximilian Luz <luzmaximilian@gmail.com>
12268 L:      linux-pm@vger.kernel.org
12269 L:      platform-driver-x86@vger.kernel.org
12270 S:      Maintained
12271 F:      drivers/power/supply/surface_battery.c
12272 F:      drivers/power/supply/surface_charger.c
12273
12274 MICROSOFT SURFACE DTX DRIVER
12275 M:      Maximilian Luz <luzmaximilian@gmail.com>
12276 L:      platform-driver-x86@vger.kernel.org
12277 S:      Maintained
12278 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12279 F:      drivers/platform/surface/surface_dtx.c
12280 F:      include/uapi/linux/surface_aggregator/dtx.h
12281
12282 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12283 M:      Maximilian Luz <luzmaximilian@gmail.com>
12284 L:      platform-driver-x86@vger.kernel.org
12285 S:      Maintained
12286 F:      drivers/platform/surface/surface_gpe.c
12287
12288 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12289 M:      Hans de Goede <hdegoede@redhat.com>
12290 M:      Mark Gross <mgross@linux.intel.com>
12291 M:      Maximilian Luz <luzmaximilian@gmail.com>
12292 L:      platform-driver-x86@vger.kernel.org
12293 S:      Maintained
12294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12295 F:      drivers/platform/surface/
12296
12297 MICROSOFT SURFACE HID TRANSPORT DRIVER
12298 M:      Maximilian Luz <luzmaximilian@gmail.com>
12299 L:      linux-input@vger.kernel.org
12300 L:      platform-driver-x86@vger.kernel.org
12301 S:      Maintained
12302 F:      drivers/hid/surface-hid/
12303
12304 MICROSOFT SURFACE HOT-PLUG DRIVER
12305 M:      Maximilian Luz <luzmaximilian@gmail.com>
12306 L:      platform-driver-x86@vger.kernel.org
12307 S:      Maintained
12308 F:      drivers/platform/surface/surface_hotplug.c
12309
12310 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12311 M:      Maximilian Luz <luzmaximilian@gmail.com>
12312 L:      platform-driver-x86@vger.kernel.org
12313 S:      Maintained
12314 F:      drivers/platform/surface/surface_platform_profile.c
12315
12316 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12317 M:      Chen Yu <yu.c.chen@intel.com>
12318 L:      platform-driver-x86@vger.kernel.org
12319 S:      Supported
12320 F:      drivers/platform/surface/surfacepro3_button.c
12321
12322 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12323 M:      Maximilian Luz <luzmaximilian@gmail.com>
12324 L:      platform-driver-x86@vger.kernel.org
12325 S:      Maintained
12326 W:      https://github.com/linux-surface/surface-aggregator-module
12327 C:      irc://irc.libera.chat/linux-surface
12328 F:      Documentation/driver-api/surface_aggregator/
12329 F:      drivers/platform/surface/aggregator/
12330 F:      drivers/platform/surface/surface_acpi_notify.c
12331 F:      drivers/platform/surface/surface_aggregator_cdev.c
12332 F:      drivers/platform/surface/surface_aggregator_registry.c
12333 F:      include/linux/surface_acpi_notify.h
12334 F:      include/linux/surface_aggregator/
12335 F:      include/uapi/linux/surface_aggregator/
12336
12337 MICROTEK X6 SCANNER
12338 M:      Oliver Neukum <oliver@neukum.org>
12339 S:      Maintained
12340 F:      drivers/usb/image/microtek.*
12341
12342 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12343 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12344 M:      Luka Perkov <luka.perkov@sartura.hr>
12345 S:      Maintained
12346 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12347 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12348 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12349 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12350 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12351 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12352
12353 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12354 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12355 L:      linux-media@vger.kernel.org
12356 S:      Maintained
12357 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12358 F:      Documentation/driver-api/media/drivers/ccs/
12359 F:      Documentation/userspace-api/media/drivers/ccs.rst
12360 F:      drivers/media/i2c/ccs-pll.c
12361 F:      drivers/media/i2c/ccs-pll.h
12362 F:      drivers/media/i2c/ccs/
12363 F:      include/uapi/linux/ccs.h
12364 F:      include/uapi/linux/smiapp.h
12365
12366 MIPS
12367 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12368 L:      linux-mips@vger.kernel.org
12369 S:      Maintained
12370 W:      http://www.linux-mips.org/
12371 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12373 F:      Documentation/devicetree/bindings/mips/
12374 F:      Documentation/mips/
12375 F:      arch/mips/
12376 F:      drivers/platform/mips/
12377
12378 MIPS BOSTON DEVELOPMENT BOARD
12379 M:      Paul Burton <paulburton@kernel.org>
12380 L:      linux-mips@vger.kernel.org
12381 S:      Maintained
12382 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12383 F:      arch/mips/boot/dts/img/boston.dts
12384 F:      arch/mips/configs/generic/board-boston.config
12385 F:      drivers/clk/imgtec/clk-boston.c
12386 F:      include/dt-bindings/clock/boston-clock.h
12387
12388 MIPS CORE DRIVERS
12389 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12390 M:      Serge Semin <fancer.lancer@gmail.com>
12391 L:      linux-mips@vger.kernel.org
12392 S:      Supported
12393 F:      drivers/bus/mips_cdmm.c
12394 F:      drivers/clocksource/mips-gic-timer.c
12395 F:      drivers/cpuidle/cpuidle-cps.c
12396 F:      drivers/irqchip/irq-mips-cpu.c
12397 F:      drivers/irqchip/irq-mips-gic.c
12398
12399 MIPS GENERIC PLATFORM
12400 M:      Paul Burton <paulburton@kernel.org>
12401 L:      linux-mips@vger.kernel.org
12402 S:      Supported
12403 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12404 F:      arch/mips/generic/
12405 F:      arch/mips/tools/generic-board-config.sh
12406
12407 MIPS RINT INSTRUCTION EMULATION
12408 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12409 L:      linux-mips@vger.kernel.org
12410 S:      Supported
12411 F:      arch/mips/math-emu/dp_rint.c
12412 F:      arch/mips/math-emu/sp_rint.c
12413
12414 MIPS/LOONGSON1 ARCHITECTURE
12415 M:      Keguang Zhang <keguang.zhang@gmail.com>
12416 L:      linux-mips@vger.kernel.org
12417 S:      Maintained
12418 F:      arch/mips/include/asm/mach-loongson32/
12419 F:      arch/mips/loongson32/
12420 F:      drivers/*/*/*loongson1*
12421 F:      drivers/*/*loongson1*
12422
12423 MIPS/LOONGSON2EF ARCHITECTURE
12424 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12425 L:      linux-mips@vger.kernel.org
12426 S:      Maintained
12427 F:      arch/mips/include/asm/mach-loongson2ef/
12428 F:      arch/mips/loongson2ef/
12429 F:      drivers/cpufreq/loongson2_cpufreq.c
12430
12431 MIPS/LOONGSON64 ARCHITECTURE
12432 M:      Huacai Chen <chenhuacai@kernel.org>
12433 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12434 L:      linux-mips@vger.kernel.org
12435 S:      Maintained
12436 F:      arch/mips/include/asm/mach-loongson64/
12437 F:      arch/mips/loongson64/
12438 F:      drivers/irqchip/irq-loongson*
12439 F:      drivers/platform/mips/cpu_hwmon.c
12440
12441 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12442 M:      Hans Verkuil <hverkuil@xs4all.nl>
12443 L:      linux-media@vger.kernel.org
12444 S:      Odd Fixes
12445 W:      https://linuxtv.org
12446 T:      git git://linuxtv.org/media_tree.git
12447 F:      drivers/media/radio/radio-miropcm20*
12448
12449 MMP SUPPORT
12450 R:      Lubomir Rintel <lkundrak@v3.sk>
12451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12452 S:      Odd Fixes
12453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12454 F:      arch/arm/boot/dts/mmp*
12455 F:      arch/arm/mach-mmp/
12456 F:      include/linux/soc/mmp/
12457
12458 MMP USB PHY DRIVERS
12459 R:      Lubomir Rintel <lkundrak@v3.sk>
12460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12461 S:      Maintained
12462 F:      drivers/phy/marvell/phy-mmp3-usb.c
12463 F:      drivers/phy/marvell/phy-pxa-usb.c
12464
12465 MMU GATHER AND TLB INVALIDATION
12466 M:      Will Deacon <will@kernel.org>
12467 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12468 M:      Andrew Morton <akpm@linux-foundation.org>
12469 M:      Nick Piggin <npiggin@gmail.com>
12470 M:      Peter Zijlstra <peterz@infradead.org>
12471 L:      linux-arch@vger.kernel.org
12472 L:      linux-mm@kvack.org
12473 S:      Maintained
12474 F:      arch/*/include/asm/tlb.h
12475 F:      include/asm-generic/tlb.h
12476 F:      mm/mmu_gather.c
12477
12478 MN88472 MEDIA DRIVER
12479 M:      Antti Palosaari <crope@iki.fi>
12480 L:      linux-media@vger.kernel.org
12481 S:      Maintained
12482 W:      https://linuxtv.org
12483 W:      http://palosaari.fi/linux/
12484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12485 F:      drivers/media/dvb-frontends/mn88472*
12486
12487 MN88473 MEDIA DRIVER
12488 M:      Antti Palosaari <crope@iki.fi>
12489 L:      linux-media@vger.kernel.org
12490 S:      Maintained
12491 W:      https://linuxtv.org
12492 W:      http://palosaari.fi/linux/
12493 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12494 F:      drivers/media/dvb-frontends/mn88473*
12495
12496 MODULE SUPPORT
12497 M:      Jessica Yu <jeyu@kernel.org>
12498 S:      Maintained
12499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12500 F:      include/linux/module.h
12501 F:      kernel/module.c
12502
12503 MONOLITHIC POWER SYSTEM PMIC DRIVER
12504 M:      Saravanan Sekar <sravanhome@gmail.com>
12505 S:      Maintained
12506 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12507 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12508 F:      drivers/iio/adc/mp2629_adc.c
12509 F:      drivers/mfd/mp2629.c
12510 F:      drivers/power/supply/mp2629_charger.c
12511 F:      drivers/regulator/mp5416.c
12512 F:      drivers/regulator/mpq7920.c
12513 F:      drivers/regulator/mpq7920.h
12514 F:      include/linux/mfd/mp2629.h
12515
12516 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12517 S:      Orphan
12518 W:      http://popies.net/meye/
12519 F:      Documentation/userspace-api/media/drivers/meye*
12520 F:      drivers/media/pci/meye/
12521 F:      include/uapi/linux/meye.h
12522
12523 MOTORCOMM PHY DRIVER
12524 M:      Peter Geis <pgwipeout@gmail.com>
12525 L:      netdev@vger.kernel.org
12526 S:      Maintained
12527 F:      drivers/net/phy/motorcomm.c
12528
12529 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12530 M:      Jiri Slaby <jirislaby@kernel.org>
12531 S:      Maintained
12532 F:      Documentation/driver-api/serial/moxa-smartio.rst
12533 F:      drivers/tty/mxser.*
12534
12535 MR800 AVERMEDIA USB FM RADIO DRIVER
12536 M:      Alexey Klimov <klimov.linux@gmail.com>
12537 L:      linux-media@vger.kernel.org
12538 S:      Maintained
12539 T:      git git://linuxtv.org/media_tree.git
12540 F:      drivers/media/radio/radio-mr800.c
12541
12542 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12543 M:      Alan Ott <alan@signal11.us>
12544 L:      linux-wpan@vger.kernel.org
12545 S:      Maintained
12546 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12547 F:      drivers/net/ieee802154/mrf24j40.c
12548
12549 MSI LAPTOP SUPPORT
12550 M:      "Lee, Chun-Yi" <jlee@suse.com>
12551 L:      platform-driver-x86@vger.kernel.org
12552 S:      Maintained
12553 F:      drivers/platform/x86/msi-laptop.c
12554
12555 MSI WMI SUPPORT
12556 L:      platform-driver-x86@vger.kernel.org
12557 S:      Orphan
12558 F:      drivers/platform/x86/msi-wmi.c
12559
12560 MSI001 MEDIA DRIVER
12561 M:      Antti Palosaari <crope@iki.fi>
12562 L:      linux-media@vger.kernel.org
12563 S:      Maintained
12564 W:      https://linuxtv.org
12565 W:      http://palosaari.fi/linux/
12566 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12567 T:      git git://linuxtv.org/anttip/media_tree.git
12568 F:      drivers/media/tuners/msi001*
12569
12570 MSI2500 MEDIA DRIVER
12571 M:      Antti Palosaari <crope@iki.fi>
12572 L:      linux-media@vger.kernel.org
12573 S:      Maintained
12574 W:      https://linuxtv.org
12575 W:      http://palosaari.fi/linux/
12576 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12577 T:      git git://linuxtv.org/anttip/media_tree.git
12578 F:      drivers/media/usb/msi2500/
12579
12580 MSTAR INTERRUPT CONTROLLER DRIVER
12581 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12582 M:      Daniel Palmer <daniel@thingy.jp>
12583 S:      Maintained
12584 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12585 F:      drivers/irqchip/irq-mst-intc.c
12586
12587 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12588 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12589 L:      linux-mtd@lists.infradead.org
12590 S:      Maintained
12591 F:      drivers/mtd/devices/docg3*
12592
12593 MT9M032 APTINA SENSOR DRIVER
12594 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12595 L:      linux-media@vger.kernel.org
12596 S:      Maintained
12597 T:      git git://linuxtv.org/media_tree.git
12598 F:      drivers/media/i2c/mt9m032.c
12599 F:      include/media/i2c/mt9m032.h
12600
12601 MT9P031 APTINA CAMERA SENSOR
12602 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12603 L:      linux-media@vger.kernel.org
12604 S:      Maintained
12605 T:      git git://linuxtv.org/media_tree.git
12606 F:      drivers/media/i2c/mt9p031.c
12607 F:      include/media/i2c/mt9p031.h
12608
12609 MT9T001 APTINA CAMERA SENSOR
12610 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12611 L:      linux-media@vger.kernel.org
12612 S:      Maintained
12613 T:      git git://linuxtv.org/media_tree.git
12614 F:      drivers/media/i2c/mt9t001.c
12615 F:      include/media/i2c/mt9t001.h
12616
12617 MT9T112 APTINA CAMERA SENSOR
12618 M:      Jacopo Mondi <jacopo@jmondi.org>
12619 L:      linux-media@vger.kernel.org
12620 S:      Odd Fixes
12621 T:      git git://linuxtv.org/media_tree.git
12622 F:      drivers/media/i2c/mt9t112.c
12623 F:      include/media/i2c/mt9t112.h
12624
12625 MT9V032 APTINA CAMERA SENSOR
12626 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12627 L:      linux-media@vger.kernel.org
12628 S:      Maintained
12629 T:      git git://linuxtv.org/media_tree.git
12630 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12631 F:      drivers/media/i2c/mt9v032.c
12632 F:      include/media/i2c/mt9v032.h
12633
12634 MT9V111 APTINA CAMERA SENSOR
12635 M:      Jacopo Mondi <jacopo@jmondi.org>
12636 L:      linux-media@vger.kernel.org
12637 S:      Maintained
12638 T:      git git://linuxtv.org/media_tree.git
12639 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12640 F:      drivers/media/i2c/mt9v111.c
12641
12642 MULTIFUNCTION DEVICES (MFD)
12643 M:      Lee Jones <lee.jones@linaro.org>
12644 S:      Supported
12645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12646 F:      Documentation/devicetree/bindings/mfd/
12647 F:      drivers/mfd/
12648 F:      include/dt-bindings/mfd/
12649 F:      include/linux/mfd/
12650
12651 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12652 S:      Orphan
12653 F:      drivers/mmc/host/mmc_spi.c
12654 F:      include/linux/spi/mmc_spi.h
12655
12656 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12657 M:      Ulf Hansson <ulf.hansson@linaro.org>
12658 L:      linux-mmc@vger.kernel.org
12659 S:      Maintained
12660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12661 F:      Documentation/devicetree/bindings/mmc/
12662 F:      drivers/mmc/
12663 F:      include/linux/mmc/
12664 F:      include/uapi/linux/mmc/
12665
12666 MULTIPLEXER SUBSYSTEM
12667 M:      Peter Rosin <peda@axentia.se>
12668 S:      Maintained
12669 F:      Documentation/ABI/testing/sysfs-class-mux*
12670 F:      Documentation/devicetree/bindings/mux/
12671 F:      drivers/mux/
12672 F:      include/dt-bindings/mux/
12673 F:      include/linux/mux/
12674
12675 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12676 M:      Bin Liu <b-liu@ti.com>
12677 L:      linux-usb@vger.kernel.org
12678 S:      Maintained
12679 F:      drivers/usb/musb/
12680
12681 MXL301RF MEDIA DRIVER
12682 M:      Akihiro Tsukada <tskd08@gmail.com>
12683 L:      linux-media@vger.kernel.org
12684 S:      Odd Fixes
12685 F:      drivers/media/tuners/mxl301rf*
12686
12687 MXL5007T MEDIA DRIVER
12688 M:      Michael Krufky <mkrufky@linuxtv.org>
12689 L:      linux-media@vger.kernel.org
12690 S:      Maintained
12691 W:      https://linuxtv.org
12692 W:      http://github.com/mkrufky
12693 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12694 T:      git git://linuxtv.org/mkrufky/tuners.git
12695 F:      drivers/media/tuners/mxl5007t.*
12696
12697 MXSFB DRM DRIVER
12698 M:      Marek Vasut <marex@denx.de>
12699 M:      Stefan Agner <stefan@agner.ch>
12700 L:      dri-devel@lists.freedesktop.org
12701 S:      Supported
12702 T:      git git://anongit.freedesktop.org/drm/drm-misc
12703 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12704 F:      drivers/gpu/drm/mxsfb/
12705
12706 MYLEX DAC960 PCI RAID Controller
12707 M:      Hannes Reinecke <hare@kernel.org>
12708 L:      linux-scsi@vger.kernel.org
12709 S:      Supported
12710 F:      drivers/scsi/myrb.*
12711 F:      drivers/scsi/myrs.*
12712
12713 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12714 M:      Chris Lee <christopher.lee@cspi.com>
12715 L:      netdev@vger.kernel.org
12716 S:      Supported
12717 W:      https://www.cspi.com/ethernet-products/support/downloads/
12718 F:      drivers/net/ethernet/myricom/myri10ge/
12719
12720 NAND FLASH SUBSYSTEM
12721 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12722 R:      Richard Weinberger <richard@nod.at>
12723 L:      linux-mtd@lists.infradead.org
12724 S:      Maintained
12725 W:      http://www.linux-mtd.infradead.org/
12726 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12727 C:      irc://irc.oftc.net/mtd
12728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12729 F:      drivers/mtd/nand/
12730 F:      include/linux/mtd/*nand*.h
12731
12732 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12733 M:      Daniel Mack <zonque@gmail.com>
12734 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12735 S:      Maintained
12736 W:      http://www.native-instruments.com
12737 F:      sound/usb/caiaq/
12738
12739 NATSEMI ETHERNET DRIVER (DP8381x)
12740 S:      Orphan
12741 F:      drivers/net/ethernet/natsemi/natsemi.c
12742
12743 NCR 5380 SCSI DRIVERS
12744 M:      Finn Thain <fthain@linux-m68k.org>
12745 M:      Michael Schmitz <schmitzmic@gmail.com>
12746 L:      linux-scsi@vger.kernel.org
12747 S:      Maintained
12748 F:      Documentation/scsi/g_NCR5380.rst
12749 F:      drivers/scsi/NCR5380.*
12750 F:      drivers/scsi/arm/cumana_1.c
12751 F:      drivers/scsi/arm/oak.c
12752 F:      drivers/scsi/atari_scsi.*
12753 F:      drivers/scsi/dmx3191d.c
12754 F:      drivers/scsi/g_NCR5380.*
12755 F:      drivers/scsi/mac_scsi.*
12756 F:      drivers/scsi/sun3_scsi.*
12757 F:      drivers/scsi/sun3_scsi_vme.c
12758
12759 NCSI LIBRARY
12760 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12761 S:      Maintained
12762 F:      net/ncsi/
12763
12764 NCT6775 HARDWARE MONITOR DRIVER
12765 M:      Guenter Roeck <linux@roeck-us.net>
12766 L:      linux-hwmon@vger.kernel.org
12767 S:      Maintained
12768 F:      Documentation/hwmon/nct6775.rst
12769 F:      drivers/hwmon/nct6775.c
12770
12771 NETDEVSIM
12772 M:      Jakub Kicinski <kuba@kernel.org>
12773 S:      Maintained
12774 F:      drivers/net/netdevsim/*
12775
12776 NETEM NETWORK EMULATOR
12777 M:      Stephen Hemminger <stephen@networkplumber.org>
12778 L:      netdev@vger.kernel.org
12779 S:      Maintained
12780 F:      net/sched/sch_netem.c
12781
12782 NETERION 10GbE DRIVERS (s2io/vxge)
12783 M:      Jon Mason <jdmason@kudzu.us>
12784 L:      netdev@vger.kernel.org
12785 S:      Supported
12786 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12787 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12788 F:      drivers/net/ethernet/neterion/
12789
12790 NETFILTER
12791 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12792 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12793 M:      Florian Westphal <fw@strlen.de>
12794 L:      netfilter-devel@vger.kernel.org
12795 L:      coreteam@netfilter.org
12796 S:      Maintained
12797 W:      http://www.netfilter.org/
12798 W:      http://www.iptables.org/
12799 W:      http://www.nftables.org/
12800 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12801 C:      irc://irc.libera.chat/netfilter
12802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12804 F:      include/linux/netfilter*
12805 F:      include/linux/netfilter/
12806 F:      include/net/netfilter/
12807 F:      include/uapi/linux/netfilter*
12808 F:      include/uapi/linux/netfilter/
12809 F:      net/*/netfilter.c
12810 F:      net/*/netfilter/
12811 F:      net/bridge/br_netfilter*.c
12812 F:      net/netfilter/
12813
12814 NETROM NETWORK LAYER
12815 M:      Ralf Baechle <ralf@linux-mips.org>
12816 L:      linux-hams@vger.kernel.org
12817 S:      Maintained
12818 W:      http://www.linux-ax25.org/
12819 F:      include/net/netrom.h
12820 F:      include/uapi/linux/netrom.h
12821 F:      net/netrom/
12822
12823 NETRONIX EMBEDDED CONTROLLER
12824 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
12825 S:      Maintained
12826 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12827 F:      drivers/mfd/ntxec.c
12828 F:      drivers/pwm/pwm-ntxec.c
12829 F:      drivers/rtc/rtc-ntxec.c
12830 F:      include/linux/mfd/ntxec.h
12831
12832 NETRONOME ETHERNET DRIVERS
12833 M:      Simon Horman <simon.horman@corigine.com>
12834 R:      Jakub Kicinski <kuba@kernel.org>
12835 L:      oss-drivers@corigine.com
12836 S:      Maintained
12837 F:      drivers/net/ethernet/netronome/
12838
12839 NETWORK BLOCK DEVICE (NBD)
12840 M:      Josef Bacik <josef@toxicpanda.com>
12841 L:      linux-block@vger.kernel.org
12842 L:      nbd@other.debian.org
12843 S:      Maintained
12844 F:      Documentation/admin-guide/blockdev/nbd.rst
12845 F:      drivers/block/nbd.c
12846 F:      include/trace/events/nbd.h
12847 F:      include/uapi/linux/nbd.h
12848
12849 NETWORK DROP MONITOR
12850 M:      Neil Horman <nhorman@tuxdriver.com>
12851 L:      netdev@vger.kernel.org
12852 S:      Maintained
12853 W:      https://fedorahosted.org/dropwatch/
12854 F:      include/uapi/linux/net_dropmon.h
12855 F:      net/core/drop_monitor.c
12856
12857 NETWORKING DRIVERS
12858 M:      "David S. Miller" <davem@davemloft.net>
12859 M:      Jakub Kicinski <kuba@kernel.org>
12860 L:      netdev@vger.kernel.org
12861 S:      Maintained
12862 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12865 F:      Documentation/devicetree/bindings/net/
12866 F:      drivers/connector/
12867 F:      drivers/net/
12868 F:      include/linux/etherdevice.h
12869 F:      include/linux/fcdevice.h
12870 F:      include/linux/fddidevice.h
12871 F:      include/linux/hippidevice.h
12872 F:      include/linux/if_*
12873 F:      include/linux/inetdevice.h
12874 F:      include/linux/netdevice.h
12875 F:      include/uapi/linux/if_*
12876 F:      include/uapi/linux/netdevice.h
12877
12878 NETWORKING DRIVERS (WIRELESS)
12879 M:      Kalle Valo <kvalo@codeaurora.org>
12880 L:      linux-wireless@vger.kernel.org
12881 S:      Maintained
12882 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12885 F:      Documentation/devicetree/bindings/net/wireless/
12886 F:      drivers/net/wireless/
12887
12888 NETWORKING [DSA]
12889 M:      Andrew Lunn <andrew@lunn.ch>
12890 M:      Vivien Didelot <vivien.didelot@gmail.com>
12891 M:      Florian Fainelli <f.fainelli@gmail.com>
12892 M:      Vladimir Oltean <olteanv@gmail.com>
12893 S:      Maintained
12894 F:      Documentation/devicetree/bindings/net/dsa/
12895 F:      drivers/net/dsa/
12896 F:      include/linux/dsa/
12897 F:      include/linux/platform_data/dsa.h
12898 F:      include/net/dsa.h
12899 F:      net/dsa/
12900
12901 NETWORKING [GENERAL]
12902 M:      "David S. Miller" <davem@davemloft.net>
12903 M:      Jakub Kicinski <kuba@kernel.org>
12904 L:      netdev@vger.kernel.org
12905 S:      Maintained
12906 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12907 B:      mailto:netdev@vger.kernel.org
12908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12910 F:      Documentation/networking/
12911 F:      include/linux/in.h
12912 F:      include/linux/net.h
12913 F:      include/linux/netdevice.h
12914 F:      include/net/
12915 F:      include/uapi/linux/in.h
12916 F:      include/uapi/linux/net.h
12917 F:      include/uapi/linux/net_namespace.h
12918 F:      include/uapi/linux/netdevice.h
12919 F:      lib/net_utils.c
12920 F:      lib/random32.c
12921 F:      net/
12922 F:      tools/testing/selftests/net/
12923
12924 NETWORKING [IPSEC]
12925 M:      Steffen Klassert <steffen.klassert@secunet.com>
12926 M:      Herbert Xu <herbert@gondor.apana.org.au>
12927 M:      "David S. Miller" <davem@davemloft.net>
12928 L:      netdev@vger.kernel.org
12929 S:      Maintained
12930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12932 F:      include/net/xfrm.h
12933 F:      include/uapi/linux/xfrm.h
12934 F:      net/ipv4/ah4.c
12935 F:      net/ipv4/esp4*
12936 F:      net/ipv4/ip_vti.c
12937 F:      net/ipv4/ipcomp.c
12938 F:      net/ipv4/xfrm*
12939 F:      net/ipv6/ah6.c
12940 F:      net/ipv6/esp6*
12941 F:      net/ipv6/ip6_vti.c
12942 F:      net/ipv6/ipcomp6.c
12943 F:      net/ipv6/xfrm*
12944 F:      net/key/
12945 F:      net/xfrm/
12946 F:      tools/testing/selftests/net/ipsec.c
12947
12948 NETWORKING [IPv4/IPv6]
12949 M:      "David S. Miller" <davem@davemloft.net>
12950 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12951 M:      David Ahern <dsahern@kernel.org>
12952 L:      netdev@vger.kernel.org
12953 S:      Maintained
12954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12955 F:      arch/x86/net/*
12956 F:      include/net/ip*
12957 F:      net/ipv4/
12958 F:      net/ipv6/
12959
12960 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12961 M:      Paul Moore <paul@paul-moore.com>
12962 L:      netdev@vger.kernel.org
12963 L:      linux-security-module@vger.kernel.org
12964 S:      Maintained
12965 W:      https://github.com/netlabel
12966 F:      Documentation/netlabel/
12967 F:      include/net/calipso.h
12968 F:      include/net/cipso_ipv4.h
12969 F:      include/net/netlabel.h
12970 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12971 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12972 F:      net/ipv4/cipso_ipv4.c
12973 F:      net/ipv6/calipso.c
12974 F:      net/netfilter/xt_CONNSECMARK.c
12975 F:      net/netfilter/xt_SECMARK.c
12976 F:      net/netlabel/
12977
12978 NETWORKING [MPTCP]
12979 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12980 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12981 L:      netdev@vger.kernel.org
12982 L:      mptcp@lists.linux.dev
12983 S:      Maintained
12984 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12985 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12986 F:      Documentation/networking/mptcp-sysctl.rst
12987 F:      include/net/mptcp.h
12988 F:      include/trace/events/mptcp.h
12989 F:      include/uapi/linux/mptcp.h
12990 F:      net/mptcp/
12991 F:      tools/testing/selftests/net/mptcp/
12992
12993 NETWORKING [TCP]
12994 M:      Eric Dumazet <edumazet@google.com>
12995 L:      netdev@vger.kernel.org
12996 S:      Maintained
12997 F:      include/linux/tcp.h
12998 F:      include/net/tcp.h
12999 F:      include/trace/events/tcp.h
13000 F:      include/uapi/linux/tcp.h
13001 F:      net/ipv4/syncookies.c
13002 F:      net/ipv4/tcp*.c
13003 F:      net/ipv6/syncookies.c
13004 F:      net/ipv6/tcp*.c
13005
13006 NETWORKING [TLS]
13007 M:      Boris Pismenny <borisp@nvidia.com>
13008 M:      John Fastabend <john.fastabend@gmail.com>
13009 M:      Daniel Borkmann <daniel@iogearbox.net>
13010 M:      Jakub Kicinski <kuba@kernel.org>
13011 L:      netdev@vger.kernel.org
13012 S:      Maintained
13013 F:      include/net/tls.h
13014 F:      include/uapi/linux/tls.h
13015 F:      net/tls/*
13016
13017 NETWORKING [WIRELESS]
13018 L:      linux-wireless@vger.kernel.org
13019 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13020
13021 NETXEN (1/10) GbE SUPPORT
13022 M:      Manish Chopra <manishc@marvell.com>
13023 M:      Rahul Verma <rahulv@marvell.com>
13024 M:      GR-Linux-NIC-Dev@marvell.com
13025 L:      netdev@vger.kernel.org
13026 S:      Supported
13027 F:      drivers/net/ethernet/qlogic/netxen/
13028
13029 NET_FAILOVER MODULE
13030 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13031 L:      netdev@vger.kernel.org
13032 S:      Supported
13033 F:      Documentation/networking/net_failover.rst
13034 F:      drivers/net/net_failover.c
13035 F:      include/net/net_failover.h
13036
13037 NEXTHOP
13038 M:      David Ahern <dsahern@kernel.org>
13039 L:      netdev@vger.kernel.org
13040 S:      Maintained
13041 F:      include/net/netns/nexthop.h
13042 F:      include/net/nexthop.h
13043 F:      include/uapi/linux/nexthop.h
13044 F:      net/ipv4/nexthop.c
13045
13046 NFC SUBSYSTEM
13047 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13048 L:      linux-nfc@lists.01.org (subscribers-only)
13049 L:      netdev@vger.kernel.org
13050 S:      Maintained
13051 F:      Documentation/devicetree/bindings/net/nfc/
13052 F:      drivers/nfc/
13053 F:      include/linux/platform_data/nfcmrvl.h
13054 F:      include/net/nfc/
13055 F:      include/uapi/linux/nfc.h
13056 F:      net/nfc/
13057
13058 NFC VIRTUAL NCI DEVICE DRIVER
13059 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13060 L:      netdev@vger.kernel.org
13061 L:      linux-nfc@lists.01.org (subscribers-only)
13062 S:      Supported
13063 F:      drivers/nfc/virtual_ncidev.c
13064 F:      tools/testing/selftests/nci/
13065
13066 NFS, SUNRPC, AND LOCKD CLIENTS
13067 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13068 M:      Anna Schumaker <anna.schumaker@netapp.com>
13069 L:      linux-nfs@vger.kernel.org
13070 S:      Maintained
13071 W:      http://client.linux-nfs.org
13072 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13073 F:      fs/lockd/
13074 F:      fs/nfs/
13075 F:      fs/nfs_common/
13076 F:      include/linux/lockd/
13077 F:      include/linux/nfs*
13078 F:      include/linux/sunrpc/
13079 F:      include/uapi/linux/nfs*
13080 F:      include/uapi/linux/sunrpc/
13081 F:      net/sunrpc/
13082 F:      Documentation/filesystems/nfs/
13083
13084 NILFS2 FILESYSTEM
13085 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13086 L:      linux-nilfs@vger.kernel.org
13087 S:      Supported
13088 W:      https://nilfs.sourceforge.io/
13089 W:      https://nilfs.osdn.jp/
13090 T:      git git://github.com/konis/nilfs2.git
13091 F:      Documentation/filesystems/nilfs2.rst
13092 F:      fs/nilfs2/
13093 F:      include/trace/events/nilfs2.h
13094 F:      include/uapi/linux/nilfs2_api.h
13095 F:      include/uapi/linux/nilfs2_ondisk.h
13096
13097 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13098 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13099 S:      Maintained
13100 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13101 F:      Documentation/scsi/NinjaSCSI.rst
13102 F:      drivers/scsi/pcmcia/nsp_*
13103
13104 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13105 M:      GOTO Masanori <gotom@debian.or.jp>
13106 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13107 S:      Maintained
13108 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13109 F:      Documentation/scsi/NinjaSCSI.rst
13110 F:      drivers/scsi/nsp32*
13111
13112 NIOS2 ARCHITECTURE
13113 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13114 S:      Maintained
13115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
13116 F:      arch/nios2/
13117
13118 NITRO ENCLAVES (NE)
13119 M:      Andra Paraschiv <andraprs@amazon.com>
13120 M:      Alexandru Vasile <lexnv@amazon.com>
13121 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13122 L:      linux-kernel@vger.kernel.org
13123 S:      Supported
13124 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13125 F:      Documentation/virt/ne_overview.rst
13126 F:      drivers/virt/nitro_enclaves/
13127 F:      include/linux/nitro_enclaves.h
13128 F:      include/uapi/linux/nitro_enclaves.h
13129 F:      samples/nitro_enclaves/
13130
13131 NOHZ, DYNTICKS SUPPORT
13132 M:      Frederic Weisbecker <fweisbec@gmail.com>
13133 M:      Thomas Gleixner <tglx@linutronix.de>
13134 M:      Ingo Molnar <mingo@kernel.org>
13135 L:      linux-kernel@vger.kernel.org
13136 S:      Maintained
13137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13138 F:      include/linux/sched/nohz.h
13139 F:      include/linux/tick.h
13140 F:      kernel/time/tick*.*
13141
13142 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13143 M:      Pavel Machek <pavel@ucw.cz>
13144 M:      Sakari Ailus <sakari.ailus@iki.fi>
13145 L:      linux-media@vger.kernel.org
13146 S:      Maintained
13147 F:      drivers/media/i2c/ad5820.c
13148 F:      drivers/media/i2c/et8ek8
13149
13150 NOKIA N900 POWER SUPPLY DRIVERS
13151 R:      Pali Rohár <pali@kernel.org>
13152 F:      drivers/power/supply/bq2415x_charger.c
13153 F:      drivers/power/supply/bq27xxx_battery.c
13154 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13155 F:      drivers/power/supply/isp1704_charger.c
13156 F:      drivers/power/supply/rx51_battery.c
13157 F:      include/linux/power/bq2415x_charger.h
13158 F:      include/linux/power/bq27xxx_battery.h
13159
13160 NOLIBC HEADER FILE
13161 M:      Willy Tarreau <w@1wt.eu>
13162 S:      Maintained
13163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13164 F:      tools/include/nolibc/
13165
13166 NSDEPS
13167 M:      Matthias Maennich <maennich@google.com>
13168 S:      Maintained
13169 F:      Documentation/core-api/symbol-namespaces.rst
13170 F:      scripts/nsdeps
13171
13172 NTB AMD DRIVER
13173 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13174 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13175 L:      linux-ntb@googlegroups.com
13176 S:      Supported
13177 F:      drivers/ntb/hw/amd/
13178
13179 NTB DRIVER CORE
13180 M:      Jon Mason <jdmason@kudzu.us>
13181 M:      Dave Jiang <dave.jiang@intel.com>
13182 M:      Allen Hubbe <allenbh@gmail.com>
13183 L:      linux-ntb@googlegroups.com
13184 S:      Supported
13185 W:      https://github.com/jonmason/ntb/wiki
13186 T:      git git://github.com/jonmason/ntb.git
13187 F:      drivers/net/ntb_netdev.c
13188 F:      drivers/ntb/
13189 F:      include/linux/ntb.h
13190 F:      include/linux/ntb_transport.h
13191 F:      tools/testing/selftests/ntb/
13192
13193 NTB IDT DRIVER
13194 M:      Serge Semin <fancer.lancer@gmail.com>
13195 L:      linux-ntb@googlegroups.com
13196 S:      Supported
13197 F:      drivers/ntb/hw/idt/
13198
13199 NTB INTEL DRIVER
13200 M:      Dave Jiang <dave.jiang@intel.com>
13201 L:      linux-ntb@googlegroups.com
13202 S:      Supported
13203 W:      https://github.com/davejiang/linux/wiki
13204 T:      git https://github.com/davejiang/linux.git
13205 F:      drivers/ntb/hw/intel/
13206
13207 NTFS FILESYSTEM
13208 M:      Anton Altaparmakov <anton@tuxera.com>
13209 L:      linux-ntfs-dev@lists.sourceforge.net
13210 S:      Supported
13211 W:      http://www.tuxera.com/
13212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13213 F:      Documentation/filesystems/ntfs.rst
13214 F:      fs/ntfs/
13215
13216 NUBUS SUBSYSTEM
13217 M:      Finn Thain <fthain@linux-m68k.org>
13218 L:      linux-m68k@lists.linux-m68k.org
13219 S:      Maintained
13220 F:      arch/*/include/asm/nubus.h
13221 F:      drivers/nubus/
13222 F:      include/linux/nubus.h
13223 F:      include/uapi/linux/nubus.h
13224
13225 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13226 M:      Antonino Daplas <adaplas@gmail.com>
13227 L:      linux-fbdev@vger.kernel.org
13228 S:      Maintained
13229 F:      drivers/video/fbdev/nvidia/
13230 F:      drivers/video/fbdev/riva/
13231
13232 NVM EXPRESS DRIVER
13233 M:      Keith Busch <kbusch@kernel.org>
13234 M:      Jens Axboe <axboe@fb.com>
13235 M:      Christoph Hellwig <hch@lst.de>
13236 M:      Sagi Grimberg <sagi@grimberg.me>
13237 L:      linux-nvme@lists.infradead.org
13238 S:      Supported
13239 W:      http://git.infradead.org/nvme.git
13240 T:      git://git.infradead.org/nvme.git
13241 F:      drivers/nvme/host/
13242 F:      include/linux/nvme.h
13243 F:      include/uapi/linux/nvme_ioctl.h
13244
13245 NVM EXPRESS FC TRANSPORT DRIVERS
13246 M:      James Smart <james.smart@broadcom.com>
13247 L:      linux-nvme@lists.infradead.org
13248 S:      Supported
13249 F:      drivers/nvme/host/fc.c
13250 F:      drivers/nvme/target/fc.c
13251 F:      drivers/nvme/target/fcloop.c
13252 F:      include/linux/nvme-fc-driver.h
13253 F:      include/linux/nvme-fc.h
13254
13255 NVM EXPRESS TARGET DRIVER
13256 M:      Christoph Hellwig <hch@lst.de>
13257 M:      Sagi Grimberg <sagi@grimberg.me>
13258 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
13259 L:      linux-nvme@lists.infradead.org
13260 S:      Supported
13261 W:      http://git.infradead.org/nvme.git
13262 T:      git://git.infradead.org/nvme.git
13263 F:      drivers/nvme/target/
13264
13265 NVMEM FRAMEWORK
13266 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13267 S:      Maintained
13268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13269 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13270 F:      Documentation/devicetree/bindings/nvmem/
13271 F:      drivers/nvmem/
13272 F:      include/linux/nvmem-consumer.h
13273 F:      include/linux/nvmem-provider.h
13274
13275 NXP C45 TJA11XX PHY DRIVER
13276 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13277 L:      netdev@vger.kernel.org
13278 S:      Maintained
13279 F:      drivers/net/phy/nxp-c45-tja11xx.c
13280
13281 NXP FSPI DRIVER
13282 M:      Ashish Kumar <ashish.kumar@nxp.com>
13283 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13284 L:      linux-spi@vger.kernel.org
13285 S:      Maintained
13286 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13287 F:      drivers/spi/spi-nxp-fspi.c
13288
13289 NXP FXAS21002C DRIVER
13290 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13291 L:      linux-iio@vger.kernel.org
13292 S:      Maintained
13293 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13294 F:      drivers/iio/gyro/fxas21002c.h
13295 F:      drivers/iio/gyro/fxas21002c_core.c
13296 F:      drivers/iio/gyro/fxas21002c_i2c.c
13297 F:      drivers/iio/gyro/fxas21002c_spi.c
13298
13299 NXP i.MX CLOCK DRIVERS
13300 M:      Abel Vesa <abel.vesa@nxp.com>
13301 L:      linux-clk@vger.kernel.org
13302 L:      linux-imx@nxp.com
13303 S:      Maintained
13304 F:      drivers/clk/imx/
13305
13306 NXP i.MX 8MQ DCSS DRIVER
13307 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13308 R:      Lucas Stach <l.stach@pengutronix.de>
13309 L:      dri-devel@lists.freedesktop.org
13310 S:      Maintained
13311 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13312 F:      drivers/gpu/drm/imx/dcss/
13313
13314 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13315 M:      Jagan Teki <jagan@amarulasolutions.com>
13316 S:      Maintained
13317 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13318 F:      drivers/regulator/pf8x00-regulator.c
13319
13320 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13321 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13322 L:      linux-kernel@vger.kernel.org
13323 S:      Maintained
13324 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13325 F:      drivers/extcon/extcon-ptn5150.c
13326
13327 NXP SGTL5000 DRIVER
13328 M:      Fabio Estevam <festevam@gmail.com>
13329 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13330 S:      Maintained
13331 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13332 F:      sound/soc/codecs/sgtl5000*
13333
13334 NXP SJA1105 ETHERNET SWITCH DRIVER
13335 M:      Vladimir Oltean <olteanv@gmail.com>
13336 L:      linux-kernel@vger.kernel.org
13337 S:      Maintained
13338 F:      drivers/net/dsa/sja1105
13339 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13340
13341 NXP TDA998X DRM DRIVER
13342 M:      Russell King <linux@armlinux.org.uk>
13343 S:      Maintained
13344 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13345 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13346 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13347 F:      include/drm/i2c/tda998x.h
13348 F:      include/dt-bindings/display/tda998x.h
13349 K:      "nxp,tda998x"
13350
13351 NXP TFA9879 DRIVER
13352 M:      Peter Rosin <peda@axentia.se>
13353 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13354 S:      Maintained
13355 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13356 F:      sound/soc/codecs/tfa9879*
13357
13358 NXP/Goodix TFA989X (TFA1) DRIVER
13359 M:      Stephan Gerhold <stephan@gerhold.net>
13360 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13361 S:      Maintained
13362 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13363 F:      sound/soc/codecs/tfa989x.c
13364
13365 NXP-NCI NFC DRIVER
13366 R:      Charles Gorand <charles.gorand@effinnov.com>
13367 L:      linux-nfc@lists.01.org (subscribers-only)
13368 S:      Supported
13369 F:      drivers/nfc/nxp-nci
13370
13371 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13372 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13373 R:      NXP Linux Team <linux-imx@nxp.com>
13374 L:      linux-media@vger.kernel.org
13375 S:      Maintained
13376 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13377 F:      drivers/media/platform/imx-jpeg
13378
13379 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13380 M:      Jonas Malaco <jonas@protocubo.io>
13381 L:      linux-hwmon@vger.kernel.org
13382 S:      Maintained
13383 F:      Documentation/hwmon/nzxt-kraken2.rst
13384 F:      drivers/hwmon/nzxt-kraken2.c
13385
13386 OBJAGG
13387 M:      Jiri Pirko <jiri@nvidia.com>
13388 L:      netdev@vger.kernel.org
13389 S:      Supported
13390 F:      include/linux/objagg.h
13391 F:      lib/objagg.c
13392 F:      lib/test_objagg.c
13393
13394 OBJTOOL
13395 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13396 M:      Peter Zijlstra <peterz@infradead.org>
13397 S:      Supported
13398 F:      tools/objtool/
13399 F:      include/linux/objtool.h
13400
13401 OCELOT ETHERNET SWITCH DRIVER
13402 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13403 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13404 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13405 M:      UNGLinuxDriver@microchip.com
13406 L:      netdev@vger.kernel.org
13407 S:      Supported
13408 F:      drivers/net/dsa/ocelot/*
13409 F:      drivers/net/ethernet/mscc/
13410 F:      include/soc/mscc/ocelot*
13411 F:      net/dsa/tag_ocelot.c
13412 F:      net/dsa/tag_ocelot_8021q.c
13413 F:      tools/testing/selftests/drivers/net/ocelot/*
13414
13415 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13416 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13417 M:      Andrew Donnellan <ajd@linux.ibm.com>
13418 L:      linuxppc-dev@lists.ozlabs.org
13419 S:      Supported
13420 F:      Documentation/userspace-api/accelerators/ocxl.rst
13421 F:      arch/powerpc/include/asm/pnv-ocxl.h
13422 F:      arch/powerpc/platforms/powernv/ocxl.c
13423 F:      drivers/misc/ocxl/
13424 F:      include/misc/ocxl*
13425 F:      include/uapi/misc/ocxl.h
13426
13427 OMAP AUDIO SUPPORT
13428 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13429 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13430 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13431 L:      linux-omap@vger.kernel.org
13432 S:      Maintained
13433 F:      sound/soc/ti/n810.c
13434 F:      sound/soc/ti/omap*
13435 F:      sound/soc/ti/rx51.c
13436 F:      sound/soc/ti/sdma-pcm.*
13437
13438 OMAP CLOCK FRAMEWORK SUPPORT
13439 M:      Paul Walmsley <paul@pwsan.com>
13440 L:      linux-omap@vger.kernel.org
13441 S:      Maintained
13442 F:      arch/arm/*omap*/*clock*
13443
13444 OMAP DEVICE TREE SUPPORT
13445 M:      Benoît Cousson <bcousson@baylibre.com>
13446 M:      Tony Lindgren <tony@atomide.com>
13447 L:      linux-omap@vger.kernel.org
13448 L:      devicetree@vger.kernel.org
13449 S:      Maintained
13450 F:      arch/arm/boot/dts/*am3*
13451 F:      arch/arm/boot/dts/*am4*
13452 F:      arch/arm/boot/dts/*am5*
13453 F:      arch/arm/boot/dts/*dra7*
13454 F:      arch/arm/boot/dts/*omap*
13455 F:      arch/arm/boot/dts/logicpd-som-lv*
13456 F:      arch/arm/boot/dts/logicpd-torpedo*
13457
13458 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13459 L:      linux-omap@vger.kernel.org
13460 L:      linux-fbdev@vger.kernel.org
13461 S:      Orphan
13462 F:      Documentation/arm/omap/dss.rst
13463 F:      drivers/video/fbdev/omap2/
13464
13465 OMAP FRAMEBUFFER SUPPORT
13466 L:      linux-fbdev@vger.kernel.org
13467 L:      linux-omap@vger.kernel.org
13468 S:      Orphan
13469 F:      drivers/video/fbdev/omap/
13470
13471 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13472 M:      Roger Quadros <rogerq@kernel.org>
13473 M:      Tony Lindgren <tony@atomide.com>
13474 L:      linux-omap@vger.kernel.org
13475 S:      Maintained
13476 F:      arch/arm/mach-omap2/*gpmc*
13477 F:      drivers/memory/omap-gpmc.c
13478
13479 OMAP GPIO DRIVER
13480 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13481 M:      Santosh Shilimkar <ssantosh@kernel.org>
13482 M:      Kevin Hilman <khilman@kernel.org>
13483 L:      linux-omap@vger.kernel.org
13484 S:      Maintained
13485 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13486 F:      drivers/gpio/gpio-omap.c
13487
13488 OMAP HARDWARE SPINLOCK SUPPORT
13489 M:      Ohad Ben-Cohen <ohad@wizery.com>
13490 L:      linux-omap@vger.kernel.org
13491 S:      Maintained
13492 F:      drivers/hwspinlock/omap_hwspinlock.c
13493
13494 OMAP HS MMC SUPPORT
13495 L:      linux-mmc@vger.kernel.org
13496 L:      linux-omap@vger.kernel.org
13497 S:      Orphan
13498 F:      drivers/mmc/host/omap_hsmmc.c
13499
13500 OMAP HWMOD DATA
13501 M:      Paul Walmsley <paul@pwsan.com>
13502 L:      linux-omap@vger.kernel.org
13503 S:      Maintained
13504 F:      arch/arm/mach-omap2/omap_hwmod*data*
13505
13506 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
13507 M:      Benoît Cousson <bcousson@baylibre.com>
13508 L:      linux-omap@vger.kernel.org
13509 S:      Maintained
13510 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
13511
13512 OMAP HWMOD SUPPORT
13513 M:      Benoît Cousson <bcousson@baylibre.com>
13514 M:      Paul Walmsley <paul@pwsan.com>
13515 L:      linux-omap@vger.kernel.org
13516 S:      Maintained
13517 F:      arch/arm/mach-omap2/omap_hwmod.*
13518
13519 OMAP I2C DRIVER
13520 M:      Vignesh R <vigneshr@ti.com>
13521 L:      linux-omap@vger.kernel.org
13522 L:      linux-i2c@vger.kernel.org
13523 S:      Maintained
13524 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13525 F:      drivers/i2c/busses/i2c-omap.c
13526
13527 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13528 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13529 L:      linux-media@vger.kernel.org
13530 S:      Maintained
13531 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13532 F:      drivers/media/platform/omap3isp/
13533 F:      drivers/staging/media/omap4iss/
13534
13535 OMAP MMC SUPPORT
13536 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13537 L:      linux-omap@vger.kernel.org
13538 S:      Odd Fixes
13539 F:      drivers/mmc/host/omap.c
13540
13541 OMAP POWER MANAGEMENT SUPPORT
13542 M:      Kevin Hilman <khilman@kernel.org>
13543 L:      linux-omap@vger.kernel.org
13544 S:      Maintained
13545 F:      arch/arm/*omap*/*pm*
13546 F:      drivers/cpufreq/omap-cpufreq.c
13547
13548 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13549 M:      Rajendra Nayak <rnayak@codeaurora.org>
13550 M:      Paul Walmsley <paul@pwsan.com>
13551 L:      linux-omap@vger.kernel.org
13552 S:      Maintained
13553 F:      arch/arm/mach-omap2/prm*
13554
13555 OMAP RANDOM NUMBER GENERATOR SUPPORT
13556 M:      Deepak Saxena <dsaxena@plexity.net>
13557 S:      Maintained
13558 F:      drivers/char/hw_random/omap-rng.c
13559
13560 OMAP USB SUPPORT
13561 L:      linux-usb@vger.kernel.org
13562 L:      linux-omap@vger.kernel.org
13563 S:      Orphan
13564 F:      arch/arm/*omap*/usb*
13565 F:      drivers/usb/*/*omap*
13566
13567 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13568 M:      Mark Jackson <mpfj@newflow.co.uk>
13569 L:      linux-omap@vger.kernel.org
13570 S:      Maintained
13571 F:      arch/arm/boot/dts/am335x-nano.dts
13572
13573 OMAP1 SUPPORT
13574 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13575 M:      Tony Lindgren <tony@atomide.com>
13576 L:      linux-omap@vger.kernel.org
13577 S:      Maintained
13578 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13580 F:      arch/arm/configs/omap1_defconfig
13581 F:      arch/arm/mach-omap1/
13582 F:      arch/arm/plat-omap/
13583 F:      drivers/i2c/busses/i2c-omap.c
13584 F:      include/linux/platform_data/ams-delta-fiq.h
13585 F:      include/linux/platform_data/i2c-omap.h
13586
13587 OMAP2+ SUPPORT
13588 M:      Tony Lindgren <tony@atomide.com>
13589 L:      linux-omap@vger.kernel.org
13590 S:      Maintained
13591 W:      http://www.muru.com/linux/omap/
13592 W:      http://linux.omap.com/
13593 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13595 F:      arch/arm/configs/omap2plus_defconfig
13596 F:      arch/arm/mach-omap2/
13597 F:      arch/arm/plat-omap/
13598 F:      drivers/bus/ti-sysc.c
13599 F:      drivers/i2c/busses/i2c-omap.c
13600 F:      drivers/irqchip/irq-omap-intc.c
13601 F:      drivers/mfd/*omap*.c
13602 F:      drivers/mfd/menelaus.c
13603 F:      drivers/mfd/palmas.c
13604 F:      drivers/mfd/tps65217.c
13605 F:      drivers/mfd/tps65218.c
13606 F:      drivers/mfd/tps65910.c
13607 F:      drivers/mfd/twl-core.[ch]
13608 F:      drivers/mfd/twl4030*.c
13609 F:      drivers/mfd/twl6030*.c
13610 F:      drivers/mfd/twl6040*.c
13611 F:      drivers/regulator/palmas-regulator*.c
13612 F:      drivers/regulator/pbias-regulator.c
13613 F:      drivers/regulator/tps65217-regulator.c
13614 F:      drivers/regulator/tps65218-regulator.c
13615 F:      drivers/regulator/tps65910-regulator.c
13616 F:      drivers/regulator/twl-regulator.c
13617 F:      drivers/regulator/twl6030-regulator.c
13618 F:      include/linux/platform_data/i2c-omap.h
13619 F:      include/linux/platform_data/ti-sysc.h
13620
13621 OMFS FILESYSTEM
13622 M:      Bob Copeland <me@bobcopeland.com>
13623 L:      linux-karma-devel@lists.sourceforge.net
13624 S:      Maintained
13625 F:      Documentation/filesystems/omfs.rst
13626 F:      fs/omfs/
13627
13628 OMNIKEY CARDMAN 4000 DRIVER
13629 M:      Harald Welte <laforge@gnumonks.org>
13630 S:      Maintained
13631 F:      drivers/char/pcmcia/cm4000_cs.c
13632 F:      include/linux/cm4000_cs.h
13633 F:      include/uapi/linux/cm4000_cs.h
13634
13635 OMNIKEY CARDMAN 4040 DRIVER
13636 M:      Harald Welte <laforge@gnumonks.org>
13637 S:      Maintained
13638 F:      drivers/char/pcmcia/cm4040_cs.*
13639
13640 OMNIVISION OV02A10 SENSOR DRIVER
13641 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13642 L:      linux-media@vger.kernel.org
13643 S:      Maintained
13644 T:      git git://linuxtv.org/media_tree.git
13645 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13646 F:      drivers/media/i2c/ov02a10.c
13647
13648 OMNIVISION OV13858 SENSOR DRIVER
13649 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13650 L:      linux-media@vger.kernel.org
13651 S:      Maintained
13652 T:      git git://linuxtv.org/media_tree.git
13653 F:      drivers/media/i2c/ov13858.c
13654
13655 OMNIVISION OV2680 SENSOR DRIVER
13656 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13657 L:      linux-media@vger.kernel.org
13658 S:      Maintained
13659 T:      git git://linuxtv.org/media_tree.git
13660 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13661 F:      drivers/media/i2c/ov2680.c
13662
13663 OMNIVISION OV2685 SENSOR DRIVER
13664 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13665 L:      linux-media@vger.kernel.org
13666 S:      Maintained
13667 T:      git git://linuxtv.org/media_tree.git
13668 F:      drivers/media/i2c/ov2685.c
13669
13670 OMNIVISION OV2740 SENSOR DRIVER
13671 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13672 R:      Shawn Tu <shawnx.tu@intel.com>
13673 R:      Bingbu Cao <bingbu.cao@intel.com>
13674 L:      linux-media@vger.kernel.org
13675 S:      Maintained
13676 T:      git git://linuxtv.org/media_tree.git
13677 F:      drivers/media/i2c/ov2740.c
13678
13679 OMNIVISION OV5640 SENSOR DRIVER
13680 M:      Steve Longerbeam <slongerbeam@gmail.com>
13681 L:      linux-media@vger.kernel.org
13682 S:      Maintained
13683 T:      git git://linuxtv.org/media_tree.git
13684 F:      drivers/media/i2c/ov5640.c
13685
13686 OMNIVISION OV5647 SENSOR DRIVER
13687 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13688 M:      Jacopo Mondi <jacopo@jmondi.org>
13689 L:      linux-media@vger.kernel.org
13690 S:      Maintained
13691 T:      git git://linuxtv.org/media_tree.git
13692 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13693 F:      drivers/media/i2c/ov5647.c
13694
13695 OMNIVISION OV5670 SENSOR DRIVER
13696 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13697 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13698 L:      linux-media@vger.kernel.org
13699 S:      Maintained
13700 T:      git git://linuxtv.org/media_tree.git
13701 F:      drivers/media/i2c/ov5670.c
13702
13703 OMNIVISION OV5675 SENSOR DRIVER
13704 M:      Shawn Tu <shawnx.tu@intel.com>
13705 L:      linux-media@vger.kernel.org
13706 S:      Maintained
13707 T:      git git://linuxtv.org/media_tree.git
13708 F:      drivers/media/i2c/ov5675.c
13709
13710 OMNIVISION OV5695 SENSOR DRIVER
13711 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13712 L:      linux-media@vger.kernel.org
13713 S:      Maintained
13714 T:      git git://linuxtv.org/media_tree.git
13715 F:      drivers/media/i2c/ov5695.c
13716
13717 OMNIVISION OV7670 SENSOR DRIVER
13718 L:      linux-media@vger.kernel.org
13719 S:      Orphan
13720 T:      git git://linuxtv.org/media_tree.git
13721 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13722 F:      drivers/media/i2c/ov7670.c
13723
13724 OMNIVISION OV772x SENSOR DRIVER
13725 M:      Jacopo Mondi <jacopo@jmondi.org>
13726 L:      linux-media@vger.kernel.org
13727 S:      Odd fixes
13728 T:      git git://linuxtv.org/media_tree.git
13729 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13730 F:      drivers/media/i2c/ov772x.c
13731 F:      include/media/i2c/ov772x.h
13732
13733 OMNIVISION OV7740 SENSOR DRIVER
13734 M:      Wenyou Yang <wenyou.yang@microchip.com>
13735 L:      linux-media@vger.kernel.org
13736 S:      Maintained
13737 T:      git git://linuxtv.org/media_tree.git
13738 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13739 F:      drivers/media/i2c/ov7740.c
13740
13741 OMNIVISION OV8856 SENSOR DRIVER
13742 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
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/ov8856.yaml
13747 F:      drivers/media/i2c/ov8856.c
13748
13749 OMNIVISION OV9640 SENSOR DRIVER
13750 M:      Petr Cvek <petrcvekcz@gmail.com>
13751 L:      linux-media@vger.kernel.org
13752 S:      Maintained
13753 F:      drivers/media/i2c/ov9640.*
13754
13755 OMNIVISION OV9650 SENSOR DRIVER
13756 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13757 R:      Akinobu Mita <akinobu.mita@gmail.com>
13758 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13759 L:      linux-media@vger.kernel.org
13760 S:      Maintained
13761 T:      git git://linuxtv.org/media_tree.git
13762 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13763 F:      drivers/media/i2c/ov9650.c
13764
13765 OMNIVISION OV9734 SENSOR DRIVER
13766 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13767 R:      Bingbu Cao <bingbu.cao@intel.com>
13768 L:      linux-media@vger.kernel.org
13769 S:      Maintained
13770 T:      git git://linuxtv.org/media_tree.git
13771 F:      drivers/media/i2c/ov9734.c
13772
13773 ONENAND FLASH DRIVER
13774 M:      Kyungmin Park <kyungmin.park@samsung.com>
13775 L:      linux-mtd@lists.infradead.org
13776 S:      Maintained
13777 F:      drivers/mtd/nand/onenand/
13778 F:      include/linux/mtd/onenand*.h
13779
13780 ONION OMEGA2+ BOARD
13781 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13782 L:      linux-mips@vger.kernel.org
13783 S:      Maintained
13784 F:      arch/mips/boot/dts/ralink/omega2p.dts
13785
13786 OP-TEE DRIVER
13787 M:      Jens Wiklander <jens.wiklander@linaro.org>
13788 L:      op-tee@lists.trustedfirmware.org
13789 S:      Maintained
13790 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13791 F:      drivers/tee/optee/
13792
13793 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13794 M:      Sumit Garg <sumit.garg@linaro.org>
13795 L:      op-tee@lists.trustedfirmware.org
13796 S:      Maintained
13797 F:      drivers/char/hw_random/optee-rng.c
13798
13799 OPA-VNIC DRIVER
13800 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13801 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13802 L:      linux-rdma@vger.kernel.org
13803 S:      Supported
13804 F:      drivers/infiniband/ulp/opa_vnic
13805
13806 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13807 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13808 M:      Frank Rowand <frowand.list@gmail.com>
13809 L:      devicetree@vger.kernel.org
13810 S:      Maintained
13811 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13812 F:      Documentation/devicetree/overlay-notes.rst
13813 F:      drivers/of/overlay.c
13814 F:      drivers/of/resolver.c
13815 K:      of_overlay_notifier_
13816
13817 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13818 M:      Rob Herring <robh+dt@kernel.org>
13819 M:      Frank Rowand <frowand.list@gmail.com>
13820 L:      devicetree@vger.kernel.org
13821 S:      Maintained
13822 W:      http://www.devicetree.org/
13823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13824 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13825 F:      drivers/of/
13826 F:      include/linux/of*.h
13827 F:      scripts/dtc/
13828
13829 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13830 M:      Rob Herring <robh+dt@kernel.org>
13831 L:      devicetree@vger.kernel.org
13832 S:      Maintained
13833 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13835 F:      Documentation/devicetree/
13836 F:      arch/*/boot/dts/
13837 F:      include/dt-bindings/
13838
13839 OPENCORES I2C BUS DRIVER
13840 M:      Peter Korsgaard <peter@korsgaard.com>
13841 M:      Andrew Lunn <andrew@lunn.ch>
13842 L:      linux-i2c@vger.kernel.org
13843 S:      Maintained
13844 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13845 F:      Documentation/i2c/busses/i2c-ocores.rst
13846 F:      drivers/i2c/busses/i2c-ocores.c
13847 F:      include/linux/platform_data/i2c-ocores.h
13848
13849 OPENRISC ARCHITECTURE
13850 M:      Jonas Bonn <jonas@southpole.se>
13851 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13852 M:      Stafford Horne <shorne@gmail.com>
13853 L:      openrisc@lists.librecores.org
13854 S:      Maintained
13855 W:      http://openrisc.io
13856 T:      git git://github.com/openrisc/linux.git
13857 F:      Documentation/devicetree/bindings/openrisc/
13858 F:      Documentation/openrisc/
13859 F:      arch/openrisc/
13860 F:      drivers/irqchip/irq-ompic.c
13861 F:      drivers/irqchip/irq-or1k-*
13862
13863 OPENVSWITCH
13864 M:      Pravin B Shelar <pshelar@ovn.org>
13865 L:      netdev@vger.kernel.org
13866 L:      dev@openvswitch.org
13867 S:      Maintained
13868 W:      http://openvswitch.org
13869 F:      include/uapi/linux/openvswitch.h
13870 F:      net/openvswitch/
13871
13872 OPERATING PERFORMANCE POINTS (OPP)
13873 M:      Viresh Kumar <vireshk@kernel.org>
13874 M:      Nishanth Menon <nm@ti.com>
13875 M:      Stephen Boyd <sboyd@kernel.org>
13876 L:      linux-pm@vger.kernel.org
13877 S:      Maintained
13878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13879 F:      Documentation/devicetree/bindings/opp/
13880 F:      Documentation/power/opp.rst
13881 F:      drivers/opp/
13882 F:      include/linux/pm_opp.h
13883
13884 OPL4 DRIVER
13885 M:      Clemens Ladisch <clemens@ladisch.de>
13886 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13887 S:      Maintained
13888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13889 F:      sound/drivers/opl4/
13890
13891 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13892 M:      Mark Fasheh <mark@fasheh.com>
13893 M:      Joel Becker <jlbec@evilplan.org>
13894 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13895 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13896 S:      Supported
13897 W:      http://ocfs2.wiki.kernel.org
13898 F:      Documentation/filesystems/dlmfs.rst
13899 F:      Documentation/filesystems/ocfs2.rst
13900 F:      fs/ocfs2/
13901
13902 ORANGEFS FILESYSTEM
13903 M:      Mike Marshall <hubcap@omnibond.com>
13904 R:      Martin Brandenburg <martin@omnibond.com>
13905 L:      devel@lists.orangefs.org
13906 S:      Supported
13907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13908 F:      Documentation/filesystems/orangefs.rst
13909 F:      fs/orangefs/
13910
13911 ORINOCO DRIVER
13912 L:      linux-wireless@vger.kernel.org
13913 S:      Orphan
13914 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13915 W:      http://www.nongnu.org/orinoco/
13916 F:      drivers/net/wireless/intersil/orinoco/
13917
13918 OV2659 OMNIVISION SENSOR DRIVER
13919 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13920 L:      linux-media@vger.kernel.org
13921 S:      Maintained
13922 W:      https://linuxtv.org
13923 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13924 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13925 F:      drivers/media/i2c/ov2659.c
13926 F:      include/media/i2c/ov2659.h
13927
13928 OVERLAY FILESYSTEM
13929 M:      Miklos Szeredi <miklos@szeredi.hu>
13930 L:      linux-unionfs@vger.kernel.org
13931 S:      Supported
13932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13933 F:      Documentation/filesystems/overlayfs.rst
13934 F:      fs/overlayfs/
13935
13936 P54 WIRELESS DRIVER
13937 M:      Christian Lamparter <chunkeey@googlemail.com>
13938 L:      linux-wireless@vger.kernel.org
13939 S:      Maintained
13940 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13941 F:      drivers/net/wireless/intersil/p54/
13942
13943 PACKING
13944 M:      Vladimir Oltean <olteanv@gmail.com>
13945 L:      netdev@vger.kernel.org
13946 S:      Supported
13947 F:      Documentation/core-api/packing.rst
13948 F:      include/linux/packing.h
13949 F:      lib/packing.c
13950
13951 PADATA PARALLEL EXECUTION MECHANISM
13952 M:      Steffen Klassert <steffen.klassert@secunet.com>
13953 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13954 L:      linux-crypto@vger.kernel.org
13955 L:      linux-kernel@vger.kernel.org
13956 S:      Maintained
13957 F:      Documentation/core-api/padata.rst
13958 F:      include/linux/padata.h
13959 F:      kernel/padata.c
13960
13961 PAGE POOL
13962 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13963 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13964 L:      netdev@vger.kernel.org
13965 S:      Supported
13966 F:      Documentation/networking/page_pool.rst
13967 F:      include/net/page_pool.h
13968 F:      include/trace/events/page_pool.h
13969 F:      net/core/page_pool.c
13970
13971 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13972 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13973 L:      platform-driver-x86@vger.kernel.org
13974 S:      Maintained
13975 F:      drivers/platform/x86/panasonic-laptop.c
13976
13977 PARALLAX PING IIO SENSOR DRIVER
13978 M:      Andreas Klinger <ak@it-klinger.de>
13979 L:      linux-iio@vger.kernel.org
13980 S:      Maintained
13981 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13982 F:      drivers/iio/proximity/ping.c
13983
13984 PARALLEL LCD/KEYPAD PANEL DRIVER
13985 M:      Willy Tarreau <willy@haproxy.com>
13986 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13987 S:      Odd Fixes
13988 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13989 F:      drivers/auxdisplay/panel.c
13990
13991 PARALLEL PORT SUBSYSTEM
13992 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13993 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13994 L:      linux-parport@lists.infradead.org (subscribers-only)
13995 S:      Maintained
13996 F:      Documentation/driver-api/parport*.rst
13997 F:      drivers/char/ppdev.c
13998 F:      drivers/parport/
13999 F:      include/linux/parport*.h
14000 F:      include/uapi/linux/ppdev.h
14001
14002 PARAVIRT_OPS INTERFACE
14003 M:      Juergen Gross <jgross@suse.com>
14004 M:      Deep Shah <sdeep@vmware.com>
14005 M:      "VMware, Inc." <pv-drivers@vmware.com>
14006 L:      virtualization@lists.linux-foundation.org
14007 S:      Supported
14008 F:      Documentation/virt/paravirt_ops.rst
14009 F:      arch/*/include/asm/paravirt*.h
14010 F:      arch/*/kernel/paravirt*
14011 F:      include/linux/hypervisor.h
14012
14013 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14014 M:      Tim Waugh <tim@cyberelk.net>
14015 L:      linux-parport@lists.infradead.org (subscribers-only)
14016 S:      Maintained
14017 F:      Documentation/admin-guide/blockdev/paride.rst
14018 F:      drivers/block/paride/
14019
14020 PARISC ARCHITECTURE
14021 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14022 M:      Helge Deller <deller@gmx.de>
14023 L:      linux-parisc@vger.kernel.org
14024 S:      Maintained
14025 W:      https://parisc.wiki.kernel.org
14026 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14029 F:      Documentation/parisc/
14030 F:      arch/parisc/
14031 F:      drivers/char/agp/parisc-agp.c
14032 F:      drivers/input/misc/hp_sdc_rtc.c
14033 F:      drivers/input/serio/gscps2.c
14034 F:      drivers/input/serio/hp_sdc*
14035 F:      drivers/parisc/
14036 F:      drivers/parport/parport_gsc.*
14037 F:      drivers/tty/serial/8250/8250_gsc.c
14038 F:      drivers/video/console/sti*
14039 F:      drivers/video/fbdev/sti*
14040 F:      drivers/video/logo/logo_parisc*
14041 F:      include/linux/hp_sdc.h
14042
14043 PARMAN
14044 M:      Jiri Pirko <jiri@nvidia.com>
14045 L:      netdev@vger.kernel.org
14046 S:      Supported
14047 F:      include/linux/parman.h
14048 F:      lib/parman.c
14049 F:      lib/test_parman.c
14050
14051 PC ENGINES APU BOARD DRIVER
14052 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14053 S:      Maintained
14054 F:      drivers/platform/x86/pcengines-apuv2.c
14055
14056 PC87360 HARDWARE MONITORING DRIVER
14057 M:      Jim Cromie <jim.cromie@gmail.com>
14058 L:      linux-hwmon@vger.kernel.org
14059 S:      Maintained
14060 F:      Documentation/hwmon/pc87360.rst
14061 F:      drivers/hwmon/pc87360.c
14062
14063 PC8736x GPIO DRIVER
14064 M:      Jim Cromie <jim.cromie@gmail.com>
14065 S:      Maintained
14066 F:      drivers/char/pc8736x_gpio.c
14067
14068 PC87427 HARDWARE MONITORING DRIVER
14069 M:      Jean Delvare <jdelvare@suse.com>
14070 L:      linux-hwmon@vger.kernel.org
14071 S:      Maintained
14072 F:      Documentation/hwmon/pc87427.rst
14073 F:      drivers/hwmon/pc87427.c
14074
14075 PCA9532 LED DRIVER
14076 M:      Riku Voipio <riku.voipio@iki.fi>
14077 S:      Maintained
14078 F:      drivers/leds/leds-pca9532.c
14079 F:      include/linux/leds-pca9532.h
14080
14081 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14082 M:      Guenter Roeck <linux@roeck-us.net>
14083 L:      linux-i2c@vger.kernel.org
14084 S:      Maintained
14085 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14086
14087 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14088 M:      Khalid Aziz <khalid@gonehiking.org>
14089 S:      Maintained
14090 F:      drivers/firmware/pcdp.*
14091
14092 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14093 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14094 M:      Pali Rohár <pali@kernel.org>
14095 L:      linux-pci@vger.kernel.org
14096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14097 S:      Maintained
14098 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14099 F:      drivers/pci/controller/pci-aardvark.c
14100
14101 PCI DRIVER FOR ALTERA PCIE IP
14102 M:      Ley Foon Tan <ley.foon.tan@intel.com>
14103 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
14104 L:      linux-pci@vger.kernel.org
14105 S:      Supported
14106 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14107 F:      drivers/pci/controller/pcie-altera.c
14108
14109 PCI DRIVER FOR APPLIEDMICRO XGENE
14110 M:      Toan Le <toan@os.amperecomputing.com>
14111 L:      linux-pci@vger.kernel.org
14112 L:      linux-arm-kernel@lists.infradead.org
14113 S:      Maintained
14114 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14115 F:      drivers/pci/controller/pci-xgene.c
14116
14117 PCI DRIVER FOR ARM VERSATILE PLATFORM
14118 M:      Rob Herring <robh@kernel.org>
14119 L:      linux-pci@vger.kernel.org
14120 L:      linux-arm-kernel@lists.infradead.org
14121 S:      Maintained
14122 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14123 F:      drivers/pci/controller/pci-versatile.c
14124
14125 PCI DRIVER FOR ARMADA 8K
14126 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14127 L:      linux-pci@vger.kernel.org
14128 L:      linux-arm-kernel@lists.infradead.org
14129 S:      Maintained
14130 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14131 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14132
14133 PCI DRIVER FOR CADENCE PCIE IP
14134 M:      Tom Joseph <tjoseph@cadence.com>
14135 L:      linux-pci@vger.kernel.org
14136 S:      Maintained
14137 F:      Documentation/devicetree/bindings/pci/cdns,*
14138 F:      drivers/pci/controller/cadence/
14139
14140 PCI DRIVER FOR FREESCALE LAYERSCAPE
14141 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14142 M:      Mingkai Hu <mingkai.hu@nxp.com>
14143 M:      Roy Zang <roy.zang@nxp.com>
14144 L:      linuxppc-dev@lists.ozlabs.org
14145 L:      linux-pci@vger.kernel.org
14146 L:      linux-arm-kernel@lists.infradead.org
14147 S:      Maintained
14148 F:      drivers/pci/controller/dwc/*layerscape*
14149
14150 PCI DRIVER FOR GENERIC OF HOSTS
14151 M:      Will Deacon <will@kernel.org>
14152 L:      linux-pci@vger.kernel.org
14153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14154 S:      Maintained
14155 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14156 F:      drivers/pci/controller/pci-host-common.c
14157 F:      drivers/pci/controller/pci-host-generic.c
14158
14159 PCI DRIVER FOR IMX6
14160 M:      Richard Zhu <hongxing.zhu@nxp.com>
14161 M:      Lucas Stach <l.stach@pengutronix.de>
14162 L:      linux-pci@vger.kernel.org
14163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14164 S:      Maintained
14165 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
14166 F:      drivers/pci/controller/dwc/*imx6*
14167
14168 PCI DRIVER FOR FU740
14169 M:      Paul Walmsley <paul.walmsley@sifive.com>
14170 M:      Greentime Hu <greentime.hu@sifive.com>
14171 L:      linux-pci@vger.kernel.org
14172 S:      Maintained
14173 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14174 F:      drivers/pci/controller/dwc/pcie-fu740.c
14175
14176 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14177 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14178 L:      linux-pci@vger.kernel.org
14179 S:      Supported
14180 F:      drivers/pci/controller/vmd.c
14181
14182 PCI DRIVER FOR MICROSEMI SWITCHTEC
14183 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14184 M:      Logan Gunthorpe <logang@deltatee.com>
14185 L:      linux-pci@vger.kernel.org
14186 S:      Maintained
14187 F:      Documentation/ABI/testing/sysfs-class-switchtec
14188 F:      Documentation/driver-api/switchtec.rst
14189 F:      drivers/ntb/hw/mscc/
14190 F:      drivers/pci/switch/switchtec*
14191 F:      include/linux/switchtec.h
14192 F:      include/uapi/linux/switchtec_ioctl.h
14193
14194 PCI DRIVER FOR MOBIVEIL PCIE IP
14195 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14196 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14197 L:      linux-pci@vger.kernel.org
14198 S:      Supported
14199 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14200 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14201
14202 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14203 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14204 L:      linux-pci@vger.kernel.org
14205 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14206 S:      Maintained
14207 F:      drivers/pci/controller/*mvebu*
14208
14209 PCI DRIVER FOR NVIDIA TEGRA
14210 M:      Thierry Reding <thierry.reding@gmail.com>
14211 L:      linux-tegra@vger.kernel.org
14212 L:      linux-pci@vger.kernel.org
14213 S:      Supported
14214 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14215 F:      drivers/pci/controller/pci-tegra.c
14216
14217 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14218 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14219 L:      linux-pci@vger.kernel.org
14220 L:      linux-arm-kernel@lists.infradead.org
14221 S:      Maintained
14222 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14223 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14224
14225 PCI DRIVER FOR RENESAS R-CAR
14226 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14227 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14228 L:      linux-pci@vger.kernel.org
14229 L:      linux-renesas-soc@vger.kernel.org
14230 S:      Maintained
14231 F:      Documentation/devicetree/bindings/pci/*rcar*
14232 F:      drivers/pci/controller/*rcar*
14233
14234 PCI DRIVER FOR SAMSUNG EXYNOS
14235 M:      Jingoo Han <jingoohan1@gmail.com>
14236 L:      linux-pci@vger.kernel.org
14237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14238 L:      linux-samsung-soc@vger.kernel.org
14239 S:      Maintained
14240 F:      drivers/pci/controller/dwc/pci-exynos.c
14241
14242 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14243 M:      Jingoo Han <jingoohan1@gmail.com>
14244 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14245 L:      linux-pci@vger.kernel.org
14246 S:      Maintained
14247 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
14248 F:      drivers/pci/controller/dwc/*designware*
14249
14250 PCI DRIVER FOR TI DRA7XX/J721E
14251 M:      Kishon Vijay Abraham I <kishon@ti.com>
14252 L:      linux-omap@vger.kernel.org
14253 L:      linux-pci@vger.kernel.org
14254 L:      linux-arm-kernel@lists.infradead.org
14255 S:      Supported
14256 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14257 F:      drivers/pci/controller/cadence/pci-j721e.c
14258 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14259
14260 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14261 M:      Linus Walleij <linus.walleij@linaro.org>
14262 L:      linux-pci@vger.kernel.org
14263 S:      Maintained
14264 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14265 F:      drivers/pci/controller/pci-v3-semi.c
14266
14267 PCI ENDPOINT SUBSYSTEM
14268 M:      Kishon Vijay Abraham I <kishon@ti.com>
14269 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14270 R:      Krzysztof Wilczyński <kw@linux.com>
14271 L:      linux-pci@vger.kernel.org
14272 S:      Supported
14273 F:      Documentation/PCI/endpoint/*
14274 F:      Documentation/misc-devices/pci-endpoint-test.rst
14275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14276 F:      drivers/misc/pci_endpoint_test.c
14277 F:      drivers/pci/endpoint/
14278 F:      tools/pci/
14279
14280 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14281 M:      Russell Currey <ruscur@russell.cc>
14282 M:      Oliver O'Halloran <oohall@gmail.com>
14283 L:      linuxppc-dev@lists.ozlabs.org
14284 S:      Supported
14285 F:      Documentation/PCI/pci-error-recovery.rst
14286 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14287 F:      arch/powerpc/include/*/eeh*.h
14288 F:      arch/powerpc/kernel/eeh*.c
14289 F:      arch/powerpc/platforms/*/eeh*.c
14290 F:      drivers/pci/pcie/aer.c
14291 F:      drivers/pci/pcie/dpc.c
14292 F:      drivers/pci/pcie/err.c
14293
14294 PCI ERROR RECOVERY
14295 M:      Linas Vepstas <linasvepstas@gmail.com>
14296 L:      linux-pci@vger.kernel.org
14297 S:      Supported
14298 F:      Documentation/PCI/pci-error-recovery.rst
14299
14300 PCI MSI DRIVER FOR ALTERA MSI IP
14301 M:      Ley Foon Tan <ley.foon.tan@intel.com>
14302 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
14303 L:      linux-pci@vger.kernel.org
14304 S:      Supported
14305 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14306 F:      drivers/pci/controller/pcie-altera-msi.c
14307
14308 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14309 M:      Toan Le <toan@os.amperecomputing.com>
14310 L:      linux-pci@vger.kernel.org
14311 L:      linux-arm-kernel@lists.infradead.org
14312 S:      Maintained
14313 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14314 F:      drivers/pci/controller/pci-xgene-msi.c
14315
14316 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14317 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14318 R:      Rob Herring <robh@kernel.org>
14319 R:      Krzysztof Wilczyński <kw@linux.com>
14320 L:      linux-pci@vger.kernel.org
14321 S:      Supported
14322 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14324 F:      drivers/pci/controller/
14325
14326 PCI SUBSYSTEM
14327 M:      Bjorn Helgaas <bhelgaas@google.com>
14328 L:      linux-pci@vger.kernel.org
14329 S:      Supported
14330 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14332 F:      Documentation/PCI/
14333 F:      Documentation/devicetree/bindings/pci/
14334 F:      arch/x86/kernel/early-quirks.c
14335 F:      arch/x86/kernel/quirks.c
14336 F:      arch/x86/pci/
14337 F:      drivers/acpi/pci*
14338 F:      drivers/pci/
14339 F:      include/asm-generic/pci*
14340 F:      include/linux/of_pci.h
14341 F:      include/linux/pci*
14342 F:      include/uapi/linux/pci*
14343 F:      lib/pci*
14344
14345 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14346 M:      Jonathan Chocron <jonnyc@amazon.com>
14347 L:      linux-pci@vger.kernel.org
14348 S:      Maintained
14349 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14350 F:      drivers/pci/controller/dwc/pcie-al.c
14351
14352 PCIE DRIVER FOR AMLOGIC MESON
14353 M:      Yue Wang <yue.wang@Amlogic.com>
14354 L:      linux-pci@vger.kernel.org
14355 L:      linux-amlogic@lists.infradead.org
14356 S:      Maintained
14357 F:      drivers/pci/controller/dwc/pci-meson.c
14358
14359 PCIE DRIVER FOR AXIS ARTPEC
14360 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14361 L:      linux-arm-kernel@axis.com
14362 L:      linux-pci@vger.kernel.org
14363 S:      Maintained
14364 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14365 F:      drivers/pci/controller/dwc/*artpec*
14366
14367 PCIE DRIVER FOR CAVIUM THUNDERX
14368 M:      Robert Richter <rric@kernel.org>
14369 L:      linux-pci@vger.kernel.org
14370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14371 S:      Odd Fixes
14372 F:      drivers/pci/controller/pci-thunder-*
14373
14374 PCIE DRIVER FOR HISILICON
14375 M:      Zhou Wang <wangzhou1@hisilicon.com>
14376 L:      linux-pci@vger.kernel.org
14377 S:      Maintained
14378 F:      drivers/pci/controller/dwc/pcie-hisi.c
14379
14380 PCIE DRIVER FOR HISILICON KIRIN
14381 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14382 M:      Binghui Wang <wangbinghui@hisilicon.com>
14383 L:      linux-pci@vger.kernel.org
14384 S:      Maintained
14385 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
14386 F:      drivers/pci/controller/dwc/pcie-kirin.c
14387
14388 PCIE DRIVER FOR HISILICON STB
14389 M:      Shawn Guo <shawn.guo@linaro.org>
14390 L:      linux-pci@vger.kernel.org
14391 S:      Maintained
14392 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14393 F:      drivers/pci/controller/dwc/pcie-histb.c
14394
14395 PCIE DRIVER FOR MEDIATEK
14396 M:      Ryder Lee <ryder.lee@mediatek.com>
14397 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14398 L:      linux-pci@vger.kernel.org
14399 L:      linux-mediatek@lists.infradead.org
14400 S:      Supported
14401 F:      Documentation/devicetree/bindings/pci/mediatek*
14402 F:      drivers/pci/controller/*mediatek*
14403
14404 PCIE DRIVER FOR MICROCHIP
14405 M:      Daire McNamara <daire.mcnamara@microchip.com>
14406 L:      linux-pci@vger.kernel.org
14407 S:      Supported
14408 F:      Documentation/devicetree/bindings/pci/microchip*
14409 F:      drivers/pci/controller/*microchip*
14410
14411 PCIE DRIVER FOR QUALCOMM MSM
14412 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14413 L:      linux-pci@vger.kernel.org
14414 L:      linux-arm-msm@vger.kernel.org
14415 S:      Maintained
14416 F:      drivers/pci/controller/dwc/*qcom*
14417
14418 PCIE DRIVER FOR ROCKCHIP
14419 M:      Shawn Lin <shawn.lin@rock-chips.com>
14420 L:      linux-pci@vger.kernel.org
14421 L:      linux-rockchip@lists.infradead.org
14422 S:      Maintained
14423 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14424 F:      drivers/pci/controller/pcie-rockchip*
14425
14426 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14427 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14428 L:      linux-pci@vger.kernel.org
14429 S:      Maintained
14430 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14431 F:      drivers/pci/controller/dwc/pcie-uniphier*
14432
14433 PCIE DRIVER FOR ST SPEAR13XX
14434 M:      Pratyush Anand <pratyush.anand@gmail.com>
14435 L:      linux-pci@vger.kernel.org
14436 S:      Maintained
14437 F:      drivers/pci/controller/dwc/*spear*
14438
14439 PCMCIA SUBSYSTEM
14440 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14441 S:      Odd Fixes
14442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14443 F:      Documentation/pcmcia/
14444 F:      drivers/pcmcia/
14445 F:      include/pcmcia/
14446 F:      tools/pcmcia/
14447
14448 PCNET32 NETWORK DRIVER
14449 M:      Don Fry <pcnet32@frontier.com>
14450 L:      netdev@vger.kernel.org
14451 S:      Maintained
14452 F:      drivers/net/ethernet/amd/pcnet32.c
14453
14454 PCRYPT PARALLEL CRYPTO ENGINE
14455 M:      Steffen Klassert <steffen.klassert@secunet.com>
14456 L:      linux-crypto@vger.kernel.org
14457 S:      Maintained
14458 F:      crypto/pcrypt.c
14459 F:      include/crypto/pcrypt.h
14460
14461 PEAQ WMI HOTKEYS DRIVER
14462 M:      Hans de Goede <hdegoede@redhat.com>
14463 L:      platform-driver-x86@vger.kernel.org
14464 S:      Maintained
14465 F:      drivers/platform/x86/peaq-wmi.c
14466
14467 PENSANDO ETHERNET DRIVERS
14468 M:      Shannon Nelson <snelson@pensando.io>
14469 M:      drivers@pensando.io
14470 L:      netdev@vger.kernel.org
14471 S:      Supported
14472 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14473 F:      drivers/net/ethernet/pensando/
14474
14475 PER-CPU MEMORY ALLOCATOR
14476 M:      Dennis Zhou <dennis@kernel.org>
14477 M:      Tejun Heo <tj@kernel.org>
14478 M:      Christoph Lameter <cl@linux.com>
14479 L:      linux-mm@kvack.org
14480 S:      Maintained
14481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14482 F:      arch/*/include/asm/percpu.h
14483 F:      include/linux/percpu*.h
14484 F:      lib/percpu*.c
14485 F:      mm/percpu*.c
14486
14487 PER-TASK DELAY ACCOUNTING
14488 M:      Balbir Singh <bsingharora@gmail.com>
14489 S:      Maintained
14490 F:      include/linux/delayacct.h
14491 F:      kernel/delayacct.c
14492
14493 PERFORMANCE EVENTS SUBSYSTEM
14494 M:      Peter Zijlstra <peterz@infradead.org>
14495 M:      Ingo Molnar <mingo@redhat.com>
14496 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14497 R:      Mark Rutland <mark.rutland@arm.com>
14498 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14499 R:      Jiri Olsa <jolsa@redhat.com>
14500 R:      Namhyung Kim <namhyung@kernel.org>
14501 L:      linux-perf-users@vger.kernel.org
14502 L:      linux-kernel@vger.kernel.org
14503 S:      Supported
14504 W:      https://perf.wiki.kernel.org/
14505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14506 F:      arch/*/events/*
14507 F:      arch/*/events/*/*
14508 F:      arch/*/include/asm/perf_event.h
14509 F:      arch/*/kernel/*/*/perf_event*.c
14510 F:      arch/*/kernel/*/perf_event*.c
14511 F:      arch/*/kernel/perf_callchain.c
14512 F:      arch/*/kernel/perf_event*.c
14513 F:      include/linux/perf_event.h
14514 F:      include/uapi/linux/perf_event.h
14515 F:      kernel/events/*
14516 F:      tools/lib/perf/
14517 F:      tools/perf/
14518
14519 PERFORMANCE EVENTS TOOLING ARM64
14520 R:      John Garry <john.garry@huawei.com>
14521 R:      Will Deacon <will@kernel.org>
14522 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14523 R:      Leo Yan <leo.yan@linaro.org>
14524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14525 S:      Supported
14526 F:      tools/build/feature/test-libopencsd.c
14527 F:      tools/perf/arch/arm*/
14528 F:      tools/perf/pmu-events/arch/arm64/
14529 F:      tools/perf/util/arm-spe*
14530 F:      tools/perf/util/cs-etm*
14531
14532 PERSONALITY HANDLING
14533 M:      Christoph Hellwig <hch@infradead.org>
14534 L:      linux-abi-devel@lists.sourceforge.net
14535 S:      Maintained
14536 F:      include/linux/personality.h
14537 F:      include/uapi/linux/personality.h
14538
14539 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14540 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14541 L:      linux-input@vger.kernel.org
14542 S:      Maintained
14543 F:      Documentation/input/devices/pxrc.rst
14544 F:      drivers/input/joystick/pxrc.c
14545
14546 PHONET PROTOCOL
14547 M:      Remi Denis-Courmont <courmisch@gmail.com>
14548 S:      Supported
14549 F:      Documentation/networking/phonet.rst
14550 F:      include/linux/phonet.h
14551 F:      include/net/phonet/
14552 F:      include/uapi/linux/phonet.h
14553 F:      net/phonet/
14554
14555 PHRAM MTD DRIVER
14556 M:      Joern Engel <joern@lazybastard.org>
14557 L:      linux-mtd@lists.infradead.org
14558 S:      Maintained
14559 F:      drivers/mtd/devices/phram.c
14560
14561 PICOLCD HID DRIVER
14562 M:      Bruno Prémont <bonbons@linux-vserver.org>
14563 L:      linux-input@vger.kernel.org
14564 S:      Maintained
14565 F:      drivers/hid/hid-picolcd*
14566
14567 PIDFD API
14568 M:      Christian Brauner <christian@brauner.io>
14569 L:      linux-kernel@vger.kernel.org
14570 S:      Maintained
14571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14572 F:      samples/pidfd/
14573 F:      tools/testing/selftests/clone3/
14574 F:      tools/testing/selftests/pid_namespace/
14575 F:      tools/testing/selftests/pidfd/
14576 K:      (?i)pidfd
14577 K:      (?i)clone3
14578 K:      \b(clone_args|kernel_clone_args)\b
14579
14580 PIN CONTROL SUBSYSTEM
14581 M:      Linus Walleij <linus.walleij@linaro.org>
14582 L:      linux-gpio@vger.kernel.org
14583 S:      Maintained
14584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14585 F:      Documentation/devicetree/bindings/pinctrl/
14586 F:      Documentation/driver-api/pin-control.rst
14587 F:      drivers/pinctrl/
14588 F:      include/linux/pinctrl/
14589
14590 PIN CONTROLLER - FREESCALE
14591 M:      Dong Aisheng <aisheng.dong@nxp.com>
14592 M:      Fabio Estevam <festevam@gmail.com>
14593 M:      Shawn Guo <shawnguo@kernel.org>
14594 M:      Stefan Agner <stefan@agner.ch>
14595 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14596 L:      linux-gpio@vger.kernel.org
14597 S:      Maintained
14598 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14599 F:      drivers/pinctrl/freescale/
14600
14601 PIN CONTROLLER - INTEL
14602 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14603 M:      Andy Shevchenko <andy@kernel.org>
14604 S:      Maintained
14605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14606 F:      drivers/pinctrl/intel/
14607
14608 PIN CONTROLLER - MEDIATEK
14609 M:      Sean Wang <sean.wang@kernel.org>
14610 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14611 S:      Maintained
14612 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14613 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14614 F:      drivers/pinctrl/mediatek/
14615
14616 PIN CONTROLLER - MICROCHIP AT91
14617 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14619 L:      linux-gpio@vger.kernel.org
14620 S:      Supported
14621 F:      drivers/gpio/gpio-sama5d2-piobu.c
14622 F:      drivers/pinctrl/pinctrl-at91*
14623
14624 PIN CONTROLLER - QUALCOMM
14625 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14626 L:      linux-arm-msm@vger.kernel.org
14627 S:      Maintained
14628 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14629 F:      drivers/pinctrl/qcom/
14630
14631 PIN CONTROLLER - RENESAS
14632 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14633 L:      linux-renesas-soc@vger.kernel.org
14634 S:      Supported
14635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14636 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14637 F:      drivers/pinctrl/renesas/
14638
14639 PIN CONTROLLER - SAMSUNG
14640 M:      Tomasz Figa <tomasz.figa@gmail.com>
14641 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14642 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14643 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14644 L:      linux-samsung-soc@vger.kernel.org
14645 S:      Maintained
14646 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14648 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14649 F:      drivers/pinctrl/samsung/
14650 F:      include/dt-bindings/pinctrl/samsung.h
14651
14652 PIN CONTROLLER - SINGLE
14653 M:      Tony Lindgren <tony@atomide.com>
14654 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14656 L:      linux-omap@vger.kernel.org
14657 S:      Maintained
14658 F:      drivers/pinctrl/pinctrl-single.c
14659
14660 PIN CONTROLLER - ST SPEAR
14661 M:      Viresh Kumar <vireshk@kernel.org>
14662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14663 S:      Maintained
14664 W:      http://www.st.com/spear
14665 F:      drivers/pinctrl/spear/
14666
14667 PISTACHIO SOC SUPPORT
14668 M:      James Hartley <james.hartley@sondrel.com>
14669 L:      linux-mips@vger.kernel.org
14670 S:      Odd Fixes
14671 F:      arch/mips/boot/dts/img/pistachio*
14672 F:      arch/mips/configs/pistachio*_defconfig
14673 F:      arch/mips/pistachio/
14674
14675 PKTCDVD DRIVER
14676 M:      linux-block@vger.kernel.org
14677 S:      Orphan
14678 F:      drivers/block/pktcdvd.c
14679 F:      include/linux/pktcdvd.h
14680 F:      include/uapi/linux/pktcdvd.h
14681
14682 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14683 M:      Tomasz Duszynski <tduszyns@gmail.com>
14684 S:      Maintained
14685 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14686 F:      drivers/iio/chemical/pms7003.c
14687
14688 PLDMFW LIBRARY
14689 M:      Jacob Keller <jacob.e.keller@intel.com>
14690 S:      Maintained
14691 F:      Documentation/driver-api/pldmfw/
14692 F:      include/linux/pldmfw.h
14693 F:      lib/pldmfw/
14694
14695 PLX DMA DRIVER
14696 M:      Logan Gunthorpe <logang@deltatee.com>
14697 S:      Maintained
14698 F:      drivers/dma/plx_dma.c
14699
14700 PM6764TR DRIVER
14701 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14702 L:      linux-hwmon@vger.kernel.org
14703 S:      Maintained
14704 F:      Documentation/hwmon/pm6764tr.rst
14705 F:      drivers/hwmon/pmbus/pm6764tr.c
14706
14707 PM-GRAPH UTILITY
14708 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14709 L:      linux-pm@vger.kernel.org
14710 S:      Supported
14711 W:      https://01.org/pm-graph
14712 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14713 T:      git git://github.com/intel/pm-graph
14714 F:      tools/power/pm-graph
14715
14716 PMBUS HARDWARE MONITORING DRIVERS
14717 M:      Guenter Roeck <linux@roeck-us.net>
14718 L:      linux-hwmon@vger.kernel.org
14719 S:      Maintained
14720 W:      http://hwmon.wiki.kernel.org/
14721 W:      http://www.roeck-us.net/linux/drivers/
14722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14723 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14724 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14725 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14726 F:      Documentation/hwmon/adm1275.rst
14727 F:      Documentation/hwmon/ibm-cffps.rst
14728 F:      Documentation/hwmon/ir35221.rst
14729 F:      Documentation/hwmon/lm25066.rst
14730 F:      Documentation/hwmon/ltc2978.rst
14731 F:      Documentation/hwmon/ltc3815.rst
14732 F:      Documentation/hwmon/max16064.rst
14733 F:      Documentation/hwmon/max20751.rst
14734 F:      Documentation/hwmon/max31785.rst
14735 F:      Documentation/hwmon/max34440.rst
14736 F:      Documentation/hwmon/max8688.rst
14737 F:      Documentation/hwmon/pmbus-core.rst
14738 F:      Documentation/hwmon/pmbus.rst
14739 F:      Documentation/hwmon/tps40422.rst
14740 F:      Documentation/hwmon/ucd9000.rst
14741 F:      Documentation/hwmon/ucd9200.rst
14742 F:      Documentation/hwmon/zl6100.rst
14743 F:      drivers/hwmon/pmbus/
14744 F:      include/linux/pmbus.h
14745
14746 PMC SIERRA MaxRAID DRIVER
14747 L:      linux-scsi@vger.kernel.org
14748 S:      Orphan
14749 W:      http://www.pmc-sierra.com/
14750 F:      drivers/scsi/pmcraid.*
14751
14752 PMC SIERRA PM8001 DRIVER
14753 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14754 L:      linux-scsi@vger.kernel.org
14755 S:      Supported
14756 F:      drivers/scsi/pm8001/
14757
14758 PNI RM3100 IIO DRIVER
14759 M:      Song Qiang <songqiang1304521@gmail.com>
14760 L:      linux-iio@vger.kernel.org
14761 S:      Maintained
14762 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14763 F:      drivers/iio/magnetometer/rm3100*
14764
14765 PNP SUPPORT
14766 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14767 L:      linux-acpi@vger.kernel.org
14768 S:      Maintained
14769 F:      drivers/pnp/
14770 F:      include/linux/pnp.h
14771
14772 POSIX CLOCKS and TIMERS
14773 M:      Thomas Gleixner <tglx@linutronix.de>
14774 L:      linux-kernel@vger.kernel.org
14775 S:      Maintained
14776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14777 F:      fs/timerfd.c
14778 F:      include/linux/time_namespace.h
14779 F:      include/linux/timer*
14780 F:      kernel/time/*timer*
14781 F:      kernel/time/namespace.c
14782
14783 POWER MANAGEMENT CORE
14784 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14785 L:      linux-pm@vger.kernel.org
14786 S:      Supported
14787 B:      https://bugzilla.kernel.org
14788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14789 F:      drivers/base/power/
14790 F:      drivers/powercap/
14791 F:      include/linux/intel_rapl.h
14792 F:      include/linux/pm.h
14793 F:      include/linux/pm_*
14794 F:      include/linux/powercap.h
14795 F:      kernel/configs/nopm.config
14796
14797 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
14798 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
14799 L:      linux-pm@vger.kernel.org
14800 S:      Supported
14801 B:      https://bugzilla.kernel.org
14802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14803 F:      drivers/powercap/dtpm*
14804 F:      include/linux/dtpm.h
14805
14806 POWER STATE COORDINATION INTERFACE (PSCI)
14807 M:      Mark Rutland <mark.rutland@arm.com>
14808 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14809 L:      linux-arm-kernel@lists.infradead.org
14810 S:      Maintained
14811 F:      drivers/firmware/psci/
14812 F:      include/linux/psci.h
14813 F:      include/uapi/linux/psci.h
14814
14815 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14816 M:      Sebastian Reichel <sre@kernel.org>
14817 L:      linux-pm@vger.kernel.org
14818 S:      Maintained
14819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14820 F:      Documentation/ABI/testing/sysfs-class-power
14821 F:      Documentation/devicetree/bindings/power/supply/
14822 F:      drivers/power/supply/
14823 F:      include/linux/power_supply.h
14824
14825 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14826 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14827 L:      linuxppc-dev@lists.ozlabs.org
14828 S:      Maintained
14829 F:      drivers/char/powernv-op-panel.c
14830
14831 PPP OVER ATM (RFC 2364)
14832 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14833 S:      Maintained
14834 F:      include/uapi/linux/atmppp.h
14835 F:      net/atm/pppoatm.c
14836
14837 PPP OVER ETHERNET
14838 M:      Michal Ostrowski <mostrows@earthlink.net>
14839 S:      Maintained
14840 F:      drivers/net/ppp/pppoe.c
14841 F:      drivers/net/ppp/pppox.c
14842
14843 PPP OVER L2TP
14844 M:      James Chapman <jchapman@katalix.com>
14845 S:      Maintained
14846 F:      include/linux/if_pppol2tp.h
14847 F:      include/uapi/linux/if_pppol2tp.h
14848 F:      net/l2tp/l2tp_ppp.c
14849
14850 PPP PROTOCOL DRIVERS AND COMPRESSORS
14851 M:      Paul Mackerras <paulus@samba.org>
14852 L:      linux-ppp@vger.kernel.org
14853 S:      Maintained
14854 F:      drivers/net/ppp/ppp_*
14855
14856 PPS SUPPORT
14857 M:      Rodolfo Giometti <giometti@enneenne.com>
14858 L:      linuxpps@ml.enneenne.com (subscribers-only)
14859 S:      Maintained
14860 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14861 F:      Documentation/ABI/testing/sysfs-pps
14862 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14863 F:      Documentation/driver-api/pps.rst
14864 F:      drivers/pps/
14865 F:      include/linux/pps*.h
14866 F:      include/uapi/linux/pps.h
14867
14868 PPTP DRIVER
14869 M:      Dmitry Kozlov <xeb@mail.ru>
14870 L:      netdev@vger.kernel.org
14871 S:      Maintained
14872 W:      http://sourceforge.net/projects/accel-pptp
14873 F:      drivers/net/ppp/pptp.c
14874
14875 PRESSURE STALL INFORMATION (PSI)
14876 M:      Johannes Weiner <hannes@cmpxchg.org>
14877 S:      Maintained
14878 F:      include/linux/psi*
14879 F:      kernel/sched/psi.c
14880
14881 PRINTK
14882 M:      Petr Mladek <pmladek@suse.com>
14883 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
14884 R:      Steven Rostedt <rostedt@goodmis.org>
14885 R:      John Ogness <john.ogness@linutronix.de>
14886 S:      Maintained
14887 F:      include/linux/printk.h
14888 F:      kernel/printk/
14889
14890 PRISM54 WIRELESS DRIVER
14891 M:      Luis Chamberlain <mcgrof@kernel.org>
14892 L:      linux-wireless@vger.kernel.org
14893 S:      Obsolete
14894 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14895 F:      drivers/net/wireless/intersil/prism54/
14896
14897 PROC FILESYSTEM
14898 L:      linux-kernel@vger.kernel.org
14899 L:      linux-fsdevel@vger.kernel.org
14900 S:      Maintained
14901 F:      Documentation/filesystems/proc.rst
14902 F:      fs/proc/
14903 F:      include/linux/proc_fs.h
14904 F:      tools/testing/selftests/proc/
14905
14906 PROC SYSCTL
14907 M:      Luis Chamberlain <mcgrof@kernel.org>
14908 M:      Kees Cook <keescook@chromium.org>
14909 M:      Iurii Zaikin <yzaikin@google.com>
14910 L:      linux-kernel@vger.kernel.org
14911 L:      linux-fsdevel@vger.kernel.org
14912 S:      Maintained
14913 F:      fs/proc/proc_sysctl.c
14914 F:      include/linux/sysctl.h
14915 F:      kernel/sysctl-test.c
14916 F:      kernel/sysctl.c
14917 F:      tools/testing/selftests/sysctl/
14918
14919 PS3 NETWORK SUPPORT
14920 M:      Geoff Levand <geoff@infradead.org>
14921 L:      netdev@vger.kernel.org
14922 L:      linuxppc-dev@lists.ozlabs.org
14923 S:      Maintained
14924 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14925
14926 PS3 PLATFORM SUPPORT
14927 M:      Geoff Levand <geoff@infradead.org>
14928 L:      linuxppc-dev@lists.ozlabs.org
14929 S:      Maintained
14930 F:      arch/powerpc/boot/ps3*
14931 F:      arch/powerpc/include/asm/lv1call.h
14932 F:      arch/powerpc/include/asm/ps3*.h
14933 F:      arch/powerpc/platforms/ps3/
14934 F:      drivers/*/ps3*
14935 F:      drivers/ps3/
14936 F:      drivers/rtc/rtc-ps3.c
14937 F:      drivers/usb/host/*ps3.c
14938 F:      sound/ppc/snd_ps3*
14939
14940 PS3VRAM DRIVER
14941 M:      Jim Paris <jim@jtan.com>
14942 M:      Geoff Levand <geoff@infradead.org>
14943 L:      linuxppc-dev@lists.ozlabs.org
14944 S:      Maintained
14945 F:      drivers/block/ps3vram.c
14946
14947 PSAMPLE PACKET SAMPLING SUPPORT
14948 M:      Yotam Gigi <yotam.gi@gmail.com>
14949 S:      Maintained
14950 F:      include/net/psample.h
14951 F:      include/uapi/linux/psample.h
14952 F:      net/psample
14953
14954 PSTORE FILESYSTEM
14955 M:      Kees Cook <keescook@chromium.org>
14956 M:      Anton Vorontsov <anton@enomsg.org>
14957 M:      Colin Cross <ccross@android.com>
14958 M:      Tony Luck <tony.luck@intel.com>
14959 S:      Maintained
14960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14961 F:      Documentation/admin-guide/ramoops.rst
14962 F:      Documentation/admin-guide/pstore-blk.rst
14963 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14964 F:      drivers/acpi/apei/erst.c
14965 F:      drivers/firmware/efi/efi-pstore.c
14966 F:      fs/pstore/
14967 F:      include/linux/pstore*
14968 K:      \b(pstore|ramoops)
14969
14970 PTP HARDWARE CLOCK SUPPORT
14971 M:      Richard Cochran <richardcochran@gmail.com>
14972 L:      netdev@vger.kernel.org
14973 S:      Maintained
14974 W:      http://linuxptp.sourceforge.net/
14975 F:      Documentation/ABI/testing/sysfs-ptp
14976 F:      Documentation/driver-api/ptp.rst
14977 F:      drivers/net/phy/dp83640*
14978 F:      drivers/ptp/*
14979 F:      include/linux/ptp_cl*
14980
14981 PTRACE SUPPORT
14982 M:      Oleg Nesterov <oleg@redhat.com>
14983 S:      Maintained
14984 F:      arch/*/*/ptrace*.c
14985 F:      arch/*/include/asm/ptrace*.h
14986 F:      arch/*/ptrace*.c
14987 F:      include/asm-generic/syscall.h
14988 F:      include/linux/ptrace.h
14989 F:      include/linux/regset.h
14990 F:      include/linux/tracehook.h
14991 F:      include/uapi/linux/ptrace.h
14992 F:      include/uapi/linux/ptrace.h
14993 F:      kernel/ptrace.c
14994
14995 PULSE8-CEC DRIVER
14996 M:      Hans Verkuil <hverkuil@xs4all.nl>
14997 L:      linux-media@vger.kernel.org
14998 S:      Maintained
14999 T:      git git://linuxtv.org/media_tree.git
15000 F:      Documentation/admin-guide/media/pulse8-cec.rst
15001 F:      drivers/media/cec/usb/pulse8/
15002
15003 PVRUSB2 VIDEO4LINUX DRIVER
15004 M:      Mike Isely <isely@pobox.com>
15005 L:      pvrusb2@isely.net       (subscribers-only)
15006 L:      linux-media@vger.kernel.org
15007 S:      Maintained
15008 W:      http://www.isely.net/pvrusb2/
15009 T:      git git://linuxtv.org/media_tree.git
15010 F:      Documentation/driver-api/media/drivers/pvrusb2*
15011 F:      drivers/media/usb/pvrusb2/
15012
15013 PWC WEBCAM DRIVER
15014 M:      Hans Verkuil <hverkuil@xs4all.nl>
15015 L:      linux-media@vger.kernel.org
15016 S:      Odd Fixes
15017 T:      git git://linuxtv.org/media_tree.git
15018 F:      drivers/media/usb/pwc/*
15019 F:      include/trace/events/pwc.h
15020
15021 PWM FAN DRIVER
15022 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15023 L:      linux-hwmon@vger.kernel.org
15024 S:      Supported
15025 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15026 F:      Documentation/hwmon/pwm-fan.rst
15027 F:      drivers/hwmon/pwm-fan.c
15028
15029 PWM IR Transmitter
15030 M:      Sean Young <sean@mess.org>
15031 L:      linux-media@vger.kernel.org
15032 S:      Maintained
15033 F:      drivers/media/rc/pwm-ir-tx.c
15034
15035 PWM SUBSYSTEM
15036 M:      Thierry Reding <thierry.reding@gmail.com>
15037 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15038 M:      Lee Jones <lee.jones@linaro.org>
15039 L:      linux-pwm@vger.kernel.org
15040 S:      Maintained
15041 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15043 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15044 F:      Documentation/devicetree/bindings/pwm/
15045 F:      Documentation/driver-api/pwm.rst
15046 F:      drivers/gpio/gpio-mvebu.c
15047 F:      drivers/pwm/
15048 F:      drivers/video/backlight/pwm_bl.c
15049 F:      include/linux/pwm.h
15050 F:      include/linux/pwm_backlight.h
15051 K:      pwm_(config|apply_state|ops)
15052
15053 PXA GPIO DRIVER
15054 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15055 L:      linux-gpio@vger.kernel.org
15056 S:      Maintained
15057 F:      drivers/gpio/gpio-pxa.c
15058
15059 PXA MMCI DRIVER
15060 S:      Orphan
15061
15062 PXA RTC DRIVER
15063 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15064 L:      linux-rtc@vger.kernel.org
15065 S:      Maintained
15066
15067 PXA2xx/PXA3xx SUPPORT
15068 M:      Daniel Mack <daniel@zonque.org>
15069 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15070 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15072 S:      Maintained
15073 T:      git git://github.com/hzhuang1/linux.git
15074 T:      git git://github.com/rjarzmik/linux.git
15075 F:      arch/arm/boot/dts/pxa*
15076 F:      arch/arm/mach-pxa/
15077 F:      drivers/dma/pxa*
15078 F:      drivers/pcmcia/pxa2xx*
15079 F:      drivers/pinctrl/pxa/
15080 F:      drivers/spi/spi-pxa2xx*
15081 F:      drivers/usb/gadget/udc/pxa2*
15082 F:      include/sound/pxa2xx-lib.h
15083 F:      sound/arm/pxa*
15084 F:      sound/soc/pxa/
15085
15086 QAT DRIVER
15087 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15088 L:      qat-linux@intel.com
15089 S:      Supported
15090 F:      drivers/crypto/qat/
15091
15092 QCOM AUDIO (ASoC) DRIVERS
15093 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15094 M:      Banajit Goswami <bgoswami@codeaurora.org>
15095 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15096 S:      Supported
15097 F:      sound/soc/codecs/lpass-va-macro.c
15098 F:      sound/soc/codecs/lpass-wsa-macro.*
15099 F:      sound/soc/codecs/msm8916-wcd-analog.c
15100 F:      sound/soc/codecs/msm8916-wcd-digital.c
15101 F:      sound/soc/codecs/wcd9335.*
15102 F:      sound/soc/codecs/wcd934x.c
15103 F:      sound/soc/codecs/wcd-clsh-v2.*
15104 F:      sound/soc/codecs/wsa881x.c
15105 F:      sound/soc/qcom/
15106
15107 QCOM IPA DRIVER
15108 M:      Alex Elder <elder@kernel.org>
15109 L:      netdev@vger.kernel.org
15110 S:      Supported
15111 F:      drivers/net/ipa/
15112
15113 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15114 M:      Gabriel Somlo <somlo@cmu.edu>
15115 M:      "Michael S. Tsirkin" <mst@redhat.com>
15116 L:      qemu-devel@nongnu.org
15117 S:      Maintained
15118 F:      drivers/firmware/qemu_fw_cfg.c
15119 F:      include/uapi/linux/qemu_fw_cfg.h
15120
15121 QIB DRIVER
15122 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15123 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15124 L:      linux-rdma@vger.kernel.org
15125 S:      Supported
15126 F:      drivers/infiniband/hw/qib/
15127
15128 QLOGIC QL41xxx FCOE DRIVER
15129 M:      Saurav Kashyap <skashyap@marvell.com>
15130 M:      Javed Hasan <jhasan@marvell.com>
15131 M:      GR-QLogic-Storage-Upstream@marvell.com
15132 L:      linux-scsi@vger.kernel.org
15133 S:      Supported
15134 F:      drivers/scsi/qedf/
15135
15136 QLOGIC QL41xxx ISCSI DRIVER
15137 M:      Nilesh Javali <njavali@marvell.com>
15138 M:      Manish Rangankar <mrangankar@marvell.com>
15139 M:      GR-QLogic-Storage-Upstream@marvell.com
15140 L:      linux-scsi@vger.kernel.org
15141 S:      Supported
15142 F:      drivers/scsi/qedi/
15143
15144 QLOGIC QL4xxx ETHERNET DRIVER
15145 M:      Ariel Elior <aelior@marvell.com>
15146 M:      GR-everest-linux-l2@marvell.com
15147 L:      netdev@vger.kernel.org
15148 S:      Supported
15149 F:      drivers/net/ethernet/qlogic/qed/
15150 F:      drivers/net/ethernet/qlogic/qede/
15151 F:      include/linux/qed/
15152
15153 QLOGIC QL4xxx RDMA DRIVER
15154 M:      Michal Kalderon <mkalderon@marvell.com>
15155 M:      Ariel Elior <aelior@marvell.com>
15156 L:      linux-rdma@vger.kernel.org
15157 S:      Supported
15158 F:      drivers/infiniband/hw/qedr/
15159 F:      include/uapi/rdma/qedr-abi.h
15160
15161 QLOGIC QLA1280 SCSI DRIVER
15162 M:      Michael Reed <mdr@sgi.com>
15163 L:      linux-scsi@vger.kernel.org
15164 S:      Maintained
15165 F:      drivers/scsi/qla1280.[ch]
15166
15167 QLOGIC QLA2XXX FC-SCSI DRIVER
15168 M:      Nilesh Javali <njavali@marvell.com>
15169 M:      GR-QLogic-Storage-Upstream@marvell.com
15170 L:      linux-scsi@vger.kernel.org
15171 S:      Supported
15172 F:      drivers/scsi/qla2xxx/
15173
15174 QLOGIC QLA3XXX NETWORK DRIVER
15175 M:      GR-Linux-NIC-Dev@marvell.com
15176 L:      netdev@vger.kernel.org
15177 S:      Supported
15178 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15179
15180 QLOGIC QLA4XXX iSCSI DRIVER
15181 M:      Nilesh Javali <njavali@marvell.com>
15182 M:      Manish Rangankar <mrangankar@marvell.com>
15183 M:      GR-QLogic-Storage-Upstream@marvell.com
15184 L:      linux-scsi@vger.kernel.org
15185 S:      Supported
15186 F:      drivers/scsi/qla4xxx/
15187
15188 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15189 M:      Shahed Shaikh <shshaikh@marvell.com>
15190 M:      Manish Chopra <manishc@marvell.com>
15191 M:      GR-Linux-NIC-Dev@marvell.com
15192 L:      netdev@vger.kernel.org
15193 S:      Supported
15194 F:      drivers/net/ethernet/qlogic/qlcnic/
15195
15196 QLOGIC QLGE 10Gb ETHERNET DRIVER
15197 M:      Manish Chopra <manishc@marvell.com>
15198 M:      GR-Linux-NIC-Dev@marvell.com
15199 M:      Coiby Xu <coiby.xu@gmail.com>
15200 L:      netdev@vger.kernel.org
15201 S:      Supported
15202 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15203 F:      drivers/staging/qlge/
15204
15205 QM1D1B0004 MEDIA DRIVER
15206 M:      Akihiro Tsukada <tskd08@gmail.com>
15207 L:      linux-media@vger.kernel.org
15208 S:      Odd Fixes
15209 F:      drivers/media/tuners/qm1d1b0004*
15210
15211 QM1D1C0042 MEDIA DRIVER
15212 M:      Akihiro Tsukada <tskd08@gmail.com>
15213 L:      linux-media@vger.kernel.org
15214 S:      Odd Fixes
15215 F:      drivers/media/tuners/qm1d1c0042*
15216
15217 QNX4 FILESYSTEM
15218 M:      Anders Larsen <al@alarsen.net>
15219 S:      Maintained
15220 W:      http://www.alarsen.net/linux/qnx4fs/
15221 F:      fs/qnx4/
15222 F:      include/uapi/linux/qnx4_fs.h
15223 F:      include/uapi/linux/qnxtypes.h
15224
15225 QORIQ DPAA2 FSL-MC BUS DRIVER
15226 M:      Stuart Yoder <stuyoder@gmail.com>
15227 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15228 L:      linux-kernel@vger.kernel.org
15229 S:      Maintained
15230 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15231 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15232 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15233 F:      drivers/bus/fsl-mc/
15234 F:      include/uapi/linux/fsl_mc.h
15235
15236 QT1010 MEDIA DRIVER
15237 M:      Antti Palosaari <crope@iki.fi>
15238 L:      linux-media@vger.kernel.org
15239 S:      Maintained
15240 W:      https://linuxtv.org
15241 W:      http://palosaari.fi/linux/
15242 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15243 T:      git git://linuxtv.org/anttip/media_tree.git
15244 F:      drivers/media/tuners/qt1010*
15245
15246 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15247 M:      Kalle Valo <kvalo@codeaurora.org>
15248 L:      ath10k@lists.infradead.org
15249 S:      Supported
15250 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15252 F:      drivers/net/wireless/ath/ath10k/
15253
15254 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15255 M:      Kalle Valo <kvalo@codeaurora.org>
15256 L:      ath11k@lists.infradead.org
15257 S:      Supported
15258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15259 F:      drivers/net/wireless/ath/ath11k/
15260
15261 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15262 M:      ath9k-devel@qca.qualcomm.com
15263 L:      linux-wireless@vger.kernel.org
15264 S:      Supported
15265 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15266 F:      drivers/net/wireless/ath/ath9k/
15267
15268 QUALCOMM CAMERA SUBSYSTEM DRIVER
15269 M:      Robert Foss <robert.foss@linaro.org>
15270 M:      Todor Tomov <todor.too@gmail.com>
15271 L:      linux-media@vger.kernel.org
15272 S:      Maintained
15273 F:      Documentation/admin-guide/media/qcom_camss.rst
15274 F:      Documentation/devicetree/bindings/media/*camss*
15275 F:      drivers/media/platform/qcom/camss/
15276
15277 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15278 M:      Niklas Cassel <nks@flawful.org>
15279 L:      linux-pm@vger.kernel.org
15280 L:      linux-arm-msm@vger.kernel.org
15281 S:      Maintained
15282 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15283 F:      drivers/soc/qcom/cpr.c
15284
15285 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15286 M:      Ilia Lin <ilia.lin@kernel.org>
15287 L:      linux-pm@vger.kernel.org
15288 S:      Maintained
15289 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15290 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15291
15292 QUALCOMM CRYPTO DRIVERS
15293 M:      Thara Gopinath <thara.gopinath@linaro.org>
15294 L:      linux-crypto@vger.kernel.org
15295 L:      linux-arm-msm@vger.kernel.org
15296 S:      Maintained
15297 F:      drivers/crypto/qce/
15298
15299 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15300 M:      Timur Tabi <timur@kernel.org>
15301 L:      netdev@vger.kernel.org
15302 S:      Maintained
15303 F:      drivers/net/ethernet/qualcomm/emac/
15304
15305 QUALCOMM ETHQOS ETHERNET DRIVER
15306 M:      Vinod Koul <vkoul@kernel.org>
15307 L:      netdev@vger.kernel.org
15308 S:      Maintained
15309 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15310 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15311
15312 QUALCOMM GENERIC INTERFACE I2C DRIVER
15313 M:      Akash Asthana <akashast@codeaurora.org>
15314 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15315 L:      linux-i2c@vger.kernel.org
15316 L:      linux-arm-msm@vger.kernel.org
15317 S:      Supported
15318 F:      drivers/i2c/busses/i2c-qcom-geni.c
15319
15320 QUALCOMM HEXAGON ARCHITECTURE
15321 M:      Brian Cain <bcain@codeaurora.org>
15322 L:      linux-hexagon@vger.kernel.org
15323 S:      Supported
15324 F:      arch/hexagon/
15325
15326 QUALCOMM HIDMA DRIVER
15327 M:      Sinan Kaya <okaya@kernel.org>
15328 L:      linux-arm-kernel@lists.infradead.org
15329 L:      linux-arm-msm@vger.kernel.org
15330 L:      dmaengine@vger.kernel.org
15331 S:      Supported
15332 F:      drivers/dma/qcom/hidma*
15333
15334 QUALCOMM I2C CCI DRIVER
15335 M:      Loic Poulain <loic.poulain@linaro.org>
15336 M:      Robert Foss <robert.foss@linaro.org>
15337 L:      linux-i2c@vger.kernel.org
15338 L:      linux-arm-msm@vger.kernel.org
15339 S:      Maintained
15340 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15341 F:      drivers/i2c/busses/i2c-qcom-cci.c
15342
15343 QUALCOMM IOMMU
15344 M:      Rob Clark <robdclark@gmail.com>
15345 L:      iommu@lists.linux-foundation.org
15346 L:      linux-arm-msm@vger.kernel.org
15347 S:      Maintained
15348 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15349
15350 QUALCOMM IPC ROUTER (QRTR) DRIVER
15351 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15352 L:      linux-arm-msm@vger.kernel.org
15353 S:      Maintained
15354 F:      include/trace/events/qrtr.h
15355 F:      include/uapi/linux/qrtr.h
15356 F:      net/qrtr/
15357
15358 QUALCOMM IPCC MAILBOX DRIVER
15359 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15360 L:      linux-arm-msm@vger.kernel.org
15361 S:      Supported
15362 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15363 F:      drivers/mailbox/qcom-ipcc.c
15364 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15365
15366 QUALCOMM IPQ4019 USB PHY DRIVER
15367 M:      Robert Marko <robert.marko@sartura.hr>
15368 M:      Luka Perkov <luka.perkov@sartura.hr>
15369 L:      linux-arm-msm@vger.kernel.org
15370 S:      Maintained
15371 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15372 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15373
15374 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15375 M:      Robert Marko <robert.marko@sartura.hr>
15376 M:      Luka Perkov <luka.perkov@sartura.hr>
15377 L:      linux-arm-msm@vger.kernel.org
15378 S:      Maintained
15379 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15380 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15381
15382 QUALCOMM RMNET DRIVER
15383 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15384 M:      Sean Tranchetti <stranche@codeaurora.org>
15385 L:      netdev@vger.kernel.org
15386 S:      Maintained
15387 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15388 F:      drivers/net/ethernet/qualcomm/rmnet/
15389 F:      include/linux/if_rmnet.h
15390
15391 QUALCOMM TSENS THERMAL DRIVER
15392 M:      Amit Kucheria <amitk@kernel.org>
15393 M:      Thara Gopinath <thara.gopinath@linaro.org>
15394 L:      linux-pm@vger.kernel.org
15395 L:      linux-arm-msm@vger.kernel.org
15396 S:      Maintained
15397 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15398 F:      drivers/thermal/qcom/
15399
15400 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15401 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15402 L:      linux-media@vger.kernel.org
15403 L:      linux-arm-msm@vger.kernel.org
15404 S:      Maintained
15405 T:      git git://linuxtv.org/media_tree.git
15406 F:      Documentation/devicetree/bindings/media/*venus*
15407 F:      drivers/media/platform/qcom/venus/
15408
15409 QUALCOMM WCN36XX WIRELESS DRIVER
15410 M:      Kalle Valo <kvalo@codeaurora.org>
15411 L:      wcn36xx@lists.infradead.org
15412 S:      Supported
15413 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15414 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15415 F:      drivers/net/wireless/ath/wcn36xx/
15416
15417 QUANTENNA QTNFMAC WIRELESS DRIVER
15418 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15419 R:      Sergey Matyukevich <geomatsi@gmail.com>
15420 L:      linux-wireless@vger.kernel.org
15421 S:      Maintained
15422 F:      drivers/net/wireless/quantenna
15423
15424 RADEON and AMDGPU DRM DRIVERS
15425 M:      Alex Deucher <alexander.deucher@amd.com>
15426 M:      Christian König <christian.koenig@amd.com>
15427 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15428 L:      amd-gfx@lists.freedesktop.org
15429 S:      Supported
15430 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15431 F:      drivers/gpu/drm/amd/
15432 F:      drivers/gpu/drm/radeon/
15433 F:      include/uapi/drm/amdgpu_drm.h
15434 F:      include/uapi/drm/radeon_drm.h
15435
15436 RADEON FRAMEBUFFER DISPLAY DRIVER
15437 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15438 L:      linux-fbdev@vger.kernel.org
15439 S:      Maintained
15440 F:      drivers/video/fbdev/aty/radeon*
15441 F:      include/uapi/linux/radeonfb.h
15442
15443 RADIOSHARK RADIO DRIVER
15444 M:      Hans Verkuil <hverkuil@xs4all.nl>
15445 L:      linux-media@vger.kernel.org
15446 S:      Maintained
15447 T:      git git://linuxtv.org/media_tree.git
15448 F:      drivers/media/radio/radio-shark.c
15449
15450 RADIOSHARK2 RADIO DRIVER
15451 M:      Hans Verkuil <hverkuil@xs4all.nl>
15452 L:      linux-media@vger.kernel.org
15453 S:      Maintained
15454 T:      git git://linuxtv.org/media_tree.git
15455 F:      drivers/media/radio/radio-shark2.c
15456 F:      drivers/media/radio/radio-tea5777.c
15457
15458 RADOS BLOCK DEVICE (RBD)
15459 M:      Ilya Dryomov <idryomov@gmail.com>
15460 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15461 L:      ceph-devel@vger.kernel.org
15462 S:      Supported
15463 W:      http://ceph.com/
15464 T:      git git://github.com/ceph/ceph-client.git
15465 F:      Documentation/ABI/testing/sysfs-bus-rbd
15466 F:      drivers/block/rbd.c
15467 F:      drivers/block/rbd_types.h
15468
15469 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15470 M:      Paul Mackerras <paulus@samba.org>
15471 L:      linux-fbdev@vger.kernel.org
15472 S:      Maintained
15473 F:      drivers/video/fbdev/aty/aty128fb.c
15474
15475 RAINSHADOW-CEC DRIVER
15476 M:      Hans Verkuil <hverkuil@xs4all.nl>
15477 L:      linux-media@vger.kernel.org
15478 S:      Maintained
15479 T:      git git://linuxtv.org/media_tree.git
15480 F:      drivers/media/cec/usb/rainshadow/
15481
15482 RALINK MIPS ARCHITECTURE
15483 M:      John Crispin <john@phrozen.org>
15484 L:      linux-mips@vger.kernel.org
15485 S:      Maintained
15486 F:      arch/mips/ralink
15487
15488 RALINK RT2X00 WIRELESS LAN DRIVER
15489 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15490 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15491 L:      linux-wireless@vger.kernel.org
15492 S:      Maintained
15493 F:      drivers/net/wireless/ralink/rt2x00/
15494
15495 RAMDISK RAM BLOCK DEVICE DRIVER
15496 M:      Jens Axboe <axboe@kernel.dk>
15497 S:      Maintained
15498 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15499 F:      drivers/block/brd.c
15500
15501 RANCHU VIRTUAL BOARD FOR MIPS
15502 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15503 L:      linux-mips@vger.kernel.org
15504 S:      Supported
15505 F:      arch/mips/configs/generic/board-ranchu.config
15506 F:      arch/mips/generic/board-ranchu.c
15507
15508 RANDOM NUMBER DRIVER
15509 M:      "Theodore Ts'o" <tytso@mit.edu>
15510 S:      Maintained
15511 F:      drivers/char/random.c
15512
15513 RAPIDIO SUBSYSTEM
15514 M:      Matt Porter <mporter@kernel.crashing.org>
15515 M:      Alexandre Bounine <alex.bou9@gmail.com>
15516 S:      Maintained
15517 F:      drivers/rapidio/
15518
15519 RAS INFRASTRUCTURE
15520 M:      Tony Luck <tony.luck@intel.com>
15521 M:      Borislav Petkov <bp@alien8.de>
15522 L:      linux-edac@vger.kernel.org
15523 S:      Maintained
15524 F:      Documentation/admin-guide/ras.rst
15525 F:      drivers/ras/
15526 F:      include/linux/ras.h
15527 F:      include/ras/ras_event.h
15528
15529 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15530 L:      linux-wireless@vger.kernel.org
15531 S:      Orphan
15532 F:      drivers/net/wireless/ray*
15533
15534 RC-CORE / LIRC FRAMEWORK
15535 M:      Sean Young <sean@mess.org>
15536 L:      linux-media@vger.kernel.org
15537 S:      Maintained
15538 W:      http://linuxtv.org
15539 T:      git git://linuxtv.org/media_tree.git
15540 F:      Documentation/driver-api/media/rc-core.rst
15541 F:      Documentation/userspace-api/media/rc/
15542 F:      drivers/media/rc/
15543 F:      include/media/rc-map.h
15544 F:      include/media/rc-core.h
15545 F:      include/uapi/linux/lirc.h
15546
15547 RCMM REMOTE CONTROLS DECODER
15548 M:      Patrick Lerda <patrick9876@free.fr>
15549 S:      Maintained
15550 F:      drivers/media/rc/ir-rcmm-decoder.c
15551
15552 RCUTORTURE TEST FRAMEWORK
15553 M:      "Paul E. McKenney" <paulmck@kernel.org>
15554 M:      Josh Triplett <josh@joshtriplett.org>
15555 R:      Steven Rostedt <rostedt@goodmis.org>
15556 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15557 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15558 L:      rcu@vger.kernel.org
15559 S:      Supported
15560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15561 F:      tools/testing/selftests/rcutorture
15562
15563 RDACM20 Camera Sensor
15564 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15565 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15566 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15567 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15568 L:      linux-media@vger.kernel.org
15569 S:      Maintained
15570 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15571 F:      drivers/media/i2c/max9271.c
15572 F:      drivers/media/i2c/max9271.h
15573 F:      drivers/media/i2c/rdacm20.c
15574
15575 RDACM21 Camera Sensor
15576 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15577 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15578 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15579 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15580 L:      linux-media@vger.kernel.org
15581 S:      Maintained
15582 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15583 F:      drivers/media/i2c/max9271.c
15584 F:      drivers/media/i2c/max9271.h
15585 F:      drivers/media/i2c/rdacm21.c
15586
15587 RDC R-321X SoC
15588 M:      Florian Fainelli <florian@openwrt.org>
15589 S:      Maintained
15590
15591 RDC R6040 FAST ETHERNET DRIVER
15592 M:      Florian Fainelli <f.fainelli@gmail.com>
15593 L:      netdev@vger.kernel.org
15594 S:      Maintained
15595 F:      drivers/net/ethernet/rdc/r6040.c
15596
15597 RDMAVT - RDMA verbs software
15598 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15599 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15600 L:      linux-rdma@vger.kernel.org
15601 S:      Supported
15602 F:      drivers/infiniband/sw/rdmavt
15603
15604 RDS - RELIABLE DATAGRAM SOCKETS
15605 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15606 L:      netdev@vger.kernel.org
15607 L:      linux-rdma@vger.kernel.org
15608 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15609 S:      Supported
15610 W:      https://oss.oracle.com/projects/rds/
15611 F:      Documentation/networking/rds.rst
15612 F:      net/rds/
15613
15614 RDT - RESOURCE ALLOCATION
15615 M:      Fenghua Yu <fenghua.yu@intel.com>
15616 M:      Reinette Chatre <reinette.chatre@intel.com>
15617 L:      linux-kernel@vger.kernel.org
15618 S:      Supported
15619 F:      Documentation/x86/resctrl*
15620 F:      arch/x86/include/asm/resctrl.h
15621 F:      arch/x86/kernel/cpu/resctrl/
15622 F:      tools/testing/selftests/resctrl/
15623
15624 READ-COPY UPDATE (RCU)
15625 M:      "Paul E. McKenney" <paulmck@kernel.org>
15626 M:      Josh Triplett <josh@joshtriplett.org>
15627 R:      Steven Rostedt <rostedt@goodmis.org>
15628 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15629 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15630 R:      Joel Fernandes <joel@joelfernandes.org>
15631 L:      rcu@vger.kernel.org
15632 S:      Supported
15633 W:      http://www.rdrop.com/users/paulmck/RCU/
15634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15635 F:      Documentation/RCU/
15636 F:      include/linux/rcu*
15637 F:      kernel/rcu/
15638 X:      Documentation/RCU/torture.rst
15639 X:      include/linux/srcu*.h
15640 X:      kernel/rcu/srcu*.c
15641
15642 REAL TIME CLOCK (RTC) SUBSYSTEM
15643 M:      Alessandro Zummo <a.zummo@towertech.it>
15644 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15645 L:      linux-rtc@vger.kernel.org
15646 S:      Maintained
15647 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15649 F:      Documentation/admin-guide/rtc.rst
15650 F:      Documentation/devicetree/bindings/rtc/
15651 F:      drivers/rtc/
15652 F:      include/linux/platform_data/rtc-*
15653 F:      include/linux/rtc.h
15654 F:      include/linux/rtc/
15655 F:      include/uapi/linux/rtc.h
15656 F:      tools/testing/selftests/rtc/
15657
15658 REALTEK AUDIO CODECS
15659 M:      Oder Chiou <oder_chiou@realtek.com>
15660 S:      Maintained
15661 F:      include/sound/rt*.h
15662 F:      sound/soc/codecs/rt*
15663
15664 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15665 M:      Linus Walleij <linus.walleij@linaro.org>
15666 S:      Maintained
15667 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15668 F:      drivers/net/dsa/realtek-smi*
15669 F:      drivers/net/dsa/rtl83*
15670
15671 REALTEK WIRELESS DRIVER (rtlwifi family)
15672 M:      Ping-Ke Shih <pkshih@realtek.com>
15673 L:      linux-wireless@vger.kernel.org
15674 S:      Maintained
15675 W:      https://wireless.wiki.kernel.org/
15676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15677 F:      drivers/net/wireless/realtek/rtlwifi/
15678
15679 REALTEK WIRELESS DRIVER (rtw88)
15680 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15681 L:      linux-wireless@vger.kernel.org
15682 S:      Maintained
15683 F:      drivers/net/wireless/realtek/rtw88/
15684
15685 REDPINE WIRELESS DRIVER
15686 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15687 M:      Siva Rebbagondla <siva8118@gmail.com>
15688 L:      linux-wireless@vger.kernel.org
15689 S:      Maintained
15690 F:      drivers/net/wireless/rsi/
15691
15692 REGISTER MAP ABSTRACTION
15693 M:      Mark Brown <broonie@kernel.org>
15694 L:      linux-kernel@vger.kernel.org
15695 S:      Supported
15696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15697 F:      Documentation/devicetree/bindings/regmap/
15698 F:      drivers/base/regmap/
15699 F:      include/linux/regmap.h
15700
15701 REISERFS FILE SYSTEM
15702 L:      reiserfs-devel@vger.kernel.org
15703 S:      Supported
15704 F:      fs/reiserfs/
15705
15706 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15707 M:      Ohad Ben-Cohen <ohad@wizery.com>
15708 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15709 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15710 L:      linux-remoteproc@vger.kernel.org
15711 S:      Maintained
15712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15713 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15714 F:      Documentation/devicetree/bindings/remoteproc/
15715 F:      Documentation/staging/remoteproc.rst
15716 F:      drivers/remoteproc/
15717 F:      include/linux/remoteproc.h
15718 F:      include/linux/remoteproc/
15719
15720 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15721 M:      Ohad Ben-Cohen <ohad@wizery.com>
15722 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15723 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15724 L:      linux-remoteproc@vger.kernel.org
15725 S:      Maintained
15726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15727 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15728 F:      Documentation/staging/rpmsg.rst
15729 F:      drivers/rpmsg/
15730 F:      include/linux/rpmsg.h
15731 F:      include/linux/rpmsg/
15732 F:      include/uapi/linux/rpmsg.h
15733 F:      samples/rpmsg/
15734
15735 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15736 M:      Stephan Gerhold <stephan@gerhold.net>
15737 L:      netdev@vger.kernel.org
15738 L:      linux-remoteproc@vger.kernel.org
15739 S:      Maintained
15740 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
15741
15742 RENESAS CLOCK DRIVERS
15743 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15744 L:      linux-renesas-soc@vger.kernel.org
15745 S:      Supported
15746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15747 F:      Documentation/devicetree/bindings/clock/renesas,*
15748 F:      drivers/clk/renesas/
15749
15750 RENESAS EMEV2 I2C DRIVER
15751 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15752 L:      linux-renesas-soc@vger.kernel.org
15753 S:      Supported
15754 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
15755 F:      drivers/i2c/busses/i2c-emev2.c
15756
15757 RENESAS ETHERNET DRIVERS
15758 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15759 L:      netdev@vger.kernel.org
15760 L:      linux-renesas-soc@vger.kernel.org
15761 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15762 F:      drivers/net/ethernet/renesas/
15763 F:      include/linux/sh_eth.h
15764
15765 RENESAS R-CAR GYROADC DRIVER
15766 M:      Marek Vasut <marek.vasut@gmail.com>
15767 L:      linux-iio@vger.kernel.org
15768 S:      Supported
15769 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15770 F:      drivers/iio/adc/rcar-gyroadc.c
15771
15772 RENESAS R-CAR I2C DRIVERS
15773 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15774 L:      linux-renesas-soc@vger.kernel.org
15775 S:      Supported
15776 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
15777 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
15778 F:      drivers/i2c/busses/i2c-rcar.c
15779 F:      drivers/i2c/busses/i2c-sh_mobile.c
15780
15781 RENESAS R-CAR THERMAL DRIVERS
15782 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15783 L:      linux-renesas-soc@vger.kernel.org
15784 S:      Supported
15785 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15786 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15787 F:      drivers/thermal/rcar_gen3_thermal.c
15788 F:      drivers/thermal/rcar_thermal.c
15789
15790 RENESAS RIIC DRIVER
15791 M:      Chris Brandt <chris.brandt@renesas.com>
15792 L:      linux-renesas-soc@vger.kernel.org
15793 S:      Supported
15794 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
15795 F:      drivers/i2c/busses/i2c-riic.c
15796
15797 RENESAS USB PHY DRIVER
15798 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15799 L:      linux-renesas-soc@vger.kernel.org
15800 S:      Maintained
15801 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15802
15803 RESET CONTROLLER FRAMEWORK
15804 M:      Philipp Zabel <p.zabel@pengutronix.de>
15805 S:      Maintained
15806 T:      git git://git.pengutronix.de/git/pza/linux
15807 F:      Documentation/devicetree/bindings/reset/
15808 F:      Documentation/driver-api/reset.rst
15809 F:      drivers/reset/
15810 F:      include/dt-bindings/reset/
15811 F:      include/linux/reset-controller.h
15812 F:      include/linux/reset.h
15813 F:      include/linux/reset/
15814 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15815
15816 RESTARTABLE SEQUENCES SUPPORT
15817 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15818 M:      Peter Zijlstra <peterz@infradead.org>
15819 M:      "Paul E. McKenney" <paulmck@kernel.org>
15820 M:      Boqun Feng <boqun.feng@gmail.com>
15821 L:      linux-kernel@vger.kernel.org
15822 S:      Supported
15823 F:      include/trace/events/rseq.h
15824 F:      include/uapi/linux/rseq.h
15825 F:      kernel/rseq.c
15826 F:      tools/testing/selftests/rseq/
15827
15828 RFKILL
15829 M:      Johannes Berg <johannes@sipsolutions.net>
15830 L:      linux-wireless@vger.kernel.org
15831 S:      Maintained
15832 W:      https://wireless.wiki.kernel.org/
15833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15835 F:      Documentation/ABI/stable/sysfs-class-rfkill
15836 F:      Documentation/driver-api/rfkill.rst
15837 F:      include/linux/rfkill.h
15838 F:      include/uapi/linux/rfkill.h
15839 F:      net/rfkill/
15840
15841 RHASHTABLE
15842 M:      Thomas Graf <tgraf@suug.ch>
15843 M:      Herbert Xu <herbert@gondor.apana.org.au>
15844 L:      netdev@vger.kernel.org
15845 S:      Maintained
15846 F:      include/linux/rhashtable-types.h
15847 F:      include/linux/rhashtable.h
15848 F:      lib/rhashtable.c
15849 F:      lib/test_rhashtable.c
15850
15851 RICOH R5C592 MEMORYSTICK DRIVER
15852 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15853 S:      Maintained
15854 F:      drivers/memstick/host/r592.*
15855
15856 RICOH SMARTMEDIA/XD DRIVER
15857 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15858 S:      Maintained
15859 F:      drivers/mtd/nand/raw/r852.c
15860 F:      drivers/mtd/nand/raw/r852.h
15861
15862 RISC-V ARCHITECTURE
15863 M:      Paul Walmsley <paul.walmsley@sifive.com>
15864 M:      Palmer Dabbelt <palmer@dabbelt.com>
15865 M:      Albert Ou <aou@eecs.berkeley.edu>
15866 L:      linux-riscv@lists.infradead.org
15867 S:      Supported
15868 P:      Documentation/riscv/patch-acceptance.rst
15869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15870 F:      arch/riscv/
15871 N:      riscv
15872 K:      riscv
15873
15874 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
15875 M:      Lewis Hanly <lewis.hanly@microchip.com>
15876 L:      linux-riscv@lists.infradead.org
15877 S:      Supported
15878 F:      drivers/mailbox/mailbox-mpfs.c
15879 F:      drivers/soc/microchip/
15880 F:      include/soc/microchip/mpfs.h
15881
15882 RNBD BLOCK DRIVERS
15883 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
15884 M:      Jack Wang <jinpu.wang@ionos.com>
15885 L:      linux-block@vger.kernel.org
15886 S:      Maintained
15887 F:      drivers/block/rnbd/
15888
15889 ROCCAT DRIVERS
15890 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15891 S:      Maintained
15892 W:      http://sourceforge.net/projects/roccat/
15893 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15894 F:      drivers/hid/hid-roccat*
15895 F:      include/linux/hid-roccat*
15896
15897 ROCKCHIP ISP V1 DRIVER
15898 M:      Helen Koike <helen.koike@collabora.com>
15899 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15900 L:      linux-media@vger.kernel.org
15901 L:      linux-rockchip@lists.infradead.org
15902 S:      Maintained
15903 F:      Documentation/admin-guide/media/rkisp1.rst
15904 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15905 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15906 F:      drivers/media/platform/rockchip/rkisp1
15907 F:      include/uapi/linux/rkisp1-config.h
15908
15909 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15910 M:      Jacob Chen <jacob-chen@iotwrt.com>
15911 M:      Ezequiel Garcia <ezequiel@collabora.com>
15912 L:      linux-media@vger.kernel.org
15913 L:      linux-rockchip@lists.infradead.org
15914 S:      Maintained
15915 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15916 F:      drivers/media/platform/rockchip/rga/
15917
15918 ROCKCHIP VIDEO DECODER DRIVER
15919 M:      Ezequiel Garcia <ezequiel@collabora.com>
15920 L:      linux-media@vger.kernel.org
15921 L:      linux-rockchip@lists.infradead.org
15922 S:      Maintained
15923 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15924 F:      drivers/staging/media/rkvdec/
15925
15926 ROCKER DRIVER
15927 M:      Jiri Pirko <jiri@resnulli.us>
15928 L:      netdev@vger.kernel.org
15929 S:      Supported
15930 F:      drivers/net/ethernet/rocker/
15931
15932 ROCKETPORT EXPRESS/INFINITY DRIVER
15933 M:      Kevin Cernekee <cernekee@gmail.com>
15934 L:      linux-serial@vger.kernel.org
15935 S:      Odd Fixes
15936 F:      drivers/tty/serial/rp2.*
15937
15938 ROHM BD99954 CHARGER IC
15939 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15940 L:      linux-power@fi.rohmeurope.com
15941 S:      Supported
15942 F:      drivers/power/supply/bd99954-charger.c
15943 F:      drivers/power/supply/bd99954-charger.h
15944
15945 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15946 M:      Tomasz Duszynski <tduszyns@gmail.com>
15947 S:      Maintained
15948 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15949 F:      drivers/iio/light/bh1750.c
15950
15951 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15952 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15953 L:      linux-kernel@vger.kernel.org
15954 L:      linux-renesas-soc@vger.kernel.org
15955 S:      Supported
15956 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15957 F:      drivers/gpio/gpio-bd9571mwv.c
15958 F:      drivers/mfd/bd9571mwv.c
15959 F:      drivers/regulator/bd9571mwv-regulator.c
15960 F:      include/linux/mfd/bd9571mwv.h
15961
15962 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15963 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15964 L:      linux-power@fi.rohmeurope.com
15965 S:      Supported
15966 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15967 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15968 F:      drivers/clk/clk-bd718x7.c
15969 F:      drivers/gpio/gpio-bd70528.c
15970 F:      drivers/gpio/gpio-bd71815.c
15971 F:      drivers/gpio/gpio-bd71828.c
15972 F:      drivers/mfd/rohm-bd70528.c
15973 F:      drivers/mfd/rohm-bd71828.c
15974 F:      drivers/mfd/rohm-bd718x7.c
15975 F:      drivers/mfd/rohm-bd9576.c
15976 F:      drivers/power/supply/bd70528-charger.c
15977 F:      drivers/regulator/bd70528-regulator.c
15978 F:      drivers/regulator/bd71815-regulator.c
15979 F:      drivers/regulator/bd71828-regulator.c
15980 F:      drivers/regulator/bd718x7-regulator.c
15981 F:      drivers/regulator/bd9576-regulator.c
15982 F:      drivers/regulator/rohm-regulator.c
15983 F:      drivers/rtc/rtc-bd70528.c
15984 F:      drivers/watchdog/bd70528_wdt.c
15985 F:      drivers/watchdog/bd9576_wdt.c
15986 F:      include/linux/mfd/rohm-bd70528.h
15987 F:      include/linux/mfd/rohm-bd71815.h
15988 F:      include/linux/mfd/rohm-bd71828.h
15989 F:      include/linux/mfd/rohm-bd718x7.h
15990 F:      include/linux/mfd/rohm-bd957x.h
15991 F:      include/linux/mfd/rohm-generic.h
15992 F:      include/linux/mfd/rohm-shared.h
15993
15994 ROSE NETWORK LAYER
15995 M:      Ralf Baechle <ralf@linux-mips.org>
15996 L:      linux-hams@vger.kernel.org
15997 S:      Maintained
15998 W:      http://www.linux-ax25.org/
15999 F:      include/net/rose.h
16000 F:      include/uapi/linux/rose.h
16001 F:      net/rose/
16002
16003 ROTATION DRIVER FOR ALLWINNER A83T
16004 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16005 L:      linux-media@vger.kernel.org
16006 S:      Maintained
16007 T:      git git://linuxtv.org/media_tree.git
16008 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16009 F:      drivers/media/platform/sunxi/sun8i-rotate/
16010
16011 RTL2830 MEDIA DRIVER
16012 M:      Antti Palosaari <crope@iki.fi>
16013 L:      linux-media@vger.kernel.org
16014 S:      Maintained
16015 W:      https://linuxtv.org
16016 W:      http://palosaari.fi/linux/
16017 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16018 T:      git git://linuxtv.org/anttip/media_tree.git
16019 F:      drivers/media/dvb-frontends/rtl2830*
16020
16021 RTL2832 MEDIA DRIVER
16022 M:      Antti Palosaari <crope@iki.fi>
16023 L:      linux-media@vger.kernel.org
16024 S:      Maintained
16025 W:      https://linuxtv.org
16026 W:      http://palosaari.fi/linux/
16027 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16028 T:      git git://linuxtv.org/anttip/media_tree.git
16029 F:      drivers/media/dvb-frontends/rtl2832*
16030
16031 RTL2832_SDR MEDIA DRIVER
16032 M:      Antti Palosaari <crope@iki.fi>
16033 L:      linux-media@vger.kernel.org
16034 S:      Maintained
16035 W:      https://linuxtv.org
16036 W:      http://palosaari.fi/linux/
16037 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16038 T:      git git://linuxtv.org/anttip/media_tree.git
16039 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16040
16041 RTL8180 WIRELESS DRIVER
16042 L:      linux-wireless@vger.kernel.org
16043 S:      Orphan
16044 W:      https://wireless.wiki.kernel.org/
16045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16046 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16047
16048 RTL8187 WIRELESS DRIVER
16049 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16050 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16051 M:      Larry Finger <Larry.Finger@lwfinger.net>
16052 L:      linux-wireless@vger.kernel.org
16053 S:      Maintained
16054 W:      https://wireless.wiki.kernel.org/
16055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16056 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16057
16058 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16059 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16060 L:      linux-wireless@vger.kernel.org
16061 S:      Maintained
16062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16063 F:      drivers/net/wireless/realtek/rtl8xxxu/
16064
16065 RTRS TRANSPORT DRIVERS
16066 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16067 M:      Jack Wang <jinpu.wang@ionos.com>
16068 L:      linux-rdma@vger.kernel.org
16069 S:      Maintained
16070 F:      drivers/infiniband/ulp/rtrs/
16071
16072 RXRPC SOCKETS (AF_RXRPC)
16073 M:      David Howells <dhowells@redhat.com>
16074 M:      Marc Dionne <marc.dionne@auristor.com>
16075 L:      linux-afs@lists.infradead.org
16076 S:      Supported
16077 W:      https://www.infradead.org/~dhowells/kafs/
16078 F:      Documentation/networking/rxrpc.rst
16079 F:      include/keys/rxrpc-type.h
16080 F:      include/net/af_rxrpc.h
16081 F:      include/trace/events/rxrpc.h
16082 F:      include/uapi/linux/rxrpc.h
16083 F:      net/rxrpc/
16084
16085 S3 SAVAGE FRAMEBUFFER DRIVER
16086 M:      Antonino Daplas <adaplas@gmail.com>
16087 L:      linux-fbdev@vger.kernel.org
16088 S:      Maintained
16089 F:      drivers/video/fbdev/savage/
16090
16091 S390
16092 M:      Heiko Carstens <hca@linux.ibm.com>
16093 M:      Vasily Gorbik <gor@linux.ibm.com>
16094 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16095 L:      linux-s390@vger.kernel.org
16096 S:      Supported
16097 W:      http://www.ibm.com/developerworks/linux/linux390/
16098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16099 F:      Documentation/driver-api/s390-drivers.rst
16100 F:      Documentation/s390/
16101 F:      arch/s390/
16102 F:      drivers/s390/
16103
16104 S390 COMMON I/O LAYER
16105 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16106 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16107 L:      linux-s390@vger.kernel.org
16108 S:      Supported
16109 W:      http://www.ibm.com/developerworks/linux/linux390/
16110 F:      drivers/s390/cio/
16111
16112 S390 DASD DRIVER
16113 M:      Stefan Haberland <sth@linux.ibm.com>
16114 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16115 L:      linux-s390@vger.kernel.org
16116 S:      Supported
16117 W:      http://www.ibm.com/developerworks/linux/linux390/
16118 F:      block/partitions/ibm.c
16119 F:      drivers/s390/block/dasd*
16120 F:      include/linux/dasd_mod.h
16121
16122 S390 IOMMU (PCI)
16123 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16124 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16125 L:      linux-s390@vger.kernel.org
16126 S:      Supported
16127 W:      http://www.ibm.com/developerworks/linux/linux390/
16128 F:      drivers/iommu/s390-iommu.c
16129
16130 S390 IUCV NETWORK LAYER
16131 M:      Julian Wiedmann <jwi@linux.ibm.com>
16132 M:      Karsten Graul <kgraul@linux.ibm.com>
16133 L:      linux-s390@vger.kernel.org
16134 L:      netdev@vger.kernel.org
16135 S:      Supported
16136 W:      http://www.ibm.com/developerworks/linux/linux390/
16137 F:      drivers/s390/net/*iucv*
16138 F:      include/net/iucv/
16139 F:      net/iucv/
16140
16141 S390 NETWORK DRIVERS
16142 M:      Julian Wiedmann <jwi@linux.ibm.com>
16143 M:      Karsten Graul <kgraul@linux.ibm.com>
16144 L:      linux-s390@vger.kernel.org
16145 L:      netdev@vger.kernel.org
16146 S:      Supported
16147 W:      http://www.ibm.com/developerworks/linux/linux390/
16148 F:      drivers/s390/net/
16149
16150 S390 PCI SUBSYSTEM
16151 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16152 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16153 L:      linux-s390@vger.kernel.org
16154 S:      Supported
16155 W:      http://www.ibm.com/developerworks/linux/linux390/
16156 F:      arch/s390/pci/
16157 F:      drivers/pci/hotplug/s390_pci_hpc.c
16158 F:      Documentation/s390/pci.rst
16159
16160 S390 VFIO AP DRIVER
16161 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16162 M:      Halil Pasic <pasic@linux.ibm.com>
16163 M:      Jason Herne <jjherne@linux.ibm.com>
16164 L:      linux-s390@vger.kernel.org
16165 S:      Supported
16166 W:      http://www.ibm.com/developerworks/linux/linux390/
16167 F:      Documentation/s390/vfio-ap.rst
16168 F:      drivers/s390/crypto/vfio_ap_drv.c
16169 F:      drivers/s390/crypto/vfio_ap_ops.c
16170 F:      drivers/s390/crypto/vfio_ap_private.h
16171
16172 S390 VFIO-CCW DRIVER
16173 M:      Cornelia Huck <cohuck@redhat.com>
16174 M:      Eric Farman <farman@linux.ibm.com>
16175 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16176 R:      Halil Pasic <pasic@linux.ibm.com>
16177 L:      linux-s390@vger.kernel.org
16178 L:      kvm@vger.kernel.org
16179 S:      Supported
16180 F:      Documentation/s390/vfio-ccw.rst
16181 F:      drivers/s390/cio/vfio_ccw*
16182 F:      include/uapi/linux/vfio_ccw.h
16183
16184 S390 VFIO-PCI DRIVER
16185 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16186 M:      Eric Farman <farman@linux.ibm.com>
16187 L:      linux-s390@vger.kernel.org
16188 L:      kvm@vger.kernel.org
16189 S:      Supported
16190 F:      drivers/vfio/pci/vfio_pci_zdev.c
16191 F:      include/uapi/linux/vfio_zdev.h
16192
16193 S390 ZCRYPT DRIVER
16194 M:      Harald Freudenberger <freude@linux.ibm.com>
16195 L:      linux-s390@vger.kernel.org
16196 S:      Supported
16197 W:      http://www.ibm.com/developerworks/linux/linux390/
16198 F:      drivers/s390/crypto/
16199
16200 S390 ZFCP DRIVER
16201 M:      Steffen Maier <maier@linux.ibm.com>
16202 M:      Benjamin Block <bblock@linux.ibm.com>
16203 L:      linux-s390@vger.kernel.org
16204 S:      Supported
16205 W:      http://www.ibm.com/developerworks/linux/linux390/
16206 F:      drivers/s390/scsi/zfcp_*
16207
16208 S3C ADC BATTERY DRIVER
16209 M:      Krzysztof Kozlowski <krzk@kernel.org>
16210 L:      linux-samsung-soc@vger.kernel.org
16211 S:      Odd Fixes
16212 F:      drivers/power/supply/s3c_adc_battery.c
16213 F:      include/linux/s3c_adc_battery.h
16214
16215 S3C24XX SD/MMC Driver
16216 M:      Ben Dooks <ben-linux@fluff.org>
16217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16218 S:      Supported
16219 F:      drivers/mmc/host/s3cmci.*
16220
16221 SAA6588 RDS RECEIVER DRIVER
16222 M:      Hans Verkuil <hverkuil@xs4all.nl>
16223 L:      linux-media@vger.kernel.org
16224 S:      Odd Fixes
16225 W:      https://linuxtv.org
16226 T:      git git://linuxtv.org/media_tree.git
16227 F:      drivers/media/i2c/saa6588*
16228
16229 SAA7134 VIDEO4LINUX DRIVER
16230 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16231 L:      linux-media@vger.kernel.org
16232 S:      Odd fixes
16233 W:      https://linuxtv.org
16234 T:      git git://linuxtv.org/media_tree.git
16235 F:      Documentation/driver-api/media/drivers/saa7134*
16236 F:      drivers/media/pci/saa7134/
16237
16238 SAA7146 VIDEO4LINUX-2 DRIVER
16239 M:      Hans Verkuil <hverkuil@xs4all.nl>
16240 L:      linux-media@vger.kernel.org
16241 S:      Maintained
16242 T:      git git://linuxtv.org/media_tree.git
16243 F:      drivers/media/common/saa7146/
16244 F:      drivers/media/pci/saa7146/
16245 F:      include/media/drv-intf/saa7146*
16246
16247 SAFESETID SECURITY MODULE
16248 M:      Micah Morton <mortonm@chromium.org>
16249 S:      Supported
16250 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16251 F:      security/safesetid/
16252
16253 SAMSUNG AUDIO (ASoC) DRIVERS
16254 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16255 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16256 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16257 S:      Supported
16258 F:      Documentation/devicetree/bindings/sound/samsung*
16259 F:      sound/soc/samsung/
16260
16261 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16262 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16263 L:      linux-crypto@vger.kernel.org
16264 L:      linux-samsung-soc@vger.kernel.org
16265 S:      Maintained
16266 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16267 F:      drivers/crypto/exynos-rng.c
16268
16269 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16270 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16271 L:      linux-samsung-soc@vger.kernel.org
16272 S:      Maintained
16273 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
16274 F:      drivers/char/hw_random/exynos-trng.c
16275
16276 SAMSUNG FRAMEBUFFER DRIVER
16277 M:      Jingoo Han <jingoohan1@gmail.com>
16278 L:      linux-fbdev@vger.kernel.org
16279 S:      Maintained
16280 F:      drivers/video/fbdev/s3c-fb.c
16281
16282 SAMSUNG INTERCONNECT DRIVERS
16283 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16284 M:      Artur Świgoń <a.swigon@samsung.com>
16285 L:      linux-pm@vger.kernel.org
16286 L:      linux-samsung-soc@vger.kernel.org
16287 S:      Supported
16288 F:      drivers/interconnect/samsung/
16289
16290 SAMSUNG LAPTOP DRIVER
16291 M:      Corentin Chary <corentin.chary@gmail.com>
16292 L:      platform-driver-x86@vger.kernel.org
16293 S:      Maintained
16294 F:      drivers/platform/x86/samsung-laptop.c
16295
16296 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16297 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16298 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16299 L:      linux-kernel@vger.kernel.org
16300 L:      linux-samsung-soc@vger.kernel.org
16301 S:      Supported
16302 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16303 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16304 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16305 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16306 F:      drivers/clk/clk-s2mps11.c
16307 F:      drivers/mfd/sec*.c
16308 F:      drivers/regulator/s2m*.c
16309 F:      drivers/regulator/s5m*.c
16310 F:      drivers/rtc/rtc-s5m.c
16311 F:      include/linux/mfd/samsung/
16312
16313 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16314 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16315 L:      linux-media@vger.kernel.org
16316 L:      linux-samsung-soc@vger.kernel.org
16317 S:      Maintained
16318 F:      drivers/media/platform/s3c-camif/
16319 F:      include/media/drv-intf/s3c_camif.h
16320
16321 SAMSUNG S3FWRN5 NFC DRIVER
16322 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16323 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16324 L:      linux-nfc@lists.01.org (subscribers-only)
16325 S:      Maintained
16326 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16327 F:      drivers/nfc/s3fwrn5
16328
16329 SAMSUNG S5C73M3 CAMERA DRIVER
16330 M:      Andrzej Hajda <a.hajda@samsung.com>
16331 L:      linux-media@vger.kernel.org
16332 S:      Supported
16333 F:      drivers/media/i2c/s5c73m3/*
16334
16335 SAMSUNG S5K5BAF CAMERA DRIVER
16336 M:      Andrzej Hajda <a.hajda@samsung.com>
16337 L:      linux-media@vger.kernel.org
16338 S:      Supported
16339 F:      drivers/media/i2c/s5k5baf.c
16340
16341 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16342 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16343 M:      Vladimir Zapolskiy <vz@mleia.com>
16344 L:      linux-crypto@vger.kernel.org
16345 L:      linux-samsung-soc@vger.kernel.org
16346 S:      Maintained
16347 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16348 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16349 F:      drivers/crypto/s5p-sss.c
16350
16351 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16352 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16353 L:      linux-media@vger.kernel.org
16354 S:      Supported
16355 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16356 F:      drivers/media/platform/exynos4-is/
16357
16358 SAMSUNG SOC CLOCK DRIVERS
16359 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16360 M:      Tomasz Figa <tomasz.figa@gmail.com>
16361 M:      Chanwoo Choi <cw00.choi@samsung.com>
16362 L:      linux-samsung-soc@vger.kernel.org
16363 S:      Supported
16364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16365 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16366 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16367 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16368 F:      drivers/clk/samsung/
16369 F:      include/dt-bindings/clock/exynos*.h
16370 F:      include/linux/clk/samsung.h
16371 F:      include/linux/platform_data/clk-s3c2410.h
16372
16373 SAMSUNG SPI DRIVERS
16374 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16375 M:      Andi Shyti <andi@etezian.org>
16376 L:      linux-spi@vger.kernel.org
16377 L:      linux-samsung-soc@vger.kernel.org
16378 S:      Maintained
16379 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16380 F:      drivers/spi/spi-s3c*
16381 F:      include/linux/platform_data/spi-s3c64xx.h
16382 F:      include/linux/spi/s3c24xx-fiq.h
16383
16384 SAMSUNG SXGBE DRIVERS
16385 M:      Byungho An <bh74.an@samsung.com>
16386 L:      netdev@vger.kernel.org
16387 S:      Supported
16388 F:      drivers/net/ethernet/samsung/sxgbe/
16389
16390 SAMSUNG THERMAL DRIVER
16391 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16392 L:      linux-pm@vger.kernel.org
16393 L:      linux-samsung-soc@vger.kernel.org
16394 S:      Supported
16395 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16396 F:      drivers/thermal/samsung/
16397
16398 SAMSUNG USB2 PHY DRIVER
16399 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16400 L:      linux-kernel@vger.kernel.org
16401 S:      Supported
16402 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16403 F:      Documentation/driver-api/phy/samsung-usb2.rst
16404 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16405 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16406 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16407 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16408 F:      drivers/phy/samsung/phy-samsung-usb2.c
16409 F:      drivers/phy/samsung/phy-samsung-usb2.h
16410
16411 SC1200 WDT DRIVER
16412 M:      Zwane Mwaikambo <zwanem@gmail.com>
16413 S:      Maintained
16414 F:      drivers/watchdog/sc1200wdt.c
16415
16416 SCHEDULER
16417 M:      Ingo Molnar <mingo@redhat.com>
16418 M:      Peter Zijlstra <peterz@infradead.org>
16419 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16420 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16421 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16422 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16423 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16424 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16425 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16426 L:      linux-kernel@vger.kernel.org
16427 S:      Maintained
16428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16429 F:      include/linux/preempt.h
16430 F:      include/linux/sched.h
16431 F:      include/linux/wait.h
16432 F:      include/uapi/linux/sched.h
16433 F:      kernel/sched/
16434
16435 SCR24X CHIP CARD INTERFACE DRIVER
16436 M:      Lubomir Rintel <lkundrak@v3.sk>
16437 S:      Supported
16438 F:      drivers/char/pcmcia/scr24x_cs.c
16439
16440 SCSI CDROM DRIVER
16441 M:      Jens Axboe <axboe@kernel.dk>
16442 L:      linux-scsi@vger.kernel.org
16443 S:      Maintained
16444 W:      http://www.kernel.dk
16445 F:      drivers/scsi/sr*
16446
16447 SCSI RDMA PROTOCOL (SRP) INITIATOR
16448 M:      Bart Van Assche <bvanassche@acm.org>
16449 L:      linux-rdma@vger.kernel.org
16450 S:      Supported
16451 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16452 F:      drivers/infiniband/ulp/srp/
16453 F:      include/scsi/srp.h
16454
16455 SCSI RDMA PROTOCOL (SRP) TARGET
16456 M:      Bart Van Assche <bvanassche@acm.org>
16457 L:      linux-rdma@vger.kernel.org
16458 L:      target-devel@vger.kernel.org
16459 S:      Supported
16460 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16461 F:      drivers/infiniband/ulp/srpt/
16462
16463 SCSI SG DRIVER
16464 M:      Doug Gilbert <dgilbert@interlog.com>
16465 L:      linux-scsi@vger.kernel.org
16466 S:      Maintained
16467 W:      http://sg.danny.cz/sg
16468 F:      Documentation/scsi/scsi-generic.rst
16469 F:      drivers/scsi/sg.c
16470 F:      include/scsi/sg.h
16471
16472 SCSI SUBSYSTEM
16473 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16474 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16475 L:      linux-scsi@vger.kernel.org
16476 S:      Maintained
16477 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16480 F:      Documentation/devicetree/bindings/scsi/
16481 F:      drivers/scsi/
16482 F:      include/scsi/
16483
16484 SCSI TAPE DRIVER
16485 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16486 L:      linux-scsi@vger.kernel.org
16487 S:      Maintained
16488 F:      Documentation/scsi/st.rst
16489 F:      drivers/scsi/st.*
16490 F:      drivers/scsi/st_*.h
16491
16492 SCSI TARGET CORE USER DRIVER
16493 M:      Bodo Stroesser <bostroesser@gmail.com>
16494 L:      linux-scsi@vger.kernel.org
16495 L:      target-devel@vger.kernel.org
16496 S:      Supported
16497 F:      Documentation/target/tcmu-design.rst
16498 F:      drivers/target/target_core_user.c
16499 F:      include/uapi/linux/target_core_user.h
16500
16501 SCSI TARGET SUBSYSTEM
16502 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16503 L:      linux-scsi@vger.kernel.org
16504 L:      target-devel@vger.kernel.org
16505 S:      Supported
16506 W:      http://www.linux-iscsi.org
16507 Q:      https://patchwork.kernel.org/project/target-devel/list/
16508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16509 F:      Documentation/target/
16510 F:      drivers/target/
16511 F:      include/target/
16512
16513 SCTP PROTOCOL
16514 M:      Vlad Yasevich <vyasevich@gmail.com>
16515 M:      Neil Horman <nhorman@tuxdriver.com>
16516 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16517 L:      linux-sctp@vger.kernel.org
16518 S:      Maintained
16519 W:      http://lksctp.sourceforge.net
16520 F:      Documentation/networking/sctp.rst
16521 F:      include/linux/sctp.h
16522 F:      include/net/sctp/
16523 F:      include/uapi/linux/sctp.h
16524 F:      net/sctp/
16525
16526 SCx200 CPU SUPPORT
16527 M:      Jim Cromie <jim.cromie@gmail.com>
16528 S:      Odd Fixes
16529 F:      Documentation/i2c/busses/scx200_acb.rst
16530 F:      arch/x86/platform/scx200/
16531 F:      drivers/i2c/busses/scx200*
16532 F:      drivers/mtd/maps/scx200_docflash.c
16533 F:      drivers/watchdog/scx200_wdt.c
16534 F:      include/linux/scx200.h
16535
16536 SCx200 GPIO DRIVER
16537 M:      Jim Cromie <jim.cromie@gmail.com>
16538 S:      Maintained
16539 F:      drivers/char/scx200_gpio.c
16540 F:      include/linux/scx200_gpio.h
16541
16542 SCx200 HRT CLOCKSOURCE DRIVER
16543 M:      Jim Cromie <jim.cromie@gmail.com>
16544 S:      Maintained
16545 F:      drivers/clocksource/scx200_hrt.c
16546
16547 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16548 M:      Sascha Sommer <saschasommer@freenet.de>
16549 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16550 S:      Maintained
16551 F:      drivers/mmc/host/sdricoh_cs.c
16552
16553 SECO BOARDS CEC DRIVER
16554 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16555 S:      Maintained
16556 F:      drivers/media/cec/platform/seco/seco-cec.c
16557 F:      drivers/media/cec/platform/seco/seco-cec.h
16558
16559 SECURE COMPUTING
16560 M:      Kees Cook <keescook@chromium.org>
16561 R:      Andy Lutomirski <luto@amacapital.net>
16562 R:      Will Drewry <wad@chromium.org>
16563 S:      Supported
16564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16565 F:      Documentation/userspace-api/seccomp_filter.rst
16566 F:      include/linux/seccomp.h
16567 F:      include/uapi/linux/seccomp.h
16568 F:      kernel/seccomp.c
16569 F:      tools/testing/selftests/kselftest_harness.h
16570 F:      tools/testing/selftests/seccomp/*
16571 K:      \bsecure_computing
16572 K:      \bTIF_SECCOMP\b
16573
16574 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16575 M:      Al Cooper <alcooperx@gmail.com>
16576 L:      linux-mmc@vger.kernel.org
16577 L:      bcm-kernel-feedback-list@broadcom.com
16578 S:      Maintained
16579 F:      drivers/mmc/host/sdhci-brcmstb*
16580
16581 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16582 M:      Adrian Hunter <adrian.hunter@intel.com>
16583 L:      linux-mmc@vger.kernel.org
16584 S:      Maintained
16585 F:      drivers/mmc/host/sdhci*
16586 F:      include/linux/mmc/sdhci*
16587
16588 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16589 M:      Eugen Hristev <eugen.hristev@microchip.com>
16590 L:      linux-mmc@vger.kernel.org
16591 S:      Supported
16592 F:      drivers/mmc/host/sdhci-of-at91.c
16593
16594 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16595 M:      Ben Dooks <ben-linux@fluff.org>
16596 M:      Jaehoon Chung <jh80.chung@samsung.com>
16597 L:      linux-mmc@vger.kernel.org
16598 S:      Maintained
16599 F:      drivers/mmc/host/sdhci-s3c*
16600
16601 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16602 M:      Viresh Kumar <vireshk@kernel.org>
16603 L:      linux-mmc@vger.kernel.org
16604 S:      Maintained
16605 F:      drivers/mmc/host/sdhci-spear.c
16606
16607 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16608 M:      Kishon Vijay Abraham I <kishon@ti.com>
16609 L:      linux-mmc@vger.kernel.org
16610 S:      Maintained
16611 F:      drivers/mmc/host/sdhci-omap.c
16612
16613 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16614 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16615 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16616 L:      linux-block@vger.kernel.org
16617 S:      Supported
16618 F:      block/opal_proto.h
16619 F:      block/sed*
16620 F:      include/linux/sed*
16621 F:      include/uapi/linux/sed*
16622
16623 SECURITY CONTACT
16624 M:      Security Officers <security@kernel.org>
16625 S:      Supported
16626 F:      Documentation/admin-guide/security-bugs.rst
16627
16628 SECURITY SUBSYSTEM
16629 M:      James Morris <jmorris@namei.org>
16630 M:      "Serge E. Hallyn" <serge@hallyn.com>
16631 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16632 S:      Supported
16633 W:      http://kernsec.org/
16634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16635 F:      security/
16636 X:      security/selinux/
16637
16638 SELINUX SECURITY MODULE
16639 M:      Paul Moore <paul@paul-moore.com>
16640 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16641 M:      Eric Paris <eparis@parisplace.org>
16642 L:      selinux@vger.kernel.org
16643 S:      Supported
16644 W:      https://selinuxproject.org
16645 W:      https://github.com/SELinuxProject
16646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16647 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16648 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16649 F:      Documentation/admin-guide/LSM/SELinux.rst
16650 F:      include/trace/events/avc.h
16651 F:      include/uapi/linux/selinux_netlink.h
16652 F:      scripts/selinux/
16653 F:      security/selinux/
16654
16655 SENSABLE PHANTOM
16656 M:      Jiri Slaby <jirislaby@kernel.org>
16657 S:      Maintained
16658 F:      drivers/misc/phantom.c
16659 F:      include/uapi/linux/phantom.h
16660
16661 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16662 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16663 S:      Maintained
16664 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16665 F:      drivers/iio/chemical/scd30.h
16666 F:      drivers/iio/chemical/scd30_core.c
16667 F:      drivers/iio/chemical/scd30_i2c.c
16668 F:      drivers/iio/chemical/scd30_serial.c
16669
16670 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16671 M:      Tomasz Duszynski <tduszyns@gmail.com>
16672 S:      Maintained
16673 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16674 F:      drivers/iio/chemical/sps30.c
16675 F:      drivers/iio/chemical/sps30_i2c.c
16676 F:      drivers/iio/chemical/sps30_serial.c
16677
16678 SERIAL DEVICE BUS
16679 M:      Rob Herring <robh@kernel.org>
16680 L:      linux-serial@vger.kernel.org
16681 S:      Maintained
16682 F:      Documentation/devicetree/bindings/serial/serial.yaml
16683 F:      drivers/tty/serdev/
16684 F:      include/linux/serdev.h
16685
16686 SERIAL DRIVERS
16687 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16688 L:      linux-serial@vger.kernel.org
16689 S:      Maintained
16690 F:      Documentation/devicetree/bindings/serial/
16691 F:      drivers/tty/serial/
16692
16693 SERIAL IR RECEIVER
16694 M:      Sean Young <sean@mess.org>
16695 L:      linux-media@vger.kernel.org
16696 S:      Maintained
16697 F:      drivers/media/rc/serial_ir.c
16698
16699 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16700 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16701 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16702 S:      Maintained
16703 F:      Documentation/devicetree/bindings/slimbus/
16704 F:      drivers/slimbus/
16705 F:      include/linux/slimbus.h
16706
16707 SFC NETWORK DRIVER
16708 M:      Edward Cree <ecree.xilinx@gmail.com>
16709 M:      Martin Habets <habetsm.xilinx@gmail.com>
16710 L:      netdev@vger.kernel.org
16711 S:      Supported
16712 F:      drivers/net/ethernet/sfc/
16713
16714 SFF/SFP/SFP+ MODULE SUPPORT
16715 M:      Russell King <linux@armlinux.org.uk>
16716 L:      netdev@vger.kernel.org
16717 S:      Maintained
16718 F:      drivers/net/phy/phylink.c
16719 F:      drivers/net/phy/sfp*
16720 F:      include/linux/mdio/mdio-i2c.h
16721 F:      include/linux/phylink.h
16722 F:      include/linux/sfp.h
16723 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)
16724
16725 SGI GRU DRIVER
16726 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16727 S:      Maintained
16728 F:      drivers/misc/sgi-gru/
16729
16730 SGI XP/XPC/XPNET DRIVER
16731 M:      Robin Holt <robinmholt@gmail.com>
16732 M:      Steve Wahl <steve.wahl@hpe.com>
16733 R:      Mike Travis <mike.travis@hpe.com>
16734 S:      Maintained
16735 F:      drivers/misc/sgi-xp/
16736
16737 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16738 M:      Karsten Graul <kgraul@linux.ibm.com>
16739 M:      Guvenc Gulce <guvenc@linux.ibm.com>
16740 L:      linux-s390@vger.kernel.org
16741 S:      Supported
16742 W:      http://www.ibm.com/developerworks/linux/linux390/
16743 F:      net/smc/
16744
16745 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16746 M:      Linus Walleij <linus.walleij@linaro.org>
16747 L:      linux-iio@vger.kernel.org
16748 S:      Maintained
16749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16750 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16751 F:      drivers/iio/light/gp2ap002.c
16752
16753 SHARP RJ54N1CB0C SENSOR DRIVER
16754 M:      Jacopo Mondi <jacopo@jmondi.org>
16755 L:      linux-media@vger.kernel.org
16756 S:      Odd fixes
16757 T:      git git://linuxtv.org/media_tree.git
16758 F:      drivers/media/i2c/rj54n1cb0c.c
16759 F:      include/media/i2c/rj54n1cb0c.h
16760
16761 SH_VOU V4L2 OUTPUT DRIVER
16762 L:      linux-media@vger.kernel.org
16763 S:      Orphan
16764 F:      drivers/media/platform/sh_vou.c
16765 F:      include/media/drv-intf/sh_vou.h
16766
16767 SI2157 MEDIA DRIVER
16768 M:      Antti Palosaari <crope@iki.fi>
16769 L:      linux-media@vger.kernel.org
16770 S:      Maintained
16771 W:      https://linuxtv.org
16772 W:      http://palosaari.fi/linux/
16773 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16774 T:      git git://linuxtv.org/anttip/media_tree.git
16775 F:      drivers/media/tuners/si2157*
16776
16777 SI2165 MEDIA DRIVER
16778 M:      Matthias Schwarzott <zzam@gentoo.org>
16779 L:      linux-media@vger.kernel.org
16780 S:      Maintained
16781 W:      https://linuxtv.org
16782 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16783 F:      drivers/media/dvb-frontends/si2165*
16784
16785 SI2168 MEDIA DRIVER
16786 M:      Antti Palosaari <crope@iki.fi>
16787 L:      linux-media@vger.kernel.org
16788 S:      Maintained
16789 W:      https://linuxtv.org
16790 W:      http://palosaari.fi/linux/
16791 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16792 T:      git git://linuxtv.org/anttip/media_tree.git
16793 F:      drivers/media/dvb-frontends/si2168*
16794
16795 SI470X FM RADIO RECEIVER I2C DRIVER
16796 M:      Hans Verkuil <hverkuil@xs4all.nl>
16797 L:      linux-media@vger.kernel.org
16798 S:      Odd Fixes
16799 W:      https://linuxtv.org
16800 T:      git git://linuxtv.org/media_tree.git
16801 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16802
16803 SI470X FM RADIO RECEIVER USB DRIVER
16804 M:      Hans Verkuil <hverkuil@xs4all.nl>
16805 L:      linux-media@vger.kernel.org
16806 S:      Maintained
16807 W:      https://linuxtv.org
16808 T:      git git://linuxtv.org/media_tree.git
16809 F:      drivers/media/radio/si470x/radio-si470x-common.c
16810 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16811 F:      drivers/media/radio/si470x/radio-si470x.h
16812
16813 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16814 M:      Eduardo Valentin <edubezval@gmail.com>
16815 L:      linux-media@vger.kernel.org
16816 S:      Odd Fixes
16817 W:      https://linuxtv.org
16818 T:      git git://linuxtv.org/media_tree.git
16819 F:      drivers/media/radio/si4713/si4713.?
16820
16821 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16822 M:      Eduardo Valentin <edubezval@gmail.com>
16823 L:      linux-media@vger.kernel.org
16824 S:      Odd Fixes
16825 W:      https://linuxtv.org
16826 T:      git git://linuxtv.org/media_tree.git
16827 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16828
16829 SI4713 FM RADIO TRANSMITTER USB DRIVER
16830 M:      Hans Verkuil <hverkuil@xs4all.nl>
16831 L:      linux-media@vger.kernel.org
16832 S:      Maintained
16833 W:      https://linuxtv.org
16834 T:      git git://linuxtv.org/media_tree.git
16835 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16836
16837 SIANO DVB DRIVER
16838 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16839 L:      linux-media@vger.kernel.org
16840 S:      Odd fixes
16841 W:      https://linuxtv.org
16842 T:      git git://linuxtv.org/media_tree.git
16843 F:      drivers/media/common/siano/
16844 F:      drivers/media/mmc/siano/
16845 F:      drivers/media/usb/siano/
16846 F:      drivers/media/usb/siano/
16847
16848 SIFIVE DRIVERS
16849 M:      Palmer Dabbelt <palmer@dabbelt.com>
16850 M:      Paul Walmsley <paul.walmsley@sifive.com>
16851 L:      linux-riscv@lists.infradead.org
16852 S:      Supported
16853 T:      git git://github.com/sifive/riscv-linux.git
16854 N:      sifive
16855 K:      [^@]sifive
16856
16857 SIFIVE FU540 SYSTEM-ON-CHIP
16858 M:      Paul Walmsley <paul.walmsley@sifive.com>
16859 M:      Palmer Dabbelt <palmer@dabbelt.com>
16860 L:      linux-riscv@lists.infradead.org
16861 S:      Supported
16862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16863 N:      fu540
16864 K:      fu540
16865
16866 SIFIVE PDMA DRIVER
16867 M:      Green Wan <green.wan@sifive.com>
16868 S:      Maintained
16869 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16870 F:      drivers/dma/sf-pdma/
16871
16872 SILEAD TOUCHSCREEN DRIVER
16873 M:      Hans de Goede <hdegoede@redhat.com>
16874 L:      linux-input@vger.kernel.org
16875 L:      platform-driver-x86@vger.kernel.org
16876 S:      Maintained
16877 F:      drivers/input/touchscreen/silead.c
16878 F:      drivers/platform/x86/touchscreen_dmi.c
16879
16880 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16881 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16882 S:      Supported
16883 F:      drivers/staging/wfx/
16884
16885 SILICON MOTION SM712 FRAME BUFFER DRIVER
16886 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16887 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16888 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16889 L:      linux-fbdev@vger.kernel.org
16890 S:      Maintained
16891 F:      Documentation/fb/sm712fb.rst
16892 F:      drivers/video/fbdev/sm712*
16893
16894 SILVACO I3C DUAL-ROLE MASTER
16895 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16896 M:      Conor Culhane <conor.culhane@silvaco.com>
16897 L:      linux-i3c@lists.infradead.org
16898 S:      Maintained
16899 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16900 F:      drivers/i3c/master/svc-i3c-master.c
16901
16902 SIMPLEFB FB DRIVER
16903 M:      Hans de Goede <hdegoede@redhat.com>
16904 L:      linux-fbdev@vger.kernel.org
16905 S:      Maintained
16906 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16907 F:      drivers/video/fbdev/simplefb.c
16908 F:      include/linux/platform_data/simplefb.h
16909
16910 SIMTEC EB110ATX (Chalice CATS)
16911 M:      Simtec Linux Team <linux@simtec.co.uk>
16912 S:      Supported
16913 W:      http://www.simtec.co.uk/products/EB110ATX/
16914
16915 SIMTEC EB2410ITX (BAST)
16916 M:      Simtec Linux Team <linux@simtec.co.uk>
16917 S:      Supported
16918 W:      http://www.simtec.co.uk/products/EB2410ITX/
16919 F:      arch/arm/mach-s3c/bast-ide.c
16920 F:      arch/arm/mach-s3c/bast-irq.c
16921 F:      arch/arm/mach-s3c/mach-bast.c
16922
16923 SIOX
16924 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16925 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16926 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16927 S:      Supported
16928 F:      drivers/gpio/gpio-siox.c
16929 F:      drivers/siox/*
16930 F:      include/trace/events/siox.h
16931
16932 SIPHASH PRF ROUTINES
16933 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16934 S:      Maintained
16935 F:      include/linux/siphash.h
16936 F:      lib/siphash.c
16937 F:      lib/test_siphash.c
16938
16939 SIS 190 ETHERNET DRIVER
16940 M:      Francois Romieu <romieu@fr.zoreil.com>
16941 L:      netdev@vger.kernel.org
16942 S:      Maintained
16943 F:      drivers/net/ethernet/sis/sis190.c
16944
16945 SIS 900/7016 FAST ETHERNET DRIVER
16946 M:      Daniele Venzano <venza@brownhat.org>
16947 L:      netdev@vger.kernel.org
16948 S:      Maintained
16949 W:      http://www.brownhat.org/sis900.html
16950 F:      drivers/net/ethernet/sis/sis900.*
16951
16952 SIS FRAMEBUFFER DRIVER
16953 M:      Thomas Winischhofer <thomas@winischhofer.net>
16954 S:      Maintained
16955 W:      http://www.winischhofer.net/linuxsisvga.shtml
16956 F:      Documentation/fb/sisfb.rst
16957 F:      drivers/video/fbdev/sis/
16958 F:      include/video/sisfb.h
16959
16960 SIS I2C TOUCHSCREEN DRIVER
16961 M:      Mika Penttilä <mika.penttila@nextfour.com>
16962 L:      linux-input@vger.kernel.org
16963 S:      Maintained
16964 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16965 F:      drivers/input/touchscreen/sis_i2c.c
16966
16967 SIS USB2VGA DRIVER
16968 M:      Thomas Winischhofer <thomas@winischhofer.net>
16969 S:      Maintained
16970 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16971 F:      drivers/usb/misc/sisusbvga/
16972
16973 SLAB ALLOCATOR
16974 M:      Christoph Lameter <cl@linux.com>
16975 M:      Pekka Enberg <penberg@kernel.org>
16976 M:      David Rientjes <rientjes@google.com>
16977 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16978 M:      Andrew Morton <akpm@linux-foundation.org>
16979 M:      Vlastimil Babka <vbabka@suse.cz>
16980 L:      linux-mm@kvack.org
16981 S:      Maintained
16982 F:      include/linux/sl?b*.h
16983 F:      mm/sl?b*
16984
16985 SLEEPABLE READ-COPY UPDATE (SRCU)
16986 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16987 M:      "Paul E. McKenney" <paulmck@kernel.org>
16988 M:      Josh Triplett <josh@joshtriplett.org>
16989 R:      Steven Rostedt <rostedt@goodmis.org>
16990 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16991 L:      rcu@vger.kernel.org
16992 S:      Supported
16993 W:      http://www.rdrop.com/users/paulmck/RCU/
16994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16995 F:      include/linux/srcu*.h
16996 F:      kernel/rcu/srcu*.c
16997
16998 SMACK SECURITY MODULE
16999 M:      Casey Schaufler <casey@schaufler-ca.com>
17000 L:      linux-security-module@vger.kernel.org
17001 S:      Maintained
17002 W:      http://schaufler-ca.com
17003 T:      git git://github.com/cschaufler/smack-next
17004 F:      Documentation/admin-guide/LSM/Smack.rst
17005 F:      security/smack/
17006
17007 SMC91x ETHERNET DRIVER
17008 M:      Nicolas Pitre <nico@fluxnic.net>
17009 S:      Odd Fixes
17010 F:      drivers/net/ethernet/smsc/smc91x.*
17011
17012 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17013 M:      Mark Rutland <mark.rutland@arm.com>
17014 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17015 M:      Sudeep Holla <sudeep.holla@arm.com>
17016 L:      linux-arm-kernel@lists.infradead.org
17017 S:      Maintained
17018 F:      drivers/firmware/smccc/
17019 F:      include/linux/arm-smccc.h
17020
17021 SMM665 HARDWARE MONITOR DRIVER
17022 M:      Guenter Roeck <linux@roeck-us.net>
17023 L:      linux-hwmon@vger.kernel.org
17024 S:      Maintained
17025 F:      Documentation/hwmon/smm665.rst
17026 F:      drivers/hwmon/smm665.c
17027
17028 SMSC EMC2103 HARDWARE MONITOR DRIVER
17029 M:      Steve Glendinning <steve.glendinning@shawell.net>
17030 L:      linux-hwmon@vger.kernel.org
17031 S:      Maintained
17032 F:      Documentation/hwmon/emc2103.rst
17033 F:      drivers/hwmon/emc2103.c
17034
17035 SMSC SCH5627 HARDWARE MONITOR DRIVER
17036 M:      Hans de Goede <hdegoede@redhat.com>
17037 L:      linux-hwmon@vger.kernel.org
17038 S:      Supported
17039 F:      Documentation/hwmon/sch5627.rst
17040 F:      drivers/hwmon/sch5627.c
17041
17042 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17043 M:      Steve Glendinning <steve.glendinning@shawell.net>
17044 L:      linux-fbdev@vger.kernel.org
17045 S:      Maintained
17046 F:      drivers/video/fbdev/smscufx.c
17047
17048 SMSC47B397 HARDWARE MONITOR DRIVER
17049 M:      Jean Delvare <jdelvare@suse.com>
17050 L:      linux-hwmon@vger.kernel.org
17051 S:      Maintained
17052 F:      Documentation/hwmon/smsc47b397.rst
17053 F:      drivers/hwmon/smsc47b397.c
17054
17055 SMSC911x ETHERNET DRIVER
17056 M:      Steve Glendinning <steve.glendinning@shawell.net>
17057 L:      netdev@vger.kernel.org
17058 S:      Maintained
17059 F:      drivers/net/ethernet/smsc/smsc911x.*
17060 F:      include/linux/smsc911x.h
17061
17062 SMSC9420 PCI ETHERNET DRIVER
17063 M:      Steve Glendinning <steve.glendinning@shawell.net>
17064 L:      netdev@vger.kernel.org
17065 S:      Maintained
17066 F:      drivers/net/ethernet/smsc/smsc9420.*
17067
17068 SOCIONEXT (SNI) AVE NETWORK DRIVER
17069 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17070 L:      netdev@vger.kernel.org
17071 S:      Maintained
17072 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17073 F:      drivers/net/ethernet/socionext/sni_ave.c
17074
17075 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17076 M:      Jassi Brar <jaswinder.singh@linaro.org>
17077 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17078 L:      netdev@vger.kernel.org
17079 S:      Maintained
17080 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17081 F:      drivers/net/ethernet/socionext/netsec.c
17082
17083 SOCIONEXT (SNI) Synquacer SPI DRIVER
17084 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17085 M:      Jassi Brar <jaswinder.singh@linaro.org>
17086 L:      linux-spi@vger.kernel.org
17087 S:      Maintained
17088 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17089 F:      drivers/spi/spi-synquacer.c
17090
17091 SOCIONEXT SYNQUACER I2C DRIVER
17092 M:      Ard Biesheuvel <ardb@kernel.org>
17093 L:      linux-i2c@vger.kernel.org
17094 S:      Maintained
17095 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17096 F:      drivers/i2c/busses/i2c-synquacer.c
17097
17098 SOCIONEXT UNIPHIER SOUND DRIVER
17099 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17100 S:      Orphan
17101 F:      sound/soc/uniphier/
17102
17103 SOEKRIS NET48XX LED SUPPORT
17104 M:      Chris Boot <bootc@bootc.net>
17105 S:      Maintained
17106 F:      drivers/leds/leds-net48xx.c
17107
17108 SOFT-IWARP DRIVER (siw)
17109 M:      Bernard Metzler <bmt@zurich.ibm.com>
17110 L:      linux-rdma@vger.kernel.org
17111 S:      Supported
17112 F:      drivers/infiniband/sw/siw/
17113 F:      include/uapi/rdma/siw-abi.h
17114
17115 SOFT-ROCE DRIVER (rxe)
17116 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17117 L:      linux-rdma@vger.kernel.org
17118 S:      Supported
17119 F:      drivers/infiniband/sw/rxe/
17120 F:      include/uapi/rdma/rdma_user_rxe.h
17121
17122 SOFTLOGIC 6x10 MPEG CODEC
17123 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17124 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17125 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17126 M:      Ismael Luceno <ismael@iodev.co.uk>
17127 L:      linux-media@vger.kernel.org
17128 S:      Supported
17129 F:      drivers/media/pci/solo6x10/
17130
17131 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17132 M:      James Morse <james.morse@arm.com>
17133 L:      linux-arm-kernel@lists.infradead.org
17134 S:      Maintained
17135 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17136 F:      drivers/firmware/arm_sdei.c
17137 F:      include/linux/arm_sdei.h
17138 F:      include/uapi/linux/arm_sdei.h
17139
17140 SOFTWARE NODES
17141 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17142 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17143 L:      linux-acpi@vger.kernel.org
17144 S:      Maintained
17145 F:      drivers/base/swnode.c
17146
17147 SOFTWARE RAID (Multiple Disks) SUPPORT
17148 M:      Song Liu <song@kernel.org>
17149 L:      linux-raid@vger.kernel.org
17150 S:      Supported
17151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17152 F:      drivers/md/Kconfig
17153 F:      drivers/md/Makefile
17154 F:      drivers/md/md*
17155 F:      drivers/md/raid*
17156 F:      include/linux/raid/
17157 F:      include/uapi/linux/raid/
17158
17159 SOLIDRUN CLEARFOG SUPPORT
17160 M:      Russell King <linux@armlinux.org.uk>
17161 S:      Maintained
17162 F:      arch/arm/boot/dts/armada-388-clearfog*
17163 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17164
17165 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17166 M:      Russell King <linux@armlinux.org.uk>
17167 S:      Maintained
17168 F:      arch/arm/boot/dts/imx6*-cubox-i*
17169 F:      arch/arm/boot/dts/imx6*-hummingboard*
17170 F:      arch/arm/boot/dts/imx6*-sr-*
17171
17172 SONIC NETWORK DRIVER
17173 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17174 L:      netdev@vger.kernel.org
17175 S:      Maintained
17176 F:      drivers/net/ethernet/natsemi/sonic.*
17177
17178 SONICS SILICON BACKPLANE DRIVER (SSB)
17179 M:      Michael Buesch <m@bues.ch>
17180 L:      linux-wireless@vger.kernel.org
17181 S:      Maintained
17182 F:      drivers/ssb/
17183 F:      include/linux/ssb/
17184
17185 SONY IMX208 SENSOR DRIVER
17186 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17187 L:      linux-media@vger.kernel.org
17188 S:      Maintained
17189 T:      git git://linuxtv.org/media_tree.git
17190 F:      drivers/media/i2c/imx208.c
17191
17192 SONY IMX214 SENSOR DRIVER
17193 M:      Ricardo Ribalda <ribalda@kernel.org>
17194 L:      linux-media@vger.kernel.org
17195 S:      Maintained
17196 T:      git git://linuxtv.org/media_tree.git
17197 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17198 F:      drivers/media/i2c/imx214.c
17199
17200 SONY IMX219 SENSOR DRIVER
17201 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17202 L:      linux-media@vger.kernel.org
17203 S:      Maintained
17204 T:      git git://linuxtv.org/media_tree.git
17205 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17206 F:      drivers/media/i2c/imx219.c
17207
17208 SONY IMX258 SENSOR DRIVER
17209 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17210 L:      linux-media@vger.kernel.org
17211 S:      Maintained
17212 T:      git git://linuxtv.org/media_tree.git
17213 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17214 F:      drivers/media/i2c/imx258.c
17215
17216 SONY IMX274 SENSOR DRIVER
17217 M:      Leon Luo <leonl@leopardimaging.com>
17218 L:      linux-media@vger.kernel.org
17219 S:      Maintained
17220 T:      git git://linuxtv.org/media_tree.git
17221 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17222 F:      drivers/media/i2c/imx274.c
17223
17224 SONY IMX290 SENSOR DRIVER
17225 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17226 L:      linux-media@vger.kernel.org
17227 S:      Maintained
17228 T:      git git://linuxtv.org/media_tree.git
17229 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17230 F:      drivers/media/i2c/imx290.c
17231
17232 SONY IMX319 SENSOR DRIVER
17233 M:      Bingbu Cao <bingbu.cao@intel.com>
17234 L:      linux-media@vger.kernel.org
17235 S:      Maintained
17236 T:      git git://linuxtv.org/media_tree.git
17237 F:      drivers/media/i2c/imx319.c
17238
17239 SONY IMX334 SENSOR DRIVER
17240 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17241 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17242 L:      linux-media@vger.kernel.org
17243 S:      Maintained
17244 T:      git git://linuxtv.org/media_tree.git
17245 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17246 F:      drivers/media/i2c/imx334.c
17247
17248 SONY IMX355 SENSOR DRIVER
17249 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17250 L:      linux-media@vger.kernel.org
17251 S:      Maintained
17252 T:      git git://linuxtv.org/media_tree.git
17253 F:      drivers/media/i2c/imx355.c
17254
17255 SONY MEMORYSTICK SUBSYSTEM
17256 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17257 M:      Alex Dubov <oakad@yahoo.com>
17258 M:      Ulf Hansson <ulf.hansson@linaro.org>
17259 L:      linux-mmc@vger.kernel.org
17260 S:      Maintained
17261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17262 F:      drivers/memstick/
17263 F:      include/linux/memstick.h
17264
17265 SONY VAIO CONTROL DEVICE DRIVER
17266 M:      Mattia Dongili <malattia@linux.it>
17267 L:      platform-driver-x86@vger.kernel.org
17268 S:      Maintained
17269 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17270 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17271 F:      drivers/char/sonypi.c
17272 F:      drivers/platform/x86/sony-laptop.c
17273 F:      include/linux/sony-laptop.h
17274
17275 SOUND
17276 M:      Jaroslav Kysela <perex@perex.cz>
17277 M:      Takashi Iwai <tiwai@suse.com>
17278 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17279 S:      Maintained
17280 W:      http://www.alsa-project.org/
17281 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17283 F:      Documentation/sound/
17284 F:      include/sound/
17285 F:      include/uapi/sound/
17286 F:      sound/
17287
17288 SOUND - COMPRESSED AUDIO
17289 M:      Vinod Koul <vkoul@kernel.org>
17290 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17291 S:      Supported
17292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17293 F:      Documentation/sound/designs/compress-offload.rst
17294 F:      include/sound/compress_driver.h
17295 F:      include/uapi/sound/compress_*
17296 F:      sound/core/compress_offload.c
17297 F:      sound/soc/soc-compress.c
17298
17299 SOUND - DMAENGINE HELPERS
17300 M:      Lars-Peter Clausen <lars@metafoo.de>
17301 S:      Supported
17302 F:      include/sound/dmaengine_pcm.h
17303 F:      sound/core/pcm_dmaengine.c
17304 F:      sound/soc/soc-generic-dmaengine-pcm.c
17305
17306 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17307 M:      Liam Girdwood <lgirdwood@gmail.com>
17308 M:      Mark Brown <broonie@kernel.org>
17309 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17310 S:      Supported
17311 W:      http://alsa-project.org/main/index.php/ASoC
17312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17313 F:      Documentation/devicetree/bindings/sound/
17314 F:      Documentation/sound/soc/
17315 F:      include/dt-bindings/sound/
17316 F:      include/sound/soc*
17317 F:      sound/soc/
17318
17319 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17320 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17321 M:      Liam Girdwood <lgirdwood@gmail.com>
17322 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17323 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17324 M:      Daniel Baluta <daniel.baluta@nxp.com>
17325 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17326 S:      Supported
17327 W:      https://github.com/thesofproject/linux/
17328 F:      sound/soc/sof/
17329
17330 SOUNDWIRE SUBSYSTEM
17331 M:      Vinod Koul <vkoul@kernel.org>
17332 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17333 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17334 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17335 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17336 S:      Supported
17337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17338 F:      Documentation/driver-api/soundwire/
17339 F:      drivers/soundwire/
17340 F:      include/linux/soundwire/
17341
17342 SP2 MEDIA DRIVER
17343 M:      Olli Salonen <olli.salonen@iki.fi>
17344 L:      linux-media@vger.kernel.org
17345 S:      Maintained
17346 W:      https://linuxtv.org
17347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17348 F:      drivers/media/dvb-frontends/sp2*
17349
17350 SPARC + UltraSPARC (sparc/sparc64)
17351 M:      "David S. Miller" <davem@davemloft.net>
17352 L:      sparclinux@vger.kernel.org
17353 S:      Maintained
17354 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17357 F:      arch/sparc/
17358 F:      drivers/sbus/
17359
17360 SPARC SERIAL DRIVERS
17361 M:      "David S. Miller" <davem@davemloft.net>
17362 L:      sparclinux@vger.kernel.org
17363 S:      Maintained
17364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17366 F:      drivers/tty/serial/suncore.c
17367 F:      drivers/tty/serial/sunhv.c
17368 F:      drivers/tty/serial/sunsab.c
17369 F:      drivers/tty/serial/sunsab.h
17370 F:      drivers/tty/serial/sunsu.c
17371 F:      drivers/tty/serial/sunzilog.c
17372 F:      drivers/tty/serial/sunzilog.h
17373 F:      drivers/tty/vcc.c
17374 F:      include/linux/sunserialcore.h
17375
17376 SPARSE CHECKER
17377 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17378 L:      linux-sparse@vger.kernel.org
17379 S:      Maintained
17380 W:      https://sparse.docs.kernel.org/
17381 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17382 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17383 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17384 F:      include/linux/compiler.h
17385
17386 SPEAKUP CONSOLE SPEECH DRIVER
17387 M:      William Hubbs <w.d.hubbs@gmail.com>
17388 M:      Chris Brannon <chris@the-brannons.com>
17389 M:      Kirk Reiser <kirk@reisers.ca>
17390 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17391 L:      speakup@linux-speakup.org
17392 S:      Odd Fixes
17393 W:      http://www.linux-speakup.org/
17394 W:      https://github.com/linux-speakup/speakup
17395 B:      https://github.com/linux-speakup/speakup/issues
17396 F:      drivers/accessibility/speakup/
17397
17398 SPEAR CLOCK FRAMEWORK SUPPORT
17399 M:      Viresh Kumar <vireshk@kernel.org>
17400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17401 S:      Maintained
17402 W:      http://www.st.com/spear
17403 F:      drivers/clk/spear/
17404
17405 SPEAR PLATFORM SUPPORT
17406 M:      Viresh Kumar <vireshk@kernel.org>
17407 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17409 S:      Maintained
17410 W:      http://www.st.com/spear
17411 F:      arch/arm/boot/dts/spear*
17412 F:      arch/arm/mach-spear/
17413
17414 SPI NOR SUBSYSTEM
17415 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17416 R:      Michael Walle <michael@walle.cc>
17417 R:      Pratyush Yadav <p.yadav@ti.com>
17418 L:      linux-mtd@lists.infradead.org
17419 S:      Maintained
17420 W:      http://www.linux-mtd.infradead.org/
17421 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17422 C:      irc://irc.oftc.net/mtd
17423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17424 F:      drivers/mtd/spi-nor/
17425 F:      include/linux/mtd/spi-nor.h
17426
17427 SPI SUBSYSTEM
17428 M:      Mark Brown <broonie@kernel.org>
17429 L:      linux-spi@vger.kernel.org
17430 S:      Maintained
17431 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17433 F:      Documentation/devicetree/bindings/spi/
17434 F:      Documentation/spi/
17435 F:      drivers/spi/
17436 F:      include/linux/spi/
17437 F:      include/uapi/linux/spi/
17438 F:      tools/spi/
17439
17440 SPIDERNET NETWORK DRIVER for CELL
17441 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17442 M:      Geoff Levand <geoff@infradead.org>
17443 L:      netdev@vger.kernel.org
17444 L:      linuxppc-dev@lists.ozlabs.org
17445 S:      Maintained
17446 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17447 F:      drivers/net/ethernet/toshiba/spider_net*
17448
17449 SPMI SUBSYSTEM
17450 M:      Stephen Boyd <sboyd@kernel.org>
17451 L:      linux-kernel@vger.kernel.org
17452 S:      Maintained
17453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17454 F:      Documentation/devicetree/bindings/spmi/
17455 F:      drivers/spmi/
17456 F:      include/dt-bindings/spmi/spmi.h
17457 F:      include/linux/spmi.h
17458 F:      include/trace/events/spmi.h
17459
17460 SPU FILE SYSTEM
17461 M:      Jeremy Kerr <jk@ozlabs.org>
17462 L:      linuxppc-dev@lists.ozlabs.org
17463 S:      Supported
17464 W:      http://www.ibm.com/developerworks/power/cell/
17465 F:      Documentation/filesystems/spufs/spufs.rst
17466 F:      arch/powerpc/platforms/cell/spufs/
17467
17468 SQUASHFS FILE SYSTEM
17469 M:      Phillip Lougher <phillip@squashfs.org.uk>
17470 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17471 S:      Maintained
17472 W:      http://squashfs.org.uk
17473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17474 F:      Documentation/filesystems/squashfs.rst
17475 F:      fs/squashfs/
17476
17477 SRM (Alpha) environment access
17478 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17479 S:      Maintained
17480 F:      arch/alpha/kernel/srm_env.c
17481
17482 ST LSM6DSx IMU IIO DRIVER
17483 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17484 L:      linux-iio@vger.kernel.org
17485 S:      Maintained
17486 W:      http://www.st.com/
17487 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17488 F:      drivers/iio/imu/st_lsm6dsx/
17489
17490 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17491 M:      Mickael Guene <mickael.guene@st.com>
17492 L:      linux-media@vger.kernel.org
17493 S:      Maintained
17494 T:      git git://linuxtv.org/media_tree.git
17495 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17496 F:      drivers/media/i2c/st-mipid02.c
17497
17498 ST STM32 I2C/SMBUS DRIVER
17499 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17500 M:      Alain Volmat <alain.volmat@foss.st.com>
17501 L:      linux-i2c@vger.kernel.org
17502 S:      Maintained
17503 F:      drivers/i2c/busses/i2c-stm32*
17504
17505 ST STM32 SPI DRIVER
17506 M:      Alain Volmat <alain.volmat@foss.st.com>
17507 L:      linux-spi@vger.kernel.org
17508 S:      Maintained
17509 F:      drivers/spi/spi-stm32.c
17510
17511 ST STPDDC60 DRIVER
17512 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17513 L:      linux-hwmon@vger.kernel.org
17514 S:      Maintained
17515 F:      Documentation/hwmon/stpddc60.rst
17516 F:      drivers/hwmon/pmbus/stpddc60.c
17517
17518 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17519 M:      Song Qiang <songqiang1304521@gmail.com>
17520 L:      linux-iio@vger.kernel.org
17521 S:      Maintained
17522 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17523 F:      drivers/iio/proximity/vl53l0x-i2c.c
17524
17525 STABLE BRANCH
17526 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17527 M:      Sasha Levin <sashal@kernel.org>
17528 L:      stable@vger.kernel.org
17529 S:      Supported
17530 F:      Documentation/process/stable-kernel-rules.rst
17531
17532 STAGING - ATOMISP DRIVER
17533 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17534 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17535 L:      linux-media@vger.kernel.org
17536 S:      Maintained
17537 F:      drivers/staging/media/atomisp/
17538
17539 STAGING - FIELDBUS SUBSYSTEM
17540 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17541 S:      Maintained
17542 F:      drivers/staging/fieldbus/*
17543 F:      drivers/staging/fieldbus/Documentation/
17544
17545 STAGING - HMS ANYBUS-S BUS
17546 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17547 S:      Maintained
17548 F:      drivers/staging/fieldbus/anybuss/
17549
17550 STAGING - INDUSTRIAL IO
17551 M:      Jonathan Cameron <jic23@kernel.org>
17552 L:      linux-iio@vger.kernel.org
17553 S:      Odd Fixes
17554 F:      Documentation/devicetree/bindings/staging/iio/
17555 F:      drivers/staging/iio/
17556
17557 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17558 M:      Marc Dietrich <marvin24@gmx.de>
17559 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17560 L:      linux-tegra@vger.kernel.org
17561 S:      Maintained
17562 F:      drivers/staging/nvec/
17563
17564 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17565 M:      Jens Frederich <jfrederich@gmail.com>
17566 M:      Daniel Drake <dsd@laptop.org>
17567 M:      Jon Nettleton <jon.nettleton@gmail.com>
17568 S:      Maintained
17569 W:      http://wiki.laptop.org/go/DCON
17570 F:      drivers/staging/olpc_dcon/
17571
17572 STAGING - REALTEK RTL8188EU DRIVERS
17573 M:      Larry Finger <Larry.Finger@lwfinger.net>
17574 S:      Odd Fixes
17575 F:      drivers/staging/rtl8188eu/
17576
17577 STAGING - REALTEK RTL8712U DRIVERS
17578 M:      Larry Finger <Larry.Finger@lwfinger.net>
17579 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17580 S:      Odd Fixes
17581 F:      drivers/staging/rtl8712/
17582
17583 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17584 M:      Michael Hennerich <michael.hennerich@analog.com>
17585 L:      linux-fbdev@vger.kernel.org
17586 S:      Supported
17587 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17588 F:      drivers/staging/fbtft/fb_seps525.c
17589
17590 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17591 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17592 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17593 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17594 L:      linux-fbdev@vger.kernel.org
17595 S:      Maintained
17596 F:      drivers/staging/sm750fb/
17597
17598 STAGING - VIA VT665X DRIVERS
17599 M:      Forest Bond <forest@alittletooquiet.net>
17600 S:      Odd Fixes
17601 F:      drivers/staging/vt665?/
17602
17603 STAGING SUBSYSTEM
17604 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17605 L:      linux-staging@lists.linux.dev
17606 S:      Supported
17607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17608 F:      drivers/staging/
17609
17610 STARFIRE/DURALAN NETWORK DRIVER
17611 M:      Ion Badulescu <ionut@badula.org>
17612 S:      Odd Fixes
17613 F:      drivers/net/ethernet/adaptec/starfire*
17614
17615 STATIC BRANCH/CALL
17616 M:      Peter Zijlstra <peterz@infradead.org>
17617 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17618 M:      Jason Baron <jbaron@akamai.com>
17619 R:      Steven Rostedt <rostedt@goodmis.org>
17620 R:      Ard Biesheuvel <ardb@kernel.org>
17621 S:      Supported
17622 F:      arch/*/include/asm/jump_label*.h
17623 F:      arch/*/include/asm/static_call*.h
17624 F:      arch/*/kernel/jump_label.c
17625 F:      arch/*/kernel/static_call.c
17626 F:      include/linux/jump_label*.h
17627 F:      include/linux/static_call*.h
17628 F:      kernel/jump_label.c
17629 F:      kernel/static_call.c
17630
17631 STI AUDIO (ASoC) DRIVERS
17632 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17633 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17634 S:      Maintained
17635 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17636 F:      sound/soc/sti/
17637
17638 STI CEC DRIVER
17639 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17640 S:      Maintained
17641 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17642 F:      drivers/media/cec/platform/sti/
17643
17644 STK1160 USB VIDEO CAPTURE DRIVER
17645 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17646 L:      linux-media@vger.kernel.org
17647 S:      Maintained
17648 T:      git git://linuxtv.org/media_tree.git
17649 F:      drivers/media/usb/stk1160/
17650
17651 STM32 AUDIO (ASoC) DRIVERS
17652 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17653 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17654 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17655 S:      Maintained
17656 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17657 F:      sound/soc/stm/
17658
17659 STM32 TIMER/LPTIMER DRIVERS
17660 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17661 S:      Maintained
17662 F:      Documentation/ABI/testing/*timer-stm32
17663 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17664 F:      drivers/*/stm32-*timer*
17665 F:      drivers/pwm/pwm-stm32*
17666 F:      include/linux/*/stm32-*tim*
17667
17668 STMMAC ETHERNET DRIVER
17669 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17670 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
17671 M:      Jose Abreu <joabreu@synopsys.com>
17672 L:      netdev@vger.kernel.org
17673 S:      Supported
17674 W:      http://www.stlinux.com
17675 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17676 F:      drivers/net/ethernet/stmicro/stmmac/
17677
17678 SUN3/3X
17679 M:      Sam Creasey <sammy@sammy.net>
17680 S:      Maintained
17681 W:      http://sammy.net/sun3/
17682 F:      arch/m68k/include/asm/sun3*
17683 F:      arch/m68k/kernel/*sun3*
17684 F:      arch/m68k/sun3*/
17685 F:      drivers/net/ethernet/i825xx/sun3*
17686
17687 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17688 M:      Hans de Goede <hdegoede@redhat.com>
17689 L:      linux-input@vger.kernel.org
17690 S:      Maintained
17691 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17692 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17693
17694 SUNDANCE NETWORK DRIVER
17695 M:      Denis Kirjanov <kda@linux-powerpc.org>
17696 L:      netdev@vger.kernel.org
17697 S:      Maintained
17698 F:      drivers/net/ethernet/dlink/sundance.c
17699
17700 SUPERH
17701 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17702 M:      Rich Felker <dalias@libc.org>
17703 L:      linux-sh@vger.kernel.org
17704 S:      Maintained
17705 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17706 F:      Documentation/sh/
17707 F:      arch/sh/
17708 F:      drivers/sh/
17709
17710 SUSPEND TO RAM
17711 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
17712 M:      Len Brown <len.brown@intel.com>
17713 M:      Pavel Machek <pavel@ucw.cz>
17714 L:      linux-pm@vger.kernel.org
17715 S:      Supported
17716 B:      https://bugzilla.kernel.org
17717 F:      Documentation/power/
17718 F:      arch/x86/kernel/acpi/
17719 F:      drivers/base/power/
17720 F:      include/linux/freezer.h
17721 F:      include/linux/pm.h
17722 F:      include/linux/suspend.h
17723 F:      kernel/power/
17724
17725 SVGA HANDLING
17726 M:      Martin Mares <mj@ucw.cz>
17727 L:      linux-video@atrey.karlin.mff.cuni.cz
17728 S:      Maintained
17729 F:      Documentation/admin-guide/svga.rst
17730 F:      arch/x86/boot/video*
17731
17732 SWIOTLB SUBSYSTEM
17733 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17734 L:      iommu@lists.linux-foundation.org
17735 S:      Supported
17736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17737 F:      arch/*/kernel/pci-swiotlb.c
17738 F:      include/linux/swiotlb.h
17739 F:      kernel/dma/swiotlb.c
17740
17741 SWITCHDEV
17742 M:      Jiri Pirko <jiri@resnulli.us>
17743 M:      Ivan Vecera <ivecera@redhat.com>
17744 L:      netdev@vger.kernel.org
17745 S:      Supported
17746 F:      include/net/switchdev.h
17747 F:      net/switchdev/
17748
17749 SY8106A REGULATOR DRIVER
17750 M:      Icenowy Zheng <icenowy@aosc.io>
17751 S:      Maintained
17752 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17753 F:      drivers/regulator/sy8106a-regulator.c
17754
17755 SYNC FILE FRAMEWORK
17756 M:      Sumit Semwal <sumit.semwal@linaro.org>
17757 R:      Gustavo Padovan <gustavo@padovan.org>
17758 L:      linux-media@vger.kernel.org
17759 L:      dri-devel@lists.freedesktop.org
17760 S:      Maintained
17761 T:      git git://anongit.freedesktop.org/drm/drm-misc
17762 F:      Documentation/driver-api/sync_file.rst
17763 F:      drivers/dma-buf/dma-fence*
17764 F:      drivers/dma-buf/sw_sync.c
17765 F:      drivers/dma-buf/sync_*
17766 F:      include/linux/sync_file.h
17767 F:      include/uapi/linux/sync_file.h
17768
17769 SYNOPSYS ARC ARCHITECTURE
17770 M:      Vineet Gupta <vgupta@synopsys.com>
17771 L:      linux-snps-arc@lists.infradead.org
17772 S:      Supported
17773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17774 F:      Documentation/devicetree/bindings/arc/*
17775 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17776 F:      arch/arc/
17777 F:      drivers/clocksource/arc_timer.c
17778 F:      drivers/tty/serial/arc_uart.c
17779
17780 SYNOPSYS ARC HSDK SDP pll clock driver
17781 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17782 S:      Supported
17783 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17784 F:      drivers/clk/clk-hsdk-pll.c
17785
17786 SYNOPSYS ARC SDP clock driver
17787 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17788 S:      Supported
17789 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17790 F:      drivers/clk/axs10x/*
17791
17792 SYNOPSYS ARC SDP platform support
17793 M:      Alexey Brodkin <abrodkin@synopsys.com>
17794 S:      Supported
17795 F:      Documentation/devicetree/bindings/arc/axs10*
17796 F:      arch/arc/boot/dts/ax*
17797 F:      arch/arc/plat-axs10x
17798
17799 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17800 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17801 S:      Supported
17802 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17803 F:      drivers/reset/reset-axs10x.c
17804
17805 SYNOPSYS CREG GPIO DRIVER
17806 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17807 S:      Maintained
17808 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17809 F:      drivers/gpio/gpio-creg-snps.c
17810
17811 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17812 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17813 S:      Maintained
17814 F:      drivers/tty/serial/8250/8250_dw.c
17815 F:      drivers/tty/serial/8250/8250_dwlib.*
17816 F:      drivers/tty/serial/8250/8250_lpss.c
17817
17818 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17819 M:      Hoan Tran <hoan@os.amperecomputing.com>
17820 M:      Serge Semin <fancer.lancer@gmail.com>
17821 L:      linux-gpio@vger.kernel.org
17822 S:      Maintained
17823 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17824 F:      drivers/gpio/gpio-dwapb.c
17825
17826 SYNOPSYS DESIGNWARE APB SSI DRIVER
17827 M:      Serge Semin <fancer.lancer@gmail.com>
17828 L:      linux-spi@vger.kernel.org
17829 S:      Supported
17830 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17831 F:      drivers/spi/spi-dw*
17832
17833 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17834 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17835 S:      Maintained
17836 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
17837 F:      drivers/dma/dw-axi-dmac/
17838
17839 SYNOPSYS DESIGNWARE DMAC DRIVER
17840 M:      Viresh Kumar <vireshk@kernel.org>
17841 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17842 S:      Maintained
17843 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17844 F:      drivers/dma/dw/
17845 F:      include/dt-bindings/dma/dw-dmac.h
17846 F:      include/linux/dma/dw.h
17847 F:      include/linux/platform_data/dma-dw.h
17848
17849 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17850 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17851 L:      netdev@vger.kernel.org
17852 S:      Supported
17853 F:      drivers/net/ethernet/synopsys/
17854
17855 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17856 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17857 L:      netdev@vger.kernel.org
17858 S:      Supported
17859 F:      drivers/net/pcs/pcs-xpcs.c
17860 F:      drivers/net/pcs/pcs-xpcs.h
17861 F:      include/linux/pcs/pcs-xpcs.h
17862
17863 SYNOPSYS DESIGNWARE I2C DRIVER
17864 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17865 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17866 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17867 L:      linux-i2c@vger.kernel.org
17868 S:      Maintained
17869 F:      drivers/i2c/busses/i2c-designware-*
17870
17871 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17872 M:      Jaehoon Chung <jh80.chung@samsung.com>
17873 L:      linux-mmc@vger.kernel.org
17874 S:      Maintained
17875 F:      drivers/mmc/host/dw_mmc*
17876
17877 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17878 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17879 S:      Supported
17880 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17881 F:      drivers/reset/reset-hsdk.c
17882 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17883
17884 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17885 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17886 M:      Manjunath M B <manjumb@synopsys.com>
17887 L:      linux-mmc@vger.kernel.org
17888 S:      Maintained
17889 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17890
17891 SYSTEM CONFIGURATION (SYSCON)
17892 M:      Lee Jones <lee.jones@linaro.org>
17893 M:      Arnd Bergmann <arnd@arndb.de>
17894 S:      Supported
17895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17896 F:      drivers/mfd/syscon.c
17897
17898 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17899 M:      Sudeep Holla <sudeep.holla@arm.com>
17900 R:      Cristian Marussi <cristian.marussi@arm.com>
17901 L:      linux-arm-kernel@lists.infradead.org
17902 S:      Maintained
17903 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
17904 F:      drivers/clk/clk-sc[mp]i.c
17905 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17906 F:      drivers/firmware/arm_scmi/
17907 F:      drivers/firmware/arm_scpi.c
17908 F:      drivers/regulator/scmi-regulator.c
17909 F:      drivers/reset/reset-scmi.c
17910 F:      include/linux/sc[mp]i_protocol.h
17911 F:      include/trace/events/scmi.h
17912
17913 SYSTEM RESET/SHUTDOWN DRIVERS
17914 M:      Sebastian Reichel <sre@kernel.org>
17915 L:      linux-pm@vger.kernel.org
17916 S:      Maintained
17917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17918 F:      Documentation/devicetree/bindings/power/reset/
17919 F:      drivers/power/reset/
17920
17921 SYSTEM TRACE MODULE CLASS
17922 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17923 S:      Maintained
17924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17925 F:      Documentation/trace/stm.rst
17926 F:      drivers/hwtracing/stm/
17927 F:      include/linux/stm.h
17928 F:      include/uapi/linux/stm.h
17929
17930 SYSTEM76 ACPI DRIVER
17931 M:      Jeremy Soller <jeremy@system76.com>
17932 M:      System76 Product Development <productdev@system76.com>
17933 L:      platform-driver-x86@vger.kernel.org
17934 S:      Maintained
17935 F:      drivers/platform/x86/system76_acpi.c
17936
17937 SYSV FILESYSTEM
17938 M:      Christoph Hellwig <hch@infradead.org>
17939 S:      Maintained
17940 F:      Documentation/filesystems/sysv-fs.rst
17941 F:      fs/sysv/
17942 F:      include/linux/sysv_fs.h
17943
17944 TASKSTATS STATISTICS INTERFACE
17945 M:      Balbir Singh <bsingharora@gmail.com>
17946 S:      Maintained
17947 F:      Documentation/accounting/taskstats*
17948 F:      include/linux/taskstats*
17949 F:      kernel/taskstats.c
17950
17951 TC subsystem
17952 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17953 M:      Cong Wang <xiyou.wangcong@gmail.com>
17954 M:      Jiri Pirko <jiri@resnulli.us>
17955 L:      netdev@vger.kernel.org
17956 S:      Maintained
17957 F:      include/net/pkt_cls.h
17958 F:      include/net/pkt_sched.h
17959 F:      include/net/tc_act/
17960 F:      include/uapi/linux/pkt_cls.h
17961 F:      include/uapi/linux/pkt_sched.h
17962 F:      include/uapi/linux/tc_act/
17963 F:      include/uapi/linux/tc_ematch/
17964 F:      net/sched/
17965
17966 TC90522 MEDIA DRIVER
17967 M:      Akihiro Tsukada <tskd08@gmail.com>
17968 L:      linux-media@vger.kernel.org
17969 S:      Odd Fixes
17970 F:      drivers/media/dvb-frontends/tc90522*
17971
17972 TCP LOW PRIORITY MODULE
17973 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17974 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17975 S:      Maintained
17976 W:      http://tcp-lp-mod.sourceforge.net/
17977 F:      net/ipv4/tcp_lp.c
17978
17979 TDA10071 MEDIA DRIVER
17980 M:      Antti Palosaari <crope@iki.fi>
17981 L:      linux-media@vger.kernel.org
17982 S:      Maintained
17983 W:      https://linuxtv.org
17984 W:      http://palosaari.fi/linux/
17985 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17986 T:      git git://linuxtv.org/anttip/media_tree.git
17987 F:      drivers/media/dvb-frontends/tda10071*
17988
17989 TDA18212 MEDIA DRIVER
17990 M:      Antti Palosaari <crope@iki.fi>
17991 L:      linux-media@vger.kernel.org
17992 S:      Maintained
17993 W:      https://linuxtv.org
17994 W:      http://palosaari.fi/linux/
17995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17996 T:      git git://linuxtv.org/anttip/media_tree.git
17997 F:      drivers/media/tuners/tda18212*
17998
17999 TDA18218 MEDIA DRIVER
18000 M:      Antti Palosaari <crope@iki.fi>
18001 L:      linux-media@vger.kernel.org
18002 S:      Maintained
18003 W:      https://linuxtv.org
18004 W:      http://palosaari.fi/linux/
18005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18006 T:      git git://linuxtv.org/anttip/media_tree.git
18007 F:      drivers/media/tuners/tda18218*
18008
18009 TDA18250 MEDIA DRIVER
18010 M:      Olli Salonen <olli.salonen@iki.fi>
18011 L:      linux-media@vger.kernel.org
18012 S:      Maintained
18013 W:      https://linuxtv.org
18014 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18015 T:      git git://linuxtv.org/media_tree.git
18016 F:      drivers/media/tuners/tda18250*
18017
18018 TDA18271 MEDIA DRIVER
18019 M:      Michael Krufky <mkrufky@linuxtv.org>
18020 L:      linux-media@vger.kernel.org
18021 S:      Maintained
18022 W:      https://linuxtv.org
18023 W:      http://github.com/mkrufky
18024 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18025 T:      git git://linuxtv.org/mkrufky/tuners.git
18026 F:      drivers/media/tuners/tda18271*
18027
18028 TDA1997x MEDIA DRIVER
18029 M:      Tim Harvey <tharvey@gateworks.com>
18030 L:      linux-media@vger.kernel.org
18031 S:      Maintained
18032 W:      https://linuxtv.org
18033 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18034 F:      drivers/media/i2c/tda1997x.*
18035
18036 TDA827x MEDIA DRIVER
18037 M:      Michael Krufky <mkrufky@linuxtv.org>
18038 L:      linux-media@vger.kernel.org
18039 S:      Maintained
18040 W:      https://linuxtv.org
18041 W:      http://github.com/mkrufky
18042 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18043 T:      git git://linuxtv.org/mkrufky/tuners.git
18044 F:      drivers/media/tuners/tda8290.*
18045
18046 TDA8290 MEDIA DRIVER
18047 M:      Michael Krufky <mkrufky@linuxtv.org>
18048 L:      linux-media@vger.kernel.org
18049 S:      Maintained
18050 W:      https://linuxtv.org
18051 W:      http://github.com/mkrufky
18052 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18053 T:      git git://linuxtv.org/mkrufky/tuners.git
18054 F:      drivers/media/tuners/tda8290.*
18055
18056 TDA9840 MEDIA DRIVER
18057 M:      Hans Verkuil <hverkuil@xs4all.nl>
18058 L:      linux-media@vger.kernel.org
18059 S:      Maintained
18060 W:      https://linuxtv.org
18061 T:      git git://linuxtv.org/media_tree.git
18062 F:      drivers/media/i2c/tda9840*
18063
18064 TEA5761 TUNER DRIVER
18065 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18066 L:      linux-media@vger.kernel.org
18067 S:      Odd fixes
18068 W:      https://linuxtv.org
18069 T:      git git://linuxtv.org/media_tree.git
18070 F:      drivers/media/tuners/tea5761.*
18071
18072 TEA5767 TUNER DRIVER
18073 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18074 L:      linux-media@vger.kernel.org
18075 S:      Maintained
18076 W:      https://linuxtv.org
18077 T:      git git://linuxtv.org/media_tree.git
18078 F:      drivers/media/tuners/tea5767.*
18079
18080 TEA6415C MEDIA DRIVER
18081 M:      Hans Verkuil <hverkuil@xs4all.nl>
18082 L:      linux-media@vger.kernel.org
18083 S:      Maintained
18084 W:      https://linuxtv.org
18085 T:      git git://linuxtv.org/media_tree.git
18086 F:      drivers/media/i2c/tea6415c*
18087
18088 TEA6420 MEDIA DRIVER
18089 M:      Hans Verkuil <hverkuil@xs4all.nl>
18090 L:      linux-media@vger.kernel.org
18091 S:      Maintained
18092 W:      https://linuxtv.org
18093 T:      git git://linuxtv.org/media_tree.git
18094 F:      drivers/media/i2c/tea6420*
18095
18096 TEAM DRIVER
18097 M:      Jiri Pirko <jiri@resnulli.us>
18098 L:      netdev@vger.kernel.org
18099 S:      Supported
18100 F:      drivers/net/team/
18101 F:      include/linux/if_team.h
18102 F:      include/uapi/linux/if_team.h
18103
18104 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18105 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18106 S:      Maintained
18107 F:      arch/x86/platform/ts5500/
18108
18109 TECHNOTREND USB IR RECEIVER
18110 M:      Sean Young <sean@mess.org>
18111 L:      linux-media@vger.kernel.org
18112 S:      Maintained
18113 F:      drivers/media/rc/ttusbir.c
18114
18115 TECHWELL TW9910 VIDEO DECODER
18116 L:      linux-media@vger.kernel.org
18117 S:      Orphan
18118 F:      drivers/media/i2c/tw9910.c
18119 F:      include/media/i2c/tw9910.h
18120
18121 TEE SUBSYSTEM
18122 M:      Jens Wiklander <jens.wiklander@linaro.org>
18123 L:      op-tee@lists.trustedfirmware.org
18124 S:      Maintained
18125 F:      Documentation/staging/tee.rst
18126 F:      drivers/tee/
18127 F:      include/linux/tee_drv.h
18128 F:      include/uapi/linux/tee.h
18129
18130 TEGRA ARCHITECTURE SUPPORT
18131 M:      Thierry Reding <thierry.reding@gmail.com>
18132 M:      Jonathan Hunter <jonathanh@nvidia.com>
18133 L:      linux-tegra@vger.kernel.org
18134 S:      Supported
18135 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18137 N:      [^a-z]tegra
18138
18139 TEGRA CLOCK DRIVER
18140 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18141 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18142 S:      Supported
18143 F:      drivers/clk/tegra/
18144
18145 TEGRA DMA DRIVERS
18146 M:      Laxman Dewangan <ldewangan@nvidia.com>
18147 M:      Jon Hunter <jonathanh@nvidia.com>
18148 S:      Supported
18149 F:      drivers/dma/tegra*
18150
18151 TEGRA I2C DRIVER
18152 M:      Laxman Dewangan <ldewangan@nvidia.com>
18153 R:      Dmitry Osipenko <digetx@gmail.com>
18154 S:      Supported
18155 F:      drivers/i2c/busses/i2c-tegra.c
18156
18157 TEGRA IOMMU DRIVERS
18158 M:      Thierry Reding <thierry.reding@gmail.com>
18159 R:      Krishna Reddy <vdumpa@nvidia.com>
18160 L:      linux-tegra@vger.kernel.org
18161 S:      Supported
18162 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18163 F:      drivers/iommu/tegra*
18164
18165 TEGRA KBC DRIVER
18166 M:      Laxman Dewangan <ldewangan@nvidia.com>
18167 S:      Supported
18168 F:      drivers/input/keyboard/tegra-kbc.c
18169
18170 TEGRA NAND DRIVER
18171 M:      Stefan Agner <stefan@agner.ch>
18172 M:      Lucas Stach <dev@lynxeye.de>
18173 S:      Maintained
18174 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18175 F:      drivers/mtd/nand/raw/tegra_nand.c
18176
18177 TEGRA PWM DRIVER
18178 M:      Thierry Reding <thierry.reding@gmail.com>
18179 S:      Supported
18180 F:      drivers/pwm/pwm-tegra.c
18181
18182 TEGRA SERIAL DRIVER
18183 M:      Laxman Dewangan <ldewangan@nvidia.com>
18184 S:      Supported
18185 F:      drivers/tty/serial/serial-tegra.c
18186
18187 TEGRA SPI DRIVER
18188 M:      Laxman Dewangan <ldewangan@nvidia.com>
18189 S:      Supported
18190 F:      drivers/spi/spi-tegra*
18191
18192 TEGRA QUAD SPI DRIVER
18193 M:      Thierry Reding <thierry.reding@gmail.com>
18194 M:      Jonathan Hunter <jonathanh@nvidia.com>
18195 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18196 L:      linux-tegra@vger.kernel.org
18197 S:      Maintained
18198 F:      drivers/spi/spi-tegra210-quad.c
18199
18200 TEGRA VIDEO DRIVER
18201 M:      Thierry Reding <thierry.reding@gmail.com>
18202 M:      Jonathan Hunter <jonathanh@nvidia.com>
18203 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18204 L:      linux-media@vger.kernel.org
18205 L:      linux-tegra@vger.kernel.org
18206 S:      Maintained
18207 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18208 F:      drivers/staging/media/tegra-video/
18209
18210 TEGRA XUSB PADCTL DRIVER
18211 M:      JC Kuo <jckuo@nvidia.com>
18212 S:      Supported
18213 F:      drivers/phy/tegra/xusb*
18214
18215 TEHUTI ETHERNET DRIVER
18216 M:      Andy Gospodarek <andy@greyhouse.net>
18217 L:      netdev@vger.kernel.org
18218 S:      Supported
18219 F:      drivers/net/ethernet/tehuti/*
18220
18221 TELECOM CLOCK DRIVER FOR MCPL0010
18222 M:      Mark Gross <mark.gross@intel.com>
18223 S:      Supported
18224 F:      drivers/char/tlclk.c
18225
18226 TEMPO SEMICONDUCTOR DRIVERS
18227 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18228 S:      Maintained
18229 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18230 F:      sound/soc/codecs/tscs*.c
18231 F:      sound/soc/codecs/tscs*.h
18232
18233 TENSILICA XTENSA PORT (xtensa)
18234 M:      Chris Zankel <chris@zankel.net>
18235 M:      Max Filippov <jcmvbkbc@gmail.com>
18236 L:      linux-xtensa@linux-xtensa.org
18237 S:      Maintained
18238 T:      git git://github.com/czankel/xtensa-linux.git
18239 F:      arch/xtensa/
18240 F:      drivers/irqchip/irq-xtensa-*
18241
18242 TEXAS INSTRUMENTS ASoC DRIVERS
18243 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18244 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18245 S:      Maintained
18246 F:      sound/soc/ti/
18247
18248 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18249 M:      Ricardo Ribalda <ribalda@kernel.org>
18250 L:      linux-iio@vger.kernel.org
18251 S:      Supported
18252 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18253 F:      drivers/iio/dac/ti-dac7612.c
18254
18255 TEXAS INSTRUMENTS DMA DRIVERS
18256 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18257 L:      dmaengine@vger.kernel.org
18258 S:      Maintained
18259 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18260 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18261 F:      Documentation/devicetree/bindings/dma/ti/
18262 F:      drivers/dma/ti/
18263 X:      drivers/dma/ti/cppi41.c
18264 F:      include/linux/dma/k3-udma-glue.h
18265 F:      include/linux/dma/ti-cppi5.h
18266 F:      include/linux/dma/k3-psil.h
18267
18268 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18269 M:      Nishanth Menon <nm@ti.com>
18270 M:      Tero Kristo <kristo@kernel.org>
18271 M:      Santosh Shilimkar <ssantosh@kernel.org>
18272 L:      linux-arm-kernel@lists.infradead.org
18273 S:      Maintained
18274 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18275 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18276 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18277 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18278 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18279 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18280 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18281 F:      drivers/clk/keystone/sci-clk.c
18282 F:      drivers/firmware/ti_sci*
18283 F:      drivers/irqchip/irq-ti-sci-inta.c
18284 F:      drivers/irqchip/irq-ti-sci-intr.c
18285 F:      drivers/reset/reset-ti-sci.c
18286 F:      drivers/soc/ti/ti_sci_inta_msi.c
18287 F:      drivers/soc/ti/ti_sci_pm_domains.c
18288 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18289 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18290 F:      include/linux/soc/ti/ti_sci_protocol.h
18291
18292 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18293 M:      Robert Marko <robert.marko@sartura.hr>
18294 M:      Luka Perkov <luka.perkov@sartura.hr>
18295 L:      linux-hwmon@vger.kernel.org
18296 S:      Maintained
18297 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18298 F:      Documentation/hwmon/tps23861.rst
18299 F:      drivers/hwmon/tps23861.c
18300
18301 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18302 M:      Puranjay Mohan <puranjay12@gmail.com>
18303 L:      linux-iio@vger.kernel.org
18304 S:      Supported
18305 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18306 F:      drivers/iio/temperature/tmp117.c
18307
18308 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18309 M:      Hans Verkuil <hverkuil@xs4all.nl>
18310 L:      linux-media@vger.kernel.org
18311 S:      Maintained
18312 W:      https://linuxtv.org
18313 T:      git git://linuxtv.org/media_tree.git
18314 F:      drivers/media/radio/radio-raremono.c
18315
18316 THERMAL
18317 M:      Zhang Rui <rui.zhang@intel.com>
18318 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18319 R:      Amit Kucheria <amitk@kernel.org>
18320 L:      linux-pm@vger.kernel.org
18321 S:      Supported
18322 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
18324 F:      Documentation/devicetree/bindings/thermal/
18325 F:      drivers/thermal/
18326 F:      include/linux/cpu_cooling.h
18327 F:      include/linux/thermal.h
18328 F:      include/uapi/linux/thermal.h
18329
18330 THERMAL DRIVER FOR AMLOGIC SOCS
18331 M:      Guillaume La Roque <glaroque@baylibre.com>
18332 L:      linux-pm@vger.kernel.org
18333 L:      linux-amlogic@lists.infradead.org
18334 S:      Supported
18335 W:      http://linux-meson.com/
18336 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18337 F:      drivers/thermal/amlogic_thermal.c
18338
18339 THERMAL/CPU_COOLING
18340 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18341 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18342 M:      Viresh Kumar <viresh.kumar@linaro.org>
18343 R:      Lukasz Luba <lukasz.luba@arm.com>
18344 L:      linux-pm@vger.kernel.org
18345 S:      Supported
18346 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18347 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18348 F:      drivers/thermal/cpufreq_cooling.c
18349 F:      drivers/thermal/cpuidle_cooling.c
18350 F:      include/linux/cpu_cooling.h
18351
18352 THERMAL/POWER_ALLOCATOR
18353 M:      Lukasz Luba <lukasz.luba@arm.com>
18354 L:      linux-pm@vger.kernel.org
18355 S:      Maintained
18356 F:      Documentation/driver-api/thermal/power_allocator.rst
18357 F:      drivers/thermal/gov_power_allocator.c
18358 F:      include/trace/events/thermal_power_allocator.h
18359
18360 THINKPAD ACPI EXTRAS DRIVER
18361 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18362 L:      ibm-acpi-devel@lists.sourceforge.net
18363 L:      platform-driver-x86@vger.kernel.org
18364 S:      Maintained
18365 W:      http://ibm-acpi.sourceforge.net
18366 W:      http://thinkwiki.org/wiki/Ibm-acpi
18367 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18368 F:      drivers/platform/x86/thinkpad_acpi.c
18369
18370 THINKPAD LMI DRIVER
18371 M:      Mark Pearson <markpearson@lenovo.com>
18372 L:      platform-driver-x86@vger.kernel.org
18373 S:      Maintained
18374 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18375 F:      drivers/platform/x86/think-lmi.?
18376
18377 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18378 M:      Isaac Hazan <isaac.hazan@intel.com>
18379 L:      linux-usb@vger.kernel.org
18380 S:      Maintained
18381 F:      drivers/thunderbolt/dma_test.c
18382
18383 THUNDERBOLT DRIVER
18384 M:      Andreas Noever <andreas.noever@gmail.com>
18385 M:      Michael Jamet <michael.jamet@intel.com>
18386 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18387 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18388 L:      linux-usb@vger.kernel.org
18389 S:      Maintained
18390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18391 F:      Documentation/admin-guide/thunderbolt.rst
18392 F:      drivers/thunderbolt/
18393 F:      include/linux/thunderbolt.h
18394
18395 THUNDERBOLT NETWORK DRIVER
18396 M:      Michael Jamet <michael.jamet@intel.com>
18397 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18398 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18399 L:      netdev@vger.kernel.org
18400 S:      Maintained
18401 F:      drivers/net/thunderbolt.c
18402
18403 THUNDERX GPIO DRIVER
18404 M:      Robert Richter <rric@kernel.org>
18405 S:      Odd Fixes
18406 F:      drivers/gpio/gpio-thunderx.c
18407
18408 TI ADS131E0X ADC SERIES DRIVER
18409 M:      Tomislav Denis <tomislav.denis@avl.com>
18410 L:      linux-iio@vger.kernel.org
18411 S:      Maintained
18412 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18413 F:      drivers/iio/adc/ti-ads131e08.c
18414
18415 TI AM437X VPFE DRIVER
18416 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18417 L:      linux-media@vger.kernel.org
18418 S:      Maintained
18419 W:      https://linuxtv.org
18420 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18421 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18422 F:      drivers/media/platform/am437x/
18423
18424 TI BANDGAP AND THERMAL DRIVER
18425 M:      Eduardo Valentin <edubezval@gmail.com>
18426 M:      Keerthy <j-keerthy@ti.com>
18427 L:      linux-pm@vger.kernel.org
18428 L:      linux-omap@vger.kernel.org
18429 S:      Maintained
18430 F:      drivers/thermal/ti-soc-thermal/
18431
18432 TI BQ27XXX POWER SUPPLY DRIVER
18433 F:      drivers/power/supply/bq27xxx_battery.c
18434 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18435 F:      include/linux/power/bq27xxx_battery.h
18436
18437 TI CDCE706 CLOCK DRIVER
18438 M:      Max Filippov <jcmvbkbc@gmail.com>
18439 S:      Maintained
18440 F:      drivers/clk/clk-cdce706.c
18441
18442 TI CLOCK DRIVER
18443 M:      Tero Kristo <kristo@kernel.org>
18444 L:      linux-omap@vger.kernel.org
18445 S:      Odd Fixes
18446 F:      drivers/clk/ti/
18447 F:      include/linux/clk/ti.h
18448
18449 TI DAVINCI MACHINE SUPPORT
18450 M:      Sekhar Nori <nsekhar@ti.com>
18451 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
18452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18453 S:      Supported
18454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18455 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18456 F:      arch/arm/boot/dts/da850*
18457 F:      arch/arm/mach-davinci/
18458 F:      drivers/i2c/busses/i2c-davinci.c
18459
18460 TI DAVINCI SERIES CLOCK DRIVER
18461 M:      David Lechner <david@lechnology.com>
18462 R:      Sekhar Nori <nsekhar@ti.com>
18463 S:      Maintained
18464 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18465 F:      drivers/clk/davinci/
18466
18467 TI DAVINCI SERIES GPIO DRIVER
18468 M:      Keerthy <j-keerthy@ti.com>
18469 L:      linux-gpio@vger.kernel.org
18470 S:      Maintained
18471 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18472 F:      drivers/gpio/gpio-davinci.c
18473
18474 TI DAVINCI SERIES MEDIA DRIVER
18475 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18476 L:      linux-media@vger.kernel.org
18477 S:      Maintained
18478 W:      https://linuxtv.org
18479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18480 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18481 F:      drivers/media/platform/davinci/
18482 F:      include/media/davinci/
18483
18484 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18485 R:      David Lechner <david@lechnology.com>
18486 L:      linux-iio@vger.kernel.org
18487 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18488 F:      drivers/counter/ti-eqep.c
18489
18490 TI ETHERNET SWITCH DRIVER (CPSW)
18491 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18492 L:      linux-omap@vger.kernel.org
18493 L:      netdev@vger.kernel.org
18494 S:      Maintained
18495 F:      drivers/net/ethernet/ti/cpsw*
18496 F:      drivers/net/ethernet/ti/davinci*
18497
18498 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18499 M:      Alex Dubov <oakad@yahoo.com>
18500 S:      Maintained
18501 W:      http://tifmxx.berlios.de/
18502 F:      drivers/memstick/host/tifm_ms.c
18503 F:      drivers/misc/tifm*
18504 F:      drivers/mmc/host/tifm_sd.c
18505 F:      include/linux/tifm.h
18506
18507 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18508 M:      Santosh Shilimkar <ssantosh@kernel.org>
18509 L:      linux-kernel@vger.kernel.org
18510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18511 S:      Maintained
18512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18513 F:      drivers/soc/ti/*
18514
18515 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18516 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18517 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18518 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18519 S:      Maintained
18520 F:      sound/soc/codecs/isabelle*
18521 F:      sound/soc/codecs/lm49453*
18522
18523 TI PCM3060 ASoC CODEC DRIVER
18524 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18525 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18526 S:      Maintained
18527 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18528 F:      sound/soc/codecs/pcm3060*
18529
18530 TI TAS571X FAMILY ASoC CODEC DRIVER
18531 M:      Kevin Cernekee <cernekee@chromium.org>
18532 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18533 S:      Odd Fixes
18534 F:      sound/soc/codecs/tas571x*
18535
18536 TI TRF7970A NFC DRIVER
18537 M:      Mark Greer <mgreer@animalcreek.com>
18538 L:      linux-wireless@vger.kernel.org
18539 L:      linux-nfc@lists.01.org (subscribers-only)
18540 S:      Supported
18541 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18542 F:      drivers/nfc/trf7970a.c
18543
18544 TI TSC2046 ADC DRIVER
18545 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18546 R:      kernel@pengutronix.de
18547 L:      linux-iio@vger.kernel.org
18548 S:      Maintained
18549 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18550 F:      drivers/iio/adc/ti-tsc2046.c
18551
18552 TI TWL4030 SERIES SOC CODEC DRIVER
18553 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18554 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18555 S:      Maintained
18556 F:      sound/soc/codecs/twl4030*
18557
18558 TI VPE/CAL DRIVERS
18559 M:      Benoit Parrot <bparrot@ti.com>
18560 L:      linux-media@vger.kernel.org
18561 S:      Maintained
18562 W:      http://linuxtv.org/
18563 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18564 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18565 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18566 F:      drivers/media/platform/ti-vpe/
18567
18568 TI WILINK WIRELESS DRIVERS
18569 L:      linux-wireless@vger.kernel.org
18570 S:      Orphan
18571 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18572 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18574 F:      drivers/net/wireless/ti/
18575 F:      include/linux/wl12xx.h
18576
18577 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18578 M:      John Stultz <john.stultz@linaro.org>
18579 M:      Thomas Gleixner <tglx@linutronix.de>
18580 R:      Stephen Boyd <sboyd@kernel.org>
18581 L:      linux-kernel@vger.kernel.org
18582 S:      Supported
18583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18584 F:      include/linux/clocksource.h
18585 F:      include/linux/time.h
18586 F:      include/linux/timex.h
18587 F:      include/uapi/linux/time.h
18588 F:      include/uapi/linux/timex.h
18589 F:      kernel/time/alarmtimer.c
18590 F:      kernel/time/clocksource.c
18591 F:      kernel/time/ntp.c
18592 F:      kernel/time/time*.c
18593 F:      tools/testing/selftests/timers/
18594
18595 TIPC NETWORK LAYER
18596 M:      Jon Maloy <jmaloy@redhat.com>
18597 M:      Ying Xue <ying.xue@windriver.com>
18598 L:      netdev@vger.kernel.org (core kernel code)
18599 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18600 S:      Maintained
18601 W:      http://tipc.sourceforge.net/
18602 F:      include/uapi/linux/tipc*.h
18603 F:      net/tipc/
18604
18605 TLAN NETWORK DRIVER
18606 M:      Samuel Chessman <chessman@tux.org>
18607 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18608 S:      Maintained
18609 W:      http://sourceforge.net/projects/tlan/
18610 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18611 F:      drivers/net/ethernet/ti/tlan.*
18612
18613 TM6000 VIDEO4LINUX DRIVER
18614 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18615 L:      linux-media@vger.kernel.org
18616 S:      Odd fixes
18617 W:      https://linuxtv.org
18618 T:      git git://linuxtv.org/media_tree.git
18619 F:      Documentation/admin-guide/media/tm6000*
18620 F:      drivers/media/usb/tm6000/
18621
18622 TMIO/SDHI MMC DRIVER
18623 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18624 L:      linux-mmc@vger.kernel.org
18625 S:      Supported
18626 F:      drivers/mmc/host/renesas_sdhi*
18627 F:      drivers/mmc/host/tmio_mmc*
18628 F:      include/linux/mfd/tmio.h
18629
18630 TMP401 HARDWARE MONITOR DRIVER
18631 M:      Guenter Roeck <linux@roeck-us.net>
18632 L:      linux-hwmon@vger.kernel.org
18633 S:      Maintained
18634 F:      Documentation/hwmon/tmp401.rst
18635 F:      drivers/hwmon/tmp401.c
18636
18637 TMP513 HARDWARE MONITOR DRIVER
18638 M:      Eric Tremblay <etremblay@distech-controls.com>
18639 L:      linux-hwmon@vger.kernel.org
18640 S:      Maintained
18641 F:      Documentation/hwmon/tmp513.rst
18642 F:      drivers/hwmon/tmp513.c
18643
18644 TMPFS (SHMEM FILESYSTEM)
18645 M:      Hugh Dickins <hughd@google.com>
18646 L:      linux-mm@kvack.org
18647 S:      Maintained
18648 F:      include/linux/shmem_fs.h
18649 F:      mm/shmem.c
18650
18651 TOMOYO SECURITY MODULE
18652 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18653 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18654 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18655 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18656 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18657 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18658 S:      Maintained
18659 W:      https://tomoyo.osdn.jp/
18660 F:      security/tomoyo/
18661
18662 TOPSTAR LAPTOP EXTRAS DRIVER
18663 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18664 L:      platform-driver-x86@vger.kernel.org
18665 S:      Maintained
18666 F:      drivers/platform/x86/topstar-laptop.c
18667
18668 TORTURE-TEST MODULES
18669 M:      Davidlohr Bueso <dave@stgolabs.net>
18670 M:      "Paul E. McKenney" <paulmck@kernel.org>
18671 M:      Josh Triplett <josh@joshtriplett.org>
18672 L:      linux-kernel@vger.kernel.org
18673 S:      Supported
18674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18675 F:      Documentation/RCU/torture.rst
18676 F:      kernel/locking/locktorture.c
18677 F:      kernel/rcu/rcuscale.c
18678 F:      kernel/rcu/rcutorture.c
18679 F:      kernel/rcu/refscale.c
18680 F:      kernel/torture.c
18681
18682 TOSHIBA ACPI EXTRAS DRIVER
18683 M:      Azael Avalos <coproscefalo@gmail.com>
18684 L:      platform-driver-x86@vger.kernel.org
18685 S:      Maintained
18686 F:      drivers/platform/x86/toshiba_acpi.c
18687
18688 TOSHIBA BLUETOOTH DRIVER
18689 M:      Azael Avalos <coproscefalo@gmail.com>
18690 L:      platform-driver-x86@vger.kernel.org
18691 S:      Maintained
18692 F:      drivers/platform/x86/toshiba_bluetooth.c
18693
18694 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18695 M:      Azael Avalos <coproscefalo@gmail.com>
18696 L:      platform-driver-x86@vger.kernel.org
18697 S:      Maintained
18698 F:      drivers/platform/x86/toshiba_haps.c
18699
18700 TOSHIBA SMM DRIVER
18701 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18702 S:      Maintained
18703 W:      http://www.buzzard.org.uk/toshiba/
18704 F:      drivers/char/toshiba.c
18705 F:      include/linux/toshiba.h
18706 F:      include/uapi/linux/toshiba.h
18707
18708 TOSHIBA TC358743 DRIVER
18709 M:      Mats Randgaard <matrandg@cisco.com>
18710 L:      linux-media@vger.kernel.org
18711 S:      Maintained
18712 F:      drivers/media/i2c/tc358743*
18713 F:      include/media/i2c/tc358743.h
18714
18715 TOSHIBA WMI HOTKEYS DRIVER
18716 M:      Azael Avalos <coproscefalo@gmail.com>
18717 L:      platform-driver-x86@vger.kernel.org
18718 S:      Maintained
18719 F:      drivers/platform/x86/toshiba-wmi.c
18720
18721 TPM DEVICE DRIVER
18722 M:      Peter Huewe <peterhuewe@gmx.de>
18723 M:      Jarkko Sakkinen <jarkko@kernel.org>
18724 R:      Jason Gunthorpe <jgg@ziepe.ca>
18725 L:      linux-integrity@vger.kernel.org
18726 S:      Maintained
18727 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18728 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18730 F:      drivers/char/tpm/
18731
18732 TRACING
18733 M:      Steven Rostedt <rostedt@goodmis.org>
18734 M:      Ingo Molnar <mingo@redhat.com>
18735 S:      Maintained
18736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18737 F:      Documentation/trace/ftrace.rst
18738 F:      arch/*/*/*/ftrace.h
18739 F:      arch/*/kernel/ftrace.c
18740 F:      fs/tracefs/
18741 F:      include/*/ftrace.h
18742 F:      include/linux/trace*.h
18743 F:      include/trace/
18744 F:      kernel/trace/
18745 F:      tools/testing/selftests/ftrace/
18746
18747 TRACING MMIO ACCESSES (MMIOTRACE)
18748 M:      Steven Rostedt <rostedt@goodmis.org>
18749 M:      Ingo Molnar <mingo@kernel.org>
18750 R:      Karol Herbst <karolherbst@gmail.com>
18751 R:      Pekka Paalanen <ppaalanen@gmail.com>
18752 L:      linux-kernel@vger.kernel.org
18753 L:      nouveau@lists.freedesktop.org
18754 S:      Maintained
18755 F:      arch/x86/mm/kmmio.c
18756 F:      arch/x86/mm/mmio-mod.c
18757 F:      arch/x86/mm/testmmiotrace.c
18758 F:      include/linux/mmiotrace.h
18759 F:      kernel/trace/trace_mmiotrace.c
18760
18761 TRIVIAL PATCHES
18762 M:      Jiri Kosina <trivial@kernel.org>
18763 S:      Maintained
18764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18765 K:      ^Subject:.*(?i)trivial
18766
18767 TTY LAYER
18768 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18769 M:      Jiri Slaby <jirislaby@kernel.org>
18770 S:      Supported
18771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18772 F:      Documentation/driver-api/serial/
18773 F:      drivers/tty/
18774 F:      drivers/tty/serial/serial_core.c
18775 F:      include/linux/selection.h
18776 F:      include/linux/serial.h
18777 F:      include/linux/serial_core.h
18778 F:      include/linux/sysrq.h
18779 F:      include/linux/tty*.h
18780 F:      include/linux/vt.h
18781 F:      include/linux/vt_*.h
18782 F:      include/uapi/linux/serial.h
18783 F:      include/uapi/linux/serial_core.h
18784 F:      include/uapi/linux/tty.h
18785
18786 TUA9001 MEDIA DRIVER
18787 M:      Antti Palosaari <crope@iki.fi>
18788 L:      linux-media@vger.kernel.org
18789 S:      Maintained
18790 W:      https://linuxtv.org
18791 W:      http://palosaari.fi/linux/
18792 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18793 T:      git git://linuxtv.org/anttip/media_tree.git
18794 F:      drivers/media/tuners/tua9001*
18795
18796 TULIP NETWORK DRIVERS
18797 L:      netdev@vger.kernel.org
18798 L:      linux-parisc@vger.kernel.org
18799 S:      Orphan
18800 F:      drivers/net/ethernet/dec/tulip/
18801
18802 TUN/TAP driver
18803 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18804 S:      Maintained
18805 W:      http://vtun.sourceforge.net/tun
18806 F:      Documentation/networking/tuntap.rst
18807 F:      arch/um/os-Linux/drivers/
18808
18809 TURBOCHANNEL SUBSYSTEM
18810 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
18811 M:      Ralf Baechle <ralf@linux-mips.org>
18812 L:      linux-mips@vger.kernel.org
18813 S:      Maintained
18814 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18815 F:      drivers/tc/
18816 F:      include/linux/tc.h
18817
18818 TURBOSTAT UTILITY
18819 M:      "Len Brown" <lenb@kernel.org>
18820 L:      linux-pm@vger.kernel.org
18821 S:      Supported
18822 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18823 B:      https://bugzilla.kernel.org
18824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18825 F:      tools/power/x86/turbostat/
18826
18827 TW5864 VIDEO4LINUX DRIVER
18828 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18829 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18830 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18831 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18832 L:      linux-media@vger.kernel.org
18833 S:      Supported
18834 F:      drivers/media/pci/tw5864/
18835
18836 TW68 VIDEO4LINUX DRIVER
18837 M:      Hans Verkuil <hverkuil@xs4all.nl>
18838 L:      linux-media@vger.kernel.org
18839 S:      Odd Fixes
18840 W:      https://linuxtv.org
18841 T:      git git://linuxtv.org/media_tree.git
18842 F:      drivers/media/pci/tw68/
18843
18844 TW686X VIDEO4LINUX DRIVER
18845 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18846 L:      linux-media@vger.kernel.org
18847 S:      Maintained
18848 W:      http://linuxtv.org
18849 T:      git git://linuxtv.org/media_tree.git
18850 F:      drivers/media/pci/tw686x/
18851
18852 UACCE ACCELERATOR FRAMEWORK
18853 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18854 M:      Zhou Wang <wangzhou1@hisilicon.com>
18855 L:      linux-accelerators@lists.ozlabs.org
18856 L:      linux-kernel@vger.kernel.org
18857 S:      Maintained
18858 F:      Documentation/ABI/testing/sysfs-driver-uacce
18859 F:      Documentation/misc-devices/uacce.rst
18860 F:      drivers/misc/uacce/
18861 F:      include/linux/uacce.h
18862 F:      include/uapi/misc/uacce/
18863
18864 UBI FILE SYSTEM (UBIFS)
18865 M:      Richard Weinberger <richard@nod.at>
18866 L:      linux-mtd@lists.infradead.org
18867 S:      Supported
18868 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18871 F:      Documentation/filesystems/ubifs-authentication.rst
18872 F:      Documentation/filesystems/ubifs.rst
18873 F:      fs/ubifs/
18874
18875 UCLINUX (M68KNOMMU AND COLDFIRE)
18876 M:      Greg Ungerer <gerg@linux-m68k.org>
18877 L:      linux-m68k@lists.linux-m68k.org
18878 L:      uclinux-dev@uclinux.org  (subscribers-only)
18879 S:      Maintained
18880 W:      http://www.linux-m68k.org/
18881 W:      http://www.uclinux.org/
18882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18883 F:      arch/m68k/*/*_no.*
18884 F:      arch/m68k/68*/
18885 F:      arch/m68k/coldfire/
18886 F:      arch/m68k/include/asm/*_no.*
18887
18888 UDF FILESYSTEM
18889 M:      Jan Kara <jack@suse.com>
18890 S:      Maintained
18891 F:      Documentation/filesystems/udf.rst
18892 F:      fs/udf/
18893
18894 UDRAW TABLET
18895 M:      Bastien Nocera <hadess@hadess.net>
18896 L:      linux-input@vger.kernel.org
18897 S:      Maintained
18898 F:      drivers/hid/hid-udraw-ps3.c
18899
18900 UFS FILESYSTEM
18901 M:      Evgeniy Dushistov <dushistov@mail.ru>
18902 S:      Maintained
18903 F:      Documentation/admin-guide/ufs.rst
18904 F:      fs/ufs/
18905
18906 UHID USERSPACE HID IO DRIVER
18907 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18908 L:      linux-input@vger.kernel.org
18909 S:      Maintained
18910 F:      drivers/hid/uhid.c
18911 F:      include/uapi/linux/uhid.h
18912
18913 ULPI BUS
18914 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18915 L:      linux-usb@vger.kernel.org
18916 S:      Maintained
18917 F:      drivers/usb/common/ulpi.c
18918 F:      include/linux/ulpi/
18919
18920 UNICODE SUBSYSTEM
18921 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18922 L:      linux-fsdevel@vger.kernel.org
18923 S:      Supported
18924 F:      fs/unicode/
18925
18926 UNIFDEF
18927 M:      Tony Finch <dot@dotat.at>
18928 S:      Maintained
18929 W:      http://dotat.at/prog/unifdef
18930 F:      scripts/unifdef.c
18931
18932 UNIFORM CDROM DRIVER
18933 M:      Jens Axboe <axboe@kernel.dk>
18934 S:      Maintained
18935 W:      http://www.kernel.dk
18936 F:      Documentation/cdrom/
18937 F:      drivers/cdrom/cdrom.c
18938 F:      include/linux/cdrom.h
18939 F:      include/uapi/linux/cdrom.h
18940
18941 UNISYS S-PAR DRIVERS
18942 M:      David Kershner <david.kershner@unisys.com>
18943 L:      sparmaintainer@unisys.com (Unisys internal)
18944 S:      Supported
18945 F:      drivers/staging/unisys/
18946 F:      drivers/visorbus/
18947 F:      include/linux/visorbus.h
18948
18949 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18950 R:      Alim Akhtar <alim.akhtar@samsung.com>
18951 R:      Avri Altman <avri.altman@wdc.com>
18952 L:      linux-scsi@vger.kernel.org
18953 S:      Supported
18954 F:      Documentation/scsi/ufs.rst
18955 F:      drivers/scsi/ufs/
18956
18957 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18958 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18959 L:      linux-scsi@vger.kernel.org
18960 S:      Supported
18961 F:      drivers/scsi/ufs/*dwc*
18962
18963 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18964 M:      Stanley Chu <stanley.chu@mediatek.com>
18965 L:      linux-scsi@vger.kernel.org
18966 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18967 S:      Maintained
18968 F:      drivers/scsi/ufs/ufs-mediatek*
18969
18970 UNSORTED BLOCK IMAGES (UBI)
18971 M:      Richard Weinberger <richard@nod.at>
18972 L:      linux-mtd@lists.infradead.org
18973 S:      Supported
18974 W:      http://www.linux-mtd.infradead.org/
18975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18977 F:      drivers/mtd/ubi/
18978 F:      include/linux/mtd/ubi.h
18979 F:      include/uapi/mtd/ubi-user.h
18980
18981 USB "USBNET" DRIVER FRAMEWORK
18982 M:      Oliver Neukum <oneukum@suse.com>
18983 L:      netdev@vger.kernel.org
18984 S:      Maintained
18985 W:      http://www.linux-usb.org/usbnet
18986 F:      drivers/net/usb/usbnet.c
18987 F:      include/linux/usb/usbnet.h
18988
18989 USB ACM DRIVER
18990 M:      Oliver Neukum <oneukum@suse.com>
18991 L:      linux-usb@vger.kernel.org
18992 S:      Maintained
18993 F:      Documentation/usb/acm.rst
18994 F:      drivers/usb/class/cdc-acm.*
18995
18996 USB APPLE MFI FASTCHARGE DRIVER
18997 M:      Bastien Nocera <hadess@hadess.net>
18998 L:      linux-usb@vger.kernel.org
18999 S:      Maintained
19000 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19001
19002 USB AR5523 WIRELESS DRIVER
19003 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19004 L:      linux-wireless@vger.kernel.org
19005 S:      Maintained
19006 F:      drivers/net/wireless/ath/ar5523/
19007
19008 USB ATTACHED SCSI
19009 M:      Oliver Neukum <oneukum@suse.com>
19010 L:      linux-usb@vger.kernel.org
19011 L:      linux-scsi@vger.kernel.org
19012 S:      Maintained
19013 F:      drivers/usb/storage/uas.c
19014
19015 USB CDC ETHERNET DRIVER
19016 M:      Oliver Neukum <oliver@neukum.org>
19017 L:      linux-usb@vger.kernel.org
19018 S:      Maintained
19019 F:      drivers/net/usb/cdc_*.c
19020 F:      include/uapi/linux/usb/cdc.h
19021
19022 USB CHAOSKEY DRIVER
19023 M:      Keith Packard <keithp@keithp.com>
19024 L:      linux-usb@vger.kernel.org
19025 S:      Maintained
19026 F:      drivers/usb/misc/chaoskey.c
19027
19028 USB CYPRESS C67X00 DRIVER
19029 M:      Peter Korsgaard <jacmet@sunsite.dk>
19030 L:      linux-usb@vger.kernel.org
19031 S:      Maintained
19032 F:      drivers/usb/c67x00/
19033
19034 USB DAVICOM DM9601 DRIVER
19035 M:      Peter Korsgaard <jacmet@sunsite.dk>
19036 L:      netdev@vger.kernel.org
19037 S:      Maintained
19038 W:      http://www.linux-usb.org/usbnet
19039 F:      drivers/net/usb/dm9601.c
19040
19041 USB EHCI DRIVER
19042 M:      Alan Stern <stern@rowland.harvard.edu>
19043 L:      linux-usb@vger.kernel.org
19044 S:      Maintained
19045 F:      Documentation/usb/ehci.rst
19046 F:      drivers/usb/host/ehci*
19047
19048 USB GADGET/PERIPHERAL SUBSYSTEM
19049 M:      Felipe Balbi <balbi@kernel.org>
19050 L:      linux-usb@vger.kernel.org
19051 S:      Maintained
19052 W:      http://www.linux-usb.org/gadget
19053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19054 F:      drivers/usb/gadget/
19055 F:      include/linux/usb/gadget*
19056
19057 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19058 M:      Jiri Kosina <jikos@kernel.org>
19059 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19060 L:      linux-usb@vger.kernel.org
19061 S:      Maintained
19062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19063 F:      Documentation/hid/hiddev.rst
19064 F:      drivers/hid/usbhid/
19065
19066 USB INTEL XHCI ROLE MUX DRIVER
19067 M:      Hans de Goede <hdegoede@redhat.com>
19068 L:      linux-usb@vger.kernel.org
19069 S:      Maintained
19070 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19071
19072 USB IP DRIVER FOR HISILICON KIRIN 960
19073 M:      Yu Chen <chenyu56@huawei.com>
19074 M:      Binghui Wang <wangbinghui@hisilicon.com>
19075 L:      linux-usb@vger.kernel.org
19076 S:      Maintained
19077 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19078 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19079
19080 USB IP DRIVER FOR HISILICON KIRIN 970
19081 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19082 L:      linux-usb@vger.kernel.org
19083 S:      Maintained
19084 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19085 F:      drivers/phy/hisilicon/phy-kirin970-usb3.c
19086
19087 USB ISP116X DRIVER
19088 M:      Olav Kongas <ok@artecdesign.ee>
19089 L:      linux-usb@vger.kernel.org
19090 S:      Maintained
19091 F:      drivers/usb/host/isp116x*
19092 F:      include/linux/usb/isp116x.h
19093
19094 USB ISP1760 DRIVER
19095 M:      Rui Miguel Silva <rui.silva@linaro.org>
19096 L:      linux-usb@vger.kernel.org
19097 S:      Maintained
19098 F:      drivers/usb/isp1760/*
19099 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19100
19101 USB LAN78XX ETHERNET DRIVER
19102 M:      Woojung Huh <woojung.huh@microchip.com>
19103 M:      UNGLinuxDriver@microchip.com
19104 L:      netdev@vger.kernel.org
19105 S:      Maintained
19106 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19107 F:      drivers/net/usb/lan78xx.*
19108 F:      include/dt-bindings/net/microchip-lan78xx.h
19109
19110 USB MASS STORAGE DRIVER
19111 M:      Alan Stern <stern@rowland.harvard.edu>
19112 L:      linux-usb@vger.kernel.org
19113 L:      usb-storage@lists.one-eyed-alien.net
19114 S:      Maintained
19115 F:      drivers/usb/storage/
19116
19117 USB MIDI DRIVER
19118 M:      Clemens Ladisch <clemens@ladisch.de>
19119 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19120 S:      Maintained
19121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19122 F:      sound/usb/midi.*
19123
19124 USB NETWORKING DRIVERS
19125 L:      linux-usb@vger.kernel.org
19126 S:      Odd Fixes
19127 F:      drivers/net/usb/
19128
19129 USB OHCI DRIVER
19130 M:      Alan Stern <stern@rowland.harvard.edu>
19131 L:      linux-usb@vger.kernel.org
19132 S:      Maintained
19133 F:      Documentation/usb/ohci.rst
19134 F:      drivers/usb/host/ohci*
19135
19136 USB OTG FSM (Finite State Machine)
19137 M:      Peter Chen <peter.chen@kernel.org>
19138 L:      linux-usb@vger.kernel.org
19139 S:      Maintained
19140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19141 F:      drivers/usb/common/usb-otg-fsm.c
19142
19143 USB OVER IP DRIVER
19144 M:      Valentina Manea <valentina.manea.m@gmail.com>
19145 M:      Shuah Khan <shuah@kernel.org>
19146 M:      Shuah Khan <skhan@linuxfoundation.org>
19147 L:      linux-usb@vger.kernel.org
19148 S:      Maintained
19149 F:      Documentation/usb/usbip_protocol.rst
19150 F:      drivers/usb/usbip/
19151 F:      tools/testing/selftests/drivers/usb/usbip/
19152 F:      tools/usb/usbip/
19153
19154 USB PEGASUS DRIVER
19155 M:      Petko Manolov <petkan@nucleusys.com>
19156 L:      linux-usb@vger.kernel.org
19157 L:      netdev@vger.kernel.org
19158 S:      Maintained
19159 W:      https://github.com/petkan/pegasus
19160 T:      git git://github.com/petkan/pegasus.git
19161 F:      drivers/net/usb/pegasus.*
19162
19163 USB PHY LAYER
19164 M:      Felipe Balbi <balbi@kernel.org>
19165 L:      linux-usb@vger.kernel.org
19166 S:      Maintained
19167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19168 F:      drivers/usb/phy/
19169
19170 USB PRINTER DRIVER (usblp)
19171 M:      Pete Zaitcev <zaitcev@redhat.com>
19172 L:      linux-usb@vger.kernel.org
19173 S:      Supported
19174 F:      drivers/usb/class/usblp.c
19175
19176 USB RAW GADGET DRIVER
19177 R:      Andrey Konovalov <andreyknvl@gmail.com>
19178 L:      linux-usb@vger.kernel.org
19179 S:      Maintained
19180 F:      Documentation/usb/raw-gadget.rst
19181 F:      drivers/usb/gadget/legacy/raw_gadget.c
19182 F:      include/uapi/linux/usb/raw_gadget.h
19183
19184 USB QMI WWAN NETWORK DRIVER
19185 M:      Bjørn Mork <bjorn@mork.no>
19186 L:      netdev@vger.kernel.org
19187 S:      Maintained
19188 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19189 F:      drivers/net/usb/qmi_wwan.c
19190
19191 USB RTL8150 DRIVER
19192 M:      Petko Manolov <petkan@nucleusys.com>
19193 L:      linux-usb@vger.kernel.org
19194 L:      netdev@vger.kernel.org
19195 S:      Maintained
19196 W:      https://github.com/petkan/rtl8150
19197 T:      git git://github.com/petkan/rtl8150.git
19198 F:      drivers/net/usb/rtl8150.c
19199
19200 USB SERIAL SUBSYSTEM
19201 M:      Johan Hovold <johan@kernel.org>
19202 L:      linux-usb@vger.kernel.org
19203 S:      Maintained
19204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19205 F:      Documentation/usb/usb-serial.rst
19206 F:      drivers/usb/serial/
19207 F:      include/linux/usb/serial.h
19208
19209 USB SMSC75XX ETHERNET DRIVER
19210 M:      Steve Glendinning <steve.glendinning@shawell.net>
19211 L:      netdev@vger.kernel.org
19212 S:      Maintained
19213 F:      drivers/net/usb/smsc75xx.*
19214
19215 USB SMSC95XX ETHERNET DRIVER
19216 M:      Steve Glendinning <steve.glendinning@shawell.net>
19217 M:      UNGLinuxDriver@microchip.com
19218 L:      netdev@vger.kernel.org
19219 S:      Maintained
19220 F:      drivers/net/usb/smsc95xx.*
19221
19222 USB SUBSYSTEM
19223 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19224 L:      linux-usb@vger.kernel.org
19225 S:      Supported
19226 W:      http://www.linux-usb.org
19227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19228 F:      Documentation/devicetree/bindings/usb/
19229 F:      Documentation/usb/
19230 F:      drivers/usb/
19231 F:      include/linux/usb.h
19232 F:      include/linux/usb/
19233
19234 USB TYPEC BUS FOR ALTERNATE MODES
19235 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19236 L:      linux-usb@vger.kernel.org
19237 S:      Maintained
19238 F:      Documentation/ABI/testing/sysfs-bus-typec
19239 F:      Documentation/driver-api/usb/typec_bus.rst
19240 F:      drivers/usb/typec/altmodes/
19241 F:      include/linux/usb/typec_altmode.h
19242
19243 USB TYPEC CLASS
19244 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19245 L:      linux-usb@vger.kernel.org
19246 S:      Maintained
19247 F:      Documentation/ABI/testing/sysfs-class-typec
19248 F:      Documentation/driver-api/usb/typec.rst
19249 F:      drivers/usb/typec/
19250 F:      include/linux/usb/typec.h
19251
19252 USB TYPEC INTEL PMC MUX DRIVER
19253 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19254 L:      linux-usb@vger.kernel.org
19255 S:      Maintained
19256 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19257 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19258
19259 USB TYPEC PI3USB30532 MUX DRIVER
19260 M:      Hans de Goede <hdegoede@redhat.com>
19261 L:      linux-usb@vger.kernel.org
19262 S:      Maintained
19263 F:      drivers/usb/typec/mux/pi3usb30532.c
19264
19265 USB TYPEC PORT CONTROLLER DRIVERS
19266 M:      Guenter Roeck <linux@roeck-us.net>
19267 L:      linux-usb@vger.kernel.org
19268 S:      Maintained
19269 F:      drivers/usb/typec/tcpm/
19270
19271 USB UHCI DRIVER
19272 M:      Alan Stern <stern@rowland.harvard.edu>
19273 L:      linux-usb@vger.kernel.org
19274 S:      Maintained
19275 F:      drivers/usb/host/uhci*
19276
19277 USB VIDEO CLASS
19278 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19279 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19280 L:      linux-media@vger.kernel.org
19281 S:      Maintained
19282 W:      http://www.ideasonboard.org/uvc/
19283 T:      git git://linuxtv.org/media_tree.git
19284 F:      drivers/media/usb/uvc/
19285 F:      include/uapi/linux/uvcvideo.h
19286
19287 USB WEBCAM GADGET
19288 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19289 L:      linux-usb@vger.kernel.org
19290 S:      Maintained
19291 F:      drivers/usb/gadget/function/*uvc*
19292 F:      drivers/usb/gadget/legacy/webcam.c
19293 F:      include/uapi/linux/usb/g_uvc.h
19294
19295 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19296 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19297 L:      linux-wireless@vger.kernel.org
19298 S:      Maintained
19299 F:      drivers/net/wireless/rndis_wlan.c
19300
19301 USB XHCI DRIVER
19302 M:      Mathias Nyman <mathias.nyman@intel.com>
19303 L:      linux-usb@vger.kernel.org
19304 S:      Supported
19305 F:      drivers/usb/host/pci-quirks*
19306 F:      drivers/usb/host/xhci*
19307
19308 USB ZD1201 DRIVER
19309 L:      linux-wireless@vger.kernel.org
19310 S:      Orphan
19311 W:      http://linux-lc100020.sourceforge.net
19312 F:      drivers/net/wireless/zydas/zd1201.*
19313
19314 USB ZR364XX DRIVER
19315 M:      Antoine Jacquet <royale@zerezo.com>
19316 L:      linux-usb@vger.kernel.org
19317 L:      linux-media@vger.kernel.org
19318 S:      Maintained
19319 W:      http://royale.zerezo.com/zr364xx/
19320 T:      git git://linuxtv.org/media_tree.git
19321 F:      Documentation/admin-guide/media/zr364xx*
19322 F:      drivers/media/usb/zr364xx/
19323
19324 USER-MODE LINUX (UML)
19325 M:      Jeff Dike <jdike@addtoit.com>
19326 M:      Richard Weinberger <richard@nod.at>
19327 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19328 L:      linux-um@lists.infradead.org
19329 S:      Maintained
19330 W:      http://user-mode-linux.sourceforge.net
19331 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19333 F:      Documentation/virt/uml/
19334 F:      arch/um/
19335 F:      arch/x86/um/
19336 F:      fs/hostfs/
19337
19338 USERSPACE COPYIN/COPYOUT (UIOVEC)
19339 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19340 S:      Maintained
19341 F:      include/linux/uio.h
19342 F:      lib/iov_iter.c
19343
19344 USERSPACE DMA BUFFER DRIVER
19345 M:      Gerd Hoffmann <kraxel@redhat.com>
19346 L:      dri-devel@lists.freedesktop.org
19347 S:      Maintained
19348 T:      git git://anongit.freedesktop.org/drm/drm-misc
19349 F:      drivers/dma-buf/udmabuf.c
19350 F:      include/uapi/linux/udmabuf.h
19351
19352 USERSPACE I/O (UIO)
19353 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19354 S:      Maintained
19355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19356 F:      Documentation/driver-api/uio-howto.rst
19357 F:      drivers/uio/
19358 F:      include/linux/uio_driver.h
19359
19360 UTIL-LINUX PACKAGE
19361 M:      Karel Zak <kzak@redhat.com>
19362 L:      util-linux@vger.kernel.org
19363 S:      Maintained
19364 W:      http://en.wikipedia.org/wiki/Util-linux
19365 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19366
19367 UUID HELPERS
19368 M:      Christoph Hellwig <hch@lst.de>
19369 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19370 L:      linux-kernel@vger.kernel.org
19371 S:      Maintained
19372 T:      git git://git.infradead.org/users/hch/uuid.git
19373 F:      include/linux/uuid.h
19374 F:      include/uapi/linux/uuid.h
19375 F:      lib/test_uuid.c
19376 F:      lib/uuid.c
19377
19378 UV SYSFS DRIVER
19379 M:      Justin Ernst <justin.ernst@hpe.com>
19380 L:      platform-driver-x86@vger.kernel.org
19381 S:      Maintained
19382 F:      drivers/platform/x86/uv_sysfs.c
19383
19384 UVESAFB DRIVER
19385 M:      Michal Januszewski <spock@gentoo.org>
19386 L:      linux-fbdev@vger.kernel.org
19387 S:      Maintained
19388 W:      https://github.com/mjanusz/v86d
19389 F:      Documentation/fb/uvesafb.rst
19390 F:      drivers/video/fbdev/uvesafb.*
19391
19392 Ux500 CLOCK DRIVERS
19393 M:      Ulf Hansson <ulf.hansson@linaro.org>
19394 L:      linux-clk@vger.kernel.org
19395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19396 S:      Maintained
19397 F:      drivers/clk/ux500/
19398
19399 VF610 NAND DRIVER
19400 M:      Stefan Agner <stefan@agner.ch>
19401 L:      linux-mtd@lists.infradead.org
19402 S:      Supported
19403 F:      drivers/mtd/nand/raw/vf610_nfc.c
19404
19405 VFAT/FAT/MSDOS FILESYSTEM
19406 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19407 S:      Maintained
19408 F:      Documentation/filesystems/vfat.rst
19409 F:      fs/fat/
19410
19411 VFIO DRIVER
19412 M:      Alex Williamson <alex.williamson@redhat.com>
19413 R:      Cornelia Huck <cohuck@redhat.com>
19414 L:      kvm@vger.kernel.org
19415 S:      Maintained
19416 T:      git git://github.com/awilliam/linux-vfio.git
19417 F:      Documentation/driver-api/vfio.rst
19418 F:      drivers/vfio/
19419 F:      include/linux/vfio.h
19420 F:      include/uapi/linux/vfio.h
19421
19422 VFIO FSL-MC DRIVER
19423 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19424 L:      kvm@vger.kernel.org
19425 S:      Maintained
19426 F:      drivers/vfio/fsl-mc/
19427
19428 VFIO MEDIATED DEVICE DRIVERS
19429 M:      Kirti Wankhede <kwankhede@nvidia.com>
19430 L:      kvm@vger.kernel.org
19431 S:      Maintained
19432 F:      Documentation/driver-api/vfio-mediated-device.rst
19433 F:      drivers/vfio/mdev/
19434 F:      include/linux/mdev.h
19435 F:      samples/vfio-mdev/
19436
19437 VFIO PLATFORM DRIVER
19438 M:      Eric Auger <eric.auger@redhat.com>
19439 L:      kvm@vger.kernel.org
19440 S:      Maintained
19441 F:      drivers/vfio/platform/
19442
19443 VGA_SWITCHEROO
19444 R:      Lukas Wunner <lukas@wunner.de>
19445 S:      Maintained
19446 T:      git git://anongit.freedesktop.org/drm/drm-misc
19447 F:      Documentation/gpu/vga-switcheroo.rst
19448 F:      drivers/gpu/vga/vga_switcheroo.c
19449 F:      include/linux/vga_switcheroo.h
19450
19451 VIA RHINE NETWORK DRIVER
19452 S:      Maintained
19453 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19454 F:      drivers/net/ethernet/via/via-rhine.c
19455
19456 VIA SD/MMC CARD CONTROLLER DRIVER
19457 M:      Bruce Chang <brucechang@via.com.tw>
19458 M:      Harald Welte <HaraldWelte@viatech.com>
19459 S:      Maintained
19460 F:      drivers/mmc/host/via-sdmmc.c
19461
19462 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19463 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19464 L:      linux-fbdev@vger.kernel.org
19465 S:      Maintained
19466 F:      drivers/video/fbdev/via/
19467 F:      include/linux/via-core.h
19468 F:      include/linux/via-gpio.h
19469 F:      include/linux/via_i2c.h
19470
19471 VIA VELOCITY NETWORK DRIVER
19472 M:      Francois Romieu <romieu@fr.zoreil.com>
19473 L:      netdev@vger.kernel.org
19474 S:      Maintained
19475 F:      drivers/net/ethernet/via/via-velocity.*
19476
19477 VICODEC VIRTUAL CODEC DRIVER
19478 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19479 L:      linux-media@vger.kernel.org
19480 S:      Maintained
19481 W:      https://linuxtv.org
19482 T:      git git://linuxtv.org/media_tree.git
19483 F:      drivers/media/test-drivers/vicodec/*
19484
19485 VIDEO I2C POLLING DRIVER
19486 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19487 L:      linux-media@vger.kernel.org
19488 S:      Maintained
19489 F:      drivers/media/i2c/video-i2c.c
19490
19491 VIDEO MULTIPLEXER DRIVER
19492 M:      Philipp Zabel <p.zabel@pengutronix.de>
19493 L:      linux-media@vger.kernel.org
19494 S:      Maintained
19495 F:      drivers/media/platform/video-mux.c
19496
19497 VIDEOBUF2 FRAMEWORK
19498 M:      Tomasz Figa <tfiga@chromium.org>
19499 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19500 L:      linux-media@vger.kernel.org
19501 S:      Maintained
19502 F:      drivers/media/common/videobuf2/*
19503 F:      include/media/videobuf2-*
19504
19505 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19506 M:      Helen Koike <helen.koike@collabora.com>
19507 R:      Shuah Khan <skhan@linuxfoundation.org>
19508 L:      linux-media@vger.kernel.org
19509 S:      Maintained
19510 W:      https://linuxtv.org
19511 T:      git git://linuxtv.org/media_tree.git
19512 F:      drivers/media/test-drivers/vimc/*
19513
19514 VIRT LIB
19515 M:      Alex Williamson <alex.williamson@redhat.com>
19516 M:      Paolo Bonzini <pbonzini@redhat.com>
19517 L:      kvm@vger.kernel.org
19518 S:      Supported
19519 F:      virt/lib/
19520
19521 VIRTIO AND VHOST VSOCK DRIVER
19522 M:      Stefan Hajnoczi <stefanha@redhat.com>
19523 M:      Stefano Garzarella <sgarzare@redhat.com>
19524 L:      kvm@vger.kernel.org
19525 L:      virtualization@lists.linux-foundation.org
19526 L:      netdev@vger.kernel.org
19527 S:      Maintained
19528 F:      drivers/net/vsockmon.c
19529 F:      drivers/vhost/vsock.c
19530 F:      include/linux/virtio_vsock.h
19531 F:      include/uapi/linux/virtio_vsock.h
19532 F:      include/uapi/linux/vm_sockets_diag.h
19533 F:      include/uapi/linux/vsockmon.h
19534 F:      net/vmw_vsock/af_vsock_tap.c
19535 F:      net/vmw_vsock/diag.c
19536 F:      net/vmw_vsock/virtio_transport.c
19537 F:      net/vmw_vsock/virtio_transport_common.c
19538 F:      net/vmw_vsock/vsock_loopback.c
19539 F:      tools/testing/vsock/
19540
19541 VIRTIO BLOCK AND SCSI DRIVERS
19542 M:      "Michael S. Tsirkin" <mst@redhat.com>
19543 M:      Jason Wang <jasowang@redhat.com>
19544 R:      Paolo Bonzini <pbonzini@redhat.com>
19545 R:      Stefan Hajnoczi <stefanha@redhat.com>
19546 L:      virtualization@lists.linux-foundation.org
19547 S:      Maintained
19548 F:      drivers/block/virtio_blk.c
19549 F:      drivers/scsi/virtio_scsi.c
19550 F:      drivers/vhost/scsi.c
19551 F:      include/uapi/linux/virtio_blk.h
19552 F:      include/uapi/linux/virtio_scsi.h
19553
19554 VIRTIO CONSOLE DRIVER
19555 M:      Amit Shah <amit@kernel.org>
19556 L:      virtualization@lists.linux-foundation.org
19557 S:      Maintained
19558 F:      drivers/char/virtio_console.c
19559 F:      include/linux/virtio_console.h
19560 F:      include/uapi/linux/virtio_console.h
19561
19562 VIRTIO CORE AND NET DRIVERS
19563 M:      "Michael S. Tsirkin" <mst@redhat.com>
19564 M:      Jason Wang <jasowang@redhat.com>
19565 L:      virtualization@lists.linux-foundation.org
19566 S:      Maintained
19567 F:      Documentation/devicetree/bindings/virtio/
19568 F:      drivers/block/virtio_blk.c
19569 F:      drivers/crypto/virtio/
19570 F:      drivers/net/virtio_net.c
19571 F:      drivers/vdpa/
19572 F:      drivers/virtio/
19573 F:      include/linux/vdpa.h
19574 F:      include/linux/virtio*.h
19575 F:      include/uapi/linux/virtio_*.h
19576 F:      tools/virtio/
19577
19578 VIRTIO BALLOON
19579 M:      "Michael S. Tsirkin" <mst@redhat.com>
19580 M:      David Hildenbrand <david@redhat.com>
19581 L:      virtualization@lists.linux-foundation.org
19582 S:      Maintained
19583 F:      drivers/virtio/virtio_balloon.c
19584 F:      include/uapi/linux/virtio_balloon.h
19585 F:      include/linux/balloon_compaction.h
19586 F:      mm/balloon_compaction.c
19587
19588 VIRTIO CRYPTO DRIVER
19589 M:      Gonglei <arei.gonglei@huawei.com>
19590 L:      virtualization@lists.linux-foundation.org
19591 L:      linux-crypto@vger.kernel.org
19592 S:      Maintained
19593 F:      drivers/crypto/virtio/
19594 F:      include/uapi/linux/virtio_crypto.h
19595
19596 VIRTIO DRIVERS FOR S390
19597 M:      Cornelia Huck <cohuck@redhat.com>
19598 M:      Halil Pasic <pasic@linux.ibm.com>
19599 L:      linux-s390@vger.kernel.org
19600 L:      virtualization@lists.linux-foundation.org
19601 L:      kvm@vger.kernel.org
19602 S:      Supported
19603 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19604 F:      drivers/s390/virtio/
19605
19606 VIRTIO FILE SYSTEM
19607 M:      Vivek Goyal <vgoyal@redhat.com>
19608 M:      Stefan Hajnoczi <stefanha@redhat.com>
19609 M:      Miklos Szeredi <miklos@szeredi.hu>
19610 L:      virtualization@lists.linux-foundation.org
19611 L:      linux-fsdevel@vger.kernel.org
19612 S:      Supported
19613 W:      https://virtio-fs.gitlab.io/
19614 F:      Documentation/filesystems/virtiofs.rst
19615 F:      fs/fuse/virtio_fs.c
19616 F:      include/uapi/linux/virtio_fs.h
19617
19618 VIRTIO GPU DRIVER
19619 M:      David Airlie <airlied@linux.ie>
19620 M:      Gerd Hoffmann <kraxel@redhat.com>
19621 L:      dri-devel@lists.freedesktop.org
19622 L:      virtualization@lists.linux-foundation.org
19623 S:      Maintained
19624 T:      git git://anongit.freedesktop.org/drm/drm-misc
19625 F:      drivers/gpu/drm/virtio/
19626 F:      include/uapi/linux/virtio_gpu.h
19627
19628 VIRTIO HOST (VHOST)
19629 M:      "Michael S. Tsirkin" <mst@redhat.com>
19630 M:      Jason Wang <jasowang@redhat.com>
19631 L:      kvm@vger.kernel.org
19632 L:      virtualization@lists.linux-foundation.org
19633 L:      netdev@vger.kernel.org
19634 S:      Maintained
19635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19636 F:      drivers/vhost/
19637 F:      include/linux/vhost_iotlb.h
19638 F:      include/uapi/linux/vhost.h
19639
19640 VIRTIO INPUT DRIVER
19641 M:      Gerd Hoffmann <kraxel@redhat.com>
19642 S:      Maintained
19643 F:      drivers/virtio/virtio_input.c
19644 F:      include/uapi/linux/virtio_input.h
19645
19646 VIRTIO IOMMU DRIVER
19647 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19648 L:      virtualization@lists.linux-foundation.org
19649 S:      Maintained
19650 F:      drivers/iommu/virtio-iommu.c
19651 F:      include/uapi/linux/virtio_iommu.h
19652
19653 VIRTIO MEM DRIVER
19654 M:      David Hildenbrand <david@redhat.com>
19655 L:      virtualization@lists.linux-foundation.org
19656 S:      Maintained
19657 W:      https://virtio-mem.gitlab.io/
19658 F:      drivers/virtio/virtio_mem.c
19659 F:      include/uapi/linux/virtio_mem.h
19660
19661 VIRTIO SOUND DRIVER
19662 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
19663 M:      "Michael S. Tsirkin" <mst@redhat.com>
19664 L:      virtualization@lists.linux-foundation.org
19665 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19666 S:      Maintained
19667 F:      include/uapi/linux/virtio_snd.h
19668 F:      sound/virtio/*
19669
19670 VIRTUAL BOX GUEST DEVICE DRIVER
19671 M:      Hans de Goede <hdegoede@redhat.com>
19672 M:      Arnd Bergmann <arnd@arndb.de>
19673 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19674 S:      Maintained
19675 F:      drivers/virt/vboxguest/
19676 F:      include/linux/vbox_utils.h
19677 F:      include/uapi/linux/vbox*.h
19678
19679 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19680 M:      Hans de Goede <hdegoede@redhat.com>
19681 L:      linux-fsdevel@vger.kernel.org
19682 S:      Maintained
19683 F:      fs/vboxsf/*
19684
19685 VIRTUAL SERIO DEVICE DRIVER
19686 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19687 S:      Maintained
19688 F:      drivers/input/serio/userio.c
19689 F:      include/uapi/linux/userio.h
19690
19691 VIVID VIRTUAL VIDEO DRIVER
19692 M:      Hans Verkuil <hverkuil@xs4all.nl>
19693 L:      linux-media@vger.kernel.org
19694 S:      Maintained
19695 W:      https://linuxtv.org
19696 T:      git git://linuxtv.org/media_tree.git
19697 F:      drivers/media/test-drivers/vivid/*
19698
19699 VIDTV VIRTUAL DIGITAL TV DRIVER
19700 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19701 L:      linux-media@vger.kernel.org
19702 S:      Maintained
19703 W:      https://linuxtv.org
19704 T:      git git://linuxtv.org/media_tree.git
19705 F:      drivers/media/test-drivers/vidtv/*
19706
19707 VLYNQ BUS
19708 M:      Florian Fainelli <f.fainelli@gmail.com>
19709 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
19710 S:      Maintained
19711 F:      drivers/vlynq/vlynq.c
19712 F:      include/linux/vlynq.h
19713
19714 VME SUBSYSTEM
19715 M:      Martyn Welch <martyn@welchs.me.uk>
19716 M:      Manohar Vanga <manohar.vanga@gmail.com>
19717 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19718 L:      linux-kernel@vger.kernel.org
19719 S:      Maintained
19720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19721 F:      Documentation/driver-api/vme.rst
19722 F:      drivers/staging/vme/
19723 F:      drivers/vme/
19724 F:      include/linux/vme*
19725
19726 VMWARE BALLOON DRIVER
19727 M:      Nadav Amit <namit@vmware.com>
19728 M:      "VMware, Inc." <pv-drivers@vmware.com>
19729 L:      linux-kernel@vger.kernel.org
19730 S:      Maintained
19731 F:      drivers/misc/vmw_balloon.c
19732
19733 VMWARE HYPERVISOR INTERFACE
19734 M:      Deep Shah <sdeep@vmware.com>
19735 M:      "VMware, Inc." <pv-drivers@vmware.com>
19736 L:      virtualization@lists.linux-foundation.org
19737 S:      Supported
19738 F:      arch/x86/include/asm/vmware.h
19739 F:      arch/x86/kernel/cpu/vmware.c
19740
19741 VMWARE PVRDMA DRIVER
19742 M:      Adit Ranadive <aditr@vmware.com>
19743 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19744 L:      linux-rdma@vger.kernel.org
19745 S:      Maintained
19746 F:      drivers/infiniband/hw/vmw_pvrdma/
19747
19748 VMware PVSCSI driver
19749 M:      Vishal Bhakta <vbhakta@vmware.com>
19750 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19751 L:      linux-scsi@vger.kernel.org
19752 S:      Maintained
19753 F:      drivers/scsi/vmw_pvscsi.c
19754 F:      drivers/scsi/vmw_pvscsi.h
19755
19756 VMWARE VIRTUAL PTP CLOCK DRIVER
19757 M:      Vivek Thampi <vithampi@vmware.com>
19758 M:      "VMware, Inc." <pv-drivers@vmware.com>
19759 L:      netdev@vger.kernel.org
19760 S:      Supported
19761 F:      drivers/ptp/ptp_vmw.c
19762
19763 VMWARE VMMOUSE SUBDRIVER
19764 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19765 M:      "VMware, Inc." <pv-drivers@vmware.com>
19766 L:      linux-input@vger.kernel.org
19767 S:      Maintained
19768 F:      drivers/input/mouse/vmmouse.c
19769 F:      drivers/input/mouse/vmmouse.h
19770
19771 VMWARE VMXNET3 ETHERNET DRIVER
19772 M:      Ronak Doshi <doshir@vmware.com>
19773 M:      pv-drivers@vmware.com
19774 L:      netdev@vger.kernel.org
19775 S:      Maintained
19776 F:      drivers/net/vmxnet3/
19777
19778 VOCORE VOCORE2 BOARD
19779 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19780 L:      linux-mips@vger.kernel.org
19781 S:      Maintained
19782 F:      arch/mips/boot/dts/ralink/vocore2.dts
19783
19784 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19785 M:      Liam Girdwood <lgirdwood@gmail.com>
19786 M:      Mark Brown <broonie@kernel.org>
19787 L:      linux-kernel@vger.kernel.org
19788 S:      Supported
19789 W:      http://www.slimlogic.co.uk/?p=48
19790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19791 F:      Documentation/devicetree/bindings/regulator/
19792 F:      Documentation/power/regulator/
19793 F:      drivers/regulator/
19794 F:      include/dt-bindings/regulator/
19795 F:      include/linux/regulator/
19796 K:      regulator_get_optional
19797
19798 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
19799 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
19800 F:      drivers/regulator/irq_helpers.c
19801
19802 VRF
19803 M:      David Ahern <dsahern@kernel.org>
19804 L:      netdev@vger.kernel.org
19805 S:      Maintained
19806 F:      Documentation/networking/vrf.rst
19807 F:      drivers/net/vrf.c
19808
19809 VSPRINTF
19810 M:      Petr Mladek <pmladek@suse.com>
19811 M:      Steven Rostedt <rostedt@goodmis.org>
19812 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
19813 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19814 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19815 S:      Maintained
19816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19817 F:      Documentation/core-api/printk-formats.rst
19818 F:      lib/test_printf.c
19819 F:      lib/test_scanf.c
19820 F:      lib/vsprintf.c
19821
19822 VT1211 HARDWARE MONITOR DRIVER
19823 M:      Juerg Haefliger <juergh@gmail.com>
19824 L:      linux-hwmon@vger.kernel.org
19825 S:      Maintained
19826 F:      Documentation/hwmon/vt1211.rst
19827 F:      drivers/hwmon/vt1211.c
19828
19829 VT8231 HARDWARE MONITOR DRIVER
19830 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19831 L:      linux-hwmon@vger.kernel.org
19832 S:      Maintained
19833 F:      drivers/hwmon/vt8231.c
19834
19835 VUB300 USB to SDIO/SD/MMC bridge chip
19836 L:      linux-mmc@vger.kernel.org
19837 S:      Orphan
19838 F:      drivers/mmc/host/vub300.c
19839
19840 W1 DALLAS'S 1-WIRE BUS
19841 M:      Evgeniy Polyakov <zbr@ioremap.net>
19842 S:      Maintained
19843 F:      Documentation/devicetree/bindings/w1/
19844 F:      Documentation/w1/
19845 F:      drivers/w1/
19846 F:      include/linux/w1.h
19847
19848 W83791D HARDWARE MONITORING DRIVER
19849 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19850 L:      linux-hwmon@vger.kernel.org
19851 S:      Maintained
19852 F:      Documentation/hwmon/w83791d.rst
19853 F:      drivers/hwmon/w83791d.c
19854
19855 W83793 HARDWARE MONITORING DRIVER
19856 M:      Rudolf Marek <r.marek@assembler.cz>
19857 L:      linux-hwmon@vger.kernel.org
19858 S:      Maintained
19859 F:      Documentation/hwmon/w83793.rst
19860 F:      drivers/hwmon/w83793.c
19861
19862 W83795 HARDWARE MONITORING DRIVER
19863 M:      Jean Delvare <jdelvare@suse.com>
19864 L:      linux-hwmon@vger.kernel.org
19865 S:      Maintained
19866 F:      drivers/hwmon/w83795.c
19867
19868 W83L51xD SD/MMC CARD INTERFACE DRIVER
19869 M:      Pierre Ossman <pierre@ossman.eu>
19870 S:      Maintained
19871 F:      drivers/mmc/host/wbsd.*
19872
19873 WACOM PROTOCOL 4 SERIAL TABLETS
19874 M:      Julian Squires <julian@cipht.net>
19875 M:      Hans de Goede <hdegoede@redhat.com>
19876 L:      linux-input@vger.kernel.org
19877 S:      Maintained
19878 F:      drivers/input/tablet/wacom_serial4.c
19879
19880 WATCHDOG DEVICE DRIVERS
19881 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19882 M:      Guenter Roeck <linux@roeck-us.net>
19883 L:      linux-watchdog@vger.kernel.org
19884 S:      Maintained
19885 W:      http://www.linux-watchdog.org/
19886 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19887 F:      Documentation/devicetree/bindings/watchdog/
19888 F:      Documentation/watchdog/
19889 F:      drivers/watchdog/
19890 F:      include/linux/watchdog.h
19891 F:      include/uapi/linux/watchdog.h
19892
19893 WHISKEYCOVE PMIC GPIO DRIVER
19894 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19895 L:      linux-gpio@vger.kernel.org
19896 S:      Maintained
19897 F:      drivers/gpio/gpio-wcove.c
19898
19899 WHWAVE RTC DRIVER
19900 M:      Dianlong Li <long17.cool@163.com>
19901 L:      linux-rtc@vger.kernel.org
19902 S:      Maintained
19903 F:      drivers/rtc/rtc-sd3078.c
19904
19905 WIIMOTE HID DRIVER
19906 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19907 L:      linux-input@vger.kernel.org
19908 S:      Maintained
19909 F:      drivers/hid/hid-wiimote*
19910
19911 WILOCITY WIL6210 WIRELESS DRIVER
19912 M:      Maya Erez <merez@codeaurora.org>
19913 L:      linux-wireless@vger.kernel.org
19914 L:      wil6210@qti.qualcomm.com
19915 S:      Supported
19916 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19917 F:      drivers/net/wireless/ath/wil6210/
19918
19919 WINBOND CIR DRIVER
19920 M:      David Härdeman <david@hardeman.nu>
19921 S:      Maintained
19922 F:      drivers/media/rc/winbond-cir.c
19923
19924 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19925 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19926 L:      linux-watchdog@vger.kernel.org
19927 S:      Maintained
19928 F:      drivers/watchdog/ebc-c384_wdt.c
19929
19930 WINSYSTEMS WS16C48 GPIO DRIVER
19931 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19932 L:      linux-gpio@vger.kernel.org
19933 S:      Maintained
19934 F:      drivers/gpio/gpio-ws16c48.c
19935
19936 WIREGUARD SECURE NETWORK TUNNEL
19937 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19938 L:      wireguard@lists.zx2c4.com
19939 L:      netdev@vger.kernel.org
19940 S:      Maintained
19941 F:      drivers/net/wireguard/
19942 F:      tools/testing/selftests/wireguard/
19943
19944 WISTRON LAPTOP BUTTON DRIVER
19945 M:      Miloslav Trmac <mitr@volny.cz>
19946 S:      Maintained
19947 F:      drivers/input/misc/wistron_btns.c
19948
19949 WL3501 WIRELESS PCMCIA CARD DRIVER
19950 L:      linux-wireless@vger.kernel.org
19951 S:      Odd fixes
19952 F:      drivers/net/wireless/wl3501*
19953
19954 WOLFSON MICROELECTRONICS DRIVERS
19955 L:      patches@opensource.cirrus.com
19956 S:      Supported
19957 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19958 T:      git https://github.com/CirrusLogic/linux-drivers.git
19959 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19960 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19961 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19962 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19963 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19964 F:      Documentation/hwmon/wm83??.rst
19965 F:      arch/arm/mach-s3c/mach-crag6410*
19966 F:      drivers/clk/clk-wm83*.c
19967 F:      drivers/gpio/gpio-*wm*.c
19968 F:      drivers/gpio/gpio-arizona.c
19969 F:      drivers/hwmon/wm83??-hwmon.c
19970 F:      drivers/input/misc/wm831x-on.c
19971 F:      drivers/input/touchscreen/wm831x-ts.c
19972 F:      drivers/input/touchscreen/wm97*.c
19973 F:      drivers/leds/leds-wm83*.c
19974 F:      drivers/mfd/arizona*
19975 F:      drivers/mfd/cs47l24*
19976 F:      drivers/mfd/wm*.c
19977 F:      drivers/power/supply/wm83*.c
19978 F:      drivers/regulator/arizona*
19979 F:      drivers/regulator/wm8*.c
19980 F:      drivers/rtc/rtc-wm83*.c
19981 F:      drivers/video/backlight/wm83*_bl.c
19982 F:      drivers/watchdog/wm83*_wdt.c
19983 F:      include/linux/mfd/arizona/
19984 F:      include/linux/mfd/wm831x/
19985 F:      include/linux/mfd/wm8350/
19986 F:      include/linux/mfd/wm8400*
19987 F:      include/linux/regulator/arizona*
19988 F:      include/linux/wm97xx.h
19989 F:      include/sound/wm????.h
19990 F:      sound/soc/codecs/arizona*
19991 F:      sound/soc/codecs/cs47l24*
19992 F:      sound/soc/codecs/wm*
19993
19994 WORKQUEUE
19995 M:      Tejun Heo <tj@kernel.org>
19996 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19997 S:      Maintained
19998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19999 F:      Documentation/core-api/workqueue.rst
20000 F:      include/linux/workqueue.h
20001 F:      kernel/workqueue.c
20002
20003 WWAN DRIVERS
20004 M:      Loic Poulain <loic.poulain@linaro.org>
20005 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20006 R:      Johannes Berg <johannes@sipsolutions.net>
20007 L:      netdev@vger.kernel.org
20008 S:      Maintained
20009 F:      drivers/net/wwan/
20010 F:      include/linux/wwan.h
20011 F:      include/uapi/linux/wwan.h
20012
20013 X-POWERS AXP288 PMIC DRIVERS
20014 M:      Hans de Goede <hdegoede@redhat.com>
20015 S:      Maintained
20016 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20017 N:      axp288
20018
20019 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20020 M:      Chen-Yu Tsai <wens@csie.org>
20021 L:      linux-kernel@vger.kernel.org
20022 S:      Maintained
20023 N:      axp[128]
20024
20025 X.25 STACK
20026 M:      Martin Schiller <ms@dev.tdt.de>
20027 L:      linux-x25@vger.kernel.org
20028 S:      Maintained
20029 F:      Documentation/networking/lapb-module.rst
20030 F:      Documentation/networking/x25*
20031 F:      drivers/net/wan/hdlc_x25.c
20032 F:      drivers/net/wan/lapbether.c
20033 F:      include/*/lapb.h
20034 F:      include/net/x25*
20035 F:      include/uapi/linux/x25.h
20036 F:      net/lapb/
20037 F:      net/x25/
20038
20039 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20040 M:      Thomas Gleixner <tglx@linutronix.de>
20041 M:      Ingo Molnar <mingo@redhat.com>
20042 M:      Borislav Petkov <bp@alien8.de>
20043 M:      x86@kernel.org
20044 R:      "H. Peter Anvin" <hpa@zytor.com>
20045 L:      linux-kernel@vger.kernel.org
20046 S:      Maintained
20047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20048 F:      Documentation/devicetree/bindings/x86/
20049 F:      Documentation/x86/
20050 F:      arch/x86/
20051
20052 X86 ENTRY CODE
20053 M:      Andy Lutomirski <luto@kernel.org>
20054 L:      linux-kernel@vger.kernel.org
20055 S:      Maintained
20056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20057 F:      arch/x86/entry/
20058
20059 X86 MCE INFRASTRUCTURE
20060 M:      Tony Luck <tony.luck@intel.com>
20061 M:      Borislav Petkov <bp@alien8.de>
20062 L:      linux-edac@vger.kernel.org
20063 S:      Maintained
20064 F:      arch/x86/kernel/cpu/mce/*
20065
20066 X86 MICROCODE UPDATE SUPPORT
20067 M:      Borislav Petkov <bp@alien8.de>
20068 S:      Maintained
20069 F:      arch/x86/kernel/cpu/microcode/*
20070
20071 X86 MM
20072 M:      Dave Hansen <dave.hansen@linux.intel.com>
20073 M:      Andy Lutomirski <luto@kernel.org>
20074 M:      Peter Zijlstra <peterz@infradead.org>
20075 L:      linux-kernel@vger.kernel.org
20076 S:      Maintained
20077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20078 F:      arch/x86/mm/
20079
20080 X86 PLATFORM DRIVERS
20081 M:      Hans de Goede <hdegoede@redhat.com>
20082 M:      Mark Gross <mgross@linux.intel.com>
20083 L:      platform-driver-x86@vger.kernel.org
20084 S:      Maintained
20085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20086 F:      drivers/platform/olpc/
20087 F:      drivers/platform/x86/
20088
20089 X86 PLATFORM DRIVERS - ARCH
20090 R:      Darren Hart <dvhart@infradead.org>
20091 R:      Andy Shevchenko <andy@infradead.org>
20092 L:      platform-driver-x86@vger.kernel.org
20093 L:      x86@kernel.org
20094 S:      Maintained
20095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20096 F:      arch/x86/platform
20097
20098 X86 PLATFORM UV HPE SUPERDOME FLEX
20099 M:      Steve Wahl <steve.wahl@hpe.com>
20100 R:      Mike Travis <mike.travis@hpe.com>
20101 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20102 R:      Russ Anderson <russ.anderson@hpe.com>
20103 S:      Supported
20104 F:      arch/x86/include/asm/uv/
20105 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20106 F:      arch/x86/platform/uv/
20107
20108 X86 VDSO
20109 M:      Andy Lutomirski <luto@kernel.org>
20110 L:      linux-kernel@vger.kernel.org
20111 S:      Maintained
20112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20113 F:      arch/x86/entry/vdso/
20114
20115 XARRAY
20116 M:      Matthew Wilcox <willy@infradead.org>
20117 L:      linux-fsdevel@vger.kernel.org
20118 S:      Supported
20119 F:      Documentation/core-api/xarray.rst
20120 F:      include/linux/idr.h
20121 F:      include/linux/xarray.h
20122 F:      lib/idr.c
20123 F:      lib/xarray.c
20124 F:      tools/testing/radix-tree
20125
20126 XBOX DVD IR REMOTE
20127 M:      Benjamin Valentin <benpicco@googlemail.com>
20128 S:      Maintained
20129 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20130 F:      drivers/media/rc/xbox_remote.c
20131
20132 XC2028/3028 TUNER DRIVER
20133 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20134 L:      linux-media@vger.kernel.org
20135 S:      Maintained
20136 W:      https://linuxtv.org
20137 T:      git git://linuxtv.org/media_tree.git
20138 F:      drivers/media/tuners/tuner-xc2028.*
20139
20140 XDP (eXpress Data Path)
20141 M:      Alexei Starovoitov <ast@kernel.org>
20142 M:      Daniel Borkmann <daniel@iogearbox.net>
20143 M:      David S. Miller <davem@davemloft.net>
20144 M:      Jakub Kicinski <kuba@kernel.org>
20145 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20146 M:      John Fastabend <john.fastabend@gmail.com>
20147 L:      netdev@vger.kernel.org
20148 L:      bpf@vger.kernel.org
20149 S:      Supported
20150 F:      include/net/xdp.h
20151 F:      include/net/xdp_priv.h
20152 F:      include/trace/events/xdp.h
20153 F:      kernel/bpf/cpumap.c
20154 F:      kernel/bpf/devmap.c
20155 F:      net/core/xdp.c
20156 F:      samples/bpf/xdp*
20157 F:      tools/testing/selftests/bpf/*xdp*
20158 F:      tools/testing/selftests/bpf/*/*xdp*
20159 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20160 F:      drivers/net/ethernet/*/*/*xdp*
20161 K:      (?:\b|_)xdp(?:\b|_)
20162
20163 XDP SOCKETS (AF_XDP)
20164 M:      Björn Töpel <bjorn@kernel.org>
20165 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20166 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20167 L:      netdev@vger.kernel.org
20168 L:      bpf@vger.kernel.org
20169 S:      Maintained
20170 F:      Documentation/networking/af_xdp.rst
20171 F:      include/net/xdp_sock*
20172 F:      include/net/xsk_buff_pool.h
20173 F:      include/uapi/linux/if_xdp.h
20174 F:      include/uapi/linux/xdp_diag.h
20175 F:      include/net/netns/xdp.h
20176 F:      net/xdp/
20177 F:      samples/bpf/xdpsock*
20178 F:      tools/lib/bpf/xsk*
20179
20180 XEN BLOCK SUBSYSTEM
20181 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20182 M:      Roger Pau Monné <roger.pau@citrix.com>
20183 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20184 S:      Supported
20185 F:      drivers/block/xen*
20186 F:      drivers/block/xen-blkback/*
20187
20188 XEN HYPERVISOR ARM
20189 M:      Stefano Stabellini <sstabellini@kernel.org>
20190 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20191 S:      Maintained
20192 F:      arch/arm/include/asm/xen/
20193 F:      arch/arm/xen/
20194
20195 XEN HYPERVISOR ARM64
20196 M:      Stefano Stabellini <sstabellini@kernel.org>
20197 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20198 S:      Maintained
20199 F:      arch/arm64/include/asm/xen/
20200 F:      arch/arm64/xen/
20201
20202 XEN HYPERVISOR INTERFACE
20203 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20204 M:      Juergen Gross <jgross@suse.com>
20205 R:      Stefano Stabellini <sstabellini@kernel.org>
20206 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20207 S:      Supported
20208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20209 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20210 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20211 F:      arch/x86/include/asm/pvclock-abi.h
20212 F:      arch/x86/include/asm/xen/
20213 F:      arch/x86/platform/pvh/
20214 F:      arch/x86/xen/
20215 F:      drivers/*/xen-*front.c
20216 F:      drivers/xen/
20217 F:      include/uapi/xen/
20218 F:      include/xen/
20219
20220 XEN NETWORK BACKEND DRIVER
20221 M:      Wei Liu <wei.liu@kernel.org>
20222 M:      Paul Durrant <paul@xen.org>
20223 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20224 L:      netdev@vger.kernel.org
20225 S:      Supported
20226 F:      drivers/net/xen-netback/*
20227
20228 XEN PCI SUBSYSTEM
20229 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20230 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20231 S:      Supported
20232 F:      arch/x86/pci/*xen*
20233 F:      drivers/pci/*xen*
20234
20235 XEN PVSCSI DRIVERS
20236 M:      Juergen Gross <jgross@suse.com>
20237 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20238 L:      linux-scsi@vger.kernel.org
20239 S:      Supported
20240 F:      drivers/scsi/xen-scsifront.c
20241 F:      drivers/xen/xen-scsiback.c
20242 F:      include/xen/interface/io/vscsiif.h
20243
20244 XEN SOUND FRONTEND DRIVER
20245 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20246 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20247 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20248 S:      Supported
20249 F:      sound/xen/*
20250
20251 XEN SWIOTLB SUBSYSTEM
20252 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20253 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20254 L:      iommu@lists.linux-foundation.org
20255 S:      Supported
20256 F:      arch/x86/xen/*swiotlb*
20257 F:      drivers/xen/*swiotlb*
20258
20259 XFS FILESYSTEM
20260 C:      irc://irc.oftc.net/xfs
20261 M:      Darrick J. Wong <djwong@kernel.org>
20262 M:      linux-xfs@vger.kernel.org
20263 L:      linux-xfs@vger.kernel.org
20264 S:      Supported
20265 W:      http://xfs.org/
20266 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20267 F:      Documentation/ABI/testing/sysfs-fs-xfs
20268 F:      Documentation/admin-guide/xfs.rst
20269 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20270 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20271 F:      fs/xfs/
20272 F:      include/uapi/linux/dqblk_xfs.h
20273 F:      include/uapi/linux/fsmap.h
20274
20275 XILINX AXI ETHERNET DRIVER
20276 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20277 S:      Maintained
20278 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20279
20280 XILINX CAN DRIVER
20281 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20282 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20283 L:      linux-can@vger.kernel.org
20284 S:      Maintained
20285 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20286 F:      drivers/net/can/xilinx_can.c
20287
20288 XILINX GPIO DRIVER
20289 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20290 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20291 R:      Michal Simek <michal.simek@xilinx.com>
20292 S:      Maintained
20293 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20294 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
20295 F:      drivers/gpio/gpio-xilinx.c
20296 F:      drivers/gpio/gpio-zynq.c
20297
20298 XILINX SD-FEC IP CORES
20299 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20300 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20301 S:      Maintained
20302 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20303 F:      Documentation/misc-devices/xilinx_sdfec.rst
20304 F:      drivers/misc/Kconfig
20305 F:      drivers/misc/Makefile
20306 F:      drivers/misc/xilinx_sdfec.c
20307 F:      include/uapi/misc/xilinx_sdfec.h
20308
20309 XILINX UARTLITE SERIAL DRIVER
20310 M:      Peter Korsgaard <jacmet@sunsite.dk>
20311 L:      linux-serial@vger.kernel.org
20312 S:      Maintained
20313 F:      drivers/tty/serial/uartlite.c
20314
20315 XILINX VIDEO IP CORES
20316 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20317 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20318 L:      linux-media@vger.kernel.org
20319 S:      Supported
20320 T:      git git://linuxtv.org/media_tree.git
20321 F:      Documentation/devicetree/bindings/media/xilinx/
20322 F:      drivers/media/platform/xilinx/
20323 F:      include/uapi/linux/xilinx-v4l2-controls.h
20324
20325 XILINX ZYNQMP DPDMA DRIVER
20326 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20327 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20328 L:      dmaengine@vger.kernel.org
20329 S:      Supported
20330 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20331 F:      drivers/dma/xilinx/xilinx_dpdma.c
20332 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20333
20334 XILINX ZYNQMP PSGTR PHY DRIVER
20335 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20336 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20337 L:      linux-kernel@vger.kernel.org
20338 S:      Supported
20339 T:      git https://github.com/Xilinx/linux-xlnx.git
20340 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20341 F:      drivers/phy/xilinx/phy-zynqmp.c
20342
20343 XILLYBUS DRIVER
20344 M:      Eli Billauer <eli.billauer@gmail.com>
20345 L:      linux-kernel@vger.kernel.org
20346 S:      Supported
20347 F:      drivers/char/xillybus/
20348
20349 XLP9XX I2C DRIVER
20350 M:      George Cherian <gcherian@marvell.com>
20351 L:      linux-i2c@vger.kernel.org
20352 S:      Supported
20353 W:      http://www.marvell.com
20354 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20355 F:      drivers/i2c/busses/i2c-xlp9xx.c
20356
20357 XRA1403 GPIO EXPANDER
20358 M:      Nandor Han <nandor.han@ge.com>
20359 M:      Semi Malinen <semi.malinen@ge.com>
20360 L:      linux-gpio@vger.kernel.org
20361 S:      Maintained
20362 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20363 F:      drivers/gpio/gpio-xra1403.c
20364
20365 XTENSA XTFPGA PLATFORM SUPPORT
20366 M:      Max Filippov <jcmvbkbc@gmail.com>
20367 L:      linux-xtensa@linux-xtensa.org
20368 S:      Maintained
20369 F:      drivers/spi/spi-xtensa-xtfpga.c
20370 F:      sound/soc/xtensa/xtfpga-i2s.c
20371
20372 YAM DRIVER FOR AX.25
20373 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20374 L:      linux-hams@vger.kernel.org
20375 S:      Maintained
20376 F:      drivers/net/hamradio/yam*
20377 F:      include/linux/yam.h
20378
20379 YAMA SECURITY MODULE
20380 M:      Kees Cook <keescook@chromium.org>
20381 S:      Supported
20382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20383 F:      Documentation/admin-guide/LSM/Yama.rst
20384 F:      security/yama/
20385
20386 YEALINK PHONE DRIVER
20387 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20388 L:      usbb2k-api-dev@nongnu.org
20389 S:      Maintained
20390 F:      Documentation/input/devices/yealink.rst
20391 F:      drivers/input/misc/yealink.*
20392
20393 Z8530 DRIVER FOR AX.25
20394 M:      Joerg Reuter <jreuter@yaina.de>
20395 L:      linux-hams@vger.kernel.org
20396 S:      Maintained
20397 W:      http://yaina.de/jreuter/
20398 W:      http://www.qsl.net/dl1bke/
20399 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20400 F:      drivers/net/hamradio/*scc.c
20401 F:      drivers/net/hamradio/z8530.h
20402
20403 ZBUD COMPRESSED PAGE ALLOCATOR
20404 M:      Seth Jennings <sjenning@redhat.com>
20405 M:      Dan Streetman <ddstreet@ieee.org>
20406 L:      linux-mm@kvack.org
20407 S:      Maintained
20408 F:      mm/zbud.c
20409
20410 ZD1211RW WIRELESS DRIVER
20411 M:      Daniel Drake <dsd@gentoo.org>
20412 M:      Ulrich Kunitz <kune@deine-taler.de>
20413 L:      linux-wireless@vger.kernel.org
20414 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20415 S:      Maintained
20416 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20417 F:      drivers/net/wireless/zydas/zd1211rw/
20418
20419 ZD1301 MEDIA DRIVER
20420 M:      Antti Palosaari <crope@iki.fi>
20421 L:      linux-media@vger.kernel.org
20422 S:      Maintained
20423 W:      https://linuxtv.org/
20424 W:      http://palosaari.fi/linux/
20425 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20426 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20427
20428 ZD1301_DEMOD MEDIA DRIVER
20429 M:      Antti Palosaari <crope@iki.fi>
20430 L:      linux-media@vger.kernel.org
20431 S:      Maintained
20432 W:      https://linuxtv.org/
20433 W:      http://palosaari.fi/linux/
20434 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20435 F:      drivers/media/dvb-frontends/zd1301_demod*
20436
20437 ZHAOXIN PROCESSOR SUPPORT
20438 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20439 L:      linux-kernel@vger.kernel.org
20440 S:      Maintained
20441 F:      arch/x86/kernel/cpu/zhaoxin.c
20442
20443 ZONEFS FILESYSTEM
20444 M:      Damien Le Moal <damien.lemoal@wdc.com>
20445 M:      Naohiro Aota <naohiro.aota@wdc.com>
20446 R:      Johannes Thumshirn <jth@kernel.org>
20447 L:      linux-fsdevel@vger.kernel.org
20448 S:      Maintained
20449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20450 F:      Documentation/filesystems/zonefs.rst
20451 F:      fs/zonefs/
20452
20453 ZPOOL COMPRESSED PAGE STORAGE API
20454 M:      Dan Streetman <ddstreet@ieee.org>
20455 L:      linux-mm@kvack.org
20456 S:      Maintained
20457 F:      include/linux/zpool.h
20458 F:      mm/zpool.c
20459
20460 ZR36067 VIDEO FOR LINUX DRIVER
20461 M:      Corentin Labbe <clabbe@baylibre.com>
20462 L:      mjpeg-users@lists.sourceforge.net
20463 L:      linux-media@vger.kernel.org
20464 S:      Maintained
20465 W:      http://mjpeg.sourceforge.net/driver-zoran/
20466 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20467 F:      Documentation/driver-api/media/drivers/zoran.rst
20468 F:      drivers/staging/media/zoran/
20469
20470 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20471 M:      Minchan Kim <minchan@kernel.org>
20472 M:      Nitin Gupta <ngupta@vflare.org>
20473 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20474 L:      linux-kernel@vger.kernel.org
20475 S:      Maintained
20476 F:      Documentation/admin-guide/blockdev/zram.rst
20477 F:      drivers/block/zram/
20478
20479 ZS DECSTATION Z85C30 SERIAL DRIVER
20480 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20481 S:      Maintained
20482 F:      drivers/tty/serial/zs.*
20483
20484 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20485 M:      Minchan Kim <minchan@kernel.org>
20486 M:      Nitin Gupta <ngupta@vflare.org>
20487 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20488 L:      linux-mm@kvack.org
20489 S:      Maintained
20490 F:      Documentation/vm/zsmalloc.rst
20491 F:      include/linux/zsmalloc.h
20492 F:      mm/zsmalloc.c
20493
20494 ZSWAP COMPRESSED SWAP CACHING
20495 M:      Seth Jennings <sjenning@redhat.com>
20496 M:      Dan Streetman <ddstreet@ieee.org>
20497 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20498 L:      linux-mm@kvack.org
20499 S:      Maintained
20500 F:      mm/zswap.c
20501
20502 THE REST
20503 M:      Linus Torvalds <torvalds@linux-foundation.org>
20504 L:      linux-kernel@vger.kernel.org
20505 S:      Buried alive in reporters
20506 Q:      http://patchwork.kernel.org/project/LKML/list/
20507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20508 F:      *
20509 F:      */