Merge tag 'tty-5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty
[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:      Realtek linux nic maintainers <nic_swsd@realtek.com>
207 M:      Heiner Kallweit <hkallweit1@gmail.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
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M:      Hans de Goede <hdegoede@redhat.com>
267 L:      linux-hwmon@vger.kernel.org
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <alistair@devzero.co.uk>
273 L:      linux-hwmon@vger.kernel.org
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
279 L:      linux-gpio@vger.kernel.org
280 S:      Maintained
281 F:      drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
285 L:      linux-gpio@vger.kernel.org
286 S:      Maintained
287 F:      drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
291 L:      linux-gpio@vger.kernel.org
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
297 M:      Syed Nayyar Waris <syednwaris@gmail.com>
298 L:      linux-iio@vger.kernel.org
299 S:      Maintained
300 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
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 WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      linux-parisc@vger.kernel.org
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <michael.hennerich@analog.com>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <michael.hennerich@analog.com>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <michael.hennerich@analog.com>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <jikos@kernel.org>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 L:      linux-wpan@vger.kernel.org
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <jdelvare@suse.com>
495 L:      linux-hwmon@vger.kernel.org
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
502 L:      linux-hwmon@vger.kernel.org
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      linux-wireless@vger.kernel.org
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <sakari.ailus@iki.fi>
514 L:      linux-media@vger.kernel.org
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <michael.hennerich@analog.com>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <michael.hennerich@analog.com>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <michael.hennerich@analog.com>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <colin@colino.net>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <jdelvare@suse.com>
552 L:      linux-hwmon@vger.kernel.org
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <willy@infradead.org>
559 M:      Hannes Reinecke <hare@suse.com>
560 L:      linux-scsi@vger.kernel.org
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <michael.hennerich@analog.com>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <michael.hennerich@analog.com>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <crope@iki.fi>
584 L:      linux-media@vger.kernel.org
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <crope@iki.fi>
594 L:      linux-media@vger.kernel.org
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <dsterba@suse.com>
604 L:      linux-fsdevel@vger.kernel.org
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <dhowells@redhat.com>
611 L:      linux-afs@lists.infradead.org
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <airlied@linux.ie>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <fischer@norbit.de>
628 L:      linux-scsi@vger.kernel.org
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <hare@suse.com>
635 L:      linux-scsi@vger.kernel.org
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <hverkuil@xs4all.nl>
641 L:      linux-media@vger.kernel.org
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <bcrl@kvack.org>
649 L:      linux-aio@kvack.org
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <crope@iki.fi>
656 L:      linux-media@vger.kernel.org
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <duncan.sands@free.fr>
671 L:      linux-usb@vger.kernel.org
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <manuel.lauss@gmail.com>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <r.marek@assembler.cz>
684 L:      linux-i2c@vger.kernel.org
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <tomislav.denis@avl.com>
691 L:      linux-iio@vger.kernel.org
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <m.tretter@pengutronix.de>
699 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
700 L:      linux-media@vger.kernel.org
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <mripard@kernel.org>
706 L:      linux-media@vger.kernel.org
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <tiny.windzz@gmail.com>
714 L:      linux-pm@vger.kernel.org
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
721 L:      linux-crypto@vger.kernel.org
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <anarsoul@gmail.com>
727 M:      Yangtao Li <tiny.windzz@gmail.com>
728 L:      linux-pm@vger.kernel.org
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <mripard@kernel.org>
735 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <rth@twiddle.net>
742 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M:      Matt Turner <mattst88@gmail.com>
744 L:      linux-alpha@vger.kernel.org
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <pali@kernel.org>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <thor.thayer@linux.intel.com>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <ley.foon.tan@intel.com>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <joyce.ooi@intel.com>
765 L:      linux-gpio@vger.kernel.org
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <thor.thayer@linux.intel.com>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <thor.thayer@linux.intel.com>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Joyce Ooi <joyce.ooi@intel.com>
786 L:      netdev@vger.kernel.org
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <tklauser@distanz.ch>
792 L:      linux-serial@vger.kernel.org
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <talel@amazon.com>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
806 M:      Talel Shenhar <talel@amazon.com>
807 M:      Talel Shenhar <talelshenhar@gmail.com>
808 S:      Maintained
809 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
810 F:      drivers/edac/al_mc_edac.c
811
812 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
813 M:      Talel Shenhar <talel@amazon.com>
814 S:      Maintained
815 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
816 F:      drivers/thermal/thermal_mmio.c
817
818 AMAZON ETHERNET DRIVERS
819 M:      Netanel Belgazal <netanel@amazon.com>
820 M:      Arthur Kiyanovski <akiyano@amazon.com>
821 R:      Guy Tzalik <gtzalik@amazon.com>
822 R:      Saeed Bishara <saeedb@amazon.com>
823 R:      Zorik Machulsky <zorik@amazon.com>
824 L:      netdev@vger.kernel.org
825 S:      Supported
826 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
827 F:      drivers/net/ethernet/amazon/
828
829 AMAZON RDMA EFA DRIVER
830 M:      Gal Pressman <galpress@amazon.com>
831 R:      Yossi Leybovich <sleybo@amazon.com>
832 L:      linux-rdma@vger.kernel.org
833 S:      Supported
834 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
835 F:      drivers/infiniband/hw/efa/
836 F:      include/uapi/rdma/efa-abi.h
837
838 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
839 M:      Tom Lendacky <thomas.lendacky@amd.com>
840 M:      John Allen <john.allen@amd.com>
841 L:      linux-crypto@vger.kernel.org
842 S:      Supported
843 F:      drivers/crypto/ccp/
844 F:      include/linux/ccp.h
845
846 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
847 M:      Brijesh Singh <brijesh.singh@amd.com>
848 M:      Tom Lendacky <thomas.lendacky@amd.com>
849 L:      linux-crypto@vger.kernel.org
850 S:      Supported
851 F:      drivers/crypto/ccp/sev*
852 F:      include/uapi/linux/psp-sev.h
853
854 AMD DISPLAY CORE
855 M:      Harry Wentland <harry.wentland@amd.com>
856 M:      Leo Li <sunpeng.li@amd.com>
857 L:      amd-gfx@lists.freedesktop.org
858 S:      Supported
859 T:      git git://people.freedesktop.org/~agd5f/linux
860 F:      drivers/gpu/drm/amd/display/
861
862 AMD ENERGY DRIVER
863 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
864 L:      linux-hwmon@vger.kernel.org
865 S:      Maintained
866 F:      Documentation/hwmon/amd_energy.rst
867 F:      drivers/hwmon/amd_energy.c
868
869 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
870 M:      Huang Rui <ray.huang@amd.com>
871 L:      linux-hwmon@vger.kernel.org
872 S:      Supported
873 F:      Documentation/hwmon/fam15h_power.rst
874 F:      drivers/hwmon/fam15h_power.c
875
876 AMD FCH GPIO DRIVER
877 M:      Enrico Weigelt, metux IT consult <info@metux.net>
878 L:      linux-gpio@vger.kernel.org
879 S:      Maintained
880 F:      drivers/gpio/gpio-amd-fch.c
881 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
882
883 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
884 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
885 S:      Orphan
886 F:      drivers/usb/gadget/udc/amd5536udc.*
887
888 AMD GEODE PROCESSOR/CHIPSET SUPPORT
889 M:      Andres Salomon <dilinger@queued.net>
890 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
891 S:      Supported
892 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
893 F:      arch/x86/include/asm/geode.h
894 F:      drivers/char/hw_random/geode-rng.c
895 F:      drivers/crypto/geode*
896 F:      drivers/video/fbdev/geode/
897
898 AMD IOMMU (AMD-VI)
899 M:      Joerg Roedel <joro@8bytes.org>
900 L:      iommu@lists.linux-foundation.org
901 S:      Maintained
902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
903 F:      drivers/iommu/amd/
904 F:      include/linux/amd-iommu.h
905
906 AMD KFD
907 M:      Felix Kuehling <Felix.Kuehling@amd.com>
908 L:      amd-gfx@lists.freedesktop.org
909 S:      Supported
910 T:      git git://people.freedesktop.org/~agd5f/linux
911 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
912 F:      drivers/gpu/drm/amd/amdkfd/
913 F:      drivers/gpu/drm/amd/include/cik_structs.h
914 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
915 F:      drivers/gpu/drm/amd/include/v9_structs.h
916 F:      drivers/gpu/drm/amd/include/vi_structs.h
917 F:      include/uapi/linux/kfd_ioctl.h
918
919 AMD SPI DRIVER
920 M:      Sanjay R Mehta <sanju.mehta@amd.com>
921 S:      Maintained
922 F:      drivers/spi/spi-amd.c
923
924 AMD MP2 I2C DRIVER
925 M:      Elie Morisse <syniurge@gmail.com>
926 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
927 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
928 L:      linux-i2c@vger.kernel.org
929 S:      Maintained
930 F:      drivers/i2c/busses/i2c-amd-mp2*
931
932 AMD POWERPLAY
933 M:      Evan Quan <evan.quan@amd.com>
934 L:      amd-gfx@lists.freedesktop.org
935 S:      Supported
936 T:      git git://people.freedesktop.org/~agd5f/linux
937 F:      drivers/gpu/drm/amd/pm/powerplay/
938
939 AMD SEATTLE DEVICE TREE SUPPORT
940 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
941 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
942 M:      Tom Lendacky <thomas.lendacky@amd.com>
943 S:      Supported
944 F:      arch/arm64/boot/dts/amd/
945
946 AMD XGBE DRIVER
947 M:      Tom Lendacky <thomas.lendacky@amd.com>
948 L:      netdev@vger.kernel.org
949 S:      Supported
950 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
951 F:      drivers/net/ethernet/amd/xgbe/
952
953 AMS AS73211 DRIVER
954 M:      Christian Eggers <ceggers@arri.de>
955 L:      linux-iio@vger.kernel.org
956 S:      Maintained
957 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
958 F:      drivers/iio/light/as73211.c
959
960 ANALOG DEVICES INC AD7192 DRIVER
961 M:      Alexandru Tachici <alexandru.tachici@analog.com>
962 L:      linux-iio@vger.kernel.org
963 S:      Supported
964 W:      http://ez.analog.com/community/linux-device-drivers
965 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
966 F:      drivers/iio/adc/ad7192.c
967
968 ANALOG DEVICES INC AD7292 DRIVER
969 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
970 L:      linux-iio@vger.kernel.org
971 S:      Supported
972 W:      http://ez.analog.com/community/linux-device-drivers
973 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
974 F:      drivers/iio/adc/ad7292.c
975
976 ANALOG DEVICES INC AD7768-1 DRIVER
977 M:      Michael Hennerich <Michael.Hennerich@analog.com>
978 L:      linux-iio@vger.kernel.org
979 S:      Supported
980 W:      http://ez.analog.com/community/linux-device-drivers
981 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
982 F:      drivers/iio/adc/ad7768-1.c
983
984 ANALOG DEVICES INC AD7780 DRIVER
985 M:      Michael Hennerich <Michael.Hennerich@analog.com>
986 M:      Renato Lui Geh <renatogeh@gmail.com>
987 L:      linux-iio@vger.kernel.org
988 S:      Supported
989 W:      http://ez.analog.com/community/linux-device-drivers
990 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
991 F:      drivers/iio/adc/ad7780.c
992
993 ANALOG DEVICES INC AD9389B DRIVER
994 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
995 L:      linux-media@vger.kernel.org
996 S:      Maintained
997 F:      drivers/media/i2c/ad9389b*
998
999 ANALOG DEVICES INC ADGS1408 DRIVER
1000 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1001 S:      Supported
1002 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1003 F:      drivers/mux/adgs1408.c
1004
1005 ANALOG DEVICES INC ADIN DRIVER
1006 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1007 L:      netdev@vger.kernel.org
1008 S:      Supported
1009 W:      http://ez.analog.com/community/linux-device-drivers
1010 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1011 F:      drivers/net/phy/adin.c
1012
1013 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1014 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1015 L:      linux-iio@vger.kernel.org
1016 S:      Supported
1017 F:      drivers/iio/imu/adis.c
1018 F:      include/linux/iio/imu/adis.h
1019
1020 ANALOG DEVICES INC ADIS16460 DRIVER
1021 M:      Dragos Bogdan <dragos.bogdan@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/imu/adi,adis16460.yaml
1026 F:      drivers/iio/imu/adis16460.c
1027
1028 ANALOG DEVICES INC ADIS16475 DRIVER
1029 M:      Nuno Sa <nuno.sa@analog.com>
1030 L:      linux-iio@vger.kernel.org
1031 W:      http://ez.analog.com/community/linux-device-drivers
1032 S:      Supported
1033 F:      drivers/iio/imu/adis16475.c
1034 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1035
1036 ANALOG DEVICES INC ADM1177 DRIVER
1037 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1038 L:      linux-hwmon@vger.kernel.org
1039 S:      Supported
1040 W:      http://ez.analog.com/community/linux-device-drivers
1041 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1042 F:      drivers/hwmon/adm1177.c
1043
1044 ANALOG DEVICES INC ADP5061 DRIVER
1045 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1046 L:      linux-pm@vger.kernel.org
1047 S:      Supported
1048 W:      http://ez.analog.com/community/linux-device-drivers
1049 F:      drivers/power/supply/adp5061.c
1050
1051 ANALOG DEVICES INC ADV7180 DRIVER
1052 M:      Lars-Peter Clausen <lars@metafoo.de>
1053 L:      linux-media@vger.kernel.org
1054 S:      Supported
1055 W:      http://ez.analog.com/community/linux-device-drivers
1056 F:      drivers/media/i2c/adv7180.c
1057 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1058
1059 ANALOG DEVICES INC ADV748X DRIVER
1060 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1061 L:      linux-media@vger.kernel.org
1062 S:      Maintained
1063 F:      drivers/media/i2c/adv748x/*
1064
1065 ANALOG DEVICES INC ADV7511 DRIVER
1066 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1067 L:      linux-media@vger.kernel.org
1068 S:      Maintained
1069 F:      drivers/media/i2c/adv7511*
1070
1071 ANALOG DEVICES INC ADV7604 DRIVER
1072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1073 L:      linux-media@vger.kernel.org
1074 S:      Maintained
1075 F:      drivers/media/i2c/adv7604*
1076 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1077
1078 ANALOG DEVICES INC ADV7842 DRIVER
1079 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1080 L:      linux-media@vger.kernel.org
1081 S:      Maintained
1082 F:      drivers/media/i2c/adv7842*
1083
1084 ANALOG DEVICES INC ADXRS290 DRIVER
1085 M:      Nishant Malpani <nish.malpani25@gmail.com>
1086 L:      linux-iio@vger.kernel.org
1087 S:      Supported
1088 F:      drivers/iio/gyro/adxrs290.c
1089 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1090
1091 ANALOG DEVICES INC ASOC CODEC DRIVERS
1092 M:      Lars-Peter Clausen <lars@metafoo.de>
1093 M:      Nuno Sá <nuno.sa@analog.com>
1094 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1095 S:      Supported
1096 W:      http://wiki.analog.com/
1097 W:      http://ez.analog.com/community/linux-device-drivers
1098 F:      sound/soc/codecs/ad1*
1099 F:      sound/soc/codecs/ad7*
1100 F:      sound/soc/codecs/adau*
1101 F:      sound/soc/codecs/adav*
1102 F:      sound/soc/codecs/sigmadsp.*
1103 F:      sound/soc/codecs/ssm*
1104
1105 ANALOG DEVICES INC DMA DRIVERS
1106 M:      Lars-Peter Clausen <lars@metafoo.de>
1107 S:      Supported
1108 W:      http://ez.analog.com/community/linux-device-drivers
1109 F:      drivers/dma/dma-axi-dmac.c
1110
1111 ANALOG DEVICES INC IIO DRIVERS
1112 M:      Lars-Peter Clausen <lars@metafoo.de>
1113 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1114 S:      Supported
1115 W:      http://wiki.analog.com/
1116 W:      http://ez.analog.com/community/linux-device-drivers
1117 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1118 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1119 F:      Documentation/devicetree/bindings/iio/*/adi,*
1120 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1121 F:      drivers/iio/*/ad*
1122 F:      drivers/iio/adc/ltc249*
1123 F:      drivers/iio/amplifiers/hmc425a.c
1124 F:      drivers/staging/iio/*/ad*
1125 X:      drivers/iio/*/adjd*
1126
1127 ANALOGBITS PLL LIBRARIES
1128 M:      Paul Walmsley <paul.walmsley@sifive.com>
1129 S:      Supported
1130 F:      drivers/clk/analogbits/*
1131 F:      include/linux/clk/analogbits*
1132
1133 ANDES ARCHITECTURE
1134 M:      Nick Hu <nickhu@andestech.com>
1135 M:      Greentime Hu <green.hu@gmail.com>
1136 M:      Vincent Chen <deanbo422@gmail.com>
1137 S:      Supported
1138 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1139 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1140 F:      Documentation/devicetree/bindings/nds32/
1141 F:      arch/nds32/
1142 N:      nds32
1143 K:      nds32
1144
1145 ANDROID CONFIG FRAGMENTS
1146 M:      Rob Herring <robh@kernel.org>
1147 S:      Supported
1148 F:      kernel/configs/android*
1149
1150 ANDROID DRIVERS
1151 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1152 M:      Arve Hjønnevåg <arve@android.com>
1153 M:      Todd Kjos <tkjos@android.com>
1154 M:      Martijn Coenen <maco@android.com>
1155 M:      Joel Fernandes <joel@joelfernandes.org>
1156 M:      Christian Brauner <christian@brauner.io>
1157 M:      Hridya Valsaraju <hridya@google.com>
1158 M:      Suren Baghdasaryan <surenb@google.com>
1159 L:      devel@driverdev.osuosl.org
1160 S:      Supported
1161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1162 F:      drivers/android/
1163 F:      drivers/staging/android/
1164
1165 ANDROID GOLDFISH PIC DRIVER
1166 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1167 S:      Supported
1168 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1169 F:      drivers/irqchip/irq-goldfish-pic.c
1170
1171 ANDROID GOLDFISH RTC DRIVER
1172 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1173 S:      Supported
1174 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1175 F:      drivers/rtc/rtc-goldfish.c
1176
1177 ANDROID ION DRIVER
1178 M:      Laura Abbott <labbott@redhat.com>
1179 M:      Sumit Semwal <sumit.semwal@linaro.org>
1180 L:      devel@driverdev.osuosl.org
1181 L:      dri-devel@lists.freedesktop.org
1182 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1183 S:      Supported
1184 F:      drivers/staging/android/ion
1185 F:      drivers/staging/android/uapi/ion.h
1186
1187 AOA (Apple Onboard Audio) ALSA DRIVER
1188 M:      Johannes Berg <johannes@sipsolutions.net>
1189 L:      linuxppc-dev@lists.ozlabs.org
1190 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1191 S:      Maintained
1192 F:      sound/aoa/
1193
1194 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1195 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1196 L:      linux-iio@vger.kernel.org
1197 S:      Maintained
1198 F:      drivers/iio/adc/stx104.c
1199
1200 APM DRIVER
1201 M:      Jiri Kosina <jikos@kernel.org>
1202 S:      Odd fixes
1203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1204 F:      arch/x86/kernel/apm_32.c
1205 F:      drivers/char/apm-emulation.c
1206 F:      include/linux/apm_bios.h
1207 F:      include/uapi/linux/apm_bios.h
1208
1209 APPARMOR SECURITY MODULE
1210 M:      John Johansen <john.johansen@canonical.com>
1211 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1212 S:      Supported
1213 W:      wiki.apparmor.net
1214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1215 F:      Documentation/admin-guide/LSM/apparmor.rst
1216 F:      security/apparmor/
1217
1218 APPLE BCM5974 MULTITOUCH DRIVER
1219 M:      Henrik Rydberg <rydberg@bitmath.org>
1220 L:      linux-input@vger.kernel.org
1221 S:      Odd fixes
1222 F:      drivers/input/mouse/bcm5974.c
1223
1224 APPLE SMC DRIVER
1225 M:      Henrik Rydberg <rydberg@bitmath.org>
1226 L:      linux-hwmon@vger.kernel.org
1227 S:      Odd fixes
1228 F:      drivers/hwmon/applesmc.c
1229
1230 APPLETALK NETWORK LAYER
1231 L:      netdev@vger.kernel.org
1232 S:      Odd fixes
1233 F:      drivers/net/appletalk/
1234 F:      include/linux/atalk.h
1235 F:      include/uapi/linux/atalk.h
1236 F:      net/appletalk/
1237
1238 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1239 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1240 S:      Supported
1241 F:      arch/arm64/boot/dts/apm/
1242
1243 APPLIED MICRO (APM) X-GENE SOC EDAC
1244 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1245 S:      Supported
1246 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1247 F:      drivers/edac/xgene_edac.c
1248
1249 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1250 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1251 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1252 S:      Supported
1253 F:      drivers/net/ethernet/apm/xgene-v2/
1254
1255 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1256 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1257 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1258 M:      Quan Nguyen <quan@os.amperecomputing.com>
1259 S:      Supported
1260 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1261 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1262 F:      drivers/net/ethernet/apm/xgene/
1263 F:      drivers/net/mdio/mdio-xgene.c
1264
1265 APPLIED MICRO (APM) X-GENE SOC PMU
1266 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1267 S:      Supported
1268 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1269 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1270 F:      drivers/perf/xgene_pmu.c
1271
1272 APTINA CAMERA SENSOR PLL
1273 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1274 L:      linux-media@vger.kernel.org
1275 S:      Maintained
1276 F:      drivers/media/i2c/aptina-pll.*
1277
1278 AQUANTIA ETHERNET DRIVER (atlantic)
1279 M:      Igor Russkikh <irusskikh@marvell.com>
1280 L:      netdev@vger.kernel.org
1281 S:      Supported
1282 W:      https://www.marvell.com/
1283 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1284 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1285 F:      drivers/net/ethernet/aquantia/atlantic/
1286
1287 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1288 M:      Egor Pomozov <epomozov@marvell.com>
1289 L:      netdev@vger.kernel.org
1290 S:      Supported
1291 W:      http://www.aquantia.com
1292 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1293
1294 ARASAN NAND CONTROLLER DRIVER
1295 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1296 L:      linux-mtd@lists.infradead.org
1297 S:      Maintained
1298 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1299 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1300
1301 ARC FRAMEBUFFER DRIVER
1302 M:      Jaya Kumar <jayalk@intworks.biz>
1303 S:      Maintained
1304 F:      drivers/video/fbdev/arcfb.c
1305 F:      drivers/video/fbdev/core/fb_defio.c
1306
1307 ARC PGU DRM DRIVER
1308 M:      Alexey Brodkin <abrodkin@synopsys.com>
1309 S:      Supported
1310 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1311 F:      drivers/gpu/drm/arc/
1312
1313 ARCNET NETWORK LAYER
1314 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1315 L:      netdev@vger.kernel.org
1316 S:      Maintained
1317 F:      drivers/net/arcnet/
1318 F:      include/uapi/linux/if_arcnet.h
1319
1320 ARM ARCHITECTED TIMER DRIVER
1321 M:      Mark Rutland <mark.rutland@arm.com>
1322 M:      Marc Zyngier <maz@kernel.org>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 S:      Maintained
1325 F:      arch/arm/include/asm/arch_timer.h
1326 F:      arch/arm64/include/asm/arch_timer.h
1327 F:      drivers/clocksource/arm_arch_timer.c
1328
1329 ARM HDLCD DRM DRIVER
1330 M:      Liviu Dudau <liviu.dudau@arm.com>
1331 S:      Supported
1332 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1333 F:      drivers/gpu/drm/arm/hdlcd_*
1334
1335 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1336 M:      Linus Walleij <linus.walleij@linaro.org>
1337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 S:      Maintained
1339 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1340 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1341 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1342 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1343 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1344 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1345 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1346 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1347 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1348 F:      arch/arm/boot/dts/arm-realview-*
1349 F:      arch/arm/boot/dts/integrator*
1350 F:      arch/arm/boot/dts/versatile*
1351 F:      arch/arm/mach-integrator/
1352 F:      arch/arm/mach-realview/
1353 F:      arch/arm/mach-versatile/
1354 F:      arch/arm/plat-versatile/
1355 F:      drivers/bus/arm-integrator-lm.c
1356 F:      drivers/clk/versatile/
1357 F:      drivers/i2c/busses/i2c-versatile.c
1358 F:      drivers/irqchip/irq-versatile-fpga.c
1359 F:      drivers/mtd/maps/physmap-versatile.*
1360 F:      drivers/power/reset/arm-versatile-reboot.c
1361 F:      drivers/soc/versatile/
1362
1363 ARM KOMEDA DRM-KMS DRIVER
1364 M:      James (Qian) Wang <james.qian.wang@arm.com>
1365 M:      Liviu Dudau <liviu.dudau@arm.com>
1366 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1367 L:      Mali DP Maintainers <malidp@foss.arm.com>
1368 S:      Supported
1369 T:      git git://anongit.freedesktop.org/drm/drm-misc
1370 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1371 F:      Documentation/gpu/komeda-kms.rst
1372 F:      drivers/gpu/drm/arm/display/include/
1373 F:      drivers/gpu/drm/arm/display/komeda/
1374
1375 ARM MALI PANFROST DRM DRIVER
1376 M:      Rob Herring <robh@kernel.org>
1377 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1378 R:      Steven Price <steven.price@arm.com>
1379 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1380 L:      dri-devel@lists.freedesktop.org
1381 S:      Supported
1382 T:      git git://anongit.freedesktop.org/drm/drm-misc
1383 F:      drivers/gpu/drm/panfrost/
1384 F:      include/uapi/drm/panfrost_drm.h
1385
1386 ARM MALI-DP DRM DRIVER
1387 M:      Liviu Dudau <liviu.dudau@arm.com>
1388 M:      Brian Starkey <brian.starkey@arm.com>
1389 L:      Mali DP Maintainers <malidp@foss.arm.com>
1390 S:      Supported
1391 T:      git git://anongit.freedesktop.org/drm/drm-misc
1392 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1393 F:      Documentation/gpu/afbc.rst
1394 F:      drivers/gpu/drm/arm/
1395
1396 ARM MFM AND FLOPPY DRIVERS
1397 M:      Ian Molton <spyro@f2s.com>
1398 S:      Maintained
1399 F:      arch/arm/include/asm/floppy.h
1400 F:      arch/arm/mach-rpc/floppydma.S
1401
1402 ARM PMU PROFILING AND DEBUGGING
1403 M:      Will Deacon <will@kernel.org>
1404 M:      Mark Rutland <mark.rutland@arm.com>
1405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406 S:      Maintained
1407 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1408 F:      Documentation/devicetree/bindings/perf/
1409 F:      arch/arm*/include/asm/hw_breakpoint.h
1410 F:      arch/arm*/include/asm/perf_event.h
1411 F:      arch/arm*/kernel/hw_breakpoint.c
1412 F:      arch/arm*/kernel/perf_*
1413 F:      arch/arm/oprofile/common.c
1414 F:      drivers/perf/
1415 F:      include/linux/perf/arm_pmu.h
1416
1417 ARM PORT
1418 M:      Russell King <linux@armlinux.org.uk>
1419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 S:      Odd Fixes
1421 W:      http://www.armlinux.org.uk/
1422 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1423 F:      arch/arm/
1424 X:      arch/arm/boot/dts/
1425
1426 ARM PRIMECELL AACI PL041 DRIVER
1427 M:      Russell King <linux@armlinux.org.uk>
1428 S:      Odd Fixes
1429 F:      sound/arm/aaci.*
1430
1431 ARM PRIMECELL BUS SUPPORT
1432 M:      Russell King <linux@armlinux.org.uk>
1433 S:      Odd Fixes
1434 F:      drivers/amba/
1435 F:      include/linux/amba/bus.h
1436
1437 ARM PRIMECELL CLCD PL110 DRIVER
1438 M:      Russell King <linux@armlinux.org.uk>
1439 S:      Odd Fixes
1440 F:      drivers/video/fbdev/amba-clcd.*
1441
1442 ARM PRIMECELL KMI PL050 DRIVER
1443 M:      Russell King <linux@armlinux.org.uk>
1444 S:      Odd Fixes
1445 F:      drivers/input/serio/ambakmi.*
1446 F:      include/linux/amba/kmi.h
1447
1448 ARM PRIMECELL MMCI PL180/1 DRIVER
1449 M:      Russell King <linux@armlinux.org.uk>
1450 S:      Odd Fixes
1451 F:      drivers/mmc/host/mmci.*
1452 F:      include/linux/amba/mmci.h
1453
1454 ARM PRIMECELL SSP PL022 SPI DRIVER
1455 M:      Linus Walleij <linus.walleij@linaro.org>
1456 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1457 S:      Maintained
1458 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1459 F:      drivers/spi/spi-pl022.c
1460
1461 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1462 M:      Russell King <linux@armlinux.org.uk>
1463 S:      Odd Fixes
1464 F:      drivers/tty/serial/amba-pl01*.c
1465 F:      include/linux/amba/serial.h
1466
1467 ARM PRIMECELL VIC PL190/PL192 DRIVER
1468 M:      Linus Walleij <linus.walleij@linaro.org>
1469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1470 S:      Maintained
1471 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1472 F:      drivers/irqchip/irq-vic.c
1473
1474 ARM SMC WATCHDOG DRIVER
1475 M:      Julius Werner <jwerner@chromium.org>
1476 R:      Evan Benn <evanbenn@chromium.org>
1477 S:      Maintained
1478 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1479 F:      drivers/watchdog/arm_smc_wdt.c
1480
1481 ARM SMMU DRIVERS
1482 M:      Will Deacon <will@kernel.org>
1483 R:      Robin Murphy <robin.murphy@arm.com>
1484 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1485 S:      Maintained
1486 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1487 F:      drivers/iommu/arm/
1488 F:      drivers/iommu/io-pgtable-arm*
1489
1490 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1491 M:      Arnd Bergmann <arnd@arndb.de>
1492 M:      Olof Johansson <olof@lixom.net>
1493 M:      soc@kernel.org
1494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1495 S:      Maintained
1496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1497 F:      arch/arm/boot/dts/Makefile
1498 F:      arch/arm64/boot/dts/Makefile
1499
1500 ARM SUB-ARCHITECTURES
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1504 F:      arch/arm/mach-*/
1505 F:      arch/arm/plat-*/
1506
1507 ARM/ACTIONS SEMI ARCHITECTURE
1508 M:      Andreas Färber <afaerber@suse.de>
1509 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1511 S:      Maintained
1512 F:      Documentation/devicetree/bindings/arm/actions.yaml
1513 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1514 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1515 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1516 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1517 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1518 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1519 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1520 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1521 F:      arch/arm/boot/dts/owl-*
1522 F:      arch/arm/mach-actions/
1523 F:      arch/arm64/boot/dts/actions/
1524 F:      drivers/clk/actions/
1525 F:      drivers/clocksource/timer-owl*
1526 F:      drivers/dma/owl-dma.c
1527 F:      drivers/i2c/busses/i2c-owl.c
1528 F:      drivers/irqchip/irq-owl-sirq.c
1529 F:      drivers/mmc/host/owl-mmc.c
1530 F:      drivers/pinctrl/actions/*
1531 F:      drivers/soc/actions/
1532 F:      include/dt-bindings/power/owl-*
1533 F:      include/dt-bindings/reset/actions,*
1534 F:      include/linux/soc/actions/
1535 N:      owl
1536
1537 ARM/ADS SPHERE MACHINE SUPPORT
1538 M:      Lennert Buytenhek <kernel@wantstofly.org>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541
1542 ARM/AFEB9260 MACHINE SUPPORT
1543 M:      Sergey Lapin <slapin@ossfans.org>
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546
1547 ARM/AJECO 1ARM MACHINE SUPPORT
1548 M:      Lennert Buytenhek <kernel@wantstofly.org>
1549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 S:      Maintained
1551
1552 ARM/Allwinner SoC Clock Support
1553 M:      Emilio López <emilio@elopez.com.ar>
1554 S:      Maintained
1555 F:      drivers/clk/sunxi/
1556
1557 ARM/Allwinner sunXi SoC support
1558 M:      Maxime Ripard <mripard@kernel.org>
1559 M:      Chen-Yu Tsai <wens@csie.org>
1560 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1562 S:      Maintained
1563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1564 F:      arch/arm/mach-sunxi/
1565 F:      arch/arm64/boot/dts/allwinner/
1566 F:      drivers/clk/sunxi-ng/
1567 F:      drivers/pinctrl/sunxi/
1568 F:      drivers/soc/sunxi/
1569 N:      sun[x456789]i
1570 N:      sun50i
1571
1572 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1573 M:      Neil Armstrong <narmstrong@baylibre.com>
1574 M:      Jerome Brunet <jbrunet@baylibre.com>
1575 L:      linux-amlogic@lists.infradead.org
1576 S:      Maintained
1577 F:      Documentation/devicetree/bindings/clock/amlogic*
1578 F:      drivers/clk/meson/
1579 F:      include/dt-bindings/clock/gxbb*
1580 F:      include/dt-bindings/clock/meson*
1581
1582 ARM/Amlogic Meson SoC Crypto Drivers
1583 M:      Corentin Labbe <clabbe@baylibre.com>
1584 L:      linux-crypto@vger.kernel.org
1585 L:      linux-amlogic@lists.infradead.org
1586 S:      Maintained
1587 F:      Documentation/devicetree/bindings/crypto/amlogic*
1588 F:      drivers/crypto/amlogic/
1589
1590 ARM/Amlogic Meson SoC Sound Drivers
1591 M:      Jerome Brunet <jbrunet@baylibre.com>
1592 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1593 S:      Maintained
1594 F:      Documentation/devicetree/bindings/sound/amlogic*
1595 F:      sound/soc/meson/
1596
1597 ARM/Amlogic Meson SoC support
1598 M:      Kevin Hilman <khilman@baylibre.com>
1599 R:      Neil Armstrong <narmstrong@baylibre.com>
1600 R:      Jerome Brunet <jbrunet@baylibre.com>
1601 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1603 L:      linux-amlogic@lists.infradead.org
1604 S:      Maintained
1605 W:      http://linux-meson.com/
1606 F:      arch/arm/boot/dts/meson*
1607 F:      arch/arm/mach-meson/
1608 F:      arch/arm64/boot/dts/amlogic/
1609 F:      drivers/mmc/host/meson*
1610 F:      drivers/pinctrl/meson/
1611 F:      drivers/rtc/rtc-meson*
1612 F:      drivers/soc/amlogic/
1613 N:      meson
1614
1615 ARM/Annapurna Labs ALPINE ARCHITECTURE
1616 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1617 M:      Antoine Tenart <atenart@kernel.org>
1618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1619 S:      Maintained
1620 F:      arch/arm/boot/dts/alpine*
1621 F:      arch/arm/mach-alpine/
1622 F:      arch/arm64/boot/dts/amazon/
1623 F:      drivers/*/*alpine*
1624
1625 ARM/ARTPEC MACHINE SUPPORT
1626 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1627 M:      Lars Persson <lars.persson@axis.com>
1628 L:      linux-arm-kernel@axis.com
1629 S:      Maintained
1630 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1631 F:      arch/arm/boot/dts/artpec6*
1632 F:      arch/arm/mach-artpec
1633 F:      drivers/clk/axis
1634 F:      drivers/crypto/axis
1635 F:      drivers/mmc/host/usdhi6rol0.c
1636 F:      drivers/pinctrl/pinctrl-artpec*
1637
1638 ARM/ASPEED I2C DRIVER
1639 M:      Brendan Higgins <brendanhiggins@google.com>
1640 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1641 R:      Joel Stanley <joel@jms.id.au>
1642 L:      linux-i2c@vger.kernel.org
1643 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1644 S:      Maintained
1645 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1646 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1647 F:      drivers/i2c/busses/i2c-aspeed.c
1648 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1649
1650 ARM/ASPEED MACHINE SUPPORT
1651 M:      Joel Stanley <joel@jms.id.au>
1652 R:      Andrew Jeffery <andrew@aj.id.au>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1655 S:      Supported
1656 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1658 F:      arch/arm/boot/dts/aspeed-*
1659 F:      arch/arm/mach-aspeed/
1660 N:      aspeed
1661
1662 ARM/BITMAIN ARCHITECTURE
1663 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1667 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1668 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1669 F:      arch/arm64/boot/dts/bitmain/
1670 F:      drivers/clk/clk-bm1880.c
1671 F:      drivers/pinctrl/pinctrl-bm1880.c
1672
1673 ARM/CALXEDA HIGHBANK ARCHITECTURE
1674 M:      Andre Przywara <andre.przywara@arm.com>
1675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1676 S:      Maintained
1677 F:      arch/arm/boot/dts/ecx-*.dts*
1678 F:      arch/arm/boot/dts/highbank.dts
1679 F:      arch/arm/mach-highbank/
1680
1681 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1682 M:      Krzysztof Halasa <khalasa@piap.pl>
1683 S:      Maintained
1684 F:      arch/arm/mach-cns3xxx/
1685
1686 ARM/CAVIUM THUNDER NETWORK DRIVER
1687 M:      Sunil Goutham <sgoutham@marvell.com>
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 S:      Supported
1690 F:      drivers/net/ethernet/cavium/thunder/
1691
1692 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1693 M:      Lukasz Majewski <lukma@denx.de>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      arch/arm/mach-ep93xx/ts72xx.c
1697
1698 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1699 M:      Alexander Shiyan <shc_work@mail.ru>
1700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1701 S:      Odd Fixes
1702 N:      clps711x
1703
1704 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1705 M:      Lennert Buytenhek <kernel@wantstofly.org>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708
1709 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1710 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1711 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1712 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1713 S:      Maintained
1714 F:      arch/arm/mach-ep93xx/
1715 F:      arch/arm/mach-ep93xx/include/mach/
1716
1717 ARM/CLKDEV SUPPORT
1718 M:      Russell King <linux@armlinux.org.uk>
1719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1720 S:      Maintained
1721 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1722 F:      drivers/clk/clkdev.c
1723
1724 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1725 M:      Baruch Siach <baruch@tkos.co.il>
1726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1727 S:      Maintained
1728 F:      arch/arm/boot/dts/cx92755*
1729 N:      digicolor
1730
1731 ARM/CONTEC MICRO9 MACHINE SUPPORT
1732 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1733 S:      Maintained
1734 F:      arch/arm/mach-ep93xx/micro9.c
1735
1736 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1737 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1738 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1739 R:      Mike Leach <mike.leach@linaro.org>
1740 R:      Leo Yan <leo.yan@linaro.org>
1741 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 S:      Maintained
1744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1745 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1746 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1747 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1748 F:      Documentation/devicetree/bindings/arm/coresight.txt
1749 F:      Documentation/trace/coresight/*
1750 F:      drivers/hwtracing/coresight/*
1751 F:      include/dt-bindings/arm/coresight-cti-dt.h
1752 F:      tools/perf/arch/arm/util/auxtrace.c
1753 F:      tools/perf/arch/arm/util/cs-etm.c
1754 F:      tools/perf/arch/arm/util/cs-etm.h
1755 F:      tools/perf/arch/arm/util/pmu.c
1756 F:      tools/perf/util/cs-etm-decoder/*
1757 F:      tools/perf/util/cs-etm.*
1758
1759 ARM/CORGI MACHINE SUPPORT
1760 M:      Richard Purdie <rpurdie@rpsys.net>
1761 S:      Maintained
1762
1763 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1764 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1765 M:      Linus Walleij <linus.walleij@linaro.org>
1766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1767 S:      Maintained
1768 T:      git git://github.com/ulli-kroll/linux.git
1769 F:      Documentation/devicetree/bindings/arm/gemini.txt
1770 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1771 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1772 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1773 F:      arch/arm/mach-gemini/
1774 F:      drivers/net/ethernet/cortina/
1775 F:      drivers/pinctrl/pinctrl-gemini.c
1776 F:      drivers/rtc/rtc-ftrtc010.c
1777
1778 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1779 M:      Barry Song <baohua@kernel.org>
1780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1781 S:      Maintained
1782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1783 F:      arch/arm/boot/dts/prima2*
1784 F:      arch/arm/mach-prima2/
1785 F:      drivers/clk/sirf/
1786 F:      drivers/clocksource/timer-atlas7.c
1787 F:      drivers/clocksource/timer-prima2.c
1788 X:      drivers/gnss
1789 N:      [^a-z]sirf
1790
1791 ARM/CZ.NIC TURRIS MOX SUPPORT
1792 M:      Marek Behun <marek.behun@nic.cz>
1793 S:      Maintained
1794 W:      http://mox.turris.cz
1795 F:      Documentation/ABI/testing/debugfs-moxtet
1796 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1797 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1798 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1799 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1800 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1801 F:      drivers/bus/moxtet.c
1802 F:      drivers/firmware/turris-mox-rwtm.c
1803 F:      drivers/gpio/gpio-moxtet.c
1804 F:      include/linux/moxtet.h
1805
1806 ARM/EBSA110 MACHINE SUPPORT
1807 M:      Russell King <linux@armlinux.org.uk>
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 W:      http://www.armlinux.org.uk/
1811 F:      arch/arm/mach-ebsa110/
1812 F:      drivers/net/ethernet/amd/am79c961a.*
1813
1814 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1815 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1816 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1818 S:      Maintained
1819 N:      efm32
1820
1821 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1822 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1824 S:      Maintained
1825 F:      arch/arm/mach-pxa/ezx.c
1826
1827 ARM/FARADAY FA526 PORT
1828 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1830 S:      Maintained
1831 T:      git git://git.berlios.de/gemini-board
1832 F:      arch/arm/mm/*-fa*
1833
1834 ARM/FOOTBRIDGE ARCHITECTURE
1835 M:      Russell King <linux@armlinux.org.uk>
1836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1837 S:      Maintained
1838 W:      http://www.armlinux.org.uk/
1839 F:      arch/arm/include/asm/hardware/dec21285.h
1840 F:      arch/arm/mach-footbridge/
1841
1842 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1843 M:      Shawn Guo <shawnguo@kernel.org>
1844 M:      Sascha Hauer <s.hauer@pengutronix.de>
1845 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1846 R:      Fabio Estevam <festevam@gmail.com>
1847 R:      NXP Linux Team <linux-imx@nxp.com>
1848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1849 S:      Maintained
1850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1851 X:      drivers/media/i2c/
1852 N:      imx
1853 N:      mxs
1854
1855 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1856 M:      Shawn Guo <shawnguo@kernel.org>
1857 M:      Li Yang <leoyang.li@nxp.com>
1858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1859 S:      Maintained
1860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1861 F:      arch/arm/boot/dts/ls1021a*
1862 F:      arch/arm64/boot/dts/freescale/fsl-*
1863 F:      arch/arm64/boot/dts/freescale/qoriq-*
1864
1865 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1866 M:      Shawn Guo <shawnguo@kernel.org>
1867 M:      Sascha Hauer <s.hauer@pengutronix.de>
1868 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1869 R:      Stefan Agner <stefan@agner.ch>
1870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S:      Maintained
1872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1873 F:      arch/arm/boot/dts/vf*
1874 F:      arch/arm/mach-imx/*vf610*
1875
1876 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1877 M:      Lennert Buytenhek <kernel@wantstofly.org>
1878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1879 S:      Maintained
1880
1881 ARM/GUMSTIX MACHINE SUPPORT
1882 M:      Steve Sakoman <sakoman@gmail.com>
1883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1884 S:      Maintained
1885
1886 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1887 M:      Philipp Zabel <philipp.zabel@gmail.com>
1888 M:      Paul Parsons <lost.distance@yahoo.com>
1889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1890 S:      Maintained
1891 F:      arch/arm/mach-pxa/hx4700.c
1892 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1893 F:      sound/soc/pxa/hx4700.c
1894
1895 ARM/HISILICON SOC SUPPORT
1896 M:      Wei Xu <xuwei5@hisilicon.com>
1897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1898 S:      Supported
1899 W:      http://www.hisilicon.com
1900 T:      git git://github.com/hisilicon/linux-hisi.git
1901 F:      arch/arm/boot/dts/hi3*
1902 F:      arch/arm/boot/dts/hip*
1903 F:      arch/arm/boot/dts/hisi*
1904 F:      arch/arm/mach-hisi/
1905 F:      arch/arm64/boot/dts/hisilicon/
1906
1907 ARM/HP JORNADA 7XX MACHINE SUPPORT
1908 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1909 S:      Maintained
1910 W:      www.jlime.com
1911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1912 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1913 F:      arch/arm/mach-sa1100/jornada720.c
1914
1915 ARM/IGEP MACHINE SUPPORT
1916 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1917 M:      Javier Martinez Canillas <javier@dowhile0.org>
1918 L:      linux-omap@vger.kernel.org
1919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1920 S:      Maintained
1921 F:      arch/arm/boot/dts/omap3-igep*
1922
1923 ARM/INCOME PXA270 SUPPORT
1924 M:      Marek Vasut <marek.vasut@gmail.com>
1925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1926 S:      Maintained
1927 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1928
1929 ARM/INTEL IOP32X ARM ARCHITECTURE
1930 M:      Lennert Buytenhek <kernel@wantstofly.org>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 S:      Maintained
1933
1934 ARM/INTEL IQ81342EX MACHINE SUPPORT
1935 M:      Lennert Buytenhek <kernel@wantstofly.org>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938
1939 ARM/INTEL IXDP2850 MACHINE SUPPORT
1940 M:      Lennert Buytenhek <kernel@wantstofly.org>
1941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1942 S:      Maintained
1943
1944 ARM/INTEL IXP4XX ARM ARCHITECTURE
1945 M:      Linus Walleij <linusw@kernel.org>
1946 M:      Imre Kaloz <kaloz@openwrt.org>
1947 M:      Krzysztof Halasa <khalasa@piap.pl>
1948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1949 S:      Maintained
1950 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1951 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1952 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1953 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1954 F:      arch/arm/mach-ixp4xx/
1955 F:      drivers/clocksource/timer-ixp4xx.c
1956 F:      drivers/gpio/gpio-ixp4xx.c
1957 F:      drivers/irqchip/irq-ixp4xx.c
1958 F:      include/linux/irqchip/irq-ixp4xx.h
1959 F:      include/linux/platform_data/timer-ixp4xx.h
1960
1961 ARM/INTEL KEEMBAY ARCHITECTURE
1962 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1963 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1964 S:      Maintained
1965 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1966 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1967 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1968
1969 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1970 M:      Jonathan Cameron <jic23@cam.ac.uk>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973 F:      arch/arm/mach-pxa/stargate2.c
1974 F:      drivers/pcmcia/pxa2xx_stargate2.c
1975
1976 ARM/INTEL XSC3 (MANZANO) ARM CORE
1977 M:      Lennert Buytenhek <kernel@wantstofly.org>
1978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1979 S:      Maintained
1980
1981 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1982 M:      Lennert Buytenhek <kernel@wantstofly.org>
1983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1984 S:      Maintained
1985
1986 ARM/LG1K ARCHITECTURE
1987 M:      Chanho Min <chanho.min@lge.com>
1988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1989 S:      Maintained
1990 F:      arch/arm64/boot/dts/lg/
1991
1992 ARM/LOGICPD PXA270 MACHINE SUPPORT
1993 M:      Lennert Buytenhek <kernel@wantstofly.org>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996
1997 ARM/LPC18XX ARCHITECTURE
1998 M:      Vladimir Zapolskiy <vz@mleia.com>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Maintained
2001 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2002 F:      arch/arm/boot/dts/lpc43*
2003 F:      drivers/i2c/busses/i2c-lpc2k.c
2004 F:      drivers/memory/pl172.c
2005 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2006 F:      drivers/rtc/rtc-lpc24xx.c
2007 N:      lpc18xx
2008
2009 ARM/LPC32XX SOC SUPPORT
2010 M:      Vladimir Zapolskiy <vz@mleia.com>
2011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2012 S:      Maintained
2013 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2014 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2015 F:      arch/arm/boot/dts/lpc32*
2016 F:      arch/arm/mach-lpc32xx/
2017 F:      drivers/i2c/busses/i2c-pnx.c
2018 F:      drivers/net/ethernet/nxp/lpc_eth.c
2019 F:      drivers/usb/host/ohci-nxp.c
2020 F:      drivers/watchdog/pnx4008_wdt.c
2021 N:      lpc32xx
2022
2023 ARM/MAGICIAN MACHINE SUPPORT
2024 M:      Philipp Zabel <philipp.zabel@gmail.com>
2025 S:      Maintained
2026
2027 ARM/Marvell Dove/MV78xx0/Orion SOC support
2028 M:      Andrew Lunn <andrew@lunn.ch>
2029 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2030 M:      Gregory Clement <gregory.clement@bootlin.com>
2031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2032 S:      Maintained
2033 T:      git git://git.infradead.org/linux-mvebu.git
2034 F:      Documentation/devicetree/bindings/soc/dove/
2035 F:      arch/arm/boot/dts/dove*
2036 F:      arch/arm/boot/dts/orion5x*
2037 F:      arch/arm/mach-dove/
2038 F:      arch/arm/mach-mv78xx0/
2039 F:      arch/arm/mach-orion5x/
2040 F:      arch/arm/plat-orion/
2041 F:      drivers/soc/dove/
2042
2043 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2044 M:      Andrew Lunn <andrew@lunn.ch>
2045 M:      Gregory Clement <gregory.clement@bootlin.com>
2046 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2048 S:      Maintained
2049 T:      git git://git.infradead.org/linux-mvebu.git
2050 F:      arch/arm/boot/dts/armada*
2051 F:      arch/arm/boot/dts/kirkwood*
2052 F:      arch/arm/configs/mvebu_*_defconfig
2053 F:      arch/arm/mach-mvebu/
2054 F:      arch/arm64/boot/dts/marvell/armada*
2055 F:      arch/arm64/boot/dts/marvell/cn913*
2056 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2057 F:      drivers/cpufreq/armada-8k-cpufreq.c
2058 F:      drivers/cpufreq/mvebu-cpufreq.c
2059 F:      drivers/irqchip/irq-armada-370-xp.c
2060 F:      drivers/irqchip/irq-mvebu-*
2061 F:      drivers/pinctrl/mvebu/
2062 F:      drivers/rtc/rtc-armada38x.c
2063
2064 ARM/Mediatek RTC DRIVER
2065 M:      Eddie Huang <eddie.huang@mediatek.com>
2066 M:      Sean Wang <sean.wang@mediatek.com>
2067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2068 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2069 S:      Maintained
2070 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2071 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2072 F:      drivers/rtc/rtc-mt2712.c
2073 F:      drivers/rtc/rtc-mt6397.c
2074 F:      drivers/rtc/rtc-mt7622.c
2075
2076 ARM/Mediatek SoC support
2077 M:      Matthias Brugger <matthias.bgg@gmail.com>
2078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081 W:      https://mtk.bcnfs.org/
2082 C:      irc://chat.freenode.net/linux-mediatek
2083 F:      arch/arm/boot/dts/mt6*
2084 F:      arch/arm/boot/dts/mt7*
2085 F:      arch/arm/boot/dts/mt8*
2086 F:      arch/arm/mach-mediatek/
2087 F:      arch/arm64/boot/dts/mediatek/
2088 F:      drivers/soc/mediatek/
2089 N:      mtk
2090 N:      mt[678]
2091 K:      mediatek
2092
2093 ARM/Mediatek USB3 PHY DRIVER
2094 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2097 S:      Maintained
2098 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2099 F:      drivers/phy/mediatek/
2100
2101 ARM/Microchip (AT91) SoC support
2102 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2103 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2104 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2106 S:      Supported
2107 W:      http://www.linux4sam.org
2108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2109 F:      arch/arm/boot/dts/at91*.dts
2110 F:      arch/arm/boot/dts/at91*.dtsi
2111 F:      arch/arm/boot/dts/sama*.dts
2112 F:      arch/arm/boot/dts/sama*.dtsi
2113 F:      arch/arm/include/debug/at91.S
2114 F:      arch/arm/mach-at91/
2115 F:      drivers/memory/atmel*
2116 F:      drivers/watchdog/sama5d4_wdt.c
2117 F:      include/soc/at91/
2118 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2119 X:      drivers/net/wireless/atmel/
2120 N:      at91
2121 N:      atmel
2122
2123 ARM/Microchip Sparx5 SoC support
2124 M:      Lars Povlsen <lars.povlsen@microchip.com>
2125 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2126 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
2127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128 S:      Supported
2129 T:      git git://github.com/microchip-ung/linux-upstream.git
2130 F:      arch/arm64/boot/dts/microchip/
2131 N:      sparx5
2132
2133 ARM/MIOA701 MACHINE SUPPORT
2134 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2136 S:      Maintained
2137 F:      arch/arm/mach-pxa/mioa701.c
2138
2139 ARM/MStar/Sigmastar Armv7 SoC support
2140 M:      Daniel Palmer <daniel@thingy.jp>
2141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2142 S:      Maintained
2143 W:      http://linux-chenxing.org/
2144 F:      Documentation/devicetree/bindings/arm/mstar/*
2145 F:      arch/arm/boot/dts/mstar-*
2146 F:      arch/arm/mach-mstar/
2147
2148 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2149 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2150 S:      Maintained
2151
2152 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2153 M:      Linus Walleij <linus.walleij@linaro.org>
2154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2155 S:      Maintained
2156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2157 F:      Documentation/devicetree/bindings/arm/ste-*
2158 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2159 F:      Documentation/devicetree/bindings/arm/ux500/
2160 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2161 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2162 F:      arch/arm/boot/dts/ste-*
2163 F:      arch/arm/mach-nomadik/
2164 F:      arch/arm/mach-u300/
2165 F:      arch/arm/mach-ux500/
2166 F:      drivers/clk/clk-nomadik.c
2167 F:      drivers/clk/clk-u300.c
2168 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2169 F:      drivers/clocksource/timer-u300.c
2170 F:      drivers/dma/coh901318*
2171 F:      drivers/dma/ste_dma40*
2172 F:      drivers/hwspinlock/u8500_hsem.c
2173 F:      drivers/i2c/busses/i2c-nomadik.c
2174 F:      drivers/i2c/busses/i2c-stu300.c
2175 F:      drivers/iio/adc/ab8500-gpadc.c
2176 F:      drivers/mfd/ab3100*
2177 F:      drivers/mfd/ab8500*
2178 F:      drivers/mfd/abx500*
2179 F:      drivers/mfd/db8500*
2180 F:      drivers/mfd/dbx500*
2181 F:      drivers/pinctrl/nomadik/
2182 F:      drivers/pinctrl/pinctrl-coh901*
2183 F:      drivers/pinctrl/pinctrl-u300.c
2184 F:      drivers/rtc/rtc-ab3100.c
2185 F:      drivers/rtc/rtc-ab8500.c
2186 F:      drivers/rtc/rtc-coh901331.c
2187 F:      drivers/rtc/rtc-pl031.c
2188 F:      drivers/soc/ux500/
2189 F:      drivers/watchdog/coh901327_wdt.c
2190
2191 ARM/NUVOTON NPCM ARCHITECTURE
2192 M:      Avi Fishman <avifishman70@gmail.com>
2193 M:      Tomer Maimon <tmaimon77@gmail.com>
2194 M:      Tali Perry <tali.perry1@gmail.com>
2195 R:      Patrick Venture <venture@google.com>
2196 R:      Nancy Yuen <yuenn@google.com>
2197 R:      Benjamin Fair <benjaminfair@google.com>
2198 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2199 S:      Supported
2200 F:      Documentation/devicetree/bindings/*/*/*npcm*
2201 F:      Documentation/devicetree/bindings/*/*npcm*
2202 F:      arch/arm/boot/dts/nuvoton-npcm*
2203 F:      arch/arm/mach-npcm/
2204 F:      drivers/*/*npcm*
2205 F:      drivers/*/*/*npcm*
2206 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2207
2208 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2209 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2210 S:      Orphan
2211 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2212 F:      arch/arm/mach-s3c/gta02.h
2213 F:      arch/arm/mach-s3c/mach-gta02.c
2214
2215 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2216 M:      Alexander Clouter <alex@digriz.org.uk>
2217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2218 S:      Maintained
2219 W:      http://www.digriz.org.uk/ts78xx/kernel
2220 F:      arch/arm/mach-orion5x/ts78xx-*
2221
2222 ARM/OXNAS platform support
2223 M:      Neil Armstrong <narmstrong@baylibre.com>
2224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2225 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2226 S:      Maintained
2227 F:      arch/arm/boot/dts/ox8*.dts*
2228 F:      arch/arm/mach-oxnas/
2229 F:      drivers/power/reset/oxnas-restart.c
2230 N:      oxnas
2231
2232 ARM/PALM TREO SUPPORT
2233 M:      Tomas Cech <sleep_walker@suse.com>
2234 L:      linux-arm-kernel@lists.infradead.org
2235 S:      Maintained
2236 W:      http://hackndev.com
2237 F:      arch/arm/mach-pxa/palmtreo.*
2238
2239 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2240 M:      Marek Vasut <marek.vasut@gmail.com>
2241 L:      linux-arm-kernel@lists.infradead.org
2242 S:      Maintained
2243 W:      http://hackndev.com
2244 F:      arch/arm/mach-pxa/include/mach/palmld.h
2245 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2246 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2247 F:      arch/arm/mach-pxa/palmld.c
2248 F:      arch/arm/mach-pxa/palmt5.*
2249 F:      arch/arm/mach-pxa/palmtc.c
2250 F:      arch/arm/mach-pxa/palmte2.*
2251 F:      arch/arm/mach-pxa/palmtx.c
2252
2253 ARM/PALMZ72 SUPPORT
2254 M:      Sergey Lapin <slapin@ossfans.org>
2255 L:      linux-arm-kernel@lists.infradead.org
2256 S:      Maintained
2257 W:      http://hackndev.com
2258 F:      arch/arm/mach-pxa/palmz72.*
2259
2260 ARM/PLEB SUPPORT
2261 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2262 S:      Maintained
2263 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2264
2265 ARM/PT DIGITAL BOARD PORT
2266 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268 S:      Maintained
2269 W:      http://www.armlinux.org.uk/
2270
2271 ARM/QUALCOMM SUPPORT
2272 M:      Andy Gross <agross@kernel.org>
2273 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2274 L:      linux-arm-msm@vger.kernel.org
2275 S:      Maintained
2276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2277 F:      Documentation/devicetree/bindings/*/qcom*
2278 F:      Documentation/devicetree/bindings/soc/qcom/
2279 F:      arch/arm/boot/dts/qcom-*.dts
2280 F:      arch/arm/boot/dts/qcom-*.dtsi
2281 F:      arch/arm/mach-qcom/
2282 F:      arch/arm64/boot/dts/qcom/
2283 F:      drivers/*/*/qcom*
2284 F:      drivers/*/*/qcom/
2285 F:      drivers/*/pm8???-*
2286 F:      drivers/*/qcom*
2287 F:      drivers/*/qcom/
2288 F:      drivers/bluetooth/btqcomsmd.c
2289 F:      drivers/clocksource/timer-qcom.c
2290 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2291 F:      drivers/extcon/extcon-qcom*
2292 F:      drivers/i2c/busses/i2c-qcom-geni.c
2293 F:      drivers/i2c/busses/i2c-qup.c
2294 F:      drivers/iommu/msm*
2295 F:      drivers/mfd/ssbi.c
2296 F:      drivers/mmc/host/mmci_qcom*
2297 F:      drivers/mmc/host/sdhci-msm.c
2298 F:      drivers/pci/controller/dwc/pcie-qcom.c
2299 F:      drivers/phy/qualcomm/
2300 F:      drivers/power/*/msm*
2301 F:      drivers/reset/reset-qcom-*
2302 F:      drivers/scsi/ufs/ufs-qcom*
2303 F:      drivers/spi/spi-geni-qcom.c
2304 F:      drivers/spi/spi-qcom-qspi.c
2305 F:      drivers/spi/spi-qup.c
2306 F:      drivers/tty/serial/msm_serial.c
2307 F:      drivers/usb/dwc3/dwc3-qcom.c
2308 F:      include/dt-bindings/*/qcom*
2309 F:      include/linux/*/qcom*
2310
2311 ARM/RADISYS ENP2611 MACHINE SUPPORT
2312 M:      Lennert Buytenhek <kernel@wantstofly.org>
2313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2314 S:      Maintained
2315
2316 ARM/RDA MICRO ARCHITECTURE
2317 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2320 S:      Maintained
2321 F:      Documentation/devicetree/bindings/arm/rda.yaml
2322 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2323 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2324 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2325 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2326 F:      arch/arm/boot/dts/rda8810pl-*
2327 F:      drivers/clocksource/timer-rda.c
2328 F:      drivers/gpio/gpio-rda.c
2329 F:      drivers/irqchip/irq-rda-intc.c
2330 F:      drivers/tty/serial/rda-uart.c
2331
2332 ARM/REALTEK ARCHITECTURE
2333 M:      Andreas Färber <afaerber@suse.de>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2336 S:      Maintained
2337 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2338 F:      arch/arm/boot/dts/rtd*
2339 F:      arch/arm/mach-realtek/
2340 F:      arch/arm64/boot/dts/realtek/
2341
2342 ARM/RENESAS ARM64 ARCHITECTURE
2343 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2344 M:      Magnus Damm <magnus.damm@gmail.com>
2345 L:      linux-renesas-soc@vger.kernel.org
2346 S:      Supported
2347 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2349 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2350 F:      arch/arm64/boot/dts/renesas/
2351 F:      drivers/soc/renesas/
2352 F:      include/linux/soc/renesas/
2353
2354 ARM/RISCPC ARCHITECTURE
2355 M:      Russell King <linux@armlinux.org.uk>
2356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2357 S:      Maintained
2358 W:      http://www.armlinux.org.uk/
2359 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2360 F:      arch/arm/include/asm/hardware/ioc.h
2361 F:      arch/arm/include/asm/hardware/iomd.h
2362 F:      arch/arm/include/asm/hardware/memc.h
2363 F:      arch/arm/mach-rpc/
2364 F:      drivers/net/ethernet/8390/etherh.c
2365 F:      drivers/net/ethernet/i825xx/ether1*
2366 F:      drivers/net/ethernet/seeq/ether3*
2367 F:      drivers/scsi/arm/
2368
2369 ARM/Rockchip SoC support
2370 M:      Heiko Stuebner <heiko@sntech.de>
2371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2372 L:      linux-rockchip@lists.infradead.org
2373 S:      Maintained
2374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2375 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2376 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2377 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2378 F:      arch/arm/boot/dts/rk3*
2379 F:      arch/arm/boot/dts/rv1108*
2380 F:      arch/arm/mach-rockchip/
2381 F:      drivers/*/*/*rockchip*
2382 F:      drivers/*/*rockchip*
2383 F:      drivers/clk/rockchip/
2384 F:      drivers/i2c/busses/i2c-rk3x.c
2385 F:      sound/soc/rockchip/
2386 N:      rockchip
2387
2388 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2389 M:      Krzysztof Kozlowski <krzk@kernel.org>
2390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2391 L:      linux-samsung-soc@vger.kernel.org
2392 S:      Maintained
2393 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2394 F:      Documentation/arm/samsung/
2395 F:      Documentation/devicetree/bindings/arm/samsung/
2396 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2397 F:      arch/arm/boot/dts/exynos*
2398 F:      arch/arm/boot/dts/s3c*
2399 F:      arch/arm/boot/dts/s5p*
2400 F:      arch/arm/mach-exynos*/
2401 F:      arch/arm/mach-s3c/
2402 F:      arch/arm/mach-s5p*/
2403 F:      arch/arm64/boot/dts/exynos/
2404 F:      drivers/*/*/*s3c24*
2405 F:      drivers/*/*s3c24*
2406 F:      drivers/*/*s3c64xx*
2407 F:      drivers/*/*s5pv210*
2408 F:      drivers/memory/samsung/
2409 F:      drivers/soc/samsung/
2410 F:      drivers/tty/serial/samsung*
2411 F:      include/linux/soc/samsung/
2412 N:      exynos
2413 N:      s3c2410
2414 N:      s3c64xx
2415 N:      s5pv210
2416
2417 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2418 M:      Andrzej Hajda <a.hajda@samsung.com>
2419 L:      linux-arm-kernel@lists.infradead.org
2420 L:      linux-media@vger.kernel.org
2421 S:      Maintained
2422 F:      drivers/media/platform/s5p-g2d/
2423
2424 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2425 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2426 L:      linux-samsung-soc@vger.kernel.org
2427 L:      linux-media@vger.kernel.org
2428 S:      Maintained
2429 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2430 F:      drivers/media/cec/platform/s5p/
2431
2432 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2433 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2434 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2435 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2436 L:      linux-arm-kernel@lists.infradead.org
2437 L:      linux-media@vger.kernel.org
2438 S:      Maintained
2439 F:      drivers/media/platform/s5p-jpeg/
2440
2441 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2442 M:      Andrzej Hajda <a.hajda@samsung.com>
2443 L:      linux-arm-kernel@lists.infradead.org
2444 L:      linux-media@vger.kernel.org
2445 S:      Maintained
2446 F:      drivers/media/platform/s5p-mfc/
2447
2448 ARM/SHMOBILE ARM ARCHITECTURE
2449 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2450 M:      Magnus Damm <magnus.damm@gmail.com>
2451 L:      linux-renesas-soc@vger.kernel.org
2452 S:      Supported
2453 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2455 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2456 F:      arch/arm/boot/dts/emev2*
2457 F:      arch/arm/boot/dts/gr-peach*
2458 F:      arch/arm/boot/dts/iwg20d-q7*
2459 F:      arch/arm/boot/dts/r7s*
2460 F:      arch/arm/boot/dts/r8a*
2461 F:      arch/arm/boot/dts/r9a*
2462 F:      arch/arm/boot/dts/sh*
2463 F:      arch/arm/configs/shmobile_defconfig
2464 F:      arch/arm/include/debug/renesas-scif.S
2465 F:      arch/arm/mach-shmobile/
2466 F:      drivers/soc/renesas/
2467 F:      include/linux/soc/renesas/
2468
2469 ARM/SOCFPGA ARCHITECTURE
2470 M:      Dinh Nguyen <dinguyen@kernel.org>
2471 S:      Maintained
2472 W:      http://www.rocketboards.org
2473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2474 F:      arch/arm/boot/dts/socfpga*
2475 F:      arch/arm/configs/socfpga_defconfig
2476 F:      arch/arm/mach-socfpga/
2477 F:      arch/arm64/boot/dts/altera/
2478 F:      arch/arm64/boot/dts/intel/
2479
2480 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2481 M:      Dinh Nguyen <dinguyen@kernel.org>
2482 S:      Maintained
2483 F:      drivers/clk/socfpga/
2484
2485 ARM/SOCFPGA EDAC SUPPORT
2486 M:      Dinh Nguyen <dinguyen@kernel.org>
2487 S:      Maintained
2488 F:      drivers/edac/altera_edac.[ch]
2489
2490 ARM/SPREADTRUM SoC SUPPORT
2491 M:      Orson Zhai <orsonzhai@gmail.com>
2492 M:      Baolin Wang <baolin.wang7@gmail.com>
2493 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2494 S:      Maintained
2495 F:      arch/arm64/boot/dts/sprd
2496 N:      sprd
2497 N:      sc27xx
2498 N:      sc2731
2499
2500 ARM/STI ARCHITECTURE
2501 M:      Patrice Chotard <patrice.chotard@st.com>
2502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2503 S:      Maintained
2504 W:      http://www.stlinux.com
2505 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2506 F:      arch/arm/boot/dts/sti*
2507 F:      arch/arm/mach-sti/
2508 F:      drivers/ata/ahci_st.c
2509 F:      drivers/char/hw_random/st-rng.c
2510 F:      drivers/clocksource/arm_global_timer.c
2511 F:      drivers/clocksource/clksrc_st_lpc.c
2512 F:      drivers/cpufreq/sti-cpufreq.c
2513 F:      drivers/dma/st_fdma*
2514 F:      drivers/i2c/busses/i2c-st.c
2515 F:      drivers/media/platform/sti/c8sectpfe/
2516 F:      drivers/media/rc/st_rc.c
2517 F:      drivers/mmc/host/sdhci-st.c
2518 F:      drivers/phy/st/phy-miphy28lp.c
2519 F:      drivers/phy/st/phy-stih407-usb.c
2520 F:      drivers/pinctrl/pinctrl-st.c
2521 F:      drivers/remoteproc/st_remoteproc.c
2522 F:      drivers/remoteproc/st_slim_rproc.c
2523 F:      drivers/reset/sti/
2524 F:      drivers/rtc/rtc-st-lpc.c
2525 F:      drivers/tty/serial/st-asc.c
2526 F:      drivers/usb/dwc3/dwc3-st.c
2527 F:      drivers/usb/host/ehci-st.c
2528 F:      drivers/usb/host/ohci-st.c
2529 F:      drivers/watchdog/st_lpc_wdt.c
2530 F:      include/linux/remoteproc/st_slim_rproc.h
2531
2532 ARM/STM32 ARCHITECTURE
2533 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2534 M:      Alexandre Torgue <alexandre.torgue@st.com>
2535 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 S:      Maintained
2538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2539 F:      arch/arm/boot/dts/stm32*
2540 F:      arch/arm/mach-stm32/
2541 F:      drivers/clocksource/armv7m_systick.c
2542 N:      stm32
2543 N:      stm
2544
2545 ARM/Synaptics SoC support
2546 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2547 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2549 S:      Maintained
2550 F:      arch/arm/boot/dts/berlin*
2551 F:      arch/arm/mach-berlin/
2552 F:      arch/arm64/boot/dts/synaptics/
2553
2554 ARM/TANGO ARCHITECTURE
2555 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2556 M:      Mans Rullgard <mans@mansr.com>
2557 L:      linux-arm-kernel@lists.infradead.org
2558 S:      Odd Fixes
2559 N:      tango
2560
2561 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2562 M:      Lennert Buytenhek <kernel@wantstofly.org>
2563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2564 S:      Maintained
2565
2566 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2567 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2568 L:      linux-tegra@vger.kernel.org
2569 L:      linux-media@vger.kernel.org
2570 S:      Maintained
2571 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2572 F:      drivers/media/cec/platform/tegra/
2573
2574 ARM/TETON BGA MACHINE SUPPORT
2575 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2576 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2577 S:      Maintained
2578
2579 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2580 M:      Santosh Shilimkar <ssantosh@kernel.org>
2581 L:      linux-kernel@vger.kernel.org
2582 S:      Maintained
2583 F:      drivers/memory/*emif*
2584
2585 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2586 M:      Santosh Shilimkar <ssantosh@kernel.org>
2587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2588 S:      Maintained
2589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2590 F:      arch/arm/boot/dts/keystone-*
2591 F:      arch/arm/mach-keystone/
2592
2593 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2594 M:      Santosh Shilimkar <ssantosh@kernel.org>
2595 L:      linux-kernel@vger.kernel.org
2596 S:      Maintained
2597 F:      drivers/clk/keystone/
2598
2599 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2600 M:      Santosh Shilimkar <ssantosh@kernel.org>
2601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2602 L:      linux-kernel@vger.kernel.org
2603 S:      Maintained
2604 F:      drivers/clocksource/timer-keystone.c
2605
2606 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2607 M:      Santosh Shilimkar <ssantosh@kernel.org>
2608 L:      linux-kernel@vger.kernel.org
2609 S:      Maintained
2610 F:      drivers/power/reset/keystone-reset.c
2611
2612 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2613 M:      Tero Kristo <t-kristo@ti.com>
2614 M:      Nishanth Menon <nm@ti.com>
2615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2616 S:      Supported
2617 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2618 F:      arch/arm64/boot/dts/ti/Makefile
2619 F:      arch/arm64/boot/dts/ti/k3-*
2620 F:      include/dt-bindings/pinctrl/k3.h
2621
2622 ARM/THECUS N2100 MACHINE SUPPORT
2623 M:      Lennert Buytenhek <kernel@wantstofly.org>
2624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2625 S:      Maintained
2626
2627 ARM/TOSA MACHINE SUPPORT
2628 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2629 M:      Dirk Opfer <dirk@opfer-online.de>
2630 S:      Maintained
2631
2632 ARM/TOSHIBA VISCONTI ARCHITECTURE
2633 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2635 S:      Supported
2636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2637 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2638 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2639 F:      arch/arm64/boot/dts/toshiba/
2640 F:      drivers/pinctrl/visconti/
2641 N:      visconti
2642
2643 ARM/UNIPHIER ARCHITECTURE
2644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2645 S:      Orphan
2646 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2647 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2648 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2649 F:      arch/arm/boot/dts/uniphier*
2650 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2651 F:      arch/arm/mach-uniphier/
2652 F:      arch/arm/mm/cache-uniphier.c
2653 F:      arch/arm64/boot/dts/socionext/uniphier*
2654 F:      drivers/bus/uniphier-system-bus.c
2655 F:      drivers/clk/uniphier/
2656 F:      drivers/dma/uniphier-mdmac.c
2657 F:      drivers/gpio/gpio-uniphier.c
2658 F:      drivers/i2c/busses/i2c-uniphier*
2659 F:      drivers/irqchip/irq-uniphier-aidet.c
2660 F:      drivers/mmc/host/uniphier-sd.c
2661 F:      drivers/pinctrl/uniphier/
2662 F:      drivers/reset/reset-uniphier.c
2663 F:      drivers/tty/serial/8250/8250_uniphier.c
2664 N:      uniphier
2665
2666 ARM/VERSATILE EXPRESS PLATFORM
2667 M:      Liviu Dudau <liviu.dudau@arm.com>
2668 M:      Sudeep Holla <sudeep.holla@arm.com>
2669 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2671 S:      Maintained
2672 F:      */*/*/vexpress*
2673 F:      */*/vexpress*
2674 F:      arch/arm/boot/dts/vexpress*
2675 F:      arch/arm/mach-vexpress/
2676 F:      arch/arm64/boot/dts/arm/
2677 F:      drivers/clk/versatile/clk-vexpress-osc.c
2678 F:      drivers/clocksource/timer-versatile.c
2679 N:      mps2
2680
2681 ARM/VFP SUPPORT
2682 M:      Russell King <linux@armlinux.org.uk>
2683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2684 S:      Maintained
2685 W:      http://www.armlinux.org.uk/
2686 F:      arch/arm/vfp/
2687
2688 ARM/VOIPAC PXA270 SUPPORT
2689 M:      Marek Vasut <marek.vasut@gmail.com>
2690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2691 S:      Maintained
2692 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2693 F:      arch/arm/mach-pxa/vpac270.c
2694
2695 ARM/VT8500 ARM ARCHITECTURE
2696 M:      Tony Prisk <linux@prisktech.co.nz>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S:      Maintained
2699 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2700 F:      arch/arm/mach-vt8500/
2701 F:      drivers/clocksource/timer-vt8500.c
2702 F:      drivers/i2c/busses/i2c-wmt.c
2703 F:      drivers/mmc/host/wmt-sdmmc.c
2704 F:      drivers/pwm/pwm-vt8500.c
2705 F:      drivers/rtc/rtc-vt8500.c
2706 F:      drivers/tty/serial/vt8500_serial.c
2707 F:      drivers/usb/host/ehci-platform.c
2708 F:      drivers/usb/host/uhci-platform.c
2709 F:      drivers/video/fbdev/vt8500lcdfb.*
2710 F:      drivers/video/fbdev/wm8505fb*
2711 F:      drivers/video/fbdev/wmt_ge_rops.*
2712
2713 ARM/ZIPIT Z2 SUPPORT
2714 M:      Marek Vasut <marek.vasut@gmail.com>
2715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2716 S:      Maintained
2717 F:      arch/arm/mach-pxa/include/mach/z2.h
2718 F:      arch/arm/mach-pxa/z2.c
2719
2720 ARM/ZTE ARCHITECTURE
2721 M:      Jun Nie <jun.nie@linaro.org>
2722 M:      Shawn Guo <shawnguo@kernel.org>
2723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2724 S:      Maintained
2725 F:      Documentation/devicetree/bindings/arm/zte.yaml
2726 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2727 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2728 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2729 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2730 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2731 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2732 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2733 F:      Documentation/devicetree/bindings/soc/zte/
2734 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2735 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2736 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2737 F:      arch/arm/boot/dts/zx2967*
2738 F:      arch/arm/mach-zx/
2739 F:      arch/arm64/boot/dts/zte/
2740 F:      drivers/clk/zte/
2741 F:      drivers/dma/zx_dma.c
2742 F:      drivers/gpio/gpio-zx.c
2743 F:      drivers/i2c/busses/i2c-zx2967.c
2744 F:      drivers/mmc/host/dw_mmc-zx.*
2745 F:      drivers/pinctrl/zte/
2746 F:      drivers/soc/zte/
2747 F:      drivers/thermal/zx2967_thermal.c
2748 F:      drivers/watchdog/zx2967_wdt.c
2749 F:      include/dt-bindings/clock/zx2967*.h
2750 F:      include/dt-bindings/soc/zte,*.h
2751 F:      sound/soc/codecs/zx_aud96p22.c
2752 F:      sound/soc/zte/
2753
2754 ARM/ZYNQ ARCHITECTURE
2755 M:      Michal Simek <michal.simek@xilinx.com>
2756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2757 S:      Supported
2758 W:      http://wiki.xilinx.com
2759 T:      git https://github.com/Xilinx/linux-xlnx.git
2760 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2761 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2762 F:      arch/arm/mach-zynq/
2763 F:      drivers/block/xsysace.c
2764 F:      drivers/clocksource/timer-cadence-ttc.c
2765 F:      drivers/cpuidle/cpuidle-zynq.c
2766 F:      drivers/edac/synopsys_edac.c
2767 F:      drivers/i2c/busses/i2c-cadence.c
2768 F:      drivers/i2c/busses/i2c-xiic.c
2769 F:      drivers/mmc/host/sdhci-of-arasan.c
2770 N:      zynq
2771 N:      xilinx
2772
2773 ARM64 PORT (AARCH64 ARCHITECTURE)
2774 M:      Catalin Marinas <catalin.marinas@arm.com>
2775 M:      Will Deacon <will@kernel.org>
2776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2777 S:      Maintained
2778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2779 F:      Documentation/arm64/
2780 F:      arch/arm64/
2781 F:      tools/testing/selftests/arm64/
2782 X:      arch/arm64/boot/dts/
2783
2784 AS3645A LED FLASH CONTROLLER DRIVER
2785 M:      Sakari Ailus <sakari.ailus@iki.fi>
2786 L:      linux-leds@vger.kernel.org
2787 S:      Maintained
2788 F:      drivers/leds/leds-as3645a.c
2789
2790 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2791 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2792 L:      linux-media@vger.kernel.org
2793 S:      Maintained
2794 T:      git git://linuxtv.org/media_tree.git
2795 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2796 F:      drivers/media/i2c/ak7375.c
2797
2798 ASAHI KASEI AK8974 DRIVER
2799 M:      Linus Walleij <linus.walleij@linaro.org>
2800 L:      linux-iio@vger.kernel.org
2801 S:      Supported
2802 W:      http://www.akm.com/
2803 F:      drivers/iio/magnetometer/ak8974.c
2804
2805 ASC7621 HARDWARE MONITOR DRIVER
2806 M:      George Joseph <george.joseph@fairview5.com>
2807 L:      linux-hwmon@vger.kernel.org
2808 S:      Maintained
2809 F:      Documentation/hwmon/asc7621.rst
2810 F:      drivers/hwmon/asc7621.c
2811
2812 ASPEED PINCTRL DRIVERS
2813 M:      Andrew Jeffery <andrew@aj.id.au>
2814 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2815 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2816 L:      linux-gpio@vger.kernel.org
2817 S:      Maintained
2818 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2819 F:      drivers/pinctrl/aspeed/
2820
2821 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2822 M:      Eddie James <eajames@linux.ibm.com>
2823 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2824 S:      Maintained
2825 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2826 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2827 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2828
2829 ASPEED VIDEO ENGINE DRIVER
2830 M:      Eddie James <eajames@linux.ibm.com>
2831 L:      linux-media@vger.kernel.org
2832 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2833 S:      Maintained
2834 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2835 F:      drivers/media/platform/aspeed-video.c
2836
2837 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2838 M:      Corentin Chary <corentin.chary@gmail.com>
2839 L:      acpi4asus-user@lists.sourceforge.net
2840 L:      platform-driver-x86@vger.kernel.org
2841 S:      Maintained
2842 W:      http://acpi4asus.sf.net
2843 F:      drivers/platform/x86/asus*.c
2844 F:      drivers/platform/x86/eeepc*.c
2845
2846 ASUS WIRELESS RADIO CONTROL DRIVER
2847 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2848 L:      platform-driver-x86@vger.kernel.org
2849 S:      Maintained
2850 F:      drivers/platform/x86/asus-wireless.c
2851
2852 ASYMMETRIC KEYS
2853 M:      David Howells <dhowells@redhat.com>
2854 L:      keyrings@vger.kernel.org
2855 S:      Maintained
2856 F:      Documentation/crypto/asymmetric-keys.rst
2857 F:      crypto/asymmetric_keys/
2858 F:      include/crypto/pkcs7.h
2859 F:      include/crypto/public_key.h
2860 F:      include/linux/verification.h
2861
2862 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2863 R:      Dan Williams <dan.j.williams@intel.com>
2864 S:      Odd fixes
2865 W:      http://sourceforge.net/projects/xscaleiop
2866 F:      Documentation/crypto/async-tx-api.rst
2867 F:      crypto/async_tx/
2868 F:      drivers/dma/
2869 F:      include/linux/async_tx.h
2870 F:      include/linux/dmaengine.h
2871
2872 AT24 EEPROM DRIVER
2873 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2874 L:      linux-i2c@vger.kernel.org
2875 S:      Maintained
2876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2877 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2878 F:      drivers/misc/eeprom/at24.c
2879
2880 ATA OVER ETHERNET (AOE) DRIVER
2881 M:      "Justin Sanders" <justin@coraid.com>
2882 S:      Supported
2883 W:      http://www.openaoe.org/
2884 F:      Documentation/admin-guide/aoe/
2885 F:      drivers/block/aoe/
2886
2887 ATHEROS 71XX/9XXX GPIO DRIVER
2888 M:      Alban Bedel <albeu@free.fr>
2889 S:      Maintained
2890 W:      https://github.com/AlbanBedel/linux
2891 T:      git git://github.com/AlbanBedel/linux
2892 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2893 F:      drivers/gpio/gpio-ath79.c
2894
2895 ATHEROS 71XX/9XXX USB PHY DRIVER
2896 M:      Alban Bedel <albeu@free.fr>
2897 S:      Maintained
2898 W:      https://github.com/AlbanBedel/linux
2899 T:      git git://github.com/AlbanBedel/linux
2900 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2901 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2902
2903 ATHEROS ATH GENERIC UTILITIES
2904 M:      Kalle Valo <kvalo@codeaurora.org>
2905 L:      linux-wireless@vger.kernel.org
2906 S:      Supported
2907 F:      drivers/net/wireless/ath/*
2908
2909 ATHEROS ATH5K WIRELESS DRIVER
2910 M:      Jiri Slaby <jirislaby@kernel.org>
2911 M:      Nick Kossifidis <mickflemm@gmail.com>
2912 M:      Luis Chamberlain <mcgrof@kernel.org>
2913 L:      linux-wireless@vger.kernel.org
2914 S:      Maintained
2915 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2916 F:      drivers/net/wireless/ath/ath5k/
2917
2918 ATHEROS ATH6KL WIRELESS DRIVER
2919 M:      Kalle Valo <kvalo@codeaurora.org>
2920 L:      linux-wireless@vger.kernel.org
2921 S:      Supported
2922 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2924 F:      drivers/net/wireless/ath/ath6kl/
2925
2926 ATI_REMOTE2 DRIVER
2927 M:      Ville Syrjala <syrjala@sci.fi>
2928 S:      Maintained
2929 F:      drivers/input/misc/ati_remote2.c
2930
2931 ATK0110 HWMON DRIVER
2932 M:      Luca Tettamanti <kronos.it@gmail.com>
2933 L:      linux-hwmon@vger.kernel.org
2934 S:      Maintained
2935 F:      drivers/hwmon/asus_atk0110.c
2936
2937 ATLX ETHERNET DRIVERS
2938 M:      Jay Cliburn <jcliburn@gmail.com>
2939 M:      Chris Snook <chris.snook@gmail.com>
2940 L:      netdev@vger.kernel.org
2941 S:      Maintained
2942 W:      http://sourceforge.net/projects/atl1
2943 W:      http://atl1.sourceforge.net
2944 F:      drivers/net/ethernet/atheros/
2945
2946 ATM
2947 M:      Chas Williams <3chas3@gmail.com>
2948 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2949 L:      netdev@vger.kernel.org
2950 S:      Maintained
2951 W:      http://linux-atm.sourceforge.net
2952 F:      drivers/atm/
2953 F:      include/linux/atm*
2954 F:      include/uapi/linux/atm*
2955
2956 ATMEL MACB ETHERNET DRIVER
2957 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2958 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2959 S:      Supported
2960 F:      drivers/net/ethernet/cadence/
2961
2962 ATMEL MAXTOUCH DRIVER
2963 M:      Nick Dyer <nick@shmanahar.org>
2964 S:      Maintained
2965 T:      git git://github.com/ndyer/linux.git
2966 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2967 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2968
2969 ATMEL WIRELESS DRIVER
2970 M:      Simon Kelley <simon@thekelleys.org.uk>
2971 L:      linux-wireless@vger.kernel.org
2972 S:      Maintained
2973 W:      http://www.thekelleys.org.uk/atmel
2974 W:      http://atmelwlandriver.sourceforge.net/
2975 F:      drivers/net/wireless/atmel/atmel*
2976
2977 ATOMIC INFRASTRUCTURE
2978 M:      Will Deacon <will@kernel.org>
2979 M:      Peter Zijlstra <peterz@infradead.org>
2980 R:      Boqun Feng <boqun.feng@gmail.com>
2981 L:      linux-kernel@vger.kernel.org
2982 S:      Maintained
2983 F:      arch/*/include/asm/atomic*.h
2984 F:      include/*/atomic*.h
2985 F:      include/linux/refcount.h
2986 F:      Documentation/atomic_*.txt
2987 F:      scripts/atomic/
2988
2989 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2990 M:      Bradley Grove <linuxdrivers@attotech.com>
2991 L:      linux-scsi@vger.kernel.org
2992 S:      Supported
2993 W:      http://www.attotech.com
2994 F:      drivers/scsi/esas2r
2995
2996 ATUSB IEEE 802.15.4 RADIO DRIVER
2997 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2998 L:      linux-wpan@vger.kernel.org
2999 S:      Maintained
3000 F:      drivers/net/ieee802154/at86rf230.h
3001 F:      drivers/net/ieee802154/atusb.c
3002 F:      drivers/net/ieee802154/atusb.h
3003
3004 AUDIT SUBSYSTEM
3005 M:      Paul Moore <paul@paul-moore.com>
3006 M:      Eric Paris <eparis@redhat.com>
3007 L:      linux-audit@redhat.com (moderated for non-subscribers)
3008 S:      Supported
3009 W:      https://github.com/linux-audit
3010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3011 F:      include/linux/audit.h
3012 F:      include/uapi/linux/audit.h
3013 F:      kernel/audit*
3014
3015 AUXILIARY DISPLAY DRIVERS
3016 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3017 S:      Maintained
3018 F:      drivers/auxdisplay/
3019 F:      include/linux/cfag12864b.h
3020
3021 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3022 M:      Andreas Klinger <ak@it-klinger.de>
3023 L:      linux-iio@vger.kernel.org
3024 S:      Maintained
3025 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3026 F:      drivers/iio/adc/hx711.c
3027
3028 AX.25 NETWORK LAYER
3029 M:      Ralf Baechle <ralf@linux-mips.org>
3030 L:      linux-hams@vger.kernel.org
3031 S:      Maintained
3032 W:      http://www.linux-ax25.org/
3033 F:      include/net/ax25.h
3034 F:      include/uapi/linux/ax25.h
3035 F:      net/ax25/
3036
3037 AXENTIA ARM DEVICES
3038 M:      Peter Rosin <peda@axentia.se>
3039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3040 S:      Maintained
3041 F:      arch/arm/boot/dts/at91-linea.dtsi
3042 F:      arch/arm/boot/dts/at91-natte.dtsi
3043 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3044 F:      arch/arm/boot/dts/at91-tse850-3.dts
3045
3046 AXENTIA ASOC DRIVERS
3047 M:      Peter Rosin <peda@axentia.se>
3048 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3049 S:      Maintained
3050 F:      Documentation/devicetree/bindings/sound/axentia,*
3051 F:      sound/soc/atmel/tse850-pcm5142.c
3052
3053 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3054 M:      Nuno Sá <nuno.sa@analog.com>
3055 L:      linux-hwmon@vger.kernel.org
3056 S:      Supported
3057 W:      http://ez.analog.com/community/linux-device-drivers
3058 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3059 F:      drivers/hwmon/axi-fan-control.c
3060
3061 AXXIA I2C CONTROLLER
3062 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3063 L:      linux-i2c@vger.kernel.org
3064 S:      Maintained
3065 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3066 F:      drivers/i2c/busses/i2c-axxia.c
3067
3068 AZ6007 DVB DRIVER
3069 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3070 L:      linux-media@vger.kernel.org
3071 S:      Maintained
3072 W:      https://linuxtv.org
3073 T:      git git://linuxtv.org/media_tree.git
3074 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3075
3076 AZTECH FM RADIO RECEIVER DRIVER
3077 M:      Hans Verkuil <hverkuil@xs4all.nl>
3078 L:      linux-media@vger.kernel.org
3079 S:      Maintained
3080 W:      https://linuxtv.org
3081 T:      git git://linuxtv.org/media_tree.git
3082 F:      drivers/media/radio/radio-aztech*
3083
3084 B43 WIRELESS DRIVER
3085 L:      linux-wireless@vger.kernel.org
3086 L:      b43-dev@lists.infradead.org
3087 S:      Odd Fixes
3088 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3089 F:      drivers/net/wireless/broadcom/b43/
3090
3091 B43LEGACY WIRELESS DRIVER
3092 M:      Larry Finger <Larry.Finger@lwfinger.net>
3093 L:      linux-wireless@vger.kernel.org
3094 L:      b43-dev@lists.infradead.org
3095 S:      Maintained
3096 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3097 F:      drivers/net/wireless/broadcom/b43legacy/
3098
3099 BACKLIGHT CLASS/SUBSYSTEM
3100 M:      Lee Jones <lee.jones@linaro.org>
3101 M:      Daniel Thompson <daniel.thompson@linaro.org>
3102 M:      Jingoo Han <jingoohan1@gmail.com>
3103 L:      dri-devel@lists.freedesktop.org
3104 S:      Maintained
3105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3106 F:      Documentation/ABI/stable/sysfs-class-backlight
3107 F:      Documentation/ABI/testing/sysfs-class-backlight
3108 F:      Documentation/devicetree/bindings/leds/backlight
3109 F:      drivers/video/backlight/
3110 F:      include/linux/backlight.h
3111 F:      include/linux/pwm_backlight.h
3112
3113 BATMAN ADVANCED
3114 M:      Marek Lindner <mareklindner@neomailbox.ch>
3115 M:      Simon Wunderlich <sw@simonwunderlich.de>
3116 M:      Antonio Quartulli <a@unstable.cc>
3117 M:      Sven Eckelmann <sven@narfation.org>
3118 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3119 S:      Maintained
3120 W:      https://www.open-mesh.org/
3121 Q:      https://patchwork.open-mesh.org/project/batman/list/
3122 B:      https://www.open-mesh.org/projects/batman-adv/issues
3123 C:      irc://chat.freenode.net/batman
3124 T:      git https://git.open-mesh.org/linux-merge.git
3125 F:      Documentation/networking/batman-adv.rst
3126 F:      include/uapi/linux/batadv_packet.h
3127 F:      include/uapi/linux/batman_adv.h
3128 F:      net/batman-adv/
3129
3130 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3131 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3132 L:      linux-hams@vger.kernel.org
3133 S:      Maintained
3134 W:      http://www.baycom.org/~tom/ham/ham.html
3135 F:      drivers/net/hamradio/baycom*
3136
3137 BCACHE (BLOCK LAYER CACHE)
3138 M:      Coly Li <colyli@suse.de>
3139 M:      Kent Overstreet <kent.overstreet@gmail.com>
3140 L:      linux-bcache@vger.kernel.org
3141 S:      Maintained
3142 W:      http://bcache.evilpiepirate.org
3143 C:      irc://irc.oftc.net/bcache
3144 F:      drivers/md/bcache/
3145
3146 BDISP ST MEDIA DRIVER
3147 M:      Fabien Dessenne <fabien.dessenne@st.com>
3148 L:      linux-media@vger.kernel.org
3149 S:      Supported
3150 W:      https://linuxtv.org
3151 T:      git git://linuxtv.org/media_tree.git
3152 F:      drivers/media/platform/sti/bdisp
3153
3154 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3155 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3156 L:      netdev@vger.kernel.org
3157 S:      Maintained
3158 F:      drivers/net/ethernet/ec_bhf.c
3159
3160 BEFS FILE SYSTEM
3161 M:      Luis de Bethencourt <luisbg@kernel.org>
3162 M:      Salah Triki <salah.triki@gmail.com>
3163 S:      Maintained
3164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3165 F:      Documentation/filesystems/befs.rst
3166 F:      fs/befs/
3167
3168 BFQ I/O SCHEDULER
3169 M:      Paolo Valente <paolo.valente@linaro.org>
3170 M:      Jens Axboe <axboe@kernel.dk>
3171 L:      linux-block@vger.kernel.org
3172 S:      Maintained
3173 F:      Documentation/block/bfq-iosched.rst
3174 F:      block/bfq-*
3175
3176 BFS FILE SYSTEM
3177 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3178 S:      Maintained
3179 F:      Documentation/filesystems/bfs.rst
3180 F:      fs/bfs/
3181 F:      include/uapi/linux/bfs_fs.h
3182
3183 BLINKM RGB LED DRIVER
3184 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3185 S:      Maintained
3186 F:      drivers/leds/leds-blinkm.c
3187
3188 BLOCK LAYER
3189 M:      Jens Axboe <axboe@kernel.dk>
3190 L:      linux-block@vger.kernel.org
3191 S:      Maintained
3192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3193 F:      block/
3194 F:      drivers/block/
3195 F:      include/linux/blk*
3196 F:      kernel/trace/blktrace.c
3197 F:      lib/sbitmap.c
3198
3199 BLOCK2MTD DRIVER
3200 M:      Joern Engel <joern@lazybastard.org>
3201 L:      linux-mtd@lists.infradead.org
3202 S:      Maintained
3203 F:      drivers/mtd/devices/block2mtd.c
3204
3205 BLUETOOTH DRIVERS
3206 M:      Marcel Holtmann <marcel@holtmann.org>
3207 M:      Johan Hedberg <johan.hedberg@gmail.com>
3208 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3209 L:      linux-bluetooth@vger.kernel.org
3210 S:      Supported
3211 W:      http://www.bluez.org/
3212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3214 F:      drivers/bluetooth/
3215
3216 BLUETOOTH SUBSYSTEM
3217 M:      Marcel Holtmann <marcel@holtmann.org>
3218 M:      Johan Hedberg <johan.hedberg@gmail.com>
3219 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3220 L:      linux-bluetooth@vger.kernel.org
3221 S:      Supported
3222 W:      http://www.bluez.org/
3223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3225 F:      include/net/bluetooth/
3226 F:      net/bluetooth/
3227
3228 BONDING DRIVER
3229 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3230 M:      Veaceslav Falico <vfalico@gmail.com>
3231 M:      Andy Gospodarek <andy@greyhouse.net>
3232 L:      netdev@vger.kernel.org
3233 S:      Supported
3234 W:      http://sourceforge.net/projects/bonding/
3235 F:      drivers/net/bonding/
3236 F:      include/uapi/linux/if_bonding.h
3237
3238 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3239 M:      Dan Robertson <dan@dlrobertson.com>
3240 L:      linux-iio@vger.kernel.org
3241 S:      Maintained
3242 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3243 F:      drivers/iio/accel/bma400*
3244
3245 BPF (Safe dynamic programs and tools)
3246 M:      Alexei Starovoitov <ast@kernel.org>
3247 M:      Daniel Borkmann <daniel@iogearbox.net>
3248 M:      Andrii Nakryiko <andrii@kernel.org>
3249 R:      Martin KaFai Lau <kafai@fb.com>
3250 R:      Song Liu <songliubraving@fb.com>
3251 R:      Yonghong Song <yhs@fb.com>
3252 R:      John Fastabend <john.fastabend@gmail.com>
3253 R:      KP Singh <kpsingh@kernel.org>
3254 L:      netdev@vger.kernel.org
3255 L:      bpf@vger.kernel.org
3256 S:      Supported
3257 W:      https://bpf.io/
3258 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3261 F:      Documentation/bpf/
3262 F:      Documentation/networking/filter.rst
3263 F:      arch/*/net/*
3264 F:      include/linux/bpf*
3265 F:      include/linux/filter.h
3266 F:      include/trace/events/xdp.h
3267 F:      include/uapi/linux/bpf*
3268 F:      include/uapi/linux/filter.h
3269 F:      kernel/bpf/
3270 F:      kernel/trace/bpf_trace.c
3271 F:      lib/test_bpf.c
3272 F:      net/bpf/
3273 F:      net/core/filter.c
3274 F:      net/sched/act_bpf.c
3275 F:      net/sched/cls_bpf.c
3276 F:      samples/bpf/
3277 F:      tools/bpf/
3278 F:      tools/lib/bpf/
3279 F:      tools/testing/selftests/bpf/
3280 N:      bpf
3281 K:      bpf
3282
3283 BPF JIT for ARM
3284 M:      Shubham Bansal <illusionist.neo@gmail.com>
3285 L:      netdev@vger.kernel.org
3286 L:      bpf@vger.kernel.org
3287 S:      Maintained
3288 F:      arch/arm/net/
3289
3290 BPF JIT for ARM64
3291 M:      Daniel Borkmann <daniel@iogearbox.net>
3292 M:      Alexei Starovoitov <ast@kernel.org>
3293 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3294 L:      netdev@vger.kernel.org
3295 L:      bpf@vger.kernel.org
3296 S:      Supported
3297 F:      arch/arm64/net/
3298
3299 BPF JIT for MIPS (32-BIT AND 64-BIT)
3300 M:      Paul Burton <paulburton@kernel.org>
3301 L:      netdev@vger.kernel.org
3302 L:      bpf@vger.kernel.org
3303 S:      Maintained
3304 F:      arch/mips/net/
3305
3306 BPF JIT for NFP NICs
3307 M:      Jakub Kicinski <kuba@kernel.org>
3308 L:      netdev@vger.kernel.org
3309 L:      bpf@vger.kernel.org
3310 S:      Supported
3311 F:      drivers/net/ethernet/netronome/nfp/bpf/
3312
3313 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3314 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3315 M:      Sandipan Das <sandipan@linux.ibm.com>
3316 L:      netdev@vger.kernel.org
3317 L:      bpf@vger.kernel.org
3318 S:      Maintained
3319 F:      arch/powerpc/net/
3320
3321 BPF JIT for RISC-V (32-bit)
3322 M:      Luke Nelson <luke.r.nels@gmail.com>
3323 M:      Xi Wang <xi.wang@gmail.com>
3324 L:      netdev@vger.kernel.org
3325 L:      bpf@vger.kernel.org
3326 S:      Maintained
3327 F:      arch/riscv/net/
3328 X:      arch/riscv/net/bpf_jit_comp64.c
3329
3330 BPF JIT for RISC-V (64-bit)
3331 M:      Björn Töpel <bjorn.topel@gmail.com>
3332 L:      netdev@vger.kernel.org
3333 L:      bpf@vger.kernel.org
3334 S:      Maintained
3335 F:      arch/riscv/net/
3336 X:      arch/riscv/net/bpf_jit_comp32.c
3337
3338 BPF JIT for S390
3339 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3340 M:      Heiko Carstens <hca@linux.ibm.com>
3341 M:      Vasily Gorbik <gor@linux.ibm.com>
3342 L:      netdev@vger.kernel.org
3343 L:      bpf@vger.kernel.org
3344 S:      Maintained
3345 F:      arch/s390/net/
3346 X:      arch/s390/net/pnet.c
3347
3348 BPF JIT for SPARC (32-BIT AND 64-BIT)
3349 M:      David S. Miller <davem@davemloft.net>
3350 L:      netdev@vger.kernel.org
3351 L:      bpf@vger.kernel.org
3352 S:      Maintained
3353 F:      arch/sparc/net/
3354
3355 BPF JIT for X86 32-BIT
3356 M:      Wang YanQing <udknight@gmail.com>
3357 L:      netdev@vger.kernel.org
3358 L:      bpf@vger.kernel.org
3359 S:      Maintained
3360 F:      arch/x86/net/bpf_jit_comp32.c
3361
3362 BPF JIT for X86 64-BIT
3363 M:      Alexei Starovoitov <ast@kernel.org>
3364 M:      Daniel Borkmann <daniel@iogearbox.net>
3365 L:      netdev@vger.kernel.org
3366 L:      bpf@vger.kernel.org
3367 S:      Supported
3368 F:      arch/x86/net/
3369 X:      arch/x86/net/bpf_jit_comp32.c
3370
3371 BPF LSM (Security Audit and Enforcement using BPF)
3372 M:      KP Singh <kpsingh@kernel.org>
3373 R:      Florent Revest <revest@chromium.org>
3374 R:      Brendan Jackman <jackmanb@chromium.org>
3375 L:      bpf@vger.kernel.org
3376 S:      Maintained
3377 F:      Documentation/bpf/bpf_lsm.rst
3378 F:      include/linux/bpf_lsm.h
3379 F:      kernel/bpf/bpf_lsm.c
3380 F:      security/bpf/
3381
3382 BROADCOM B44 10/100 ETHERNET DRIVER
3383 M:      Michael Chan <michael.chan@broadcom.com>
3384 L:      netdev@vger.kernel.org
3385 S:      Supported
3386 F:      drivers/net/ethernet/broadcom/b44.*
3387
3388 BROADCOM B53 ETHERNET SWITCH DRIVER
3389 M:      Florian Fainelli <f.fainelli@gmail.com>
3390 L:      netdev@vger.kernel.org
3391 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3392 S:      Supported
3393 F:      Documentation/devicetree/bindings/net/dsa/b53.txt
3394 F:      drivers/net/dsa/b53/*
3395 F:      include/linux/platform_data/b53.h
3396
3397 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3398 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3399 L:      bcm-kernel-feedback-list@broadcom.com
3400 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3402 S:      Maintained
3403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3404 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3405 F:      drivers/pci/controller/pcie-brcmstb.c
3406 F:      drivers/staging/vc04_services
3407 N:      bcm2711
3408 N:      bcm2835
3409
3410 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3411 M:      Florian Fainelli <f.fainelli@gmail.com>
3412 M:      Ray Jui <rjui@broadcom.com>
3413 M:      Scott Branden <sbranden@broadcom.com>
3414 M:      bcm-kernel-feedback-list@broadcom.com
3415 S:      Maintained
3416 T:      git git://github.com/broadcom/mach-bcm
3417 F:      arch/arm/mach-bcm/
3418 N:      bcm281*
3419 N:      bcm113*
3420 N:      bcm216*
3421 N:      kona
3422
3423 BROADCOM BCM47XX MIPS ARCHITECTURE
3424 M:      Hauke Mehrtens <hauke@hauke-m.de>
3425 M:      Rafał Miłecki <zajec5@gmail.com>
3426 L:      linux-mips@vger.kernel.org
3427 S:      Maintained
3428 F:      Documentation/devicetree/bindings/mips/brcm/
3429 F:      arch/mips/bcm47xx/*
3430 F:      arch/mips/include/asm/mach-bcm47xx/*
3431
3432 BROADCOM BCM5301X ARM ARCHITECTURE
3433 M:      Hauke Mehrtens <hauke@hauke-m.de>
3434 M:      Rafał Miłecki <zajec5@gmail.com>
3435 M:      bcm-kernel-feedback-list@broadcom.com
3436 L:      linux-arm-kernel@lists.infradead.org
3437 S:      Maintained
3438 F:      arch/arm/boot/dts/bcm470*
3439 F:      arch/arm/boot/dts/bcm5301*
3440 F:      arch/arm/boot/dts/bcm953012*
3441 F:      arch/arm/mach-bcm/bcm_5301x.c
3442
3443 BROADCOM BCM53573 ARM ARCHITECTURE
3444 M:      Rafał Miłecki <rafal@milecki.pl>
3445 L:      bcm-kernel-feedback-list@broadcom.com
3446 L:      linux-arm-kernel@lists.infradead.org
3447 S:      Maintained
3448 F:      arch/arm/boot/dts/bcm47189*
3449 F:      arch/arm/boot/dts/bcm53573*
3450
3451 BROADCOM BCM63XX ARM ARCHITECTURE
3452 M:      Florian Fainelli <f.fainelli@gmail.com>
3453 M:      bcm-kernel-feedback-list@broadcom.com
3454 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3455 S:      Maintained
3456 T:      git git://github.com/broadcom/stblinux.git
3457 N:      bcm63xx
3458
3459 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3460 M:      Kevin Cernekee <cernekee@gmail.com>
3461 L:      linux-usb@vger.kernel.org
3462 S:      Maintained
3463 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3464
3465 BROADCOM BCM7XXX ARM ARCHITECTURE
3466 M:      Florian Fainelli <f.fainelli@gmail.com>
3467 M:      bcm-kernel-feedback-list@broadcom.com
3468 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3469 S:      Maintained
3470 T:      git git://github.com/broadcom/stblinux.git
3471 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3472 F:      arch/arm/boot/dts/bcm7*.dts*
3473 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3474 F:      arch/arm/mach-bcm/*brcmstb*
3475 F:      arch/arm/mm/cache-b15-rac.c
3476 F:      drivers/bus/brcmstb_gisb.c
3477 F:      drivers/pci/controller/pcie-brcmstb.c
3478 N:      brcmstb
3479
3480 BROADCOM BDC DRIVER
3481 M:      Al Cooper <alcooperx@gmail.com>
3482 L:      linux-usb@vger.kernel.org
3483 L:      bcm-kernel-feedback-list@broadcom.com
3484 S:      Maintained
3485 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3486 F:      drivers/usb/gadget/udc/bdc/
3487
3488 BROADCOM BMIPS CPUFREQ DRIVER
3489 M:      Markus Mayer <mmayer@broadcom.com>
3490 M:      bcm-kernel-feedback-list@broadcom.com
3491 L:      linux-pm@vger.kernel.org
3492 S:      Maintained
3493 F:      drivers/cpufreq/bmips-cpufreq.c
3494
3495 BROADCOM BMIPS MIPS ARCHITECTURE
3496 M:      Florian Fainelli <f.fainelli@gmail.com>
3497 L:      bcm-kernel-feedback-list@broadcom.com
3498 L:      linux-mips@vger.kernel.org
3499 S:      Maintained
3500 T:      git git://github.com/broadcom/stblinux.git
3501 F:      arch/mips/bmips/*
3502 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3503 F:      arch/mips/include/asm/mach-bmips/*
3504 F:      arch/mips/kernel/*bmips*
3505 F:      drivers/soc/bcm/bcm63xx
3506 F:      drivers/irqchip/irq-bcm63*
3507 F:      drivers/irqchip/irq-bcm7*
3508 F:      drivers/irqchip/irq-brcmstb*
3509 F:      include/linux/bcm963xx_nvram.h
3510 F:      include/linux/bcm963xx_tag.h
3511
3512 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3513 M:      Rasesh Mody <rmody@marvell.com>
3514 M:      GR-Linux-NIC-Dev@marvell.com
3515 L:      netdev@vger.kernel.org
3516 S:      Supported
3517 F:      drivers/net/ethernet/broadcom/bnx2.*
3518 F:      drivers/net/ethernet/broadcom/bnx2_*
3519
3520 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3521 M:      Saurav Kashyap <skashyap@marvell.com>
3522 M:      Javed Hasan <jhasan@marvell.com>
3523 M:      GR-QLogic-Storage-Upstream@marvell.com
3524 L:      linux-scsi@vger.kernel.org
3525 S:      Supported
3526 F:      drivers/scsi/bnx2fc/
3527
3528 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3529 M:      Nilesh Javali <njavali@marvell.com>
3530 M:      Manish Rangankar <mrangankar@marvell.com>
3531 M:      GR-QLogic-Storage-Upstream@marvell.com
3532 L:      linux-scsi@vger.kernel.org
3533 S:      Supported
3534 F:      drivers/scsi/bnx2i/
3535
3536 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3537 M:      Ariel Elior <aelior@marvell.com>
3538 M:      Sudarsana Kalluru <skalluru@marvell.com>
3539 M:      GR-everest-linux-l2@marvell.com
3540 L:      netdev@vger.kernel.org
3541 S:      Supported
3542 F:      drivers/net/ethernet/broadcom/bnx2x/
3543
3544 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3545 M:      Michael Chan <michael.chan@broadcom.com>
3546 L:      netdev@vger.kernel.org
3547 S:      Supported
3548 F:      drivers/net/ethernet/broadcom/bnxt/
3549
3550 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3551 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3552 M:      Franky Lin <franky.lin@broadcom.com>
3553 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3554 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3555 M:      Wright Feng <wright.feng@infineon.com>
3556 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3557 L:      linux-wireless@vger.kernel.org
3558 L:      brcm80211-dev-list.pdl@broadcom.com
3559 L:      SHA-cyfmac-dev-list@infineon.com
3560 S:      Supported
3561 F:      drivers/net/wireless/broadcom/brcm80211/
3562
3563 BROADCOM BRCMSTB GPIO DRIVER
3564 M:      Gregory Fong <gregory.0xf0@gmail.com>
3565 L:      bcm-kernel-feedback-list@broadcom.com
3566 S:      Supported
3567 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3568 F:      drivers/gpio/gpio-brcmstb.c
3569
3570 BROADCOM BRCMSTB I2C DRIVER
3571 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3572 L:      linux-i2c@vger.kernel.org
3573 L:      bcm-kernel-feedback-list@broadcom.com
3574 S:      Supported
3575 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3576 F:      drivers/i2c/busses/i2c-brcmstb.c
3577
3578 BROADCOM BRCMSTB USB EHCI DRIVER
3579 M:      Al Cooper <alcooperx@gmail.com>
3580 L:      linux-usb@vger.kernel.org
3581 L:      bcm-kernel-feedback-list@broadcom.com
3582 S:      Maintained
3583 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3584 F:      drivers/usb/host/ehci-brcm.*
3585
3586 BROADCOM BRCMSTB USB PIN MAP DRIVER
3587 M:      Al Cooper <alcooperx@gmail.com>
3588 L:      linux-usb@vger.kernel.org
3589 L:      bcm-kernel-feedback-list@broadcom.com
3590 S:      Maintained
3591 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3592 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3593
3594 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3595 M:      Al Cooper <alcooperx@gmail.com>
3596 L:      linux-kernel@vger.kernel.org
3597 L:      bcm-kernel-feedback-list@broadcom.com
3598 S:      Maintained
3599 F:      drivers/phy/broadcom/phy-brcm-usb*
3600
3601 BROADCOM ETHERNET PHY DRIVERS
3602 M:      Florian Fainelli <f.fainelli@gmail.com>
3603 L:      bcm-kernel-feedback-list@broadcom.com
3604 L:      netdev@vger.kernel.org
3605 S:      Supported
3606 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3607 F:      drivers/net/phy/bcm*.[ch]
3608 F:      drivers/net/phy/broadcom.c
3609 F:      include/linux/brcmphy.h
3610
3611 BROADCOM GENET ETHERNET DRIVER
3612 M:      Doug Berger <opendmb@gmail.com>
3613 M:      Florian Fainelli <f.fainelli@gmail.com>
3614 L:      bcm-kernel-feedback-list@broadcom.com
3615 L:      netdev@vger.kernel.org
3616 S:      Supported
3617 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3618 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3619 F:      drivers/net/ethernet/broadcom/genet/
3620 F:      drivers/net/mdio/mdio-bcm-unimac.c
3621 F:      include/linux/platform_data/bcmgenet.h
3622 F:      include/linux/platform_data/mdio-bcm-unimac.h
3623
3624 BROADCOM IPROC ARM ARCHITECTURE
3625 M:      Ray Jui <rjui@broadcom.com>
3626 M:      Scott Branden <sbranden@broadcom.com>
3627 M:      bcm-kernel-feedback-list@broadcom.com
3628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3629 S:      Maintained
3630 T:      git git://github.com/broadcom/cygnus-linux.git
3631 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3632 F:      arch/arm64/boot/dts/broadcom/stingray/*
3633 F:      drivers/clk/bcm/clk-ns*
3634 F:      drivers/clk/bcm/clk-sr*
3635 F:      drivers/pinctrl/bcm/pinctrl-ns*
3636 F:      include/dt-bindings/clock/bcm-sr*
3637 N:      iproc
3638 N:      cygnus
3639 N:      bcm[-_]nsp
3640 N:      bcm9113*
3641 N:      bcm9583*
3642 N:      bcm9585*
3643 N:      bcm9586*
3644 N:      bcm988312
3645 N:      bcm113*
3646 N:      bcm583*
3647 N:      bcm585*
3648 N:      bcm586*
3649 N:      bcm88312
3650 N:      hr2
3651 N:      stingray
3652
3653 BROADCOM KONA GPIO DRIVER
3654 M:      Ray Jui <rjui@broadcom.com>
3655 L:      bcm-kernel-feedback-list@broadcom.com
3656 S:      Supported
3657 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3658 F:      drivers/gpio/gpio-bcm-kona.c
3659
3660 BROADCOM NETXTREME-E ROCE DRIVER
3661 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3662 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3663 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3664 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3665 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3666 L:      linux-rdma@vger.kernel.org
3667 S:      Supported
3668 W:      http://www.broadcom.com
3669 F:      drivers/infiniband/hw/bnxt_re/
3670 F:      include/uapi/rdma/bnxt_re-abi.h
3671
3672 BROADCOM NVRAM DRIVER
3673 M:      Rafał Miłecki <zajec5@gmail.com>
3674 L:      linux-mips@vger.kernel.org
3675 S:      Maintained
3676 F:      drivers/firmware/broadcom/*
3677
3678 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3679 M:      Rafał Miłecki <zajec5@gmail.com>
3680 L:      linux-wireless@vger.kernel.org
3681 S:      Maintained
3682 F:      drivers/bcma/
3683 F:      include/linux/bcma/
3684
3685 BROADCOM SPI DRIVER
3686 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3687 M:      bcm-kernel-feedback-list@broadcom.com
3688 S:      Maintained
3689 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3690 F:      drivers/spi/spi-bcm-qspi.*
3691 F:      drivers/spi/spi-brcmstb-qspi.c
3692 F:      drivers/spi/spi-iproc-qspi.c
3693
3694 BROADCOM STB AVS CPUFREQ DRIVER
3695 M:      Markus Mayer <mmayer@broadcom.com>
3696 M:      bcm-kernel-feedback-list@broadcom.com
3697 L:      linux-pm@vger.kernel.org
3698 S:      Maintained
3699 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3700 F:      drivers/cpufreq/brcmstb*
3701
3702 BROADCOM STB AVS TMON DRIVER
3703 M:      Markus Mayer <mmayer@broadcom.com>
3704 M:      bcm-kernel-feedback-list@broadcom.com
3705 L:      linux-pm@vger.kernel.org
3706 S:      Maintained
3707 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3708 F:      drivers/thermal/broadcom/brcmstb*
3709
3710 BROADCOM STB DPFE DRIVER
3711 M:      Markus Mayer <mmayer@broadcom.com>
3712 M:      bcm-kernel-feedback-list@broadcom.com
3713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3714 S:      Maintained
3715 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3716 F:      drivers/memory/brcmstb_dpfe.c
3717
3718 BROADCOM STB NAND FLASH DRIVER
3719 M:      Brian Norris <computersforpeace@gmail.com>
3720 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3721 L:      linux-mtd@lists.infradead.org
3722 L:      bcm-kernel-feedback-list@broadcom.com
3723 S:      Maintained
3724 F:      drivers/mtd/nand/raw/brcmnand/
3725
3726 BROADCOM SYSTEMPORT ETHERNET DRIVER
3727 M:      Florian Fainelli <f.fainelli@gmail.com>
3728 L:      bcm-kernel-feedback-list@broadcom.com
3729 L:      netdev@vger.kernel.org
3730 S:      Supported
3731 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3732
3733 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3734 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3735 M:      Prashant Sreedharan <prashant@broadcom.com>
3736 M:      Michael Chan <mchan@broadcom.com>
3737 L:      netdev@vger.kernel.org
3738 S:      Supported
3739 F:      drivers/net/ethernet/broadcom/tg3.*
3740
3741 BROCADE BFA FC SCSI DRIVER
3742 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3743 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3744 L:      linux-scsi@vger.kernel.org
3745 S:      Supported
3746 F:      drivers/scsi/bfa/
3747
3748 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3749 M:      Rasesh Mody <rmody@marvell.com>
3750 M:      Sudarsana Kalluru <skalluru@marvell.com>
3751 M:      GR-Linux-NIC-Dev@marvell.com
3752 L:      netdev@vger.kernel.org
3753 S:      Supported
3754 F:      drivers/net/ethernet/brocade/bna/
3755
3756 BSG (block layer generic sg v4 driver)
3757 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3758 L:      linux-scsi@vger.kernel.org
3759 S:      Supported
3760 F:      block/bsg.c
3761 F:      include/linux/bsg.h
3762 F:      include/uapi/linux/bsg.h
3763
3764 BT87X AUDIO DRIVER
3765 M:      Clemens Ladisch <clemens@ladisch.de>
3766 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3767 S:      Maintained
3768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3769 F:      Documentation/sound/cards/bt87x.rst
3770 F:      sound/pci/bt87x.c
3771
3772 BT8XXGPIO DRIVER
3773 M:      Michael Buesch <m@bues.ch>
3774 S:      Maintained
3775 W:      http://bu3sch.de/btgpio.php
3776 F:      drivers/gpio/gpio-bt8xx.c
3777
3778 BTRFS FILE SYSTEM
3779 M:      Chris Mason <clm@fb.com>
3780 M:      Josef Bacik <josef@toxicpanda.com>
3781 M:      David Sterba <dsterba@suse.com>
3782 L:      linux-btrfs@vger.kernel.org
3783 S:      Maintained
3784 W:      http://btrfs.wiki.kernel.org/
3785 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3787 F:      Documentation/filesystems/btrfs.rst
3788 F:      fs/btrfs/
3789 F:      include/linux/btrfs*
3790 F:      include/uapi/linux/btrfs*
3791
3792 BTTV VIDEO4LINUX DRIVER
3793 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3794 L:      linux-media@vger.kernel.org
3795 S:      Odd fixes
3796 W:      https://linuxtv.org
3797 T:      git git://linuxtv.org/media_tree.git
3798 F:      Documentation/driver-api/media/drivers/bttv*
3799 F:      drivers/media/pci/bt8xx/bttv*
3800
3801 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3802 M:      Chanwoo Choi <cw00.choi@samsung.com>
3803 L:      linux-pm@vger.kernel.org
3804 L:      linux-samsung-soc@vger.kernel.org
3805 S:      Maintained
3806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3807 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3808 F:      drivers/devfreq/exynos-bus.c
3809
3810 BUSLOGIC SCSI DRIVER
3811 M:      Khalid Aziz <khalid@gonehiking.org>
3812 L:      linux-scsi@vger.kernel.org
3813 S:      Maintained
3814 F:      drivers/scsi/BusLogic.*
3815 F:      drivers/scsi/FlashPoint.*
3816
3817 C-MEDIA CMI8788 DRIVER
3818 M:      Clemens Ladisch <clemens@ladisch.de>
3819 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3820 S:      Maintained
3821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3822 F:      sound/pci/oxygen/
3823
3824 C-SKY ARCHITECTURE
3825 M:      Guo Ren <guoren@kernel.org>
3826 L:      linux-csky@vger.kernel.org
3827 S:      Supported
3828 T:      git https://github.com/c-sky/csky-linux.git
3829 F:      Documentation/devicetree/bindings/csky/
3830 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3831 F:      Documentation/devicetree/bindings/timer/csky,*
3832 F:      arch/csky/
3833 F:      drivers/clocksource/timer-gx6605s.c
3834 F:      drivers/clocksource/timer-mp-csky.c
3835 F:      drivers/irqchip/irq-csky-*
3836 N:      csky
3837 K:      csky
3838
3839 C6X ARCHITECTURE
3840 M:      Mark Salter <msalter@redhat.com>
3841 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3842 L:      linux-c6x-dev@linux-c6x.org
3843 S:      Maintained
3844 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3845 F:      arch/c6x/
3846
3847 CA8210 IEEE-802.15.4 RADIO DRIVER
3848 M:      Harry Morris <h.morris@cascoda.com>
3849 L:      linux-wpan@vger.kernel.org
3850 S:      Maintained
3851 W:      https://github.com/Cascoda/ca8210-linux.git
3852 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3853 F:      drivers/net/ieee802154/ca8210.c
3854
3855 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3856 M:      David Howells <dhowells@redhat.com>
3857 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3858 S:      Supported
3859 F:      Documentation/filesystems/caching/cachefiles.rst
3860 F:      fs/cachefiles/
3861
3862 CADENCE MIPI-CSI2 BRIDGES
3863 M:      Maxime Ripard <mripard@kernel.org>
3864 L:      linux-media@vger.kernel.org
3865 S:      Maintained
3866 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3867 F:      drivers/media/platform/cadence/cdns-csi2*
3868
3869 CADENCE NAND DRIVER
3870 L:      linux-mtd@lists.infradead.org
3871 S:      Orphan
3872 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3873 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3874
3875 CADENCE USB3 DRD IP DRIVER
3876 M:      Peter Chen <peter.chen@nxp.com>
3877 M:      Pawel Laszczak <pawell@cadence.com>
3878 M:      Roger Quadros <rogerq@ti.com>
3879 R:      Aswath Govindraju <a-govindraju@ti.com>
3880 L:      linux-usb@vger.kernel.org
3881 S:      Maintained
3882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3883 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3884 F:      drivers/usb/cdns3/
3885
3886 CADET FM/AM RADIO RECEIVER DRIVER
3887 M:      Hans Verkuil <hverkuil@xs4all.nl>
3888 L:      linux-media@vger.kernel.org
3889 S:      Maintained
3890 W:      https://linuxtv.org
3891 T:      git git://linuxtv.org/media_tree.git
3892 F:      drivers/media/radio/radio-cadet*
3893
3894 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3895 L:      linux-media@vger.kernel.org
3896 S:      Orphan
3897 T:      git git://linuxtv.org/media_tree.git
3898 F:      Documentation/admin-guide/media/cafe_ccic*
3899 F:      drivers/media/platform/marvell-ccic/
3900
3901 CAIF NETWORK LAYER
3902 L:      netdev@vger.kernel.org
3903 S:      Orphan
3904 F:      Documentation/networking/caif/
3905 F:      drivers/net/caif/
3906 F:      include/net/caif/
3907 F:      include/uapi/linux/caif/
3908 F:      net/caif/
3909
3910 CAKE QDISC
3911 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3912 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3913 S:      Maintained
3914 F:      net/sched/sch_cake.c
3915
3916 CAN NETWORK DRIVERS
3917 M:      Wolfgang Grandegger <wg@grandegger.com>
3918 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3919 L:      linux-can@vger.kernel.org
3920 S:      Maintained
3921 W:      https://github.com/linux-can
3922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3924 F:      Documentation/devicetree/bindings/net/can/
3925 F:      drivers/net/can/
3926 F:      include/linux/can/dev.h
3927 F:      include/linux/can/led.h
3928 F:      include/linux/can/platform/
3929 F:      include/linux/can/rx-offload.h
3930 F:      include/uapi/linux/can/error.h
3931 F:      include/uapi/linux/can/netlink.h
3932 F:      include/uapi/linux/can/vxcan.h
3933
3934 CAN NETWORK LAYER
3935 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3936 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3937 L:      linux-can@vger.kernel.org
3938 S:      Maintained
3939 W:      https://github.com/linux-can
3940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3942 F:      Documentation/networking/can.rst
3943 F:      include/linux/can/core.h
3944 F:      include/linux/can/skb.h
3945 F:      include/net/netns/can.h
3946 F:      include/uapi/linux/can.h
3947 F:      include/uapi/linux/can/bcm.h
3948 F:      include/uapi/linux/can/gw.h
3949 F:      include/uapi/linux/can/isotp.h
3950 F:      include/uapi/linux/can/raw.h
3951 F:      net/can/
3952
3953 CAN-J1939 NETWORK LAYER
3954 M:      Robin van der Gracht <robin@protonic.nl>
3955 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3956 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3957 L:      linux-can@vger.kernel.org
3958 S:      Maintained
3959 F:      Documentation/networking/j1939.rst
3960 F:      include/uapi/linux/can/j1939.h
3961 F:      net/can/j1939/
3962
3963 CAPABILITIES
3964 M:      Serge Hallyn <serge@hallyn.com>
3965 L:      linux-security-module@vger.kernel.org
3966 S:      Supported
3967 F:      include/linux/capability.h
3968 F:      include/uapi/linux/capability.h
3969 F:      kernel/capability.c
3970 F:      security/commoncap.c
3971
3972 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3973 M:      Kevin Tsai <ktsai@capellamicro.com>
3974 S:      Maintained
3975 F:      drivers/iio/light/cm*
3976
3977 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3978 M:      Christian Lamparter <chunkeey@googlemail.com>
3979 L:      linux-wireless@vger.kernel.org
3980 S:      Maintained
3981 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3982 F:      drivers/net/wireless/ath/carl9170/
3983
3984 CAVIUM I2C DRIVER
3985 M:      Robert Richter <rric@kernel.org>
3986 S:      Odd Fixes
3987 W:      http://www.marvell.com
3988 F:      drivers/i2c/busses/i2c-octeon*
3989 F:      drivers/i2c/busses/i2c-thunderx*
3990
3991 CAVIUM LIQUIDIO NETWORK DRIVER
3992 M:      Derek Chickles <dchickles@marvell.com>
3993 M:      Satanand Burla <sburla@marvell.com>
3994 M:      Felix Manlunas <fmanlunas@marvell.com>
3995 L:      netdev@vger.kernel.org
3996 S:      Supported
3997 W:      http://www.marvell.com
3998 F:      drivers/net/ethernet/cavium/liquidio/
3999
4000 CAVIUM MMC DRIVER
4001 M:      Robert Richter <rric@kernel.org>
4002 S:      Odd Fixes
4003 W:      http://www.marvell.com
4004 F:      drivers/mmc/host/cavium*
4005
4006 CAVIUM OCTEON-TX CRYPTO DRIVER
4007 M:      George Cherian <gcherian@marvell.com>
4008 L:      linux-crypto@vger.kernel.org
4009 S:      Supported
4010 W:      http://www.marvell.com
4011 F:      drivers/crypto/cavium/cpt/
4012
4013 CAVIUM THUNDERX2 ARM64 SOC
4014 M:      Robert Richter <rric@kernel.org>
4015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4016 S:      Odd Fixes
4017 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4018 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4019
4020 CC2520 IEEE-802.15.4 RADIO DRIVER
4021 M:      Varka Bhadram <varkabhadram@gmail.com>
4022 L:      linux-wpan@vger.kernel.org
4023 S:      Maintained
4024 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4025 F:      drivers/net/ieee802154/cc2520.c
4026 F:      include/linux/spi/cc2520.h
4027
4028 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4029 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4030 L:      linux-crypto@vger.kernel.org
4031 S:      Supported
4032 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4033 F:      drivers/crypto/ccree/
4034
4035 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4036 M:      Hadar Gat <hadar.gat@arm.com>
4037 L:      linux-crypto@vger.kernel.org
4038 S:      Supported
4039 F:      drivers/char/hw_random/cctrng.c
4040 F:      drivers/char/hw_random/cctrng.h
4041 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4042 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4043
4044 CEC FRAMEWORK
4045 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4046 L:      linux-media@vger.kernel.org
4047 S:      Supported
4048 W:      http://linuxtv.org
4049 T:      git git://linuxtv.org/media_tree.git
4050 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4051 F:      Documentation/devicetree/bindings/media/cec.txt
4052 F:      Documentation/driver-api/media/cec-core.rst
4053 F:      Documentation/userspace-api/media/cec
4054 F:      drivers/media/cec/
4055 F:      drivers/media/rc/keymaps/rc-cec.c
4056 F:      include/media/cec-notifier.h
4057 F:      include/media/cec.h
4058 F:      include/uapi/linux/cec-funcs.h
4059 F:      include/uapi/linux/cec.h
4060
4061 CEC GPIO DRIVER
4062 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4063 L:      linux-media@vger.kernel.org
4064 S:      Supported
4065 W:      http://linuxtv.org
4066 T:      git git://linuxtv.org/media_tree.git
4067 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4068 F:      drivers/media/cec/platform/cec-gpio/
4069
4070 CELL BROADBAND ENGINE ARCHITECTURE
4071 M:      Arnd Bergmann <arnd@arndb.de>
4072 L:      linuxppc-dev@lists.ozlabs.org
4073 S:      Supported
4074 W:      http://www.ibm.com/developerworks/power/cell/
4075 F:      arch/powerpc/include/asm/cell*.h
4076 F:      arch/powerpc/include/asm/spu*.h
4077 F:      arch/powerpc/include/uapi/asm/spu*.h
4078 F:      arch/powerpc/oprofile/*cell*
4079 F:      arch/powerpc/platforms/cell/
4080
4081 CELLWISE CW2015 BATTERY DRIVER
4082 M:      Tobias Schrammm <t.schramm@manjaro.org>
4083 S:      Maintained
4084 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4085 F:      drivers/power/supply/cw2015_battery.c
4086
4087 CEPH COMMON CODE (LIBCEPH)
4088 M:      Ilya Dryomov <idryomov@gmail.com>
4089 M:      Jeff Layton <jlayton@kernel.org>
4090 L:      ceph-devel@vger.kernel.org
4091 S:      Supported
4092 W:      http://ceph.com/
4093 T:      git git://github.com/ceph/ceph-client.git
4094 F:      include/linux/ceph/
4095 F:      include/linux/crush/
4096 F:      net/ceph/
4097
4098 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4099 M:      Jeff Layton <jlayton@kernel.org>
4100 M:      Ilya Dryomov <idryomov@gmail.com>
4101 L:      ceph-devel@vger.kernel.org
4102 S:      Supported
4103 W:      http://ceph.com/
4104 T:      git git://github.com/ceph/ceph-client.git
4105 F:      Documentation/filesystems/ceph.rst
4106 F:      fs/ceph/
4107
4108 CERTIFICATE HANDLING
4109 M:      David Howells <dhowells@redhat.com>
4110 M:      David Woodhouse <dwmw2@infradead.org>
4111 L:      keyrings@vger.kernel.org
4112 S:      Maintained
4113 F:      Documentation/admin-guide/module-signing.rst
4114 F:      certs/
4115 F:      scripts/extract-cert.c
4116 F:      scripts/sign-file.c
4117
4118 CFAG12864B LCD DRIVER
4119 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4120 S:      Maintained
4121 F:      drivers/auxdisplay/cfag12864b.c
4122 F:      include/linux/cfag12864b.h
4123
4124 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4125 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4126 S:      Maintained
4127 F:      drivers/auxdisplay/cfag12864bfb.c
4128 F:      include/linux/cfag12864b.h
4129
4130 CHAR and MISC DRIVERS
4131 M:      Arnd Bergmann <arnd@arndb.de>
4132 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4133 S:      Supported
4134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4135 F:      drivers/char/
4136 F:      drivers/misc/
4137 F:      include/linux/miscdevice.h
4138 X:      drivers/char/agp/
4139 X:      drivers/char/hw_random/
4140 X:      drivers/char/ipmi/
4141 X:      drivers/char/random.c
4142 X:      drivers/char/tpm/
4143
4144 CHECKPATCH
4145 M:      Andy Whitcroft <apw@canonical.com>
4146 M:      Joe Perches <joe@perches.com>
4147 S:      Maintained
4148 F:      scripts/checkpatch.pl
4149
4150 CHINESE DOCUMENTATION
4151 M:      Harry Wei <harryxiyou@gmail.com>
4152 M:      Alex Shi <alex.shi@linux.alibaba.com>
4153 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4154 S:      Maintained
4155 F:      Documentation/translations/zh_CN/
4156
4157 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4158 M:      Peter Chen <Peter.Chen@nxp.com>
4159 L:      linux-usb@vger.kernel.org
4160 S:      Maintained
4161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4162 F:      drivers/usb/chipidea/
4163
4164 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4165 M:      Hans de Goede <hdegoede@redhat.com>
4166 L:      linux-input@vger.kernel.org
4167 S:      Maintained
4168 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4169 F:      drivers/input/touchscreen/chipone_icn8318.c
4170
4171 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4172 M:      Hans de Goede <hdegoede@redhat.com>
4173 L:      linux-input@vger.kernel.org
4174 S:      Maintained
4175 F:      drivers/input/touchscreen/chipone_icn8505.c
4176
4177 CHROME HARDWARE PLATFORM SUPPORT
4178 M:      Benson Leung <bleung@chromium.org>
4179 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4180 S:      Maintained
4181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4182 F:      drivers/platform/chrome/
4183
4184 CHROMEOS EC CODEC DRIVER
4185 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4186 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4187 R:      Guenter Roeck <groeck@chromium.org>
4188 S:      Maintained
4189 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4190 F:      sound/soc/codecs/cros_ec_codec.*
4191
4192 CHROMEOS EC SUBDRIVERS
4193 M:      Benson Leung <bleung@chromium.org>
4194 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4195 R:      Guenter Roeck <groeck@chromium.org>
4196 S:      Maintained
4197 F:      drivers/power/supply/cros_usbpd-charger.c
4198 N:      cros_ec
4199 N:      cros-ec
4200
4201 CHRONTEL CH7322 CEC DRIVER
4202 M:      Jeff Chase <jnchase@google.com>
4203 L:      linux-media@vger.kernel.org
4204 S:      Maintained
4205 T:      git git://linuxtv.org/media_tree.git
4206 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4207 F:      drivers/media/cec/i2c/ch7322.c
4208
4209 CIRRUS LOGIC AUDIO CODEC DRIVERS
4210 M:      James Schulman <james.schulman@cirrus.com>
4211 M:      David Rhodes <david.rhodes@cirrus.com>
4212 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4213 L:      patches@opensource.cirrus.com
4214 S:      Maintained
4215 F:      sound/soc/codecs/cs*
4216
4217 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4218 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4219 L:      netdev@vger.kernel.org
4220 S:      Maintained
4221 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4222
4223 CIRRUS LOGIC LOCHNAGAR DRIVER
4224 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4225 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4226 L:      patches@opensource.cirrus.com
4227 S:      Supported
4228 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4229 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4230 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4231 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4232 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4233 F:      Documentation/hwmon/lochnagar.rst
4234 F:      drivers/clk/clk-lochnagar.c
4235 F:      drivers/hwmon/lochnagar-hwmon.c
4236 F:      drivers/mfd/lochnagar-i2c.c
4237 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4238 F:      drivers/regulator/lochnagar-regulator.c
4239 F:      include/dt-bindings/clk/lochnagar.h
4240 F:      include/dt-bindings/pinctrl/lochnagar.h
4241 F:      include/linux/mfd/lochnagar*
4242 F:      sound/soc/codecs/lochnagar-sc.c
4243
4244 CIRRUS LOGIC MADERA CODEC DRIVERS
4245 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4246 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4247 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4248 L:      patches@opensource.cirrus.com
4249 S:      Supported
4250 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4251 T:      git https://github.com/CirrusLogic/linux-drivers.git
4252 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4253 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4254 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4255 F:      drivers/gpio/gpio-madera*
4256 F:      drivers/irqchip/irq-madera*
4257 F:      drivers/mfd/cs47l*
4258 F:      drivers/mfd/madera*
4259 F:      drivers/pinctrl/cirrus/*
4260 F:      include/dt-bindings/sound/madera*
4261 F:      include/linux/irqchip/irq-madera*
4262 F:      include/linux/mfd/madera/*
4263 F:      include/sound/madera*
4264 F:      sound/soc/codecs/cs47l*
4265 F:      sound/soc/codecs/madera*
4266
4267 CISCO FCOE HBA DRIVER
4268 M:      Satish Kharat <satishkh@cisco.com>
4269 M:      Sesidhar Baddela <sebaddel@cisco.com>
4270 M:      Karan Tilak Kumar <kartilak@cisco.com>
4271 L:      linux-scsi@vger.kernel.org
4272 S:      Supported
4273 F:      drivers/scsi/fnic/
4274
4275 CISCO SCSI HBA DRIVER
4276 M:      Karan Tilak Kumar <kartilak@cisco.com>
4277 M:      Sesidhar Baddela <sebaddel@cisco.com>
4278 L:      linux-scsi@vger.kernel.org
4279 S:      Supported
4280 F:      drivers/scsi/snic/
4281
4282 CISCO VIC ETHERNET NIC DRIVER
4283 M:      Christian Benvenuti <benve@cisco.com>
4284 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4285 S:      Supported
4286 F:      drivers/net/ethernet/cisco/enic/
4287
4288 CISCO VIC LOW LATENCY NIC DRIVER
4289 M:      Christian Benvenuti <benve@cisco.com>
4290 M:      Nelson Escobar <neescoba@cisco.com>
4291 S:      Supported
4292 F:      drivers/infiniband/hw/usnic/
4293
4294 CLANG-FORMAT FILE
4295 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4296 S:      Maintained
4297 F:      .clang-format
4298
4299 CLANG/LLVM BUILD SUPPORT
4300 M:      Nathan Chancellor <natechancellor@gmail.com>
4301 M:      Nick Desaulniers <ndesaulniers@google.com>
4302 L:      clang-built-linux@googlegroups.com
4303 S:      Supported
4304 W:      https://clangbuiltlinux.github.io/
4305 B:      https://github.com/ClangBuiltLinux/linux/issues
4306 C:      irc://chat.freenode.net/clangbuiltlinux
4307 F:      Documentation/kbuild/llvm.rst
4308 F:      scripts/clang-tools/
4309 F:      scripts/lld-version.sh
4310 K:      \b(?i:clang|llvm)\b
4311
4312 CLEANCACHE API
4313 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4314 L:      linux-kernel@vger.kernel.org
4315 S:      Maintained
4316 F:      include/linux/cleancache.h
4317 F:      mm/cleancache.c
4318
4319 CLK API
4320 M:      Russell King <linux@armlinux.org.uk>
4321 L:      linux-clk@vger.kernel.org
4322 S:      Maintained
4323 F:      include/linux/clk.h
4324
4325 CLOCKSOURCE, CLOCKEVENT DRIVERS
4326 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4327 M:      Thomas Gleixner <tglx@linutronix.de>
4328 L:      linux-kernel@vger.kernel.org
4329 S:      Supported
4330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4331 F:      Documentation/devicetree/bindings/timer/
4332 F:      drivers/clocksource/
4333
4334 CMPC ACPI DRIVER
4335 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4336 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4337 L:      platform-driver-x86@vger.kernel.org
4338 S:      Supported
4339 F:      drivers/platform/x86/classmate-laptop.c
4340
4341 COBALT MEDIA DRIVER
4342 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4343 L:      linux-media@vger.kernel.org
4344 S:      Supported
4345 W:      https://linuxtv.org
4346 T:      git git://linuxtv.org/media_tree.git
4347 F:      drivers/media/pci/cobalt/
4348
4349 COCCINELLE/Semantic Patches (SmPL)
4350 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4351 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4352 M:      Nicolas Palix <nicolas.palix@imag.fr>
4353 M:      Michal Marek <michal.lkml@markovi.net>
4354 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4355 S:      Supported
4356 W:      http://coccinelle.lip6.fr/
4357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4358 F:      Documentation/dev-tools/coccinelle.rst
4359 F:      scripts/coccicheck
4360 F:      scripts/coccinelle/
4361
4362 CODA FILE SYSTEM
4363 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4364 M:      coda@cs.cmu.edu
4365 L:      codalist@coda.cs.cmu.edu
4366 S:      Maintained
4367 W:      http://www.coda.cs.cmu.edu/
4368 F:      Documentation/filesystems/coda.rst
4369 F:      fs/coda/
4370 F:      include/linux/coda*.h
4371 F:      include/uapi/linux/coda*.h
4372
4373 CODA V4L2 MEM2MEM DRIVER
4374 M:      Philipp Zabel <p.zabel@pengutronix.de>
4375 L:      linux-media@vger.kernel.org
4376 S:      Maintained
4377 F:      Documentation/devicetree/bindings/media/coda.yaml
4378 F:      drivers/media/platform/coda/
4379
4380 CODE OF CONDUCT
4381 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4382 S:      Supported
4383 F:      Documentation/process/code-of-conduct-interpretation.rst
4384 F:      Documentation/process/code-of-conduct.rst
4385
4386 COMMON CLK FRAMEWORK
4387 M:      Michael Turquette <mturquette@baylibre.com>
4388 M:      Stephen Boyd <sboyd@kernel.org>
4389 L:      linux-clk@vger.kernel.org
4390 S:      Maintained
4391 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4393 F:      Documentation/devicetree/bindings/clock/
4394 F:      drivers/clk/
4395 F:      include/linux/clk-pr*
4396 F:      include/linux/clk/
4397 F:      include/linux/of_clk.h
4398 X:      drivers/clk/clkdev.c
4399
4400 COMMON INTERNET FILE SYSTEM (CIFS)
4401 M:      Steve French <sfrench@samba.org>
4402 L:      linux-cifs@vger.kernel.org
4403 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4404 S:      Supported
4405 W:      http://linux-cifs.samba.org/
4406 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4407 F:      Documentation/admin-guide/cifs/
4408 F:      fs/cifs/
4409
4410 COMPACTPCI HOTPLUG CORE
4411 M:      Scott Murray <scott@spiteful.org>
4412 L:      linux-pci@vger.kernel.org
4413 S:      Maintained
4414 F:      drivers/pci/hotplug/cpci_hotplug*
4415
4416 COMPACTPCI HOTPLUG GENERIC DRIVER
4417 M:      Scott Murray <scott@spiteful.org>
4418 L:      linux-pci@vger.kernel.org
4419 S:      Maintained
4420 F:      drivers/pci/hotplug/cpcihp_generic.c
4421
4422 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4423 M:      Scott Murray <scott@spiteful.org>
4424 L:      linux-pci@vger.kernel.org
4425 S:      Maintained
4426 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4427
4428 COMPAL LAPTOP SUPPORT
4429 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4430 L:      platform-driver-x86@vger.kernel.org
4431 S:      Maintained
4432 F:      drivers/platform/x86/compal-laptop.c
4433
4434 COMPILER ATTRIBUTES
4435 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4436 S:      Maintained
4437 F:      include/linux/compiler_attributes.h
4438
4439 CONEXANT ACCESSRUNNER USB DRIVER
4440 L:      accessrunner-general@lists.sourceforge.net
4441 S:      Orphan
4442 W:      http://accessrunner.sourceforge.net/
4443 F:      drivers/usb/atm/cxacru.c
4444
4445 CONFIGFS
4446 M:      Joel Becker <jlbec@evilplan.org>
4447 M:      Christoph Hellwig <hch@lst.de>
4448 S:      Supported
4449 T:      git git://git.infradead.org/users/hch/configfs.git
4450 F:      fs/configfs/
4451 F:      include/linux/configfs.h
4452 F:      samples/configfs/
4453
4454 CONSOLE SUBSYSTEM
4455 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4456 S:      Supported
4457 F:      drivers/video/console/
4458 F:      include/linux/console*
4459
4460 CONTROL GROUP (CGROUP)
4461 M:      Tejun Heo <tj@kernel.org>
4462 M:      Li Zefan <lizefan@huawei.com>
4463 M:      Johannes Weiner <hannes@cmpxchg.org>
4464 L:      cgroups@vger.kernel.org
4465 S:      Maintained
4466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4467 F:      Documentation/admin-guide/cgroup-v1/
4468 F:      Documentation/admin-guide/cgroup-v2.rst
4469 F:      include/linux/cgroup*
4470 F:      kernel/cgroup/
4471
4472 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4473 M:      Tejun Heo <tj@kernel.org>
4474 M:      Jens Axboe <axboe@kernel.dk>
4475 L:      cgroups@vger.kernel.org
4476 L:      linux-block@vger.kernel.org
4477 T:      git git://git.kernel.dk/linux-block
4478 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4479 F:      block/bfq-cgroup.c
4480 F:      block/blk-cgroup.c
4481 F:      block/blk-iolatency.c
4482 F:      block/blk-throttle.c
4483 F:      include/linux/blk-cgroup.h
4484
4485 CONTROL GROUP - CPUSET
4486 M:      Li Zefan <lizefan@huawei.com>
4487 L:      cgroups@vger.kernel.org
4488 S:      Maintained
4489 W:      http://www.bullopensource.org/cpuset/
4490 W:      http://oss.sgi.com/projects/cpusets/
4491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4492 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4493 F:      include/linux/cpuset.h
4494 F:      kernel/cgroup/cpuset.c
4495
4496 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4497 M:      Johannes Weiner <hannes@cmpxchg.org>
4498 M:      Michal Hocko <mhocko@kernel.org>
4499 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4500 L:      cgroups@vger.kernel.org
4501 L:      linux-mm@kvack.org
4502 S:      Maintained
4503 F:      mm/memcontrol.c
4504 F:      mm/swap_cgroup.c
4505
4506 CORETEMP HARDWARE MONITORING DRIVER
4507 M:      Fenghua Yu <fenghua.yu@intel.com>
4508 L:      linux-hwmon@vger.kernel.org
4509 S:      Maintained
4510 F:      Documentation/hwmon/coretemp.rst
4511 F:      drivers/hwmon/coretemp.c
4512
4513 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4514 M:      Marius Zachmann <mail@mariuszachmann.de>
4515 L:      linux-hwmon@vger.kernel.org
4516 S:      Maintained
4517 F:      drivers/hwmon/corsair-cpro.c
4518
4519 COSA/SRP SYNC SERIAL DRIVER
4520 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4521 S:      Maintained
4522 W:      http://www.fi.muni.cz/~kas/cosa/
4523 F:      drivers/net/wan/cosa*
4524
4525 COUNTER SUBSYSTEM
4526 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4527 L:      linux-iio@vger.kernel.org
4528 S:      Maintained
4529 F:      Documentation/ABI/testing/sysfs-bus-counter*
4530 F:      Documentation/driver-api/generic-counter.rst
4531 F:      drivers/counter/
4532 F:      include/linux/counter.h
4533 F:      include/linux/counter_enum.h
4534
4535 CPMAC ETHERNET DRIVER
4536 M:      Florian Fainelli <f.fainelli@gmail.com>
4537 L:      netdev@vger.kernel.org
4538 S:      Maintained
4539 F:      drivers/net/ethernet/ti/cpmac.c
4540
4541 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4542 M:      Viresh Kumar <viresh.kumar@linaro.org>
4543 M:      Sudeep Holla <sudeep.holla@arm.com>
4544 L:      linux-pm@vger.kernel.org
4545 S:      Maintained
4546 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4547 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4548
4549 CPU FREQUENCY SCALING FRAMEWORK
4550 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4551 M:      Viresh Kumar <viresh.kumar@linaro.org>
4552 L:      linux-pm@vger.kernel.org
4553 S:      Maintained
4554 B:      https://bugzilla.kernel.org
4555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4557 F:      Documentation/admin-guide/pm/cpufreq.rst
4558 F:      Documentation/admin-guide/pm/intel_pstate.rst
4559 F:      Documentation/cpu-freq/
4560 F:      Documentation/devicetree/bindings/cpufreq/
4561 F:      drivers/cpufreq/
4562 F:      include/linux/cpufreq.h
4563 F:      include/linux/sched/cpufreq.h
4564 F:      kernel/sched/cpufreq*.c
4565 F:      tools/testing/selftests/cpufreq/
4566
4567 CPU IDLE TIME MANAGEMENT FRAMEWORK
4568 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4569 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4570 L:      linux-pm@vger.kernel.org
4571 S:      Maintained
4572 B:      https://bugzilla.kernel.org
4573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4574 F:      Documentation/admin-guide/pm/cpuidle.rst
4575 F:      Documentation/driver-api/pm/cpuidle.rst
4576 F:      drivers/cpuidle/*
4577 F:      include/linux/cpuidle.h
4578
4579 CPU POWER MONITORING SUBSYSTEM
4580 M:      Thomas Renninger <trenn@suse.com>
4581 M:      Shuah Khan <shuah@kernel.org>
4582 M:      Shuah Khan <skhan@linuxfoundation.org>
4583 L:      linux-pm@vger.kernel.org
4584 S:      Maintained
4585 F:      tools/power/cpupower/
4586
4587 CPUID/MSR DRIVER
4588 M:      "H. Peter Anvin" <hpa@zytor.com>
4589 S:      Maintained
4590 F:      arch/x86/kernel/cpuid.c
4591 F:      arch/x86/kernel/msr.c
4592
4593 CPUIDLE DRIVER - ARM BIG LITTLE
4594 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4595 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4596 L:      linux-pm@vger.kernel.org
4597 L:      linux-arm-kernel@lists.infradead.org
4598 S:      Maintained
4599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4600 F:      drivers/cpuidle/cpuidle-big_little.c
4601
4602 CPUIDLE DRIVER - ARM EXYNOS
4603 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4604 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4605 M:      Kukjin Kim <kgene@kernel.org>
4606 L:      linux-pm@vger.kernel.org
4607 L:      linux-samsung-soc@vger.kernel.org
4608 S:      Supported
4609 F:      arch/arm/mach-exynos/pm.c
4610 F:      drivers/cpuidle/cpuidle-exynos.c
4611
4612 CPUIDLE DRIVER - ARM PSCI
4613 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4614 M:      Sudeep Holla <sudeep.holla@arm.com>
4615 L:      linux-pm@vger.kernel.org
4616 L:      linux-arm-kernel@lists.infradead.org
4617 S:      Supported
4618 F:      drivers/cpuidle/cpuidle-psci.c
4619
4620 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4621 M:      Ulf Hansson <ulf.hansson@linaro.org>
4622 L:      linux-pm@vger.kernel.org
4623 L:      linux-arm-kernel@lists.infradead.org
4624 S:      Supported
4625 F:      drivers/cpuidle/cpuidle-psci.h
4626 F:      drivers/cpuidle/cpuidle-psci-domain.c
4627
4628 CRAMFS FILESYSTEM
4629 M:      Nicolas Pitre <nico@fluxnic.net>
4630 S:      Maintained
4631 F:      Documentation/filesystems/cramfs.rst
4632 F:      fs/cramfs/
4633
4634 CREATIVE SB0540
4635 M:      Bastien Nocera <hadess@hadess.net>
4636 L:      linux-input@vger.kernel.org
4637 S:      Maintained
4638 F:      drivers/hid/hid-creative-sb0540.c
4639
4640 CRYPTO API
4641 M:      Herbert Xu <herbert@gondor.apana.org.au>
4642 M:      "David S. Miller" <davem@davemloft.net>
4643 L:      linux-crypto@vger.kernel.org
4644 S:      Maintained
4645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4647 F:      Documentation/crypto/
4648 F:      Documentation/devicetree/bindings/crypto/
4649 F:      arch/*/crypto/
4650 F:      crypto/
4651 F:      drivers/crypto/
4652 F:      include/crypto/
4653 F:      include/linux/crypto*
4654 F:      lib/crypto/
4655
4656 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4657 M:      Neil Horman <nhorman@tuxdriver.com>
4658 L:      linux-crypto@vger.kernel.org
4659 S:      Maintained
4660 F:      crypto/ansi_cprng.c
4661 F:      crypto/rng.c
4662
4663 CS3308 MEDIA DRIVER
4664 M:      Hans Verkuil <hverkuil@xs4all.nl>
4665 L:      linux-media@vger.kernel.org
4666 S:      Odd Fixes
4667 W:      http://linuxtv.org
4668 T:      git git://linuxtv.org/media_tree.git
4669 F:      drivers/media/i2c/cs3308.c
4670
4671 CS5535 Audio ALSA driver
4672 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4673 S:      Maintained
4674 F:      sound/pci/cs5535audio/
4675
4676 CSI DRIVERS FOR ALLWINNER V3s
4677 M:      Yong Deng <yong.deng@magewell.com>
4678 L:      linux-media@vger.kernel.org
4679 S:      Maintained
4680 T:      git git://linuxtv.org/media_tree.git
4681 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4682 F:      drivers/media/platform/sunxi/sun6i-csi/
4683
4684 CW1200 WLAN driver
4685 M:      Solomon Peachy <pizza@shaftnet.org>
4686 S:      Maintained
4687 F:      drivers/net/wireless/st/cw1200/
4688
4689 CX18 VIDEO4LINUX DRIVER
4690 M:      Andy Walls <awalls@md.metrocast.net>
4691 L:      linux-media@vger.kernel.org
4692 S:      Maintained
4693 W:      https://linuxtv.org
4694 T:      git git://linuxtv.org/media_tree.git
4695 F:      drivers/media/pci/cx18/
4696 F:      include/uapi/linux/ivtv*
4697
4698 CX2341X MPEG ENCODER HELPER MODULE
4699 M:      Hans Verkuil <hverkuil@xs4all.nl>
4700 L:      linux-media@vger.kernel.org
4701 S:      Maintained
4702 W:      https://linuxtv.org
4703 T:      git git://linuxtv.org/media_tree.git
4704 F:      drivers/media/common/cx2341x*
4705 F:      include/media/drv-intf/cx2341x.h
4706
4707 CX24120 MEDIA DRIVER
4708 M:      Jemma Denson <jdenson@gmail.com>
4709 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4710 L:      linux-media@vger.kernel.org
4711 S:      Maintained
4712 W:      https://linuxtv.org
4713 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4714 F:      drivers/media/dvb-frontends/cx24120*
4715
4716 CX88 VIDEO4LINUX DRIVER
4717 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4718 L:      linux-media@vger.kernel.org
4719 S:      Odd fixes
4720 W:      https://linuxtv.org
4721 T:      git git://linuxtv.org/media_tree.git
4722 F:      Documentation/driver-api/media/drivers/cx88*
4723 F:      drivers/media/pci/cx88/
4724
4725 CXD2820R MEDIA DRIVER
4726 M:      Antti Palosaari <crope@iki.fi>
4727 L:      linux-media@vger.kernel.org
4728 S:      Maintained
4729 W:      https://linuxtv.org
4730 W:      http://palosaari.fi/linux/
4731 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4732 T:      git git://linuxtv.org/anttip/media_tree.git
4733 F:      drivers/media/dvb-frontends/cxd2820r*
4734
4735 CXGB3 ETHERNET DRIVER (CXGB3)
4736 M:      Raju Rangoju <rajur@chelsio.com>
4737 L:      netdev@vger.kernel.org
4738 S:      Supported
4739 W:      http://www.chelsio.com
4740 F:      drivers/net/ethernet/chelsio/cxgb3/
4741
4742 CXGB3 ISCSI DRIVER (CXGB3I)
4743 M:      Karen Xie <kxie@chelsio.com>
4744 L:      linux-scsi@vger.kernel.org
4745 S:      Supported
4746 W:      http://www.chelsio.com
4747 F:      drivers/scsi/cxgbi/cxgb3i
4748
4749 CXGB4 CRYPTO DRIVER (chcr)
4750 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4751 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4752 M:      Rohit Maheshwari <rohitm@chelsio.com>
4753 L:      linux-crypto@vger.kernel.org
4754 S:      Supported
4755 W:      http://www.chelsio.com
4756 F:      drivers/crypto/chelsio
4757
4758 CXGB4 INLINE CRYPTO DRIVER
4759 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4760 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4761 M:      Rohit Maheshwari <rohitm@chelsio.com>
4762 L:      netdev@vger.kernel.org
4763 S:      Supported
4764 W:      http://www.chelsio.com
4765 F:      drivers/net/ethernet/chelsio/inline_crypto/
4766
4767 CXGB4 ETHERNET DRIVER (CXGB4)
4768 M:      Raju Rangoju <rajur@chelsio.com>
4769 L:      netdev@vger.kernel.org
4770 S:      Supported
4771 W:      http://www.chelsio.com
4772 F:      drivers/net/ethernet/chelsio/cxgb4/
4773
4774 CXGB4 ISCSI DRIVER (CXGB4I)
4775 M:      Karen Xie <kxie@chelsio.com>
4776 L:      linux-scsi@vger.kernel.org
4777 S:      Supported
4778 W:      http://www.chelsio.com
4779 F:      drivers/scsi/cxgbi/cxgb4i
4780
4781 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4782 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4783 L:      linux-rdma@vger.kernel.org
4784 S:      Supported
4785 W:      http://www.openfabrics.org
4786 F:      drivers/infiniband/hw/cxgb4/
4787 F:      include/uapi/rdma/cxgb4-abi.h
4788
4789 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4790 M:      Raju Rangoju <rajur@chelsio.com>
4791 L:      netdev@vger.kernel.org
4792 S:      Supported
4793 W:      http://www.chelsio.com
4794 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4795
4796 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4797 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4798 M:      Andrew Donnellan <ajd@linux.ibm.com>
4799 L:      linuxppc-dev@lists.ozlabs.org
4800 S:      Supported
4801 F:      Documentation/ABI/testing/sysfs-class-cxl
4802 F:      Documentation/powerpc/cxl.rst
4803 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4804 F:      drivers/misc/cxl/
4805 F:      include/misc/cxl*
4806 F:      include/uapi/misc/cxl.h
4807
4808 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4809 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4810 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4811 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4812 L:      linux-scsi@vger.kernel.org
4813 S:      Supported
4814 F:      Documentation/powerpc/cxlflash.rst
4815 F:      drivers/scsi/cxlflash/
4816 F:      include/uapi/scsi/cxlflash_ioctl.h
4817
4818 CYBERPRO FB DRIVER
4819 M:      Russell King <linux@armlinux.org.uk>
4820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4821 S:      Maintained
4822 W:      http://www.armlinux.org.uk/
4823 F:      drivers/video/fbdev/cyber2000fb.*
4824
4825 CYCLADES ASYNC MUX DRIVER
4826 S:      Orphan
4827 W:      http://www.cyclades.com/
4828 F:      drivers/tty/cyclades.c
4829 F:      include/linux/cyclades.h
4830 F:      include/uapi/linux/cyclades.h
4831
4832 CYCLADES PC300 DRIVER
4833 S:      Orphan
4834 W:      http://www.cyclades.com/
4835 F:      drivers/net/wan/pc300*
4836
4837 CYPRESS_FIRMWARE MEDIA DRIVER
4838 M:      Antti Palosaari <crope@iki.fi>
4839 L:      linux-media@vger.kernel.org
4840 S:      Maintained
4841 W:      https://linuxtv.org
4842 W:      http://palosaari.fi/linux/
4843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4844 T:      git git://linuxtv.org/anttip/media_tree.git
4845 F:      drivers/media/common/cypress_firmware*
4846
4847 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4848 M:      Linus Walleij <linus.walleij@linaro.org>
4849 L:      linux-input@vger.kernel.org
4850 S:      Maintained
4851 F:      drivers/input/touchscreen/cy8ctma140.c
4852
4853 CYTTSP TOUCHSCREEN DRIVER
4854 M:      Ferruh Yigit <fery@cypress.com>
4855 L:      linux-input@vger.kernel.org
4856 S:      Supported
4857 F:      drivers/input/touchscreen/cyttsp*
4858 F:      include/linux/input/cyttsp.h
4859
4860 D-LINK DIR-685 TOUCHKEYS DRIVER
4861 M:      Linus Walleij <linus.walleij@linaro.org>
4862 L:      linux-input@vger.kernel.org
4863 S:      Supported
4864 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4865
4866 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4867 M:      Joshua Kinard <kumba@gentoo.org>
4868 S:      Maintained
4869 F:      drivers/rtc/rtc-ds1685.c
4870 F:      include/linux/rtc/ds1685.h
4871
4872 DAMA SLAVE for AX.25
4873 M:      Joerg Reuter <jreuter@yaina.de>
4874 L:      linux-hams@vger.kernel.org
4875 S:      Maintained
4876 W:      http://yaina.de/jreuter/
4877 W:      http://www.qsl.net/dl1bke/
4878 F:      net/ax25/af_ax25.c
4879 F:      net/ax25/ax25_dev.c
4880 F:      net/ax25/ax25_ds_*
4881 F:      net/ax25/ax25_in.c
4882 F:      net/ax25/ax25_out.c
4883 F:      net/ax25/ax25_timer.c
4884 F:      net/ax25/sysctl_net_ax25.c
4885
4886 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4887 L:      netdev@vger.kernel.org
4888 S:      Orphan
4889 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4890 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4891
4892 DC390/AM53C974 SCSI driver
4893 M:      Hannes Reinecke <hare@suse.com>
4894 L:      linux-scsi@vger.kernel.org
4895 S:      Maintained
4896 F:      drivers/scsi/am53c974.c
4897
4898 DC395x SCSI driver
4899 M:      Oliver Neukum <oliver@neukum.org>
4900 M:      Ali Akcaagac <aliakc@web.de>
4901 M:      Jamie Lenehan <lenehan@twibble.org>
4902 L:      dc395x@twibble.org
4903 S:      Maintained
4904 W:      http://twibble.org/dist/dc395x/
4905 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4906 F:      Documentation/scsi/dc395x.rst
4907 F:      drivers/scsi/dc395x.*
4908
4909 DCCP PROTOCOL
4910 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4911 L:      dccp@vger.kernel.org
4912 S:      Maintained
4913 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4914 F:      include/linux/dccp.h
4915 F:      include/linux/tfrc.h
4916 F:      include/uapi/linux/dccp.h
4917 F:      net/dccp/
4918
4919 DECnet NETWORK LAYER
4920 L:      linux-decnet-user@lists.sourceforge.net
4921 S:      Orphan
4922 W:      http://linux-decnet.sourceforge.net
4923 F:      Documentation/networking/decnet.rst
4924 F:      net/decnet/
4925
4926 DECSTATION PLATFORM SUPPORT
4927 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4928 L:      linux-mips@vger.kernel.org
4929 S:      Maintained
4930 W:      http://www.linux-mips.org/wiki/DECstation
4931 F:      arch/mips/dec/
4932 F:      arch/mips/include/asm/dec/
4933 F:      arch/mips/include/asm/mach-dec/
4934
4935 DEFXX FDDI NETWORK DRIVER
4936 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4937 S:      Maintained
4938 F:      drivers/net/fddi/defxx.*
4939
4940 DEFZA FDDI NETWORK DRIVER
4941 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4942 S:      Maintained
4943 F:      drivers/net/fddi/defza.*
4944
4945 DEINTERLACE DRIVERS FOR ALLWINNER H3
4946 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4947 L:      linux-media@vger.kernel.org
4948 S:      Maintained
4949 T:      git git://linuxtv.org/media_tree.git
4950 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4951 F:      drivers/media/platform/sunxi/sun8i-di/
4952
4953 DELL LAPTOP DRIVER
4954 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4955 M:      Pali Rohár <pali@kernel.org>
4956 L:      platform-driver-x86@vger.kernel.org
4957 S:      Maintained
4958 F:      drivers/platform/x86/dell-laptop.c
4959
4960 DELL LAPTOP FREEFALL DRIVER
4961 M:      Pali Rohár <pali@kernel.org>
4962 S:      Maintained
4963 F:      drivers/platform/x86/dell-smo8800.c
4964
4965 DELL LAPTOP RBTN DRIVER
4966 M:      Pali Rohár <pali@kernel.org>
4967 S:      Maintained
4968 F:      drivers/platform/x86/dell-rbtn.*
4969
4970 DELL LAPTOP SMM DRIVER
4971 M:      Pali Rohár <pali@kernel.org>
4972 S:      Maintained
4973 F:      drivers/hwmon/dell-smm-hwmon.c
4974 F:      include/uapi/linux/i8k.h
4975
4976 DELL REMOTE BIOS UPDATE DRIVER
4977 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4978 L:      platform-driver-x86@vger.kernel.org
4979 S:      Maintained
4980 F:      drivers/platform/x86/dell_rbu.c
4981
4982 DELL SMBIOS DRIVER
4983 M:      Pali Rohár <pali@kernel.org>
4984 M:      Mario Limonciello <mario.limonciello@dell.com>
4985 L:      platform-driver-x86@vger.kernel.org
4986 S:      Maintained
4987 F:      drivers/platform/x86/dell-smbios.*
4988
4989 DELL SMBIOS SMM DRIVER
4990 M:      Mario Limonciello <mario.limonciello@dell.com>
4991 L:      platform-driver-x86@vger.kernel.org
4992 S:      Maintained
4993 F:      drivers/platform/x86/dell-smbios-smm.c
4994
4995 DELL SMBIOS WMI DRIVER
4996 M:      Mario Limonciello <mario.limonciello@dell.com>
4997 L:      platform-driver-x86@vger.kernel.org
4998 S:      Maintained
4999 F:      drivers/platform/x86/dell-smbios-wmi.c
5000 F:      tools/wmi/dell-smbios-example.c
5001
5002 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5003 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5004 L:      platform-driver-x86@vger.kernel.org
5005 S:      Maintained
5006 F:      Documentation/driver-api/dcdbas.rst
5007 F:      drivers/platform/x86/dcdbas.*
5008
5009 DELL WMI DESCRIPTOR DRIVER
5010 M:      Mario Limonciello <mario.limonciello@dell.com>
5011 S:      Maintained
5012 F:      drivers/platform/x86/dell-wmi-descriptor.c
5013
5014 DELL WMI NOTIFICATIONS DRIVER
5015 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5016 M:      Pali Rohár <pali@kernel.org>
5017 S:      Maintained
5018 F:      drivers/platform/x86/dell-wmi.c
5019
5020 DELTA ST MEDIA DRIVER
5021 M:      Hugues Fruchet <hugues.fruchet@st.com>
5022 L:      linux-media@vger.kernel.org
5023 S:      Supported
5024 W:      https://linuxtv.org
5025 T:      git git://linuxtv.org/media_tree.git
5026 F:      drivers/media/platform/sti/delta
5027
5028 DENALI NAND DRIVER
5029 L:      linux-mtd@lists.infradead.org
5030 S:      Orphan
5031 F:      drivers/mtd/nand/raw/denali*
5032
5033 DESIGNWARE EDMA CORE IP DRIVER
5034 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5035 L:      dmaengine@vger.kernel.org
5036 S:      Maintained
5037 F:      drivers/dma/dw-edma/
5038 F:      include/linux/dma/edma.h
5039
5040 DESIGNWARE USB2 DRD IP DRIVER
5041 M:      Minas Harutyunyan <hminas@synopsys.com>
5042 L:      linux-usb@vger.kernel.org
5043 S:      Maintained
5044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5045 F:      drivers/usb/dwc2/
5046
5047 DESIGNWARE USB3 DRD IP DRIVER
5048 M:      Felipe Balbi <balbi@kernel.org>
5049 L:      linux-usb@vger.kernel.org
5050 S:      Maintained
5051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5052 F:      drivers/usb/dwc3/
5053
5054 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5055 M:      Andreas Klinger <ak@it-klinger.de>
5056 L:      linux-iio@vger.kernel.org
5057 S:      Maintained
5058 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5059 F:      drivers/iio/proximity/srf*.c
5060
5061 DEVICE COREDUMP (DEV_COREDUMP)
5062 M:      Johannes Berg <johannes@sipsolutions.net>
5063 L:      linux-kernel@vger.kernel.org
5064 S:      Maintained
5065 F:      drivers/base/devcoredump.c
5066 F:      include/linux/devcoredump.h
5067
5068 DEVICE DEPENDENCY HELPER SCRIPT
5069 M:      Saravana Kannan <saravanak@google.com>
5070 L:      linux-kernel@vger.kernel.org
5071 S:      Maintained
5072 F:      scripts/dev-needs.sh
5073
5074 DEVICE DIRECT ACCESS (DAX)
5075 M:      Dan Williams <dan.j.williams@intel.com>
5076 M:      Vishal Verma <vishal.l.verma@intel.com>
5077 M:      Dave Jiang <dave.jiang@intel.com>
5078 L:      linux-nvdimm@lists.01.org
5079 S:      Supported
5080 F:      drivers/dax/
5081
5082 DEVICE FREQUENCY (DEVFREQ)
5083 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5084 M:      Kyungmin Park <kyungmin.park@samsung.com>
5085 M:      Chanwoo Choi <cw00.choi@samsung.com>
5086 L:      linux-pm@vger.kernel.org
5087 S:      Maintained
5088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5089 F:      Documentation/devicetree/bindings/devfreq/
5090 F:      drivers/devfreq/
5091 F:      include/linux/devfreq.h
5092 F:      include/trace/events/devfreq.h
5093
5094 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5095 M:      Chanwoo Choi <cw00.choi@samsung.com>
5096 L:      linux-pm@vger.kernel.org
5097 S:      Supported
5098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5099 F:      Documentation/devicetree/bindings/devfreq/event/
5100 F:      drivers/devfreq/devfreq-event.c
5101 F:      drivers/devfreq/event/
5102 F:      include/dt-bindings/pmu/exynos_ppmu.h
5103 F:      include/linux/devfreq-event.h
5104
5105 DEVICE NUMBER REGISTRY
5106 M:      Torben Mathiasen <device@lanana.org>
5107 S:      Maintained
5108 W:      http://lanana.org/docs/device-list/index.html
5109
5110 DEVICE-MAPPER  (LVM)
5111 M:      Alasdair Kergon <agk@redhat.com>
5112 M:      Mike Snitzer <snitzer@redhat.com>
5113 M:      dm-devel@redhat.com
5114 L:      dm-devel@redhat.com
5115 S:      Maintained
5116 W:      http://sources.redhat.com/dm
5117 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5119 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5120 F:      Documentation/admin-guide/device-mapper/
5121 F:      drivers/md/Kconfig
5122 F:      drivers/md/Makefile
5123 F:      drivers/md/dm*
5124 F:      drivers/md/persistent-data/
5125 F:      include/linux/device-mapper.h
5126 F:      include/linux/dm-*.h
5127 F:      include/uapi/linux/dm-*.h
5128
5129 DEVLINK
5130 M:      Jiri Pirko <jiri@nvidia.com>
5131 L:      netdev@vger.kernel.org
5132 S:      Supported
5133 F:      Documentation/networking/devlink
5134 F:      include/net/devlink.h
5135 F:      include/uapi/linux/devlink.h
5136 F:      net/core/devlink.c
5137
5138 DIALOG SEMICONDUCTOR DRIVERS
5139 M:      Support Opensource <support.opensource@diasemi.com>
5140 S:      Supported
5141 W:      http://www.dialog-semiconductor.com/products
5142 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5143 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5144 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5145 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5146 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5147 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5148 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5149 F:      Documentation/hwmon/da90??.rst
5150 F:      drivers/gpio/gpio-da90??.c
5151 F:      drivers/hwmon/da90??-hwmon.c
5152 F:      drivers/iio/adc/da91??-*.c
5153 F:      drivers/input/misc/da90??_onkey.c
5154 F:      drivers/input/touchscreen/da9052_tsi.c
5155 F:      drivers/leds/leds-da90??.c
5156 F:      drivers/mfd/da903x.c
5157 F:      drivers/mfd/da90??-*.c
5158 F:      drivers/mfd/da91??-*.c
5159 F:      drivers/pinctrl/pinctrl-da90??.c
5160 F:      drivers/power/supply/da9052-battery.c
5161 F:      drivers/power/supply/da91??-*.c
5162 F:      drivers/regulator/da9???-regulator.[ch]
5163 F:      drivers/regulator/slg51000-regulator.[ch]
5164 F:      drivers/rtc/rtc-da90??.c
5165 F:      drivers/thermal/da90??-thermal.c
5166 F:      drivers/video/backlight/da90??_bl.c
5167 F:      drivers/watchdog/da90??_wdt.c
5168 F:      include/linux/mfd/da903x.h
5169 F:      include/linux/mfd/da9052/
5170 F:      include/linux/mfd/da9055/
5171 F:      include/linux/mfd/da9062/
5172 F:      include/linux/mfd/da9063/
5173 F:      include/linux/mfd/da9150/
5174 F:      include/linux/regulator/da9211.h
5175 F:      include/sound/da[79]*.h
5176 F:      sound/soc/codecs/da[79]*.[ch]
5177
5178 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5179 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5180 L:      linux-gpio@vger.kernel.org
5181 S:      Maintained
5182 F:      drivers/gpio/gpio-gpio-mm.c
5183
5184 DIOLAN U2C-12 I2C DRIVER
5185 M:      Guenter Roeck <linux@roeck-us.net>
5186 L:      linux-i2c@vger.kernel.org
5187 S:      Maintained
5188 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5189
5190 DIRECTORY NOTIFICATION (DNOTIFY)
5191 M:      Jan Kara <jack@suse.cz>
5192 R:      Amir Goldstein <amir73il@gmail.com>
5193 L:      linux-fsdevel@vger.kernel.org
5194 S:      Maintained
5195 F:      Documentation/filesystems/dnotify.rst
5196 F:      fs/notify/dnotify/
5197 F:      include/linux/dnotify.h
5198
5199 DISK GEOMETRY AND PARTITION HANDLING
5200 M:      Andries Brouwer <aeb@cwi.nl>
5201 S:      Maintained
5202 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5203 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5204 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5205
5206 DISKQUOTA
5207 M:      Jan Kara <jack@suse.com>
5208 S:      Maintained
5209 F:      Documentation/filesystems/quota.rst
5210 F:      fs/quota/
5211 F:      include/linux/quota*.h
5212 F:      include/uapi/linux/quota*.h
5213
5214 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5215 M:      Bernie Thompson <bernie@plugable.com>
5216 L:      linux-fbdev@vger.kernel.org
5217 S:      Maintained
5218 W:      http://plugable.com/category/projects/udlfb/
5219 F:      Documentation/fb/udlfb.rst
5220 F:      drivers/video/fbdev/udlfb.c
5221 F:      include/video/udlfb.h
5222
5223 DISTRIBUTED LOCK MANAGER (DLM)
5224 M:      Christine Caulfield <ccaulfie@redhat.com>
5225 M:      David Teigland <teigland@redhat.com>
5226 L:      cluster-devel@redhat.com
5227 S:      Supported
5228 W:      http://sources.redhat.com/cluster/
5229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5230 F:      fs/dlm/
5231
5232 DMA BUFFER SHARING FRAMEWORK
5233 M:      Sumit Semwal <sumit.semwal@linaro.org>
5234 M:      Christian König <christian.koenig@amd.com>
5235 L:      linux-media@vger.kernel.org
5236 L:      dri-devel@lists.freedesktop.org
5237 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5238 S:      Maintained
5239 T:      git git://anongit.freedesktop.org/drm/drm-misc
5240 F:      Documentation/driver-api/dma-buf.rst
5241 F:      drivers/dma-buf/
5242 F:      include/linux/*fence.h
5243 F:      include/linux/dma-buf*
5244 F:      include/linux/dma-resv.h
5245 K:      \bdma_(?:buf|fence|resv)\b
5246
5247 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5248 M:      Vinod Koul <vkoul@kernel.org>
5249 L:      dmaengine@vger.kernel.org
5250 S:      Maintained
5251 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5253 F:      Documentation/devicetree/bindings/dma/
5254 F:      Documentation/driver-api/dmaengine/
5255 F:      drivers/dma/
5256 F:      include/linux/dmaengine.h
5257 F:      include/linux/of_dma.h
5258
5259 DMA MAPPING HELPERS
5260 M:      Christoph Hellwig <hch@lst.de>
5261 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5262 R:      Robin Murphy <robin.murphy@arm.com>
5263 L:      iommu@lists.linux-foundation.org
5264 S:      Supported
5265 W:      http://git.infradead.org/users/hch/dma-mapping.git
5266 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5267 F:      include/asm-generic/dma-mapping.h
5268 F:      include/linux/dma-direct.h
5269 F:      include/linux/dma-mapping.h
5270 F:      include/linux/dma-map-ops.h
5271 F:      kernel/dma/
5272
5273 DMA-BUF HEAPS FRAMEWORK
5274 M:      Sumit Semwal <sumit.semwal@linaro.org>
5275 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5276 R:      Liam Mark <lmark@codeaurora.org>
5277 R:      Laura Abbott <labbott@redhat.com>
5278 R:      Brian Starkey <Brian.Starkey@arm.com>
5279 R:      John Stultz <john.stultz@linaro.org>
5280 L:      linux-media@vger.kernel.org
5281 L:      dri-devel@lists.freedesktop.org
5282 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5283 S:      Maintained
5284 T:      git git://anongit.freedesktop.org/drm/drm-misc
5285 F:      drivers/dma-buf/dma-heap.c
5286 F:      drivers/dma-buf/heaps/*
5287 F:      include/linux/dma-heap.h
5288 F:      include/uapi/linux/dma-heap.h
5289
5290 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5291 M:      Lukasz Luba <lukasz.luba@arm.com>
5292 L:      linux-pm@vger.kernel.org
5293 L:      linux-samsung-soc@vger.kernel.org
5294 S:      Maintained
5295 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5296 F:      drivers/memory/samsung/exynos5422-dmc.c
5297
5298 DME1737 HARDWARE MONITOR DRIVER
5299 M:      Juerg Haefliger <juergh@gmail.com>
5300 L:      linux-hwmon@vger.kernel.org
5301 S:      Maintained
5302 F:      Documentation/hwmon/dme1737.rst
5303 F:      drivers/hwmon/dme1737.c
5304
5305 DMI/SMBIOS SUPPORT
5306 M:      Jean Delvare <jdelvare@suse.com>
5307 S:      Maintained
5308 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5309 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5310 F:      drivers/firmware/dmi-id.c
5311 F:      drivers/firmware/dmi_scan.c
5312 F:      include/linux/dmi.h
5313
5314 DOCUMENTATION
5315 M:      Jonathan Corbet <corbet@lwn.net>
5316 L:      linux-doc@vger.kernel.org
5317 S:      Maintained
5318 P:      Documentation/doc-guide/maintainer-profile.rst
5319 T:      git git://git.lwn.net/linux.git docs-next
5320 F:      Documentation/
5321 F:      scripts/documentation-file-ref-check
5322 F:      scripts/kernel-doc
5323 F:      scripts/sphinx-pre-install
5324 X:      Documentation/ABI/
5325 X:      Documentation/admin-guide/media/
5326 X:      Documentation/devicetree/
5327 X:      Documentation/driver-api/media/
5328 X:      Documentation/firmware-guide/acpi/
5329 X:      Documentation/i2c/
5330 X:      Documentation/power/
5331 X:      Documentation/spi/
5332 X:      Documentation/userspace-api/media/
5333
5334 DOCUMENTATION SCRIPTS
5335 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5336 L:      linux-doc@vger.kernel.org
5337 S:      Maintained
5338 F:      Documentation/sphinx/parse-headers.pl
5339 F:      scripts/documentation-file-ref-check
5340 F:      scripts/sphinx-pre-install
5341
5342 DOCUMENTATION/ITALIAN
5343 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5344 L:      linux-doc@vger.kernel.org
5345 S:      Maintained
5346 F:      Documentation/translations/it_IT
5347
5348 DONGWOON DW9714 LENS VOICE COIL DRIVER
5349 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5350 L:      linux-media@vger.kernel.org
5351 S:      Maintained
5352 T:      git git://linuxtv.org/media_tree.git
5353 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5354 F:      drivers/media/i2c/dw9714.c
5355
5356 DONGWOON DW9768 LENS VOICE COIL DRIVER
5357 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5358 L:      linux-media@vger.kernel.org
5359 S:      Maintained
5360 T:      git git://linuxtv.org/media_tree.git
5361 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5362 F:      drivers/media/i2c/dw9768.c
5363
5364 DONGWOON DW9807 LENS VOICE COIL DRIVER
5365 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5366 L:      linux-media@vger.kernel.org
5367 S:      Maintained
5368 T:      git git://linuxtv.org/media_tree.git
5369 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5370 F:      drivers/media/i2c/dw9807-vcm.c
5371
5372 DOUBLETALK DRIVER
5373 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5374 L:      blinux-list@redhat.com
5375 S:      Maintained
5376 F:      drivers/char/dtlk.c
5377 F:      include/linux/dtlk.h
5378
5379 DPAA2 DATAPATH I/O (DPIO) DRIVER
5380 M:      Roy Pledge <Roy.Pledge@nxp.com>
5381 L:      linux-kernel@vger.kernel.org
5382 S:      Maintained
5383 F:      drivers/soc/fsl/dpio
5384
5385 DPAA2 ETHERNET DRIVER
5386 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5387 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5388 L:      netdev@vger.kernel.org
5389 S:      Maintained
5390 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5391 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5392 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5393 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5394 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5395 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5396 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5397 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5398 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5399
5400 DPAA2 ETHERNET SWITCH DRIVER
5401 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5402 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5403 L:      linux-kernel@vger.kernel.org
5404 S:      Maintained
5405 F:      drivers/staging/fsl-dpaa2/ethsw
5406
5407 DPT_I2O SCSI RAID DRIVER
5408 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5409 L:      linux-scsi@vger.kernel.org
5410 S:      Maintained
5411 W:      http://www.adaptec.com/
5412 F:      drivers/scsi/dpt*
5413 F:      drivers/scsi/dpt/
5414
5415 DRBD DRIVER
5416 M:      Philipp Reisner <philipp.reisner@linbit.com>
5417 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5418 L:      drbd-dev@lists.linbit.com
5419 S:      Supported
5420 W:      http://www.drbd.org
5421 T:      git git://git.linbit.com/linux-drbd.git
5422 T:      git git://git.linbit.com/drbd-8.4.git
5423 F:      Documentation/admin-guide/blockdev/
5424 F:      drivers/block/drbd/
5425 F:      lib/lru_cache.c
5426
5427 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5428 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5429 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5430 S:      Supported
5431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5432 F:      Documentation/core-api/kobject.rst
5433 F:      drivers/base/
5434 F:      fs/debugfs/
5435 F:      fs/sysfs/
5436 F:      include/linux/debugfs.h
5437 F:      include/linux/kobj*
5438 F:      lib/kobj*
5439
5440 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5441 M:      Nishanth Menon <nm@ti.com>
5442 L:      linux-pm@vger.kernel.org
5443 S:      Maintained
5444 F:      drivers/soc/ti/smartreflex.c
5445 F:      include/linux/power/smartreflex.h
5446
5447 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5448 M:      Maxime Ripard <mripard@kernel.org>
5449 M:      Chen-Yu Tsai <wens@csie.org>
5450 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5451 L:      dri-devel@lists.freedesktop.org
5452 S:      Supported
5453 T:      git git://anongit.freedesktop.org/drm/drm-misc
5454 F:      drivers/gpu/drm/sun4i/sun8i*
5455
5456 DRM DRIVER FOR ARM PL111 CLCD
5457 M:      Eric Anholt <eric@anholt.net>
5458 S:      Supported
5459 T:      git git://anongit.freedesktop.org/drm/drm-misc
5460 F:      drivers/gpu/drm/pl111/
5461
5462 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5463 M:      Linus Walleij <linus.walleij@linaro.org>
5464 S:      Maintained
5465 T:      git git://anongit.freedesktop.org/drm/drm-misc
5466 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5467 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5468
5469 DRM DRIVER FOR ASPEED BMC GFX
5470 M:      Joel Stanley <joel@jms.id.au>
5471 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5472 S:      Supported
5473 T:      git git://anongit.freedesktop.org/drm/drm-misc
5474 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5475 F:      drivers/gpu/drm/aspeed/
5476
5477 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5478 M:      Dave Airlie <airlied@redhat.com>
5479 R:      Thomas Zimmermann <tzimmermann@suse.de>
5480 L:      dri-devel@lists.freedesktop.org
5481 S:      Supported
5482 T:      git git://anongit.freedesktop.org/drm/drm-misc
5483 F:      drivers/gpu/drm/ast/
5484
5485 DRM DRIVER FOR BOCHS VIRTUAL GPU
5486 M:      Gerd Hoffmann <kraxel@redhat.com>
5487 L:      virtualization@lists.linux-foundation.org
5488 S:      Maintained
5489 T:      git git://anongit.freedesktop.org/drm/drm-misc
5490 F:      drivers/gpu/drm/bochs/
5491
5492 DRM DRIVER FOR BOE HIMAX8279D PANELS
5493 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5494 S:      Maintained
5495 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5496 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5497
5498 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5499 M:      Linus Walleij <linus.walleij@linaro.org>
5500 S:      Maintained
5501 T:      git git://anongit.freedesktop.org/drm/drm-misc
5502 F:      drivers/gpu/drm/tve200/
5503
5504 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5505 M:      Icenowy Zheng <icenowy@aosc.io>
5506 S:      Maintained
5507 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5508 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5509
5510 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5511 M:      Jagan Teki <jagan@amarulasolutions.com>
5512 S:      Maintained
5513 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5514 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5515
5516 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5517 M:      Hans de Goede <hdegoede@redhat.com>
5518 S:      Maintained
5519 T:      git git://anongit.freedesktop.org/drm/drm-misc
5520 F:      drivers/gpu/drm/tiny/gm12u320.c
5521
5522 DRM DRIVER FOR HX8357D PANELS
5523 M:      Eric Anholt <eric@anholt.net>
5524 S:      Maintained
5525 T:      git git://anongit.freedesktop.org/drm/drm-misc
5526 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5527 F:      drivers/gpu/drm/tiny/hx8357d.c
5528
5529 DRM DRIVER FOR ILITEK ILI9225 PANELS
5530 M:      David Lechner <david@lechnology.com>
5531 S:      Maintained
5532 T:      git git://anongit.freedesktop.org/drm/drm-misc
5533 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5534 F:      drivers/gpu/drm/tiny/ili9225.c
5535
5536 DRM DRIVER FOR ILITEK ILI9486 PANELS
5537 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5538 S:      Maintained
5539 T:      git git://anongit.freedesktop.org/drm/drm-misc
5540 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5541 F:      drivers/gpu/drm/tiny/ili9486.c
5542
5543 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5544 S:      Orphan / Obsolete
5545 F:      drivers/gpu/drm/i810/
5546 F:      include/uapi/drm/i810_drm.h
5547
5548 DRM DRIVER FOR LVDS PANELS
5549 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5550 L:      dri-devel@lists.freedesktop.org
5551 T:      git git://anongit.freedesktop.org/drm/drm-misc
5552 S:      Maintained
5553 F:      drivers/gpu/drm/panel/panel-lvds.c
5554 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5555
5556 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5557 M:      Guido Günther <agx@sigxcpu.org>
5558 R:      Purism Kernel Team <kernel@puri.sm>
5559 S:      Maintained
5560 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5561 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5562
5563 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5564 S:      Orphan / Obsolete
5565 F:      drivers/gpu/drm/mga/
5566 F:      include/uapi/drm/mga_drm.h
5567
5568 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5569 M:      Dave Airlie <airlied@redhat.com>
5570 R:      Thomas Zimmermann <tzimmermann@suse.de>
5571 L:      dri-devel@lists.freedesktop.org
5572 S:      Supported
5573 T:      git git://anongit.freedesktop.org/drm/drm-misc
5574 F:      drivers/gpu/drm/mgag200/
5575
5576 DRM DRIVER FOR MI0283QT
5577 M:      Noralf Trønnes <noralf@tronnes.org>
5578 S:      Maintained
5579 T:      git git://anongit.freedesktop.org/drm/drm-misc
5580 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5581 F:      drivers/gpu/drm/tiny/mi0283qt.c
5582
5583 DRM DRIVER FOR MSM ADRENO GPU
5584 M:      Rob Clark <robdclark@gmail.com>
5585 M:      Sean Paul <sean@poorly.run>
5586 L:      linux-arm-msm@vger.kernel.org
5587 L:      dri-devel@lists.freedesktop.org
5588 L:      freedreno@lists.freedesktop.org
5589 S:      Maintained
5590 T:      git https://gitlab.freedesktop.org/drm/msm.git
5591 F:      Documentation/devicetree/bindings/display/msm/
5592 F:      drivers/gpu/drm/msm/
5593 F:      include/uapi/drm/msm_drm.h
5594
5595 DRM DRIVER FOR NOVATEK NT35510 PANELS
5596 M:      Linus Walleij <linus.walleij@linaro.org>
5597 S:      Maintained
5598 T:      git git://anongit.freedesktop.org/drm/drm-misc
5599 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5600 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5601
5602 DRM DRIVER FOR NOVATEK NT36672A PANELS
5603 M:      Sumit Semwal <sumit.semwal@linaro.org>
5604 S:      Maintained
5605 T:      git git://anongit.freedesktop.org/drm/drm-misc
5606 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5607 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5608
5609 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5610 M:      Ben Skeggs <bskeggs@redhat.com>
5611 L:      dri-devel@lists.freedesktop.org
5612 L:      nouveau@lists.freedesktop.org
5613 S:      Supported
5614 T:      git git://github.com/skeggsb/linux
5615 F:      drivers/gpu/drm/nouveau/
5616 F:      include/uapi/drm/nouveau_drm.h
5617
5618 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5619 M:      Stefan Mavrodiev <stefan@olimex.com>
5620 S:      Maintained
5621 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5622 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5623
5624 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5625 M:      Noralf Trønnes <noralf@tronnes.org>
5626 S:      Maintained
5627 T:      git git://anongit.freedesktop.org/drm/drm-misc
5628 F:      Documentation/devicetree/bindings/display/repaper.txt
5629 F:      drivers/gpu/drm/tiny/repaper.c
5630
5631 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5632 M:      Dave Airlie <airlied@redhat.com>
5633 M:      Gerd Hoffmann <kraxel@redhat.com>
5634 L:      virtualization@lists.linux-foundation.org
5635 S:      Obsolete
5636 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5637 T:      git git://anongit.freedesktop.org/drm/drm-misc
5638 F:      drivers/gpu/drm/tiny/cirrus.c
5639
5640 DRM DRIVER FOR QXL VIRTUAL GPU
5641 M:      Dave Airlie <airlied@redhat.com>
5642 M:      Gerd Hoffmann <kraxel@redhat.com>
5643 L:      virtualization@lists.linux-foundation.org
5644 L:      spice-devel@lists.freedesktop.org
5645 S:      Maintained
5646 T:      git git://anongit.freedesktop.org/drm/drm-misc
5647 F:      drivers/gpu/drm/qxl/
5648 F:      include/uapi/drm/qxl_drm.h
5649
5650 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5651 S:      Orphan / Obsolete
5652 F:      drivers/gpu/drm/r128/
5653 F:      include/uapi/drm/r128_drm.h
5654
5655 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5656 M:      Robert Chiras <robert.chiras@nxp.com>
5657 S:      Maintained
5658 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5659 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5660
5661 DRM DRIVER FOR SITRONIX ST7703 PANELS
5662 M:      Guido Günther <agx@sigxcpu.org>
5663 R:      Purism Kernel Team <kernel@puri.sm>
5664 R:      Ondrej Jirman <megous@megous.com>
5665 S:      Maintained
5666 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5667 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5668
5669 DRM DRIVER FOR SAVAGE VIDEO CARDS
5670 S:      Orphan / Obsolete
5671 F:      drivers/gpu/drm/savage/
5672 F:      include/uapi/drm/savage_drm.h
5673
5674 DRM DRIVER FOR SIS VIDEO CARDS
5675 S:      Orphan / Obsolete
5676 F:      drivers/gpu/drm/sis/
5677 F:      include/uapi/drm/sis_drm.h
5678
5679 DRM DRIVER FOR SITRONIX ST7586 PANELS
5680 M:      David Lechner <david@lechnology.com>
5681 S:      Maintained
5682 T:      git git://anongit.freedesktop.org/drm/drm-misc
5683 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5684 F:      drivers/gpu/drm/tiny/st7586.c
5685
5686 DRM DRIVER FOR SITRONIX ST7701 PANELS
5687 M:      Jagan Teki <jagan@amarulasolutions.com>
5688 S:      Maintained
5689 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5690 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5691
5692 DRM DRIVER FOR SITRONIX ST7735R PANELS
5693 M:      David Lechner <david@lechnology.com>
5694 S:      Maintained
5695 T:      git git://anongit.freedesktop.org/drm/drm-misc
5696 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5697 F:      drivers/gpu/drm/tiny/st7735r.c
5698
5699 DRM DRIVER FOR SONY ACX424AKP PANELS
5700 M:      Linus Walleij <linus.walleij@linaro.org>
5701 S:      Maintained
5702 T:      git git://anongit.freedesktop.org/drm/drm-misc
5703 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5704
5705 DRM DRIVER FOR ST-ERICSSON MCDE
5706 M:      Linus Walleij <linus.walleij@linaro.org>
5707 S:      Maintained
5708 T:      git git://anongit.freedesktop.org/drm/drm-misc
5709 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5710 F:      drivers/gpu/drm/mcde/
5711
5712 DRM DRIVER FOR TDFX VIDEO CARDS
5713 S:      Orphan / Obsolete
5714 F:      drivers/gpu/drm/tdfx/
5715
5716 DRM DRIVER FOR TPO TPG110 PANELS
5717 M:      Linus Walleij <linus.walleij@linaro.org>
5718 S:      Maintained
5719 T:      git git://anongit.freedesktop.org/drm/drm-misc
5720 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5721 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5722
5723 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5724 M:      Dave Airlie <airlied@redhat.com>
5725 R:      Sean Paul <sean@poorly.run>
5726 R:      Thomas Zimmermann <tzimmermann@suse.de>
5727 L:      dri-devel@lists.freedesktop.org
5728 S:      Supported
5729 T:      git git://anongit.freedesktop.org/drm/drm-misc
5730 F:      drivers/gpu/drm/udl/
5731
5732 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5733 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5734 M:      Melissa Wen <melissa.srw@gmail.com>
5735 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5736 R:      Daniel Vetter <daniel@ffwll.ch>
5737 L:      dri-devel@lists.freedesktop.org
5738 S:      Maintained
5739 T:      git git://anongit.freedesktop.org/drm/drm-misc
5740 F:      Documentation/gpu/vkms.rst
5741 F:      drivers/gpu/drm/vkms/
5742
5743 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5744 M:      Hans de Goede <hdegoede@redhat.com>
5745 L:      dri-devel@lists.freedesktop.org
5746 S:      Maintained
5747 T:      git git://anongit.freedesktop.org/drm/drm-misc
5748 F:      drivers/gpu/drm/vboxvideo/
5749
5750 DRM DRIVER FOR VMWARE VIRTUAL GPU
5751 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5752 M:      Roland Scheidegger <sroland@vmware.com>
5753 L:      dri-devel@lists.freedesktop.org
5754 S:      Supported
5755 T:      git git://people.freedesktop.org/~sroland/linux
5756 F:      drivers/gpu/drm/vmwgfx/
5757 F:      include/uapi/drm/vmwgfx_drm.h
5758
5759 DRM DRIVERS
5760 M:      David Airlie <airlied@linux.ie>
5761 M:      Daniel Vetter <daniel@ffwll.ch>
5762 L:      dri-devel@lists.freedesktop.org
5763 S:      Maintained
5764 B:      https://bugs.freedesktop.org/
5765 C:      irc://chat.freenode.net/dri-devel
5766 T:      git git://anongit.freedesktop.org/drm/drm
5767 F:      Documentation/devicetree/bindings/display/
5768 F:      Documentation/devicetree/bindings/gpu/
5769 F:      Documentation/gpu/
5770 F:      drivers/gpu/drm/
5771 F:      drivers/gpu/vga/
5772 F:      include/drm/
5773 F:      include/linux/vga*
5774 F:      include/uapi/drm/
5775
5776 DRM DRIVERS AND MISC GPU PATCHES
5777 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5778 M:      Maxime Ripard <mripard@kernel.org>
5779 M:      Thomas Zimmermann <tzimmermann@suse.de>
5780 S:      Maintained
5781 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5782 T:      git git://anongit.freedesktop.org/drm/drm-misc
5783 F:      Documentation/gpu/
5784 F:      drivers/gpu/drm/*
5785 F:      drivers/gpu/vga/
5786 F:      include/drm/drm*
5787 F:      include/linux/vga*
5788 F:      include/uapi/drm/drm*
5789
5790 DRM DRIVERS FOR ALLWINNER A10
5791 M:      Maxime Ripard <mripard@kernel.org>
5792 M:      Chen-Yu Tsai <wens@csie.org>
5793 L:      dri-devel@lists.freedesktop.org
5794 S:      Supported
5795 T:      git git://anongit.freedesktop.org/drm/drm-misc
5796 F:      Documentation/devicetree/bindings/display/allwinner*
5797 F:      drivers/gpu/drm/sun4i/
5798
5799 DRM DRIVERS FOR AMLOGIC SOCS
5800 M:      Neil Armstrong <narmstrong@baylibre.com>
5801 L:      dri-devel@lists.freedesktop.org
5802 L:      linux-amlogic@lists.infradead.org
5803 S:      Supported
5804 W:      http://linux-meson.com/
5805 T:      git git://anongit.freedesktop.org/drm/drm-misc
5806 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5807 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5808 F:      Documentation/gpu/meson.rst
5809 F:      drivers/gpu/drm/meson/
5810
5811 DRM DRIVERS FOR ATMEL HLCDC
5812 M:      Sam Ravnborg <sam@ravnborg.org>
5813 M:      Boris Brezillon <bbrezillon@kernel.org>
5814 L:      dri-devel@lists.freedesktop.org
5815 S:      Supported
5816 T:      git git://anongit.freedesktop.org/drm/drm-misc
5817 F:      Documentation/devicetree/bindings/display/atmel/
5818 F:      drivers/gpu/drm/atmel-hlcdc/
5819
5820 DRM DRIVERS FOR BRIDGE CHIPS
5821 M:      Andrzej Hajda <a.hajda@samsung.com>
5822 M:      Neil Armstrong <narmstrong@baylibre.com>
5823 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5824 R:      Jonas Karlman <jonas@kwiboo.se>
5825 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5826 S:      Maintained
5827 T:      git git://anongit.freedesktop.org/drm/drm-misc
5828 F:      drivers/gpu/drm/bridge/
5829
5830 DRM DRIVERS FOR EXYNOS
5831 M:      Inki Dae <inki.dae@samsung.com>
5832 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5833 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5834 M:      Kyungmin Park <kyungmin.park@samsung.com>
5835 L:      dri-devel@lists.freedesktop.org
5836 S:      Supported
5837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5838 F:      Documentation/devicetree/bindings/display/exynos/
5839 F:      drivers/gpu/drm/exynos/
5840 F:      include/uapi/drm/exynos_drm.h
5841
5842 DRM DRIVERS FOR FREESCALE DCU
5843 M:      Stefan Agner <stefan@agner.ch>
5844 M:      Alison Wang <alison.wang@nxp.com>
5845 L:      dri-devel@lists.freedesktop.org
5846 S:      Supported
5847 T:      git git://anongit.freedesktop.org/drm/drm-misc
5848 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5849 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5850 F:      drivers/gpu/drm/fsl-dcu/
5851
5852 DRM DRIVERS FOR FREESCALE IMX
5853 M:      Philipp Zabel <p.zabel@pengutronix.de>
5854 L:      dri-devel@lists.freedesktop.org
5855 S:      Maintained
5856 F:      Documentation/devicetree/bindings/display/imx/
5857 F:      drivers/gpu/drm/imx/
5858 F:      drivers/gpu/ipu-v3/
5859
5860 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5861 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5862 L:      dri-devel@lists.freedesktop.org
5863 S:      Maintained
5864 T:      git git://github.com/patjak/drm-gma500
5865 F:      drivers/gpu/drm/gma500/
5866
5867 DRM DRIVERS FOR HISILICON
5868 M:      Xinliang Liu <xinliang.liu@linaro.org>
5869 M:      Tian Tao  <tiantao6@hisilicon.com>
5870 R:      John Stultz <john.stultz@linaro.org>
5871 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5872 R:      Chen Feng <puck.chen@hisilicon.com>
5873 L:      dri-devel@lists.freedesktop.org
5874 S:      Maintained
5875 T:      git git://anongit.freedesktop.org/drm/drm-misc
5876 F:      Documentation/devicetree/bindings/display/hisilicon/
5877 F:      drivers/gpu/drm/hisilicon/
5878
5879 DRM DRIVERS FOR LIMA
5880 M:      Qiang Yu <yuq825@gmail.com>
5881 L:      dri-devel@lists.freedesktop.org
5882 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5883 S:      Maintained
5884 T:      git git://anongit.freedesktop.org/drm/drm-misc
5885 F:      drivers/gpu/drm/lima/
5886 F:      include/uapi/drm/lima_drm.h
5887
5888 DRM DRIVERS FOR MEDIATEK
5889 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5890 M:      Philipp Zabel <p.zabel@pengutronix.de>
5891 L:      dri-devel@lists.freedesktop.org
5892 S:      Supported
5893 F:      Documentation/devicetree/bindings/display/mediatek/
5894 F:      drivers/gpu/drm/mediatek/
5895 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5896 F:      drivers/phy/mediatek/phy-mtk-mipi*
5897
5898 DRM DRIVERS FOR NVIDIA TEGRA
5899 M:      Thierry Reding <thierry.reding@gmail.com>
5900 L:      dri-devel@lists.freedesktop.org
5901 L:      linux-tegra@vger.kernel.org
5902 S:      Supported
5903 T:      git git://anongit.freedesktop.org/tegra/linux.git
5904 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5905 F:      drivers/gpu/drm/tegra/
5906 F:      drivers/gpu/host1x/
5907 F:      include/linux/host1x.h
5908 F:      include/uapi/drm/tegra_drm.h
5909
5910 DRM DRIVERS FOR RENESAS
5911 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5912 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5913 L:      dri-devel@lists.freedesktop.org
5914 L:      linux-renesas-soc@vger.kernel.org
5915 S:      Supported
5916 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5917 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5918 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5919 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5920 F:      drivers/gpu/drm/rcar-du/
5921 F:      drivers/gpu/drm/shmobile/
5922 F:      include/linux/platform_data/shmob_drm.h
5923
5924 DRM DRIVERS FOR ROCKCHIP
5925 M:      Sandy Huang <hjc@rock-chips.com>
5926 M:      Heiko Stübner <heiko@sntech.de>
5927 L:      dri-devel@lists.freedesktop.org
5928 S:      Maintained
5929 T:      git git://anongit.freedesktop.org/drm/drm-misc
5930 F:      Documentation/devicetree/bindings/display/rockchip/
5931 F:      drivers/gpu/drm/rockchip/
5932
5933 DRM DRIVERS FOR STI
5934 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5935 M:      Vincent Abriou <vincent.abriou@st.com>
5936 L:      dri-devel@lists.freedesktop.org
5937 S:      Maintained
5938 T:      git git://anongit.freedesktop.org/drm/drm-misc
5939 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5940 F:      drivers/gpu/drm/sti
5941
5942 DRM DRIVERS FOR STM
5943 M:      Yannick Fertre <yannick.fertre@st.com>
5944 M:      Philippe Cornu <philippe.cornu@st.com>
5945 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5946 M:      Vincent Abriou <vincent.abriou@st.com>
5947 L:      dri-devel@lists.freedesktop.org
5948 S:      Maintained
5949 T:      git git://anongit.freedesktop.org/drm/drm-misc
5950 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5951 F:      drivers/gpu/drm/stm
5952
5953 DRM DRIVERS FOR TI KEYSTONE
5954 M:      Jyri Sarha <jsarha@ti.com>
5955 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5956 L:      dri-devel@lists.freedesktop.org
5957 S:      Maintained
5958 T:      git git://anongit.freedesktop.org/drm/drm-misc
5959 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5960 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5961 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5962 F:      drivers/gpu/drm/tidss/
5963
5964 DRM DRIVERS FOR TI LCDC
5965 M:      Jyri Sarha <jsarha@ti.com>
5966 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5967 L:      dri-devel@lists.freedesktop.org
5968 S:      Maintained
5969 F:      Documentation/devicetree/bindings/display/tilcdc/
5970 F:      drivers/gpu/drm/tilcdc/
5971
5972 DRM DRIVERS FOR TI OMAP
5973 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5974 L:      dri-devel@lists.freedesktop.org
5975 S:      Maintained
5976 F:      Documentation/devicetree/bindings/display/ti/
5977 F:      drivers/gpu/drm/omapdrm/
5978
5979 DRM DRIVERS FOR V3D
5980 M:      Eric Anholt <eric@anholt.net>
5981 S:      Supported
5982 T:      git git://anongit.freedesktop.org/drm/drm-misc
5983 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5984 F:      drivers/gpu/drm/v3d/
5985 F:      include/uapi/drm/v3d_drm.h
5986
5987 DRM DRIVERS FOR VC4
5988 M:      Eric Anholt <eric@anholt.net>
5989 M:      Maxime Ripard <mripard@kernel.org>
5990 S:      Supported
5991 T:      git git://github.com/anholt/linux
5992 T:      git git://anongit.freedesktop.org/drm/drm-misc
5993 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
5994 F:      drivers/gpu/drm/vc4/
5995 F:      include/uapi/drm/vc4_drm.h
5996
5997 DRM DRIVERS FOR VIVANTE GPU IP
5998 M:      Lucas Stach <l.stach@pengutronix.de>
5999 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6000 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6001 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6002 L:      dri-devel@lists.freedesktop.org
6003 S:      Maintained
6004 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6005 F:      drivers/gpu/drm/etnaviv/
6006 F:      include/uapi/drm/etnaviv_drm.h
6007
6008 DRM DRIVERS FOR XEN
6009 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6010 L:      dri-devel@lists.freedesktop.org
6011 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6012 S:      Supported
6013 T:      git git://anongit.freedesktop.org/drm/drm-misc
6014 F:      Documentation/gpu/xen-front.rst
6015 F:      drivers/gpu/drm/xen/
6016
6017 DRM DRIVERS FOR XILINX
6018 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6019 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6020 L:      dri-devel@lists.freedesktop.org
6021 S:      Maintained
6022 T:      git git://anongit.freedesktop.org/drm/drm-misc
6023 F:      Documentation/devicetree/bindings/display/xlnx/
6024 F:      drivers/gpu/drm/xlnx/
6025
6026 DRM DRIVERS FOR ZTE ZX
6027 M:      Shawn Guo <shawnguo@kernel.org>
6028 L:      dri-devel@lists.freedesktop.org
6029 S:      Maintained
6030 T:      git git://anongit.freedesktop.org/drm/drm-misc
6031 F:      Documentation/devicetree/bindings/display/zte,vou.txt
6032 F:      drivers/gpu/drm/zte/
6033
6034 DRM PANEL DRIVERS
6035 M:      Thierry Reding <thierry.reding@gmail.com>
6036 R:      Sam Ravnborg <sam@ravnborg.org>
6037 L:      dri-devel@lists.freedesktop.org
6038 S:      Maintained
6039 T:      git git://anongit.freedesktop.org/drm/drm-misc
6040 F:      Documentation/devicetree/bindings/display/panel/
6041 F:      drivers/gpu/drm/drm_panel.c
6042 F:      drivers/gpu/drm/panel/
6043 F:      include/drm/drm_panel.h
6044
6045 DRM TTM SUBSYSTEM
6046 M:      Christian Koenig <christian.koenig@amd.com>
6047 M:      Huang Rui <ray.huang@amd.com>
6048 L:      dri-devel@lists.freedesktop.org
6049 S:      Maintained
6050 T:      git git://people.freedesktop.org/~agd5f/linux
6051 F:      drivers/gpu/drm/ttm/
6052 F:      include/drm/ttm/
6053
6054 DSBR100 USB FM RADIO DRIVER
6055 M:      Alexey Klimov <klimov.linux@gmail.com>
6056 L:      linux-media@vger.kernel.org
6057 S:      Maintained
6058 T:      git git://linuxtv.org/media_tree.git
6059 F:      drivers/media/radio/dsbr100.c
6060
6061 DT3155 MEDIA DRIVER
6062 M:      Hans Verkuil <hverkuil@xs4all.nl>
6063 L:      linux-media@vger.kernel.org
6064 S:      Odd Fixes
6065 W:      https://linuxtv.org
6066 T:      git git://linuxtv.org/media_tree.git
6067 F:      drivers/media/pci/dt3155/
6068
6069 DVB_USB_AF9015 MEDIA DRIVER
6070 M:      Antti Palosaari <crope@iki.fi>
6071 L:      linux-media@vger.kernel.org
6072 S:      Maintained
6073 W:      https://linuxtv.org
6074 W:      http://palosaari.fi/linux/
6075 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6076 T:      git git://linuxtv.org/anttip/media_tree.git
6077 F:      drivers/media/usb/dvb-usb-v2/af9015*
6078
6079 DVB_USB_AF9035 MEDIA DRIVER
6080 M:      Antti Palosaari <crope@iki.fi>
6081 L:      linux-media@vger.kernel.org
6082 S:      Maintained
6083 W:      https://linuxtv.org
6084 W:      http://palosaari.fi/linux/
6085 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6086 T:      git git://linuxtv.org/anttip/media_tree.git
6087 F:      drivers/media/usb/dvb-usb-v2/af9035*
6088
6089 DVB_USB_ANYSEE MEDIA DRIVER
6090 M:      Antti Palosaari <crope@iki.fi>
6091 L:      linux-media@vger.kernel.org
6092 S:      Maintained
6093 W:      https://linuxtv.org
6094 W:      http://palosaari.fi/linux/
6095 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6096 T:      git git://linuxtv.org/anttip/media_tree.git
6097 F:      drivers/media/usb/dvb-usb-v2/anysee*
6098
6099 DVB_USB_AU6610 MEDIA DRIVER
6100 M:      Antti Palosaari <crope@iki.fi>
6101 L:      linux-media@vger.kernel.org
6102 S:      Maintained
6103 W:      https://linuxtv.org
6104 W:      http://palosaari.fi/linux/
6105 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6106 T:      git git://linuxtv.org/anttip/media_tree.git
6107 F:      drivers/media/usb/dvb-usb-v2/au6610*
6108
6109 DVB_USB_CE6230 MEDIA DRIVER
6110 M:      Antti Palosaari <crope@iki.fi>
6111 L:      linux-media@vger.kernel.org
6112 S:      Maintained
6113 W:      https://linuxtv.org
6114 W:      http://palosaari.fi/linux/
6115 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6116 T:      git git://linuxtv.org/anttip/media_tree.git
6117 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6118
6119 DVB_USB_CXUSB MEDIA DRIVER
6120 M:      Michael Krufky <mkrufky@linuxtv.org>
6121 L:      linux-media@vger.kernel.org
6122 S:      Maintained
6123 W:      https://linuxtv.org
6124 W:      http://github.com/mkrufky
6125 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6126 T:      git git://linuxtv.org/media_tree.git
6127 F:      drivers/media/usb/dvb-usb/cxusb*
6128
6129 DVB_USB_EC168 MEDIA DRIVER
6130 M:      Antti Palosaari <crope@iki.fi>
6131 L:      linux-media@vger.kernel.org
6132 S:      Maintained
6133 W:      https://linuxtv.org
6134 W:      http://palosaari.fi/linux/
6135 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6136 T:      git git://linuxtv.org/anttip/media_tree.git
6137 F:      drivers/media/usb/dvb-usb-v2/ec168*
6138
6139 DVB_USB_GL861 MEDIA DRIVER
6140 M:      Antti Palosaari <crope@iki.fi>
6141 L:      linux-media@vger.kernel.org
6142 S:      Maintained
6143 W:      https://linuxtv.org
6144 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6145 T:      git git://linuxtv.org/anttip/media_tree.git
6146 F:      drivers/media/usb/dvb-usb-v2/gl861*
6147
6148 DVB_USB_MXL111SF MEDIA DRIVER
6149 M:      Michael Krufky <mkrufky@linuxtv.org>
6150 L:      linux-media@vger.kernel.org
6151 S:      Maintained
6152 W:      https://linuxtv.org
6153 W:      http://github.com/mkrufky
6154 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6155 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6156 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6157
6158 DVB_USB_RTL28XXU MEDIA DRIVER
6159 M:      Antti Palosaari <crope@iki.fi>
6160 L:      linux-media@vger.kernel.org
6161 S:      Maintained
6162 W:      https://linuxtv.org
6163 W:      http://palosaari.fi/linux/
6164 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6165 T:      git git://linuxtv.org/anttip/media_tree.git
6166 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6167
6168 DVB_USB_V2 MEDIA DRIVER
6169 M:      Antti Palosaari <crope@iki.fi>
6170 L:      linux-media@vger.kernel.org
6171 S:      Maintained
6172 W:      https://linuxtv.org
6173 W:      http://palosaari.fi/linux/
6174 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6175 T:      git git://linuxtv.org/anttip/media_tree.git
6176 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6177 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6178
6179 DYNAMIC DEBUG
6180 M:      Jason Baron <jbaron@akamai.com>
6181 S:      Maintained
6182 F:      include/linux/dynamic_debug.h
6183 F:      lib/dynamic_debug.c
6184
6185 DYNAMIC INTERRUPT MODERATION
6186 M:      Tal Gilboa <talgi@nvidia.com>
6187 S:      Maintained
6188 F:      Documentation/networking/net_dim.rst
6189 F:      include/linux/dim.h
6190 F:      lib/dim/
6191
6192 DZ DECSTATION DZ11 SERIAL DRIVER
6193 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6194 S:      Maintained
6195 F:      drivers/tty/serial/dz.*
6196
6197 E3X0 POWER BUTTON DRIVER
6198 M:      Moritz Fischer <moritz.fischer@ettus.com>
6199 L:      usrp-users@lists.ettus.com
6200 S:      Supported
6201 W:      http://www.ettus.com
6202 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6203 F:      drivers/input/misc/e3x0-button.c
6204
6205 E4000 MEDIA DRIVER
6206 M:      Antti Palosaari <crope@iki.fi>
6207 L:      linux-media@vger.kernel.org
6208 S:      Maintained
6209 W:      https://linuxtv.org
6210 W:      http://palosaari.fi/linux/
6211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6212 T:      git git://linuxtv.org/anttip/media_tree.git
6213 F:      drivers/media/tuners/e4000*
6214
6215 EARTH_PT1 MEDIA DRIVER
6216 M:      Akihiro Tsukada <tskd08@gmail.com>
6217 L:      linux-media@vger.kernel.org
6218 S:      Odd Fixes
6219 F:      drivers/media/pci/pt1/
6220
6221 EARTH_PT3 MEDIA DRIVER
6222 M:      Akihiro Tsukada <tskd08@gmail.com>
6223 L:      linux-media@vger.kernel.org
6224 S:      Odd Fixes
6225 F:      drivers/media/pci/pt3/
6226
6227 EC100 MEDIA DRIVER
6228 M:      Antti Palosaari <crope@iki.fi>
6229 L:      linux-media@vger.kernel.org
6230 S:      Maintained
6231 W:      https://linuxtv.org
6232 W:      http://palosaari.fi/linux/
6233 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6234 T:      git git://linuxtv.org/anttip/media_tree.git
6235 F:      drivers/media/dvb-frontends/ec100*
6236
6237 ECRYPT FILE SYSTEM
6238 M:      Tyler Hicks <code@tyhicks.com>
6239 L:      ecryptfs@vger.kernel.org
6240 S:      Odd Fixes
6241 W:      http://ecryptfs.org
6242 W:      https://launchpad.net/ecryptfs
6243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6244 F:      Documentation/filesystems/ecryptfs.rst
6245 F:      fs/ecryptfs/
6246
6247 EDAC-AMD64
6248 M:      Borislav Petkov <bp@alien8.de>
6249 L:      linux-edac@vger.kernel.org
6250 S:      Maintained
6251 F:      drivers/edac/amd64_edac*
6252
6253 EDAC-ARMADA
6254 M:      Jan Luebbe <jlu@pengutronix.de>
6255 L:      linux-edac@vger.kernel.org
6256 S:      Maintained
6257 F:      drivers/edac/armada_xp_*
6258
6259 EDAC-AST2500
6260 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6261 S:      Supported
6262 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6263 F:      drivers/edac/aspeed_edac.c
6264
6265 EDAC-BLUEFIELD
6266 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6267 S:      Supported
6268 F:      drivers/edac/bluefield_edac.c
6269
6270 EDAC-CALXEDA
6271 M:      Andre Przywara <andre.przywara@arm.com>
6272 L:      linux-edac@vger.kernel.org
6273 S:      Maintained
6274 F:      drivers/edac/highbank*
6275
6276 EDAC-CAVIUM OCTEON
6277 M:      Ralf Baechle <ralf@linux-mips.org>
6278 L:      linux-edac@vger.kernel.org
6279 L:      linux-mips@vger.kernel.org
6280 S:      Supported
6281 F:      drivers/edac/octeon_edac*
6282
6283 EDAC-CAVIUM THUNDERX
6284 M:      Robert Richter <rric@kernel.org>
6285 L:      linux-edac@vger.kernel.org
6286 S:      Odd Fixes
6287 F:      drivers/edac/thunderx_edac*
6288
6289 EDAC-CORE
6290 M:      Borislav Petkov <bp@alien8.de>
6291 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6292 M:      Tony Luck <tony.luck@intel.com>
6293 R:      James Morse <james.morse@arm.com>
6294 R:      Robert Richter <rric@kernel.org>
6295 L:      linux-edac@vger.kernel.org
6296 S:      Supported
6297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6298 F:      Documentation/admin-guide/ras.rst
6299 F:      Documentation/driver-api/edac.rst
6300 F:      drivers/edac/
6301 F:      include/linux/edac.h
6302
6303 EDAC-DMC520
6304 M:      Lei Wang <lewan@microsoft.com>
6305 L:      linux-edac@vger.kernel.org
6306 S:      Supported
6307 F:      drivers/edac/dmc520_edac.c
6308
6309 EDAC-E752X
6310 M:      Mark Gross <mark.gross@intel.com>
6311 L:      linux-edac@vger.kernel.org
6312 S:      Maintained
6313 F:      drivers/edac/e752x_edac.c
6314
6315 EDAC-E7XXX
6316 L:      linux-edac@vger.kernel.org
6317 S:      Maintained
6318 F:      drivers/edac/e7xxx_edac.c
6319
6320 EDAC-FSL_DDR
6321 M:      York Sun <york.sun@nxp.com>
6322 L:      linux-edac@vger.kernel.org
6323 S:      Maintained
6324 F:      drivers/edac/fsl_ddr_edac.*
6325
6326 EDAC-GHES
6327 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6328 L:      linux-edac@vger.kernel.org
6329 S:      Maintained
6330 F:      drivers/edac/ghes_edac.c
6331
6332 EDAC-I10NM
6333 M:      Tony Luck <tony.luck@intel.com>
6334 L:      linux-edac@vger.kernel.org
6335 S:      Maintained
6336 F:      drivers/edac/i10nm_base.c
6337
6338 EDAC-I3000
6339 L:      linux-edac@vger.kernel.org
6340 S:      Orphan
6341 F:      drivers/edac/i3000_edac.c
6342
6343 EDAC-I5000
6344 L:      linux-edac@vger.kernel.org
6345 S:      Maintained
6346 F:      drivers/edac/i5000_edac.c
6347
6348 EDAC-I5400
6349 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6350 L:      linux-edac@vger.kernel.org
6351 S:      Maintained
6352 F:      drivers/edac/i5400_edac.c
6353
6354 EDAC-I7300
6355 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6356 L:      linux-edac@vger.kernel.org
6357 S:      Maintained
6358 F:      drivers/edac/i7300_edac.c
6359
6360 EDAC-I7CORE
6361 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6362 L:      linux-edac@vger.kernel.org
6363 S:      Maintained
6364 F:      drivers/edac/i7core_edac.c
6365
6366 EDAC-I82443BXGX
6367 M:      Tim Small <tim@buttersideup.com>
6368 L:      linux-edac@vger.kernel.org
6369 S:      Maintained
6370 F:      drivers/edac/i82443bxgx_edac.c
6371
6372 EDAC-I82975X
6373 M:      "Arvind R." <arvino55@gmail.com>
6374 L:      linux-edac@vger.kernel.org
6375 S:      Maintained
6376 F:      drivers/edac/i82975x_edac.c
6377
6378 EDAC-IE31200
6379 M:      Jason Baron <jbaron@akamai.com>
6380 L:      linux-edac@vger.kernel.org
6381 S:      Maintained
6382 F:      drivers/edac/ie31200_edac.c
6383
6384 EDAC-IGEN6
6385 M:      Tony Luck <tony.luck@intel.com>
6386 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6387 L:      linux-edac@vger.kernel.org
6388 S:      Maintained
6389 F:      drivers/edac/igen6_edac.c
6390
6391 EDAC-MPC85XX
6392 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6393 L:      linux-edac@vger.kernel.org
6394 S:      Maintained
6395 F:      drivers/edac/mpc85xx_edac.[ch]
6396
6397 EDAC-PASEMI
6398 M:      Egor Martovetsky <egor@pasemi.com>
6399 L:      linux-edac@vger.kernel.org
6400 S:      Maintained
6401 F:      drivers/edac/pasemi_edac.c
6402
6403 EDAC-PND2
6404 M:      Tony Luck <tony.luck@intel.com>
6405 L:      linux-edac@vger.kernel.org
6406 S:      Maintained
6407 F:      drivers/edac/pnd2_edac.[ch]
6408
6409 EDAC-QCOM
6410 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6411 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6412 L:      linux-arm-msm@vger.kernel.org
6413 L:      linux-edac@vger.kernel.org
6414 S:      Maintained
6415 F:      drivers/edac/qcom_edac.c
6416
6417 EDAC-R82600
6418 M:      Tim Small <tim@buttersideup.com>
6419 L:      linux-edac@vger.kernel.org
6420 S:      Maintained
6421 F:      drivers/edac/r82600_edac.c
6422
6423 EDAC-SBRIDGE
6424 M:      Tony Luck <tony.luck@intel.com>
6425 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6426 L:      linux-edac@vger.kernel.org
6427 S:      Maintained
6428 F:      drivers/edac/sb_edac.c
6429
6430 EDAC-SIFIVE
6431 M:      Yash Shah <yash.shah@sifive.com>
6432 L:      linux-edac@vger.kernel.org
6433 S:      Supported
6434 F:      drivers/edac/sifive_edac.c
6435
6436 EDAC-SKYLAKE
6437 M:      Tony Luck <tony.luck@intel.com>
6438 L:      linux-edac@vger.kernel.org
6439 S:      Maintained
6440 F:      drivers/edac/skx_*.[ch]
6441
6442 EDAC-TI
6443 M:      Tero Kristo <t-kristo@ti.com>
6444 L:      linux-edac@vger.kernel.org
6445 S:      Maintained
6446 F:      drivers/edac/ti_edac.c
6447
6448 EDIROL UA-101/UA-1000 DRIVER
6449 M:      Clemens Ladisch <clemens@ladisch.de>
6450 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6451 S:      Maintained
6452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6453 F:      sound/usb/misc/ua101.c
6454
6455 EFI TEST DRIVER
6456 M:      Ivan Hu <ivan.hu@canonical.com>
6457 M:      Ard Biesheuvel <ardb@kernel.org>
6458 L:      linux-efi@vger.kernel.org
6459 S:      Maintained
6460 F:      drivers/firmware/efi/test/
6461
6462 EFI VARIABLE FILESYSTEM
6463 M:      Matthew Garrett <matthew.garrett@nebula.com>
6464 M:      Jeremy Kerr <jk@ozlabs.org>
6465 M:      Ard Biesheuvel <ardb@kernel.org>
6466 L:      linux-efi@vger.kernel.org
6467 S:      Maintained
6468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6469 F:      fs/efivarfs/
6470
6471 EFIFB FRAMEBUFFER DRIVER
6472 M:      Peter Jones <pjones@redhat.com>
6473 L:      linux-fbdev@vger.kernel.org
6474 S:      Maintained
6475 F:      drivers/video/fbdev/efifb.c
6476
6477 EFS FILESYSTEM
6478 S:      Orphan
6479 W:      http://aeschi.ch.eu.org/efs/
6480 F:      fs/efs/
6481
6482 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6483 M:      Douglas Miller <dougmill@linux.ibm.com>
6484 L:      netdev@vger.kernel.org
6485 S:      Maintained
6486 F:      drivers/net/ethernet/ibm/ehea/
6487
6488 EM28XX VIDEO4LINUX DRIVER
6489 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6490 L:      linux-media@vger.kernel.org
6491 S:      Maintained
6492 W:      https://linuxtv.org
6493 T:      git git://linuxtv.org/media_tree.git
6494 F:      Documentation/admin-guide/media/em28xx*
6495 F:      drivers/media/usb/em28xx/
6496
6497 EMBEDDED LINUX
6498 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6499 M:      Matt Mackall <mpm@selenic.com>
6500 M:      David Woodhouse <dwmw2@infradead.org>
6501 L:      linux-embedded@vger.kernel.org
6502 S:      Maintained
6503
6504 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6505 M:      Adrian Hunter <adrian.hunter@intel.com>
6506 M:      Ritesh Harjani <riteshh@codeaurora.org>
6507 M:      Asutosh Das <asutoshd@codeaurora.org>
6508 L:      linux-mmc@vger.kernel.org
6509 S:      Maintained
6510 F:      drivers/mmc/host/cqhci*
6511
6512 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6513 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6514 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6515 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6516 L:      linux-scsi@vger.kernel.org
6517 S:      Supported
6518 W:      http://www.broadcom.com
6519 F:      drivers/scsi/be2iscsi/
6520
6521 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6522 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6523 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6524 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6525 L:      netdev@vger.kernel.org
6526 S:      Supported
6527 W:      http://www.emulex.com
6528 F:      drivers/net/ethernet/emulex/benet/
6529
6530 EMULEX ONECONNECT ROCE DRIVER
6531 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6532 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6533 L:      linux-rdma@vger.kernel.org
6534 S:      Odd Fixes
6535 W:      http://www.broadcom.com
6536 F:      drivers/infiniband/hw/ocrdma/
6537 F:      include/uapi/rdma/ocrdma-abi.h
6538
6539 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6540 M:      James Smart <james.smart@broadcom.com>
6541 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6542 L:      linux-scsi@vger.kernel.org
6543 S:      Supported
6544 W:      http://www.broadcom.com
6545 F:      drivers/scsi/lpfc/
6546
6547 ENE CB710 FLASH CARD READER DRIVER
6548 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6549 S:      Maintained
6550 F:      drivers/misc/cb710/
6551 F:      drivers/mmc/host/cb710-mmc.*
6552 F:      include/linux/cb710.h
6553
6554 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6555 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6556 S:      Maintained
6557 F:      drivers/media/rc/ene_ir.*
6558
6559 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6560 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6561 L:      linuxppc-dev@lists.ozlabs.org
6562 S:      Maintained
6563 F:      drivers/tty/ehv_bytechan.c
6564
6565 EPSON S1D13XXX FRAMEBUFFER DRIVER
6566 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6567 S:      Maintained
6568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6569 F:      drivers/video/fbdev/s1d13xxxfb.c
6570 F:      include/video/s1d13xxxfb.h
6571
6572 EROFS FILE SYSTEM
6573 M:      Gao Xiang <xiang@kernel.org>
6574 M:      Chao Yu <yuchao0@huawei.com>
6575 L:      linux-erofs@lists.ozlabs.org
6576 S:      Maintained
6577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6578 F:      Documentation/filesystems/erofs.rst
6579 F:      fs/erofs/
6580 F:      include/trace/events/erofs.h
6581
6582 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6583 M:      Jeff Layton <jlayton@kernel.org>
6584 S:      Maintained
6585 F:      include/linux/errseq.h
6586 F:      lib/errseq.c
6587
6588 ET131X NETWORK DRIVER
6589 M:      Mark Einon <mark.einon@gmail.com>
6590 S:      Odd Fixes
6591 F:      drivers/net/ethernet/agere/
6592
6593 ETHERNET BRIDGE
6594 M:      Roopa Prabhu <roopa@nvidia.com>
6595 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6596 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6597 L:      netdev@vger.kernel.org
6598 S:      Maintained
6599 W:      http://www.linuxfoundation.org/en/Net:Bridge
6600 F:      include/linux/netfilter_bridge/
6601 F:      net/bridge/
6602
6603 ETHERNET PHY LIBRARY
6604 M:      Andrew Lunn <andrew@lunn.ch>
6605 M:      Heiner Kallweit <hkallweit1@gmail.com>
6606 R:      Russell King <linux@armlinux.org.uk>
6607 L:      netdev@vger.kernel.org
6608 S:      Maintained
6609 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6610 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6611 F:      Documentation/devicetree/bindings/net/mdio*
6612 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6613 F:      Documentation/networking/phy.rst
6614 F:      drivers/net/mdio/
6615 F:      drivers/net/mdio/of_mdio.c
6616 F:      drivers/net/pcs/
6617 F:      drivers/net/phy/
6618 F:      drivers/of/of_net.c
6619 F:      include/dt-bindings/net/qca-ar803x.h
6620 F:      include/linux/*mdio*.h
6621 F:      include/linux/mdio/*.h
6622 F:      include/linux/of_net.h
6623 F:      include/linux/phy.h
6624 F:      include/linux/phy_fixed.h
6625 F:      include/linux/platform_data/mdio-bcm-unimac.h
6626 F:      include/linux/platform_data/mdio-gpio.h
6627 F:      include/trace/events/mdio.h
6628 F:      include/uapi/linux/mdio.h
6629 F:      include/uapi/linux/mii.h
6630
6631 EXFAT FILE SYSTEM
6632 M:      Namjae Jeon <namjae.jeon@samsung.com>
6633 M:      Sungjong Seo <sj1557.seo@samsung.com>
6634 L:      linux-fsdevel@vger.kernel.org
6635 S:      Maintained
6636 F:      fs/exfat/
6637
6638 EXT2 FILE SYSTEM
6639 M:      Jan Kara <jack@suse.com>
6640 L:      linux-ext4@vger.kernel.org
6641 S:      Maintained
6642 F:      Documentation/filesystems/ext2.rst
6643 F:      fs/ext2/
6644 F:      include/linux/ext2*
6645
6646 EXT4 FILE SYSTEM
6647 M:      "Theodore Ts'o" <tytso@mit.edu>
6648 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6649 L:      linux-ext4@vger.kernel.org
6650 S:      Maintained
6651 W:      http://ext4.wiki.kernel.org
6652 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6654 F:      Documentation/filesystems/ext4/
6655 F:      fs/ext4/
6656 F:      include/trace/events/ext4.h
6657
6658 Extended Verification Module (EVM)
6659 M:      Mimi Zohar <zohar@linux.ibm.com>
6660 L:      linux-integrity@vger.kernel.org
6661 S:      Supported
6662 F:      security/integrity/evm/
6663
6664 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6665 M:      Ard Biesheuvel <ardb@kernel.org>
6666 L:      linux-efi@vger.kernel.org
6667 S:      Maintained
6668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6669 F:      Documentation/admin-guide/efi-stub.rst
6670 F:      arch/*/include/asm/efi.h
6671 F:      arch/*/kernel/efi.c
6672 F:      arch/arm/boot/compressed/efi-header.S
6673 F:      arch/arm64/kernel/efi-entry.S
6674 F:      arch/x86/platform/efi/
6675 F:      drivers/firmware/efi/
6676 F:      include/linux/efi*.h
6677
6678 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6679 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6680 M:      Chanwoo Choi <cw00.choi@samsung.com>
6681 L:      linux-kernel@vger.kernel.org
6682 S:      Maintained
6683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6684 F:      Documentation/devicetree/bindings/extcon/
6685 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6686 F:      drivers/extcon/
6687 F:      include/linux/extcon.h
6688 F:      include/linux/extcon/
6689
6690 EXTRA BOOT CONFIG
6691 M:      Masami Hiramatsu <mhiramat@kernel.org>
6692 S:      Maintained
6693 F:      Documentation/admin-guide/bootconfig.rst
6694 F:      fs/proc/bootconfig.c
6695 F:      include/linux/bootconfig.h
6696 F:      lib/bootconfig.c
6697 F:      tools/bootconfig/*
6698 F:      tools/bootconfig/scripts/*
6699
6700 EXYNOS DP DRIVER
6701 M:      Jingoo Han <jingoohan1@gmail.com>
6702 L:      dri-devel@lists.freedesktop.org
6703 S:      Maintained
6704 F:      drivers/gpu/drm/exynos/exynos_dp*
6705
6706 EXYNOS SYSMMU (IOMMU) driver
6707 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6708 L:      iommu@lists.linux-foundation.org
6709 S:      Maintained
6710 F:      drivers/iommu/exynos-iommu.c
6711
6712 F2FS FILE SYSTEM
6713 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6714 M:      Chao Yu <yuchao0@huawei.com>
6715 L:      linux-f2fs-devel@lists.sourceforge.net
6716 S:      Maintained
6717 W:      https://f2fs.wiki.kernel.org/
6718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6719 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6720 F:      Documentation/filesystems/f2fs.rst
6721 F:      fs/f2fs/
6722 F:      include/linux/f2fs_fs.h
6723 F:      include/trace/events/f2fs.h
6724
6725 F71805F HARDWARE MONITORING DRIVER
6726 M:      Jean Delvare <jdelvare@suse.com>
6727 L:      linux-hwmon@vger.kernel.org
6728 S:      Maintained
6729 F:      Documentation/hwmon/f71805f.rst
6730 F:      drivers/hwmon/f71805f.c
6731
6732 FADDR2LINE
6733 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6734 S:      Maintained
6735 F:      scripts/faddr2line
6736
6737 FAILOVER MODULE
6738 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6739 L:      netdev@vger.kernel.org
6740 S:      Supported
6741 F:      Documentation/networking/failover.rst
6742 F:      include/net/failover.h
6743 F:      net/core/failover.c
6744
6745 FANOTIFY
6746 M:      Jan Kara <jack@suse.cz>
6747 R:      Amir Goldstein <amir73il@gmail.com>
6748 L:      linux-fsdevel@vger.kernel.org
6749 S:      Maintained
6750 F:      fs/notify/fanotify/
6751 F:      include/linux/fanotify.h
6752 F:      include/uapi/linux/fanotify.h
6753
6754 FARSYNC SYNCHRONOUS DRIVER
6755 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6756 S:      Supported
6757 W:      http://www.farsite.co.uk/
6758 F:      drivers/net/wan/farsync.*
6759
6760 FAULT INJECTION SUPPORT
6761 M:      Akinobu Mita <akinobu.mita@gmail.com>
6762 S:      Supported
6763 F:      Documentation/fault-injection/
6764 F:      lib/fault-inject.c
6765
6766 FBTFT Framebuffer drivers
6767 L:      dri-devel@lists.freedesktop.org
6768 L:      linux-fbdev@vger.kernel.org
6769 S:      Orphan
6770 F:      drivers/staging/fbtft/
6771
6772 FC0011 TUNER DRIVER
6773 M:      Michael Buesch <m@bues.ch>
6774 L:      linux-media@vger.kernel.org
6775 S:      Maintained
6776 F:      drivers/media/tuners/fc0011.c
6777 F:      drivers/media/tuners/fc0011.h
6778
6779 FC2580 MEDIA DRIVER
6780 M:      Antti Palosaari <crope@iki.fi>
6781 L:      linux-media@vger.kernel.org
6782 S:      Maintained
6783 W:      https://linuxtv.org
6784 W:      http://palosaari.fi/linux/
6785 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6786 T:      git git://linuxtv.org/anttip/media_tree.git
6787 F:      drivers/media/tuners/fc2580*
6788
6789 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6790 M:      Hannes Reinecke <hare@suse.de>
6791 L:      linux-scsi@vger.kernel.org
6792 S:      Supported
6793 W:      www.Open-FCoE.org
6794 F:      drivers/scsi/fcoe/
6795 F:      drivers/scsi/libfc/
6796 F:      include/scsi/fc/
6797 F:      include/scsi/libfc.h
6798 F:      include/scsi/libfcoe.h
6799 F:      include/uapi/scsi/fc/
6800
6801 FILE LOCKING (flock() and fcntl()/lockf())
6802 M:      Jeff Layton <jlayton@kernel.org>
6803 M:      "J. Bruce Fields" <bfields@fieldses.org>
6804 L:      linux-fsdevel@vger.kernel.org
6805 S:      Maintained
6806 F:      fs/fcntl.c
6807 F:      fs/locks.c
6808 F:      include/linux/fcntl.h
6809 F:      include/uapi/linux/fcntl.h
6810
6811 FILESYSTEM DIRECT ACCESS (DAX)
6812 M:      Dan Williams <dan.j.williams@intel.com>
6813 R:      Matthew Wilcox <willy@infradead.org>
6814 R:      Jan Kara <jack@suse.cz>
6815 L:      linux-fsdevel@vger.kernel.org
6816 L:      linux-nvdimm@lists.01.org
6817 S:      Supported
6818 F:      fs/dax.c
6819 F:      include/linux/dax.h
6820 F:      include/trace/events/fs_dax.h
6821
6822 FILESYSTEMS (VFS and infrastructure)
6823 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6824 L:      linux-fsdevel@vger.kernel.org
6825 S:      Maintained
6826 F:      fs/*
6827 F:      include/linux/fs.h
6828 F:      include/linux/fs_types.h
6829 F:      include/uapi/linux/fs.h
6830 F:      include/uapi/linux/openat2.h
6831
6832 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6833 M:      Riku Voipio <riku.voipio@iki.fi>
6834 L:      linux-hwmon@vger.kernel.org
6835 S:      Maintained
6836 F:      drivers/hwmon/f75375s.c
6837 F:      include/linux/f75375s.h
6838
6839 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6840 M:      Clemens Ladisch <clemens@ladisch.de>
6841 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6842 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6843 S:      Maintained
6844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6845 F:      include/uapi/sound/firewire.h
6846 F:      sound/firewire/
6847
6848 FIREWIRE MEDIA DRIVERS (firedtv)
6849 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6850 L:      linux-media@vger.kernel.org
6851 L:      linux1394-devel@lists.sourceforge.net
6852 S:      Maintained
6853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6854 F:      drivers/media/firewire/
6855
6856 FIREWIRE SBP-2 TARGET
6857 M:      Chris Boot <bootc@bootc.net>
6858 L:      linux-scsi@vger.kernel.org
6859 L:      target-devel@vger.kernel.org
6860 L:      linux1394-devel@lists.sourceforge.net
6861 S:      Maintained
6862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6863 F:      drivers/target/sbp/
6864
6865 FIREWIRE SUBSYSTEM
6866 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6867 L:      linux1394-devel@lists.sourceforge.net
6868 S:      Maintained
6869 W:      http://ieee1394.wiki.kernel.org/
6870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6871 F:      drivers/firewire/
6872 F:      include/linux/firewire.h
6873 F:      include/uapi/linux/firewire*.h
6874 F:      tools/firewire/
6875
6876 FIRMWARE LOADER (request_firmware)
6877 M:      Luis Chamberlain <mcgrof@kernel.org>
6878 L:      linux-kernel@vger.kernel.org
6879 S:      Maintained
6880 F:      Documentation/firmware_class/
6881 F:      drivers/base/firmware_loader/
6882 F:      include/linux/firmware.h
6883
6884 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6885 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6886 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6887 S:      Maintained
6888 F:      drivers/block/rsxx/
6889
6890 FLEXTIMER FTM-QUADDEC DRIVER
6891 M:      Patrick Havelange <patrick.havelange@essensium.com>
6892 L:      linux-iio@vger.kernel.org
6893 S:      Maintained
6894 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6895 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6896 F:      drivers/counter/ftm-quaddec.c
6897
6898 FLOPPY DRIVER
6899 M:      Denis Efremov <efremov@linux.com>
6900 L:      linux-block@vger.kernel.org
6901 S:      Odd Fixes
6902 F:      drivers/block/floppy.c
6903
6904 FLYSKY FSIA6B RC RECEIVER
6905 M:      Markus Koch <markus@notsyncing.net>
6906 L:      linux-input@vger.kernel.org
6907 S:      Maintained
6908 F:      drivers/input/joystick/fsia6b.c
6909
6910 FORCEDETH GIGABIT ETHERNET DRIVER
6911 M:      Rain River <rain.1986.08.12@gmail.com>
6912 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6913 L:      netdev@vger.kernel.org
6914 S:      Maintained
6915 F:      drivers/net/ethernet/nvidia/*
6916
6917 FPGA DFL DRIVERS
6918 M:      Wu Hao <hao.wu@intel.com>
6919 R:      Tom Rix <trix@redhat.com>
6920 L:      linux-fpga@vger.kernel.org
6921 S:      Maintained
6922 F:      Documentation/ABI/testing/sysfs-bus-dfl
6923 F:      Documentation/fpga/dfl.rst
6924 F:      drivers/fpga/dfl*
6925 F:      include/uapi/linux/fpga-dfl.h
6926
6927 FPGA MANAGER FRAMEWORK
6928 M:      Moritz Fischer <mdf@kernel.org>
6929 R:      Tom Rix <trix@redhat.com>
6930 L:      linux-fpga@vger.kernel.org
6931 S:      Maintained
6932 W:      http://www.rocketboards.org
6933 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6935 F:      Documentation/devicetree/bindings/fpga/
6936 F:      Documentation/driver-api/fpga/
6937 F:      Documentation/fpga/
6938 F:      drivers/fpga/
6939 F:      include/linux/fpga/
6940
6941 FPU EMULATOR
6942 M:      Bill Metzenthen <billm@melbpc.org.au>
6943 S:      Maintained
6944 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6945 F:      arch/x86/math-emu/
6946
6947 FRAMEBUFFER LAYER
6948 L:      dri-devel@lists.freedesktop.org
6949 L:      linux-fbdev@vger.kernel.org
6950 S:      Orphan
6951 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6952 T:      git git://anongit.freedesktop.org/drm/drm-misc
6953 F:      Documentation/fb/
6954 F:      drivers/video/
6955 F:      include/linux/fb.h
6956 F:      include/uapi/linux/fb.h
6957 F:      include/uapi/video/
6958 F:      include/video/
6959
6960 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6961 M:      Horia Geantă <horia.geanta@nxp.com>
6962 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6963 L:      linux-crypto@vger.kernel.org
6964 S:      Maintained
6965 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6966 F:      drivers/crypto/caam/
6967
6968 FREESCALE COLDFIRE M5441X MMC DRIVER
6969 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6970 L:      linux-mmc@vger.kernel.org
6971 S:      Maintained
6972 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6973 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6974
6975 FREESCALE DIU FRAMEBUFFER DRIVER
6976 M:      Timur Tabi <timur@kernel.org>
6977 L:      linux-fbdev@vger.kernel.org
6978 S:      Maintained
6979 F:      drivers/video/fbdev/fsl-diu-fb.*
6980
6981 FREESCALE DMA DRIVER
6982 M:      Li Yang <leoyang.li@nxp.com>
6983 M:      Zhang Wei <zw@zh-kernel.org>
6984 L:      linuxppc-dev@lists.ozlabs.org
6985 S:      Maintained
6986 F:      drivers/dma/fsldma.*
6987
6988 FREESCALE DSPI DRIVER
6989 M:      Vladimir Oltean <olteanv@gmail.com>
6990 L:      linux-spi@vger.kernel.org
6991 S:      Maintained
6992 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
6993 F:      drivers/spi/spi-fsl-dspi.c
6994 F:      include/linux/spi/spi-fsl-dspi.h
6995
6996 FREESCALE ENETC ETHERNET DRIVERS
6997 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6998 L:      netdev@vger.kernel.org
6999 S:      Maintained
7000 F:      drivers/net/ethernet/freescale/enetc/
7001
7002 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7003 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7004 L:      netdev@vger.kernel.org
7005 S:      Maintained
7006 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7007 F:      drivers/net/ethernet/freescale/gianfar*
7008
7009 FREESCALE GPMI NAND DRIVER
7010 M:      Han Xu <han.xu@nxp.com>
7011 L:      linux-mtd@lists.infradead.org
7012 S:      Maintained
7013 F:      drivers/mtd/nand/raw/gpmi-nand/*
7014
7015 FREESCALE I2C CPM DRIVER
7016 M:      Jochen Friedrich <jochen@scram.de>
7017 L:      linuxppc-dev@lists.ozlabs.org
7018 L:      linux-i2c@vger.kernel.org
7019 S:      Maintained
7020 F:      drivers/i2c/busses/i2c-cpm.c
7021
7022 FREESCALE IMX / MXC FEC DRIVER
7023 M:      Fugang Duan <fugang.duan@nxp.com>
7024 L:      netdev@vger.kernel.org
7025 S:      Maintained
7026 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7027 F:      drivers/net/ethernet/freescale/fec.h
7028 F:      drivers/net/ethernet/freescale/fec_main.c
7029 F:      drivers/net/ethernet/freescale/fec_ptp.c
7030
7031 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7032 M:      Sascha Hauer <s.hauer@pengutronix.de>
7033 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7034 L:      linux-fbdev@vger.kernel.org
7035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7036 S:      Maintained
7037 F:      drivers/video/fbdev/imxfb.c
7038 F:      include/linux/platform_data/video-imxfb.h
7039
7040 FREESCALE IMX DDR PMU DRIVER
7041 M:      Frank Li <Frank.li@nxp.com>
7042 L:      linux-arm-kernel@lists.infradead.org
7043 S:      Maintained
7044 F:      Documentation/admin-guide/perf/imx-ddr.rst
7045 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7046 F:      drivers/perf/fsl_imx8_ddr_perf.c
7047
7048 FREESCALE IMX I2C DRIVER
7049 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7050 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7051 L:      linux-i2c@vger.kernel.org
7052 S:      Maintained
7053 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7054 F:      drivers/i2c/busses/i2c-imx.c
7055
7056 FREESCALE IMX LPI2C DRIVER
7057 M:      Dong Aisheng <aisheng.dong@nxp.com>
7058 L:      linux-i2c@vger.kernel.org
7059 L:      linux-imx@nxp.com
7060 S:      Maintained
7061 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7062 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7063
7064 FREESCALE QORIQ DPAA ETHERNET DRIVER
7065 M:      Madalin Bucur <madalin.bucur@nxp.com>
7066 L:      netdev@vger.kernel.org
7067 S:      Maintained
7068 F:      drivers/net/ethernet/freescale/dpaa
7069
7070 FREESCALE QORIQ DPAA FMAN DRIVER
7071 M:      Madalin Bucur <madalin.bucur@nxp.com>
7072 L:      netdev@vger.kernel.org
7073 S:      Maintained
7074 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7075 F:      drivers/net/ethernet/freescale/fman
7076
7077 FREESCALE QORIQ PTP CLOCK DRIVER
7078 M:      Yangbo Lu <yangbo.lu@nxp.com>
7079 L:      netdev@vger.kernel.org
7080 S:      Maintained
7081 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7082 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7083 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7084 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7085 F:      drivers/ptp/ptp_qoriq.c
7086 F:      drivers/ptp/ptp_qoriq_debugfs.c
7087 F:      include/linux/fsl/ptp_qoriq.h
7088
7089 FREESCALE QUAD SPI DRIVER
7090 M:      Han Xu <han.xu@nxp.com>
7091 L:      linux-spi@vger.kernel.org
7092 S:      Maintained
7093 F:      drivers/spi/spi-fsl-qspi.c
7094
7095 FREESCALE QUICC ENGINE LIBRARY
7096 M:      Qiang Zhao <qiang.zhao@nxp.com>
7097 L:      linuxppc-dev@lists.ozlabs.org
7098 S:      Maintained
7099 F:      drivers/soc/fsl/qe/
7100 F:      include/soc/fsl/*qe*.h
7101 F:      include/soc/fsl/*ucc*.h
7102
7103 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7104 M:      Li Yang <leoyang.li@nxp.com>
7105 L:      netdev@vger.kernel.org
7106 L:      linuxppc-dev@lists.ozlabs.org
7107 S:      Maintained
7108 F:      drivers/net/ethernet/freescale/ucc_geth*
7109
7110 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7111 M:      Zhao Qiang <qiang.zhao@nxp.com>
7112 L:      netdev@vger.kernel.org
7113 L:      linuxppc-dev@lists.ozlabs.org
7114 S:      Maintained
7115 F:      drivers/net/wan/fsl_ucc_hdlc*
7116
7117 FREESCALE QUICC ENGINE UCC UART DRIVER
7118 M:      Timur Tabi <timur@kernel.org>
7119 L:      linuxppc-dev@lists.ozlabs.org
7120 S:      Maintained
7121 F:      drivers/tty/serial/ucc_uart.c
7122
7123 FREESCALE SOC DRIVERS
7124 M:      Li Yang <leoyang.li@nxp.com>
7125 L:      linuxppc-dev@lists.ozlabs.org
7126 L:      linux-arm-kernel@lists.infradead.org
7127 S:      Maintained
7128 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7129 F:      Documentation/devicetree/bindings/soc/fsl/
7130 F:      drivers/soc/fsl/
7131 F:      include/linux/fsl/
7132
7133 FREESCALE SOC FS_ENET DRIVER
7134 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7135 L:      linuxppc-dev@lists.ozlabs.org
7136 L:      netdev@vger.kernel.org
7137 S:      Maintained
7138 F:      drivers/net/ethernet/freescale/fs_enet/
7139 F:      include/linux/fs_enet_pd.h
7140
7141 FREESCALE SOC SOUND DRIVERS
7142 M:      Timur Tabi <timur@kernel.org>
7143 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7144 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7145 R:      Fabio Estevam <festevam@gmail.com>
7146 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7147 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7148 L:      linuxppc-dev@lists.ozlabs.org
7149 S:      Maintained
7150 F:      sound/soc/fsl/fsl*
7151 F:      sound/soc/fsl/imx*
7152 F:      sound/soc/fsl/mpc8610_hpcd.c
7153
7154 FREESCALE USB PERIPHERAL DRIVERS
7155 M:      Li Yang <leoyang.li@nxp.com>
7156 L:      linux-usb@vger.kernel.org
7157 L:      linuxppc-dev@lists.ozlabs.org
7158 S:      Maintained
7159 F:      drivers/usb/gadget/udc/fsl*
7160
7161 FREESCALE USB PHY DRIVER
7162 M:      Ran Wang <ran.wang_1@nxp.com>
7163 L:      linux-usb@vger.kernel.org
7164 L:      linuxppc-dev@lists.ozlabs.org
7165 S:      Maintained
7166 F:      drivers/usb/phy/phy-fsl-usb*
7167
7168 FREEVXFS FILESYSTEM
7169 M:      Christoph Hellwig <hch@infradead.org>
7170 S:      Maintained
7171 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7172 F:      fs/freevxfs/
7173
7174 FREEZER
7175 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7176 M:      Pavel Machek <pavel@ucw.cz>
7177 L:      linux-pm@vger.kernel.org
7178 S:      Supported
7179 F:      Documentation/power/freezing-of-tasks.rst
7180 F:      include/linux/freezer.h
7181 F:      kernel/freezer.c
7182
7183 FRONTSWAP API
7184 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7185 L:      linux-kernel@vger.kernel.org
7186 S:      Maintained
7187 F:      include/linux/frontswap.h
7188 F:      mm/frontswap.c
7189
7190 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7191 M:      David Howells <dhowells@redhat.com>
7192 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7193 S:      Supported
7194 F:      Documentation/filesystems/caching/
7195 F:      fs/fscache/
7196 F:      include/linux/fscache*.h
7197
7198 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7199 M:      Theodore Y. Ts'o <tytso@mit.edu>
7200 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7201 M:      Eric Biggers <ebiggers@kernel.org>
7202 L:      linux-fscrypt@vger.kernel.org
7203 S:      Supported
7204 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7205 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7206 F:      Documentation/filesystems/fscrypt.rst
7207 F:      fs/crypto/
7208 F:      include/linux/fscrypt*.h
7209 F:      include/uapi/linux/fscrypt.h
7210
7211 FSI SUBSYSTEM
7212 M:      Jeremy Kerr <jk@ozlabs.org>
7213 M:      Joel Stanley <joel@jms.id.au>
7214 R:      Alistar Popple <alistair@popple.id.au>
7215 R:      Eddie James <eajames@linux.ibm.com>
7216 L:      linux-fsi@lists.ozlabs.org
7217 S:      Supported
7218 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7220 F:      drivers/fsi/
7221 F:      include/linux/fsi*.h
7222 F:      include/trace/events/fsi*.h
7223
7224 FSI-ATTACHED I2C DRIVER
7225 M:      Eddie James <eajames@linux.ibm.com>
7226 L:      linux-i2c@vger.kernel.org
7227 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7228 S:      Maintained
7229 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7230 F:      drivers/i2c/busses/i2c-fsi.c
7231
7232 FSI-ATTACHED SPI DRIVER
7233 M:      Eddie James <eajames@linux.ibm.com>
7234 L:      linux-spi@vger.kernel.org
7235 S:      Maintained
7236 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7237 F:      drivers/spi/spi-fsi.c
7238
7239 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7240 M:      Jan Kara <jack@suse.cz>
7241 R:      Amir Goldstein <amir73il@gmail.com>
7242 L:      linux-fsdevel@vger.kernel.org
7243 S:      Maintained
7244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7245 F:      fs/notify/
7246 F:      include/linux/fsnotify*.h
7247
7248 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7249 M:      Eric Biggers <ebiggers@kernel.org>
7250 M:      Theodore Y. Ts'o <tytso@mit.edu>
7251 L:      linux-fscrypt@vger.kernel.org
7252 S:      Supported
7253 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7254 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7255 F:      Documentation/filesystems/fsverity.rst
7256 F:      fs/verity/
7257 F:      include/linux/fsverity.h
7258 F:      include/uapi/linux/fsverity.h
7259
7260 FUJITSU LAPTOP EXTRAS
7261 M:      Jonathan Woithe <jwoithe@just42.net>
7262 L:      platform-driver-x86@vger.kernel.org
7263 S:      Maintained
7264 F:      drivers/platform/x86/fujitsu-laptop.c
7265
7266 FUJITSU M-5MO LS CAMERA ISP DRIVER
7267 M:      Kyungmin Park <kyungmin.park@samsung.com>
7268 M:      Heungjun Kim <riverful.kim@samsung.com>
7269 L:      linux-media@vger.kernel.org
7270 S:      Maintained
7271 F:      drivers/media/i2c/m5mols/
7272 F:      include/media/i2c/m5mols.h
7273
7274 FUJITSU TABLET EXTRAS
7275 M:      Robert Gerlach <khnz@gmx.de>
7276 L:      platform-driver-x86@vger.kernel.org
7277 S:      Maintained
7278 F:      drivers/platform/x86/fujitsu-tablet.c
7279
7280 FUSE: FILESYSTEM IN USERSPACE
7281 M:      Miklos Szeredi <miklos@szeredi.hu>
7282 L:      linux-fsdevel@vger.kernel.org
7283 S:      Maintained
7284 W:      https://github.com/libfuse/
7285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7286 F:      Documentation/filesystems/fuse.rst
7287 F:      fs/fuse/
7288 F:      include/uapi/linux/fuse.h
7289
7290 FUTEX SUBSYSTEM
7291 M:      Thomas Gleixner <tglx@linutronix.de>
7292 M:      Ingo Molnar <mingo@redhat.com>
7293 R:      Peter Zijlstra <peterz@infradead.org>
7294 R:      Darren Hart <dvhart@infradead.org>
7295 L:      linux-kernel@vger.kernel.org
7296 S:      Maintained
7297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7298 F:      Documentation/locking/*futex*
7299 F:      include/asm-generic/futex.h
7300 F:      include/linux/futex.h
7301 F:      include/uapi/linux/futex.h
7302 F:      kernel/futex.c
7303 F:      tools/perf/bench/futex*
7304 F:      tools/testing/selftests/futex/
7305
7306 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7307 M:      Tim Harvey <tharvey@gateworks.com>
7308 M:      Robert Jones <rjones@gateworks.com>
7309 S:      Maintained
7310 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7311 F:      drivers/mfd/gateworks-gsc.c
7312 F:      include/linux/mfd/gsc.h
7313 F:      Documentation/hwmon/gsc-hwmon.rst
7314 F:      drivers/hwmon/gsc-hwmon.c
7315 F:      include/linux/platform_data/gsc_hwmon.h
7316
7317 GASKET DRIVER FRAMEWORK
7318 M:      Rob Springer <rspringer@google.com>
7319 M:      Todd Poynor <toddpoynor@google.com>
7320 M:      Ben Chan <benchan@chromium.org>
7321 M:      Richard Yeh <rcy@google.com>
7322 S:      Maintained
7323 F:      drivers/staging/gasket/
7324
7325 GCC PLUGINS
7326 M:      Kees Cook <keescook@chromium.org>
7327 R:      Emese Revfy <re.emese@gmail.com>
7328 L:      linux-hardening@vger.kernel.org
7329 S:      Maintained
7330 F:      Documentation/kbuild/gcc-plugins.rst
7331 F:      scripts/Makefile.gcc-plugins
7332 F:      scripts/gcc-plugin.sh
7333 F:      scripts/gcc-plugins/
7334
7335 GCOV BASED KERNEL PROFILING
7336 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7337 S:      Maintained
7338 F:      Documentation/dev-tools/gcov.rst
7339 F:      kernel/gcov/
7340
7341 GDB KERNEL DEBUGGING HELPER SCRIPTS
7342 M:      Jan Kiszka <jan.kiszka@siemens.com>
7343 M:      Kieran Bingham <kbingham@kernel.org>
7344 S:      Supported
7345 F:      scripts/gdb/
7346
7347 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7348 M:      Achim Leubner <achim_leubner@adaptec.com>
7349 L:      linux-scsi@vger.kernel.org
7350 S:      Supported
7351 W:      http://www.icp-vortex.com/
7352 F:      drivers/scsi/gdt*
7353
7354 GEMTEK FM RADIO RECEIVER DRIVER
7355 M:      Hans Verkuil <hverkuil@xs4all.nl>
7356 L:      linux-media@vger.kernel.org
7357 S:      Maintained
7358 W:      https://linuxtv.org
7359 T:      git git://linuxtv.org/media_tree.git
7360 F:      drivers/media/radio/radio-gemtek*
7361
7362 GENERIC ARCHITECTURE TOPOLOGY
7363 M:      Sudeep Holla <sudeep.holla@arm.com>
7364 L:      linux-kernel@vger.kernel.org
7365 S:      Maintained
7366 F:      drivers/base/arch_topology.c
7367 F:      include/linux/arch_topology.h
7368
7369 GENERIC ENTRY CODE
7370 M:      Thomas Gleixner <tglx@linutronix.de>
7371 M:      Peter Zijlstra <peterz@infradead.org>
7372 M:      Andy Lutomirski <luto@kernel.org>
7373 L:      linux-kernel@vger.kernel.org
7374 S:      Maintained
7375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7376 F:      include/linux/entry-common.h
7377 F:      include/linux/entry-kvm.h
7378 F:      kernel/entry/
7379
7380 GENERIC GPIO I2C DRIVER
7381 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7382 S:      Supported
7383 F:      drivers/i2c/busses/i2c-gpio.c
7384 F:      include/linux/platform_data/i2c-gpio.h
7385
7386 GENERIC GPIO I2C MULTIPLEXER DRIVER
7387 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7388 L:      linux-i2c@vger.kernel.org
7389 S:      Supported
7390 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7391 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7392 F:      include/linux/platform_data/i2c-mux-gpio.h
7393
7394 GENERIC HDLC (WAN) DRIVERS
7395 M:      Krzysztof Halasa <khc@pm.waw.pl>
7396 S:      Maintained
7397 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7398 F:      drivers/net/wan/c101.c
7399 F:      drivers/net/wan/hd6457*
7400 F:      drivers/net/wan/hdlc*
7401 F:      drivers/net/wan/n2.c
7402 F:      drivers/net/wan/pc300too.c
7403 F:      drivers/net/wan/pci200syn.c
7404 F:      drivers/net/wan/wanxl*
7405
7406 GENERIC INCLUDE/ASM HEADER FILES
7407 M:      Arnd Bergmann <arnd@arndb.de>
7408 L:      linux-arch@vger.kernel.org
7409 S:      Maintained
7410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7411 F:      include/asm-generic/
7412 F:      include/uapi/asm-generic/
7413
7414 GENERIC PHY FRAMEWORK
7415 M:      Kishon Vijay Abraham I <kishon@ti.com>
7416 M:      Vinod Koul <vkoul@kernel.org>
7417 L:      linux-kernel@vger.kernel.org
7418 S:      Supported
7419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7420 F:      Documentation/devicetree/bindings/phy/
7421 F:      drivers/phy/
7422 F:      include/linux/phy/
7423
7424 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7425 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7426 S:      Supported
7427 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7428
7429 GENERIC PM DOMAINS
7430 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7431 M:      Kevin Hilman <khilman@kernel.org>
7432 M:      Ulf Hansson <ulf.hansson@linaro.org>
7433 L:      linux-pm@vger.kernel.org
7434 S:      Supported
7435 F:      Documentation/devicetree/bindings/power/power?domain*
7436 F:      drivers/base/power/domain*.c
7437 F:      include/linux/pm_domain.h
7438
7439 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7440 M:      Eugen Hristev <eugen.hristev@microchip.com>
7441 L:      linux-input@vger.kernel.org
7442 S:      Maintained
7443 F:      drivers/input/touchscreen/resistive-adc-touch.c
7444
7445 GENERIC UIO DRIVER FOR PCI DEVICES
7446 M:      "Michael S. Tsirkin" <mst@redhat.com>
7447 L:      kvm@vger.kernel.org
7448 S:      Supported
7449 F:      drivers/uio/uio_pci_generic.c
7450
7451 GENERIC VDSO LIBRARY
7452 M:      Andy Lutomirski <luto@kernel.org>
7453 M:      Thomas Gleixner <tglx@linutronix.de>
7454 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7455 L:      linux-kernel@vger.kernel.org
7456 S:      Maintained
7457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7458 F:      include/asm-generic/vdso/vsyscall.h
7459 F:      include/vdso/
7460 F:      kernel/time/vsyscall.c
7461 F:      lib/vdso/
7462
7463 GENWQE (IBM Generic Workqueue Card)
7464 M:      Frank Haverkamp <haver@linux.ibm.com>
7465 S:      Supported
7466 F:      drivers/misc/genwqe/
7467
7468 GET_MAINTAINER SCRIPT
7469 M:      Joe Perches <joe@perches.com>
7470 S:      Maintained
7471 F:      scripts/get_maintainer.pl
7472
7473 GFS2 FILE SYSTEM
7474 M:      Bob Peterson <rpeterso@redhat.com>
7475 M:      Andreas Gruenbacher <agruenba@redhat.com>
7476 L:      cluster-devel@redhat.com
7477 S:      Supported
7478 W:      http://sources.redhat.com/cluster/
7479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7480 F:      Documentation/filesystems/gfs2*
7481 F:      fs/gfs2/
7482 F:      include/uapi/linux/gfs2_ondisk.h
7483
7484 GNSS SUBSYSTEM
7485 M:      Johan Hovold <johan@kernel.org>
7486 S:      Maintained
7487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7488 F:      Documentation/ABI/testing/sysfs-class-gnss
7489 F:      Documentation/devicetree/bindings/gnss/
7490 F:      drivers/gnss/
7491 F:      include/linux/gnss.h
7492
7493 GO7007 MPEG CODEC
7494 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7495 L:      linux-media@vger.kernel.org
7496 S:      Maintained
7497 F:      drivers/media/usb/go7007/
7498
7499 GOODIX TOUCHSCREEN
7500 M:      Bastien Nocera <hadess@hadess.net>
7501 L:      linux-input@vger.kernel.org
7502 S:      Maintained
7503 F:      drivers/input/touchscreen/goodix.c
7504
7505 GOOGLE ETHERNET DRIVERS
7506 M:      Catherine Sullivan <csully@google.com>
7507 R:      Sagi Shahar <sagis@google.com>
7508 R:      Jon Olson <jonolson@google.com>
7509 L:      netdev@vger.kernel.org
7510 S:      Supported
7511 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7512 F:      drivers/net/ethernet/google
7513
7514 GPD POCKET FAN DRIVER
7515 M:      Hans de Goede <hdegoede@redhat.com>
7516 L:      platform-driver-x86@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/platform/x86/gpd-pocket-fan.c
7519
7520 GPIO ACPI SUPPORT
7521 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7522 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7523 L:      linux-gpio@vger.kernel.org
7524 L:      linux-acpi@vger.kernel.org
7525 S:      Maintained
7526 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7527 F:      drivers/gpio/gpiolib-acpi.c
7528 F:      drivers/gpio/gpiolib-acpi.h
7529
7530 GPIO AGGREGATOR
7531 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7532 L:      linux-gpio@vger.kernel.org
7533 S:      Supported
7534 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7535 F:      drivers/gpio/gpio-aggregator.c
7536
7537 GPIO IR Transmitter
7538 M:      Sean Young <sean@mess.org>
7539 L:      linux-media@vger.kernel.org
7540 S:      Maintained
7541 F:      drivers/media/rc/gpio-ir-tx.c
7542
7543 GPIO MOCKUP DRIVER
7544 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7545 L:      linux-gpio@vger.kernel.org
7546 S:      Maintained
7547 F:      drivers/gpio/gpio-mockup.c
7548 F:      tools/testing/selftests/gpio/
7549
7550 GPIO REGMAP
7551 R:      Michael Walle <michael@walle.cc>
7552 S:      Maintained
7553 F:      drivers/gpio/gpio-regmap.c
7554 F:      include/linux/gpio/regmap.h
7555
7556 GPIO SUBSYSTEM
7557 M:      Linus Walleij <linus.walleij@linaro.org>
7558 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7559 L:      linux-gpio@vger.kernel.org
7560 S:      Maintained
7561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7562 F:      Documentation/ABI/obsolete/sysfs-gpio
7563 F:      Documentation/ABI/testing/gpio-cdev
7564 F:      Documentation/admin-guide/gpio/
7565 F:      Documentation/devicetree/bindings/gpio/
7566 F:      Documentation/driver-api/gpio/
7567 F:      drivers/gpio/
7568 F:      include/asm-generic/gpio.h
7569 F:      include/linux/gpio.h
7570 F:      include/linux/gpio/
7571 F:      include/linux/of_gpio.h
7572 F:      include/uapi/linux/gpio.h
7573 F:      tools/gpio/
7574
7575 GRE DEMULTIPLEXER DRIVER
7576 M:      Dmitry Kozlov <xeb@mail.ru>
7577 L:      netdev@vger.kernel.org
7578 S:      Maintained
7579 F:      include/net/gre.h
7580 F:      net/ipv4/gre_demux.c
7581 F:      net/ipv4/gre_offload.c
7582
7583 GRETH 10/100/1G Ethernet MAC device driver
7584 M:      Andreas Larsson <andreas@gaisler.com>
7585 L:      netdev@vger.kernel.org
7586 S:      Maintained
7587 F:      drivers/net/ethernet/aeroflex/
7588
7589 GREYBUS AUDIO PROTOCOLS DRIVERS
7590 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7591 M:      Mark Greer <mgreer@animalcreek.com>
7592 S:      Maintained
7593 F:      drivers/staging/greybus/audio_apbridgea.c
7594 F:      drivers/staging/greybus/audio_apbridgea.h
7595 F:      drivers/staging/greybus/audio_codec.c
7596 F:      drivers/staging/greybus/audio_codec.h
7597 F:      drivers/staging/greybus/audio_gb.c
7598 F:      drivers/staging/greybus/audio_manager.c
7599 F:      drivers/staging/greybus/audio_manager.h
7600 F:      drivers/staging/greybus/audio_manager_module.c
7601 F:      drivers/staging/greybus/audio_manager_private.h
7602 F:      drivers/staging/greybus/audio_manager_sysfs.c
7603 F:      drivers/staging/greybus/audio_module.c
7604 F:      drivers/staging/greybus/audio_topology.c
7605
7606 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7607 M:      Viresh Kumar <vireshk@kernel.org>
7608 S:      Maintained
7609 F:      drivers/staging/greybus/authentication.c
7610 F:      drivers/staging/greybus/bootrom.c
7611 F:      drivers/staging/greybus/firmware.h
7612 F:      drivers/staging/greybus/fw-core.c
7613 F:      drivers/staging/greybus/fw-download.c
7614 F:      drivers/staging/greybus/fw-management.c
7615 F:      drivers/staging/greybus/greybus_authentication.h
7616 F:      drivers/staging/greybus/greybus_firmware.h
7617 F:      drivers/staging/greybus/hid.c
7618 F:      drivers/staging/greybus/i2c.c
7619 F:      drivers/staging/greybus/spi.c
7620 F:      drivers/staging/greybus/spilib.c
7621 F:      drivers/staging/greybus/spilib.h
7622
7623 GREYBUS LOOPBACK DRIVER
7624 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7625 S:      Maintained
7626 F:      drivers/staging/greybus/loopback.c
7627
7628 GREYBUS PLATFORM DRIVERS
7629 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7630 S:      Maintained
7631 F:      drivers/staging/greybus/arche-apb-ctrl.c
7632 F:      drivers/staging/greybus/arche-platform.c
7633 F:      drivers/staging/greybus/arche_platform.h
7634
7635 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7636 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7637 S:      Maintained
7638 F:      drivers/staging/greybus/gpio.c
7639 F:      drivers/staging/greybus/light.c
7640 F:      drivers/staging/greybus/power_supply.c
7641 F:      drivers/staging/greybus/sdio.c
7642 F:      drivers/staging/greybus/spi.c
7643 F:      drivers/staging/greybus/spilib.c
7644
7645 GREYBUS SUBSYSTEM
7646 M:      Johan Hovold <johan@kernel.org>
7647 M:      Alex Elder <elder@kernel.org>
7648 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7649 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7650 S:      Maintained
7651 F:      drivers/greybus/
7652 F:      drivers/staging/greybus/
7653 F:      include/linux/greybus.h
7654 F:      include/linux/greybus/
7655
7656 GREYBUS UART PROTOCOLS DRIVERS
7657 M:      David Lin <dtwlin@gmail.com>
7658 S:      Maintained
7659 F:      drivers/staging/greybus/log.c
7660 F:      drivers/staging/greybus/uart.c
7661
7662 GS1662 VIDEO SERIALIZER
7663 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7664 L:      linux-media@vger.kernel.org
7665 S:      Maintained
7666 T:      git git://linuxtv.org/media_tree.git
7667 F:      drivers/media/spi/gs1662.c
7668
7669 GSPCA FINEPIX SUBDRIVER
7670 M:      Frank Zago <frank@zago.net>
7671 L:      linux-media@vger.kernel.org
7672 S:      Maintained
7673 T:      git git://linuxtv.org/media_tree.git
7674 F:      drivers/media/usb/gspca/finepix.c
7675
7676 GSPCA GL860 SUBDRIVER
7677 M:      Olivier Lorin <o.lorin@laposte.net>
7678 L:      linux-media@vger.kernel.org
7679 S:      Maintained
7680 T:      git git://linuxtv.org/media_tree.git
7681 F:      drivers/media/usb/gspca/gl860/
7682
7683 GSPCA M5602 SUBDRIVER
7684 M:      Erik Andren <erik.andren@gmail.com>
7685 L:      linux-media@vger.kernel.org
7686 S:      Maintained
7687 T:      git git://linuxtv.org/media_tree.git
7688 F:      drivers/media/usb/gspca/m5602/
7689
7690 GSPCA PAC207 SONIXB SUBDRIVER
7691 M:      Hans Verkuil <hverkuil@xs4all.nl>
7692 L:      linux-media@vger.kernel.org
7693 S:      Odd Fixes
7694 T:      git git://linuxtv.org/media_tree.git
7695 F:      drivers/media/usb/gspca/pac207.c
7696
7697 GSPCA SN9C20X SUBDRIVER
7698 M:      Brian Johnson <brijohn@gmail.com>
7699 L:      linux-media@vger.kernel.org
7700 S:      Maintained
7701 T:      git git://linuxtv.org/media_tree.git
7702 F:      drivers/media/usb/gspca/sn9c20x.c
7703
7704 GSPCA T613 SUBDRIVER
7705 M:      Leandro Costantino <lcostantino@gmail.com>
7706 L:      linux-media@vger.kernel.org
7707 S:      Maintained
7708 T:      git git://linuxtv.org/media_tree.git
7709 F:      drivers/media/usb/gspca/t613.c
7710
7711 GSPCA USB WEBCAM DRIVER
7712 M:      Hans Verkuil <hverkuil@xs4all.nl>
7713 L:      linux-media@vger.kernel.org
7714 S:      Odd Fixes
7715 T:      git git://linuxtv.org/media_tree.git
7716 F:      drivers/media/usb/gspca/
7717
7718 GTP (GPRS Tunneling Protocol)
7719 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7720 M:      Harald Welte <laforge@gnumonks.org>
7721 L:      osmocom-net-gprs@lists.osmocom.org
7722 S:      Maintained
7723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7724 F:      drivers/net/gtp.c
7725
7726 GUID PARTITION TABLE (GPT)
7727 M:      Davidlohr Bueso <dave@stgolabs.net>
7728 L:      linux-efi@vger.kernel.org
7729 S:      Maintained
7730 F:      block/partitions/efi.*
7731
7732 H8/300 ARCHITECTURE
7733 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7734 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7735 S:      Maintained
7736 W:      http://uclinux-h8.sourceforge.jp
7737 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7738 F:      arch/h8300/
7739 F:      drivers/clk/h8300/
7740 F:      drivers/clocksource/h8300_*.c
7741 F:      drivers/irqchip/irq-renesas-h8*.c
7742
7743 HABANALABS PCI DRIVER
7744 M:      Oded Gabbay <oded.gabbay@gmail.com>
7745 S:      Supported
7746 T:      git https://github.com/HabanaAI/linux.git
7747 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7748 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7749 F:      drivers/misc/habanalabs/
7750 F:      include/uapi/misc/habanalabs.h
7751
7752 HACKRF MEDIA DRIVER
7753 M:      Antti Palosaari <crope@iki.fi>
7754 L:      linux-media@vger.kernel.org
7755 S:      Maintained
7756 W:      https://linuxtv.org
7757 W:      http://palosaari.fi/linux/
7758 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7759 T:      git git://linuxtv.org/anttip/media_tree.git
7760 F:      drivers/media/usb/hackrf/
7761
7762 HANTRO VPU CODEC DRIVER
7763 M:      Ezequiel Garcia <ezequiel@collabora.com>
7764 M:      Philipp Zabel <p.zabel@pengutronix.de>
7765 L:      linux-media@vger.kernel.org
7766 L:      linux-rockchip@lists.infradead.org
7767 S:      Maintained
7768 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7769 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7770 F:      drivers/staging/media/hantro/
7771
7772 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7773 M:      Frank Seidel <frank@f-seidel.de>
7774 L:      platform-driver-x86@vger.kernel.org
7775 S:      Maintained
7776 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7777 F:      drivers/platform/x86/hdaps.c
7778
7779 HARDWARE MONITORING
7780 M:      Jean Delvare <jdelvare@suse.com>
7781 M:      Guenter Roeck <linux@roeck-us.net>
7782 L:      linux-hwmon@vger.kernel.org
7783 S:      Maintained
7784 W:      http://hwmon.wiki.kernel.org/
7785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7786 F:      Documentation/devicetree/bindings/hwmon/
7787 F:      Documentation/hwmon/
7788 F:      drivers/hwmon/
7789 F:      include/linux/hwmon*.h
7790 F:      include/trace/events/hwmon*.h
7791
7792 HARDWARE RANDOM NUMBER GENERATOR CORE
7793 M:      Matt Mackall <mpm@selenic.com>
7794 M:      Herbert Xu <herbert@gondor.apana.org.au>
7795 L:      linux-crypto@vger.kernel.org
7796 S:      Odd fixes
7797 F:      Documentation/admin-guide/hw_random.rst
7798 F:      Documentation/devicetree/bindings/rng/
7799 F:      drivers/char/hw_random/
7800 F:      include/linux/hw_random.h
7801
7802 HARDWARE SPINLOCK CORE
7803 M:      Ohad Ben-Cohen <ohad@wizery.com>
7804 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7805 R:      Baolin Wang <baolin.wang7@gmail.com>
7806 L:      linux-remoteproc@vger.kernel.org
7807 S:      Maintained
7808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7809 F:      Documentation/devicetree/bindings/hwlock/
7810 F:      Documentation/locking/hwspinlock.rst
7811 F:      drivers/hwspinlock/
7812 F:      include/linux/hwspinlock.h
7813
7814 HARDWARE TRACING FACILITIES
7815 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7816 S:      Maintained
7817 F:      drivers/hwtracing/
7818
7819 HARMONY SOUND DRIVER
7820 L:      linux-parisc@vger.kernel.org
7821 S:      Maintained
7822 F:      sound/parisc/harmony.*
7823
7824 HDPVR USB VIDEO ENCODER DRIVER
7825 M:      Hans Verkuil <hverkuil@xs4all.nl>
7826 L:      linux-media@vger.kernel.org
7827 S:      Odd Fixes
7828 W:      https://linuxtv.org
7829 T:      git git://linuxtv.org/media_tree.git
7830 F:      drivers/media/usb/hdpvr/
7831
7832 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7833 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7834 S:      Supported
7835 F:      Documentation/watchdog/hpwdt.rst
7836 F:      drivers/watchdog/hpwdt.c
7837
7838 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7839 M:      Don Brace <don.brace@microchip.com>
7840 L:      storagedev@microchip.com
7841 L:      linux-scsi@vger.kernel.org
7842 S:      Supported
7843 F:      Documentation/scsi/hpsa.rst
7844 F:      drivers/scsi/hpsa*.[ch]
7845 F:      include/linux/cciss*.h
7846 F:      include/uapi/linux/cciss*.h
7847
7848 HFI1 DRIVER
7849 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7850 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7851 L:      linux-rdma@vger.kernel.org
7852 S:      Supported
7853 F:      drivers/infiniband/hw/hfi1
7854
7855 HFS FILESYSTEM
7856 L:      linux-fsdevel@vger.kernel.org
7857 S:      Orphan
7858 F:      Documentation/filesystems/hfs.rst
7859 F:      fs/hfs/
7860
7861 HFSPLUS FILESYSTEM
7862 L:      linux-fsdevel@vger.kernel.org
7863 S:      Orphan
7864 F:      Documentation/filesystems/hfsplus.rst
7865 F:      fs/hfsplus/
7866
7867 HGA FRAMEBUFFER DRIVER
7868 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7869 L:      linux-nvidia@lists.surfsouth.com
7870 S:      Maintained
7871 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7872 F:      drivers/video/fbdev/hgafb.c
7873
7874 HIBERNATION (aka Software Suspend, aka swsusp)
7875 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7876 M:      Pavel Machek <pavel@ucw.cz>
7877 L:      linux-pm@vger.kernel.org
7878 S:      Supported
7879 B:      https://bugzilla.kernel.org
7880 F:      arch/*/include/asm/suspend*.h
7881 F:      arch/x86/power/
7882 F:      drivers/base/power/
7883 F:      include/linux/freezer.h
7884 F:      include/linux/pm.h
7885 F:      include/linux/suspend.h
7886 F:      kernel/power/
7887
7888 HID CORE LAYER
7889 M:      Jiri Kosina <jikos@kernel.org>
7890 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7891 L:      linux-input@vger.kernel.org
7892 S:      Maintained
7893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7894 F:      drivers/hid/
7895 F:      include/linux/hid*
7896 F:      include/uapi/linux/hid*
7897
7898 HID SENSOR HUB DRIVERS
7899 M:      Jiri Kosina <jikos@kernel.org>
7900 M:      Jonathan Cameron <jic23@kernel.org>
7901 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7902 L:      linux-input@vger.kernel.org
7903 L:      linux-iio@vger.kernel.org
7904 S:      Maintained
7905 F:      Documentation/hid/hid-sensor*
7906 F:      drivers/hid/hid-sensor-*
7907 F:      drivers/iio/*/hid-*
7908 F:      include/linux/hid-sensor-*
7909
7910 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7911 M:      Thomas Gleixner <tglx@linutronix.de>
7912 L:      linux-kernel@vger.kernel.org
7913 S:      Maintained
7914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7915 F:      Documentation/timers/
7916 F:      include/linux/clockchips.h
7917 F:      include/linux/hrtimer.h
7918 F:      kernel/time/clockevents.c
7919 F:      kernel/time/hrtimer.c
7920 F:      kernel/time/timer_*.c
7921
7922 HIGH-SPEED SCC DRIVER FOR AX.25
7923 L:      linux-hams@vger.kernel.org
7924 S:      Orphan
7925 F:      drivers/net/hamradio/dmascc.c
7926 F:      drivers/net/hamradio/scc.c
7927
7928 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7929 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7930 S:      Supported
7931 W:      http://www.highpoint-tech.com
7932 F:      Documentation/scsi/hptiop.rst
7933 F:      drivers/scsi/hptiop.c
7934
7935 HIPPI
7936 M:      Jes Sorensen <jes@trained-monkey.org>
7937 L:      linux-hippi@sunsite.dk
7938 S:      Maintained
7939 F:      drivers/net/hippi/
7940 F:      include/linux/hippidevice.h
7941 F:      include/uapi/linux/if_hippi.h
7942 F:      net/802/hippi.c
7943
7944 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
7945 M:      Kurt Kanzenbach <kurt@linutronix.de>
7946 L:      netdev@vger.kernel.org
7947 S:      Maintained
7948 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
7949 F:      drivers/net/dsa/hirschmann/*
7950 F:      include/linux/platform_data/hirschmann-hellcreek.h
7951 F:      net/dsa/tag_hellcreek.c
7952
7953 HISILICON DMA DRIVER
7954 M:      Zhou Wang <wangzhou1@hisilicon.com>
7955 L:      dmaengine@vger.kernel.org
7956 S:      Maintained
7957 F:      drivers/dma/hisi_dma.c
7958
7959 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7960 M:      Zaibo Xu <xuzaibo@huawei.com>
7961 L:      linux-crypto@vger.kernel.org
7962 S:      Maintained
7963 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7964 F:      drivers/crypto/hisilicon/hpre/hpre.h
7965 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7966 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7967
7968 HISILICON LPC BUS DRIVER
7969 M:      john.garry@huawei.com
7970 S:      Maintained
7971 W:      http://www.hisilicon.com
7972 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
7973 F:      drivers/bus/hisi_lpc.c
7974
7975 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7976 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7977 M:      Salil Mehta <salil.mehta@huawei.com>
7978 L:      netdev@vger.kernel.org
7979 S:      Maintained
7980 W:      http://www.hisilicon.com
7981 F:      drivers/net/ethernet/hisilicon/hns3/
7982
7983 HISILICON NETWORK SUBSYSTEM DRIVER
7984 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7985 M:      Salil Mehta <salil.mehta@huawei.com>
7986 L:      netdev@vger.kernel.org
7987 S:      Maintained
7988 W:      http://www.hisilicon.com
7989 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7990 F:      drivers/net/ethernet/hisilicon/
7991
7992 HIKEY960 ONBOARD USB GPIO HUB DRIVER
7993 M:      John Stultz <john.stultz@linaro.org>
7994 L:      linux-kernel@vger.kernel.org
7995 S:      Maintained
7996 F:      drivers/misc/hisi_hikey_usb.c
7997 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
7998
7999 HISILICON PMU DRIVER
8000 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8001 S:      Supported
8002 W:      http://www.hisilicon.com
8003 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8004 F:      drivers/perf/hisilicon
8005
8006 HISILICON QM AND ZIP Controller DRIVER
8007 M:      Zhou Wang <wangzhou1@hisilicon.com>
8008 L:      linux-crypto@vger.kernel.org
8009 S:      Maintained
8010 F:      Documentation/ABI/testing/debugfs-hisi-zip
8011 F:      drivers/crypto/hisilicon/qm.c
8012 F:      drivers/crypto/hisilicon/qm.h
8013 F:      drivers/crypto/hisilicon/sgl.c
8014 F:      drivers/crypto/hisilicon/zip/
8015
8016 HISILICON ROCE DRIVER
8017 M:      Lijun Ou <oulijun@huawei.com>
8018 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
8019 M:      Weihang Li <liweihang@huawei.com>
8020 L:      linux-rdma@vger.kernel.org
8021 S:      Maintained
8022 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8023 F:      drivers/infiniband/hw/hns/
8024
8025 HISILICON SAS Controller
8026 M:      John Garry <john.garry@huawei.com>
8027 S:      Supported
8028 W:      http://www.hisilicon.com
8029 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8030 F:      drivers/scsi/hisi_sas/
8031
8032 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8033 M:      Zaibo Xu <xuzaibo@huawei.com>
8034 L:      linux-crypto@vger.kernel.org
8035 S:      Maintained
8036 F:      Documentation/ABI/testing/debugfs-hisi-sec
8037 F:      drivers/crypto/hisilicon/sec2/sec.h
8038 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8039 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8040 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8041
8042 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8043 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8044 L:      devel@driverdev.osuosl.org
8045 S:      Maintained
8046 F:      drivers/staging/hikey9xx/
8047
8048 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8049 M:      Zaibo Xu <xuzaibo@huawei.com>
8050 S:      Maintained
8051 F:      drivers/crypto/hisilicon/trng/trng.c
8052
8053 HISILICON V3XX SPI NOR FLASH Controller Driver
8054 M:      John Garry <john.garry@huawei.com>
8055 S:      Maintained
8056 W:      http://www.hisilicon.com
8057 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8058
8059 HMM - Heterogeneous Memory Management
8060 M:      Jérôme Glisse <jglisse@redhat.com>
8061 L:      linux-mm@kvack.org
8062 S:      Maintained
8063 F:      Documentation/vm/hmm.rst
8064 F:      include/linux/hmm*
8065 F:      lib/test_hmm*
8066 F:      mm/hmm*
8067 F:      tools/testing/selftests/vm/*hmm*
8068
8069 HOST AP DRIVER
8070 M:      Jouni Malinen <j@w1.fi>
8071 L:      linux-wireless@vger.kernel.org
8072 S:      Obsolete
8073 W:      http://w1.fi/hostap-driver.html
8074 F:      drivers/net/wireless/intersil/hostap/
8075
8076 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8077 L:      platform-driver-x86@vger.kernel.org
8078 S:      Orphan
8079 F:      drivers/platform/x86/tc1100-wmi.c
8080
8081 HPET:   High Precision Event Timers driver
8082 M:      Clemens Ladisch <clemens@ladisch.de>
8083 S:      Maintained
8084 F:      Documentation/timers/hpet.rst
8085 F:      drivers/char/hpet.c
8086 F:      include/linux/hpet.h
8087 F:      include/uapi/linux/hpet.h
8088
8089 HPET:   x86
8090 S:      Orphan
8091 F:      arch/x86/include/asm/hpet.h
8092 F:      arch/x86/kernel/hpet.c
8093
8094 HPFS FILESYSTEM
8095 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8096 S:      Maintained
8097 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8098 F:      fs/hpfs/
8099
8100 HSI SUBSYSTEM
8101 M:      Sebastian Reichel <sre@kernel.org>
8102 S:      Maintained
8103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8104 F:      Documentation/ABI/testing/sysfs-bus-hsi
8105 F:      Documentation/driver-api/hsi.rst
8106 F:      drivers/hsi/
8107 F:      include/linux/hsi/
8108 F:      include/uapi/linux/hsi/
8109
8110 HSO 3G MODEM DRIVER
8111 L:      linux-usb@vger.kernel.org
8112 S:      Orphan
8113 F:      drivers/net/usb/hso.c
8114
8115 HSR NETWORK PROTOCOL
8116 L:      netdev@vger.kernel.org
8117 S:      Orphan
8118 F:      net/hsr/
8119
8120 HT16K33 LED CONTROLLER DRIVER
8121 M:      Robin van der Gracht <robin@protonic.nl>
8122 S:      Maintained
8123 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8124 F:      drivers/auxdisplay/ht16k33.c
8125
8126 HTCPEN TOUCHSCREEN DRIVER
8127 M:      Pau Oliva Fora <pof@eslack.org>
8128 L:      linux-input@vger.kernel.org
8129 S:      Maintained
8130 F:      drivers/input/touchscreen/htcpen.c
8131
8132 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8133 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8134 L:      linux-iio@vger.kernel.org
8135 S:      Maintained
8136 W:      http://www.st.com/
8137 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8138 F:      drivers/iio/humidity/hts221*
8139
8140 HUAWEI ETHERNET DRIVER
8141 M:      Bin Luo <luobin9@huawei.com>
8142 L:      netdev@vger.kernel.org
8143 S:      Supported
8144 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8145 F:      drivers/net/ethernet/huawei/hinic/
8146
8147 HUGETLB FILESYSTEM
8148 M:      Mike Kravetz <mike.kravetz@oracle.com>
8149 L:      linux-mm@kvack.org
8150 S:      Maintained
8151 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8152 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8153 F:      Documentation/vm/hugetlbfs_reserv.rst
8154 F:      fs/hugetlbfs/
8155 F:      include/linux/hugetlb.h
8156 F:      mm/hugetlb.c
8157
8158 HVA ST MEDIA DRIVER
8159 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8160 L:      linux-media@vger.kernel.org
8161 S:      Supported
8162 W:      https://linuxtv.org
8163 T:      git git://linuxtv.org/media_tree.git
8164 F:      drivers/media/platform/sti/hva
8165
8166 HWPOISON MEMORY FAILURE HANDLING
8167 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8168 L:      linux-mm@kvack.org
8169 S:      Maintained
8170 F:      mm/hwpoison-inject.c
8171 F:      mm/memory-failure.c
8172
8173 HYGON PROCESSOR SUPPORT
8174 M:      Pu Wen <puwen@hygon.cn>
8175 L:      linux-kernel@vger.kernel.org
8176 S:      Maintained
8177 F:      arch/x86/kernel/cpu/hygon.c
8178
8179 HYNIX HI556 SENSOR DRIVER
8180 M:      Shawn Tu <shawnx.tu@intel.com>
8181 L:      linux-media@vger.kernel.org
8182 S:      Maintained
8183 T:      git git://linuxtv.org/media_tree.git
8184 F:      drivers/media/i2c/hi556.c
8185
8186 Hyper-V CORE AND DRIVERS
8187 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8188 M:      Haiyang Zhang <haiyangz@microsoft.com>
8189 M:      Stephen Hemminger <sthemmin@microsoft.com>
8190 M:      Wei Liu <wei.liu@kernel.org>
8191 L:      linux-hyperv@vger.kernel.org
8192 S:      Supported
8193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8194 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8195 F:      Documentation/ABI/testing/debugfs-hyperv
8196 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8197 F:      arch/x86/hyperv
8198 F:      arch/x86/include/asm/hyperv-tlfs.h
8199 F:      arch/x86/include/asm/mshyperv.h
8200 F:      arch/x86/include/asm/trace/hyperv.h
8201 F:      arch/x86/kernel/cpu/mshyperv.c
8202 F:      drivers/clocksource/hyperv_timer.c
8203 F:      drivers/hid/hid-hyperv.c
8204 F:      drivers/hv/
8205 F:      drivers/input/serio/hyperv-keyboard.c
8206 F:      drivers/iommu/hyperv-iommu.c
8207 F:      drivers/net/hyperv/
8208 F:      drivers/pci/controller/pci-hyperv-intf.c
8209 F:      drivers/pci/controller/pci-hyperv.c
8210 F:      drivers/scsi/storvsc_drv.c
8211 F:      drivers/uio/uio_hv_generic.c
8212 F:      drivers/video/fbdev/hyperv_fb.c
8213 F:      include/asm-generic/hyperv-tlfs.h
8214 F:      include/asm-generic/mshyperv.h
8215 F:      include/clocksource/hyperv_timer.h
8216 F:      include/linux/hyperv.h
8217 F:      include/uapi/linux/hyperv.h
8218 F:      net/vmw_vsock/hyperv_transport.c
8219 F:      tools/hv/
8220
8221 HYPERBUS SUPPORT
8222 M:      Vignesh Raghavendra <vigneshr@ti.com>
8223 L:      linux-mtd@lists.infradead.org
8224 S:      Supported
8225 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8226 C:      irc://irc.oftc.net/mtd
8227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8228 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8229 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8230 F:      drivers/mtd/hyperbus/
8231 F:      include/linux/mtd/hyperbus.h
8232
8233 HYPERVISOR VIRTUAL CONSOLE DRIVER
8234 L:      linuxppc-dev@lists.ozlabs.org
8235 S:      Odd Fixes
8236 F:      drivers/tty/hvc/
8237
8238 I2C ACPI SUPPORT
8239 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8240 L:      linux-i2c@vger.kernel.org
8241 L:      linux-acpi@vger.kernel.org
8242 S:      Maintained
8243 F:      drivers/i2c/i2c-core-acpi.c
8244
8245 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8246 M:      Ajay Gupta <ajayg@nvidia.com>
8247 L:      linux-i2c@vger.kernel.org
8248 S:      Maintained
8249 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8250 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8251
8252 I2C MUXES
8253 M:      Peter Rosin <peda@axentia.se>
8254 L:      linux-i2c@vger.kernel.org
8255 S:      Maintained
8256 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8257 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8258 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8259 F:      Documentation/i2c/i2c-topology.rst
8260 F:      Documentation/i2c/muxes/
8261 F:      drivers/i2c/i2c-mux.c
8262 F:      drivers/i2c/muxes/
8263 F:      include/linux/i2c-mux.h
8264
8265 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8266 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8267 L:      linux-i2c@vger.kernel.org
8268 S:      Maintained
8269 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8270 F:      drivers/i2c/busses/i2c-mv64xxx.c
8271
8272 I2C OVER PARALLEL PORT
8273 M:      Jean Delvare <jdelvare@suse.com>
8274 L:      linux-i2c@vger.kernel.org
8275 S:      Maintained
8276 F:      Documentation/i2c/busses/i2c-parport.rst
8277 F:      drivers/i2c/busses/i2c-parport.c
8278
8279 I2C SUBSYSTEM
8280 M:      Wolfram Sang <wsa@kernel.org>
8281 L:      linux-i2c@vger.kernel.org
8282 S:      Maintained
8283 W:      https://i2c.wiki.kernel.org/
8284 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8286 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8287 F:      Documentation/i2c/
8288 F:      drivers/i2c/*
8289 F:      include/linux/i2c-dev.h
8290 F:      include/linux/i2c-smbus.h
8291 F:      include/linux/i2c.h
8292 F:      include/uapi/linux/i2c-*.h
8293 F:      include/uapi/linux/i2c.h
8294
8295 I2C SUBSYSTEM HOST DRIVERS
8296 L:      linux-i2c@vger.kernel.org
8297 S:      Odd Fixes
8298 W:      https://i2c.wiki.kernel.org/
8299 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8301 F:      Documentation/devicetree/bindings/i2c/
8302 F:      drivers/i2c/algos/
8303 F:      drivers/i2c/busses/
8304
8305 I2C-TAOS-EVM DRIVER
8306 M:      Jean Delvare <jdelvare@suse.com>
8307 L:      linux-i2c@vger.kernel.org
8308 S:      Maintained
8309 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8310 F:      drivers/i2c/busses/i2c-taos-evm.c
8311
8312 I2C-TINY-USB DRIVER
8313 M:      Till Harbaum <till@harbaum.org>
8314 L:      linux-i2c@vger.kernel.org
8315 S:      Maintained
8316 W:      http://www.harbaum.org/till/i2c_tiny_usb
8317 F:      drivers/i2c/busses/i2c-tiny-usb.c
8318
8319 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8320 M:      Jean Delvare <jdelvare@suse.com>
8321 L:      linux-i2c@vger.kernel.org
8322 S:      Maintained
8323 F:      Documentation/i2c/busses/i2c-ali1535.rst
8324 F:      Documentation/i2c/busses/i2c-ali1563.rst
8325 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8326 F:      Documentation/i2c/busses/i2c-amd756.rst
8327 F:      Documentation/i2c/busses/i2c-amd8111.rst
8328 F:      Documentation/i2c/busses/i2c-i801.rst
8329 F:      Documentation/i2c/busses/i2c-nforce2.rst
8330 F:      Documentation/i2c/busses/i2c-piix4.rst
8331 F:      Documentation/i2c/busses/i2c-sis5595.rst
8332 F:      Documentation/i2c/busses/i2c-sis630.rst
8333 F:      Documentation/i2c/busses/i2c-sis96x.rst
8334 F:      Documentation/i2c/busses/i2c-via.rst
8335 F:      Documentation/i2c/busses/i2c-viapro.rst
8336 F:      drivers/i2c/busses/i2c-ali1535.c
8337 F:      drivers/i2c/busses/i2c-ali1563.c
8338 F:      drivers/i2c/busses/i2c-ali15x3.c
8339 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8340 F:      drivers/i2c/busses/i2c-amd756.c
8341 F:      drivers/i2c/busses/i2c-amd8111.c
8342 F:      drivers/i2c/busses/i2c-i801.c
8343 F:      drivers/i2c/busses/i2c-isch.c
8344 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8345 F:      drivers/i2c/busses/i2c-nforce2.c
8346 F:      drivers/i2c/busses/i2c-piix4.c
8347 F:      drivers/i2c/busses/i2c-sis5595.c
8348 F:      drivers/i2c/busses/i2c-sis630.c
8349 F:      drivers/i2c/busses/i2c-sis96x.c
8350 F:      drivers/i2c/busses/i2c-via.c
8351 F:      drivers/i2c/busses/i2c-viapro.c
8352
8353 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8354 M:      Hans de Goede <hdegoede@redhat.com>
8355 L:      linux-i2c@vger.kernel.org
8356 S:      Maintained
8357 F:      drivers/i2c/busses/i2c-cht-wc.c
8358
8359 I2C/SMBUS ISMT DRIVER
8360 M:      Seth Heasley <seth.heasley@intel.com>
8361 M:      Neil Horman <nhorman@tuxdriver.com>
8362 L:      linux-i2c@vger.kernel.org
8363 F:      Documentation/i2c/busses/i2c-ismt.rst
8364 F:      drivers/i2c/busses/i2c-ismt.c
8365
8366 I2C/SMBUS STUB DRIVER
8367 M:      Jean Delvare <jdelvare@suse.com>
8368 L:      linux-i2c@vger.kernel.org
8369 S:      Maintained
8370 F:      drivers/i2c/i2c-stub.c
8371
8372 I3C DRIVER FOR CADENCE I3C MASTER IP
8373 M:      Przemysław Gaj <pgaj@cadence.com>
8374 S:      Maintained
8375 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8376 F:      drivers/i3c/master/i3c-master-cdns.c
8377
8378 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8379 M:      Vitor Soares <vitor.soares@synopsys.com>
8380 S:      Maintained
8381 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8382 F:      drivers/i3c/master/dw*
8383
8384 I3C SUBSYSTEM
8385 M:      Boris Brezillon <bbrezillon@kernel.org>
8386 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8387 S:      Maintained
8388 C:      irc://chat.freenode.net/linux-i3c
8389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8390 F:      Documentation/ABI/testing/sysfs-bus-i3c
8391 F:      Documentation/devicetree/bindings/i3c/
8392 F:      Documentation/driver-api/i3c
8393 F:      drivers/i3c/
8394 F:      include/linux/i3c/
8395
8396 IA64 (Itanium) PLATFORM
8397 M:      Tony Luck <tony.luck@intel.com>
8398 M:      Fenghua Yu <fenghua.yu@intel.com>
8399 L:      linux-ia64@vger.kernel.org
8400 S:      Odd Fixes
8401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8402 F:      Documentation/ia64/
8403 F:      arch/ia64/
8404
8405 IBM Power 842 compression accelerator
8406 M:      Haren Myneni <haren@us.ibm.com>
8407 S:      Supported
8408 F:      crypto/842.c
8409 F:      drivers/crypto/nx/Kconfig
8410 F:      drivers/crypto/nx/Makefile
8411 F:      drivers/crypto/nx/nx-842*
8412 F:      include/linux/sw842.h
8413 F:      lib/842/
8414
8415 IBM Power in-Nest Crypto Acceleration
8416 M:      Breno Leitão <leitao@debian.org>
8417 M:      Nayna Jain <nayna@linux.ibm.com>
8418 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8419 L:      linux-crypto@vger.kernel.org
8420 S:      Supported
8421 F:      drivers/crypto/nx/Kconfig
8422 F:      drivers/crypto/nx/Makefile
8423 F:      drivers/crypto/nx/nx-aes*
8424 F:      drivers/crypto/nx/nx-sha*
8425 F:      drivers/crypto/nx/nx.*
8426 F:      drivers/crypto/nx/nx_csbcpb.h
8427 F:      drivers/crypto/nx/nx_debugfs.c
8428
8429 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8430 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8431 L:      linux-pci@vger.kernel.org
8432 L:      linuxppc-dev@lists.ozlabs.org
8433 S:      Supported
8434 F:      drivers/pci/hotplug/rpadlpar*
8435
8436 IBM Power Linux RAID adapter
8437 M:      Brian King <brking@us.ibm.com>
8438 S:      Supported
8439 F:      drivers/scsi/ipr.*
8440
8441 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8442 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8443 L:      linux-pci@vger.kernel.org
8444 L:      linuxppc-dev@lists.ozlabs.org
8445 S:      Supported
8446 F:      drivers/pci/hotplug/rpaphp*
8447
8448 IBM Power SRIOV Virtual NIC Device Driver
8449 M:      Dany Madden <drt@linux.ibm.com>
8450 M:      Lijun Pan <ljp@linux.ibm.com>
8451 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8452 L:      netdev@vger.kernel.org
8453 S:      Supported
8454 F:      drivers/net/ethernet/ibm/ibmvnic.*
8455
8456 IBM Power Virtual Accelerator Switchboard
8457 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8458 L:      linuxppc-dev@lists.ozlabs.org
8459 S:      Supported
8460 F:      arch/powerpc/include/asm/vas.h
8461 F:      arch/powerpc/platforms/powernv/copy-paste.h
8462 F:      arch/powerpc/platforms/powernv/vas*
8463
8464 IBM Power Virtual Ethernet Device Driver
8465 M:      Cristobal Forno <cforno12@linux.ibm.com>
8466 L:      netdev@vger.kernel.org
8467 S:      Supported
8468 F:      drivers/net/ethernet/ibm/ibmveth.*
8469
8470 IBM Power Virtual FC Device Drivers
8471 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8472 L:      linux-scsi@vger.kernel.org
8473 S:      Supported
8474 F:      drivers/scsi/ibmvscsi/ibmvfc*
8475
8476 IBM Power Virtual Management Channel Driver
8477 M:      Steven Royer <seroyer@linux.ibm.com>
8478 S:      Supported
8479 F:      drivers/misc/ibmvmc.*
8480
8481 IBM Power Virtual SCSI Device Drivers
8482 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8483 L:      linux-scsi@vger.kernel.org
8484 S:      Supported
8485 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8486 F:      include/scsi/viosrp.h
8487
8488 IBM Power Virtual SCSI Device Target Driver
8489 M:      Michael Cyr <mikecyr@linux.ibm.com>
8490 L:      linux-scsi@vger.kernel.org
8491 L:      target-devel@vger.kernel.org
8492 S:      Supported
8493 F:      drivers/scsi/ibmvscsi_tgt/
8494
8495 IBM Power VMX Cryptographic instructions
8496 M:      Breno Leitão <leitao@debian.org>
8497 M:      Nayna Jain <nayna@linux.ibm.com>
8498 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8499 L:      linux-crypto@vger.kernel.org
8500 S:      Supported
8501 F:      drivers/crypto/vmx/Kconfig
8502 F:      drivers/crypto/vmx/Makefile
8503 F:      drivers/crypto/vmx/aes*
8504 F:      drivers/crypto/vmx/ghash*
8505 F:      drivers/crypto/vmx/ppc-xlate.pl
8506 F:      drivers/crypto/vmx/vmx.c
8507
8508 IBM ServeRAID RAID DRIVER
8509 S:      Orphan
8510 F:      drivers/scsi/ips.*
8511
8512 ICH LPC AND GPIO DRIVER
8513 M:      Peter Tyser <ptyser@xes-inc.com>
8514 S:      Maintained
8515 F:      drivers/gpio/gpio-ich.c
8516 F:      drivers/mfd/lpc_ich.c
8517
8518 ICY I2C DRIVER
8519 M:      Max Staudt <max@enpas.org>
8520 L:      linux-i2c@vger.kernel.org
8521 S:      Maintained
8522 F:      drivers/i2c/busses/i2c-icy.c
8523
8524 IDE SUBSYSTEM
8525 M:      "David S. Miller" <davem@davemloft.net>
8526 L:      linux-ide@vger.kernel.org
8527 S:      Maintained
8528 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8530 F:      Documentation/ide/
8531 F:      drivers/ide/
8532 F:      include/linux/ide.h
8533
8534 IDE/ATAPI DRIVERS
8535 M:      Borislav Petkov <bp@alien8.de>
8536 L:      linux-ide@vger.kernel.org
8537 S:      Maintained
8538 F:      Documentation/cdrom/ide-cd.rst
8539 F:      drivers/ide/ide-cd*
8540
8541 IDEAPAD LAPTOP EXTRAS DRIVER
8542 M:      Ike Panhc <ike.pan@canonical.com>
8543 L:      platform-driver-x86@vger.kernel.org
8544 S:      Maintained
8545 W:      http://launchpad.net/ideapad-laptop
8546 F:      drivers/platform/x86/ideapad-laptop.c
8547
8548 IDEAPAD LAPTOP SLIDEBAR DRIVER
8549 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8550 L:      linux-input@vger.kernel.org
8551 S:      Maintained
8552 W:      https://github.com/o2genum/ideapad-slidebar
8553 F:      drivers/input/misc/ideapad_slidebar.c
8554
8555 IDT VersaClock 5 CLOCK DRIVER
8556 M:      Luca Ceresoli <luca@lucaceresoli.net>
8557 S:      Maintained
8558 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8559 F:      drivers/clk/clk-versaclock5.c
8560
8561 IEEE 802.15.4 SUBSYSTEM
8562 M:      Alexander Aring <alex.aring@gmail.com>
8563 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8564 L:      linux-wpan@vger.kernel.org
8565 S:      Maintained
8566 W:      https://linux-wpan.org/
8567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8569 F:      Documentation/networking/ieee802154.rst
8570 F:      drivers/net/ieee802154/
8571 F:      include/linux/ieee802154.h
8572 F:      include/linux/nl802154.h
8573 F:      include/net/af_ieee802154.h
8574 F:      include/net/cfg802154.h
8575 F:      include/net/ieee802154_netdev.h
8576 F:      include/net/mac802154.h
8577 F:      include/net/nl802154.h
8578 F:      net/ieee802154/
8579 F:      net/mac802154/
8580
8581 IFE PROTOCOL
8582 M:      Yotam Gigi <yotam.gi@gmail.com>
8583 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8584 F:      include/net/ife.h
8585 F:      include/uapi/linux/ife.h
8586 F:      net/ife
8587
8588 IGORPLUG-USB IR RECEIVER
8589 M:      Sean Young <sean@mess.org>
8590 L:      linux-media@vger.kernel.org
8591 S:      Maintained
8592 F:      drivers/media/rc/igorplugusb.c
8593
8594 IGUANAWORKS USB IR TRANSCEIVER
8595 M:      Sean Young <sean@mess.org>
8596 L:      linux-media@vger.kernel.org
8597 S:      Maintained
8598 F:      drivers/media/rc/iguanair.c
8599
8600 IIO DIGITAL POTENTIOMETER DAC
8601 M:      Peter Rosin <peda@axentia.se>
8602 L:      linux-iio@vger.kernel.org
8603 S:      Maintained
8604 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8605 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8606 F:      drivers/iio/dac/dpot-dac.c
8607
8608 IIO ENVELOPE DETECTOR
8609 M:      Peter Rosin <peda@axentia.se>
8610 L:      linux-iio@vger.kernel.org
8611 S:      Maintained
8612 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8613 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8614 F:      drivers/iio/adc/envelope-detector.c
8615
8616 IIO MULTIPLEXER
8617 M:      Peter Rosin <peda@axentia.se>
8618 L:      linux-iio@vger.kernel.org
8619 S:      Maintained
8620 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8621 F:      drivers/iio/multiplexer/iio-mux.c
8622
8623 IIO SUBSYSTEM AND DRIVERS
8624 M:      Jonathan Cameron <jic23@kernel.org>
8625 R:      Lars-Peter Clausen <lars@metafoo.de>
8626 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8627 L:      linux-iio@vger.kernel.org
8628 S:      Maintained
8629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8630 F:      Documentation/ABI/testing/configfs-iio*
8631 F:      Documentation/ABI/testing/sysfs-bus-iio*
8632 F:      Documentation/devicetree/bindings/iio/
8633 F:      drivers/iio/
8634 F:      drivers/staging/iio/
8635 F:      include/linux/iio/
8636 F:      tools/iio/
8637
8638 IIO UNIT CONVERTER
8639 M:      Peter Rosin <peda@axentia.se>
8640 L:      linux-iio@vger.kernel.org
8641 S:      Maintained
8642 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8643 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8644 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8645 F:      drivers/iio/afe/iio-rescale.c
8646
8647 IKANOS/ADI EAGLE ADSL USB DRIVER
8648 M:      Matthieu Castet <castet.matthieu@free.fr>
8649 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8650 S:      Maintained
8651 F:      drivers/usb/atm/ueagle-atm.c
8652
8653 IMGTEC ASCII LCD DRIVER
8654 M:      Paul Burton <paulburton@kernel.org>
8655 S:      Maintained
8656 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8657 F:      drivers/auxdisplay/img-ascii-lcd.c
8658
8659 IMGTEC IR DECODER DRIVER
8660 S:      Orphan
8661 F:      drivers/media/rc/img-ir/
8662
8663 IMON SOUNDGRAPH USB IR RECEIVER
8664 M:      Sean Young <sean@mess.org>
8665 L:      linux-media@vger.kernel.org
8666 S:      Maintained
8667 F:      drivers/media/rc/imon.c
8668 F:      drivers/media/rc/imon_raw.c
8669
8670 IMS TWINTURBO FRAMEBUFFER DRIVER
8671 L:      linux-fbdev@vger.kernel.org
8672 S:      Orphan
8673 F:      drivers/video/fbdev/imsttfb.c
8674
8675 INA209 HARDWARE MONITOR DRIVER
8676 M:      Guenter Roeck <linux@roeck-us.net>
8677 L:      linux-hwmon@vger.kernel.org
8678 S:      Maintained
8679 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8680 F:      Documentation/hwmon/ina209.rst
8681 F:      drivers/hwmon/ina209.c
8682
8683 INA2XX HARDWARE MONITOR DRIVER
8684 M:      Guenter Roeck <linux@roeck-us.net>
8685 L:      linux-hwmon@vger.kernel.org
8686 S:      Maintained
8687 F:      Documentation/hwmon/ina2xx.rst
8688 F:      drivers/hwmon/ina2xx.c
8689 F:      include/linux/platform_data/ina2xx.h
8690
8691 INDUSTRY PACK SUBSYSTEM (IPACK)
8692 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8693 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8694 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8695 L:      industrypack-devel@lists.sourceforge.net
8696 S:      Maintained
8697 W:      http://industrypack.sourceforge.net
8698 F:      drivers/ipack/
8699
8700 INFINEON DPS310 Driver
8701 M:      Eddie James <eajames@linux.ibm.com>
8702 L:      linux-iio@vger.kernel.org
8703 S:      Maintained
8704 F:      drivers/iio/pressure/dps310.c
8705
8706 INFINIBAND SUBSYSTEM
8707 M:      Doug Ledford <dledford@redhat.com>
8708 M:      Jason Gunthorpe <jgg@nvidia.com>
8709 L:      linux-rdma@vger.kernel.org
8710 S:      Supported
8711 W:      https://github.com/linux-rdma/rdma-core
8712 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8714 F:      Documentation/devicetree/bindings/infiniband/
8715 F:      Documentation/infiniband/
8716 F:      drivers/infiniband/
8717 F:      include/rdma/
8718 F:      include/trace/events/ib_mad.h
8719 F:      include/trace/events/ib_umad.h
8720 F:      include/uapi/linux/if_infiniband.h
8721 F:      include/uapi/rdma/
8722 F:      samples/bpf/ibumad_kern.c
8723 F:      samples/bpf/ibumad_user.c
8724
8725 INGENIC JZ4780 DMA Driver
8726 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8727 S:      Maintained
8728 F:      drivers/dma/dma-jz4780.c
8729
8730 INGENIC JZ4780 NAND DRIVER
8731 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8732 L:      linux-mtd@lists.infradead.org
8733 S:      Maintained
8734 F:      drivers/mtd/nand/raw/ingenic/
8735
8736 INGENIC JZ47xx SoCs
8737 M:      Paul Cercueil <paul@crapouillou.net>
8738 S:      Maintained
8739 F:      arch/mips/boot/dts/ingenic/
8740 F:      arch/mips/generic/board-ingenic.c
8741 F:      arch/mips/include/asm/mach-ingenic/
8742 F:      arch/mips/ingenic/Kconfig
8743 F:      drivers/clk/ingenic/
8744 F:      drivers/dma/dma-jz4780.c
8745 F:      drivers/gpu/drm/ingenic/
8746 F:      drivers/i2c/busses/i2c-jz4780.c
8747 F:      drivers/iio/adc/ingenic-adc.c
8748 F:      drivers/irqchip/irq-ingenic.c
8749 F:      drivers/memory/jz4780-nemc.c
8750 F:      drivers/mmc/host/jz4740_mmc.c
8751 F:      drivers/mtd/nand/raw/ingenic/
8752 F:      drivers/pinctrl/pinctrl-ingenic.c
8753 F:      drivers/power/supply/ingenic-battery.c
8754 F:      drivers/pwm/pwm-jz4740.c
8755 F:      drivers/remoteproc/ingenic_rproc.c
8756 F:      drivers/rtc/rtc-jz4740.c
8757 F:      drivers/tty/serial/8250/8250_ingenic.c
8758 F:      drivers/usb/musb/jz4740.c
8759 F:      drivers/watchdog/jz4740_wdt.c
8760 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8761 F:      include/linux/mfd/ingenic-tcu.h
8762 F:      sound/soc/codecs/jz47*
8763 F:      sound/soc/jz4740/
8764
8765 INOTIFY
8766 M:      Jan Kara <jack@suse.cz>
8767 R:      Amir Goldstein <amir73il@gmail.com>
8768 L:      linux-fsdevel@vger.kernel.org
8769 S:      Maintained
8770 F:      Documentation/filesystems/inotify.rst
8771 F:      fs/notify/inotify/
8772 F:      include/linux/inotify.h
8773 F:      include/uapi/linux/inotify.h
8774
8775 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8776 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8777 L:      linux-input@vger.kernel.org
8778 S:      Maintained
8779 Q:      http://patchwork.kernel.org/project/linux-input/list/
8780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8781 F:      Documentation/devicetree/bindings/input/
8782 F:      Documentation/devicetree/bindings/serio/
8783 F:      Documentation/input/
8784 F:      drivers/input/
8785 F:      include/linux/input.h
8786 F:      include/linux/input/
8787 F:      include/uapi/linux/input-event-codes.h
8788 F:      include/uapi/linux/input.h
8789
8790 INPUT MULTITOUCH (MT) PROTOCOL
8791 M:      Henrik Rydberg <rydberg@bitmath.org>
8792 L:      linux-input@vger.kernel.org
8793 S:      Odd fixes
8794 F:      Documentation/input/multi-touch-protocol.rst
8795 F:      drivers/input/input-mt.c
8796 K:      \b(ABS|SYN)_MT_
8797
8798 INSIDE SECURE CRYPTO DRIVER
8799 M:      Antoine Tenart <atenart@kernel.org>
8800 L:      linux-crypto@vger.kernel.org
8801 S:      Maintained
8802 F:      drivers/crypto/inside-secure/
8803
8804 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8805 M:      Mimi Zohar <zohar@linux.ibm.com>
8806 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8807 L:      linux-integrity@vger.kernel.org
8808 S:      Supported
8809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8810 F:      security/integrity/ima/
8811
8812 INTEL 810/815 FRAMEBUFFER DRIVER
8813 M:      Antonino Daplas <adaplas@gmail.com>
8814 L:      linux-fbdev@vger.kernel.org
8815 S:      Maintained
8816 F:      drivers/video/fbdev/i810/
8817
8818 INTEL ASoC DRIVERS
8819 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8820 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8821 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8822 M:      Jie Yang <yang.jie@linux.intel.com>
8823 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8824 S:      Supported
8825 F:      sound/soc/intel/
8826
8827 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8828 M:      Hans de Goede <hdegoede@redhat.com>
8829 L:      platform-driver-x86@vger.kernel.org
8830 S:      Maintained
8831 F:      drivers/platform/x86/intel_atomisp2_pm.c
8832
8833 INTEL ATOMISP2 LED DRIVER
8834 M:      Hans de Goede <hdegoede@redhat.com>
8835 L:      platform-driver-x86@vger.kernel.org
8836 S:      Maintained
8837 F:      drivers/platform/x86/intel_atomisp2_led.c
8838
8839 INTEL BROXTON PMC DRIVER
8840 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8841 M:      Zha Qipeng <qipeng.zha@intel.com>
8842 S:      Maintained
8843 F:      drivers/mfd/intel_pmc_bxt.c
8844 F:      include/linux/mfd/intel_pmc_bxt.h
8845
8846 INTEL C600 SERIES SAS CONTROLLER DRIVER
8847 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8848 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8849 L:      linux-scsi@vger.kernel.org
8850 S:      Supported
8851 T:      git git://git.code.sf.net/p/intel-sas/isci
8852 F:      drivers/scsi/isci/
8853
8854 INTEL CPU family model numbers
8855 M:      Tony Luck <tony.luck@intel.com>
8856 M:      x86@kernel.org
8857 L:      linux-kernel@vger.kernel.org
8858 S:      Supported
8859 F:      arch/x86/include/asm/intel-family.h
8860
8861 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8862 M:      Jani Nikula <jani.nikula@linux.intel.com>
8863 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8864 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8865 L:      intel-gfx@lists.freedesktop.org
8866 S:      Supported
8867 W:      https://01.org/linuxgraphics/
8868 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8869 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8870 C:      irc://chat.freenode.net/intel-gfx
8871 T:      git git://anongit.freedesktop.org/drm-intel
8872 F:      Documentation/gpu/i915.rst
8873 F:      drivers/gpu/drm/i915/
8874 F:      include/drm/i915*
8875 F:      include/uapi/drm/i915_drm.h
8876
8877 INTEL ETHERNET DRIVERS
8878 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
8879 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
8880 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8881 S:      Supported
8882 W:      http://www.intel.com/support/feedback.htm
8883 W:      http://e1000.sourceforge.net/
8884 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8887 F:      Documentation/networking/device_drivers/ethernet/intel/
8888 F:      drivers/net/ethernet/intel/
8889 F:      drivers/net/ethernet/intel/*/
8890 F:      include/linux/avf/virtchnl.h
8891
8892 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8893 M:      Maik Broemme <mbroemme@libmpq.org>
8894 L:      linux-fbdev@vger.kernel.org
8895 S:      Maintained
8896 F:      Documentation/fb/intelfb.rst
8897 F:      drivers/video/fbdev/intelfb/
8898
8899 INTEL GPIO DRIVERS
8900 M:      Andy Shevchenko <andy@kernel.org>
8901 L:      linux-gpio@vger.kernel.org
8902 S:      Maintained
8903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8904 F:      drivers/gpio/gpio-ich.c
8905 F:      drivers/gpio/gpio-intel-mid.c
8906 F:      drivers/gpio/gpio-merrifield.c
8907 F:      drivers/gpio/gpio-ml-ioh.c
8908 F:      drivers/gpio/gpio-pch.c
8909 F:      drivers/gpio/gpio-sch.c
8910 F:      drivers/gpio/gpio-sodaville.c
8911
8912 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8913 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8914 M:      Zhi Wang <zhi.a.wang@intel.com>
8915 L:      intel-gvt-dev@lists.freedesktop.org
8916 L:      intel-gfx@lists.freedesktop.org
8917 S:      Supported
8918 W:      https://01.org/igvt-g
8919 T:      git https://github.com/intel/gvt-linux.git
8920 F:      drivers/gpu/drm/i915/gvt/
8921
8922 INTEL HID EVENT DRIVER
8923 M:      Alex Hung <alex.hung@canonical.com>
8924 L:      platform-driver-x86@vger.kernel.org
8925 S:      Maintained
8926 F:      drivers/platform/x86/intel-hid.c
8927
8928 INTEL I/OAT DMA DRIVER
8929 M:      Dave Jiang <dave.jiang@intel.com>
8930 R:      Dan Williams <dan.j.williams@intel.com>
8931 L:      dmaengine@vger.kernel.org
8932 S:      Supported
8933 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8934 F:      drivers/dma/ioat*
8935
8936 INTEL IADX DRIVER
8937 M:      Dave Jiang <dave.jiang@intel.com>
8938 L:      dmaengine@vger.kernel.org
8939 S:      Supported
8940 F:      drivers/dma/idxd/*
8941 F:      include/uapi/linux/idxd.h
8942
8943 INTEL IDLE DRIVER
8944 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8945 M:      Len Brown <lenb@kernel.org>
8946 L:      linux-pm@vger.kernel.org
8947 S:      Supported
8948 B:      https://bugzilla.kernel.org
8949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8950 F:      drivers/idle/intel_idle.c
8951
8952 INTEL INTEGRATED SENSOR HUB DRIVER
8953 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8954 M:      Jiri Kosina <jikos@kernel.org>
8955 L:      linux-input@vger.kernel.org
8956 S:      Maintained
8957 F:      drivers/hid/intel-ish-hid/
8958
8959 INTEL IOMMU (VT-d)
8960 M:      David Woodhouse <dwmw2@infradead.org>
8961 M:      Lu Baolu <baolu.lu@linux.intel.com>
8962 L:      iommu@lists.linux-foundation.org
8963 S:      Supported
8964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8965 F:      drivers/iommu/intel/
8966 F:      include/linux/intel-iommu.h
8967 F:      include/linux/intel-svm.h
8968
8969 INTEL IOP-ADMA DMA DRIVER
8970 R:      Dan Williams <dan.j.williams@intel.com>
8971 S:      Odd fixes
8972 F:      drivers/dma/iop-adma.c
8973
8974 INTEL IPU3 CSI-2 CIO2 DRIVER
8975 M:      Yong Zhi <yong.zhi@intel.com>
8976 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8977 M:      Bingbu Cao <bingbu.cao@intel.com>
8978 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8979 L:      linux-media@vger.kernel.org
8980 S:      Maintained
8981 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8982 F:      drivers/media/pci/intel/ipu3/
8983
8984 INTEL IPU3 CSI-2 IMGU DRIVER
8985 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8986 R:      Bingbu Cao <bingbu.cao@intel.com>
8987 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8988 L:      linux-media@vger.kernel.org
8989 S:      Maintained
8990 F:      Documentation/admin-guide/media/ipu3.rst
8991 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8992 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8993 F:      drivers/staging/media/ipu3/
8994
8995 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8996 M:      Krzysztof Halasa <khalasa@piap.pl>
8997 S:      Maintained
8998 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8999 F:      drivers/net/wan/ixp4xx_hss.c
9000 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9001 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9002 F:      include/linux/soc/ixp4xx/npe.h
9003 F:      include/linux/soc/ixp4xx/qmgr.h
9004
9005 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9006 M:      Deepak Saxena <dsaxena@plexity.net>
9007 S:      Maintained
9008 F:      drivers/char/hw_random/ixp4xx-rng.c
9009
9010 INTEL KEEM BAY DRM DRIVER
9011 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9012 M:      Edmund Dea <edmund.j.dea@intel.com>
9013 S:      Maintained
9014 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9015 F:      drivers/gpu/drm/kmb/
9016
9017 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9018 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9019 S:      Maintained
9020 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9021 F:      drivers/crypto/keembay/Kconfig
9022 F:      drivers/crypto/keembay/Makefile
9023 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9024 F:      drivers/crypto/keembay/ocs-aes.c
9025 F:      drivers/crypto/keembay/ocs-aes.h
9026
9027 INTEL MANAGEMENT ENGINE (mei)
9028 M:      Tomas Winkler <tomas.winkler@intel.com>
9029 L:      linux-kernel@vger.kernel.org
9030 S:      Supported
9031 F:      Documentation/driver-api/mei/*
9032 F:      drivers/misc/mei/
9033 F:      drivers/watchdog/mei_wdt.c
9034 F:      include/linux/mei_cl_bus.h
9035 F:      include/uapi/linux/mei.h
9036 F:      samples/mei/*
9037
9038 INTEL MENLOW THERMAL DRIVER
9039 M:      Sujith Thomas <sujith.thomas@intel.com>
9040 L:      platform-driver-x86@vger.kernel.org
9041 S:      Supported
9042 W:      https://01.org/linux-acpi
9043 F:      drivers/platform/x86/intel_menlow.c
9044
9045 INTEL P-Unit IPC DRIVER
9046 M:      Zha Qipeng <qipeng.zha@intel.com>
9047 L:      platform-driver-x86@vger.kernel.org
9048 S:      Maintained
9049 F:      arch/x86/include/asm/intel_punit_ipc.h
9050 F:      drivers/platform/x86/intel_punit_ipc.c
9051
9052 INTEL PMC CORE DRIVER
9053 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9054 M:      David E Box <david.e.box@intel.com>
9055 L:      platform-driver-x86@vger.kernel.org
9056 S:      Maintained
9057 F:      drivers/platform/x86/intel_pmc_core*
9058
9059 INTEL PMIC GPIO DRIVERS
9060 M:      Andy Shevchenko <andy@kernel.org>
9061 S:      Maintained
9062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9063 F:      drivers/gpio/gpio-*cove.c
9064 F:      drivers/gpio/gpio-msic.c
9065
9066 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9067 M:      Andy Shevchenko <andy@kernel.org>
9068 S:      Maintained
9069 F:      drivers/mfd/intel_msic.c
9070 F:      drivers/mfd/intel_soc_pmic*
9071 F:      include/linux/mfd/intel_msic.h
9072 F:      include/linux/mfd/intel_soc_pmic*
9073
9074 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9075 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9076 L:      linux-wireless@vger.kernel.org
9077 S:      Maintained
9078 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9079 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9080 F:      drivers/net/wireless/intel/ipw2x00/
9081
9082 INTEL PSTATE DRIVER
9083 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9084 M:      Len Brown <lenb@kernel.org>
9085 L:      linux-pm@vger.kernel.org
9086 S:      Supported
9087 F:      drivers/cpufreq/intel_pstate.c
9088
9089 INTEL RDMA RNIC DRIVER
9090 M:      Faisal Latif <faisal.latif@intel.com>
9091 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9092 L:      linux-rdma@vger.kernel.org
9093 S:      Supported
9094 F:      drivers/infiniband/hw/i40iw/
9095 F:      include/uapi/rdma/i40iw-abi.h
9096
9097 INTEL SCU DRIVERS
9098 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9099 S:      Maintained
9100 F:      arch/x86/include/asm/intel_scu_ipc.h
9101 F:      drivers/platform/x86/intel_scu_*
9102
9103 INTEL SPEED SELECT TECHNOLOGY
9104 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9105 L:      platform-driver-x86@vger.kernel.org
9106 S:      Maintained
9107 F:      drivers/platform/x86/intel_speed_select_if/
9108 F:      include/uapi/linux/isst_if.h
9109 F:      tools/power/x86/intel-speed-select/
9110
9111 INTEL STRATIX10 FIRMWARE DRIVERS
9112 M:      Richard Gong <richard.gong@linux.intel.com>
9113 L:      linux-kernel@vger.kernel.org
9114 S:      Maintained
9115 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9116 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9117 F:      drivers/firmware/stratix10-rsu.c
9118 F:      drivers/firmware/stratix10-svc.c
9119 F:      include/linux/firmware/intel/stratix10-smc.h
9120 F:      include/linux/firmware/intel/stratix10-svc-client.h
9121
9122 INTEL TELEMETRY DRIVER
9123 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9124 M:      "David E. Box" <david.e.box@linux.intel.com>
9125 L:      platform-driver-x86@vger.kernel.org
9126 S:      Maintained
9127 F:      arch/x86/include/asm/intel_telemetry.h
9128 F:      drivers/platform/x86/intel_telemetry*
9129
9130 INTEL UNCORE FREQUENCY CONTROL
9131 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9132 L:      platform-driver-x86@vger.kernel.org
9133 S:      Maintained
9134 F:      drivers/platform/x86/intel-uncore-frequency.c
9135
9136 INTEL VIRTUAL BUTTON DRIVER
9137 M:      AceLan Kao <acelan.kao@canonical.com>
9138 L:      platform-driver-x86@vger.kernel.org
9139 S:      Maintained
9140 F:      drivers/platform/x86/intel-vbtn.c
9141
9142 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9143 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9144 L:      linux-wireless@vger.kernel.org
9145 S:      Supported
9146 F:      drivers/net/wireless/intel/iwlegacy/
9147
9148 INTEL WIRELESS WIFI LINK (iwlwifi)
9149 M:      Luca Coelho <luciano.coelho@intel.com>
9150 L:      linux-wireless@vger.kernel.org
9151 S:      Supported
9152 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9154 F:      drivers/net/wireless/intel/iwlwifi/
9155
9156 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9157 M:      Jithu Joseph <jithu.joseph@intel.com>
9158 R:      Maurice Ma <maurice.ma@intel.com>
9159 S:      Maintained
9160 W:      https://slimbootloader.github.io/security/firmware-update.html
9161 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9162
9163 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9164 M:      Mario Limonciello <mario.limonciello@dell.com>
9165 S:      Maintained
9166 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9167
9168 INTEL(R) TRACE HUB
9169 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9170 S:      Supported
9171 F:      Documentation/trace/intel_th.rst
9172 F:      drivers/hwtracing/intel_th/
9173 F:      include/linux/intel_th.h
9174
9175 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9176 M:      Ning Sun <ning.sun@intel.com>
9177 L:      tboot-devel@lists.sourceforge.net
9178 S:      Supported
9179 W:      http://tboot.sourceforge.net
9180 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9181 F:      Documentation/x86/intel_txt.rst
9182 F:      arch/x86/kernel/tboot.c
9183 F:      include/linux/tboot.h
9184
9185 INTEL SGX
9186 M:      Jarkko Sakkinen <jarkko@kernel.org>
9187 L:      linux-sgx@vger.kernel.org
9188 S:      Supported
9189 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-sgx.git
9191 F:      Documentation/x86/sgx.rst
9192 F:      arch/x86/entry/vdso/vsgx.S
9193 F:      arch/x86/include/uapi/asm/sgx.h
9194 F:      arch/x86/kernel/cpu/sgx/*
9195 F:      tools/testing/selftests/sgx/*
9196 K:      \bSGX_
9197
9198 INTERCONNECT API
9199 M:      Georgi Djakov <georgi.djakov@linaro.org>
9200 L:      linux-pm@vger.kernel.org
9201 S:      Maintained
9202 F:      Documentation/devicetree/bindings/interconnect/
9203 F:      Documentation/driver-api/interconnect.rst
9204 F:      drivers/interconnect/
9205 F:      include/dt-bindings/interconnect/
9206 F:      include/linux/interconnect-provider.h
9207 F:      include/linux/interconnect.h
9208
9209 INVENSENSE ICM-426xx IMU DRIVER
9210 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9211 L:      linux-iio@vger.kernel.org
9212 S:      Maintained
9213 W       https://invensense.tdk.com/
9214 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9215 F:      drivers/iio/imu/inv_icm42600/
9216
9217 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9218 M:      Linus Walleij <linus.walleij@linaro.org>
9219 L:      linux-iio@vger.kernel.org
9220 S:      Maintained
9221 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9222 F:      drivers/iio/gyro/mpu3050*
9223
9224 IOC3 ETHERNET DRIVER
9225 M:      Ralf Baechle <ralf@linux-mips.org>
9226 L:      linux-mips@vger.kernel.org
9227 S:      Maintained
9228 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9229
9230 IOMAP FILESYSTEM LIBRARY
9231 M:      Christoph Hellwig <hch@infradead.org>
9232 M:      Darrick J. Wong <darrick.wong@oracle.com>
9233 M:      linux-xfs@vger.kernel.org
9234 M:      linux-fsdevel@vger.kernel.org
9235 L:      linux-xfs@vger.kernel.org
9236 L:      linux-fsdevel@vger.kernel.org
9237 S:      Supported
9238 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9239 F:      fs/iomap/
9240 F:      include/linux/iomap.h
9241
9242 IOMMU DRIVERS
9243 M:      Joerg Roedel <joro@8bytes.org>
9244 M:      Will Deacon <will@kernel.org>
9245 L:      iommu@lists.linux-foundation.org
9246 S:      Maintained
9247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9248 F:      Documentation/devicetree/bindings/iommu/
9249 F:      Documentation/userspace-api/iommu.rst
9250 F:      drivers/iommu/
9251 F:      include/linux/iommu.h
9252 F:      include/linux/iova.h
9253 F:      include/linux/of_iommu.h
9254 F:      include/uapi/linux/iommu.h
9255
9256 IO_URING
9257 M:      Jens Axboe <axboe@kernel.dk>
9258 L:      io-uring@vger.kernel.org
9259 S:      Maintained
9260 T:      git git://git.kernel.dk/linux-block
9261 T:      git git://git.kernel.dk/liburing
9262 F:      fs/io-wq.c
9263 F:      fs/io-wq.h
9264 F:      fs/io_uring.c
9265 F:      include/uapi/linux/io_uring.h
9266
9267 IPMI SUBSYSTEM
9268 M:      Corey Minyard <minyard@acm.org>
9269 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9270 S:      Supported
9271 W:      http://openipmi.sourceforge.net/
9272 F:      Documentation/driver-api/ipmi.rst
9273 F:      Documentation/devicetree/bindings/ipmi/
9274 F:      drivers/char/ipmi/
9275 F:      include/linux/ipmi*
9276 F:      include/uapi/linux/ipmi*
9277
9278 IPS SCSI RAID DRIVER
9279 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9280 L:      linux-scsi@vger.kernel.org
9281 S:      Maintained
9282 W:      http://www.adaptec.com/
9283 F:      drivers/scsi/ips*
9284
9285 IPVS
9286 M:      Wensong Zhang <wensong@linux-vs.org>
9287 M:      Simon Horman <horms@verge.net.au>
9288 M:      Julian Anastasov <ja@ssi.bg>
9289 L:      netdev@vger.kernel.org
9290 L:      lvs-devel@vger.kernel.org
9291 S:      Maintained
9292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9294 F:      Documentation/networking/ipvs-sysctl.rst
9295 F:      include/net/ip_vs.h
9296 F:      include/uapi/linux/ip_vs.h
9297 F:      net/netfilter/ipvs/
9298
9299 IPWIRELESS DRIVER
9300 M:      Jiri Kosina <jikos@kernel.org>
9301 M:      David Sterba <dsterba@suse.com>
9302 S:      Odd Fixes
9303 F:      drivers/tty/ipwireless/
9304
9305 IPX NETWORK LAYER
9306 L:      netdev@vger.kernel.org
9307 S:      Obsolete
9308 F:      include/uapi/linux/ipx.h
9309
9310 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9311 M:      Marc Zyngier <maz@kernel.org>
9312 S:      Maintained
9313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9314 F:      Documentation/core-api/irq/irq-domain.rst
9315 F:      include/linux/irqdomain.h
9316 F:      kernel/irq/irqdomain.c
9317 F:      kernel/irq/msi.c
9318
9319 IRQ SUBSYSTEM
9320 M:      Thomas Gleixner <tglx@linutronix.de>
9321 L:      linux-kernel@vger.kernel.org
9322 S:      Maintained
9323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9324 F:      kernel/irq/
9325
9326 IRQCHIP DRIVERS
9327 M:      Thomas Gleixner <tglx@linutronix.de>
9328 M:      Marc Zyngier <maz@kernel.org>
9329 L:      linux-kernel@vger.kernel.org
9330 S:      Maintained
9331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9332 F:      Documentation/devicetree/bindings/interrupt-controller/
9333 F:      drivers/irqchip/
9334
9335 ISA
9336 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9337 S:      Maintained
9338 F:      Documentation/driver-api/isa.rst
9339 F:      drivers/base/isa.c
9340 F:      include/linux/isa.h
9341
9342 ISA RADIO MODULE
9343 M:      Hans Verkuil <hverkuil@xs4all.nl>
9344 L:      linux-media@vger.kernel.org
9345 S:      Maintained
9346 W:      https://linuxtv.org
9347 T:      git git://linuxtv.org/media_tree.git
9348 F:      drivers/media/radio/radio-isa*
9349
9350 ISAPNP
9351 M:      Jaroslav Kysela <perex@perex.cz>
9352 S:      Maintained
9353 F:      Documentation/driver-api/isapnp.rst
9354 F:      drivers/pnp/isapnp/
9355 F:      include/linux/isapnp.h
9356
9357 ISCSI
9358 M:      Lee Duncan <lduncan@suse.com>
9359 M:      Chris Leech <cleech@redhat.com>
9360 L:      open-iscsi@googlegroups.com
9361 L:      linux-scsi@vger.kernel.org
9362 S:      Maintained
9363 W:      www.open-iscsi.com
9364 F:      drivers/scsi/*iscsi*
9365 F:      include/scsi/*iscsi*
9366
9367 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9368 M:      Peter Jones <pjones@redhat.com>
9369 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9370 S:      Maintained
9371 F:      drivers/firmware/iscsi_ibft*
9372
9373 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9374 M:      Sagi Grimberg <sagi@grimberg.me>
9375 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9376 L:      linux-rdma@vger.kernel.org
9377 S:      Supported
9378 W:      http://www.openfabrics.org
9379 W:      www.open-iscsi.org
9380 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9381 F:      drivers/infiniband/ulp/iser/
9382
9383 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9384 M:      Sagi Grimberg <sagi@grimberg.me>
9385 L:      linux-rdma@vger.kernel.org
9386 L:      target-devel@vger.kernel.org
9387 S:      Supported
9388 W:      http://www.linux-iscsi.org
9389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9390 F:      drivers/infiniband/ulp/isert
9391
9392 ISDN/CMTP OVER BLUETOOTH
9393 M:      Karsten Keil <isdn@linux-pingi.de>
9394 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9395 L:      netdev@vger.kernel.org
9396 S:      Odd Fixes
9397 W:      http://www.isdn4linux.de
9398 F:      Documentation/isdn/
9399 F:      drivers/isdn/capi/
9400 F:      include/linux/isdn/
9401 F:      include/uapi/linux/isdn/
9402 F:      net/bluetooth/cmtp/
9403
9404 ISDN/mISDN SUBSYSTEM
9405 M:      Karsten Keil <isdn@linux-pingi.de>
9406 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9407 L:      netdev@vger.kernel.org
9408 S:      Maintained
9409 W:      http://www.isdn4linux.de
9410 F:      drivers/isdn/Kconfig
9411 F:      drivers/isdn/Makefile
9412 F:      drivers/isdn/hardware/
9413 F:      drivers/isdn/mISDN/
9414
9415 IT87 HARDWARE MONITORING DRIVER
9416 M:      Jean Delvare <jdelvare@suse.com>
9417 L:      linux-hwmon@vger.kernel.org
9418 S:      Maintained
9419 F:      Documentation/hwmon/it87.rst
9420 F:      drivers/hwmon/it87.c
9421
9422 IT913X MEDIA DRIVER
9423 M:      Antti Palosaari <crope@iki.fi>
9424 L:      linux-media@vger.kernel.org
9425 S:      Maintained
9426 W:      https://linuxtv.org
9427 W:      http://palosaari.fi/linux/
9428 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9429 T:      git git://linuxtv.org/anttip/media_tree.git
9430 F:      drivers/media/tuners/it913x*
9431
9432 IVTV VIDEO4LINUX DRIVER
9433 M:      Andy Walls <awalls@md.metrocast.net>
9434 L:      linux-media@vger.kernel.org
9435 S:      Maintained
9436 W:      https://linuxtv.org
9437 T:      git git://linuxtv.org/media_tree.git
9438 F:      Documentation/admin-guide/media/ivtv*
9439 F:      drivers/media/pci/ivtv/
9440 F:      include/uapi/linux/ivtv*
9441
9442 IX2505V MEDIA DRIVER
9443 M:      Malcolm Priestley <tvboxspy@gmail.com>
9444 L:      linux-media@vger.kernel.org
9445 S:      Maintained
9446 W:      https://linuxtv.org
9447 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9448 F:      drivers/media/dvb-frontends/ix2505v*
9449
9450 JAILHOUSE HYPERVISOR INTERFACE
9451 M:      Jan Kiszka <jan.kiszka@siemens.com>
9452 L:      jailhouse-dev@googlegroups.com
9453 S:      Maintained
9454 F:      arch/x86/include/asm/jailhouse_para.h
9455 F:      arch/x86/kernel/jailhouse.c
9456
9457 JC42.4 TEMPERATURE SENSOR DRIVER
9458 M:      Guenter Roeck <linux@roeck-us.net>
9459 L:      linux-hwmon@vger.kernel.org
9460 S:      Maintained
9461 F:      Documentation/hwmon/jc42.rst
9462 F:      drivers/hwmon/jc42.c
9463
9464 JFS FILESYSTEM
9465 M:      Dave Kleikamp <shaggy@kernel.org>
9466 L:      jfs-discussion@lists.sourceforge.net
9467 S:      Maintained
9468 W:      http://jfs.sourceforge.net/
9469 T:      git git://github.com/kleikamp/linux-shaggy.git
9470 F:      Documentation/admin-guide/jfs.rst
9471 F:      fs/jfs/
9472
9473 JME NETWORK DRIVER
9474 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9475 L:      netdev@vger.kernel.org
9476 S:      Maintained
9477 F:      drivers/net/ethernet/jme.*
9478
9479 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9480 M:      David Woodhouse <dwmw2@infradead.org>
9481 M:      Richard Weinberger <richard@nod.at>
9482 L:      linux-mtd@lists.infradead.org
9483 S:      Odd Fixes
9484 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9485 T:      git git://git.infradead.org/ubifs-2.6.git
9486 F:      fs/jffs2/
9487 F:      include/uapi/linux/jffs2.h
9488
9489 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9490 M:      "Theodore Ts'o" <tytso@mit.edu>
9491 M:      Jan Kara <jack@suse.com>
9492 L:      linux-ext4@vger.kernel.org
9493 S:      Maintained
9494 F:      fs/jbd2/
9495 F:      include/linux/jbd2.h
9496
9497 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9498 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9499 L:      linux-media@vger.kernel.org
9500 S:      Maintained
9501 F:      drivers/media/platform/rcar_jpu.c
9502
9503 JSM Neo PCI based serial card
9504 L:      linux-serial@vger.kernel.org
9505 S:      Orphan
9506 F:      drivers/tty/serial/jsm/
9507
9508 K10TEMP HARDWARE MONITORING DRIVER
9509 M:      Clemens Ladisch <clemens@ladisch.de>
9510 L:      linux-hwmon@vger.kernel.org
9511 S:      Maintained
9512 F:      Documentation/hwmon/k10temp.rst
9513 F:      drivers/hwmon/k10temp.c
9514
9515 K8TEMP HARDWARE MONITORING DRIVER
9516 M:      Rudolf Marek <r.marek@assembler.cz>
9517 L:      linux-hwmon@vger.kernel.org
9518 S:      Maintained
9519 F:      Documentation/hwmon/k8temp.rst
9520 F:      drivers/hwmon/k8temp.c
9521
9522 KASAN
9523 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9524 R:      Alexander Potapenko <glider@google.com>
9525 R:      Dmitry Vyukov <dvyukov@google.com>
9526 L:      kasan-dev@googlegroups.com
9527 S:      Maintained
9528 F:      Documentation/dev-tools/kasan.rst
9529 F:      arch/*/include/asm/kasan.h
9530 F:      arch/*/mm/kasan_init*
9531 F:      include/linux/kasan*.h
9532 F:      lib/test_kasan.c
9533 F:      mm/kasan/
9534 F:      scripts/Makefile.kasan
9535
9536 KCONFIG
9537 M:      Masahiro Yamada <masahiroy@kernel.org>
9538 L:      linux-kbuild@vger.kernel.org
9539 S:      Maintained
9540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9541 F:      Documentation/kbuild/kconfig*
9542 F:      scripts/Kconfig.include
9543 F:      scripts/kconfig/
9544
9545 KCOV
9546 R:      Dmitry Vyukov <dvyukov@google.com>
9547 R:      Andrey Konovalov <andreyknvl@google.com>
9548 L:      kasan-dev@googlegroups.com
9549 S:      Maintained
9550 F:      Documentation/dev-tools/kcov.rst
9551 F:      include/linux/kcov.h
9552 F:      include/uapi/linux/kcov.h
9553 F:      kernel/kcov.c
9554 F:      scripts/Makefile.kcov
9555
9556 KCSAN
9557 M:      Marco Elver <elver@google.com>
9558 R:      Dmitry Vyukov <dvyukov@google.com>
9559 L:      kasan-dev@googlegroups.com
9560 S:      Maintained
9561 F:      Documentation/dev-tools/kcsan.rst
9562 F:      include/linux/kcsan*.h
9563 F:      kernel/kcsan/
9564 F:      lib/Kconfig.kcsan
9565 F:      scripts/Makefile.kcsan
9566
9567 KDUMP
9568 M:      Dave Young <dyoung@redhat.com>
9569 M:      Baoquan He <bhe@redhat.com>
9570 R:      Vivek Goyal <vgoyal@redhat.com>
9571 L:      kexec@lists.infradead.org
9572 S:      Maintained
9573 W:      http://lse.sourceforge.net/kdump/
9574 F:      Documentation/admin-guide/kdump/
9575 F:      fs/proc/vmcore.c
9576 F:      include/linux/crash_core.h
9577 F:      include/linux/crash_dump.h
9578 F:      include/uapi/linux/vmcore.h
9579 F:      kernel/crash_*.c
9580
9581 KEENE FM RADIO TRANSMITTER DRIVER
9582 M:      Hans Verkuil <hverkuil@xs4all.nl>
9583 L:      linux-media@vger.kernel.org
9584 S:      Maintained
9585 W:      https://linuxtv.org
9586 T:      git git://linuxtv.org/media_tree.git
9587 F:      drivers/media/radio/radio-keene*
9588
9589 KERNEL AUTOMOUNTER
9590 M:      Ian Kent <raven@themaw.net>
9591 L:      autofs@vger.kernel.org
9592 S:      Maintained
9593 F:      fs/autofs/
9594
9595 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9596 M:      Masahiro Yamada <masahiroy@kernel.org>
9597 M:      Michal Marek <michal.lkml@markovi.net>
9598 L:      linux-kbuild@vger.kernel.org
9599 S:      Maintained
9600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9601 F:      Documentation/kbuild/
9602 F:      Makefile
9603 F:      scripts/*vmlinux*
9604 F:      scripts/Kbuild*
9605 F:      scripts/Makefile*
9606 F:      scripts/basic/
9607 F:      scripts/mk*
9608 F:      scripts/mod/
9609 F:      scripts/package/
9610
9611 KERNEL JANITORS
9612 L:      kernel-janitors@vger.kernel.org
9613 S:      Odd Fixes
9614 W:      http://kernelnewbies.org/KernelJanitors
9615
9616 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9617 M:      "J. Bruce Fields" <bfields@fieldses.org>
9618 M:      Chuck Lever <chuck.lever@oracle.com>
9619 L:      linux-nfs@vger.kernel.org
9620 S:      Supported
9621 W:      http://nfs.sourceforge.net/
9622 T:      git git://linux-nfs.org/~bfields/linux.git
9623 F:      fs/lockd/
9624 F:      fs/nfs_common/
9625 F:      fs/nfsd/
9626 F:      include/linux/lockd/
9627 F:      include/linux/sunrpc/
9628 F:      include/uapi/linux/nfsd/
9629 F:      include/uapi/linux/sunrpc/
9630 F:      net/sunrpc/
9631 F:      Documentation/filesystems/nfs/
9632
9633 KERNEL SELFTEST FRAMEWORK
9634 M:      Shuah Khan <shuah@kernel.org>
9635 M:      Shuah Khan <skhan@linuxfoundation.org>
9636 L:      linux-kselftest@vger.kernel.org
9637 S:      Maintained
9638 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9640 F:      Documentation/dev-tools/kselftest*
9641 F:      tools/testing/selftests/
9642
9643 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9644 M:      Brendan Higgins <brendanhiggins@google.com>
9645 L:      linux-kselftest@vger.kernel.org
9646 L:      kunit-dev@googlegroups.com
9647 S:      Maintained
9648 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9649 F:      Documentation/dev-tools/kunit/
9650 F:      include/kunit/
9651 F:      lib/kunit/
9652 F:      tools/testing/kunit/
9653
9654 KERNEL USERMODE HELPER
9655 M:      Luis Chamberlain <mcgrof@kernel.org>
9656 L:      linux-kernel@vger.kernel.org
9657 S:      Maintained
9658 F:      include/linux/umh.h
9659 F:      kernel/umh.c
9660
9661 KERNEL VIRTUAL MACHINE (KVM)
9662 M:      Paolo Bonzini <pbonzini@redhat.com>
9663 L:      kvm@vger.kernel.org
9664 S:      Supported
9665 W:      http://www.linux-kvm.org
9666 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9667 F:      Documentation/virt/kvm/
9668 F:      include/asm-generic/kvm*
9669 F:      include/kvm/iodev.h
9670 F:      include/linux/kvm*
9671 F:      include/trace/events/kvm.h
9672 F:      include/uapi/asm-generic/kvm*
9673 F:      include/uapi/linux/kvm*
9674 F:      tools/kvm/
9675 F:      tools/testing/selftests/kvm/
9676 F:      virt/kvm/*
9677
9678 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9679 M:      Marc Zyngier <maz@kernel.org>
9680 R:      James Morse <james.morse@arm.com>
9681 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9682 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9684 L:      kvmarm@lists.cs.columbia.edu
9685 S:      Maintained
9686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9687 F:      arch/arm64/include/asm/kvm*
9688 F:      arch/arm64/include/uapi/asm/kvm*
9689 F:      arch/arm64/kvm/
9690 F:      include/kvm/arm_*
9691
9692 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9693 M:      Huacai Chen <chenhc@lemote.com>
9694 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9695 L:      linux-mips@vger.kernel.org
9696 L:      kvm@vger.kernel.org
9697 S:      Maintained
9698 F:      arch/mips/include/asm/kvm*
9699 F:      arch/mips/include/uapi/asm/kvm*
9700 F:      arch/mips/kvm/
9701
9702 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9703 M:      Paul Mackerras <paulus@ozlabs.org>
9704 L:      kvm-ppc@vger.kernel.org
9705 S:      Supported
9706 W:      http://www.linux-kvm.org/
9707 T:      git git://github.com/agraf/linux-2.6.git
9708 F:      arch/powerpc/include/asm/kvm*
9709 F:      arch/powerpc/include/uapi/asm/kvm*
9710 F:      arch/powerpc/kernel/kvm*
9711 F:      arch/powerpc/kvm/
9712
9713 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9714 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9715 M:      Janosch Frank <frankja@linux.ibm.com>
9716 R:      David Hildenbrand <david@redhat.com>
9717 R:      Cornelia Huck <cohuck@redhat.com>
9718 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9719 L:      kvm@vger.kernel.org
9720 S:      Supported
9721 W:      http://www.ibm.com/developerworks/linux/linux390/
9722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9723 F:      Documentation/virt/kvm/s390*
9724 F:      arch/s390/include/asm/gmap.h
9725 F:      arch/s390/include/asm/kvm*
9726 F:      arch/s390/include/uapi/asm/kvm*
9727 F:      arch/s390/kernel/uv.c
9728 F:      arch/s390/kvm/
9729 F:      arch/s390/mm/gmap.c
9730 F:      tools/testing/selftests/kvm/*/s390x/
9731 F:      tools/testing/selftests/kvm/s390x/
9732
9733 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9734 M:      Paolo Bonzini <pbonzini@redhat.com>
9735 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9736 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9737 R:      Wanpeng Li <wanpengli@tencent.com>
9738 R:      Jim Mattson <jmattson@google.com>
9739 R:      Joerg Roedel <joro@8bytes.org>
9740 L:      kvm@vger.kernel.org
9741 S:      Supported
9742 W:      http://www.linux-kvm.org
9743 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9744 F:      arch/x86/include/asm/kvm*
9745 F:      arch/x86/include/asm/pvclock-abi.h
9746 F:      arch/x86/include/asm/svm.h
9747 F:      arch/x86/include/asm/vmx*.h
9748 F:      arch/x86/include/uapi/asm/kvm*
9749 F:      arch/x86/include/uapi/asm/svm.h
9750 F:      arch/x86/include/uapi/asm/vmx.h
9751 F:      arch/x86/kernel/kvm.c
9752 F:      arch/x86/kernel/kvmclock.c
9753 F:      arch/x86/kvm/
9754 F:      arch/x86/kvm/*/
9755
9756 KERNFS
9757 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9758 M:      Tejun Heo <tj@kernel.org>
9759 S:      Supported
9760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9761 F:      fs/kernfs/
9762 F:      include/linux/kernfs.h
9763
9764 KEXEC
9765 M:      Eric Biederman <ebiederm@xmission.com>
9766 L:      kexec@lists.infradead.org
9767 S:      Maintained
9768 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9769 F:      include/linux/kexec.h
9770 F:      include/uapi/linux/kexec.h
9771 F:      kernel/kexec*
9772
9773 KEYS-ENCRYPTED
9774 M:      Mimi Zohar <zohar@linux.ibm.com>
9775 L:      linux-integrity@vger.kernel.org
9776 L:      keyrings@vger.kernel.org
9777 S:      Supported
9778 F:      Documentation/security/keys/trusted-encrypted.rst
9779 F:      include/keys/encrypted-type.h
9780 F:      security/keys/encrypted-keys/
9781
9782 KEYS-TRUSTED
9783 M:      James Bottomley <jejb@linux.ibm.com>
9784 M:      Jarkko Sakkinen <jarkko@kernel.org>
9785 M:      Mimi Zohar <zohar@linux.ibm.com>
9786 L:      linux-integrity@vger.kernel.org
9787 L:      keyrings@vger.kernel.org
9788 S:      Supported
9789 F:      Documentation/security/keys/trusted-encrypted.rst
9790 F:      include/keys/trusted-type.h
9791 F:      include/keys/trusted_tpm.h
9792 F:      security/keys/trusted-keys/
9793
9794 KEYS/KEYRINGS
9795 M:      David Howells <dhowells@redhat.com>
9796 M:      Jarkko Sakkinen <jarkko@kernel.org>
9797 L:      keyrings@vger.kernel.org
9798 S:      Maintained
9799 F:      Documentation/security/keys/core.rst
9800 F:      include/keys/
9801 F:      include/linux/key-type.h
9802 F:      include/linux/key.h
9803 F:      include/linux/keyctl.h
9804 F:      include/uapi/linux/keyctl.h
9805 F:      security/keys/
9806
9807 KFIFO
9808 M:      Stefani Seibold <stefani@seibold.net>
9809 S:      Maintained
9810 F:      include/linux/kfifo.h
9811 F:      lib/kfifo.c
9812 F:      samples/kfifo/
9813
9814 KGDB / KDB /debug_core
9815 M:      Jason Wessel <jason.wessel@windriver.com>
9816 M:      Daniel Thompson <daniel.thompson@linaro.org>
9817 R:      Douglas Anderson <dianders@chromium.org>
9818 L:      kgdb-bugreport@lists.sourceforge.net
9819 S:      Maintained
9820 W:      http://kgdb.wiki.kernel.org/
9821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9822 F:      Documentation/dev-tools/kgdb.rst
9823 F:      drivers/misc/kgdbts.c
9824 F:      drivers/tty/serial/kgdboc.c
9825 F:      include/linux/kdb.h
9826 F:      include/linux/kgdb.h
9827 F:      kernel/debug/
9828
9829 KHADAS MCU MFD DRIVER
9830 M:      Neil Armstrong <narmstrong@baylibre.com>
9831 L:      linux-amlogic@lists.infradead.org
9832 S:      Maintained
9833 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9834 F:      drivers/mfd/khadas-mcu.c
9835 F:      include/linux/mfd/khadas-mcu.h
9836 F:      drivers/thermal/khadas_mcu_fan.c
9837
9838 KMEMLEAK
9839 M:      Catalin Marinas <catalin.marinas@arm.com>
9840 S:      Maintained
9841 F:      Documentation/dev-tools/kmemleak.rst
9842 F:      include/linux/kmemleak.h
9843 F:      mm/kmemleak.c
9844 F:      samples/kmemleak/kmemleak-test.c
9845
9846 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9847 M:      Luis Chamberlain <mcgrof@kernel.org>
9848 L:      linux-kernel@vger.kernel.org
9849 S:      Maintained
9850 F:      include/linux/kmod.h
9851 F:      kernel/kmod.c
9852 F:      lib/test_kmod.c
9853 F:      tools/testing/selftests/kmod/
9854
9855 KPROBES
9856 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9857 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9858 M:      "David S. Miller" <davem@davemloft.net>
9859 M:      Masami Hiramatsu <mhiramat@kernel.org>
9860 S:      Maintained
9861 F:      Documentation/trace/kprobes.rst
9862 F:      include/asm-generic/kprobes.h
9863 F:      include/linux/kprobes.h
9864 F:      kernel/kprobes.c
9865
9866 KS0108 LCD CONTROLLER DRIVER
9867 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9868 S:      Maintained
9869 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9870 F:      drivers/auxdisplay/ks0108.c
9871 F:      include/linux/ks0108.h
9872
9873 KTD253 BACKLIGHT DRIVER
9874 M:      Linus Walleij <linus.walleij@linaro.org>
9875 S:      Maintained
9876 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9877 F:      drivers/video/backlight/ktd253-backlight.c
9878
9879 L3MDEV
9880 M:      David Ahern <dsahern@kernel.org>
9881 L:      netdev@vger.kernel.org
9882 S:      Maintained
9883 F:      include/net/l3mdev.h
9884 F:      net/l3mdev
9885
9886 L7 BPF FRAMEWORK
9887 M:      John Fastabend <john.fastabend@gmail.com>
9888 M:      Daniel Borkmann <daniel@iogearbox.net>
9889 M:      Jakub Sitnicki <jakub@cloudflare.com>
9890 M:      Lorenz Bauer <lmb@cloudflare.com>
9891 L:      netdev@vger.kernel.org
9892 L:      bpf@vger.kernel.org
9893 S:      Maintained
9894 F:      include/linux/skmsg.h
9895 F:      net/core/skmsg.c
9896 F:      net/core/sock_map.c
9897 F:      net/ipv4/tcp_bpf.c
9898 F:      net/ipv4/udp_bpf.c
9899
9900 LANTIQ / INTEL Ethernet drivers
9901 M:      Hauke Mehrtens <hauke@hauke-m.de>
9902 L:      netdev@vger.kernel.org
9903 S:      Maintained
9904 F:      drivers/net/dsa/lantiq_gswip.c
9905 F:      drivers/net/dsa/lantiq_pce.h
9906 F:      drivers/net/ethernet/lantiq_xrx200.c
9907 F:      net/dsa/tag_gswip.c
9908
9909 LANTIQ MIPS ARCHITECTURE
9910 M:      John Crispin <john@phrozen.org>
9911 L:      linux-mips@vger.kernel.org
9912 S:      Maintained
9913 F:      arch/mips/lantiq
9914 F:      drivers/soc/lantiq
9915
9916 LASI 53c700 driver for PARISC
9917 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9918 L:      linux-scsi@vger.kernel.org
9919 S:      Maintained
9920 F:      Documentation/scsi/53c700.rst
9921 F:      drivers/scsi/53c700*
9922
9923 LEAKING_ADDRESSES
9924 M:      Tobin C. Harding <me@tobin.cc>
9925 M:      Tycho Andersen <tycho@tycho.pizza>
9926 L:      linux-hardening@vger.kernel.org
9927 S:      Maintained
9928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9929 F:      scripts/leaking_addresses.pl
9930
9931 LED SUBSYSTEM
9932 M:      Pavel Machek <pavel@ucw.cz>
9933 R:      Dan Murphy <dmurphy@ti.com>
9934 L:      linux-leds@vger.kernel.org
9935 S:      Maintained
9936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9937 F:      Documentation/devicetree/bindings/leds/
9938 F:      drivers/leds/
9939 F:      include/linux/leds.h
9940
9941 LEGACY EEPROM DRIVER
9942 M:      Jean Delvare <jdelvare@suse.com>
9943 S:      Maintained
9944 F:      Documentation/misc-devices/eeprom.rst
9945 F:      drivers/misc/eeprom/eeprom.c
9946
9947 LEGO MINDSTORMS EV3
9948 R:      David Lechner <david@lechnology.com>
9949 S:      Maintained
9950 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9951 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9952 F:      drivers/power/supply/lego_ev3_battery.c
9953
9954 LEGO USB Tower driver
9955 M:      Juergen Stuber <starblue@users.sourceforge.net>
9956 L:      legousb-devel@lists.sourceforge.net
9957 S:      Maintained
9958 W:      http://legousb.sourceforge.net/
9959 F:      drivers/usb/misc/legousbtower.c
9960
9961 LG LAPTOP EXTRAS
9962 M:      Matan Ziv-Av <matan@svgalib.org>
9963 L:      platform-driver-x86@vger.kernel.org
9964 S:      Maintained
9965 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9966 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9967 F:      drivers/platform/x86/lg-laptop.c
9968
9969 LG2160 MEDIA DRIVER
9970 M:      Michael Krufky <mkrufky@linuxtv.org>
9971 L:      linux-media@vger.kernel.org
9972 S:      Maintained
9973 W:      https://linuxtv.org
9974 W:      http://github.com/mkrufky
9975 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9976 T:      git git://linuxtv.org/mkrufky/tuners.git
9977 F:      drivers/media/dvb-frontends/lg2160.*
9978
9979 LGDT3305 MEDIA DRIVER
9980 M:      Michael Krufky <mkrufky@linuxtv.org>
9981 L:      linux-media@vger.kernel.org
9982 S:      Maintained
9983 W:      https://linuxtv.org
9984 W:      http://github.com/mkrufky
9985 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9986 T:      git git://linuxtv.org/mkrufky/tuners.git
9987 F:      drivers/media/dvb-frontends/lgdt3305.*
9988
9989 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9990 M:      Viresh Kumar <vireshk@kernel.org>
9991 L:      linux-ide@vger.kernel.org
9992 S:      Maintained
9993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9994 F:      drivers/ata/pata_arasan_cf.c
9995 F:      include/linux/pata_arasan_cf_data.h
9996
9997 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9998 M:      Linus Walleij <linus.walleij@linaro.org>
9999 L:      linux-ide@vger.kernel.org
10000 S:      Maintained
10001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10002 F:      drivers/ata/pata_ftide010.c
10003 F:      drivers/ata/sata_gemini.c
10004 F:      drivers/ata/sata_gemini.h
10005
10006 LIBATA SATA AHCI PLATFORM devices support
10007 M:      Hans de Goede <hdegoede@redhat.com>
10008 M:      Jens Axboe <axboe@kernel.dk>
10009 L:      linux-ide@vger.kernel.org
10010 S:      Maintained
10011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10012 F:      drivers/ata/ahci_platform.c
10013 F:      drivers/ata/libahci_platform.c
10014 F:      include/linux/ahci_platform.h
10015
10016 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10017 M:      Mikael Pettersson <mikpelinux@gmail.com>
10018 L:      linux-ide@vger.kernel.org
10019 S:      Maintained
10020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10021 F:      drivers/ata/sata_promise.*
10022
10023 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10024 M:      Jens Axboe <axboe@kernel.dk>
10025 L:      linux-ide@vger.kernel.org
10026 S:      Maintained
10027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10028 F:      Documentation/devicetree/bindings/ata/
10029 F:      drivers/ata/
10030 F:      include/linux/ata.h
10031 F:      include/linux/libata.h
10032
10033 LIBLOCKDEP
10034 M:      Sasha Levin <alexander.levin@microsoft.com>
10035 S:      Maintained
10036 F:      tools/lib/lockdep/
10037
10038 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10039 M:      Dan Williams <dan.j.williams@intel.com>
10040 M:      Vishal Verma <vishal.l.verma@intel.com>
10041 M:      Dave Jiang <dave.jiang@intel.com>
10042 L:      linux-nvdimm@lists.01.org
10043 S:      Supported
10044 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10045 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10046 F:      drivers/nvdimm/blk.c
10047 F:      drivers/nvdimm/region_devs.c
10048
10049 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10050 M:      Vishal Verma <vishal.l.verma@intel.com>
10051 M:      Dan Williams <dan.j.williams@intel.com>
10052 M:      Dave Jiang <dave.jiang@intel.com>
10053 L:      linux-nvdimm@lists.01.org
10054 S:      Supported
10055 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10056 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10057 F:      drivers/nvdimm/btt*
10058
10059 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10060 M:      Dan Williams <dan.j.williams@intel.com>
10061 M:      Vishal Verma <vishal.l.verma@intel.com>
10062 M:      Dave Jiang <dave.jiang@intel.com>
10063 L:      linux-nvdimm@lists.01.org
10064 S:      Supported
10065 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10066 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10067 F:      drivers/nvdimm/pmem*
10068
10069 LIBNVDIMM: DEVICETREE BINDINGS
10070 M:      Oliver O'Halloran <oohall@gmail.com>
10071 L:      linux-nvdimm@lists.01.org
10072 S:      Supported
10073 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10074 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10075 F:      drivers/nvdimm/of_pmem.c
10076
10077 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10078 M:      Dan Williams <dan.j.williams@intel.com>
10079 M:      Vishal Verma <vishal.l.verma@intel.com>
10080 M:      Dave Jiang <dave.jiang@intel.com>
10081 M:      Ira Weiny <ira.weiny@intel.com>
10082 L:      linux-nvdimm@lists.01.org
10083 S:      Supported
10084 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10085 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10087 F:      drivers/acpi/nfit/*
10088 F:      drivers/nvdimm/*
10089 F:      include/linux/libnvdimm.h
10090 F:      include/linux/nd.h
10091 F:      include/uapi/linux/ndctl.h
10092 F:      tools/testing/nvdimm/
10093
10094 LICENSES and SPDX stuff
10095 M:      Thomas Gleixner <tglx@linutronix.de>
10096 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10097 L:      linux-spdx@vger.kernel.org
10098 S:      Maintained
10099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10100 F:      COPYING
10101 F:      Documentation/process/license-rules.rst
10102 F:      LICENSES/
10103 F:      scripts/spdxcheck-test.sh
10104 F:      scripts/spdxcheck.py
10105
10106 LIGHTNVM PLATFORM SUPPORT
10107 M:      Matias Bjorling <mb@lightnvm.io>
10108 L:      linux-block@vger.kernel.org
10109 S:      Maintained
10110 W:      http://github/OpenChannelSSD
10111 F:      drivers/lightnvm/
10112 F:      include/linux/lightnvm.h
10113 F:      include/uapi/linux/lightnvm.h
10114
10115 LINEAR RANGES HELPERS
10116 M:      Mark Brown <broonie@kernel.org>
10117 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10118 F:      lib/linear_ranges.c
10119 F:      lib/test_linear_ranges.c
10120 F:      include/linux/linear_range.h
10121
10122 LINUX FOR POWER MACINTOSH
10123 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10124 L:      linuxppc-dev@lists.ozlabs.org
10125 S:      Odd Fixes
10126 F:      arch/powerpc/platforms/powermac/
10127 F:      drivers/macintosh/
10128
10129 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10130 M:      Michael Ellerman <mpe@ellerman.id.au>
10131 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10132 R:      Paul Mackerras <paulus@samba.org>
10133 L:      linuxppc-dev@lists.ozlabs.org
10134 S:      Supported
10135 W:      https://github.com/linuxppc/wiki/wiki
10136 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10138 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10139 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10140 F:      Documentation/devicetree/bindings/powerpc/
10141 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10142 F:      Documentation/powerpc/
10143 F:      arch/powerpc/
10144 F:      drivers/*/*/*pasemi*
10145 F:      drivers/*/*pasemi*
10146 F:      drivers/char/tpm/tpm_ibmvtpm*
10147 F:      drivers/crypto/nx/
10148 F:      drivers/crypto/vmx/
10149 F:      drivers/i2c/busses/i2c-opal.c
10150 F:      drivers/net/ethernet/ibm/ibmveth.*
10151 F:      drivers/net/ethernet/ibm/ibmvnic.*
10152 F:      drivers/pci/hotplug/pnv_php.c
10153 F:      drivers/pci/hotplug/rpa*
10154 F:      drivers/rtc/rtc-opal.c
10155 F:      drivers/scsi/ibmvscsi/
10156 F:      drivers/tty/hvc/hvc_opal.c
10157 F:      drivers/watchdog/wdrtas.c
10158 F:      tools/testing/selftests/powerpc
10159 N:      /pmac
10160 N:      powermac
10161 N:      powernv
10162 N:      [^a-z0-9]ps3
10163 N:      pseries
10164
10165 LINUX FOR POWERPC EMBEDDED MPC5XXX
10166 M:      Anatolij Gustschin <agust@denx.de>
10167 L:      linuxppc-dev@lists.ozlabs.org
10168 S:      Odd Fixes
10169 F:      arch/powerpc/platforms/512x/
10170 F:      arch/powerpc/platforms/52xx/
10171
10172 LINUX FOR POWERPC EMBEDDED PPC4XX
10173 L:      linuxppc-dev@lists.ozlabs.org
10174 S:      Orphan
10175 F:      arch/powerpc/platforms/40x/
10176 F:      arch/powerpc/platforms/44x/
10177
10178 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10179 M:      Scott Wood <oss@buserror.net>
10180 L:      linuxppc-dev@lists.ozlabs.org
10181 S:      Odd fixes
10182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10183 F:      Documentation/devicetree/bindings/powerpc/fsl/
10184 F:      arch/powerpc/platforms/83xx/
10185 F:      arch/powerpc/platforms/85xx/
10186
10187 LINUX FOR POWERPC EMBEDDED PPC8XX
10188 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10189 L:      linuxppc-dev@lists.ozlabs.org
10190 S:      Maintained
10191 F:      arch/powerpc/platforms/8xx/
10192
10193 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10194 M:      Kees Cook <keescook@chromium.org>
10195 S:      Maintained
10196 F:      drivers/misc/lkdtm/*
10197 F:      tools/testing/selftests/lkdtm/*
10198
10199 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10200 M:      Alan Stern <stern@rowland.harvard.edu>
10201 M:      Andrea Parri <parri.andrea@gmail.com>
10202 M:      Will Deacon <will@kernel.org>
10203 M:      Peter Zijlstra <peterz@infradead.org>
10204 M:      Boqun Feng <boqun.feng@gmail.com>
10205 M:      Nicholas Piggin <npiggin@gmail.com>
10206 M:      David Howells <dhowells@redhat.com>
10207 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10208 M:      Luc Maranget <luc.maranget@inria.fr>
10209 M:      "Paul E. McKenney" <paulmck@kernel.org>
10210 R:      Akira Yokosawa <akiyks@gmail.com>
10211 R:      Daniel Lustig <dlustig@nvidia.com>
10212 R:      Joel Fernandes <joel@joelfernandes.org>
10213 L:      linux-kernel@vger.kernel.org
10214 L:      linux-arch@vger.kernel.org
10215 S:      Supported
10216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10217 F:      Documentation/atomic_bitops.txt
10218 F:      Documentation/atomic_t.txt
10219 F:      Documentation/core-api/atomic_ops.rst
10220 F:      Documentation/core-api/refcount-vs-atomic.rst
10221 F:      Documentation/litmus-tests/
10222 F:      Documentation/memory-barriers.txt
10223 F:      tools/memory-model/
10224
10225 LIS3LV02D ACCELEROMETER DRIVER
10226 M:      Eric Piel <eric.piel@tremplin-utc.net>
10227 S:      Maintained
10228 F:      Documentation/misc-devices/lis3lv02d.rst
10229 F:      drivers/misc/lis3lv02d/
10230 F:      drivers/platform/x86/hp_accel.c
10231
10232 LIST KUNIT TEST
10233 M:      David Gow <davidgow@google.com>
10234 L:      linux-kselftest@vger.kernel.org
10235 L:      kunit-dev@googlegroups.com
10236 S:      Maintained
10237 F:      lib/list-test.c
10238
10239 LIVE PATCHING
10240 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10241 M:      Jiri Kosina <jikos@kernel.org>
10242 M:      Miroslav Benes <mbenes@suse.cz>
10243 M:      Petr Mladek <pmladek@suse.com>
10244 R:      Joe Lawrence <joe.lawrence@redhat.com>
10245 L:      live-patching@vger.kernel.org
10246 S:      Maintained
10247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10248 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10249 F:      Documentation/livepatch/
10250 F:      arch/powerpc/include/asm/livepatch.h
10251 F:      arch/s390/include/asm/livepatch.h
10252 F:      arch/x86/include/asm/livepatch.h
10253 F:      include/linux/livepatch.h
10254 F:      kernel/livepatch/
10255 F:      lib/livepatch/
10256 F:      samples/livepatch/
10257 F:      tools/testing/selftests/livepatch/
10258
10259 LLC (802.2)
10260 L:      netdev@vger.kernel.org
10261 S:      Odd fixes
10262 F:      include/linux/llc.h
10263 F:      include/net/llc*
10264 F:      include/uapi/linux/llc.h
10265 F:      net/llc/
10266
10267 LM73 HARDWARE MONITOR DRIVER
10268 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10269 L:      linux-hwmon@vger.kernel.org
10270 S:      Maintained
10271 F:      drivers/hwmon/lm73.c
10272
10273 LM78 HARDWARE MONITOR DRIVER
10274 M:      Jean Delvare <jdelvare@suse.com>
10275 L:      linux-hwmon@vger.kernel.org
10276 S:      Maintained
10277 F:      Documentation/hwmon/lm78.rst
10278 F:      drivers/hwmon/lm78.c
10279
10280 LM83 HARDWARE MONITOR DRIVER
10281 M:      Jean Delvare <jdelvare@suse.com>
10282 L:      linux-hwmon@vger.kernel.org
10283 S:      Maintained
10284 F:      Documentation/hwmon/lm83.rst
10285 F:      drivers/hwmon/lm83.c
10286
10287 LM90 HARDWARE MONITOR DRIVER
10288 M:      Jean Delvare <jdelvare@suse.com>
10289 L:      linux-hwmon@vger.kernel.org
10290 S:      Maintained
10291 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10292 F:      Documentation/hwmon/lm90.rst
10293 F:      drivers/hwmon/lm90.c
10294 F:      include/dt-bindings/thermal/lm90.h
10295
10296 LM95234 HARDWARE MONITOR DRIVER
10297 M:      Guenter Roeck <linux@roeck-us.net>
10298 L:      linux-hwmon@vger.kernel.org
10299 S:      Maintained
10300 F:      Documentation/hwmon/lm95234.rst
10301 F:      drivers/hwmon/lm95234.c
10302
10303 LME2510 MEDIA DRIVER
10304 M:      Malcolm Priestley <tvboxspy@gmail.com>
10305 L:      linux-media@vger.kernel.org
10306 S:      Maintained
10307 W:      https://linuxtv.org
10308 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10309 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10310
10311 LOADPIN SECURITY MODULE
10312 M:      Kees Cook <keescook@chromium.org>
10313 S:      Supported
10314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10315 F:      Documentation/admin-guide/LSM/LoadPin.rst
10316 F:      security/loadpin/
10317
10318 LOCKING PRIMITIVES
10319 M:      Peter Zijlstra <peterz@infradead.org>
10320 M:      Ingo Molnar <mingo@redhat.com>
10321 M:      Will Deacon <will@kernel.org>
10322 L:      linux-kernel@vger.kernel.org
10323 S:      Maintained
10324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10325 F:      Documentation/locking/
10326 F:      arch/*/include/asm/spinlock*.h
10327 F:      include/linux/lockdep.h
10328 F:      include/linux/mutex*.h
10329 F:      include/linux/rwlock*.h
10330 F:      include/linux/rwsem*.h
10331 F:      include/linux/seqlock.h
10332 F:      include/linux/spinlock*.h
10333 F:      kernel/locking/
10334 F:      lib/locking*.[ch]
10335 X:      kernel/locking/locktorture.c
10336
10337 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10338 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10339 L:      linux-ntfs-dev@lists.sourceforge.net
10340 S:      Maintained
10341 W:      http://www.linux-ntfs.org/content/view/19/37/
10342 F:      Documentation/admin-guide/ldm.rst
10343 F:      block/partitions/ldm.*
10344
10345 LOGITECH HID GAMING KEYBOARDS
10346 M:      Hans de Goede <hdegoede@redhat.com>
10347 L:      linux-input@vger.kernel.org
10348 S:      Maintained
10349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10350 F:      drivers/hid/hid-lg-g15.c
10351
10352 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10353 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10354 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10355 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10356 L:      MPT-FusionLinux.pdl@broadcom.com
10357 L:      linux-scsi@vger.kernel.org
10358 S:      Supported
10359 W:      http://www.avagotech.com/support/
10360 F:      drivers/message/fusion/
10361 F:      drivers/scsi/mpt3sas/
10362
10363 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10364 M:      Matthew Wilcox <willy@infradead.org>
10365 L:      linux-scsi@vger.kernel.org
10366 S:      Maintained
10367 F:      drivers/scsi/sym53c8xx_2/
10368
10369 LTC1660 DAC DRIVER
10370 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10371 L:      linux-iio@vger.kernel.org
10372 S:      Maintained
10373 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10374 F:      drivers/iio/dac/ltc1660.c
10375
10376 LTC2947 HARDWARE MONITOR DRIVER
10377 M:      Nuno Sá <nuno.sa@analog.com>
10378 L:      linux-hwmon@vger.kernel.org
10379 S:      Supported
10380 W:      http://ez.analog.com/community/linux-device-drivers
10381 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10382 F:      drivers/hwmon/ltc2947-core.c
10383 F:      drivers/hwmon/ltc2947-i2c.c
10384 F:      drivers/hwmon/ltc2947-spi.c
10385 F:      drivers/hwmon/ltc2947.h
10386
10387 LTC2983 IIO TEMPERATURE DRIVER
10388 M:      Nuno Sá <nuno.sa@analog.com>
10389 L:      linux-iio@vger.kernel.org
10390 S:      Supported
10391 W:      http://ez.analog.com/community/linux-device-drivers
10392 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10393 F:      drivers/iio/temperature/ltc2983.c
10394
10395 LTC4261 HARDWARE MONITOR DRIVER
10396 M:      Guenter Roeck <linux@roeck-us.net>
10397 L:      linux-hwmon@vger.kernel.org
10398 S:      Maintained
10399 F:      Documentation/hwmon/ltc4261.rst
10400 F:      drivers/hwmon/ltc4261.c
10401
10402 LTC4306 I2C MULTIPLEXER DRIVER
10403 M:      Michael Hennerich <michael.hennerich@analog.com>
10404 L:      linux-i2c@vger.kernel.org
10405 S:      Supported
10406 W:      http://ez.analog.com/community/linux-device-drivers
10407 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10408 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10409
10410 LTP (Linux Test Project)
10411 M:      Mike Frysinger <vapier@gentoo.org>
10412 M:      Cyril Hrubis <chrubis@suse.cz>
10413 M:      Wanlong Gao <wanlong.gao@gmail.com>
10414 M:      Jan Stancek <jstancek@redhat.com>
10415 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10416 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10417 L:      ltp@lists.linux.it (subscribers-only)
10418 S:      Maintained
10419 W:      http://linux-test-project.github.io/
10420 T:      git git://github.com/linux-test-project/ltp.git
10421
10422 LYNX PCS MODULE
10423 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10424 L:      netdev@vger.kernel.org
10425 S:      Supported
10426 F:      drivers/net/pcs/pcs-lynx.c
10427 F:      include/linux/pcs-lynx.h
10428
10429 M68K ARCHITECTURE
10430 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10431 L:      linux-m68k@lists.linux-m68k.org
10432 S:      Maintained
10433 W:      http://www.linux-m68k.org/
10434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10435 F:      arch/m68k/
10436 F:      drivers/zorro/
10437
10438 M68K ON APPLE MACINTOSH
10439 M:      Joshua Thompson <funaho@jurai.org>
10440 L:      linux-m68k@lists.linux-m68k.org
10441 S:      Maintained
10442 W:      http://www.mac.linux-m68k.org/
10443 F:      arch/m68k/mac/
10444 F:      drivers/macintosh/adb-iop.c
10445 F:      drivers/macintosh/via-macii.c
10446
10447 M68K ON HP9000/300
10448 M:      Philip Blundell <philb@gnu.org>
10449 S:      Maintained
10450 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10451 F:      arch/m68k/hp300/
10452
10453 M88DS3103 MEDIA DRIVER
10454 M:      Antti Palosaari <crope@iki.fi>
10455 L:      linux-media@vger.kernel.org
10456 S:      Maintained
10457 W:      https://linuxtv.org
10458 W:      http://palosaari.fi/linux/
10459 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10460 T:      git git://linuxtv.org/anttip/media_tree.git
10461 F:      drivers/media/dvb-frontends/m88ds3103*
10462
10463 M88RS2000 MEDIA DRIVER
10464 M:      Malcolm Priestley <tvboxspy@gmail.com>
10465 L:      linux-media@vger.kernel.org
10466 S:      Maintained
10467 W:      https://linuxtv.org
10468 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10469 F:      drivers/media/dvb-frontends/m88rs2000*
10470
10471 MA901 MASTERKIT USB FM RADIO DRIVER
10472 M:      Alexey Klimov <klimov.linux@gmail.com>
10473 L:      linux-media@vger.kernel.org
10474 S:      Maintained
10475 T:      git git://linuxtv.org/media_tree.git
10476 F:      drivers/media/radio/radio-ma901.c
10477
10478 MAC80211
10479 M:      Johannes Berg <johannes@sipsolutions.net>
10480 L:      linux-wireless@vger.kernel.org
10481 S:      Maintained
10482 W:      https://wireless.wiki.kernel.org/
10483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10485 F:      Documentation/networking/mac80211-injection.rst
10486 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10487 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10488 F:      include/net/mac80211.h
10489 F:      net/mac80211/
10490
10491 MAILBOX API
10492 M:      Jassi Brar <jassisinghbrar@gmail.com>
10493 L:      linux-kernel@vger.kernel.org
10494 S:      Maintained
10495 F:      drivers/mailbox/
10496 F:      include/linux/mailbox_client.h
10497 F:      include/linux/mailbox_controller.h
10498
10499 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10500 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10501 L:      linux-man@vger.kernel.org
10502 S:      Maintained
10503 W:      http://www.kernel.org/doc/man-pages
10504
10505 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10506 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10507 L:      linux-mips@vger.kernel.org
10508 S:      Maintained
10509 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10510
10511 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10512 M:      Andrew Lunn <andrew@lunn.ch>
10513 M:      Vivien Didelot <vivien.didelot@gmail.com>
10514 L:      netdev@vger.kernel.org
10515 S:      Maintained
10516 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10517 F:      Documentation/networking/devlink/mv88e6xxx.rst
10518 F:      drivers/net/dsa/mv88e6xxx/
10519 F:      include/linux/platform_data/mv88e6xxx.h
10520
10521 MARVELL ARMADA 3700 PHY DRIVERS
10522 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10523 S:      Maintained
10524 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10525 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10526 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10527 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10528
10529 MARVELL ARMADA DRM SUPPORT
10530 M:      Russell King <linux@armlinux.org.uk>
10531 S:      Maintained
10532 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10533 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10534 F:      Documentation/devicetree/bindings/display/armada/
10535 F:      drivers/gpu/drm/armada/
10536 F:      include/uapi/drm/armada_drm.h
10537
10538 MARVELL CRYPTO DRIVER
10539 M:      Boris Brezillon <bbrezillon@kernel.org>
10540 M:      Arnaud Ebalard <arno@natisbad.org>
10541 M:      Srujana Challa <schalla@marvell.com>
10542 L:      linux-crypto@vger.kernel.org
10543 S:      Maintained
10544 F:      drivers/crypto/marvell/
10545 F:      include/linux/soc/marvell/octeontx2/
10546
10547 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10548 M:      Mirko Lindner <mlindner@marvell.com>
10549 M:      Stephen Hemminger <stephen@networkplumber.org>
10550 L:      netdev@vger.kernel.org
10551 S:      Maintained
10552 F:      drivers/net/ethernet/marvell/sk*
10553
10554 MARVELL LIBERTAS WIRELESS DRIVER
10555 L:      libertas-dev@lists.infradead.org
10556 S:      Orphan
10557 F:      drivers/net/wireless/marvell/libertas/
10558
10559 MARVELL MACCHIATOBIN SUPPORT
10560 M:      Russell King <linux@armlinux.org.uk>
10561 L:      linux-arm-kernel@lists.infradead.org
10562 S:      Maintained
10563 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10564
10565 MARVELL MV643XX ETHERNET DRIVER
10566 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10567 L:      netdev@vger.kernel.org
10568 S:      Maintained
10569 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10570 F:      include/linux/mv643xx.h
10571
10572 MARVELL MV88X3310 PHY DRIVER
10573 M:      Russell King <linux@armlinux.org.uk>
10574 L:      netdev@vger.kernel.org
10575 S:      Maintained
10576 F:      drivers/net/phy/marvell10g.c
10577
10578 MARVELL MVEBU THERMAL DRIVER
10579 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10580 S:      Maintained
10581 F:      drivers/thermal/armada_thermal.c
10582
10583 MARVELL MVNETA ETHERNET DRIVER
10584 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10585 L:      netdev@vger.kernel.org
10586 S:      Maintained
10587 F:      drivers/net/ethernet/marvell/mvneta.*
10588
10589 MARVELL MVPP2 ETHERNET DRIVER
10590 M:      Marcin Wojtas <mw@semihalf.com>
10591 M:      Russell King <linux@armlinux.org.uk>
10592 L:      netdev@vger.kernel.org
10593 S:      Maintained
10594 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10595 F:      drivers/net/ethernet/marvell/mvpp2/
10596
10597 MARVELL MWIFIEX WIRELESS DRIVER
10598 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10599 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10600 M:      Xinming Hu <huxinming820@gmail.com>
10601 L:      linux-wireless@vger.kernel.org
10602 S:      Maintained
10603 F:      drivers/net/wireless/marvell/mwifiex/
10604
10605 MARVELL MWL8K WIRELESS DRIVER
10606 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10607 L:      linux-wireless@vger.kernel.org
10608 S:      Odd Fixes
10609 F:      drivers/net/wireless/marvell/mwl8k.c
10610
10611 MARVELL NAND CONTROLLER DRIVER
10612 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10613 L:      linux-mtd@lists.infradead.org
10614 S:      Maintained
10615 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10616 F:      drivers/mtd/nand/raw/marvell_nand.c
10617
10618 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10619 M:      Sunil Goutham <sgoutham@marvell.com>
10620 M:      Geetha sowjanya <gakula@marvell.com>
10621 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10622 M:      hariprasad <hkelam@marvell.com>
10623 L:      netdev@vger.kernel.org
10624 S:      Supported
10625 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10626 F:      include/linux/soc/marvell/octeontx2/
10627
10628 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10629 M:      Sunil Goutham <sgoutham@marvell.com>
10630 M:      Linu Cherian <lcherian@marvell.com>
10631 M:      Geetha sowjanya <gakula@marvell.com>
10632 M:      Jerin Jacob <jerinj@marvell.com>
10633 L:      netdev@vger.kernel.org
10634 S:      Supported
10635 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10636 F:      drivers/net/ethernet/marvell/octeontx2/af/
10637
10638 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10639 M:      Vadym Kochan <vkochan@marvell.com>
10640 M:      Taras Chornyi <tchornyi@marvell.com>
10641 S:      Supported
10642 W:      https://github.com/Marvell-switching/switchdev-prestera
10643 F:      drivers/net/ethernet/marvell/prestera/
10644
10645 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10646 M:      Nicolas Pitre <nico@fluxnic.net>
10647 S:      Odd Fixes
10648 F:      drivers/mmc/host/mvsdio.*
10649
10650 MARVELL USB MDIO CONTROLLER DRIVER
10651 M:      Tobias Waldekranz <tobias@waldekranz.com>
10652 L:      netdev@vger.kernel.org
10653 S:      Maintained
10654 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10655 F:      drivers/net/mdio/mdio-mvusb.c
10656
10657 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10658 M:      Hu Ziji <huziji@marvell.com>
10659 L:      linux-mmc@vger.kernel.org
10660 S:      Supported
10661 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10662 F:      drivers/mmc/host/sdhci-xenon*
10663
10664 MATROX FRAMEBUFFER DRIVER
10665 L:      linux-fbdev@vger.kernel.org
10666 S:      Orphan
10667 F:      drivers/video/fbdev/matrox/matroxfb_*
10668 F:      include/uapi/linux/matroxfb.h
10669
10670 MAX16065 HARDWARE MONITOR DRIVER
10671 M:      Guenter Roeck <linux@roeck-us.net>
10672 L:      linux-hwmon@vger.kernel.org
10673 S:      Maintained
10674 F:      Documentation/hwmon/max16065.rst
10675 F:      drivers/hwmon/max16065.c
10676
10677 MAX2175 SDR TUNER DRIVER
10678 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10679 L:      linux-media@vger.kernel.org
10680 S:      Maintained
10681 T:      git git://linuxtv.org/media_tree.git
10682 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10683 F:      Documentation/userspace-api/media/drivers/max2175.rst
10684 F:      drivers/media/i2c/max2175*
10685 F:      include/uapi/linux/max2175.h
10686
10687 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10688 L:      linux-hwmon@vger.kernel.org
10689 S:      Orphan
10690 F:      Documentation/hwmon/max6650.rst
10691 F:      drivers/hwmon/max6650.c
10692
10693 MAX6697 HARDWARE MONITOR DRIVER
10694 M:      Guenter Roeck <linux@roeck-us.net>
10695 L:      linux-hwmon@vger.kernel.org
10696 S:      Maintained
10697 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10698 F:      Documentation/hwmon/max6697.rst
10699 F:      drivers/hwmon/max6697.c
10700 F:      include/linux/platform_data/max6697.h
10701
10702 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10703 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10704 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10705 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10706 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10707 L:      linux-media@vger.kernel.org
10708 S:      Maintained
10709 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10710 F:      drivers/media/i2c/max9286.c
10711
10712 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10713 M:      Peter Rosin <peda@axentia.se>
10714 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10715 S:      Maintained
10716 F:      Documentation/devicetree/bindings/sound/max9860.txt
10717 F:      sound/soc/codecs/max9860.*
10718
10719 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10720 M:      Andreas Klinger <ak@it-klinger.de>
10721 L:      linux-iio@vger.kernel.org
10722 S:      Maintained
10723 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10724 F:      drivers/iio/proximity/mb1232.c
10725
10726 MAXIM MAX77650 PMIC MFD DRIVER
10727 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10728 L:      linux-kernel@vger.kernel.org
10729 S:      Maintained
10730 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10731 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10732 F:      drivers/gpio/gpio-max77650.c
10733 F:      drivers/input/misc/max77650-onkey.c
10734 F:      drivers/leds/leds-max77650.c
10735 F:      drivers/mfd/max77650.c
10736 F:      drivers/power/supply/max77650-charger.c
10737 F:      drivers/regulator/max77650-regulator.c
10738 F:      include/linux/mfd/max77650.h
10739
10740 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10741 M:      Javier Martinez Canillas <javier@dowhile0.org>
10742 L:      linux-kernel@vger.kernel.org
10743 S:      Supported
10744 F:      Documentation/devicetree/bindings/*/*max77802.txt
10745 F:      drivers/regulator/max77802-regulator.c
10746 F:      include/dt-bindings/*/*max77802.h
10747
10748 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10749 M:      Krzysztof Kozlowski <krzk@kernel.org>
10750 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10751 L:      linux-pm@vger.kernel.org
10752 S:      Supported
10753 F:      drivers/power/supply/max14577_charger.c
10754 F:      drivers/power/supply/max77693_charger.c
10755
10756 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10757 M:      Chanwoo Choi <cw00.choi@samsung.com>
10758 M:      Krzysztof Kozlowski <krzk@kernel.org>
10759 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10760 L:      linux-kernel@vger.kernel.org
10761 S:      Supported
10762 F:      Documentation/devicetree/bindings/*/max77686.txt
10763 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10764 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10765 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10766 F:      drivers/*/max14577*.c
10767 F:      drivers/*/max77686*.c
10768 F:      drivers/*/max77693*.c
10769 F:      drivers/clk/clk-max77686.c
10770 F:      drivers/extcon/extcon-max14577.c
10771 F:      drivers/extcon/extcon-max77693.c
10772 F:      drivers/rtc/rtc-max77686.c
10773 F:      include/linux/mfd/max14577*.h
10774 F:      include/linux/mfd/max77686*.h
10775 F:      include/linux/mfd/max77693*.h
10776
10777 MAXIRADIO FM RADIO RECEIVER DRIVER
10778 M:      Hans Verkuil <hverkuil@xs4all.nl>
10779 L:      linux-media@vger.kernel.org
10780 S:      Maintained
10781 W:      https://linuxtv.org
10782 T:      git git://linuxtv.org/media_tree.git
10783 F:      drivers/media/radio/radio-maxiradio*
10784
10785 MCAN MMIO DEVICE DRIVER
10786 M:      Dan Murphy <dmurphy@ti.com>
10787 M:      Sriram Dash <sriram.dash@samsung.com>
10788 L:      linux-can@vger.kernel.org
10789 S:      Maintained
10790 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10791 F:      drivers/net/can/m_can/m_can.c
10792 F:      drivers/net/can/m_can/m_can.h
10793 F:      drivers/net/can/m_can/m_can_platform.c
10794
10795 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10796 M:      Rishi Gupta <gupt21@gmail.com>
10797 L:      linux-i2c@vger.kernel.org
10798 L:      linux-input@vger.kernel.org
10799 S:      Maintained
10800 F:      drivers/hid/hid-mcp2221.c
10801
10802 MCP251XFD SPI-CAN NETWORK DRIVER
10803 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10804 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10805 R:      Thomas Kopp <thomas.kopp@microchip.com>
10806 L:      linux-can@vger.kernel.org
10807 S:      Maintained
10808 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10809 F:      drivers/net/can/spi/mcp251xfd/
10810
10811 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10812 M:      Peter Rosin <peda@axentia.se>
10813 L:      linux-iio@vger.kernel.org
10814 S:      Maintained
10815 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10816 F:      drivers/iio/potentiometer/mcp4018.c
10817 F:      drivers/iio/potentiometer/mcp4531.c
10818
10819 MCR20A IEEE-802.15.4 RADIO DRIVER
10820 M:      Xue Liu <liuxuenetmail@gmail.com>
10821 L:      linux-wpan@vger.kernel.org
10822 S:      Maintained
10823 W:      https://github.com/xueliu/mcr20a-linux
10824 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10825 F:      drivers/net/ieee802154/mcr20a.c
10826 F:      drivers/net/ieee802154/mcr20a.h
10827
10828 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10829 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10830 L:      linux-iio@vger.kernel.org
10831 S:      Maintained
10832 F:      drivers/iio/dac/cio-dac.c
10833
10834 MEDIA CONTROLLER FRAMEWORK
10835 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10836 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10837 L:      linux-media@vger.kernel.org
10838 S:      Supported
10839 W:      https://www.linuxtv.org
10840 T:      git git://linuxtv.org/media_tree.git
10841 F:      drivers/media/mc/
10842 F:      include/media/media-*.h
10843 F:      include/uapi/linux/media.h
10844
10845 MEDIA DRIVER FOR FREESCALE IMX PXP
10846 M:      Philipp Zabel <p.zabel@pengutronix.de>
10847 L:      linux-media@vger.kernel.org
10848 S:      Maintained
10849 T:      git git://linuxtv.org/media_tree.git
10850 F:      drivers/media/platform/imx-pxp.[ch]
10851
10852 MEDIA DRIVERS FOR ASCOT2E
10853 M:      Sergey Kozlov <serjk@netup.ru>
10854 M:      Abylay Ospan <aospan@netup.ru>
10855 L:      linux-media@vger.kernel.org
10856 S:      Supported
10857 W:      https://linuxtv.org
10858 W:      http://netup.tv/
10859 T:      git git://linuxtv.org/media_tree.git
10860 F:      drivers/media/dvb-frontends/ascot2e*
10861
10862 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10863 M:      Jasmin Jessich <jasmin@anw.at>
10864 L:      linux-media@vger.kernel.org
10865 S:      Maintained
10866 W:      https://linuxtv.org
10867 T:      git git://linuxtv.org/media_tree.git
10868 F:      drivers/media/dvb-frontends/cxd2099*
10869
10870 MEDIA DRIVERS FOR CXD2841ER
10871 M:      Sergey Kozlov <serjk@netup.ru>
10872 M:      Abylay Ospan <aospan@netup.ru>
10873 L:      linux-media@vger.kernel.org
10874 S:      Supported
10875 W:      https://linuxtv.org
10876 W:      http://netup.tv/
10877 T:      git git://linuxtv.org/media_tree.git
10878 F:      drivers/media/dvb-frontends/cxd2841er*
10879
10880 MEDIA DRIVERS FOR CXD2880
10881 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10882 L:      linux-media@vger.kernel.org
10883 S:      Supported
10884 W:      http://linuxtv.org/
10885 T:      git git://linuxtv.org/media_tree.git
10886 F:      drivers/media/dvb-frontends/cxd2880/*
10887 F:      drivers/media/spi/cxd2880*
10888
10889 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10890 L:      linux-media@vger.kernel.org
10891 S:      Orphan
10892 W:      https://linuxtv.org
10893 T:      git git://linuxtv.org/media_tree.git
10894 F:      drivers/media/pci/ddbridge/*
10895
10896 MEDIA DRIVERS FOR FREESCALE IMX
10897 M:      Steve Longerbeam <slongerbeam@gmail.com>
10898 M:      Philipp Zabel <p.zabel@pengutronix.de>
10899 L:      linux-media@vger.kernel.org
10900 S:      Maintained
10901 T:      git git://linuxtv.org/media_tree.git
10902 F:      Documentation/admin-guide/media/imx.rst
10903 F:      Documentation/devicetree/bindings/media/imx.txt
10904 F:      drivers/staging/media/imx/
10905 F:      include/linux/imx-media.h
10906 F:      include/media/imx.h
10907
10908 MEDIA DRIVERS FOR FREESCALE IMX7
10909 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10910 L:      linux-media@vger.kernel.org
10911 S:      Maintained
10912 T:      git git://linuxtv.org/media_tree.git
10913 F:      Documentation/admin-guide/media/imx7.rst
10914 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10915 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10916 F:      drivers/staging/media/imx/imx7-media-csi.c
10917 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10918
10919 MEDIA DRIVERS FOR HELENE
10920 M:      Abylay Ospan <aospan@netup.ru>
10921 L:      linux-media@vger.kernel.org
10922 S:      Supported
10923 W:      https://linuxtv.org
10924 W:      http://netup.tv/
10925 T:      git git://linuxtv.org/media_tree.git
10926 F:      drivers/media/dvb-frontends/helene*
10927
10928 MEDIA DRIVERS FOR HORUS3A
10929 M:      Sergey Kozlov <serjk@netup.ru>
10930 M:      Abylay Ospan <aospan@netup.ru>
10931 L:      linux-media@vger.kernel.org
10932 S:      Supported
10933 W:      https://linuxtv.org
10934 W:      http://netup.tv/
10935 T:      git git://linuxtv.org/media_tree.git
10936 F:      drivers/media/dvb-frontends/horus3a*
10937
10938 MEDIA DRIVERS FOR LNBH25
10939 M:      Sergey Kozlov <serjk@netup.ru>
10940 M:      Abylay Ospan <aospan@netup.ru>
10941 L:      linux-media@vger.kernel.org
10942 S:      Supported
10943 W:      https://linuxtv.org
10944 W:      http://netup.tv/
10945 T:      git git://linuxtv.org/media_tree.git
10946 F:      drivers/media/dvb-frontends/lnbh25*
10947
10948 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10949 L:      linux-media@vger.kernel.org
10950 S:      Orphan
10951 W:      https://linuxtv.org
10952 T:      git git://linuxtv.org/media_tree.git
10953 F:      drivers/media/dvb-frontends/mxl5xx*
10954
10955 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10956 M:      Sergey Kozlov <serjk@netup.ru>
10957 M:      Abylay Ospan <aospan@netup.ru>
10958 L:      linux-media@vger.kernel.org
10959 S:      Supported
10960 W:      https://linuxtv.org
10961 W:      http://netup.tv/
10962 T:      git git://linuxtv.org/media_tree.git
10963 F:      drivers/media/pci/netup_unidvb/*
10964
10965 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10966 M:      Dmitry Osipenko <digetx@gmail.com>
10967 L:      linux-media@vger.kernel.org
10968 L:      linux-tegra@vger.kernel.org
10969 S:      Maintained
10970 T:      git git://linuxtv.org/media_tree.git
10971 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10972 F:      drivers/staging/media/tegra-vde/
10973
10974 MEDIA DRIVERS FOR RENESAS - CEU
10975 M:      Jacopo Mondi <jacopo@jmondi.org>
10976 L:      linux-media@vger.kernel.org
10977 L:      linux-renesas-soc@vger.kernel.org
10978 S:      Supported
10979 T:      git git://linuxtv.org/media_tree.git
10980 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10981 F:      drivers/media/platform/renesas-ceu.c
10982 F:      include/media/drv-intf/renesas-ceu.h
10983
10984 MEDIA DRIVERS FOR RENESAS - DRIF
10985 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10986 L:      linux-media@vger.kernel.org
10987 L:      linux-renesas-soc@vger.kernel.org
10988 S:      Supported
10989 T:      git git://linuxtv.org/media_tree.git
10990 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10991 F:      drivers/media/platform/rcar_drif.c
10992
10993 MEDIA DRIVERS FOR RENESAS - FCP
10994 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10995 L:      linux-media@vger.kernel.org
10996 L:      linux-renesas-soc@vger.kernel.org
10997 S:      Supported
10998 T:      git git://linuxtv.org/media_tree.git
10999 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11000 F:      drivers/media/platform/rcar-fcp.c
11001 F:      include/media/rcar-fcp.h
11002
11003 MEDIA DRIVERS FOR RENESAS - FDP1
11004 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11005 L:      linux-media@vger.kernel.org
11006 L:      linux-renesas-soc@vger.kernel.org
11007 S:      Supported
11008 T:      git git://linuxtv.org/media_tree.git
11009 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11010 F:      drivers/media/platform/rcar_fdp1.c
11011
11012 MEDIA DRIVERS FOR RENESAS - VIN
11013 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11014 L:      linux-media@vger.kernel.org
11015 L:      linux-renesas-soc@vger.kernel.org
11016 S:      Supported
11017 T:      git git://linuxtv.org/media_tree.git
11018 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11019 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11020 F:      drivers/media/platform/rcar-vin/
11021
11022 MEDIA DRIVERS FOR RENESAS - VSP1
11023 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11024 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11025 L:      linux-media@vger.kernel.org
11026 L:      linux-renesas-soc@vger.kernel.org
11027 S:      Supported
11028 T:      git git://linuxtv.org/media_tree.git
11029 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11030 F:      drivers/media/platform/vsp1/
11031
11032 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11033 L:      linux-media@vger.kernel.org
11034 S:      Orphan
11035 W:      https://linuxtv.org
11036 T:      git git://linuxtv.org/media_tree.git
11037 F:      drivers/media/dvb-frontends/stv0910*
11038
11039 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11040 L:      linux-media@vger.kernel.org
11041 S:      Orphan
11042 W:      https://linuxtv.org
11043 T:      git git://linuxtv.org/media_tree.git
11044 F:      drivers/media/dvb-frontends/stv6111*
11045
11046 MEDIA DRIVERS FOR STM32 - DCMI
11047 M:      Hugues Fruchet <hugues.fruchet@st.com>
11048 L:      linux-media@vger.kernel.org
11049 S:      Supported
11050 T:      git git://linuxtv.org/media_tree.git
11051 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11052 F:      drivers/media/platform/stm32/stm32-dcmi.c
11053
11054 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11055 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11056 L:      linux-media@vger.kernel.org
11057 S:      Maintained
11058 W:      https://linuxtv.org
11059 Q:      http://patchwork.kernel.org/project/linux-media/list/
11060 T:      git git://linuxtv.org/media_tree.git
11061 F:      Documentation/admin-guide/media/
11062 F:      Documentation/devicetree/bindings/media/
11063 F:      Documentation/driver-api/media/
11064 F:      Documentation/userspace-api/media/
11065 F:      drivers/media/
11066 F:      drivers/staging/media/
11067 F:      include/linux/platform_data/media/
11068 F:      include/media/
11069 F:      include/uapi/linux/dvb/
11070 F:      include/uapi/linux/ivtv*
11071 F:      include/uapi/linux/media.h
11072 F:      include/uapi/linux/meye.h
11073 F:      include/uapi/linux/uvcvideo.h
11074 F:      include/uapi/linux/v4l2-*
11075 F:      include/uapi/linux/videodev2.h
11076
11077 MEDIATEK BLUETOOTH DRIVER
11078 M:      Sean Wang <sean.wang@mediatek.com>
11079 L:      linux-bluetooth@vger.kernel.org
11080 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11081 S:      Maintained
11082 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11083 F:      drivers/bluetooth/btmtkuart.c
11084
11085 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11086 M:      Sean Wang <sean.wang@mediatek.com>
11087 L:      linux-pm@vger.kernel.org
11088 S:      Maintained
11089 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11090 F:      drivers/power/reset/mt6323-poweroff.c
11091
11092 MEDIATEK CIR DRIVER
11093 M:      Sean Wang <sean.wang@mediatek.com>
11094 S:      Maintained
11095 F:      drivers/media/rc/mtk-cir.c
11096
11097 MEDIATEK DMA DRIVER
11098 M:      Sean Wang <sean.wang@mediatek.com>
11099 L:      dmaengine@vger.kernel.org
11100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11101 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11102 S:      Maintained
11103 F:      Documentation/devicetree/bindings/dma/mtk-*
11104 F:      drivers/dma/mediatek/
11105
11106 MEDIATEK ETHERNET DRIVER
11107 M:      Felix Fietkau <nbd@nbd.name>
11108 M:      John Crispin <john@phrozen.org>
11109 M:      Sean Wang <sean.wang@mediatek.com>
11110 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11111 L:      netdev@vger.kernel.org
11112 S:      Maintained
11113 F:      drivers/net/ethernet/mediatek/
11114
11115 MEDIATEK I2C CONTROLLER DRIVER
11116 M:      Qii Wang <qii.wang@mediatek.com>
11117 L:      linux-i2c@vger.kernel.org
11118 S:      Maintained
11119 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11120 F:      drivers/i2c/busses/i2c-mt65xx.c
11121
11122 MEDIATEK JPEG DRIVER
11123 M:      Rick Chang <rick.chang@mediatek.com>
11124 M:      Bin Liu <bin.liu@mediatek.com>
11125 S:      Supported
11126 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11127 F:      drivers/media/platform/mtk-jpeg/
11128
11129 MEDIATEK MDP DRIVER
11130 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11131 M:      Houlong Wei <houlong.wei@mediatek.com>
11132 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11133 S:      Supported
11134 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11135 F:      drivers/media/platform/mtk-mdp/
11136 F:      drivers/media/platform/mtk-vpu/
11137
11138 MEDIATEK MEDIA DRIVER
11139 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11140 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11141 S:      Supported
11142 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11143 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11144 F:      drivers/media/platform/mtk-vcodec/
11145 F:      drivers/media/platform/mtk-vpu/
11146
11147 MEDIATEK MMC/SD/SDIO DRIVER
11148 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11149 S:      Maintained
11150 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11151 F:      drivers/mmc/host/mtk-sd.c
11152
11153 MEDIATEK MT76 WIRELESS LAN DRIVER
11154 M:      Felix Fietkau <nbd@nbd.name>
11155 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11156 R:      Ryder Lee <ryder.lee@mediatek.com>
11157 L:      linux-wireless@vger.kernel.org
11158 S:      Maintained
11159 F:      drivers/net/wireless/mediatek/mt76/
11160
11161 MEDIATEK MT7601U WIRELESS LAN DRIVER
11162 M:      Jakub Kicinski <kubakici@wp.pl>
11163 L:      linux-wireless@vger.kernel.org
11164 S:      Maintained
11165 F:      drivers/net/wireless/mediatek/mt7601u/
11166
11167 MEDIATEK MT7621/28/88 I2C DRIVER
11168 M:      Stefan Roese <sr@denx.de>
11169 L:      linux-i2c@vger.kernel.org
11170 S:      Maintained
11171 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11172 F:      drivers/i2c/busses/i2c-mt7621.c
11173
11174 MEDIATEK NAND CONTROLLER DRIVER
11175 L:      linux-mtd@lists.infradead.org
11176 S:      Orphan
11177 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11178 F:      drivers/mtd/nand/raw/mtk_*
11179
11180 MEDIATEK PMIC LED DRIVER
11181 M:      Sean Wang <sean.wang@mediatek.com>
11182 S:      Maintained
11183 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11184 F:      drivers/leds/leds-mt6323.c
11185
11186 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11187 M:      Sean Wang <sean.wang@mediatek.com>
11188 S:      Maintained
11189 F:      drivers/char/hw_random/mtk-rng.c
11190
11191 MEDIATEK SWITCH DRIVER
11192 M:      Sean Wang <sean.wang@mediatek.com>
11193 M:      Landen Chao <Landen.Chao@mediatek.com>
11194 L:      netdev@vger.kernel.org
11195 S:      Maintained
11196 F:      drivers/net/dsa/mt7530.*
11197 F:      net/dsa/tag_mtk.c
11198
11199 MEDIATEK USB3 DRD IP DRIVER
11200 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11201 L:      linux-usb@vger.kernel.org
11202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11203 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11204 S:      Maintained
11205 F:      drivers/usb/mtu3/
11206
11207 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11208 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11209 M:      Martin Donnelly <martin.donnelly@ge.com>
11210 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11211 S:      Maintained
11212 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11213 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11214
11215 MEGARAID SCSI/SAS DRIVERS
11216 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11217 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11218 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11219 L:      megaraidlinux.pdl@broadcom.com
11220 L:      linux-scsi@vger.kernel.org
11221 S:      Maintained
11222 W:      http://www.avagotech.com/support/
11223 F:      Documentation/scsi/megaraid.rst
11224 F:      drivers/scsi/megaraid.*
11225 F:      drivers/scsi/megaraid/
11226
11227 MELEXIS MLX90614 DRIVER
11228 M:      Crt Mori <cmo@melexis.com>
11229 L:      linux-iio@vger.kernel.org
11230 S:      Supported
11231 W:      http://www.melexis.com
11232 F:      drivers/iio/temperature/mlx90614.c
11233
11234 MELEXIS MLX90632 DRIVER
11235 M:      Crt Mori <cmo@melexis.com>
11236 L:      linux-iio@vger.kernel.org
11237 S:      Supported
11238 W:      http://www.melexis.com
11239 F:      drivers/iio/temperature/mlx90632.c
11240
11241 MELFAS MIP4 TOUCHSCREEN DRIVER
11242 M:      Sangwon Jee <jeesw@melfas.com>
11243 S:      Supported
11244 W:      http://www.melfas.com
11245 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11246 F:      drivers/input/touchscreen/melfas_mip4.c
11247
11248 MELLANOX BLUEFIELD I2C DRIVER
11249 M:      Khalil Blaiech <kblaiech@nvidia.com>
11250 L:      linux-i2c@vger.kernel.org
11251 S:      Supported
11252 F:      drivers/i2c/busses/i2c-mlxbf.c
11253
11254 MELLANOX ETHERNET DRIVER (mlx4_en)
11255 M:      Tariq Toukan <tariqt@nvidia.com>
11256 L:      netdev@vger.kernel.org
11257 S:      Supported
11258 W:      http://www.mellanox.com
11259 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11260 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11261
11262 MELLANOX ETHERNET DRIVER (mlx5e)
11263 M:      Saeed Mahameed <saeedm@nvidia.com>
11264 L:      netdev@vger.kernel.org
11265 S:      Supported
11266 W:      http://www.mellanox.com
11267 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11268 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11269
11270 MELLANOX ETHERNET INNOVA DRIVERS
11271 R:      Boris Pismenny <borisp@nvidia.com>
11272 L:      netdev@vger.kernel.org
11273 S:      Supported
11274 W:      http://www.mellanox.com
11275 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11276 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11277 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11278 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11279 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11280
11281 MELLANOX ETHERNET SWITCH DRIVERS
11282 M:      Jiri Pirko <jiri@nvidia.com>
11283 M:      Ido Schimmel <idosch@nvidia.com>
11284 L:      netdev@vger.kernel.org
11285 S:      Supported
11286 W:      http://www.mellanox.com
11287 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11288 F:      drivers/net/ethernet/mellanox/mlxsw/
11289 F:      tools/testing/selftests/drivers/net/mlxsw/
11290
11291 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11292 M:      mlxsw@nvidia.com
11293 L:      netdev@vger.kernel.org
11294 S:      Supported
11295 W:      http://www.mellanox.com
11296 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11297 F:      drivers/net/ethernet/mellanox/mlxfw/
11298
11299 MELLANOX HARDWARE PLATFORM SUPPORT
11300 M:      Andy Shevchenko <andy@infradead.org>
11301 M:      Darren Hart <dvhart@infradead.org>
11302 M:      Vadim Pasternak <vadimp@nvidia.com>
11303 L:      platform-driver-x86@vger.kernel.org
11304 S:      Supported
11305 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11306 F:      drivers/platform/mellanox/
11307 F:      include/linux/platform_data/mlxreg.h
11308
11309 MELLANOX MLX4 core VPI driver
11310 M:      Tariq Toukan <tariqt@nvidia.com>
11311 L:      netdev@vger.kernel.org
11312 L:      linux-rdma@vger.kernel.org
11313 S:      Supported
11314 W:      http://www.mellanox.com
11315 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11316 F:      drivers/net/ethernet/mellanox/mlx4/
11317 F:      include/linux/mlx4/
11318
11319 MELLANOX MLX4 IB driver
11320 M:      Yishai Hadas <yishaih@nvidia.com>
11321 L:      linux-rdma@vger.kernel.org
11322 S:      Supported
11323 W:      http://www.mellanox.com
11324 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11325 F:      drivers/infiniband/hw/mlx4/
11326 F:      include/linux/mlx4/
11327 F:      include/uapi/rdma/mlx4-abi.h
11328
11329 MELLANOX MLX5 core VPI driver
11330 M:      Saeed Mahameed <saeedm@nvidia.com>
11331 M:      Leon Romanovsky <leonro@nvidia.com>
11332 L:      netdev@vger.kernel.org
11333 L:      linux-rdma@vger.kernel.org
11334 S:      Supported
11335 W:      http://www.mellanox.com
11336 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11337 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11338 F:      drivers/net/ethernet/mellanox/mlx5/core/
11339 F:      include/linux/mlx5/
11340
11341 MELLANOX MLX5 IB driver
11342 M:      Leon Romanovsky <leonro@nvidia.com>
11343 L:      linux-rdma@vger.kernel.org
11344 S:      Supported
11345 W:      http://www.mellanox.com
11346 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11347 F:      drivers/infiniband/hw/mlx5/
11348 F:      include/linux/mlx5/
11349 F:      include/uapi/rdma/mlx5-abi.h
11350
11351 MELLANOX MLXCPLD I2C AND MUX DRIVER
11352 M:      Vadim Pasternak <vadimp@nvidia.com>
11353 M:      Michael Shych <michaelsh@nvidia.com>
11354 L:      linux-i2c@vger.kernel.org
11355 S:      Supported
11356 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11357 F:      drivers/i2c/busses/i2c-mlxcpld.c
11358 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11359
11360 MELLANOX MLXCPLD LED DRIVER
11361 M:      Vadim Pasternak <vadimp@nvidia.com>
11362 L:      linux-leds@vger.kernel.org
11363 S:      Supported
11364 F:      Documentation/leds/leds-mlxcpld.rst
11365 F:      drivers/leds/leds-mlxcpld.c
11366 F:      drivers/leds/leds-mlxreg.c
11367
11368 MELLANOX PLATFORM DRIVER
11369 M:      Vadim Pasternak <vadimp@nvidia.com>
11370 L:      platform-driver-x86@vger.kernel.org
11371 S:      Supported
11372 F:      drivers/platform/x86/mlx-platform.c
11373
11374 MEMBARRIER SUPPORT
11375 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11376 M:      "Paul E. McKenney" <paulmck@kernel.org>
11377 L:      linux-kernel@vger.kernel.org
11378 S:      Supported
11379 F:      arch/powerpc/include/asm/membarrier.h
11380 F:      include/uapi/linux/membarrier.h
11381 F:      kernel/sched/membarrier.c
11382
11383 MEMBLOCK
11384 M:      Mike Rapoport <rppt@linux.ibm.com>
11385 L:      linux-mm@kvack.org
11386 S:      Maintained
11387 F:      Documentation/core-api/boot-time-mm.rst
11388 F:      include/linux/memblock.h
11389 F:      mm/memblock.c
11390
11391 MEMORY CONTROLLER DRIVERS
11392 M:      Krzysztof Kozlowski <krzk@kernel.org>
11393 L:      linux-kernel@vger.kernel.org
11394 S:      Maintained
11395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11396 F:      Documentation/devicetree/bindings/memory-controllers/
11397 F:      drivers/memory/
11398
11399 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11400 M:      Dmitry Osipenko <digetx@gmail.com>
11401 L:      linux-pm@vger.kernel.org
11402 L:      linux-tegra@vger.kernel.org
11403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11404 S:      Maintained
11405 F:      drivers/devfreq/tegra20-devfreq.c
11406 F:      drivers/devfreq/tegra30-devfreq.c
11407
11408 MEMORY MANAGEMENT
11409 M:      Andrew Morton <akpm@linux-foundation.org>
11410 L:      linux-mm@kvack.org
11411 S:      Maintained
11412 W:      http://www.linux-mm.org
11413 T:      quilt https://ozlabs.org/~akpm/mmotm/
11414 T:      quilt https://ozlabs.org/~akpm/mmots/
11415 T:      git git://github.com/hnaz/linux-mm.git
11416 F:      include/linux/gfp.h
11417 F:      include/linux/memory_hotplug.h
11418 F:      include/linux/mm.h
11419 F:      include/linux/mmzone.h
11420 F:      include/linux/vmalloc.h
11421 F:      mm/
11422
11423 MEMORY TECHNOLOGY DEVICES (MTD)
11424 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11425 M:      Richard Weinberger <richard@nod.at>
11426 M:      Vignesh Raghavendra <vigneshr@ti.com>
11427 L:      linux-mtd@lists.infradead.org
11428 S:      Maintained
11429 W:      http://www.linux-mtd.infradead.org/
11430 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11431 C:      irc://irc.oftc.net/mtd
11432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11434 F:      Documentation/devicetree/bindings/mtd/
11435 F:      drivers/mtd/
11436 F:      include/linux/mtd/
11437 F:      include/uapi/mtd/
11438
11439 MEN A21 WATCHDOG DRIVER
11440 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11441 L:      linux-watchdog@vger.kernel.org
11442 S:      Maintained
11443 F:      drivers/watchdog/mena21_wdt.c
11444
11445 MEN CHAMELEON BUS (mcb)
11446 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11447 S:      Maintained
11448 F:      Documentation/driver-api/men-chameleon-bus.rst
11449 F:      drivers/mcb/
11450 F:      include/linux/mcb.h
11451
11452 MEN F21BMC (Board Management Controller)
11453 M:      Andreas Werner <andreas.werner@men.de>
11454 S:      Supported
11455 F:      Documentation/hwmon/menf21bmc.rst
11456 F:      drivers/hwmon/menf21bmc_hwmon.c
11457 F:      drivers/leds/leds-menf21bmc.c
11458 F:      drivers/mfd/menf21bmc.c
11459 F:      drivers/watchdog/menf21bmc_wdt.c
11460
11461 MEN Z069 WATCHDOG DRIVER
11462 M:      Johannes Thumshirn <jth@kernel.org>
11463 L:      linux-watchdog@vger.kernel.org
11464 S:      Maintained
11465 F:      drivers/watchdog/menz69_wdt.c
11466
11467 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11468 M:      Neil Armstrong <narmstrong@baylibre.com>
11469 L:      linux-media@vger.kernel.org
11470 L:      linux-amlogic@lists.infradead.org
11471 S:      Supported
11472 W:      http://linux-meson.com/
11473 T:      git git://linuxtv.org/media_tree.git
11474 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11475 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11476 F:      drivers/media/cec/platform/meson/ao-cec.c
11477
11478 MESON GE2D DRIVER FOR AMLOGIC SOCS
11479 M:      Neil Armstrong <narmstrong@baylibre.com>
11480 L:      linux-media@vger.kernel.org
11481 L:      linux-amlogic@lists.infradead.org
11482 S:      Supported
11483 T:      git git://linuxtv.org/media_tree.git
11484 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11485 F:      drivers/media/meson/ge2d/
11486
11487 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11488 M:      Liang Yang <liang.yang@amlogic.com>
11489 L:      linux-mtd@lists.infradead.org
11490 S:      Maintained
11491 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11492 F:      drivers/mtd/nand/raw/meson_*
11493
11494 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11495 M:      Neil Armstrong <narmstrong@baylibre.com>
11496 L:      linux-media@vger.kernel.org
11497 L:      linux-amlogic@lists.infradead.org
11498 S:      Supported
11499 T:      git git://linuxtv.org/media_tree.git
11500 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11501 F:      drivers/staging/media/meson/vdec/
11502
11503 METHODE UDPU SUPPORT
11504 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11505 S:      Maintained
11506 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11507
11508 MHI BUS
11509 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11510 M:      Hemant Kumar <hemantk@codeaurora.org>
11511 L:      linux-arm-msm@vger.kernel.org
11512 S:      Maintained
11513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11514 F:      Documentation/ABI/stable/sysfs-bus-mhi
11515 F:      Documentation/mhi/
11516 F:      drivers/bus/mhi/
11517 F:      include/linux/mhi.h
11518
11519 MICROBLAZE ARCHITECTURE
11520 M:      Michal Simek <monstr@monstr.eu>
11521 S:      Supported
11522 W:      http://www.monstr.eu/fdt/
11523 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11524 F:      arch/microblaze/
11525
11526 MICROCHIP AT91 DMA DRIVERS
11527 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11528 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11530 L:      dmaengine@vger.kernel.org
11531 S:      Supported
11532 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11533 F:      drivers/dma/at_hdmac.c
11534 F:      drivers/dma/at_hdmac_regs.h
11535 F:      drivers/dma/at_xdmac.c
11536 F:      include/dt-bindings/dma/at91.h
11537 F:      include/linux/platform_data/dma-atmel.h
11538
11539 MICROCHIP AT91 SERIAL DRIVER
11540 M:      Richard Genoud <richard.genoud@gmail.com>
11541 S:      Maintained
11542 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11543 F:      drivers/tty/serial/atmel_serial.c
11544 F:      drivers/tty/serial/atmel_serial.h
11545
11546 MICROCHIP AT91 USART MFD DRIVER
11547 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11548 L:      linux-kernel@vger.kernel.org
11549 S:      Supported
11550 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11551 F:      drivers/mfd/at91-usart.c
11552 F:      include/dt-bindings/mfd/at91-usart.h
11553
11554 MICROCHIP AT91 USART SPI DRIVER
11555 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11556 L:      linux-spi@vger.kernel.org
11557 S:      Supported
11558 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11559 F:      drivers/spi/spi-at91-usart.c
11560
11561 MICROCHIP AUDIO ASOC DRIVERS
11562 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11563 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11564 S:      Supported
11565 F:      sound/soc/atmel
11566
11567 MICROCHIP ECC DRIVER
11568 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11569 L:      linux-crypto@vger.kernel.org
11570 S:      Maintained
11571 F:      drivers/crypto/atmel-ecc.*
11572
11573 MICROCHIP I2C DRIVER
11574 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11575 L:      linux-i2c@vger.kernel.org
11576 S:      Supported
11577 F:      drivers/i2c/busses/i2c-at91-*.c
11578 F:      drivers/i2c/busses/i2c-at91.h
11579
11580 MICROCHIP ISC DRIVER
11581 M:      Eugen Hristev <eugen.hristev@microchip.com>
11582 L:      linux-media@vger.kernel.org
11583 S:      Supported
11584 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11585 F:      drivers/media/platform/atmel/atmel-isc-base.c
11586 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11587 F:      drivers/media/platform/atmel/atmel-isc.h
11588 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11589 F:      include/linux/atmel-isc-media.h
11590
11591 MICROCHIP ISI DRIVER
11592 M:      Eugen Hristev <eugen.hristev@microchip.com>
11593 L:      linux-media@vger.kernel.org
11594 S:      Supported
11595 F:      drivers/media/platform/atmel/atmel-isi.c
11596 F:      drivers/media/platform/atmel/atmel-isi.h
11597
11598 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11599 M:      Woojung Huh <woojung.huh@microchip.com>
11600 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11601 L:      netdev@vger.kernel.org
11602 S:      Maintained
11603 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11604 F:      drivers/net/dsa/microchip/*
11605 F:      include/linux/platform_data/microchip-ksz.h
11606 F:      net/dsa/tag_ksz.c
11607
11608 MICROCHIP LAN743X ETHERNET DRIVER
11609 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11610 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11611 L:      netdev@vger.kernel.org
11612 S:      Maintained
11613 F:      drivers/net/ethernet/microchip/lan743x_*
11614
11615 MICROCHIP LCDFB DRIVER
11616 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11617 L:      linux-fbdev@vger.kernel.org
11618 S:      Maintained
11619 F:      drivers/video/fbdev/atmel_lcdfb.c
11620 F:      include/video/atmel_lcdc.h
11621
11622 MICROCHIP MCP16502 PMIC DRIVER
11623 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11625 S:      Maintained
11626 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11627 F:      drivers/regulator/mcp16502.c
11628
11629 MICROCHIP MCP3911 ADC DRIVER
11630 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11631 M:      Kent Gustavsson <kent@minoris.se>
11632 L:      linux-iio@vger.kernel.org
11633 S:      Supported
11634 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11635 F:      drivers/iio/adc/mcp3911.c
11636
11637 MICROCHIP MMC/SD/SDIO MCI DRIVER
11638 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11639 S:      Maintained
11640 F:      drivers/mmc/host/atmel-mci.c
11641
11642 MICROCHIP NAND DRIVER
11643 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11644 L:      linux-mtd@lists.infradead.org
11645 S:      Supported
11646 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11647 F:      drivers/mtd/nand/raw/atmel/*
11648
11649 MICROCHIP PWM DRIVER
11650 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11652 L:      linux-pwm@vger.kernel.org
11653 S:      Supported
11654 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11655 F:      drivers/pwm/pwm-atmel.c
11656
11657 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11658 M:      Eugen Hristev <eugen.hristev@microchip.com>
11659 L:      linux-iio@vger.kernel.org
11660 S:      Supported
11661 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11662 F:      drivers/iio/adc/at91-sama5d2_adc.c
11663 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11664
11665 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11666 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11667 S:      Supported
11668 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11669
11670 MICROCHIP SPI DRIVER
11671 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11672 S:      Supported
11673 F:      drivers/spi/spi-atmel.*
11674
11675 MICROCHIP SSC DRIVER
11676 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11678 S:      Supported
11679 F:      drivers/misc/atmel-ssc.c
11680 F:      include/linux/atmel-ssc.h
11681
11682 MICROCHIP USB251XB DRIVER
11683 M:      Richard Leitner <richard.leitner@skidata.com>
11684 L:      linux-usb@vger.kernel.org
11685 S:      Maintained
11686 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11687 F:      drivers/usb/misc/usb251xb.c
11688
11689 MICROCHIP USBA UDC DRIVER
11690 M:      Cristian Birsan <cristian.birsan@microchip.com>
11691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11692 S:      Supported
11693 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11694
11695 MICROCHIP WILC1000 WIFI DRIVER
11696 M:      Ajay Singh <ajay.kathat@microchip.com>
11697 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11698 L:      linux-wireless@vger.kernel.org
11699 S:      Supported
11700 F:      drivers/net/wireless/microchip/wilc1000/
11701
11702 MICROSEMI MIPS SOCS
11703 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11704 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11705 L:      linux-mips@vger.kernel.org
11706 S:      Supported
11707 F:      Documentation/devicetree/bindings/mips/mscc.txt
11708 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11709 F:      arch/mips/boot/dts/mscc/
11710 F:      arch/mips/configs/generic/board-ocelot.config
11711 F:      arch/mips/generic/board-ocelot.c
11712
11713 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11714 M:      Don Brace <don.brace@microchip.com>
11715 L:      storagedev@microchip.com
11716 L:      linux-scsi@vger.kernel.org
11717 S:      Supported
11718 F:      Documentation/scsi/smartpqi.rst
11719 F:      drivers/scsi/smartpqi/Kconfig
11720 F:      drivers/scsi/smartpqi/Makefile
11721 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11722 F:      include/linux/cciss*.h
11723 F:      include/uapi/linux/cciss*.h
11724
11725 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11726 M:      Chen Yu <yu.c.chen@intel.com>
11727 L:      platform-driver-x86@vger.kernel.org
11728 S:      Supported
11729 F:      drivers/platform/x86/surfacepro3_button.c
11730
11731 MICROTEK X6 SCANNER
11732 M:      Oliver Neukum <oliver@neukum.org>
11733 S:      Maintained
11734 F:      drivers/usb/image/microtek.*
11735
11736 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11737 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11738 L:      linux-media@vger.kernel.org
11739 S:      Maintained
11740 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11741 F:      Documentation/driver-api/media/drivers/ccs/
11742 F:      drivers/media/i2c/ccs-pll.c
11743 F:      drivers/media/i2c/ccs-pll.h
11744 F:      drivers/media/i2c/ccs/
11745 F:      include/uapi/linux/smiapp.h
11746
11747 MIPS
11748 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11749 L:      linux-mips@vger.kernel.org
11750 S:      Maintained
11751 W:      http://www.linux-mips.org/
11752 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11754 F:      Documentation/devicetree/bindings/mips/
11755 F:      Documentation/mips/
11756 F:      arch/mips/
11757 F:      drivers/platform/mips/
11758
11759 MIPS BOSTON DEVELOPMENT BOARD
11760 M:      Paul Burton <paulburton@kernel.org>
11761 L:      linux-mips@vger.kernel.org
11762 S:      Maintained
11763 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11764 F:      arch/mips/boot/dts/img/boston.dts
11765 F:      arch/mips/configs/generic/board-boston.config
11766 F:      drivers/clk/imgtec/clk-boston.c
11767 F:      include/dt-bindings/clock/boston-clock.h
11768
11769 MIPS CORE DRIVERS
11770 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11771 M:      Serge Semin <fancer.lancer@gmail.com>
11772 L:      linux-mips@vger.kernel.org
11773 S:      Supported
11774 F:      drivers/bus/mips_cdmm.c
11775 F:      drivers/clocksource/mips-gic-timer.c
11776 F:      drivers/cpuidle/cpuidle-cps.c
11777 F:      drivers/irqchip/irq-mips-cpu.c
11778 F:      drivers/irqchip/irq-mips-gic.c
11779
11780 MIPS GENERIC PLATFORM
11781 M:      Paul Burton <paulburton@kernel.org>
11782 L:      linux-mips@vger.kernel.org
11783 S:      Supported
11784 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11785 F:      arch/mips/generic/
11786 F:      arch/mips/tools/generic-board-config.sh
11787
11788 MIPS RINT INSTRUCTION EMULATION
11789 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11790 L:      linux-mips@vger.kernel.org
11791 S:      Supported
11792 F:      arch/mips/math-emu/dp_rint.c
11793 F:      arch/mips/math-emu/sp_rint.c
11794
11795 MIPS/LOONGSON1 ARCHITECTURE
11796 M:      Keguang Zhang <keguang.zhang@gmail.com>
11797 L:      linux-mips@vger.kernel.org
11798 S:      Maintained
11799 F:      arch/mips/include/asm/mach-loongson32/
11800 F:      arch/mips/loongson32/
11801 F:      drivers/*/*/*loongson1*
11802 F:      drivers/*/*loongson1*
11803
11804 MIPS/LOONGSON2EF ARCHITECTURE
11805 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11806 L:      linux-mips@vger.kernel.org
11807 S:      Maintained
11808 F:      arch/mips/include/asm/mach-loongson2ef/
11809 F:      arch/mips/loongson2ef/
11810 F:      drivers/*/*/*loongson2*
11811 F:      drivers/*/*loongson2*
11812
11813 MIPS/LOONGSON64 ARCHITECTURE
11814 M:      Huacai Chen <chenhc@lemote.com>
11815 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11816 L:      linux-mips@vger.kernel.org
11817 S:      Maintained
11818 F:      arch/mips/include/asm/mach-loongson64/
11819 F:      arch/mips/loongson64/
11820 F:      drivers/*/*/*loongson3*
11821 F:      drivers/*/*loongson3*
11822 F:      drivers/irqchip/irq-loongson*
11823 F:      drivers/platform/mips/cpu_hwmon.c
11824
11825 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11826 M:      Hans Verkuil <hverkuil@xs4all.nl>
11827 L:      linux-media@vger.kernel.org
11828 S:      Odd Fixes
11829 W:      https://linuxtv.org
11830 T:      git git://linuxtv.org/media_tree.git
11831 F:      drivers/media/radio/radio-miropcm20*
11832
11833 MMP SUPPORT
11834 R:      Lubomir Rintel <lkundrak@v3.sk>
11835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11836 S:      Odd Fixes
11837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11838 F:      arch/arm/boot/dts/mmp*
11839 F:      arch/arm/mach-mmp/
11840 F:      include/linux/soc/mmp/
11841
11842 MMP USB PHY DRIVERS
11843 R:      Lubomir Rintel <lkundrak@v3.sk>
11844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11845 S:      Maintained
11846 F:      drivers/phy/marvell/phy-mmp3-usb.c
11847 F:      drivers/phy/marvell/phy-pxa-usb.c
11848
11849 MMU GATHER AND TLB INVALIDATION
11850 M:      Will Deacon <will@kernel.org>
11851 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11852 M:      Andrew Morton <akpm@linux-foundation.org>
11853 M:      Nick Piggin <npiggin@gmail.com>
11854 M:      Peter Zijlstra <peterz@infradead.org>
11855 L:      linux-arch@vger.kernel.org
11856 L:      linux-mm@kvack.org
11857 S:      Maintained
11858 F:      arch/*/include/asm/tlb.h
11859 F:      include/asm-generic/tlb.h
11860 F:      mm/mmu_gather.c
11861
11862 MN88472 MEDIA DRIVER
11863 M:      Antti Palosaari <crope@iki.fi>
11864 L:      linux-media@vger.kernel.org
11865 S:      Maintained
11866 W:      https://linuxtv.org
11867 W:      http://palosaari.fi/linux/
11868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11869 F:      drivers/media/dvb-frontends/mn88472*
11870
11871 MN88473 MEDIA DRIVER
11872 M:      Antti Palosaari <crope@iki.fi>
11873 L:      linux-media@vger.kernel.org
11874 S:      Maintained
11875 W:      https://linuxtv.org
11876 W:      http://palosaari.fi/linux/
11877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11878 F:      drivers/media/dvb-frontends/mn88473*
11879
11880 MODULE SUPPORT
11881 M:      Jessica Yu <jeyu@kernel.org>
11882 S:      Maintained
11883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11884 F:      include/linux/module.h
11885 F:      kernel/module.c
11886
11887 MONOLITHIC POWER SYSTEM PMIC DRIVER
11888 M:      Saravanan Sekar <sravanhome@gmail.com>
11889 S:      Maintained
11890 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11891 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11892 F:      drivers/iio/adc/mp2629_adc.c
11893 F:      drivers/mfd/mp2629.c
11894 F:      drivers/power/supply/mp2629_charger.c
11895 F:      drivers/regulator/mp5416.c
11896 F:      drivers/regulator/mpq7920.c
11897 F:      drivers/regulator/mpq7920.h
11898 F:      include/linux/mfd/mp2629.h
11899
11900 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11901 S:      Orphan
11902 W:      http://popies.net/meye/
11903 F:      Documentation/userspace-api/media/drivers/meye*
11904 F:      drivers/media/pci/meye/
11905 F:      include/uapi/linux/meye.h
11906
11907 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11908 M:      Jiri Slaby <jirislaby@kernel.org>
11909 S:      Maintained
11910 F:      Documentation/driver-api/serial/moxa-smartio.rst
11911 F:      drivers/tty/mxser.*
11912
11913 MR800 AVERMEDIA USB FM RADIO DRIVER
11914 M:      Alexey Klimov <klimov.linux@gmail.com>
11915 L:      linux-media@vger.kernel.org
11916 S:      Maintained
11917 T:      git git://linuxtv.org/media_tree.git
11918 F:      drivers/media/radio/radio-mr800.c
11919
11920 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11921 M:      Alan Ott <alan@signal11.us>
11922 L:      linux-wpan@vger.kernel.org
11923 S:      Maintained
11924 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11925 F:      drivers/net/ieee802154/mrf24j40.c
11926
11927 MSI LAPTOP SUPPORT
11928 M:      "Lee, Chun-Yi" <jlee@suse.com>
11929 L:      platform-driver-x86@vger.kernel.org
11930 S:      Maintained
11931 F:      drivers/platform/x86/msi-laptop.c
11932
11933 MSI WMI SUPPORT
11934 L:      platform-driver-x86@vger.kernel.org
11935 S:      Orphan
11936 F:      drivers/platform/x86/msi-wmi.c
11937
11938 MSI001 MEDIA DRIVER
11939 M:      Antti Palosaari <crope@iki.fi>
11940 L:      linux-media@vger.kernel.org
11941 S:      Maintained
11942 W:      https://linuxtv.org
11943 W:      http://palosaari.fi/linux/
11944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11945 T:      git git://linuxtv.org/anttip/media_tree.git
11946 F:      drivers/media/tuners/msi001*
11947
11948 MSI2500 MEDIA DRIVER
11949 M:      Antti Palosaari <crope@iki.fi>
11950 L:      linux-media@vger.kernel.org
11951 S:      Maintained
11952 W:      https://linuxtv.org
11953 W:      http://palosaari.fi/linux/
11954 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11955 T:      git git://linuxtv.org/anttip/media_tree.git
11956 F:      drivers/media/usb/msi2500/
11957
11958 MSTAR INTERRUPT CONTROLLER DRIVER
11959 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
11960 M:      Daniel Palmer <daniel@thingy.jp>
11961 S:      Maintained
11962 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
11963 F:      drivers/irqchip/irq-mst-intc.c
11964
11965 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11966 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11967 L:      linux-mtd@lists.infradead.org
11968 S:      Maintained
11969 F:      drivers/mtd/devices/docg3*
11970
11971 MT9M032 APTINA SENSOR DRIVER
11972 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11973 L:      linux-media@vger.kernel.org
11974 S:      Maintained
11975 T:      git git://linuxtv.org/media_tree.git
11976 F:      drivers/media/i2c/mt9m032.c
11977 F:      include/media/i2c/mt9m032.h
11978
11979 MT9P031 APTINA CAMERA SENSOR
11980 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11981 L:      linux-media@vger.kernel.org
11982 S:      Maintained
11983 T:      git git://linuxtv.org/media_tree.git
11984 F:      drivers/media/i2c/mt9p031.c
11985 F:      include/media/i2c/mt9p031.h
11986
11987 MT9T001 APTINA CAMERA SENSOR
11988 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11989 L:      linux-media@vger.kernel.org
11990 S:      Maintained
11991 T:      git git://linuxtv.org/media_tree.git
11992 F:      drivers/media/i2c/mt9t001.c
11993 F:      include/media/i2c/mt9t001.h
11994
11995 MT9T112 APTINA CAMERA SENSOR
11996 M:      Jacopo Mondi <jacopo@jmondi.org>
11997 L:      linux-media@vger.kernel.org
11998 S:      Odd Fixes
11999 T:      git git://linuxtv.org/media_tree.git
12000 F:      drivers/media/i2c/mt9t112.c
12001 F:      include/media/i2c/mt9t112.h
12002
12003 MT9V032 APTINA CAMERA SENSOR
12004 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12005 L:      linux-media@vger.kernel.org
12006 S:      Maintained
12007 T:      git git://linuxtv.org/media_tree.git
12008 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12009 F:      drivers/media/i2c/mt9v032.c
12010 F:      include/media/i2c/mt9v032.h
12011
12012 MT9V111 APTINA CAMERA SENSOR
12013 M:      Jacopo Mondi <jacopo@jmondi.org>
12014 L:      linux-media@vger.kernel.org
12015 S:      Maintained
12016 T:      git git://linuxtv.org/media_tree.git
12017 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12018 F:      drivers/media/i2c/mt9v111.c
12019
12020 MULTIFUNCTION DEVICES (MFD)
12021 M:      Lee Jones <lee.jones@linaro.org>
12022 S:      Supported
12023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12024 F:      Documentation/devicetree/bindings/mfd/
12025 F:      drivers/mfd/
12026 F:      include/dt-bindings/mfd/
12027 F:      include/linux/mfd/
12028
12029 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12030 S:      Orphan
12031 F:      drivers/mmc/host/mmc_spi.c
12032 F:      include/linux/spi/mmc_spi.h
12033
12034 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12035 M:      Ulf Hansson <ulf.hansson@linaro.org>
12036 L:      linux-mmc@vger.kernel.org
12037 S:      Maintained
12038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12039 F:      Documentation/devicetree/bindings/mmc/
12040 F:      drivers/mmc/
12041 F:      include/linux/mmc/
12042 F:      include/uapi/linux/mmc/
12043
12044 MULTIPLEXER SUBSYSTEM
12045 M:      Peter Rosin <peda@axentia.se>
12046 S:      Maintained
12047 F:      Documentation/ABI/testing/sysfs-class-mux*
12048 F:      Documentation/devicetree/bindings/mux/
12049 F:      drivers/mux/
12050 F:      include/dt-bindings/mux/
12051 F:      include/linux/mux/
12052
12053 MULTITECH MULTIPORT CARD (ISICOM)
12054 S:      Orphan
12055 F:      drivers/tty/isicom.c
12056 F:      include/linux/isicom.h
12057
12058 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12059 M:      Bin Liu <b-liu@ti.com>
12060 L:      linux-usb@vger.kernel.org
12061 S:      Maintained
12062 F:      drivers/usb/musb/
12063
12064 MXL301RF MEDIA DRIVER
12065 M:      Akihiro Tsukada <tskd08@gmail.com>
12066 L:      linux-media@vger.kernel.org
12067 S:      Odd Fixes
12068 F:      drivers/media/tuners/mxl301rf*
12069
12070 MXL5007T MEDIA DRIVER
12071 M:      Michael Krufky <mkrufky@linuxtv.org>
12072 L:      linux-media@vger.kernel.org
12073 S:      Maintained
12074 W:      https://linuxtv.org
12075 W:      http://github.com/mkrufky
12076 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12077 T:      git git://linuxtv.org/mkrufky/tuners.git
12078 F:      drivers/media/tuners/mxl5007t.*
12079
12080 MXSFB DRM DRIVER
12081 M:      Marek Vasut <marex@denx.de>
12082 M:      Stefan Agner <stefan@agner.ch>
12083 L:      dri-devel@lists.freedesktop.org
12084 S:      Supported
12085 T:      git git://anongit.freedesktop.org/drm/drm-misc
12086 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12087 F:      drivers/gpu/drm/mxsfb/
12088
12089 MYLEX DAC960 PCI RAID Controller
12090 M:      Hannes Reinecke <hare@kernel.org>
12091 L:      linux-scsi@vger.kernel.org
12092 S:      Supported
12093 F:      drivers/scsi/myrb.*
12094 F:      drivers/scsi/myrs.*
12095
12096 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12097 M:      Chris Lee <christopher.lee@cspi.com>
12098 L:      netdev@vger.kernel.org
12099 S:      Supported
12100 W:      https://www.cspi.com/ethernet-products/support/downloads/
12101 F:      drivers/net/ethernet/myricom/myri10ge/
12102
12103 NAND FLASH SUBSYSTEM
12104 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12105 R:      Richard Weinberger <richard@nod.at>
12106 L:      linux-mtd@lists.infradead.org
12107 S:      Maintained
12108 W:      http://www.linux-mtd.infradead.org/
12109 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12110 C:      irc://irc.oftc.net/mtd
12111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12112 F:      drivers/mtd/nand/
12113 F:      include/linux/mtd/*nand*.h
12114
12115 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12116 M:      Daniel Mack <zonque@gmail.com>
12117 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12118 S:      Maintained
12119 W:      http://www.native-instruments.com
12120 F:      sound/usb/caiaq/
12121
12122 NATSEMI ETHERNET DRIVER (DP8381x)
12123 S:      Orphan
12124 F:      drivers/net/ethernet/natsemi/natsemi.c
12125
12126 NCR 5380 SCSI DRIVERS
12127 M:      Finn Thain <fthain@telegraphics.com.au>
12128 M:      Michael Schmitz <schmitzmic@gmail.com>
12129 L:      linux-scsi@vger.kernel.org
12130 S:      Maintained
12131 F:      Documentation/scsi/g_NCR5380.rst
12132 F:      drivers/scsi/NCR5380.*
12133 F:      drivers/scsi/arm/cumana_1.c
12134 F:      drivers/scsi/arm/oak.c
12135 F:      drivers/scsi/atari_scsi.*
12136 F:      drivers/scsi/dmx3191d.c
12137 F:      drivers/scsi/g_NCR5380.*
12138 F:      drivers/scsi/mac_scsi.*
12139 F:      drivers/scsi/sun3_scsi.*
12140 F:      drivers/scsi/sun3_scsi_vme.c
12141
12142 NCSI LIBRARY
12143 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12144 S:      Maintained
12145 F:      net/ncsi/
12146
12147 NCT6775 HARDWARE MONITOR DRIVER
12148 M:      Guenter Roeck <linux@roeck-us.net>
12149 L:      linux-hwmon@vger.kernel.org
12150 S:      Maintained
12151 F:      Documentation/hwmon/nct6775.rst
12152 F:      drivers/hwmon/nct6775.c
12153
12154 NETDEVSIM
12155 M:      Jakub Kicinski <kuba@kernel.org>
12156 S:      Maintained
12157 F:      drivers/net/netdevsim/*
12158
12159 NETEM NETWORK EMULATOR
12160 M:      Stephen Hemminger <stephen@networkplumber.org>
12161 L:      netdev@vger.kernel.org
12162 S:      Maintained
12163 F:      net/sched/sch_netem.c
12164
12165 NETERION 10GbE DRIVERS (s2io/vxge)
12166 M:      Jon Mason <jdmason@kudzu.us>
12167 L:      netdev@vger.kernel.org
12168 S:      Supported
12169 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12170 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12171 F:      drivers/net/ethernet/neterion/
12172
12173 NETFILTER
12174 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12175 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12176 M:      Florian Westphal <fw@strlen.de>
12177 L:      netfilter-devel@vger.kernel.org
12178 L:      coreteam@netfilter.org
12179 S:      Maintained
12180 W:      http://www.netfilter.org/
12181 W:      http://www.iptables.org/
12182 W:      http://www.nftables.org/
12183 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12186 F:      include/linux/netfilter*
12187 F:      include/linux/netfilter/
12188 F:      include/net/netfilter/
12189 F:      include/uapi/linux/netfilter*
12190 F:      include/uapi/linux/netfilter/
12191 F:      net/*/netfilter.c
12192 F:      net/*/netfilter/
12193 F:      net/bridge/br_netfilter*.c
12194 F:      net/netfilter/
12195
12196 NETROM NETWORK LAYER
12197 M:      Ralf Baechle <ralf@linux-mips.org>
12198 L:      linux-hams@vger.kernel.org
12199 S:      Maintained
12200 W:      http://www.linux-ax25.org/
12201 F:      include/net/netrom.h
12202 F:      include/uapi/linux/netrom.h
12203 F:      net/netrom/
12204
12205 NETRONOME ETHERNET DRIVERS
12206 M:      Simon Horman <simon.horman@netronome.com>
12207 R:      Jakub Kicinski <kuba@kernel.org>
12208 L:      oss-drivers@netronome.com
12209 S:      Maintained
12210 F:      drivers/net/ethernet/netronome/
12211
12212 NETWORK BLOCK DEVICE (NBD)
12213 M:      Josef Bacik <josef@toxicpanda.com>
12214 L:      linux-block@vger.kernel.org
12215 L:      nbd@other.debian.org
12216 S:      Maintained
12217 F:      Documentation/admin-guide/blockdev/nbd.rst
12218 F:      drivers/block/nbd.c
12219 F:      include/trace/events/nbd.h
12220 F:      include/uapi/linux/nbd.h
12221
12222 NETWORK DROP MONITOR
12223 M:      Neil Horman <nhorman@tuxdriver.com>
12224 L:      netdev@vger.kernel.org
12225 S:      Maintained
12226 W:      https://fedorahosted.org/dropwatch/
12227 F:      include/uapi/linux/net_dropmon.h
12228 F:      net/core/drop_monitor.c
12229
12230 NETWORKING DRIVERS
12231 M:      "David S. Miller" <davem@davemloft.net>
12232 M:      Jakub Kicinski <kuba@kernel.org>
12233 L:      netdev@vger.kernel.org
12234 S:      Maintained
12235 W:      http://www.linuxfoundation.org/en/Net
12236 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12239 F:      Documentation/devicetree/bindings/net/
12240 F:      drivers/connector/
12241 F:      drivers/net/
12242 F:      include/linux/etherdevice.h
12243 F:      include/linux/fcdevice.h
12244 F:      include/linux/fddidevice.h
12245 F:      include/linux/hippidevice.h
12246 F:      include/linux/if_*
12247 F:      include/linux/inetdevice.h
12248 F:      include/linux/netdevice.h
12249 F:      include/uapi/linux/if_*
12250 F:      include/uapi/linux/netdevice.h
12251
12252 NETWORKING DRIVERS (WIRELESS)
12253 M:      Kalle Valo <kvalo@codeaurora.org>
12254 L:      linux-wireless@vger.kernel.org
12255 S:      Maintained
12256 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12259 F:      Documentation/devicetree/bindings/net/wireless/
12260 F:      drivers/net/wireless/
12261
12262 NETWORKING [DSA]
12263 M:      Andrew Lunn <andrew@lunn.ch>
12264 M:      Vivien Didelot <vivien.didelot@gmail.com>
12265 M:      Florian Fainelli <f.fainelli@gmail.com>
12266 M:      Vladimir Oltean <olteanv@gmail.com>
12267 S:      Maintained
12268 F:      Documentation/devicetree/bindings/net/dsa/
12269 F:      drivers/net/dsa/
12270 F:      include/linux/dsa/
12271 F:      include/linux/platform_data/dsa.h
12272 F:      include/net/dsa.h
12273 F:      net/dsa/
12274
12275 NETWORKING [GENERAL]
12276 M:      "David S. Miller" <davem@davemloft.net>
12277 M:      Jakub Kicinski <kuba@kernel.org>
12278 L:      netdev@vger.kernel.org
12279 S:      Maintained
12280 W:      http://www.linuxfoundation.org/en/Net
12281 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12282 B:      mailto:netdev@vger.kernel.org
12283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12285 F:      Documentation/networking/
12286 F:      include/linux/in.h
12287 F:      include/linux/net.h
12288 F:      include/linux/netdevice.h
12289 F:      include/net/
12290 F:      include/uapi/linux/in.h
12291 F:      include/uapi/linux/net.h
12292 F:      include/uapi/linux/net_namespace.h
12293 F:      include/uapi/linux/netdevice.h
12294 F:      lib/net_utils.c
12295 F:      lib/random32.c
12296 F:      net/
12297 F:      tools/testing/selftests/net/
12298
12299 NETWORKING [IPSEC]
12300 M:      Steffen Klassert <steffen.klassert@secunet.com>
12301 M:      Herbert Xu <herbert@gondor.apana.org.au>
12302 M:      "David S. Miller" <davem@davemloft.net>
12303 L:      netdev@vger.kernel.org
12304 S:      Maintained
12305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12307 F:      include/net/xfrm.h
12308 F:      include/uapi/linux/xfrm.h
12309 F:      net/ipv4/ah4.c
12310 F:      net/ipv4/esp4*
12311 F:      net/ipv4/ip_vti.c
12312 F:      net/ipv4/ipcomp.c
12313 F:      net/ipv4/xfrm*
12314 F:      net/ipv6/ah6.c
12315 F:      net/ipv6/esp6*
12316 F:      net/ipv6/ip6_vti.c
12317 F:      net/ipv6/ipcomp6.c
12318 F:      net/ipv6/xfrm*
12319 F:      net/key/
12320 F:      net/xfrm/
12321 F:      tools/testing/selftests/net/ipsec.c
12322
12323 NETWORKING [IPv4/IPv6]
12324 M:      "David S. Miller" <davem@davemloft.net>
12325 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
12326 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12327 L:      netdev@vger.kernel.org
12328 S:      Maintained
12329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12330 F:      arch/x86/net/*
12331 F:      include/net/ip*
12332 F:      net/ipv4/
12333 F:      net/ipv6/
12334
12335 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12336 M:      Paul Moore <paul@paul-moore.com>
12337 L:      netdev@vger.kernel.org
12338 L:      linux-security-module@vger.kernel.org
12339 S:      Maintained
12340 W:      https://github.com/netlabel
12341 F:      Documentation/netlabel/
12342 F:      include/net/calipso.h
12343 F:      include/net/cipso_ipv4.h
12344 F:      include/net/netlabel.h
12345 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12346 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12347 F:      net/ipv4/cipso_ipv4.c
12348 F:      net/ipv6/calipso.c
12349 F:      net/netfilter/xt_CONNSECMARK.c
12350 F:      net/netfilter/xt_SECMARK.c
12351 F:      net/netlabel/
12352
12353 NETWORKING [MPTCP]
12354 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12355 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12356 L:      netdev@vger.kernel.org
12357 L:      mptcp@lists.01.org
12358 S:      Maintained
12359 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12360 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12361 F:      Documentation/networking/mptcp-sysctl.rst
12362 F:      include/net/mptcp.h
12363 F:      include/uapi/linux/mptcp.h
12364 F:      net/mptcp/
12365 F:      tools/testing/selftests/net/mptcp/
12366
12367 NETWORKING [TCP]
12368 M:      Eric Dumazet <edumazet@google.com>
12369 L:      netdev@vger.kernel.org
12370 S:      Maintained
12371 F:      include/linux/tcp.h
12372 F:      include/net/tcp.h
12373 F:      include/trace/events/tcp.h
12374 F:      include/uapi/linux/tcp.h
12375 F:      net/ipv4/syncookies.c
12376 F:      net/ipv4/tcp*.c
12377 F:      net/ipv6/syncookies.c
12378 F:      net/ipv6/tcp*.c
12379
12380 NETWORKING [TLS]
12381 M:      Boris Pismenny <borisp@nvidia.com>
12382 M:      Aviad Yehezkel <aviadye@nvidia.com>
12383 M:      John Fastabend <john.fastabend@gmail.com>
12384 M:      Daniel Borkmann <daniel@iogearbox.net>
12385 M:      Jakub Kicinski <kuba@kernel.org>
12386 L:      netdev@vger.kernel.org
12387 S:      Maintained
12388 F:      include/net/tls.h
12389 F:      include/uapi/linux/tls.h
12390 F:      net/tls/*
12391
12392 NETWORKING [WIRELESS]
12393 L:      linux-wireless@vger.kernel.org
12394 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12395
12396 NETXEN (1/10) GbE SUPPORT
12397 M:      Manish Chopra <manishc@marvell.com>
12398 M:      Rahul Verma <rahulv@marvell.com>
12399 M:      GR-Linux-NIC-Dev@marvell.com
12400 L:      netdev@vger.kernel.org
12401 S:      Supported
12402 F:      drivers/net/ethernet/qlogic/netxen/
12403
12404 NET_FAILOVER MODULE
12405 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12406 L:      netdev@vger.kernel.org
12407 S:      Supported
12408 F:      Documentation/networking/net_failover.rst
12409 F:      drivers/net/net_failover.c
12410 F:      include/net/net_failover.h
12411
12412 NEXTHOP
12413 M:      David Ahern <dsahern@kernel.org>
12414 L:      netdev@vger.kernel.org
12415 S:      Maintained
12416 F:      include/net/netns/nexthop.h
12417 F:      include/net/nexthop.h
12418 F:      include/uapi/linux/nexthop.h
12419 F:      net/ipv4/nexthop.c
12420
12421 NFC SUBSYSTEM
12422 L:      netdev@vger.kernel.org
12423 S:      Orphan
12424 F:      Documentation/devicetree/bindings/net/nfc/
12425 F:      drivers/nfc/
12426 F:      include/linux/platform_data/nfcmrvl.h
12427 F:      include/net/nfc/
12428 F:      include/uapi/linux/nfc.h
12429 F:      net/nfc/
12430
12431 NFS, SUNRPC, AND LOCKD CLIENTS
12432 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12433 M:      Anna Schumaker <anna.schumaker@netapp.com>
12434 L:      linux-nfs@vger.kernel.org
12435 S:      Maintained
12436 W:      http://client.linux-nfs.org
12437 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12438 F:      fs/lockd/
12439 F:      fs/nfs/
12440 F:      fs/nfs_common/
12441 F:      include/linux/lockd/
12442 F:      include/linux/nfs*
12443 F:      include/linux/sunrpc/
12444 F:      include/uapi/linux/nfs*
12445 F:      include/uapi/linux/sunrpc/
12446 F:      net/sunrpc/
12447 F:      Documentation/filesystems/nfs/
12448
12449 NILFS2 FILESYSTEM
12450 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12451 L:      linux-nilfs@vger.kernel.org
12452 S:      Supported
12453 W:      https://nilfs.sourceforge.io/
12454 W:      https://nilfs.osdn.jp/
12455 T:      git git://github.com/konis/nilfs2.git
12456 F:      Documentation/filesystems/nilfs2.rst
12457 F:      fs/nilfs2/
12458 F:      include/trace/events/nilfs2.h
12459 F:      include/uapi/linux/nilfs2_api.h
12460 F:      include/uapi/linux/nilfs2_ondisk.h
12461
12462 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12463 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12464 S:      Maintained
12465 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12466 F:      Documentation/scsi/NinjaSCSI.rst
12467 F:      drivers/scsi/pcmcia/nsp_*
12468
12469 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12470 M:      GOTO Masanori <gotom@debian.or.jp>
12471 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12472 S:      Maintained
12473 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12474 F:      Documentation/scsi/NinjaSCSI.rst
12475 F:      drivers/scsi/nsp32*
12476
12477 NIOS2 ARCHITECTURE
12478 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12479 S:      Maintained
12480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12481 F:      arch/nios2/
12482
12483 NITRO ENCLAVES (NE)
12484 M:      Andra Paraschiv <andraprs@amazon.com>
12485 M:      Alexandru Vasile <lexnv@amazon.com>
12486 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12487 L:      linux-kernel@vger.kernel.org
12488 S:      Supported
12489 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12490 F:      Documentation/virt/ne_overview.rst
12491 F:      drivers/virt/nitro_enclaves/
12492 F:      include/linux/nitro_enclaves.h
12493 F:      include/uapi/linux/nitro_enclaves.h
12494 F:      samples/nitro_enclaves/
12495
12496 NOHZ, DYNTICKS SUPPORT
12497 M:      Frederic Weisbecker <fweisbec@gmail.com>
12498 M:      Thomas Gleixner <tglx@linutronix.de>
12499 M:      Ingo Molnar <mingo@kernel.org>
12500 L:      linux-kernel@vger.kernel.org
12501 S:      Maintained
12502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12503 F:      include/linux/sched/nohz.h
12504 F:      include/linux/tick.h
12505 F:      kernel/time/tick*.*
12506
12507 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12508 M:      Pavel Machek <pavel@ucw.cz>
12509 M:      Sakari Ailus <sakari.ailus@iki.fi>
12510 L:      linux-media@vger.kernel.org
12511 S:      Maintained
12512 F:      drivers/media/i2c/ad5820.c
12513 F:      drivers/media/i2c/et8ek8
12514
12515 NOKIA N900 POWER SUPPLY DRIVERS
12516 R:      Pali Rohár <pali@kernel.org>
12517 F:      drivers/power/supply/bq2415x_charger.c
12518 F:      drivers/power/supply/bq27xxx_battery.c
12519 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12520 F:      drivers/power/supply/isp1704_charger.c
12521 F:      drivers/power/supply/rx51_battery.c
12522 F:      include/linux/power/bq2415x_charger.h
12523 F:      include/linux/power/bq27xxx_battery.h
12524
12525 NOLIBC HEADER FILE
12526 M:      Willy Tarreau <w@1wt.eu>
12527 S:      Maintained
12528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12529 F:      tools/include/nolibc/
12530
12531 NSDEPS
12532 M:      Matthias Maennich <maennich@google.com>
12533 S:      Maintained
12534 F:      Documentation/core-api/symbol-namespaces.rst
12535 F:      scripts/nsdeps
12536
12537 NTB AMD DRIVER
12538 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12539 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12540 L:      linux-ntb@googlegroups.com
12541 S:      Supported
12542 F:      drivers/ntb/hw/amd/
12543
12544 NTB DRIVER CORE
12545 M:      Jon Mason <jdmason@kudzu.us>
12546 M:      Dave Jiang <dave.jiang@intel.com>
12547 M:      Allen Hubbe <allenbh@gmail.com>
12548 L:      linux-ntb@googlegroups.com
12549 S:      Supported
12550 W:      https://github.com/jonmason/ntb/wiki
12551 T:      git git://github.com/jonmason/ntb.git
12552 F:      drivers/net/ntb_netdev.c
12553 F:      drivers/ntb/
12554 F:      include/linux/ntb.h
12555 F:      include/linux/ntb_transport.h
12556 F:      tools/testing/selftests/ntb/
12557
12558 NTB IDT DRIVER
12559 M:      Serge Semin <fancer.lancer@gmail.com>
12560 L:      linux-ntb@googlegroups.com
12561 S:      Supported
12562 F:      drivers/ntb/hw/idt/
12563
12564 NTB INTEL DRIVER
12565 M:      Dave Jiang <dave.jiang@intel.com>
12566 L:      linux-ntb@googlegroups.com
12567 S:      Supported
12568 W:      https://github.com/davejiang/linux/wiki
12569 T:      git https://github.com/davejiang/linux.git
12570 F:      drivers/ntb/hw/intel/
12571
12572 NTFS FILESYSTEM
12573 M:      Anton Altaparmakov <anton@tuxera.com>
12574 L:      linux-ntfs-dev@lists.sourceforge.net
12575 S:      Supported
12576 W:      http://www.tuxera.com/
12577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12578 F:      Documentation/filesystems/ntfs.rst
12579 F:      fs/ntfs/
12580
12581 NUBUS SUBSYSTEM
12582 M:      Finn Thain <fthain@telegraphics.com.au>
12583 L:      linux-m68k@lists.linux-m68k.org
12584 S:      Maintained
12585 F:      arch/*/include/asm/nubus.h
12586 F:      drivers/nubus/
12587 F:      include/linux/nubus.h
12588 F:      include/uapi/linux/nubus.h
12589
12590 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12591 M:      Antonino Daplas <adaplas@gmail.com>
12592 L:      linux-fbdev@vger.kernel.org
12593 S:      Maintained
12594 F:      drivers/video/fbdev/nvidia/
12595 F:      drivers/video/fbdev/riva/
12596
12597 NVM EXPRESS DRIVER
12598 M:      Keith Busch <kbusch@kernel.org>
12599 M:      Jens Axboe <axboe@fb.com>
12600 M:      Christoph Hellwig <hch@lst.de>
12601 M:      Sagi Grimberg <sagi@grimberg.me>
12602 L:      linux-nvme@lists.infradead.org
12603 S:      Supported
12604 W:      http://git.infradead.org/nvme.git
12605 T:      git://git.infradead.org/nvme.git
12606 F:      drivers/nvme/host/
12607 F:      include/linux/nvme.h
12608 F:      include/uapi/linux/nvme_ioctl.h
12609
12610 NVM EXPRESS FC TRANSPORT DRIVERS
12611 M:      James Smart <james.smart@broadcom.com>
12612 L:      linux-nvme@lists.infradead.org
12613 S:      Supported
12614 F:      drivers/nvme/host/fc.c
12615 F:      drivers/nvme/target/fc.c
12616 F:      drivers/nvme/target/fcloop.c
12617 F:      include/linux/nvme-fc-driver.h
12618 F:      include/linux/nvme-fc.h
12619
12620 NVM EXPRESS TARGET DRIVER
12621 M:      Christoph Hellwig <hch@lst.de>
12622 M:      Sagi Grimberg <sagi@grimberg.me>
12623 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12624 L:      linux-nvme@lists.infradead.org
12625 S:      Supported
12626 W:      http://git.infradead.org/nvme.git
12627 T:      git://git.infradead.org/nvme.git
12628 F:      drivers/nvme/target/
12629
12630 NVMEM FRAMEWORK
12631 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12632 S:      Maintained
12633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12634 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12635 F:      Documentation/devicetree/bindings/nvmem/
12636 F:      drivers/nvmem/
12637 F:      include/linux/nvmem-consumer.h
12638 F:      include/linux/nvmem-provider.h
12639
12640 NXP FSPI DRIVER
12641 M:      Ashish Kumar <ashish.kumar@nxp.com>
12642 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12643 L:      linux-spi@vger.kernel.org
12644 S:      Maintained
12645 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12646 F:      drivers/spi/spi-nxp-fspi.c
12647
12648 NXP FXAS21002C DRIVER
12649 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12650 L:      linux-iio@vger.kernel.org
12651 S:      Maintained
12652 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12653 F:      drivers/iio/gyro/fxas21002c.h
12654 F:      drivers/iio/gyro/fxas21002c_core.c
12655 F:      drivers/iio/gyro/fxas21002c_i2c.c
12656 F:      drivers/iio/gyro/fxas21002c_spi.c
12657
12658 NXP i.MX 8MQ DCSS DRIVER
12659 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12660 R:      Lucas Stach <l.stach@pengutronix.de>
12661 L:      dri-devel@lists.freedesktop.org
12662 S:      Maintained
12663 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12664 F:      drivers/gpu/drm/imx/dcss/
12665
12666 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12667 M:      Krzysztof Kozlowski <krzk@kernel.org>
12668 L:      linux-kernel@vger.kernel.org
12669 S:      Maintained
12670 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12671 F:      drivers/extcon/extcon-ptn5150.c
12672
12673 NXP SGTL5000 DRIVER
12674 M:      Fabio Estevam <festevam@gmail.com>
12675 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12676 S:      Maintained
12677 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12678 F:      sound/soc/codecs/sgtl5000*
12679
12680 NXP SJA1105 ETHERNET SWITCH DRIVER
12681 M:      Vladimir Oltean <olteanv@gmail.com>
12682 L:      linux-kernel@vger.kernel.org
12683 S:      Maintained
12684 F:      drivers/net/dsa/sja1105
12685
12686 NXP TDA998X DRM DRIVER
12687 M:      Russell King <linux@armlinux.org.uk>
12688 S:      Maintained
12689 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12690 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12691 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12692 F:      include/drm/i2c/tda998x.h
12693 F:      include/dt-bindings/display/tda998x.h
12694 K:      "nxp,tda998x"
12695
12696 NXP TFA9879 DRIVER
12697 M:      Peter Rosin <peda@axentia.se>
12698 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12699 S:      Maintained
12700 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12701 F:      sound/soc/codecs/tfa9879*
12702
12703 NXP-NCI NFC DRIVER
12704 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12705 R:      Charles Gorand <charles.gorand@effinnov.com>
12706 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12707 S:      Supported
12708 F:      drivers/nfc/nxp-nci
12709
12710 OBJAGG
12711 M:      Jiri Pirko <jiri@nvidia.com>
12712 L:      netdev@vger.kernel.org
12713 S:      Supported
12714 F:      include/linux/objagg.h
12715 F:      lib/objagg.c
12716 F:      lib/test_objagg.c
12717
12718 OBJTOOL
12719 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12720 M:      Peter Zijlstra <peterz@infradead.org>
12721 S:      Supported
12722 F:      tools/objtool/
12723 F:      include/linux/objtool.h
12724
12725 OCELOT ETHERNET SWITCH DRIVER
12726 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12727 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12728 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12729 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12730 L:      netdev@vger.kernel.org
12731 S:      Supported
12732 F:      drivers/net/dsa/ocelot/*
12733 F:      drivers/net/ethernet/mscc/
12734 F:      include/soc/mscc/ocelot*
12735 F:      net/dsa/tag_ocelot.c
12736 F:      tools/testing/selftests/drivers/net/ocelot/*
12737
12738 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12739 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12740 M:      Andrew Donnellan <ajd@linux.ibm.com>
12741 L:      linuxppc-dev@lists.ozlabs.org
12742 S:      Supported
12743 F:      Documentation/userspace-api/accelerators/ocxl.rst
12744 F:      arch/powerpc/include/asm/pnv-ocxl.h
12745 F:      arch/powerpc/platforms/powernv/ocxl.c
12746 F:      drivers/misc/ocxl/
12747 F:      include/misc/ocxl*
12748 F:      include/uapi/misc/ocxl.h
12749
12750 OMAP AUDIO SUPPORT
12751 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12752 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12753 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12754 L:      linux-omap@vger.kernel.org
12755 S:      Maintained
12756 F:      sound/soc/ti/n810.c
12757 F:      sound/soc/ti/omap*
12758 F:      sound/soc/ti/rx51.c
12759 F:      sound/soc/ti/sdma-pcm.*
12760
12761 OMAP CLOCK FRAMEWORK SUPPORT
12762 M:      Paul Walmsley <paul@pwsan.com>
12763 L:      linux-omap@vger.kernel.org
12764 S:      Maintained
12765 F:      arch/arm/*omap*/*clock*
12766
12767 OMAP DEVICE TREE SUPPORT
12768 M:      Benoît Cousson <bcousson@baylibre.com>
12769 M:      Tony Lindgren <tony@atomide.com>
12770 L:      linux-omap@vger.kernel.org
12771 L:      devicetree@vger.kernel.org
12772 S:      Maintained
12773 F:      arch/arm/boot/dts/*am3*
12774 F:      arch/arm/boot/dts/*am4*
12775 F:      arch/arm/boot/dts/*am5*
12776 F:      arch/arm/boot/dts/*dra7*
12777 F:      arch/arm/boot/dts/*omap*
12778 F:      arch/arm/boot/dts/logicpd-som-lv*
12779 F:      arch/arm/boot/dts/logicpd-torpedo*
12780
12781 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12782 L:      linux-omap@vger.kernel.org
12783 L:      linux-fbdev@vger.kernel.org
12784 S:      Orphan
12785 F:      Documentation/arm/omap/dss.rst
12786 F:      drivers/video/fbdev/omap2/
12787
12788 OMAP FRAMEBUFFER SUPPORT
12789 L:      linux-fbdev@vger.kernel.org
12790 L:      linux-omap@vger.kernel.org
12791 S:      Orphan
12792 F:      drivers/video/fbdev/omap/
12793
12794 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12795 M:      Roger Quadros <rogerq@ti.com>
12796 M:      Tony Lindgren <tony@atomide.com>
12797 L:      linux-omap@vger.kernel.org
12798 S:      Maintained
12799 F:      arch/arm/mach-omap2/*gpmc*
12800 F:      drivers/memory/omap-gpmc.c
12801
12802 OMAP GPIO DRIVER
12803 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12804 M:      Santosh Shilimkar <ssantosh@kernel.org>
12805 M:      Kevin Hilman <khilman@kernel.org>
12806 L:      linux-omap@vger.kernel.org
12807 S:      Maintained
12808 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12809 F:      drivers/gpio/gpio-omap.c
12810
12811 OMAP HARDWARE SPINLOCK SUPPORT
12812 M:      Ohad Ben-Cohen <ohad@wizery.com>
12813 L:      linux-omap@vger.kernel.org
12814 S:      Maintained
12815 F:      drivers/hwspinlock/omap_hwspinlock.c
12816
12817 OMAP HS MMC SUPPORT
12818 L:      linux-mmc@vger.kernel.org
12819 L:      linux-omap@vger.kernel.org
12820 S:      Orphan
12821 F:      drivers/mmc/host/omap_hsmmc.c
12822
12823 OMAP HWMOD DATA
12824 M:      Paul Walmsley <paul@pwsan.com>
12825 L:      linux-omap@vger.kernel.org
12826 S:      Maintained
12827 F:      arch/arm/mach-omap2/omap_hwmod*data*
12828
12829 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12830 M:      Benoît Cousson <bcousson@baylibre.com>
12831 L:      linux-omap@vger.kernel.org
12832 S:      Maintained
12833 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12834
12835 OMAP HWMOD SUPPORT
12836 M:      Benoît Cousson <bcousson@baylibre.com>
12837 M:      Paul Walmsley <paul@pwsan.com>
12838 L:      linux-omap@vger.kernel.org
12839 S:      Maintained
12840 F:      arch/arm/mach-omap2/omap_hwmod.*
12841
12842 OMAP I2C DRIVER
12843 M:      Vignesh R <vigneshr@ti.com>
12844 L:      linux-omap@vger.kernel.org
12845 L:      linux-i2c@vger.kernel.org
12846 S:      Maintained
12847 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12848 F:      drivers/i2c/busses/i2c-omap.c
12849
12850 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12851 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12852 L:      linux-media@vger.kernel.org
12853 S:      Maintained
12854 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12855 F:      drivers/media/platform/omap3isp/
12856 F:      drivers/staging/media/omap4iss/
12857
12858 OMAP MMC SUPPORT
12859 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12860 L:      linux-omap@vger.kernel.org
12861 S:      Odd Fixes
12862 F:      drivers/mmc/host/omap.c
12863
12864 OMAP POWER MANAGEMENT SUPPORT
12865 M:      Kevin Hilman <khilman@kernel.org>
12866 L:      linux-omap@vger.kernel.org
12867 S:      Maintained
12868 F:      arch/arm/*omap*/*pm*
12869 F:      drivers/cpufreq/omap-cpufreq.c
12870
12871 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12872 M:      Rajendra Nayak <rnayak@codeaurora.org>
12873 M:      Paul Walmsley <paul@pwsan.com>
12874 L:      linux-omap@vger.kernel.org
12875 S:      Maintained
12876 F:      arch/arm/mach-omap2/prm*
12877
12878 OMAP RANDOM NUMBER GENERATOR SUPPORT
12879 M:      Deepak Saxena <dsaxena@plexity.net>
12880 S:      Maintained
12881 F:      drivers/char/hw_random/omap-rng.c
12882
12883 OMAP USB SUPPORT
12884 L:      linux-usb@vger.kernel.org
12885 L:      linux-omap@vger.kernel.org
12886 S:      Orphan
12887 F:      arch/arm/*omap*/usb*
12888 F:      drivers/usb/*/*omap*
12889
12890 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12891 M:      Mark Jackson <mpfj@newflow.co.uk>
12892 L:      linux-omap@vger.kernel.org
12893 S:      Maintained
12894 F:      arch/arm/boot/dts/am335x-nano.dts
12895
12896 OMAP1 SUPPORT
12897 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12898 M:      Tony Lindgren <tony@atomide.com>
12899 L:      linux-omap@vger.kernel.org
12900 S:      Maintained
12901 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12903 F:      arch/arm/configs/omap1_defconfig
12904 F:      arch/arm/mach-omap1/
12905 F:      arch/arm/plat-omap/
12906 F:      drivers/i2c/busses/i2c-omap.c
12907 F:      include/linux/platform_data/ams-delta-fiq.h
12908 F:      include/linux/platform_data/i2c-omap.h
12909
12910 OMAP2+ SUPPORT
12911 M:      Tony Lindgren <tony@atomide.com>
12912 L:      linux-omap@vger.kernel.org
12913 S:      Maintained
12914 W:      http://www.muru.com/linux/omap/
12915 W:      http://linux.omap.com/
12916 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12918 F:      arch/arm/configs/omap2plus_defconfig
12919 F:      arch/arm/mach-omap2/
12920 F:      arch/arm/plat-omap/
12921 F:      drivers/bus/ti-sysc.c
12922 F:      drivers/i2c/busses/i2c-omap.c
12923 F:      drivers/irqchip/irq-omap-intc.c
12924 F:      drivers/mfd/*omap*.c
12925 F:      drivers/mfd/menelaus.c
12926 F:      drivers/mfd/palmas.c
12927 F:      drivers/mfd/tps65217.c
12928 F:      drivers/mfd/tps65218.c
12929 F:      drivers/mfd/tps65910.c
12930 F:      drivers/mfd/twl-core.[ch]
12931 F:      drivers/mfd/twl4030*.c
12932 F:      drivers/mfd/twl6030*.c
12933 F:      drivers/mfd/twl6040*.c
12934 F:      drivers/regulator/palmas-regulator*.c
12935 F:      drivers/regulator/pbias-regulator.c
12936 F:      drivers/regulator/tps65217-regulator.c
12937 F:      drivers/regulator/tps65218-regulator.c
12938 F:      drivers/regulator/tps65910-regulator.c
12939 F:      drivers/regulator/twl-regulator.c
12940 F:      drivers/regulator/twl6030-regulator.c
12941 F:      include/linux/platform_data/i2c-omap.h
12942 F:      include/linux/platform_data/ti-sysc.h
12943
12944 OMFS FILESYSTEM
12945 M:      Bob Copeland <me@bobcopeland.com>
12946 L:      linux-karma-devel@lists.sourceforge.net
12947 S:      Maintained
12948 F:      Documentation/filesystems/omfs.rst
12949 F:      fs/omfs/
12950
12951 OMNIKEY CARDMAN 4000 DRIVER
12952 M:      Harald Welte <laforge@gnumonks.org>
12953 S:      Maintained
12954 F:      drivers/char/pcmcia/cm4000_cs.c
12955 F:      include/linux/cm4000_cs.h
12956 F:      include/uapi/linux/cm4000_cs.h
12957
12958 OMNIKEY CARDMAN 4040 DRIVER
12959 M:      Harald Welte <laforge@gnumonks.org>
12960 S:      Maintained
12961 F:      drivers/char/pcmcia/cm4040_cs.*
12962
12963 OMNIVISION OV02A10 SENSOR DRIVER
12964 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
12965 L:      linux-media@vger.kernel.org
12966 S:      Maintained
12967 T:      git git://linuxtv.org/media_tree.git
12968 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
12969 F:      drivers/media/i2c/ov02a10.c
12970
12971 OMNIVISION OV13858 SENSOR DRIVER
12972 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12973 L:      linux-media@vger.kernel.org
12974 S:      Maintained
12975 T:      git git://linuxtv.org/media_tree.git
12976 F:      drivers/media/i2c/ov13858.c
12977
12978 OMNIVISION OV2680 SENSOR DRIVER
12979 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12980 L:      linux-media@vger.kernel.org
12981 S:      Maintained
12982 T:      git git://linuxtv.org/media_tree.git
12983 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
12984 F:      drivers/media/i2c/ov2680.c
12985
12986 OMNIVISION OV2685 SENSOR DRIVER
12987 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12988 L:      linux-media@vger.kernel.org
12989 S:      Maintained
12990 T:      git git://linuxtv.org/media_tree.git
12991 F:      drivers/media/i2c/ov2685.c
12992
12993 OMNIVISION OV2740 SENSOR DRIVER
12994 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
12995 R:      Shawn Tu <shawnx.tu@intel.com>
12996 R:      Bingbu Cao <bingbu.cao@intel.com>
12997 L:      linux-media@vger.kernel.org
12998 S:      Maintained
12999 T:      git git://linuxtv.org/media_tree.git
13000 F:      drivers/media/i2c/ov2740.c
13001
13002 OMNIVISION OV5640 SENSOR DRIVER
13003 M:      Steve Longerbeam <slongerbeam@gmail.com>
13004 L:      linux-media@vger.kernel.org
13005 S:      Maintained
13006 T:      git git://linuxtv.org/media_tree.git
13007 F:      drivers/media/i2c/ov5640.c
13008
13009 OMNIVISION OV5647 SENSOR DRIVER
13010 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13011 M:      Jacopo Mondi <jacopo@jmondi.org>
13012 L:      linux-media@vger.kernel.org
13013 S:      Maintained
13014 T:      git git://linuxtv.org/media_tree.git
13015 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
13016 F:      drivers/media/i2c/ov5647.c
13017
13018 OMNIVISION OV5670 SENSOR DRIVER
13019 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13020 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13021 L:      linux-media@vger.kernel.org
13022 S:      Maintained
13023 T:      git git://linuxtv.org/media_tree.git
13024 F:      drivers/media/i2c/ov5670.c
13025
13026 OMNIVISION OV5675 SENSOR DRIVER
13027 M:      Shawn Tu <shawnx.tu@intel.com>
13028 L:      linux-media@vger.kernel.org
13029 S:      Maintained
13030 T:      git git://linuxtv.org/media_tree.git
13031 F:      drivers/media/i2c/ov5675.c
13032
13033 OMNIVISION OV5695 SENSOR DRIVER
13034 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13035 L:      linux-media@vger.kernel.org
13036 S:      Maintained
13037 T:      git git://linuxtv.org/media_tree.git
13038 F:      drivers/media/i2c/ov5695.c
13039
13040 OMNIVISION OV7670 SENSOR DRIVER
13041 L:      linux-media@vger.kernel.org
13042 S:      Orphan
13043 T:      git git://linuxtv.org/media_tree.git
13044 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13045 F:      drivers/media/i2c/ov7670.c
13046
13047 OMNIVISION OV772x SENSOR DRIVER
13048 M:      Jacopo Mondi <jacopo@jmondi.org>
13049 L:      linux-media@vger.kernel.org
13050 S:      Odd fixes
13051 T:      git git://linuxtv.org/media_tree.git
13052 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13053 F:      drivers/media/i2c/ov772x.c
13054 F:      include/media/i2c/ov772x.h
13055
13056 OMNIVISION OV7740 SENSOR DRIVER
13057 M:      Wenyou Yang <wenyou.yang@microchip.com>
13058 L:      linux-media@vger.kernel.org
13059 S:      Maintained
13060 T:      git git://linuxtv.org/media_tree.git
13061 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13062 F:      drivers/media/i2c/ov7740.c
13063
13064 OMNIVISION OV8856 SENSOR DRIVER
13065 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13066 L:      linux-media@vger.kernel.org
13067 S:      Maintained
13068 T:      git git://linuxtv.org/media_tree.git
13069 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13070 F:      drivers/media/i2c/ov8856.c
13071
13072 OMNIVISION OV9640 SENSOR DRIVER
13073 M:      Petr Cvek <petrcvekcz@gmail.com>
13074 L:      linux-media@vger.kernel.org
13075 S:      Maintained
13076 F:      drivers/media/i2c/ov9640.*
13077
13078 OMNIVISION OV9650 SENSOR DRIVER
13079 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13080 R:      Akinobu Mita <akinobu.mita@gmail.com>
13081 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13082 L:      linux-media@vger.kernel.org
13083 S:      Maintained
13084 T:      git git://linuxtv.org/media_tree.git
13085 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13086 F:      drivers/media/i2c/ov9650.c
13087
13088 OMNIVISION OV9734 SENSOR DRIVER
13089 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13090 R:      Bingbu Cao <bingbu.cao@intel.com>
13091 L:      linux-media@vger.kernel.org
13092 S:      Maintained
13093 T:      git git://linuxtv.org/media_tree.git
13094 F:      drivers/media/i2c/ov9734.c
13095
13096 ONENAND FLASH DRIVER
13097 M:      Kyungmin Park <kyungmin.park@samsung.com>
13098 L:      linux-mtd@lists.infradead.org
13099 S:      Maintained
13100 F:      drivers/mtd/nand/onenand/
13101 F:      include/linux/mtd/onenand*.h
13102
13103 ONION OMEGA2+ BOARD
13104 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13105 L:      linux-mips@vger.kernel.org
13106 S:      Maintained
13107 F:      arch/mips/boot/dts/ralink/omega2p.dts
13108
13109 OP-TEE DRIVER
13110 M:      Jens Wiklander <jens.wiklander@linaro.org>
13111 L:      op-tee@lists.trustedfirmware.org
13112 S:      Maintained
13113 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13114 F:      drivers/tee/optee/
13115
13116 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13117 M:      Sumit Garg <sumit.garg@linaro.org>
13118 L:      op-tee@lists.trustedfirmware.org
13119 S:      Maintained
13120 F:      drivers/char/hw_random/optee-rng.c
13121
13122 OPA-VNIC DRIVER
13123 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13124 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13125 L:      linux-rdma@vger.kernel.org
13126 S:      Supported
13127 F:      drivers/infiniband/ulp/opa_vnic
13128
13129 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13130 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13131 M:      Frank Rowand <frowand.list@gmail.com>
13132 L:      devicetree@vger.kernel.org
13133 S:      Maintained
13134 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13135 F:      Documentation/devicetree/overlay-notes.rst
13136 F:      drivers/of/overlay.c
13137 F:      drivers/of/resolver.c
13138 K:      of_overlay_notifier_
13139
13140 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13141 M:      Rob Herring <robh+dt@kernel.org>
13142 M:      Frank Rowand <frowand.list@gmail.com>
13143 L:      devicetree@vger.kernel.org
13144 S:      Maintained
13145 W:      http://www.devicetree.org/
13146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13147 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13148 F:      drivers/of/
13149 F:      include/linux/of*.h
13150 F:      scripts/dtc/
13151
13152 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13153 M:      Rob Herring <robh+dt@kernel.org>
13154 L:      devicetree@vger.kernel.org
13155 S:      Maintained
13156 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13158 F:      Documentation/devicetree/
13159 F:      arch/*/boot/dts/
13160 F:      include/dt-bindings/
13161
13162 OPENCORES I2C BUS DRIVER
13163 M:      Peter Korsgaard <peter@korsgaard.com>
13164 M:      Andrew Lunn <andrew@lunn.ch>
13165 L:      linux-i2c@vger.kernel.org
13166 S:      Maintained
13167 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13168 F:      Documentation/i2c/busses/i2c-ocores.rst
13169 F:      drivers/i2c/busses/i2c-ocores.c
13170 F:      include/linux/platform_data/i2c-ocores.h
13171
13172 OPENRISC ARCHITECTURE
13173 M:      Jonas Bonn <jonas@southpole.se>
13174 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13175 M:      Stafford Horne <shorne@gmail.com>
13176 L:      openrisc@lists.librecores.org
13177 S:      Maintained
13178 W:      http://openrisc.io
13179 T:      git git://github.com/openrisc/linux.git
13180 F:      Documentation/devicetree/bindings/openrisc/
13181 F:      Documentation/openrisc/
13182 F:      arch/openrisc/
13183 F:      drivers/irqchip/irq-ompic.c
13184 F:      drivers/irqchip/irq-or1k-*
13185
13186 OPENVSWITCH
13187 M:      Pravin B Shelar <pshelar@ovn.org>
13188 L:      netdev@vger.kernel.org
13189 L:      dev@openvswitch.org
13190 S:      Maintained
13191 W:      http://openvswitch.org
13192 F:      include/uapi/linux/openvswitch.h
13193 F:      net/openvswitch/
13194
13195 OPERATING PERFORMANCE POINTS (OPP)
13196 M:      Viresh Kumar <vireshk@kernel.org>
13197 M:      Nishanth Menon <nm@ti.com>
13198 M:      Stephen Boyd <sboyd@kernel.org>
13199 L:      linux-pm@vger.kernel.org
13200 S:      Maintained
13201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13202 F:      Documentation/devicetree/bindings/opp/
13203 F:      Documentation/power/opp.rst
13204 F:      drivers/opp/
13205 F:      include/linux/pm_opp.h
13206
13207 OPL4 DRIVER
13208 M:      Clemens Ladisch <clemens@ladisch.de>
13209 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13210 S:      Maintained
13211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13212 F:      sound/drivers/opl4/
13213
13214 OPROFILE
13215 M:      Robert Richter <rric@kernel.org>
13216 L:      oprofile-list@lists.sf.net
13217 S:      Maintained
13218 F:      arch/*/include/asm/oprofile*.h
13219 F:      arch/*/oprofile/
13220 F:      drivers/oprofile/
13221 F:      include/linux/oprofile.h
13222
13223 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13224 M:      Mark Fasheh <mark@fasheh.com>
13225 M:      Joel Becker <jlbec@evilplan.org>
13226 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13227 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13228 S:      Supported
13229 W:      http://ocfs2.wiki.kernel.org
13230 F:      Documentation/filesystems/dlmfs.rst
13231 F:      Documentation/filesystems/ocfs2.rst
13232 F:      fs/ocfs2/
13233
13234 ORANGEFS FILESYSTEM
13235 M:      Mike Marshall <hubcap@omnibond.com>
13236 R:      Martin Brandenburg <martin@omnibond.com>
13237 L:      devel@lists.orangefs.org
13238 S:      Supported
13239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13240 F:      Documentation/filesystems/orangefs.rst
13241 F:      fs/orangefs/
13242
13243 ORINOCO DRIVER
13244 L:      linux-wireless@vger.kernel.org
13245 S:      Orphan
13246 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13247 W:      http://www.nongnu.org/orinoco/
13248 F:      drivers/net/wireless/intersil/orinoco/
13249
13250 OV2659 OMNIVISION SENSOR DRIVER
13251 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13252 L:      linux-media@vger.kernel.org
13253 S:      Maintained
13254 W:      https://linuxtv.org
13255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13256 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13257 F:      drivers/media/i2c/ov2659.c
13258 F:      include/media/i2c/ov2659.h
13259
13260 OVERLAY FILESYSTEM
13261 M:      Miklos Szeredi <miklos@szeredi.hu>
13262 L:      linux-unionfs@vger.kernel.org
13263 S:      Supported
13264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13265 F:      Documentation/filesystems/overlayfs.rst
13266 F:      fs/overlayfs/
13267
13268 P54 WIRELESS DRIVER
13269 M:      Christian Lamparter <chunkeey@googlemail.com>
13270 L:      linux-wireless@vger.kernel.org
13271 S:      Maintained
13272 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13273 F:      drivers/net/wireless/intersil/p54/
13274
13275 PACKING
13276 M:      Vladimir Oltean <olteanv@gmail.com>
13277 L:      netdev@vger.kernel.org
13278 S:      Supported
13279 F:      Documentation/core-api/packing.rst
13280 F:      include/linux/packing.h
13281 F:      lib/packing.c
13282
13283 PADATA PARALLEL EXECUTION MECHANISM
13284 M:      Steffen Klassert <steffen.klassert@secunet.com>
13285 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13286 L:      linux-crypto@vger.kernel.org
13287 L:      linux-kernel@vger.kernel.org
13288 S:      Maintained
13289 F:      Documentation/core-api/padata.rst
13290 F:      include/linux/padata.h
13291 F:      kernel/padata.c
13292
13293 PAGE POOL
13294 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13295 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13296 L:      netdev@vger.kernel.org
13297 S:      Supported
13298 F:      Documentation/networking/page_pool.rst
13299 F:      include/net/page_pool.h
13300 F:      include/trace/events/page_pool.h
13301 F:      net/core/page_pool.c
13302
13303 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13304 M:      Harald Welte <laforge@gnumonks.org>
13305 L:      platform-driver-x86@vger.kernel.org
13306 S:      Maintained
13307 F:      drivers/platform/x86/panasonic-laptop.c
13308
13309 PARALLAX PING IIO SENSOR DRIVER
13310 M:      Andreas Klinger <ak@it-klinger.de>
13311 L:      linux-iio@vger.kernel.org
13312 S:      Maintained
13313 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13314 F:      drivers/iio/proximity/ping.c
13315
13316 PARALLEL LCD/KEYPAD PANEL DRIVER
13317 M:      Willy Tarreau <willy@haproxy.com>
13318 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13319 S:      Odd Fixes
13320 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13321 F:      drivers/auxdisplay/panel.c
13322
13323 PARALLEL PORT SUBSYSTEM
13324 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13325 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13326 L:      linux-parport@lists.infradead.org (subscribers-only)
13327 S:      Maintained
13328 F:      Documentation/driver-api/parport*.rst
13329 F:      drivers/char/ppdev.c
13330 F:      drivers/parport/
13331 F:      include/linux/parport*.h
13332 F:      include/uapi/linux/ppdev.h
13333
13334 PARAVIRT_OPS INTERFACE
13335 M:      Juergen Gross <jgross@suse.com>
13336 M:      Deep Shah <sdeep@vmware.com>
13337 M:      "VMware, Inc." <pv-drivers@vmware.com>
13338 L:      virtualization@lists.linux-foundation.org
13339 S:      Supported
13340 F:      Documentation/virt/paravirt_ops.rst
13341 F:      arch/*/include/asm/paravirt*.h
13342 F:      arch/*/kernel/paravirt*
13343 F:      include/linux/hypervisor.h
13344
13345 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13346 M:      Tim Waugh <tim@cyberelk.net>
13347 L:      linux-parport@lists.infradead.org (subscribers-only)
13348 S:      Maintained
13349 F:      Documentation/admin-guide/blockdev/paride.rst
13350 F:      drivers/block/paride/
13351
13352 PARISC ARCHITECTURE
13353 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13354 M:      Helge Deller <deller@gmx.de>
13355 L:      linux-parisc@vger.kernel.org
13356 S:      Maintained
13357 W:      https://parisc.wiki.kernel.org
13358 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13361 F:      Documentation/parisc/
13362 F:      arch/parisc/
13363 F:      drivers/char/agp/parisc-agp.c
13364 F:      drivers/input/misc/hp_sdc_rtc.c
13365 F:      drivers/input/serio/gscps2.c
13366 F:      drivers/input/serio/hp_sdc*
13367 F:      drivers/parisc/
13368 F:      drivers/parport/parport_gsc.*
13369 F:      drivers/tty/serial/8250/8250_gsc.c
13370 F:      drivers/video/console/sti*
13371 F:      drivers/video/fbdev/sti*
13372 F:      drivers/video/logo/logo_parisc*
13373 F:      include/linux/hp_sdc.h
13374
13375 PARMAN
13376 M:      Jiri Pirko <jiri@nvidia.com>
13377 L:      netdev@vger.kernel.org
13378 S:      Supported
13379 F:      include/linux/parman.h
13380 F:      lib/parman.c
13381 F:      lib/test_parman.c
13382
13383 PC ENGINES APU BOARD DRIVER
13384 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13385 S:      Maintained
13386 F:      drivers/platform/x86/pcengines-apuv2.c
13387
13388 PC87360 HARDWARE MONITORING DRIVER
13389 M:      Jim Cromie <jim.cromie@gmail.com>
13390 L:      linux-hwmon@vger.kernel.org
13391 S:      Maintained
13392 F:      Documentation/hwmon/pc87360.rst
13393 F:      drivers/hwmon/pc87360.c
13394
13395 PC8736x GPIO DRIVER
13396 M:      Jim Cromie <jim.cromie@gmail.com>
13397 S:      Maintained
13398 F:      drivers/char/pc8736x_gpio.c
13399
13400 PC87427 HARDWARE MONITORING DRIVER
13401 M:      Jean Delvare <jdelvare@suse.com>
13402 L:      linux-hwmon@vger.kernel.org
13403 S:      Maintained
13404 F:      Documentation/hwmon/pc87427.rst
13405 F:      drivers/hwmon/pc87427.c
13406
13407 PCA9532 LED DRIVER
13408 M:      Riku Voipio <riku.voipio@iki.fi>
13409 S:      Maintained
13410 F:      drivers/leds/leds-pca9532.c
13411 F:      include/linux/leds-pca9532.h
13412
13413 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13414 M:      Guenter Roeck <linux@roeck-us.net>
13415 L:      linux-i2c@vger.kernel.org
13416 S:      Maintained
13417 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13418
13419 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13420 M:      Khalid Aziz <khalid@gonehiking.org>
13421 S:      Maintained
13422 F:      drivers/firmware/pcdp.*
13423
13424 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13425 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13426 M:      Pali Rohár <pali@kernel.org>
13427 L:      linux-pci@vger.kernel.org
13428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13429 S:      Maintained
13430 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13431 F:      drivers/pci/controller/pci-aardvark.c
13432
13433 PCI DRIVER FOR ALTERA PCIE IP
13434 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13435 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13436 L:      linux-pci@vger.kernel.org
13437 S:      Supported
13438 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13439 F:      drivers/pci/controller/pcie-altera.c
13440
13441 PCI DRIVER FOR APPLIEDMICRO XGENE
13442 M:      Toan Le <toan@os.amperecomputing.com>
13443 L:      linux-pci@vger.kernel.org
13444 L:      linux-arm-kernel@lists.infradead.org
13445 S:      Maintained
13446 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13447 F:      drivers/pci/controller/pci-xgene.c
13448
13449 PCI DRIVER FOR ARM VERSATILE PLATFORM
13450 M:      Rob Herring <robh@kernel.org>
13451 L:      linux-pci@vger.kernel.org
13452 L:      linux-arm-kernel@lists.infradead.org
13453 S:      Maintained
13454 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13455 F:      drivers/pci/controller/pci-versatile.c
13456
13457 PCI DRIVER FOR ARMADA 8K
13458 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13459 L:      linux-pci@vger.kernel.org
13460 L:      linux-arm-kernel@lists.infradead.org
13461 S:      Maintained
13462 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13463 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13464
13465 PCI DRIVER FOR CADENCE PCIE IP
13466 M:      Tom Joseph <tjoseph@cadence.com>
13467 L:      linux-pci@vger.kernel.org
13468 S:      Maintained
13469 F:      Documentation/devicetree/bindings/pci/cdns,*
13470 F:      drivers/pci/controller/cadence/
13471
13472 PCI DRIVER FOR FREESCALE LAYERSCAPE
13473 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13474 M:      Mingkai Hu <mingkai.hu@nxp.com>
13475 M:      Roy Zang <roy.zang@nxp.com>
13476 L:      linuxppc-dev@lists.ozlabs.org
13477 L:      linux-pci@vger.kernel.org
13478 L:      linux-arm-kernel@lists.infradead.org
13479 S:      Maintained
13480 F:      drivers/pci/controller/dwc/*layerscape*
13481
13482 PCI DRIVER FOR GENERIC OF HOSTS
13483 M:      Will Deacon <will@kernel.org>
13484 L:      linux-pci@vger.kernel.org
13485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13486 S:      Maintained
13487 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13488 F:      drivers/pci/controller/pci-host-common.c
13489 F:      drivers/pci/controller/pci-host-generic.c
13490
13491 PCI DRIVER FOR IMX6
13492 M:      Richard Zhu <hongxing.zhu@nxp.com>
13493 M:      Lucas Stach <l.stach@pengutronix.de>
13494 L:      linux-pci@vger.kernel.org
13495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13496 S:      Maintained
13497 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13498 F:      drivers/pci/controller/dwc/*imx6*
13499
13500 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13501 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13502 L:      linux-pci@vger.kernel.org
13503 S:      Supported
13504 F:      drivers/pci/controller/vmd.c
13505
13506 PCI DRIVER FOR MICROSEMI SWITCHTEC
13507 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13508 M:      Logan Gunthorpe <logang@deltatee.com>
13509 L:      linux-pci@vger.kernel.org
13510 S:      Maintained
13511 F:      Documentation/ABI/testing/sysfs-class-switchtec
13512 F:      Documentation/driver-api/switchtec.rst
13513 F:      drivers/ntb/hw/mscc/
13514 F:      drivers/pci/switch/switchtec*
13515 F:      include/linux/switchtec.h
13516 F:      include/uapi/linux/switchtec_ioctl.h
13517
13518 PCI DRIVER FOR MOBIVEIL PCIE IP
13519 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13520 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13521 L:      linux-pci@vger.kernel.org
13522 S:      Supported
13523 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13524 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13525
13526 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13527 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13528 L:      linux-pci@vger.kernel.org
13529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13530 S:      Maintained
13531 F:      drivers/pci/controller/*mvebu*
13532
13533 PCI DRIVER FOR NVIDIA TEGRA
13534 M:      Thierry Reding <thierry.reding@gmail.com>
13535 L:      linux-tegra@vger.kernel.org
13536 L:      linux-pci@vger.kernel.org
13537 S:      Supported
13538 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13539 F:      drivers/pci/controller/pci-tegra.c
13540
13541 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13542 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13543 L:      linux-pci@vger.kernel.org
13544 L:      linux-arm-kernel@lists.infradead.org
13545 S:      Maintained
13546 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13547 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13548
13549 PCI DRIVER FOR RENESAS R-CAR
13550 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13551 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13552 L:      linux-pci@vger.kernel.org
13553 L:      linux-renesas-soc@vger.kernel.org
13554 S:      Maintained
13555 F:      Documentation/devicetree/bindings/pci/*rcar*
13556 F:      drivers/pci/controller/*rcar*
13557
13558 PCI DRIVER FOR SAMSUNG EXYNOS
13559 M:      Jingoo Han <jingoohan1@gmail.com>
13560 L:      linux-pci@vger.kernel.org
13561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13562 L:      linux-samsung-soc@vger.kernel.org
13563 S:      Maintained
13564 F:      drivers/pci/controller/dwc/pci-exynos.c
13565
13566 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13567 M:      Jingoo Han <jingoohan1@gmail.com>
13568 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13569 L:      linux-pci@vger.kernel.org
13570 S:      Maintained
13571 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13572 F:      drivers/pci/controller/dwc/*designware*
13573
13574 PCI DRIVER FOR TI DRA7XX/J721E
13575 M:      Kishon Vijay Abraham I <kishon@ti.com>
13576 L:      linux-omap@vger.kernel.org
13577 L:      linux-pci@vger.kernel.org
13578 L:      linux-arm-kernel@lists.infradead.org
13579 S:      Supported
13580 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13581 F:      drivers/pci/controller/cadence/pci-j721e.c
13582 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13583
13584 PCI DRIVER FOR TI KEYSTONE
13585 M:      Murali Karicheri <m-karicheri2@ti.com>
13586 L:      linux-pci@vger.kernel.org
13587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13588 S:      Maintained
13589 F:      drivers/pci/controller/dwc/pci-keystone.c
13590
13591 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13592 M:      Linus Walleij <linus.walleij@linaro.org>
13593 L:      linux-pci@vger.kernel.org
13594 S:      Maintained
13595 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13596 F:      drivers/pci/controller/pci-v3-semi.c
13597
13598 PCI ENDPOINT SUBSYSTEM
13599 M:      Kishon Vijay Abraham I <kishon@ti.com>
13600 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13601 L:      linux-pci@vger.kernel.org
13602 S:      Supported
13603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13604 F:      drivers/misc/pci_endpoint_test.c
13605 F:      drivers/pci/endpoint/
13606 F:      tools/pci/
13607
13608 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13609 M:      Russell Currey <ruscur@russell.cc>
13610 M:      Oliver O'Halloran <oohall@gmail.com>
13611 L:      linuxppc-dev@lists.ozlabs.org
13612 S:      Supported
13613 F:      Documentation/PCI/pci-error-recovery.rst
13614 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13615 F:      arch/powerpc/include/*/eeh*.h
13616 F:      arch/powerpc/kernel/eeh*.c
13617 F:      arch/powerpc/platforms/*/eeh*.c
13618 F:      drivers/pci/pcie/aer.c
13619 F:      drivers/pci/pcie/dpc.c
13620 F:      drivers/pci/pcie/err.c
13621
13622 PCI ERROR RECOVERY
13623 M:      Linas Vepstas <linasvepstas@gmail.com>
13624 L:      linux-pci@vger.kernel.org
13625 S:      Supported
13626 F:      Documentation/PCI/pci-error-recovery.rst
13627
13628 PCI MSI DRIVER FOR ALTERA MSI IP
13629 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13630 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13631 L:      linux-pci@vger.kernel.org
13632 S:      Supported
13633 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13634 F:      drivers/pci/controller/pcie-altera-msi.c
13635
13636 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13637 M:      Toan Le <toan@os.amperecomputing.com>
13638 L:      linux-pci@vger.kernel.org
13639 L:      linux-arm-kernel@lists.infradead.org
13640 S:      Maintained
13641 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13642 F:      drivers/pci/controller/pci-xgene-msi.c
13643
13644 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13645 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13646 R:      Rob Herring <robh@kernel.org>
13647 L:      linux-pci@vger.kernel.org
13648 S:      Supported
13649 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13651 F:      drivers/pci/controller/
13652
13653 PCI SUBSYSTEM
13654 M:      Bjorn Helgaas <bhelgaas@google.com>
13655 L:      linux-pci@vger.kernel.org
13656 S:      Supported
13657 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13659 F:      Documentation/PCI/
13660 F:      Documentation/devicetree/bindings/pci/
13661 F:      arch/x86/kernel/early-quirks.c
13662 F:      arch/x86/kernel/quirks.c
13663 F:      arch/x86/pci/
13664 F:      drivers/acpi/pci*
13665 F:      drivers/pci/
13666 F:      include/asm-generic/pci*
13667 F:      include/linux/of_pci.h
13668 F:      include/linux/pci*
13669 F:      include/uapi/linux/pci*
13670 F:      lib/pci*
13671
13672 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13673 M:      Jonathan Chocron <jonnyc@amazon.com>
13674 L:      linux-pci@vger.kernel.org
13675 S:      Maintained
13676 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13677 F:      drivers/pci/controller/dwc/pcie-al.c
13678
13679 PCIE DRIVER FOR AMLOGIC MESON
13680 M:      Yue Wang <yue.wang@Amlogic.com>
13681 L:      linux-pci@vger.kernel.org
13682 L:      linux-amlogic@lists.infradead.org
13683 S:      Maintained
13684 F:      drivers/pci/controller/dwc/pci-meson.c
13685
13686 PCIE DRIVER FOR AXIS ARTPEC
13687 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13688 L:      linux-arm-kernel@axis.com
13689 L:      linux-pci@vger.kernel.org
13690 S:      Maintained
13691 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13692 F:      drivers/pci/controller/dwc/*artpec*
13693
13694 PCIE DRIVER FOR CAVIUM THUNDERX
13695 M:      Robert Richter <rric@kernel.org>
13696 L:      linux-pci@vger.kernel.org
13697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13698 S:      Odd Fixes
13699 F:      drivers/pci/controller/pci-thunder-*
13700
13701 PCIE DRIVER FOR HISILICON
13702 M:      Zhou Wang <wangzhou1@hisilicon.com>
13703 L:      linux-pci@vger.kernel.org
13704 S:      Maintained
13705 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13706 F:      drivers/pci/controller/dwc/pcie-hisi.c
13707
13708 PCIE DRIVER FOR HISILICON KIRIN
13709 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13710 M:      Binghui Wang <wangbinghui@hisilicon.com>
13711 L:      linux-pci@vger.kernel.org
13712 S:      Maintained
13713 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13714 F:      drivers/pci/controller/dwc/pcie-kirin.c
13715
13716 PCIE DRIVER FOR HISILICON STB
13717 M:      Shawn Guo <shawn.guo@linaro.org>
13718 L:      linux-pci@vger.kernel.org
13719 S:      Maintained
13720 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13721 F:      drivers/pci/controller/dwc/pcie-histb.c
13722
13723 PCIE DRIVER FOR MEDIATEK
13724 M:      Ryder Lee <ryder.lee@mediatek.com>
13725 L:      linux-pci@vger.kernel.org
13726 L:      linux-mediatek@lists.infradead.org
13727 S:      Supported
13728 F:      Documentation/devicetree/bindings/pci/mediatek*
13729 F:      drivers/pci/controller/*mediatek*
13730
13731 PCIE DRIVER FOR QUALCOMM MSM
13732 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13733 L:      linux-pci@vger.kernel.org
13734 L:      linux-arm-msm@vger.kernel.org
13735 S:      Maintained
13736 F:      drivers/pci/controller/dwc/*qcom*
13737
13738 PCIE DRIVER FOR ROCKCHIP
13739 M:      Shawn Lin <shawn.lin@rock-chips.com>
13740 L:      linux-pci@vger.kernel.org
13741 L:      linux-rockchip@lists.infradead.org
13742 S:      Maintained
13743 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13744 F:      drivers/pci/controller/pcie-rockchip*
13745
13746 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13747 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13748 L:      linux-pci@vger.kernel.org
13749 S:      Maintained
13750 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13751 F:      drivers/pci/controller/dwc/pcie-uniphier*
13752
13753 PCIE DRIVER FOR ST SPEAR13XX
13754 M:      Pratyush Anand <pratyush.anand@gmail.com>
13755 L:      linux-pci@vger.kernel.org
13756 S:      Maintained
13757 F:      drivers/pci/controller/dwc/*spear*
13758
13759 PCMCIA SUBSYSTEM
13760 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13761 S:      Odd Fixes
13762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13763 F:      Documentation/pcmcia/
13764 F:      drivers/pcmcia/
13765 F:      include/pcmcia/
13766 F:      tools/pcmcia/
13767
13768 PCNET32 NETWORK DRIVER
13769 M:      Don Fry <pcnet32@frontier.com>
13770 L:      netdev@vger.kernel.org
13771 S:      Maintained
13772 F:      drivers/net/ethernet/amd/pcnet32.c
13773
13774 PCRYPT PARALLEL CRYPTO ENGINE
13775 M:      Steffen Klassert <steffen.klassert@secunet.com>
13776 L:      linux-crypto@vger.kernel.org
13777 S:      Maintained
13778 F:      crypto/pcrypt.c
13779 F:      include/crypto/pcrypt.h
13780
13781 PEAQ WMI HOTKEYS DRIVER
13782 M:      Hans de Goede <hdegoede@redhat.com>
13783 L:      platform-driver-x86@vger.kernel.org
13784 S:      Maintained
13785 F:      drivers/platform/x86/peaq-wmi.c
13786
13787 PENSANDO ETHERNET DRIVERS
13788 M:      Shannon Nelson <snelson@pensando.io>
13789 M:      Pensando Drivers <drivers@pensando.io>
13790 L:      netdev@vger.kernel.org
13791 S:      Supported
13792 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13793 F:      drivers/net/ethernet/pensando/
13794
13795 PER-CPU MEMORY ALLOCATOR
13796 M:      Dennis Zhou <dennis@kernel.org>
13797 M:      Tejun Heo <tj@kernel.org>
13798 M:      Christoph Lameter <cl@linux.com>
13799 S:      Maintained
13800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13801 F:      arch/*/include/asm/percpu.h
13802 F:      include/linux/percpu*.h
13803 F:      mm/percpu*.c
13804
13805 PER-TASK DELAY ACCOUNTING
13806 M:      Balbir Singh <bsingharora@gmail.com>
13807 S:      Maintained
13808 F:      include/linux/delayacct.h
13809 F:      kernel/delayacct.c
13810
13811 PERFORMANCE EVENTS SUBSYSTEM
13812 M:      Peter Zijlstra <peterz@infradead.org>
13813 M:      Ingo Molnar <mingo@redhat.com>
13814 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13815 R:      Mark Rutland <mark.rutland@arm.com>
13816 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13817 R:      Jiri Olsa <jolsa@redhat.com>
13818 R:      Namhyung Kim <namhyung@kernel.org>
13819 L:      linux-kernel@vger.kernel.org
13820 S:      Supported
13821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13822 F:      arch/*/events/*
13823 F:      arch/*/events/*/*
13824 F:      arch/*/include/asm/perf_event.h
13825 F:      arch/*/kernel/*/*/perf_event*.c
13826 F:      arch/*/kernel/*/perf_event*.c
13827 F:      arch/*/kernel/perf_callchain.c
13828 F:      arch/*/kernel/perf_event*.c
13829 F:      include/linux/perf_event.h
13830 F:      include/uapi/linux/perf_event.h
13831 F:      kernel/events/*
13832 F:      tools/lib/perf/
13833 F:      tools/perf/
13834
13835 PERFORMANCE EVENTS TOOLING ARM64
13836 R:      John Garry <john.garry@huawei.com>
13837 R:      Will Deacon <will@kernel.org>
13838 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13839 R:      Leo Yan <leo.yan@linaro.org>
13840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13841 S:      Supported
13842 F:      tools/build/feature/test-libopencsd.c
13843 F:      tools/perf/arch/arm*/
13844 F:      tools/perf/pmu-events/arch/arm64/
13845 F:      tools/perf/util/arm-spe*
13846 F:      tools/perf/util/cs-etm*
13847
13848 PERSONALITY HANDLING
13849 M:      Christoph Hellwig <hch@infradead.org>
13850 L:      linux-abi-devel@lists.sourceforge.net
13851 S:      Maintained
13852 F:      include/linux/personality.h
13853 F:      include/uapi/linux/personality.h
13854
13855 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13856 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13857 L:      linux-input@vger.kernel.org
13858 S:      Maintained
13859 F:      Documentation/input/devices/pxrc.rst
13860 F:      drivers/input/joystick/pxrc.c
13861
13862 PHONET PROTOCOL
13863 M:      Remi Denis-Courmont <courmisch@gmail.com>
13864 S:      Supported
13865 F:      Documentation/networking/phonet.rst
13866 F:      include/linux/phonet.h
13867 F:      include/net/phonet/
13868 F:      include/uapi/linux/phonet.h
13869 F:      net/phonet/
13870
13871 PHRAM MTD DRIVER
13872 M:      Joern Engel <joern@lazybastard.org>
13873 L:      linux-mtd@lists.infradead.org
13874 S:      Maintained
13875 F:      drivers/mtd/devices/phram.c
13876
13877 PICOLCD HID DRIVER
13878 M:      Bruno Prémont <bonbons@linux-vserver.org>
13879 L:      linux-input@vger.kernel.org
13880 S:      Maintained
13881 F:      drivers/hid/hid-picolcd*
13882
13883 PICOXCELL SUPPORT
13884 M:      Jamie Iles <jamie@jamieiles.com>
13885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13886 S:      Supported
13887 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13888 F:      arch/arm/boot/dts/picoxcell*
13889 F:      arch/arm/mach-picoxcell/
13890 F:      drivers/crypto/picoxcell*
13891
13892 PIDFD API
13893 M:      Christian Brauner <christian@brauner.io>
13894 L:      linux-kernel@vger.kernel.org
13895 S:      Maintained
13896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13897 F:      samples/pidfd/
13898 F:      tools/testing/selftests/clone3/
13899 F:      tools/testing/selftests/pid_namespace/
13900 F:      tools/testing/selftests/pidfd/
13901 K:      (?i)pidfd
13902 K:      (?i)clone3
13903 K:      \b(clone_args|kernel_clone_args)\b
13904
13905 PIN CONTROL SUBSYSTEM
13906 M:      Linus Walleij <linus.walleij@linaro.org>
13907 L:      linux-gpio@vger.kernel.org
13908 S:      Maintained
13909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13910 F:      Documentation/devicetree/bindings/pinctrl/
13911 F:      Documentation/driver-api/pinctl.rst
13912 F:      drivers/pinctrl/
13913 F:      include/linux/pinctrl/
13914
13915 PIN CONTROLLER - FREESCALE
13916 M:      Dong Aisheng <aisheng.dong@nxp.com>
13917 M:      Fabio Estevam <festevam@gmail.com>
13918 M:      Shawn Guo <shawnguo@kernel.org>
13919 M:      Stefan Agner <stefan@agner.ch>
13920 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13921 L:      linux-gpio@vger.kernel.org
13922 S:      Maintained
13923 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13924 F:      drivers/pinctrl/freescale/
13925
13926 PIN CONTROLLER - INTEL
13927 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13928 M:      Andy Shevchenko <andy@kernel.org>
13929 S:      Maintained
13930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13931 F:      drivers/pinctrl/intel/
13932
13933 PIN CONTROLLER - MEDIATEK
13934 M:      Sean Wang <sean.wang@kernel.org>
13935 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13936 S:      Maintained
13937 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13938 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13939 F:      drivers/pinctrl/mediatek/
13940
13941 PIN CONTROLLER - MICROCHIP AT91
13942 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13944 L:      linux-gpio@vger.kernel.org
13945 S:      Supported
13946 F:      drivers/gpio/gpio-sama5d2-piobu.c
13947 F:      drivers/pinctrl/pinctrl-at91*
13948
13949 PIN CONTROLLER - QUALCOMM
13950 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13951 L:      linux-arm-msm@vger.kernel.org
13952 S:      Maintained
13953 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13954 F:      drivers/pinctrl/qcom/
13955
13956 PIN CONTROLLER - RENESAS
13957 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13958 L:      linux-renesas-soc@vger.kernel.org
13959 S:      Supported
13960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
13961 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
13962 F:      drivers/pinctrl/renesas/
13963
13964 PIN CONTROLLER - SAMSUNG
13965 M:      Tomasz Figa <tomasz.figa@gmail.com>
13966 M:      Krzysztof Kozlowski <krzk@kernel.org>
13967 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13969 L:      linux-samsung-soc@vger.kernel.org
13970 S:      Maintained
13971 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13973 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13974 F:      drivers/pinctrl/samsung/
13975 F:      include/dt-bindings/pinctrl/samsung.h
13976
13977 PIN CONTROLLER - SINGLE
13978 M:      Tony Lindgren <tony@atomide.com>
13979 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13981 L:      linux-omap@vger.kernel.org
13982 S:      Maintained
13983 F:      drivers/pinctrl/pinctrl-single.c
13984
13985 PIN CONTROLLER - ST SPEAR
13986 M:      Viresh Kumar <vireshk@kernel.org>
13987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13988 S:      Maintained
13989 W:      http://www.st.com/spear
13990 F:      drivers/pinctrl/spear/
13991
13992 PISTACHIO SOC SUPPORT
13993 M:      James Hartley <james.hartley@sondrel.com>
13994 L:      linux-mips@vger.kernel.org
13995 S:      Odd Fixes
13996 F:      arch/mips/boot/dts/img/pistachio*
13997 F:      arch/mips/configs/pistachio*_defconfig
13998 F:      arch/mips/include/asm/mach-pistachio/
13999 F:      arch/mips/pistachio/
14000
14001 PKTCDVD DRIVER
14002 M:      linux-block@vger.kernel.org
14003 S:      Orphan
14004 F:      drivers/block/pktcdvd.c
14005 F:      include/linux/pktcdvd.h
14006 F:      include/uapi/linux/pktcdvd.h
14007
14008 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14009 M:      Tomasz Duszynski <tduszyns@gmail.com>
14010 S:      Maintained
14011 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14012 F:      drivers/iio/chemical/pms7003.c
14013
14014 PLDMFW LIBRARY
14015 M:      Jacob Keller <jacob.e.keller@intel.com>
14016 S:      Maintained
14017 F:      Documentation/driver-api/pldmfw/
14018 F:      include/linux/pldmfw.h
14019 F:      lib/pldmfw/
14020
14021 PLX DMA DRIVER
14022 M:      Logan Gunthorpe <logang@deltatee.com>
14023 S:      Maintained
14024 F:      drivers/dma/plx_dma.c
14025
14026 PM-GRAPH UTILITY
14027 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14028 L:      linux-pm@vger.kernel.org
14029 S:      Supported
14030 W:      https://01.org/pm-graph
14031 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14032 T:      git git://github.com/intel/pm-graph
14033 F:      tools/power/pm-graph
14034
14035 PMBUS HARDWARE MONITORING DRIVERS
14036 M:      Guenter Roeck <linux@roeck-us.net>
14037 L:      linux-hwmon@vger.kernel.org
14038 S:      Maintained
14039 W:      http://hwmon.wiki.kernel.org/
14040 W:      http://www.roeck-us.net/linux/drivers/
14041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14042 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14043 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14044 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14045 F:      Documentation/hwmon/adm1275.rst
14046 F:      Documentation/hwmon/ibm-cffps.rst
14047 F:      Documentation/hwmon/ir35221.rst
14048 F:      Documentation/hwmon/lm25066.rst
14049 F:      Documentation/hwmon/ltc2978.rst
14050 F:      Documentation/hwmon/ltc3815.rst
14051 F:      Documentation/hwmon/max16064.rst
14052 F:      Documentation/hwmon/max20751.rst
14053 F:      Documentation/hwmon/max31785.rst
14054 F:      Documentation/hwmon/max34440.rst
14055 F:      Documentation/hwmon/max8688.rst
14056 F:      Documentation/hwmon/pmbus-core.rst
14057 F:      Documentation/hwmon/pmbus.rst
14058 F:      Documentation/hwmon/tps40422.rst
14059 F:      Documentation/hwmon/ucd9000.rst
14060 F:      Documentation/hwmon/ucd9200.rst
14061 F:      Documentation/hwmon/zl6100.rst
14062 F:      drivers/hwmon/pmbus/
14063 F:      include/linux/pmbus.h
14064
14065 PMC SIERRA MaxRAID DRIVER
14066 L:      linux-scsi@vger.kernel.org
14067 S:      Orphan
14068 W:      http://www.pmc-sierra.com/
14069 F:      drivers/scsi/pmcraid.*
14070
14071 PMC SIERRA PM8001 DRIVER
14072 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14073 L:      linux-scsi@vger.kernel.org
14074 S:      Supported
14075 F:      drivers/scsi/pm8001/
14076
14077 PNI RM3100 IIO DRIVER
14078 M:      Song Qiang <songqiang1304521@gmail.com>
14079 L:      linux-iio@vger.kernel.org
14080 S:      Maintained
14081 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14082 F:      drivers/iio/magnetometer/rm3100*
14083
14084 PNP SUPPORT
14085 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14086 L:      linux-acpi@vger.kernel.org
14087 S:      Maintained
14088 F:      drivers/pnp/
14089 F:      include/linux/pnp.h
14090
14091 POSIX CLOCKS and TIMERS
14092 M:      Thomas Gleixner <tglx@linutronix.de>
14093 L:      linux-kernel@vger.kernel.org
14094 S:      Maintained
14095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14096 F:      fs/timerfd.c
14097 F:      include/linux/time_namespace.h
14098 F:      include/linux/timer*
14099 F:      kernel/time/*timer*
14100 F:      kernel/time/namespace.c
14101
14102 POWER MANAGEMENT CORE
14103 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14104 L:      linux-pm@vger.kernel.org
14105 S:      Supported
14106 B:      https://bugzilla.kernel.org
14107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14108 F:      drivers/base/power/
14109 F:      drivers/powercap/
14110 F:      include/linux/intel_rapl.h
14111 F:      include/linux/pm.h
14112 F:      include/linux/pm_*
14113 F:      include/linux/powercap.h
14114 F:      kernel/configs/nopm.config
14115
14116 POWER STATE COORDINATION INTERFACE (PSCI)
14117 M:      Mark Rutland <mark.rutland@arm.com>
14118 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14119 L:      linux-arm-kernel@lists.infradead.org
14120 S:      Maintained
14121 F:      drivers/firmware/psci/
14122 F:      include/linux/psci.h
14123 F:      include/uapi/linux/psci.h
14124
14125 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14126 M:      Sebastian Reichel <sre@kernel.org>
14127 L:      linux-pm@vger.kernel.org
14128 S:      Maintained
14129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14130 F:      Documentation/ABI/testing/sysfs-class-power
14131 F:      Documentation/devicetree/bindings/power/supply/
14132 F:      drivers/power/supply/
14133 F:      include/linux/power_supply.h
14134
14135 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14136 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14137 L:      linuxppc-dev@lists.ozlabs.org
14138 S:      Maintained
14139 F:      drivers/char/powernv-op-panel.c
14140
14141 PPP OVER ATM (RFC 2364)
14142 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14143 S:      Maintained
14144 F:      include/uapi/linux/atmppp.h
14145 F:      net/atm/pppoatm.c
14146
14147 PPP OVER ETHERNET
14148 M:      Michal Ostrowski <mostrows@earthlink.net>
14149 S:      Maintained
14150 F:      drivers/net/ppp/pppoe.c
14151 F:      drivers/net/ppp/pppox.c
14152
14153 PPP OVER L2TP
14154 M:      James Chapman <jchapman@katalix.com>
14155 S:      Maintained
14156 F:      include/linux/if_pppol2tp.h
14157 F:      include/uapi/linux/if_pppol2tp.h
14158 F:      net/l2tp/l2tp_ppp.c
14159
14160 PPP PROTOCOL DRIVERS AND COMPRESSORS
14161 M:      Paul Mackerras <paulus@samba.org>
14162 L:      linux-ppp@vger.kernel.org
14163 S:      Maintained
14164 F:      drivers/net/ppp/ppp_*
14165
14166 PPS SUPPORT
14167 M:      Rodolfo Giometti <giometti@enneenne.com>
14168 L:      linuxpps@ml.enneenne.com (subscribers-only)
14169 S:      Maintained
14170 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14171 F:      Documentation/ABI/testing/sysfs-pps
14172 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14173 F:      Documentation/driver-api/pps.rst
14174 F:      drivers/pps/
14175 F:      include/linux/pps*.h
14176 F:      include/uapi/linux/pps.h
14177
14178 PPTP DRIVER
14179 M:      Dmitry Kozlov <xeb@mail.ru>
14180 L:      netdev@vger.kernel.org
14181 S:      Maintained
14182 W:      http://sourceforge.net/projects/accel-pptp
14183 F:      drivers/net/ppp/pptp.c
14184
14185 PRESSURE STALL INFORMATION (PSI)
14186 M:      Johannes Weiner <hannes@cmpxchg.org>
14187 S:      Maintained
14188 F:      include/linux/psi*
14189 F:      kernel/sched/psi.c
14190
14191 PRINTK
14192 M:      Petr Mladek <pmladek@suse.com>
14193 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14194 R:      Steven Rostedt <rostedt@goodmis.org>
14195 R:      John Ogness <john.ogness@linutronix.de>
14196 S:      Maintained
14197 F:      include/linux/printk.h
14198 F:      kernel/printk/
14199
14200 PRISM54 WIRELESS DRIVER
14201 M:      Luis Chamberlain <mcgrof@kernel.org>
14202 L:      linux-wireless@vger.kernel.org
14203 S:      Obsolete
14204 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14205 F:      drivers/net/wireless/intersil/prism54/
14206
14207 PROC FILESYSTEM
14208 R:      Alexey Dobriyan <adobriyan@gmail.com>
14209 L:      linux-kernel@vger.kernel.org
14210 L:      linux-fsdevel@vger.kernel.org
14211 S:      Maintained
14212 F:      Documentation/filesystems/proc.rst
14213 F:      fs/proc/
14214 F:      include/linux/proc_fs.h
14215 F:      tools/testing/selftests/proc/
14216
14217 PROC SYSCTL
14218 M:      Luis Chamberlain <mcgrof@kernel.org>
14219 M:      Kees Cook <keescook@chromium.org>
14220 M:      Iurii Zaikin <yzaikin@google.com>
14221 L:      linux-kernel@vger.kernel.org
14222 L:      linux-fsdevel@vger.kernel.org
14223 S:      Maintained
14224 F:      fs/proc/proc_sysctl.c
14225 F:      include/linux/sysctl.h
14226 F:      kernel/sysctl-test.c
14227 F:      kernel/sysctl.c
14228 F:      tools/testing/selftests/sysctl/
14229
14230 PS3 NETWORK SUPPORT
14231 M:      Geoff Levand <geoff@infradead.org>
14232 L:      netdev@vger.kernel.org
14233 L:      linuxppc-dev@lists.ozlabs.org
14234 S:      Maintained
14235 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14236
14237 PS3 PLATFORM SUPPORT
14238 M:      Geoff Levand <geoff@infradead.org>
14239 L:      linuxppc-dev@lists.ozlabs.org
14240 S:      Maintained
14241 F:      arch/powerpc/boot/ps3*
14242 F:      arch/powerpc/include/asm/lv1call.h
14243 F:      arch/powerpc/include/asm/ps3*.h
14244 F:      arch/powerpc/platforms/ps3/
14245 F:      drivers/*/ps3*
14246 F:      drivers/ps3/
14247 F:      drivers/rtc/rtc-ps3.c
14248 F:      drivers/usb/host/*ps3.c
14249 F:      sound/ppc/snd_ps3*
14250
14251 PS3VRAM DRIVER
14252 M:      Jim Paris <jim@jtan.com>
14253 M:      Geoff Levand <geoff@infradead.org>
14254 L:      linuxppc-dev@lists.ozlabs.org
14255 S:      Maintained
14256 F:      drivers/block/ps3vram.c
14257
14258 PSAMPLE PACKET SAMPLING SUPPORT
14259 M:      Yotam Gigi <yotam.gi@gmail.com>
14260 S:      Maintained
14261 F:      include/net/psample.h
14262 F:      include/uapi/linux/psample.h
14263 F:      net/psample
14264
14265 PSTORE FILESYSTEM
14266 M:      Kees Cook <keescook@chromium.org>
14267 M:      Anton Vorontsov <anton@enomsg.org>
14268 M:      Colin Cross <ccross@android.com>
14269 M:      Tony Luck <tony.luck@intel.com>
14270 S:      Maintained
14271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14272 F:      Documentation/admin-guide/ramoops.rst
14273 F:      Documentation/admin-guide/pstore-blk.rst
14274 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14275 F:      drivers/acpi/apei/erst.c
14276 F:      drivers/firmware/efi/efi-pstore.c
14277 F:      fs/pstore/
14278 F:      include/linux/pstore*
14279 K:      \b(pstore|ramoops)
14280
14281 PTP HARDWARE CLOCK SUPPORT
14282 M:      Richard Cochran <richardcochran@gmail.com>
14283 L:      netdev@vger.kernel.org
14284 S:      Maintained
14285 W:      http://linuxptp.sourceforge.net/
14286 F:      Documentation/ABI/testing/sysfs-ptp
14287 F:      Documentation/driver-api/ptp.rst
14288 F:      drivers/net/phy/dp83640*
14289 F:      drivers/ptp/*
14290 F:      include/linux/ptp_cl*
14291
14292 PTRACE SUPPORT
14293 M:      Oleg Nesterov <oleg@redhat.com>
14294 S:      Maintained
14295 F:      arch/*/*/ptrace*.c
14296 F:      arch/*/include/asm/ptrace*.h
14297 F:      arch/*/ptrace*.c
14298 F:      include/asm-generic/syscall.h
14299 F:      include/linux/ptrace.h
14300 F:      include/linux/regset.h
14301 F:      include/linux/tracehook.h
14302 F:      include/uapi/linux/ptrace.h
14303 F:      include/uapi/linux/ptrace.h
14304 F:      kernel/ptrace.c
14305
14306 PULSE8-CEC DRIVER
14307 M:      Hans Verkuil <hverkuil@xs4all.nl>
14308 L:      linux-media@vger.kernel.org
14309 S:      Maintained
14310 T:      git git://linuxtv.org/media_tree.git
14311 F:      Documentation/admin-guide/media/pulse8-cec.rst
14312 F:      drivers/media/cec/usb/pulse8/
14313
14314 PVRUSB2 VIDEO4LINUX DRIVER
14315 M:      Mike Isely <isely@pobox.com>
14316 L:      pvrusb2@isely.net       (subscribers-only)
14317 L:      linux-media@vger.kernel.org
14318 S:      Maintained
14319 W:      http://www.isely.net/pvrusb2/
14320 T:      git git://linuxtv.org/media_tree.git
14321 F:      Documentation/driver-api/media/drivers/pvrusb2*
14322 F:      drivers/media/usb/pvrusb2/
14323
14324 PWC WEBCAM DRIVER
14325 M:      Hans Verkuil <hverkuil@xs4all.nl>
14326 L:      linux-media@vger.kernel.org
14327 S:      Odd Fixes
14328 T:      git git://linuxtv.org/media_tree.git
14329 F:      drivers/media/usb/pwc/*
14330 F:      include/trace/events/pwc.h
14331
14332 PWM FAN DRIVER
14333 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14334 L:      linux-hwmon@vger.kernel.org
14335 S:      Supported
14336 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14337 F:      Documentation/hwmon/pwm-fan.rst
14338 F:      drivers/hwmon/pwm-fan.c
14339
14340 PWM IR Transmitter
14341 M:      Sean Young <sean@mess.org>
14342 L:      linux-media@vger.kernel.org
14343 S:      Maintained
14344 F:      drivers/media/rc/pwm-ir-tx.c
14345
14346 PWM SUBSYSTEM
14347 M:      Thierry Reding <thierry.reding@gmail.com>
14348 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14349 M:      Lee Jones <lee.jones@linaro.org>
14350 L:      linux-pwm@vger.kernel.org
14351 S:      Maintained
14352 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14354 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14355 F:      Documentation/devicetree/bindings/pwm/
14356 F:      Documentation/driver-api/pwm.rst
14357 F:      drivers/gpio/gpio-mvebu.c
14358 F:      drivers/pwm/
14359 F:      drivers/video/backlight/pwm_bl.c
14360 F:      include/linux/pwm.h
14361 F:      include/linux/pwm_backlight.h
14362 K:      pwm_(config|apply_state|ops)
14363
14364 PXA GPIO DRIVER
14365 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14366 L:      linux-gpio@vger.kernel.org
14367 S:      Maintained
14368 F:      drivers/gpio/gpio-pxa.c
14369
14370 PXA MMCI DRIVER
14371 S:      Orphan
14372
14373 PXA RTC DRIVER
14374 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14375 L:      linux-rtc@vger.kernel.org
14376 S:      Maintained
14377
14378 PXA2xx/PXA3xx SUPPORT
14379 M:      Daniel Mack <daniel@zonque.org>
14380 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14381 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14383 S:      Maintained
14384 T:      git git://github.com/hzhuang1/linux.git
14385 T:      git git://github.com/rjarzmik/linux.git
14386 F:      arch/arm/boot/dts/pxa*
14387 F:      arch/arm/mach-pxa/
14388 F:      drivers/dma/pxa*
14389 F:      drivers/pcmcia/pxa2xx*
14390 F:      drivers/pinctrl/pxa/
14391 F:      drivers/spi/spi-pxa2xx*
14392 F:      drivers/usb/gadget/udc/pxa2*
14393 F:      include/sound/pxa2xx-lib.h
14394 F:      sound/arm/pxa*
14395 F:      sound/soc/pxa/
14396
14397 QAT DRIVER
14398 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14399 L:      qat-linux@intel.com
14400 S:      Supported
14401 F:      drivers/crypto/qat/
14402
14403 QCOM AUDIO (ASoC) DRIVERS
14404 M:      Patrick Lai <plai@codeaurora.org>
14405 M:      Banajit Goswami <bgoswami@codeaurora.org>
14406 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14407 S:      Supported
14408 F:      sound/soc/qcom/
14409
14410 QCOM IPA DRIVER
14411 M:      Alex Elder <elder@kernel.org>
14412 L:      netdev@vger.kernel.org
14413 S:      Supported
14414 F:      drivers/net/ipa/
14415
14416 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14417 M:      Gabriel Somlo <somlo@cmu.edu>
14418 M:      "Michael S. Tsirkin" <mst@redhat.com>
14419 L:      qemu-devel@nongnu.org
14420 S:      Maintained
14421 F:      drivers/firmware/qemu_fw_cfg.c
14422 F:      include/uapi/linux/qemu_fw_cfg.h
14423
14424 QIB DRIVER
14425 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14426 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14427 L:      linux-rdma@vger.kernel.org
14428 S:      Supported
14429 F:      drivers/infiniband/hw/qib/
14430
14431 QLOGIC QL41xxx FCOE DRIVER
14432 M:      Saurav Kashyap <skashyap@marvell.com>
14433 M:      Javed Hasan <jhasan@marvell.com>
14434 M:      GR-QLogic-Storage-Upstream@marvell.com
14435 L:      linux-scsi@vger.kernel.org
14436 S:      Supported
14437 F:      drivers/scsi/qedf/
14438
14439 QLOGIC QL41xxx ISCSI DRIVER
14440 M:      Nilesh Javali <njavali@marvell.com>
14441 M:      Manish Rangankar <mrangankar@marvell.com>
14442 M:      GR-QLogic-Storage-Upstream@marvell.com
14443 L:      linux-scsi@vger.kernel.org
14444 S:      Supported
14445 F:      drivers/scsi/qedi/
14446
14447 QLOGIC QL4xxx ETHERNET DRIVER
14448 M:      Ariel Elior <aelior@marvell.com>
14449 M:      GR-everest-linux-l2@marvell.com
14450 L:      netdev@vger.kernel.org
14451 S:      Supported
14452 F:      drivers/net/ethernet/qlogic/qed/
14453 F:      drivers/net/ethernet/qlogic/qede/
14454 F:      include/linux/qed/
14455
14456 QLOGIC QL4xxx RDMA DRIVER
14457 M:      Michal Kalderon <mkalderon@marvell.com>
14458 M:      Ariel Elior <aelior@marvell.com>
14459 L:      linux-rdma@vger.kernel.org
14460 S:      Supported
14461 F:      drivers/infiniband/hw/qedr/
14462 F:      include/uapi/rdma/qedr-abi.h
14463
14464 QLOGIC QLA1280 SCSI DRIVER
14465 M:      Michael Reed <mdr@sgi.com>
14466 L:      linux-scsi@vger.kernel.org
14467 S:      Maintained
14468 F:      drivers/scsi/qla1280.[ch]
14469
14470 QLOGIC QLA2XXX FC-SCSI DRIVER
14471 M:      Nilesh Javali <njavali@marvell.com>
14472 M:      GR-QLogic-Storage-Upstream@marvell.com
14473 L:      linux-scsi@vger.kernel.org
14474 S:      Supported
14475 F:      drivers/scsi/qla2xxx/
14476
14477 QLOGIC QLA3XXX NETWORK DRIVER
14478 M:      GR-Linux-NIC-Dev@marvell.com
14479 L:      netdev@vger.kernel.org
14480 S:      Supported
14481 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14482
14483 QLOGIC QLA4XXX iSCSI DRIVER
14484 M:      Nilesh Javali <njavali@marvell.com>
14485 M:      Manish Rangankar <mrangankar@marvell.com>
14486 M:      GR-QLogic-Storage-Upstream@marvell.com
14487 L:      linux-scsi@vger.kernel.org
14488 S:      Supported
14489 F:      drivers/scsi/qla4xxx/
14490
14491 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14492 M:      Shahed Shaikh <shshaikh@marvell.com>
14493 M:      Manish Chopra <manishc@marvell.com>
14494 M:      GR-Linux-NIC-Dev@marvell.com
14495 L:      netdev@vger.kernel.org
14496 S:      Supported
14497 F:      drivers/net/ethernet/qlogic/qlcnic/
14498
14499 QLOGIC QLGE 10Gb ETHERNET DRIVER
14500 M:      Manish Chopra <manishc@marvell.com>
14501 M:      GR-Linux-NIC-Dev@marvell.com
14502 L:      netdev@vger.kernel.org
14503 S:      Supported
14504 F:      drivers/staging/qlge/
14505
14506 QM1D1B0004 MEDIA DRIVER
14507 M:      Akihiro Tsukada <tskd08@gmail.com>
14508 L:      linux-media@vger.kernel.org
14509 S:      Odd Fixes
14510 F:      drivers/media/tuners/qm1d1b0004*
14511
14512 QM1D1C0042 MEDIA DRIVER
14513 M:      Akihiro Tsukada <tskd08@gmail.com>
14514 L:      linux-media@vger.kernel.org
14515 S:      Odd Fixes
14516 F:      drivers/media/tuners/qm1d1c0042*
14517
14518 QNX4 FILESYSTEM
14519 M:      Anders Larsen <al@alarsen.net>
14520 S:      Maintained
14521 W:      http://www.alarsen.net/linux/qnx4fs/
14522 F:      fs/qnx4/
14523 F:      include/uapi/linux/qnx4_fs.h
14524 F:      include/uapi/linux/qnxtypes.h
14525
14526 QORIQ DPAA2 FSL-MC BUS DRIVER
14527 M:      Stuart Yoder <stuyoder@gmail.com>
14528 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14529 L:      linux-kernel@vger.kernel.org
14530 S:      Maintained
14531 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14532 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14533 F:      drivers/bus/fsl-mc/
14534
14535 QT1010 MEDIA DRIVER
14536 M:      Antti Palosaari <crope@iki.fi>
14537 L:      linux-media@vger.kernel.org
14538 S:      Maintained
14539 W:      https://linuxtv.org
14540 W:      http://palosaari.fi/linux/
14541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14542 T:      git git://linuxtv.org/anttip/media_tree.git
14543 F:      drivers/media/tuners/qt1010*
14544
14545 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14546 M:      Kalle Valo <kvalo@codeaurora.org>
14547 L:      ath10k@lists.infradead.org
14548 S:      Supported
14549 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14551 F:      drivers/net/wireless/ath/ath10k/
14552
14553 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14554 M:      Kalle Valo <kvalo@codeaurora.org>
14555 L:      ath11k@lists.infradead.org
14556 S:      Supported
14557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14558 F:      drivers/net/wireless/ath/ath11k/
14559
14560 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14561 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14562 L:      linux-wireless@vger.kernel.org
14563 S:      Supported
14564 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14565 F:      drivers/net/wireless/ath/ath9k/
14566
14567 QUALCOMM CAMERA SUBSYSTEM DRIVER
14568 M:      Robert Foss <robert.foss@linaro.org>
14569 M:      Todor Tomov <todor.too@gmail.com>
14570 L:      linux-media@vger.kernel.org
14571 S:      Maintained
14572 F:      Documentation/admin-guide/media/qcom_camss.rst
14573 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14574 F:      drivers/media/platform/qcom/camss/
14575
14576 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14577 M:      Niklas Cassel <nks@flawful.org>
14578 L:      linux-pm@vger.kernel.org
14579 L:      linux-arm-msm@vger.kernel.org
14580 S:      Maintained
14581 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14582 F:      drivers/soc/qcom/cpr.c
14583
14584 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14585 M:      Ilia Lin <ilia.lin@kernel.org>
14586 L:      linux-pm@vger.kernel.org
14587 S:      Maintained
14588 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14589 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14590
14591 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14592 M:      Timur Tabi <timur@kernel.org>
14593 L:      netdev@vger.kernel.org
14594 S:      Maintained
14595 F:      drivers/net/ethernet/qualcomm/emac/
14596
14597 QUALCOMM ETHQOS ETHERNET DRIVER
14598 M:      Vinod Koul <vkoul@kernel.org>
14599 L:      netdev@vger.kernel.org
14600 S:      Maintained
14601 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14602 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14603
14604 QUALCOMM GENERIC INTERFACE I2C DRIVER
14605 M:      Akash Asthana <akashast@codeaurora.org>
14606 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14607 L:      linux-i2c@vger.kernel.org
14608 L:      linux-arm-msm@vger.kernel.org
14609 S:      Supported
14610 F:      drivers/i2c/busses/i2c-qcom-geni.c
14611
14612 QUALCOMM HEXAGON ARCHITECTURE
14613 M:      Brian Cain <bcain@codeaurora.org>
14614 L:      linux-hexagon@vger.kernel.org
14615 S:      Supported
14616 F:      arch/hexagon/
14617
14618 QUALCOMM HIDMA DRIVER
14619 M:      Sinan Kaya <okaya@kernel.org>
14620 L:      linux-arm-kernel@lists.infradead.org
14621 L:      linux-arm-msm@vger.kernel.org
14622 L:      dmaengine@vger.kernel.org
14623 S:      Supported
14624 F:      drivers/dma/qcom/hidma*
14625
14626 QUALCOMM I2C CCI DRIVER
14627 M:      Loic Poulain <loic.poulain@linaro.org>
14628 M:      Robert Foss <robert.foss@linaro.org>
14629 L:      linux-i2c@vger.kernel.org
14630 L:      linux-arm-msm@vger.kernel.org
14631 S:      Maintained
14632 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14633 F:      drivers/i2c/busses/i2c-qcom-cci.c
14634
14635 QUALCOMM IOMMU
14636 M:      Rob Clark <robdclark@gmail.com>
14637 L:      iommu@lists.linux-foundation.org
14638 L:      linux-arm-msm@vger.kernel.org
14639 S:      Maintained
14640 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14641
14642 QUALCOMM IPCC MAILBOX DRIVER
14643 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14644 L:      linux-arm-msm@vger.kernel.org
14645 S:      Supported
14646 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14647 F:      drivers/mailbox/qcom-ipcc.c
14648 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14649
14650 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14651 M:      Robert Marko <robert.marko@sartura.hr>
14652 M:      Luka Perkov <luka.perkov@sartura.hr>
14653 L:      linux-arm-msm@vger.kernel.org
14654 S:      Maintained
14655 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14656 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14657
14658 QUALCOMM RMNET DRIVER
14659 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14660 M:      Sean Tranchetti <stranche@codeaurora.org>
14661 L:      netdev@vger.kernel.org
14662 S:      Maintained
14663 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14664 F:      drivers/net/ethernet/qualcomm/rmnet/
14665 F:      include/linux/if_rmnet.h
14666
14667 QUALCOMM TSENS THERMAL DRIVER
14668 M:      Amit Kucheria <amitk@kernel.org>
14669 L:      linux-pm@vger.kernel.org
14670 L:      linux-arm-msm@vger.kernel.org
14671 S:      Maintained
14672 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14673 F:      drivers/thermal/qcom/
14674
14675 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14676 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14677 L:      linux-media@vger.kernel.org
14678 L:      linux-arm-msm@vger.kernel.org
14679 S:      Maintained
14680 T:      git git://linuxtv.org/media_tree.git
14681 F:      Documentation/devicetree/bindings/media/*venus*
14682 F:      drivers/media/platform/qcom/venus/
14683
14684 QUALCOMM WCN36XX WIRELESS DRIVER
14685 M:      Kalle Valo <kvalo@codeaurora.org>
14686 L:      wcn36xx@lists.infradead.org
14687 S:      Supported
14688 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14689 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14690 F:      drivers/net/wireless/ath/wcn36xx/
14691
14692 QUANTENNA QTNFMAC WIRELESS DRIVER
14693 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14694 R:      Sergey Matyukevich <geomatsi@gmail.com>
14695 L:      linux-wireless@vger.kernel.org
14696 S:      Maintained
14697 F:      drivers/net/wireless/quantenna
14698
14699 RADEON and AMDGPU DRM DRIVERS
14700 M:      Alex Deucher <alexander.deucher@amd.com>
14701 M:      Christian König <christian.koenig@amd.com>
14702 L:      amd-gfx@lists.freedesktop.org
14703 S:      Supported
14704 T:      git git://people.freedesktop.org/~agd5f/linux
14705 F:      drivers/gpu/drm/amd/
14706 F:      drivers/gpu/drm/radeon/
14707 F:      include/uapi/drm/amdgpu_drm.h
14708 F:      include/uapi/drm/radeon_drm.h
14709
14710 RADEON FRAMEBUFFER DISPLAY DRIVER
14711 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14712 L:      linux-fbdev@vger.kernel.org
14713 S:      Maintained
14714 F:      drivers/video/fbdev/aty/radeon*
14715 F:      include/uapi/linux/radeonfb.h
14716
14717 RADIOSHARK RADIO DRIVER
14718 M:      Hans Verkuil <hverkuil@xs4all.nl>
14719 L:      linux-media@vger.kernel.org
14720 S:      Maintained
14721 T:      git git://linuxtv.org/media_tree.git
14722 F:      drivers/media/radio/radio-shark.c
14723
14724 RADIOSHARK2 RADIO DRIVER
14725 M:      Hans Verkuil <hverkuil@xs4all.nl>
14726 L:      linux-media@vger.kernel.org
14727 S:      Maintained
14728 T:      git git://linuxtv.org/media_tree.git
14729 F:      drivers/media/radio/radio-shark2.c
14730 F:      drivers/media/radio/radio-tea5777.c
14731
14732 RADOS BLOCK DEVICE (RBD)
14733 M:      Ilya Dryomov <idryomov@gmail.com>
14734 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14735 L:      ceph-devel@vger.kernel.org
14736 S:      Supported
14737 W:      http://ceph.com/
14738 T:      git git://github.com/ceph/ceph-client.git
14739 F:      Documentation/ABI/testing/sysfs-bus-rbd
14740 F:      drivers/block/rbd.c
14741 F:      drivers/block/rbd_types.h
14742
14743 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14744 M:      Paul Mackerras <paulus@samba.org>
14745 L:      linux-fbdev@vger.kernel.org
14746 S:      Maintained
14747 F:      drivers/video/fbdev/aty/aty128fb.c
14748
14749 RAINSHADOW-CEC DRIVER
14750 M:      Hans Verkuil <hverkuil@xs4all.nl>
14751 L:      linux-media@vger.kernel.org
14752 S:      Maintained
14753 T:      git git://linuxtv.org/media_tree.git
14754 F:      drivers/media/cec/usb/rainshadow/
14755
14756 RALINK MIPS ARCHITECTURE
14757 M:      John Crispin <john@phrozen.org>
14758 L:      linux-mips@vger.kernel.org
14759 S:      Maintained
14760 F:      arch/mips/ralink
14761
14762 RALINK RT2X00 WIRELESS LAN DRIVER
14763 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14764 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14765 L:      linux-wireless@vger.kernel.org
14766 S:      Maintained
14767 F:      drivers/net/wireless/ralink/rt2x00/
14768
14769 RAMDISK RAM BLOCK DEVICE DRIVER
14770 M:      Jens Axboe <axboe@kernel.dk>
14771 S:      Maintained
14772 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14773 F:      drivers/block/brd.c
14774
14775 RANCHU VIRTUAL BOARD FOR MIPS
14776 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14777 L:      linux-mips@vger.kernel.org
14778 S:      Supported
14779 F:      arch/mips/configs/generic/board-ranchu.config
14780 F:      arch/mips/generic/board-ranchu.c
14781
14782 RANDOM NUMBER DRIVER
14783 M:      "Theodore Ts'o" <tytso@mit.edu>
14784 S:      Maintained
14785 F:      drivers/char/random.c
14786
14787 RAPIDIO SUBSYSTEM
14788 M:      Matt Porter <mporter@kernel.crashing.org>
14789 M:      Alexandre Bounine <alex.bou9@gmail.com>
14790 S:      Maintained
14791 F:      drivers/rapidio/
14792
14793 RAS INFRASTRUCTURE
14794 M:      Tony Luck <tony.luck@intel.com>
14795 M:      Borislav Petkov <bp@alien8.de>
14796 L:      linux-edac@vger.kernel.org
14797 S:      Maintained
14798 F:      Documentation/admin-guide/ras.rst
14799 F:      drivers/ras/
14800 F:      include/linux/ras.h
14801 F:      include/ras/ras_event.h
14802
14803 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14804 L:      linux-wireless@vger.kernel.org
14805 S:      Orphan
14806 F:      drivers/net/wireless/ray*
14807
14808 RC-CORE / LIRC FRAMEWORK
14809 M:      Sean Young <sean@mess.org>
14810 L:      linux-media@vger.kernel.org
14811 S:      Maintained
14812 W:      http://linuxtv.org
14813 T:      git git://linuxtv.org/media_tree.git
14814 F:      Documentation/driver-api/media/rc-core.rst
14815 F:      Documentation/userspace-api/media/rc/
14816 F:      drivers/media/rc/
14817 F:      include/media/rc-map.h
14818 F:      include/media/rc-core.h
14819 F:      include/uapi/linux/lirc.h
14820
14821 RCMM REMOTE CONTROLS DECODER
14822 M:      Patrick Lerda <patrick9876@free.fr>
14823 S:      Maintained
14824 F:      drivers/media/rc/ir-rcmm-decoder.c
14825
14826 RCUTORTURE TEST FRAMEWORK
14827 M:      "Paul E. McKenney" <paulmck@kernel.org>
14828 M:      Josh Triplett <josh@joshtriplett.org>
14829 R:      Steven Rostedt <rostedt@goodmis.org>
14830 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14831 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14832 L:      rcu@vger.kernel.org
14833 S:      Supported
14834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14835 F:      tools/testing/selftests/rcutorture
14836
14837 RDACM20 Camera Sensor
14838 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14839 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14840 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14841 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14842 L:      linux-media@vger.kernel.org
14843 S:      Maintained
14844 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14845 F:      drivers/media/i2c/max9271.c
14846 F:      drivers/media/i2c/max9271.h
14847 F:      drivers/media/i2c/rdacm20.c
14848
14849 RDC R-321X SoC
14850 M:      Florian Fainelli <florian@openwrt.org>
14851 S:      Maintained
14852
14853 RDC R6040 FAST ETHERNET DRIVER
14854 M:      Florian Fainelli <f.fainelli@gmail.com>
14855 L:      netdev@vger.kernel.org
14856 S:      Maintained
14857 F:      drivers/net/ethernet/rdc/r6040.c
14858
14859 RDMAVT - RDMA verbs software
14860 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14861 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14862 L:      linux-rdma@vger.kernel.org
14863 S:      Supported
14864 F:      drivers/infiniband/sw/rdmavt
14865
14866 RDS - RELIABLE DATAGRAM SOCKETS
14867 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14868 L:      netdev@vger.kernel.org
14869 L:      linux-rdma@vger.kernel.org
14870 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14871 S:      Supported
14872 W:      https://oss.oracle.com/projects/rds/
14873 F:      Documentation/networking/rds.rst
14874 F:      net/rds/
14875
14876 RDT - RESOURCE ALLOCATION
14877 M:      Fenghua Yu <fenghua.yu@intel.com>
14878 M:      Reinette Chatre <reinette.chatre@intel.com>
14879 L:      linux-kernel@vger.kernel.org
14880 S:      Supported
14881 F:      Documentation/x86/resctrl*
14882 F:      arch/x86/include/asm/resctrl.h
14883 F:      arch/x86/kernel/cpu/resctrl/
14884 F:      tools/testing/selftests/resctrl/
14885
14886 READ-COPY UPDATE (RCU)
14887 M:      "Paul E. McKenney" <paulmck@kernel.org>
14888 M:      Josh Triplett <josh@joshtriplett.org>
14889 R:      Steven Rostedt <rostedt@goodmis.org>
14890 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14891 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14892 R:      Joel Fernandes <joel@joelfernandes.org>
14893 L:      rcu@vger.kernel.org
14894 S:      Supported
14895 W:      http://www.rdrop.com/users/paulmck/RCU/
14896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14897 F:      Documentation/RCU/
14898 F:      include/linux/rcu*
14899 F:      kernel/rcu/
14900 X:      Documentation/RCU/torture.rst
14901 X:      include/linux/srcu*.h
14902 X:      kernel/rcu/srcu*.c
14903
14904 REAL TIME CLOCK (RTC) SUBSYSTEM
14905 M:      Alessandro Zummo <a.zummo@towertech.it>
14906 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14907 L:      linux-rtc@vger.kernel.org
14908 S:      Maintained
14909 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14911 F:      Documentation/admin-guide/rtc.rst
14912 F:      Documentation/devicetree/bindings/rtc/
14913 F:      drivers/rtc/
14914 F:      include/linux/platform_data/rtc-*
14915 F:      include/linux/rtc.h
14916 F:      include/linux/rtc/
14917 F:      include/uapi/linux/rtc.h
14918 F:      tools/testing/selftests/rtc/
14919
14920 REALTEK AUDIO CODECS
14921 M:      Oder Chiou <oder_chiou@realtek.com>
14922 S:      Maintained
14923 F:      include/sound/rt*.h
14924 F:      sound/soc/codecs/rt*
14925
14926 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14927 M:      Linus Walleij <linus.walleij@linaro.org>
14928 S:      Maintained
14929 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14930 F:      drivers/net/dsa/realtek-smi*
14931 F:      drivers/net/dsa/rtl83*
14932
14933 REALTEK WIRELESS DRIVER (rtlwifi family)
14934 M:      Ping-Ke Shih <pkshih@realtek.com>
14935 L:      linux-wireless@vger.kernel.org
14936 S:      Maintained
14937 W:      https://wireless.wiki.kernel.org/
14938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14939 F:      drivers/net/wireless/realtek/rtlwifi/
14940
14941 REALTEK WIRELESS DRIVER (rtw88)
14942 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
14943 L:      linux-wireless@vger.kernel.org
14944 S:      Maintained
14945 F:      drivers/net/wireless/realtek/rtw88/
14946
14947 REDPINE WIRELESS DRIVER
14948 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14949 M:      Siva Rebbagondla <siva8118@gmail.com>
14950 L:      linux-wireless@vger.kernel.org
14951 S:      Maintained
14952 F:      drivers/net/wireless/rsi/
14953
14954 REGISTER MAP ABSTRACTION
14955 M:      Mark Brown <broonie@kernel.org>
14956 L:      linux-kernel@vger.kernel.org
14957 S:      Supported
14958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14959 F:      Documentation/devicetree/bindings/regmap/
14960 F:      drivers/base/regmap/
14961 F:      include/linux/regmap.h
14962
14963 REISERFS FILE SYSTEM
14964 L:      reiserfs-devel@vger.kernel.org
14965 S:      Supported
14966 F:      fs/reiserfs/
14967
14968 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14969 M:      Ohad Ben-Cohen <ohad@wizery.com>
14970 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14971 L:      linux-remoteproc@vger.kernel.org
14972 S:      Maintained
14973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14974 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14975 F:      Documentation/devicetree/bindings/remoteproc/
14976 F:      Documentation/staging/remoteproc.rst
14977 F:      drivers/remoteproc/
14978 F:      include/linux/remoteproc.h
14979 F:      include/linux/remoteproc/
14980
14981 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14982 M:      Ohad Ben-Cohen <ohad@wizery.com>
14983 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14984 L:      linux-remoteproc@vger.kernel.org
14985 S:      Maintained
14986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14987 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14988 F:      Documentation/staging/rpmsg.rst
14989 F:      drivers/rpmsg/
14990 F:      include/linux/rpmsg.h
14991 F:      include/linux/rpmsg/
14992 F:      include/uapi/linux/rpmsg.h
14993 F:      samples/rpmsg/
14994
14995 RENESAS CLOCK DRIVERS
14996 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14997 L:      linux-renesas-soc@vger.kernel.org
14998 S:      Supported
14999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
15000 F:      Documentation/devicetree/bindings/clock/renesas,*
15001 F:      drivers/clk/renesas/
15002
15003 RENESAS EMEV2 I2C DRIVER
15004 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15005 S:      Supported
15006 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15007 F:      drivers/i2c/busses/i2c-emev2.c
15008
15009 RENESAS ETHERNET DRIVERS
15010 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15011 L:      netdev@vger.kernel.org
15012 L:      linux-renesas-soc@vger.kernel.org
15013 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15014 F:      drivers/net/ethernet/renesas/
15015 F:      include/linux/sh_eth.h
15016
15017 RENESAS R-CAR GYROADC DRIVER
15018 M:      Marek Vasut <marek.vasut@gmail.com>
15019 L:      linux-iio@vger.kernel.org
15020 S:      Supported
15021 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
15022 F:      drivers/iio/adc/rcar-gyroadc.c
15023
15024 RENESAS R-CAR I2C DRIVERS
15025 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15026 S:      Supported
15027 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15028 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15029 F:      drivers/i2c/busses/i2c-rcar.c
15030 F:      drivers/i2c/busses/i2c-sh_mobile.c
15031
15032 RENESAS R-CAR THERMAL DRIVERS
15033 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15034 L:      linux-renesas-soc@vger.kernel.org
15035 S:      Supported
15036 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15037 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15038 F:      drivers/thermal/rcar_gen3_thermal.c
15039 F:      drivers/thermal/rcar_thermal.c
15040
15041 RENESAS RIIC DRIVER
15042 M:      Chris Brandt <chris.brandt@renesas.com>
15043 S:      Supported
15044 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15045 F:      drivers/i2c/busses/i2c-riic.c
15046
15047 RENESAS USB PHY DRIVER
15048 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15049 L:      linux-renesas-soc@vger.kernel.org
15050 S:      Maintained
15051 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15052
15053 RESET CONTROLLER FRAMEWORK
15054 M:      Philipp Zabel <p.zabel@pengutronix.de>
15055 S:      Maintained
15056 T:      git git://git.pengutronix.de/git/pza/linux
15057 F:      Documentation/devicetree/bindings/reset/
15058 F:      Documentation/driver-api/reset.rst
15059 F:      drivers/reset/
15060 F:      include/dt-bindings/reset/
15061 F:      include/linux/reset-controller.h
15062 F:      include/linux/reset.h
15063 F:      include/linux/reset/
15064 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15065
15066 RESTARTABLE SEQUENCES SUPPORT
15067 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15068 M:      Peter Zijlstra <peterz@infradead.org>
15069 M:      "Paul E. McKenney" <paulmck@kernel.org>
15070 M:      Boqun Feng <boqun.feng@gmail.com>
15071 L:      linux-kernel@vger.kernel.org
15072 S:      Supported
15073 F:      include/trace/events/rseq.h
15074 F:      include/uapi/linux/rseq.h
15075 F:      kernel/rseq.c
15076 F:      tools/testing/selftests/rseq/
15077
15078 RFKILL
15079 M:      Johannes Berg <johannes@sipsolutions.net>
15080 L:      linux-wireless@vger.kernel.org
15081 S:      Maintained
15082 W:      https://wireless.wiki.kernel.org/
15083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15085 F:      Documentation/ABI/stable/sysfs-class-rfkill
15086 F:      Documentation/driver-api/rfkill.rst
15087 F:      include/linux/rfkill.h
15088 F:      include/uapi/linux/rfkill.h
15089 F:      net/rfkill/
15090
15091 RHASHTABLE
15092 M:      Thomas Graf <tgraf@suug.ch>
15093 M:      Herbert Xu <herbert@gondor.apana.org.au>
15094 L:      netdev@vger.kernel.org
15095 S:      Maintained
15096 F:      include/linux/rhashtable-types.h
15097 F:      include/linux/rhashtable.h
15098 F:      lib/rhashtable.c
15099 F:      lib/test_rhashtable.c
15100
15101 RICOH R5C592 MEMORYSTICK DRIVER
15102 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15103 S:      Maintained
15104 F:      drivers/memstick/host/r592.*
15105
15106 RICOH SMARTMEDIA/XD DRIVER
15107 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15108 S:      Maintained
15109 F:      drivers/mtd/nand/raw/r852.c
15110 F:      drivers/mtd/nand/raw/r852.h
15111
15112 RISC-V ARCHITECTURE
15113 M:      Paul Walmsley <paul.walmsley@sifive.com>
15114 M:      Palmer Dabbelt <palmer@dabbelt.com>
15115 M:      Albert Ou <aou@eecs.berkeley.edu>
15116 L:      linux-riscv@lists.infradead.org
15117 S:      Supported
15118 P:      Documentation/riscv/patch-acceptance.rst
15119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15120 F:      arch/riscv/
15121 N:      riscv
15122 K:      riscv
15123
15124 RNBD BLOCK DRIVERS
15125 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15126 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15127 L:      linux-block@vger.kernel.org
15128 S:      Maintained
15129 F:      drivers/block/rnbd/
15130
15131 ROCCAT DRIVERS
15132 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15133 S:      Maintained
15134 W:      http://sourceforge.net/projects/roccat/
15135 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15136 F:      drivers/hid/hid-roccat*
15137 F:      include/linux/hid-roccat*
15138
15139 ROCKCHIP ISP V1 DRIVER
15140 M:      Helen Koike <helen.koike@collabora.com>
15141 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15142 L:      linux-media@vger.kernel.org
15143 L:      linux-rockchip@lists.infradead.org
15144 S:      Maintained
15145 F:      Documentation/admin-guide/media/rkisp1.rst
15146 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15147 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15148 F:      drivers/media/platform/rockchip/rkisp1
15149 F:      include/uapi/linux/rkisp1-config.h
15150
15151 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15152 M:      Jacob Chen <jacob-chen@iotwrt.com>
15153 M:      Ezequiel Garcia <ezequiel@collabora.com>
15154 L:      linux-media@vger.kernel.org
15155 L:      linux-rockchip@lists.infradead.org
15156 S:      Maintained
15157 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15158 F:      drivers/media/platform/rockchip/rga/
15159
15160 ROCKCHIP VIDEO DECODER DRIVER
15161 M:      Ezequiel Garcia <ezequiel@collabora.com>
15162 L:      linux-media@vger.kernel.org
15163 L:      linux-rockchip@lists.infradead.org
15164 S:      Maintained
15165 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15166 F:      drivers/staging/media/rkvdec/
15167
15168 ROCKER DRIVER
15169 M:      Jiri Pirko <jiri@resnulli.us>
15170 L:      netdev@vger.kernel.org
15171 S:      Supported
15172 F:      drivers/net/ethernet/rocker/
15173
15174 ROCKETPORT DRIVER
15175 S:      Maintained
15176 W:      http://www.comtrol.com
15177 F:      Documentation/driver-api/serial/rocket.rst
15178 F:      drivers/tty/rocket*
15179
15180 ROCKETPORT EXPRESS/INFINITY DRIVER
15181 M:      Kevin Cernekee <cernekee@gmail.com>
15182 L:      linux-serial@vger.kernel.org
15183 S:      Odd Fixes
15184 F:      drivers/tty/serial/rp2.*
15185
15186 ROHM BD99954 CHARGER IC
15187 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15188 L:      linux-power@fi.rohmeurope.com
15189 S:      Supported
15190 F:      drivers/power/supply/bd99954-charger.c
15191 F:      drivers/power/supply/bd99954-charger.h
15192
15193 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15194 M:      Tomasz Duszynski <tduszyns@gmail.com>
15195 S:      Maintained
15196 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15197 F:      drivers/iio/light/bh1750.c
15198
15199 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15200 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15201 L:      linux-kernel@vger.kernel.org
15202 L:      linux-renesas-soc@vger.kernel.org
15203 S:      Supported
15204 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15205 F:      drivers/gpio/gpio-bd9571mwv.c
15206 F:      drivers/mfd/bd9571mwv.c
15207 F:      drivers/regulator/bd9571mwv-regulator.c
15208 F:      include/linux/mfd/bd9571mwv.h
15209
15210 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15211 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15212 L:      linux-power@fi.rohmeurope.com
15213 S:      Supported
15214 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15215 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15216 F:      drivers/clk/clk-bd718x7.c
15217 F:      drivers/gpio/gpio-bd70528.c
15218 F:      drivers/gpio/gpio-bd71828.c
15219 F:      drivers/mfd/rohm-bd70528.c
15220 F:      drivers/mfd/rohm-bd71828.c
15221 F:      drivers/mfd/rohm-bd718x7.c
15222 F:      drivers/power/supply/bd70528-charger.c
15223 F:      drivers/regulator/bd70528-regulator.c
15224 F:      drivers/regulator/bd71828-regulator.c
15225 F:      drivers/regulator/bd718x7-regulator.c
15226 F:      drivers/regulator/rohm-regulator.c
15227 F:      drivers/rtc/rtc-bd70528.c
15228 F:      drivers/watchdog/bd70528_wdt.c
15229 F:      include/linux/mfd/rohm-bd70528.h
15230 F:      include/linux/mfd/rohm-bd71828.h
15231 F:      include/linux/mfd/rohm-bd718x7.h
15232 F:      include/linux/mfd/rohm-generic.h
15233 F:      include/linux/mfd/rohm-shared.h
15234
15235 ROSE NETWORK LAYER
15236 M:      Ralf Baechle <ralf@linux-mips.org>
15237 L:      linux-hams@vger.kernel.org
15238 S:      Maintained
15239 W:      http://www.linux-ax25.org/
15240 F:      include/net/rose.h
15241 F:      include/uapi/linux/rose.h
15242 F:      net/rose/
15243
15244 ROTATION DRIVER FOR ALLWINNER A83T
15245 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15246 L:      linux-media@vger.kernel.org
15247 S:      Maintained
15248 T:      git git://linuxtv.org/media_tree.git
15249 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15250 F:      drivers/media/platform/sunxi/sun8i-rotate/
15251
15252 RTL2830 MEDIA DRIVER
15253 M:      Antti Palosaari <crope@iki.fi>
15254 L:      linux-media@vger.kernel.org
15255 S:      Maintained
15256 W:      https://linuxtv.org
15257 W:      http://palosaari.fi/linux/
15258 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15259 T:      git git://linuxtv.org/anttip/media_tree.git
15260 F:      drivers/media/dvb-frontends/rtl2830*
15261
15262 RTL2832 MEDIA DRIVER
15263 M:      Antti Palosaari <crope@iki.fi>
15264 L:      linux-media@vger.kernel.org
15265 S:      Maintained
15266 W:      https://linuxtv.org
15267 W:      http://palosaari.fi/linux/
15268 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15269 T:      git git://linuxtv.org/anttip/media_tree.git
15270 F:      drivers/media/dvb-frontends/rtl2832*
15271
15272 RTL2832_SDR MEDIA DRIVER
15273 M:      Antti Palosaari <crope@iki.fi>
15274 L:      linux-media@vger.kernel.org
15275 S:      Maintained
15276 W:      https://linuxtv.org
15277 W:      http://palosaari.fi/linux/
15278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15279 T:      git git://linuxtv.org/anttip/media_tree.git
15280 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15281
15282 RTL8180 WIRELESS DRIVER
15283 L:      linux-wireless@vger.kernel.org
15284 S:      Orphan
15285 W:      https://wireless.wiki.kernel.org/
15286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15287 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15288
15289 RTL8187 WIRELESS DRIVER
15290 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15291 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15292 M:      Larry Finger <Larry.Finger@lwfinger.net>
15293 L:      linux-wireless@vger.kernel.org
15294 S:      Maintained
15295 W:      https://wireless.wiki.kernel.org/
15296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15297 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15298
15299 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15300 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15301 L:      linux-wireless@vger.kernel.org
15302 S:      Maintained
15303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15304 F:      drivers/net/wireless/realtek/rtl8xxxu/
15305
15306 RTRS TRANSPORT DRIVERS
15307 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15308 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15309 L:      linux-rdma@vger.kernel.org
15310 S:      Maintained
15311 F:      drivers/infiniband/ulp/rtrs/
15312
15313 RXRPC SOCKETS (AF_RXRPC)
15314 M:      David Howells <dhowells@redhat.com>
15315 L:      linux-afs@lists.infradead.org
15316 S:      Supported
15317 W:      https://www.infradead.org/~dhowells/kafs/
15318 F:      Documentation/networking/rxrpc.rst
15319 F:      include/keys/rxrpc-type.h
15320 F:      include/net/af_rxrpc.h
15321 F:      include/trace/events/rxrpc.h
15322 F:      include/uapi/linux/rxrpc.h
15323 F:      net/rxrpc/
15324
15325 S3 SAVAGE FRAMEBUFFER DRIVER
15326 M:      Antonino Daplas <adaplas@gmail.com>
15327 L:      linux-fbdev@vger.kernel.org
15328 S:      Maintained
15329 F:      drivers/video/fbdev/savage/
15330
15331 S390
15332 M:      Heiko Carstens <hca@linux.ibm.com>
15333 M:      Vasily Gorbik <gor@linux.ibm.com>
15334 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15335 L:      linux-s390@vger.kernel.org
15336 S:      Supported
15337 W:      http://www.ibm.com/developerworks/linux/linux390/
15338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15339 F:      Documentation/driver-api/s390-drivers.rst
15340 F:      Documentation/s390/
15341 F:      arch/s390/
15342 F:      drivers/s390/
15343
15344 S390 COMMON I/O LAYER
15345 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15346 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15347 L:      linux-s390@vger.kernel.org
15348 S:      Supported
15349 W:      http://www.ibm.com/developerworks/linux/linux390/
15350 F:      drivers/s390/cio/
15351
15352 S390 DASD DRIVER
15353 M:      Stefan Haberland <sth@linux.ibm.com>
15354 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15355 L:      linux-s390@vger.kernel.org
15356 S:      Supported
15357 W:      http://www.ibm.com/developerworks/linux/linux390/
15358 F:      block/partitions/ibm.c
15359 F:      drivers/s390/block/dasd*
15360 F:      include/linux/dasd_mod.h
15361
15362 S390 IOMMU (PCI)
15363 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15364 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15365 L:      linux-s390@vger.kernel.org
15366 S:      Supported
15367 W:      http://www.ibm.com/developerworks/linux/linux390/
15368 F:      drivers/iommu/s390-iommu.c
15369
15370 S390 IUCV NETWORK LAYER
15371 M:      Julian Wiedmann <jwi@linux.ibm.com>
15372 M:      Karsten Graul <kgraul@linux.ibm.com>
15373 L:      linux-s390@vger.kernel.org
15374 S:      Supported
15375 W:      http://www.ibm.com/developerworks/linux/linux390/
15376 F:      drivers/s390/net/*iucv*
15377 F:      include/net/iucv/
15378 F:      net/iucv/
15379
15380 S390 NETWORK DRIVERS
15381 M:      Julian Wiedmann <jwi@linux.ibm.com>
15382 M:      Karsten Graul <kgraul@linux.ibm.com>
15383 L:      linux-s390@vger.kernel.org
15384 S:      Supported
15385 W:      http://www.ibm.com/developerworks/linux/linux390/
15386 F:      drivers/s390/net/
15387
15388 S390 PCI SUBSYSTEM
15389 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15390 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15391 L:      linux-s390@vger.kernel.org
15392 S:      Supported
15393 W:      http://www.ibm.com/developerworks/linux/linux390/
15394 F:      arch/s390/pci/
15395 F:      drivers/pci/hotplug/s390_pci_hpc.c
15396 F:      Documentation/s390/pci.rst
15397
15398 S390 VFIO AP DRIVER
15399 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15400 M:      Pierre Morel <pmorel@linux.ibm.com>
15401 M:      Halil Pasic <pasic@linux.ibm.com>
15402 L:      linux-s390@vger.kernel.org
15403 S:      Supported
15404 W:      http://www.ibm.com/developerworks/linux/linux390/
15405 F:      Documentation/s390/vfio-ap.rst
15406 F:      drivers/s390/crypto/vfio_ap_drv.c
15407 F:      drivers/s390/crypto/vfio_ap_ops.c
15408 F:      drivers/s390/crypto/vfio_ap_private.h
15409
15410 S390 VFIO-CCW DRIVER
15411 M:      Cornelia Huck <cohuck@redhat.com>
15412 M:      Eric Farman <farman@linux.ibm.com>
15413 R:      Halil Pasic <pasic@linux.ibm.com>
15414 L:      linux-s390@vger.kernel.org
15415 L:      kvm@vger.kernel.org
15416 S:      Supported
15417 F:      Documentation/s390/vfio-ccw.rst
15418 F:      drivers/s390/cio/vfio_ccw*
15419 F:      include/uapi/linux/vfio_ccw.h
15420
15421 S390 VFIO-PCI DRIVER
15422 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15423 L:      linux-s390@vger.kernel.org
15424 L:      kvm@vger.kernel.org
15425 S:      Supported
15426 F:      drivers/vfio/pci/vfio_pci_zdev.c
15427 F:      include/uapi/linux/vfio_zdev.h
15428
15429 S390 ZCRYPT DRIVER
15430 M:      Harald Freudenberger <freude@linux.ibm.com>
15431 L:      linux-s390@vger.kernel.org
15432 S:      Supported
15433 W:      http://www.ibm.com/developerworks/linux/linux390/
15434 F:      drivers/s390/crypto/
15435
15436 S390 ZFCP DRIVER
15437 M:      Steffen Maier <maier@linux.ibm.com>
15438 M:      Benjamin Block <bblock@linux.ibm.com>
15439 L:      linux-s390@vger.kernel.org
15440 S:      Supported
15441 W:      http://www.ibm.com/developerworks/linux/linux390/
15442 F:      drivers/s390/scsi/zfcp_*
15443
15444 S3C24XX SD/MMC Driver
15445 M:      Ben Dooks <ben-linux@fluff.org>
15446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15447 S:      Supported
15448 F:      drivers/mmc/host/s3cmci.*
15449
15450 SAA6588 RDS RECEIVER DRIVER
15451 M:      Hans Verkuil <hverkuil@xs4all.nl>
15452 L:      linux-media@vger.kernel.org
15453 S:      Odd Fixes
15454 W:      https://linuxtv.org
15455 T:      git git://linuxtv.org/media_tree.git
15456 F:      drivers/media/i2c/saa6588*
15457
15458 SAA7134 VIDEO4LINUX DRIVER
15459 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15460 L:      linux-media@vger.kernel.org
15461 S:      Odd fixes
15462 W:      https://linuxtv.org
15463 T:      git git://linuxtv.org/media_tree.git
15464 F:      Documentation/driver-api/media/drivers/saa7134*
15465 F:      drivers/media/pci/saa7134/
15466
15467 SAA7146 VIDEO4LINUX-2 DRIVER
15468 M:      Hans Verkuil <hverkuil@xs4all.nl>
15469 L:      linux-media@vger.kernel.org
15470 S:      Maintained
15471 T:      git git://linuxtv.org/media_tree.git
15472 F:      drivers/media/common/saa7146/
15473 F:      drivers/media/pci/saa7146/
15474 F:      include/media/drv-intf/saa7146*
15475
15476 SAFESETID SECURITY MODULE
15477 M:      Micah Morton <mortonm@chromium.org>
15478 S:      Supported
15479 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15480 F:      security/safesetid/
15481
15482 SAMSUNG AUDIO (ASoC) DRIVERS
15483 M:      Krzysztof Kozlowski <krzk@kernel.org>
15484 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15485 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15486 S:      Supported
15487 F:      Documentation/devicetree/bindings/sound/samsung*
15488 F:      sound/soc/samsung/
15489
15490 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15491 M:      Krzysztof Kozlowski <krzk@kernel.org>
15492 L:      linux-crypto@vger.kernel.org
15493 L:      linux-samsung-soc@vger.kernel.org
15494 S:      Maintained
15495 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15496 F:      drivers/crypto/exynos-rng.c
15497
15498 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15499 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15500 L:      linux-samsung-soc@vger.kernel.org
15501 S:      Maintained
15502 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15503 F:      drivers/char/hw_random/exynos-trng.c
15504
15505 SAMSUNG FRAMEBUFFER DRIVER
15506 M:      Jingoo Han <jingoohan1@gmail.com>
15507 L:      linux-fbdev@vger.kernel.org
15508 S:      Maintained
15509 F:      drivers/video/fbdev/s3c-fb.c
15510
15511 SAMSUNG LAPTOP DRIVER
15512 M:      Corentin Chary <corentin.chary@gmail.com>
15513 L:      platform-driver-x86@vger.kernel.org
15514 S:      Maintained
15515 F:      drivers/platform/x86/samsung-laptop.c
15516
15517 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15518 M:      Krzysztof Kozlowski <krzk@kernel.org>
15519 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15520 L:      linux-kernel@vger.kernel.org
15521 L:      linux-samsung-soc@vger.kernel.org
15522 S:      Supported
15523 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15524 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15525 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15526 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15527 F:      drivers/clk/clk-s2mps11.c
15528 F:      drivers/mfd/sec*.c
15529 F:      drivers/regulator/s2m*.c
15530 F:      drivers/regulator/s5m*.c
15531 F:      drivers/rtc/rtc-s5m.c
15532 F:      include/linux/mfd/samsung/
15533
15534 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15535 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15536 L:      linux-media@vger.kernel.org
15537 L:      linux-samsung-soc@vger.kernel.org
15538 S:      Maintained
15539 F:      drivers/media/platform/s3c-camif/
15540 F:      include/media/drv-intf/s3c_camif.h
15541
15542 SAMSUNG S3FWRN5 NFC DRIVER
15543 M:      Krzysztof Kozlowski <krzk@kernel.org>
15544 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15545 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15546 S:      Maintained
15547 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15548 F:      drivers/nfc/s3fwrn5
15549
15550 SAMSUNG S5C73M3 CAMERA DRIVER
15551 M:      Andrzej Hajda <a.hajda@samsung.com>
15552 L:      linux-media@vger.kernel.org
15553 S:      Supported
15554 F:      drivers/media/i2c/s5c73m3/*
15555
15556 SAMSUNG S5K5BAF CAMERA DRIVER
15557 M:      Andrzej Hajda <a.hajda@samsung.com>
15558 L:      linux-media@vger.kernel.org
15559 S:      Supported
15560 F:      drivers/media/i2c/s5k5baf.c
15561
15562 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15563 M:      Krzysztof Kozlowski <krzk@kernel.org>
15564 M:      Vladimir Zapolskiy <vz@mleia.com>
15565 M:      Kamil Konieczny <k.konieczny@samsung.com>
15566 L:      linux-crypto@vger.kernel.org
15567 L:      linux-samsung-soc@vger.kernel.org
15568 S:      Maintained
15569 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15570 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15571 F:      drivers/crypto/s5p-sss.c
15572
15573 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15574 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15575 L:      linux-media@vger.kernel.org
15576 S:      Supported
15577 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15578 F:      drivers/media/platform/exynos4-is/
15579
15580 SAMSUNG SOC CLOCK DRIVERS
15581 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15582 M:      Tomasz Figa <tomasz.figa@gmail.com>
15583 M:      Chanwoo Choi <cw00.choi@samsung.com>
15584 L:      linux-samsung-soc@vger.kernel.org
15585 S:      Supported
15586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15587 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15588 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15589 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15590 F:      drivers/clk/samsung/
15591 F:      include/dt-bindings/clock/exynos*.h
15592 F:      include/linux/clk/samsung.h
15593 F:      include/linux/platform_data/clk-s3c2410.h
15594
15595 SAMSUNG SPI DRIVERS
15596 M:      Krzysztof Kozlowski <krzk@kernel.org>
15597 M:      Andi Shyti <andi@etezian.org>
15598 L:      linux-spi@vger.kernel.org
15599 L:      linux-samsung-soc@vger.kernel.org
15600 S:      Maintained
15601 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15602 F:      drivers/spi/spi-s3c*
15603 F:      include/linux/platform_data/spi-s3c64xx.h
15604 F:      include/linux/spi/s3c24xx-fiq.h
15605
15606 SAMSUNG SXGBE DRIVERS
15607 M:      Byungho An <bh74.an@samsung.com>
15608 L:      netdev@vger.kernel.org
15609 S:      Supported
15610 F:      drivers/net/ethernet/samsung/sxgbe/
15611
15612 SAMSUNG THERMAL DRIVER
15613 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15614 L:      linux-pm@vger.kernel.org
15615 L:      linux-samsung-soc@vger.kernel.org
15616 S:      Supported
15617 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15618 F:      drivers/thermal/samsung/
15619
15620 SAMSUNG USB2 PHY DRIVER
15621 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15622 L:      linux-kernel@vger.kernel.org
15623 S:      Supported
15624 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15625 F:      Documentation/driver-api/phy/samsung-usb2.rst
15626 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15627 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15628 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15629 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15630 F:      drivers/phy/samsung/phy-samsung-usb2.c
15631 F:      drivers/phy/samsung/phy-samsung-usb2.h
15632
15633 SC1200 WDT DRIVER
15634 M:      Zwane Mwaikambo <zwanem@gmail.com>
15635 S:      Maintained
15636 F:      drivers/watchdog/sc1200wdt.c
15637
15638 SCHEDULER
15639 M:      Ingo Molnar <mingo@redhat.com>
15640 M:      Peter Zijlstra <peterz@infradead.org>
15641 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15642 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15643 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15644 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15645 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15646 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15647 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15648 L:      linux-kernel@vger.kernel.org
15649 S:      Maintained
15650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15651 F:      include/linux/preempt.h
15652 F:      include/linux/sched.h
15653 F:      include/linux/wait.h
15654 F:      include/uapi/linux/sched.h
15655 F:      kernel/sched/
15656
15657 SCR24X CHIP CARD INTERFACE DRIVER
15658 M:      Lubomir Rintel <lkundrak@v3.sk>
15659 S:      Supported
15660 F:      drivers/char/pcmcia/scr24x_cs.c
15661
15662 SCSI CDROM DRIVER
15663 M:      Jens Axboe <axboe@kernel.dk>
15664 L:      linux-scsi@vger.kernel.org
15665 S:      Maintained
15666 W:      http://www.kernel.dk
15667 F:      drivers/scsi/sr*
15668
15669 SCSI RDMA PROTOCOL (SRP) INITIATOR
15670 M:      Bart Van Assche <bvanassche@acm.org>
15671 L:      linux-rdma@vger.kernel.org
15672 S:      Supported
15673 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15674 F:      drivers/infiniband/ulp/srp/
15675 F:      include/scsi/srp.h
15676
15677 SCSI RDMA PROTOCOL (SRP) TARGET
15678 M:      Bart Van Assche <bvanassche@acm.org>
15679 L:      linux-rdma@vger.kernel.org
15680 L:      target-devel@vger.kernel.org
15681 S:      Supported
15682 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15683 F:      drivers/infiniband/ulp/srpt/
15684
15685 SCSI SG DRIVER
15686 M:      Doug Gilbert <dgilbert@interlog.com>
15687 L:      linux-scsi@vger.kernel.org
15688 S:      Maintained
15689 W:      http://sg.danny.cz/sg
15690 F:      Documentation/scsi/scsi-generic.rst
15691 F:      drivers/scsi/sg.c
15692 F:      include/scsi/sg.h
15693
15694 SCSI SUBSYSTEM
15695 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15696 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15697 L:      linux-scsi@vger.kernel.org
15698 S:      Maintained
15699 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15702 F:      Documentation/devicetree/bindings/scsi/
15703 F:      drivers/scsi/
15704 F:      include/scsi/
15705
15706 SCSI TAPE DRIVER
15707 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15708 L:      linux-scsi@vger.kernel.org
15709 S:      Maintained
15710 F:      Documentation/scsi/st.rst
15711 F:      drivers/scsi/st.*
15712 F:      drivers/scsi/st_*.h
15713
15714 SCSI TARGET SUBSYSTEM
15715 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15716 L:      linux-scsi@vger.kernel.org
15717 L:      target-devel@vger.kernel.org
15718 S:      Supported
15719 W:      http://www.linux-iscsi.org
15720 Q:      https://patchwork.kernel.org/project/target-devel/list/
15721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15722 F:      Documentation/target/
15723 F:      drivers/target/
15724 F:      include/target/
15725
15726 SCTP PROTOCOL
15727 M:      Vlad Yasevich <vyasevich@gmail.com>
15728 M:      Neil Horman <nhorman@tuxdriver.com>
15729 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15730 L:      linux-sctp@vger.kernel.org
15731 S:      Maintained
15732 W:      http://lksctp.sourceforge.net
15733 F:      Documentation/networking/sctp.rst
15734 F:      include/linux/sctp.h
15735 F:      include/net/sctp/
15736 F:      include/uapi/linux/sctp.h
15737 F:      net/sctp/
15738
15739 SCx200 CPU SUPPORT
15740 M:      Jim Cromie <jim.cromie@gmail.com>
15741 S:      Odd Fixes
15742 F:      Documentation/i2c/busses/scx200_acb.rst
15743 F:      arch/x86/platform/scx200/
15744 F:      drivers/i2c/busses/scx200*
15745 F:      drivers/mtd/maps/scx200_docflash.c
15746 F:      drivers/watchdog/scx200_wdt.c
15747 F:      include/linux/scx200.h
15748
15749 SCx200 GPIO DRIVER
15750 M:      Jim Cromie <jim.cromie@gmail.com>
15751 S:      Maintained
15752 F:      drivers/char/scx200_gpio.c
15753 F:      include/linux/scx200_gpio.h
15754
15755 SCx200 HRT CLOCKSOURCE DRIVER
15756 M:      Jim Cromie <jim.cromie@gmail.com>
15757 S:      Maintained
15758 F:      drivers/clocksource/scx200_hrt.c
15759
15760 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15761 M:      Sascha Sommer <saschasommer@freenet.de>
15762 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15763 S:      Maintained
15764 F:      drivers/mmc/host/sdricoh_cs.c
15765
15766 SECO BOARDS CEC DRIVER
15767 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15768 S:      Maintained
15769 F:      drivers/media/cec/platform/seco/seco-cec.c
15770 F:      drivers/media/cec/platform/seco/seco-cec.h
15771
15772 SECURE COMPUTING
15773 M:      Kees Cook <keescook@chromium.org>
15774 R:      Andy Lutomirski <luto@amacapital.net>
15775 R:      Will Drewry <wad@chromium.org>
15776 S:      Supported
15777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15778 F:      Documentation/userspace-api/seccomp_filter.rst
15779 F:      include/linux/seccomp.h
15780 F:      include/uapi/linux/seccomp.h
15781 F:      kernel/seccomp.c
15782 F:      tools/testing/selftests/kselftest_harness.h
15783 F:      tools/testing/selftests/seccomp/*
15784 K:      \bsecure_computing
15785 K:      \bTIF_SECCOMP\b
15786
15787 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15788 M:      Al Cooper <alcooperx@gmail.com>
15789 L:      linux-mmc@vger.kernel.org
15790 L:      bcm-kernel-feedback-list@broadcom.com
15791 S:      Maintained
15792 F:      drivers/mmc/host/sdhci-brcmstb*
15793
15794 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15795 M:      Adrian Hunter <adrian.hunter@intel.com>
15796 L:      linux-mmc@vger.kernel.org
15797 S:      Maintained
15798 F:      drivers/mmc/host/sdhci*
15799 F:      include/linux/mmc/sdhci*
15800
15801 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15802 M:      Eugen Hristev <eugen.hristev@microchip.com>
15803 L:      linux-mmc@vger.kernel.org
15804 S:      Supported
15805 F:      drivers/mmc/host/sdhci-of-at91.c
15806
15807 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15808 M:      Ben Dooks <ben-linux@fluff.org>
15809 M:      Jaehoon Chung <jh80.chung@samsung.com>
15810 L:      linux-mmc@vger.kernel.org
15811 S:      Maintained
15812 F:      drivers/mmc/host/sdhci-s3c*
15813
15814 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15815 M:      Viresh Kumar <vireshk@kernel.org>
15816 L:      linux-mmc@vger.kernel.org
15817 S:      Maintained
15818 F:      drivers/mmc/host/sdhci-spear.c
15819
15820 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15821 M:      Kishon Vijay Abraham I <kishon@ti.com>
15822 L:      linux-mmc@vger.kernel.org
15823 S:      Maintained
15824 F:      drivers/mmc/host/sdhci-omap.c
15825
15826 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15827 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15828 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15829 L:      linux-block@vger.kernel.org
15830 S:      Supported
15831 F:      block/opal_proto.h
15832 F:      block/sed*
15833 F:      include/linux/sed*
15834 F:      include/uapi/linux/sed*
15835
15836 SECURITY CONTACT
15837 M:      Security Officers <security@kernel.org>
15838 S:      Supported
15839 F:      Documentation/admin-guide/security-bugs.rst
15840
15841 SECURITY SUBSYSTEM
15842 M:      James Morris <jmorris@namei.org>
15843 M:      "Serge E. Hallyn" <serge@hallyn.com>
15844 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15845 S:      Supported
15846 W:      http://kernsec.org/
15847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15848 F:      security/
15849 X:      security/selinux/
15850
15851 SELINUX SECURITY MODULE
15852 M:      Paul Moore <paul@paul-moore.com>
15853 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15854 M:      Eric Paris <eparis@parisplace.org>
15855 L:      selinux@vger.kernel.org
15856 S:      Supported
15857 W:      https://selinuxproject.org
15858 W:      https://github.com/SELinuxProject
15859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15860 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15861 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15862 F:      Documentation/admin-guide/LSM/SELinux.rst
15863 F:      include/trace/events/avc.h
15864 F:      include/uapi/linux/selinux_netlink.h
15865 F:      scripts/selinux/
15866 F:      security/selinux/
15867
15868 SENSABLE PHANTOM
15869 M:      Jiri Slaby <jirislaby@kernel.org>
15870 S:      Maintained
15871 F:      drivers/misc/phantom.c
15872 F:      include/uapi/linux/phantom.h
15873
15874 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15875 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
15876 S:      Maintained
15877 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15878 F:      drivers/iio/chemical/scd30.h
15879 F:      drivers/iio/chemical/scd30_core.c
15880 F:      drivers/iio/chemical/scd30_i2c.c
15881 F:      drivers/iio/chemical/scd30_serial.c
15882
15883 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15884 M:      Tomasz Duszynski <tduszyns@gmail.com>
15885 S:      Maintained
15886 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15887 F:      drivers/iio/chemical/sps30.c
15888
15889 SERIAL DEVICE BUS
15890 M:      Rob Herring <robh@kernel.org>
15891 L:      linux-serial@vger.kernel.org
15892 S:      Maintained
15893 F:      Documentation/devicetree/bindings/serial/serial.yaml
15894 F:      drivers/tty/serdev/
15895 F:      include/linux/serdev.h
15896
15897 SERIAL DRIVERS
15898 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15899 L:      linux-serial@vger.kernel.org
15900 S:      Maintained
15901 F:      Documentation/devicetree/bindings/serial/
15902 F:      drivers/tty/serial/
15903
15904 SERIAL IR RECEIVER
15905 M:      Sean Young <sean@mess.org>
15906 L:      linux-media@vger.kernel.org
15907 S:      Maintained
15908 F:      drivers/media/rc/serial_ir.c
15909
15910 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15911 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15912 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15913 S:      Maintained
15914 F:      Documentation/devicetree/bindings/slimbus/
15915 F:      drivers/slimbus/
15916 F:      include/linux/slimbus.h
15917
15918 SFC NETWORK DRIVER
15919 M:      Edward Cree <ecree.xilinx@gmail.com>
15920 M:      Martin Habets <habetsm.xilinx@gmail.com>
15921 L:      netdev@vger.kernel.org
15922 S:      Supported
15923 F:      drivers/net/ethernet/sfc/
15924
15925 SFF/SFP/SFP+ MODULE SUPPORT
15926 M:      Russell King <linux@armlinux.org.uk>
15927 L:      netdev@vger.kernel.org
15928 S:      Maintained
15929 F:      drivers/net/phy/phylink.c
15930 F:      drivers/net/phy/sfp*
15931 F:      include/linux/mdio/mdio-i2c.h
15932 F:      include/linux/phylink.h
15933 F:      include/linux/sfp.h
15934 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)
15935
15936 SGI GRU DRIVER
15937 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
15938 S:      Maintained
15939 F:      drivers/misc/sgi-gru/
15940
15941 SGI XP/XPC/XPNET DRIVER
15942 M:      Robin Holt <robinmholt@gmail.com>
15943 M:      Steve Wahl <steve.wahl@hpe.com>
15944 R:      Mike Travis <mike.travis@hpe.com>
15945 S:      Maintained
15946 F:      drivers/misc/sgi-xp/
15947
15948 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15949 M:      Karsten Graul <kgraul@linux.ibm.com>
15950 L:      linux-s390@vger.kernel.org
15951 S:      Supported
15952 W:      http://www.ibm.com/developerworks/linux/linux390/
15953 F:      net/smc/
15954
15955 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15956 M:      Linus Walleij <linus.walleij@linaro.org>
15957 L:      linux-iio@vger.kernel.org
15958 S:      Maintained
15959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15960 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15961 F:      drivers/iio/light/gp2ap002.c
15962
15963 SHARP RJ54N1CB0C SENSOR DRIVER
15964 M:      Jacopo Mondi <jacopo@jmondi.org>
15965 L:      linux-media@vger.kernel.org
15966 S:      Odd fixes
15967 T:      git git://linuxtv.org/media_tree.git
15968 F:      drivers/media/i2c/rj54n1cb0c.c
15969 F:      include/media/i2c/rj54n1cb0c.h
15970
15971 SH_VOU V4L2 OUTPUT DRIVER
15972 L:      linux-media@vger.kernel.org
15973 S:      Orphan
15974 F:      drivers/media/platform/sh_vou.c
15975 F:      include/media/drv-intf/sh_vou.h
15976
15977 SI2157 MEDIA DRIVER
15978 M:      Antti Palosaari <crope@iki.fi>
15979 L:      linux-media@vger.kernel.org
15980 S:      Maintained
15981 W:      https://linuxtv.org
15982 W:      http://palosaari.fi/linux/
15983 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15984 T:      git git://linuxtv.org/anttip/media_tree.git
15985 F:      drivers/media/tuners/si2157*
15986
15987 SI2165 MEDIA DRIVER
15988 M:      Matthias Schwarzott <zzam@gentoo.org>
15989 L:      linux-media@vger.kernel.org
15990 S:      Maintained
15991 W:      https://linuxtv.org
15992 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15993 F:      drivers/media/dvb-frontends/si2165*
15994
15995 SI2168 MEDIA DRIVER
15996 M:      Antti Palosaari <crope@iki.fi>
15997 L:      linux-media@vger.kernel.org
15998 S:      Maintained
15999 W:      https://linuxtv.org
16000 W:      http://palosaari.fi/linux/
16001 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16002 T:      git git://linuxtv.org/anttip/media_tree.git
16003 F:      drivers/media/dvb-frontends/si2168*
16004
16005 SI470X FM RADIO RECEIVER I2C DRIVER
16006 M:      Hans Verkuil <hverkuil@xs4all.nl>
16007 L:      linux-media@vger.kernel.org
16008 S:      Odd Fixes
16009 W:      https://linuxtv.org
16010 T:      git git://linuxtv.org/media_tree.git
16011 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16012
16013 SI470X FM RADIO RECEIVER USB DRIVER
16014 M:      Hans Verkuil <hverkuil@xs4all.nl>
16015 L:      linux-media@vger.kernel.org
16016 S:      Maintained
16017 W:      https://linuxtv.org
16018 T:      git git://linuxtv.org/media_tree.git
16019 F:      drivers/media/radio/si470x/radio-si470x-common.c
16020 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16021 F:      drivers/media/radio/si470x/radio-si470x.h
16022
16023 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16024 M:      Eduardo Valentin <edubezval@gmail.com>
16025 L:      linux-media@vger.kernel.org
16026 S:      Odd Fixes
16027 W:      https://linuxtv.org
16028 T:      git git://linuxtv.org/media_tree.git
16029 F:      drivers/media/radio/si4713/si4713.?
16030
16031 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16032 M:      Eduardo Valentin <edubezval@gmail.com>
16033 L:      linux-media@vger.kernel.org
16034 S:      Odd Fixes
16035 W:      https://linuxtv.org
16036 T:      git git://linuxtv.org/media_tree.git
16037 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16038
16039 SI4713 FM RADIO TRANSMITTER USB DRIVER
16040 M:      Hans Verkuil <hverkuil@xs4all.nl>
16041 L:      linux-media@vger.kernel.org
16042 S:      Maintained
16043 W:      https://linuxtv.org
16044 T:      git git://linuxtv.org/media_tree.git
16045 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16046
16047 SIANO DVB DRIVER
16048 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16049 L:      linux-media@vger.kernel.org
16050 S:      Odd fixes
16051 W:      https://linuxtv.org
16052 T:      git git://linuxtv.org/media_tree.git
16053 F:      drivers/media/common/siano/
16054 F:      drivers/media/mmc/siano/
16055 F:      drivers/media/usb/siano/
16056 F:      drivers/media/usb/siano/
16057
16058 SIFIVE DRIVERS
16059 M:      Palmer Dabbelt <palmer@dabbelt.com>
16060 M:      Paul Walmsley <paul.walmsley@sifive.com>
16061 L:      linux-riscv@lists.infradead.org
16062 S:      Supported
16063 T:      git git://github.com/sifive/riscv-linux.git
16064 N:      sifive
16065 K:      [^@]sifive
16066
16067 SIFIVE FU540 SYSTEM-ON-CHIP
16068 M:      Paul Walmsley <paul.walmsley@sifive.com>
16069 M:      Palmer Dabbelt <palmer@dabbelt.com>
16070 L:      linux-riscv@lists.infradead.org
16071 S:      Supported
16072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16073 N:      fu540
16074 K:      fu540
16075
16076 SIFIVE PDMA DRIVER
16077 M:      Green Wan <green.wan@sifive.com>
16078 S:      Maintained
16079 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16080 F:      drivers/dma/sf-pdma/
16081
16082 SILEAD TOUCHSCREEN DRIVER
16083 M:      Hans de Goede <hdegoede@redhat.com>
16084 L:      linux-input@vger.kernel.org
16085 L:      platform-driver-x86@vger.kernel.org
16086 S:      Maintained
16087 F:      drivers/input/touchscreen/silead.c
16088 F:      drivers/platform/x86/touchscreen_dmi.c
16089
16090 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16091 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16092 S:      Supported
16093 F:      drivers/staging/wfx/
16094
16095 SILICON MOTION SM712 FRAME BUFFER DRIVER
16096 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16097 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16098 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16099 L:      linux-fbdev@vger.kernel.org
16100 S:      Maintained
16101 F:      Documentation/fb/sm712fb.rst
16102 F:      drivers/video/fbdev/sm712*
16103
16104 SIMPLE FIRMWARE INTERFACE (SFI)
16105 S:      Obsolete
16106 W:      http://simplefirmware.org/
16107 F:      arch/x86/platform/sfi/
16108 F:      drivers/sfi/
16109 F:      include/linux/sfi*.h
16110
16111 SIMPLEFB FB DRIVER
16112 M:      Hans de Goede <hdegoede@redhat.com>
16113 L:      linux-fbdev@vger.kernel.org
16114 S:      Maintained
16115 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16116 F:      drivers/video/fbdev/simplefb.c
16117 F:      include/linux/platform_data/simplefb.h
16118
16119 SIMTEC EB110ATX (Chalice CATS)
16120 M:      Simtec Linux Team <linux@simtec.co.uk>
16121 S:      Supported
16122 W:      http://www.simtec.co.uk/products/EB110ATX/
16123
16124 SIMTEC EB2410ITX (BAST)
16125 M:      Simtec Linux Team <linux@simtec.co.uk>
16126 S:      Supported
16127 W:      http://www.simtec.co.uk/products/EB2410ITX/
16128 F:      arch/arm/mach-s3c/bast-ide.c
16129 F:      arch/arm/mach-s3c/bast-irq.c
16130 F:      arch/arm/mach-s3c/mach-bast.c
16131
16132 SIOX
16133 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16134 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16135 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16136 S:      Supported
16137 F:      drivers/gpio/gpio-siox.c
16138 F:      drivers/siox/*
16139 F:      include/trace/events/siox.h
16140
16141 SIPHASH PRF ROUTINES
16142 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16143 S:      Maintained
16144 F:      include/linux/siphash.h
16145 F:      lib/siphash.c
16146 F:      lib/test_siphash.c
16147
16148 SIS 190 ETHERNET DRIVER
16149 M:      Francois Romieu <romieu@fr.zoreil.com>
16150 L:      netdev@vger.kernel.org
16151 S:      Maintained
16152 F:      drivers/net/ethernet/sis/sis190.c
16153
16154 SIS 900/7016 FAST ETHERNET DRIVER
16155 M:      Daniele Venzano <venza@brownhat.org>
16156 L:      netdev@vger.kernel.org
16157 S:      Maintained
16158 W:      http://www.brownhat.org/sis900.html
16159 F:      drivers/net/ethernet/sis/sis900.*
16160
16161 SIS FRAMEBUFFER DRIVER
16162 M:      Thomas Winischhofer <thomas@winischhofer.net>
16163 S:      Maintained
16164 W:      http://www.winischhofer.net/linuxsisvga.shtml
16165 F:      Documentation/fb/sisfb.rst
16166 F:      drivers/video/fbdev/sis/
16167 F:      include/video/sisfb.h
16168
16169 SIS I2C TOUCHSCREEN DRIVER
16170 M:      Mika Penttilä <mika.penttila@nextfour.com>
16171 L:      linux-input@vger.kernel.org
16172 S:      Maintained
16173 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16174 F:      drivers/input/touchscreen/sis_i2c.c
16175
16176 SIS USB2VGA DRIVER
16177 M:      Thomas Winischhofer <thomas@winischhofer.net>
16178 S:      Maintained
16179 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16180 F:      drivers/usb/misc/sisusbvga/
16181
16182 SLAB ALLOCATOR
16183 M:      Christoph Lameter <cl@linux.com>
16184 M:      Pekka Enberg <penberg@kernel.org>
16185 M:      David Rientjes <rientjes@google.com>
16186 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16187 M:      Andrew Morton <akpm@linux-foundation.org>
16188 L:      linux-mm@kvack.org
16189 S:      Maintained
16190 F:      include/linux/sl?b*.h
16191 F:      mm/sl?b*
16192
16193 SLEEPABLE READ-COPY UPDATE (SRCU)
16194 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16195 M:      "Paul E. McKenney" <paulmck@kernel.org>
16196 M:      Josh Triplett <josh@joshtriplett.org>
16197 R:      Steven Rostedt <rostedt@goodmis.org>
16198 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16199 L:      rcu@vger.kernel.org
16200 S:      Supported
16201 W:      http://www.rdrop.com/users/paulmck/RCU/
16202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16203 F:      include/linux/srcu*.h
16204 F:      kernel/rcu/srcu*.c
16205
16206 SMACK SECURITY MODULE
16207 M:      Casey Schaufler <casey@schaufler-ca.com>
16208 L:      linux-security-module@vger.kernel.org
16209 S:      Maintained
16210 W:      http://schaufler-ca.com
16211 T:      git git://github.com/cschaufler/smack-next
16212 F:      Documentation/admin-guide/LSM/Smack.rst
16213 F:      security/smack/
16214
16215 SMC91x ETHERNET DRIVER
16216 M:      Nicolas Pitre <nico@fluxnic.net>
16217 S:      Odd Fixes
16218 F:      drivers/net/ethernet/smsc/smc91x.*
16219
16220 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16221 M:      Mark Rutland <mark.rutland@arm.com>
16222 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16223 M:      Sudeep Holla <sudeep.holla@arm.com>
16224 L:      linux-arm-kernel@lists.infradead.org
16225 S:      Maintained
16226 F:      drivers/firmware/smccc/
16227 F:      include/linux/arm-smccc.h
16228
16229 SMM665 HARDWARE MONITOR DRIVER
16230 M:      Guenter Roeck <linux@roeck-us.net>
16231 L:      linux-hwmon@vger.kernel.org
16232 S:      Maintained
16233 F:      Documentation/hwmon/smm665.rst
16234 F:      drivers/hwmon/smm665.c
16235
16236 SMSC EMC2103 HARDWARE MONITOR DRIVER
16237 M:      Steve Glendinning <steve.glendinning@shawell.net>
16238 L:      linux-hwmon@vger.kernel.org
16239 S:      Maintained
16240 F:      Documentation/hwmon/emc2103.rst
16241 F:      drivers/hwmon/emc2103.c
16242
16243 SMSC SCH5627 HARDWARE MONITOR DRIVER
16244 M:      Hans de Goede <hdegoede@redhat.com>
16245 L:      linux-hwmon@vger.kernel.org
16246 S:      Supported
16247 F:      Documentation/hwmon/sch5627.rst
16248 F:      drivers/hwmon/sch5627.c
16249
16250 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16251 M:      Steve Glendinning <steve.glendinning@shawell.net>
16252 L:      linux-fbdev@vger.kernel.org
16253 S:      Maintained
16254 F:      drivers/video/fbdev/smscufx.c
16255
16256 SMSC47B397 HARDWARE MONITOR DRIVER
16257 M:      Jean Delvare <jdelvare@suse.com>
16258 L:      linux-hwmon@vger.kernel.org
16259 S:      Maintained
16260 F:      Documentation/hwmon/smsc47b397.rst
16261 F:      drivers/hwmon/smsc47b397.c
16262
16263 SMSC911x ETHERNET DRIVER
16264 M:      Steve Glendinning <steve.glendinning@shawell.net>
16265 L:      netdev@vger.kernel.org
16266 S:      Maintained
16267 F:      drivers/net/ethernet/smsc/smsc911x.*
16268 F:      include/linux/smsc911x.h
16269
16270 SMSC9420 PCI ETHERNET DRIVER
16271 M:      Steve Glendinning <steve.glendinning@shawell.net>
16272 L:      netdev@vger.kernel.org
16273 S:      Maintained
16274 F:      drivers/net/ethernet/smsc/smsc9420.*
16275
16276 SOCIONEXT (SNI) AVE NETWORK DRIVER
16277 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16278 L:      netdev@vger.kernel.org
16279 S:      Maintained
16280 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16281 F:      drivers/net/ethernet/socionext/sni_ave.c
16282
16283 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16284 M:      Jassi Brar <jaswinder.singh@linaro.org>
16285 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16286 L:      netdev@vger.kernel.org
16287 S:      Maintained
16288 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16289 F:      drivers/net/ethernet/socionext/netsec.c
16290
16291 SOCIONEXT (SNI) Synquacer SPI DRIVER
16292 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16293 M:      Jassi Brar <jaswinder.singh@linaro.org>
16294 L:      linux-spi@vger.kernel.org
16295 S:      Maintained
16296 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16297 F:      drivers/spi/spi-synquacer.c
16298
16299 SOCIONEXT SYNQUACER I2C DRIVER
16300 M:      Ard Biesheuvel <ardb@kernel.org>
16301 L:      linux-i2c@vger.kernel.org
16302 S:      Maintained
16303 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16304 F:      drivers/i2c/busses/i2c-synquacer.c
16305
16306 SOCIONEXT UNIPHIER SOUND DRIVER
16307 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16308 S:      Orphan
16309 F:      sound/soc/uniphier/
16310
16311 SOEKRIS NET48XX LED SUPPORT
16312 M:      Chris Boot <bootc@bootc.net>
16313 S:      Maintained
16314 F:      drivers/leds/leds-net48xx.c
16315
16316 SOFT-IWARP DRIVER (siw)
16317 M:      Bernard Metzler <bmt@zurich.ibm.com>
16318 L:      linux-rdma@vger.kernel.org
16319 S:      Supported
16320 F:      drivers/infiniband/sw/siw/
16321 F:      include/uapi/rdma/siw-abi.h
16322
16323 SOFT-ROCE DRIVER (rxe)
16324 M:      Zhu Yanjun <yanjunz@nvidia.com>
16325 L:      linux-rdma@vger.kernel.org
16326 S:      Supported
16327 F:      drivers/infiniband/sw/rxe/
16328 F:      include/uapi/rdma/rdma_user_rxe.h
16329
16330 SOFTLOGIC 6x10 MPEG CODEC
16331 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16332 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16333 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16334 M:      Ismael Luceno <ismael@iodev.co.uk>
16335 L:      linux-media@vger.kernel.org
16336 S:      Supported
16337 F:      drivers/media/pci/solo6x10/
16338
16339 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16340 M:      James Morse <james.morse@arm.com>
16341 L:      linux-arm-kernel@lists.infradead.org
16342 S:      Maintained
16343 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16344 F:      drivers/firmware/arm_sdei.c
16345 F:      include/linux/arm_sdei.h
16346 F:      include/uapi/linux/arm_sdei.h
16347
16348 SOFTWARE RAID (Multiple Disks) SUPPORT
16349 M:      Song Liu <song@kernel.org>
16350 L:      linux-raid@vger.kernel.org
16351 S:      Supported
16352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16353 F:      drivers/md/Kconfig
16354 F:      drivers/md/Makefile
16355 F:      drivers/md/md*
16356 F:      drivers/md/raid*
16357 F:      include/linux/raid/
16358 F:      include/uapi/linux/raid/
16359
16360 SOLIDRUN CLEARFOG SUPPORT
16361 M:      Russell King <linux@armlinux.org.uk>
16362 S:      Maintained
16363 F:      arch/arm/boot/dts/armada-388-clearfog*
16364 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16365
16366 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16367 M:      Russell King <linux@armlinux.org.uk>
16368 S:      Maintained
16369 F:      arch/arm/boot/dts/imx6*-cubox-i*
16370 F:      arch/arm/boot/dts/imx6*-hummingboard*
16371 F:      arch/arm/boot/dts/imx6*-sr-*
16372
16373 SONIC NETWORK DRIVER
16374 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16375 L:      netdev@vger.kernel.org
16376 S:      Maintained
16377 F:      drivers/net/ethernet/natsemi/sonic.*
16378
16379 SONICS SILICON BACKPLANE DRIVER (SSB)
16380 M:      Michael Buesch <m@bues.ch>
16381 L:      linux-wireless@vger.kernel.org
16382 S:      Maintained
16383 F:      drivers/ssb/
16384 F:      include/linux/ssb/
16385
16386 SONY IMX214 SENSOR DRIVER
16387 M:      Ricardo Ribalda <ribalda@kernel.org>
16388 L:      linux-media@vger.kernel.org
16389 S:      Maintained
16390 T:      git git://linuxtv.org/media_tree.git
16391 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16392 F:      drivers/media/i2c/imx214.c
16393
16394 SONY IMX219 SENSOR DRIVER
16395 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16396 L:      linux-media@vger.kernel.org
16397 S:      Maintained
16398 T:      git git://linuxtv.org/media_tree.git
16399 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16400 F:      drivers/media/i2c/imx219.c
16401
16402 SONY IMX258 SENSOR DRIVER
16403 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16404 L:      linux-media@vger.kernel.org
16405 S:      Maintained
16406 T:      git git://linuxtv.org/media_tree.git
16407 F:      drivers/media/i2c/imx258.c
16408
16409 SONY IMX274 SENSOR DRIVER
16410 M:      Leon Luo <leonl@leopardimaging.com>
16411 L:      linux-media@vger.kernel.org
16412 S:      Maintained
16413 T:      git git://linuxtv.org/media_tree.git
16414 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16415 F:      drivers/media/i2c/imx274.c
16416
16417 SONY IMX290 SENSOR DRIVER
16418 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16419 L:      linux-media@vger.kernel.org
16420 S:      Maintained
16421 T:      git git://linuxtv.org/media_tree.git
16422 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16423 F:      drivers/media/i2c/imx290.c
16424
16425 SONY IMX319 SENSOR DRIVER
16426 M:      Bingbu Cao <bingbu.cao@intel.com>
16427 L:      linux-media@vger.kernel.org
16428 S:      Maintained
16429 T:      git git://linuxtv.org/media_tree.git
16430 F:      drivers/media/i2c/imx319.c
16431
16432 SONY IMX355 SENSOR DRIVER
16433 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16434 L:      linux-media@vger.kernel.org
16435 S:      Maintained
16436 T:      git git://linuxtv.org/media_tree.git
16437 F:      drivers/media/i2c/imx355.c
16438
16439 SONY MEMORYSTICK SUBSYSTEM
16440 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16441 M:      Alex Dubov <oakad@yahoo.com>
16442 M:      Ulf Hansson <ulf.hansson@linaro.org>
16443 L:      linux-mmc@vger.kernel.org
16444 S:      Maintained
16445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16446 F:      drivers/memstick/
16447 F:      include/linux/memstick.h
16448
16449 SONY VAIO CONTROL DEVICE DRIVER
16450 M:      Mattia Dongili <malattia@linux.it>
16451 L:      platform-driver-x86@vger.kernel.org
16452 S:      Maintained
16453 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16454 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16455 F:      drivers/char/sonypi.c
16456 F:      drivers/platform/x86/sony-laptop.c
16457 F:      include/linux/sony-laptop.h
16458
16459 SOUND
16460 M:      Jaroslav Kysela <perex@perex.cz>
16461 M:      Takashi Iwai <tiwai@suse.com>
16462 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16463 S:      Maintained
16464 W:      http://www.alsa-project.org/
16465 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16467 F:      Documentation/sound/
16468 F:      include/sound/
16469 F:      include/uapi/sound/
16470 F:      sound/
16471
16472 SOUND - COMPRESSED AUDIO
16473 M:      Vinod Koul <vkoul@kernel.org>
16474 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16475 S:      Supported
16476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16477 F:      Documentation/sound/designs/compress-offload.rst
16478 F:      include/sound/compress_driver.h
16479 F:      include/uapi/sound/compress_*
16480 F:      sound/core/compress_offload.c
16481 F:      sound/soc/soc-compress.c
16482
16483 SOUND - DMAENGINE HELPERS
16484 M:      Lars-Peter Clausen <lars@metafoo.de>
16485 S:      Supported
16486 F:      include/sound/dmaengine_pcm.h
16487 F:      sound/core/pcm_dmaengine.c
16488 F:      sound/soc/soc-generic-dmaengine-pcm.c
16489
16490 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16491 M:      Liam Girdwood <lgirdwood@gmail.com>
16492 M:      Mark Brown <broonie@kernel.org>
16493 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16494 S:      Supported
16495 W:      http://alsa-project.org/main/index.php/ASoC
16496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16497 F:      Documentation/devicetree/bindings/sound/
16498 F:      Documentation/sound/soc/
16499 F:      include/dt-bindings/sound/
16500 F:      include/sound/soc*
16501 F:      sound/soc/
16502
16503 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16504 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16505 M:      Liam Girdwood <lgirdwood@gmail.com>
16506 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16507 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16508 M:      Daniel Baluta <daniel.baluta@nxp.com>
16509 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16510 S:      Supported
16511 W:      https://github.com/thesofproject/linux/
16512 F:      sound/soc/sof/
16513
16514 SOUNDWIRE SUBSYSTEM
16515 M:      Vinod Koul <vkoul@kernel.org>
16516 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16517 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16518 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16519 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16520 S:      Supported
16521 F:      Documentation/driver-api/soundwire/
16522 F:      drivers/soundwire/
16523 F:      include/linux/soundwire/
16524
16525 SP2 MEDIA DRIVER
16526 M:      Olli Salonen <olli.salonen@iki.fi>
16527 L:      linux-media@vger.kernel.org
16528 S:      Maintained
16529 W:      https://linuxtv.org
16530 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16531 F:      drivers/media/dvb-frontends/sp2*
16532
16533 SPARC + UltraSPARC (sparc/sparc64)
16534 M:      "David S. Miller" <davem@davemloft.net>
16535 L:      sparclinux@vger.kernel.org
16536 S:      Maintained
16537 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16540 F:      arch/sparc/
16541 F:      drivers/sbus/
16542
16543 SPARC SERIAL DRIVERS
16544 M:      "David S. Miller" <davem@davemloft.net>
16545 L:      sparclinux@vger.kernel.org
16546 S:      Maintained
16547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16549 F:      drivers/tty/serial/suncore.c
16550 F:      drivers/tty/serial/sunhv.c
16551 F:      drivers/tty/serial/sunsab.c
16552 F:      drivers/tty/serial/sunsab.h
16553 F:      drivers/tty/serial/sunsu.c
16554 F:      drivers/tty/serial/sunzilog.c
16555 F:      drivers/tty/serial/sunzilog.h
16556 F:      drivers/tty/vcc.c
16557 F:      include/linux/sunserialcore.h
16558
16559 SPARSE CHECKER
16560 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16561 L:      linux-sparse@vger.kernel.org
16562 S:      Maintained
16563 W:      https://sparse.docs.kernel.org/
16564 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16565 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16566 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16567 F:      include/linux/compiler.h
16568
16569 SPEAKUP CONSOLE SPEECH DRIVER
16570 M:      William Hubbs <w.d.hubbs@gmail.com>
16571 M:      Chris Brannon <chris@the-brannons.com>
16572 M:      Kirk Reiser <kirk@reisers.ca>
16573 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16574 L:      speakup@linux-speakup.org
16575 S:      Odd Fixes
16576 W:      http://www.linux-speakup.org/
16577 F:      drivers/accessibility/speakup/
16578
16579 SPEAR CLOCK FRAMEWORK SUPPORT
16580 M:      Viresh Kumar <vireshk@kernel.org>
16581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16582 S:      Maintained
16583 W:      http://www.st.com/spear
16584 F:      drivers/clk/spear/
16585
16586 SPEAR PLATFORM SUPPORT
16587 M:      Viresh Kumar <vireshk@kernel.org>
16588 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16590 S:      Maintained
16591 W:      http://www.st.com/spear
16592 F:      arch/arm/boot/dts/spear*
16593 F:      arch/arm/mach-spear/
16594
16595 SPI NOR SUBSYSTEM
16596 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16597 L:      linux-mtd@lists.infradead.org
16598 S:      Maintained
16599 W:      http://www.linux-mtd.infradead.org/
16600 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16601 C:      irc://irc.oftc.net/mtd
16602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16603 F:      drivers/mtd/spi-nor/
16604 F:      include/linux/mtd/spi-nor.h
16605
16606 SPI SUBSYSTEM
16607 M:      Mark Brown <broonie@kernel.org>
16608 L:      linux-spi@vger.kernel.org
16609 S:      Maintained
16610 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16612 F:      Documentation/devicetree/bindings/spi/
16613 F:      Documentation/spi/
16614 F:      drivers/spi/
16615 F:      include/linux/spi/
16616 F:      include/uapi/linux/spi/
16617 F:      tools/spi/
16618
16619 SPIDERNET NETWORK DRIVER for CELL
16620 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16621 L:      netdev@vger.kernel.org
16622 S:      Supported
16623 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16624 F:      drivers/net/ethernet/toshiba/spider_net*
16625
16626 SPMI SUBSYSTEM
16627 R:      Stephen Boyd <sboyd@kernel.org>
16628 L:      linux-arm-msm@vger.kernel.org
16629 F:      Documentation/devicetree/bindings/spmi/
16630 F:      drivers/spmi/
16631 F:      include/dt-bindings/spmi/spmi.h
16632 F:      include/linux/spmi.h
16633 F:      include/trace/events/spmi.h
16634
16635 SPU FILE SYSTEM
16636 M:      Jeremy Kerr <jk@ozlabs.org>
16637 L:      linuxppc-dev@lists.ozlabs.org
16638 S:      Supported
16639 W:      http://www.ibm.com/developerworks/power/cell/
16640 F:      Documentation/filesystems/spufs/spufs.rst
16641 F:      arch/powerpc/platforms/cell/spufs/
16642
16643 SQUASHFS FILE SYSTEM
16644 M:      Phillip Lougher <phillip@squashfs.org.uk>
16645 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16646 S:      Maintained
16647 W:      http://squashfs.org.uk
16648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16649 F:      Documentation/filesystems/squashfs.rst
16650 F:      fs/squashfs/
16651
16652 SRM (Alpha) environment access
16653 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16654 S:      Maintained
16655 F:      arch/alpha/kernel/srm_env.c
16656
16657 ST LSM6DSx IMU IIO DRIVER
16658 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16659 L:      linux-iio@vger.kernel.org
16660 S:      Maintained
16661 W:      http://www.st.com/
16662 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16663 F:      drivers/iio/imu/st_lsm6dsx/
16664
16665 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16666 M:      Mickael Guene <mickael.guene@st.com>
16667 L:      linux-media@vger.kernel.org
16668 S:      Maintained
16669 T:      git git://linuxtv.org/media_tree.git
16670 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16671 F:      drivers/media/i2c/st-mipid02.c
16672
16673 ST STM32 I2C/SMBUS DRIVER
16674 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16675 L:      linux-i2c@vger.kernel.org
16676 S:      Maintained
16677 F:      drivers/i2c/busses/i2c-stm32*
16678
16679 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16680 M:      Song Qiang <songqiang1304521@gmail.com>
16681 L:      linux-iio@vger.kernel.org
16682 S:      Maintained
16683 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16684 F:      drivers/iio/proximity/vl53l0x-i2c.c
16685
16686 STABLE BRANCH
16687 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16688 M:      Sasha Levin <sashal@kernel.org>
16689 L:      stable@vger.kernel.org
16690 S:      Supported
16691 F:      Documentation/process/stable-kernel-rules.rst
16692
16693 STAGING - ATOMISP DRIVER
16694 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16695 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16696 L:      linux-media@vger.kernel.org
16697 S:      Maintained
16698 F:      drivers/staging/media/atomisp/
16699
16700 STAGING - COMEDI
16701 M:      Ian Abbott <abbotti@mev.co.uk>
16702 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16703 S:      Odd Fixes
16704 F:      drivers/staging/comedi/
16705
16706 STAGING - FIELDBUS SUBSYSTEM
16707 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16708 S:      Maintained
16709 F:      drivers/staging/fieldbus/*
16710 F:      drivers/staging/fieldbus/Documentation/
16711
16712 STAGING - HMS ANYBUS-S BUS
16713 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16714 S:      Maintained
16715 F:      drivers/staging/fieldbus/anybuss/
16716
16717 STAGING - INDUSTRIAL IO
16718 M:      Jonathan Cameron <jic23@kernel.org>
16719 L:      linux-iio@vger.kernel.org
16720 S:      Odd Fixes
16721 F:      Documentation/devicetree/bindings/staging/iio/
16722 F:      drivers/staging/iio/
16723
16724 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16725 M:      Marc Dietrich <marvin24@gmx.de>
16726 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16727 L:      linux-tegra@vger.kernel.org
16728 S:      Maintained
16729 F:      drivers/staging/nvec/
16730
16731 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16732 M:      Jens Frederich <jfrederich@gmail.com>
16733 M:      Daniel Drake <dsd@laptop.org>
16734 M:      Jon Nettleton <jon.nettleton@gmail.com>
16735 S:      Maintained
16736 W:      http://wiki.laptop.org/go/DCON
16737 F:      drivers/staging/olpc_dcon/
16738
16739 STAGING - REALTEK RTL8188EU DRIVERS
16740 M:      Larry Finger <Larry.Finger@lwfinger.net>
16741 S:      Odd Fixes
16742 F:      drivers/staging/rtl8188eu/
16743
16744 STAGING - REALTEK RTL8712U DRIVERS
16745 M:      Larry Finger <Larry.Finger@lwfinger.net>
16746 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16747 S:      Odd Fixes
16748 F:      drivers/staging/rtl8712/
16749
16750 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16751 M:      Michael Hennerich <michael.hennerich@analog.com>
16752 L:      linux-fbdev@vger.kernel.org
16753 S:      Supported
16754 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16755 F:      drivers/staging/fbtft/fb_seps525.c
16756
16757 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16758 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16759 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16760 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16761 L:      linux-fbdev@vger.kernel.org
16762 S:      Maintained
16763 F:      drivers/staging/sm750fb/
16764
16765 STAGING - VIA VT665X DRIVERS
16766 M:      Forest Bond <forest@alittletooquiet.net>
16767 S:      Odd Fixes
16768 F:      drivers/staging/vt665?/
16769
16770 STAGING SUBSYSTEM
16771 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16772 L:      devel@driverdev.osuosl.org
16773 S:      Supported
16774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16775 F:      drivers/staging/
16776
16777 STARFIRE/DURALAN NETWORK DRIVER
16778 M:      Ion Badulescu <ionut@badula.org>
16779 S:      Odd Fixes
16780 F:      drivers/net/ethernet/adaptec/starfire*
16781
16782 STEC S1220 SKD DRIVER
16783 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16784 L:      linux-block@vger.kernel.org
16785 S:      Maintained
16786 F:      drivers/block/skd*[ch]
16787
16788 STI AUDIO (ASoC) DRIVERS
16789 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16790 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16791 S:      Maintained
16792 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16793 F:      sound/soc/sti/
16794
16795 STI CEC DRIVER
16796 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16797 S:      Maintained
16798 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16799 F:      drivers/media/cec/platform/sti/
16800
16801 STK1160 USB VIDEO CAPTURE DRIVER
16802 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16803 L:      linux-media@vger.kernel.org
16804 S:      Maintained
16805 T:      git git://linuxtv.org/media_tree.git
16806 F:      drivers/media/usb/stk1160/
16807
16808 STM32 AUDIO (ASoC) DRIVERS
16809 M:      Olivier Moysan <olivier.moysan@st.com>
16810 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16811 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16812 S:      Maintained
16813 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16814 F:      sound/soc/stm/
16815
16816 STM32 TIMER/LPTIMER DRIVERS
16817 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16818 S:      Maintained
16819 F:      Documentation/ABI/testing/*timer-stm32
16820 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16821 F:      drivers/*/stm32-*timer*
16822 F:      drivers/pwm/pwm-stm32*
16823 F:      include/linux/*/stm32-*tim*
16824
16825 STMMAC ETHERNET DRIVER
16826 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16827 M:      Alexandre Torgue <alexandre.torgue@st.com>
16828 M:      Jose Abreu <joabreu@synopsys.com>
16829 L:      netdev@vger.kernel.org
16830 S:      Supported
16831 W:      http://www.stlinux.com
16832 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16833 F:      drivers/net/ethernet/stmicro/stmmac/
16834
16835 SUN3/3X
16836 M:      Sam Creasey <sammy@sammy.net>
16837 S:      Maintained
16838 W:      http://sammy.net/sun3/
16839 F:      arch/m68k/include/asm/sun3*
16840 F:      arch/m68k/kernel/*sun3*
16841 F:      arch/m68k/sun3*/
16842 F:      drivers/net/ethernet/i825xx/sun3*
16843
16844 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16845 M:      Hans de Goede <hdegoede@redhat.com>
16846 L:      linux-input@vger.kernel.org
16847 S:      Maintained
16848 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16849 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16850
16851 SUNDANCE NETWORK DRIVER
16852 M:      Denis Kirjanov <kda@linux-powerpc.org>
16853 L:      netdev@vger.kernel.org
16854 S:      Maintained
16855 F:      drivers/net/ethernet/dlink/sundance.c
16856
16857 SUPERH
16858 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16859 M:      Rich Felker <dalias@libc.org>
16860 L:      linux-sh@vger.kernel.org
16861 S:      Maintained
16862 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16863 F:      Documentation/sh/
16864 F:      arch/sh/
16865 F:      drivers/sh/
16866
16867 SUSPEND TO RAM
16868 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16869 M:      Len Brown <len.brown@intel.com>
16870 M:      Pavel Machek <pavel@ucw.cz>
16871 L:      linux-pm@vger.kernel.org
16872 S:      Supported
16873 B:      https://bugzilla.kernel.org
16874 F:      Documentation/power/
16875 F:      arch/x86/kernel/acpi/
16876 F:      drivers/base/power/
16877 F:      include/linux/freezer.h
16878 F:      include/linux/pm.h
16879 F:      include/linux/suspend.h
16880 F:      kernel/power/
16881
16882 SVGA HANDLING
16883 M:      Martin Mares <mj@ucw.cz>
16884 L:      linux-video@atrey.karlin.mff.cuni.cz
16885 S:      Maintained
16886 F:      Documentation/admin-guide/svga.rst
16887 F:      arch/x86/boot/video*
16888
16889 SWIOTLB SUBSYSTEM
16890 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16891 L:      iommu@lists.linux-foundation.org
16892 S:      Supported
16893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16894 F:      arch/*/kernel/pci-swiotlb.c
16895 F:      include/linux/swiotlb.h
16896 F:      kernel/dma/swiotlb.c
16897
16898 SWITCHDEV
16899 M:      Jiri Pirko <jiri@resnulli.us>
16900 M:      Ivan Vecera <ivecera@redhat.com>
16901 L:      netdev@vger.kernel.org
16902 S:      Supported
16903 F:      include/net/switchdev.h
16904 F:      net/switchdev/
16905
16906 SY8106A REGULATOR DRIVER
16907 M:      Icenowy Zheng <icenowy@aosc.io>
16908 S:      Maintained
16909 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16910 F:      drivers/regulator/sy8106a-regulator.c
16911
16912 SYNC FILE FRAMEWORK
16913 M:      Sumit Semwal <sumit.semwal@linaro.org>
16914 R:      Gustavo Padovan <gustavo@padovan.org>
16915 L:      linux-media@vger.kernel.org
16916 L:      dri-devel@lists.freedesktop.org
16917 S:      Maintained
16918 T:      git git://anongit.freedesktop.org/drm/drm-misc
16919 F:      Documentation/driver-api/sync_file.rst
16920 F:      drivers/dma-buf/dma-fence*
16921 F:      drivers/dma-buf/sw_sync.c
16922 F:      drivers/dma-buf/sync_*
16923 F:      include/linux/sync_file.h
16924 F:      include/uapi/linux/sync_file.h
16925
16926 SYNOPSYS ARC ARCHITECTURE
16927 M:      Vineet Gupta <vgupta@synopsys.com>
16928 L:      linux-snps-arc@lists.infradead.org
16929 S:      Supported
16930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16931 F:      Documentation/devicetree/bindings/arc/*
16932 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16933 F:      arch/arc/
16934 F:      drivers/clocksource/arc_timer.c
16935 F:      drivers/tty/serial/arc_uart.c
16936
16937 SYNOPSYS ARC HSDK SDP pll clock driver
16938 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16939 S:      Supported
16940 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16941 F:      drivers/clk/clk-hsdk-pll.c
16942
16943 SYNOPSYS ARC SDP clock driver
16944 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16945 S:      Supported
16946 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16947 F:      drivers/clk/axs10x/*
16948
16949 SYNOPSYS ARC SDP platform support
16950 M:      Alexey Brodkin <abrodkin@synopsys.com>
16951 S:      Supported
16952 F:      Documentation/devicetree/bindings/arc/axs10*
16953 F:      arch/arc/boot/dts/ax*
16954 F:      arch/arc/plat-axs10x
16955
16956 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16957 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16958 S:      Supported
16959 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16960 F:      drivers/reset/reset-axs10x.c
16961
16962 SYNOPSYS CREG GPIO DRIVER
16963 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16964 S:      Maintained
16965 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16966 F:      drivers/gpio/gpio-creg-snps.c
16967
16968 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16969 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16970 S:      Maintained
16971 F:      drivers/tty/serial/8250/8250_dw.c
16972 F:      drivers/tty/serial/8250/8250_dwlib.*
16973 F:      drivers/tty/serial/8250/8250_lpss.c
16974
16975 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16976 M:      Hoan Tran <hoan@os.amperecomputing.com>
16977 M:      Serge Semin <fancer.lancer@gmail.com>
16978 L:      linux-gpio@vger.kernel.org
16979 S:      Maintained
16980 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16981 F:      drivers/gpio/gpio-dwapb.c
16982
16983 SYNOPSYS DESIGNWARE APB SSI DRIVER
16984 M:      Serge Semin <fancer.lancer@gmail.com>
16985 L:      linux-spi@vger.kernel.org
16986 S:      Supported
16987 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
16988 F:      drivers/spi/spi-dw*
16989
16990 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16991 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16992 S:      Maintained
16993 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16994 F:      drivers/dma/dw-axi-dmac/
16995
16996 SYNOPSYS DESIGNWARE DMAC DRIVER
16997 M:      Viresh Kumar <vireshk@kernel.org>
16998 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16999 S:      Maintained
17000 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17001 F:      drivers/dma/dw/
17002 F:      include/dt-bindings/dma/dw-dmac.h
17003 F:      include/linux/dma/dw.h
17004 F:      include/linux/platform_data/dma-dw.h
17005
17006 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17007 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17008 L:      netdev@vger.kernel.org
17009 S:      Supported
17010 F:      drivers/net/ethernet/synopsys/
17011
17012 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17013 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17014 L:      netdev@vger.kernel.org
17015 S:      Supported
17016 F:      drivers/net/pcs/pcs-xpcs.c
17017 F:      include/linux/pcs/pcs-xpcs.h
17018
17019 SYNOPSYS DESIGNWARE I2C DRIVER
17020 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17021 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17022 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17023 L:      linux-i2c@vger.kernel.org
17024 S:      Maintained
17025 F:      drivers/i2c/busses/i2c-designware-*
17026 F:      include/linux/platform_data/i2c-designware.h
17027
17028 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17029 M:      Jaehoon Chung <jh80.chung@samsung.com>
17030 L:      linux-mmc@vger.kernel.org
17031 S:      Maintained
17032 F:      drivers/mmc/host/dw_mmc*
17033
17034 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17035 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17036 S:      Supported
17037 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17038 F:      drivers/reset/reset-hsdk.c
17039 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17040
17041 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17042 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17043 M:      Manjunath M B <manjumb@synopsys.com>
17044 L:      linux-mmc@vger.kernel.org
17045 S:      Maintained
17046 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17047
17048 SYSTEM CONFIGURATION (SYSCON)
17049 M:      Lee Jones <lee.jones@linaro.org>
17050 M:      Arnd Bergmann <arnd@arndb.de>
17051 S:      Supported
17052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17053 F:      drivers/mfd/syscon.c
17054
17055 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17056 M:      Sudeep Holla <sudeep.holla@arm.com>
17057 L:      linux-arm-kernel@lists.infradead.org
17058 S:      Maintained
17059 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17060 F:      drivers/clk/clk-sc[mp]i.c
17061 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17062 F:      drivers/firmware/arm_scmi/
17063 F:      drivers/firmware/arm_scpi.c
17064 F:      drivers/reset/reset-scmi.c
17065 F:      include/linux/sc[mp]i_protocol.h
17066 F:      include/trace/events/scmi.h
17067
17068 SYSTEM RESET/SHUTDOWN DRIVERS
17069 M:      Sebastian Reichel <sre@kernel.org>
17070 L:      linux-pm@vger.kernel.org
17071 S:      Maintained
17072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17073 F:      Documentation/devicetree/bindings/power/reset/
17074 F:      drivers/power/reset/
17075
17076 SYSTEM TRACE MODULE CLASS
17077 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17078 S:      Maintained
17079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17080 F:      Documentation/trace/stm.rst
17081 F:      drivers/hwtracing/stm/
17082 F:      include/linux/stm.h
17083 F:      include/uapi/linux/stm.h
17084
17085 SYSTEM76 ACPI DRIVER
17086 M:      Jeremy Soller <jeremy@system76.com>
17087 M:      System76 Product Development <productdev@system76.com>
17088 L:      platform-driver-x86@vger.kernel.org
17089 S:      Maintained
17090 F:      drivers/platform/x86/system76_acpi.c
17091
17092 SYSV FILESYSTEM
17093 M:      Christoph Hellwig <hch@infradead.org>
17094 S:      Maintained
17095 F:      Documentation/filesystems/sysv-fs.rst
17096 F:      fs/sysv/
17097 F:      include/linux/sysv_fs.h
17098
17099 TASKSTATS STATISTICS INTERFACE
17100 M:      Balbir Singh <bsingharora@gmail.com>
17101 S:      Maintained
17102 F:      Documentation/accounting/taskstats*
17103 F:      include/linux/taskstats*
17104 F:      kernel/taskstats.c
17105
17106 TC subsystem
17107 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17108 M:      Cong Wang <xiyou.wangcong@gmail.com>
17109 M:      Jiri Pirko <jiri@resnulli.us>
17110 L:      netdev@vger.kernel.org
17111 S:      Maintained
17112 F:      include/net/pkt_cls.h
17113 F:      include/net/pkt_sched.h
17114 F:      include/net/tc_act/
17115 F:      include/uapi/linux/pkt_cls.h
17116 F:      include/uapi/linux/pkt_sched.h
17117 F:      include/uapi/linux/tc_act/
17118 F:      include/uapi/linux/tc_ematch/
17119 F:      net/sched/
17120
17121 TC90522 MEDIA DRIVER
17122 M:      Akihiro Tsukada <tskd08@gmail.com>
17123 L:      linux-media@vger.kernel.org
17124 S:      Odd Fixes
17125 F:      drivers/media/dvb-frontends/tc90522*
17126
17127 TCP LOW PRIORITY MODULE
17128 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17129 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17130 S:      Maintained
17131 W:      http://tcp-lp-mod.sourceforge.net/
17132 F:      net/ipv4/tcp_lp.c
17133
17134 TDA10071 MEDIA DRIVER
17135 M:      Antti Palosaari <crope@iki.fi>
17136 L:      linux-media@vger.kernel.org
17137 S:      Maintained
17138 W:      https://linuxtv.org
17139 W:      http://palosaari.fi/linux/
17140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17141 T:      git git://linuxtv.org/anttip/media_tree.git
17142 F:      drivers/media/dvb-frontends/tda10071*
17143
17144 TDA18212 MEDIA DRIVER
17145 M:      Antti Palosaari <crope@iki.fi>
17146 L:      linux-media@vger.kernel.org
17147 S:      Maintained
17148 W:      https://linuxtv.org
17149 W:      http://palosaari.fi/linux/
17150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17151 T:      git git://linuxtv.org/anttip/media_tree.git
17152 F:      drivers/media/tuners/tda18212*
17153
17154 TDA18218 MEDIA DRIVER
17155 M:      Antti Palosaari <crope@iki.fi>
17156 L:      linux-media@vger.kernel.org
17157 S:      Maintained
17158 W:      https://linuxtv.org
17159 W:      http://palosaari.fi/linux/
17160 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17161 T:      git git://linuxtv.org/anttip/media_tree.git
17162 F:      drivers/media/tuners/tda18218*
17163
17164 TDA18250 MEDIA DRIVER
17165 M:      Olli Salonen <olli.salonen@iki.fi>
17166 L:      linux-media@vger.kernel.org
17167 S:      Maintained
17168 W:      https://linuxtv.org
17169 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17170 T:      git git://linuxtv.org/media_tree.git
17171 F:      drivers/media/tuners/tda18250*
17172
17173 TDA18271 MEDIA DRIVER
17174 M:      Michael Krufky <mkrufky@linuxtv.org>
17175 L:      linux-media@vger.kernel.org
17176 S:      Maintained
17177 W:      https://linuxtv.org
17178 W:      http://github.com/mkrufky
17179 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17180 T:      git git://linuxtv.org/mkrufky/tuners.git
17181 F:      drivers/media/tuners/tda18271*
17182
17183 TDA1997x MEDIA DRIVER
17184 M:      Tim Harvey <tharvey@gateworks.com>
17185 L:      linux-media@vger.kernel.org
17186 S:      Maintained
17187 W:      https://linuxtv.org
17188 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17189 F:      drivers/media/i2c/tda1997x.*
17190
17191 TDA827x MEDIA DRIVER
17192 M:      Michael Krufky <mkrufky@linuxtv.org>
17193 L:      linux-media@vger.kernel.org
17194 S:      Maintained
17195 W:      https://linuxtv.org
17196 W:      http://github.com/mkrufky
17197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17198 T:      git git://linuxtv.org/mkrufky/tuners.git
17199 F:      drivers/media/tuners/tda8290.*
17200
17201 TDA8290 MEDIA DRIVER
17202 M:      Michael Krufky <mkrufky@linuxtv.org>
17203 L:      linux-media@vger.kernel.org
17204 S:      Maintained
17205 W:      https://linuxtv.org
17206 W:      http://github.com/mkrufky
17207 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17208 T:      git git://linuxtv.org/mkrufky/tuners.git
17209 F:      drivers/media/tuners/tda8290.*
17210
17211 TDA9840 MEDIA DRIVER
17212 M:      Hans Verkuil <hverkuil@xs4all.nl>
17213 L:      linux-media@vger.kernel.org
17214 S:      Maintained
17215 W:      https://linuxtv.org
17216 T:      git git://linuxtv.org/media_tree.git
17217 F:      drivers/media/i2c/tda9840*
17218
17219 TEA5761 TUNER DRIVER
17220 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17221 L:      linux-media@vger.kernel.org
17222 S:      Odd fixes
17223 W:      https://linuxtv.org
17224 T:      git git://linuxtv.org/media_tree.git
17225 F:      drivers/media/tuners/tea5761.*
17226
17227 TEA5767 TUNER DRIVER
17228 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17229 L:      linux-media@vger.kernel.org
17230 S:      Maintained
17231 W:      https://linuxtv.org
17232 T:      git git://linuxtv.org/media_tree.git
17233 F:      drivers/media/tuners/tea5767.*
17234
17235 TEA6415C MEDIA DRIVER
17236 M:      Hans Verkuil <hverkuil@xs4all.nl>
17237 L:      linux-media@vger.kernel.org
17238 S:      Maintained
17239 W:      https://linuxtv.org
17240 T:      git git://linuxtv.org/media_tree.git
17241 F:      drivers/media/i2c/tea6415c*
17242
17243 TEA6420 MEDIA DRIVER
17244 M:      Hans Verkuil <hverkuil@xs4all.nl>
17245 L:      linux-media@vger.kernel.org
17246 S:      Maintained
17247 W:      https://linuxtv.org
17248 T:      git git://linuxtv.org/media_tree.git
17249 F:      drivers/media/i2c/tea6420*
17250
17251 TEAM DRIVER
17252 M:      Jiri Pirko <jiri@resnulli.us>
17253 L:      netdev@vger.kernel.org
17254 S:      Supported
17255 F:      drivers/net/team/
17256 F:      include/linux/if_team.h
17257 F:      include/uapi/linux/if_team.h
17258
17259 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17260 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17261 S:      Maintained
17262 F:      arch/x86/platform/ts5500/
17263
17264 TECHNOTREND USB IR RECEIVER
17265 M:      Sean Young <sean@mess.org>
17266 L:      linux-media@vger.kernel.org
17267 S:      Maintained
17268 F:      drivers/media/rc/ttusbir.c
17269
17270 TECHWELL TW9910 VIDEO DECODER
17271 L:      linux-media@vger.kernel.org
17272 S:      Orphan
17273 F:      drivers/media/i2c/tw9910.c
17274 F:      include/media/i2c/tw9910.h
17275
17276 TEE SUBSYSTEM
17277 M:      Jens Wiklander <jens.wiklander@linaro.org>
17278 L:      op-tee@lists.trustedfirmware.org
17279 S:      Maintained
17280 F:      Documentation/staging/tee.rst
17281 F:      drivers/tee/
17282 F:      include/linux/tee_drv.h
17283 F:      include/uapi/linux/tee.h
17284
17285 TEGRA ARCHITECTURE SUPPORT
17286 M:      Thierry Reding <thierry.reding@gmail.com>
17287 M:      Jonathan Hunter <jonathanh@nvidia.com>
17288 L:      linux-tegra@vger.kernel.org
17289 S:      Supported
17290 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17292 N:      [^a-z]tegra
17293
17294 TEGRA CLOCK DRIVER
17295 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17296 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17297 S:      Supported
17298 F:      drivers/clk/tegra/
17299
17300 TEGRA DMA DRIVERS
17301 M:      Laxman Dewangan <ldewangan@nvidia.com>
17302 M:      Jon Hunter <jonathanh@nvidia.com>
17303 S:      Supported
17304 F:      drivers/dma/tegra*
17305
17306 TEGRA I2C DRIVER
17307 M:      Laxman Dewangan <ldewangan@nvidia.com>
17308 R:      Dmitry Osipenko <digetx@gmail.com>
17309 S:      Supported
17310 F:      drivers/i2c/busses/i2c-tegra.c
17311
17312 TEGRA IOMMU DRIVERS
17313 M:      Thierry Reding <thierry.reding@gmail.com>
17314 R:      Krishna Reddy <vdumpa@nvidia.com>
17315 L:      linux-tegra@vger.kernel.org
17316 S:      Supported
17317 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17318 F:      drivers/iommu/tegra*
17319
17320 TEGRA KBC DRIVER
17321 M:      Laxman Dewangan <ldewangan@nvidia.com>
17322 S:      Supported
17323 F:      drivers/input/keyboard/tegra-kbc.c
17324
17325 TEGRA NAND DRIVER
17326 M:      Stefan Agner <stefan@agner.ch>
17327 M:      Lucas Stach <dev@lynxeye.de>
17328 S:      Maintained
17329 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17330 F:      drivers/mtd/nand/raw/tegra_nand.c
17331
17332 TEGRA PWM DRIVER
17333 M:      Thierry Reding <thierry.reding@gmail.com>
17334 S:      Supported
17335 F:      drivers/pwm/pwm-tegra.c
17336
17337 TEGRA SERIAL DRIVER
17338 M:      Laxman Dewangan <ldewangan@nvidia.com>
17339 S:      Supported
17340 F:      drivers/tty/serial/serial-tegra.c
17341
17342 TEGRA SPI DRIVER
17343 M:      Laxman Dewangan <ldewangan@nvidia.com>
17344 S:      Supported
17345 F:      drivers/spi/spi-tegra*
17346
17347 TEGRA VIDEO DRIVER
17348 M:      Thierry Reding <thierry.reding@gmail.com>
17349 M:      Jonathan Hunter <jonathanh@nvidia.com>
17350 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17351 L:      linux-media@vger.kernel.org
17352 L:      linux-tegra@vger.kernel.org
17353 S:      Maintained
17354 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17355 F:      drivers/staging/media/tegra-video/
17356
17357 TEGRA XUSB PADCTL DRIVER
17358 M:      JC Kuo <jckuo@nvidia.com>
17359 S:      Supported
17360 F:      drivers/phy/tegra/xusb*
17361
17362 TEHUTI ETHERNET DRIVER
17363 M:      Andy Gospodarek <andy@greyhouse.net>
17364 L:      netdev@vger.kernel.org
17365 S:      Supported
17366 F:      drivers/net/ethernet/tehuti/*
17367
17368 TELECOM CLOCK DRIVER FOR MCPL0010
17369 M:      Mark Gross <mark.gross@intel.com>
17370 S:      Supported
17371 F:      drivers/char/tlclk.c
17372
17373 TEMPO SEMICONDUCTOR DRIVERS
17374 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17375 S:      Maintained
17376 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17377 F:      sound/soc/codecs/tscs*.c
17378 F:      sound/soc/codecs/tscs*.h
17379
17380 TENSILICA XTENSA PORT (xtensa)
17381 M:      Chris Zankel <chris@zankel.net>
17382 M:      Max Filippov <jcmvbkbc@gmail.com>
17383 L:      linux-xtensa@linux-xtensa.org
17384 S:      Maintained
17385 T:      git git://github.com/czankel/xtensa-linux.git
17386 F:      arch/xtensa/
17387 F:      drivers/irqchip/irq-xtensa-*
17388
17389 TEXAS INSTRUMENTS ASoC DRIVERS
17390 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17391 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17392 S:      Maintained
17393 F:      sound/soc/ti/
17394
17395 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17396 M:      Ricardo Ribalda <ribalda@kernel.org>
17397 L:      linux-iio@vger.kernel.org
17398 S:      Supported
17399 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17400 F:      drivers/iio/dac/ti-dac7612.c
17401
17402 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17403 M:      Nishanth Menon <nm@ti.com>
17404 M:      Tero Kristo <t-kristo@ti.com>
17405 M:      Santosh Shilimkar <ssantosh@kernel.org>
17406 L:      linux-arm-kernel@lists.infradead.org
17407 S:      Maintained
17408 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17409 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17410 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17411 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17412 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17413 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17414 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17415 F:      drivers/clk/keystone/sci-clk.c
17416 F:      drivers/firmware/ti_sci*
17417 F:      drivers/irqchip/irq-ti-sci-inta.c
17418 F:      drivers/irqchip/irq-ti-sci-intr.c
17419 F:      drivers/reset/reset-ti-sci.c
17420 F:      drivers/soc/ti/ti_sci_inta_msi.c
17421 F:      drivers/soc/ti/ti_sci_pm_domains.c
17422 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17423 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17424 F:      include/linux/soc/ti/ti_sci_protocol.h
17425
17426 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17427 M:      Hans Verkuil <hverkuil@xs4all.nl>
17428 L:      linux-media@vger.kernel.org
17429 S:      Maintained
17430 W:      https://linuxtv.org
17431 T:      git git://linuxtv.org/media_tree.git
17432 F:      drivers/media/radio/radio-raremono.c
17433
17434 THERMAL
17435 M:      Zhang Rui <rui.zhang@intel.com>
17436 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17437 R:      Amit Kucheria <amitk@kernel.org>
17438 L:      linux-pm@vger.kernel.org
17439 S:      Supported
17440 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17442 F:      Documentation/devicetree/bindings/thermal/
17443 F:      drivers/thermal/
17444 F:      include/linux/cpu_cooling.h
17445 F:      include/linux/thermal.h
17446 F:      include/uapi/linux/thermal.h
17447
17448 THERMAL DRIVER FOR AMLOGIC SOCS
17449 M:      Guillaume La Roque <glaroque@baylibre.com>
17450 L:      linux-pm@vger.kernel.org
17451 L:      linux-amlogic@lists.infradead.org
17452 S:      Supported
17453 W:      http://linux-meson.com/
17454 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17455 F:      drivers/thermal/amlogic_thermal.c
17456
17457 THERMAL/CPU_COOLING
17458 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17459 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17460 M:      Viresh Kumar <viresh.kumar@linaro.org>
17461 M:      Javi Merino <javi.merino@kernel.org>
17462 L:      linux-pm@vger.kernel.org
17463 S:      Supported
17464 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17465 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17466 F:      drivers/thermal/cpufreq_cooling.c
17467 F:      drivers/thermal/cpuidle_cooling.c
17468 F:      include/linux/cpu_cooling.h
17469
17470 THERMAL/POWER_ALLOCATOR
17471 M:      Lukasz Luba <lukasz.luba@arm.com>
17472 L:      linux-pm@vger.kernel.org
17473 S:      Maintained
17474 F:      Documentation/driver-api/thermal/power_allocator.rst
17475 F:      drivers/thermal/gov_power_allocator.c
17476 F:      include/trace/events/thermal_power_allocator.h
17477
17478 THINKPAD ACPI EXTRAS DRIVER
17479 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
17480 L:      ibm-acpi-devel@lists.sourceforge.net
17481 L:      platform-driver-x86@vger.kernel.org
17482 S:      Maintained
17483 W:      http://ibm-acpi.sourceforge.net
17484 W:      http://thinkwiki.org/wiki/Ibm-acpi
17485 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17486 F:      drivers/platform/x86/thinkpad_acpi.c
17487
17488 THUNDERBOLT DMA TRAFFIC TEST DRIVER
17489 M:      Isaac Hazan <isaac.hazan@intel.com>
17490 L:      linux-usb@vger.kernel.org
17491 S:      Maintained
17492 F:      drivers/thunderbolt/dma_test.c
17493
17494 THUNDERBOLT DRIVER
17495 M:      Andreas Noever <andreas.noever@gmail.com>
17496 M:      Michael Jamet <michael.jamet@intel.com>
17497 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17498 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17499 L:      linux-usb@vger.kernel.org
17500 S:      Maintained
17501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17502 F:      Documentation/admin-guide/thunderbolt.rst
17503 F:      drivers/thunderbolt/
17504 F:      include/linux/thunderbolt.h
17505
17506 THUNDERBOLT NETWORK DRIVER
17507 M:      Michael Jamet <michael.jamet@intel.com>
17508 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17509 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17510 L:      netdev@vger.kernel.org
17511 S:      Maintained
17512 F:      drivers/net/thunderbolt.c
17513
17514 THUNDERX GPIO DRIVER
17515 M:      Robert Richter <rric@kernel.org>
17516 S:      Odd Fixes
17517 F:      drivers/gpio/gpio-thunderx.c
17518
17519 TI AM437X VPFE DRIVER
17520 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17521 L:      linux-media@vger.kernel.org
17522 S:      Maintained
17523 W:      https://linuxtv.org
17524 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17525 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17526 F:      drivers/media/platform/am437x/
17527
17528 TI BANDGAP AND THERMAL DRIVER
17529 M:      Eduardo Valentin <edubezval@gmail.com>
17530 M:      Keerthy <j-keerthy@ti.com>
17531 L:      linux-pm@vger.kernel.org
17532 L:      linux-omap@vger.kernel.org
17533 S:      Maintained
17534 F:      drivers/thermal/ti-soc-thermal/
17535
17536 TI BQ27XXX POWER SUPPLY DRIVER
17537 R:      Dan Murphy <dmurphy@ti.com>
17538 F:      drivers/power/supply/bq27xxx_battery.c
17539 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17540 F:      include/linux/power/bq27xxx_battery.h
17541
17542 TI CDCE706 CLOCK DRIVER
17543 M:      Max Filippov <jcmvbkbc@gmail.com>
17544 S:      Maintained
17545 F:      drivers/clk/clk-cdce706.c
17546
17547 TI CLOCK DRIVER
17548 M:      Tero Kristo <t-kristo@ti.com>
17549 L:      linux-omap@vger.kernel.org
17550 S:      Maintained
17551 F:      drivers/clk/ti/
17552 F:      include/linux/clk/ti.h
17553
17554 TI DAVINCI MACHINE SUPPORT
17555 M:      Sekhar Nori <nsekhar@ti.com>
17556 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17558 S:      Supported
17559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17560 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17561 F:      arch/arm/boot/dts/da850*
17562 F:      arch/arm/mach-davinci/
17563 F:      drivers/i2c/busses/i2c-davinci.c
17564
17565 TI DAVINCI SERIES CLOCK DRIVER
17566 M:      David Lechner <david@lechnology.com>
17567 R:      Sekhar Nori <nsekhar@ti.com>
17568 S:      Maintained
17569 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17570 F:      drivers/clk/davinci/
17571
17572 TI DAVINCI SERIES GPIO DRIVER
17573 M:      Keerthy <j-keerthy@ti.com>
17574 L:      linux-gpio@vger.kernel.org
17575 S:      Maintained
17576 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17577 F:      drivers/gpio/gpio-davinci.c
17578
17579 TI DAVINCI SERIES MEDIA DRIVER
17580 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17581 L:      linux-media@vger.kernel.org
17582 S:      Maintained
17583 W:      https://linuxtv.org
17584 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17585 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17586 F:      drivers/media/platform/davinci/
17587 F:      include/media/davinci/
17588
17589 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17590 R:      David Lechner <david@lechnology.com>
17591 L:      linux-iio@vger.kernel.org
17592 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17593 F:      drivers/counter/ti-eqep.c
17594
17595 TI ETHERNET SWITCH DRIVER (CPSW)
17596 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17597 L:      linux-omap@vger.kernel.org
17598 L:      netdev@vger.kernel.org
17599 S:      Maintained
17600 F:      drivers/net/ethernet/ti/cpsw*
17601 F:      drivers/net/ethernet/ti/davinci*
17602
17603 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17604 M:      Alex Dubov <oakad@yahoo.com>
17605 S:      Maintained
17606 W:      http://tifmxx.berlios.de/
17607 F:      drivers/memstick/host/tifm_ms.c
17608 F:      drivers/misc/tifm*
17609 F:      drivers/mmc/host/tifm_sd.c
17610 F:      include/linux/tifm.h
17611
17612 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17613 M:      Santosh Shilimkar <ssantosh@kernel.org>
17614 L:      linux-kernel@vger.kernel.org
17615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17616 S:      Maintained
17617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17618 F:      drivers/soc/ti/*
17619
17620 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17621 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17622 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17623 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17624 S:      Maintained
17625 F:      sound/soc/codecs/isabelle*
17626 F:      sound/soc/codecs/lm49453*
17627
17628 TI LP855x BACKLIGHT DRIVER
17629 M:      Milo Kim <milo.kim@ti.com>
17630 S:      Maintained
17631 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17632 F:      drivers/video/backlight/lp855x_bl.c
17633 F:      include/linux/platform_data/lp855x.h
17634
17635 TI LP8727 CHARGER DRIVER
17636 M:      Milo Kim <milo.kim@ti.com>
17637 S:      Maintained
17638 F:      drivers/power/supply/lp8727_charger.c
17639 F:      include/linux/platform_data/lp8727.h
17640
17641 TI LP8788 MFD DRIVER
17642 M:      Milo Kim <milo.kim@ti.com>
17643 S:      Maintained
17644 F:      drivers/iio/adc/lp8788_adc.c
17645 F:      drivers/leds/leds-lp8788.c
17646 F:      drivers/mfd/lp8788*.c
17647 F:      drivers/power/supply/lp8788-charger.c
17648 F:      drivers/regulator/lp8788-*.c
17649 F:      include/linux/mfd/lp8788*.h
17650
17651 TI NETCP ETHERNET DRIVER
17652 M:      Wingman Kwok <w-kwok2@ti.com>
17653 M:      Murali Karicheri <m-karicheri2@ti.com>
17654 L:      netdev@vger.kernel.org
17655 S:      Maintained
17656 F:      drivers/net/ethernet/ti/netcp*
17657
17658 TI PCM3060 ASoC CODEC DRIVER
17659 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17660 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17661 S:      Maintained
17662 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17663 F:      sound/soc/codecs/pcm3060*
17664
17665 TI TAS571X FAMILY ASoC CODEC DRIVER
17666 M:      Kevin Cernekee <cernekee@chromium.org>
17667 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17668 S:      Odd Fixes
17669 F:      sound/soc/codecs/tas571x*
17670
17671 TI TCAN4X5X DEVICE DRIVER
17672 M:      Dan Murphy <dmurphy@ti.com>
17673 L:      linux-can@vger.kernel.org
17674 S:      Maintained
17675 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17676 F:      drivers/net/can/m_can/tcan4x5x.c
17677
17678 TI TRF7970A NFC DRIVER
17679 M:      Mark Greer <mgreer@animalcreek.com>
17680 L:      linux-wireless@vger.kernel.org
17681 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17682 S:      Supported
17683 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17684 F:      drivers/nfc/trf7970a.c
17685
17686 TI TWL4030 SERIES SOC CODEC DRIVER
17687 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17688 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17689 S:      Maintained
17690 F:      sound/soc/codecs/twl4030*
17691
17692 TI VPE/CAL DRIVERS
17693 M:      Benoit Parrot <bparrot@ti.com>
17694 L:      linux-media@vger.kernel.org
17695 S:      Maintained
17696 W:      http://linuxtv.org/
17697 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17698 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17699 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17700 F:      drivers/media/platform/ti-vpe/
17701
17702 TI WILINK WIRELESS DRIVERS
17703 L:      linux-wireless@vger.kernel.org
17704 S:      Orphan
17705 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17706 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17708 F:      drivers/net/wireless/ti/
17709 F:      include/linux/wl12xx.h
17710
17711 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17712 M:      John Stultz <john.stultz@linaro.org>
17713 M:      Thomas Gleixner <tglx@linutronix.de>
17714 R:      Stephen Boyd <sboyd@kernel.org>
17715 L:      linux-kernel@vger.kernel.org
17716 S:      Supported
17717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17718 F:      include/linux/clocksource.h
17719 F:      include/linux/time.h
17720 F:      include/linux/timex.h
17721 F:      include/uapi/linux/time.h
17722 F:      include/uapi/linux/timex.h
17723 F:      kernel/time/alarmtimer.c
17724 F:      kernel/time/clocksource.c
17725 F:      kernel/time/ntp.c
17726 F:      kernel/time/time*.c
17727 F:      tools/testing/selftests/timers/
17728
17729 TIPC NETWORK LAYER
17730 M:      Jon Maloy <jmaloy@redhat.com>
17731 M:      Ying Xue <ying.xue@windriver.com>
17732 L:      netdev@vger.kernel.org (core kernel code)
17733 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17734 S:      Maintained
17735 W:      http://tipc.sourceforge.net/
17736 F:      include/uapi/linux/tipc*.h
17737 F:      net/tipc/
17738
17739 TLAN NETWORK DRIVER
17740 M:      Samuel Chessman <chessman@tux.org>
17741 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17742 S:      Maintained
17743 W:      http://sourceforge.net/projects/tlan/
17744 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17745 F:      drivers/net/ethernet/ti/tlan.*
17746
17747 TM6000 VIDEO4LINUX DRIVER
17748 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17749 L:      linux-media@vger.kernel.org
17750 S:      Odd fixes
17751 W:      https://linuxtv.org
17752 T:      git git://linuxtv.org/media_tree.git
17753 F:      Documentation/admin-guide/media/tm6000*
17754 F:      drivers/media/usb/tm6000/
17755
17756 TMIO/SDHI MMC DRIVER
17757 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17758 L:      linux-mmc@vger.kernel.org
17759 S:      Supported
17760 F:      drivers/mmc/host/renesas_sdhi*
17761 F:      drivers/mmc/host/tmio_mmc*
17762 F:      include/linux/mfd/tmio.h
17763
17764 TMP401 HARDWARE MONITOR DRIVER
17765 M:      Guenter Roeck <linux@roeck-us.net>
17766 L:      linux-hwmon@vger.kernel.org
17767 S:      Maintained
17768 F:      Documentation/hwmon/tmp401.rst
17769 F:      drivers/hwmon/tmp401.c
17770
17771 TMP513 HARDWARE MONITOR DRIVER
17772 M:      Eric Tremblay <etremblay@distech-controls.com>
17773 L:      linux-hwmon@vger.kernel.org
17774 S:      Maintained
17775 F:      Documentation/hwmon/tmp513.rst
17776 F:      drivers/hwmon/tmp513.c
17777
17778 TMPFS (SHMEM FILESYSTEM)
17779 M:      Hugh Dickins <hughd@google.com>
17780 L:      linux-mm@kvack.org
17781 S:      Maintained
17782 F:      include/linux/shmem_fs.h
17783 F:      mm/shmem.c
17784
17785 TOMOYO SECURITY MODULE
17786 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17787 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17788 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17789 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17790 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17791 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17792 S:      Maintained
17793 W:      https://tomoyo.osdn.jp/
17794 F:      security/tomoyo/
17795
17796 TOPSTAR LAPTOP EXTRAS DRIVER
17797 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17798 L:      platform-driver-x86@vger.kernel.org
17799 S:      Maintained
17800 F:      drivers/platform/x86/topstar-laptop.c
17801
17802 TORTURE-TEST MODULES
17803 M:      Davidlohr Bueso <dave@stgolabs.net>
17804 M:      "Paul E. McKenney" <paulmck@kernel.org>
17805 M:      Josh Triplett <josh@joshtriplett.org>
17806 L:      linux-kernel@vger.kernel.org
17807 S:      Supported
17808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17809 F:      Documentation/RCU/torture.rst
17810 F:      kernel/locking/locktorture.c
17811 F:      kernel/rcu/rcuscale.c
17812 F:      kernel/rcu/rcutorture.c
17813 F:      kernel/rcu/refscale.c
17814 F:      kernel/torture.c
17815
17816 TOSHIBA ACPI EXTRAS DRIVER
17817 M:      Azael Avalos <coproscefalo@gmail.com>
17818 L:      platform-driver-x86@vger.kernel.org
17819 S:      Maintained
17820 F:      drivers/platform/x86/toshiba_acpi.c
17821
17822 TOSHIBA BLUETOOTH DRIVER
17823 M:      Azael Avalos <coproscefalo@gmail.com>
17824 L:      platform-driver-x86@vger.kernel.org
17825 S:      Maintained
17826 F:      drivers/platform/x86/toshiba_bluetooth.c
17827
17828 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17829 M:      Azael Avalos <coproscefalo@gmail.com>
17830 L:      platform-driver-x86@vger.kernel.org
17831 S:      Maintained
17832 F:      drivers/platform/x86/toshiba_haps.c
17833
17834 TOSHIBA SMM DRIVER
17835 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17836 S:      Maintained
17837 W:      http://www.buzzard.org.uk/toshiba/
17838 F:      drivers/char/toshiba.c
17839 F:      include/linux/toshiba.h
17840 F:      include/uapi/linux/toshiba.h
17841
17842 TOSHIBA TC358743 DRIVER
17843 M:      Mats Randgaard <matrandg@cisco.com>
17844 L:      linux-media@vger.kernel.org
17845 S:      Maintained
17846 F:      drivers/media/i2c/tc358743*
17847 F:      include/media/i2c/tc358743.h
17848
17849 TOSHIBA WMI HOTKEYS DRIVER
17850 M:      Azael Avalos <coproscefalo@gmail.com>
17851 L:      platform-driver-x86@vger.kernel.org
17852 S:      Maintained
17853 F:      drivers/platform/x86/toshiba-wmi.c
17854
17855 TPM DEVICE DRIVER
17856 M:      Peter Huewe <peterhuewe@gmx.de>
17857 M:      Jarkko Sakkinen <jarkko@kernel.org>
17858 R:      Jason Gunthorpe <jgg@ziepe.ca>
17859 L:      linux-integrity@vger.kernel.org
17860 S:      Maintained
17861 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17862 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
17864 F:      drivers/char/tpm/
17865
17866 TRACING
17867 M:      Steven Rostedt <rostedt@goodmis.org>
17868 M:      Ingo Molnar <mingo@redhat.com>
17869 S:      Maintained
17870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17871 F:      Documentation/trace/ftrace.rst
17872 F:      arch/*/*/*/ftrace.h
17873 F:      arch/*/kernel/ftrace.c
17874 F:      include/*/ftrace.h
17875 F:      include/linux/trace*.h
17876 F:      include/trace/
17877 F:      kernel/trace/
17878 F:      tools/testing/selftests/ftrace/
17879
17880 TRACING MMIO ACCESSES (MMIOTRACE)
17881 M:      Steven Rostedt <rostedt@goodmis.org>
17882 M:      Ingo Molnar <mingo@kernel.org>
17883 R:      Karol Herbst <karolherbst@gmail.com>
17884 R:      Pekka Paalanen <ppaalanen@gmail.com>
17885 L:      linux-kernel@vger.kernel.org
17886 L:      nouveau@lists.freedesktop.org
17887 S:      Maintained
17888 F:      arch/x86/mm/kmmio.c
17889 F:      arch/x86/mm/mmio-mod.c
17890 F:      arch/x86/mm/testmmiotrace.c
17891 F:      include/linux/mmiotrace.h
17892 F:      kernel/trace/trace_mmiotrace.c
17893
17894 TRIVIAL PATCHES
17895 M:      Jiri Kosina <trivial@kernel.org>
17896 S:      Maintained
17897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17898 K:      ^Subject:.*(?i)trivial
17899
17900 TTY LAYER
17901 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17902 M:      Jiri Slaby <jirislaby@kernel.org>
17903 S:      Supported
17904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17905 F:      Documentation/driver-api/serial/
17906 F:      drivers/tty/
17907 F:      drivers/tty/serial/serial_core.c
17908 F:      include/linux/serial.h
17909 F:      include/linux/serial_core.h
17910 F:      include/linux/tty.h
17911 F:      include/uapi/linux/serial.h
17912 F:      include/uapi/linux/serial_core.h
17913 F:      include/uapi/linux/tty.h
17914
17915 TUA9001 MEDIA DRIVER
17916 M:      Antti Palosaari <crope@iki.fi>
17917 L:      linux-media@vger.kernel.org
17918 S:      Maintained
17919 W:      https://linuxtv.org
17920 W:      http://palosaari.fi/linux/
17921 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17922 T:      git git://linuxtv.org/anttip/media_tree.git
17923 F:      drivers/media/tuners/tua9001*
17924
17925 TULIP NETWORK DRIVERS
17926 L:      netdev@vger.kernel.org
17927 L:      linux-parisc@vger.kernel.org
17928 S:      Orphan
17929 F:      drivers/net/ethernet/dec/tulip/
17930
17931 TUN/TAP driver
17932 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17933 S:      Maintained
17934 W:      http://vtun.sourceforge.net/tun
17935 F:      Documentation/networking/tuntap.rst
17936 F:      arch/um/os-Linux/drivers/
17937
17938 TURBOCHANNEL SUBSYSTEM
17939 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17940 M:      Ralf Baechle <ralf@linux-mips.org>
17941 L:      linux-mips@vger.kernel.org
17942 S:      Maintained
17943 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17944 F:      drivers/tc/
17945 F:      include/linux/tc.h
17946
17947 TURBOSTAT UTILITY
17948 M:      "Len Brown" <lenb@kernel.org>
17949 L:      linux-pm@vger.kernel.org
17950 S:      Supported
17951 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17952 B:      https://bugzilla.kernel.org
17953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17954 F:      tools/power/x86/turbostat/
17955
17956 TW5864 VIDEO4LINUX DRIVER
17957 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17958 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17959 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17960 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17961 L:      linux-media@vger.kernel.org
17962 S:      Supported
17963 F:      drivers/media/pci/tw5864/
17964
17965 TW68 VIDEO4LINUX DRIVER
17966 M:      Hans Verkuil <hverkuil@xs4all.nl>
17967 L:      linux-media@vger.kernel.org
17968 S:      Odd Fixes
17969 W:      https://linuxtv.org
17970 T:      git git://linuxtv.org/media_tree.git
17971 F:      drivers/media/pci/tw68/
17972
17973 TW686X VIDEO4LINUX DRIVER
17974 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17975 L:      linux-media@vger.kernel.org
17976 S:      Maintained
17977 W:      http://linuxtv.org
17978 T:      git git://linuxtv.org/media_tree.git
17979 F:      drivers/media/pci/tw686x/
17980
17981 UACCE ACCELERATOR FRAMEWORK
17982 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17983 M:      Zhou Wang <wangzhou1@hisilicon.com>
17984 L:      linux-accelerators@lists.ozlabs.org
17985 L:      linux-kernel@vger.kernel.org
17986 S:      Maintained
17987 F:      Documentation/ABI/testing/sysfs-driver-uacce
17988 F:      Documentation/misc-devices/uacce.rst
17989 F:      drivers/misc/uacce/
17990 F:      include/linux/uacce.h
17991 F:      include/uapi/misc/uacce/
17992
17993 UBI FILE SYSTEM (UBIFS)
17994 M:      Richard Weinberger <richard@nod.at>
17995 L:      linux-mtd@lists.infradead.org
17996 S:      Supported
17997 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18000 F:      Documentation/filesystems/ubifs-authentication.rst
18001 F:      Documentation/filesystems/ubifs.rst
18002 F:      fs/ubifs/
18003
18004 UCLINUX (M68KNOMMU AND COLDFIRE)
18005 M:      Greg Ungerer <gerg@linux-m68k.org>
18006 L:      linux-m68k@lists.linux-m68k.org
18007 L:      uclinux-dev@uclinux.org  (subscribers-only)
18008 S:      Maintained
18009 W:      http://www.linux-m68k.org/
18010 W:      http://www.uclinux.org/
18011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18012 F:      arch/m68k/*/*_no.*
18013 F:      arch/m68k/68*/
18014 F:      arch/m68k/coldfire/
18015 F:      arch/m68k/include/asm/*_no.*
18016
18017 UDF FILESYSTEM
18018 M:      Jan Kara <jack@suse.com>
18019 S:      Maintained
18020 F:      Documentation/filesystems/udf.rst
18021 F:      fs/udf/
18022
18023 UDRAW TABLET
18024 M:      Bastien Nocera <hadess@hadess.net>
18025 L:      linux-input@vger.kernel.org
18026 S:      Maintained
18027 F:      drivers/hid/hid-udraw-ps3.c
18028
18029 UFS FILESYSTEM
18030 M:      Evgeniy Dushistov <dushistov@mail.ru>
18031 S:      Maintained
18032 F:      Documentation/admin-guide/ufs.rst
18033 F:      fs/ufs/
18034
18035 UHID USERSPACE HID IO DRIVER
18036 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18037 L:      linux-input@vger.kernel.org
18038 S:      Maintained
18039 F:      drivers/hid/uhid.c
18040 F:      include/uapi/linux/uhid.h
18041
18042 ULPI BUS
18043 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18044 L:      linux-usb@vger.kernel.org
18045 S:      Maintained
18046 F:      drivers/usb/common/ulpi.c
18047 F:      include/linux/ulpi/
18048
18049 UNICODE SUBSYSTEM
18050 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18051 L:      linux-fsdevel@vger.kernel.org
18052 S:      Supported
18053 F:      fs/unicode/
18054
18055 UNIFDEF
18056 M:      Tony Finch <dot@dotat.at>
18057 S:      Maintained
18058 W:      http://dotat.at/prog/unifdef
18059 F:      scripts/unifdef.c
18060
18061 UNIFORM CDROM DRIVER
18062 M:      Jens Axboe <axboe@kernel.dk>
18063 S:      Maintained
18064 W:      http://www.kernel.dk
18065 F:      Documentation/cdrom/
18066 F:      drivers/cdrom/cdrom.c
18067 F:      include/linux/cdrom.h
18068 F:      include/uapi/linux/cdrom.h
18069
18070 UNISYS S-PAR DRIVERS
18071 M:      David Kershner <david.kershner@unisys.com>
18072 L:      sparmaintainer@unisys.com (Unisys internal)
18073 S:      Supported
18074 F:      drivers/staging/unisys/
18075 F:      drivers/visorbus/
18076 F:      include/linux/visorbus.h
18077
18078 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18079 R:      Alim Akhtar <alim.akhtar@samsung.com>
18080 R:      Avri Altman <avri.altman@wdc.com>
18081 L:      linux-scsi@vger.kernel.org
18082 S:      Supported
18083 F:      Documentation/scsi/ufs.rst
18084 F:      drivers/scsi/ufs/
18085
18086 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18087 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18088 L:      linux-scsi@vger.kernel.org
18089 S:      Supported
18090 F:      drivers/scsi/ufs/*dwc*
18091
18092 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18093 M:      Stanley Chu <stanley.chu@mediatek.com>
18094 L:      linux-scsi@vger.kernel.org
18095 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18096 S:      Maintained
18097 F:      drivers/scsi/ufs/ufs-mediatek*
18098
18099 UNSORTED BLOCK IMAGES (UBI)
18100 M:      Richard Weinberger <richard@nod.at>
18101 L:      linux-mtd@lists.infradead.org
18102 S:      Supported
18103 W:      http://www.linux-mtd.infradead.org/
18104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18106 F:      drivers/mtd/ubi/
18107 F:      include/linux/mtd/ubi.h
18108 F:      include/uapi/mtd/ubi-user.h
18109
18110 USB "USBNET" DRIVER FRAMEWORK
18111 M:      Oliver Neukum <oneukum@suse.com>
18112 L:      netdev@vger.kernel.org
18113 S:      Maintained
18114 W:      http://www.linux-usb.org/usbnet
18115 F:      drivers/net/usb/usbnet.c
18116 F:      include/linux/usb/usbnet.h
18117
18118 USB ACM DRIVER
18119 M:      Oliver Neukum <oneukum@suse.com>
18120 L:      linux-usb@vger.kernel.org
18121 S:      Maintained
18122 F:      Documentation/usb/acm.rst
18123 F:      drivers/usb/class/cdc-acm.*
18124
18125 USB APPLE MFI FASTCHARGE DRIVER
18126 M:      Bastien Nocera <hadess@hadess.net>
18127 L:      linux-usb@vger.kernel.org
18128 S:      Maintained
18129 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18130
18131 USB AR5523 WIRELESS DRIVER
18132 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18133 L:      linux-wireless@vger.kernel.org
18134 S:      Maintained
18135 F:      drivers/net/wireless/ath/ar5523/
18136
18137 USB ATTACHED SCSI
18138 M:      Oliver Neukum <oneukum@suse.com>
18139 L:      linux-usb@vger.kernel.org
18140 L:      linux-scsi@vger.kernel.org
18141 S:      Maintained
18142 F:      drivers/usb/storage/uas.c
18143
18144 USB CDC ETHERNET DRIVER
18145 M:      Oliver Neukum <oliver@neukum.org>
18146 L:      linux-usb@vger.kernel.org
18147 S:      Maintained
18148 F:      drivers/net/usb/cdc_*.c
18149 F:      include/uapi/linux/usb/cdc.h
18150
18151 USB CHAOSKEY DRIVER
18152 M:      Keith Packard <keithp@keithp.com>
18153 L:      linux-usb@vger.kernel.org
18154 S:      Maintained
18155 F:      drivers/usb/misc/chaoskey.c
18156
18157 USB CYPRESS C67X00 DRIVER
18158 M:      Peter Korsgaard <jacmet@sunsite.dk>
18159 L:      linux-usb@vger.kernel.org
18160 S:      Maintained
18161 F:      drivers/usb/c67x00/
18162
18163 USB DAVICOM DM9601 DRIVER
18164 M:      Peter Korsgaard <jacmet@sunsite.dk>
18165 L:      netdev@vger.kernel.org
18166 S:      Maintained
18167 W:      http://www.linux-usb.org/usbnet
18168 F:      drivers/net/usb/dm9601.c
18169
18170 USB EHCI DRIVER
18171 M:      Alan Stern <stern@rowland.harvard.edu>
18172 L:      linux-usb@vger.kernel.org
18173 S:      Maintained
18174 F:      Documentation/usb/ehci.rst
18175 F:      drivers/usb/host/ehci*
18176
18177 USB GADGET/PERIPHERAL SUBSYSTEM
18178 M:      Felipe Balbi <balbi@kernel.org>
18179 L:      linux-usb@vger.kernel.org
18180 S:      Maintained
18181 W:      http://www.linux-usb.org/gadget
18182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18183 F:      drivers/usb/gadget/
18184 F:      include/linux/usb/gadget*
18185
18186 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18187 M:      Jiri Kosina <jikos@kernel.org>
18188 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18189 L:      linux-usb@vger.kernel.org
18190 S:      Maintained
18191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18192 F:      Documentation/hid/hiddev.rst
18193 F:      drivers/hid/usbhid/
18194
18195 USB INTEL XHCI ROLE MUX DRIVER
18196 M:      Hans de Goede <hdegoede@redhat.com>
18197 L:      linux-usb@vger.kernel.org
18198 S:      Maintained
18199 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18200
18201 USB IP DRIVER FOR HISILICON KIRIN
18202 M:      Yu Chen <chenyu56@huawei.com>
18203 M:      Binghui Wang <wangbinghui@hisilicon.com>
18204 L:      linux-usb@vger.kernel.org
18205 S:      Maintained
18206 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18207 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18208
18209 USB ISP116X DRIVER
18210 M:      Olav Kongas <ok@artecdesign.ee>
18211 L:      linux-usb@vger.kernel.org
18212 S:      Maintained
18213 F:      drivers/usb/host/isp116x*
18214 F:      include/linux/usb/isp116x.h
18215
18216 USB LAN78XX ETHERNET DRIVER
18217 M:      Woojung Huh <woojung.huh@microchip.com>
18218 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18219 L:      netdev@vger.kernel.org
18220 S:      Maintained
18221 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18222 F:      drivers/net/usb/lan78xx.*
18223 F:      include/dt-bindings/net/microchip-lan78xx.h
18224
18225 USB MASS STORAGE DRIVER
18226 M:      Alan Stern <stern@rowland.harvard.edu>
18227 L:      linux-usb@vger.kernel.org
18228 L:      usb-storage@lists.one-eyed-alien.net
18229 S:      Maintained
18230 F:      drivers/usb/storage/
18231
18232 USB MIDI DRIVER
18233 M:      Clemens Ladisch <clemens@ladisch.de>
18234 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18235 S:      Maintained
18236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18237 F:      sound/usb/midi.*
18238
18239 USB NETWORKING DRIVERS
18240 L:      linux-usb@vger.kernel.org
18241 S:      Odd Fixes
18242 F:      drivers/net/usb/
18243
18244 USB OHCI DRIVER
18245 M:      Alan Stern <stern@rowland.harvard.edu>
18246 L:      linux-usb@vger.kernel.org
18247 S:      Maintained
18248 F:      Documentation/usb/ohci.rst
18249 F:      drivers/usb/host/ohci*
18250
18251 USB OTG FSM (Finite State Machine)
18252 M:      Peter Chen <Peter.Chen@nxp.com>
18253 L:      linux-usb@vger.kernel.org
18254 S:      Maintained
18255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18256 F:      drivers/usb/common/usb-otg-fsm.c
18257
18258 USB OVER IP DRIVER
18259 M:      Valentina Manea <valentina.manea.m@gmail.com>
18260 M:      Shuah Khan <shuah@kernel.org>
18261 M:      Shuah Khan <skhan@linuxfoundation.org>
18262 L:      linux-usb@vger.kernel.org
18263 S:      Maintained
18264 F:      Documentation/usb/usbip_protocol.rst
18265 F:      drivers/usb/usbip/
18266 F:      tools/testing/selftests/drivers/usb/usbip/
18267 F:      tools/usb/usbip/
18268
18269 USB PEGASUS DRIVER
18270 M:      Petko Manolov <petkan@nucleusys.com>
18271 L:      linux-usb@vger.kernel.org
18272 L:      netdev@vger.kernel.org
18273 S:      Maintained
18274 W:      https://github.com/petkan/pegasus
18275 T:      git git://github.com/petkan/pegasus.git
18276 F:      drivers/net/usb/pegasus.*
18277
18278 USB PHY LAYER
18279 M:      Felipe Balbi <balbi@kernel.org>
18280 L:      linux-usb@vger.kernel.org
18281 S:      Maintained
18282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18283 F:      drivers/usb/phy/
18284
18285 USB PRINTER DRIVER (usblp)
18286 M:      Pete Zaitcev <zaitcev@redhat.com>
18287 L:      linux-usb@vger.kernel.org
18288 S:      Supported
18289 F:      drivers/usb/class/usblp.c
18290
18291 USB RAW GADGET DRIVER
18292 R:      Andrey Konovalov <andreyknvl@gmail.com>
18293 L:      linux-usb@vger.kernel.org
18294 S:      Maintained
18295 F:      Documentation/usb/raw-gadget.rst
18296 F:      drivers/usb/gadget/legacy/raw_gadget.c
18297 F:      include/uapi/linux/usb/raw_gadget.h
18298
18299 USB QMI WWAN NETWORK DRIVER
18300 M:      Bjørn Mork <bjorn@mork.no>
18301 L:      netdev@vger.kernel.org
18302 S:      Maintained
18303 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18304 F:      drivers/net/usb/qmi_wwan.c
18305
18306 USB RTL8150 DRIVER
18307 M:      Petko Manolov <petkan@nucleusys.com>
18308 L:      linux-usb@vger.kernel.org
18309 L:      netdev@vger.kernel.org
18310 S:      Maintained
18311 W:      https://github.com/petkan/rtl8150
18312 T:      git git://github.com/petkan/rtl8150.git
18313 F:      drivers/net/usb/rtl8150.c
18314
18315 USB SERIAL SUBSYSTEM
18316 M:      Johan Hovold <johan@kernel.org>
18317 L:      linux-usb@vger.kernel.org
18318 S:      Maintained
18319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18320 F:      Documentation/usb/usb-serial.rst
18321 F:      drivers/usb/serial/
18322 F:      include/linux/usb/serial.h
18323
18324 USB SMSC75XX ETHERNET DRIVER
18325 M:      Steve Glendinning <steve.glendinning@shawell.net>
18326 L:      netdev@vger.kernel.org
18327 S:      Maintained
18328 F:      drivers/net/usb/smsc75xx.*
18329
18330 USB SMSC95XX ETHERNET DRIVER
18331 M:      Steve Glendinning <steve.glendinning@shawell.net>
18332 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18333 L:      netdev@vger.kernel.org
18334 S:      Maintained
18335 F:      drivers/net/usb/smsc95xx.*
18336
18337 USB SUBSYSTEM
18338 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18339 L:      linux-usb@vger.kernel.org
18340 S:      Supported
18341 W:      http://www.linux-usb.org
18342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18343 F:      Documentation/devicetree/bindings/usb/
18344 F:      Documentation/usb/
18345 F:      drivers/usb/
18346 F:      include/linux/usb.h
18347 F:      include/linux/usb/
18348
18349 USB TYPEC BUS FOR ALTERNATE MODES
18350 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18351 L:      linux-usb@vger.kernel.org
18352 S:      Maintained
18353 F:      Documentation/ABI/testing/sysfs-bus-typec
18354 F:      Documentation/driver-api/usb/typec_bus.rst
18355 F:      drivers/usb/typec/altmodes/
18356 F:      include/linux/usb/typec_altmode.h
18357
18358 USB TYPEC CLASS
18359 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18360 L:      linux-usb@vger.kernel.org
18361 S:      Maintained
18362 F:      Documentation/ABI/testing/sysfs-class-typec
18363 F:      Documentation/driver-api/usb/typec.rst
18364 F:      drivers/usb/typec/
18365 F:      include/linux/usb/typec.h
18366
18367 USB TYPEC INTEL PMC MUX DRIVER
18368 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18369 L:      linux-usb@vger.kernel.org
18370 S:      Maintained
18371 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18372 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18373
18374 USB TYPEC PI3USB30532 MUX DRIVER
18375 M:      Hans de Goede <hdegoede@redhat.com>
18376 L:      linux-usb@vger.kernel.org
18377 S:      Maintained
18378 F:      drivers/usb/typec/mux/pi3usb30532.c
18379
18380 USB TYPEC PORT CONTROLLER DRIVERS
18381 M:      Guenter Roeck <linux@roeck-us.net>
18382 L:      linux-usb@vger.kernel.org
18383 S:      Maintained
18384 F:      drivers/usb/typec/tcpm/
18385
18386 USB UHCI DRIVER
18387 M:      Alan Stern <stern@rowland.harvard.edu>
18388 L:      linux-usb@vger.kernel.org
18389 S:      Maintained
18390 F:      drivers/usb/host/uhci*
18391
18392 USB VIDEO CLASS
18393 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18394 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18395 L:      linux-media@vger.kernel.org
18396 S:      Maintained
18397 W:      http://www.ideasonboard.org/uvc/
18398 T:      git git://linuxtv.org/media_tree.git
18399 F:      drivers/media/usb/uvc/
18400 F:      include/uapi/linux/uvcvideo.h
18401
18402 USB WEBCAM GADGET
18403 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18404 L:      linux-usb@vger.kernel.org
18405 S:      Maintained
18406 F:      drivers/usb/gadget/function/*uvc*
18407 F:      drivers/usb/gadget/legacy/webcam.c
18408 F:      include/uapi/linux/usb/g_uvc.h
18409
18410 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18411 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18412 L:      linux-wireless@vger.kernel.org
18413 S:      Maintained
18414 F:      drivers/net/wireless/rndis_wlan.c
18415
18416 USB XHCI DRIVER
18417 M:      Mathias Nyman <mathias.nyman@intel.com>
18418 L:      linux-usb@vger.kernel.org
18419 S:      Supported
18420 F:      drivers/usb/host/pci-quirks*
18421 F:      drivers/usb/host/xhci*
18422
18423 USB ZD1201 DRIVER
18424 L:      linux-wireless@vger.kernel.org
18425 S:      Orphan
18426 W:      http://linux-lc100020.sourceforge.net
18427 F:      drivers/net/wireless/zydas/zd1201.*
18428
18429 USB ZR364XX DRIVER
18430 M:      Antoine Jacquet <royale@zerezo.com>
18431 L:      linux-usb@vger.kernel.org
18432 L:      linux-media@vger.kernel.org
18433 S:      Maintained
18434 W:      http://royale.zerezo.com/zr364xx/
18435 T:      git git://linuxtv.org/media_tree.git
18436 F:      Documentation/admin-guide/media/zr364xx*
18437 F:      drivers/media/usb/zr364xx/
18438
18439 USER-MODE LINUX (UML)
18440 M:      Jeff Dike <jdike@addtoit.com>
18441 M:      Richard Weinberger <richard@nod.at>
18442 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18443 L:      linux-um@lists.infradead.org
18444 S:      Maintained
18445 W:      http://user-mode-linux.sourceforge.net
18446 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18448 F:      Documentation/virt/uml/
18449 F:      arch/um/
18450 F:      arch/x86/um/
18451 F:      fs/hostfs/
18452
18453 USERSPACE COPYIN/COPYOUT (UIOVEC)
18454 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18455 S:      Maintained
18456 F:      include/linux/uio.h
18457 F:      lib/iov_iter.c
18458
18459 USERSPACE DMA BUFFER DRIVER
18460 M:      Gerd Hoffmann <kraxel@redhat.com>
18461 L:      dri-devel@lists.freedesktop.org
18462 S:      Maintained
18463 T:      git git://anongit.freedesktop.org/drm/drm-misc
18464 F:      drivers/dma-buf/udmabuf.c
18465 F:      include/uapi/linux/udmabuf.h
18466
18467 USERSPACE I/O (UIO)
18468 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18469 S:      Maintained
18470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18471 F:      Documentation/driver-api/uio-howto.rst
18472 F:      drivers/uio/
18473 F:      include/linux/uio_driver.h
18474
18475 UTIL-LINUX PACKAGE
18476 M:      Karel Zak <kzak@redhat.com>
18477 L:      util-linux@vger.kernel.org
18478 S:      Maintained
18479 W:      http://en.wikipedia.org/wiki/Util-linux
18480 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18481
18482 UUID HELPERS
18483 M:      Christoph Hellwig <hch@lst.de>
18484 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18485 L:      linux-kernel@vger.kernel.org
18486 S:      Maintained
18487 T:      git git://git.infradead.org/users/hch/uuid.git
18488 F:      include/linux/uuid.h
18489 F:      include/uapi/linux/uuid.h
18490 F:      lib/test_uuid.c
18491 F:      lib/uuid.c
18492
18493 UV SYSFS DRIVER
18494 M:      Justin Ernst <justin.ernst@hpe.com>
18495 L:      platform-driver-x86@vger.kernel.org
18496 S:      Maintained
18497 F:      drivers/platform/x86/uv_sysfs.c
18498
18499 UVESAFB DRIVER
18500 M:      Michal Januszewski <spock@gentoo.org>
18501 L:      linux-fbdev@vger.kernel.org
18502 S:      Maintained
18503 W:      https://github.com/mjanusz/v86d
18504 F:      Documentation/fb/uvesafb.rst
18505 F:      drivers/video/fbdev/uvesafb.*
18506
18507 Ux500 CLOCK DRIVERS
18508 M:      Ulf Hansson <ulf.hansson@linaro.org>
18509 L:      linux-clk@vger.kernel.org
18510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18511 S:      Maintained
18512 F:      drivers/clk/ux500/
18513
18514 VF610 NAND DRIVER
18515 M:      Stefan Agner <stefan@agner.ch>
18516 L:      linux-mtd@lists.infradead.org
18517 S:      Supported
18518 F:      drivers/mtd/nand/raw/vf610_nfc.c
18519
18520 VFAT/FAT/MSDOS FILESYSTEM
18521 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18522 S:      Maintained
18523 F:      Documentation/filesystems/vfat.rst
18524 F:      fs/fat/
18525
18526 VFIO DRIVER
18527 M:      Alex Williamson <alex.williamson@redhat.com>
18528 R:      Cornelia Huck <cohuck@redhat.com>
18529 L:      kvm@vger.kernel.org
18530 S:      Maintained
18531 T:      git git://github.com/awilliam/linux-vfio.git
18532 F:      Documentation/driver-api/vfio.rst
18533 F:      drivers/vfio/
18534 F:      include/linux/vfio.h
18535 F:      include/uapi/linux/vfio.h
18536
18537 VFIO FSL-MC DRIVER
18538 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18539 L:      kvm@vger.kernel.org
18540 S:      Maintained
18541 F:      drivers/vfio/fsl-mc/
18542
18543 VFIO MEDIATED DEVICE DRIVERS
18544 M:      Kirti Wankhede <kwankhede@nvidia.com>
18545 L:      kvm@vger.kernel.org
18546 S:      Maintained
18547 F:      Documentation/driver-api/vfio-mediated-device.rst
18548 F:      drivers/vfio/mdev/
18549 F:      include/linux/mdev.h
18550 F:      samples/vfio-mdev/
18551
18552 VFIO PLATFORM DRIVER
18553 M:      Eric Auger <eric.auger@redhat.com>
18554 L:      kvm@vger.kernel.org
18555 S:      Maintained
18556 F:      drivers/vfio/platform/
18557
18558 VGA_SWITCHEROO
18559 R:      Lukas Wunner <lukas@wunner.de>
18560 S:      Maintained
18561 T:      git git://anongit.freedesktop.org/drm/drm-misc
18562 F:      Documentation/gpu/vga-switcheroo.rst
18563 F:      drivers/gpu/vga/vga_switcheroo.c
18564 F:      include/linux/vga_switcheroo.h
18565
18566 VIA RHINE NETWORK DRIVER
18567 S:      Maintained
18568 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18569 F:      drivers/net/ethernet/via/via-rhine.c
18570
18571 VIA SD/MMC CARD CONTROLLER DRIVER
18572 M:      Bruce Chang <brucechang@via.com.tw>
18573 M:      Harald Welte <HaraldWelte@viatech.com>
18574 S:      Maintained
18575 F:      drivers/mmc/host/via-sdmmc.c
18576
18577 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18578 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18579 L:      linux-fbdev@vger.kernel.org
18580 S:      Maintained
18581 F:      drivers/video/fbdev/via/
18582 F:      include/linux/via-core.h
18583 F:      include/linux/via-gpio.h
18584 F:      include/linux/via_i2c.h
18585
18586 VIA VELOCITY NETWORK DRIVER
18587 M:      Francois Romieu <romieu@fr.zoreil.com>
18588 L:      netdev@vger.kernel.org
18589 S:      Maintained
18590 F:      drivers/net/ethernet/via/via-velocity.*
18591
18592 VICODEC VIRTUAL CODEC DRIVER
18593 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18594 L:      linux-media@vger.kernel.org
18595 S:      Maintained
18596 W:      https://linuxtv.org
18597 T:      git git://linuxtv.org/media_tree.git
18598 F:      drivers/media/test-drivers/vicodec/*
18599
18600 VIDEO I2C POLLING DRIVER
18601 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18602 L:      linux-media@vger.kernel.org
18603 S:      Maintained
18604 F:      drivers/media/i2c/video-i2c.c
18605
18606 VIDEO MULTIPLEXER DRIVER
18607 M:      Philipp Zabel <p.zabel@pengutronix.de>
18608 L:      linux-media@vger.kernel.org
18609 S:      Maintained
18610 F:      drivers/media/platform/video-mux.c
18611
18612 VIDEOBUF2 FRAMEWORK
18613 M:      Tomasz Figa <tfiga@chromium.org>
18614 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18615 L:      linux-media@vger.kernel.org
18616 S:      Maintained
18617 F:      drivers/media/common/videobuf2/*
18618 F:      include/media/videobuf2-*
18619
18620 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18621 M:      Helen Koike <helen.koike@collabora.com>
18622 R:      Shuah Khan <skhan@linuxfoundation.org>
18623 L:      linux-media@vger.kernel.org
18624 S:      Maintained
18625 W:      https://linuxtv.org
18626 T:      git git://linuxtv.org/media_tree.git
18627 F:      drivers/media/test-drivers/vimc/*
18628
18629 VIRT LIB
18630 M:      Alex Williamson <alex.williamson@redhat.com>
18631 M:      Paolo Bonzini <pbonzini@redhat.com>
18632 L:      kvm@vger.kernel.org
18633 S:      Supported
18634 F:      virt/lib/
18635
18636 VIRTIO AND VHOST VSOCK DRIVER
18637 M:      Stefan Hajnoczi <stefanha@redhat.com>
18638 M:      Stefano Garzarella <sgarzare@redhat.com>
18639 L:      kvm@vger.kernel.org
18640 L:      virtualization@lists.linux-foundation.org
18641 L:      netdev@vger.kernel.org
18642 S:      Maintained
18643 F:      drivers/net/vsockmon.c
18644 F:      drivers/vhost/vsock.c
18645 F:      include/linux/virtio_vsock.h
18646 F:      include/uapi/linux/virtio_vsock.h
18647 F:      include/uapi/linux/vm_sockets_diag.h
18648 F:      include/uapi/linux/vsockmon.h
18649 F:      net/vmw_vsock/af_vsock_tap.c
18650 F:      net/vmw_vsock/diag.c
18651 F:      net/vmw_vsock/virtio_transport.c
18652 F:      net/vmw_vsock/virtio_transport_common.c
18653 F:      net/vmw_vsock/vsock_loopback.c
18654 F:      tools/testing/vsock/
18655
18656 VIRTIO BLOCK AND SCSI DRIVERS
18657 M:      "Michael S. Tsirkin" <mst@redhat.com>
18658 M:      Jason Wang <jasowang@redhat.com>
18659 R:      Paolo Bonzini <pbonzini@redhat.com>
18660 R:      Stefan Hajnoczi <stefanha@redhat.com>
18661 L:      virtualization@lists.linux-foundation.org
18662 S:      Maintained
18663 F:      drivers/block/virtio_blk.c
18664 F:      drivers/scsi/virtio_scsi.c
18665 F:      drivers/vhost/scsi.c
18666 F:      include/uapi/linux/virtio_blk.h
18667 F:      include/uapi/linux/virtio_scsi.h
18668
18669 VIRTIO CONSOLE DRIVER
18670 M:      Amit Shah <amit@kernel.org>
18671 L:      virtualization@lists.linux-foundation.org
18672 S:      Maintained
18673 F:      drivers/char/virtio_console.c
18674 F:      include/linux/virtio_console.h
18675 F:      include/uapi/linux/virtio_console.h
18676
18677 VIRTIO CORE AND NET DRIVERS
18678 M:      "Michael S. Tsirkin" <mst@redhat.com>
18679 M:      Jason Wang <jasowang@redhat.com>
18680 L:      virtualization@lists.linux-foundation.org
18681 S:      Maintained
18682 F:      Documentation/devicetree/bindings/virtio/
18683 F:      drivers/block/virtio_blk.c
18684 F:      drivers/crypto/virtio/
18685 F:      drivers/net/virtio_net.c
18686 F:      drivers/vdpa/
18687 F:      drivers/virtio/
18688 F:      include/linux/vdpa.h
18689 F:      include/linux/virtio*.h
18690 F:      include/uapi/linux/virtio_*.h
18691 F:      tools/virtio/
18692
18693 VIRTIO BALLOON
18694 M:      "Michael S. Tsirkin" <mst@redhat.com>
18695 M:      David Hildenbrand <david@redhat.com>
18696 L:      virtualization@lists.linux-foundation.org
18697 S:      Maintained
18698 F:      drivers/virtio/virtio_balloon.c
18699 F:      include/uapi/linux/virtio_balloon.h
18700 F:      include/linux/balloon_compaction.h
18701 F:      mm/balloon_compaction.c
18702
18703 VIRTIO CRYPTO DRIVER
18704 M:      Gonglei <arei.gonglei@huawei.com>
18705 L:      virtualization@lists.linux-foundation.org
18706 L:      linux-crypto@vger.kernel.org
18707 S:      Maintained
18708 F:      drivers/crypto/virtio/
18709 F:      include/uapi/linux/virtio_crypto.h
18710
18711 VIRTIO DRIVERS FOR S390
18712 M:      Cornelia Huck <cohuck@redhat.com>
18713 M:      Halil Pasic <pasic@linux.ibm.com>
18714 L:      linux-s390@vger.kernel.org
18715 L:      virtualization@lists.linux-foundation.org
18716 L:      kvm@vger.kernel.org
18717 S:      Supported
18718 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18719 F:      drivers/s390/virtio/
18720
18721 VIRTIO FILE SYSTEM
18722 M:      Vivek Goyal <vgoyal@redhat.com>
18723 M:      Stefan Hajnoczi <stefanha@redhat.com>
18724 M:      Miklos Szeredi <miklos@szeredi.hu>
18725 L:      virtualization@lists.linux-foundation.org
18726 L:      linux-fsdevel@vger.kernel.org
18727 S:      Supported
18728 W:      https://virtio-fs.gitlab.io/
18729 F:      Documentation/filesystems/virtiofs.rst
18730 F:      fs/fuse/virtio_fs.c
18731 F:      include/uapi/linux/virtio_fs.h
18732
18733 VIRTIO GPU DRIVER
18734 M:      David Airlie <airlied@linux.ie>
18735 M:      Gerd Hoffmann <kraxel@redhat.com>
18736 L:      dri-devel@lists.freedesktop.org
18737 L:      virtualization@lists.linux-foundation.org
18738 S:      Maintained
18739 T:      git git://anongit.freedesktop.org/drm/drm-misc
18740 F:      drivers/gpu/drm/virtio/
18741 F:      include/uapi/linux/virtio_gpu.h
18742
18743 VIRTIO HOST (VHOST)
18744 M:      "Michael S. Tsirkin" <mst@redhat.com>
18745 M:      Jason Wang <jasowang@redhat.com>
18746 L:      kvm@vger.kernel.org
18747 L:      virtualization@lists.linux-foundation.org
18748 L:      netdev@vger.kernel.org
18749 S:      Maintained
18750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18751 F:      drivers/vhost/
18752 F:      include/linux/vhost_iotlb.h
18753 F:      include/uapi/linux/vhost.h
18754
18755 VIRTIO INPUT DRIVER
18756 M:      Gerd Hoffmann <kraxel@redhat.com>
18757 S:      Maintained
18758 F:      drivers/virtio/virtio_input.c
18759 F:      include/uapi/linux/virtio_input.h
18760
18761 VIRTIO IOMMU DRIVER
18762 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18763 L:      virtualization@lists.linux-foundation.org
18764 S:      Maintained
18765 F:      drivers/iommu/virtio-iommu.c
18766 F:      include/uapi/linux/virtio_iommu.h
18767
18768 VIRTIO MEM DRIVER
18769 M:      David Hildenbrand <david@redhat.com>
18770 L:      virtualization@lists.linux-foundation.org
18771 S:      Maintained
18772 W:      https://virtio-mem.gitlab.io/
18773 F:      drivers/virtio/virtio_mem.c
18774 F:      include/uapi/linux/virtio_mem.h
18775
18776 VIRTUAL BOX GUEST DEVICE DRIVER
18777 M:      Hans de Goede <hdegoede@redhat.com>
18778 M:      Arnd Bergmann <arnd@arndb.de>
18779 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18780 S:      Maintained
18781 F:      drivers/virt/vboxguest/
18782 F:      include/linux/vbox_utils.h
18783 F:      include/uapi/linux/vbox*.h
18784
18785 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18786 M:      Hans de Goede <hdegoede@redhat.com>
18787 L:      linux-fsdevel@vger.kernel.org
18788 S:      Maintained
18789 F:      fs/vboxsf/*
18790
18791 VIRTUAL SERIO DEVICE DRIVER
18792 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18793 S:      Maintained
18794 F:      drivers/input/serio/userio.c
18795 F:      include/uapi/linux/userio.h
18796
18797 VIVID VIRTUAL VIDEO DRIVER
18798 M:      Hans Verkuil <hverkuil@xs4all.nl>
18799 L:      linux-media@vger.kernel.org
18800 S:      Maintained
18801 W:      https://linuxtv.org
18802 T:      git git://linuxtv.org/media_tree.git
18803 F:      drivers/media/test-drivers/vivid/*
18804
18805 VIDTV VIRTUAL DIGITAL TV DRIVER
18806 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
18807 L:      linux-media@vger.kernel.org
18808 S:      Maintained
18809 W:      https://linuxtv.org
18810 T:      git git://linuxtv.org/media_tree.git
18811 F:      drivers/media/test-drivers/vidtv/*
18812
18813 VLYNQ BUS
18814 M:      Florian Fainelli <f.fainelli@gmail.com>
18815 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18816 S:      Maintained
18817 F:      drivers/vlynq/vlynq.c
18818 F:      include/linux/vlynq.h
18819
18820 VME SUBSYSTEM
18821 M:      Martyn Welch <martyn@welchs.me.uk>
18822 M:      Manohar Vanga <manohar.vanga@gmail.com>
18823 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18824 L:      devel@driverdev.osuosl.org
18825 S:      Maintained
18826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18827 F:      Documentation/driver-api/vme.rst
18828 F:      drivers/staging/vme/
18829 F:      drivers/vme/
18830 F:      include/linux/vme*
18831
18832 VMWARE BALLOON DRIVER
18833 M:      Nadav Amit <namit@vmware.com>
18834 M:      "VMware, Inc." <pv-drivers@vmware.com>
18835 L:      linux-kernel@vger.kernel.org
18836 S:      Maintained
18837 F:      drivers/misc/vmw_balloon.c
18838
18839 VMWARE HYPERVISOR INTERFACE
18840 M:      Deep Shah <sdeep@vmware.com>
18841 M:      "VMware, Inc." <pv-drivers@vmware.com>
18842 L:      virtualization@lists.linux-foundation.org
18843 S:      Supported
18844 F:      arch/x86/include/asm/vmware.h
18845 F:      arch/x86/kernel/cpu/vmware.c
18846
18847 VMWARE PVRDMA DRIVER
18848 M:      Adit Ranadive <aditr@vmware.com>
18849 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18850 L:      linux-rdma@vger.kernel.org
18851 S:      Maintained
18852 F:      drivers/infiniband/hw/vmw_pvrdma/
18853
18854 VMware PVSCSI driver
18855 M:      Jim Gill <jgill@vmware.com>
18856 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18857 L:      linux-scsi@vger.kernel.org
18858 S:      Maintained
18859 F:      drivers/scsi/vmw_pvscsi.c
18860 F:      drivers/scsi/vmw_pvscsi.h
18861
18862 VMWARE VIRTUAL PTP CLOCK DRIVER
18863 M:      Vivek Thampi <vithampi@vmware.com>
18864 M:      "VMware, Inc." <pv-drivers@vmware.com>
18865 L:      netdev@vger.kernel.org
18866 S:      Supported
18867 F:      drivers/ptp/ptp_vmw.c
18868
18869 VMWARE VMMOUSE SUBDRIVER
18870 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18871 M:      "VMware, Inc." <pv-drivers@vmware.com>
18872 L:      linux-input@vger.kernel.org
18873 S:      Maintained
18874 F:      drivers/input/mouse/vmmouse.c
18875 F:      drivers/input/mouse/vmmouse.h
18876
18877 VMWARE VMXNET3 ETHERNET DRIVER
18878 M:      Ronak Doshi <doshir@vmware.com>
18879 M:      "VMware, Inc." <pv-drivers@vmware.com>
18880 L:      netdev@vger.kernel.org
18881 S:      Maintained
18882 F:      drivers/net/vmxnet3/
18883
18884 VOCORE VOCORE2 BOARD
18885 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18886 L:      linux-mips@vger.kernel.org
18887 S:      Maintained
18888 F:      arch/mips/boot/dts/ralink/vocore2.dts
18889
18890 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18891 M:      Liam Girdwood <lgirdwood@gmail.com>
18892 M:      Mark Brown <broonie@kernel.org>
18893 L:      linux-kernel@vger.kernel.org
18894 S:      Supported
18895 W:      http://www.slimlogic.co.uk/?p=48
18896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18897 F:      Documentation/devicetree/bindings/regulator/
18898 F:      Documentation/power/regulator/
18899 F:      drivers/regulator/
18900 F:      include/dt-bindings/regulator/
18901 F:      include/linux/regulator/
18902 K:      regulator_get_optional
18903
18904 VRF
18905 M:      David Ahern <dsahern@kernel.org>
18906 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18907 L:      netdev@vger.kernel.org
18908 S:      Maintained
18909 F:      Documentation/networking/vrf.rst
18910 F:      drivers/net/vrf.c
18911
18912 VSPRINTF
18913 M:      Petr Mladek <pmladek@suse.com>
18914 M:      Steven Rostedt <rostedt@goodmis.org>
18915 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18916 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18917 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18918 S:      Maintained
18919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18920 F:      Documentation/core-api/printk-formats.rst
18921 F:      lib/test_printf.c
18922 F:      lib/vsprintf.c
18923
18924 VT1211 HARDWARE MONITOR DRIVER
18925 M:      Juerg Haefliger <juergh@gmail.com>
18926 L:      linux-hwmon@vger.kernel.org
18927 S:      Maintained
18928 F:      Documentation/hwmon/vt1211.rst
18929 F:      drivers/hwmon/vt1211.c
18930
18931 VT8231 HARDWARE MONITOR DRIVER
18932 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18933 L:      linux-hwmon@vger.kernel.org
18934 S:      Maintained
18935 F:      drivers/hwmon/vt8231.c
18936
18937 VUB300 USB to SDIO/SD/MMC bridge chip
18938 L:      linux-mmc@vger.kernel.org
18939 S:      Orphan
18940 F:      drivers/mmc/host/vub300.c
18941
18942 W1 DALLAS'S 1-WIRE BUS
18943 M:      Evgeniy Polyakov <zbr@ioremap.net>
18944 S:      Maintained
18945 F:      Documentation/devicetree/bindings/w1/
18946 F:      Documentation/w1/
18947 F:      drivers/w1/
18948 F:      include/linux/w1.h
18949
18950 W83791D HARDWARE MONITORING DRIVER
18951 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18952 L:      linux-hwmon@vger.kernel.org
18953 S:      Maintained
18954 F:      Documentation/hwmon/w83791d.rst
18955 F:      drivers/hwmon/w83791d.c
18956
18957 W83793 HARDWARE MONITORING DRIVER
18958 M:      Rudolf Marek <r.marek@assembler.cz>
18959 L:      linux-hwmon@vger.kernel.org
18960 S:      Maintained
18961 F:      Documentation/hwmon/w83793.rst
18962 F:      drivers/hwmon/w83793.c
18963
18964 W83795 HARDWARE MONITORING DRIVER
18965 M:      Jean Delvare <jdelvare@suse.com>
18966 L:      linux-hwmon@vger.kernel.org
18967 S:      Maintained
18968 F:      drivers/hwmon/w83795.c
18969
18970 W83L51xD SD/MMC CARD INTERFACE DRIVER
18971 M:      Pierre Ossman <pierre@ossman.eu>
18972 S:      Maintained
18973 F:      drivers/mmc/host/wbsd.*
18974
18975 WACOM PROTOCOL 4 SERIAL TABLETS
18976 M:      Julian Squires <julian@cipht.net>
18977 M:      Hans de Goede <hdegoede@redhat.com>
18978 L:      linux-input@vger.kernel.org
18979 S:      Maintained
18980 F:      drivers/input/tablet/wacom_serial4.c
18981
18982 WATCHDOG DEVICE DRIVERS
18983 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18984 M:      Guenter Roeck <linux@roeck-us.net>
18985 L:      linux-watchdog@vger.kernel.org
18986 S:      Maintained
18987 W:      http://www.linux-watchdog.org/
18988 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18989 F:      Documentation/devicetree/bindings/watchdog/
18990 F:      Documentation/watchdog/
18991 F:      drivers/watchdog/
18992 F:      include/linux/watchdog.h
18993 F:      include/uapi/linux/watchdog.h
18994
18995 WHISKEYCOVE PMIC GPIO DRIVER
18996 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18997 L:      linux-gpio@vger.kernel.org
18998 S:      Maintained
18999 F:      drivers/gpio/gpio-wcove.c
19000
19001 WHWAVE RTC DRIVER
19002 M:      Dianlong Li <long17.cool@163.com>
19003 L:      linux-rtc@vger.kernel.org
19004 S:      Maintained
19005 F:      drivers/rtc/rtc-sd3078.c
19006
19007 WIIMOTE HID DRIVER
19008 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19009 L:      linux-input@vger.kernel.org
19010 S:      Maintained
19011 F:      drivers/hid/hid-wiimote*
19012
19013 WILOCITY WIL6210 WIRELESS DRIVER
19014 M:      Maya Erez <merez@codeaurora.org>
19015 L:      linux-wireless@vger.kernel.org
19016 L:      wil6210@qti.qualcomm.com
19017 S:      Supported
19018 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19019 F:      drivers/net/wireless/ath/wil6210/
19020
19021 WINBOND CIR DRIVER
19022 M:      David Härdeman <david@hardeman.nu>
19023 S:      Maintained
19024 F:      drivers/media/rc/winbond-cir.c
19025
19026 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19027 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19028 L:      linux-watchdog@vger.kernel.org
19029 S:      Maintained
19030 F:      drivers/watchdog/ebc-c384_wdt.c
19031
19032 WINSYSTEMS WS16C48 GPIO DRIVER
19033 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19034 L:      linux-gpio@vger.kernel.org
19035 S:      Maintained
19036 F:      drivers/gpio/gpio-ws16c48.c
19037
19038 WIREGUARD SECURE NETWORK TUNNEL
19039 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19040 L:      wireguard@lists.zx2c4.com
19041 L:      netdev@vger.kernel.org
19042 S:      Maintained
19043 F:      drivers/net/wireguard/
19044 F:      tools/testing/selftests/wireguard/
19045
19046 WISTRON LAPTOP BUTTON DRIVER
19047 M:      Miloslav Trmac <mitr@volny.cz>
19048 S:      Maintained
19049 F:      drivers/input/misc/wistron_btns.c
19050
19051 WL3501 WIRELESS PCMCIA CARD DRIVER
19052 L:      linux-wireless@vger.kernel.org
19053 S:      Odd fixes
19054 F:      drivers/net/wireless/wl3501*
19055
19056 WOLFSON MICROELECTRONICS DRIVERS
19057 L:      patches@opensource.cirrus.com
19058 S:      Supported
19059 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19060 T:      git https://github.com/CirrusLogic/linux-drivers.git
19061 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19062 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19063 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19064 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19065 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19066 F:      Documentation/hwmon/wm83??.rst
19067 F:      arch/arm/mach-s3c/mach-crag6410*
19068 F:      drivers/clk/clk-wm83*.c
19069 F:      drivers/extcon/extcon-arizona.c
19070 F:      drivers/gpio/gpio-*wm*.c
19071 F:      drivers/gpio/gpio-arizona.c
19072 F:      drivers/hwmon/wm83??-hwmon.c
19073 F:      drivers/input/misc/wm831x-on.c
19074 F:      drivers/input/touchscreen/wm831x-ts.c
19075 F:      drivers/input/touchscreen/wm97*.c
19076 F:      drivers/leds/leds-wm83*.c
19077 F:      drivers/mfd/arizona*
19078 F:      drivers/mfd/cs47l24*
19079 F:      drivers/mfd/wm*.c
19080 F:      drivers/power/supply/wm83*.c
19081 F:      drivers/regulator/arizona*
19082 F:      drivers/regulator/wm8*.c
19083 F:      drivers/rtc/rtc-wm83*.c
19084 F:      drivers/video/backlight/wm83*_bl.c
19085 F:      drivers/watchdog/wm83*_wdt.c
19086 F:      include/linux/mfd/arizona/
19087 F:      include/linux/mfd/wm831x/
19088 F:      include/linux/mfd/wm8350/
19089 F:      include/linux/mfd/wm8400*
19090 F:      include/linux/regulator/arizona*
19091 F:      include/linux/wm97xx.h
19092 F:      include/sound/wm????.h
19093 F:      sound/soc/codecs/arizona.?
19094 F:      sound/soc/codecs/cs47l24*
19095 F:      sound/soc/codecs/wm*
19096
19097 WORKQUEUE
19098 M:      Tejun Heo <tj@kernel.org>
19099 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19100 S:      Maintained
19101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19102 F:      Documentation/core-api/workqueue.rst
19103 F:      include/linux/workqueue.h
19104 F:      kernel/workqueue.c
19105
19106 X-POWERS AXP288 PMIC DRIVERS
19107 M:      Hans de Goede <hdegoede@redhat.com>
19108 S:      Maintained
19109 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19110 N:      axp288
19111
19112 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19113 M:      Chen-Yu Tsai <wens@csie.org>
19114 L:      linux-kernel@vger.kernel.org
19115 S:      Maintained
19116 N:      axp[128]
19117
19118 X.25 STACK
19119 M:      Martin Schiller <ms@dev.tdt.de>
19120 L:      linux-x25@vger.kernel.org
19121 S:      Maintained
19122 F:      Documentation/networking/lapb-module.rst
19123 F:      Documentation/networking/x25*
19124 F:      drivers/net/wan/hdlc_x25.c
19125 F:      drivers/net/wan/lapbether.c
19126 F:      include/*/lapb.h
19127 F:      include/net/x25*
19128 F:      include/uapi/linux/x25.h
19129 F:      net/lapb/
19130 F:      net/x25/
19131
19132 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19133 M:      Thomas Gleixner <tglx@linutronix.de>
19134 M:      Ingo Molnar <mingo@redhat.com>
19135 M:      Borislav Petkov <bp@alien8.de>
19136 M:      x86@kernel.org
19137 R:      "H. Peter Anvin" <hpa@zytor.com>
19138 L:      linux-kernel@vger.kernel.org
19139 S:      Maintained
19140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19141 F:      Documentation/devicetree/bindings/x86/
19142 F:      Documentation/x86/
19143 F:      arch/x86/
19144
19145 X86 ENTRY CODE
19146 M:      Andy Lutomirski <luto@kernel.org>
19147 L:      linux-kernel@vger.kernel.org
19148 S:      Maintained
19149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19150 F:      arch/x86/entry/
19151
19152 X86 MCE INFRASTRUCTURE
19153 M:      Tony Luck <tony.luck@intel.com>
19154 M:      Borislav Petkov <bp@alien8.de>
19155 L:      linux-edac@vger.kernel.org
19156 S:      Maintained
19157 F:      arch/x86/kernel/cpu/mce/*
19158
19159 X86 MICROCODE UPDATE SUPPORT
19160 M:      Borislav Petkov <bp@alien8.de>
19161 S:      Maintained
19162 F:      arch/x86/kernel/cpu/microcode/*
19163
19164 X86 MM
19165 M:      Dave Hansen <dave.hansen@linux.intel.com>
19166 M:      Andy Lutomirski <luto@kernel.org>
19167 M:      Peter Zijlstra <peterz@infradead.org>
19168 L:      linux-kernel@vger.kernel.org
19169 S:      Maintained
19170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19171 F:      arch/x86/mm/
19172
19173 X86 PLATFORM DRIVERS
19174 M:      Hans de Goede <hdegoede@redhat.com>
19175 M:      Mark Gross <mgross@linux.intel.com>
19176 L:      platform-driver-x86@vger.kernel.org
19177 S:      Maintained
19178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19179 F:      drivers/platform/olpc/
19180 F:      drivers/platform/x86/
19181
19182 X86 PLATFORM DRIVERS - ARCH
19183 R:      Darren Hart <dvhart@infradead.org>
19184 R:      Andy Shevchenko <andy@infradead.org>
19185 L:      platform-driver-x86@vger.kernel.org
19186 L:      x86@kernel.org
19187 S:      Maintained
19188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19189 F:      arch/x86/platform
19190
19191 X86 PLATFORM UV HPE SUPERDOME FLEX
19192 M:      Steve Wahl <steve.wahl@hpe.com>
19193 R:      Mike Travis <mike.travis@hpe.com>
19194 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19195 R:      Russ Anderson <russ.anderson@hpe.com>
19196 S:      Supported
19197 F:      arch/x86/include/asm/uv/
19198 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19199 F:      arch/x86/platform/uv/
19200
19201 X86 VDSO
19202 M:      Andy Lutomirski <luto@kernel.org>
19203 L:      linux-kernel@vger.kernel.org
19204 S:      Maintained
19205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19206 F:      arch/x86/entry/vdso/
19207
19208 XARRAY
19209 M:      Matthew Wilcox <willy@infradead.org>
19210 L:      linux-fsdevel@vger.kernel.org
19211 S:      Supported
19212 F:      Documentation/core-api/xarray.rst
19213 F:      include/linux/idr.h
19214 F:      include/linux/xarray.h
19215 F:      lib/idr.c
19216 F:      lib/xarray.c
19217 F:      tools/testing/radix-tree
19218
19219 XBOX DVD IR REMOTE
19220 M:      Benjamin Valentin <benpicco@googlemail.com>
19221 S:      Maintained
19222 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19223 F:      drivers/media/rc/xbox_remote.c
19224
19225 XC2028/3028 TUNER DRIVER
19226 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19227 L:      linux-media@vger.kernel.org
19228 S:      Maintained
19229 W:      https://linuxtv.org
19230 T:      git git://linuxtv.org/media_tree.git
19231 F:      drivers/media/tuners/tuner-xc2028.*
19232
19233 XDP (eXpress Data Path)
19234 M:      Alexei Starovoitov <ast@kernel.org>
19235 M:      Daniel Borkmann <daniel@iogearbox.net>
19236 M:      David S. Miller <davem@davemloft.net>
19237 M:      Jakub Kicinski <kuba@kernel.org>
19238 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19239 M:      John Fastabend <john.fastabend@gmail.com>
19240 L:      netdev@vger.kernel.org
19241 L:      bpf@vger.kernel.org
19242 S:      Supported
19243 F:      include/net/xdp.h
19244 F:      include/net/xdp_priv.h
19245 F:      include/trace/events/xdp.h
19246 F:      kernel/bpf/cpumap.c
19247 F:      kernel/bpf/devmap.c
19248 F:      net/core/xdp.c
19249 F:      samples/bpf/xdp*
19250 F:      tools/testing/selftests/bpf/*xdp*
19251 F:      tools/testing/selftests/bpf/*/*xdp*
19252 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19253 F:      drivers/net/ethernet/*/*/*xdp*
19254 K:      (?:\b|_)xdp(?:\b|_)
19255
19256 XDP SOCKETS (AF_XDP)
19257 M:      Björn Töpel <bjorn.topel@intel.com>
19258 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19259 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19260 L:      netdev@vger.kernel.org
19261 L:      bpf@vger.kernel.org
19262 S:      Maintained
19263 F:      Documentation/networking/af_xdp.rst
19264 F:      include/net/xdp_sock*
19265 F:      include/net/xsk_buff_pool.h
19266 F:      include/uapi/linux/if_xdp.h
19267 F:      include/uapi/linux/xdp_diag.h
19268 F:      include/net/netns/xdp.h
19269 F:      net/xdp/
19270 F:      samples/bpf/xdpsock*
19271 F:      tools/lib/bpf/xsk*
19272
19273 XEN BLOCK SUBSYSTEM
19274 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19275 M:      Roger Pau Monné <roger.pau@citrix.com>
19276 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19277 S:      Supported
19278 F:      drivers/block/xen*
19279 F:      drivers/block/xen-blkback/*
19280
19281 XEN HYPERVISOR ARM
19282 M:      Stefano Stabellini <sstabellini@kernel.org>
19283 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19284 S:      Maintained
19285 F:      arch/arm/include/asm/xen/
19286 F:      arch/arm/xen/
19287
19288 XEN HYPERVISOR ARM64
19289 M:      Stefano Stabellini <sstabellini@kernel.org>
19290 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19291 S:      Maintained
19292 F:      arch/arm64/include/asm/xen/
19293 F:      arch/arm64/xen/
19294
19295 XEN HYPERVISOR INTERFACE
19296 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19297 M:      Juergen Gross <jgross@suse.com>
19298 R:      Stefano Stabellini <sstabellini@kernel.org>
19299 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19300 S:      Supported
19301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19302 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19303 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19304 F:      arch/x86/include/asm/pvclock-abi.h
19305 F:      arch/x86/include/asm/xen/
19306 F:      arch/x86/platform/pvh/
19307 F:      arch/x86/xen/
19308 F:      drivers/*/xen-*front.c
19309 F:      drivers/xen/
19310 F:      include/uapi/xen/
19311 F:      include/xen/
19312
19313 XEN NETWORK BACKEND DRIVER
19314 M:      Wei Liu <wei.liu@kernel.org>
19315 M:      Paul Durrant <paul@xen.org>
19316 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19317 L:      netdev@vger.kernel.org
19318 S:      Supported
19319 F:      drivers/net/xen-netback/*
19320
19321 XEN PCI SUBSYSTEM
19322 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19323 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19324 S:      Supported
19325 F:      arch/x86/pci/*xen*
19326 F:      drivers/pci/*xen*
19327
19328 XEN PVSCSI DRIVERS
19329 M:      Juergen Gross <jgross@suse.com>
19330 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19331 L:      linux-scsi@vger.kernel.org
19332 S:      Supported
19333 F:      drivers/scsi/xen-scsifront.c
19334 F:      drivers/xen/xen-scsiback.c
19335 F:      include/xen/interface/io/vscsiif.h
19336
19337 XEN SOUND FRONTEND DRIVER
19338 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19339 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19340 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19341 S:      Supported
19342 F:      sound/xen/*
19343
19344 XEN SWIOTLB SUBSYSTEM
19345 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19346 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19347 L:      iommu@lists.linux-foundation.org
19348 S:      Supported
19349 F:      arch/x86/xen/*swiotlb*
19350 F:      drivers/xen/*swiotlb*
19351
19352 XFS FILESYSTEM
19353 M:      Darrick J. Wong <darrick.wong@oracle.com>
19354 M:      linux-xfs@vger.kernel.org
19355 L:      linux-xfs@vger.kernel.org
19356 S:      Supported
19357 W:      http://xfs.org/
19358 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19359 F:      Documentation/ABI/testing/sysfs-fs-xfs
19360 F:      Documentation/admin-guide/xfs.rst
19361 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19362 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19363 F:      fs/xfs/
19364 F:      include/uapi/linux/dqblk_xfs.h
19365 F:      include/uapi/linux/fsmap.h
19366
19367 XILINX AXI ETHERNET DRIVER
19368 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19369 S:      Maintained
19370 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19371
19372 XILINX CAN DRIVER
19373 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19374 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19375 L:      linux-can@vger.kernel.org
19376 S:      Maintained
19377 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19378 F:      drivers/net/can/xilinx_can.c
19379
19380 XILINX SD-FEC IP CORES
19381 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19382 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19383 S:      Maintained
19384 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19385 F:      Documentation/misc-devices/xilinx_sdfec.rst
19386 F:      drivers/misc/Kconfig
19387 F:      drivers/misc/Makefile
19388 F:      drivers/misc/xilinx_sdfec.c
19389 F:      include/uapi/misc/xilinx_sdfec.h
19390
19391 XILINX UARTLITE SERIAL DRIVER
19392 M:      Peter Korsgaard <jacmet@sunsite.dk>
19393 L:      linux-serial@vger.kernel.org
19394 S:      Maintained
19395 F:      drivers/tty/serial/uartlite.c
19396
19397 XILINX VIDEO IP CORES
19398 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19399 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19400 L:      linux-media@vger.kernel.org
19401 S:      Supported
19402 T:      git git://linuxtv.org/media_tree.git
19403 F:      Documentation/devicetree/bindings/media/xilinx/
19404 F:      drivers/media/platform/xilinx/
19405 F:      include/uapi/linux/xilinx-v4l2-controls.h
19406
19407 XILINX ZYNQMP DPDMA DRIVER
19408 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19409 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19410 L:      dmaengine@vger.kernel.org
19411 S:      Supported
19412 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19413 F:      drivers/dma/xilinx/xilinx_dpdma.c
19414 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19415
19416 XILINX ZYNQMP PSGTR PHY DRIVER
19417 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19418 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19419 L:      linux-kernel@vger.kernel.org
19420 S:      Supported
19421 T:      git https://github.com/Xilinx/linux-xlnx.git
19422 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19423 F:      drivers/phy/xilinx/phy-zynqmp.c
19424
19425 XILLYBUS DRIVER
19426 M:      Eli Billauer <eli.billauer@gmail.com>
19427 L:      linux-kernel@vger.kernel.org
19428 S:      Supported
19429 F:      drivers/char/xillybus/
19430
19431 XLP9XX I2C DRIVER
19432 M:      George Cherian <gcherian@marvell.com>
19433 L:      linux-i2c@vger.kernel.org
19434 S:      Supported
19435 W:      http://www.marvell.com
19436 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19437 F:      drivers/i2c/busses/i2c-xlp9xx.c
19438
19439 XRA1403 GPIO EXPANDER
19440 M:      Nandor Han <nandor.han@ge.com>
19441 M:      Semi Malinen <semi.malinen@ge.com>
19442 L:      linux-gpio@vger.kernel.org
19443 S:      Maintained
19444 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19445 F:      drivers/gpio/gpio-xra1403.c
19446
19447 XTENSA XTFPGA PLATFORM SUPPORT
19448 M:      Max Filippov <jcmvbkbc@gmail.com>
19449 L:      linux-xtensa@linux-xtensa.org
19450 S:      Maintained
19451 F:      drivers/spi/spi-xtensa-xtfpga.c
19452 F:      sound/soc/xtensa/xtfpga-i2s.c
19453
19454 YAM DRIVER FOR AX.25
19455 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19456 L:      linux-hams@vger.kernel.org
19457 S:      Maintained
19458 F:      drivers/net/hamradio/yam*
19459 F:      include/linux/yam.h
19460
19461 YAMA SECURITY MODULE
19462 M:      Kees Cook <keescook@chromium.org>
19463 S:      Supported
19464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19465 F:      Documentation/admin-guide/LSM/Yama.rst
19466 F:      security/yama/
19467
19468 YEALINK PHONE DRIVER
19469 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19470 L:      usbb2k-api-dev@nongnu.org
19471 S:      Maintained
19472 F:      Documentation/input/devices/yealink.rst
19473 F:      drivers/input/misc/yealink.*
19474
19475 Z8530 DRIVER FOR AX.25
19476 M:      Joerg Reuter <jreuter@yaina.de>
19477 L:      linux-hams@vger.kernel.org
19478 S:      Maintained
19479 W:      http://yaina.de/jreuter/
19480 W:      http://www.qsl.net/dl1bke/
19481 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19482 F:      drivers/net/hamradio/*scc.c
19483 F:      drivers/net/hamradio/z8530.h
19484
19485 ZBUD COMPRESSED PAGE ALLOCATOR
19486 M:      Seth Jennings <sjenning@redhat.com>
19487 M:      Dan Streetman <ddstreet@ieee.org>
19488 L:      linux-mm@kvack.org
19489 S:      Maintained
19490 F:      include/linux/zbud.h
19491 F:      mm/zbud.c
19492
19493 ZD1211RW WIRELESS DRIVER
19494 M:      Daniel Drake <dsd@gentoo.org>
19495 M:      Ulrich Kunitz <kune@deine-taler.de>
19496 L:      linux-wireless@vger.kernel.org
19497 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19498 S:      Maintained
19499 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19500 F:      drivers/net/wireless/zydas/zd1211rw/
19501
19502 ZD1301 MEDIA DRIVER
19503 M:      Antti Palosaari <crope@iki.fi>
19504 L:      linux-media@vger.kernel.org
19505 S:      Maintained
19506 W:      https://linuxtv.org/
19507 W:      http://palosaari.fi/linux/
19508 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19509 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19510
19511 ZD1301_DEMOD MEDIA DRIVER
19512 M:      Antti Palosaari <crope@iki.fi>
19513 L:      linux-media@vger.kernel.org
19514 S:      Maintained
19515 W:      https://linuxtv.org/
19516 W:      http://palosaari.fi/linux/
19517 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19518 F:      drivers/media/dvb-frontends/zd1301_demod*
19519
19520 ZHAOXIN PROCESSOR SUPPORT
19521 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19522 L:      linux-kernel@vger.kernel.org
19523 S:      Maintained
19524 F:      arch/x86/kernel/cpu/zhaoxin.c
19525
19526 ZONEFS FILESYSTEM
19527 M:      Damien Le Moal <damien.lemoal@wdc.com>
19528 M:      Naohiro Aota <naohiro.aota@wdc.com>
19529 R:      Johannes Thumshirn <jth@kernel.org>
19530 L:      linux-fsdevel@vger.kernel.org
19531 S:      Maintained
19532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19533 F:      Documentation/filesystems/zonefs.rst
19534 F:      fs/zonefs/
19535
19536 ZPOOL COMPRESSED PAGE STORAGE API
19537 M:      Dan Streetman <ddstreet@ieee.org>
19538 L:      linux-mm@kvack.org
19539 S:      Maintained
19540 F:      include/linux/zpool.h
19541 F:      mm/zpool.c
19542
19543 ZR36067 VIDEO FOR LINUX DRIVER
19544 M:      Corentin Labbe <clabbe@baylibre.com>
19545 L:      mjpeg-users@lists.sourceforge.net
19546 L:      linux-media@vger.kernel.org
19547 S:      Maintained
19548 W:      http://mjpeg.sourceforge.net/driver-zoran/
19549 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19550 F:      Documentation/driver-api/media/drivers/zoran.rst
19551 F:      drivers/staging/media/zoran/
19552
19553 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19554 M:      Minchan Kim <minchan@kernel.org>
19555 M:      Nitin Gupta <ngupta@vflare.org>
19556 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19557 L:      linux-kernel@vger.kernel.org
19558 S:      Maintained
19559 F:      Documentation/admin-guide/blockdev/zram.rst
19560 F:      drivers/block/zram/
19561
19562 ZS DECSTATION Z85C30 SERIAL DRIVER
19563 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19564 S:      Maintained
19565 F:      drivers/tty/serial/zs.*
19566
19567 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19568 M:      Minchan Kim <minchan@kernel.org>
19569 M:      Nitin Gupta <ngupta@vflare.org>
19570 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19571 L:      linux-mm@kvack.org
19572 S:      Maintained
19573 F:      Documentation/vm/zsmalloc.rst
19574 F:      include/linux/zsmalloc.h
19575 F:      mm/zsmalloc.c
19576
19577 ZSWAP COMPRESSED SWAP CACHING
19578 M:      Seth Jennings <sjenning@redhat.com>
19579 M:      Dan Streetman <ddstreet@ieee.org>
19580 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19581 L:      linux-mm@kvack.org
19582 S:      Maintained
19583 F:      mm/zswap.c
19584
19585 THE REST
19586 M:      Linus Torvalds <torvalds@linux-foundation.org>
19587 L:      linux-kernel@vger.kernel.org
19588 S:      Buried alive in reporters
19589 Q:      http://patchwork.kernel.org/project/LKML/list/
19590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19591 F:      *
19592 F:      */