Merge tag 'arm-platform-removal-v5.12' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264
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 L:      netdev@vger.kernel.org
824 S:      Supported
825 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
826 F:      drivers/net/ethernet/amazon/
827
828 AMAZON RDMA EFA DRIVER
829 M:      Gal Pressman <galpress@amazon.com>
830 R:      Yossi Leybovich <sleybo@amazon.com>
831 L:      linux-rdma@vger.kernel.org
832 S:      Supported
833 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
834 F:      drivers/infiniband/hw/efa/
835 F:      include/uapi/rdma/efa-abi.h
836
837 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
838 M:      Tom Lendacky <thomas.lendacky@amd.com>
839 M:      John Allen <john.allen@amd.com>
840 L:      linux-crypto@vger.kernel.org
841 S:      Supported
842 F:      drivers/crypto/ccp/
843 F:      include/linux/ccp.h
844
845 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
846 M:      Brijesh Singh <brijesh.singh@amd.com>
847 M:      Tom Lendacky <thomas.lendacky@amd.com>
848 L:      linux-crypto@vger.kernel.org
849 S:      Supported
850 F:      drivers/crypto/ccp/sev*
851 F:      include/uapi/linux/psp-sev.h
852
853 AMD DISPLAY CORE
854 M:      Harry Wentland <harry.wentland@amd.com>
855 M:      Leo Li <sunpeng.li@amd.com>
856 L:      amd-gfx@lists.freedesktop.org
857 S:      Supported
858 T:      git git://people.freedesktop.org/~agd5f/linux
859 F:      drivers/gpu/drm/amd/display/
860
861 AMD ENERGY DRIVER
862 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
863 L:      linux-hwmon@vger.kernel.org
864 S:      Maintained
865 F:      Documentation/hwmon/amd_energy.rst
866 F:      drivers/hwmon/amd_energy.c
867
868 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
869 M:      Huang Rui <ray.huang@amd.com>
870 L:      linux-hwmon@vger.kernel.org
871 S:      Supported
872 F:      Documentation/hwmon/fam15h_power.rst
873 F:      drivers/hwmon/fam15h_power.c
874
875 AMD FCH GPIO DRIVER
876 M:      Enrico Weigelt, metux IT consult <info@metux.net>
877 L:      linux-gpio@vger.kernel.org
878 S:      Maintained
879 F:      drivers/gpio/gpio-amd-fch.c
880 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
881
882 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
883 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
884 S:      Orphan
885 F:      drivers/usb/gadget/udc/amd5536udc.*
886
887 AMD GEODE PROCESSOR/CHIPSET SUPPORT
888 M:      Andres Salomon <dilinger@queued.net>
889 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
890 S:      Supported
891 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
892 F:      arch/x86/include/asm/geode.h
893 F:      drivers/char/hw_random/geode-rng.c
894 F:      drivers/crypto/geode*
895 F:      drivers/video/fbdev/geode/
896
897 AMD IOMMU (AMD-VI)
898 M:      Joerg Roedel <joro@8bytes.org>
899 L:      iommu@lists.linux-foundation.org
900 S:      Maintained
901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
902 F:      drivers/iommu/amd/
903 F:      include/linux/amd-iommu.h
904
905 AMD KFD
906 M:      Felix Kuehling <Felix.Kuehling@amd.com>
907 L:      amd-gfx@lists.freedesktop.org
908 S:      Supported
909 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
910 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
911 F:      drivers/gpu/drm/amd/amdkfd/
912 F:      drivers/gpu/drm/amd/include/cik_structs.h
913 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
914 F:      drivers/gpu/drm/amd/include/v9_structs.h
915 F:      drivers/gpu/drm/amd/include/vi_structs.h
916 F:      include/uapi/linux/kfd_ioctl.h
917
918 AMD SPI DRIVER
919 M:      Sanjay R Mehta <sanju.mehta@amd.com>
920 S:      Maintained
921 F:      drivers/spi/spi-amd.c
922
923 AMD MP2 I2C DRIVER
924 M:      Elie Morisse <syniurge@gmail.com>
925 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
926 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
927 L:      linux-i2c@vger.kernel.org
928 S:      Maintained
929 F:      drivers/i2c/busses/i2c-amd-mp2*
930
931 AMD PMC DRIVER
932 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
933 L:      platform-driver-x86@vger.kernel.org
934 S:      Maintained
935 F:      drivers/platform/x86/amd-pmc.*
936
937 AMD POWERPLAY
938 M:      Evan Quan <evan.quan@amd.com>
939 L:      amd-gfx@lists.freedesktop.org
940 S:      Supported
941 T:      git git://people.freedesktop.org/~agd5f/linux
942 F:      drivers/gpu/drm/amd/pm/powerplay/
943
944 AMD SEATTLE DEVICE TREE SUPPORT
945 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
946 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
947 M:      Tom Lendacky <thomas.lendacky@amd.com>
948 S:      Supported
949 F:      arch/arm64/boot/dts/amd/
950
951 AMD XGBE DRIVER
952 M:      Tom Lendacky <thomas.lendacky@amd.com>
953 L:      netdev@vger.kernel.org
954 S:      Supported
955 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
956 F:      drivers/net/ethernet/amd/xgbe/
957
958 AMD SENSOR FUSION HUB DRIVER
959 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
960 M:      Sandeep Singh <sandeep.singh@amd.com>
961 L:      linux-input@vger.kernel.org
962 S:      Maintained
963 F:      Documentation/hid/amd-sfh*
964 F:      drivers/hid/amd-sfh-hid/
965
966 AMS AS73211 DRIVER
967 M:      Christian Eggers <ceggers@arri.de>
968 L:      linux-iio@vger.kernel.org
969 S:      Maintained
970 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
971 F:      drivers/iio/light/as73211.c
972
973 ANALOG DEVICES INC AD7192 DRIVER
974 M:      Alexandru Tachici <alexandru.tachici@analog.com>
975 L:      linux-iio@vger.kernel.org
976 S:      Supported
977 W:      http://ez.analog.com/community/linux-device-drivers
978 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
979 F:      drivers/iio/adc/ad7192.c
980
981 ANALOG DEVICES INC AD7292 DRIVER
982 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
983 L:      linux-iio@vger.kernel.org
984 S:      Supported
985 W:      http://ez.analog.com/community/linux-device-drivers
986 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
987 F:      drivers/iio/adc/ad7292.c
988
989 ANALOG DEVICES INC AD7768-1 DRIVER
990 M:      Michael Hennerich <Michael.Hennerich@analog.com>
991 L:      linux-iio@vger.kernel.org
992 S:      Supported
993 W:      http://ez.analog.com/community/linux-device-drivers
994 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
995 F:      drivers/iio/adc/ad7768-1.c
996
997 ANALOG DEVICES INC AD7780 DRIVER
998 M:      Michael Hennerich <Michael.Hennerich@analog.com>
999 M:      Renato Lui Geh <renatogeh@gmail.com>
1000 L:      linux-iio@vger.kernel.org
1001 S:      Supported
1002 W:      http://ez.analog.com/community/linux-device-drivers
1003 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1004 F:      drivers/iio/adc/ad7780.c
1005
1006 ANALOG DEVICES INC AD9389B DRIVER
1007 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1008 L:      linux-media@vger.kernel.org
1009 S:      Maintained
1010 F:      drivers/media/i2c/ad9389b*
1011
1012 ANALOG DEVICES INC ADGS1408 DRIVER
1013 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1014 S:      Supported
1015 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1016 F:      drivers/mux/adgs1408.c
1017
1018 ANALOG DEVICES INC ADIN DRIVER
1019 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1020 L:      netdev@vger.kernel.org
1021 S:      Supported
1022 W:      http://ez.analog.com/community/linux-device-drivers
1023 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1024 F:      drivers/net/phy/adin.c
1025
1026 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1027 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1028 L:      linux-iio@vger.kernel.org
1029 S:      Supported
1030 F:      drivers/iio/imu/adis.c
1031 F:      include/linux/iio/imu/adis.h
1032
1033 ANALOG DEVICES INC ADIS16460 DRIVER
1034 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1035 L:      linux-iio@vger.kernel.org
1036 S:      Supported
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1039 F:      drivers/iio/imu/adis16460.c
1040
1041 ANALOG DEVICES INC ADIS16475 DRIVER
1042 M:      Nuno Sa <nuno.sa@analog.com>
1043 L:      linux-iio@vger.kernel.org
1044 W:      http://ez.analog.com/community/linux-device-drivers
1045 S:      Supported
1046 F:      drivers/iio/imu/adis16475.c
1047 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1048
1049 ANALOG DEVICES INC ADM1177 DRIVER
1050 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1051 L:      linux-hwmon@vger.kernel.org
1052 S:      Supported
1053 W:      http://ez.analog.com/community/linux-device-drivers
1054 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1055 F:      drivers/hwmon/adm1177.c
1056
1057 ANALOG DEVICES INC ADP5061 DRIVER
1058 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1059 L:      linux-pm@vger.kernel.org
1060 S:      Supported
1061 W:      http://ez.analog.com/community/linux-device-drivers
1062 F:      drivers/power/supply/adp5061.c
1063
1064 ANALOG DEVICES INC ADV7180 DRIVER
1065 M:      Lars-Peter Clausen <lars@metafoo.de>
1066 L:      linux-media@vger.kernel.org
1067 S:      Supported
1068 W:      http://ez.analog.com/community/linux-device-drivers
1069 F:      drivers/media/i2c/adv7180.c
1070 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1071
1072 ANALOG DEVICES INC ADV748X DRIVER
1073 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1074 L:      linux-media@vger.kernel.org
1075 S:      Maintained
1076 F:      drivers/media/i2c/adv748x/*
1077
1078 ANALOG DEVICES INC ADV7511 DRIVER
1079 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1080 L:      linux-media@vger.kernel.org
1081 S:      Maintained
1082 F:      drivers/media/i2c/adv7511*
1083
1084 ANALOG DEVICES INC ADV7604 DRIVER
1085 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1086 L:      linux-media@vger.kernel.org
1087 S:      Maintained
1088 F:      drivers/media/i2c/adv7604*
1089 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1090
1091 ANALOG DEVICES INC ADV7842 DRIVER
1092 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1093 L:      linux-media@vger.kernel.org
1094 S:      Maintained
1095 F:      drivers/media/i2c/adv7842*
1096
1097 ANALOG DEVICES INC ADXRS290 DRIVER
1098 M:      Nishant Malpani <nish.malpani25@gmail.com>
1099 L:      linux-iio@vger.kernel.org
1100 S:      Supported
1101 F:      drivers/iio/gyro/adxrs290.c
1102 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1103
1104 ANALOG DEVICES INC ASOC CODEC DRIVERS
1105 M:      Lars-Peter Clausen <lars@metafoo.de>
1106 M:      Nuno Sá <nuno.sa@analog.com>
1107 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1108 S:      Supported
1109 W:      http://wiki.analog.com/
1110 W:      http://ez.analog.com/community/linux-device-drivers
1111 F:      sound/soc/codecs/ad1*
1112 F:      sound/soc/codecs/ad7*
1113 F:      sound/soc/codecs/adau*
1114 F:      sound/soc/codecs/adav*
1115 F:      sound/soc/codecs/sigmadsp.*
1116 F:      sound/soc/codecs/ssm*
1117
1118 ANALOG DEVICES INC DMA DRIVERS
1119 M:      Lars-Peter Clausen <lars@metafoo.de>
1120 S:      Supported
1121 W:      http://ez.analog.com/community/linux-device-drivers
1122 F:      drivers/dma/dma-axi-dmac.c
1123
1124 ANALOG DEVICES INC IIO DRIVERS
1125 M:      Lars-Peter Clausen <lars@metafoo.de>
1126 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1127 S:      Supported
1128 W:      http://wiki.analog.com/
1129 W:      http://ez.analog.com/community/linux-device-drivers
1130 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1131 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1132 F:      Documentation/devicetree/bindings/iio/*/adi,*
1133 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1134 F:      drivers/iio/*/ad*
1135 F:      drivers/iio/adc/ltc249*
1136 F:      drivers/iio/amplifiers/hmc425a.c
1137 F:      drivers/staging/iio/*/ad*
1138 X:      drivers/iio/*/adjd*
1139
1140 ANALOGBITS PLL LIBRARIES
1141 M:      Paul Walmsley <paul.walmsley@sifive.com>
1142 S:      Supported
1143 F:      drivers/clk/analogbits/*
1144 F:      include/linux/clk/analogbits*
1145
1146 ANDES ARCHITECTURE
1147 M:      Nick Hu <nickhu@andestech.com>
1148 M:      Greentime Hu <green.hu@gmail.com>
1149 M:      Vincent Chen <deanbo422@gmail.com>
1150 S:      Supported
1151 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1152 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1153 F:      Documentation/devicetree/bindings/nds32/
1154 F:      arch/nds32/
1155 N:      nds32
1156 K:      nds32
1157
1158 ANDROID CONFIG FRAGMENTS
1159 M:      Rob Herring <robh@kernel.org>
1160 S:      Supported
1161 F:      kernel/configs/android*
1162
1163 ANDROID DRIVERS
1164 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1165 M:      Arve Hjønnevåg <arve@android.com>
1166 M:      Todd Kjos <tkjos@android.com>
1167 M:      Martijn Coenen <maco@android.com>
1168 M:      Joel Fernandes <joel@joelfernandes.org>
1169 M:      Christian Brauner <christian@brauner.io>
1170 M:      Hridya Valsaraju <hridya@google.com>
1171 M:      Suren Baghdasaryan <surenb@google.com>
1172 L:      devel@driverdev.osuosl.org
1173 S:      Supported
1174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1175 F:      drivers/android/
1176 F:      drivers/staging/android/
1177
1178 ANDROID GOLDFISH PIC DRIVER
1179 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1180 S:      Supported
1181 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1182 F:      drivers/irqchip/irq-goldfish-pic.c
1183
1184 ANDROID GOLDFISH RTC DRIVER
1185 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1186 S:      Supported
1187 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1188 F:      drivers/rtc/rtc-goldfish.c
1189
1190 AOA (Apple Onboard Audio) ALSA DRIVER
1191 M:      Johannes Berg <johannes@sipsolutions.net>
1192 L:      linuxppc-dev@lists.ozlabs.org
1193 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1194 S:      Maintained
1195 F:      sound/aoa/
1196
1197 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1198 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1199 L:      linux-iio@vger.kernel.org
1200 S:      Maintained
1201 F:      drivers/iio/adc/stx104.c
1202
1203 APM DRIVER
1204 M:      Jiri Kosina <jikos@kernel.org>
1205 S:      Odd fixes
1206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1207 F:      arch/x86/kernel/apm_32.c
1208 F:      drivers/char/apm-emulation.c
1209 F:      include/linux/apm_bios.h
1210 F:      include/uapi/linux/apm_bios.h
1211
1212 APPARMOR SECURITY MODULE
1213 M:      John Johansen <john.johansen@canonical.com>
1214 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1215 S:      Supported
1216 W:      wiki.apparmor.net
1217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1218 F:      Documentation/admin-guide/LSM/apparmor.rst
1219 F:      security/apparmor/
1220
1221 APPLE BCM5974 MULTITOUCH DRIVER
1222 M:      Henrik Rydberg <rydberg@bitmath.org>
1223 L:      linux-input@vger.kernel.org
1224 S:      Odd fixes
1225 F:      drivers/input/mouse/bcm5974.c
1226
1227 APPLE SMC DRIVER
1228 M:      Henrik Rydberg <rydberg@bitmath.org>
1229 L:      linux-hwmon@vger.kernel.org
1230 S:      Odd fixes
1231 F:      drivers/hwmon/applesmc.c
1232
1233 APPLETALK NETWORK LAYER
1234 L:      netdev@vger.kernel.org
1235 S:      Odd fixes
1236 F:      drivers/net/appletalk/
1237 F:      include/linux/atalk.h
1238 F:      include/uapi/linux/atalk.h
1239 F:      net/appletalk/
1240
1241 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1242 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1243 S:      Supported
1244 F:      arch/arm64/boot/dts/apm/
1245
1246 APPLIED MICRO (APM) X-GENE SOC EDAC
1247 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1248 S:      Supported
1249 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1250 F:      drivers/edac/xgene_edac.c
1251
1252 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1253 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1254 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1255 S:      Supported
1256 F:      drivers/net/ethernet/apm/xgene-v2/
1257
1258 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1259 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1260 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1261 M:      Quan Nguyen <quan@os.amperecomputing.com>
1262 S:      Supported
1263 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1264 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1265 F:      drivers/net/ethernet/apm/xgene/
1266 F:      drivers/net/mdio/mdio-xgene.c
1267
1268 APPLIED MICRO (APM) X-GENE SOC PMU
1269 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1270 S:      Supported
1271 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1272 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1273 F:      drivers/perf/xgene_pmu.c
1274
1275 APTINA CAMERA SENSOR PLL
1276 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1277 L:      linux-media@vger.kernel.org
1278 S:      Maintained
1279 F:      drivers/media/i2c/aptina-pll.*
1280
1281 AQUANTIA ETHERNET DRIVER (atlantic)
1282 M:      Igor Russkikh <irusskikh@marvell.com>
1283 L:      netdev@vger.kernel.org
1284 S:      Supported
1285 W:      https://www.marvell.com/
1286 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1287 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1288 F:      drivers/net/ethernet/aquantia/atlantic/
1289
1290 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1291 M:      Egor Pomozov <epomozov@marvell.com>
1292 L:      netdev@vger.kernel.org
1293 S:      Supported
1294 W:      http://www.aquantia.com
1295 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1296
1297 ARASAN NAND CONTROLLER DRIVER
1298 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1299 L:      linux-mtd@lists.infradead.org
1300 S:      Maintained
1301 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1302 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1303
1304 ARC FRAMEBUFFER DRIVER
1305 M:      Jaya Kumar <jayalk@intworks.biz>
1306 S:      Maintained
1307 F:      drivers/video/fbdev/arcfb.c
1308 F:      drivers/video/fbdev/core/fb_defio.c
1309
1310 ARC PGU DRM DRIVER
1311 M:      Alexey Brodkin <abrodkin@synopsys.com>
1312 S:      Supported
1313 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1314 F:      drivers/gpu/drm/arc/
1315
1316 ARCNET NETWORK LAYER
1317 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1318 L:      netdev@vger.kernel.org
1319 S:      Maintained
1320 F:      drivers/net/arcnet/
1321 F:      include/uapi/linux/if_arcnet.h
1322
1323 ARM ARCHITECTED TIMER DRIVER
1324 M:      Mark Rutland <mark.rutland@arm.com>
1325 M:      Marc Zyngier <maz@kernel.org>
1326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1327 S:      Maintained
1328 F:      arch/arm/include/asm/arch_timer.h
1329 F:      arch/arm64/include/asm/arch_timer.h
1330 F:      drivers/clocksource/arm_arch_timer.c
1331
1332 ARM HDLCD DRM DRIVER
1333 M:      Liviu Dudau <liviu.dudau@arm.com>
1334 S:      Supported
1335 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1336 F:      drivers/gpu/drm/arm/hdlcd_*
1337
1338 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1339 M:      Linus Walleij <linus.walleij@linaro.org>
1340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1341 S:      Maintained
1342 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1343 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1344 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1345 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1346 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1347 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1348 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1349 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1350 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1351 F:      arch/arm/boot/dts/arm-realview-*
1352 F:      arch/arm/boot/dts/integrator*
1353 F:      arch/arm/boot/dts/versatile*
1354 F:      arch/arm/mach-integrator/
1355 F:      arch/arm/mach-realview/
1356 F:      arch/arm/mach-versatile/
1357 F:      arch/arm/plat-versatile/
1358 F:      drivers/bus/arm-integrator-lm.c
1359 F:      drivers/clk/versatile/
1360 F:      drivers/i2c/busses/i2c-versatile.c
1361 F:      drivers/irqchip/irq-versatile-fpga.c
1362 F:      drivers/mtd/maps/physmap-versatile.*
1363 F:      drivers/power/reset/arm-versatile-reboot.c
1364 F:      drivers/soc/versatile/
1365
1366 ARM KOMEDA DRM-KMS DRIVER
1367 M:      James (Qian) Wang <james.qian.wang@arm.com>
1368 M:      Liviu Dudau <liviu.dudau@arm.com>
1369 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1370 L:      Mali DP Maintainers <malidp@foss.arm.com>
1371 S:      Supported
1372 T:      git git://anongit.freedesktop.org/drm/drm-misc
1373 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1374 F:      Documentation/gpu/komeda-kms.rst
1375 F:      drivers/gpu/drm/arm/display/include/
1376 F:      drivers/gpu/drm/arm/display/komeda/
1377
1378 ARM MALI PANFROST DRM DRIVER
1379 M:      Rob Herring <robh@kernel.org>
1380 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1381 R:      Steven Price <steven.price@arm.com>
1382 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1383 L:      dri-devel@lists.freedesktop.org
1384 S:      Supported
1385 T:      git git://anongit.freedesktop.org/drm/drm-misc
1386 F:      drivers/gpu/drm/panfrost/
1387 F:      include/uapi/drm/panfrost_drm.h
1388
1389 ARM MALI-DP DRM DRIVER
1390 M:      Liviu Dudau <liviu.dudau@arm.com>
1391 M:      Brian Starkey <brian.starkey@arm.com>
1392 L:      Mali DP Maintainers <malidp@foss.arm.com>
1393 S:      Supported
1394 T:      git git://anongit.freedesktop.org/drm/drm-misc
1395 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1396 F:      Documentation/gpu/afbc.rst
1397 F:      drivers/gpu/drm/arm/
1398
1399 ARM MFM AND FLOPPY DRIVERS
1400 M:      Ian Molton <spyro@f2s.com>
1401 S:      Maintained
1402 F:      arch/arm/include/asm/floppy.h
1403 F:      arch/arm/mach-rpc/floppydma.S
1404
1405 ARM PMU PROFILING AND DEBUGGING
1406 M:      Will Deacon <will@kernel.org>
1407 M:      Mark Rutland <mark.rutland@arm.com>
1408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1409 S:      Maintained
1410 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1411 F:      Documentation/devicetree/bindings/perf/
1412 F:      arch/arm*/include/asm/hw_breakpoint.h
1413 F:      arch/arm*/include/asm/perf_event.h
1414 F:      arch/arm*/kernel/hw_breakpoint.c
1415 F:      arch/arm*/kernel/perf_*
1416 F:      arch/arm/oprofile/common.c
1417 F:      drivers/perf/
1418 F:      include/linux/perf/arm_pmu.h
1419
1420 ARM PORT
1421 M:      Russell King <linux@armlinux.org.uk>
1422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1423 S:      Odd Fixes
1424 W:      http://www.armlinux.org.uk/
1425 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1426 F:      arch/arm/
1427 X:      arch/arm/boot/dts/
1428
1429 ARM PRIMECELL AACI PL041 DRIVER
1430 M:      Russell King <linux@armlinux.org.uk>
1431 S:      Odd Fixes
1432 F:      sound/arm/aaci.*
1433
1434 ARM PRIMECELL BUS SUPPORT
1435 M:      Russell King <linux@armlinux.org.uk>
1436 S:      Odd Fixes
1437 F:      drivers/amba/
1438 F:      include/linux/amba/bus.h
1439
1440 ARM PRIMECELL CLCD PL110 DRIVER
1441 M:      Russell King <linux@armlinux.org.uk>
1442 S:      Odd Fixes
1443 F:      drivers/video/fbdev/amba-clcd.*
1444
1445 ARM PRIMECELL KMI PL050 DRIVER
1446 M:      Russell King <linux@armlinux.org.uk>
1447 S:      Odd Fixes
1448 F:      drivers/input/serio/ambakmi.*
1449 F:      include/linux/amba/kmi.h
1450
1451 ARM PRIMECELL MMCI PL180/1 DRIVER
1452 M:      Russell King <linux@armlinux.org.uk>
1453 S:      Odd Fixes
1454 F:      drivers/mmc/host/mmci.*
1455 F:      include/linux/amba/mmci.h
1456
1457 ARM PRIMECELL SSP PL022 SPI DRIVER
1458 M:      Linus Walleij <linus.walleij@linaro.org>
1459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460 S:      Maintained
1461 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1462 F:      drivers/spi/spi-pl022.c
1463
1464 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1465 M:      Russell King <linux@armlinux.org.uk>
1466 S:      Odd Fixes
1467 F:      drivers/tty/serial/amba-pl01*.c
1468 F:      include/linux/amba/serial.h
1469
1470 ARM PRIMECELL VIC PL190/PL192 DRIVER
1471 M:      Linus Walleij <linus.walleij@linaro.org>
1472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1473 S:      Maintained
1474 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1475 F:      drivers/irqchip/irq-vic.c
1476
1477 ARM SMC WATCHDOG DRIVER
1478 M:      Julius Werner <jwerner@chromium.org>
1479 R:      Evan Benn <evanbenn@chromium.org>
1480 S:      Maintained
1481 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1482 F:      drivers/watchdog/arm_smc_wdt.c
1483
1484 ARM SMMU DRIVERS
1485 M:      Will Deacon <will@kernel.org>
1486 R:      Robin Murphy <robin.murphy@arm.com>
1487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488 S:      Maintained
1489 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1490 F:      drivers/iommu/arm/
1491 F:      drivers/iommu/io-pgtable-arm*
1492
1493 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1494 M:      Arnd Bergmann <arnd@arndb.de>
1495 M:      Olof Johansson <olof@lixom.net>
1496 M:      soc@kernel.org
1497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1498 S:      Maintained
1499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1500 F:      arch/arm/boot/dts/Makefile
1501 F:      arch/arm64/boot/dts/Makefile
1502
1503 ARM SUB-ARCHITECTURES
1504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1505 S:      Maintained
1506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1507 F:      arch/arm/mach-*/
1508 F:      arch/arm/plat-*/
1509
1510 ARM/ACTIONS SEMI ARCHITECTURE
1511 M:      Andreas Färber <afaerber@suse.de>
1512 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1514 S:      Maintained
1515 F:      Documentation/devicetree/bindings/arm/actions.yaml
1516 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1517 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1518 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1519 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1520 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1521 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1522 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1523 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1524 F:      arch/arm/boot/dts/owl-*
1525 F:      arch/arm/mach-actions/
1526 F:      arch/arm64/boot/dts/actions/
1527 F:      drivers/clk/actions/
1528 F:      drivers/clocksource/timer-owl*
1529 F:      drivers/dma/owl-dma.c
1530 F:      drivers/i2c/busses/i2c-owl.c
1531 F:      drivers/irqchip/irq-owl-sirq.c
1532 F:      drivers/mmc/host/owl-mmc.c
1533 F:      drivers/pinctrl/actions/*
1534 F:      drivers/soc/actions/
1535 F:      include/dt-bindings/power/owl-*
1536 F:      include/dt-bindings/reset/actions,*
1537 F:      include/linux/soc/actions/
1538 N:      owl
1539
1540 ARM/ADS SPHERE MACHINE SUPPORT
1541 M:      Lennert Buytenhek <kernel@wantstofly.org>
1542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1543 S:      Maintained
1544
1545 ARM/AFEB9260 MACHINE SUPPORT
1546 M:      Sergey Lapin <slapin@ossfans.org>
1547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1548 S:      Maintained
1549
1550 ARM/AJECO 1ARM MACHINE SUPPORT
1551 M:      Lennert Buytenhek <kernel@wantstofly.org>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S:      Maintained
1554
1555 ARM/Allwinner SoC Clock Support
1556 M:      Emilio López <emilio@elopez.com.ar>
1557 S:      Maintained
1558 F:      drivers/clk/sunxi/
1559
1560 ARM/Allwinner sunXi SoC support
1561 M:      Maxime Ripard <mripard@kernel.org>
1562 M:      Chen-Yu Tsai <wens@csie.org>
1563 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 S:      Maintained
1566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1567 F:      arch/arm/mach-sunxi/
1568 F:      arch/arm64/boot/dts/allwinner/
1569 F:      drivers/clk/sunxi-ng/
1570 F:      drivers/pinctrl/sunxi/
1571 F:      drivers/soc/sunxi/
1572 N:      sun[x456789]i
1573 N:      sun50i
1574
1575 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1576 M:      Neil Armstrong <narmstrong@baylibre.com>
1577 M:      Jerome Brunet <jbrunet@baylibre.com>
1578 L:      linux-amlogic@lists.infradead.org
1579 S:      Maintained
1580 F:      Documentation/devicetree/bindings/clock/amlogic*
1581 F:      drivers/clk/meson/
1582 F:      include/dt-bindings/clock/gxbb*
1583 F:      include/dt-bindings/clock/meson*
1584
1585 ARM/Amlogic Meson SoC Crypto Drivers
1586 M:      Corentin Labbe <clabbe@baylibre.com>
1587 L:      linux-crypto@vger.kernel.org
1588 L:      linux-amlogic@lists.infradead.org
1589 S:      Maintained
1590 F:      Documentation/devicetree/bindings/crypto/amlogic*
1591 F:      drivers/crypto/amlogic/
1592
1593 ARM/Amlogic Meson SoC Sound Drivers
1594 M:      Jerome Brunet <jbrunet@baylibre.com>
1595 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1596 S:      Maintained
1597 F:      Documentation/devicetree/bindings/sound/amlogic*
1598 F:      sound/soc/meson/
1599
1600 ARM/Amlogic Meson SoC support
1601 M:      Kevin Hilman <khilman@baylibre.com>
1602 R:      Neil Armstrong <narmstrong@baylibre.com>
1603 R:      Jerome Brunet <jbrunet@baylibre.com>
1604 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1606 L:      linux-amlogic@lists.infradead.org
1607 S:      Maintained
1608 W:      http://linux-meson.com/
1609 F:      arch/arm/boot/dts/meson*
1610 F:      arch/arm/mach-meson/
1611 F:      arch/arm64/boot/dts/amlogic/
1612 F:      drivers/mmc/host/meson*
1613 F:      drivers/pinctrl/meson/
1614 F:      drivers/rtc/rtc-meson*
1615 F:      drivers/soc/amlogic/
1616 N:      meson
1617
1618 ARM/Annapurna Labs ALPINE ARCHITECTURE
1619 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1620 M:      Antoine Tenart <atenart@kernel.org>
1621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1622 S:      Maintained
1623 F:      arch/arm/boot/dts/alpine*
1624 F:      arch/arm/mach-alpine/
1625 F:      arch/arm64/boot/dts/amazon/
1626 F:      drivers/*/*alpine*
1627
1628 ARM/ARTPEC MACHINE SUPPORT
1629 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1630 M:      Lars Persson <lars.persson@axis.com>
1631 L:      linux-arm-kernel@axis.com
1632 S:      Maintained
1633 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1634 F:      arch/arm/boot/dts/artpec6*
1635 F:      arch/arm/mach-artpec
1636 F:      drivers/clk/axis
1637 F:      drivers/crypto/axis
1638 F:      drivers/mmc/host/usdhi6rol0.c
1639 F:      drivers/pinctrl/pinctrl-artpec*
1640
1641 ARM/ASPEED I2C DRIVER
1642 M:      Brendan Higgins <brendanhiggins@google.com>
1643 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1644 R:      Joel Stanley <joel@jms.id.au>
1645 L:      linux-i2c@vger.kernel.org
1646 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1647 S:      Maintained
1648 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1649 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1650 F:      drivers/i2c/busses/i2c-aspeed.c
1651 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1652
1653 ARM/ASPEED MACHINE SUPPORT
1654 M:      Joel Stanley <joel@jms.id.au>
1655 R:      Andrew Jeffery <andrew@aj.id.au>
1656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1657 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1658 S:      Supported
1659 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1661 F:      arch/arm/boot/dts/aspeed-*
1662 F:      arch/arm/mach-aspeed/
1663 N:      aspeed
1664
1665 ARM/BITMAIN ARCHITECTURE
1666 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1668 S:      Maintained
1669 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1670 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1671 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1672 F:      arch/arm64/boot/dts/bitmain/
1673 F:      drivers/clk/clk-bm1880.c
1674 F:      drivers/pinctrl/pinctrl-bm1880.c
1675
1676 ARM/CALXEDA HIGHBANK ARCHITECTURE
1677 M:      Andre Przywara <andre.przywara@arm.com>
1678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1679 S:      Maintained
1680 F:      arch/arm/boot/dts/ecx-*.dts*
1681 F:      arch/arm/boot/dts/highbank.dts
1682 F:      arch/arm/mach-highbank/
1683
1684 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1685 M:      Krzysztof Halasa <khalasa@piap.pl>
1686 S:      Maintained
1687 F:      arch/arm/mach-cns3xxx/
1688
1689 ARM/CAVIUM THUNDER NETWORK DRIVER
1690 M:      Sunil Goutham <sgoutham@marvell.com>
1691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692 S:      Supported
1693 F:      drivers/net/ethernet/cavium/thunder/
1694
1695 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1696 M:      Lukasz Majewski <lukma@denx.de>
1697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1698 S:      Maintained
1699 F:      arch/arm/mach-ep93xx/ts72xx.c
1700
1701 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1702 M:      Alexander Shiyan <shc_work@mail.ru>
1703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 S:      Odd Fixes
1705 N:      clps711x
1706
1707 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1708 M:      Lennert Buytenhek <kernel@wantstofly.org>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 S:      Maintained
1711
1712 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1713 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1714 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1716 S:      Maintained
1717 F:      arch/arm/mach-ep93xx/
1718 F:      arch/arm/mach-ep93xx/include/mach/
1719
1720 ARM/CLKDEV SUPPORT
1721 M:      Russell King <linux@armlinux.org.uk>
1722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1723 S:      Maintained
1724 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1725 F:      drivers/clk/clkdev.c
1726
1727 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1728 M:      Baruch Siach <baruch@tkos.co.il>
1729 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1730 S:      Maintained
1731 F:      arch/arm/boot/dts/cx92755*
1732 N:      digicolor
1733
1734 ARM/CONTEC MICRO9 MACHINE SUPPORT
1735 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1736 S:      Maintained
1737 F:      arch/arm/mach-ep93xx/micro9.c
1738
1739 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1740 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1741 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1742 R:      Mike Leach <mike.leach@linaro.org>
1743 R:      Leo Yan <leo.yan@linaro.org>
1744 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1746 S:      Maintained
1747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1748 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1749 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1750 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1751 F:      Documentation/devicetree/bindings/arm/coresight.txt
1752 F:      Documentation/trace/coresight/*
1753 F:      drivers/hwtracing/coresight/*
1754 F:      include/dt-bindings/arm/coresight-cti-dt.h
1755 F:      tools/perf/arch/arm/util/auxtrace.c
1756 F:      tools/perf/arch/arm/util/cs-etm.c
1757 F:      tools/perf/arch/arm/util/cs-etm.h
1758 F:      tools/perf/arch/arm/util/pmu.c
1759 F:      tools/perf/util/cs-etm-decoder/*
1760 F:      tools/perf/util/cs-etm.*
1761
1762 ARM/CORGI MACHINE SUPPORT
1763 M:      Richard Purdie <rpurdie@rpsys.net>
1764 S:      Maintained
1765
1766 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1767 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1768 M:      Linus Walleij <linus.walleij@linaro.org>
1769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1770 S:      Maintained
1771 T:      git git://github.com/ulli-kroll/linux.git
1772 F:      Documentation/devicetree/bindings/arm/gemini.txt
1773 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1774 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1775 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1776 F:      arch/arm/mach-gemini/
1777 F:      drivers/net/ethernet/cortina/
1778 F:      drivers/pinctrl/pinctrl-gemini.c
1779 F:      drivers/rtc/rtc-ftrtc010.c
1780
1781 ARM/CZ.NIC TURRIS MOX SUPPORT
1782 M:      Marek Behun <marek.behun@nic.cz>
1783 S:      Maintained
1784 W:      http://mox.turris.cz
1785 F:      Documentation/ABI/testing/debugfs-moxtet
1786 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1787 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1788 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1789 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1790 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1791 F:      drivers/bus/moxtet.c
1792 F:      drivers/firmware/turris-mox-rwtm.c
1793 F:      drivers/gpio/gpio-moxtet.c
1794 F:      include/linux/moxtet.h
1795
1796 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1797 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 S:      Maintained
1800 F:      arch/arm/mach-pxa/ezx.c
1801
1802 ARM/FARADAY FA526 PORT
1803 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806 T:      git git://git.berlios.de/gemini-board
1807 F:      arch/arm/mm/*-fa*
1808
1809 ARM/FOOTBRIDGE ARCHITECTURE
1810 M:      Russell King <linux@armlinux.org.uk>
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 S:      Maintained
1813 W:      http://www.armlinux.org.uk/
1814 F:      arch/arm/include/asm/hardware/dec21285.h
1815 F:      arch/arm/mach-footbridge/
1816
1817 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1818 M:      Shawn Guo <shawnguo@kernel.org>
1819 M:      Sascha Hauer <s.hauer@pengutronix.de>
1820 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1821 R:      Fabio Estevam <festevam@gmail.com>
1822 R:      NXP Linux Team <linux-imx@nxp.com>
1823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1824 S:      Maintained
1825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1826 X:      drivers/media/i2c/
1827 N:      imx
1828 N:      mxs
1829
1830 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1831 M:      Shawn Guo <shawnguo@kernel.org>
1832 M:      Li Yang <leoyang.li@nxp.com>
1833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1834 S:      Maintained
1835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1836 F:      arch/arm/boot/dts/ls1021a*
1837 F:      arch/arm64/boot/dts/freescale/fsl-*
1838 F:      arch/arm64/boot/dts/freescale/qoriq-*
1839
1840 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1841 M:      Shawn Guo <shawnguo@kernel.org>
1842 M:      Sascha Hauer <s.hauer@pengutronix.de>
1843 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1844 R:      Stefan Agner <stefan@agner.ch>
1845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1846 S:      Maintained
1847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1848 F:      arch/arm/boot/dts/vf*
1849 F:      arch/arm/mach-imx/*vf610*
1850
1851 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1852 M:      Lennert Buytenhek <kernel@wantstofly.org>
1853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1854 S:      Maintained
1855
1856 ARM/GUMSTIX MACHINE SUPPORT
1857 M:      Steve Sakoman <sakoman@gmail.com>
1858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1859 S:      Maintained
1860
1861 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1862 M:      Philipp Zabel <philipp.zabel@gmail.com>
1863 M:      Paul Parsons <lost.distance@yahoo.com>
1864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1865 S:      Maintained
1866 F:      arch/arm/mach-pxa/hx4700.c
1867 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1868 F:      sound/soc/pxa/hx4700.c
1869
1870 ARM/HISILICON SOC SUPPORT
1871 M:      Wei Xu <xuwei5@hisilicon.com>
1872 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1873 S:      Supported
1874 W:      http://www.hisilicon.com
1875 T:      git git://github.com/hisilicon/linux-hisi.git
1876 F:      arch/arm/boot/dts/hi3*
1877 F:      arch/arm/boot/dts/hip*
1878 F:      arch/arm/boot/dts/hisi*
1879 F:      arch/arm/mach-hisi/
1880 F:      arch/arm64/boot/dts/hisilicon/
1881
1882 ARM/HP JORNADA 7XX MACHINE SUPPORT
1883 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1884 S:      Maintained
1885 W:      www.jlime.com
1886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1887 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1888 F:      arch/arm/mach-sa1100/jornada720.c
1889
1890 ARM/IGEP MACHINE SUPPORT
1891 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1892 M:      Javier Martinez Canillas <javier@dowhile0.org>
1893 L:      linux-omap@vger.kernel.org
1894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1895 S:      Maintained
1896 F:      arch/arm/boot/dts/omap3-igep*
1897
1898 ARM/INCOME PXA270 SUPPORT
1899 M:      Marek Vasut <marek.vasut@gmail.com>
1900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1901 S:      Maintained
1902 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1903
1904 ARM/INTEL IOP32X ARM ARCHITECTURE
1905 M:      Lennert Buytenhek <kernel@wantstofly.org>
1906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1907 S:      Maintained
1908
1909 ARM/INTEL IQ81342EX MACHINE SUPPORT
1910 M:      Lennert Buytenhek <kernel@wantstofly.org>
1911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1912 S:      Maintained
1913
1914 ARM/INTEL IXDP2850 MACHINE SUPPORT
1915 M:      Lennert Buytenhek <kernel@wantstofly.org>
1916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1917 S:      Maintained
1918
1919 ARM/INTEL IXP4XX ARM ARCHITECTURE
1920 M:      Linus Walleij <linusw@kernel.org>
1921 M:      Imre Kaloz <kaloz@openwrt.org>
1922 M:      Krzysztof Halasa <khalasa@piap.pl>
1923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1924 S:      Maintained
1925 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1926 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1927 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1928 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1929 F:      arch/arm/mach-ixp4xx/
1930 F:      drivers/clocksource/timer-ixp4xx.c
1931 F:      drivers/gpio/gpio-ixp4xx.c
1932 F:      drivers/irqchip/irq-ixp4xx.c
1933 F:      include/linux/irqchip/irq-ixp4xx.h
1934 F:      include/linux/platform_data/timer-ixp4xx.h
1935
1936 ARM/INTEL KEEMBAY ARCHITECTURE
1937 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1938 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1939 S:      Maintained
1940 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1941 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1942 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1943
1944 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1945 M:      Jonathan Cameron <jic23@cam.ac.uk>
1946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 S:      Maintained
1948 F:      arch/arm/mach-pxa/stargate2.c
1949 F:      drivers/pcmcia/pxa2xx_stargate2.c
1950
1951 ARM/INTEL XSC3 (MANZANO) ARM CORE
1952 M:      Lennert Buytenhek <kernel@wantstofly.org>
1953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1954 S:      Maintained
1955
1956 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1957 M:      Lennert Buytenhek <kernel@wantstofly.org>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S:      Maintained
1960
1961 ARM/LG1K ARCHITECTURE
1962 M:      Chanho Min <chanho.min@lge.com>
1963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1964 S:      Maintained
1965 F:      arch/arm64/boot/dts/lg/
1966
1967 ARM/LOGICPD PXA270 MACHINE SUPPORT
1968 M:      Lennert Buytenhek <kernel@wantstofly.org>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Maintained
1971
1972 ARM/LPC18XX ARCHITECTURE
1973 M:      Vladimir Zapolskiy <vz@mleia.com>
1974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1975 S:      Maintained
1976 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1977 F:      arch/arm/boot/dts/lpc43*
1978 F:      drivers/i2c/busses/i2c-lpc2k.c
1979 F:      drivers/memory/pl172.c
1980 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1981 F:      drivers/rtc/rtc-lpc24xx.c
1982 N:      lpc18xx
1983
1984 ARM/LPC32XX SOC SUPPORT
1985 M:      Vladimir Zapolskiy <vz@mleia.com>
1986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1987 S:      Maintained
1988 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1989 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1990 F:      arch/arm/boot/dts/lpc32*
1991 F:      arch/arm/mach-lpc32xx/
1992 F:      drivers/i2c/busses/i2c-pnx.c
1993 F:      drivers/net/ethernet/nxp/lpc_eth.c
1994 F:      drivers/usb/host/ohci-nxp.c
1995 F:      drivers/watchdog/pnx4008_wdt.c
1996 N:      lpc32xx
1997
1998 ARM/MAGICIAN MACHINE SUPPORT
1999 M:      Philipp Zabel <philipp.zabel@gmail.com>
2000 S:      Maintained
2001
2002 ARM/Marvell Dove/MV78xx0/Orion SOC support
2003 M:      Andrew Lunn <andrew@lunn.ch>
2004 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2005 M:      Gregory Clement <gregory.clement@bootlin.com>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Maintained
2008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2009 F:      Documentation/devicetree/bindings/soc/dove/
2010 F:      arch/arm/boot/dts/dove*
2011 F:      arch/arm/boot/dts/orion5x*
2012 F:      arch/arm/mach-dove/
2013 F:      arch/arm/mach-mv78xx0/
2014 F:      arch/arm/mach-orion5x/
2015 F:      arch/arm/plat-orion/
2016 F:      drivers/soc/dove/
2017
2018 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2019 M:      Andrew Lunn <andrew@lunn.ch>
2020 M:      Gregory Clement <gregory.clement@bootlin.com>
2021 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2023 S:      Maintained
2024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2025 F:      arch/arm/boot/dts/armada*
2026 F:      arch/arm/boot/dts/kirkwood*
2027 F:      arch/arm/configs/mvebu_*_defconfig
2028 F:      arch/arm/mach-mvebu/
2029 F:      arch/arm64/boot/dts/marvell/armada*
2030 F:      arch/arm64/boot/dts/marvell/cn913*
2031 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2032 F:      drivers/cpufreq/armada-8k-cpufreq.c
2033 F:      drivers/cpufreq/mvebu-cpufreq.c
2034 F:      drivers/irqchip/irq-armada-370-xp.c
2035 F:      drivers/irqchip/irq-mvebu-*
2036 F:      drivers/pinctrl/mvebu/
2037 F:      drivers/rtc/rtc-armada38x.c
2038
2039 ARM/Mediatek RTC DRIVER
2040 M:      Eddie Huang <eddie.huang@mediatek.com>
2041 M:      Sean Wang <sean.wang@mediatek.com>
2042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2043 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2044 S:      Maintained
2045 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2046 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2047 F:      drivers/rtc/rtc-mt2712.c
2048 F:      drivers/rtc/rtc-mt6397.c
2049 F:      drivers/rtc/rtc-mt7622.c
2050
2051 ARM/Mediatek SoC support
2052 M:      Matthias Brugger <matthias.bgg@gmail.com>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 W:      https://mtk.wiki.kernel.org/
2057 C:      irc://chat.freenode.net/linux-mediatek
2058 F:      arch/arm/boot/dts/mt6*
2059 F:      arch/arm/boot/dts/mt7*
2060 F:      arch/arm/boot/dts/mt8*
2061 F:      arch/arm/mach-mediatek/
2062 F:      arch/arm64/boot/dts/mediatek/
2063 F:      drivers/soc/mediatek/
2064 N:      mtk
2065 N:      mt[678]
2066 K:      mediatek
2067
2068 ARM/Mediatek USB3 PHY DRIVER
2069 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2070 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2071 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2072 S:      Maintained
2073 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2074 F:      drivers/phy/mediatek/
2075
2076 ARM/Microchip (AT91) SoC support
2077 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2078 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2079 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2080 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2081 S:      Supported
2082 W:      http://www.linux4sam.org
2083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2084 F:      arch/arm/boot/dts/at91*.dts
2085 F:      arch/arm/boot/dts/at91*.dtsi
2086 F:      arch/arm/boot/dts/sama*.dts
2087 F:      arch/arm/boot/dts/sama*.dtsi
2088 F:      arch/arm/include/debug/at91.S
2089 F:      arch/arm/mach-at91/
2090 F:      drivers/memory/atmel*
2091 F:      drivers/watchdog/sama5d4_wdt.c
2092 F:      include/soc/at91/
2093 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2094 X:      drivers/net/wireless/atmel/
2095 N:      at91
2096 N:      atmel
2097
2098 ARM/Microchip Sparx5 SoC support
2099 M:      Lars Povlsen <lars.povlsen@microchip.com>
2100 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2101 M:      UNGLinuxDriver@microchip.com
2102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 S:      Supported
2104 T:      git git://github.com/microchip-ung/linux-upstream.git
2105 F:      arch/arm64/boot/dts/microchip/
2106 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2107 N:      sparx5
2108
2109 Microchip Timer Counter Block (TCB) Capture Driver
2110 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 L:      linux-iio@vger.kernel.org
2113 S:      Maintained
2114 F:      drivers/counter/microchip-tcb-capture.c
2115
2116 ARM/MIOA701 MACHINE SUPPORT
2117 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2118 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2119 S:      Maintained
2120 F:      arch/arm/mach-pxa/mioa701.c
2121
2122 ARM/MStar/Sigmastar Armv7 SoC support
2123 M:      Daniel Palmer <daniel@thingy.jp>
2124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2125 S:      Maintained
2126 W:      http://linux-chenxing.org/
2127 F:      Documentation/devicetree/bindings/arm/mstar/*
2128 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2129 F:      arch/arm/boot/dts/mstar-*
2130 F:      arch/arm/mach-mstar/
2131 F:      drivers/gpio/gpio-msc313.c
2132 F:      include/dt-bindings/gpio/msc313-gpio.h
2133
2134 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2135 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2136 S:      Maintained
2137
2138 ARM/NOMADIK/Ux500 ARCHITECTURES
2139 M:      Linus Walleij <linus.walleij@linaro.org>
2140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2141 S:      Maintained
2142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2143 F:      Documentation/devicetree/bindings/arm/ste-*
2144 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2145 F:      Documentation/devicetree/bindings/arm/ux500/
2146 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2147 F:      arch/arm/boot/dts/ste-*
2148 F:      arch/arm/mach-nomadik/
2149 F:      arch/arm/mach-ux500/
2150 F:      drivers/clk/clk-nomadik.c
2151 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2152 F:      drivers/dma/ste_dma40*
2153 F:      drivers/hwspinlock/u8500_hsem.c
2154 F:      drivers/i2c/busses/i2c-nomadik.c
2155 F:      drivers/iio/adc/ab8500-gpadc.c
2156 F:      drivers/mfd/ab8500*
2157 F:      drivers/mfd/abx500*
2158 F:      drivers/mfd/db8500*
2159 F:      drivers/mfd/dbx500*
2160 F:      drivers/pinctrl/nomadik/
2161 F:      drivers/rtc/rtc-ab8500.c
2162 F:      drivers/rtc/rtc-pl031.c
2163 F:      drivers/soc/ux500/
2164
2165 ARM/NUVOTON NPCM ARCHITECTURE
2166 M:      Avi Fishman <avifishman70@gmail.com>
2167 M:      Tomer Maimon <tmaimon77@gmail.com>
2168 M:      Tali Perry <tali.perry1@gmail.com>
2169 R:      Patrick Venture <venture@google.com>
2170 R:      Nancy Yuen <yuenn@google.com>
2171 R:      Benjamin Fair <benjaminfair@google.com>
2172 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2173 S:      Supported
2174 F:      Documentation/devicetree/bindings/*/*/*npcm*
2175 F:      Documentation/devicetree/bindings/*/*npcm*
2176 F:      arch/arm/boot/dts/nuvoton-npcm*
2177 F:      arch/arm/mach-npcm/
2178 F:      drivers/*/*npcm*
2179 F:      drivers/*/*/*npcm*
2180 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2181
2182 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2183 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2184 S:      Orphan
2185 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2186 F:      arch/arm/mach-s3c/gta02.h
2187 F:      arch/arm/mach-s3c/mach-gta02.c
2188
2189 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2190 M:      Alexander Clouter <alex@digriz.org.uk>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 S:      Maintained
2193 W:      http://www.digriz.org.uk/ts78xx/kernel
2194 F:      arch/arm/mach-orion5x/ts78xx-*
2195
2196 ARM/OXNAS platform support
2197 M:      Neil Armstrong <narmstrong@baylibre.com>
2198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2199 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2200 S:      Maintained
2201 F:      arch/arm/boot/dts/ox8*.dts*
2202 F:      arch/arm/mach-oxnas/
2203 F:      drivers/power/reset/oxnas-restart.c
2204 N:      oxnas
2205
2206 ARM/PALM TREO SUPPORT
2207 M:      Tomas Cech <sleep_walker@suse.com>
2208 L:      linux-arm-kernel@lists.infradead.org
2209 S:      Maintained
2210 W:      http://hackndev.com
2211 F:      arch/arm/mach-pxa/palmtreo.*
2212
2213 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2214 M:      Marek Vasut <marek.vasut@gmail.com>
2215 L:      linux-arm-kernel@lists.infradead.org
2216 S:      Maintained
2217 W:      http://hackndev.com
2218 F:      arch/arm/mach-pxa/include/mach/palmld.h
2219 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2220 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2221 F:      arch/arm/mach-pxa/palmld.c
2222 F:      arch/arm/mach-pxa/palmt5.*
2223 F:      arch/arm/mach-pxa/palmtc.c
2224 F:      arch/arm/mach-pxa/palmte2.*
2225 F:      arch/arm/mach-pxa/palmtx.c
2226
2227 ARM/PALMZ72 SUPPORT
2228 M:      Sergey Lapin <slapin@ossfans.org>
2229 L:      linux-arm-kernel@lists.infradead.org
2230 S:      Maintained
2231 W:      http://hackndev.com
2232 F:      arch/arm/mach-pxa/palmz72.*
2233
2234 ARM/PLEB SUPPORT
2235 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2236 S:      Maintained
2237 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2238
2239 ARM/PT DIGITAL BOARD PORT
2240 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2241 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2242 S:      Maintained
2243 W:      http://www.armlinux.org.uk/
2244
2245 ARM/QUALCOMM SUPPORT
2246 M:      Andy Gross <agross@kernel.org>
2247 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2248 L:      linux-arm-msm@vger.kernel.org
2249 S:      Maintained
2250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2251 F:      Documentation/devicetree/bindings/*/qcom*
2252 F:      Documentation/devicetree/bindings/soc/qcom/
2253 F:      arch/arm/boot/dts/qcom-*.dts
2254 F:      arch/arm/boot/dts/qcom-*.dtsi
2255 F:      arch/arm/mach-qcom/
2256 F:      arch/arm64/boot/dts/qcom/
2257 F:      drivers/*/*/qcom*
2258 F:      drivers/*/*/qcom/
2259 F:      drivers/*/pm8???-*
2260 F:      drivers/*/qcom*
2261 F:      drivers/*/qcom/
2262 F:      drivers/bluetooth/btqcomsmd.c
2263 F:      drivers/clocksource/timer-qcom.c
2264 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2265 F:      drivers/extcon/extcon-qcom*
2266 F:      drivers/i2c/busses/i2c-qcom-geni.c
2267 F:      drivers/i2c/busses/i2c-qup.c
2268 F:      drivers/iommu/msm*
2269 F:      drivers/mfd/ssbi.c
2270 F:      drivers/mmc/host/mmci_qcom*
2271 F:      drivers/mmc/host/sdhci-msm.c
2272 F:      drivers/pci/controller/dwc/pcie-qcom.c
2273 F:      drivers/phy/qualcomm/
2274 F:      drivers/power/*/msm*
2275 F:      drivers/reset/reset-qcom-*
2276 F:      drivers/scsi/ufs/ufs-qcom*
2277 F:      drivers/spi/spi-geni-qcom.c
2278 F:      drivers/spi/spi-qcom-qspi.c
2279 F:      drivers/spi/spi-qup.c
2280 F:      drivers/tty/serial/msm_serial.c
2281 F:      drivers/usb/dwc3/dwc3-qcom.c
2282 F:      include/dt-bindings/*/qcom*
2283 F:      include/linux/*/qcom*
2284
2285 ARM/RADISYS ENP2611 MACHINE SUPPORT
2286 M:      Lennert Buytenhek <kernel@wantstofly.org>
2287 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2288 S:      Maintained
2289
2290 ARM/RDA MICRO ARCHITECTURE
2291 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2293 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2294 S:      Maintained
2295 F:      Documentation/devicetree/bindings/arm/rda.yaml
2296 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2297 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2298 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2299 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2300 F:      arch/arm/boot/dts/rda8810pl-*
2301 F:      drivers/clocksource/timer-rda.c
2302 F:      drivers/gpio/gpio-rda.c
2303 F:      drivers/irqchip/irq-rda-intc.c
2304 F:      drivers/tty/serial/rda-uart.c
2305
2306 ARM/REALTEK ARCHITECTURE
2307 M:      Andreas Färber <afaerber@suse.de>
2308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2309 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2310 S:      Maintained
2311 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2312 F:      arch/arm/boot/dts/rtd*
2313 F:      arch/arm/mach-realtek/
2314 F:      arch/arm64/boot/dts/realtek/
2315
2316 ARM/RENESAS ARM64 ARCHITECTURE
2317 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2318 M:      Magnus Damm <magnus.damm@gmail.com>
2319 L:      linux-renesas-soc@vger.kernel.org
2320 S:      Supported
2321 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2323 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2324 F:      arch/arm64/boot/dts/renesas/
2325 F:      drivers/soc/renesas/
2326 F:      include/linux/soc/renesas/
2327
2328 ARM/RISCPC ARCHITECTURE
2329 M:      Russell King <linux@armlinux.org.uk>
2330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2331 S:      Maintained
2332 W:      http://www.armlinux.org.uk/
2333 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2334 F:      arch/arm/include/asm/hardware/ioc.h
2335 F:      arch/arm/include/asm/hardware/iomd.h
2336 F:      arch/arm/include/asm/hardware/memc.h
2337 F:      arch/arm/mach-rpc/
2338 F:      drivers/net/ethernet/8390/etherh.c
2339 F:      drivers/net/ethernet/i825xx/ether1*
2340 F:      drivers/net/ethernet/seeq/ether3*
2341 F:      drivers/scsi/arm/
2342
2343 ARM/Rockchip SoC support
2344 M:      Heiko Stuebner <heiko@sntech.de>
2345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2346 L:      linux-rockchip@lists.infradead.org
2347 S:      Maintained
2348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2349 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2350 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2351 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2352 F:      arch/arm/boot/dts/rk3*
2353 F:      arch/arm/boot/dts/rv1108*
2354 F:      arch/arm/mach-rockchip/
2355 F:      drivers/*/*/*rockchip*
2356 F:      drivers/*/*rockchip*
2357 F:      drivers/clk/rockchip/
2358 F:      drivers/i2c/busses/i2c-rk3x.c
2359 F:      sound/soc/rockchip/
2360 N:      rockchip
2361
2362 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2363 M:      Krzysztof Kozlowski <krzk@kernel.org>
2364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2365 L:      linux-samsung-soc@vger.kernel.org
2366 S:      Maintained
2367 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2368 F:      Documentation/arm/samsung/
2369 F:      Documentation/devicetree/bindings/arm/samsung/
2370 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2371 F:      arch/arm/boot/dts/exynos*
2372 F:      arch/arm/boot/dts/s3c*
2373 F:      arch/arm/boot/dts/s5p*
2374 F:      arch/arm/mach-exynos*/
2375 F:      arch/arm/mach-s3c/
2376 F:      arch/arm/mach-s5p*/
2377 F:      arch/arm64/boot/dts/exynos/
2378 F:      drivers/*/*/*s3c24*
2379 F:      drivers/*/*s3c24*
2380 F:      drivers/*/*s3c64xx*
2381 F:      drivers/*/*s5pv210*
2382 F:      drivers/memory/samsung/
2383 F:      drivers/soc/samsung/
2384 F:      drivers/tty/serial/samsung*
2385 F:      include/linux/soc/samsung/
2386 N:      exynos
2387 N:      s3c2410
2388 N:      s3c64xx
2389 N:      s5pv210
2390
2391 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2392 M:      Andrzej Hajda <a.hajda@samsung.com>
2393 L:      linux-arm-kernel@lists.infradead.org
2394 L:      linux-media@vger.kernel.org
2395 S:      Maintained
2396 F:      drivers/media/platform/s5p-g2d/
2397
2398 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2399 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2400 L:      linux-samsung-soc@vger.kernel.org
2401 L:      linux-media@vger.kernel.org
2402 S:      Maintained
2403 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2404 F:      drivers/media/cec/platform/s5p/
2405
2406 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2407 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2408 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2409 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2410 L:      linux-arm-kernel@lists.infradead.org
2411 L:      linux-media@vger.kernel.org
2412 S:      Maintained
2413 F:      drivers/media/platform/s5p-jpeg/
2414
2415 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2416 M:      Andrzej Hajda <a.hajda@samsung.com>
2417 L:      linux-arm-kernel@lists.infradead.org
2418 L:      linux-media@vger.kernel.org
2419 S:      Maintained
2420 F:      drivers/media/platform/s5p-mfc/
2421
2422 ARM/SHMOBILE ARM ARCHITECTURE
2423 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2424 M:      Magnus Damm <magnus.damm@gmail.com>
2425 L:      linux-renesas-soc@vger.kernel.org
2426 S:      Supported
2427 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2429 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2430 F:      arch/arm/boot/dts/emev2*
2431 F:      arch/arm/boot/dts/gr-peach*
2432 F:      arch/arm/boot/dts/iwg20d-q7*
2433 F:      arch/arm/boot/dts/r7s*
2434 F:      arch/arm/boot/dts/r8a*
2435 F:      arch/arm/boot/dts/r9a*
2436 F:      arch/arm/boot/dts/sh*
2437 F:      arch/arm/configs/shmobile_defconfig
2438 F:      arch/arm/include/debug/renesas-scif.S
2439 F:      arch/arm/mach-shmobile/
2440 F:      drivers/soc/renesas/
2441 F:      include/linux/soc/renesas/
2442
2443 ARM/SOCFPGA ARCHITECTURE
2444 M:      Dinh Nguyen <dinguyen@kernel.org>
2445 S:      Maintained
2446 W:      http://www.rocketboards.org
2447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2448 F:      arch/arm/boot/dts/socfpga*
2449 F:      arch/arm/configs/socfpga_defconfig
2450 F:      arch/arm/mach-socfpga/
2451 F:      arch/arm64/boot/dts/altera/
2452 F:      arch/arm64/boot/dts/intel/
2453
2454 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2455 M:      Dinh Nguyen <dinguyen@kernel.org>
2456 S:      Maintained
2457 F:      drivers/clk/socfpga/
2458
2459 ARM/SOCFPGA EDAC SUPPORT
2460 M:      Dinh Nguyen <dinguyen@kernel.org>
2461 S:      Maintained
2462 F:      drivers/edac/altera_edac.[ch]
2463
2464 ARM/SPREADTRUM SoC SUPPORT
2465 M:      Orson Zhai <orsonzhai@gmail.com>
2466 M:      Baolin Wang <baolin.wang7@gmail.com>
2467 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2468 S:      Maintained
2469 F:      arch/arm64/boot/dts/sprd
2470 N:      sprd
2471 N:      sc27xx
2472 N:      sc2731
2473
2474 ARM/STI ARCHITECTURE
2475 M:      Patrice Chotard <patrice.chotard@st.com>
2476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2477 S:      Maintained
2478 W:      http://www.stlinux.com
2479 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2480 F:      arch/arm/boot/dts/sti*
2481 F:      arch/arm/mach-sti/
2482 F:      drivers/ata/ahci_st.c
2483 F:      drivers/char/hw_random/st-rng.c
2484 F:      drivers/clocksource/arm_global_timer.c
2485 F:      drivers/clocksource/clksrc_st_lpc.c
2486 F:      drivers/cpufreq/sti-cpufreq.c
2487 F:      drivers/dma/st_fdma*
2488 F:      drivers/i2c/busses/i2c-st.c
2489 F:      drivers/media/platform/sti/c8sectpfe/
2490 F:      drivers/media/rc/st_rc.c
2491 F:      drivers/mmc/host/sdhci-st.c
2492 F:      drivers/phy/st/phy-miphy28lp.c
2493 F:      drivers/phy/st/phy-stih407-usb.c
2494 F:      drivers/pinctrl/pinctrl-st.c
2495 F:      drivers/remoteproc/st_remoteproc.c
2496 F:      drivers/remoteproc/st_slim_rproc.c
2497 F:      drivers/reset/sti/
2498 F:      drivers/rtc/rtc-st-lpc.c
2499 F:      drivers/tty/serial/st-asc.c
2500 F:      drivers/usb/dwc3/dwc3-st.c
2501 F:      drivers/usb/host/ehci-st.c
2502 F:      drivers/usb/host/ohci-st.c
2503 F:      drivers/watchdog/st_lpc_wdt.c
2504 F:      include/linux/remoteproc/st_slim_rproc.h
2505
2506 ARM/STM32 ARCHITECTURE
2507 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2508 M:      Alexandre Torgue <alexandre.torgue@st.com>
2509 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2511 S:      Maintained
2512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2513 F:      arch/arm/boot/dts/stm32*
2514 F:      arch/arm/mach-stm32/
2515 F:      drivers/clocksource/armv7m_systick.c
2516 N:      stm32
2517 N:      stm
2518
2519 ARM/Synaptics SoC support
2520 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2521 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2523 S:      Maintained
2524 F:      arch/arm/boot/dts/berlin*
2525 F:      arch/arm/mach-berlin/
2526 F:      arch/arm64/boot/dts/synaptics/
2527
2528 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2529 M:      Lennert Buytenhek <kernel@wantstofly.org>
2530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2531 S:      Maintained
2532
2533 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2534 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2535 L:      linux-tegra@vger.kernel.org
2536 L:      linux-media@vger.kernel.org
2537 S:      Maintained
2538 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2539 F:      drivers/media/cec/platform/tegra/
2540
2541 ARM/TETON BGA MACHINE SUPPORT
2542 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2544 S:      Maintained
2545
2546 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2547 M:      Santosh Shilimkar <ssantosh@kernel.org>
2548 L:      linux-kernel@vger.kernel.org
2549 S:      Maintained
2550 F:      drivers/memory/*emif*
2551
2552 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2553 M:      Santosh Shilimkar <ssantosh@kernel.org>
2554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2555 S:      Maintained
2556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2557 F:      arch/arm/boot/dts/keystone-*
2558 F:      arch/arm/mach-keystone/
2559
2560 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2561 M:      Santosh Shilimkar <ssantosh@kernel.org>
2562 L:      linux-kernel@vger.kernel.org
2563 S:      Maintained
2564 F:      drivers/clk/keystone/
2565
2566 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2567 M:      Santosh Shilimkar <ssantosh@kernel.org>
2568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2569 L:      linux-kernel@vger.kernel.org
2570 S:      Maintained
2571 F:      drivers/clocksource/timer-keystone.c
2572
2573 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2574 M:      Santosh Shilimkar <ssantosh@kernel.org>
2575 L:      linux-kernel@vger.kernel.org
2576 S:      Maintained
2577 F:      drivers/power/reset/keystone-reset.c
2578
2579 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2580 M:      Nishanth Menon <nm@ti.com>
2581 M:      Tero Kristo <kristo@kernel.org>
2582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2583 S:      Supported
2584 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2585 F:      arch/arm64/boot/dts/ti/Makefile
2586 F:      arch/arm64/boot/dts/ti/k3-*
2587 F:      include/dt-bindings/pinctrl/k3.h
2588
2589 ARM/THECUS N2100 MACHINE SUPPORT
2590 M:      Lennert Buytenhek <kernel@wantstofly.org>
2591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2592 S:      Maintained
2593
2594 ARM/TOSA MACHINE SUPPORT
2595 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2596 M:      Dirk Opfer <dirk@opfer-online.de>
2597 S:      Maintained
2598
2599 ARM/TOSHIBA VISCONTI ARCHITECTURE
2600 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2602 S:      Supported
2603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2604 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2605 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2606 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2607 F:      arch/arm64/boot/dts/toshiba/
2608 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2609 F:      drivers/pinctrl/visconti/
2610 N:      visconti
2611
2612 ARM/UNIPHIER ARCHITECTURE
2613 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2614 S:      Orphan
2615 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2616 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2617 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2618 F:      arch/arm/boot/dts/uniphier*
2619 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2620 F:      arch/arm/mach-uniphier/
2621 F:      arch/arm/mm/cache-uniphier.c
2622 F:      arch/arm64/boot/dts/socionext/uniphier*
2623 F:      drivers/bus/uniphier-system-bus.c
2624 F:      drivers/clk/uniphier/
2625 F:      drivers/dma/uniphier-mdmac.c
2626 F:      drivers/gpio/gpio-uniphier.c
2627 F:      drivers/i2c/busses/i2c-uniphier*
2628 F:      drivers/irqchip/irq-uniphier-aidet.c
2629 F:      drivers/mmc/host/uniphier-sd.c
2630 F:      drivers/pinctrl/uniphier/
2631 F:      drivers/reset/reset-uniphier.c
2632 F:      drivers/tty/serial/8250/8250_uniphier.c
2633 N:      uniphier
2634
2635 ARM/VERSATILE EXPRESS PLATFORM
2636 M:      Liviu Dudau <liviu.dudau@arm.com>
2637 M:      Sudeep Holla <sudeep.holla@arm.com>
2638 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2640 S:      Maintained
2641 F:      */*/*/vexpress*
2642 F:      */*/vexpress*
2643 F:      arch/arm/boot/dts/vexpress*
2644 F:      arch/arm/mach-vexpress/
2645 F:      arch/arm64/boot/dts/arm/
2646 F:      drivers/clk/versatile/clk-vexpress-osc.c
2647 F:      drivers/clocksource/timer-versatile.c
2648 N:      mps2
2649
2650 ARM/VFP SUPPORT
2651 M:      Russell King <linux@armlinux.org.uk>
2652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2653 S:      Maintained
2654 W:      http://www.armlinux.org.uk/
2655 F:      arch/arm/vfp/
2656
2657 ARM/VOIPAC PXA270 SUPPORT
2658 M:      Marek Vasut <marek.vasut@gmail.com>
2659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2660 S:      Maintained
2661 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2662 F:      arch/arm/mach-pxa/vpac270.c
2663
2664 ARM/VT8500 ARM ARCHITECTURE
2665 M:      Tony Prisk <linux@prisktech.co.nz>
2666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2667 S:      Maintained
2668 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2669 F:      arch/arm/mach-vt8500/
2670 F:      drivers/clocksource/timer-vt8500.c
2671 F:      drivers/i2c/busses/i2c-wmt.c
2672 F:      drivers/mmc/host/wmt-sdmmc.c
2673 F:      drivers/pwm/pwm-vt8500.c
2674 F:      drivers/rtc/rtc-vt8500.c
2675 F:      drivers/tty/serial/vt8500_serial.c
2676 F:      drivers/usb/host/ehci-platform.c
2677 F:      drivers/usb/host/uhci-platform.c
2678 F:      drivers/video/fbdev/vt8500lcdfb.*
2679 F:      drivers/video/fbdev/wm8505fb*
2680 F:      drivers/video/fbdev/wmt_ge_rops.*
2681
2682 ARM/ZIPIT Z2 SUPPORT
2683 M:      Marek Vasut <marek.vasut@gmail.com>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 S:      Maintained
2686 F:      arch/arm/mach-pxa/include/mach/z2.h
2687 F:      arch/arm/mach-pxa/z2.c
2688
2689 ARM/ZYNQ ARCHITECTURE
2690 M:      Michal Simek <michal.simek@xilinx.com>
2691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2692 S:      Supported
2693 W:      http://wiki.xilinx.com
2694 T:      git https://github.com/Xilinx/linux-xlnx.git
2695 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2696 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2697 F:      arch/arm/mach-zynq/
2698 F:      drivers/block/xsysace.c
2699 F:      drivers/clocksource/timer-cadence-ttc.c
2700 F:      drivers/cpuidle/cpuidle-zynq.c
2701 F:      drivers/edac/synopsys_edac.c
2702 F:      drivers/i2c/busses/i2c-cadence.c
2703 F:      drivers/i2c/busses/i2c-xiic.c
2704 F:      drivers/mmc/host/sdhci-of-arasan.c
2705 N:      zynq
2706 N:      xilinx
2707
2708 ARM64 PORT (AARCH64 ARCHITECTURE)
2709 M:      Catalin Marinas <catalin.marinas@arm.com>
2710 M:      Will Deacon <will@kernel.org>
2711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2712 S:      Maintained
2713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2714 F:      Documentation/arm64/
2715 F:      arch/arm64/
2716 F:      tools/testing/selftests/arm64/
2717 X:      arch/arm64/boot/dts/
2718
2719 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2720 M:      George McCollister <george.mccollister@gmail.com>
2721 L:      netdev@vger.kernel.org
2722 S:      Maintained
2723 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2724 F:      drivers/net/dsa/xrs700x/*
2725 F:      net/dsa/tag_xrs700x.c
2726
2727 AS3645A LED FLASH CONTROLLER DRIVER
2728 M:      Sakari Ailus <sakari.ailus@iki.fi>
2729 L:      linux-leds@vger.kernel.org
2730 S:      Maintained
2731 F:      drivers/leds/leds-as3645a.c
2732
2733 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2734 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2735 L:      linux-media@vger.kernel.org
2736 S:      Maintained
2737 T:      git git://linuxtv.org/media_tree.git
2738 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2739 F:      drivers/media/i2c/ak7375.c
2740
2741 ASAHI KASEI AK8974 DRIVER
2742 M:      Linus Walleij <linus.walleij@linaro.org>
2743 L:      linux-iio@vger.kernel.org
2744 S:      Supported
2745 W:      http://www.akm.com/
2746 F:      drivers/iio/magnetometer/ak8974.c
2747
2748 ASC7621 HARDWARE MONITOR DRIVER
2749 M:      George Joseph <george.joseph@fairview5.com>
2750 L:      linux-hwmon@vger.kernel.org
2751 S:      Maintained
2752 F:      Documentation/hwmon/asc7621.rst
2753 F:      drivers/hwmon/asc7621.c
2754
2755 ASPEED PINCTRL DRIVERS
2756 M:      Andrew Jeffery <andrew@aj.id.au>
2757 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2758 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2759 L:      linux-gpio@vger.kernel.org
2760 S:      Maintained
2761 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2762 F:      drivers/pinctrl/aspeed/
2763
2764 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2765 M:      Eddie James <eajames@linux.ibm.com>
2766 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2767 S:      Maintained
2768 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2769 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2770 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2771
2772 ASPEED VIDEO ENGINE DRIVER
2773 M:      Eddie James <eajames@linux.ibm.com>
2774 L:      linux-media@vger.kernel.org
2775 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2776 S:      Maintained
2777 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2778 F:      drivers/media/platform/aspeed-video.c
2779
2780 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2781 M:      Corentin Chary <corentin.chary@gmail.com>
2782 L:      acpi4asus-user@lists.sourceforge.net
2783 L:      platform-driver-x86@vger.kernel.org
2784 S:      Maintained
2785 W:      http://acpi4asus.sf.net
2786 F:      drivers/platform/x86/asus*.c
2787 F:      drivers/platform/x86/eeepc*.c
2788
2789 ASUS WIRELESS RADIO CONTROL DRIVER
2790 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2791 L:      platform-driver-x86@vger.kernel.org
2792 S:      Maintained
2793 F:      drivers/platform/x86/asus-wireless.c
2794
2795 ASYMMETRIC KEYS
2796 M:      David Howells <dhowells@redhat.com>
2797 L:      keyrings@vger.kernel.org
2798 S:      Maintained
2799 F:      Documentation/crypto/asymmetric-keys.rst
2800 F:      crypto/asymmetric_keys/
2801 F:      include/crypto/pkcs7.h
2802 F:      include/crypto/public_key.h
2803 F:      include/linux/verification.h
2804
2805 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2806 R:      Dan Williams <dan.j.williams@intel.com>
2807 S:      Odd fixes
2808 W:      http://sourceforge.net/projects/xscaleiop
2809 F:      Documentation/crypto/async-tx-api.rst
2810 F:      crypto/async_tx/
2811 F:      drivers/dma/
2812 F:      include/linux/async_tx.h
2813 F:      include/linux/dmaengine.h
2814
2815 AT24 EEPROM DRIVER
2816 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2817 L:      linux-i2c@vger.kernel.org
2818 S:      Maintained
2819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2820 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2821 F:      drivers/misc/eeprom/at24.c
2822
2823 ATA OVER ETHERNET (AOE) DRIVER
2824 M:      "Justin Sanders" <justin@coraid.com>
2825 S:      Supported
2826 W:      http://www.openaoe.org/
2827 F:      Documentation/admin-guide/aoe/
2828 F:      drivers/block/aoe/
2829
2830 ATHEROS 71XX/9XXX GPIO DRIVER
2831 M:      Alban Bedel <albeu@free.fr>
2832 S:      Maintained
2833 W:      https://github.com/AlbanBedel/linux
2834 T:      git git://github.com/AlbanBedel/linux
2835 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2836 F:      drivers/gpio/gpio-ath79.c
2837
2838 ATHEROS 71XX/9XXX USB PHY DRIVER
2839 M:      Alban Bedel <albeu@free.fr>
2840 S:      Maintained
2841 W:      https://github.com/AlbanBedel/linux
2842 T:      git git://github.com/AlbanBedel/linux
2843 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2844 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2845
2846 ATHEROS ATH GENERIC UTILITIES
2847 M:      Kalle Valo <kvalo@codeaurora.org>
2848 L:      linux-wireless@vger.kernel.org
2849 S:      Supported
2850 F:      drivers/net/wireless/ath/*
2851
2852 ATHEROS ATH5K WIRELESS DRIVER
2853 M:      Jiri Slaby <jirislaby@kernel.org>
2854 M:      Nick Kossifidis <mickflemm@gmail.com>
2855 M:      Luis Chamberlain <mcgrof@kernel.org>
2856 L:      linux-wireless@vger.kernel.org
2857 S:      Maintained
2858 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2859 F:      drivers/net/wireless/ath/ath5k/
2860
2861 ATHEROS ATH6KL WIRELESS DRIVER
2862 M:      Kalle Valo <kvalo@codeaurora.org>
2863 L:      linux-wireless@vger.kernel.org
2864 S:      Supported
2865 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2867 F:      drivers/net/wireless/ath/ath6kl/
2868
2869 ATI_REMOTE2 DRIVER
2870 M:      Ville Syrjala <syrjala@sci.fi>
2871 S:      Maintained
2872 F:      drivers/input/misc/ati_remote2.c
2873
2874 ATK0110 HWMON DRIVER
2875 M:      Luca Tettamanti <kronos.it@gmail.com>
2876 L:      linux-hwmon@vger.kernel.org
2877 S:      Maintained
2878 F:      drivers/hwmon/asus_atk0110.c
2879
2880 ATLX ETHERNET DRIVERS
2881 M:      Chris Snook <chris.snook@gmail.com>
2882 L:      netdev@vger.kernel.org
2883 S:      Maintained
2884 W:      http://sourceforge.net/projects/atl1
2885 W:      http://atl1.sourceforge.net
2886 F:      drivers/net/ethernet/atheros/
2887
2888 ATM
2889 M:      Chas Williams <3chas3@gmail.com>
2890 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2891 L:      netdev@vger.kernel.org
2892 S:      Maintained
2893 W:      http://linux-atm.sourceforge.net
2894 F:      drivers/atm/
2895 F:      include/linux/atm*
2896 F:      include/uapi/linux/atm*
2897
2898 ATMEL MACB ETHERNET DRIVER
2899 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2900 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2901 S:      Supported
2902 F:      drivers/net/ethernet/cadence/
2903
2904 ATMEL MAXTOUCH DRIVER
2905 M:      Nick Dyer <nick@shmanahar.org>
2906 S:      Maintained
2907 T:      git git://github.com/ndyer/linux.git
2908 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2909 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2910
2911 ATMEL WIRELESS DRIVER
2912 M:      Simon Kelley <simon@thekelleys.org.uk>
2913 L:      linux-wireless@vger.kernel.org
2914 S:      Maintained
2915 W:      http://www.thekelleys.org.uk/atmel
2916 W:      http://atmelwlandriver.sourceforge.net/
2917 F:      drivers/net/wireless/atmel/atmel*
2918
2919 ATOMIC INFRASTRUCTURE
2920 M:      Will Deacon <will@kernel.org>
2921 M:      Peter Zijlstra <peterz@infradead.org>
2922 R:      Boqun Feng <boqun.feng@gmail.com>
2923 L:      linux-kernel@vger.kernel.org
2924 S:      Maintained
2925 F:      arch/*/include/asm/atomic*.h
2926 F:      include/*/atomic*.h
2927 F:      include/linux/refcount.h
2928 F:      Documentation/atomic_*.txt
2929 F:      scripts/atomic/
2930
2931 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2932 M:      Bradley Grove <linuxdrivers@attotech.com>
2933 L:      linux-scsi@vger.kernel.org
2934 S:      Supported
2935 W:      http://www.attotech.com
2936 F:      drivers/scsi/esas2r
2937
2938 ATUSB IEEE 802.15.4 RADIO DRIVER
2939 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2940 L:      linux-wpan@vger.kernel.org
2941 S:      Maintained
2942 F:      drivers/net/ieee802154/at86rf230.h
2943 F:      drivers/net/ieee802154/atusb.c
2944 F:      drivers/net/ieee802154/atusb.h
2945
2946 AUDIT SUBSYSTEM
2947 M:      Paul Moore <paul@paul-moore.com>
2948 M:      Eric Paris <eparis@redhat.com>
2949 L:      linux-audit@redhat.com (moderated for non-subscribers)
2950 S:      Supported
2951 W:      https://github.com/linux-audit
2952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2953 F:      include/linux/audit.h
2954 F:      include/uapi/linux/audit.h
2955 F:      kernel/audit*
2956
2957 AUXILIARY DISPLAY DRIVERS
2958 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2959 S:      Maintained
2960 F:      drivers/auxdisplay/
2961 F:      include/linux/cfag12864b.h
2962
2963 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2964 M:      Andreas Klinger <ak@it-klinger.de>
2965 L:      linux-iio@vger.kernel.org
2966 S:      Maintained
2967 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2968 F:      drivers/iio/adc/hx711.c
2969
2970 AX.25 NETWORK LAYER
2971 M:      Ralf Baechle <ralf@linux-mips.org>
2972 L:      linux-hams@vger.kernel.org
2973 S:      Maintained
2974 W:      http://www.linux-ax25.org/
2975 F:      include/net/ax25.h
2976 F:      include/uapi/linux/ax25.h
2977 F:      net/ax25/
2978
2979 AXENTIA ARM DEVICES
2980 M:      Peter Rosin <peda@axentia.se>
2981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2982 S:      Maintained
2983 F:      arch/arm/boot/dts/at91-linea.dtsi
2984 F:      arch/arm/boot/dts/at91-natte.dtsi
2985 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2986 F:      arch/arm/boot/dts/at91-tse850-3.dts
2987
2988 AXENTIA ASOC DRIVERS
2989 M:      Peter Rosin <peda@axentia.se>
2990 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2991 S:      Maintained
2992 F:      Documentation/devicetree/bindings/sound/axentia,*
2993 F:      sound/soc/atmel/tse850-pcm5142.c
2994
2995 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
2996 M:      Nuno Sá <nuno.sa@analog.com>
2997 L:      linux-hwmon@vger.kernel.org
2998 S:      Supported
2999 W:      http://ez.analog.com/community/linux-device-drivers
3000 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3001 F:      drivers/hwmon/axi-fan-control.c
3002
3003 AXXIA I2C CONTROLLER
3004 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3005 L:      linux-i2c@vger.kernel.org
3006 S:      Maintained
3007 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3008 F:      drivers/i2c/busses/i2c-axxia.c
3009
3010 AZ6007 DVB DRIVER
3011 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3012 L:      linux-media@vger.kernel.org
3013 S:      Maintained
3014 W:      https://linuxtv.org
3015 T:      git git://linuxtv.org/media_tree.git
3016 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3017
3018 AZTECH FM RADIO RECEIVER DRIVER
3019 M:      Hans Verkuil <hverkuil@xs4all.nl>
3020 L:      linux-media@vger.kernel.org
3021 S:      Maintained
3022 W:      https://linuxtv.org
3023 T:      git git://linuxtv.org/media_tree.git
3024 F:      drivers/media/radio/radio-aztech*
3025
3026 B43 WIRELESS DRIVER
3027 L:      linux-wireless@vger.kernel.org
3028 L:      b43-dev@lists.infradead.org
3029 S:      Odd Fixes
3030 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3031 F:      drivers/net/wireless/broadcom/b43/
3032
3033 B43LEGACY WIRELESS DRIVER
3034 M:      Larry Finger <Larry.Finger@lwfinger.net>
3035 L:      linux-wireless@vger.kernel.org
3036 L:      b43-dev@lists.infradead.org
3037 S:      Maintained
3038 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3039 F:      drivers/net/wireless/broadcom/b43legacy/
3040
3041 BACKLIGHT CLASS/SUBSYSTEM
3042 M:      Lee Jones <lee.jones@linaro.org>
3043 M:      Daniel Thompson <daniel.thompson@linaro.org>
3044 M:      Jingoo Han <jingoohan1@gmail.com>
3045 L:      dri-devel@lists.freedesktop.org
3046 S:      Maintained
3047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3048 F:      Documentation/ABI/stable/sysfs-class-backlight
3049 F:      Documentation/ABI/testing/sysfs-class-backlight
3050 F:      Documentation/devicetree/bindings/leds/backlight
3051 F:      drivers/video/backlight/
3052 F:      include/linux/backlight.h
3053 F:      include/linux/pwm_backlight.h
3054
3055 BATMAN ADVANCED
3056 M:      Marek Lindner <mareklindner@neomailbox.ch>
3057 M:      Simon Wunderlich <sw@simonwunderlich.de>
3058 M:      Antonio Quartulli <a@unstable.cc>
3059 M:      Sven Eckelmann <sven@narfation.org>
3060 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3061 S:      Maintained
3062 W:      https://www.open-mesh.org/
3063 Q:      https://patchwork.open-mesh.org/project/batman/list/
3064 B:      https://www.open-mesh.org/projects/batman-adv/issues
3065 C:      irc://chat.freenode.net/batman
3066 T:      git https://git.open-mesh.org/linux-merge.git
3067 F:      Documentation/networking/batman-adv.rst
3068 F:      include/uapi/linux/batadv_packet.h
3069 F:      include/uapi/linux/batman_adv.h
3070 F:      net/batman-adv/
3071
3072 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3073 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3074 L:      linux-hams@vger.kernel.org
3075 S:      Maintained
3076 W:      http://www.baycom.org/~tom/ham/ham.html
3077 F:      drivers/net/hamradio/baycom*
3078
3079 BCACHE (BLOCK LAYER CACHE)
3080 M:      Coly Li <colyli@suse.de>
3081 M:      Kent Overstreet <kent.overstreet@gmail.com>
3082 L:      linux-bcache@vger.kernel.org
3083 S:      Maintained
3084 W:      http://bcache.evilpiepirate.org
3085 C:      irc://irc.oftc.net/bcache
3086 F:      drivers/md/bcache/
3087
3088 BDISP ST MEDIA DRIVER
3089 M:      Fabien Dessenne <fabien.dessenne@st.com>
3090 L:      linux-media@vger.kernel.org
3091 S:      Supported
3092 W:      https://linuxtv.org
3093 T:      git git://linuxtv.org/media_tree.git
3094 F:      drivers/media/platform/sti/bdisp
3095
3096 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3097 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3098 L:      netdev@vger.kernel.org
3099 S:      Maintained
3100 F:      drivers/net/ethernet/ec_bhf.c
3101
3102 BEFS FILE SYSTEM
3103 M:      Luis de Bethencourt <luisbg@kernel.org>
3104 M:      Salah Triki <salah.triki@gmail.com>
3105 S:      Maintained
3106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3107 F:      Documentation/filesystems/befs.rst
3108 F:      fs/befs/
3109
3110 BFQ I/O SCHEDULER
3111 M:      Paolo Valente <paolo.valente@linaro.org>
3112 M:      Jens Axboe <axboe@kernel.dk>
3113 L:      linux-block@vger.kernel.org
3114 S:      Maintained
3115 F:      Documentation/block/bfq-iosched.rst
3116 F:      block/bfq-*
3117
3118 BFS FILE SYSTEM
3119 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3120 S:      Maintained
3121 F:      Documentation/filesystems/bfs.rst
3122 F:      fs/bfs/
3123 F:      include/uapi/linux/bfs_fs.h
3124
3125 BLINKM RGB LED DRIVER
3126 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3127 S:      Maintained
3128 F:      drivers/leds/leds-blinkm.c
3129
3130 BLOCK LAYER
3131 M:      Jens Axboe <axboe@kernel.dk>
3132 L:      linux-block@vger.kernel.org
3133 S:      Maintained
3134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3135 F:      block/
3136 F:      drivers/block/
3137 F:      fs/block_dev.c
3138 F:      include/linux/blk*
3139 F:      kernel/trace/blktrace.c
3140 F:      lib/sbitmap.c
3141
3142 BLOCK2MTD DRIVER
3143 M:      Joern Engel <joern@lazybastard.org>
3144 L:      linux-mtd@lists.infradead.org
3145 S:      Maintained
3146 F:      drivers/mtd/devices/block2mtd.c
3147
3148 BLUETOOTH DRIVERS
3149 M:      Marcel Holtmann <marcel@holtmann.org>
3150 M:      Johan Hedberg <johan.hedberg@gmail.com>
3151 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3152 L:      linux-bluetooth@vger.kernel.org
3153 S:      Supported
3154 W:      http://www.bluez.org/
3155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3157 F:      drivers/bluetooth/
3158
3159 BLUETOOTH SUBSYSTEM
3160 M:      Marcel Holtmann <marcel@holtmann.org>
3161 M:      Johan Hedberg <johan.hedberg@gmail.com>
3162 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3163 L:      linux-bluetooth@vger.kernel.org
3164 S:      Supported
3165 W:      http://www.bluez.org/
3166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3168 F:      include/net/bluetooth/
3169 F:      net/bluetooth/
3170
3171 BONDING DRIVER
3172 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3173 M:      Veaceslav Falico <vfalico@gmail.com>
3174 M:      Andy Gospodarek <andy@greyhouse.net>
3175 L:      netdev@vger.kernel.org
3176 S:      Supported
3177 W:      http://sourceforge.net/projects/bonding/
3178 F:      drivers/net/bonding/
3179 F:      include/net/bonding.h
3180 F:      include/uapi/linux/if_bonding.h
3181
3182 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3183 M:      Dan Robertson <dan@dlrobertson.com>
3184 L:      linux-iio@vger.kernel.org
3185 S:      Maintained
3186 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3187 F:      drivers/iio/accel/bma400*
3188
3189 BPF (Safe dynamic programs and tools)
3190 M:      Alexei Starovoitov <ast@kernel.org>
3191 M:      Daniel Borkmann <daniel@iogearbox.net>
3192 M:      Andrii Nakryiko <andrii@kernel.org>
3193 R:      Martin KaFai Lau <kafai@fb.com>
3194 R:      Song Liu <songliubraving@fb.com>
3195 R:      Yonghong Song <yhs@fb.com>
3196 R:      John Fastabend <john.fastabend@gmail.com>
3197 R:      KP Singh <kpsingh@kernel.org>
3198 L:      netdev@vger.kernel.org
3199 L:      bpf@vger.kernel.org
3200 S:      Supported
3201 W:      https://bpf.io/
3202 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3205 F:      Documentation/bpf/
3206 F:      Documentation/networking/filter.rst
3207 F:      arch/*/net/*
3208 F:      include/linux/bpf*
3209 F:      include/linux/filter.h
3210 F:      include/trace/events/xdp.h
3211 F:      include/uapi/linux/bpf*
3212 F:      include/uapi/linux/filter.h
3213 F:      kernel/bpf/
3214 F:      kernel/trace/bpf_trace.c
3215 F:      lib/test_bpf.c
3216 F:      net/bpf/
3217 F:      net/core/filter.c
3218 F:      net/sched/act_bpf.c
3219 F:      net/sched/cls_bpf.c
3220 F:      samples/bpf/
3221 F:      tools/bpf/
3222 F:      tools/lib/bpf/
3223 F:      tools/testing/selftests/bpf/
3224 N:      bpf
3225 K:      bpf
3226
3227 BPF JIT for ARM
3228 M:      Shubham Bansal <illusionist.neo@gmail.com>
3229 L:      netdev@vger.kernel.org
3230 L:      bpf@vger.kernel.org
3231 S:      Maintained
3232 F:      arch/arm/net/
3233
3234 BPF JIT for ARM64
3235 M:      Daniel Borkmann <daniel@iogearbox.net>
3236 M:      Alexei Starovoitov <ast@kernel.org>
3237 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3238 L:      netdev@vger.kernel.org
3239 L:      bpf@vger.kernel.org
3240 S:      Supported
3241 F:      arch/arm64/net/
3242
3243 BPF JIT for MIPS (32-BIT AND 64-BIT)
3244 M:      Paul Burton <paulburton@kernel.org>
3245 L:      netdev@vger.kernel.org
3246 L:      bpf@vger.kernel.org
3247 S:      Maintained
3248 F:      arch/mips/net/
3249
3250 BPF JIT for NFP NICs
3251 M:      Jakub Kicinski <kuba@kernel.org>
3252 L:      netdev@vger.kernel.org
3253 L:      bpf@vger.kernel.org
3254 S:      Supported
3255 F:      drivers/net/ethernet/netronome/nfp/bpf/
3256
3257 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3258 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3259 M:      Sandipan Das <sandipan@linux.ibm.com>
3260 L:      netdev@vger.kernel.org
3261 L:      bpf@vger.kernel.org
3262 S:      Maintained
3263 F:      arch/powerpc/net/
3264
3265 BPF JIT for RISC-V (32-bit)
3266 M:      Luke Nelson <luke.r.nels@gmail.com>
3267 M:      Xi Wang <xi.wang@gmail.com>
3268 L:      netdev@vger.kernel.org
3269 L:      bpf@vger.kernel.org
3270 S:      Maintained
3271 F:      arch/riscv/net/
3272 X:      arch/riscv/net/bpf_jit_comp64.c
3273
3274 BPF JIT for RISC-V (64-bit)
3275 M:      Björn Töpel <bjorn@kernel.org>
3276 L:      netdev@vger.kernel.org
3277 L:      bpf@vger.kernel.org
3278 S:      Maintained
3279 F:      arch/riscv/net/
3280 X:      arch/riscv/net/bpf_jit_comp32.c
3281
3282 BPF JIT for S390
3283 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3284 M:      Heiko Carstens <hca@linux.ibm.com>
3285 M:      Vasily Gorbik <gor@linux.ibm.com>
3286 L:      netdev@vger.kernel.org
3287 L:      bpf@vger.kernel.org
3288 S:      Maintained
3289 F:      arch/s390/net/
3290 X:      arch/s390/net/pnet.c
3291
3292 BPF JIT for SPARC (32-BIT AND 64-BIT)
3293 M:      David S. Miller <davem@davemloft.net>
3294 L:      netdev@vger.kernel.org
3295 L:      bpf@vger.kernel.org
3296 S:      Maintained
3297 F:      arch/sparc/net/
3298
3299 BPF JIT for X86 32-BIT
3300 M:      Wang YanQing <udknight@gmail.com>
3301 L:      netdev@vger.kernel.org
3302 L:      bpf@vger.kernel.org
3303 S:      Maintained
3304 F:      arch/x86/net/bpf_jit_comp32.c
3305
3306 BPF JIT for X86 64-BIT
3307 M:      Alexei Starovoitov <ast@kernel.org>
3308 M:      Daniel Borkmann <daniel@iogearbox.net>
3309 L:      netdev@vger.kernel.org
3310 L:      bpf@vger.kernel.org
3311 S:      Supported
3312 F:      arch/x86/net/
3313 X:      arch/x86/net/bpf_jit_comp32.c
3314
3315 BPF LSM (Security Audit and Enforcement using BPF)
3316 M:      KP Singh <kpsingh@kernel.org>
3317 R:      Florent Revest <revest@chromium.org>
3318 R:      Brendan Jackman <jackmanb@chromium.org>
3319 L:      bpf@vger.kernel.org
3320 S:      Maintained
3321 F:      Documentation/bpf/bpf_lsm.rst
3322 F:      include/linux/bpf_lsm.h
3323 F:      kernel/bpf/bpf_lsm.c
3324 F:      security/bpf/
3325
3326 BROADCOM B44 10/100 ETHERNET DRIVER
3327 M:      Michael Chan <michael.chan@broadcom.com>
3328 L:      netdev@vger.kernel.org
3329 S:      Supported
3330 F:      drivers/net/ethernet/broadcom/b44.*
3331
3332 BROADCOM B53 ETHERNET SWITCH DRIVER
3333 M:      Florian Fainelli <f.fainelli@gmail.com>
3334 L:      netdev@vger.kernel.org
3335 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3336 S:      Supported
3337 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3338 F:      drivers/net/dsa/b53/*
3339 F:      include/linux/dsa/brcm.h
3340 F:      include/linux/platform_data/b53.h
3341
3342 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3343 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3344 L:      bcm-kernel-feedback-list@broadcom.com
3345 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3347 S:      Maintained
3348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3349 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3350 F:      drivers/pci/controller/pcie-brcmstb.c
3351 F:      drivers/staging/vc04_services
3352 N:      bcm2711
3353 N:      bcm283*
3354
3355 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3356 M:      Florian Fainelli <f.fainelli@gmail.com>
3357 M:      Ray Jui <rjui@broadcom.com>
3358 M:      Scott Branden <sbranden@broadcom.com>
3359 M:      bcm-kernel-feedback-list@broadcom.com
3360 S:      Maintained
3361 T:      git git://github.com/broadcom/mach-bcm
3362 F:      arch/arm/mach-bcm/
3363 N:      bcm281*
3364 N:      bcm113*
3365 N:      bcm216*
3366 N:      kona
3367
3368 BROADCOM BCM47XX MIPS ARCHITECTURE
3369 M:      Hauke Mehrtens <hauke@hauke-m.de>
3370 M:      Rafał Miłecki <zajec5@gmail.com>
3371 L:      linux-mips@vger.kernel.org
3372 S:      Maintained
3373 F:      Documentation/devicetree/bindings/mips/brcm/
3374 F:      arch/mips/bcm47xx/*
3375 F:      arch/mips/include/asm/mach-bcm47xx/*
3376
3377 BROADCOM BCM4908 ETHERNET DRIVER
3378 M:      Rafał Miłecki <rafal@milecki.pl>
3379 M:      bcm-kernel-feedback-list@broadcom.com
3380 L:      netdev@vger.kernel.org
3381 S:      Maintained
3382 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3383 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3384 F:      drivers/net/ethernet/broadcom/unimac.h
3385
3386 BROADCOM BCM5301X ARM ARCHITECTURE
3387 M:      Hauke Mehrtens <hauke@hauke-m.de>
3388 M:      Rafał Miłecki <zajec5@gmail.com>
3389 M:      bcm-kernel-feedback-list@broadcom.com
3390 L:      linux-arm-kernel@lists.infradead.org
3391 S:      Maintained
3392 F:      arch/arm/boot/dts/bcm470*
3393 F:      arch/arm/boot/dts/bcm5301*
3394 F:      arch/arm/boot/dts/bcm953012*
3395 F:      arch/arm/mach-bcm/bcm_5301x.c
3396
3397 BROADCOM BCM53573 ARM ARCHITECTURE
3398 M:      Rafał Miłecki <rafal@milecki.pl>
3399 L:      bcm-kernel-feedback-list@broadcom.com
3400 L:      linux-arm-kernel@lists.infradead.org
3401 S:      Maintained
3402 F:      arch/arm/boot/dts/bcm47189*
3403 F:      arch/arm/boot/dts/bcm53573*
3404
3405 BROADCOM BCM63XX ARM ARCHITECTURE
3406 M:      Florian Fainelli <f.fainelli@gmail.com>
3407 M:      bcm-kernel-feedback-list@broadcom.com
3408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3409 S:      Maintained
3410 T:      git git://github.com/broadcom/stblinux.git
3411 N:      bcm63xx
3412
3413 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3414 M:      Kevin Cernekee <cernekee@gmail.com>
3415 L:      linux-usb@vger.kernel.org
3416 S:      Maintained
3417 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3418
3419 BROADCOM BCM7XXX ARM ARCHITECTURE
3420 M:      Florian Fainelli <f.fainelli@gmail.com>
3421 M:      bcm-kernel-feedback-list@broadcom.com
3422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3423 S:      Maintained
3424 T:      git git://github.com/broadcom/stblinux.git
3425 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3426 F:      arch/arm/boot/dts/bcm7*.dts*
3427 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3428 F:      arch/arm/mach-bcm/*brcmstb*
3429 F:      arch/arm/mm/cache-b15-rac.c
3430 F:      drivers/bus/brcmstb_gisb.c
3431 F:      drivers/pci/controller/pcie-brcmstb.c
3432 N:      brcmstb
3433
3434 BROADCOM BDC DRIVER
3435 M:      Al Cooper <alcooperx@gmail.com>
3436 L:      linux-usb@vger.kernel.org
3437 L:      bcm-kernel-feedback-list@broadcom.com
3438 S:      Maintained
3439 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3440 F:      drivers/usb/gadget/udc/bdc/
3441
3442 BROADCOM BMIPS CPUFREQ DRIVER
3443 M:      Markus Mayer <mmayer@broadcom.com>
3444 M:      bcm-kernel-feedback-list@broadcom.com
3445 L:      linux-pm@vger.kernel.org
3446 S:      Maintained
3447 F:      drivers/cpufreq/bmips-cpufreq.c
3448
3449 BROADCOM BMIPS MIPS ARCHITECTURE
3450 M:      Florian Fainelli <f.fainelli@gmail.com>
3451 L:      bcm-kernel-feedback-list@broadcom.com
3452 L:      linux-mips@vger.kernel.org
3453 S:      Maintained
3454 T:      git git://github.com/broadcom/stblinux.git
3455 F:      arch/mips/bmips/*
3456 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3457 F:      arch/mips/include/asm/mach-bmips/*
3458 F:      arch/mips/kernel/*bmips*
3459 F:      drivers/soc/bcm/bcm63xx
3460 F:      drivers/irqchip/irq-bcm63*
3461 F:      drivers/irqchip/irq-bcm7*
3462 F:      drivers/irqchip/irq-brcmstb*
3463 F:      include/linux/bcm963xx_nvram.h
3464 F:      include/linux/bcm963xx_tag.h
3465
3466 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3467 M:      Rasesh Mody <rmody@marvell.com>
3468 M:      GR-Linux-NIC-Dev@marvell.com
3469 L:      netdev@vger.kernel.org
3470 S:      Supported
3471 F:      drivers/net/ethernet/broadcom/bnx2.*
3472 F:      drivers/net/ethernet/broadcom/bnx2_*
3473
3474 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3475 M:      Saurav Kashyap <skashyap@marvell.com>
3476 M:      Javed Hasan <jhasan@marvell.com>
3477 M:      GR-QLogic-Storage-Upstream@marvell.com
3478 L:      linux-scsi@vger.kernel.org
3479 S:      Supported
3480 F:      drivers/scsi/bnx2fc/
3481
3482 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3483 M:      Nilesh Javali <njavali@marvell.com>
3484 M:      Manish Rangankar <mrangankar@marvell.com>
3485 M:      GR-QLogic-Storage-Upstream@marvell.com
3486 L:      linux-scsi@vger.kernel.org
3487 S:      Supported
3488 F:      drivers/scsi/bnx2i/
3489
3490 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3491 M:      Ariel Elior <aelior@marvell.com>
3492 M:      Sudarsana Kalluru <skalluru@marvell.com>
3493 M:      GR-everest-linux-l2@marvell.com
3494 L:      netdev@vger.kernel.org
3495 S:      Supported
3496 F:      drivers/net/ethernet/broadcom/bnx2x/
3497
3498 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3499 M:      Michael Chan <michael.chan@broadcom.com>
3500 L:      netdev@vger.kernel.org
3501 S:      Supported
3502 F:      drivers/net/ethernet/broadcom/bnxt/
3503
3504 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3505 M:      Arend van Spriel <aspriel@gmail.com>
3506 M:      Franky Lin <franky.lin@broadcom.com>
3507 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3508 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3509 M:      Wright Feng <wright.feng@infineon.com>
3510 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3511 L:      linux-wireless@vger.kernel.org
3512 L:      brcm80211-dev-list.pdl@broadcom.com
3513 L:      SHA-cyfmac-dev-list@infineon.com
3514 S:      Supported
3515 F:      drivers/net/wireless/broadcom/brcm80211/
3516
3517 BROADCOM BRCMSTB GPIO DRIVER
3518 M:      Gregory Fong <gregory.0xf0@gmail.com>
3519 L:      bcm-kernel-feedback-list@broadcom.com
3520 S:      Supported
3521 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3522 F:      drivers/gpio/gpio-brcmstb.c
3523
3524 BROADCOM BRCMSTB I2C DRIVER
3525 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3526 L:      linux-i2c@vger.kernel.org
3527 L:      bcm-kernel-feedback-list@broadcom.com
3528 S:      Supported
3529 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3530 F:      drivers/i2c/busses/i2c-brcmstb.c
3531
3532 BROADCOM BRCMSTB USB EHCI DRIVER
3533 M:      Al Cooper <alcooperx@gmail.com>
3534 L:      linux-usb@vger.kernel.org
3535 L:      bcm-kernel-feedback-list@broadcom.com
3536 S:      Maintained
3537 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3538 F:      drivers/usb/host/ehci-brcm.*
3539
3540 BROADCOM BRCMSTB USB PIN MAP DRIVER
3541 M:      Al Cooper <alcooperx@gmail.com>
3542 L:      linux-usb@vger.kernel.org
3543 L:      bcm-kernel-feedback-list@broadcom.com
3544 S:      Maintained
3545 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3546 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3547
3548 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3549 M:      Al Cooper <alcooperx@gmail.com>
3550 L:      linux-kernel@vger.kernel.org
3551 L:      bcm-kernel-feedback-list@broadcom.com
3552 S:      Maintained
3553 F:      drivers/phy/broadcom/phy-brcm-usb*
3554
3555 BROADCOM ETHERNET PHY DRIVERS
3556 M:      Florian Fainelli <f.fainelli@gmail.com>
3557 L:      bcm-kernel-feedback-list@broadcom.com
3558 L:      netdev@vger.kernel.org
3559 S:      Supported
3560 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3561 F:      drivers/net/phy/bcm*.[ch]
3562 F:      drivers/net/phy/broadcom.c
3563 F:      include/linux/brcmphy.h
3564
3565 BROADCOM GENET ETHERNET DRIVER
3566 M:      Doug Berger <opendmb@gmail.com>
3567 M:      Florian Fainelli <f.fainelli@gmail.com>
3568 L:      bcm-kernel-feedback-list@broadcom.com
3569 L:      netdev@vger.kernel.org
3570 S:      Supported
3571 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3572 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3573 F:      drivers/net/ethernet/broadcom/genet/
3574 F:      drivers/net/ethernet/broadcom/unimac.h
3575 F:      drivers/net/mdio/mdio-bcm-unimac.c
3576 F:      include/linux/platform_data/bcmgenet.h
3577 F:      include/linux/platform_data/mdio-bcm-unimac.h
3578
3579 BROADCOM IPROC ARM ARCHITECTURE
3580 M:      Ray Jui <rjui@broadcom.com>
3581 M:      Scott Branden <sbranden@broadcom.com>
3582 M:      bcm-kernel-feedback-list@broadcom.com
3583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3584 S:      Maintained
3585 T:      git git://github.com/broadcom/cygnus-linux.git
3586 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3587 F:      arch/arm64/boot/dts/broadcom/stingray/*
3588 F:      drivers/clk/bcm/clk-ns*
3589 F:      drivers/clk/bcm/clk-sr*
3590 F:      drivers/pinctrl/bcm/pinctrl-ns*
3591 F:      include/dt-bindings/clock/bcm-sr*
3592 N:      iproc
3593 N:      cygnus
3594 N:      bcm[-_]nsp
3595 N:      bcm9113*
3596 N:      bcm9583*
3597 N:      bcm9585*
3598 N:      bcm9586*
3599 N:      bcm988312
3600 N:      bcm113*
3601 N:      bcm583*
3602 N:      bcm585*
3603 N:      bcm586*
3604 N:      bcm88312
3605 N:      hr2
3606 N:      stingray
3607
3608 BROADCOM IPROC GBIT ETHERNET DRIVER
3609 M:      Rafał Miłecki <rafal@milecki.pl>
3610 M:      bcm-kernel-feedback-list@broadcom.com
3611 L:      netdev@vger.kernel.org
3612 S:      Maintained
3613 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3614 F:      drivers/net/ethernet/broadcom/bgmac*
3615 F:      drivers/net/ethernet/broadcom/unimac.h
3616
3617 BROADCOM KONA GPIO DRIVER
3618 M:      Ray Jui <rjui@broadcom.com>
3619 L:      bcm-kernel-feedback-list@broadcom.com
3620 S:      Supported
3621 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3622 F:      drivers/gpio/gpio-bcm-kona.c
3623
3624 BROADCOM NETXTREME-E ROCE DRIVER
3625 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3626 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3627 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3628 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3629 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3630 L:      linux-rdma@vger.kernel.org
3631 S:      Supported
3632 W:      http://www.broadcom.com
3633 F:      drivers/infiniband/hw/bnxt_re/
3634 F:      include/uapi/rdma/bnxt_re-abi.h
3635
3636 BROADCOM NVRAM DRIVER
3637 M:      Rafał Miłecki <zajec5@gmail.com>
3638 L:      linux-mips@vger.kernel.org
3639 S:      Maintained
3640 F:      drivers/firmware/broadcom/*
3641
3642 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3643 M:      Rafał Miłecki <zajec5@gmail.com>
3644 L:      linux-wireless@vger.kernel.org
3645 S:      Maintained
3646 F:      drivers/bcma/
3647 F:      include/linux/bcma/
3648
3649 BROADCOM SPI DRIVER
3650 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3651 M:      bcm-kernel-feedback-list@broadcom.com
3652 S:      Maintained
3653 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3654 F:      drivers/spi/spi-bcm-qspi.*
3655 F:      drivers/spi/spi-brcmstb-qspi.c
3656 F:      drivers/spi/spi-iproc-qspi.c
3657
3658 BROADCOM STB AVS CPUFREQ DRIVER
3659 M:      Markus Mayer <mmayer@broadcom.com>
3660 M:      bcm-kernel-feedback-list@broadcom.com
3661 L:      linux-pm@vger.kernel.org
3662 S:      Maintained
3663 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3664 F:      drivers/cpufreq/brcmstb*
3665
3666 BROADCOM STB AVS TMON DRIVER
3667 M:      Markus Mayer <mmayer@broadcom.com>
3668 M:      bcm-kernel-feedback-list@broadcom.com
3669 L:      linux-pm@vger.kernel.org
3670 S:      Maintained
3671 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3672 F:      drivers/thermal/broadcom/brcmstb*
3673
3674 BROADCOM STB DPFE DRIVER
3675 M:      Markus Mayer <mmayer@broadcom.com>
3676 M:      bcm-kernel-feedback-list@broadcom.com
3677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3678 S:      Maintained
3679 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3680 F:      drivers/memory/brcmstb_dpfe.c
3681
3682 BROADCOM STB NAND FLASH DRIVER
3683 M:      Brian Norris <computersforpeace@gmail.com>
3684 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3685 L:      linux-mtd@lists.infradead.org
3686 L:      bcm-kernel-feedback-list@broadcom.com
3687 S:      Maintained
3688 F:      drivers/mtd/nand/raw/brcmnand/
3689
3690 BROADCOM SYSTEMPORT ETHERNET DRIVER
3691 M:      Florian Fainelli <f.fainelli@gmail.com>
3692 L:      bcm-kernel-feedback-list@broadcom.com
3693 L:      netdev@vger.kernel.org
3694 S:      Supported
3695 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3696 F:      drivers/net/ethernet/broadcom/unimac.h
3697
3698 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3699 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3700 M:      Prashant Sreedharan <prashant@broadcom.com>
3701 M:      Michael Chan <mchan@broadcom.com>
3702 L:      netdev@vger.kernel.org
3703 S:      Supported
3704 F:      drivers/net/ethernet/broadcom/tg3.*
3705
3706 BROCADE BFA FC SCSI DRIVER
3707 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3708 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3709 L:      linux-scsi@vger.kernel.org
3710 S:      Supported
3711 F:      drivers/scsi/bfa/
3712
3713 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3714 M:      Rasesh Mody <rmody@marvell.com>
3715 M:      Sudarsana Kalluru <skalluru@marvell.com>
3716 M:      GR-Linux-NIC-Dev@marvell.com
3717 L:      netdev@vger.kernel.org
3718 S:      Supported
3719 F:      drivers/net/ethernet/brocade/bna/
3720
3721 BSG (block layer generic sg v4 driver)
3722 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3723 L:      linux-scsi@vger.kernel.org
3724 S:      Supported
3725 F:      block/bsg.c
3726 F:      include/linux/bsg.h
3727 F:      include/uapi/linux/bsg.h
3728
3729 BT87X AUDIO DRIVER
3730 M:      Clemens Ladisch <clemens@ladisch.de>
3731 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3732 S:      Maintained
3733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3734 F:      Documentation/sound/cards/bt87x.rst
3735 F:      sound/pci/bt87x.c
3736
3737 BT8XXGPIO DRIVER
3738 M:      Michael Buesch <m@bues.ch>
3739 S:      Maintained
3740 W:      http://bu3sch.de/btgpio.php
3741 F:      drivers/gpio/gpio-bt8xx.c
3742
3743 BTRFS FILE SYSTEM
3744 M:      Chris Mason <clm@fb.com>
3745 M:      Josef Bacik <josef@toxicpanda.com>
3746 M:      David Sterba <dsterba@suse.com>
3747 L:      linux-btrfs@vger.kernel.org
3748 S:      Maintained
3749 W:      http://btrfs.wiki.kernel.org/
3750 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3752 F:      Documentation/filesystems/btrfs.rst
3753 F:      fs/btrfs/
3754 F:      include/linux/btrfs*
3755 F:      include/uapi/linux/btrfs*
3756
3757 BTTV VIDEO4LINUX DRIVER
3758 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3759 L:      linux-media@vger.kernel.org
3760 S:      Odd fixes
3761 W:      https://linuxtv.org
3762 T:      git git://linuxtv.org/media_tree.git
3763 F:      Documentation/driver-api/media/drivers/bttv*
3764 F:      drivers/media/pci/bt8xx/bttv*
3765
3766 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3767 M:      Chanwoo Choi <cw00.choi@samsung.com>
3768 L:      linux-pm@vger.kernel.org
3769 L:      linux-samsung-soc@vger.kernel.org
3770 S:      Maintained
3771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3772 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3773 F:      drivers/devfreq/exynos-bus.c
3774
3775 BUSLOGIC SCSI DRIVER
3776 M:      Khalid Aziz <khalid@gonehiking.org>
3777 L:      linux-scsi@vger.kernel.org
3778 S:      Maintained
3779 F:      drivers/scsi/BusLogic.*
3780 F:      drivers/scsi/FlashPoint.*
3781
3782 C-MEDIA CMI8788 DRIVER
3783 M:      Clemens Ladisch <clemens@ladisch.de>
3784 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3785 S:      Maintained
3786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3787 F:      sound/pci/oxygen/
3788
3789 C-SKY ARCHITECTURE
3790 M:      Guo Ren <guoren@kernel.org>
3791 L:      linux-csky@vger.kernel.org
3792 S:      Supported
3793 T:      git https://github.com/c-sky/csky-linux.git
3794 F:      Documentation/devicetree/bindings/csky/
3795 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3796 F:      Documentation/devicetree/bindings/timer/csky,*
3797 F:      arch/csky/
3798 F:      drivers/clocksource/timer-gx6605s.c
3799 F:      drivers/clocksource/timer-mp-csky.c
3800 F:      drivers/irqchip/irq-csky-*
3801 N:      csky
3802 K:      csky
3803
3804 CA8210 IEEE-802.15.4 RADIO DRIVER
3805 M:      Harry Morris <h.morris@cascoda.com>
3806 L:      linux-wpan@vger.kernel.org
3807 S:      Maintained
3808 W:      https://github.com/Cascoda/ca8210-linux.git
3809 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3810 F:      drivers/net/ieee802154/ca8210.c
3811
3812 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3813 M:      David Howells <dhowells@redhat.com>
3814 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3815 S:      Supported
3816 F:      Documentation/filesystems/caching/cachefiles.rst
3817 F:      fs/cachefiles/
3818
3819 CADENCE MIPI-CSI2 BRIDGES
3820 M:      Maxime Ripard <mripard@kernel.org>
3821 L:      linux-media@vger.kernel.org
3822 S:      Maintained
3823 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3824 F:      drivers/media/platform/cadence/cdns-csi2*
3825
3826 CADENCE NAND DRIVER
3827 L:      linux-mtd@lists.infradead.org
3828 S:      Orphan
3829 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3830 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3831
3832 CADENCE USB3 DRD IP DRIVER
3833 M:      Peter Chen <peter.chen@kernel.org>
3834 M:      Pawel Laszczak <pawell@cadence.com>
3835 R:      Roger Quadros <rogerq@kernel.org>
3836 R:      Aswath Govindraju <a-govindraju@ti.com>
3837 L:      linux-usb@vger.kernel.org
3838 S:      Maintained
3839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3840 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3841 F:      drivers/usb/cdns3/
3842
3843 CADET FM/AM RADIO RECEIVER DRIVER
3844 M:      Hans Verkuil <hverkuil@xs4all.nl>
3845 L:      linux-media@vger.kernel.org
3846 S:      Maintained
3847 W:      https://linuxtv.org
3848 T:      git git://linuxtv.org/media_tree.git
3849 F:      drivers/media/radio/radio-cadet*
3850
3851 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3852 L:      linux-media@vger.kernel.org
3853 S:      Orphan
3854 T:      git git://linuxtv.org/media_tree.git
3855 F:      Documentation/admin-guide/media/cafe_ccic*
3856 F:      drivers/media/platform/marvell-ccic/
3857
3858 CAIF NETWORK LAYER
3859 L:      netdev@vger.kernel.org
3860 S:      Orphan
3861 F:      Documentation/networking/caif/
3862 F:      drivers/net/caif/
3863 F:      include/net/caif/
3864 F:      include/uapi/linux/caif/
3865 F:      net/caif/
3866
3867 CAKE QDISC
3868 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3869 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3870 S:      Maintained
3871 F:      net/sched/sch_cake.c
3872
3873 CAN NETWORK DRIVERS
3874 M:      Wolfgang Grandegger <wg@grandegger.com>
3875 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3876 L:      linux-can@vger.kernel.org
3877 S:      Maintained
3878 W:      https://github.com/linux-can
3879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3881 F:      Documentation/devicetree/bindings/net/can/
3882 F:      drivers/net/can/
3883 F:      include/linux/can/bittiming.h
3884 F:      include/linux/can/dev.h
3885 F:      include/linux/can/led.h
3886 F:      include/linux/can/length.h
3887 F:      include/linux/can/platform/
3888 F:      include/linux/can/rx-offload.h
3889 F:      include/uapi/linux/can/error.h
3890 F:      include/uapi/linux/can/netlink.h
3891 F:      include/uapi/linux/can/vxcan.h
3892
3893 CAN NETWORK LAYER
3894 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3895 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3896 L:      linux-can@vger.kernel.org
3897 S:      Maintained
3898 W:      https://github.com/linux-can
3899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3901 F:      Documentation/networking/can.rst
3902 F:      include/linux/can/can-ml.h
3903 F:      include/linux/can/core.h
3904 F:      include/linux/can/skb.h
3905 F:      include/net/netns/can.h
3906 F:      include/uapi/linux/can.h
3907 F:      include/uapi/linux/can/bcm.h
3908 F:      include/uapi/linux/can/gw.h
3909 F:      include/uapi/linux/can/isotp.h
3910 F:      include/uapi/linux/can/raw.h
3911 F:      net/can/
3912
3913 CAN-J1939 NETWORK LAYER
3914 M:      Robin van der Gracht <robin@protonic.nl>
3915 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3916 R:      kernel@pengutronix.de
3917 L:      linux-can@vger.kernel.org
3918 S:      Maintained
3919 F:      Documentation/networking/j1939.rst
3920 F:      include/uapi/linux/can/j1939.h
3921 F:      net/can/j1939/
3922
3923 CAPABILITIES
3924 M:      Serge Hallyn <serge@hallyn.com>
3925 L:      linux-security-module@vger.kernel.org
3926 S:      Supported
3927 F:      include/linux/capability.h
3928 F:      include/uapi/linux/capability.h
3929 F:      kernel/capability.c
3930 F:      security/commoncap.c
3931
3932 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3933 M:      Kevin Tsai <ktsai@capellamicro.com>
3934 S:      Maintained
3935 F:      drivers/iio/light/cm*
3936
3937 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3938 M:      Christian Lamparter <chunkeey@googlemail.com>
3939 L:      linux-wireless@vger.kernel.org
3940 S:      Maintained
3941 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3942 F:      drivers/net/wireless/ath/carl9170/
3943
3944 CAVIUM I2C DRIVER
3945 M:      Robert Richter <rric@kernel.org>
3946 S:      Odd Fixes
3947 W:      http://www.marvell.com
3948 F:      drivers/i2c/busses/i2c-octeon*
3949 F:      drivers/i2c/busses/i2c-thunderx*
3950
3951 CAVIUM LIQUIDIO NETWORK DRIVER
3952 M:      Derek Chickles <dchickles@marvell.com>
3953 M:      Satanand Burla <sburla@marvell.com>
3954 M:      Felix Manlunas <fmanlunas@marvell.com>
3955 L:      netdev@vger.kernel.org
3956 S:      Supported
3957 W:      http://www.marvell.com
3958 F:      drivers/net/ethernet/cavium/liquidio/
3959
3960 CAVIUM MMC DRIVER
3961 M:      Robert Richter <rric@kernel.org>
3962 S:      Odd Fixes
3963 W:      http://www.marvell.com
3964 F:      drivers/mmc/host/cavium*
3965
3966 CAVIUM OCTEON-TX CRYPTO DRIVER
3967 M:      George Cherian <gcherian@marvell.com>
3968 L:      linux-crypto@vger.kernel.org
3969 S:      Supported
3970 W:      http://www.marvell.com
3971 F:      drivers/crypto/cavium/cpt/
3972
3973 CAVIUM THUNDERX2 ARM64 SOC
3974 M:      Robert Richter <rric@kernel.org>
3975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3976 S:      Odd Fixes
3977 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3978 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3979
3980 CC2520 IEEE-802.15.4 RADIO DRIVER
3981 M:      Varka Bhadram <varkabhadram@gmail.com>
3982 L:      linux-wpan@vger.kernel.org
3983 S:      Maintained
3984 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3985 F:      drivers/net/ieee802154/cc2520.c
3986 F:      include/linux/spi/cc2520.h
3987
3988 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3989 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3990 L:      linux-crypto@vger.kernel.org
3991 S:      Supported
3992 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3993 F:      drivers/crypto/ccree/
3994
3995 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3996 M:      Hadar Gat <hadar.gat@arm.com>
3997 L:      linux-crypto@vger.kernel.org
3998 S:      Supported
3999 F:      drivers/char/hw_random/cctrng.c
4000 F:      drivers/char/hw_random/cctrng.h
4001 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4002 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4003
4004 CEC FRAMEWORK
4005 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4006 L:      linux-media@vger.kernel.org
4007 S:      Supported
4008 W:      http://linuxtv.org
4009 T:      git git://linuxtv.org/media_tree.git
4010 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4011 F:      Documentation/devicetree/bindings/media/cec.txt
4012 F:      Documentation/driver-api/media/cec-core.rst
4013 F:      Documentation/userspace-api/media/cec
4014 F:      drivers/media/cec/
4015 F:      drivers/media/rc/keymaps/rc-cec.c
4016 F:      include/media/cec-notifier.h
4017 F:      include/media/cec.h
4018 F:      include/uapi/linux/cec-funcs.h
4019 F:      include/uapi/linux/cec.h
4020
4021 CEC GPIO DRIVER
4022 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4023 L:      linux-media@vger.kernel.org
4024 S:      Supported
4025 W:      http://linuxtv.org
4026 T:      git git://linuxtv.org/media_tree.git
4027 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4028 F:      drivers/media/cec/platform/cec-gpio/
4029
4030 CELL BROADBAND ENGINE ARCHITECTURE
4031 M:      Arnd Bergmann <arnd@arndb.de>
4032 L:      linuxppc-dev@lists.ozlabs.org
4033 S:      Supported
4034 W:      http://www.ibm.com/developerworks/power/cell/
4035 F:      arch/powerpc/include/asm/cell*.h
4036 F:      arch/powerpc/include/asm/spu*.h
4037 F:      arch/powerpc/include/uapi/asm/spu*.h
4038 F:      arch/powerpc/oprofile/*cell*
4039 F:      arch/powerpc/platforms/cell/
4040
4041 CELLWISE CW2015 BATTERY DRIVER
4042 M:      Tobias Schrammm <t.schramm@manjaro.org>
4043 S:      Maintained
4044 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4045 F:      drivers/power/supply/cw2015_battery.c
4046
4047 CEPH COMMON CODE (LIBCEPH)
4048 M:      Ilya Dryomov <idryomov@gmail.com>
4049 M:      Jeff Layton <jlayton@kernel.org>
4050 L:      ceph-devel@vger.kernel.org
4051 S:      Supported
4052 W:      http://ceph.com/
4053 T:      git git://github.com/ceph/ceph-client.git
4054 F:      include/linux/ceph/
4055 F:      include/linux/crush/
4056 F:      net/ceph/
4057
4058 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4059 M:      Jeff Layton <jlayton@kernel.org>
4060 M:      Ilya Dryomov <idryomov@gmail.com>
4061 L:      ceph-devel@vger.kernel.org
4062 S:      Supported
4063 W:      http://ceph.com/
4064 T:      git git://github.com/ceph/ceph-client.git
4065 F:      Documentation/filesystems/ceph.rst
4066 F:      fs/ceph/
4067
4068 CERTIFICATE HANDLING
4069 M:      David Howells <dhowells@redhat.com>
4070 M:      David Woodhouse <dwmw2@infradead.org>
4071 L:      keyrings@vger.kernel.org
4072 S:      Maintained
4073 F:      Documentation/admin-guide/module-signing.rst
4074 F:      certs/
4075 F:      scripts/extract-cert.c
4076 F:      scripts/sign-file.c
4077
4078 CFAG12864B LCD DRIVER
4079 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4080 S:      Maintained
4081 F:      drivers/auxdisplay/cfag12864b.c
4082 F:      include/linux/cfag12864b.h
4083
4084 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4085 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4086 S:      Maintained
4087 F:      drivers/auxdisplay/cfag12864bfb.c
4088 F:      include/linux/cfag12864b.h
4089
4090 CHAR and MISC DRIVERS
4091 M:      Arnd Bergmann <arnd@arndb.de>
4092 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4093 S:      Supported
4094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4095 F:      drivers/char/
4096 F:      drivers/misc/
4097 F:      include/linux/miscdevice.h
4098 X:      drivers/char/agp/
4099 X:      drivers/char/hw_random/
4100 X:      drivers/char/ipmi/
4101 X:      drivers/char/random.c
4102 X:      drivers/char/tpm/
4103
4104 CHECKPATCH
4105 M:      Andy Whitcroft <apw@canonical.com>
4106 M:      Joe Perches <joe@perches.com>
4107 S:      Maintained
4108 F:      scripts/checkpatch.pl
4109
4110 CHINESE DOCUMENTATION
4111 M:      Harry Wei <harryxiyou@gmail.com>
4112 M:      Alex Shi <alex.shi@linux.alibaba.com>
4113 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4114 S:      Maintained
4115 F:      Documentation/translations/zh_CN/
4116
4117 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4118 M:      Peter Chen <peter.chen@kernel.org>
4119 L:      linux-usb@vger.kernel.org
4120 S:      Maintained
4121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4122 F:      drivers/usb/chipidea/
4123
4124 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4125 M:      Hans de Goede <hdegoede@redhat.com>
4126 L:      linux-input@vger.kernel.org
4127 S:      Maintained
4128 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4129 F:      drivers/input/touchscreen/chipone_icn8318.c
4130
4131 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4132 M:      Hans de Goede <hdegoede@redhat.com>
4133 L:      linux-input@vger.kernel.org
4134 S:      Maintained
4135 F:      drivers/input/touchscreen/chipone_icn8505.c
4136
4137 CHROME HARDWARE PLATFORM SUPPORT
4138 M:      Benson Leung <bleung@chromium.org>
4139 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4140 S:      Maintained
4141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4142 F:      drivers/platform/chrome/
4143
4144 CHROMEOS EC CODEC DRIVER
4145 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4146 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4147 R:      Guenter Roeck <groeck@chromium.org>
4148 S:      Maintained
4149 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4150 F:      sound/soc/codecs/cros_ec_codec.*
4151
4152 CHROMEOS EC SUBDRIVERS
4153 M:      Benson Leung <bleung@chromium.org>
4154 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4155 R:      Guenter Roeck <groeck@chromium.org>
4156 S:      Maintained
4157 F:      drivers/power/supply/cros_usbpd-charger.c
4158 N:      cros_ec
4159 N:      cros-ec
4160
4161 CHRONTEL CH7322 CEC DRIVER
4162 M:      Jeff Chase <jnchase@google.com>
4163 L:      linux-media@vger.kernel.org
4164 S:      Maintained
4165 T:      git git://linuxtv.org/media_tree.git
4166 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4167 F:      drivers/media/cec/i2c/ch7322.c
4168
4169 CIRRUS LOGIC AUDIO CODEC DRIVERS
4170 M:      James Schulman <james.schulman@cirrus.com>
4171 M:      David Rhodes <david.rhodes@cirrus.com>
4172 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4173 L:      patches@opensource.cirrus.com
4174 S:      Maintained
4175 F:      sound/soc/codecs/cs*
4176
4177 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4178 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4179 L:      netdev@vger.kernel.org
4180 S:      Maintained
4181 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4182
4183 CIRRUS LOGIC LOCHNAGAR DRIVER
4184 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4185 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4186 L:      patches@opensource.cirrus.com
4187 S:      Supported
4188 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4189 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4190 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4191 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4192 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4193 F:      Documentation/hwmon/lochnagar.rst
4194 F:      drivers/clk/clk-lochnagar.c
4195 F:      drivers/hwmon/lochnagar-hwmon.c
4196 F:      drivers/mfd/lochnagar-i2c.c
4197 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4198 F:      drivers/regulator/lochnagar-regulator.c
4199 F:      include/dt-bindings/clk/lochnagar.h
4200 F:      include/dt-bindings/pinctrl/lochnagar.h
4201 F:      include/linux/mfd/lochnagar*
4202 F:      sound/soc/codecs/lochnagar-sc.c
4203
4204 CIRRUS LOGIC MADERA CODEC DRIVERS
4205 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4206 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4207 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4208 L:      patches@opensource.cirrus.com
4209 S:      Supported
4210 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4211 T:      git https://github.com/CirrusLogic/linux-drivers.git
4212 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4213 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4214 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4215 F:      drivers/gpio/gpio-madera*
4216 F:      drivers/irqchip/irq-madera*
4217 F:      drivers/mfd/cs47l*
4218 F:      drivers/mfd/madera*
4219 F:      drivers/pinctrl/cirrus/*
4220 F:      include/dt-bindings/sound/madera*
4221 F:      include/linux/irqchip/irq-madera*
4222 F:      include/linux/mfd/madera/*
4223 F:      include/sound/madera*
4224 F:      sound/soc/codecs/cs47l*
4225 F:      sound/soc/codecs/madera*
4226
4227 CISCO FCOE HBA DRIVER
4228 M:      Satish Kharat <satishkh@cisco.com>
4229 M:      Sesidhar Baddela <sebaddel@cisco.com>
4230 M:      Karan Tilak Kumar <kartilak@cisco.com>
4231 L:      linux-scsi@vger.kernel.org
4232 S:      Supported
4233 F:      drivers/scsi/fnic/
4234
4235 CISCO SCSI HBA DRIVER
4236 M:      Karan Tilak Kumar <kartilak@cisco.com>
4237 M:      Sesidhar Baddela <sebaddel@cisco.com>
4238 L:      linux-scsi@vger.kernel.org
4239 S:      Supported
4240 F:      drivers/scsi/snic/
4241
4242 CISCO VIC ETHERNET NIC DRIVER
4243 M:      Christian Benvenuti <benve@cisco.com>
4244 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4245 S:      Supported
4246 F:      drivers/net/ethernet/cisco/enic/
4247
4248 CISCO VIC LOW LATENCY NIC DRIVER
4249 M:      Christian Benvenuti <benve@cisco.com>
4250 M:      Nelson Escobar <neescoba@cisco.com>
4251 S:      Supported
4252 F:      drivers/infiniband/hw/usnic/
4253
4254 CLANG-FORMAT FILE
4255 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4256 S:      Maintained
4257 F:      .clang-format
4258
4259 CLANG/LLVM BUILD SUPPORT
4260 M:      Nathan Chancellor <nathan@kernel.org>
4261 M:      Nick Desaulniers <ndesaulniers@google.com>
4262 L:      clang-built-linux@googlegroups.com
4263 S:      Supported
4264 W:      https://clangbuiltlinux.github.io/
4265 B:      https://github.com/ClangBuiltLinux/linux/issues
4266 C:      irc://chat.freenode.net/clangbuiltlinux
4267 F:      Documentation/kbuild/llvm.rst
4268 F:      include/linux/compiler-clang.h
4269 F:      scripts/clang-tools/
4270 F:      scripts/clang-version.sh
4271 F:      scripts/lld-version.sh
4272 K:      \b(?i:clang|llvm)\b
4273
4274 CLEANCACHE API
4275 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4276 L:      linux-kernel@vger.kernel.org
4277 S:      Maintained
4278 F:      include/linux/cleancache.h
4279 F:      mm/cleancache.c
4280
4281 CLK API
4282 M:      Russell King <linux@armlinux.org.uk>
4283 L:      linux-clk@vger.kernel.org
4284 S:      Maintained
4285 F:      include/linux/clk.h
4286
4287 CLOCKSOURCE, CLOCKEVENT DRIVERS
4288 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4289 M:      Thomas Gleixner <tglx@linutronix.de>
4290 L:      linux-kernel@vger.kernel.org
4291 S:      Supported
4292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4293 F:      Documentation/devicetree/bindings/timer/
4294 F:      drivers/clocksource/
4295
4296 CMPC ACPI DRIVER
4297 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4298 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4299 L:      platform-driver-x86@vger.kernel.org
4300 S:      Supported
4301 F:      drivers/platform/x86/classmate-laptop.c
4302
4303 COBALT MEDIA DRIVER
4304 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4305 L:      linux-media@vger.kernel.org
4306 S:      Supported
4307 W:      https://linuxtv.org
4308 T:      git git://linuxtv.org/media_tree.git
4309 F:      drivers/media/pci/cobalt/
4310
4311 COCCINELLE/Semantic Patches (SmPL)
4312 M:      Julia Lawall <Julia.Lawall@inria.fr>
4313 M:      Gilles Muller <Gilles.Muller@inria.fr>
4314 M:      Nicolas Palix <nicolas.palix@imag.fr>
4315 M:      Michal Marek <michal.lkml@markovi.net>
4316 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4317 S:      Supported
4318 W:      http://coccinelle.lip6.fr/
4319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4320 F:      Documentation/dev-tools/coccinelle.rst
4321 F:      scripts/coccicheck
4322 F:      scripts/coccinelle/
4323
4324 CODA FILE SYSTEM
4325 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4326 M:      coda@cs.cmu.edu
4327 L:      codalist@coda.cs.cmu.edu
4328 S:      Maintained
4329 W:      http://www.coda.cs.cmu.edu/
4330 F:      Documentation/filesystems/coda.rst
4331 F:      fs/coda/
4332 F:      include/linux/coda*.h
4333 F:      include/uapi/linux/coda*.h
4334
4335 CODA V4L2 MEM2MEM DRIVER
4336 M:      Philipp Zabel <p.zabel@pengutronix.de>
4337 L:      linux-media@vger.kernel.org
4338 S:      Maintained
4339 F:      Documentation/devicetree/bindings/media/coda.yaml
4340 F:      drivers/media/platform/coda/
4341
4342 CODE OF CONDUCT
4343 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4344 S:      Supported
4345 F:      Documentation/process/code-of-conduct-interpretation.rst
4346 F:      Documentation/process/code-of-conduct.rst
4347
4348 COMMON CLK FRAMEWORK
4349 M:      Michael Turquette <mturquette@baylibre.com>
4350 M:      Stephen Boyd <sboyd@kernel.org>
4351 L:      linux-clk@vger.kernel.org
4352 S:      Maintained
4353 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4355 F:      Documentation/devicetree/bindings/clock/
4356 F:      drivers/clk/
4357 F:      include/linux/clk-pr*
4358 F:      include/linux/clk/
4359 F:      include/linux/of_clk.h
4360 X:      drivers/clk/clkdev.c
4361
4362 COMMON INTERNET FILE SYSTEM (CIFS)
4363 M:      Steve French <sfrench@samba.org>
4364 L:      linux-cifs@vger.kernel.org
4365 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4366 S:      Supported
4367 W:      http://linux-cifs.samba.org/
4368 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4369 F:      Documentation/admin-guide/cifs/
4370 F:      fs/cifs/
4371
4372 COMPACTPCI HOTPLUG CORE
4373 M:      Scott Murray <scott@spiteful.org>
4374 L:      linux-pci@vger.kernel.org
4375 S:      Maintained
4376 F:      drivers/pci/hotplug/cpci_hotplug*
4377
4378 COMPACTPCI HOTPLUG GENERIC DRIVER
4379 M:      Scott Murray <scott@spiteful.org>
4380 L:      linux-pci@vger.kernel.org
4381 S:      Maintained
4382 F:      drivers/pci/hotplug/cpcihp_generic.c
4383
4384 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4385 M:      Scott Murray <scott@spiteful.org>
4386 L:      linux-pci@vger.kernel.org
4387 S:      Maintained
4388 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4389
4390 COMPAL LAPTOP SUPPORT
4391 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4392 L:      platform-driver-x86@vger.kernel.org
4393 S:      Maintained
4394 F:      drivers/platform/x86/compal-laptop.c
4395
4396 COMPILER ATTRIBUTES
4397 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4398 S:      Maintained
4399 F:      include/linux/compiler_attributes.h
4400
4401 CONEXANT ACCESSRUNNER USB DRIVER
4402 L:      accessrunner-general@lists.sourceforge.net
4403 S:      Orphan
4404 W:      http://accessrunner.sourceforge.net/
4405 F:      drivers/usb/atm/cxacru.c
4406
4407 CONFIGFS
4408 M:      Joel Becker <jlbec@evilplan.org>
4409 M:      Christoph Hellwig <hch@lst.de>
4410 S:      Supported
4411 T:      git git://git.infradead.org/users/hch/configfs.git
4412 F:      fs/configfs/
4413 F:      include/linux/configfs.h
4414 F:      samples/configfs/
4415
4416 CONSOLE SUBSYSTEM
4417 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4418 S:      Supported
4419 F:      drivers/video/console/
4420 F:      include/linux/console*
4421
4422 CONTROL GROUP (CGROUP)
4423 M:      Tejun Heo <tj@kernel.org>
4424 M:      Zefan Li <lizefan.x@bytedance.com>
4425 M:      Johannes Weiner <hannes@cmpxchg.org>
4426 L:      cgroups@vger.kernel.org
4427 S:      Maintained
4428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4429 F:      Documentation/admin-guide/cgroup-v1/
4430 F:      Documentation/admin-guide/cgroup-v2.rst
4431 F:      include/linux/cgroup*
4432 F:      kernel/cgroup/
4433
4434 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4435 M:      Tejun Heo <tj@kernel.org>
4436 M:      Jens Axboe <axboe@kernel.dk>
4437 L:      cgroups@vger.kernel.org
4438 L:      linux-block@vger.kernel.org
4439 T:      git git://git.kernel.dk/linux-block
4440 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4441 F:      block/bfq-cgroup.c
4442 F:      block/blk-cgroup.c
4443 F:      block/blk-iolatency.c
4444 F:      block/blk-throttle.c
4445 F:      include/linux/blk-cgroup.h
4446
4447 CONTROL GROUP - CPUSET
4448 M:      Zefan Li <lizefan.x@bytedance.com>
4449 L:      cgroups@vger.kernel.org
4450 S:      Maintained
4451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4452 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4453 F:      include/linux/cpuset.h
4454 F:      kernel/cgroup/cpuset.c
4455
4456 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4457 M:      Johannes Weiner <hannes@cmpxchg.org>
4458 M:      Michal Hocko <mhocko@kernel.org>
4459 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4460 L:      cgroups@vger.kernel.org
4461 L:      linux-mm@kvack.org
4462 S:      Maintained
4463 F:      mm/memcontrol.c
4464 F:      mm/swap_cgroup.c
4465
4466 CORETEMP HARDWARE MONITORING DRIVER
4467 M:      Fenghua Yu <fenghua.yu@intel.com>
4468 L:      linux-hwmon@vger.kernel.org
4469 S:      Maintained
4470 F:      Documentation/hwmon/coretemp.rst
4471 F:      drivers/hwmon/coretemp.c
4472
4473 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4474 M:      Marius Zachmann <mail@mariuszachmann.de>
4475 L:      linux-hwmon@vger.kernel.org
4476 S:      Maintained
4477 F:      drivers/hwmon/corsair-cpro.c
4478
4479 CORSAIR-PSU HARDWARE MONITOR DRIVER
4480 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4481 L:      linux-hwmon@vger.kernel.org
4482 S:      Maintained
4483 F:      Documentation/hwmon/corsair-psu.rst
4484 F:      drivers/hwmon/corsair-psu.c
4485
4486 COSA/SRP SYNC SERIAL DRIVER
4487 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4488 S:      Maintained
4489 W:      http://www.fi.muni.cz/~kas/cosa/
4490 F:      drivers/net/wan/cosa*
4491
4492 COUNTER SUBSYSTEM
4493 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4494 L:      linux-iio@vger.kernel.org
4495 S:      Maintained
4496 F:      Documentation/ABI/testing/sysfs-bus-counter*
4497 F:      Documentation/driver-api/generic-counter.rst
4498 F:      drivers/counter/
4499 F:      include/linux/counter.h
4500 F:      include/linux/counter_enum.h
4501
4502 CPMAC ETHERNET DRIVER
4503 M:      Florian Fainelli <f.fainelli@gmail.com>
4504 L:      netdev@vger.kernel.org
4505 S:      Maintained
4506 F:      drivers/net/ethernet/ti/cpmac.c
4507
4508 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4509 M:      Viresh Kumar <viresh.kumar@linaro.org>
4510 M:      Sudeep Holla <sudeep.holla@arm.com>
4511 L:      linux-pm@vger.kernel.org
4512 S:      Maintained
4513 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4514 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4515
4516 CPU FREQUENCY SCALING FRAMEWORK
4517 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4518 M:      Viresh Kumar <viresh.kumar@linaro.org>
4519 L:      linux-pm@vger.kernel.org
4520 S:      Maintained
4521 B:      https://bugzilla.kernel.org
4522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4524 F:      Documentation/admin-guide/pm/cpufreq.rst
4525 F:      Documentation/admin-guide/pm/intel_pstate.rst
4526 F:      Documentation/cpu-freq/
4527 F:      Documentation/devicetree/bindings/cpufreq/
4528 F:      drivers/cpufreq/
4529 F:      include/linux/cpufreq.h
4530 F:      include/linux/sched/cpufreq.h
4531 F:      kernel/sched/cpufreq*.c
4532 F:      tools/testing/selftests/cpufreq/
4533
4534 CPU IDLE TIME MANAGEMENT FRAMEWORK
4535 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4536 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4537 L:      linux-pm@vger.kernel.org
4538 S:      Maintained
4539 B:      https://bugzilla.kernel.org
4540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4541 F:      Documentation/admin-guide/pm/cpuidle.rst
4542 F:      Documentation/driver-api/pm/cpuidle.rst
4543 F:      drivers/cpuidle/
4544 F:      include/linux/cpuidle.h
4545
4546 CPU POWER MONITORING SUBSYSTEM
4547 M:      Thomas Renninger <trenn@suse.com>
4548 M:      Shuah Khan <shuah@kernel.org>
4549 M:      Shuah Khan <skhan@linuxfoundation.org>
4550 L:      linux-pm@vger.kernel.org
4551 S:      Maintained
4552 F:      tools/power/cpupower/
4553
4554 CPUID/MSR DRIVER
4555 M:      "H. Peter Anvin" <hpa@zytor.com>
4556 S:      Maintained
4557 F:      arch/x86/kernel/cpuid.c
4558 F:      arch/x86/kernel/msr.c
4559
4560 CPUIDLE DRIVER - ARM BIG LITTLE
4561 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4562 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4563 L:      linux-pm@vger.kernel.org
4564 L:      linux-arm-kernel@lists.infradead.org
4565 S:      Maintained
4566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4567 F:      drivers/cpuidle/cpuidle-big_little.c
4568
4569 CPUIDLE DRIVER - ARM EXYNOS
4570 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4571 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4572 M:      Kukjin Kim <kgene@kernel.org>
4573 L:      linux-pm@vger.kernel.org
4574 L:      linux-samsung-soc@vger.kernel.org
4575 S:      Supported
4576 F:      arch/arm/mach-exynos/pm.c
4577 F:      drivers/cpuidle/cpuidle-exynos.c
4578
4579 CPUIDLE DRIVER - ARM PSCI
4580 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4581 M:      Sudeep Holla <sudeep.holla@arm.com>
4582 L:      linux-pm@vger.kernel.org
4583 L:      linux-arm-kernel@lists.infradead.org
4584 S:      Supported
4585 F:      drivers/cpuidle/cpuidle-psci.c
4586
4587 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4588 M:      Ulf Hansson <ulf.hansson@linaro.org>
4589 L:      linux-pm@vger.kernel.org
4590 L:      linux-arm-kernel@lists.infradead.org
4591 S:      Supported
4592 F:      drivers/cpuidle/cpuidle-psci.h
4593 F:      drivers/cpuidle/cpuidle-psci-domain.c
4594
4595 CRAMFS FILESYSTEM
4596 M:      Nicolas Pitre <nico@fluxnic.net>
4597 S:      Maintained
4598 F:      Documentation/filesystems/cramfs.rst
4599 F:      fs/cramfs/
4600
4601 CREATIVE SB0540
4602 M:      Bastien Nocera <hadess@hadess.net>
4603 L:      linux-input@vger.kernel.org
4604 S:      Maintained
4605 F:      drivers/hid/hid-creative-sb0540.c
4606
4607 CRYPTO API
4608 M:      Herbert Xu <herbert@gondor.apana.org.au>
4609 M:      "David S. Miller" <davem@davemloft.net>
4610 L:      linux-crypto@vger.kernel.org
4611 S:      Maintained
4612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4614 F:      Documentation/crypto/
4615 F:      Documentation/devicetree/bindings/crypto/
4616 F:      arch/*/crypto/
4617 F:      crypto/
4618 F:      drivers/crypto/
4619 F:      include/crypto/
4620 F:      include/linux/crypto*
4621 F:      lib/crypto/
4622
4623 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4624 M:      Neil Horman <nhorman@tuxdriver.com>
4625 L:      linux-crypto@vger.kernel.org
4626 S:      Maintained
4627 F:      crypto/ansi_cprng.c
4628 F:      crypto/rng.c
4629
4630 CS3308 MEDIA DRIVER
4631 M:      Hans Verkuil <hverkuil@xs4all.nl>
4632 L:      linux-media@vger.kernel.org
4633 S:      Odd Fixes
4634 W:      http://linuxtv.org
4635 T:      git git://linuxtv.org/media_tree.git
4636 F:      drivers/media/i2c/cs3308.c
4637
4638 CS5535 Audio ALSA driver
4639 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4640 S:      Maintained
4641 F:      sound/pci/cs5535audio/
4642
4643 CSI DRIVERS FOR ALLWINNER V3s
4644 M:      Yong Deng <yong.deng@magewell.com>
4645 L:      linux-media@vger.kernel.org
4646 S:      Maintained
4647 T:      git git://linuxtv.org/media_tree.git
4648 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4649 F:      drivers/media/platform/sunxi/sun6i-csi/
4650
4651 CW1200 WLAN driver
4652 M:      Solomon Peachy <pizza@shaftnet.org>
4653 S:      Maintained
4654 F:      drivers/net/wireless/st/cw1200/
4655
4656 CX18 VIDEO4LINUX DRIVER
4657 M:      Andy Walls <awalls@md.metrocast.net>
4658 L:      linux-media@vger.kernel.org
4659 S:      Maintained
4660 W:      https://linuxtv.org
4661 T:      git git://linuxtv.org/media_tree.git
4662 F:      drivers/media/pci/cx18/
4663 F:      include/uapi/linux/ivtv*
4664
4665 CX2341X MPEG ENCODER HELPER MODULE
4666 M:      Hans Verkuil <hverkuil@xs4all.nl>
4667 L:      linux-media@vger.kernel.org
4668 S:      Maintained
4669 W:      https://linuxtv.org
4670 T:      git git://linuxtv.org/media_tree.git
4671 F:      drivers/media/common/cx2341x*
4672 F:      include/media/drv-intf/cx2341x.h
4673
4674 CX24120 MEDIA DRIVER
4675 M:      Jemma Denson <jdenson@gmail.com>
4676 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4677 L:      linux-media@vger.kernel.org
4678 S:      Maintained
4679 W:      https://linuxtv.org
4680 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4681 F:      drivers/media/dvb-frontends/cx24120*
4682
4683 CX88 VIDEO4LINUX DRIVER
4684 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4685 L:      linux-media@vger.kernel.org
4686 S:      Odd fixes
4687 W:      https://linuxtv.org
4688 T:      git git://linuxtv.org/media_tree.git
4689 F:      Documentation/driver-api/media/drivers/cx88*
4690 F:      drivers/media/pci/cx88/
4691
4692 CXD2820R MEDIA DRIVER
4693 M:      Antti Palosaari <crope@iki.fi>
4694 L:      linux-media@vger.kernel.org
4695 S:      Maintained
4696 W:      https://linuxtv.org
4697 W:      http://palosaari.fi/linux/
4698 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4699 T:      git git://linuxtv.org/anttip/media_tree.git
4700 F:      drivers/media/dvb-frontends/cxd2820r*
4701
4702 CXGB3 ETHERNET DRIVER (CXGB3)
4703 M:      Raju Rangoju <rajur@chelsio.com>
4704 L:      netdev@vger.kernel.org
4705 S:      Supported
4706 W:      http://www.chelsio.com
4707 F:      drivers/net/ethernet/chelsio/cxgb3/
4708
4709 CXGB3 ISCSI DRIVER (CXGB3I)
4710 M:      Karen Xie <kxie@chelsio.com>
4711 L:      linux-scsi@vger.kernel.org
4712 S:      Supported
4713 W:      http://www.chelsio.com
4714 F:      drivers/scsi/cxgbi/cxgb3i
4715
4716 CXGB4 CRYPTO DRIVER (chcr)
4717 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4718 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4719 M:      Rohit Maheshwari <rohitm@chelsio.com>
4720 L:      linux-crypto@vger.kernel.org
4721 S:      Supported
4722 W:      http://www.chelsio.com
4723 F:      drivers/crypto/chelsio
4724
4725 CXGB4 INLINE CRYPTO DRIVER
4726 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4727 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4728 M:      Rohit Maheshwari <rohitm@chelsio.com>
4729 L:      netdev@vger.kernel.org
4730 S:      Supported
4731 W:      http://www.chelsio.com
4732 F:      drivers/net/ethernet/chelsio/inline_crypto/
4733
4734 CXGB4 ETHERNET DRIVER (CXGB4)
4735 M:      Raju Rangoju <rajur@chelsio.com>
4736 L:      netdev@vger.kernel.org
4737 S:      Supported
4738 W:      http://www.chelsio.com
4739 F:      drivers/net/ethernet/chelsio/cxgb4/
4740
4741 CXGB4 ISCSI DRIVER (CXGB4I)
4742 M:      Karen Xie <kxie@chelsio.com>
4743 L:      linux-scsi@vger.kernel.org
4744 S:      Supported
4745 W:      http://www.chelsio.com
4746 F:      drivers/scsi/cxgbi/cxgb4i
4747
4748 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4749 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4750 L:      linux-rdma@vger.kernel.org
4751 S:      Supported
4752 W:      http://www.openfabrics.org
4753 F:      drivers/infiniband/hw/cxgb4/
4754 F:      include/uapi/rdma/cxgb4-abi.h
4755
4756 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4757 M:      Raju Rangoju <rajur@chelsio.com>
4758 L:      netdev@vger.kernel.org
4759 S:      Supported
4760 W:      http://www.chelsio.com
4761 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4762
4763 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4764 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4765 M:      Andrew Donnellan <ajd@linux.ibm.com>
4766 L:      linuxppc-dev@lists.ozlabs.org
4767 S:      Supported
4768 F:      Documentation/ABI/testing/sysfs-class-cxl
4769 F:      Documentation/powerpc/cxl.rst
4770 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4771 F:      drivers/misc/cxl/
4772 F:      include/misc/cxl*
4773 F:      include/uapi/misc/cxl.h
4774
4775 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4776 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4777 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4778 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4779 L:      linux-scsi@vger.kernel.org
4780 S:      Supported
4781 F:      Documentation/powerpc/cxlflash.rst
4782 F:      drivers/scsi/cxlflash/
4783 F:      include/uapi/scsi/cxlflash_ioctl.h
4784
4785 CYBERPRO FB DRIVER
4786 M:      Russell King <linux@armlinux.org.uk>
4787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4788 S:      Maintained
4789 W:      http://www.armlinux.org.uk/
4790 F:      drivers/video/fbdev/cyber2000fb.*
4791
4792 CYCLADES ASYNC MUX DRIVER
4793 S:      Orphan
4794 W:      http://www.cyclades.com/
4795 F:      drivers/tty/cyclades.c
4796 F:      include/linux/cyclades.h
4797 F:      include/uapi/linux/cyclades.h
4798
4799 CYCLADES PC300 DRIVER
4800 S:      Orphan
4801 W:      http://www.cyclades.com/
4802 F:      drivers/net/wan/pc300*
4803
4804 CYPRESS_FIRMWARE MEDIA DRIVER
4805 M:      Antti Palosaari <crope@iki.fi>
4806 L:      linux-media@vger.kernel.org
4807 S:      Maintained
4808 W:      https://linuxtv.org
4809 W:      http://palosaari.fi/linux/
4810 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4811 T:      git git://linuxtv.org/anttip/media_tree.git
4812 F:      drivers/media/common/cypress_firmware*
4813
4814 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4815 M:      Linus Walleij <linus.walleij@linaro.org>
4816 L:      linux-input@vger.kernel.org
4817 S:      Maintained
4818 F:      drivers/input/touchscreen/cy8ctma140.c
4819
4820 CYTTSP TOUCHSCREEN DRIVER
4821 M:      Ferruh Yigit <fery@cypress.com>
4822 L:      linux-input@vger.kernel.org
4823 S:      Supported
4824 F:      drivers/input/touchscreen/cyttsp*
4825 F:      include/linux/input/cyttsp.h
4826
4827 D-LINK DIR-685 TOUCHKEYS DRIVER
4828 M:      Linus Walleij <linus.walleij@linaro.org>
4829 L:      linux-input@vger.kernel.org
4830 S:      Supported
4831 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4832
4833 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4834 M:      Joshua Kinard <kumba@gentoo.org>
4835 S:      Maintained
4836 F:      drivers/rtc/rtc-ds1685.c
4837 F:      include/linux/rtc/ds1685.h
4838
4839 DAMA SLAVE for AX.25
4840 M:      Joerg Reuter <jreuter@yaina.de>
4841 L:      linux-hams@vger.kernel.org
4842 S:      Maintained
4843 W:      http://yaina.de/jreuter/
4844 W:      http://www.qsl.net/dl1bke/
4845 F:      net/ax25/af_ax25.c
4846 F:      net/ax25/ax25_dev.c
4847 F:      net/ax25/ax25_ds_*
4848 F:      net/ax25/ax25_in.c
4849 F:      net/ax25/ax25_out.c
4850 F:      net/ax25/ax25_timer.c
4851 F:      net/ax25/sysctl_net_ax25.c
4852
4853 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4854 L:      netdev@vger.kernel.org
4855 S:      Orphan
4856 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4857 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4858
4859 DC390/AM53C974 SCSI driver
4860 M:      Hannes Reinecke <hare@suse.com>
4861 L:      linux-scsi@vger.kernel.org
4862 S:      Maintained
4863 F:      drivers/scsi/am53c974.c
4864
4865 DC395x SCSI driver
4866 M:      Oliver Neukum <oliver@neukum.org>
4867 M:      Ali Akcaagac <aliakc@web.de>
4868 M:      Jamie Lenehan <lenehan@twibble.org>
4869 L:      dc395x@twibble.org
4870 S:      Maintained
4871 W:      http://twibble.org/dist/dc395x/
4872 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4873 F:      Documentation/scsi/dc395x.rst
4874 F:      drivers/scsi/dc395x.*
4875
4876 DCCP PROTOCOL
4877 L:      dccp@vger.kernel.org
4878 S:      Orphan
4879 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4880 F:      include/linux/dccp.h
4881 F:      include/linux/tfrc.h
4882 F:      include/uapi/linux/dccp.h
4883 F:      net/dccp/
4884
4885 DECnet NETWORK LAYER
4886 L:      linux-decnet-user@lists.sourceforge.net
4887 S:      Orphan
4888 W:      http://linux-decnet.sourceforge.net
4889 F:      Documentation/networking/decnet.rst
4890 F:      net/decnet/
4891
4892 DECSTATION PLATFORM SUPPORT
4893 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4894 L:      linux-mips@vger.kernel.org
4895 S:      Maintained
4896 W:      http://www.linux-mips.org/wiki/DECstation
4897 F:      arch/mips/dec/
4898 F:      arch/mips/include/asm/dec/
4899 F:      arch/mips/include/asm/mach-dec/
4900
4901 DEFXX FDDI NETWORK DRIVER
4902 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4903 S:      Maintained
4904 F:      drivers/net/fddi/defxx.*
4905
4906 DEFZA FDDI NETWORK DRIVER
4907 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4908 S:      Maintained
4909 F:      drivers/net/fddi/defza.*
4910
4911 DEINTERLACE DRIVERS FOR ALLWINNER H3
4912 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4913 L:      linux-media@vger.kernel.org
4914 S:      Maintained
4915 T:      git git://linuxtv.org/media_tree.git
4916 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4917 F:      drivers/media/platform/sunxi/sun8i-di/
4918
4919 DELL LAPTOP DRIVER
4920 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4921 M:      Pali Rohár <pali@kernel.org>
4922 L:      platform-driver-x86@vger.kernel.org
4923 S:      Maintained
4924 F:      drivers/platform/x86/dell-laptop.c
4925
4926 DELL LAPTOP FREEFALL DRIVER
4927 M:      Pali Rohár <pali@kernel.org>
4928 S:      Maintained
4929 F:      drivers/platform/x86/dell-smo8800.c
4930
4931 DELL LAPTOP RBTN DRIVER
4932 M:      Pali Rohár <pali@kernel.org>
4933 S:      Maintained
4934 F:      drivers/platform/x86/dell-rbtn.*
4935
4936 DELL LAPTOP SMM DRIVER
4937 M:      Pali Rohár <pali@kernel.org>
4938 S:      Maintained
4939 F:      drivers/hwmon/dell-smm-hwmon.c
4940 F:      include/uapi/linux/i8k.h
4941
4942 DELL REMOTE BIOS UPDATE DRIVER
4943 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4944 L:      platform-driver-x86@vger.kernel.org
4945 S:      Maintained
4946 F:      drivers/platform/x86/dell_rbu.c
4947
4948 DELL SMBIOS DRIVER
4949 M:      Pali Rohár <pali@kernel.org>
4950 M:      Mario Limonciello <mario.limonciello@dell.com>
4951 L:      platform-driver-x86@vger.kernel.org
4952 S:      Maintained
4953 F:      drivers/platform/x86/dell-smbios.*
4954
4955 DELL SMBIOS SMM DRIVER
4956 M:      Mario Limonciello <mario.limonciello@dell.com>
4957 L:      platform-driver-x86@vger.kernel.org
4958 S:      Maintained
4959 F:      drivers/platform/x86/dell-smbios-smm.c
4960
4961 DELL SMBIOS WMI DRIVER
4962 M:      Mario Limonciello <mario.limonciello@dell.com>
4963 L:      platform-driver-x86@vger.kernel.org
4964 S:      Maintained
4965 F:      drivers/platform/x86/dell-smbios-wmi.c
4966 F:      tools/wmi/dell-smbios-example.c
4967
4968 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4969 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4970 L:      platform-driver-x86@vger.kernel.org
4971 S:      Maintained
4972 F:      Documentation/driver-api/dcdbas.rst
4973 F:      drivers/platform/x86/dcdbas.*
4974
4975 DELL WMI DESCRIPTOR DRIVER
4976 M:      Mario Limonciello <mario.limonciello@dell.com>
4977 S:      Maintained
4978 F:      drivers/platform/x86/dell-wmi-descriptor.c
4979
4980 DELL WMI SYSMAN DRIVER
4981 M:      Divya Bharathi <divya.bharathi@dell.com>
4982 M:      Mario Limonciello <mario.limonciello@dell.com>
4983 M:      Prasanth Ksr <prasanth.ksr@dell.com>
4984 L:      platform-driver-x86@vger.kernel.org
4985 S:      Maintained
4986 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
4987 F:      drivers/platform/x86/dell-wmi-sysman/
4988
4989 DELL WMI NOTIFICATIONS DRIVER
4990 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4991 M:      Pali Rohár <pali@kernel.org>
4992 S:      Maintained
4993 F:      drivers/platform/x86/dell-wmi.c
4994
4995 DELTA ST MEDIA DRIVER
4996 M:      Hugues Fruchet <hugues.fruchet@st.com>
4997 L:      linux-media@vger.kernel.org
4998 S:      Supported
4999 W:      https://linuxtv.org
5000 T:      git git://linuxtv.org/media_tree.git
5001 F:      drivers/media/platform/sti/delta
5002
5003 DENALI NAND DRIVER
5004 L:      linux-mtd@lists.infradead.org
5005 S:      Orphan
5006 F:      drivers/mtd/nand/raw/denali*
5007
5008 DESIGNWARE EDMA CORE IP DRIVER
5009 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5010 L:      dmaengine@vger.kernel.org
5011 S:      Maintained
5012 F:      drivers/dma/dw-edma/
5013 F:      include/linux/dma/edma.h
5014
5015 DESIGNWARE USB2 DRD IP DRIVER
5016 M:      Minas Harutyunyan <hminas@synopsys.com>
5017 L:      linux-usb@vger.kernel.org
5018 S:      Maintained
5019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5020 F:      drivers/usb/dwc2/
5021
5022 DESIGNWARE USB3 DRD IP DRIVER
5023 M:      Felipe Balbi <balbi@kernel.org>
5024 L:      linux-usb@vger.kernel.org
5025 S:      Maintained
5026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5027 F:      drivers/usb/dwc3/
5028
5029 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5030 M:      Andreas Klinger <ak@it-klinger.de>
5031 L:      linux-iio@vger.kernel.org
5032 S:      Maintained
5033 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5034 F:      drivers/iio/proximity/srf*.c
5035
5036 DEVICE COREDUMP (DEV_COREDUMP)
5037 M:      Johannes Berg <johannes@sipsolutions.net>
5038 L:      linux-kernel@vger.kernel.org
5039 S:      Maintained
5040 F:      drivers/base/devcoredump.c
5041 F:      include/linux/devcoredump.h
5042
5043 DEVICE DEPENDENCY HELPER SCRIPT
5044 M:      Saravana Kannan <saravanak@google.com>
5045 L:      linux-kernel@vger.kernel.org
5046 S:      Maintained
5047 F:      scripts/dev-needs.sh
5048
5049 DEVICE DIRECT ACCESS (DAX)
5050 M:      Dan Williams <dan.j.williams@intel.com>
5051 M:      Vishal Verma <vishal.l.verma@intel.com>
5052 M:      Dave Jiang <dave.jiang@intel.com>
5053 L:      linux-nvdimm@lists.01.org
5054 S:      Supported
5055 F:      drivers/dax/
5056
5057 DEVICE FREQUENCY (DEVFREQ)
5058 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5059 M:      Kyungmin Park <kyungmin.park@samsung.com>
5060 M:      Chanwoo Choi <cw00.choi@samsung.com>
5061 L:      linux-pm@vger.kernel.org
5062 S:      Maintained
5063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5064 F:      Documentation/devicetree/bindings/devfreq/
5065 F:      drivers/devfreq/
5066 F:      include/linux/devfreq.h
5067 F:      include/trace/events/devfreq.h
5068
5069 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5070 M:      Chanwoo Choi <cw00.choi@samsung.com>
5071 L:      linux-pm@vger.kernel.org
5072 S:      Supported
5073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5074 F:      Documentation/devicetree/bindings/devfreq/event/
5075 F:      drivers/devfreq/devfreq-event.c
5076 F:      drivers/devfreq/event/
5077 F:      include/dt-bindings/pmu/exynos_ppmu.h
5078 F:      include/linux/devfreq-event.h
5079
5080 DEVICE NUMBER REGISTRY
5081 M:      Torben Mathiasen <device@lanana.org>
5082 S:      Maintained
5083 W:      http://lanana.org/docs/device-list/index.html
5084
5085 DEVICE-MAPPER  (LVM)
5086 M:      Alasdair Kergon <agk@redhat.com>
5087 M:      Mike Snitzer <snitzer@redhat.com>
5088 M:      dm-devel@redhat.com
5089 L:      dm-devel@redhat.com
5090 S:      Maintained
5091 W:      http://sources.redhat.com/dm
5092 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5094 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5095 F:      Documentation/admin-guide/device-mapper/
5096 F:      drivers/md/Kconfig
5097 F:      drivers/md/Makefile
5098 F:      drivers/md/dm*
5099 F:      drivers/md/persistent-data/
5100 F:      include/linux/device-mapper.h
5101 F:      include/linux/dm-*.h
5102 F:      include/uapi/linux/dm-*.h
5103
5104 DEVLINK
5105 M:      Jiri Pirko <jiri@nvidia.com>
5106 L:      netdev@vger.kernel.org
5107 S:      Supported
5108 F:      Documentation/networking/devlink
5109 F:      include/net/devlink.h
5110 F:      include/uapi/linux/devlink.h
5111 F:      net/core/devlink.c
5112
5113 DIALOG SEMICONDUCTOR DRIVERS
5114 M:      Support Opensource <support.opensource@diasemi.com>
5115 S:      Supported
5116 W:      http://www.dialog-semiconductor.com/products
5117 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5118 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5119 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5120 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5121 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5122 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5123 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5124 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5125 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5126 F:      Documentation/hwmon/da90??.rst
5127 F:      drivers/gpio/gpio-da90??.c
5128 F:      drivers/hwmon/da90??-hwmon.c
5129 F:      drivers/iio/adc/da91??-*.c
5130 F:      drivers/input/misc/da72??.[ch]
5131 F:      drivers/input/misc/da90??_onkey.c
5132 F:      drivers/input/touchscreen/da9052_tsi.c
5133 F:      drivers/leds/leds-da90??.c
5134 F:      drivers/mfd/da903x.c
5135 F:      drivers/mfd/da90??-*.c
5136 F:      drivers/mfd/da91??-*.c
5137 F:      drivers/pinctrl/pinctrl-da90??.c
5138 F:      drivers/power/supply/da9052-battery.c
5139 F:      drivers/power/supply/da91??-*.c
5140 F:      drivers/regulator/da9???-regulator.[ch]
5141 F:      drivers/regulator/slg51000-regulator.[ch]
5142 F:      drivers/rtc/rtc-da90??.c
5143 F:      drivers/thermal/da90??-thermal.c
5144 F:      drivers/video/backlight/da90??_bl.c
5145 F:      drivers/watchdog/da90??_wdt.c
5146 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5147 F:      include/linux/mfd/da903x.h
5148 F:      include/linux/mfd/da9052/
5149 F:      include/linux/mfd/da9055/
5150 F:      include/linux/mfd/da9062/
5151 F:      include/linux/mfd/da9063/
5152 F:      include/linux/mfd/da9150/
5153 F:      include/linux/regulator/da9211.h
5154 F:      include/sound/da[79]*.h
5155 F:      sound/soc/codecs/da[79]*.[ch]
5156
5157 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5158 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5159 L:      linux-gpio@vger.kernel.org
5160 S:      Maintained
5161 F:      drivers/gpio/gpio-gpio-mm.c
5162
5163 DIOLAN U2C-12 I2C DRIVER
5164 M:      Guenter Roeck <linux@roeck-us.net>
5165 L:      linux-i2c@vger.kernel.org
5166 S:      Maintained
5167 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5168
5169 DIRECTORY NOTIFICATION (DNOTIFY)
5170 M:      Jan Kara <jack@suse.cz>
5171 R:      Amir Goldstein <amir73il@gmail.com>
5172 L:      linux-fsdevel@vger.kernel.org
5173 S:      Maintained
5174 F:      Documentation/filesystems/dnotify.rst
5175 F:      fs/notify/dnotify/
5176 F:      include/linux/dnotify.h
5177
5178 DISK GEOMETRY AND PARTITION HANDLING
5179 M:      Andries Brouwer <aeb@cwi.nl>
5180 S:      Maintained
5181 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5182 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5183 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5184
5185 DISKQUOTA
5186 M:      Jan Kara <jack@suse.com>
5187 S:      Maintained
5188 F:      Documentation/filesystems/quota.rst
5189 F:      fs/quota/
5190 F:      include/linux/quota*.h
5191 F:      include/uapi/linux/quota*.h
5192
5193 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5194 M:      Bernie Thompson <bernie@plugable.com>
5195 L:      linux-fbdev@vger.kernel.org
5196 S:      Maintained
5197 W:      http://plugable.com/category/projects/udlfb/
5198 F:      Documentation/fb/udlfb.rst
5199 F:      drivers/video/fbdev/udlfb.c
5200 F:      include/video/udlfb.h
5201
5202 DISTRIBUTED LOCK MANAGER (DLM)
5203 M:      Christine Caulfield <ccaulfie@redhat.com>
5204 M:      David Teigland <teigland@redhat.com>
5205 L:      cluster-devel@redhat.com
5206 S:      Supported
5207 W:      http://sources.redhat.com/cluster/
5208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5209 F:      fs/dlm/
5210
5211 DMA BUFFER SHARING FRAMEWORK
5212 M:      Sumit Semwal <sumit.semwal@linaro.org>
5213 M:      Christian König <christian.koenig@amd.com>
5214 L:      linux-media@vger.kernel.org
5215 L:      dri-devel@lists.freedesktop.org
5216 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5217 S:      Maintained
5218 T:      git git://anongit.freedesktop.org/drm/drm-misc
5219 F:      Documentation/driver-api/dma-buf.rst
5220 F:      drivers/dma-buf/
5221 F:      include/linux/*fence.h
5222 F:      include/linux/dma-buf*
5223 F:      include/linux/dma-resv.h
5224 K:      \bdma_(?:buf|fence|resv)\b
5225
5226 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5227 M:      Vinod Koul <vkoul@kernel.org>
5228 L:      dmaengine@vger.kernel.org
5229 S:      Maintained
5230 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5232 F:      Documentation/devicetree/bindings/dma/
5233 F:      Documentation/driver-api/dmaengine/
5234 F:      drivers/dma/
5235 F:      include/linux/dmaengine.h
5236 F:      include/linux/of_dma.h
5237
5238 DMA MAPPING HELPERS
5239 M:      Christoph Hellwig <hch@lst.de>
5240 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5241 R:      Robin Murphy <robin.murphy@arm.com>
5242 L:      iommu@lists.linux-foundation.org
5243 S:      Supported
5244 W:      http://git.infradead.org/users/hch/dma-mapping.git
5245 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5246 F:      include/asm-generic/dma-mapping.h
5247 F:      include/linux/dma-direct.h
5248 F:      include/linux/dma-mapping.h
5249 F:      include/linux/dma-map-ops.h
5250 F:      kernel/dma/
5251
5252 DMA MAPPING BENCHMARK
5253 M:      Barry Song <song.bao.hua@hisilicon.com>
5254 L:      iommu@lists.linux-foundation.org
5255 F:      kernel/dma/map_benchmark.c
5256 F:      tools/testing/selftests/dma/
5257
5258 DMA-BUF HEAPS FRAMEWORK
5259 M:      Sumit Semwal <sumit.semwal@linaro.org>
5260 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5261 R:      Liam Mark <lmark@codeaurora.org>
5262 R:      Laura Abbott <labbott@redhat.com>
5263 R:      Brian Starkey <Brian.Starkey@arm.com>
5264 R:      John Stultz <john.stultz@linaro.org>
5265 L:      linux-media@vger.kernel.org
5266 L:      dri-devel@lists.freedesktop.org
5267 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5268 S:      Maintained
5269 T:      git git://anongit.freedesktop.org/drm/drm-misc
5270 F:      drivers/dma-buf/dma-heap.c
5271 F:      drivers/dma-buf/heaps/*
5272 F:      include/linux/dma-heap.h
5273 F:      include/uapi/linux/dma-heap.h
5274
5275 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5276 M:      Lukasz Luba <lukasz.luba@arm.com>
5277 L:      linux-pm@vger.kernel.org
5278 L:      linux-samsung-soc@vger.kernel.org
5279 S:      Maintained
5280 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5281 F:      drivers/memory/samsung/exynos5422-dmc.c
5282
5283 DME1737 HARDWARE MONITOR DRIVER
5284 M:      Juerg Haefliger <juergh@gmail.com>
5285 L:      linux-hwmon@vger.kernel.org
5286 S:      Maintained
5287 F:      Documentation/hwmon/dme1737.rst
5288 F:      drivers/hwmon/dme1737.c
5289
5290 DMI/SMBIOS SUPPORT
5291 M:      Jean Delvare <jdelvare@suse.com>
5292 S:      Maintained
5293 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5294 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5295 F:      drivers/firmware/dmi-id.c
5296 F:      drivers/firmware/dmi_scan.c
5297 F:      include/linux/dmi.h
5298
5299 DOCUMENTATION
5300 M:      Jonathan Corbet <corbet@lwn.net>
5301 L:      linux-doc@vger.kernel.org
5302 S:      Maintained
5303 P:      Documentation/doc-guide/maintainer-profile.rst
5304 T:      git git://git.lwn.net/linux.git docs-next
5305 F:      Documentation/
5306 F:      scripts/documentation-file-ref-check
5307 F:      scripts/kernel-doc
5308 F:      scripts/sphinx-pre-install
5309 X:      Documentation/ABI/
5310 X:      Documentation/admin-guide/media/
5311 X:      Documentation/devicetree/
5312 X:      Documentation/driver-api/media/
5313 X:      Documentation/firmware-guide/acpi/
5314 X:      Documentation/i2c/
5315 X:      Documentation/power/
5316 X:      Documentation/spi/
5317 X:      Documentation/userspace-api/media/
5318
5319 DOCUMENTATION SCRIPTS
5320 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5321 L:      linux-doc@vger.kernel.org
5322 S:      Maintained
5323 F:      Documentation/sphinx/parse-headers.pl
5324 F:      scripts/documentation-file-ref-check
5325 F:      scripts/sphinx-pre-install
5326
5327 DOCUMENTATION/ITALIAN
5328 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5329 L:      linux-doc@vger.kernel.org
5330 S:      Maintained
5331 F:      Documentation/translations/it_IT
5332
5333 DONGWOON DW9714 LENS VOICE COIL DRIVER
5334 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5335 L:      linux-media@vger.kernel.org
5336 S:      Maintained
5337 T:      git git://linuxtv.org/media_tree.git
5338 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5339 F:      drivers/media/i2c/dw9714.c
5340
5341 DONGWOON DW9768 LENS VOICE COIL DRIVER
5342 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5343 L:      linux-media@vger.kernel.org
5344 S:      Maintained
5345 T:      git git://linuxtv.org/media_tree.git
5346 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5347 F:      drivers/media/i2c/dw9768.c
5348
5349 DONGWOON DW9807 LENS VOICE COIL DRIVER
5350 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5351 L:      linux-media@vger.kernel.org
5352 S:      Maintained
5353 T:      git git://linuxtv.org/media_tree.git
5354 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5355 F:      drivers/media/i2c/dw9807-vcm.c
5356
5357 DOUBLETALK DRIVER
5358 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5359 L:      blinux-list@redhat.com
5360 S:      Maintained
5361 F:      drivers/char/dtlk.c
5362 F:      include/linux/dtlk.h
5363
5364 DPAA2 DATAPATH I/O (DPIO) DRIVER
5365 M:      Roy Pledge <Roy.Pledge@nxp.com>
5366 L:      linux-kernel@vger.kernel.org
5367 S:      Maintained
5368 F:      drivers/soc/fsl/dpio
5369
5370 DPAA2 ETHERNET DRIVER
5371 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5372 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5373 L:      netdev@vger.kernel.org
5374 S:      Maintained
5375 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5376 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5377 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5378 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5379 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5380 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5381 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5382 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5383 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5384
5385 DPAA2 ETHERNET SWITCH DRIVER
5386 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5387 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5388 L:      linux-kernel@vger.kernel.org
5389 S:      Maintained
5390 F:      drivers/staging/fsl-dpaa2/ethsw
5391
5392 DPT_I2O SCSI RAID DRIVER
5393 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5394 L:      linux-scsi@vger.kernel.org
5395 S:      Maintained
5396 W:      http://www.adaptec.com/
5397 F:      drivers/scsi/dpt*
5398 F:      drivers/scsi/dpt/
5399
5400 DRBD DRIVER
5401 M:      Philipp Reisner <philipp.reisner@linbit.com>
5402 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5403 L:      drbd-dev@lists.linbit.com
5404 S:      Supported
5405 W:      http://www.drbd.org
5406 T:      git git://git.linbit.com/linux-drbd.git
5407 T:      git git://git.linbit.com/drbd-8.4.git
5408 F:      Documentation/admin-guide/blockdev/
5409 F:      drivers/block/drbd/
5410 F:      lib/lru_cache.c
5411
5412 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5413 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5414 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5415 S:      Supported
5416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5417 F:      Documentation/core-api/kobject.rst
5418 F:      drivers/base/
5419 F:      fs/debugfs/
5420 F:      fs/sysfs/
5421 F:      include/linux/debugfs.h
5422 F:      include/linux/kobj*
5423 F:      lib/kobj*
5424
5425 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5426 M:      Nishanth Menon <nm@ti.com>
5427 L:      linux-pm@vger.kernel.org
5428 S:      Maintained
5429 F:      drivers/soc/ti/smartreflex.c
5430 F:      include/linux/power/smartreflex.h
5431
5432 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5433 M:      Maxime Ripard <mripard@kernel.org>
5434 M:      Chen-Yu Tsai <wens@csie.org>
5435 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5436 L:      dri-devel@lists.freedesktop.org
5437 S:      Supported
5438 T:      git git://anongit.freedesktop.org/drm/drm-misc
5439 F:      drivers/gpu/drm/sun4i/sun8i*
5440
5441 DRM DRIVER FOR ARM PL111 CLCD
5442 M:      Eric Anholt <eric@anholt.net>
5443 S:      Supported
5444 T:      git git://anongit.freedesktop.org/drm/drm-misc
5445 F:      drivers/gpu/drm/pl111/
5446
5447 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5448 M:      Linus Walleij <linus.walleij@linaro.org>
5449 S:      Maintained
5450 T:      git git://anongit.freedesktop.org/drm/drm-misc
5451 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5452 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5453
5454 DRM DRIVER FOR ASPEED BMC GFX
5455 M:      Joel Stanley <joel@jms.id.au>
5456 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5457 S:      Supported
5458 T:      git git://anongit.freedesktop.org/drm/drm-misc
5459 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5460 F:      drivers/gpu/drm/aspeed/
5461
5462 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5463 M:      Dave Airlie <airlied@redhat.com>
5464 R:      Thomas Zimmermann <tzimmermann@suse.de>
5465 L:      dri-devel@lists.freedesktop.org
5466 S:      Supported
5467 T:      git git://anongit.freedesktop.org/drm/drm-misc
5468 F:      drivers/gpu/drm/ast/
5469
5470 DRM DRIVER FOR BOCHS VIRTUAL GPU
5471 M:      Gerd Hoffmann <kraxel@redhat.com>
5472 L:      virtualization@lists.linux-foundation.org
5473 S:      Maintained
5474 T:      git git://anongit.freedesktop.org/drm/drm-misc
5475 F:      drivers/gpu/drm/bochs/
5476
5477 DRM DRIVER FOR BOE HIMAX8279D PANELS
5478 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5479 S:      Maintained
5480 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5481 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5482
5483 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5484 M:      Linus Walleij <linus.walleij@linaro.org>
5485 S:      Maintained
5486 T:      git git://anongit.freedesktop.org/drm/drm-misc
5487 F:      drivers/gpu/drm/tve200/
5488
5489 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5490 M:      Icenowy Zheng <icenowy@aosc.io>
5491 S:      Maintained
5492 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5493 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5494
5495 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5496 M:      Jagan Teki <jagan@amarulasolutions.com>
5497 S:      Maintained
5498 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5499 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5500
5501 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5502 M:      Hans de Goede <hdegoede@redhat.com>
5503 S:      Maintained
5504 T:      git git://anongit.freedesktop.org/drm/drm-misc
5505 F:      drivers/gpu/drm/tiny/gm12u320.c
5506
5507 DRM DRIVER FOR HX8357D PANELS
5508 M:      Eric Anholt <eric@anholt.net>
5509 S:      Maintained
5510 T:      git git://anongit.freedesktop.org/drm/drm-misc
5511 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5512 F:      drivers/gpu/drm/tiny/hx8357d.c
5513
5514 DRM DRIVER FOR ILITEK ILI9225 PANELS
5515 M:      David Lechner <david@lechnology.com>
5516 S:      Maintained
5517 T:      git git://anongit.freedesktop.org/drm/drm-misc
5518 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5519 F:      drivers/gpu/drm/tiny/ili9225.c
5520
5521 DRM DRIVER FOR ILITEK ILI9486 PANELS
5522 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5523 S:      Maintained
5524 T:      git git://anongit.freedesktop.org/drm/drm-misc
5525 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5526 F:      drivers/gpu/drm/tiny/ili9486.c
5527
5528 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5529 S:      Orphan / Obsolete
5530 F:      drivers/gpu/drm/i810/
5531 F:      include/uapi/drm/i810_drm.h
5532
5533 DRM DRIVER FOR LVDS PANELS
5534 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5535 L:      dri-devel@lists.freedesktop.org
5536 T:      git git://anongit.freedesktop.org/drm/drm-misc
5537 S:      Maintained
5538 F:      drivers/gpu/drm/panel/panel-lvds.c
5539 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5540
5541 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5542 M:      Guido Günther <agx@sigxcpu.org>
5543 R:      Purism Kernel Team <kernel@puri.sm>
5544 S:      Maintained
5545 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5546 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5547
5548 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5549 S:      Orphan / Obsolete
5550 F:      drivers/gpu/drm/mga/
5551 F:      include/uapi/drm/mga_drm.h
5552
5553 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5554 M:      Dave Airlie <airlied@redhat.com>
5555 R:      Thomas Zimmermann <tzimmermann@suse.de>
5556 L:      dri-devel@lists.freedesktop.org
5557 S:      Supported
5558 T:      git git://anongit.freedesktop.org/drm/drm-misc
5559 F:      drivers/gpu/drm/mgag200/
5560
5561 DRM DRIVER FOR MI0283QT
5562 M:      Noralf Trønnes <noralf@tronnes.org>
5563 S:      Maintained
5564 T:      git git://anongit.freedesktop.org/drm/drm-misc
5565 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5566 F:      drivers/gpu/drm/tiny/mi0283qt.c
5567
5568 DRM DRIVER FOR MSM ADRENO GPU
5569 M:      Rob Clark <robdclark@gmail.com>
5570 M:      Sean Paul <sean@poorly.run>
5571 L:      linux-arm-msm@vger.kernel.org
5572 L:      dri-devel@lists.freedesktop.org
5573 L:      freedreno@lists.freedesktop.org
5574 S:      Maintained
5575 T:      git https://gitlab.freedesktop.org/drm/msm.git
5576 F:      Documentation/devicetree/bindings/display/msm/
5577 F:      drivers/gpu/drm/msm/
5578 F:      include/uapi/drm/msm_drm.h
5579
5580 DRM DRIVER FOR NOVATEK NT35510 PANELS
5581 M:      Linus Walleij <linus.walleij@linaro.org>
5582 S:      Maintained
5583 T:      git git://anongit.freedesktop.org/drm/drm-misc
5584 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5585 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5586
5587 DRM DRIVER FOR NOVATEK NT36672A PANELS
5588 M:      Sumit Semwal <sumit.semwal@linaro.org>
5589 S:      Maintained
5590 T:      git git://anongit.freedesktop.org/drm/drm-misc
5591 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5592 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5593
5594 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5595 M:      Ben Skeggs <bskeggs@redhat.com>
5596 L:      dri-devel@lists.freedesktop.org
5597 L:      nouveau@lists.freedesktop.org
5598 S:      Supported
5599 T:      git git://github.com/skeggsb/linux
5600 F:      drivers/gpu/drm/nouveau/
5601 F:      include/uapi/drm/nouveau_drm.h
5602
5603 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5604 M:      Stefan Mavrodiev <stefan@olimex.com>
5605 S:      Maintained
5606 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5607 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5608
5609 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5610 M:      Noralf Trønnes <noralf@tronnes.org>
5611 S:      Maintained
5612 T:      git git://anongit.freedesktop.org/drm/drm-misc
5613 F:      Documentation/devicetree/bindings/display/repaper.txt
5614 F:      drivers/gpu/drm/tiny/repaper.c
5615
5616 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5617 M:      Dave Airlie <airlied@redhat.com>
5618 M:      Gerd Hoffmann <kraxel@redhat.com>
5619 L:      virtualization@lists.linux-foundation.org
5620 S:      Obsolete
5621 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5622 T:      git git://anongit.freedesktop.org/drm/drm-misc
5623 F:      drivers/gpu/drm/tiny/cirrus.c
5624
5625 DRM DRIVER FOR QXL VIRTUAL GPU
5626 M:      Dave Airlie <airlied@redhat.com>
5627 M:      Gerd Hoffmann <kraxel@redhat.com>
5628 L:      virtualization@lists.linux-foundation.org
5629 L:      spice-devel@lists.freedesktop.org
5630 S:      Maintained
5631 T:      git git://anongit.freedesktop.org/drm/drm-misc
5632 F:      drivers/gpu/drm/qxl/
5633 F:      include/uapi/drm/qxl_drm.h
5634
5635 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5636 S:      Orphan / Obsolete
5637 F:      drivers/gpu/drm/r128/
5638 F:      include/uapi/drm/r128_drm.h
5639
5640 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5641 M:      Robert Chiras <robert.chiras@nxp.com>
5642 S:      Maintained
5643 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5644 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5645
5646 DRM DRIVER FOR SITRONIX ST7703 PANELS
5647 M:      Guido Günther <agx@sigxcpu.org>
5648 R:      Purism Kernel Team <kernel@puri.sm>
5649 R:      Ondrej Jirman <megous@megous.com>
5650 S:      Maintained
5651 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5652 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5653
5654 DRM DRIVER FOR SAVAGE VIDEO CARDS
5655 S:      Orphan / Obsolete
5656 F:      drivers/gpu/drm/savage/
5657 F:      include/uapi/drm/savage_drm.h
5658
5659 DRM DRIVER FOR SIS VIDEO CARDS
5660 S:      Orphan / Obsolete
5661 F:      drivers/gpu/drm/sis/
5662 F:      include/uapi/drm/sis_drm.h
5663
5664 DRM DRIVER FOR SITRONIX ST7586 PANELS
5665 M:      David Lechner <david@lechnology.com>
5666 S:      Maintained
5667 T:      git git://anongit.freedesktop.org/drm/drm-misc
5668 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5669 F:      drivers/gpu/drm/tiny/st7586.c
5670
5671 DRM DRIVER FOR SITRONIX ST7701 PANELS
5672 M:      Jagan Teki <jagan@amarulasolutions.com>
5673 S:      Maintained
5674 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5675 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5676
5677 DRM DRIVER FOR SITRONIX ST7735R PANELS
5678 M:      David Lechner <david@lechnology.com>
5679 S:      Maintained
5680 T:      git git://anongit.freedesktop.org/drm/drm-misc
5681 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5682 F:      drivers/gpu/drm/tiny/st7735r.c
5683
5684 DRM DRIVER FOR SONY ACX424AKP PANELS
5685 M:      Linus Walleij <linus.walleij@linaro.org>
5686 S:      Maintained
5687 T:      git git://anongit.freedesktop.org/drm/drm-misc
5688 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5689
5690 DRM DRIVER FOR ST-ERICSSON MCDE
5691 M:      Linus Walleij <linus.walleij@linaro.org>
5692 S:      Maintained
5693 T:      git git://anongit.freedesktop.org/drm/drm-misc
5694 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5695 F:      drivers/gpu/drm/mcde/
5696
5697 DRM DRIVER FOR TDFX VIDEO CARDS
5698 S:      Orphan / Obsolete
5699 F:      drivers/gpu/drm/tdfx/
5700
5701 DRM DRIVER FOR TPO TPG110 PANELS
5702 M:      Linus Walleij <linus.walleij@linaro.org>
5703 S:      Maintained
5704 T:      git git://anongit.freedesktop.org/drm/drm-misc
5705 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5706 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5707
5708 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5709 M:      Dave Airlie <airlied@redhat.com>
5710 R:      Sean Paul <sean@poorly.run>
5711 R:      Thomas Zimmermann <tzimmermann@suse.de>
5712 L:      dri-devel@lists.freedesktop.org
5713 S:      Supported
5714 T:      git git://anongit.freedesktop.org/drm/drm-misc
5715 F:      drivers/gpu/drm/udl/
5716
5717 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5718 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5719 M:      Melissa Wen <melissa.srw@gmail.com>
5720 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5721 R:      Daniel Vetter <daniel@ffwll.ch>
5722 L:      dri-devel@lists.freedesktop.org
5723 S:      Maintained
5724 T:      git git://anongit.freedesktop.org/drm/drm-misc
5725 F:      Documentation/gpu/vkms.rst
5726 F:      drivers/gpu/drm/vkms/
5727
5728 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5729 M:      Hans de Goede <hdegoede@redhat.com>
5730 L:      dri-devel@lists.freedesktop.org
5731 S:      Maintained
5732 T:      git git://anongit.freedesktop.org/drm/drm-misc
5733 F:      drivers/gpu/drm/vboxvideo/
5734
5735 DRM DRIVER FOR VMWARE VIRTUAL GPU
5736 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5737 M:      Roland Scheidegger <sroland@vmware.com>
5738 L:      dri-devel@lists.freedesktop.org
5739 S:      Supported
5740 T:      git git://people.freedesktop.org/~sroland/linux
5741 F:      drivers/gpu/drm/vmwgfx/
5742 F:      include/uapi/drm/vmwgfx_drm.h
5743
5744 DRM DRIVERS
5745 M:      David Airlie <airlied@linux.ie>
5746 M:      Daniel Vetter <daniel@ffwll.ch>
5747 L:      dri-devel@lists.freedesktop.org
5748 S:      Maintained
5749 B:      https://bugs.freedesktop.org/
5750 C:      irc://chat.freenode.net/dri-devel
5751 T:      git git://anongit.freedesktop.org/drm/drm
5752 F:      Documentation/devicetree/bindings/display/
5753 F:      Documentation/devicetree/bindings/gpu/
5754 F:      Documentation/gpu/
5755 F:      drivers/gpu/drm/
5756 F:      drivers/gpu/vga/
5757 F:      include/drm/
5758 F:      include/linux/vga*
5759 F:      include/uapi/drm/
5760
5761 DRM DRIVERS AND MISC GPU PATCHES
5762 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5763 M:      Maxime Ripard <mripard@kernel.org>
5764 M:      Thomas Zimmermann <tzimmermann@suse.de>
5765 S:      Maintained
5766 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5767 T:      git git://anongit.freedesktop.org/drm/drm-misc
5768 F:      Documentation/gpu/
5769 F:      drivers/gpu/drm/*
5770 F:      drivers/gpu/vga/
5771 F:      include/drm/drm*
5772 F:      include/linux/vga*
5773 F:      include/uapi/drm/drm*
5774
5775 DRM DRIVERS FOR ALLWINNER A10
5776 M:      Maxime Ripard <mripard@kernel.org>
5777 M:      Chen-Yu Tsai <wens@csie.org>
5778 L:      dri-devel@lists.freedesktop.org
5779 S:      Supported
5780 T:      git git://anongit.freedesktop.org/drm/drm-misc
5781 F:      Documentation/devicetree/bindings/display/allwinner*
5782 F:      drivers/gpu/drm/sun4i/
5783
5784 DRM DRIVERS FOR AMLOGIC SOCS
5785 M:      Neil Armstrong <narmstrong@baylibre.com>
5786 L:      dri-devel@lists.freedesktop.org
5787 L:      linux-amlogic@lists.infradead.org
5788 S:      Supported
5789 W:      http://linux-meson.com/
5790 T:      git git://anongit.freedesktop.org/drm/drm-misc
5791 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5792 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5793 F:      Documentation/gpu/meson.rst
5794 F:      drivers/gpu/drm/meson/
5795
5796 DRM DRIVERS FOR ATMEL HLCDC
5797 M:      Sam Ravnborg <sam@ravnborg.org>
5798 M:      Boris Brezillon <bbrezillon@kernel.org>
5799 L:      dri-devel@lists.freedesktop.org
5800 S:      Supported
5801 T:      git git://anongit.freedesktop.org/drm/drm-misc
5802 F:      Documentation/devicetree/bindings/display/atmel/
5803 F:      drivers/gpu/drm/atmel-hlcdc/
5804
5805 DRM DRIVERS FOR BRIDGE CHIPS
5806 M:      Andrzej Hajda <a.hajda@samsung.com>
5807 M:      Neil Armstrong <narmstrong@baylibre.com>
5808 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5809 R:      Jonas Karlman <jonas@kwiboo.se>
5810 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5811 S:      Maintained
5812 T:      git git://anongit.freedesktop.org/drm/drm-misc
5813 F:      drivers/gpu/drm/bridge/
5814
5815 DRM DRIVERS FOR EXYNOS
5816 M:      Inki Dae <inki.dae@samsung.com>
5817 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5818 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5819 M:      Kyungmin Park <kyungmin.park@samsung.com>
5820 L:      dri-devel@lists.freedesktop.org
5821 S:      Supported
5822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5823 F:      Documentation/devicetree/bindings/display/exynos/
5824 F:      drivers/gpu/drm/exynos/
5825 F:      include/uapi/drm/exynos_drm.h
5826
5827 DRM DRIVERS FOR FREESCALE DCU
5828 M:      Stefan Agner <stefan@agner.ch>
5829 M:      Alison Wang <alison.wang@nxp.com>
5830 L:      dri-devel@lists.freedesktop.org
5831 S:      Supported
5832 T:      git git://anongit.freedesktop.org/drm/drm-misc
5833 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5834 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5835 F:      drivers/gpu/drm/fsl-dcu/
5836
5837 DRM DRIVERS FOR FREESCALE IMX
5838 M:      Philipp Zabel <p.zabel@pengutronix.de>
5839 L:      dri-devel@lists.freedesktop.org
5840 S:      Maintained
5841 F:      Documentation/devicetree/bindings/display/imx/
5842 F:      drivers/gpu/drm/imx/
5843 F:      drivers/gpu/ipu-v3/
5844
5845 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5846 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5847 L:      dri-devel@lists.freedesktop.org
5848 S:      Maintained
5849 T:      git git://github.com/patjak/drm-gma500
5850 F:      drivers/gpu/drm/gma500/
5851
5852 DRM DRIVERS FOR HISILICON
5853 M:      Xinliang Liu <xinliang.liu@linaro.org>
5854 M:      Tian Tao  <tiantao6@hisilicon.com>
5855 R:      John Stultz <john.stultz@linaro.org>
5856 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5857 R:      Chen Feng <puck.chen@hisilicon.com>
5858 L:      dri-devel@lists.freedesktop.org
5859 S:      Maintained
5860 T:      git git://anongit.freedesktop.org/drm/drm-misc
5861 F:      Documentation/devicetree/bindings/display/hisilicon/
5862 F:      drivers/gpu/drm/hisilicon/
5863
5864 DRM DRIVERS FOR LIMA
5865 M:      Qiang Yu <yuq825@gmail.com>
5866 L:      dri-devel@lists.freedesktop.org
5867 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5868 S:      Maintained
5869 T:      git git://anongit.freedesktop.org/drm/drm-misc
5870 F:      drivers/gpu/drm/lima/
5871 F:      include/uapi/drm/lima_drm.h
5872
5873 DRM DRIVERS FOR MEDIATEK
5874 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5875 M:      Philipp Zabel <p.zabel@pengutronix.de>
5876 L:      dri-devel@lists.freedesktop.org
5877 S:      Supported
5878 F:      Documentation/devicetree/bindings/display/mediatek/
5879 F:      drivers/gpu/drm/mediatek/
5880 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5881 F:      drivers/phy/mediatek/phy-mtk-mipi*
5882
5883 DRM DRIVERS FOR NVIDIA TEGRA
5884 M:      Thierry Reding <thierry.reding@gmail.com>
5885 L:      dri-devel@lists.freedesktop.org
5886 L:      linux-tegra@vger.kernel.org
5887 S:      Supported
5888 T:      git git://anongit.freedesktop.org/tegra/linux.git
5889 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5890 F:      drivers/gpu/drm/tegra/
5891 F:      drivers/gpu/host1x/
5892 F:      include/linux/host1x.h
5893 F:      include/uapi/drm/tegra_drm.h
5894
5895 DRM DRIVERS FOR RENESAS
5896 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5897 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5898 L:      dri-devel@lists.freedesktop.org
5899 L:      linux-renesas-soc@vger.kernel.org
5900 S:      Supported
5901 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5902 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5903 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5904 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5905 F:      drivers/gpu/drm/rcar-du/
5906 F:      drivers/gpu/drm/shmobile/
5907 F:      include/linux/platform_data/shmob_drm.h
5908
5909 DRM DRIVERS FOR ROCKCHIP
5910 M:      Sandy Huang <hjc@rock-chips.com>
5911 M:      Heiko Stübner <heiko@sntech.de>
5912 L:      dri-devel@lists.freedesktop.org
5913 S:      Maintained
5914 T:      git git://anongit.freedesktop.org/drm/drm-misc
5915 F:      Documentation/devicetree/bindings/display/rockchip/
5916 F:      drivers/gpu/drm/rockchip/
5917
5918 DRM DRIVERS FOR STI
5919 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5920 M:      Vincent Abriou <vincent.abriou@st.com>
5921 L:      dri-devel@lists.freedesktop.org
5922 S:      Maintained
5923 T:      git git://anongit.freedesktop.org/drm/drm-misc
5924 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5925 F:      drivers/gpu/drm/sti
5926
5927 DRM DRIVERS FOR STM
5928 M:      Yannick Fertre <yannick.fertre@st.com>
5929 M:      Philippe Cornu <philippe.cornu@st.com>
5930 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5931 M:      Vincent Abriou <vincent.abriou@st.com>
5932 L:      dri-devel@lists.freedesktop.org
5933 S:      Maintained
5934 T:      git git://anongit.freedesktop.org/drm/drm-misc
5935 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5936 F:      drivers/gpu/drm/stm
5937
5938 DRM DRIVERS FOR TI KEYSTONE
5939 M:      Jyri Sarha <jsarha@ti.com>
5940 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5941 L:      dri-devel@lists.freedesktop.org
5942 S:      Maintained
5943 T:      git git://anongit.freedesktop.org/drm/drm-misc
5944 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5945 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5946 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5947 F:      drivers/gpu/drm/tidss/
5948
5949 DRM DRIVERS FOR TI LCDC
5950 M:      Jyri Sarha <jsarha@ti.com>
5951 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5952 L:      dri-devel@lists.freedesktop.org
5953 S:      Maintained
5954 F:      Documentation/devicetree/bindings/display/tilcdc/
5955 F:      drivers/gpu/drm/tilcdc/
5956
5957 DRM DRIVERS FOR TI OMAP
5958 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5959 L:      dri-devel@lists.freedesktop.org
5960 S:      Maintained
5961 F:      Documentation/devicetree/bindings/display/ti/
5962 F:      drivers/gpu/drm/omapdrm/
5963
5964 DRM DRIVERS FOR V3D
5965 M:      Eric Anholt <eric@anholt.net>
5966 S:      Supported
5967 T:      git git://anongit.freedesktop.org/drm/drm-misc
5968 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5969 F:      drivers/gpu/drm/v3d/
5970 F:      include/uapi/drm/v3d_drm.h
5971
5972 DRM DRIVERS FOR VC4
5973 M:      Eric Anholt <eric@anholt.net>
5974 M:      Maxime Ripard <mripard@kernel.org>
5975 S:      Supported
5976 T:      git git://github.com/anholt/linux
5977 T:      git git://anongit.freedesktop.org/drm/drm-misc
5978 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
5979 F:      drivers/gpu/drm/vc4/
5980 F:      include/uapi/drm/vc4_drm.h
5981
5982 DRM DRIVERS FOR VIVANTE GPU IP
5983 M:      Lucas Stach <l.stach@pengutronix.de>
5984 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5985 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5986 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5987 L:      dri-devel@lists.freedesktop.org
5988 S:      Maintained
5989 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5990 F:      drivers/gpu/drm/etnaviv/
5991 F:      include/uapi/drm/etnaviv_drm.h
5992
5993 DRM DRIVERS FOR XEN
5994 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5995 L:      dri-devel@lists.freedesktop.org
5996 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5997 S:      Supported
5998 T:      git git://anongit.freedesktop.org/drm/drm-misc
5999 F:      Documentation/gpu/xen-front.rst
6000 F:      drivers/gpu/drm/xen/
6001
6002 DRM DRIVERS FOR XILINX
6003 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6004 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6005 L:      dri-devel@lists.freedesktop.org
6006 S:      Maintained
6007 T:      git git://anongit.freedesktop.org/drm/drm-misc
6008 F:      Documentation/devicetree/bindings/display/xlnx/
6009 F:      drivers/gpu/drm/xlnx/
6010
6011 DRM PANEL DRIVERS
6012 M:      Thierry Reding <thierry.reding@gmail.com>
6013 R:      Sam Ravnborg <sam@ravnborg.org>
6014 L:      dri-devel@lists.freedesktop.org
6015 S:      Maintained
6016 T:      git git://anongit.freedesktop.org/drm/drm-misc
6017 F:      Documentation/devicetree/bindings/display/panel/
6018 F:      drivers/gpu/drm/drm_panel.c
6019 F:      drivers/gpu/drm/panel/
6020 F:      include/drm/drm_panel.h
6021
6022 DRM TTM SUBSYSTEM
6023 M:      Christian Koenig <christian.koenig@amd.com>
6024 M:      Huang Rui <ray.huang@amd.com>
6025 L:      dri-devel@lists.freedesktop.org
6026 S:      Maintained
6027 T:      git git://people.freedesktop.org/~agd5f/linux
6028 F:      drivers/gpu/drm/ttm/
6029 F:      include/drm/ttm/
6030
6031 DSBR100 USB FM RADIO DRIVER
6032 M:      Alexey Klimov <klimov.linux@gmail.com>
6033 L:      linux-media@vger.kernel.org
6034 S:      Maintained
6035 T:      git git://linuxtv.org/media_tree.git
6036 F:      drivers/media/radio/dsbr100.c
6037
6038 DT3155 MEDIA DRIVER
6039 M:      Hans Verkuil <hverkuil@xs4all.nl>
6040 L:      linux-media@vger.kernel.org
6041 S:      Odd Fixes
6042 W:      https://linuxtv.org
6043 T:      git git://linuxtv.org/media_tree.git
6044 F:      drivers/media/pci/dt3155/
6045
6046 DVB_USB_AF9015 MEDIA DRIVER
6047 M:      Antti Palosaari <crope@iki.fi>
6048 L:      linux-media@vger.kernel.org
6049 S:      Maintained
6050 W:      https://linuxtv.org
6051 W:      http://palosaari.fi/linux/
6052 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6053 T:      git git://linuxtv.org/anttip/media_tree.git
6054 F:      drivers/media/usb/dvb-usb-v2/af9015*
6055
6056 DVB_USB_AF9035 MEDIA DRIVER
6057 M:      Antti Palosaari <crope@iki.fi>
6058 L:      linux-media@vger.kernel.org
6059 S:      Maintained
6060 W:      https://linuxtv.org
6061 W:      http://palosaari.fi/linux/
6062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6063 T:      git git://linuxtv.org/anttip/media_tree.git
6064 F:      drivers/media/usb/dvb-usb-v2/af9035*
6065
6066 DVB_USB_ANYSEE MEDIA DRIVER
6067 M:      Antti Palosaari <crope@iki.fi>
6068 L:      linux-media@vger.kernel.org
6069 S:      Maintained
6070 W:      https://linuxtv.org
6071 W:      http://palosaari.fi/linux/
6072 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6073 T:      git git://linuxtv.org/anttip/media_tree.git
6074 F:      drivers/media/usb/dvb-usb-v2/anysee*
6075
6076 DVB_USB_AU6610 MEDIA DRIVER
6077 M:      Antti Palosaari <crope@iki.fi>
6078 L:      linux-media@vger.kernel.org
6079 S:      Maintained
6080 W:      https://linuxtv.org
6081 W:      http://palosaari.fi/linux/
6082 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6083 T:      git git://linuxtv.org/anttip/media_tree.git
6084 F:      drivers/media/usb/dvb-usb-v2/au6610*
6085
6086 DVB_USB_CE6230 MEDIA DRIVER
6087 M:      Antti Palosaari <crope@iki.fi>
6088 L:      linux-media@vger.kernel.org
6089 S:      Maintained
6090 W:      https://linuxtv.org
6091 W:      http://palosaari.fi/linux/
6092 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6093 T:      git git://linuxtv.org/anttip/media_tree.git
6094 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6095
6096 DVB_USB_CXUSB MEDIA DRIVER
6097 M:      Michael Krufky <mkrufky@linuxtv.org>
6098 L:      linux-media@vger.kernel.org
6099 S:      Maintained
6100 W:      https://linuxtv.org
6101 W:      http://github.com/mkrufky
6102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6103 T:      git git://linuxtv.org/media_tree.git
6104 F:      drivers/media/usb/dvb-usb/cxusb*
6105
6106 DVB_USB_EC168 MEDIA DRIVER
6107 M:      Antti Palosaari <crope@iki.fi>
6108 L:      linux-media@vger.kernel.org
6109 S:      Maintained
6110 W:      https://linuxtv.org
6111 W:      http://palosaari.fi/linux/
6112 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6113 T:      git git://linuxtv.org/anttip/media_tree.git
6114 F:      drivers/media/usb/dvb-usb-v2/ec168*
6115
6116 DVB_USB_GL861 MEDIA DRIVER
6117 M:      Antti Palosaari <crope@iki.fi>
6118 L:      linux-media@vger.kernel.org
6119 S:      Maintained
6120 W:      https://linuxtv.org
6121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6122 T:      git git://linuxtv.org/anttip/media_tree.git
6123 F:      drivers/media/usb/dvb-usb-v2/gl861*
6124
6125 DVB_USB_MXL111SF MEDIA DRIVER
6126 M:      Michael Krufky <mkrufky@linuxtv.org>
6127 L:      linux-media@vger.kernel.org
6128 S:      Maintained
6129 W:      https://linuxtv.org
6130 W:      http://github.com/mkrufky
6131 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6132 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6133 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6134
6135 DVB_USB_RTL28XXU MEDIA DRIVER
6136 M:      Antti Palosaari <crope@iki.fi>
6137 L:      linux-media@vger.kernel.org
6138 S:      Maintained
6139 W:      https://linuxtv.org
6140 W:      http://palosaari.fi/linux/
6141 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6142 T:      git git://linuxtv.org/anttip/media_tree.git
6143 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6144
6145 DVB_USB_V2 MEDIA DRIVER
6146 M:      Antti Palosaari <crope@iki.fi>
6147 L:      linux-media@vger.kernel.org
6148 S:      Maintained
6149 W:      https://linuxtv.org
6150 W:      http://palosaari.fi/linux/
6151 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6152 T:      git git://linuxtv.org/anttip/media_tree.git
6153 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6154 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6155
6156 DYNAMIC DEBUG
6157 M:      Jason Baron <jbaron@akamai.com>
6158 S:      Maintained
6159 F:      include/linux/dynamic_debug.h
6160 F:      lib/dynamic_debug.c
6161
6162 DYNAMIC INTERRUPT MODERATION
6163 M:      Tal Gilboa <talgi@nvidia.com>
6164 S:      Maintained
6165 F:      Documentation/networking/net_dim.rst
6166 F:      include/linux/dim.h
6167 F:      lib/dim/
6168
6169 DZ DECSTATION DZ11 SERIAL DRIVER
6170 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6171 S:      Maintained
6172 F:      drivers/tty/serial/dz.*
6173
6174 E3X0 POWER BUTTON DRIVER
6175 M:      Moritz Fischer <moritz.fischer@ettus.com>
6176 L:      usrp-users@lists.ettus.com
6177 S:      Supported
6178 W:      http://www.ettus.com
6179 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6180 F:      drivers/input/misc/e3x0-button.c
6181
6182 E4000 MEDIA DRIVER
6183 M:      Antti Palosaari <crope@iki.fi>
6184 L:      linux-media@vger.kernel.org
6185 S:      Maintained
6186 W:      https://linuxtv.org
6187 W:      http://palosaari.fi/linux/
6188 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6189 T:      git git://linuxtv.org/anttip/media_tree.git
6190 F:      drivers/media/tuners/e4000*
6191
6192 EARTH_PT1 MEDIA DRIVER
6193 M:      Akihiro Tsukada <tskd08@gmail.com>
6194 L:      linux-media@vger.kernel.org
6195 S:      Odd Fixes
6196 F:      drivers/media/pci/pt1/
6197
6198 EARTH_PT3 MEDIA DRIVER
6199 M:      Akihiro Tsukada <tskd08@gmail.com>
6200 L:      linux-media@vger.kernel.org
6201 S:      Odd Fixes
6202 F:      drivers/media/pci/pt3/
6203
6204 EC100 MEDIA DRIVER
6205 M:      Antti Palosaari <crope@iki.fi>
6206 L:      linux-media@vger.kernel.org
6207 S:      Maintained
6208 W:      https://linuxtv.org
6209 W:      http://palosaari.fi/linux/
6210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6211 T:      git git://linuxtv.org/anttip/media_tree.git
6212 F:      drivers/media/dvb-frontends/ec100*
6213
6214 ECRYPT FILE SYSTEM
6215 M:      Tyler Hicks <code@tyhicks.com>
6216 L:      ecryptfs@vger.kernel.org
6217 S:      Odd Fixes
6218 W:      http://ecryptfs.org
6219 W:      https://launchpad.net/ecryptfs
6220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6221 F:      Documentation/filesystems/ecryptfs.rst
6222 F:      fs/ecryptfs/
6223
6224 EDAC-AMD64
6225 M:      Borislav Petkov <bp@alien8.de>
6226 L:      linux-edac@vger.kernel.org
6227 S:      Maintained
6228 F:      drivers/edac/amd64_edac*
6229
6230 EDAC-ARMADA
6231 M:      Jan Luebbe <jlu@pengutronix.de>
6232 L:      linux-edac@vger.kernel.org
6233 S:      Maintained
6234 F:      drivers/edac/armada_xp_*
6235
6236 EDAC-AST2500
6237 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6238 S:      Supported
6239 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6240 F:      drivers/edac/aspeed_edac.c
6241
6242 EDAC-BLUEFIELD
6243 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6244 S:      Supported
6245 F:      drivers/edac/bluefield_edac.c
6246
6247 EDAC-CALXEDA
6248 M:      Andre Przywara <andre.przywara@arm.com>
6249 L:      linux-edac@vger.kernel.org
6250 S:      Maintained
6251 F:      drivers/edac/highbank*
6252
6253 EDAC-CAVIUM OCTEON
6254 M:      Ralf Baechle <ralf@linux-mips.org>
6255 L:      linux-edac@vger.kernel.org
6256 L:      linux-mips@vger.kernel.org
6257 S:      Supported
6258 F:      drivers/edac/octeon_edac*
6259
6260 EDAC-CAVIUM THUNDERX
6261 M:      Robert Richter <rric@kernel.org>
6262 L:      linux-edac@vger.kernel.org
6263 S:      Odd Fixes
6264 F:      drivers/edac/thunderx_edac*
6265
6266 EDAC-CORE
6267 M:      Borislav Petkov <bp@alien8.de>
6268 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6269 M:      Tony Luck <tony.luck@intel.com>
6270 R:      James Morse <james.morse@arm.com>
6271 R:      Robert Richter <rric@kernel.org>
6272 L:      linux-edac@vger.kernel.org
6273 S:      Supported
6274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6275 F:      Documentation/admin-guide/ras.rst
6276 F:      Documentation/driver-api/edac.rst
6277 F:      drivers/edac/
6278 F:      include/linux/edac.h
6279
6280 EDAC-DMC520
6281 M:      Lei Wang <lewan@microsoft.com>
6282 L:      linux-edac@vger.kernel.org
6283 S:      Supported
6284 F:      drivers/edac/dmc520_edac.c
6285
6286 EDAC-E752X
6287 M:      Mark Gross <mark.gross@intel.com>
6288 L:      linux-edac@vger.kernel.org
6289 S:      Maintained
6290 F:      drivers/edac/e752x_edac.c
6291
6292 EDAC-E7XXX
6293 L:      linux-edac@vger.kernel.org
6294 S:      Maintained
6295 F:      drivers/edac/e7xxx_edac.c
6296
6297 EDAC-FSL_DDR
6298 M:      York Sun <york.sun@nxp.com>
6299 L:      linux-edac@vger.kernel.org
6300 S:      Maintained
6301 F:      drivers/edac/fsl_ddr_edac.*
6302
6303 EDAC-GHES
6304 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6305 L:      linux-edac@vger.kernel.org
6306 S:      Maintained
6307 F:      drivers/edac/ghes_edac.c
6308
6309 EDAC-I10NM
6310 M:      Tony Luck <tony.luck@intel.com>
6311 L:      linux-edac@vger.kernel.org
6312 S:      Maintained
6313 F:      drivers/edac/i10nm_base.c
6314
6315 EDAC-I3000
6316 L:      linux-edac@vger.kernel.org
6317 S:      Orphan
6318 F:      drivers/edac/i3000_edac.c
6319
6320 EDAC-I5000
6321 L:      linux-edac@vger.kernel.org
6322 S:      Maintained
6323 F:      drivers/edac/i5000_edac.c
6324
6325 EDAC-I5400
6326 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6327 L:      linux-edac@vger.kernel.org
6328 S:      Maintained
6329 F:      drivers/edac/i5400_edac.c
6330
6331 EDAC-I7300
6332 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6333 L:      linux-edac@vger.kernel.org
6334 S:      Maintained
6335 F:      drivers/edac/i7300_edac.c
6336
6337 EDAC-I7CORE
6338 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6339 L:      linux-edac@vger.kernel.org
6340 S:      Maintained
6341 F:      drivers/edac/i7core_edac.c
6342
6343 EDAC-I82443BXGX
6344 M:      Tim Small <tim@buttersideup.com>
6345 L:      linux-edac@vger.kernel.org
6346 S:      Maintained
6347 F:      drivers/edac/i82443bxgx_edac.c
6348
6349 EDAC-I82975X
6350 M:      "Arvind R." <arvino55@gmail.com>
6351 L:      linux-edac@vger.kernel.org
6352 S:      Maintained
6353 F:      drivers/edac/i82975x_edac.c
6354
6355 EDAC-IE31200
6356 M:      Jason Baron <jbaron@akamai.com>
6357 L:      linux-edac@vger.kernel.org
6358 S:      Maintained
6359 F:      drivers/edac/ie31200_edac.c
6360
6361 EDAC-IGEN6
6362 M:      Tony Luck <tony.luck@intel.com>
6363 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6364 L:      linux-edac@vger.kernel.org
6365 S:      Maintained
6366 F:      drivers/edac/igen6_edac.c
6367
6368 EDAC-MPC85XX
6369 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6370 L:      linux-edac@vger.kernel.org
6371 S:      Maintained
6372 F:      drivers/edac/mpc85xx_edac.[ch]
6373
6374 EDAC-PASEMI
6375 M:      Egor Martovetsky <egor@pasemi.com>
6376 L:      linux-edac@vger.kernel.org
6377 S:      Maintained
6378 F:      drivers/edac/pasemi_edac.c
6379
6380 EDAC-PND2
6381 M:      Tony Luck <tony.luck@intel.com>
6382 L:      linux-edac@vger.kernel.org
6383 S:      Maintained
6384 F:      drivers/edac/pnd2_edac.[ch]
6385
6386 EDAC-QCOM
6387 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6388 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6389 L:      linux-arm-msm@vger.kernel.org
6390 L:      linux-edac@vger.kernel.org
6391 S:      Maintained
6392 F:      drivers/edac/qcom_edac.c
6393
6394 EDAC-R82600
6395 M:      Tim Small <tim@buttersideup.com>
6396 L:      linux-edac@vger.kernel.org
6397 S:      Maintained
6398 F:      drivers/edac/r82600_edac.c
6399
6400 EDAC-SBRIDGE
6401 M:      Tony Luck <tony.luck@intel.com>
6402 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6403 L:      linux-edac@vger.kernel.org
6404 S:      Maintained
6405 F:      drivers/edac/sb_edac.c
6406
6407 EDAC-SIFIVE
6408 M:      Yash Shah <yash.shah@sifive.com>
6409 L:      linux-edac@vger.kernel.org
6410 S:      Supported
6411 F:      drivers/edac/sifive_edac.c
6412
6413 EDAC-SKYLAKE
6414 M:      Tony Luck <tony.luck@intel.com>
6415 L:      linux-edac@vger.kernel.org
6416 S:      Maintained
6417 F:      drivers/edac/skx_*.[ch]
6418
6419 EDAC-TI
6420 M:      Tero Kristo <kristo@kernel.org>
6421 L:      linux-edac@vger.kernel.org
6422 S:      Odd Fixes
6423 F:      drivers/edac/ti_edac.c
6424
6425 EDIROL UA-101/UA-1000 DRIVER
6426 M:      Clemens Ladisch <clemens@ladisch.de>
6427 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6428 S:      Maintained
6429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6430 F:      sound/usb/misc/ua101.c
6431
6432 EFI TEST DRIVER
6433 M:      Ivan Hu <ivan.hu@canonical.com>
6434 M:      Ard Biesheuvel <ardb@kernel.org>
6435 L:      linux-efi@vger.kernel.org
6436 S:      Maintained
6437 F:      drivers/firmware/efi/test/
6438
6439 EFI VARIABLE FILESYSTEM
6440 M:      Matthew Garrett <matthew.garrett@nebula.com>
6441 M:      Jeremy Kerr <jk@ozlabs.org>
6442 M:      Ard Biesheuvel <ardb@kernel.org>
6443 L:      linux-efi@vger.kernel.org
6444 S:      Maintained
6445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6446 F:      fs/efivarfs/
6447
6448 EFIFB FRAMEBUFFER DRIVER
6449 M:      Peter Jones <pjones@redhat.com>
6450 L:      linux-fbdev@vger.kernel.org
6451 S:      Maintained
6452 F:      drivers/video/fbdev/efifb.c
6453
6454 EFS FILESYSTEM
6455 S:      Orphan
6456 W:      http://aeschi.ch.eu.org/efs/
6457 F:      fs/efs/
6458
6459 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6460 M:      Douglas Miller <dougmill@linux.ibm.com>
6461 L:      netdev@vger.kernel.org
6462 S:      Maintained
6463 F:      drivers/net/ethernet/ibm/ehea/
6464
6465 EM28XX VIDEO4LINUX DRIVER
6466 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6467 L:      linux-media@vger.kernel.org
6468 S:      Maintained
6469 W:      https://linuxtv.org
6470 T:      git git://linuxtv.org/media_tree.git
6471 F:      Documentation/admin-guide/media/em28xx*
6472 F:      drivers/media/usb/em28xx/
6473
6474 EMBEDDED LINUX
6475 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6476 M:      Matt Mackall <mpm@selenic.com>
6477 M:      David Woodhouse <dwmw2@infradead.org>
6478 L:      linux-embedded@vger.kernel.org
6479 S:      Maintained
6480
6481 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6482 M:      Adrian Hunter <adrian.hunter@intel.com>
6483 M:      Ritesh Harjani <riteshh@codeaurora.org>
6484 M:      Asutosh Das <asutoshd@codeaurora.org>
6485 L:      linux-mmc@vger.kernel.org
6486 S:      Maintained
6487 F:      drivers/mmc/host/cqhci*
6488
6489 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6490 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6491 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6492 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6493 L:      linux-scsi@vger.kernel.org
6494 S:      Supported
6495 W:      http://www.broadcom.com
6496 F:      drivers/scsi/be2iscsi/
6497
6498 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6499 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6500 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6501 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6502 L:      netdev@vger.kernel.org
6503 S:      Supported
6504 W:      http://www.emulex.com
6505 F:      drivers/net/ethernet/emulex/benet/
6506
6507 EMULEX ONECONNECT ROCE DRIVER
6508 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6509 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6510 L:      linux-rdma@vger.kernel.org
6511 S:      Odd Fixes
6512 W:      http://www.broadcom.com
6513 F:      drivers/infiniband/hw/ocrdma/
6514 F:      include/uapi/rdma/ocrdma-abi.h
6515
6516 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6517 M:      James Smart <james.smart@broadcom.com>
6518 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6519 L:      linux-scsi@vger.kernel.org
6520 S:      Supported
6521 W:      http://www.broadcom.com
6522 F:      drivers/scsi/lpfc/
6523
6524 ENE CB710 FLASH CARD READER DRIVER
6525 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6526 S:      Maintained
6527 F:      drivers/misc/cb710/
6528 F:      drivers/mmc/host/cb710-mmc.*
6529 F:      include/linux/cb710.h
6530
6531 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6532 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6533 S:      Maintained
6534 F:      drivers/media/rc/ene_ir.*
6535
6536 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6537 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6538 L:      linuxppc-dev@lists.ozlabs.org
6539 S:      Maintained
6540 F:      drivers/tty/ehv_bytechan.c
6541
6542 EPSON S1D13XXX FRAMEBUFFER DRIVER
6543 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6544 S:      Maintained
6545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6546 F:      drivers/video/fbdev/s1d13xxxfb.c
6547 F:      include/video/s1d13xxxfb.h
6548
6549 EROFS FILE SYSTEM
6550 M:      Gao Xiang <xiang@kernel.org>
6551 M:      Chao Yu <yuchao0@huawei.com>
6552 L:      linux-erofs@lists.ozlabs.org
6553 S:      Maintained
6554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6555 F:      Documentation/filesystems/erofs.rst
6556 F:      fs/erofs/
6557 F:      include/trace/events/erofs.h
6558
6559 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6560 M:      Jeff Layton <jlayton@kernel.org>
6561 S:      Maintained
6562 F:      include/linux/errseq.h
6563 F:      lib/errseq.c
6564
6565 ET131X NETWORK DRIVER
6566 M:      Mark Einon <mark.einon@gmail.com>
6567 S:      Odd Fixes
6568 F:      drivers/net/ethernet/agere/
6569
6570 ETHERNET BRIDGE
6571 M:      Roopa Prabhu <roopa@nvidia.com>
6572 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6573 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6574 L:      netdev@vger.kernel.org
6575 S:      Maintained
6576 W:      http://www.linuxfoundation.org/en/Net:Bridge
6577 F:      include/linux/netfilter_bridge/
6578 F:      net/bridge/
6579
6580 ETHERNET PHY LIBRARY
6581 M:      Andrew Lunn <andrew@lunn.ch>
6582 M:      Heiner Kallweit <hkallweit1@gmail.com>
6583 R:      Russell King <linux@armlinux.org.uk>
6584 L:      netdev@vger.kernel.org
6585 S:      Maintained
6586 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6587 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6588 F:      Documentation/devicetree/bindings/net/mdio*
6589 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6590 F:      Documentation/networking/phy.rst
6591 F:      drivers/net/mdio/
6592 F:      drivers/net/mdio/of_mdio.c
6593 F:      drivers/net/pcs/
6594 F:      drivers/net/phy/
6595 F:      drivers/of/of_net.c
6596 F:      include/dt-bindings/net/qca-ar803x.h
6597 F:      include/linux/*mdio*.h
6598 F:      include/linux/mdio/*.h
6599 F:      include/linux/of_net.h
6600 F:      include/linux/phy.h
6601 F:      include/linux/phy_fixed.h
6602 F:      include/linux/platform_data/mdio-bcm-unimac.h
6603 F:      include/linux/platform_data/mdio-gpio.h
6604 F:      include/trace/events/mdio.h
6605 F:      include/uapi/linux/mdio.h
6606 F:      include/uapi/linux/mii.h
6607
6608 EXFAT FILE SYSTEM
6609 M:      Namjae Jeon <namjae.jeon@samsung.com>
6610 M:      Sungjong Seo <sj1557.seo@samsung.com>
6611 L:      linux-fsdevel@vger.kernel.org
6612 S:      Maintained
6613 F:      fs/exfat/
6614
6615 EXT2 FILE SYSTEM
6616 M:      Jan Kara <jack@suse.com>
6617 L:      linux-ext4@vger.kernel.org
6618 S:      Maintained
6619 F:      Documentation/filesystems/ext2.rst
6620 F:      fs/ext2/
6621 F:      include/linux/ext2*
6622
6623 EXT4 FILE SYSTEM
6624 M:      "Theodore Ts'o" <tytso@mit.edu>
6625 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6626 L:      linux-ext4@vger.kernel.org
6627 S:      Maintained
6628 W:      http://ext4.wiki.kernel.org
6629 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6631 F:      Documentation/filesystems/ext4/
6632 F:      fs/ext4/
6633 F:      include/trace/events/ext4.h
6634
6635 Extended Verification Module (EVM)
6636 M:      Mimi Zohar <zohar@linux.ibm.com>
6637 L:      linux-integrity@vger.kernel.org
6638 S:      Supported
6639 F:      security/integrity/evm/
6640
6641 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6642 M:      Ard Biesheuvel <ardb@kernel.org>
6643 L:      linux-efi@vger.kernel.org
6644 S:      Maintained
6645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6646 F:      Documentation/admin-guide/efi-stub.rst
6647 F:      arch/*/include/asm/efi.h
6648 F:      arch/*/kernel/efi.c
6649 F:      arch/arm/boot/compressed/efi-header.S
6650 F:      arch/arm64/kernel/efi-entry.S
6651 F:      arch/x86/platform/efi/
6652 F:      drivers/firmware/efi/
6653 F:      include/linux/efi*.h
6654
6655 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6656 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6657 M:      Chanwoo Choi <cw00.choi@samsung.com>
6658 L:      linux-kernel@vger.kernel.org
6659 S:      Maintained
6660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6661 F:      Documentation/devicetree/bindings/extcon/
6662 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6663 F:      drivers/extcon/
6664 F:      include/linux/extcon.h
6665 F:      include/linux/extcon/
6666
6667 EXTRA BOOT CONFIG
6668 M:      Masami Hiramatsu <mhiramat@kernel.org>
6669 S:      Maintained
6670 F:      Documentation/admin-guide/bootconfig.rst
6671 F:      fs/proc/bootconfig.c
6672 F:      include/linux/bootconfig.h
6673 F:      lib/bootconfig.c
6674 F:      tools/bootconfig/*
6675 F:      tools/bootconfig/scripts/*
6676
6677 EXYNOS DP DRIVER
6678 M:      Jingoo Han <jingoohan1@gmail.com>
6679 L:      dri-devel@lists.freedesktop.org
6680 S:      Maintained
6681 F:      drivers/gpu/drm/exynos/exynos_dp*
6682
6683 EXYNOS SYSMMU (IOMMU) driver
6684 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6685 L:      iommu@lists.linux-foundation.org
6686 S:      Maintained
6687 F:      drivers/iommu/exynos-iommu.c
6688
6689 F2FS FILE SYSTEM
6690 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6691 M:      Chao Yu <yuchao0@huawei.com>
6692 L:      linux-f2fs-devel@lists.sourceforge.net
6693 S:      Maintained
6694 W:      https://f2fs.wiki.kernel.org/
6695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6696 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6697 F:      Documentation/filesystems/f2fs.rst
6698 F:      fs/f2fs/
6699 F:      include/linux/f2fs_fs.h
6700 F:      include/trace/events/f2fs.h
6701 F:      include/uapi/linux/f2fs.h
6702
6703 F71805F HARDWARE MONITORING DRIVER
6704 M:      Jean Delvare <jdelvare@suse.com>
6705 L:      linux-hwmon@vger.kernel.org
6706 S:      Maintained
6707 F:      Documentation/hwmon/f71805f.rst
6708 F:      drivers/hwmon/f71805f.c
6709
6710 FADDR2LINE
6711 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6712 S:      Maintained
6713 F:      scripts/faddr2line
6714
6715 FAILOVER MODULE
6716 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6717 L:      netdev@vger.kernel.org
6718 S:      Supported
6719 F:      Documentation/networking/failover.rst
6720 F:      include/net/failover.h
6721 F:      net/core/failover.c
6722
6723 FANOTIFY
6724 M:      Jan Kara <jack@suse.cz>
6725 R:      Amir Goldstein <amir73il@gmail.com>
6726 L:      linux-fsdevel@vger.kernel.org
6727 S:      Maintained
6728 F:      fs/notify/fanotify/
6729 F:      include/linux/fanotify.h
6730 F:      include/uapi/linux/fanotify.h
6731
6732 FARSYNC SYNCHRONOUS DRIVER
6733 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6734 S:      Supported
6735 W:      http://www.farsite.co.uk/
6736 F:      drivers/net/wan/farsync.*
6737
6738 FAULT INJECTION SUPPORT
6739 M:      Akinobu Mita <akinobu.mita@gmail.com>
6740 S:      Supported
6741 F:      Documentation/fault-injection/
6742 F:      lib/fault-inject.c
6743
6744 FBTFT Framebuffer drivers
6745 L:      dri-devel@lists.freedesktop.org
6746 L:      linux-fbdev@vger.kernel.org
6747 S:      Orphan
6748 F:      drivers/staging/fbtft/
6749
6750 FC0011 TUNER DRIVER
6751 M:      Michael Buesch <m@bues.ch>
6752 L:      linux-media@vger.kernel.org
6753 S:      Maintained
6754 F:      drivers/media/tuners/fc0011.c
6755 F:      drivers/media/tuners/fc0011.h
6756
6757 FC2580 MEDIA DRIVER
6758 M:      Antti Palosaari <crope@iki.fi>
6759 L:      linux-media@vger.kernel.org
6760 S:      Maintained
6761 W:      https://linuxtv.org
6762 W:      http://palosaari.fi/linux/
6763 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6764 T:      git git://linuxtv.org/anttip/media_tree.git
6765 F:      drivers/media/tuners/fc2580*
6766
6767 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6768 M:      Hannes Reinecke <hare@suse.de>
6769 L:      linux-scsi@vger.kernel.org
6770 S:      Supported
6771 W:      www.Open-FCoE.org
6772 F:      drivers/scsi/fcoe/
6773 F:      drivers/scsi/libfc/
6774 F:      include/scsi/fc/
6775 F:      include/scsi/libfc.h
6776 F:      include/scsi/libfcoe.h
6777 F:      include/uapi/scsi/fc/
6778
6779 FILE LOCKING (flock() and fcntl()/lockf())
6780 M:      Jeff Layton <jlayton@kernel.org>
6781 M:      "J. Bruce Fields" <bfields@fieldses.org>
6782 L:      linux-fsdevel@vger.kernel.org
6783 S:      Maintained
6784 F:      fs/fcntl.c
6785 F:      fs/locks.c
6786 F:      include/linux/fcntl.h
6787 F:      include/uapi/linux/fcntl.h
6788
6789 FILESYSTEM DIRECT ACCESS (DAX)
6790 M:      Dan Williams <dan.j.williams@intel.com>
6791 R:      Matthew Wilcox <willy@infradead.org>
6792 R:      Jan Kara <jack@suse.cz>
6793 L:      linux-fsdevel@vger.kernel.org
6794 L:      linux-nvdimm@lists.01.org
6795 S:      Supported
6796 F:      fs/dax.c
6797 F:      include/linux/dax.h
6798 F:      include/trace/events/fs_dax.h
6799
6800 FILESYSTEMS (VFS and infrastructure)
6801 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6802 L:      linux-fsdevel@vger.kernel.org
6803 S:      Maintained
6804 F:      fs/*
6805 F:      include/linux/fs.h
6806 F:      include/linux/fs_types.h
6807 F:      include/uapi/linux/fs.h
6808 F:      include/uapi/linux/openat2.h
6809
6810 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6811 M:      Riku Voipio <riku.voipio@iki.fi>
6812 L:      linux-hwmon@vger.kernel.org
6813 S:      Maintained
6814 F:      drivers/hwmon/f75375s.c
6815 F:      include/linux/f75375s.h
6816
6817 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6818 M:      Clemens Ladisch <clemens@ladisch.de>
6819 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6820 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6821 S:      Maintained
6822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6823 F:      include/uapi/sound/firewire.h
6824 F:      sound/firewire/
6825
6826 FIREWIRE MEDIA DRIVERS (firedtv)
6827 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6828 L:      linux-media@vger.kernel.org
6829 L:      linux1394-devel@lists.sourceforge.net
6830 S:      Maintained
6831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6832 F:      drivers/media/firewire/
6833
6834 FIREWIRE SBP-2 TARGET
6835 M:      Chris Boot <bootc@bootc.net>
6836 L:      linux-scsi@vger.kernel.org
6837 L:      target-devel@vger.kernel.org
6838 L:      linux1394-devel@lists.sourceforge.net
6839 S:      Maintained
6840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6841 F:      drivers/target/sbp/
6842
6843 FIREWIRE SUBSYSTEM
6844 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6845 L:      linux1394-devel@lists.sourceforge.net
6846 S:      Maintained
6847 W:      http://ieee1394.wiki.kernel.org/
6848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6849 F:      drivers/firewire/
6850 F:      include/linux/firewire.h
6851 F:      include/uapi/linux/firewire*.h
6852 F:      tools/firewire/
6853
6854 FIRMWARE LOADER (request_firmware)
6855 M:      Luis Chamberlain <mcgrof@kernel.org>
6856 L:      linux-kernel@vger.kernel.org
6857 S:      Maintained
6858 F:      Documentation/firmware_class/
6859 F:      drivers/base/firmware_loader/
6860 F:      include/linux/firmware.h
6861
6862 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6863 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6864 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6865 S:      Maintained
6866 F:      drivers/block/rsxx/
6867
6868 FLEXTIMER FTM-QUADDEC DRIVER
6869 M:      Patrick Havelange <patrick.havelange@essensium.com>
6870 L:      linux-iio@vger.kernel.org
6871 S:      Maintained
6872 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6873 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6874 F:      drivers/counter/ftm-quaddec.c
6875
6876 FLOPPY DRIVER
6877 M:      Denis Efremov <efremov@linux.com>
6878 L:      linux-block@vger.kernel.org
6879 S:      Odd Fixes
6880 F:      drivers/block/floppy.c
6881
6882 FLYSKY FSIA6B RC RECEIVER
6883 M:      Markus Koch <markus@notsyncing.net>
6884 L:      linux-input@vger.kernel.org
6885 S:      Maintained
6886 F:      drivers/input/joystick/fsia6b.c
6887
6888 FORCEDETH GIGABIT ETHERNET DRIVER
6889 M:      Rain River <rain.1986.08.12@gmail.com>
6890 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6891 L:      netdev@vger.kernel.org
6892 S:      Maintained
6893 F:      drivers/net/ethernet/nvidia/*
6894
6895 FPGA DFL DRIVERS
6896 M:      Wu Hao <hao.wu@intel.com>
6897 R:      Tom Rix <trix@redhat.com>
6898 L:      linux-fpga@vger.kernel.org
6899 S:      Maintained
6900 F:      Documentation/ABI/testing/sysfs-bus-dfl
6901 F:      Documentation/fpga/dfl.rst
6902 F:      drivers/fpga/dfl*
6903 F:      include/uapi/linux/fpga-dfl.h
6904
6905 FPGA MANAGER FRAMEWORK
6906 M:      Moritz Fischer <mdf@kernel.org>
6907 R:      Tom Rix <trix@redhat.com>
6908 L:      linux-fpga@vger.kernel.org
6909 S:      Maintained
6910 W:      http://www.rocketboards.org
6911 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6913 F:      Documentation/devicetree/bindings/fpga/
6914 F:      Documentation/driver-api/fpga/
6915 F:      Documentation/fpga/
6916 F:      drivers/fpga/
6917 F:      include/linux/fpga/
6918
6919 FPU EMULATOR
6920 M:      Bill Metzenthen <billm@melbpc.org.au>
6921 S:      Maintained
6922 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6923 F:      arch/x86/math-emu/
6924
6925 FRAMEBUFFER LAYER
6926 L:      dri-devel@lists.freedesktop.org
6927 L:      linux-fbdev@vger.kernel.org
6928 S:      Orphan
6929 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6930 T:      git git://anongit.freedesktop.org/drm/drm-misc
6931 F:      Documentation/fb/
6932 F:      drivers/video/
6933 F:      include/linux/fb.h
6934 F:      include/uapi/linux/fb.h
6935 F:      include/uapi/video/
6936 F:      include/video/
6937
6938 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6939 M:      Horia Geantă <horia.geanta@nxp.com>
6940 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6941 L:      linux-crypto@vger.kernel.org
6942 S:      Maintained
6943 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6944 F:      drivers/crypto/caam/
6945
6946 FREESCALE COLDFIRE M5441X MMC DRIVER
6947 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6948 L:      linux-mmc@vger.kernel.org
6949 S:      Maintained
6950 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6951 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6952
6953 FREESCALE DIU FRAMEBUFFER DRIVER
6954 M:      Timur Tabi <timur@kernel.org>
6955 L:      linux-fbdev@vger.kernel.org
6956 S:      Maintained
6957 F:      drivers/video/fbdev/fsl-diu-fb.*
6958
6959 FREESCALE DMA DRIVER
6960 M:      Li Yang <leoyang.li@nxp.com>
6961 M:      Zhang Wei <zw@zh-kernel.org>
6962 L:      linuxppc-dev@lists.ozlabs.org
6963 S:      Maintained
6964 F:      drivers/dma/fsldma.*
6965
6966 FREESCALE DSPI DRIVER
6967 M:      Vladimir Oltean <olteanv@gmail.com>
6968 L:      linux-spi@vger.kernel.org
6969 S:      Maintained
6970 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
6971 F:      drivers/spi/spi-fsl-dspi.c
6972 F:      include/linux/spi/spi-fsl-dspi.h
6973
6974 FREESCALE ENETC ETHERNET DRIVERS
6975 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6976 L:      netdev@vger.kernel.org
6977 S:      Maintained
6978 F:      drivers/net/ethernet/freescale/enetc/
6979
6980 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6981 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6982 L:      netdev@vger.kernel.org
6983 S:      Maintained
6984 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6985 F:      drivers/net/ethernet/freescale/gianfar*
6986
6987 FREESCALE GPMI NAND DRIVER
6988 M:      Han Xu <han.xu@nxp.com>
6989 L:      linux-mtd@lists.infradead.org
6990 S:      Maintained
6991 F:      drivers/mtd/nand/raw/gpmi-nand/*
6992
6993 FREESCALE I2C CPM DRIVER
6994 M:      Jochen Friedrich <jochen@scram.de>
6995 L:      linuxppc-dev@lists.ozlabs.org
6996 L:      linux-i2c@vger.kernel.org
6997 S:      Maintained
6998 F:      drivers/i2c/busses/i2c-cpm.c
6999
7000 FREESCALE IMX / MXC FEC DRIVER
7001 M:      Fugang Duan <fugang.duan@nxp.com>
7002 L:      netdev@vger.kernel.org
7003 S:      Maintained
7004 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7005 F:      drivers/net/ethernet/freescale/fec.h
7006 F:      drivers/net/ethernet/freescale/fec_main.c
7007 F:      drivers/net/ethernet/freescale/fec_ptp.c
7008
7009 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7010 M:      Sascha Hauer <s.hauer@pengutronix.de>
7011 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7012 L:      linux-fbdev@vger.kernel.org
7013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7014 S:      Maintained
7015 F:      drivers/video/fbdev/imxfb.c
7016 F:      include/linux/platform_data/video-imxfb.h
7017
7018 FREESCALE IMX DDR PMU DRIVER
7019 M:      Frank Li <Frank.li@nxp.com>
7020 L:      linux-arm-kernel@lists.infradead.org
7021 S:      Maintained
7022 F:      Documentation/admin-guide/perf/imx-ddr.rst
7023 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7024 F:      drivers/perf/fsl_imx8_ddr_perf.c
7025
7026 FREESCALE IMX I2C DRIVER
7027 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7028 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7029 L:      linux-i2c@vger.kernel.org
7030 S:      Maintained
7031 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7032 F:      drivers/i2c/busses/i2c-imx.c
7033
7034 FREESCALE IMX LPI2C DRIVER
7035 M:      Dong Aisheng <aisheng.dong@nxp.com>
7036 L:      linux-i2c@vger.kernel.org
7037 L:      linux-imx@nxp.com
7038 S:      Maintained
7039 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7040 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7041
7042 FREESCALE QORIQ DPAA ETHERNET DRIVER
7043 M:      Madalin Bucur <madalin.bucur@nxp.com>
7044 L:      netdev@vger.kernel.org
7045 S:      Maintained
7046 F:      drivers/net/ethernet/freescale/dpaa
7047
7048 FREESCALE QORIQ DPAA FMAN DRIVER
7049 M:      Madalin Bucur <madalin.bucur@nxp.com>
7050 L:      netdev@vger.kernel.org
7051 S:      Maintained
7052 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7053 F:      drivers/net/ethernet/freescale/fman
7054
7055 FREESCALE QORIQ PTP CLOCK DRIVER
7056 M:      Yangbo Lu <yangbo.lu@nxp.com>
7057 L:      netdev@vger.kernel.org
7058 S:      Maintained
7059 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7060 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7061 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7062 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7063 F:      drivers/ptp/ptp_qoriq.c
7064 F:      drivers/ptp/ptp_qoriq_debugfs.c
7065 F:      include/linux/fsl/ptp_qoriq.h
7066
7067 FREESCALE QUAD SPI DRIVER
7068 M:      Han Xu <han.xu@nxp.com>
7069 L:      linux-spi@vger.kernel.org
7070 S:      Maintained
7071 F:      drivers/spi/spi-fsl-qspi.c
7072
7073 FREESCALE QUICC ENGINE LIBRARY
7074 M:      Qiang Zhao <qiang.zhao@nxp.com>
7075 L:      linuxppc-dev@lists.ozlabs.org
7076 S:      Maintained
7077 F:      drivers/soc/fsl/qe/
7078 F:      include/soc/fsl/*qe*.h
7079 F:      include/soc/fsl/*ucc*.h
7080
7081 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7082 M:      Li Yang <leoyang.li@nxp.com>
7083 L:      netdev@vger.kernel.org
7084 L:      linuxppc-dev@lists.ozlabs.org
7085 S:      Maintained
7086 F:      drivers/net/ethernet/freescale/ucc_geth*
7087
7088 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7089 M:      Zhao Qiang <qiang.zhao@nxp.com>
7090 L:      netdev@vger.kernel.org
7091 L:      linuxppc-dev@lists.ozlabs.org
7092 S:      Maintained
7093 F:      drivers/net/wan/fsl_ucc_hdlc*
7094
7095 FREESCALE QUICC ENGINE UCC UART DRIVER
7096 M:      Timur Tabi <timur@kernel.org>
7097 L:      linuxppc-dev@lists.ozlabs.org
7098 S:      Maintained
7099 F:      drivers/tty/serial/ucc_uart.c
7100
7101 FREESCALE SOC DRIVERS
7102 M:      Li Yang <leoyang.li@nxp.com>
7103 L:      linuxppc-dev@lists.ozlabs.org
7104 L:      linux-arm-kernel@lists.infradead.org
7105 S:      Maintained
7106 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7107 F:      Documentation/devicetree/bindings/soc/fsl/
7108 F:      drivers/soc/fsl/
7109 F:      include/linux/fsl/
7110
7111 FREESCALE SOC FS_ENET DRIVER
7112 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7113 L:      linuxppc-dev@lists.ozlabs.org
7114 L:      netdev@vger.kernel.org
7115 S:      Maintained
7116 F:      drivers/net/ethernet/freescale/fs_enet/
7117 F:      include/linux/fs_enet_pd.h
7118
7119 FREESCALE SOC SOUND DRIVERS
7120 M:      Timur Tabi <timur@kernel.org>
7121 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7122 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7123 R:      Fabio Estevam <festevam@gmail.com>
7124 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7125 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7126 L:      linuxppc-dev@lists.ozlabs.org
7127 S:      Maintained
7128 F:      sound/soc/fsl/fsl*
7129 F:      sound/soc/fsl/imx*
7130 F:      sound/soc/fsl/mpc8610_hpcd.c
7131
7132 FREESCALE USB PERIPHERAL DRIVERS
7133 M:      Li Yang <leoyang.li@nxp.com>
7134 L:      linux-usb@vger.kernel.org
7135 L:      linuxppc-dev@lists.ozlabs.org
7136 S:      Maintained
7137 F:      drivers/usb/gadget/udc/fsl*
7138
7139 FREESCALE USB PHY DRIVER
7140 M:      Ran Wang <ran.wang_1@nxp.com>
7141 L:      linux-usb@vger.kernel.org
7142 L:      linuxppc-dev@lists.ozlabs.org
7143 S:      Maintained
7144 F:      drivers/usb/phy/phy-fsl-usb*
7145
7146 FREEVXFS FILESYSTEM
7147 M:      Christoph Hellwig <hch@infradead.org>
7148 S:      Maintained
7149 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7150 F:      fs/freevxfs/
7151
7152 FREEZER
7153 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7154 M:      Pavel Machek <pavel@ucw.cz>
7155 L:      linux-pm@vger.kernel.org
7156 S:      Supported
7157 F:      Documentation/power/freezing-of-tasks.rst
7158 F:      include/linux/freezer.h
7159 F:      kernel/freezer.c
7160
7161 FRONTSWAP API
7162 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7163 L:      linux-kernel@vger.kernel.org
7164 S:      Maintained
7165 F:      include/linux/frontswap.h
7166 F:      mm/frontswap.c
7167
7168 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7169 M:      David Howells <dhowells@redhat.com>
7170 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7171 S:      Supported
7172 F:      Documentation/filesystems/caching/
7173 F:      fs/fscache/
7174 F:      include/linux/fscache*.h
7175
7176 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7177 M:      Theodore Y. Ts'o <tytso@mit.edu>
7178 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7179 M:      Eric Biggers <ebiggers@kernel.org>
7180 L:      linux-fscrypt@vger.kernel.org
7181 S:      Supported
7182 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7183 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7184 F:      Documentation/filesystems/fscrypt.rst
7185 F:      fs/crypto/
7186 F:      include/linux/fscrypt*.h
7187 F:      include/uapi/linux/fscrypt.h
7188
7189 FSI SUBSYSTEM
7190 M:      Jeremy Kerr <jk@ozlabs.org>
7191 M:      Joel Stanley <joel@jms.id.au>
7192 R:      Alistar Popple <alistair@popple.id.au>
7193 R:      Eddie James <eajames@linux.ibm.com>
7194 L:      linux-fsi@lists.ozlabs.org
7195 S:      Supported
7196 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7198 F:      drivers/fsi/
7199 F:      include/linux/fsi*.h
7200 F:      include/trace/events/fsi*.h
7201
7202 FSI-ATTACHED I2C DRIVER
7203 M:      Eddie James <eajames@linux.ibm.com>
7204 L:      linux-i2c@vger.kernel.org
7205 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7206 S:      Maintained
7207 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7208 F:      drivers/i2c/busses/i2c-fsi.c
7209
7210 FSI-ATTACHED SPI DRIVER
7211 M:      Eddie James <eajames@linux.ibm.com>
7212 L:      linux-spi@vger.kernel.org
7213 S:      Maintained
7214 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7215 F:      drivers/spi/spi-fsi.c
7216
7217 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7218 M:      Jan Kara <jack@suse.cz>
7219 R:      Amir Goldstein <amir73il@gmail.com>
7220 L:      linux-fsdevel@vger.kernel.org
7221 S:      Maintained
7222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7223 F:      fs/notify/
7224 F:      include/linux/fsnotify*.h
7225
7226 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7227 M:      Eric Biggers <ebiggers@kernel.org>
7228 M:      Theodore Y. Ts'o <tytso@mit.edu>
7229 L:      linux-fscrypt@vger.kernel.org
7230 S:      Supported
7231 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7232 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7233 F:      Documentation/filesystems/fsverity.rst
7234 F:      fs/verity/
7235 F:      include/linux/fsverity.h
7236 F:      include/uapi/linux/fsverity.h
7237
7238 FUJITSU LAPTOP EXTRAS
7239 M:      Jonathan Woithe <jwoithe@just42.net>
7240 L:      platform-driver-x86@vger.kernel.org
7241 S:      Maintained
7242 F:      drivers/platform/x86/fujitsu-laptop.c
7243
7244 FUJITSU M-5MO LS CAMERA ISP DRIVER
7245 M:      Kyungmin Park <kyungmin.park@samsung.com>
7246 M:      Heungjun Kim <riverful.kim@samsung.com>
7247 L:      linux-media@vger.kernel.org
7248 S:      Maintained
7249 F:      drivers/media/i2c/m5mols/
7250 F:      include/media/i2c/m5mols.h
7251
7252 FUJITSU TABLET EXTRAS
7253 M:      Robert Gerlach <khnz@gmx.de>
7254 L:      platform-driver-x86@vger.kernel.org
7255 S:      Maintained
7256 F:      drivers/platform/x86/fujitsu-tablet.c
7257
7258 FUSE: FILESYSTEM IN USERSPACE
7259 M:      Miklos Szeredi <miklos@szeredi.hu>
7260 L:      linux-fsdevel@vger.kernel.org
7261 S:      Maintained
7262 W:      https://github.com/libfuse/
7263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7264 F:      Documentation/filesystems/fuse.rst
7265 F:      fs/fuse/
7266 F:      include/uapi/linux/fuse.h
7267
7268 FUTEX SUBSYSTEM
7269 M:      Thomas Gleixner <tglx@linutronix.de>
7270 M:      Ingo Molnar <mingo@redhat.com>
7271 R:      Peter Zijlstra <peterz@infradead.org>
7272 R:      Darren Hart <dvhart@infradead.org>
7273 L:      linux-kernel@vger.kernel.org
7274 S:      Maintained
7275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7276 F:      Documentation/locking/*futex*
7277 F:      include/asm-generic/futex.h
7278 F:      include/linux/futex.h
7279 F:      include/uapi/linux/futex.h
7280 F:      kernel/futex.c
7281 F:      tools/perf/bench/futex*
7282 F:      tools/testing/selftests/futex/
7283
7284 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7285 M:      Tim Harvey <tharvey@gateworks.com>
7286 M:      Robert Jones <rjones@gateworks.com>
7287 S:      Maintained
7288 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7289 F:      drivers/mfd/gateworks-gsc.c
7290 F:      include/linux/mfd/gsc.h
7291 F:      Documentation/hwmon/gsc-hwmon.rst
7292 F:      drivers/hwmon/gsc-hwmon.c
7293 F:      include/linux/platform_data/gsc_hwmon.h
7294
7295 GASKET DRIVER FRAMEWORK
7296 M:      Rob Springer <rspringer@google.com>
7297 M:      Todd Poynor <toddpoynor@google.com>
7298 M:      Ben Chan <benchan@chromium.org>
7299 M:      Richard Yeh <rcy@google.com>
7300 S:      Maintained
7301 F:      drivers/staging/gasket/
7302
7303 GCC PLUGINS
7304 M:      Kees Cook <keescook@chromium.org>
7305 L:      linux-hardening@vger.kernel.org
7306 S:      Maintained
7307 F:      Documentation/kbuild/gcc-plugins.rst
7308 F:      scripts/Makefile.gcc-plugins
7309 F:      scripts/gcc-plugins/
7310
7311 GCOV BASED KERNEL PROFILING
7312 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7313 S:      Maintained
7314 F:      Documentation/dev-tools/gcov.rst
7315 F:      kernel/gcov/
7316
7317 GDB KERNEL DEBUGGING HELPER SCRIPTS
7318 M:      Jan Kiszka <jan.kiszka@siemens.com>
7319 M:      Kieran Bingham <kbingham@kernel.org>
7320 S:      Supported
7321 F:      scripts/gdb/
7322
7323 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7324 M:      Achim Leubner <achim_leubner@adaptec.com>
7325 L:      linux-scsi@vger.kernel.org
7326 S:      Supported
7327 W:      http://www.icp-vortex.com/
7328 F:      drivers/scsi/gdt*
7329
7330 GEMTEK FM RADIO RECEIVER DRIVER
7331 M:      Hans Verkuil <hverkuil@xs4all.nl>
7332 L:      linux-media@vger.kernel.org
7333 S:      Maintained
7334 W:      https://linuxtv.org
7335 T:      git git://linuxtv.org/media_tree.git
7336 F:      drivers/media/radio/radio-gemtek*
7337
7338 GENERIC ARCHITECTURE TOPOLOGY
7339 M:      Sudeep Holla <sudeep.holla@arm.com>
7340 L:      linux-kernel@vger.kernel.org
7341 S:      Maintained
7342 F:      drivers/base/arch_topology.c
7343 F:      include/linux/arch_topology.h
7344
7345 GENERIC ENTRY CODE
7346 M:      Thomas Gleixner <tglx@linutronix.de>
7347 M:      Peter Zijlstra <peterz@infradead.org>
7348 M:      Andy Lutomirski <luto@kernel.org>
7349 L:      linux-kernel@vger.kernel.org
7350 S:      Maintained
7351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7352 F:      include/linux/entry-common.h
7353 F:      include/linux/entry-kvm.h
7354 F:      kernel/entry/
7355
7356 GENERIC GPIO I2C DRIVER
7357 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7358 S:      Supported
7359 F:      drivers/i2c/busses/i2c-gpio.c
7360 F:      include/linux/platform_data/i2c-gpio.h
7361
7362 GENERIC GPIO I2C MULTIPLEXER DRIVER
7363 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7364 L:      linux-i2c@vger.kernel.org
7365 S:      Supported
7366 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7367 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7368 F:      include/linux/platform_data/i2c-mux-gpio.h
7369
7370 GENERIC HDLC (WAN) DRIVERS
7371 M:      Krzysztof Halasa <khc@pm.waw.pl>
7372 S:      Maintained
7373 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7374 F:      drivers/net/wan/c101.c
7375 F:      drivers/net/wan/hd6457*
7376 F:      drivers/net/wan/hdlc*
7377 F:      drivers/net/wan/n2.c
7378 F:      drivers/net/wan/pc300too.c
7379 F:      drivers/net/wan/pci200syn.c
7380 F:      drivers/net/wan/wanxl*
7381
7382 GENERIC INCLUDE/ASM HEADER FILES
7383 M:      Arnd Bergmann <arnd@arndb.de>
7384 L:      linux-arch@vger.kernel.org
7385 S:      Maintained
7386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7387 F:      include/asm-generic/
7388 F:      include/uapi/asm-generic/
7389
7390 GENERIC PHY FRAMEWORK
7391 M:      Kishon Vijay Abraham I <kishon@ti.com>
7392 M:      Vinod Koul <vkoul@kernel.org>
7393 L:      linux-kernel@vger.kernel.org
7394 S:      Supported
7395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7396 F:      Documentation/devicetree/bindings/phy/
7397 F:      drivers/phy/
7398 F:      include/linux/phy/
7399
7400 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7401 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7402 S:      Supported
7403 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7404
7405 GENERIC PM DOMAINS
7406 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7407 M:      Kevin Hilman <khilman@kernel.org>
7408 M:      Ulf Hansson <ulf.hansson@linaro.org>
7409 L:      linux-pm@vger.kernel.org
7410 S:      Supported
7411 F:      Documentation/devicetree/bindings/power/power?domain*
7412 F:      drivers/base/power/domain*.c
7413 F:      include/linux/pm_domain.h
7414
7415 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7416 M:      Eugen Hristev <eugen.hristev@microchip.com>
7417 L:      linux-input@vger.kernel.org
7418 S:      Maintained
7419 F:      drivers/input/touchscreen/resistive-adc-touch.c
7420
7421 GENERIC UIO DRIVER FOR PCI DEVICES
7422 M:      "Michael S. Tsirkin" <mst@redhat.com>
7423 L:      kvm@vger.kernel.org
7424 S:      Supported
7425 F:      drivers/uio/uio_pci_generic.c
7426
7427 GENERIC VDSO LIBRARY
7428 M:      Andy Lutomirski <luto@kernel.org>
7429 M:      Thomas Gleixner <tglx@linutronix.de>
7430 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7431 L:      linux-kernel@vger.kernel.org
7432 S:      Maintained
7433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7434 F:      include/asm-generic/vdso/vsyscall.h
7435 F:      include/vdso/
7436 F:      kernel/time/vsyscall.c
7437 F:      lib/vdso/
7438
7439 GENWQE (IBM Generic Workqueue Card)
7440 M:      Frank Haverkamp <haver@linux.ibm.com>
7441 S:      Supported
7442 F:      drivers/misc/genwqe/
7443
7444 GET_MAINTAINER SCRIPT
7445 M:      Joe Perches <joe@perches.com>
7446 S:      Maintained
7447 F:      scripts/get_maintainer.pl
7448
7449 GFS2 FILE SYSTEM
7450 M:      Bob Peterson <rpeterso@redhat.com>
7451 M:      Andreas Gruenbacher <agruenba@redhat.com>
7452 L:      cluster-devel@redhat.com
7453 S:      Supported
7454 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7456 F:      Documentation/filesystems/gfs2*
7457 F:      fs/gfs2/
7458 F:      include/uapi/linux/gfs2_ondisk.h
7459
7460 GNSS SUBSYSTEM
7461 M:      Johan Hovold <johan@kernel.org>
7462 S:      Maintained
7463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7464 F:      Documentation/ABI/testing/sysfs-class-gnss
7465 F:      Documentation/devicetree/bindings/gnss/
7466 F:      drivers/gnss/
7467 F:      include/linux/gnss.h
7468
7469 GO7007 MPEG CODEC
7470 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7471 L:      linux-media@vger.kernel.org
7472 S:      Maintained
7473 F:      drivers/media/usb/go7007/
7474
7475 GOODIX TOUCHSCREEN
7476 M:      Bastien Nocera <hadess@hadess.net>
7477 L:      linux-input@vger.kernel.org
7478 S:      Maintained
7479 F:      drivers/input/touchscreen/goodix.c
7480
7481 GOOGLE ETHERNET DRIVERS
7482 M:      Catherine Sullivan <csully@google.com>
7483 R:      Sagi Shahar <sagis@google.com>
7484 R:      Jon Olson <jonolson@google.com>
7485 L:      netdev@vger.kernel.org
7486 S:      Supported
7487 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7488 F:      drivers/net/ethernet/google
7489
7490 GPD POCKET FAN DRIVER
7491 M:      Hans de Goede <hdegoede@redhat.com>
7492 L:      platform-driver-x86@vger.kernel.org
7493 S:      Maintained
7494 F:      drivers/platform/x86/gpd-pocket-fan.c
7495
7496 GPIO ACPI SUPPORT
7497 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7498 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7499 L:      linux-gpio@vger.kernel.org
7500 L:      linux-acpi@vger.kernel.org
7501 S:      Maintained
7502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7503 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7504 F:      drivers/gpio/gpiolib-acpi.c
7505 F:      drivers/gpio/gpiolib-acpi.h
7506
7507 GPIO AGGREGATOR
7508 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7509 L:      linux-gpio@vger.kernel.org
7510 S:      Supported
7511 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7512 F:      drivers/gpio/gpio-aggregator.c
7513
7514 GPIO IR Transmitter
7515 M:      Sean Young <sean@mess.org>
7516 L:      linux-media@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/media/rc/gpio-ir-tx.c
7519
7520 GPIO MOCKUP DRIVER
7521 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7522 L:      linux-gpio@vger.kernel.org
7523 S:      Maintained
7524 F:      drivers/gpio/gpio-mockup.c
7525 F:      tools/testing/selftests/gpio/
7526
7527 GPIO REGMAP
7528 R:      Michael Walle <michael@walle.cc>
7529 S:      Maintained
7530 F:      drivers/gpio/gpio-regmap.c
7531 F:      include/linux/gpio/regmap.h
7532
7533 GPIO SUBSYSTEM
7534 M:      Linus Walleij <linus.walleij@linaro.org>
7535 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7536 L:      linux-gpio@vger.kernel.org
7537 S:      Maintained
7538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7539 F:      Documentation/ABI/obsolete/sysfs-gpio
7540 F:      Documentation/ABI/testing/gpio-cdev
7541 F:      Documentation/admin-guide/gpio/
7542 F:      Documentation/devicetree/bindings/gpio/
7543 F:      Documentation/driver-api/gpio/
7544 F:      drivers/gpio/
7545 F:      include/asm-generic/gpio.h
7546 F:      include/linux/gpio.h
7547 F:      include/linux/gpio/
7548 F:      include/linux/of_gpio.h
7549 F:      include/uapi/linux/gpio.h
7550 F:      tools/gpio/
7551
7552 GRE DEMULTIPLEXER DRIVER
7553 M:      Dmitry Kozlov <xeb@mail.ru>
7554 L:      netdev@vger.kernel.org
7555 S:      Maintained
7556 F:      include/net/gre.h
7557 F:      net/ipv4/gre_demux.c
7558 F:      net/ipv4/gre_offload.c
7559
7560 GRETH 10/100/1G Ethernet MAC device driver
7561 M:      Andreas Larsson <andreas@gaisler.com>
7562 L:      netdev@vger.kernel.org
7563 S:      Maintained
7564 F:      drivers/net/ethernet/aeroflex/
7565
7566 GREYBUS AUDIO PROTOCOLS DRIVERS
7567 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7568 M:      Mark Greer <mgreer@animalcreek.com>
7569 S:      Maintained
7570 F:      drivers/staging/greybus/audio_apbridgea.c
7571 F:      drivers/staging/greybus/audio_apbridgea.h
7572 F:      drivers/staging/greybus/audio_codec.c
7573 F:      drivers/staging/greybus/audio_codec.h
7574 F:      drivers/staging/greybus/audio_gb.c
7575 F:      drivers/staging/greybus/audio_manager.c
7576 F:      drivers/staging/greybus/audio_manager.h
7577 F:      drivers/staging/greybus/audio_manager_module.c
7578 F:      drivers/staging/greybus/audio_manager_private.h
7579 F:      drivers/staging/greybus/audio_manager_sysfs.c
7580 F:      drivers/staging/greybus/audio_module.c
7581 F:      drivers/staging/greybus/audio_topology.c
7582
7583 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7584 M:      Viresh Kumar <vireshk@kernel.org>
7585 S:      Maintained
7586 F:      drivers/staging/greybus/authentication.c
7587 F:      drivers/staging/greybus/bootrom.c
7588 F:      drivers/staging/greybus/firmware.h
7589 F:      drivers/staging/greybus/fw-core.c
7590 F:      drivers/staging/greybus/fw-download.c
7591 F:      drivers/staging/greybus/fw-management.c
7592 F:      drivers/staging/greybus/greybus_authentication.h
7593 F:      drivers/staging/greybus/greybus_firmware.h
7594 F:      drivers/staging/greybus/hid.c
7595 F:      drivers/staging/greybus/i2c.c
7596 F:      drivers/staging/greybus/spi.c
7597 F:      drivers/staging/greybus/spilib.c
7598 F:      drivers/staging/greybus/spilib.h
7599
7600 GREYBUS LOOPBACK DRIVER
7601 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7602 S:      Maintained
7603 F:      drivers/staging/greybus/loopback.c
7604
7605 GREYBUS PLATFORM DRIVERS
7606 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7607 S:      Maintained
7608 F:      drivers/staging/greybus/arche-apb-ctrl.c
7609 F:      drivers/staging/greybus/arche-platform.c
7610 F:      drivers/staging/greybus/arche_platform.h
7611
7612 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7613 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7614 S:      Maintained
7615 F:      drivers/staging/greybus/gpio.c
7616 F:      drivers/staging/greybus/light.c
7617 F:      drivers/staging/greybus/power_supply.c
7618 F:      drivers/staging/greybus/sdio.c
7619 F:      drivers/staging/greybus/spi.c
7620 F:      drivers/staging/greybus/spilib.c
7621
7622 GREYBUS SUBSYSTEM
7623 M:      Johan Hovold <johan@kernel.org>
7624 M:      Alex Elder <elder@kernel.org>
7625 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7626 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7627 S:      Maintained
7628 F:      drivers/greybus/
7629 F:      drivers/staging/greybus/
7630 F:      include/linux/greybus.h
7631 F:      include/linux/greybus/
7632
7633 GREYBUS UART PROTOCOLS DRIVERS
7634 M:      David Lin <dtwlin@gmail.com>
7635 S:      Maintained
7636 F:      drivers/staging/greybus/log.c
7637 F:      drivers/staging/greybus/uart.c
7638
7639 GS1662 VIDEO SERIALIZER
7640 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7641 L:      linux-media@vger.kernel.org
7642 S:      Maintained
7643 T:      git git://linuxtv.org/media_tree.git
7644 F:      drivers/media/spi/gs1662.c
7645
7646 GSPCA FINEPIX SUBDRIVER
7647 M:      Frank Zago <frank@zago.net>
7648 L:      linux-media@vger.kernel.org
7649 S:      Maintained
7650 T:      git git://linuxtv.org/media_tree.git
7651 F:      drivers/media/usb/gspca/finepix.c
7652
7653 GSPCA GL860 SUBDRIVER
7654 M:      Olivier Lorin <o.lorin@laposte.net>
7655 L:      linux-media@vger.kernel.org
7656 S:      Maintained
7657 T:      git git://linuxtv.org/media_tree.git
7658 F:      drivers/media/usb/gspca/gl860/
7659
7660 GSPCA M5602 SUBDRIVER
7661 M:      Erik Andren <erik.andren@gmail.com>
7662 L:      linux-media@vger.kernel.org
7663 S:      Maintained
7664 T:      git git://linuxtv.org/media_tree.git
7665 F:      drivers/media/usb/gspca/m5602/
7666
7667 GSPCA PAC207 SONIXB SUBDRIVER
7668 M:      Hans Verkuil <hverkuil@xs4all.nl>
7669 L:      linux-media@vger.kernel.org
7670 S:      Odd Fixes
7671 T:      git git://linuxtv.org/media_tree.git
7672 F:      drivers/media/usb/gspca/pac207.c
7673
7674 GSPCA SN9C20X SUBDRIVER
7675 M:      Brian Johnson <brijohn@gmail.com>
7676 L:      linux-media@vger.kernel.org
7677 S:      Maintained
7678 T:      git git://linuxtv.org/media_tree.git
7679 F:      drivers/media/usb/gspca/sn9c20x.c
7680
7681 GSPCA T613 SUBDRIVER
7682 M:      Leandro Costantino <lcostantino@gmail.com>
7683 L:      linux-media@vger.kernel.org
7684 S:      Maintained
7685 T:      git git://linuxtv.org/media_tree.git
7686 F:      drivers/media/usb/gspca/t613.c
7687
7688 GSPCA USB WEBCAM DRIVER
7689 M:      Hans Verkuil <hverkuil@xs4all.nl>
7690 L:      linux-media@vger.kernel.org
7691 S:      Odd Fixes
7692 T:      git git://linuxtv.org/media_tree.git
7693 F:      drivers/media/usb/gspca/
7694
7695 GTP (GPRS Tunneling Protocol)
7696 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7697 M:      Harald Welte <laforge@gnumonks.org>
7698 L:      osmocom-net-gprs@lists.osmocom.org
7699 S:      Maintained
7700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7701 F:      drivers/net/gtp.c
7702
7703 GUID PARTITION TABLE (GPT)
7704 M:      Davidlohr Bueso <dave@stgolabs.net>
7705 L:      linux-efi@vger.kernel.org
7706 S:      Maintained
7707 F:      block/partitions/efi.*
7708
7709 H8/300 ARCHITECTURE
7710 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7711 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7712 S:      Maintained
7713 W:      http://uclinux-h8.sourceforge.jp
7714 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7715 F:      arch/h8300/
7716 F:      drivers/clk/h8300/
7717 F:      drivers/clocksource/h8300_*.c
7718 F:      drivers/irqchip/irq-renesas-h8*.c
7719
7720 HABANALABS PCI DRIVER
7721 M:      Oded Gabbay <ogabbay@kernel.org>
7722 S:      Supported
7723 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7724 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7725 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7726 F:      drivers/misc/habanalabs/
7727 F:      include/uapi/misc/habanalabs.h
7728
7729 HACKRF MEDIA DRIVER
7730 M:      Antti Palosaari <crope@iki.fi>
7731 L:      linux-media@vger.kernel.org
7732 S:      Maintained
7733 W:      https://linuxtv.org
7734 W:      http://palosaari.fi/linux/
7735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7736 T:      git git://linuxtv.org/anttip/media_tree.git
7737 F:      drivers/media/usb/hackrf/
7738
7739 HANTRO VPU CODEC DRIVER
7740 M:      Ezequiel Garcia <ezequiel@collabora.com>
7741 M:      Philipp Zabel <p.zabel@pengutronix.de>
7742 L:      linux-media@vger.kernel.org
7743 L:      linux-rockchip@lists.infradead.org
7744 S:      Maintained
7745 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7746 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7747 F:      drivers/staging/media/hantro/
7748
7749 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7750 M:      Frank Seidel <frank@f-seidel.de>
7751 L:      platform-driver-x86@vger.kernel.org
7752 S:      Maintained
7753 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7754 F:      drivers/platform/x86/hdaps.c
7755
7756 HARDWARE MONITORING
7757 M:      Jean Delvare <jdelvare@suse.com>
7758 M:      Guenter Roeck <linux@roeck-us.net>
7759 L:      linux-hwmon@vger.kernel.org
7760 S:      Maintained
7761 W:      http://hwmon.wiki.kernel.org/
7762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7763 F:      Documentation/devicetree/bindings/hwmon/
7764 F:      Documentation/hwmon/
7765 F:      drivers/hwmon/
7766 F:      include/linux/hwmon*.h
7767 F:      include/trace/events/hwmon*.h
7768
7769 HARDWARE RANDOM NUMBER GENERATOR CORE
7770 M:      Matt Mackall <mpm@selenic.com>
7771 M:      Herbert Xu <herbert@gondor.apana.org.au>
7772 L:      linux-crypto@vger.kernel.org
7773 S:      Odd fixes
7774 F:      Documentation/admin-guide/hw_random.rst
7775 F:      Documentation/devicetree/bindings/rng/
7776 F:      drivers/char/hw_random/
7777 F:      include/linux/hw_random.h
7778
7779 HARDWARE SPINLOCK CORE
7780 M:      Ohad Ben-Cohen <ohad@wizery.com>
7781 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7782 R:      Baolin Wang <baolin.wang7@gmail.com>
7783 L:      linux-remoteproc@vger.kernel.org
7784 S:      Maintained
7785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7786 F:      Documentation/devicetree/bindings/hwlock/
7787 F:      Documentation/locking/hwspinlock.rst
7788 F:      drivers/hwspinlock/
7789 F:      include/linux/hwspinlock.h
7790
7791 HARDWARE TRACING FACILITIES
7792 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7793 S:      Maintained
7794 F:      drivers/hwtracing/
7795
7796 HARMONY SOUND DRIVER
7797 L:      linux-parisc@vger.kernel.org
7798 S:      Maintained
7799 F:      sound/parisc/harmony.*
7800
7801 HDPVR USB VIDEO ENCODER DRIVER
7802 M:      Hans Verkuil <hverkuil@xs4all.nl>
7803 L:      linux-media@vger.kernel.org
7804 S:      Odd Fixes
7805 W:      https://linuxtv.org
7806 T:      git git://linuxtv.org/media_tree.git
7807 F:      drivers/media/usb/hdpvr/
7808
7809 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7810 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7811 S:      Supported
7812 F:      Documentation/watchdog/hpwdt.rst
7813 F:      drivers/watchdog/hpwdt.c
7814
7815 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7816 M:      Don Brace <don.brace@microchip.com>
7817 L:      storagedev@microchip.com
7818 L:      linux-scsi@vger.kernel.org
7819 S:      Supported
7820 F:      Documentation/scsi/hpsa.rst
7821 F:      drivers/scsi/hpsa*.[ch]
7822 F:      include/linux/cciss*.h
7823 F:      include/uapi/linux/cciss*.h
7824
7825 HFI1 DRIVER
7826 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7827 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7828 L:      linux-rdma@vger.kernel.org
7829 S:      Supported
7830 F:      drivers/infiniband/hw/hfi1
7831
7832 HFS FILESYSTEM
7833 L:      linux-fsdevel@vger.kernel.org
7834 S:      Orphan
7835 F:      Documentation/filesystems/hfs.rst
7836 F:      fs/hfs/
7837
7838 HFSPLUS FILESYSTEM
7839 L:      linux-fsdevel@vger.kernel.org
7840 S:      Orphan
7841 F:      Documentation/filesystems/hfsplus.rst
7842 F:      fs/hfsplus/
7843
7844 HGA FRAMEBUFFER DRIVER
7845 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7846 L:      linux-nvidia@lists.surfsouth.com
7847 S:      Maintained
7848 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7849 F:      drivers/video/fbdev/hgafb.c
7850
7851 HIBERNATION (aka Software Suspend, aka swsusp)
7852 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7853 M:      Pavel Machek <pavel@ucw.cz>
7854 L:      linux-pm@vger.kernel.org
7855 S:      Supported
7856 B:      https://bugzilla.kernel.org
7857 F:      arch/*/include/asm/suspend*.h
7858 F:      arch/x86/power/
7859 F:      drivers/base/power/
7860 F:      include/linux/freezer.h
7861 F:      include/linux/pm.h
7862 F:      include/linux/suspend.h
7863 F:      kernel/power/
7864
7865 HID CORE LAYER
7866 M:      Jiri Kosina <jikos@kernel.org>
7867 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7868 L:      linux-input@vger.kernel.org
7869 S:      Maintained
7870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7871 F:      drivers/hid/
7872 F:      include/linux/hid*
7873 F:      include/uapi/linux/hid*
7874
7875 HID SENSOR HUB DRIVERS
7876 M:      Jiri Kosina <jikos@kernel.org>
7877 M:      Jonathan Cameron <jic23@kernel.org>
7878 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7879 L:      linux-input@vger.kernel.org
7880 L:      linux-iio@vger.kernel.org
7881 S:      Maintained
7882 F:      Documentation/hid/hid-sensor*
7883 F:      drivers/hid/hid-sensor-*
7884 F:      drivers/iio/*/hid-*
7885 F:      include/linux/hid-sensor-*
7886
7887 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7888 M:      Thomas Gleixner <tglx@linutronix.de>
7889 L:      linux-kernel@vger.kernel.org
7890 S:      Maintained
7891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7892 F:      Documentation/timers/
7893 F:      include/linux/clockchips.h
7894 F:      include/linux/hrtimer.h
7895 F:      kernel/time/clockevents.c
7896 F:      kernel/time/hrtimer.c
7897 F:      kernel/time/timer_*.c
7898
7899 HIGH-SPEED SCC DRIVER FOR AX.25
7900 L:      linux-hams@vger.kernel.org
7901 S:      Orphan
7902 F:      drivers/net/hamradio/dmascc.c
7903 F:      drivers/net/hamradio/scc.c
7904
7905 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7906 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7907 S:      Supported
7908 W:      http://www.highpoint-tech.com
7909 F:      Documentation/scsi/hptiop.rst
7910 F:      drivers/scsi/hptiop.c
7911
7912 HIPPI
7913 M:      Jes Sorensen <jes@trained-monkey.org>
7914 L:      linux-hippi@sunsite.dk
7915 S:      Maintained
7916 F:      drivers/net/hippi/
7917 F:      include/linux/hippidevice.h
7918 F:      include/uapi/linux/if_hippi.h
7919 F:      net/802/hippi.c
7920
7921 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
7922 M:      Kurt Kanzenbach <kurt@linutronix.de>
7923 L:      netdev@vger.kernel.org
7924 S:      Maintained
7925 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
7926 F:      drivers/net/dsa/hirschmann/*
7927 F:      include/linux/platform_data/hirschmann-hellcreek.h
7928 F:      net/dsa/tag_hellcreek.c
7929
7930 HISILICON DMA DRIVER
7931 M:      Zhou Wang <wangzhou1@hisilicon.com>
7932 L:      dmaengine@vger.kernel.org
7933 S:      Maintained
7934 F:      drivers/dma/hisi_dma.c
7935
7936 HISILICON GPIO DRIVER
7937 M:      Luo Jiaxing <luojiaxing@huawei.com>
7938 L:      linux-gpio@vger.kernel.org
7939 S:      Maintained
7940 F:      drivers/gpio/gpio-hisi.c
7941
7942 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7943 M:      Zaibo Xu <xuzaibo@huawei.com>
7944 L:      linux-crypto@vger.kernel.org
7945 S:      Maintained
7946 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7947 F:      drivers/crypto/hisilicon/hpre/hpre.h
7948 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7949 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7950
7951 HISILICON LPC BUS DRIVER
7952 M:      john.garry@huawei.com
7953 S:      Maintained
7954 W:      http://www.hisilicon.com
7955 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
7956 F:      drivers/bus/hisi_lpc.c
7957
7958 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7959 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7960 M:      Salil Mehta <salil.mehta@huawei.com>
7961 L:      netdev@vger.kernel.org
7962 S:      Maintained
7963 W:      http://www.hisilicon.com
7964 F:      drivers/net/ethernet/hisilicon/hns3/
7965
7966 HISILICON NETWORK SUBSYSTEM DRIVER
7967 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7968 M:      Salil Mehta <salil.mehta@huawei.com>
7969 L:      netdev@vger.kernel.org
7970 S:      Maintained
7971 W:      http://www.hisilicon.com
7972 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7973 F:      drivers/net/ethernet/hisilicon/
7974
7975 HIKEY960 ONBOARD USB GPIO HUB DRIVER
7976 M:      John Stultz <john.stultz@linaro.org>
7977 L:      linux-kernel@vger.kernel.org
7978 S:      Maintained
7979 F:      drivers/misc/hisi_hikey_usb.c
7980 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
7981
7982 HISILICON PMU DRIVER
7983 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7984 S:      Supported
7985 W:      http://www.hisilicon.com
7986 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7987 F:      drivers/perf/hisilicon
7988
7989 HISILICON QM AND ZIP Controller DRIVER
7990 M:      Zhou Wang <wangzhou1@hisilicon.com>
7991 L:      linux-crypto@vger.kernel.org
7992 S:      Maintained
7993 F:      Documentation/ABI/testing/debugfs-hisi-zip
7994 F:      drivers/crypto/hisilicon/qm.c
7995 F:      drivers/crypto/hisilicon/qm.h
7996 F:      drivers/crypto/hisilicon/sgl.c
7997 F:      drivers/crypto/hisilicon/zip/
7998
7999 HISILICON ROCE DRIVER
8000 M:      Lijun Ou <oulijun@huawei.com>
8001 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
8002 M:      Weihang Li <liweihang@huawei.com>
8003 L:      linux-rdma@vger.kernel.org
8004 S:      Maintained
8005 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8006 F:      drivers/infiniband/hw/hns/
8007
8008 HISILICON SAS Controller
8009 M:      John Garry <john.garry@huawei.com>
8010 S:      Supported
8011 W:      http://www.hisilicon.com
8012 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8013 F:      drivers/scsi/hisi_sas/
8014
8015 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8016 M:      Zaibo Xu <xuzaibo@huawei.com>
8017 L:      linux-crypto@vger.kernel.org
8018 S:      Maintained
8019 F:      Documentation/ABI/testing/debugfs-hisi-sec
8020 F:      drivers/crypto/hisilicon/sec2/sec.h
8021 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8022 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8023 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8024
8025 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8026 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8027 L:      devel@driverdev.osuosl.org
8028 S:      Maintained
8029 F:      drivers/staging/hikey9xx/
8030
8031 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8032 M:      Zaibo Xu <xuzaibo@huawei.com>
8033 S:      Maintained
8034 F:      drivers/crypto/hisilicon/trng/trng.c
8035
8036 HISILICON V3XX SPI NOR FLASH Controller Driver
8037 M:      John Garry <john.garry@huawei.com>
8038 S:      Maintained
8039 W:      http://www.hisilicon.com
8040 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8041
8042 HMM - Heterogeneous Memory Management
8043 M:      Jérôme Glisse <jglisse@redhat.com>
8044 L:      linux-mm@kvack.org
8045 S:      Maintained
8046 F:      Documentation/vm/hmm.rst
8047 F:      include/linux/hmm*
8048 F:      lib/test_hmm*
8049 F:      mm/hmm*
8050 F:      tools/testing/selftests/vm/*hmm*
8051
8052 HOST AP DRIVER
8053 M:      Jouni Malinen <j@w1.fi>
8054 L:      linux-wireless@vger.kernel.org
8055 S:      Obsolete
8056 W:      http://w1.fi/hostap-driver.html
8057 F:      drivers/net/wireless/intersil/hostap/
8058
8059 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8060 L:      platform-driver-x86@vger.kernel.org
8061 S:      Orphan
8062 F:      drivers/platform/x86/tc1100-wmi.c
8063
8064 HPET:   High Precision Event Timers driver
8065 M:      Clemens Ladisch <clemens@ladisch.de>
8066 S:      Maintained
8067 F:      Documentation/timers/hpet.rst
8068 F:      drivers/char/hpet.c
8069 F:      include/linux/hpet.h
8070 F:      include/uapi/linux/hpet.h
8071
8072 HPET:   x86
8073 S:      Orphan
8074 F:      arch/x86/include/asm/hpet.h
8075 F:      arch/x86/kernel/hpet.c
8076
8077 HPFS FILESYSTEM
8078 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8079 S:      Maintained
8080 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8081 F:      fs/hpfs/
8082
8083 HSI SUBSYSTEM
8084 M:      Sebastian Reichel <sre@kernel.org>
8085 S:      Maintained
8086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8087 F:      Documentation/ABI/testing/sysfs-bus-hsi
8088 F:      Documentation/driver-api/hsi.rst
8089 F:      drivers/hsi/
8090 F:      include/linux/hsi/
8091 F:      include/uapi/linux/hsi/
8092
8093 HSO 3G MODEM DRIVER
8094 L:      linux-usb@vger.kernel.org
8095 S:      Orphan
8096 F:      drivers/net/usb/hso.c
8097
8098 HSR NETWORK PROTOCOL
8099 L:      netdev@vger.kernel.org
8100 S:      Orphan
8101 F:      net/hsr/
8102
8103 HT16K33 LED CONTROLLER DRIVER
8104 M:      Robin van der Gracht <robin@protonic.nl>
8105 S:      Maintained
8106 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8107 F:      drivers/auxdisplay/ht16k33.c
8108
8109 HTCPEN TOUCHSCREEN DRIVER
8110 M:      Pau Oliva Fora <pof@eslack.org>
8111 L:      linux-input@vger.kernel.org
8112 S:      Maintained
8113 F:      drivers/input/touchscreen/htcpen.c
8114
8115 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8116 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8117 L:      linux-iio@vger.kernel.org
8118 S:      Maintained
8119 W:      http://www.st.com/
8120 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8121 F:      drivers/iio/humidity/hts221*
8122
8123 HUAWEI ETHERNET DRIVER
8124 M:      Bin Luo <luobin9@huawei.com>
8125 L:      netdev@vger.kernel.org
8126 S:      Supported
8127 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8128 F:      drivers/net/ethernet/huawei/hinic/
8129
8130 HUGETLB FILESYSTEM
8131 M:      Mike Kravetz <mike.kravetz@oracle.com>
8132 L:      linux-mm@kvack.org
8133 S:      Maintained
8134 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8135 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8136 F:      Documentation/vm/hugetlbfs_reserv.rst
8137 F:      fs/hugetlbfs/
8138 F:      include/linux/hugetlb.h
8139 F:      mm/hugetlb.c
8140
8141 HVA ST MEDIA DRIVER
8142 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8143 L:      linux-media@vger.kernel.org
8144 S:      Supported
8145 W:      https://linuxtv.org
8146 T:      git git://linuxtv.org/media_tree.git
8147 F:      drivers/media/platform/sti/hva
8148
8149 HWPOISON MEMORY FAILURE HANDLING
8150 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8151 L:      linux-mm@kvack.org
8152 S:      Maintained
8153 F:      mm/hwpoison-inject.c
8154 F:      mm/memory-failure.c
8155
8156 HYGON PROCESSOR SUPPORT
8157 M:      Pu Wen <puwen@hygon.cn>
8158 L:      linux-kernel@vger.kernel.org
8159 S:      Maintained
8160 F:      arch/x86/kernel/cpu/hygon.c
8161
8162 HYNIX HI556 SENSOR DRIVER
8163 M:      Shawn Tu <shawnx.tu@intel.com>
8164 L:      linux-media@vger.kernel.org
8165 S:      Maintained
8166 T:      git git://linuxtv.org/media_tree.git
8167 F:      drivers/media/i2c/hi556.c
8168
8169 Hyper-V CORE AND DRIVERS
8170 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8171 M:      Haiyang Zhang <haiyangz@microsoft.com>
8172 M:      Stephen Hemminger <sthemmin@microsoft.com>
8173 M:      Wei Liu <wei.liu@kernel.org>
8174 L:      linux-hyperv@vger.kernel.org
8175 S:      Supported
8176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8177 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8178 F:      Documentation/ABI/testing/debugfs-hyperv
8179 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8180 F:      arch/x86/hyperv
8181 F:      arch/x86/include/asm/hyperv-tlfs.h
8182 F:      arch/x86/include/asm/mshyperv.h
8183 F:      arch/x86/include/asm/trace/hyperv.h
8184 F:      arch/x86/kernel/cpu/mshyperv.c
8185 F:      drivers/clocksource/hyperv_timer.c
8186 F:      drivers/hid/hid-hyperv.c
8187 F:      drivers/hv/
8188 F:      drivers/input/serio/hyperv-keyboard.c
8189 F:      drivers/iommu/hyperv-iommu.c
8190 F:      drivers/net/hyperv/
8191 F:      drivers/pci/controller/pci-hyperv-intf.c
8192 F:      drivers/pci/controller/pci-hyperv.c
8193 F:      drivers/scsi/storvsc_drv.c
8194 F:      drivers/uio/uio_hv_generic.c
8195 F:      drivers/video/fbdev/hyperv_fb.c
8196 F:      include/asm-generic/hyperv-tlfs.h
8197 F:      include/asm-generic/mshyperv.h
8198 F:      include/clocksource/hyperv_timer.h
8199 F:      include/linux/hyperv.h
8200 F:      include/uapi/linux/hyperv.h
8201 F:      net/vmw_vsock/hyperv_transport.c
8202 F:      tools/hv/
8203
8204 HYPERBUS SUPPORT
8205 M:      Vignesh Raghavendra <vigneshr@ti.com>
8206 L:      linux-mtd@lists.infradead.org
8207 S:      Supported
8208 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8209 C:      irc://irc.oftc.net/mtd
8210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8211 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8212 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8213 F:      drivers/mtd/hyperbus/
8214 F:      include/linux/mtd/hyperbus.h
8215
8216 HYPERVISOR VIRTUAL CONSOLE DRIVER
8217 L:      linuxppc-dev@lists.ozlabs.org
8218 S:      Odd Fixes
8219 F:      drivers/tty/hvc/
8220
8221 I2C ACPI SUPPORT
8222 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8223 L:      linux-i2c@vger.kernel.org
8224 L:      linux-acpi@vger.kernel.org
8225 S:      Maintained
8226 F:      drivers/i2c/i2c-core-acpi.c
8227
8228 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8229 M:      Ajay Gupta <ajayg@nvidia.com>
8230 L:      linux-i2c@vger.kernel.org
8231 S:      Maintained
8232 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8233 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8234
8235 I2C MUXES
8236 M:      Peter Rosin <peda@axentia.se>
8237 L:      linux-i2c@vger.kernel.org
8238 S:      Maintained
8239 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8240 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8241 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8242 F:      Documentation/i2c/i2c-topology.rst
8243 F:      Documentation/i2c/muxes/
8244 F:      drivers/i2c/i2c-mux.c
8245 F:      drivers/i2c/muxes/
8246 F:      include/linux/i2c-mux.h
8247
8248 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8249 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8250 L:      linux-i2c@vger.kernel.org
8251 S:      Maintained
8252 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8253 F:      drivers/i2c/busses/i2c-mv64xxx.c
8254
8255 I2C OVER PARALLEL PORT
8256 M:      Jean Delvare <jdelvare@suse.com>
8257 L:      linux-i2c@vger.kernel.org
8258 S:      Maintained
8259 F:      Documentation/i2c/busses/i2c-parport.rst
8260 F:      drivers/i2c/busses/i2c-parport.c
8261
8262 I2C SUBSYSTEM
8263 M:      Wolfram Sang <wsa@kernel.org>
8264 L:      linux-i2c@vger.kernel.org
8265 S:      Maintained
8266 W:      https://i2c.wiki.kernel.org/
8267 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8269 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8270 F:      Documentation/i2c/
8271 F:      drivers/i2c/*
8272 F:      include/linux/i2c-dev.h
8273 F:      include/linux/i2c-smbus.h
8274 F:      include/linux/i2c.h
8275 F:      include/uapi/linux/i2c-*.h
8276 F:      include/uapi/linux/i2c.h
8277
8278 I2C SUBSYSTEM HOST DRIVERS
8279 L:      linux-i2c@vger.kernel.org
8280 S:      Odd Fixes
8281 W:      https://i2c.wiki.kernel.org/
8282 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8284 F:      Documentation/devicetree/bindings/i2c/
8285 F:      drivers/i2c/algos/
8286 F:      drivers/i2c/busses/
8287
8288 I2C-TAOS-EVM DRIVER
8289 M:      Jean Delvare <jdelvare@suse.com>
8290 L:      linux-i2c@vger.kernel.org
8291 S:      Maintained
8292 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8293 F:      drivers/i2c/busses/i2c-taos-evm.c
8294
8295 I2C-TINY-USB DRIVER
8296 M:      Till Harbaum <till@harbaum.org>
8297 L:      linux-i2c@vger.kernel.org
8298 S:      Maintained
8299 W:      http://www.harbaum.org/till/i2c_tiny_usb
8300 F:      drivers/i2c/busses/i2c-tiny-usb.c
8301
8302 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8303 M:      Jean Delvare <jdelvare@suse.com>
8304 L:      linux-i2c@vger.kernel.org
8305 S:      Maintained
8306 F:      Documentation/i2c/busses/i2c-ali1535.rst
8307 F:      Documentation/i2c/busses/i2c-ali1563.rst
8308 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8309 F:      Documentation/i2c/busses/i2c-amd756.rst
8310 F:      Documentation/i2c/busses/i2c-amd8111.rst
8311 F:      Documentation/i2c/busses/i2c-i801.rst
8312 F:      Documentation/i2c/busses/i2c-nforce2.rst
8313 F:      Documentation/i2c/busses/i2c-piix4.rst
8314 F:      Documentation/i2c/busses/i2c-sis5595.rst
8315 F:      Documentation/i2c/busses/i2c-sis630.rst
8316 F:      Documentation/i2c/busses/i2c-sis96x.rst
8317 F:      Documentation/i2c/busses/i2c-via.rst
8318 F:      Documentation/i2c/busses/i2c-viapro.rst
8319 F:      drivers/i2c/busses/i2c-ali1535.c
8320 F:      drivers/i2c/busses/i2c-ali1563.c
8321 F:      drivers/i2c/busses/i2c-ali15x3.c
8322 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8323 F:      drivers/i2c/busses/i2c-amd756.c
8324 F:      drivers/i2c/busses/i2c-amd8111.c
8325 F:      drivers/i2c/busses/i2c-i801.c
8326 F:      drivers/i2c/busses/i2c-isch.c
8327 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8328 F:      drivers/i2c/busses/i2c-nforce2.c
8329 F:      drivers/i2c/busses/i2c-piix4.c
8330 F:      drivers/i2c/busses/i2c-sis5595.c
8331 F:      drivers/i2c/busses/i2c-sis630.c
8332 F:      drivers/i2c/busses/i2c-sis96x.c
8333 F:      drivers/i2c/busses/i2c-via.c
8334 F:      drivers/i2c/busses/i2c-viapro.c
8335
8336 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8337 M:      Hans de Goede <hdegoede@redhat.com>
8338 L:      linux-i2c@vger.kernel.org
8339 S:      Maintained
8340 F:      drivers/i2c/busses/i2c-cht-wc.c
8341
8342 I2C/SMBUS ISMT DRIVER
8343 M:      Seth Heasley <seth.heasley@intel.com>
8344 M:      Neil Horman <nhorman@tuxdriver.com>
8345 L:      linux-i2c@vger.kernel.org
8346 F:      Documentation/i2c/busses/i2c-ismt.rst
8347 F:      drivers/i2c/busses/i2c-ismt.c
8348
8349 I2C/SMBUS STUB DRIVER
8350 M:      Jean Delvare <jdelvare@suse.com>
8351 L:      linux-i2c@vger.kernel.org
8352 S:      Maintained
8353 F:      drivers/i2c/i2c-stub.c
8354
8355 I3C DRIVER FOR CADENCE I3C MASTER IP
8356 M:      Przemysław Gaj <pgaj@cadence.com>
8357 S:      Maintained
8358 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8359 F:      drivers/i3c/master/i3c-master-cdns.c
8360
8361 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8362 M:      Vitor Soares <vitor.soares@synopsys.com>
8363 S:      Maintained
8364 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8365 F:      drivers/i3c/master/dw*
8366
8367 I3C SUBSYSTEM
8368 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8369 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8370 S:      Maintained
8371 C:      irc://chat.freenode.net/linux-i3c
8372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8373 F:      Documentation/ABI/testing/sysfs-bus-i3c
8374 F:      Documentation/devicetree/bindings/i3c/
8375 F:      Documentation/driver-api/i3c
8376 F:      drivers/i3c/
8377 F:      include/linux/i3c/
8378
8379 IA64 (Itanium) PLATFORM
8380 L:      linux-ia64@vger.kernel.org
8381 S:      Orphan
8382 F:      Documentation/ia64/
8383 F:      arch/ia64/
8384
8385 IBM Power 842 compression accelerator
8386 M:      Haren Myneni <haren@us.ibm.com>
8387 S:      Supported
8388 F:      crypto/842.c
8389 F:      drivers/crypto/nx/Kconfig
8390 F:      drivers/crypto/nx/Makefile
8391 F:      drivers/crypto/nx/nx-842*
8392 F:      include/linux/sw842.h
8393 F:      lib/842/
8394
8395 IBM Power in-Nest Crypto Acceleration
8396 M:      Breno Leitão <leitao@debian.org>
8397 M:      Nayna Jain <nayna@linux.ibm.com>
8398 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8399 L:      linux-crypto@vger.kernel.org
8400 S:      Supported
8401 F:      drivers/crypto/nx/Kconfig
8402 F:      drivers/crypto/nx/Makefile
8403 F:      drivers/crypto/nx/nx-aes*
8404 F:      drivers/crypto/nx/nx-sha*
8405 F:      drivers/crypto/nx/nx.*
8406 F:      drivers/crypto/nx/nx_csbcpb.h
8407 F:      drivers/crypto/nx/nx_debugfs.c
8408
8409 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8410 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8411 L:      linux-pci@vger.kernel.org
8412 L:      linuxppc-dev@lists.ozlabs.org
8413 S:      Supported
8414 F:      drivers/pci/hotplug/rpadlpar*
8415
8416 IBM Power Linux RAID adapter
8417 M:      Brian King <brking@us.ibm.com>
8418 S:      Supported
8419 F:      drivers/scsi/ipr.*
8420
8421 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8422 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8423 L:      linux-pci@vger.kernel.org
8424 L:      linuxppc-dev@lists.ozlabs.org
8425 S:      Supported
8426 F:      drivers/pci/hotplug/rpaphp*
8427
8428 IBM Power SRIOV Virtual NIC Device Driver
8429 M:      Dany Madden <drt@linux.ibm.com>
8430 M:      Lijun Pan <ljp@linux.ibm.com>
8431 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8432 L:      netdev@vger.kernel.org
8433 S:      Supported
8434 F:      drivers/net/ethernet/ibm/ibmvnic.*
8435
8436 IBM Power Virtual Accelerator Switchboard
8437 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8438 L:      linuxppc-dev@lists.ozlabs.org
8439 S:      Supported
8440 F:      arch/powerpc/include/asm/vas.h
8441 F:      arch/powerpc/platforms/powernv/copy-paste.h
8442 F:      arch/powerpc/platforms/powernv/vas*
8443
8444 IBM Power Virtual Ethernet Device Driver
8445 M:      Cristobal Forno <cforno12@linux.ibm.com>
8446 L:      netdev@vger.kernel.org
8447 S:      Supported
8448 F:      drivers/net/ethernet/ibm/ibmveth.*
8449
8450 IBM Power Virtual FC Device Drivers
8451 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8452 L:      linux-scsi@vger.kernel.org
8453 S:      Supported
8454 F:      drivers/scsi/ibmvscsi/ibmvfc*
8455
8456 IBM Power Virtual Management Channel Driver
8457 M:      Steven Royer <seroyer@linux.ibm.com>
8458 S:      Supported
8459 F:      drivers/misc/ibmvmc.*
8460
8461 IBM Power Virtual SCSI Device Drivers
8462 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8463 L:      linux-scsi@vger.kernel.org
8464 S:      Supported
8465 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8466 F:      include/scsi/viosrp.h
8467
8468 IBM Power Virtual SCSI Device Target Driver
8469 M:      Michael Cyr <mikecyr@linux.ibm.com>
8470 L:      linux-scsi@vger.kernel.org
8471 L:      target-devel@vger.kernel.org
8472 S:      Supported
8473 F:      drivers/scsi/ibmvscsi_tgt/
8474
8475 IBM Power VMX Cryptographic instructions
8476 M:      Breno Leitão <leitao@debian.org>
8477 M:      Nayna Jain <nayna@linux.ibm.com>
8478 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8479 L:      linux-crypto@vger.kernel.org
8480 S:      Supported
8481 F:      drivers/crypto/vmx/Kconfig
8482 F:      drivers/crypto/vmx/Makefile
8483 F:      drivers/crypto/vmx/aes*
8484 F:      drivers/crypto/vmx/ghash*
8485 F:      drivers/crypto/vmx/ppc-xlate.pl
8486 F:      drivers/crypto/vmx/vmx.c
8487
8488 IBM ServeRAID RAID DRIVER
8489 S:      Orphan
8490 F:      drivers/scsi/ips.*
8491
8492 ICH LPC AND GPIO DRIVER
8493 M:      Peter Tyser <ptyser@xes-inc.com>
8494 S:      Maintained
8495 F:      drivers/gpio/gpio-ich.c
8496 F:      drivers/mfd/lpc_ich.c
8497
8498 ICY I2C DRIVER
8499 M:      Max Staudt <max@enpas.org>
8500 L:      linux-i2c@vger.kernel.org
8501 S:      Maintained
8502 F:      drivers/i2c/busses/i2c-icy.c
8503
8504 IDE SUBSYSTEM
8505 M:      "David S. Miller" <davem@davemloft.net>
8506 L:      linux-ide@vger.kernel.org
8507 S:      Maintained
8508 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8510 F:      Documentation/ide/
8511 F:      drivers/ide/
8512 F:      include/linux/ide.h
8513
8514 IDE/ATAPI DRIVERS
8515 M:      Borislav Petkov <bp@alien8.de>
8516 L:      linux-ide@vger.kernel.org
8517 S:      Maintained
8518 F:      Documentation/cdrom/ide-cd.rst
8519 F:      drivers/ide/ide-cd*
8520
8521 IDEAPAD LAPTOP EXTRAS DRIVER
8522 M:      Ike Panhc <ike.pan@canonical.com>
8523 L:      platform-driver-x86@vger.kernel.org
8524 S:      Maintained
8525 W:      http://launchpad.net/ideapad-laptop
8526 F:      drivers/platform/x86/ideapad-laptop.c
8527
8528 IDEAPAD LAPTOP SLIDEBAR DRIVER
8529 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8530 L:      linux-input@vger.kernel.org
8531 S:      Maintained
8532 W:      https://github.com/o2genum/ideapad-slidebar
8533 F:      drivers/input/misc/ideapad_slidebar.c
8534
8535 IDT VersaClock 5 CLOCK DRIVER
8536 M:      Luca Ceresoli <luca@lucaceresoli.net>
8537 S:      Maintained
8538 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8539 F:      drivers/clk/clk-versaclock5.c
8540
8541 IEEE 802.15.4 SUBSYSTEM
8542 M:      Alexander Aring <alex.aring@gmail.com>
8543 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8544 L:      linux-wpan@vger.kernel.org
8545 S:      Maintained
8546 W:      https://linux-wpan.org/
8547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8549 F:      Documentation/networking/ieee802154.rst
8550 F:      drivers/net/ieee802154/
8551 F:      include/linux/ieee802154.h
8552 F:      include/linux/nl802154.h
8553 F:      include/net/af_ieee802154.h
8554 F:      include/net/cfg802154.h
8555 F:      include/net/ieee802154_netdev.h
8556 F:      include/net/mac802154.h
8557 F:      include/net/nl802154.h
8558 F:      net/ieee802154/
8559 F:      net/mac802154/
8560
8561 IFE PROTOCOL
8562 M:      Yotam Gigi <yotam.gi@gmail.com>
8563 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8564 F:      include/net/ife.h
8565 F:      include/uapi/linux/ife.h
8566 F:      net/ife
8567
8568 IGORPLUG-USB IR RECEIVER
8569 M:      Sean Young <sean@mess.org>
8570 L:      linux-media@vger.kernel.org
8571 S:      Maintained
8572 F:      drivers/media/rc/igorplugusb.c
8573
8574 IGUANAWORKS USB IR TRANSCEIVER
8575 M:      Sean Young <sean@mess.org>
8576 L:      linux-media@vger.kernel.org
8577 S:      Maintained
8578 F:      drivers/media/rc/iguanair.c
8579
8580 IIO DIGITAL POTENTIOMETER DAC
8581 M:      Peter Rosin <peda@axentia.se>
8582 L:      linux-iio@vger.kernel.org
8583 S:      Maintained
8584 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8585 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8586 F:      drivers/iio/dac/dpot-dac.c
8587
8588 IIO ENVELOPE DETECTOR
8589 M:      Peter Rosin <peda@axentia.se>
8590 L:      linux-iio@vger.kernel.org
8591 S:      Maintained
8592 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8593 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8594 F:      drivers/iio/adc/envelope-detector.c
8595
8596 IIO MULTIPLEXER
8597 M:      Peter Rosin <peda@axentia.se>
8598 L:      linux-iio@vger.kernel.org
8599 S:      Maintained
8600 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8601 F:      drivers/iio/multiplexer/iio-mux.c
8602
8603 IIO SUBSYSTEM AND DRIVERS
8604 M:      Jonathan Cameron <jic23@kernel.org>
8605 R:      Lars-Peter Clausen <lars@metafoo.de>
8606 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8607 L:      linux-iio@vger.kernel.org
8608 S:      Maintained
8609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8610 F:      Documentation/ABI/testing/configfs-iio*
8611 F:      Documentation/ABI/testing/sysfs-bus-iio*
8612 F:      Documentation/devicetree/bindings/iio/
8613 F:      drivers/iio/
8614 F:      drivers/staging/iio/
8615 F:      include/linux/iio/
8616 F:      tools/iio/
8617
8618 IIO UNIT CONVERTER
8619 M:      Peter Rosin <peda@axentia.se>
8620 L:      linux-iio@vger.kernel.org
8621 S:      Maintained
8622 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8623 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8624 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8625 F:      drivers/iio/afe/iio-rescale.c
8626
8627 IKANOS/ADI EAGLE ADSL USB DRIVER
8628 M:      Matthieu Castet <castet.matthieu@free.fr>
8629 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8630 S:      Maintained
8631 F:      drivers/usb/atm/ueagle-atm.c
8632
8633 IMGTEC ASCII LCD DRIVER
8634 M:      Paul Burton <paulburton@kernel.org>
8635 S:      Maintained
8636 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8637 F:      drivers/auxdisplay/img-ascii-lcd.c
8638
8639 IMGTEC IR DECODER DRIVER
8640 S:      Orphan
8641 F:      drivers/media/rc/img-ir/
8642
8643 IMON SOUNDGRAPH USB IR RECEIVER
8644 M:      Sean Young <sean@mess.org>
8645 L:      linux-media@vger.kernel.org
8646 S:      Maintained
8647 F:      drivers/media/rc/imon.c
8648 F:      drivers/media/rc/imon_raw.c
8649
8650 IMS TWINTURBO FRAMEBUFFER DRIVER
8651 L:      linux-fbdev@vger.kernel.org
8652 S:      Orphan
8653 F:      drivers/video/fbdev/imsttfb.c
8654
8655 INA209 HARDWARE MONITOR DRIVER
8656 M:      Guenter Roeck <linux@roeck-us.net>
8657 L:      linux-hwmon@vger.kernel.org
8658 S:      Maintained
8659 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8660 F:      Documentation/hwmon/ina209.rst
8661 F:      drivers/hwmon/ina209.c
8662
8663 INA2XX HARDWARE MONITOR DRIVER
8664 M:      Guenter Roeck <linux@roeck-us.net>
8665 L:      linux-hwmon@vger.kernel.org
8666 S:      Maintained
8667 F:      Documentation/hwmon/ina2xx.rst
8668 F:      drivers/hwmon/ina2xx.c
8669 F:      include/linux/platform_data/ina2xx.h
8670
8671 INDUSTRY PACK SUBSYSTEM (IPACK)
8672 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8673 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8674 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8675 L:      industrypack-devel@lists.sourceforge.net
8676 S:      Maintained
8677 W:      http://industrypack.sourceforge.net
8678 F:      drivers/ipack/
8679
8680 INFINEON DPS310 Driver
8681 M:      Eddie James <eajames@linux.ibm.com>
8682 L:      linux-iio@vger.kernel.org
8683 S:      Maintained
8684 F:      drivers/iio/pressure/dps310.c
8685
8686 INFINIBAND SUBSYSTEM
8687 M:      Doug Ledford <dledford@redhat.com>
8688 M:      Jason Gunthorpe <jgg@nvidia.com>
8689 L:      linux-rdma@vger.kernel.org
8690 S:      Supported
8691 W:      https://github.com/linux-rdma/rdma-core
8692 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8694 F:      Documentation/devicetree/bindings/infiniband/
8695 F:      Documentation/infiniband/
8696 F:      drivers/infiniband/
8697 F:      include/rdma/
8698 F:      include/trace/events/ib_mad.h
8699 F:      include/trace/events/ib_umad.h
8700 F:      include/uapi/linux/if_infiniband.h
8701 F:      include/uapi/rdma/
8702 F:      samples/bpf/ibumad_kern.c
8703 F:      samples/bpf/ibumad_user.c
8704
8705 INGENIC JZ4780 NAND DRIVER
8706 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8707 L:      linux-mtd@lists.infradead.org
8708 L:      linux-mips@vger.kernel.org
8709 S:      Maintained
8710 F:      drivers/mtd/nand/raw/ingenic/
8711
8712 INGENIC JZ47xx SoCs
8713 M:      Paul Cercueil <paul@crapouillou.net>
8714 L:      linux-mips@vger.kernel.org
8715 S:      Maintained
8716 F:      arch/mips/boot/dts/ingenic/
8717 F:      arch/mips/generic/board-ingenic.c
8718 F:      arch/mips/include/asm/mach-ingenic/
8719 F:      arch/mips/ingenic/Kconfig
8720 F:      drivers/clk/ingenic/
8721 F:      drivers/dma/dma-jz4780.c
8722 F:      drivers/gpu/drm/ingenic/
8723 F:      drivers/i2c/busses/i2c-jz4780.c
8724 F:      drivers/iio/adc/ingenic-adc.c
8725 F:      drivers/irqchip/irq-ingenic.c
8726 F:      drivers/memory/jz4780-nemc.c
8727 F:      drivers/mmc/host/jz4740_mmc.c
8728 F:      drivers/mtd/nand/raw/ingenic/
8729 F:      drivers/pinctrl/pinctrl-ingenic.c
8730 F:      drivers/power/supply/ingenic-battery.c
8731 F:      drivers/pwm/pwm-jz4740.c
8732 F:      drivers/remoteproc/ingenic_rproc.c
8733 F:      drivers/rtc/rtc-jz4740.c
8734 F:      drivers/tty/serial/8250/8250_ingenic.c
8735 F:      drivers/usb/musb/jz4740.c
8736 F:      drivers/watchdog/jz4740_wdt.c
8737 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8738 F:      include/linux/mfd/ingenic-tcu.h
8739 F:      sound/soc/codecs/jz47*
8740 F:      sound/soc/jz4740/
8741
8742 INOTIFY
8743 M:      Jan Kara <jack@suse.cz>
8744 R:      Amir Goldstein <amir73il@gmail.com>
8745 L:      linux-fsdevel@vger.kernel.org
8746 S:      Maintained
8747 F:      Documentation/filesystems/inotify.rst
8748 F:      fs/notify/inotify/
8749 F:      include/linux/inotify.h
8750 F:      include/uapi/linux/inotify.h
8751
8752 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8753 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8754 L:      linux-input@vger.kernel.org
8755 S:      Maintained
8756 Q:      http://patchwork.kernel.org/project/linux-input/list/
8757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8758 F:      Documentation/devicetree/bindings/input/
8759 F:      Documentation/devicetree/bindings/serio/
8760 F:      Documentation/input/
8761 F:      drivers/input/
8762 F:      include/linux/input.h
8763 F:      include/linux/input/
8764 F:      include/uapi/linux/input-event-codes.h
8765 F:      include/uapi/linux/input.h
8766
8767 INPUT MULTITOUCH (MT) PROTOCOL
8768 M:      Henrik Rydberg <rydberg@bitmath.org>
8769 L:      linux-input@vger.kernel.org
8770 S:      Odd fixes
8771 F:      Documentation/input/multi-touch-protocol.rst
8772 F:      drivers/input/input-mt.c
8773 K:      \b(ABS|SYN)_MT_
8774
8775 INSIDE SECURE CRYPTO DRIVER
8776 M:      Antoine Tenart <atenart@kernel.org>
8777 L:      linux-crypto@vger.kernel.org
8778 S:      Maintained
8779 F:      drivers/crypto/inside-secure/
8780
8781 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8782 M:      Mimi Zohar <zohar@linux.ibm.com>
8783 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8784 L:      linux-integrity@vger.kernel.org
8785 S:      Supported
8786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8787 F:      security/integrity/ima/
8788
8789 INTEL 810/815 FRAMEBUFFER DRIVER
8790 M:      Antonino Daplas <adaplas@gmail.com>
8791 L:      linux-fbdev@vger.kernel.org
8792 S:      Maintained
8793 F:      drivers/video/fbdev/i810/
8794
8795 INTEL ASoC DRIVERS
8796 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8797 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8798 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8799 M:      Jie Yang <yang.jie@linux.intel.com>
8800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8801 S:      Supported
8802 F:      sound/soc/intel/
8803
8804 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8805 M:      Hans de Goede <hdegoede@redhat.com>
8806 L:      platform-driver-x86@vger.kernel.org
8807 S:      Maintained
8808 F:      drivers/platform/x86/intel_atomisp2_pm.c
8809
8810 INTEL ATOMISP2 LED DRIVER
8811 M:      Hans de Goede <hdegoede@redhat.com>
8812 L:      platform-driver-x86@vger.kernel.org
8813 S:      Maintained
8814 F:      drivers/platform/x86/intel_atomisp2_led.c
8815
8816 INTEL BROXTON PMC DRIVER
8817 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8818 M:      Zha Qipeng <qipeng.zha@intel.com>
8819 S:      Maintained
8820 F:      drivers/mfd/intel_pmc_bxt.c
8821 F:      include/linux/mfd/intel_pmc_bxt.h
8822
8823 INTEL C600 SERIES SAS CONTROLLER DRIVER
8824 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8825 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8826 L:      linux-scsi@vger.kernel.org
8827 S:      Supported
8828 T:      git git://git.code.sf.net/p/intel-sas/isci
8829 F:      drivers/scsi/isci/
8830
8831 INTEL CPU family model numbers
8832 M:      Tony Luck <tony.luck@intel.com>
8833 M:      x86@kernel.org
8834 L:      linux-kernel@vger.kernel.org
8835 S:      Supported
8836 F:      arch/x86/include/asm/intel-family.h
8837
8838 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8839 M:      Jani Nikula <jani.nikula@linux.intel.com>
8840 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8841 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8842 L:      intel-gfx@lists.freedesktop.org
8843 S:      Supported
8844 W:      https://01.org/linuxgraphics/
8845 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8846 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8847 C:      irc://chat.freenode.net/intel-gfx
8848 T:      git git://anongit.freedesktop.org/drm-intel
8849 F:      Documentation/gpu/i915.rst
8850 F:      drivers/gpu/drm/i915/
8851 F:      include/drm/i915*
8852 F:      include/uapi/drm/i915_drm.h
8853
8854 INTEL ETHERNET DRIVERS
8855 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
8856 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
8857 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8858 S:      Supported
8859 W:      http://www.intel.com/support/feedback.htm
8860 W:      http://e1000.sourceforge.net/
8861 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8864 F:      Documentation/networking/device_drivers/ethernet/intel/
8865 F:      drivers/net/ethernet/intel/
8866 F:      drivers/net/ethernet/intel/*/
8867 F:      include/linux/avf/virtchnl.h
8868
8869 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8870 M:      Maik Broemme <mbroemme@libmpq.org>
8871 L:      linux-fbdev@vger.kernel.org
8872 S:      Maintained
8873 F:      Documentation/fb/intelfb.rst
8874 F:      drivers/video/fbdev/intelfb/
8875
8876 INTEL GPIO DRIVERS
8877 M:      Andy Shevchenko <andy@kernel.org>
8878 L:      linux-gpio@vger.kernel.org
8879 S:      Maintained
8880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8881 F:      drivers/gpio/gpio-ich.c
8882 F:      drivers/gpio/gpio-intel-mid.c
8883 F:      drivers/gpio/gpio-merrifield.c
8884 F:      drivers/gpio/gpio-ml-ioh.c
8885 F:      drivers/gpio/gpio-pch.c
8886 F:      drivers/gpio/gpio-sch.c
8887 F:      drivers/gpio/gpio-sodaville.c
8888
8889 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8890 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8891 M:      Zhi Wang <zhi.a.wang@intel.com>
8892 L:      intel-gvt-dev@lists.freedesktop.org
8893 L:      intel-gfx@lists.freedesktop.org
8894 S:      Supported
8895 W:      https://01.org/igvt-g
8896 T:      git https://github.com/intel/gvt-linux.git
8897 F:      drivers/gpu/drm/i915/gvt/
8898
8899 INTEL HID EVENT DRIVER
8900 M:      Alex Hung <alex.hung@canonical.com>
8901 L:      platform-driver-x86@vger.kernel.org
8902 S:      Maintained
8903 F:      drivers/platform/x86/intel-hid.c
8904
8905 INTEL I/OAT DMA DRIVER
8906 M:      Dave Jiang <dave.jiang@intel.com>
8907 R:      Dan Williams <dan.j.williams@intel.com>
8908 L:      dmaengine@vger.kernel.org
8909 S:      Supported
8910 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8911 F:      drivers/dma/ioat*
8912
8913 INTEL IADX DRIVER
8914 M:      Dave Jiang <dave.jiang@intel.com>
8915 L:      dmaengine@vger.kernel.org
8916 S:      Supported
8917 F:      drivers/dma/idxd/*
8918 F:      include/uapi/linux/idxd.h
8919
8920 INTEL IDLE DRIVER
8921 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8922 M:      Len Brown <lenb@kernel.org>
8923 L:      linux-pm@vger.kernel.org
8924 S:      Supported
8925 B:      https://bugzilla.kernel.org
8926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8927 F:      drivers/idle/intel_idle.c
8928
8929 INTEL INTEGRATED SENSOR HUB DRIVER
8930 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8931 M:      Jiri Kosina <jikos@kernel.org>
8932 L:      linux-input@vger.kernel.org
8933 S:      Maintained
8934 F:      drivers/hid/intel-ish-hid/
8935
8936 INTEL IOMMU (VT-d)
8937 M:      David Woodhouse <dwmw2@infradead.org>
8938 M:      Lu Baolu <baolu.lu@linux.intel.com>
8939 L:      iommu@lists.linux-foundation.org
8940 S:      Supported
8941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8942 F:      drivers/iommu/intel/
8943 F:      include/linux/intel-iommu.h
8944 F:      include/linux/intel-svm.h
8945
8946 INTEL IOP-ADMA DMA DRIVER
8947 R:      Dan Williams <dan.j.williams@intel.com>
8948 S:      Odd fixes
8949 F:      drivers/dma/iop-adma.c
8950
8951 INTEL IPU3 CSI-2 CIO2 DRIVER
8952 M:      Yong Zhi <yong.zhi@intel.com>
8953 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8954 M:      Bingbu Cao <bingbu.cao@intel.com>
8955 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8956 L:      linux-media@vger.kernel.org
8957 S:      Maintained
8958 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8959 F:      drivers/media/pci/intel/ipu3/
8960
8961 INTEL IPU3 CSI-2 IMGU DRIVER
8962 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8963 R:      Bingbu Cao <bingbu.cao@intel.com>
8964 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
8965 L:      linux-media@vger.kernel.org
8966 S:      Maintained
8967 F:      Documentation/admin-guide/media/ipu3.rst
8968 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8969 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8970 F:      drivers/staging/media/ipu3/
8971
8972 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8973 M:      Krzysztof Halasa <khalasa@piap.pl>
8974 S:      Maintained
8975 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8976 F:      drivers/net/wan/ixp4xx_hss.c
8977 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8978 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8979 F:      include/linux/soc/ixp4xx/npe.h
8980 F:      include/linux/soc/ixp4xx/qmgr.h
8981
8982 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8983 M:      Deepak Saxena <dsaxena@plexity.net>
8984 S:      Maintained
8985 F:      drivers/char/hw_random/ixp4xx-rng.c
8986
8987 INTEL KEEM BAY DRM DRIVER
8988 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
8989 M:      Edmund Dea <edmund.j.dea@intel.com>
8990 S:      Maintained
8991 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
8992 F:      drivers/gpu/drm/kmb/
8993
8994 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
8995 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
8996 S:      Maintained
8997 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
8998 F:      drivers/crypto/keembay/Kconfig
8999 F:      drivers/crypto/keembay/Makefile
9000 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9001 F:      drivers/crypto/keembay/ocs-aes.c
9002 F:      drivers/crypto/keembay/ocs-aes.h
9003
9004 INTEL MANAGEMENT ENGINE (mei)
9005 M:      Tomas Winkler <tomas.winkler@intel.com>
9006 L:      linux-kernel@vger.kernel.org
9007 S:      Supported
9008 F:      Documentation/driver-api/mei/*
9009 F:      drivers/misc/mei/
9010 F:      drivers/watchdog/mei_wdt.c
9011 F:      include/linux/mei_cl_bus.h
9012 F:      include/uapi/linux/mei.h
9013 F:      samples/mei/*
9014
9015 INTEL MENLOW THERMAL DRIVER
9016 M:      Sujith Thomas <sujith.thomas@intel.com>
9017 L:      platform-driver-x86@vger.kernel.org
9018 S:      Supported
9019 W:      https://01.org/linux-acpi
9020 F:      drivers/platform/x86/intel_menlow.c
9021
9022 INTEL P-Unit IPC DRIVER
9023 M:      Zha Qipeng <qipeng.zha@intel.com>
9024 L:      platform-driver-x86@vger.kernel.org
9025 S:      Maintained
9026 F:      arch/x86/include/asm/intel_punit_ipc.h
9027 F:      drivers/platform/x86/intel_punit_ipc.c
9028
9029 INTEL PMC CORE DRIVER
9030 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9031 M:      David E Box <david.e.box@intel.com>
9032 L:      platform-driver-x86@vger.kernel.org
9033 S:      Maintained
9034 F:      drivers/platform/x86/intel_pmc_core*
9035
9036 INTEL PMIC GPIO DRIVERS
9037 M:      Andy Shevchenko <andy@kernel.org>
9038 S:      Maintained
9039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9040 F:      drivers/gpio/gpio-*cove.c
9041 F:      drivers/gpio/gpio-msic.c
9042
9043 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9044 M:      Andy Shevchenko <andy@kernel.org>
9045 S:      Maintained
9046 F:      drivers/mfd/intel_msic.c
9047 F:      drivers/mfd/intel_soc_pmic*
9048 F:      include/linux/mfd/intel_msic.h
9049 F:      include/linux/mfd/intel_soc_pmic*
9050
9051 INTEL PMT DRIVER
9052 M:      "David E. Box" <david.e.box@linux.intel.com>
9053 S:      Maintained
9054 F:      drivers/mfd/intel_pmt.c
9055 F:      drivers/platform/x86/intel_pmt_*
9056
9057 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9058 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9059 L:      linux-wireless@vger.kernel.org
9060 S:      Maintained
9061 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9062 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9063 F:      drivers/net/wireless/intel/ipw2x00/
9064
9065 INTEL PSTATE DRIVER
9066 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9067 M:      Len Brown <lenb@kernel.org>
9068 L:      linux-pm@vger.kernel.org
9069 S:      Supported
9070 F:      drivers/cpufreq/intel_pstate.c
9071
9072 INTEL RDMA RNIC DRIVER
9073 M:      Faisal Latif <faisal.latif@intel.com>
9074 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9075 L:      linux-rdma@vger.kernel.org
9076 S:      Supported
9077 F:      drivers/infiniband/hw/i40iw/
9078 F:      include/uapi/rdma/i40iw-abi.h
9079
9080 INTEL SCU DRIVERS
9081 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9082 S:      Maintained
9083 F:      arch/x86/include/asm/intel_scu_ipc.h
9084 F:      drivers/platform/x86/intel_scu_*
9085
9086 INTEL SPEED SELECT TECHNOLOGY
9087 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9088 L:      platform-driver-x86@vger.kernel.org
9089 S:      Maintained
9090 F:      drivers/platform/x86/intel_speed_select_if/
9091 F:      include/uapi/linux/isst_if.h
9092 F:      tools/power/x86/intel-speed-select/
9093
9094 INTEL STRATIX10 FIRMWARE DRIVERS
9095 M:      Richard Gong <richard.gong@linux.intel.com>
9096 L:      linux-kernel@vger.kernel.org
9097 S:      Maintained
9098 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9099 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9100 F:      drivers/firmware/stratix10-rsu.c
9101 F:      drivers/firmware/stratix10-svc.c
9102 F:      include/linux/firmware/intel/stratix10-smc.h
9103 F:      include/linux/firmware/intel/stratix10-svc-client.h
9104
9105 INTEL TELEMETRY DRIVER
9106 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9107 M:      "David E. Box" <david.e.box@linux.intel.com>
9108 L:      platform-driver-x86@vger.kernel.org
9109 S:      Maintained
9110 F:      arch/x86/include/asm/intel_telemetry.h
9111 F:      drivers/platform/x86/intel_telemetry*
9112
9113 INTEL UNCORE FREQUENCY CONTROL
9114 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9115 L:      platform-driver-x86@vger.kernel.org
9116 S:      Maintained
9117 F:      drivers/platform/x86/intel-uncore-frequency.c
9118
9119 INTEL VIRTUAL BUTTON DRIVER
9120 M:      AceLan Kao <acelan.kao@canonical.com>
9121 L:      platform-driver-x86@vger.kernel.org
9122 S:      Maintained
9123 F:      drivers/platform/x86/intel-vbtn.c
9124
9125 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9126 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9127 L:      linux-wireless@vger.kernel.org
9128 S:      Supported
9129 F:      drivers/net/wireless/intel/iwlegacy/
9130
9131 INTEL WIRELESS WIFI LINK (iwlwifi)
9132 M:      Luca Coelho <luciano.coelho@intel.com>
9133 L:      linux-wireless@vger.kernel.org
9134 S:      Supported
9135 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9137 F:      drivers/net/wireless/intel/iwlwifi/
9138
9139 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9140 M:      Jithu Joseph <jithu.joseph@intel.com>
9141 R:      Maurice Ma <maurice.ma@intel.com>
9142 S:      Maintained
9143 W:      https://slimbootloader.github.io/security/firmware-update.html
9144 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9145
9146 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9147 M:      Mario Limonciello <mario.limonciello@dell.com>
9148 S:      Maintained
9149 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9150
9151 INTEL(R) TRACE HUB
9152 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9153 S:      Supported
9154 F:      Documentation/trace/intel_th.rst
9155 F:      drivers/hwtracing/intel_th/
9156 F:      include/linux/intel_th.h
9157
9158 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9159 M:      Ning Sun <ning.sun@intel.com>
9160 L:      tboot-devel@lists.sourceforge.net
9161 S:      Supported
9162 W:      http://tboot.sourceforge.net
9163 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9164 F:      Documentation/x86/intel_txt.rst
9165 F:      arch/x86/kernel/tboot.c
9166 F:      include/linux/tboot.h
9167
9168 INTEL SGX
9169 M:      Jarkko Sakkinen <jarkko@kernel.org>
9170 L:      linux-sgx@vger.kernel.org
9171 S:      Supported
9172 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-sgx.git
9174 F:      Documentation/x86/sgx.rst
9175 F:      arch/x86/entry/vdso/vsgx.S
9176 F:      arch/x86/include/uapi/asm/sgx.h
9177 F:      arch/x86/kernel/cpu/sgx/*
9178 F:      tools/testing/selftests/sgx/*
9179 K:      \bSGX_
9180
9181 INTERCONNECT API
9182 M:      Georgi Djakov <djakov@kernel.org>
9183 L:      linux-pm@vger.kernel.org
9184 S:      Maintained
9185 F:      Documentation/devicetree/bindings/interconnect/
9186 F:      Documentation/driver-api/interconnect.rst
9187 F:      drivers/interconnect/
9188 F:      include/dt-bindings/interconnect/
9189 F:      include/linux/interconnect-provider.h
9190 F:      include/linux/interconnect.h
9191
9192 INVENSENSE ICM-426xx IMU DRIVER
9193 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9194 L:      linux-iio@vger.kernel.org
9195 S:      Maintained
9196 W:      https://invensense.tdk.com/
9197 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9198 F:      drivers/iio/imu/inv_icm42600/
9199
9200 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9201 M:      Linus Walleij <linus.walleij@linaro.org>
9202 L:      linux-iio@vger.kernel.org
9203 S:      Maintained
9204 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9205 F:      drivers/iio/gyro/mpu3050*
9206
9207 IOC3 ETHERNET DRIVER
9208 M:      Ralf Baechle <ralf@linux-mips.org>
9209 L:      linux-mips@vger.kernel.org
9210 S:      Maintained
9211 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9212
9213 IOMAP FILESYSTEM LIBRARY
9214 M:      Christoph Hellwig <hch@infradead.org>
9215 M:      Darrick J. Wong <djwong@kernel.org>
9216 M:      linux-xfs@vger.kernel.org
9217 M:      linux-fsdevel@vger.kernel.org
9218 L:      linux-xfs@vger.kernel.org
9219 L:      linux-fsdevel@vger.kernel.org
9220 S:      Supported
9221 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9222 F:      fs/iomap/
9223 F:      include/linux/iomap.h
9224
9225 IOMMU DRIVERS
9226 M:      Joerg Roedel <joro@8bytes.org>
9227 M:      Will Deacon <will@kernel.org>
9228 L:      iommu@lists.linux-foundation.org
9229 S:      Maintained
9230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9231 F:      Documentation/devicetree/bindings/iommu/
9232 F:      Documentation/userspace-api/iommu.rst
9233 F:      drivers/iommu/
9234 F:      include/linux/iommu.h
9235 F:      include/linux/iova.h
9236 F:      include/linux/of_iommu.h
9237 F:      include/uapi/linux/iommu.h
9238
9239 IO_URING
9240 M:      Jens Axboe <axboe@kernel.dk>
9241 L:      io-uring@vger.kernel.org
9242 S:      Maintained
9243 T:      git git://git.kernel.dk/linux-block
9244 T:      git git://git.kernel.dk/liburing
9245 F:      fs/io-wq.c
9246 F:      fs/io-wq.h
9247 F:      fs/io_uring.c
9248 F:      include/uapi/linux/io_uring.h
9249
9250 IPMI SUBSYSTEM
9251 M:      Corey Minyard <minyard@acm.org>
9252 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9253 S:      Supported
9254 W:      http://openipmi.sourceforge.net/
9255 F:      Documentation/driver-api/ipmi.rst
9256 F:      Documentation/devicetree/bindings/ipmi/
9257 F:      drivers/char/ipmi/
9258 F:      include/linux/ipmi*
9259 F:      include/uapi/linux/ipmi*
9260
9261 IPS SCSI RAID DRIVER
9262 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9263 L:      linux-scsi@vger.kernel.org
9264 S:      Maintained
9265 W:      http://www.adaptec.com/
9266 F:      drivers/scsi/ips*
9267
9268 IPVS
9269 M:      Simon Horman <horms@verge.net.au>
9270 M:      Julian Anastasov <ja@ssi.bg>
9271 L:      netdev@vger.kernel.org
9272 L:      lvs-devel@vger.kernel.org
9273 S:      Maintained
9274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9276 F:      Documentation/networking/ipvs-sysctl.rst
9277 F:      include/net/ip_vs.h
9278 F:      include/uapi/linux/ip_vs.h
9279 F:      net/netfilter/ipvs/
9280
9281 IPWIRELESS DRIVER
9282 M:      Jiri Kosina <jikos@kernel.org>
9283 M:      David Sterba <dsterba@suse.com>
9284 S:      Odd Fixes
9285 F:      drivers/tty/ipwireless/
9286
9287 IPX NETWORK LAYER
9288 L:      netdev@vger.kernel.org
9289 S:      Obsolete
9290 F:      include/uapi/linux/ipx.h
9291
9292 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9293 M:      Marc Zyngier <maz@kernel.org>
9294 S:      Maintained
9295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9296 F:      Documentation/core-api/irq/irq-domain.rst
9297 F:      include/linux/irqdomain.h
9298 F:      kernel/irq/irqdomain.c
9299 F:      kernel/irq/msi.c
9300
9301 IRQ SUBSYSTEM
9302 M:      Thomas Gleixner <tglx@linutronix.de>
9303 L:      linux-kernel@vger.kernel.org
9304 S:      Maintained
9305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9306 F:      kernel/irq/
9307
9308 IRQCHIP DRIVERS
9309 M:      Thomas Gleixner <tglx@linutronix.de>
9310 M:      Marc Zyngier <maz@kernel.org>
9311 L:      linux-kernel@vger.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/devicetree/bindings/interrupt-controller/
9315 F:      drivers/irqchip/
9316
9317 ISA
9318 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9319 S:      Maintained
9320 F:      Documentation/driver-api/isa.rst
9321 F:      drivers/base/isa.c
9322 F:      include/linux/isa.h
9323
9324 ISA RADIO MODULE
9325 M:      Hans Verkuil <hverkuil@xs4all.nl>
9326 L:      linux-media@vger.kernel.org
9327 S:      Maintained
9328 W:      https://linuxtv.org
9329 T:      git git://linuxtv.org/media_tree.git
9330 F:      drivers/media/radio/radio-isa*
9331
9332 ISAPNP
9333 M:      Jaroslav Kysela <perex@perex.cz>
9334 S:      Maintained
9335 F:      Documentation/driver-api/isapnp.rst
9336 F:      drivers/pnp/isapnp/
9337 F:      include/linux/isapnp.h
9338
9339 ISCSI
9340 M:      Lee Duncan <lduncan@suse.com>
9341 M:      Chris Leech <cleech@redhat.com>
9342 L:      open-iscsi@googlegroups.com
9343 L:      linux-scsi@vger.kernel.org
9344 S:      Maintained
9345 W:      www.open-iscsi.com
9346 F:      drivers/scsi/*iscsi*
9347 F:      include/scsi/*iscsi*
9348
9349 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9350 M:      Peter Jones <pjones@redhat.com>
9351 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9352 S:      Maintained
9353 F:      drivers/firmware/iscsi_ibft*
9354
9355 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9356 M:      Sagi Grimberg <sagi@grimberg.me>
9357 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9358 L:      linux-rdma@vger.kernel.org
9359 S:      Supported
9360 W:      http://www.openfabrics.org
9361 W:      www.open-iscsi.org
9362 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9363 F:      drivers/infiniband/ulp/iser/
9364
9365 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9366 M:      Sagi Grimberg <sagi@grimberg.me>
9367 L:      linux-rdma@vger.kernel.org
9368 L:      target-devel@vger.kernel.org
9369 S:      Supported
9370 W:      http://www.linux-iscsi.org
9371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9372 F:      drivers/infiniband/ulp/isert
9373
9374 ISDN/CMTP OVER BLUETOOTH
9375 M:      Karsten Keil <isdn@linux-pingi.de>
9376 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9377 L:      netdev@vger.kernel.org
9378 S:      Odd Fixes
9379 W:      http://www.isdn4linux.de
9380 F:      Documentation/isdn/
9381 F:      drivers/isdn/capi/
9382 F:      include/linux/isdn/
9383 F:      include/uapi/linux/isdn/
9384 F:      net/bluetooth/cmtp/
9385
9386 ISDN/mISDN SUBSYSTEM
9387 M:      Karsten Keil <isdn@linux-pingi.de>
9388 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9389 L:      netdev@vger.kernel.org
9390 S:      Maintained
9391 W:      http://www.isdn4linux.de
9392 F:      drivers/isdn/Kconfig
9393 F:      drivers/isdn/Makefile
9394 F:      drivers/isdn/hardware/
9395 F:      drivers/isdn/mISDN/
9396
9397 IT87 HARDWARE MONITORING DRIVER
9398 M:      Jean Delvare <jdelvare@suse.com>
9399 L:      linux-hwmon@vger.kernel.org
9400 S:      Maintained
9401 F:      Documentation/hwmon/it87.rst
9402 F:      drivers/hwmon/it87.c
9403
9404 IT913X MEDIA DRIVER
9405 M:      Antti Palosaari <crope@iki.fi>
9406 L:      linux-media@vger.kernel.org
9407 S:      Maintained
9408 W:      https://linuxtv.org
9409 W:      http://palosaari.fi/linux/
9410 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9411 T:      git git://linuxtv.org/anttip/media_tree.git
9412 F:      drivers/media/tuners/it913x*
9413
9414 IVTV VIDEO4LINUX DRIVER
9415 M:      Andy Walls <awalls@md.metrocast.net>
9416 L:      linux-media@vger.kernel.org
9417 S:      Maintained
9418 W:      https://linuxtv.org
9419 T:      git git://linuxtv.org/media_tree.git
9420 F:      Documentation/admin-guide/media/ivtv*
9421 F:      drivers/media/pci/ivtv/
9422 F:      include/uapi/linux/ivtv*
9423
9424 IX2505V MEDIA DRIVER
9425 M:      Malcolm Priestley <tvboxspy@gmail.com>
9426 L:      linux-media@vger.kernel.org
9427 S:      Maintained
9428 W:      https://linuxtv.org
9429 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9430 F:      drivers/media/dvb-frontends/ix2505v*
9431
9432 JAILHOUSE HYPERVISOR INTERFACE
9433 M:      Jan Kiszka <jan.kiszka@siemens.com>
9434 L:      jailhouse-dev@googlegroups.com
9435 S:      Maintained
9436 F:      arch/x86/include/asm/jailhouse_para.h
9437 F:      arch/x86/kernel/jailhouse.c
9438
9439 JC42.4 TEMPERATURE SENSOR DRIVER
9440 M:      Guenter Roeck <linux@roeck-us.net>
9441 L:      linux-hwmon@vger.kernel.org
9442 S:      Maintained
9443 F:      Documentation/hwmon/jc42.rst
9444 F:      drivers/hwmon/jc42.c
9445
9446 JFS FILESYSTEM
9447 M:      Dave Kleikamp <shaggy@kernel.org>
9448 L:      jfs-discussion@lists.sourceforge.net
9449 S:      Maintained
9450 W:      http://jfs.sourceforge.net/
9451 T:      git git://github.com/kleikamp/linux-shaggy.git
9452 F:      Documentation/admin-guide/jfs.rst
9453 F:      fs/jfs/
9454
9455 JME NETWORK DRIVER
9456 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9457 L:      netdev@vger.kernel.org
9458 S:      Maintained
9459 F:      drivers/net/ethernet/jme.*
9460
9461 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9462 M:      David Woodhouse <dwmw2@infradead.org>
9463 M:      Richard Weinberger <richard@nod.at>
9464 L:      linux-mtd@lists.infradead.org
9465 S:      Odd Fixes
9466 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9467 T:      git git://git.infradead.org/ubifs-2.6.git
9468 F:      fs/jffs2/
9469 F:      include/uapi/linux/jffs2.h
9470
9471 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9472 M:      "Theodore Ts'o" <tytso@mit.edu>
9473 M:      Jan Kara <jack@suse.com>
9474 L:      linux-ext4@vger.kernel.org
9475 S:      Maintained
9476 F:      fs/jbd2/
9477 F:      include/linux/jbd2.h
9478
9479 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9480 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9481 L:      linux-media@vger.kernel.org
9482 S:      Maintained
9483 F:      drivers/media/platform/rcar_jpu.c
9484
9485 JSM Neo PCI based serial card
9486 L:      linux-serial@vger.kernel.org
9487 S:      Orphan
9488 F:      drivers/tty/serial/jsm/
9489
9490 K10TEMP HARDWARE MONITORING DRIVER
9491 M:      Clemens Ladisch <clemens@ladisch.de>
9492 L:      linux-hwmon@vger.kernel.org
9493 S:      Maintained
9494 F:      Documentation/hwmon/k10temp.rst
9495 F:      drivers/hwmon/k10temp.c
9496
9497 K8TEMP HARDWARE MONITORING DRIVER
9498 M:      Rudolf Marek <r.marek@assembler.cz>
9499 L:      linux-hwmon@vger.kernel.org
9500 S:      Maintained
9501 F:      Documentation/hwmon/k8temp.rst
9502 F:      drivers/hwmon/k8temp.c
9503
9504 KASAN
9505 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
9506 R:      Alexander Potapenko <glider@google.com>
9507 R:      Andrey Konovalov <andreyknvl@gmail.com>
9508 R:      Dmitry Vyukov <dvyukov@google.com>
9509 L:      kasan-dev@googlegroups.com
9510 S:      Maintained
9511 F:      Documentation/dev-tools/kasan.rst
9512 F:      arch/*/include/asm/*kasan.h
9513 F:      arch/*/mm/kasan_init*
9514 F:      include/linux/kasan*.h
9515 F:      lib/Kconfig.kasan
9516 F:      lib/test_kasan*.c
9517 F:      mm/kasan/
9518 F:      scripts/Makefile.kasan
9519
9520 KCONFIG
9521 M:      Masahiro Yamada <masahiroy@kernel.org>
9522 L:      linux-kbuild@vger.kernel.org
9523 S:      Maintained
9524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9525 F:      Documentation/kbuild/kconfig*
9526 F:      scripts/Kconfig.include
9527 F:      scripts/kconfig/
9528
9529 KCOV
9530 R:      Dmitry Vyukov <dvyukov@google.com>
9531 R:      Andrey Konovalov <andreyknvl@gmail.com>
9532 L:      kasan-dev@googlegroups.com
9533 S:      Maintained
9534 F:      Documentation/dev-tools/kcov.rst
9535 F:      include/linux/kcov.h
9536 F:      include/uapi/linux/kcov.h
9537 F:      kernel/kcov.c
9538 F:      scripts/Makefile.kcov
9539
9540 KCSAN
9541 M:      Marco Elver <elver@google.com>
9542 R:      Dmitry Vyukov <dvyukov@google.com>
9543 L:      kasan-dev@googlegroups.com
9544 S:      Maintained
9545 F:      Documentation/dev-tools/kcsan.rst
9546 F:      include/linux/kcsan*.h
9547 F:      kernel/kcsan/
9548 F:      lib/Kconfig.kcsan
9549 F:      scripts/Makefile.kcsan
9550
9551 KDUMP
9552 M:      Dave Young <dyoung@redhat.com>
9553 M:      Baoquan He <bhe@redhat.com>
9554 R:      Vivek Goyal <vgoyal@redhat.com>
9555 L:      kexec@lists.infradead.org
9556 S:      Maintained
9557 W:      http://lse.sourceforge.net/kdump/
9558 F:      Documentation/admin-guide/kdump/
9559 F:      fs/proc/vmcore.c
9560 F:      include/linux/crash_core.h
9561 F:      include/linux/crash_dump.h
9562 F:      include/uapi/linux/vmcore.h
9563 F:      kernel/crash_*.c
9564
9565 KEENE FM RADIO TRANSMITTER DRIVER
9566 M:      Hans Verkuil <hverkuil@xs4all.nl>
9567 L:      linux-media@vger.kernel.org
9568 S:      Maintained
9569 W:      https://linuxtv.org
9570 T:      git git://linuxtv.org/media_tree.git
9571 F:      drivers/media/radio/radio-keene*
9572
9573 KERNEL AUTOMOUNTER
9574 M:      Ian Kent <raven@themaw.net>
9575 L:      autofs@vger.kernel.org
9576 S:      Maintained
9577 F:      fs/autofs/
9578
9579 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9580 M:      Masahiro Yamada <masahiroy@kernel.org>
9581 M:      Michal Marek <michal.lkml@markovi.net>
9582 L:      linux-kbuild@vger.kernel.org
9583 S:      Maintained
9584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9585 F:      Documentation/kbuild/
9586 F:      Makefile
9587 F:      scripts/*vmlinux*
9588 F:      scripts/Kbuild*
9589 F:      scripts/Makefile*
9590 F:      scripts/basic/
9591 F:      scripts/mk*
9592 F:      scripts/mod/
9593 F:      scripts/package/
9594
9595 KERNEL JANITORS
9596 L:      kernel-janitors@vger.kernel.org
9597 S:      Odd Fixes
9598 W:      http://kernelnewbies.org/KernelJanitors
9599
9600 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9601 M:      "J. Bruce Fields" <bfields@fieldses.org>
9602 M:      Chuck Lever <chuck.lever@oracle.com>
9603 L:      linux-nfs@vger.kernel.org
9604 S:      Supported
9605 W:      http://nfs.sourceforge.net/
9606 T:      git git://linux-nfs.org/~bfields/linux.git
9607 F:      fs/lockd/
9608 F:      fs/nfs_common/
9609 F:      fs/nfsd/
9610 F:      include/linux/lockd/
9611 F:      include/linux/sunrpc/
9612 F:      include/uapi/linux/nfsd/
9613 F:      include/uapi/linux/sunrpc/
9614 F:      net/sunrpc/
9615 F:      Documentation/filesystems/nfs/
9616
9617 KERNEL SELFTEST FRAMEWORK
9618 M:      Shuah Khan <shuah@kernel.org>
9619 M:      Shuah Khan <skhan@linuxfoundation.org>
9620 L:      linux-kselftest@vger.kernel.org
9621 S:      Maintained
9622 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9624 F:      Documentation/dev-tools/kselftest*
9625 F:      tools/testing/selftests/
9626
9627 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9628 M:      Brendan Higgins <brendanhiggins@google.com>
9629 L:      linux-kselftest@vger.kernel.org
9630 L:      kunit-dev@googlegroups.com
9631 S:      Maintained
9632 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9633 F:      Documentation/dev-tools/kunit/
9634 F:      include/kunit/
9635 F:      lib/kunit/
9636 F:      tools/testing/kunit/
9637
9638 KERNEL USERMODE HELPER
9639 M:      Luis Chamberlain <mcgrof@kernel.org>
9640 L:      linux-kernel@vger.kernel.org
9641 S:      Maintained
9642 F:      include/linux/umh.h
9643 F:      kernel/umh.c
9644
9645 KERNEL VIRTUAL MACHINE (KVM)
9646 M:      Paolo Bonzini <pbonzini@redhat.com>
9647 L:      kvm@vger.kernel.org
9648 S:      Supported
9649 W:      http://www.linux-kvm.org
9650 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9651 F:      Documentation/virt/kvm/
9652 F:      include/asm-generic/kvm*
9653 F:      include/kvm/iodev.h
9654 F:      include/linux/kvm*
9655 F:      include/trace/events/kvm.h
9656 F:      include/uapi/asm-generic/kvm*
9657 F:      include/uapi/linux/kvm*
9658 F:      tools/kvm/
9659 F:      tools/testing/selftests/kvm/
9660 F:      virt/kvm/*
9661
9662 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9663 M:      Marc Zyngier <maz@kernel.org>
9664 R:      James Morse <james.morse@arm.com>
9665 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9666 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9668 L:      kvmarm@lists.cs.columbia.edu
9669 S:      Maintained
9670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9671 F:      arch/arm64/include/asm/kvm*
9672 F:      arch/arm64/include/uapi/asm/kvm*
9673 F:      arch/arm64/kvm/
9674 F:      include/kvm/arm_*
9675
9676 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9677 M:      Huacai Chen <chenhuacai@kernel.org>
9678 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9679 L:      linux-mips@vger.kernel.org
9680 L:      kvm@vger.kernel.org
9681 S:      Maintained
9682 F:      arch/mips/include/asm/kvm*
9683 F:      arch/mips/include/uapi/asm/kvm*
9684 F:      arch/mips/kvm/
9685
9686 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9687 M:      Paul Mackerras <paulus@ozlabs.org>
9688 L:      kvm-ppc@vger.kernel.org
9689 S:      Supported
9690 W:      http://www.linux-kvm.org/
9691 T:      git git://github.com/agraf/linux-2.6.git
9692 F:      arch/powerpc/include/asm/kvm*
9693 F:      arch/powerpc/include/uapi/asm/kvm*
9694 F:      arch/powerpc/kernel/kvm*
9695 F:      arch/powerpc/kvm/
9696
9697 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9698 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9699 M:      Janosch Frank <frankja@linux.ibm.com>
9700 R:      David Hildenbrand <david@redhat.com>
9701 R:      Cornelia Huck <cohuck@redhat.com>
9702 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9703 L:      kvm@vger.kernel.org
9704 S:      Supported
9705 W:      http://www.ibm.com/developerworks/linux/linux390/
9706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9707 F:      Documentation/virt/kvm/s390*
9708 F:      arch/s390/include/asm/gmap.h
9709 F:      arch/s390/include/asm/kvm*
9710 F:      arch/s390/include/uapi/asm/kvm*
9711 F:      arch/s390/kernel/uv.c
9712 F:      arch/s390/kvm/
9713 F:      arch/s390/mm/gmap.c
9714 F:      tools/testing/selftests/kvm/*/s390x/
9715 F:      tools/testing/selftests/kvm/s390x/
9716
9717 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9718 M:      Paolo Bonzini <pbonzini@redhat.com>
9719 R:      Sean Christopherson <seanjc@google.com>
9720 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9721 R:      Wanpeng Li <wanpengli@tencent.com>
9722 R:      Jim Mattson <jmattson@google.com>
9723 R:      Joerg Roedel <joro@8bytes.org>
9724 L:      kvm@vger.kernel.org
9725 S:      Supported
9726 W:      http://www.linux-kvm.org
9727 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9728 F:      arch/x86/include/asm/kvm*
9729 F:      arch/x86/include/asm/pvclock-abi.h
9730 F:      arch/x86/include/asm/svm.h
9731 F:      arch/x86/include/asm/vmx*.h
9732 F:      arch/x86/include/uapi/asm/kvm*
9733 F:      arch/x86/include/uapi/asm/svm.h
9734 F:      arch/x86/include/uapi/asm/vmx.h
9735 F:      arch/x86/kernel/kvm.c
9736 F:      arch/x86/kernel/kvmclock.c
9737 F:      arch/x86/kvm/
9738 F:      arch/x86/kvm/*/
9739
9740 KERNFS
9741 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9742 M:      Tejun Heo <tj@kernel.org>
9743 S:      Supported
9744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9745 F:      fs/kernfs/
9746 F:      include/linux/kernfs.h
9747
9748 KEXEC
9749 M:      Eric Biederman <ebiederm@xmission.com>
9750 L:      kexec@lists.infradead.org
9751 S:      Maintained
9752 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9753 F:      include/linux/kexec.h
9754 F:      include/uapi/linux/kexec.h
9755 F:      kernel/kexec*
9756
9757 KEYS-ENCRYPTED
9758 M:      Mimi Zohar <zohar@linux.ibm.com>
9759 L:      linux-integrity@vger.kernel.org
9760 L:      keyrings@vger.kernel.org
9761 S:      Supported
9762 F:      Documentation/security/keys/trusted-encrypted.rst
9763 F:      include/keys/encrypted-type.h
9764 F:      security/keys/encrypted-keys/
9765
9766 KEYS-TRUSTED
9767 M:      James Bottomley <jejb@linux.ibm.com>
9768 M:      Jarkko Sakkinen <jarkko@kernel.org>
9769 M:      Mimi Zohar <zohar@linux.ibm.com>
9770 L:      linux-integrity@vger.kernel.org
9771 L:      keyrings@vger.kernel.org
9772 S:      Supported
9773 F:      Documentation/security/keys/trusted-encrypted.rst
9774 F:      include/keys/trusted-type.h
9775 F:      include/keys/trusted_tpm.h
9776 F:      security/keys/trusted-keys/
9777
9778 KEYS/KEYRINGS
9779 M:      David Howells <dhowells@redhat.com>
9780 M:      Jarkko Sakkinen <jarkko@kernel.org>
9781 L:      keyrings@vger.kernel.org
9782 S:      Maintained
9783 F:      Documentation/security/keys/core.rst
9784 F:      include/keys/
9785 F:      include/linux/key-type.h
9786 F:      include/linux/key.h
9787 F:      include/linux/keyctl.h
9788 F:      include/uapi/linux/keyctl.h
9789 F:      security/keys/
9790
9791 KFIFO
9792 M:      Stefani Seibold <stefani@seibold.net>
9793 S:      Maintained
9794 F:      include/linux/kfifo.h
9795 F:      lib/kfifo.c
9796 F:      samples/kfifo/
9797
9798 KGDB / KDB /debug_core
9799 M:      Jason Wessel <jason.wessel@windriver.com>
9800 M:      Daniel Thompson <daniel.thompson@linaro.org>
9801 R:      Douglas Anderson <dianders@chromium.org>
9802 L:      kgdb-bugreport@lists.sourceforge.net
9803 S:      Maintained
9804 W:      http://kgdb.wiki.kernel.org/
9805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9806 F:      Documentation/dev-tools/kgdb.rst
9807 F:      drivers/misc/kgdbts.c
9808 F:      drivers/tty/serial/kgdboc.c
9809 F:      include/linux/kdb.h
9810 F:      include/linux/kgdb.h
9811 F:      kernel/debug/
9812
9813 KHADAS MCU MFD DRIVER
9814 M:      Neil Armstrong <narmstrong@baylibre.com>
9815 L:      linux-amlogic@lists.infradead.org
9816 S:      Maintained
9817 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9818 F:      drivers/mfd/khadas-mcu.c
9819 F:      include/linux/mfd/khadas-mcu.h
9820 F:      drivers/thermal/khadas_mcu_fan.c
9821
9822 KMEMLEAK
9823 M:      Catalin Marinas <catalin.marinas@arm.com>
9824 S:      Maintained
9825 F:      Documentation/dev-tools/kmemleak.rst
9826 F:      include/linux/kmemleak.h
9827 F:      mm/kmemleak.c
9828 F:      samples/kmemleak/kmemleak-test.c
9829
9830 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9831 M:      Luis Chamberlain <mcgrof@kernel.org>
9832 L:      linux-kernel@vger.kernel.org
9833 S:      Maintained
9834 F:      include/linux/kmod.h
9835 F:      kernel/kmod.c
9836 F:      lib/test_kmod.c
9837 F:      tools/testing/selftests/kmod/
9838
9839 KPROBES
9840 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9841 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9842 M:      "David S. Miller" <davem@davemloft.net>
9843 M:      Masami Hiramatsu <mhiramat@kernel.org>
9844 S:      Maintained
9845 F:      Documentation/trace/kprobes.rst
9846 F:      include/asm-generic/kprobes.h
9847 F:      include/linux/kprobes.h
9848 F:      kernel/kprobes.c
9849
9850 KS0108 LCD CONTROLLER DRIVER
9851 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9852 S:      Maintained
9853 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9854 F:      drivers/auxdisplay/ks0108.c
9855 F:      include/linux/ks0108.h
9856
9857 KTD253 BACKLIGHT DRIVER
9858 M:      Linus Walleij <linus.walleij@linaro.org>
9859 S:      Maintained
9860 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9861 F:      drivers/video/backlight/ktd253-backlight.c
9862
9863 L3MDEV
9864 M:      David Ahern <dsahern@kernel.org>
9865 L:      netdev@vger.kernel.org
9866 S:      Maintained
9867 F:      include/net/l3mdev.h
9868 F:      net/l3mdev
9869
9870 L7 BPF FRAMEWORK
9871 M:      John Fastabend <john.fastabend@gmail.com>
9872 M:      Daniel Borkmann <daniel@iogearbox.net>
9873 M:      Jakub Sitnicki <jakub@cloudflare.com>
9874 M:      Lorenz Bauer <lmb@cloudflare.com>
9875 L:      netdev@vger.kernel.org
9876 L:      bpf@vger.kernel.org
9877 S:      Maintained
9878 F:      include/linux/skmsg.h
9879 F:      net/core/skmsg.c
9880 F:      net/core/sock_map.c
9881 F:      net/ipv4/tcp_bpf.c
9882 F:      net/ipv4/udp_bpf.c
9883
9884 LANTIQ / INTEL Ethernet drivers
9885 M:      Hauke Mehrtens <hauke@hauke-m.de>
9886 L:      netdev@vger.kernel.org
9887 S:      Maintained
9888 F:      drivers/net/dsa/lantiq_gswip.c
9889 F:      drivers/net/dsa/lantiq_pce.h
9890 F:      drivers/net/ethernet/lantiq_xrx200.c
9891 F:      net/dsa/tag_gswip.c
9892
9893 LANTIQ MIPS ARCHITECTURE
9894 M:      John Crispin <john@phrozen.org>
9895 L:      linux-mips@vger.kernel.org
9896 S:      Maintained
9897 F:      arch/mips/lantiq
9898 F:      drivers/soc/lantiq
9899
9900 LASI 53c700 driver for PARISC
9901 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9902 L:      linux-scsi@vger.kernel.org
9903 S:      Maintained
9904 F:      Documentation/scsi/53c700.rst
9905 F:      drivers/scsi/53c700*
9906
9907 LEAKING_ADDRESSES
9908 M:      Tobin C. Harding <me@tobin.cc>
9909 M:      Tycho Andersen <tycho@tycho.pizza>
9910 L:      linux-hardening@vger.kernel.org
9911 S:      Maintained
9912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9913 F:      scripts/leaking_addresses.pl
9914
9915 LED SUBSYSTEM
9916 M:      Pavel Machek <pavel@ucw.cz>
9917 R:      Dan Murphy <dmurphy@ti.com>
9918 L:      linux-leds@vger.kernel.org
9919 S:      Maintained
9920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9921 F:      Documentation/devicetree/bindings/leds/
9922 F:      drivers/leds/
9923 F:      include/linux/leds.h
9924
9925 LEGACY EEPROM DRIVER
9926 M:      Jean Delvare <jdelvare@suse.com>
9927 S:      Maintained
9928 F:      Documentation/misc-devices/eeprom.rst
9929 F:      drivers/misc/eeprom/eeprom.c
9930
9931 LEGO MINDSTORMS EV3
9932 R:      David Lechner <david@lechnology.com>
9933 S:      Maintained
9934 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9935 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9936 F:      drivers/power/supply/lego_ev3_battery.c
9937
9938 LEGO USB Tower driver
9939 M:      Juergen Stuber <starblue@users.sourceforge.net>
9940 L:      legousb-devel@lists.sourceforge.net
9941 S:      Maintained
9942 W:      http://legousb.sourceforge.net/
9943 F:      drivers/usb/misc/legousbtower.c
9944
9945 LG LAPTOP EXTRAS
9946 M:      Matan Ziv-Av <matan@svgalib.org>
9947 L:      platform-driver-x86@vger.kernel.org
9948 S:      Maintained
9949 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9950 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9951 F:      drivers/platform/x86/lg-laptop.c
9952
9953 LG2160 MEDIA DRIVER
9954 M:      Michael Krufky <mkrufky@linuxtv.org>
9955 L:      linux-media@vger.kernel.org
9956 S:      Maintained
9957 W:      https://linuxtv.org
9958 W:      http://github.com/mkrufky
9959 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9960 T:      git git://linuxtv.org/mkrufky/tuners.git
9961 F:      drivers/media/dvb-frontends/lg2160.*
9962
9963 LGDT3305 MEDIA DRIVER
9964 M:      Michael Krufky <mkrufky@linuxtv.org>
9965 L:      linux-media@vger.kernel.org
9966 S:      Maintained
9967 W:      https://linuxtv.org
9968 W:      http://github.com/mkrufky
9969 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9970 T:      git git://linuxtv.org/mkrufky/tuners.git
9971 F:      drivers/media/dvb-frontends/lgdt3305.*
9972
9973 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9974 M:      Viresh Kumar <vireshk@kernel.org>
9975 L:      linux-ide@vger.kernel.org
9976 S:      Maintained
9977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9978 F:      drivers/ata/pata_arasan_cf.c
9979 F:      include/linux/pata_arasan_cf_data.h
9980
9981 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9982 M:      Linus Walleij <linus.walleij@linaro.org>
9983 L:      linux-ide@vger.kernel.org
9984 S:      Maintained
9985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9986 F:      drivers/ata/pata_ftide010.c
9987 F:      drivers/ata/sata_gemini.c
9988 F:      drivers/ata/sata_gemini.h
9989
9990 LIBATA SATA AHCI PLATFORM devices support
9991 M:      Hans de Goede <hdegoede@redhat.com>
9992 M:      Jens Axboe <axboe@kernel.dk>
9993 L:      linux-ide@vger.kernel.org
9994 S:      Maintained
9995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9996 F:      drivers/ata/ahci_platform.c
9997 F:      drivers/ata/libahci_platform.c
9998 F:      include/linux/ahci_platform.h
9999
10000 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10001 M:      Mikael Pettersson <mikpelinux@gmail.com>
10002 L:      linux-ide@vger.kernel.org
10003 S:      Maintained
10004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10005 F:      drivers/ata/sata_promise.*
10006
10007 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
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:      Documentation/devicetree/bindings/ata/
10013 F:      drivers/ata/
10014 F:      include/linux/ata.h
10015 F:      include/linux/libata.h
10016
10017 LIBLOCKDEP
10018 M:      Sasha Levin <alexander.levin@microsoft.com>
10019 S:      Maintained
10020 F:      tools/lib/lockdep/
10021
10022 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10023 M:      Dan Williams <dan.j.williams@intel.com>
10024 M:      Vishal Verma <vishal.l.verma@intel.com>
10025 M:      Dave Jiang <dave.jiang@intel.com>
10026 L:      linux-nvdimm@lists.01.org
10027 S:      Supported
10028 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10029 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10030 F:      drivers/nvdimm/blk.c
10031 F:      drivers/nvdimm/region_devs.c
10032
10033 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10034 M:      Vishal Verma <vishal.l.verma@intel.com>
10035 M:      Dan Williams <dan.j.williams@intel.com>
10036 M:      Dave Jiang <dave.jiang@intel.com>
10037 L:      linux-nvdimm@lists.01.org
10038 S:      Supported
10039 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10040 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10041 F:      drivers/nvdimm/btt*
10042
10043 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10044 M:      Dan Williams <dan.j.williams@intel.com>
10045 M:      Vishal Verma <vishal.l.verma@intel.com>
10046 M:      Dave Jiang <dave.jiang@intel.com>
10047 L:      linux-nvdimm@lists.01.org
10048 S:      Supported
10049 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10050 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10051 F:      drivers/nvdimm/pmem*
10052
10053 LIBNVDIMM: DEVICETREE BINDINGS
10054 M:      Oliver O'Halloran <oohall@gmail.com>
10055 L:      linux-nvdimm@lists.01.org
10056 S:      Supported
10057 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10058 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10059 F:      drivers/nvdimm/of_pmem.c
10060
10061 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10062 M:      Dan Williams <dan.j.williams@intel.com>
10063 M:      Vishal Verma <vishal.l.verma@intel.com>
10064 M:      Dave Jiang <dave.jiang@intel.com>
10065 M:      Ira Weiny <ira.weiny@intel.com>
10066 L:      linux-nvdimm@lists.01.org
10067 S:      Supported
10068 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10069 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10071 F:      drivers/acpi/nfit/*
10072 F:      drivers/nvdimm/*
10073 F:      include/linux/libnvdimm.h
10074 F:      include/linux/nd.h
10075 F:      include/uapi/linux/ndctl.h
10076 F:      tools/testing/nvdimm/
10077
10078 LICENSES and SPDX stuff
10079 M:      Thomas Gleixner <tglx@linutronix.de>
10080 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10081 L:      linux-spdx@vger.kernel.org
10082 S:      Maintained
10083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10084 F:      COPYING
10085 F:      Documentation/process/license-rules.rst
10086 F:      LICENSES/
10087 F:      scripts/spdxcheck-test.sh
10088 F:      scripts/spdxcheck.py
10089
10090 LIGHTNVM PLATFORM SUPPORT
10091 M:      Matias Bjorling <mb@lightnvm.io>
10092 L:      linux-block@vger.kernel.org
10093 S:      Maintained
10094 W:      http://github/OpenChannelSSD
10095 F:      drivers/lightnvm/
10096 F:      include/linux/lightnvm.h
10097 F:      include/uapi/linux/lightnvm.h
10098
10099 LINEAR RANGES HELPERS
10100 M:      Mark Brown <broonie@kernel.org>
10101 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10102 F:      lib/linear_ranges.c
10103 F:      lib/test_linear_ranges.c
10104 F:      include/linux/linear_range.h
10105
10106 LINUX FOR POWER MACINTOSH
10107 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10108 L:      linuxppc-dev@lists.ozlabs.org
10109 S:      Odd Fixes
10110 F:      arch/powerpc/platforms/powermac/
10111 F:      drivers/macintosh/
10112
10113 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10114 M:      Michael Ellerman <mpe@ellerman.id.au>
10115 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10116 R:      Paul Mackerras <paulus@samba.org>
10117 L:      linuxppc-dev@lists.ozlabs.org
10118 S:      Supported
10119 W:      https://github.com/linuxppc/wiki/wiki
10120 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10122 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10123 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10124 F:      Documentation/devicetree/bindings/powerpc/
10125 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10126 F:      Documentation/powerpc/
10127 F:      arch/powerpc/
10128 F:      drivers/*/*/*pasemi*
10129 F:      drivers/*/*pasemi*
10130 F:      drivers/char/tpm/tpm_ibmvtpm*
10131 F:      drivers/crypto/nx/
10132 F:      drivers/crypto/vmx/
10133 F:      drivers/i2c/busses/i2c-opal.c
10134 F:      drivers/net/ethernet/ibm/ibmveth.*
10135 F:      drivers/net/ethernet/ibm/ibmvnic.*
10136 F:      drivers/pci/hotplug/pnv_php.c
10137 F:      drivers/pci/hotplug/rpa*
10138 F:      drivers/rtc/rtc-opal.c
10139 F:      drivers/scsi/ibmvscsi/
10140 F:      drivers/tty/hvc/hvc_opal.c
10141 F:      drivers/watchdog/wdrtas.c
10142 F:      tools/testing/selftests/powerpc
10143 N:      /pmac
10144 N:      powermac
10145 N:      powernv
10146 N:      [^a-z0-9]ps3
10147 N:      pseries
10148
10149 LINUX FOR POWERPC EMBEDDED MPC5XXX
10150 M:      Anatolij Gustschin <agust@denx.de>
10151 L:      linuxppc-dev@lists.ozlabs.org
10152 S:      Odd Fixes
10153 F:      arch/powerpc/platforms/512x/
10154 F:      arch/powerpc/platforms/52xx/
10155
10156 LINUX FOR POWERPC EMBEDDED PPC4XX
10157 L:      linuxppc-dev@lists.ozlabs.org
10158 S:      Orphan
10159 F:      arch/powerpc/platforms/40x/
10160 F:      arch/powerpc/platforms/44x/
10161
10162 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10163 M:      Scott Wood <oss@buserror.net>
10164 L:      linuxppc-dev@lists.ozlabs.org
10165 S:      Odd fixes
10166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10167 F:      Documentation/devicetree/bindings/powerpc/fsl/
10168 F:      arch/powerpc/platforms/83xx/
10169 F:      arch/powerpc/platforms/85xx/
10170
10171 LINUX FOR POWERPC EMBEDDED PPC8XX
10172 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10173 L:      linuxppc-dev@lists.ozlabs.org
10174 S:      Maintained
10175 F:      arch/powerpc/platforms/8xx/
10176
10177 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10178 M:      Kees Cook <keescook@chromium.org>
10179 S:      Maintained
10180 F:      drivers/misc/lkdtm/*
10181 F:      tools/testing/selftests/lkdtm/*
10182
10183 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10184 M:      Alan Stern <stern@rowland.harvard.edu>
10185 M:      Andrea Parri <parri.andrea@gmail.com>
10186 M:      Will Deacon <will@kernel.org>
10187 M:      Peter Zijlstra <peterz@infradead.org>
10188 M:      Boqun Feng <boqun.feng@gmail.com>
10189 M:      Nicholas Piggin <npiggin@gmail.com>
10190 M:      David Howells <dhowells@redhat.com>
10191 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10192 M:      Luc Maranget <luc.maranget@inria.fr>
10193 M:      "Paul E. McKenney" <paulmck@kernel.org>
10194 R:      Akira Yokosawa <akiyks@gmail.com>
10195 R:      Daniel Lustig <dlustig@nvidia.com>
10196 R:      Joel Fernandes <joel@joelfernandes.org>
10197 L:      linux-kernel@vger.kernel.org
10198 L:      linux-arch@vger.kernel.org
10199 S:      Supported
10200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10201 F:      Documentation/atomic_bitops.txt
10202 F:      Documentation/atomic_t.txt
10203 F:      Documentation/core-api/refcount-vs-atomic.rst
10204 F:      Documentation/litmus-tests/
10205 F:      Documentation/memory-barriers.txt
10206 F:      tools/memory-model/
10207
10208 LIS3LV02D ACCELEROMETER DRIVER
10209 M:      Eric Piel <eric.piel@tremplin-utc.net>
10210 S:      Maintained
10211 F:      Documentation/misc-devices/lis3lv02d.rst
10212 F:      drivers/misc/lis3lv02d/
10213 F:      drivers/platform/x86/hp_accel.c
10214
10215 LIST KUNIT TEST
10216 M:      David Gow <davidgow@google.com>
10217 L:      linux-kselftest@vger.kernel.org
10218 L:      kunit-dev@googlegroups.com
10219 S:      Maintained
10220 F:      lib/list-test.c
10221
10222 LITEX PLATFORM
10223 M:      Karol Gugala <kgugala@antmicro.com>
10224 M:      Mateusz Holenko <mholenko@antmicro.com>
10225 S:      Maintained
10226 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10227 F:      arch/openrisc/boot/dts/or1klitex.dts
10228 F:      drivers/soc/litex/litex_soc_ctrl.c
10229 F:      drivers/tty/serial/liteuart.c
10230 F:      include/linux/litex.h
10231
10232 LIVE PATCHING
10233 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10234 M:      Jiri Kosina <jikos@kernel.org>
10235 M:      Miroslav Benes <mbenes@suse.cz>
10236 M:      Petr Mladek <pmladek@suse.com>
10237 R:      Joe Lawrence <joe.lawrence@redhat.com>
10238 L:      live-patching@vger.kernel.org
10239 S:      Maintained
10240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10241 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10242 F:      Documentation/livepatch/
10243 F:      arch/powerpc/include/asm/livepatch.h
10244 F:      arch/s390/include/asm/livepatch.h
10245 F:      arch/x86/include/asm/livepatch.h
10246 F:      include/linux/livepatch.h
10247 F:      kernel/livepatch/
10248 F:      lib/livepatch/
10249 F:      samples/livepatch/
10250 F:      tools/testing/selftests/livepatch/
10251
10252 LLC (802.2)
10253 L:      netdev@vger.kernel.org
10254 S:      Odd fixes
10255 F:      include/linux/llc.h
10256 F:      include/net/llc*
10257 F:      include/uapi/linux/llc.h
10258 F:      net/llc/
10259
10260 LM73 HARDWARE MONITOR DRIVER
10261 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10262 L:      linux-hwmon@vger.kernel.org
10263 S:      Maintained
10264 F:      drivers/hwmon/lm73.c
10265
10266 LM78 HARDWARE MONITOR DRIVER
10267 M:      Jean Delvare <jdelvare@suse.com>
10268 L:      linux-hwmon@vger.kernel.org
10269 S:      Maintained
10270 F:      Documentation/hwmon/lm78.rst
10271 F:      drivers/hwmon/lm78.c
10272
10273 LM83 HARDWARE MONITOR DRIVER
10274 M:      Jean Delvare <jdelvare@suse.com>
10275 L:      linux-hwmon@vger.kernel.org
10276 S:      Maintained
10277 F:      Documentation/hwmon/lm83.rst
10278 F:      drivers/hwmon/lm83.c
10279
10280 LM90 HARDWARE MONITOR DRIVER
10281 M:      Jean Delvare <jdelvare@suse.com>
10282 L:      linux-hwmon@vger.kernel.org
10283 S:      Maintained
10284 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10285 F:      Documentation/hwmon/lm90.rst
10286 F:      drivers/hwmon/lm90.c
10287 F:      include/dt-bindings/thermal/lm90.h
10288
10289 LM95234 HARDWARE MONITOR DRIVER
10290 M:      Guenter Roeck <linux@roeck-us.net>
10291 L:      linux-hwmon@vger.kernel.org
10292 S:      Maintained
10293 F:      Documentation/hwmon/lm95234.rst
10294 F:      drivers/hwmon/lm95234.c
10295
10296 LME2510 MEDIA DRIVER
10297 M:      Malcolm Priestley <tvboxspy@gmail.com>
10298 L:      linux-media@vger.kernel.org
10299 S:      Maintained
10300 W:      https://linuxtv.org
10301 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10302 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10303
10304 LOADPIN SECURITY MODULE
10305 M:      Kees Cook <keescook@chromium.org>
10306 S:      Supported
10307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10308 F:      Documentation/admin-guide/LSM/LoadPin.rst
10309 F:      security/loadpin/
10310
10311 LOCKING PRIMITIVES
10312 M:      Peter Zijlstra <peterz@infradead.org>
10313 M:      Ingo Molnar <mingo@redhat.com>
10314 M:      Will Deacon <will@kernel.org>
10315 L:      linux-kernel@vger.kernel.org
10316 S:      Maintained
10317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10318 F:      Documentation/locking/
10319 F:      arch/*/include/asm/spinlock*.h
10320 F:      include/linux/lockdep.h
10321 F:      include/linux/mutex*.h
10322 F:      include/linux/rwlock*.h
10323 F:      include/linux/rwsem*.h
10324 F:      include/linux/seqlock.h
10325 F:      include/linux/spinlock*.h
10326 F:      kernel/locking/
10327 F:      lib/locking*.[ch]
10328 X:      kernel/locking/locktorture.c
10329
10330 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10331 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10332 L:      linux-ntfs-dev@lists.sourceforge.net
10333 S:      Maintained
10334 W:      http://www.linux-ntfs.org/content/view/19/37/
10335 F:      Documentation/admin-guide/ldm.rst
10336 F:      block/partitions/ldm.*
10337
10338 LOGITECH HID GAMING KEYBOARDS
10339 M:      Hans de Goede <hdegoede@redhat.com>
10340 L:      linux-input@vger.kernel.org
10341 S:      Maintained
10342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10343 F:      drivers/hid/hid-lg-g15.c
10344
10345 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10346 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10347 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10348 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10349 L:      MPT-FusionLinux.pdl@broadcom.com
10350 L:      linux-scsi@vger.kernel.org
10351 S:      Supported
10352 W:      http://www.avagotech.com/support/
10353 F:      drivers/message/fusion/
10354 F:      drivers/scsi/mpt3sas/
10355
10356 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10357 M:      Matthew Wilcox <willy@infradead.org>
10358 L:      linux-scsi@vger.kernel.org
10359 S:      Maintained
10360 F:      drivers/scsi/sym53c8xx_2/
10361
10362 LTC1660 DAC DRIVER
10363 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10364 L:      linux-iio@vger.kernel.org
10365 S:      Maintained
10366 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10367 F:      drivers/iio/dac/ltc1660.c
10368
10369 LTC2947 HARDWARE MONITOR DRIVER
10370 M:      Nuno Sá <nuno.sa@analog.com>
10371 L:      linux-hwmon@vger.kernel.org
10372 S:      Supported
10373 W:      http://ez.analog.com/community/linux-device-drivers
10374 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10375 F:      drivers/hwmon/ltc2947-core.c
10376 F:      drivers/hwmon/ltc2947-i2c.c
10377 F:      drivers/hwmon/ltc2947-spi.c
10378 F:      drivers/hwmon/ltc2947.h
10379
10380 LTC2983 IIO TEMPERATURE DRIVER
10381 M:      Nuno Sá <nuno.sa@analog.com>
10382 L:      linux-iio@vger.kernel.org
10383 S:      Supported
10384 W:      http://ez.analog.com/community/linux-device-drivers
10385 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10386 F:      drivers/iio/temperature/ltc2983.c
10387
10388 LTC4261 HARDWARE MONITOR DRIVER
10389 M:      Guenter Roeck <linux@roeck-us.net>
10390 L:      linux-hwmon@vger.kernel.org
10391 S:      Maintained
10392 F:      Documentation/hwmon/ltc4261.rst
10393 F:      drivers/hwmon/ltc4261.c
10394
10395 LTC4306 I2C MULTIPLEXER DRIVER
10396 M:      Michael Hennerich <michael.hennerich@analog.com>
10397 L:      linux-i2c@vger.kernel.org
10398 S:      Supported
10399 W:      http://ez.analog.com/community/linux-device-drivers
10400 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10401 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10402
10403 LTP (Linux Test Project)
10404 M:      Mike Frysinger <vapier@gentoo.org>
10405 M:      Cyril Hrubis <chrubis@suse.cz>
10406 M:      Wanlong Gao <wanlong.gao@gmail.com>
10407 M:      Jan Stancek <jstancek@redhat.com>
10408 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10409 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10410 L:      ltp@lists.linux.it (subscribers-only)
10411 S:      Maintained
10412 W:      http://linux-test-project.github.io/
10413 T:      git git://github.com/linux-test-project/ltp.git
10414
10415 LYNX PCS MODULE
10416 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10417 L:      netdev@vger.kernel.org
10418 S:      Supported
10419 F:      drivers/net/pcs/pcs-lynx.c
10420 F:      include/linux/pcs-lynx.h
10421
10422 M68K ARCHITECTURE
10423 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10424 L:      linux-m68k@lists.linux-m68k.org
10425 S:      Maintained
10426 W:      http://www.linux-m68k.org/
10427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10428 F:      arch/m68k/
10429 F:      drivers/zorro/
10430
10431 M68K ON APPLE MACINTOSH
10432 M:      Joshua Thompson <funaho@jurai.org>
10433 L:      linux-m68k@lists.linux-m68k.org
10434 S:      Maintained
10435 W:      http://www.mac.linux-m68k.org/
10436 F:      arch/m68k/mac/
10437 F:      drivers/macintosh/adb-iop.c
10438 F:      drivers/macintosh/via-macii.c
10439
10440 M68K ON HP9000/300
10441 M:      Philip Blundell <philb@gnu.org>
10442 S:      Maintained
10443 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10444 F:      arch/m68k/hp300/
10445
10446 M88DS3103 MEDIA DRIVER
10447 M:      Antti Palosaari <crope@iki.fi>
10448 L:      linux-media@vger.kernel.org
10449 S:      Maintained
10450 W:      https://linuxtv.org
10451 W:      http://palosaari.fi/linux/
10452 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10453 T:      git git://linuxtv.org/anttip/media_tree.git
10454 F:      drivers/media/dvb-frontends/m88ds3103*
10455
10456 M88RS2000 MEDIA DRIVER
10457 M:      Malcolm Priestley <tvboxspy@gmail.com>
10458 L:      linux-media@vger.kernel.org
10459 S:      Maintained
10460 W:      https://linuxtv.org
10461 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10462 F:      drivers/media/dvb-frontends/m88rs2000*
10463
10464 MA901 MASTERKIT USB FM RADIO DRIVER
10465 M:      Alexey Klimov <klimov.linux@gmail.com>
10466 L:      linux-media@vger.kernel.org
10467 S:      Maintained
10468 T:      git git://linuxtv.org/media_tree.git
10469 F:      drivers/media/radio/radio-ma901.c
10470
10471 MAC80211
10472 M:      Johannes Berg <johannes@sipsolutions.net>
10473 L:      linux-wireless@vger.kernel.org
10474 S:      Maintained
10475 W:      https://wireless.wiki.kernel.org/
10476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10478 F:      Documentation/networking/mac80211-injection.rst
10479 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10480 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10481 F:      include/net/mac80211.h
10482 F:      net/mac80211/
10483
10484 MAILBOX API
10485 M:      Jassi Brar <jassisinghbrar@gmail.com>
10486 L:      linux-kernel@vger.kernel.org
10487 S:      Maintained
10488 F:      drivers/mailbox/
10489 F:      include/linux/mailbox_client.h
10490 F:      include/linux/mailbox_controller.h
10491
10492 MAILBOX ARM MHUv2
10493 M:      Viresh Kumar <viresh.kumar@linaro.org>
10494 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
10495 L:      linux-kernel@vger.kernel.org
10496 S:      Maintained
10497 F:      drivers/mailbox/arm_mhuv2.c
10498 F:      include/linux/mailbox/arm_mhuv2_message.h
10499 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
10500
10501 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10502 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10503 L:      linux-man@vger.kernel.org
10504 S:      Maintained
10505 W:      http://www.kernel.org/doc/man-pages
10506
10507 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10508 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10509 L:      linux-mips@vger.kernel.org
10510 S:      Maintained
10511 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10512
10513 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10514 M:      Andrew Lunn <andrew@lunn.ch>
10515 M:      Vivien Didelot <vivien.didelot@gmail.com>
10516 L:      netdev@vger.kernel.org
10517 S:      Maintained
10518 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10519 F:      Documentation/networking/devlink/mv88e6xxx.rst
10520 F:      drivers/net/dsa/mv88e6xxx/
10521 F:      include/linux/platform_data/mv88e6xxx.h
10522
10523 MARVELL ARMADA 3700 PHY DRIVERS
10524 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10525 S:      Maintained
10526 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10527 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10528 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10529 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10530
10531 MARVELL ARMADA DRM SUPPORT
10532 M:      Russell King <linux@armlinux.org.uk>
10533 S:      Maintained
10534 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10535 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10536 F:      Documentation/devicetree/bindings/display/armada/
10537 F:      drivers/gpu/drm/armada/
10538 F:      include/uapi/drm/armada_drm.h
10539
10540 MARVELL CRYPTO DRIVER
10541 M:      Boris Brezillon <bbrezillon@kernel.org>
10542 M:      Arnaud Ebalard <arno@natisbad.org>
10543 M:      Srujana Challa <schalla@marvell.com>
10544 L:      linux-crypto@vger.kernel.org
10545 S:      Maintained
10546 F:      drivers/crypto/marvell/
10547 F:      include/linux/soc/marvell/octeontx2/
10548
10549 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10550 M:      Mirko Lindner <mlindner@marvell.com>
10551 M:      Stephen Hemminger <stephen@networkplumber.org>
10552 L:      netdev@vger.kernel.org
10553 S:      Maintained
10554 F:      drivers/net/ethernet/marvell/sk*
10555
10556 MARVELL LIBERTAS WIRELESS DRIVER
10557 L:      libertas-dev@lists.infradead.org
10558 S:      Orphan
10559 F:      drivers/net/wireless/marvell/libertas/
10560
10561 MARVELL MACCHIATOBIN SUPPORT
10562 M:      Russell King <linux@armlinux.org.uk>
10563 L:      linux-arm-kernel@lists.infradead.org
10564 S:      Maintained
10565 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10566
10567 MARVELL MV643XX ETHERNET DRIVER
10568 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10569 L:      netdev@vger.kernel.org
10570 S:      Maintained
10571 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10572 F:      include/linux/mv643xx.h
10573
10574 MARVELL MV88X3310 PHY DRIVER
10575 M:      Russell King <linux@armlinux.org.uk>
10576 L:      netdev@vger.kernel.org
10577 S:      Maintained
10578 F:      drivers/net/phy/marvell10g.c
10579
10580 MARVELL MVEBU THERMAL DRIVER
10581 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10582 S:      Maintained
10583 F:      drivers/thermal/armada_thermal.c
10584
10585 MARVELL MVNETA ETHERNET DRIVER
10586 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10587 L:      netdev@vger.kernel.org
10588 S:      Maintained
10589 F:      drivers/net/ethernet/marvell/mvneta.*
10590
10591 MARVELL MVPP2 ETHERNET DRIVER
10592 M:      Marcin Wojtas <mw@semihalf.com>
10593 M:      Russell King <linux@armlinux.org.uk>
10594 L:      netdev@vger.kernel.org
10595 S:      Maintained
10596 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10597 F:      drivers/net/ethernet/marvell/mvpp2/
10598
10599 MARVELL MWIFIEX WIRELESS DRIVER
10600 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10601 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10602 M:      Xinming Hu <huxinming820@gmail.com>
10603 L:      linux-wireless@vger.kernel.org
10604 S:      Maintained
10605 F:      drivers/net/wireless/marvell/mwifiex/
10606
10607 MARVELL MWL8K WIRELESS DRIVER
10608 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10609 L:      linux-wireless@vger.kernel.org
10610 S:      Odd Fixes
10611 F:      drivers/net/wireless/marvell/mwl8k.c
10612
10613 MARVELL NAND CONTROLLER DRIVER
10614 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10615 L:      linux-mtd@lists.infradead.org
10616 S:      Maintained
10617 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10618 F:      drivers/mtd/nand/raw/marvell_nand.c
10619
10620 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10621 M:      Sunil Goutham <sgoutham@marvell.com>
10622 M:      Geetha sowjanya <gakula@marvell.com>
10623 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10624 M:      hariprasad <hkelam@marvell.com>
10625 L:      netdev@vger.kernel.org
10626 S:      Supported
10627 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10628 F:      include/linux/soc/marvell/octeontx2/
10629
10630 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10631 M:      Sunil Goutham <sgoutham@marvell.com>
10632 M:      Linu Cherian <lcherian@marvell.com>
10633 M:      Geetha sowjanya <gakula@marvell.com>
10634 M:      Jerin Jacob <jerinj@marvell.com>
10635 M:      hariprasad <hkelam@marvell.com>
10636 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10637 L:      netdev@vger.kernel.org
10638 S:      Supported
10639 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10640 F:      drivers/net/ethernet/marvell/octeontx2/af/
10641
10642 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10643 M:      Vadym Kochan <vkochan@marvell.com>
10644 M:      Taras Chornyi <tchornyi@marvell.com>
10645 S:      Supported
10646 W:      https://github.com/Marvell-switching/switchdev-prestera
10647 F:      drivers/net/ethernet/marvell/prestera/
10648
10649 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10650 M:      Nicolas Pitre <nico@fluxnic.net>
10651 S:      Odd Fixes
10652 F:      drivers/mmc/host/mvsdio.*
10653
10654 MARVELL USB MDIO CONTROLLER DRIVER
10655 M:      Tobias Waldekranz <tobias@waldekranz.com>
10656 L:      netdev@vger.kernel.org
10657 S:      Maintained
10658 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10659 F:      drivers/net/mdio/mdio-mvusb.c
10660
10661 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10662 M:      Hu Ziji <huziji@marvell.com>
10663 L:      linux-mmc@vger.kernel.org
10664 S:      Supported
10665 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10666 F:      drivers/mmc/host/sdhci-xenon*
10667
10668 MATROX FRAMEBUFFER DRIVER
10669 L:      linux-fbdev@vger.kernel.org
10670 S:      Orphan
10671 F:      drivers/video/fbdev/matrox/matroxfb_*
10672 F:      include/uapi/linux/matroxfb.h
10673
10674 MAX16065 HARDWARE MONITOR DRIVER
10675 M:      Guenter Roeck <linux@roeck-us.net>
10676 L:      linux-hwmon@vger.kernel.org
10677 S:      Maintained
10678 F:      Documentation/hwmon/max16065.rst
10679 F:      drivers/hwmon/max16065.c
10680
10681 MAX2175 SDR TUNER DRIVER
10682 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10683 L:      linux-media@vger.kernel.org
10684 S:      Maintained
10685 T:      git git://linuxtv.org/media_tree.git
10686 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10687 F:      Documentation/userspace-api/media/drivers/max2175.rst
10688 F:      drivers/media/i2c/max2175*
10689 F:      include/uapi/linux/max2175.h
10690
10691 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10692 L:      linux-hwmon@vger.kernel.org
10693 S:      Orphan
10694 F:      Documentation/hwmon/max6650.rst
10695 F:      drivers/hwmon/max6650.c
10696
10697 MAX6697 HARDWARE MONITOR DRIVER
10698 M:      Guenter Roeck <linux@roeck-us.net>
10699 L:      linux-hwmon@vger.kernel.org
10700 S:      Maintained
10701 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10702 F:      Documentation/hwmon/max6697.rst
10703 F:      drivers/hwmon/max6697.c
10704 F:      include/linux/platform_data/max6697.h
10705
10706 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10707 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10708 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10709 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10710 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10711 L:      linux-media@vger.kernel.org
10712 S:      Maintained
10713 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10714 F:      drivers/media/i2c/max9286.c
10715
10716 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10717 M:      Peter Rosin <peda@axentia.se>
10718 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10719 S:      Maintained
10720 F:      Documentation/devicetree/bindings/sound/max9860.txt
10721 F:      sound/soc/codecs/max9860.*
10722
10723 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10724 M:      Andreas Klinger <ak@it-klinger.de>
10725 L:      linux-iio@vger.kernel.org
10726 S:      Maintained
10727 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10728 F:      drivers/iio/proximity/mb1232.c
10729
10730 MAXIM MAX77650 PMIC MFD DRIVER
10731 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10732 L:      linux-kernel@vger.kernel.org
10733 S:      Maintained
10734 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10735 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10736 F:      drivers/gpio/gpio-max77650.c
10737 F:      drivers/input/misc/max77650-onkey.c
10738 F:      drivers/leds/leds-max77650.c
10739 F:      drivers/mfd/max77650.c
10740 F:      drivers/power/supply/max77650-charger.c
10741 F:      drivers/regulator/max77650-regulator.c
10742 F:      include/linux/mfd/max77650.h
10743
10744 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10745 M:      Javier Martinez Canillas <javier@dowhile0.org>
10746 L:      linux-kernel@vger.kernel.org
10747 S:      Supported
10748 F:      Documentation/devicetree/bindings/*/*max77802.txt
10749 F:      drivers/regulator/max77802-regulator.c
10750 F:      include/dt-bindings/*/*max77802.h
10751
10752 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10753 M:      Krzysztof Kozlowski <krzk@kernel.org>
10754 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10755 L:      linux-pm@vger.kernel.org
10756 S:      Supported
10757 F:      drivers/power/supply/max14577_charger.c
10758 F:      drivers/power/supply/max77693_charger.c
10759
10760 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10761 M:      Chanwoo Choi <cw00.choi@samsung.com>
10762 M:      Krzysztof Kozlowski <krzk@kernel.org>
10763 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10764 L:      linux-kernel@vger.kernel.org
10765 S:      Supported
10766 F:      Documentation/devicetree/bindings/*/max77686.txt
10767 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10768 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10769 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10770 F:      drivers/*/max14577*.c
10771 F:      drivers/*/max77686*.c
10772 F:      drivers/*/max77693*.c
10773 F:      drivers/clk/clk-max77686.c
10774 F:      drivers/extcon/extcon-max14577.c
10775 F:      drivers/extcon/extcon-max77693.c
10776 F:      drivers/rtc/rtc-max77686.c
10777 F:      include/linux/mfd/max14577*.h
10778 F:      include/linux/mfd/max77686*.h
10779 F:      include/linux/mfd/max77693*.h
10780
10781 MAXIRADIO FM RADIO RECEIVER DRIVER
10782 M:      Hans Verkuil <hverkuil@xs4all.nl>
10783 L:      linux-media@vger.kernel.org
10784 S:      Maintained
10785 W:      https://linuxtv.org
10786 T:      git git://linuxtv.org/media_tree.git
10787 F:      drivers/media/radio/radio-maxiradio*
10788
10789 MCAN MMIO DEVICE DRIVER
10790 M:      Dan Murphy <dmurphy@ti.com>
10791 M:      Pankaj Sharma <pankj.sharma@samsung.com>
10792 L:      linux-can@vger.kernel.org
10793 S:      Maintained
10794 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10795 F:      drivers/net/can/m_can/m_can.c
10796 F:      drivers/net/can/m_can/m_can.h
10797 F:      drivers/net/can/m_can/m_can_platform.c
10798
10799 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10800 M:      Rishi Gupta <gupt21@gmail.com>
10801 L:      linux-i2c@vger.kernel.org
10802 L:      linux-input@vger.kernel.org
10803 S:      Maintained
10804 F:      drivers/hid/hid-mcp2221.c
10805
10806 MCP251XFD SPI-CAN NETWORK DRIVER
10807 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10808 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10809 R:      Thomas Kopp <thomas.kopp@microchip.com>
10810 L:      linux-can@vger.kernel.org
10811 S:      Maintained
10812 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10813 F:      drivers/net/can/spi/mcp251xfd/
10814
10815 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10816 M:      Peter Rosin <peda@axentia.se>
10817 L:      linux-iio@vger.kernel.org
10818 S:      Maintained
10819 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10820 F:      drivers/iio/potentiometer/mcp4018.c
10821 F:      drivers/iio/potentiometer/mcp4531.c
10822
10823 MCR20A IEEE-802.15.4 RADIO DRIVER
10824 M:      Xue Liu <liuxuenetmail@gmail.com>
10825 L:      linux-wpan@vger.kernel.org
10826 S:      Maintained
10827 W:      https://github.com/xueliu/mcr20a-linux
10828 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10829 F:      drivers/net/ieee802154/mcr20a.c
10830 F:      drivers/net/ieee802154/mcr20a.h
10831
10832 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10833 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10834 L:      linux-iio@vger.kernel.org
10835 S:      Maintained
10836 F:      drivers/iio/dac/cio-dac.c
10837
10838 MEDIA CONTROLLER FRAMEWORK
10839 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10840 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10841 L:      linux-media@vger.kernel.org
10842 S:      Supported
10843 W:      https://www.linuxtv.org
10844 T:      git git://linuxtv.org/media_tree.git
10845 F:      drivers/media/mc/
10846 F:      include/media/media-*.h
10847 F:      include/uapi/linux/media.h
10848
10849 MEDIA DRIVER FOR FREESCALE IMX PXP
10850 M:      Philipp Zabel <p.zabel@pengutronix.de>
10851 L:      linux-media@vger.kernel.org
10852 S:      Maintained
10853 T:      git git://linuxtv.org/media_tree.git
10854 F:      drivers/media/platform/imx-pxp.[ch]
10855
10856 MEDIA DRIVERS FOR ASCOT2E
10857 M:      Sergey Kozlov <serjk@netup.ru>
10858 M:      Abylay Ospan <aospan@netup.ru>
10859 L:      linux-media@vger.kernel.org
10860 S:      Supported
10861 W:      https://linuxtv.org
10862 W:      http://netup.tv/
10863 T:      git git://linuxtv.org/media_tree.git
10864 F:      drivers/media/dvb-frontends/ascot2e*
10865
10866 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10867 M:      Jasmin Jessich <jasmin@anw.at>
10868 L:      linux-media@vger.kernel.org
10869 S:      Maintained
10870 W:      https://linuxtv.org
10871 T:      git git://linuxtv.org/media_tree.git
10872 F:      drivers/media/dvb-frontends/cxd2099*
10873
10874 MEDIA DRIVERS FOR CXD2841ER
10875 M:      Sergey Kozlov <serjk@netup.ru>
10876 M:      Abylay Ospan <aospan@netup.ru>
10877 L:      linux-media@vger.kernel.org
10878 S:      Supported
10879 W:      https://linuxtv.org
10880 W:      http://netup.tv/
10881 T:      git git://linuxtv.org/media_tree.git
10882 F:      drivers/media/dvb-frontends/cxd2841er*
10883
10884 MEDIA DRIVERS FOR CXD2880
10885 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10886 L:      linux-media@vger.kernel.org
10887 S:      Supported
10888 W:      http://linuxtv.org/
10889 T:      git git://linuxtv.org/media_tree.git
10890 F:      drivers/media/dvb-frontends/cxd2880/*
10891 F:      drivers/media/spi/cxd2880*
10892
10893 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10894 L:      linux-media@vger.kernel.org
10895 S:      Orphan
10896 W:      https://linuxtv.org
10897 T:      git git://linuxtv.org/media_tree.git
10898 F:      drivers/media/pci/ddbridge/*
10899
10900 MEDIA DRIVERS FOR FREESCALE IMX
10901 M:      Steve Longerbeam <slongerbeam@gmail.com>
10902 M:      Philipp Zabel <p.zabel@pengutronix.de>
10903 L:      linux-media@vger.kernel.org
10904 S:      Maintained
10905 T:      git git://linuxtv.org/media_tree.git
10906 F:      Documentation/admin-guide/media/imx.rst
10907 F:      Documentation/devicetree/bindings/media/imx.txt
10908 F:      drivers/staging/media/imx/
10909 F:      include/linux/imx-media.h
10910 F:      include/media/imx.h
10911
10912 MEDIA DRIVERS FOR FREESCALE IMX7
10913 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10914 L:      linux-media@vger.kernel.org
10915 S:      Maintained
10916 T:      git git://linuxtv.org/media_tree.git
10917 F:      Documentation/admin-guide/media/imx7.rst
10918 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10919 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10920 F:      drivers/staging/media/imx/imx7-media-csi.c
10921 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10922
10923 MEDIA DRIVERS FOR HELENE
10924 M:      Abylay Ospan <aospan@netup.ru>
10925 L:      linux-media@vger.kernel.org
10926 S:      Supported
10927 W:      https://linuxtv.org
10928 W:      http://netup.tv/
10929 T:      git git://linuxtv.org/media_tree.git
10930 F:      drivers/media/dvb-frontends/helene*
10931
10932 MEDIA DRIVERS FOR HORUS3A
10933 M:      Sergey Kozlov <serjk@netup.ru>
10934 M:      Abylay Ospan <aospan@netup.ru>
10935 L:      linux-media@vger.kernel.org
10936 S:      Supported
10937 W:      https://linuxtv.org
10938 W:      http://netup.tv/
10939 T:      git git://linuxtv.org/media_tree.git
10940 F:      drivers/media/dvb-frontends/horus3a*
10941
10942 MEDIA DRIVERS FOR LNBH25
10943 M:      Sergey Kozlov <serjk@netup.ru>
10944 M:      Abylay Ospan <aospan@netup.ru>
10945 L:      linux-media@vger.kernel.org
10946 S:      Supported
10947 W:      https://linuxtv.org
10948 W:      http://netup.tv/
10949 T:      git git://linuxtv.org/media_tree.git
10950 F:      drivers/media/dvb-frontends/lnbh25*
10951
10952 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10953 L:      linux-media@vger.kernel.org
10954 S:      Orphan
10955 W:      https://linuxtv.org
10956 T:      git git://linuxtv.org/media_tree.git
10957 F:      drivers/media/dvb-frontends/mxl5xx*
10958
10959 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10960 M:      Sergey Kozlov <serjk@netup.ru>
10961 M:      Abylay Ospan <aospan@netup.ru>
10962 L:      linux-media@vger.kernel.org
10963 S:      Supported
10964 W:      https://linuxtv.org
10965 W:      http://netup.tv/
10966 T:      git git://linuxtv.org/media_tree.git
10967 F:      drivers/media/pci/netup_unidvb/*
10968
10969 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10970 M:      Dmitry Osipenko <digetx@gmail.com>
10971 L:      linux-media@vger.kernel.org
10972 L:      linux-tegra@vger.kernel.org
10973 S:      Maintained
10974 T:      git git://linuxtv.org/media_tree.git
10975 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10976 F:      drivers/staging/media/tegra-vde/
10977
10978 MEDIA DRIVERS FOR RENESAS - CEU
10979 M:      Jacopo Mondi <jacopo@jmondi.org>
10980 L:      linux-media@vger.kernel.org
10981 L:      linux-renesas-soc@vger.kernel.org
10982 S:      Supported
10983 T:      git git://linuxtv.org/media_tree.git
10984 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10985 F:      drivers/media/platform/renesas-ceu.c
10986 F:      include/media/drv-intf/renesas-ceu.h
10987
10988 MEDIA DRIVERS FOR RENESAS - DRIF
10989 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10990 L:      linux-media@vger.kernel.org
10991 L:      linux-renesas-soc@vger.kernel.org
10992 S:      Supported
10993 T:      git git://linuxtv.org/media_tree.git
10994 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10995 F:      drivers/media/platform/rcar_drif.c
10996
10997 MEDIA DRIVERS FOR RENESAS - FCP
10998 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10999 L:      linux-media@vger.kernel.org
11000 L:      linux-renesas-soc@vger.kernel.org
11001 S:      Supported
11002 T:      git git://linuxtv.org/media_tree.git
11003 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11004 F:      drivers/media/platform/rcar-fcp.c
11005 F:      include/media/rcar-fcp.h
11006
11007 MEDIA DRIVERS FOR RENESAS - FDP1
11008 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11009 L:      linux-media@vger.kernel.org
11010 L:      linux-renesas-soc@vger.kernel.org
11011 S:      Supported
11012 T:      git git://linuxtv.org/media_tree.git
11013 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11014 F:      drivers/media/platform/rcar_fdp1.c
11015
11016 MEDIA DRIVERS FOR RENESAS - VIN
11017 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11018 L:      linux-media@vger.kernel.org
11019 L:      linux-renesas-soc@vger.kernel.org
11020 S:      Supported
11021 T:      git git://linuxtv.org/media_tree.git
11022 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11023 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11024 F:      drivers/media/platform/rcar-vin/
11025
11026 MEDIA DRIVERS FOR RENESAS - VSP1
11027 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11028 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11029 L:      linux-media@vger.kernel.org
11030 L:      linux-renesas-soc@vger.kernel.org
11031 S:      Supported
11032 T:      git git://linuxtv.org/media_tree.git
11033 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11034 F:      drivers/media/platform/vsp1/
11035
11036 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11037 L:      linux-media@vger.kernel.org
11038 S:      Orphan
11039 W:      https://linuxtv.org
11040 T:      git git://linuxtv.org/media_tree.git
11041 F:      drivers/media/dvb-frontends/stv0910*
11042
11043 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11044 L:      linux-media@vger.kernel.org
11045 S:      Orphan
11046 W:      https://linuxtv.org
11047 T:      git git://linuxtv.org/media_tree.git
11048 F:      drivers/media/dvb-frontends/stv6111*
11049
11050 MEDIA DRIVERS FOR STM32 - DCMI
11051 M:      Hugues Fruchet <hugues.fruchet@st.com>
11052 L:      linux-media@vger.kernel.org
11053 S:      Supported
11054 T:      git git://linuxtv.org/media_tree.git
11055 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11056 F:      drivers/media/platform/stm32/stm32-dcmi.c
11057
11058 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11059 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11060 L:      linux-media@vger.kernel.org
11061 S:      Maintained
11062 W:      https://linuxtv.org
11063 Q:      http://patchwork.kernel.org/project/linux-media/list/
11064 T:      git git://linuxtv.org/media_tree.git
11065 F:      Documentation/admin-guide/media/
11066 F:      Documentation/devicetree/bindings/media/
11067 F:      Documentation/driver-api/media/
11068 F:      Documentation/userspace-api/media/
11069 F:      drivers/media/
11070 F:      drivers/staging/media/
11071 F:      include/linux/platform_data/media/
11072 F:      include/media/
11073 F:      include/uapi/linux/dvb/
11074 F:      include/uapi/linux/ivtv*
11075 F:      include/uapi/linux/media.h
11076 F:      include/uapi/linux/meye.h
11077 F:      include/uapi/linux/uvcvideo.h
11078 F:      include/uapi/linux/v4l2-*
11079 F:      include/uapi/linux/videodev2.h
11080
11081 MEDIATEK BLUETOOTH DRIVER
11082 M:      Sean Wang <sean.wang@mediatek.com>
11083 L:      linux-bluetooth@vger.kernel.org
11084 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11085 S:      Maintained
11086 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11087 F:      drivers/bluetooth/btmtkuart.c
11088
11089 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11090 M:      Sean Wang <sean.wang@mediatek.com>
11091 L:      linux-pm@vger.kernel.org
11092 S:      Maintained
11093 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11094 F:      drivers/power/reset/mt6323-poweroff.c
11095
11096 MEDIATEK CIR DRIVER
11097 M:      Sean Wang <sean.wang@mediatek.com>
11098 S:      Maintained
11099 F:      drivers/media/rc/mtk-cir.c
11100
11101 MEDIATEK DMA DRIVER
11102 M:      Sean Wang <sean.wang@mediatek.com>
11103 L:      dmaengine@vger.kernel.org
11104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11105 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11106 S:      Maintained
11107 F:      Documentation/devicetree/bindings/dma/mtk-*
11108 F:      drivers/dma/mediatek/
11109
11110 MEDIATEK ETHERNET DRIVER
11111 M:      Felix Fietkau <nbd@nbd.name>
11112 M:      John Crispin <john@phrozen.org>
11113 M:      Sean Wang <sean.wang@mediatek.com>
11114 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11115 L:      netdev@vger.kernel.org
11116 S:      Maintained
11117 F:      drivers/net/ethernet/mediatek/
11118
11119 MEDIATEK I2C CONTROLLER DRIVER
11120 M:      Qii Wang <qii.wang@mediatek.com>
11121 L:      linux-i2c@vger.kernel.org
11122 S:      Maintained
11123 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11124 F:      drivers/i2c/busses/i2c-mt65xx.c
11125
11126 MEDIATEK JPEG DRIVER
11127 M:      Rick Chang <rick.chang@mediatek.com>
11128 M:      Bin Liu <bin.liu@mediatek.com>
11129 S:      Supported
11130 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11131 F:      drivers/media/platform/mtk-jpeg/
11132
11133 MEDIATEK MDP DRIVER
11134 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11135 M:      Houlong Wei <houlong.wei@mediatek.com>
11136 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11137 S:      Supported
11138 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11139 F:      drivers/media/platform/mtk-mdp/
11140 F:      drivers/media/platform/mtk-vpu/
11141
11142 MEDIATEK MEDIA DRIVER
11143 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11144 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11145 S:      Supported
11146 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11147 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11148 F:      drivers/media/platform/mtk-vcodec/
11149 F:      drivers/media/platform/mtk-vpu/
11150
11151 MEDIATEK MMC/SD/SDIO DRIVER
11152 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11153 S:      Maintained
11154 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11155 F:      drivers/mmc/host/mtk-sd.c
11156
11157 MEDIATEK MT76 WIRELESS LAN DRIVER
11158 M:      Felix Fietkau <nbd@nbd.name>
11159 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11160 R:      Ryder Lee <ryder.lee@mediatek.com>
11161 L:      linux-wireless@vger.kernel.org
11162 S:      Maintained
11163 F:      drivers/net/wireless/mediatek/mt76/
11164
11165 MEDIATEK MT7601U WIRELESS LAN DRIVER
11166 M:      Jakub Kicinski <kubakici@wp.pl>
11167 L:      linux-wireless@vger.kernel.org
11168 S:      Maintained
11169 F:      drivers/net/wireless/mediatek/mt7601u/
11170
11171 MEDIATEK MT7621/28/88 I2C DRIVER
11172 M:      Stefan Roese <sr@denx.de>
11173 L:      linux-i2c@vger.kernel.org
11174 S:      Maintained
11175 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11176 F:      drivers/i2c/busses/i2c-mt7621.c
11177
11178 MEDIATEK MT7621 PHY PCI DRIVER
11179 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11180 S:      Maintained
11181 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11182 F:      drivers/phy/ralink/phy-mt7621-pci.c
11183
11184 MEDIATEK NAND CONTROLLER DRIVER
11185 L:      linux-mtd@lists.infradead.org
11186 S:      Orphan
11187 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11188 F:      drivers/mtd/nand/raw/mtk_*
11189
11190 MEDIATEK PMIC LED DRIVER
11191 M:      Sean Wang <sean.wang@mediatek.com>
11192 S:      Maintained
11193 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11194 F:      drivers/leds/leds-mt6323.c
11195
11196 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11197 M:      Sean Wang <sean.wang@mediatek.com>
11198 S:      Maintained
11199 F:      drivers/char/hw_random/mtk-rng.c
11200
11201 MEDIATEK SWITCH DRIVER
11202 M:      Sean Wang <sean.wang@mediatek.com>
11203 M:      Landen Chao <Landen.Chao@mediatek.com>
11204 L:      netdev@vger.kernel.org
11205 S:      Maintained
11206 F:      drivers/net/dsa/mt7530.*
11207 F:      net/dsa/tag_mtk.c
11208
11209 MEDIATEK USB3 DRD IP DRIVER
11210 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11211 L:      linux-usb@vger.kernel.org
11212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11213 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11214 S:      Maintained
11215 F:      drivers/usb/mtu3/
11216
11217 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11218 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11219 M:      Martin Donnelly <martin.donnelly@ge.com>
11220 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11221 S:      Maintained
11222 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11223 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11224
11225 MEGARAID SCSI/SAS DRIVERS
11226 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11227 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11228 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11229 L:      megaraidlinux.pdl@broadcom.com
11230 L:      linux-scsi@vger.kernel.org
11231 S:      Maintained
11232 W:      http://www.avagotech.com/support/
11233 F:      Documentation/scsi/megaraid.rst
11234 F:      drivers/scsi/megaraid.*
11235 F:      drivers/scsi/megaraid/
11236
11237 MELEXIS MLX90614 DRIVER
11238 M:      Crt Mori <cmo@melexis.com>
11239 L:      linux-iio@vger.kernel.org
11240 S:      Supported
11241 W:      http://www.melexis.com
11242 F:      drivers/iio/temperature/mlx90614.c
11243
11244 MELEXIS MLX90632 DRIVER
11245 M:      Crt Mori <cmo@melexis.com>
11246 L:      linux-iio@vger.kernel.org
11247 S:      Supported
11248 W:      http://www.melexis.com
11249 F:      drivers/iio/temperature/mlx90632.c
11250
11251 MELFAS MIP4 TOUCHSCREEN DRIVER
11252 M:      Sangwon Jee <jeesw@melfas.com>
11253 S:      Supported
11254 W:      http://www.melfas.com
11255 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11256 F:      drivers/input/touchscreen/melfas_mip4.c
11257
11258 MELLANOX BLUEFIELD I2C DRIVER
11259 M:      Khalil Blaiech <kblaiech@nvidia.com>
11260 L:      linux-i2c@vger.kernel.org
11261 S:      Supported
11262 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11263 F:      drivers/i2c/busses/i2c-mlxbf.c
11264
11265 MELLANOX ETHERNET DRIVER (mlx4_en)
11266 M:      Tariq Toukan <tariqt@nvidia.com>
11267 L:      netdev@vger.kernel.org
11268 S:      Supported
11269 W:      http://www.mellanox.com
11270 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11271 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11272
11273 MELLANOX ETHERNET DRIVER (mlx5e)
11274 M:      Saeed Mahameed <saeedm@nvidia.com>
11275 L:      netdev@vger.kernel.org
11276 S:      Supported
11277 W:      http://www.mellanox.com
11278 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11279 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11280
11281 MELLANOX ETHERNET INNOVA DRIVERS
11282 R:      Boris Pismenny <borisp@nvidia.com>
11283 L:      netdev@vger.kernel.org
11284 S:      Supported
11285 W:      http://www.mellanox.com
11286 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11287 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11288 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11289 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11290 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11291
11292 MELLANOX ETHERNET SWITCH DRIVERS
11293 M:      Jiri Pirko <jiri@nvidia.com>
11294 M:      Ido Schimmel <idosch@nvidia.com>
11295 L:      netdev@vger.kernel.org
11296 S:      Supported
11297 W:      http://www.mellanox.com
11298 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11299 F:      drivers/net/ethernet/mellanox/mlxsw/
11300 F:      tools/testing/selftests/drivers/net/mlxsw/
11301
11302 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11303 M:      mlxsw@nvidia.com
11304 L:      netdev@vger.kernel.org
11305 S:      Supported
11306 W:      http://www.mellanox.com
11307 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11308 F:      drivers/net/ethernet/mellanox/mlxfw/
11309
11310 MELLANOX HARDWARE PLATFORM SUPPORT
11311 M:      Andy Shevchenko <andy@infradead.org>
11312 M:      Darren Hart <dvhart@infradead.org>
11313 M:      Vadim Pasternak <vadimp@nvidia.com>
11314 L:      platform-driver-x86@vger.kernel.org
11315 S:      Supported
11316 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11317 F:      drivers/platform/mellanox/
11318 F:      include/linux/platform_data/mlxreg.h
11319
11320 MELLANOX MLX4 core VPI driver
11321 M:      Tariq Toukan <tariqt@nvidia.com>
11322 L:      netdev@vger.kernel.org
11323 L:      linux-rdma@vger.kernel.org
11324 S:      Supported
11325 W:      http://www.mellanox.com
11326 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11327 F:      drivers/net/ethernet/mellanox/mlx4/
11328 F:      include/linux/mlx4/
11329
11330 MELLANOX MLX4 IB driver
11331 M:      Yishai Hadas <yishaih@nvidia.com>
11332 L:      linux-rdma@vger.kernel.org
11333 S:      Supported
11334 W:      http://www.mellanox.com
11335 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11336 F:      drivers/infiniband/hw/mlx4/
11337 F:      include/linux/mlx4/
11338 F:      include/uapi/rdma/mlx4-abi.h
11339
11340 MELLANOX MLX5 core VPI driver
11341 M:      Saeed Mahameed <saeedm@nvidia.com>
11342 M:      Leon Romanovsky <leonro@nvidia.com>
11343 L:      netdev@vger.kernel.org
11344 L:      linux-rdma@vger.kernel.org
11345 S:      Supported
11346 W:      http://www.mellanox.com
11347 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11348 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11349 F:      drivers/net/ethernet/mellanox/mlx5/core/
11350 F:      include/linux/mlx5/
11351
11352 MELLANOX MLX5 IB driver
11353 M:      Leon Romanovsky <leonro@nvidia.com>
11354 L:      linux-rdma@vger.kernel.org
11355 S:      Supported
11356 W:      http://www.mellanox.com
11357 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11358 F:      drivers/infiniband/hw/mlx5/
11359 F:      include/linux/mlx5/
11360 F:      include/uapi/rdma/mlx5-abi.h
11361
11362 MELLANOX MLXCPLD I2C AND MUX DRIVER
11363 M:      Vadim Pasternak <vadimp@nvidia.com>
11364 M:      Michael Shych <michaelsh@nvidia.com>
11365 L:      linux-i2c@vger.kernel.org
11366 S:      Supported
11367 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11368 F:      drivers/i2c/busses/i2c-mlxcpld.c
11369 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11370
11371 MELLANOX MLXCPLD LED DRIVER
11372 M:      Vadim Pasternak <vadimp@nvidia.com>
11373 L:      linux-leds@vger.kernel.org
11374 S:      Supported
11375 F:      Documentation/leds/leds-mlxcpld.rst
11376 F:      drivers/leds/leds-mlxcpld.c
11377 F:      drivers/leds/leds-mlxreg.c
11378
11379 MELLANOX PLATFORM DRIVER
11380 M:      Vadim Pasternak <vadimp@nvidia.com>
11381 L:      platform-driver-x86@vger.kernel.org
11382 S:      Supported
11383 F:      drivers/platform/x86/mlx-platform.c
11384
11385 MEMBARRIER SUPPORT
11386 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11387 M:      "Paul E. McKenney" <paulmck@kernel.org>
11388 L:      linux-kernel@vger.kernel.org
11389 S:      Supported
11390 F:      arch/powerpc/include/asm/membarrier.h
11391 F:      include/uapi/linux/membarrier.h
11392 F:      kernel/sched/membarrier.c
11393
11394 MEMBLOCK
11395 M:      Mike Rapoport <rppt@linux.ibm.com>
11396 L:      linux-mm@kvack.org
11397 S:      Maintained
11398 F:      Documentation/core-api/boot-time-mm.rst
11399 F:      include/linux/memblock.h
11400 F:      mm/memblock.c
11401
11402 MEMORY CONTROLLER DRIVERS
11403 M:      Krzysztof Kozlowski <krzk@kernel.org>
11404 L:      linux-kernel@vger.kernel.org
11405 S:      Maintained
11406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11407 F:      Documentation/devicetree/bindings/memory-controllers/
11408 F:      drivers/memory/
11409 F:      include/dt-bindings/memory/
11410
11411 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11412 M:      Dmitry Osipenko <digetx@gmail.com>
11413 L:      linux-pm@vger.kernel.org
11414 L:      linux-tegra@vger.kernel.org
11415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11416 S:      Maintained
11417 F:      drivers/devfreq/tegra30-devfreq.c
11418
11419 MEMORY MANAGEMENT
11420 M:      Andrew Morton <akpm@linux-foundation.org>
11421 L:      linux-mm@kvack.org
11422 S:      Maintained
11423 W:      http://www.linux-mm.org
11424 T:      quilt https://ozlabs.org/~akpm/mmotm/
11425 T:      quilt https://ozlabs.org/~akpm/mmots/
11426 T:      git git://github.com/hnaz/linux-mm.git
11427 F:      include/linux/gfp.h
11428 F:      include/linux/memory_hotplug.h
11429 F:      include/linux/mm.h
11430 F:      include/linux/mmzone.h
11431 F:      include/linux/vmalloc.h
11432 F:      mm/
11433
11434 MEMORY TECHNOLOGY DEVICES (MTD)
11435 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11436 M:      Richard Weinberger <richard@nod.at>
11437 M:      Vignesh Raghavendra <vigneshr@ti.com>
11438 L:      linux-mtd@lists.infradead.org
11439 S:      Maintained
11440 W:      http://www.linux-mtd.infradead.org/
11441 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11442 C:      irc://irc.oftc.net/mtd
11443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11445 F:      Documentation/devicetree/bindings/mtd/
11446 F:      drivers/mtd/
11447 F:      include/linux/mtd/
11448 F:      include/uapi/mtd/
11449
11450 MEN A21 WATCHDOG DRIVER
11451 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11452 L:      linux-watchdog@vger.kernel.org
11453 S:      Maintained
11454 F:      drivers/watchdog/mena21_wdt.c
11455
11456 MEN CHAMELEON BUS (mcb)
11457 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11458 S:      Maintained
11459 F:      Documentation/driver-api/men-chameleon-bus.rst
11460 F:      drivers/mcb/
11461 F:      include/linux/mcb.h
11462
11463 MEN F21BMC (Board Management Controller)
11464 M:      Andreas Werner <andreas.werner@men.de>
11465 S:      Supported
11466 F:      Documentation/hwmon/menf21bmc.rst
11467 F:      drivers/hwmon/menf21bmc_hwmon.c
11468 F:      drivers/leds/leds-menf21bmc.c
11469 F:      drivers/mfd/menf21bmc.c
11470 F:      drivers/watchdog/menf21bmc_wdt.c
11471
11472 MEN Z069 WATCHDOG DRIVER
11473 M:      Johannes Thumshirn <jth@kernel.org>
11474 L:      linux-watchdog@vger.kernel.org
11475 S:      Maintained
11476 F:      drivers/watchdog/menz69_wdt.c
11477
11478 MESON AO CEC 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 W:      http://linux-meson.com/
11484 T:      git git://linuxtv.org/media_tree.git
11485 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11486 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11487 F:      drivers/media/cec/platform/meson/ao-cec.c
11488
11489 MESON GE2D DRIVER FOR AMLOGIC SOCS
11490 M:      Neil Armstrong <narmstrong@baylibre.com>
11491 L:      linux-media@vger.kernel.org
11492 L:      linux-amlogic@lists.infradead.org
11493 S:      Supported
11494 T:      git git://linuxtv.org/media_tree.git
11495 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11496 F:      drivers/media/meson/ge2d/
11497
11498 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11499 M:      Liang Yang <liang.yang@amlogic.com>
11500 L:      linux-mtd@lists.infradead.org
11501 S:      Maintained
11502 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11503 F:      drivers/mtd/nand/raw/meson_*
11504
11505 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11506 M:      Neil Armstrong <narmstrong@baylibre.com>
11507 L:      linux-media@vger.kernel.org
11508 L:      linux-amlogic@lists.infradead.org
11509 S:      Supported
11510 T:      git git://linuxtv.org/media_tree.git
11511 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11512 F:      drivers/staging/media/meson/vdec/
11513
11514 METHODE UDPU SUPPORT
11515 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11516 S:      Maintained
11517 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11518
11519 MHI BUS
11520 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11521 M:      Hemant Kumar <hemantk@codeaurora.org>
11522 L:      linux-arm-msm@vger.kernel.org
11523 S:      Maintained
11524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11525 F:      Documentation/ABI/stable/sysfs-bus-mhi
11526 F:      Documentation/mhi/
11527 F:      drivers/bus/mhi/
11528 F:      include/linux/mhi.h
11529
11530 MICROBLAZE ARCHITECTURE
11531 M:      Michal Simek <monstr@monstr.eu>
11532 S:      Supported
11533 W:      http://www.monstr.eu/fdt/
11534 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11535 F:      arch/microblaze/
11536
11537 MICROCHIP AT91 DMA DRIVERS
11538 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11539 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11540 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11541 L:      dmaengine@vger.kernel.org
11542 S:      Supported
11543 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11544 F:      drivers/dma/at_hdmac.c
11545 F:      drivers/dma/at_hdmac_regs.h
11546 F:      drivers/dma/at_xdmac.c
11547 F:      include/dt-bindings/dma/at91.h
11548 F:      include/linux/platform_data/dma-atmel.h
11549
11550 MICROCHIP AT91 SERIAL DRIVER
11551 M:      Richard Genoud <richard.genoud@gmail.com>
11552 S:      Maintained
11553 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11554 F:      drivers/tty/serial/atmel_serial.c
11555 F:      drivers/tty/serial/atmel_serial.h
11556
11557 MICROCHIP AT91 USART MFD DRIVER
11558 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11559 L:      linux-kernel@vger.kernel.org
11560 S:      Supported
11561 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11562 F:      drivers/mfd/at91-usart.c
11563 F:      include/dt-bindings/mfd/at91-usart.h
11564
11565 MICROCHIP AT91 USART SPI DRIVER
11566 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11567 L:      linux-spi@vger.kernel.org
11568 S:      Supported
11569 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11570 F:      drivers/spi/spi-at91-usart.c
11571
11572 MICROCHIP AUDIO ASOC DRIVERS
11573 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11574 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11575 S:      Supported
11576 F:      sound/soc/atmel
11577
11578 MICROCHIP ECC DRIVER
11579 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11580 L:      linux-crypto@vger.kernel.org
11581 S:      Maintained
11582 F:      drivers/crypto/atmel-ecc.*
11583
11584 MICROCHIP I2C DRIVER
11585 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11586 L:      linux-i2c@vger.kernel.org
11587 S:      Supported
11588 F:      drivers/i2c/busses/i2c-at91-*.c
11589 F:      drivers/i2c/busses/i2c-at91.h
11590
11591 MICROCHIP ISC DRIVER
11592 M:      Eugen Hristev <eugen.hristev@microchip.com>
11593 L:      linux-media@vger.kernel.org
11594 S:      Supported
11595 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11596 F:      drivers/media/platform/atmel/atmel-isc-base.c
11597 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11598 F:      drivers/media/platform/atmel/atmel-isc.h
11599 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11600 F:      include/linux/atmel-isc-media.h
11601
11602 MICROCHIP ISI DRIVER
11603 M:      Eugen Hristev <eugen.hristev@microchip.com>
11604 L:      linux-media@vger.kernel.org
11605 S:      Supported
11606 F:      drivers/media/platform/atmel/atmel-isi.c
11607 F:      drivers/media/platform/atmel/atmel-isi.h
11608
11609 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11610 M:      Woojung Huh <woojung.huh@microchip.com>
11611 M:      UNGLinuxDriver@microchip.com
11612 L:      netdev@vger.kernel.org
11613 S:      Maintained
11614 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11615 F:      drivers/net/dsa/microchip/*
11616 F:      include/linux/platform_data/microchip-ksz.h
11617 F:      net/dsa/tag_ksz.c
11618
11619 MICROCHIP LAN743X ETHERNET DRIVER
11620 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11621 M:      UNGLinuxDriver@microchip.com
11622 L:      netdev@vger.kernel.org
11623 S:      Maintained
11624 F:      drivers/net/ethernet/microchip/lan743x_*
11625
11626 MICROCHIP LCDFB DRIVER
11627 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11628 L:      linux-fbdev@vger.kernel.org
11629 S:      Maintained
11630 F:      drivers/video/fbdev/atmel_lcdfb.c
11631 F:      include/video/atmel_lcdc.h
11632
11633 MICROCHIP MCP16502 PMIC DRIVER
11634 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11636 S:      Maintained
11637 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11638 F:      drivers/regulator/mcp16502.c
11639
11640 MICROCHIP MCP3911 ADC DRIVER
11641 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11642 M:      Kent Gustavsson <kent@minoris.se>
11643 L:      linux-iio@vger.kernel.org
11644 S:      Supported
11645 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11646 F:      drivers/iio/adc/mcp3911.c
11647
11648 MICROCHIP MMC/SD/SDIO MCI DRIVER
11649 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11650 S:      Maintained
11651 F:      drivers/mmc/host/atmel-mci.c
11652
11653 MICROCHIP NAND DRIVER
11654 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11655 L:      linux-mtd@lists.infradead.org
11656 S:      Supported
11657 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11658 F:      drivers/mtd/nand/raw/atmel/*
11659
11660 MICROCHIP PWM DRIVER
11661 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11663 L:      linux-pwm@vger.kernel.org
11664 S:      Supported
11665 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11666 F:      drivers/pwm/pwm-atmel.c
11667
11668 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11669 M:      Eugen Hristev <eugen.hristev@microchip.com>
11670 L:      linux-iio@vger.kernel.org
11671 S:      Supported
11672 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11673 F:      drivers/iio/adc/at91-sama5d2_adc.c
11674 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11675
11676 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11677 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11678 S:      Supported
11679 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11680
11681 MICROCHIP SPI DRIVER
11682 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11683 S:      Supported
11684 F:      drivers/spi/spi-atmel.*
11685
11686 MICROCHIP SSC DRIVER
11687 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11689 S:      Supported
11690 F:      drivers/misc/atmel-ssc.c
11691 F:      include/linux/atmel-ssc.h
11692
11693 MICROCHIP USB251XB DRIVER
11694 M:      Richard Leitner <richard.leitner@skidata.com>
11695 L:      linux-usb@vger.kernel.org
11696 S:      Maintained
11697 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11698 F:      drivers/usb/misc/usb251xb.c
11699
11700 MICROCHIP USBA UDC DRIVER
11701 M:      Cristian Birsan <cristian.birsan@microchip.com>
11702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11703 S:      Supported
11704 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11705
11706 MICROCHIP WILC1000 WIFI DRIVER
11707 M:      Ajay Singh <ajay.kathat@microchip.com>
11708 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11709 L:      linux-wireless@vger.kernel.org
11710 S:      Supported
11711 F:      drivers/net/wireless/microchip/wilc1000/
11712
11713 MICROSEMI MIPS SOCS
11714 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11715 M:      UNGLinuxDriver@microchip.com
11716 L:      linux-mips@vger.kernel.org
11717 S:      Supported
11718 F:      Documentation/devicetree/bindings/mips/mscc.txt
11719 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11720 F:      arch/mips/boot/dts/mscc/
11721 F:      arch/mips/configs/generic/board-ocelot.config
11722 F:      arch/mips/generic/board-ocelot.c
11723
11724 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11725 M:      Don Brace <don.brace@microchip.com>
11726 L:      storagedev@microchip.com
11727 L:      linux-scsi@vger.kernel.org
11728 S:      Supported
11729 F:      Documentation/scsi/smartpqi.rst
11730 F:      drivers/scsi/smartpqi/Kconfig
11731 F:      drivers/scsi/smartpqi/Makefile
11732 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11733 F:      include/linux/cciss*.h
11734 F:      include/uapi/linux/cciss*.h
11735
11736 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
11737 M:      Maximilian Luz <luzmaximilian@gmail.com>
11738 L:      platform-driver-x86@vger.kernel.org
11739 S:      Maintained
11740 F:      drivers/platform/surface/surface_gpe.c
11741
11742 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
11743 M:      Hans de Goede <hdegoede@redhat.com>
11744 M:      Mark Gross <mgross@linux.intel.com>
11745 M:      Maximilian Luz <luzmaximilian@gmail.com>
11746 L:      platform-driver-x86@vger.kernel.org
11747 S:      Maintained
11748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
11749 F:      drivers/platform/surface/
11750
11751 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11752 M:      Chen Yu <yu.c.chen@intel.com>
11753 L:      platform-driver-x86@vger.kernel.org
11754 S:      Supported
11755 F:      drivers/platform/surface/surfacepro3_button.c
11756
11757 MICROTEK X6 SCANNER
11758 M:      Oliver Neukum <oliver@neukum.org>
11759 S:      Maintained
11760 F:      drivers/usb/image/microtek.*
11761
11762 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
11763 M:      Luka Kovacic <luka.kovacic@sartura.hr>
11764 M:      Luka Perkov <luka.perkov@sartura.hr>
11765 S:      Maintained
11766 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
11767 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
11768 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
11769 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
11770 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
11771 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
11772
11773 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11774 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11775 L:      linux-media@vger.kernel.org
11776 S:      Maintained
11777 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11778 F:      Documentation/driver-api/media/drivers/ccs/
11779 F:      drivers/media/i2c/ccs-pll.c
11780 F:      drivers/media/i2c/ccs-pll.h
11781 F:      drivers/media/i2c/ccs/
11782 F:      include/uapi/linux/smiapp.h
11783
11784 MIPS
11785 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11786 L:      linux-mips@vger.kernel.org
11787 S:      Maintained
11788 W:      http://www.linux-mips.org/
11789 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11791 F:      Documentation/devicetree/bindings/mips/
11792 F:      Documentation/mips/
11793 F:      arch/mips/
11794 F:      drivers/platform/mips/
11795
11796 MIPS BOSTON DEVELOPMENT BOARD
11797 M:      Paul Burton <paulburton@kernel.org>
11798 L:      linux-mips@vger.kernel.org
11799 S:      Maintained
11800 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11801 F:      arch/mips/boot/dts/img/boston.dts
11802 F:      arch/mips/configs/generic/board-boston.config
11803 F:      drivers/clk/imgtec/clk-boston.c
11804 F:      include/dt-bindings/clock/boston-clock.h
11805
11806 MIPS CORE DRIVERS
11807 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11808 M:      Serge Semin <fancer.lancer@gmail.com>
11809 L:      linux-mips@vger.kernel.org
11810 S:      Supported
11811 F:      drivers/bus/mips_cdmm.c
11812 F:      drivers/clocksource/mips-gic-timer.c
11813 F:      drivers/cpuidle/cpuidle-cps.c
11814 F:      drivers/irqchip/irq-mips-cpu.c
11815 F:      drivers/irqchip/irq-mips-gic.c
11816
11817 MIPS GENERIC PLATFORM
11818 M:      Paul Burton <paulburton@kernel.org>
11819 L:      linux-mips@vger.kernel.org
11820 S:      Supported
11821 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11822 F:      arch/mips/generic/
11823 F:      arch/mips/tools/generic-board-config.sh
11824
11825 MIPS RINT INSTRUCTION EMULATION
11826 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11827 L:      linux-mips@vger.kernel.org
11828 S:      Supported
11829 F:      arch/mips/math-emu/dp_rint.c
11830 F:      arch/mips/math-emu/sp_rint.c
11831
11832 MIPS/LOONGSON1 ARCHITECTURE
11833 M:      Keguang Zhang <keguang.zhang@gmail.com>
11834 L:      linux-mips@vger.kernel.org
11835 S:      Maintained
11836 F:      arch/mips/include/asm/mach-loongson32/
11837 F:      arch/mips/loongson32/
11838 F:      drivers/*/*/*loongson1*
11839 F:      drivers/*/*loongson1*
11840
11841 MIPS/LOONGSON2EF ARCHITECTURE
11842 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11843 L:      linux-mips@vger.kernel.org
11844 S:      Maintained
11845 F:      arch/mips/include/asm/mach-loongson2ef/
11846 F:      arch/mips/loongson2ef/
11847 F:      drivers/*/*/*loongson2*
11848 F:      drivers/*/*loongson2*
11849
11850 MIPS/LOONGSON64 ARCHITECTURE
11851 M:      Huacai Chen <chenhuacai@kernel.org>
11852 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11853 L:      linux-mips@vger.kernel.org
11854 S:      Maintained
11855 F:      arch/mips/include/asm/mach-loongson64/
11856 F:      arch/mips/loongson64/
11857 F:      drivers/*/*/*loongson3*
11858 F:      drivers/*/*loongson3*
11859 F:      drivers/irqchip/irq-loongson*
11860 F:      drivers/platform/mips/cpu_hwmon.c
11861
11862 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11863 M:      Hans Verkuil <hverkuil@xs4all.nl>
11864 L:      linux-media@vger.kernel.org
11865 S:      Odd Fixes
11866 W:      https://linuxtv.org
11867 T:      git git://linuxtv.org/media_tree.git
11868 F:      drivers/media/radio/radio-miropcm20*
11869
11870 MMP SUPPORT
11871 R:      Lubomir Rintel <lkundrak@v3.sk>
11872 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11873 S:      Odd Fixes
11874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11875 F:      arch/arm/boot/dts/mmp*
11876 F:      arch/arm/mach-mmp/
11877 F:      include/linux/soc/mmp/
11878
11879 MMP USB PHY DRIVERS
11880 R:      Lubomir Rintel <lkundrak@v3.sk>
11881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11882 S:      Maintained
11883 F:      drivers/phy/marvell/phy-mmp3-usb.c
11884 F:      drivers/phy/marvell/phy-pxa-usb.c
11885
11886 MMU GATHER AND TLB INVALIDATION
11887 M:      Will Deacon <will@kernel.org>
11888 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11889 M:      Andrew Morton <akpm@linux-foundation.org>
11890 M:      Nick Piggin <npiggin@gmail.com>
11891 M:      Peter Zijlstra <peterz@infradead.org>
11892 L:      linux-arch@vger.kernel.org
11893 L:      linux-mm@kvack.org
11894 S:      Maintained
11895 F:      arch/*/include/asm/tlb.h
11896 F:      include/asm-generic/tlb.h
11897 F:      mm/mmu_gather.c
11898
11899 MN88472 MEDIA DRIVER
11900 M:      Antti Palosaari <crope@iki.fi>
11901 L:      linux-media@vger.kernel.org
11902 S:      Maintained
11903 W:      https://linuxtv.org
11904 W:      http://palosaari.fi/linux/
11905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11906 F:      drivers/media/dvb-frontends/mn88472*
11907
11908 MN88473 MEDIA DRIVER
11909 M:      Antti Palosaari <crope@iki.fi>
11910 L:      linux-media@vger.kernel.org
11911 S:      Maintained
11912 W:      https://linuxtv.org
11913 W:      http://palosaari.fi/linux/
11914 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11915 F:      drivers/media/dvb-frontends/mn88473*
11916
11917 MODULE SUPPORT
11918 M:      Jessica Yu <jeyu@kernel.org>
11919 S:      Maintained
11920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11921 F:      include/linux/module.h
11922 F:      kernel/module.c
11923
11924 MONOLITHIC POWER SYSTEM PMIC DRIVER
11925 M:      Saravanan Sekar <sravanhome@gmail.com>
11926 S:      Maintained
11927 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11928 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11929 F:      drivers/iio/adc/mp2629_adc.c
11930 F:      drivers/mfd/mp2629.c
11931 F:      drivers/power/supply/mp2629_charger.c
11932 F:      drivers/regulator/mp5416.c
11933 F:      drivers/regulator/mpq7920.c
11934 F:      drivers/regulator/mpq7920.h
11935 F:      include/linux/mfd/mp2629.h
11936
11937 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11938 S:      Orphan
11939 W:      http://popies.net/meye/
11940 F:      Documentation/userspace-api/media/drivers/meye*
11941 F:      drivers/media/pci/meye/
11942 F:      include/uapi/linux/meye.h
11943
11944 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11945 M:      Jiri Slaby <jirislaby@kernel.org>
11946 S:      Maintained
11947 F:      Documentation/driver-api/serial/moxa-smartio.rst
11948 F:      drivers/tty/mxser.*
11949
11950 MR800 AVERMEDIA USB FM RADIO DRIVER
11951 M:      Alexey Klimov <klimov.linux@gmail.com>
11952 L:      linux-media@vger.kernel.org
11953 S:      Maintained
11954 T:      git git://linuxtv.org/media_tree.git
11955 F:      drivers/media/radio/radio-mr800.c
11956
11957 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11958 M:      Alan Ott <alan@signal11.us>
11959 L:      linux-wpan@vger.kernel.org
11960 S:      Maintained
11961 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11962 F:      drivers/net/ieee802154/mrf24j40.c
11963
11964 MSI LAPTOP SUPPORT
11965 M:      "Lee, Chun-Yi" <jlee@suse.com>
11966 L:      platform-driver-x86@vger.kernel.org
11967 S:      Maintained
11968 F:      drivers/platform/x86/msi-laptop.c
11969
11970 MSI WMI SUPPORT
11971 L:      platform-driver-x86@vger.kernel.org
11972 S:      Orphan
11973 F:      drivers/platform/x86/msi-wmi.c
11974
11975 MSI001 MEDIA DRIVER
11976 M:      Antti Palosaari <crope@iki.fi>
11977 L:      linux-media@vger.kernel.org
11978 S:      Maintained
11979 W:      https://linuxtv.org
11980 W:      http://palosaari.fi/linux/
11981 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11982 T:      git git://linuxtv.org/anttip/media_tree.git
11983 F:      drivers/media/tuners/msi001*
11984
11985 MSI2500 MEDIA DRIVER
11986 M:      Antti Palosaari <crope@iki.fi>
11987 L:      linux-media@vger.kernel.org
11988 S:      Maintained
11989 W:      https://linuxtv.org
11990 W:      http://palosaari.fi/linux/
11991 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11992 T:      git git://linuxtv.org/anttip/media_tree.git
11993 F:      drivers/media/usb/msi2500/
11994
11995 MSTAR INTERRUPT CONTROLLER DRIVER
11996 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
11997 M:      Daniel Palmer <daniel@thingy.jp>
11998 S:      Maintained
11999 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12000 F:      drivers/irqchip/irq-mst-intc.c
12001
12002 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12003 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12004 L:      linux-mtd@lists.infradead.org
12005 S:      Maintained
12006 F:      drivers/mtd/devices/docg3*
12007
12008 MT9M032 APTINA SENSOR DRIVER
12009 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12010 L:      linux-media@vger.kernel.org
12011 S:      Maintained
12012 T:      git git://linuxtv.org/media_tree.git
12013 F:      drivers/media/i2c/mt9m032.c
12014 F:      include/media/i2c/mt9m032.h
12015
12016 MT9P031 APTINA CAMERA SENSOR
12017 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12018 L:      linux-media@vger.kernel.org
12019 S:      Maintained
12020 T:      git git://linuxtv.org/media_tree.git
12021 F:      drivers/media/i2c/mt9p031.c
12022 F:      include/media/i2c/mt9p031.h
12023
12024 MT9T001 APTINA CAMERA SENSOR
12025 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12026 L:      linux-media@vger.kernel.org
12027 S:      Maintained
12028 T:      git git://linuxtv.org/media_tree.git
12029 F:      drivers/media/i2c/mt9t001.c
12030 F:      include/media/i2c/mt9t001.h
12031
12032 MT9T112 APTINA CAMERA SENSOR
12033 M:      Jacopo Mondi <jacopo@jmondi.org>
12034 L:      linux-media@vger.kernel.org
12035 S:      Odd Fixes
12036 T:      git git://linuxtv.org/media_tree.git
12037 F:      drivers/media/i2c/mt9t112.c
12038 F:      include/media/i2c/mt9t112.h
12039
12040 MT9V032 APTINA CAMERA SENSOR
12041 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12042 L:      linux-media@vger.kernel.org
12043 S:      Maintained
12044 T:      git git://linuxtv.org/media_tree.git
12045 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12046 F:      drivers/media/i2c/mt9v032.c
12047 F:      include/media/i2c/mt9v032.h
12048
12049 MT9V111 APTINA CAMERA SENSOR
12050 M:      Jacopo Mondi <jacopo@jmondi.org>
12051 L:      linux-media@vger.kernel.org
12052 S:      Maintained
12053 T:      git git://linuxtv.org/media_tree.git
12054 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12055 F:      drivers/media/i2c/mt9v111.c
12056
12057 MULTIFUNCTION DEVICES (MFD)
12058 M:      Lee Jones <lee.jones@linaro.org>
12059 S:      Supported
12060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12061 F:      Documentation/devicetree/bindings/mfd/
12062 F:      drivers/mfd/
12063 F:      include/dt-bindings/mfd/
12064 F:      include/linux/mfd/
12065
12066 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12067 S:      Orphan
12068 F:      drivers/mmc/host/mmc_spi.c
12069 F:      include/linux/spi/mmc_spi.h
12070
12071 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12072 M:      Ulf Hansson <ulf.hansson@linaro.org>
12073 L:      linux-mmc@vger.kernel.org
12074 S:      Maintained
12075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12076 F:      Documentation/devicetree/bindings/mmc/
12077 F:      drivers/mmc/
12078 F:      include/linux/mmc/
12079 F:      include/uapi/linux/mmc/
12080
12081 MULTIPLEXER SUBSYSTEM
12082 M:      Peter Rosin <peda@axentia.se>
12083 S:      Maintained
12084 F:      Documentation/ABI/testing/sysfs-class-mux*
12085 F:      Documentation/devicetree/bindings/mux/
12086 F:      drivers/mux/
12087 F:      include/dt-bindings/mux/
12088 F:      include/linux/mux/
12089
12090 MULTITECH MULTIPORT CARD (ISICOM)
12091 S:      Orphan
12092 F:      drivers/tty/isicom.c
12093 F:      include/linux/isicom.h
12094
12095 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12096 M:      Bin Liu <b-liu@ti.com>
12097 L:      linux-usb@vger.kernel.org
12098 S:      Maintained
12099 F:      drivers/usb/musb/
12100
12101 MXL301RF MEDIA DRIVER
12102 M:      Akihiro Tsukada <tskd08@gmail.com>
12103 L:      linux-media@vger.kernel.org
12104 S:      Odd Fixes
12105 F:      drivers/media/tuners/mxl301rf*
12106
12107 MXL5007T MEDIA DRIVER
12108 M:      Michael Krufky <mkrufky@linuxtv.org>
12109 L:      linux-media@vger.kernel.org
12110 S:      Maintained
12111 W:      https://linuxtv.org
12112 W:      http://github.com/mkrufky
12113 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12114 T:      git git://linuxtv.org/mkrufky/tuners.git
12115 F:      drivers/media/tuners/mxl5007t.*
12116
12117 MXSFB DRM DRIVER
12118 M:      Marek Vasut <marex@denx.de>
12119 M:      Stefan Agner <stefan@agner.ch>
12120 L:      dri-devel@lists.freedesktop.org
12121 S:      Supported
12122 T:      git git://anongit.freedesktop.org/drm/drm-misc
12123 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12124 F:      drivers/gpu/drm/mxsfb/
12125
12126 MYLEX DAC960 PCI RAID Controller
12127 M:      Hannes Reinecke <hare@kernel.org>
12128 L:      linux-scsi@vger.kernel.org
12129 S:      Supported
12130 F:      drivers/scsi/myrb.*
12131 F:      drivers/scsi/myrs.*
12132
12133 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12134 M:      Chris Lee <christopher.lee@cspi.com>
12135 L:      netdev@vger.kernel.org
12136 S:      Supported
12137 W:      https://www.cspi.com/ethernet-products/support/downloads/
12138 F:      drivers/net/ethernet/myricom/myri10ge/
12139
12140 NAND FLASH SUBSYSTEM
12141 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12142 R:      Richard Weinberger <richard@nod.at>
12143 L:      linux-mtd@lists.infradead.org
12144 S:      Maintained
12145 W:      http://www.linux-mtd.infradead.org/
12146 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12147 C:      irc://irc.oftc.net/mtd
12148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12149 F:      drivers/mtd/nand/
12150 F:      include/linux/mtd/*nand*.h
12151
12152 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12153 M:      Daniel Mack <zonque@gmail.com>
12154 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12155 S:      Maintained
12156 W:      http://www.native-instruments.com
12157 F:      sound/usb/caiaq/
12158
12159 NATSEMI ETHERNET DRIVER (DP8381x)
12160 S:      Orphan
12161 F:      drivers/net/ethernet/natsemi/natsemi.c
12162
12163 NCR 5380 SCSI DRIVERS
12164 M:      Finn Thain <fthain@telegraphics.com.au>
12165 M:      Michael Schmitz <schmitzmic@gmail.com>
12166 L:      linux-scsi@vger.kernel.org
12167 S:      Maintained
12168 F:      Documentation/scsi/g_NCR5380.rst
12169 F:      drivers/scsi/NCR5380.*
12170 F:      drivers/scsi/arm/cumana_1.c
12171 F:      drivers/scsi/arm/oak.c
12172 F:      drivers/scsi/atari_scsi.*
12173 F:      drivers/scsi/dmx3191d.c
12174 F:      drivers/scsi/g_NCR5380.*
12175 F:      drivers/scsi/mac_scsi.*
12176 F:      drivers/scsi/sun3_scsi.*
12177 F:      drivers/scsi/sun3_scsi_vme.c
12178
12179 NCSI LIBRARY
12180 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12181 S:      Maintained
12182 F:      net/ncsi/
12183
12184 NCT6775 HARDWARE MONITOR DRIVER
12185 M:      Guenter Roeck <linux@roeck-us.net>
12186 L:      linux-hwmon@vger.kernel.org
12187 S:      Maintained
12188 F:      Documentation/hwmon/nct6775.rst
12189 F:      drivers/hwmon/nct6775.c
12190
12191 NETDEVSIM
12192 M:      Jakub Kicinski <kuba@kernel.org>
12193 S:      Maintained
12194 F:      drivers/net/netdevsim/*
12195
12196 NETEM NETWORK EMULATOR
12197 M:      Stephen Hemminger <stephen@networkplumber.org>
12198 L:      netdev@vger.kernel.org
12199 S:      Maintained
12200 F:      net/sched/sch_netem.c
12201
12202 NETERION 10GbE DRIVERS (s2io/vxge)
12203 M:      Jon Mason <jdmason@kudzu.us>
12204 L:      netdev@vger.kernel.org
12205 S:      Supported
12206 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12207 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12208 F:      drivers/net/ethernet/neterion/
12209
12210 NETFILTER
12211 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12212 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12213 M:      Florian Westphal <fw@strlen.de>
12214 L:      netfilter-devel@vger.kernel.org
12215 L:      coreteam@netfilter.org
12216 S:      Maintained
12217 W:      http://www.netfilter.org/
12218 W:      http://www.iptables.org/
12219 W:      http://www.nftables.org/
12220 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12223 F:      include/linux/netfilter*
12224 F:      include/linux/netfilter/
12225 F:      include/net/netfilter/
12226 F:      include/uapi/linux/netfilter*
12227 F:      include/uapi/linux/netfilter/
12228 F:      net/*/netfilter.c
12229 F:      net/*/netfilter/
12230 F:      net/bridge/br_netfilter*.c
12231 F:      net/netfilter/
12232
12233 NETROM NETWORK LAYER
12234 M:      Ralf Baechle <ralf@linux-mips.org>
12235 L:      linux-hams@vger.kernel.org
12236 S:      Maintained
12237 W:      http://www.linux-ax25.org/
12238 F:      include/net/netrom.h
12239 F:      include/uapi/linux/netrom.h
12240 F:      net/netrom/
12241
12242 NETRONOME ETHERNET DRIVERS
12243 M:      Simon Horman <simon.horman@netronome.com>
12244 R:      Jakub Kicinski <kuba@kernel.org>
12245 L:      oss-drivers@netronome.com
12246 S:      Maintained
12247 F:      drivers/net/ethernet/netronome/
12248
12249 NETWORK BLOCK DEVICE (NBD)
12250 M:      Josef Bacik <josef@toxicpanda.com>
12251 L:      linux-block@vger.kernel.org
12252 L:      nbd@other.debian.org
12253 S:      Maintained
12254 F:      Documentation/admin-guide/blockdev/nbd.rst
12255 F:      drivers/block/nbd.c
12256 F:      include/trace/events/nbd.h
12257 F:      include/uapi/linux/nbd.h
12258
12259 NETWORK DROP MONITOR
12260 M:      Neil Horman <nhorman@tuxdriver.com>
12261 L:      netdev@vger.kernel.org
12262 S:      Maintained
12263 W:      https://fedorahosted.org/dropwatch/
12264 F:      include/uapi/linux/net_dropmon.h
12265 F:      net/core/drop_monitor.c
12266
12267 NETWORKING DRIVERS
12268 M:      "David S. Miller" <davem@davemloft.net>
12269 M:      Jakub Kicinski <kuba@kernel.org>
12270 L:      netdev@vger.kernel.org
12271 S:      Maintained
12272 W:      http://www.linuxfoundation.org/en/Net
12273 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12276 F:      Documentation/devicetree/bindings/net/
12277 F:      drivers/connector/
12278 F:      drivers/net/
12279 F:      include/linux/etherdevice.h
12280 F:      include/linux/fcdevice.h
12281 F:      include/linux/fddidevice.h
12282 F:      include/linux/hippidevice.h
12283 F:      include/linux/if_*
12284 F:      include/linux/inetdevice.h
12285 F:      include/linux/netdevice.h
12286 F:      include/uapi/linux/if_*
12287 F:      include/uapi/linux/netdevice.h
12288
12289 NETWORKING DRIVERS (WIRELESS)
12290 M:      Kalle Valo <kvalo@codeaurora.org>
12291 L:      linux-wireless@vger.kernel.org
12292 S:      Maintained
12293 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12296 F:      Documentation/devicetree/bindings/net/wireless/
12297 F:      drivers/net/wireless/
12298
12299 NETWORKING [DSA]
12300 M:      Andrew Lunn <andrew@lunn.ch>
12301 M:      Vivien Didelot <vivien.didelot@gmail.com>
12302 M:      Florian Fainelli <f.fainelli@gmail.com>
12303 M:      Vladimir Oltean <olteanv@gmail.com>
12304 S:      Maintained
12305 F:      Documentation/devicetree/bindings/net/dsa/
12306 F:      drivers/net/dsa/
12307 F:      include/linux/dsa/
12308 F:      include/linux/platform_data/dsa.h
12309 F:      include/net/dsa.h
12310 F:      net/dsa/
12311
12312 NETWORKING [GENERAL]
12313 M:      "David S. Miller" <davem@davemloft.net>
12314 M:      Jakub Kicinski <kuba@kernel.org>
12315 L:      netdev@vger.kernel.org
12316 S:      Maintained
12317 W:      http://www.linuxfoundation.org/en/Net
12318 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12319 B:      mailto:netdev@vger.kernel.org
12320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12322 F:      Documentation/networking/
12323 F:      include/linux/in.h
12324 F:      include/linux/net.h
12325 F:      include/linux/netdevice.h
12326 F:      include/net/
12327 F:      include/uapi/linux/in.h
12328 F:      include/uapi/linux/net.h
12329 F:      include/uapi/linux/net_namespace.h
12330 F:      include/uapi/linux/netdevice.h
12331 F:      lib/net_utils.c
12332 F:      lib/random32.c
12333 F:      net/
12334 F:      tools/testing/selftests/net/
12335
12336 NETWORKING [IPSEC]
12337 M:      Steffen Klassert <steffen.klassert@secunet.com>
12338 M:      Herbert Xu <herbert@gondor.apana.org.au>
12339 M:      "David S. Miller" <davem@davemloft.net>
12340 L:      netdev@vger.kernel.org
12341 S:      Maintained
12342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12344 F:      include/net/xfrm.h
12345 F:      include/uapi/linux/xfrm.h
12346 F:      net/ipv4/ah4.c
12347 F:      net/ipv4/esp4*
12348 F:      net/ipv4/ip_vti.c
12349 F:      net/ipv4/ipcomp.c
12350 F:      net/ipv4/xfrm*
12351 F:      net/ipv6/ah6.c
12352 F:      net/ipv6/esp6*
12353 F:      net/ipv6/ip6_vti.c
12354 F:      net/ipv6/ipcomp6.c
12355 F:      net/ipv6/xfrm*
12356 F:      net/key/
12357 F:      net/xfrm/
12358 F:      tools/testing/selftests/net/ipsec.c
12359
12360 NETWORKING [IPv4/IPv6]
12361 M:      "David S. Miller" <davem@davemloft.net>
12362 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12363 M:      David Ahern <dsahern@kernel.org>
12364 L:      netdev@vger.kernel.org
12365 S:      Maintained
12366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12367 F:      arch/x86/net/*
12368 F:      include/net/ip*
12369 F:      net/ipv4/
12370 F:      net/ipv6/
12371
12372 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12373 M:      Paul Moore <paul@paul-moore.com>
12374 L:      netdev@vger.kernel.org
12375 L:      linux-security-module@vger.kernel.org
12376 S:      Maintained
12377 W:      https://github.com/netlabel
12378 F:      Documentation/netlabel/
12379 F:      include/net/calipso.h
12380 F:      include/net/cipso_ipv4.h
12381 F:      include/net/netlabel.h
12382 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12383 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12384 F:      net/ipv4/cipso_ipv4.c
12385 F:      net/ipv6/calipso.c
12386 F:      net/netfilter/xt_CONNSECMARK.c
12387 F:      net/netfilter/xt_SECMARK.c
12388 F:      net/netlabel/
12389
12390 NETWORKING [MPTCP]
12391 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12392 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12393 L:      netdev@vger.kernel.org
12394 L:      mptcp@lists.01.org
12395 S:      Maintained
12396 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12397 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12398 F:      Documentation/networking/mptcp-sysctl.rst
12399 F:      include/net/mptcp.h
12400 F:      include/uapi/linux/mptcp.h
12401 F:      net/mptcp/
12402 F:      tools/testing/selftests/net/mptcp/
12403
12404 NETWORKING [TCP]
12405 M:      Eric Dumazet <edumazet@google.com>
12406 L:      netdev@vger.kernel.org
12407 S:      Maintained
12408 F:      include/linux/tcp.h
12409 F:      include/net/tcp.h
12410 F:      include/trace/events/tcp.h
12411 F:      include/uapi/linux/tcp.h
12412 F:      net/ipv4/syncookies.c
12413 F:      net/ipv4/tcp*.c
12414 F:      net/ipv6/syncookies.c
12415 F:      net/ipv6/tcp*.c
12416
12417 NETWORKING [TLS]
12418 M:      Boris Pismenny <borisp@nvidia.com>
12419 M:      John Fastabend <john.fastabend@gmail.com>
12420 M:      Daniel Borkmann <daniel@iogearbox.net>
12421 M:      Jakub Kicinski <kuba@kernel.org>
12422 L:      netdev@vger.kernel.org
12423 S:      Maintained
12424 F:      include/net/tls.h
12425 F:      include/uapi/linux/tls.h
12426 F:      net/tls/*
12427
12428 NETWORKING [WIRELESS]
12429 L:      linux-wireless@vger.kernel.org
12430 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12431
12432 NETXEN (1/10) GbE SUPPORT
12433 M:      Manish Chopra <manishc@marvell.com>
12434 M:      Rahul Verma <rahulv@marvell.com>
12435 M:      GR-Linux-NIC-Dev@marvell.com
12436 L:      netdev@vger.kernel.org
12437 S:      Supported
12438 F:      drivers/net/ethernet/qlogic/netxen/
12439
12440 NET_FAILOVER MODULE
12441 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12442 L:      netdev@vger.kernel.org
12443 S:      Supported
12444 F:      Documentation/networking/net_failover.rst
12445 F:      drivers/net/net_failover.c
12446 F:      include/net/net_failover.h
12447
12448 NEXTHOP
12449 M:      David Ahern <dsahern@kernel.org>
12450 L:      netdev@vger.kernel.org
12451 S:      Maintained
12452 F:      include/net/netns/nexthop.h
12453 F:      include/net/nexthop.h
12454 F:      include/uapi/linux/nexthop.h
12455 F:      net/ipv4/nexthop.c
12456
12457 NFC SUBSYSTEM
12458 L:      netdev@vger.kernel.org
12459 S:      Orphan
12460 F:      Documentation/devicetree/bindings/net/nfc/
12461 F:      drivers/nfc/
12462 F:      include/linux/platform_data/nfcmrvl.h
12463 F:      include/net/nfc/
12464 F:      include/uapi/linux/nfc.h
12465 F:      net/nfc/
12466
12467 NFC VIRTUAL NCI DEVICE DRIVER
12468 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
12469 L:      netdev@vger.kernel.org
12470 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12471 S:      Supported
12472 F:      drivers/nfc/virtual_ncidev.c
12473 F:      tools/testing/selftests/nci/
12474
12475 NFS, SUNRPC, AND LOCKD CLIENTS
12476 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12477 M:      Anna Schumaker <anna.schumaker@netapp.com>
12478 L:      linux-nfs@vger.kernel.org
12479 S:      Maintained
12480 W:      http://client.linux-nfs.org
12481 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12482 F:      fs/lockd/
12483 F:      fs/nfs/
12484 F:      fs/nfs_common/
12485 F:      include/linux/lockd/
12486 F:      include/linux/nfs*
12487 F:      include/linux/sunrpc/
12488 F:      include/uapi/linux/nfs*
12489 F:      include/uapi/linux/sunrpc/
12490 F:      net/sunrpc/
12491 F:      Documentation/filesystems/nfs/
12492
12493 NILFS2 FILESYSTEM
12494 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12495 L:      linux-nilfs@vger.kernel.org
12496 S:      Supported
12497 W:      https://nilfs.sourceforge.io/
12498 W:      https://nilfs.osdn.jp/
12499 T:      git git://github.com/konis/nilfs2.git
12500 F:      Documentation/filesystems/nilfs2.rst
12501 F:      fs/nilfs2/
12502 F:      include/trace/events/nilfs2.h
12503 F:      include/uapi/linux/nilfs2_api.h
12504 F:      include/uapi/linux/nilfs2_ondisk.h
12505
12506 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12507 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12508 S:      Maintained
12509 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12510 F:      Documentation/scsi/NinjaSCSI.rst
12511 F:      drivers/scsi/pcmcia/nsp_*
12512
12513 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12514 M:      GOTO Masanori <gotom@debian.or.jp>
12515 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12516 S:      Maintained
12517 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12518 F:      Documentation/scsi/NinjaSCSI.rst
12519 F:      drivers/scsi/nsp32*
12520
12521 NIOS2 ARCHITECTURE
12522 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12523 S:      Maintained
12524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12525 F:      arch/nios2/
12526
12527 NITRO ENCLAVES (NE)
12528 M:      Andra Paraschiv <andraprs@amazon.com>
12529 M:      Alexandru Vasile <lexnv@amazon.com>
12530 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12531 L:      linux-kernel@vger.kernel.org
12532 S:      Supported
12533 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12534 F:      Documentation/virt/ne_overview.rst
12535 F:      drivers/virt/nitro_enclaves/
12536 F:      include/linux/nitro_enclaves.h
12537 F:      include/uapi/linux/nitro_enclaves.h
12538 F:      samples/nitro_enclaves/
12539
12540 NOHZ, DYNTICKS SUPPORT
12541 M:      Frederic Weisbecker <fweisbec@gmail.com>
12542 M:      Thomas Gleixner <tglx@linutronix.de>
12543 M:      Ingo Molnar <mingo@kernel.org>
12544 L:      linux-kernel@vger.kernel.org
12545 S:      Maintained
12546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12547 F:      include/linux/sched/nohz.h
12548 F:      include/linux/tick.h
12549 F:      kernel/time/tick*.*
12550
12551 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12552 M:      Pavel Machek <pavel@ucw.cz>
12553 M:      Sakari Ailus <sakari.ailus@iki.fi>
12554 L:      linux-media@vger.kernel.org
12555 S:      Maintained
12556 F:      drivers/media/i2c/ad5820.c
12557 F:      drivers/media/i2c/et8ek8
12558
12559 NOKIA N900 POWER SUPPLY DRIVERS
12560 R:      Pali Rohár <pali@kernel.org>
12561 F:      drivers/power/supply/bq2415x_charger.c
12562 F:      drivers/power/supply/bq27xxx_battery.c
12563 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12564 F:      drivers/power/supply/isp1704_charger.c
12565 F:      drivers/power/supply/rx51_battery.c
12566 F:      include/linux/power/bq2415x_charger.h
12567 F:      include/linux/power/bq27xxx_battery.h
12568
12569 NOLIBC HEADER FILE
12570 M:      Willy Tarreau <w@1wt.eu>
12571 S:      Maintained
12572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12573 F:      tools/include/nolibc/
12574
12575 NSDEPS
12576 M:      Matthias Maennich <maennich@google.com>
12577 S:      Maintained
12578 F:      Documentation/core-api/symbol-namespaces.rst
12579 F:      scripts/nsdeps
12580
12581 NTB AMD DRIVER
12582 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12583 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12584 L:      linux-ntb@googlegroups.com
12585 S:      Supported
12586 F:      drivers/ntb/hw/amd/
12587
12588 NTB DRIVER CORE
12589 M:      Jon Mason <jdmason@kudzu.us>
12590 M:      Dave Jiang <dave.jiang@intel.com>
12591 M:      Allen Hubbe <allenbh@gmail.com>
12592 L:      linux-ntb@googlegroups.com
12593 S:      Supported
12594 W:      https://github.com/jonmason/ntb/wiki
12595 T:      git git://github.com/jonmason/ntb.git
12596 F:      drivers/net/ntb_netdev.c
12597 F:      drivers/ntb/
12598 F:      include/linux/ntb.h
12599 F:      include/linux/ntb_transport.h
12600 F:      tools/testing/selftests/ntb/
12601
12602 NTB IDT DRIVER
12603 M:      Serge Semin <fancer.lancer@gmail.com>
12604 L:      linux-ntb@googlegroups.com
12605 S:      Supported
12606 F:      drivers/ntb/hw/idt/
12607
12608 NTB INTEL DRIVER
12609 M:      Dave Jiang <dave.jiang@intel.com>
12610 L:      linux-ntb@googlegroups.com
12611 S:      Supported
12612 W:      https://github.com/davejiang/linux/wiki
12613 T:      git https://github.com/davejiang/linux.git
12614 F:      drivers/ntb/hw/intel/
12615
12616 NTFS FILESYSTEM
12617 M:      Anton Altaparmakov <anton@tuxera.com>
12618 L:      linux-ntfs-dev@lists.sourceforge.net
12619 S:      Supported
12620 W:      http://www.tuxera.com/
12621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12622 F:      Documentation/filesystems/ntfs.rst
12623 F:      fs/ntfs/
12624
12625 NUBUS SUBSYSTEM
12626 M:      Finn Thain <fthain@telegraphics.com.au>
12627 L:      linux-m68k@lists.linux-m68k.org
12628 S:      Maintained
12629 F:      arch/*/include/asm/nubus.h
12630 F:      drivers/nubus/
12631 F:      include/linux/nubus.h
12632 F:      include/uapi/linux/nubus.h
12633
12634 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12635 M:      Antonino Daplas <adaplas@gmail.com>
12636 L:      linux-fbdev@vger.kernel.org
12637 S:      Maintained
12638 F:      drivers/video/fbdev/nvidia/
12639 F:      drivers/video/fbdev/riva/
12640
12641 NVM EXPRESS DRIVER
12642 M:      Keith Busch <kbusch@kernel.org>
12643 M:      Jens Axboe <axboe@fb.com>
12644 M:      Christoph Hellwig <hch@lst.de>
12645 M:      Sagi Grimberg <sagi@grimberg.me>
12646 L:      linux-nvme@lists.infradead.org
12647 S:      Supported
12648 W:      http://git.infradead.org/nvme.git
12649 T:      git://git.infradead.org/nvme.git
12650 F:      drivers/nvme/host/
12651 F:      include/linux/nvme.h
12652 F:      include/uapi/linux/nvme_ioctl.h
12653
12654 NVM EXPRESS FC TRANSPORT DRIVERS
12655 M:      James Smart <james.smart@broadcom.com>
12656 L:      linux-nvme@lists.infradead.org
12657 S:      Supported
12658 F:      drivers/nvme/host/fc.c
12659 F:      drivers/nvme/target/fc.c
12660 F:      drivers/nvme/target/fcloop.c
12661 F:      include/linux/nvme-fc-driver.h
12662 F:      include/linux/nvme-fc.h
12663
12664 NVM EXPRESS TARGET DRIVER
12665 M:      Christoph Hellwig <hch@lst.de>
12666 M:      Sagi Grimberg <sagi@grimberg.me>
12667 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12668 L:      linux-nvme@lists.infradead.org
12669 S:      Supported
12670 W:      http://git.infradead.org/nvme.git
12671 T:      git://git.infradead.org/nvme.git
12672 F:      drivers/nvme/target/
12673
12674 NVMEM FRAMEWORK
12675 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12676 S:      Maintained
12677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12678 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12679 F:      Documentation/devicetree/bindings/nvmem/
12680 F:      drivers/nvmem/
12681 F:      include/linux/nvmem-consumer.h
12682 F:      include/linux/nvmem-provider.h
12683
12684 NXP FSPI DRIVER
12685 M:      Ashish Kumar <ashish.kumar@nxp.com>
12686 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12687 L:      linux-spi@vger.kernel.org
12688 S:      Maintained
12689 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12690 F:      drivers/spi/spi-nxp-fspi.c
12691
12692 NXP FXAS21002C DRIVER
12693 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12694 L:      linux-iio@vger.kernel.org
12695 S:      Maintained
12696 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
12697 F:      drivers/iio/gyro/fxas21002c.h
12698 F:      drivers/iio/gyro/fxas21002c_core.c
12699 F:      drivers/iio/gyro/fxas21002c_i2c.c
12700 F:      drivers/iio/gyro/fxas21002c_spi.c
12701
12702 NXP i.MX 8MQ DCSS DRIVER
12703 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12704 R:      Lucas Stach <l.stach@pengutronix.de>
12705 L:      dri-devel@lists.freedesktop.org
12706 S:      Maintained
12707 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12708 F:      drivers/gpu/drm/imx/dcss/
12709
12710 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
12711 M:      Jagan Teki <jagan@amarulasolutions.com>
12712 S:      Maintained
12713 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
12714 F:      drivers/regulator/pf8x00-regulator.c
12715
12716 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12717 M:      Krzysztof Kozlowski <krzk@kernel.org>
12718 L:      linux-kernel@vger.kernel.org
12719 S:      Maintained
12720 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12721 F:      drivers/extcon/extcon-ptn5150.c
12722
12723 NXP SGTL5000 DRIVER
12724 M:      Fabio Estevam <festevam@gmail.com>
12725 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12726 S:      Maintained
12727 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12728 F:      sound/soc/codecs/sgtl5000*
12729
12730 NXP SJA1105 ETHERNET SWITCH DRIVER
12731 M:      Vladimir Oltean <olteanv@gmail.com>
12732 L:      linux-kernel@vger.kernel.org
12733 S:      Maintained
12734 F:      drivers/net/dsa/sja1105
12735
12736 NXP TDA998X DRM DRIVER
12737 M:      Russell King <linux@armlinux.org.uk>
12738 S:      Maintained
12739 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12740 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12741 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12742 F:      include/drm/i2c/tda998x.h
12743 F:      include/dt-bindings/display/tda998x.h
12744 K:      "nxp,tda998x"
12745
12746 NXP TFA9879 DRIVER
12747 M:      Peter Rosin <peda@axentia.se>
12748 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12749 S:      Maintained
12750 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12751 F:      sound/soc/codecs/tfa9879*
12752
12753 NXP-NCI NFC DRIVER
12754 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12755 R:      Charles Gorand <charles.gorand@effinnov.com>
12756 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12757 S:      Supported
12758 F:      drivers/nfc/nxp-nci
12759
12760 OBJAGG
12761 M:      Jiri Pirko <jiri@nvidia.com>
12762 L:      netdev@vger.kernel.org
12763 S:      Supported
12764 F:      include/linux/objagg.h
12765 F:      lib/objagg.c
12766 F:      lib/test_objagg.c
12767
12768 OBJTOOL
12769 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12770 M:      Peter Zijlstra <peterz@infradead.org>
12771 S:      Supported
12772 F:      tools/objtool/
12773 F:      include/linux/objtool.h
12774
12775 OCELOT ETHERNET SWITCH DRIVER
12776 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12777 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12778 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12779 M:      UNGLinuxDriver@microchip.com
12780 L:      netdev@vger.kernel.org
12781 S:      Supported
12782 F:      drivers/net/dsa/ocelot/*
12783 F:      drivers/net/ethernet/mscc/
12784 F:      include/soc/mscc/ocelot*
12785 F:      net/dsa/tag_ocelot.c
12786 F:      net/dsa/tag_ocelot_8021q.c
12787 F:      tools/testing/selftests/drivers/net/ocelot/*
12788
12789 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12790 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12791 M:      Andrew Donnellan <ajd@linux.ibm.com>
12792 L:      linuxppc-dev@lists.ozlabs.org
12793 S:      Supported
12794 F:      Documentation/userspace-api/accelerators/ocxl.rst
12795 F:      arch/powerpc/include/asm/pnv-ocxl.h
12796 F:      arch/powerpc/platforms/powernv/ocxl.c
12797 F:      drivers/misc/ocxl/
12798 F:      include/misc/ocxl*
12799 F:      include/uapi/misc/ocxl.h
12800
12801 OMAP AUDIO SUPPORT
12802 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
12803 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12804 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12805 L:      linux-omap@vger.kernel.org
12806 S:      Maintained
12807 F:      sound/soc/ti/n810.c
12808 F:      sound/soc/ti/omap*
12809 F:      sound/soc/ti/rx51.c
12810 F:      sound/soc/ti/sdma-pcm.*
12811
12812 OMAP CLOCK FRAMEWORK SUPPORT
12813 M:      Paul Walmsley <paul@pwsan.com>
12814 L:      linux-omap@vger.kernel.org
12815 S:      Maintained
12816 F:      arch/arm/*omap*/*clock*
12817
12818 OMAP DEVICE TREE SUPPORT
12819 M:      Benoît Cousson <bcousson@baylibre.com>
12820 M:      Tony Lindgren <tony@atomide.com>
12821 L:      linux-omap@vger.kernel.org
12822 L:      devicetree@vger.kernel.org
12823 S:      Maintained
12824 F:      arch/arm/boot/dts/*am3*
12825 F:      arch/arm/boot/dts/*am4*
12826 F:      arch/arm/boot/dts/*am5*
12827 F:      arch/arm/boot/dts/*dra7*
12828 F:      arch/arm/boot/dts/*omap*
12829 F:      arch/arm/boot/dts/logicpd-som-lv*
12830 F:      arch/arm/boot/dts/logicpd-torpedo*
12831
12832 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12833 L:      linux-omap@vger.kernel.org
12834 L:      linux-fbdev@vger.kernel.org
12835 S:      Orphan
12836 F:      Documentation/arm/omap/dss.rst
12837 F:      drivers/video/fbdev/omap2/
12838
12839 OMAP FRAMEBUFFER SUPPORT
12840 L:      linux-fbdev@vger.kernel.org
12841 L:      linux-omap@vger.kernel.org
12842 S:      Orphan
12843 F:      drivers/video/fbdev/omap/
12844
12845 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12846 M:      Roger Quadros <rogerq@ti.com>
12847 M:      Tony Lindgren <tony@atomide.com>
12848 L:      linux-omap@vger.kernel.org
12849 S:      Maintained
12850 F:      arch/arm/mach-omap2/*gpmc*
12851 F:      drivers/memory/omap-gpmc.c
12852
12853 OMAP GPIO DRIVER
12854 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12855 M:      Santosh Shilimkar <ssantosh@kernel.org>
12856 M:      Kevin Hilman <khilman@kernel.org>
12857 L:      linux-omap@vger.kernel.org
12858 S:      Maintained
12859 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12860 F:      drivers/gpio/gpio-omap.c
12861
12862 OMAP HARDWARE SPINLOCK SUPPORT
12863 M:      Ohad Ben-Cohen <ohad@wizery.com>
12864 L:      linux-omap@vger.kernel.org
12865 S:      Maintained
12866 F:      drivers/hwspinlock/omap_hwspinlock.c
12867
12868 OMAP HS MMC SUPPORT
12869 L:      linux-mmc@vger.kernel.org
12870 L:      linux-omap@vger.kernel.org
12871 S:      Orphan
12872 F:      drivers/mmc/host/omap_hsmmc.c
12873
12874 OMAP HWMOD DATA
12875 M:      Paul Walmsley <paul@pwsan.com>
12876 L:      linux-omap@vger.kernel.org
12877 S:      Maintained
12878 F:      arch/arm/mach-omap2/omap_hwmod*data*
12879
12880 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12881 M:      Benoît Cousson <bcousson@baylibre.com>
12882 L:      linux-omap@vger.kernel.org
12883 S:      Maintained
12884 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12885
12886 OMAP HWMOD SUPPORT
12887 M:      Benoît Cousson <bcousson@baylibre.com>
12888 M:      Paul Walmsley <paul@pwsan.com>
12889 L:      linux-omap@vger.kernel.org
12890 S:      Maintained
12891 F:      arch/arm/mach-omap2/omap_hwmod.*
12892
12893 OMAP I2C DRIVER
12894 M:      Vignesh R <vigneshr@ti.com>
12895 L:      linux-omap@vger.kernel.org
12896 L:      linux-i2c@vger.kernel.org
12897 S:      Maintained
12898 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12899 F:      drivers/i2c/busses/i2c-omap.c
12900
12901 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12902 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12903 L:      linux-media@vger.kernel.org
12904 S:      Maintained
12905 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12906 F:      drivers/media/platform/omap3isp/
12907 F:      drivers/staging/media/omap4iss/
12908
12909 OMAP MMC SUPPORT
12910 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12911 L:      linux-omap@vger.kernel.org
12912 S:      Odd Fixes
12913 F:      drivers/mmc/host/omap.c
12914
12915 OMAP POWER MANAGEMENT SUPPORT
12916 M:      Kevin Hilman <khilman@kernel.org>
12917 L:      linux-omap@vger.kernel.org
12918 S:      Maintained
12919 F:      arch/arm/*omap*/*pm*
12920 F:      drivers/cpufreq/omap-cpufreq.c
12921
12922 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12923 M:      Rajendra Nayak <rnayak@codeaurora.org>
12924 M:      Paul Walmsley <paul@pwsan.com>
12925 L:      linux-omap@vger.kernel.org
12926 S:      Maintained
12927 F:      arch/arm/mach-omap2/prm*
12928
12929 OMAP RANDOM NUMBER GENERATOR SUPPORT
12930 M:      Deepak Saxena <dsaxena@plexity.net>
12931 S:      Maintained
12932 F:      drivers/char/hw_random/omap-rng.c
12933
12934 OMAP USB SUPPORT
12935 L:      linux-usb@vger.kernel.org
12936 L:      linux-omap@vger.kernel.org
12937 S:      Orphan
12938 F:      arch/arm/*omap*/usb*
12939 F:      drivers/usb/*/*omap*
12940
12941 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12942 M:      Mark Jackson <mpfj@newflow.co.uk>
12943 L:      linux-omap@vger.kernel.org
12944 S:      Maintained
12945 F:      arch/arm/boot/dts/am335x-nano.dts
12946
12947 OMAP1 SUPPORT
12948 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12949 M:      Tony Lindgren <tony@atomide.com>
12950 L:      linux-omap@vger.kernel.org
12951 S:      Maintained
12952 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12954 F:      arch/arm/configs/omap1_defconfig
12955 F:      arch/arm/mach-omap1/
12956 F:      arch/arm/plat-omap/
12957 F:      drivers/i2c/busses/i2c-omap.c
12958 F:      include/linux/platform_data/ams-delta-fiq.h
12959 F:      include/linux/platform_data/i2c-omap.h
12960
12961 OMAP2+ SUPPORT
12962 M:      Tony Lindgren <tony@atomide.com>
12963 L:      linux-omap@vger.kernel.org
12964 S:      Maintained
12965 W:      http://www.muru.com/linux/omap/
12966 W:      http://linux.omap.com/
12967 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12969 F:      arch/arm/configs/omap2plus_defconfig
12970 F:      arch/arm/mach-omap2/
12971 F:      arch/arm/plat-omap/
12972 F:      drivers/bus/ti-sysc.c
12973 F:      drivers/i2c/busses/i2c-omap.c
12974 F:      drivers/irqchip/irq-omap-intc.c
12975 F:      drivers/mfd/*omap*.c
12976 F:      drivers/mfd/menelaus.c
12977 F:      drivers/mfd/palmas.c
12978 F:      drivers/mfd/tps65217.c
12979 F:      drivers/mfd/tps65218.c
12980 F:      drivers/mfd/tps65910.c
12981 F:      drivers/mfd/twl-core.[ch]
12982 F:      drivers/mfd/twl4030*.c
12983 F:      drivers/mfd/twl6030*.c
12984 F:      drivers/mfd/twl6040*.c
12985 F:      drivers/regulator/palmas-regulator*.c
12986 F:      drivers/regulator/pbias-regulator.c
12987 F:      drivers/regulator/tps65217-regulator.c
12988 F:      drivers/regulator/tps65218-regulator.c
12989 F:      drivers/regulator/tps65910-regulator.c
12990 F:      drivers/regulator/twl-regulator.c
12991 F:      drivers/regulator/twl6030-regulator.c
12992 F:      include/linux/platform_data/i2c-omap.h
12993 F:      include/linux/platform_data/ti-sysc.h
12994
12995 OMFS FILESYSTEM
12996 M:      Bob Copeland <me@bobcopeland.com>
12997 L:      linux-karma-devel@lists.sourceforge.net
12998 S:      Maintained
12999 F:      Documentation/filesystems/omfs.rst
13000 F:      fs/omfs/
13001
13002 OMNIKEY CARDMAN 4000 DRIVER
13003 M:      Harald Welte <laforge@gnumonks.org>
13004 S:      Maintained
13005 F:      drivers/char/pcmcia/cm4000_cs.c
13006 F:      include/linux/cm4000_cs.h
13007 F:      include/uapi/linux/cm4000_cs.h
13008
13009 OMNIKEY CARDMAN 4040 DRIVER
13010 M:      Harald Welte <laforge@gnumonks.org>
13011 S:      Maintained
13012 F:      drivers/char/pcmcia/cm4040_cs.*
13013
13014 OMNIVISION OV02A10 SENSOR DRIVER
13015 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13016 L:      linux-media@vger.kernel.org
13017 S:      Maintained
13018 T:      git git://linuxtv.org/media_tree.git
13019 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13020 F:      drivers/media/i2c/ov02a10.c
13021
13022 OMNIVISION OV13858 SENSOR DRIVER
13023 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13024 L:      linux-media@vger.kernel.org
13025 S:      Maintained
13026 T:      git git://linuxtv.org/media_tree.git
13027 F:      drivers/media/i2c/ov13858.c
13028
13029 OMNIVISION OV2680 SENSOR DRIVER
13030 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13031 L:      linux-media@vger.kernel.org
13032 S:      Maintained
13033 T:      git git://linuxtv.org/media_tree.git
13034 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
13035 F:      drivers/media/i2c/ov2680.c
13036
13037 OMNIVISION OV2685 SENSOR DRIVER
13038 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13039 L:      linux-media@vger.kernel.org
13040 S:      Maintained
13041 T:      git git://linuxtv.org/media_tree.git
13042 F:      drivers/media/i2c/ov2685.c
13043
13044 OMNIVISION OV2740 SENSOR DRIVER
13045 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13046 R:      Shawn Tu <shawnx.tu@intel.com>
13047 R:      Bingbu Cao <bingbu.cao@intel.com>
13048 L:      linux-media@vger.kernel.org
13049 S:      Maintained
13050 T:      git git://linuxtv.org/media_tree.git
13051 F:      drivers/media/i2c/ov2740.c
13052
13053 OMNIVISION OV5640 SENSOR DRIVER
13054 M:      Steve Longerbeam <slongerbeam@gmail.com>
13055 L:      linux-media@vger.kernel.org
13056 S:      Maintained
13057 T:      git git://linuxtv.org/media_tree.git
13058 F:      drivers/media/i2c/ov5640.c
13059
13060 OMNIVISION OV5647 SENSOR DRIVER
13061 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13062 M:      Jacopo Mondi <jacopo@jmondi.org>
13063 L:      linux-media@vger.kernel.org
13064 S:      Maintained
13065 T:      git git://linuxtv.org/media_tree.git
13066 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
13067 F:      drivers/media/i2c/ov5647.c
13068
13069 OMNIVISION OV5670 SENSOR DRIVER
13070 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13071 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13072 L:      linux-media@vger.kernel.org
13073 S:      Maintained
13074 T:      git git://linuxtv.org/media_tree.git
13075 F:      drivers/media/i2c/ov5670.c
13076
13077 OMNIVISION OV5675 SENSOR DRIVER
13078 M:      Shawn Tu <shawnx.tu@intel.com>
13079 L:      linux-media@vger.kernel.org
13080 S:      Maintained
13081 T:      git git://linuxtv.org/media_tree.git
13082 F:      drivers/media/i2c/ov5675.c
13083
13084 OMNIVISION OV5695 SENSOR DRIVER
13085 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13086 L:      linux-media@vger.kernel.org
13087 S:      Maintained
13088 T:      git git://linuxtv.org/media_tree.git
13089 F:      drivers/media/i2c/ov5695.c
13090
13091 OMNIVISION OV7670 SENSOR DRIVER
13092 L:      linux-media@vger.kernel.org
13093 S:      Orphan
13094 T:      git git://linuxtv.org/media_tree.git
13095 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13096 F:      drivers/media/i2c/ov7670.c
13097
13098 OMNIVISION OV772x SENSOR DRIVER
13099 M:      Jacopo Mondi <jacopo@jmondi.org>
13100 L:      linux-media@vger.kernel.org
13101 S:      Odd fixes
13102 T:      git git://linuxtv.org/media_tree.git
13103 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13104 F:      drivers/media/i2c/ov772x.c
13105 F:      include/media/i2c/ov772x.h
13106
13107 OMNIVISION OV7740 SENSOR DRIVER
13108 M:      Wenyou Yang <wenyou.yang@microchip.com>
13109 L:      linux-media@vger.kernel.org
13110 S:      Maintained
13111 T:      git git://linuxtv.org/media_tree.git
13112 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13113 F:      drivers/media/i2c/ov7740.c
13114
13115 OMNIVISION OV8856 SENSOR DRIVER
13116 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13117 L:      linux-media@vger.kernel.org
13118 S:      Maintained
13119 T:      git git://linuxtv.org/media_tree.git
13120 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13121 F:      drivers/media/i2c/ov8856.c
13122
13123 OMNIVISION OV9640 SENSOR DRIVER
13124 M:      Petr Cvek <petrcvekcz@gmail.com>
13125 L:      linux-media@vger.kernel.org
13126 S:      Maintained
13127 F:      drivers/media/i2c/ov9640.*
13128
13129 OMNIVISION OV9650 SENSOR DRIVER
13130 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13131 R:      Akinobu Mita <akinobu.mita@gmail.com>
13132 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13133 L:      linux-media@vger.kernel.org
13134 S:      Maintained
13135 T:      git git://linuxtv.org/media_tree.git
13136 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13137 F:      drivers/media/i2c/ov9650.c
13138
13139 OMNIVISION OV9734 SENSOR DRIVER
13140 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13141 R:      Bingbu Cao <bingbu.cao@intel.com>
13142 L:      linux-media@vger.kernel.org
13143 S:      Maintained
13144 T:      git git://linuxtv.org/media_tree.git
13145 F:      drivers/media/i2c/ov9734.c
13146
13147 ONENAND FLASH DRIVER
13148 M:      Kyungmin Park <kyungmin.park@samsung.com>
13149 L:      linux-mtd@lists.infradead.org
13150 S:      Maintained
13151 F:      drivers/mtd/nand/onenand/
13152 F:      include/linux/mtd/onenand*.h
13153
13154 ONION OMEGA2+ BOARD
13155 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13156 L:      linux-mips@vger.kernel.org
13157 S:      Maintained
13158 F:      arch/mips/boot/dts/ralink/omega2p.dts
13159
13160 OP-TEE DRIVER
13161 M:      Jens Wiklander <jens.wiklander@linaro.org>
13162 L:      op-tee@lists.trustedfirmware.org
13163 S:      Maintained
13164 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13165 F:      drivers/tee/optee/
13166
13167 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13168 M:      Sumit Garg <sumit.garg@linaro.org>
13169 L:      op-tee@lists.trustedfirmware.org
13170 S:      Maintained
13171 F:      drivers/char/hw_random/optee-rng.c
13172
13173 OPA-VNIC DRIVER
13174 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13175 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13176 L:      linux-rdma@vger.kernel.org
13177 S:      Supported
13178 F:      drivers/infiniband/ulp/opa_vnic
13179
13180 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13181 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13182 M:      Frank Rowand <frowand.list@gmail.com>
13183 L:      devicetree@vger.kernel.org
13184 S:      Maintained
13185 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13186 F:      Documentation/devicetree/overlay-notes.rst
13187 F:      drivers/of/overlay.c
13188 F:      drivers/of/resolver.c
13189 K:      of_overlay_notifier_
13190
13191 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13192 M:      Rob Herring <robh+dt@kernel.org>
13193 M:      Frank Rowand <frowand.list@gmail.com>
13194 L:      devicetree@vger.kernel.org
13195 S:      Maintained
13196 W:      http://www.devicetree.org/
13197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13198 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13199 F:      drivers/of/
13200 F:      include/linux/of*.h
13201 F:      scripts/dtc/
13202
13203 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13204 M:      Rob Herring <robh+dt@kernel.org>
13205 L:      devicetree@vger.kernel.org
13206 S:      Maintained
13207 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13209 F:      Documentation/devicetree/
13210 F:      arch/*/boot/dts/
13211 F:      include/dt-bindings/
13212
13213 OPENCORES I2C BUS DRIVER
13214 M:      Peter Korsgaard <peter@korsgaard.com>
13215 M:      Andrew Lunn <andrew@lunn.ch>
13216 L:      linux-i2c@vger.kernel.org
13217 S:      Maintained
13218 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13219 F:      Documentation/i2c/busses/i2c-ocores.rst
13220 F:      drivers/i2c/busses/i2c-ocores.c
13221 F:      include/linux/platform_data/i2c-ocores.h
13222
13223 OPENRISC ARCHITECTURE
13224 M:      Jonas Bonn <jonas@southpole.se>
13225 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13226 M:      Stafford Horne <shorne@gmail.com>
13227 L:      openrisc@lists.librecores.org
13228 S:      Maintained
13229 W:      http://openrisc.io
13230 T:      git git://github.com/openrisc/linux.git
13231 F:      Documentation/devicetree/bindings/openrisc/
13232 F:      Documentation/openrisc/
13233 F:      arch/openrisc/
13234 F:      drivers/irqchip/irq-ompic.c
13235 F:      drivers/irqchip/irq-or1k-*
13236
13237 OPENVSWITCH
13238 M:      Pravin B Shelar <pshelar@ovn.org>
13239 L:      netdev@vger.kernel.org
13240 L:      dev@openvswitch.org
13241 S:      Maintained
13242 W:      http://openvswitch.org
13243 F:      include/uapi/linux/openvswitch.h
13244 F:      net/openvswitch/
13245
13246 OPERATING PERFORMANCE POINTS (OPP)
13247 M:      Viresh Kumar <vireshk@kernel.org>
13248 M:      Nishanth Menon <nm@ti.com>
13249 M:      Stephen Boyd <sboyd@kernel.org>
13250 L:      linux-pm@vger.kernel.org
13251 S:      Maintained
13252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13253 F:      Documentation/devicetree/bindings/opp/
13254 F:      Documentation/power/opp.rst
13255 F:      drivers/opp/
13256 F:      include/linux/pm_opp.h
13257
13258 OPL4 DRIVER
13259 M:      Clemens Ladisch <clemens@ladisch.de>
13260 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13261 S:      Maintained
13262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13263 F:      sound/drivers/opl4/
13264
13265 OPROFILE
13266 M:      Robert Richter <rric@kernel.org>
13267 L:      oprofile-list@lists.sf.net
13268 S:      Maintained
13269 F:      arch/*/include/asm/oprofile*.h
13270 F:      arch/*/oprofile/
13271 F:      drivers/oprofile/
13272 F:      include/linux/oprofile.h
13273
13274 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13275 M:      Mark Fasheh <mark@fasheh.com>
13276 M:      Joel Becker <jlbec@evilplan.org>
13277 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13278 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13279 S:      Supported
13280 W:      http://ocfs2.wiki.kernel.org
13281 F:      Documentation/filesystems/dlmfs.rst
13282 F:      Documentation/filesystems/ocfs2.rst
13283 F:      fs/ocfs2/
13284
13285 ORANGEFS FILESYSTEM
13286 M:      Mike Marshall <hubcap@omnibond.com>
13287 R:      Martin Brandenburg <martin@omnibond.com>
13288 L:      devel@lists.orangefs.org
13289 S:      Supported
13290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13291 F:      Documentation/filesystems/orangefs.rst
13292 F:      fs/orangefs/
13293
13294 ORINOCO DRIVER
13295 L:      linux-wireless@vger.kernel.org
13296 S:      Orphan
13297 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13298 W:      http://www.nongnu.org/orinoco/
13299 F:      drivers/net/wireless/intersil/orinoco/
13300
13301 OV2659 OMNIVISION SENSOR DRIVER
13302 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13303 L:      linux-media@vger.kernel.org
13304 S:      Maintained
13305 W:      https://linuxtv.org
13306 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13307 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13308 F:      drivers/media/i2c/ov2659.c
13309 F:      include/media/i2c/ov2659.h
13310
13311 OVERLAY FILESYSTEM
13312 M:      Miklos Szeredi <miklos@szeredi.hu>
13313 L:      linux-unionfs@vger.kernel.org
13314 S:      Supported
13315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13316 F:      Documentation/filesystems/overlayfs.rst
13317 F:      fs/overlayfs/
13318
13319 P54 WIRELESS DRIVER
13320 M:      Christian Lamparter <chunkeey@googlemail.com>
13321 L:      linux-wireless@vger.kernel.org
13322 S:      Maintained
13323 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13324 F:      drivers/net/wireless/intersil/p54/
13325
13326 PACKING
13327 M:      Vladimir Oltean <olteanv@gmail.com>
13328 L:      netdev@vger.kernel.org
13329 S:      Supported
13330 F:      Documentation/core-api/packing.rst
13331 F:      include/linux/packing.h
13332 F:      lib/packing.c
13333
13334 PADATA PARALLEL EXECUTION MECHANISM
13335 M:      Steffen Klassert <steffen.klassert@secunet.com>
13336 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13337 L:      linux-crypto@vger.kernel.org
13338 L:      linux-kernel@vger.kernel.org
13339 S:      Maintained
13340 F:      Documentation/core-api/padata.rst
13341 F:      include/linux/padata.h
13342 F:      kernel/padata.c
13343
13344 PAGE POOL
13345 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13346 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13347 L:      netdev@vger.kernel.org
13348 S:      Supported
13349 F:      Documentation/networking/page_pool.rst
13350 F:      include/net/page_pool.h
13351 F:      include/trace/events/page_pool.h
13352 F:      net/core/page_pool.c
13353
13354 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13355 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13356 L:      platform-driver-x86@vger.kernel.org
13357 S:      Maintained
13358 F:      drivers/platform/x86/panasonic-laptop.c
13359
13360 PARALLAX PING IIO SENSOR DRIVER
13361 M:      Andreas Klinger <ak@it-klinger.de>
13362 L:      linux-iio@vger.kernel.org
13363 S:      Maintained
13364 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13365 F:      drivers/iio/proximity/ping.c
13366
13367 PARALLEL LCD/KEYPAD PANEL DRIVER
13368 M:      Willy Tarreau <willy@haproxy.com>
13369 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13370 S:      Odd Fixes
13371 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13372 F:      drivers/auxdisplay/panel.c
13373
13374 PARALLEL PORT SUBSYSTEM
13375 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13376 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13377 L:      linux-parport@lists.infradead.org (subscribers-only)
13378 S:      Maintained
13379 F:      Documentation/driver-api/parport*.rst
13380 F:      drivers/char/ppdev.c
13381 F:      drivers/parport/
13382 F:      include/linux/parport*.h
13383 F:      include/uapi/linux/ppdev.h
13384
13385 PARAVIRT_OPS INTERFACE
13386 M:      Juergen Gross <jgross@suse.com>
13387 M:      Deep Shah <sdeep@vmware.com>
13388 M:      "VMware, Inc." <pv-drivers@vmware.com>
13389 L:      virtualization@lists.linux-foundation.org
13390 S:      Supported
13391 F:      Documentation/virt/paravirt_ops.rst
13392 F:      arch/*/include/asm/paravirt*.h
13393 F:      arch/*/kernel/paravirt*
13394 F:      include/linux/hypervisor.h
13395
13396 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13397 M:      Tim Waugh <tim@cyberelk.net>
13398 L:      linux-parport@lists.infradead.org (subscribers-only)
13399 S:      Maintained
13400 F:      Documentation/admin-guide/blockdev/paride.rst
13401 F:      drivers/block/paride/
13402
13403 PARISC ARCHITECTURE
13404 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13405 M:      Helge Deller <deller@gmx.de>
13406 L:      linux-parisc@vger.kernel.org
13407 S:      Maintained
13408 W:      https://parisc.wiki.kernel.org
13409 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13412 F:      Documentation/parisc/
13413 F:      arch/parisc/
13414 F:      drivers/char/agp/parisc-agp.c
13415 F:      drivers/input/misc/hp_sdc_rtc.c
13416 F:      drivers/input/serio/gscps2.c
13417 F:      drivers/input/serio/hp_sdc*
13418 F:      drivers/parisc/
13419 F:      drivers/parport/parport_gsc.*
13420 F:      drivers/tty/serial/8250/8250_gsc.c
13421 F:      drivers/video/console/sti*
13422 F:      drivers/video/fbdev/sti*
13423 F:      drivers/video/logo/logo_parisc*
13424 F:      include/linux/hp_sdc.h
13425
13426 PARMAN
13427 M:      Jiri Pirko <jiri@nvidia.com>
13428 L:      netdev@vger.kernel.org
13429 S:      Supported
13430 F:      include/linux/parman.h
13431 F:      lib/parman.c
13432 F:      lib/test_parman.c
13433
13434 PC ENGINES APU BOARD DRIVER
13435 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13436 S:      Maintained
13437 F:      drivers/platform/x86/pcengines-apuv2.c
13438
13439 PC87360 HARDWARE MONITORING DRIVER
13440 M:      Jim Cromie <jim.cromie@gmail.com>
13441 L:      linux-hwmon@vger.kernel.org
13442 S:      Maintained
13443 F:      Documentation/hwmon/pc87360.rst
13444 F:      drivers/hwmon/pc87360.c
13445
13446 PC8736x GPIO DRIVER
13447 M:      Jim Cromie <jim.cromie@gmail.com>
13448 S:      Maintained
13449 F:      drivers/char/pc8736x_gpio.c
13450
13451 PC87427 HARDWARE MONITORING DRIVER
13452 M:      Jean Delvare <jdelvare@suse.com>
13453 L:      linux-hwmon@vger.kernel.org
13454 S:      Maintained
13455 F:      Documentation/hwmon/pc87427.rst
13456 F:      drivers/hwmon/pc87427.c
13457
13458 PCA9532 LED DRIVER
13459 M:      Riku Voipio <riku.voipio@iki.fi>
13460 S:      Maintained
13461 F:      drivers/leds/leds-pca9532.c
13462 F:      include/linux/leds-pca9532.h
13463
13464 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13465 M:      Guenter Roeck <linux@roeck-us.net>
13466 L:      linux-i2c@vger.kernel.org
13467 S:      Maintained
13468 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13469
13470 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13471 M:      Khalid Aziz <khalid@gonehiking.org>
13472 S:      Maintained
13473 F:      drivers/firmware/pcdp.*
13474
13475 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13476 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13477 M:      Pali Rohár <pali@kernel.org>
13478 L:      linux-pci@vger.kernel.org
13479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13480 S:      Maintained
13481 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13482 F:      drivers/pci/controller/pci-aardvark.c
13483
13484 PCI DRIVER FOR ALTERA PCIE IP
13485 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13486 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13487 L:      linux-pci@vger.kernel.org
13488 S:      Supported
13489 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13490 F:      drivers/pci/controller/pcie-altera.c
13491
13492 PCI DRIVER FOR APPLIEDMICRO XGENE
13493 M:      Toan Le <toan@os.amperecomputing.com>
13494 L:      linux-pci@vger.kernel.org
13495 L:      linux-arm-kernel@lists.infradead.org
13496 S:      Maintained
13497 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13498 F:      drivers/pci/controller/pci-xgene.c
13499
13500 PCI DRIVER FOR ARM VERSATILE PLATFORM
13501 M:      Rob Herring <robh@kernel.org>
13502 L:      linux-pci@vger.kernel.org
13503 L:      linux-arm-kernel@lists.infradead.org
13504 S:      Maintained
13505 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13506 F:      drivers/pci/controller/pci-versatile.c
13507
13508 PCI DRIVER FOR ARMADA 8K
13509 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13510 L:      linux-pci@vger.kernel.org
13511 L:      linux-arm-kernel@lists.infradead.org
13512 S:      Maintained
13513 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13514 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13515
13516 PCI DRIVER FOR CADENCE PCIE IP
13517 M:      Tom Joseph <tjoseph@cadence.com>
13518 L:      linux-pci@vger.kernel.org
13519 S:      Maintained
13520 F:      Documentation/devicetree/bindings/pci/cdns,*
13521 F:      drivers/pci/controller/cadence/
13522
13523 PCI DRIVER FOR FREESCALE LAYERSCAPE
13524 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13525 M:      Mingkai Hu <mingkai.hu@nxp.com>
13526 M:      Roy Zang <roy.zang@nxp.com>
13527 L:      linuxppc-dev@lists.ozlabs.org
13528 L:      linux-pci@vger.kernel.org
13529 L:      linux-arm-kernel@lists.infradead.org
13530 S:      Maintained
13531 F:      drivers/pci/controller/dwc/*layerscape*
13532
13533 PCI DRIVER FOR GENERIC OF HOSTS
13534 M:      Will Deacon <will@kernel.org>
13535 L:      linux-pci@vger.kernel.org
13536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13537 S:      Maintained
13538 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13539 F:      drivers/pci/controller/pci-host-common.c
13540 F:      drivers/pci/controller/pci-host-generic.c
13541
13542 PCI DRIVER FOR IMX6
13543 M:      Richard Zhu <hongxing.zhu@nxp.com>
13544 M:      Lucas Stach <l.stach@pengutronix.de>
13545 L:      linux-pci@vger.kernel.org
13546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13547 S:      Maintained
13548 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13549 F:      drivers/pci/controller/dwc/*imx6*
13550
13551 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13552 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13553 L:      linux-pci@vger.kernel.org
13554 S:      Supported
13555 F:      drivers/pci/controller/vmd.c
13556
13557 PCI DRIVER FOR MICROSEMI SWITCHTEC
13558 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13559 M:      Logan Gunthorpe <logang@deltatee.com>
13560 L:      linux-pci@vger.kernel.org
13561 S:      Maintained
13562 F:      Documentation/ABI/testing/sysfs-class-switchtec
13563 F:      Documentation/driver-api/switchtec.rst
13564 F:      drivers/ntb/hw/mscc/
13565 F:      drivers/pci/switch/switchtec*
13566 F:      include/linux/switchtec.h
13567 F:      include/uapi/linux/switchtec_ioctl.h
13568
13569 PCI DRIVER FOR MOBIVEIL PCIE IP
13570 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13571 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13572 L:      linux-pci@vger.kernel.org
13573 S:      Supported
13574 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13575 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13576
13577 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13578 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13579 L:      linux-pci@vger.kernel.org
13580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13581 S:      Maintained
13582 F:      drivers/pci/controller/*mvebu*
13583
13584 PCI DRIVER FOR NVIDIA TEGRA
13585 M:      Thierry Reding <thierry.reding@gmail.com>
13586 L:      linux-tegra@vger.kernel.org
13587 L:      linux-pci@vger.kernel.org
13588 S:      Supported
13589 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13590 F:      drivers/pci/controller/pci-tegra.c
13591
13592 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13593 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13594 L:      linux-pci@vger.kernel.org
13595 L:      linux-arm-kernel@lists.infradead.org
13596 S:      Maintained
13597 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13598 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13599
13600 PCI DRIVER FOR RENESAS R-CAR
13601 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13602 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13603 L:      linux-pci@vger.kernel.org
13604 L:      linux-renesas-soc@vger.kernel.org
13605 S:      Maintained
13606 F:      Documentation/devicetree/bindings/pci/*rcar*
13607 F:      drivers/pci/controller/*rcar*
13608
13609 PCI DRIVER FOR SAMSUNG EXYNOS
13610 M:      Jingoo Han <jingoohan1@gmail.com>
13611 L:      linux-pci@vger.kernel.org
13612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13613 L:      linux-samsung-soc@vger.kernel.org
13614 S:      Maintained
13615 F:      drivers/pci/controller/dwc/pci-exynos.c
13616
13617 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13618 M:      Jingoo Han <jingoohan1@gmail.com>
13619 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13620 L:      linux-pci@vger.kernel.org
13621 S:      Maintained
13622 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13623 F:      drivers/pci/controller/dwc/*designware*
13624
13625 PCI DRIVER FOR TI DRA7XX/J721E
13626 M:      Kishon Vijay Abraham I <kishon@ti.com>
13627 L:      linux-omap@vger.kernel.org
13628 L:      linux-pci@vger.kernel.org
13629 L:      linux-arm-kernel@lists.infradead.org
13630 S:      Supported
13631 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13632 F:      drivers/pci/controller/cadence/pci-j721e.c
13633 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13634
13635 PCI DRIVER FOR TI KEYSTONE
13636 M:      Murali Karicheri <m-karicheri2@ti.com>
13637 L:      linux-pci@vger.kernel.org
13638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13639 S:      Maintained
13640 F:      drivers/pci/controller/dwc/pci-keystone.c
13641
13642 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13643 M:      Linus Walleij <linus.walleij@linaro.org>
13644 L:      linux-pci@vger.kernel.org
13645 S:      Maintained
13646 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13647 F:      drivers/pci/controller/pci-v3-semi.c
13648
13649 PCI ENDPOINT SUBSYSTEM
13650 M:      Kishon Vijay Abraham I <kishon@ti.com>
13651 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13652 L:      linux-pci@vger.kernel.org
13653 S:      Supported
13654 F:      Documentation/PCI/endpoint/*
13655 F:      Documentation/misc-devices/pci-endpoint-test.rst
13656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13657 F:      drivers/misc/pci_endpoint_test.c
13658 F:      drivers/pci/endpoint/
13659 F:      tools/pci/
13660
13661 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13662 M:      Russell Currey <ruscur@russell.cc>
13663 M:      Oliver O'Halloran <oohall@gmail.com>
13664 L:      linuxppc-dev@lists.ozlabs.org
13665 S:      Supported
13666 F:      Documentation/PCI/pci-error-recovery.rst
13667 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13668 F:      arch/powerpc/include/*/eeh*.h
13669 F:      arch/powerpc/kernel/eeh*.c
13670 F:      arch/powerpc/platforms/*/eeh*.c
13671 F:      drivers/pci/pcie/aer.c
13672 F:      drivers/pci/pcie/dpc.c
13673 F:      drivers/pci/pcie/err.c
13674
13675 PCI ERROR RECOVERY
13676 M:      Linas Vepstas <linasvepstas@gmail.com>
13677 L:      linux-pci@vger.kernel.org
13678 S:      Supported
13679 F:      Documentation/PCI/pci-error-recovery.rst
13680
13681 PCI MSI DRIVER FOR ALTERA MSI IP
13682 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13683 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13684 L:      linux-pci@vger.kernel.org
13685 S:      Supported
13686 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13687 F:      drivers/pci/controller/pcie-altera-msi.c
13688
13689 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13690 M:      Toan Le <toan@os.amperecomputing.com>
13691 L:      linux-pci@vger.kernel.org
13692 L:      linux-arm-kernel@lists.infradead.org
13693 S:      Maintained
13694 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13695 F:      drivers/pci/controller/pci-xgene-msi.c
13696
13697 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13698 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13699 R:      Rob Herring <robh@kernel.org>
13700 L:      linux-pci@vger.kernel.org
13701 S:      Supported
13702 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13704 F:      drivers/pci/controller/
13705
13706 PCI SUBSYSTEM
13707 M:      Bjorn Helgaas <bhelgaas@google.com>
13708 L:      linux-pci@vger.kernel.org
13709 S:      Supported
13710 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13712 F:      Documentation/PCI/
13713 F:      Documentation/devicetree/bindings/pci/
13714 F:      arch/x86/kernel/early-quirks.c
13715 F:      arch/x86/kernel/quirks.c
13716 F:      arch/x86/pci/
13717 F:      drivers/acpi/pci*
13718 F:      drivers/pci/
13719 F:      include/asm-generic/pci*
13720 F:      include/linux/of_pci.h
13721 F:      include/linux/pci*
13722 F:      include/uapi/linux/pci*
13723 F:      lib/pci*
13724
13725 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13726 M:      Jonathan Chocron <jonnyc@amazon.com>
13727 L:      linux-pci@vger.kernel.org
13728 S:      Maintained
13729 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13730 F:      drivers/pci/controller/dwc/pcie-al.c
13731
13732 PCIE DRIVER FOR AMLOGIC MESON
13733 M:      Yue Wang <yue.wang@Amlogic.com>
13734 L:      linux-pci@vger.kernel.org
13735 L:      linux-amlogic@lists.infradead.org
13736 S:      Maintained
13737 F:      drivers/pci/controller/dwc/pci-meson.c
13738
13739 PCIE DRIVER FOR AXIS ARTPEC
13740 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13741 L:      linux-arm-kernel@axis.com
13742 L:      linux-pci@vger.kernel.org
13743 S:      Maintained
13744 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13745 F:      drivers/pci/controller/dwc/*artpec*
13746
13747 PCIE DRIVER FOR CAVIUM THUNDERX
13748 M:      Robert Richter <rric@kernel.org>
13749 L:      linux-pci@vger.kernel.org
13750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13751 S:      Odd Fixes
13752 F:      drivers/pci/controller/pci-thunder-*
13753
13754 PCIE DRIVER FOR HISILICON
13755 M:      Zhou Wang <wangzhou1@hisilicon.com>
13756 L:      linux-pci@vger.kernel.org
13757 S:      Maintained
13758 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13759 F:      drivers/pci/controller/dwc/pcie-hisi.c
13760
13761 PCIE DRIVER FOR HISILICON KIRIN
13762 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13763 M:      Binghui Wang <wangbinghui@hisilicon.com>
13764 L:      linux-pci@vger.kernel.org
13765 S:      Maintained
13766 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13767 F:      drivers/pci/controller/dwc/pcie-kirin.c
13768
13769 PCIE DRIVER FOR HISILICON STB
13770 M:      Shawn Guo <shawn.guo@linaro.org>
13771 L:      linux-pci@vger.kernel.org
13772 S:      Maintained
13773 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13774 F:      drivers/pci/controller/dwc/pcie-histb.c
13775
13776 PCIE DRIVER FOR MEDIATEK
13777 M:      Ryder Lee <ryder.lee@mediatek.com>
13778 L:      linux-pci@vger.kernel.org
13779 L:      linux-mediatek@lists.infradead.org
13780 S:      Supported
13781 F:      Documentation/devicetree/bindings/pci/mediatek*
13782 F:      drivers/pci/controller/*mediatek*
13783
13784 PCIE DRIVER FOR QUALCOMM MSM
13785 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13786 L:      linux-pci@vger.kernel.org
13787 L:      linux-arm-msm@vger.kernel.org
13788 S:      Maintained
13789 F:      drivers/pci/controller/dwc/*qcom*
13790
13791 PCIE DRIVER FOR ROCKCHIP
13792 M:      Shawn Lin <shawn.lin@rock-chips.com>
13793 L:      linux-pci@vger.kernel.org
13794 L:      linux-rockchip@lists.infradead.org
13795 S:      Maintained
13796 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13797 F:      drivers/pci/controller/pcie-rockchip*
13798
13799 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13800 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13801 L:      linux-pci@vger.kernel.org
13802 S:      Maintained
13803 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13804 F:      drivers/pci/controller/dwc/pcie-uniphier*
13805
13806 PCIE DRIVER FOR ST SPEAR13XX
13807 M:      Pratyush Anand <pratyush.anand@gmail.com>
13808 L:      linux-pci@vger.kernel.org
13809 S:      Maintained
13810 F:      drivers/pci/controller/dwc/*spear*
13811
13812 PCMCIA SUBSYSTEM
13813 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13814 S:      Odd Fixes
13815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13816 F:      Documentation/pcmcia/
13817 F:      drivers/pcmcia/
13818 F:      include/pcmcia/
13819 F:      tools/pcmcia/
13820
13821 PCNET32 NETWORK DRIVER
13822 M:      Don Fry <pcnet32@frontier.com>
13823 L:      netdev@vger.kernel.org
13824 S:      Maintained
13825 F:      drivers/net/ethernet/amd/pcnet32.c
13826
13827 PCRYPT PARALLEL CRYPTO ENGINE
13828 M:      Steffen Klassert <steffen.klassert@secunet.com>
13829 L:      linux-crypto@vger.kernel.org
13830 S:      Maintained
13831 F:      crypto/pcrypt.c
13832 F:      include/crypto/pcrypt.h
13833
13834 PEAQ WMI HOTKEYS DRIVER
13835 M:      Hans de Goede <hdegoede@redhat.com>
13836 L:      platform-driver-x86@vger.kernel.org
13837 S:      Maintained
13838 F:      drivers/platform/x86/peaq-wmi.c
13839
13840 PENSANDO ETHERNET DRIVERS
13841 M:      Shannon Nelson <snelson@pensando.io>
13842 M:      drivers@pensando.io
13843 L:      netdev@vger.kernel.org
13844 S:      Supported
13845 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13846 F:      drivers/net/ethernet/pensando/
13847
13848 PER-CPU MEMORY ALLOCATOR
13849 M:      Dennis Zhou <dennis@kernel.org>
13850 M:      Tejun Heo <tj@kernel.org>
13851 M:      Christoph Lameter <cl@linux.com>
13852 S:      Maintained
13853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13854 F:      arch/*/include/asm/percpu.h
13855 F:      include/linux/percpu*.h
13856 F:      mm/percpu*.c
13857
13858 PER-TASK DELAY ACCOUNTING
13859 M:      Balbir Singh <bsingharora@gmail.com>
13860 S:      Maintained
13861 F:      include/linux/delayacct.h
13862 F:      kernel/delayacct.c
13863
13864 PERFORMANCE EVENTS SUBSYSTEM
13865 M:      Peter Zijlstra <peterz@infradead.org>
13866 M:      Ingo Molnar <mingo@redhat.com>
13867 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13868 R:      Mark Rutland <mark.rutland@arm.com>
13869 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13870 R:      Jiri Olsa <jolsa@redhat.com>
13871 R:      Namhyung Kim <namhyung@kernel.org>
13872 L:      linux-kernel@vger.kernel.org
13873 S:      Supported
13874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13875 F:      arch/*/events/*
13876 F:      arch/*/events/*/*
13877 F:      arch/*/include/asm/perf_event.h
13878 F:      arch/*/kernel/*/*/perf_event*.c
13879 F:      arch/*/kernel/*/perf_event*.c
13880 F:      arch/*/kernel/perf_callchain.c
13881 F:      arch/*/kernel/perf_event*.c
13882 F:      include/linux/perf_event.h
13883 F:      include/uapi/linux/perf_event.h
13884 F:      kernel/events/*
13885 F:      tools/lib/perf/
13886 F:      tools/perf/
13887
13888 PERFORMANCE EVENTS TOOLING ARM64
13889 R:      John Garry <john.garry@huawei.com>
13890 R:      Will Deacon <will@kernel.org>
13891 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13892 R:      Leo Yan <leo.yan@linaro.org>
13893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13894 S:      Supported
13895 F:      tools/build/feature/test-libopencsd.c
13896 F:      tools/perf/arch/arm*/
13897 F:      tools/perf/pmu-events/arch/arm64/
13898 F:      tools/perf/util/arm-spe*
13899 F:      tools/perf/util/cs-etm*
13900
13901 PERSONALITY HANDLING
13902 M:      Christoph Hellwig <hch@infradead.org>
13903 L:      linux-abi-devel@lists.sourceforge.net
13904 S:      Maintained
13905 F:      include/linux/personality.h
13906 F:      include/uapi/linux/personality.h
13907
13908 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13909 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13910 L:      linux-input@vger.kernel.org
13911 S:      Maintained
13912 F:      Documentation/input/devices/pxrc.rst
13913 F:      drivers/input/joystick/pxrc.c
13914
13915 PHONET PROTOCOL
13916 M:      Remi Denis-Courmont <courmisch@gmail.com>
13917 S:      Supported
13918 F:      Documentation/networking/phonet.rst
13919 F:      include/linux/phonet.h
13920 F:      include/net/phonet/
13921 F:      include/uapi/linux/phonet.h
13922 F:      net/phonet/
13923
13924 PHRAM MTD DRIVER
13925 M:      Joern Engel <joern@lazybastard.org>
13926 L:      linux-mtd@lists.infradead.org
13927 S:      Maintained
13928 F:      drivers/mtd/devices/phram.c
13929
13930 PICOLCD HID DRIVER
13931 M:      Bruno Prémont <bonbons@linux-vserver.org>
13932 L:      linux-input@vger.kernel.org
13933 S:      Maintained
13934 F:      drivers/hid/hid-picolcd*
13935
13936 PIDFD API
13937 M:      Christian Brauner <christian@brauner.io>
13938 L:      linux-kernel@vger.kernel.org
13939 S:      Maintained
13940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13941 F:      samples/pidfd/
13942 F:      tools/testing/selftests/clone3/
13943 F:      tools/testing/selftests/pid_namespace/
13944 F:      tools/testing/selftests/pidfd/
13945 K:      (?i)pidfd
13946 K:      (?i)clone3
13947 K:      \b(clone_args|kernel_clone_args)\b
13948
13949 PIN CONTROL SUBSYSTEM
13950 M:      Linus Walleij <linus.walleij@linaro.org>
13951 L:      linux-gpio@vger.kernel.org
13952 S:      Maintained
13953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13954 F:      Documentation/devicetree/bindings/pinctrl/
13955 F:      Documentation/driver-api/pinctl.rst
13956 F:      drivers/pinctrl/
13957 F:      include/linux/pinctrl/
13958
13959 PIN CONTROLLER - FREESCALE
13960 M:      Dong Aisheng <aisheng.dong@nxp.com>
13961 M:      Fabio Estevam <festevam@gmail.com>
13962 M:      Shawn Guo <shawnguo@kernel.org>
13963 M:      Stefan Agner <stefan@agner.ch>
13964 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13965 L:      linux-gpio@vger.kernel.org
13966 S:      Maintained
13967 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13968 F:      drivers/pinctrl/freescale/
13969
13970 PIN CONTROLLER - INTEL
13971 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13972 M:      Andy Shevchenko <andy@kernel.org>
13973 S:      Maintained
13974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13975 F:      drivers/pinctrl/intel/
13976
13977 PIN CONTROLLER - MEDIATEK
13978 M:      Sean Wang <sean.wang@kernel.org>
13979 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13980 S:      Maintained
13981 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13982 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13983 F:      drivers/pinctrl/mediatek/
13984
13985 PIN CONTROLLER - MICROCHIP AT91
13986 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13988 L:      linux-gpio@vger.kernel.org
13989 S:      Supported
13990 F:      drivers/gpio/gpio-sama5d2-piobu.c
13991 F:      drivers/pinctrl/pinctrl-at91*
13992
13993 PIN CONTROLLER - QUALCOMM
13994 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13995 L:      linux-arm-msm@vger.kernel.org
13996 S:      Maintained
13997 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13998 F:      drivers/pinctrl/qcom/
13999
14000 PIN CONTROLLER - RENESAS
14001 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14002 L:      linux-renesas-soc@vger.kernel.org
14003 S:      Supported
14004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14005 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14006 F:      drivers/pinctrl/renesas/
14007
14008 PIN CONTROLLER - SAMSUNG
14009 M:      Tomasz Figa <tomasz.figa@gmail.com>
14010 M:      Krzysztof Kozlowski <krzk@kernel.org>
14011 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14013 L:      linux-samsung-soc@vger.kernel.org
14014 S:      Maintained
14015 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14017 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14018 F:      drivers/pinctrl/samsung/
14019 F:      include/dt-bindings/pinctrl/samsung.h
14020
14021 PIN CONTROLLER - SINGLE
14022 M:      Tony Lindgren <tony@atomide.com>
14023 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14025 L:      linux-omap@vger.kernel.org
14026 S:      Maintained
14027 F:      drivers/pinctrl/pinctrl-single.c
14028
14029 PIN CONTROLLER - ST SPEAR
14030 M:      Viresh Kumar <vireshk@kernel.org>
14031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14032 S:      Maintained
14033 W:      http://www.st.com/spear
14034 F:      drivers/pinctrl/spear/
14035
14036 PISTACHIO SOC SUPPORT
14037 M:      James Hartley <james.hartley@sondrel.com>
14038 L:      linux-mips@vger.kernel.org
14039 S:      Odd Fixes
14040 F:      arch/mips/boot/dts/img/pistachio*
14041 F:      arch/mips/configs/pistachio*_defconfig
14042 F:      arch/mips/include/asm/mach-pistachio/
14043 F:      arch/mips/pistachio/
14044
14045 PKTCDVD DRIVER
14046 M:      linux-block@vger.kernel.org
14047 S:      Orphan
14048 F:      drivers/block/pktcdvd.c
14049 F:      include/linux/pktcdvd.h
14050 F:      include/uapi/linux/pktcdvd.h
14051
14052 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14053 M:      Tomasz Duszynski <tduszyns@gmail.com>
14054 S:      Maintained
14055 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14056 F:      drivers/iio/chemical/pms7003.c
14057
14058 PLDMFW LIBRARY
14059 M:      Jacob Keller <jacob.e.keller@intel.com>
14060 S:      Maintained
14061 F:      Documentation/driver-api/pldmfw/
14062 F:      include/linux/pldmfw.h
14063 F:      lib/pldmfw/
14064
14065 PLX DMA DRIVER
14066 M:      Logan Gunthorpe <logang@deltatee.com>
14067 S:      Maintained
14068 F:      drivers/dma/plx_dma.c
14069
14070 PM6764TR DRIVER
14071 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14072 L:      linux-hwmon@vger.kernel.org
14073 S:      Maintained
14074 F:      Documentation/hwmon/pm6764tr.rst
14075 F:      drivers/hwmon/pmbus/pm6764tr.c
14076
14077 PM-GRAPH UTILITY
14078 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14079 L:      linux-pm@vger.kernel.org
14080 S:      Supported
14081 W:      https://01.org/pm-graph
14082 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14083 T:      git git://github.com/intel/pm-graph
14084 F:      tools/power/pm-graph
14085
14086 PMBUS HARDWARE MONITORING DRIVERS
14087 M:      Guenter Roeck <linux@roeck-us.net>
14088 L:      linux-hwmon@vger.kernel.org
14089 S:      Maintained
14090 W:      http://hwmon.wiki.kernel.org/
14091 W:      http://www.roeck-us.net/linux/drivers/
14092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14093 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14094 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14095 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14096 F:      Documentation/hwmon/adm1275.rst
14097 F:      Documentation/hwmon/ibm-cffps.rst
14098 F:      Documentation/hwmon/ir35221.rst
14099 F:      Documentation/hwmon/lm25066.rst
14100 F:      Documentation/hwmon/ltc2978.rst
14101 F:      Documentation/hwmon/ltc3815.rst
14102 F:      Documentation/hwmon/max16064.rst
14103 F:      Documentation/hwmon/max20751.rst
14104 F:      Documentation/hwmon/max31785.rst
14105 F:      Documentation/hwmon/max34440.rst
14106 F:      Documentation/hwmon/max8688.rst
14107 F:      Documentation/hwmon/pmbus-core.rst
14108 F:      Documentation/hwmon/pmbus.rst
14109 F:      Documentation/hwmon/tps40422.rst
14110 F:      Documentation/hwmon/ucd9000.rst
14111 F:      Documentation/hwmon/ucd9200.rst
14112 F:      Documentation/hwmon/zl6100.rst
14113 F:      drivers/hwmon/pmbus/
14114 F:      include/linux/pmbus.h
14115
14116 PMC SIERRA MaxRAID DRIVER
14117 L:      linux-scsi@vger.kernel.org
14118 S:      Orphan
14119 W:      http://www.pmc-sierra.com/
14120 F:      drivers/scsi/pmcraid.*
14121
14122 PMC SIERRA PM8001 DRIVER
14123 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14124 L:      linux-scsi@vger.kernel.org
14125 S:      Supported
14126 F:      drivers/scsi/pm8001/
14127
14128 PNI RM3100 IIO DRIVER
14129 M:      Song Qiang <songqiang1304521@gmail.com>
14130 L:      linux-iio@vger.kernel.org
14131 S:      Maintained
14132 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14133 F:      drivers/iio/magnetometer/rm3100*
14134
14135 PNP SUPPORT
14136 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14137 L:      linux-acpi@vger.kernel.org
14138 S:      Maintained
14139 F:      drivers/pnp/
14140 F:      include/linux/pnp.h
14141
14142 POSIX CLOCKS and TIMERS
14143 M:      Thomas Gleixner <tglx@linutronix.de>
14144 L:      linux-kernel@vger.kernel.org
14145 S:      Maintained
14146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14147 F:      fs/timerfd.c
14148 F:      include/linux/time_namespace.h
14149 F:      include/linux/timer*
14150 F:      kernel/time/*timer*
14151 F:      kernel/time/namespace.c
14152
14153 POWER MANAGEMENT CORE
14154 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14155 L:      linux-pm@vger.kernel.org
14156 S:      Supported
14157 B:      https://bugzilla.kernel.org
14158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14159 F:      drivers/base/power/
14160 F:      drivers/powercap/
14161 F:      include/linux/intel_rapl.h
14162 F:      include/linux/pm.h
14163 F:      include/linux/pm_*
14164 F:      include/linux/powercap.h
14165 F:      kernel/configs/nopm.config
14166
14167 POWER STATE COORDINATION INTERFACE (PSCI)
14168 M:      Mark Rutland <mark.rutland@arm.com>
14169 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14170 L:      linux-arm-kernel@lists.infradead.org
14171 S:      Maintained
14172 F:      drivers/firmware/psci/
14173 F:      include/linux/psci.h
14174 F:      include/uapi/linux/psci.h
14175
14176 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14177 M:      Sebastian Reichel <sre@kernel.org>
14178 L:      linux-pm@vger.kernel.org
14179 S:      Maintained
14180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14181 F:      Documentation/ABI/testing/sysfs-class-power
14182 F:      Documentation/devicetree/bindings/power/supply/
14183 F:      drivers/power/supply/
14184 F:      include/linux/power_supply.h
14185
14186 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14187 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14188 L:      linuxppc-dev@lists.ozlabs.org
14189 S:      Maintained
14190 F:      drivers/char/powernv-op-panel.c
14191
14192 PPP OVER ATM (RFC 2364)
14193 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14194 S:      Maintained
14195 F:      include/uapi/linux/atmppp.h
14196 F:      net/atm/pppoatm.c
14197
14198 PPP OVER ETHERNET
14199 M:      Michal Ostrowski <mostrows@earthlink.net>
14200 S:      Maintained
14201 F:      drivers/net/ppp/pppoe.c
14202 F:      drivers/net/ppp/pppox.c
14203
14204 PPP OVER L2TP
14205 M:      James Chapman <jchapman@katalix.com>
14206 S:      Maintained
14207 F:      include/linux/if_pppol2tp.h
14208 F:      include/uapi/linux/if_pppol2tp.h
14209 F:      net/l2tp/l2tp_ppp.c
14210
14211 PPP PROTOCOL DRIVERS AND COMPRESSORS
14212 M:      Paul Mackerras <paulus@samba.org>
14213 L:      linux-ppp@vger.kernel.org
14214 S:      Maintained
14215 F:      drivers/net/ppp/ppp_*
14216
14217 PPS SUPPORT
14218 M:      Rodolfo Giometti <giometti@enneenne.com>
14219 L:      linuxpps@ml.enneenne.com (subscribers-only)
14220 S:      Maintained
14221 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14222 F:      Documentation/ABI/testing/sysfs-pps
14223 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14224 F:      Documentation/driver-api/pps.rst
14225 F:      drivers/pps/
14226 F:      include/linux/pps*.h
14227 F:      include/uapi/linux/pps.h
14228
14229 PPTP DRIVER
14230 M:      Dmitry Kozlov <xeb@mail.ru>
14231 L:      netdev@vger.kernel.org
14232 S:      Maintained
14233 W:      http://sourceforge.net/projects/accel-pptp
14234 F:      drivers/net/ppp/pptp.c
14235
14236 PRESSURE STALL INFORMATION (PSI)
14237 M:      Johannes Weiner <hannes@cmpxchg.org>
14238 S:      Maintained
14239 F:      include/linux/psi*
14240 F:      kernel/sched/psi.c
14241
14242 PRINTK
14243 M:      Petr Mladek <pmladek@suse.com>
14244 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14245 R:      Steven Rostedt <rostedt@goodmis.org>
14246 R:      John Ogness <john.ogness@linutronix.de>
14247 S:      Maintained
14248 F:      include/linux/printk.h
14249 F:      kernel/printk/
14250
14251 PRISM54 WIRELESS DRIVER
14252 M:      Luis Chamberlain <mcgrof@kernel.org>
14253 L:      linux-wireless@vger.kernel.org
14254 S:      Obsolete
14255 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14256 F:      drivers/net/wireless/intersil/prism54/
14257
14258 PROC FILESYSTEM
14259 R:      Alexey Dobriyan <adobriyan@gmail.com>
14260 L:      linux-kernel@vger.kernel.org
14261 L:      linux-fsdevel@vger.kernel.org
14262 S:      Maintained
14263 F:      Documentation/filesystems/proc.rst
14264 F:      fs/proc/
14265 F:      include/linux/proc_fs.h
14266 F:      tools/testing/selftests/proc/
14267
14268 PROC SYSCTL
14269 M:      Luis Chamberlain <mcgrof@kernel.org>
14270 M:      Kees Cook <keescook@chromium.org>
14271 M:      Iurii Zaikin <yzaikin@google.com>
14272 L:      linux-kernel@vger.kernel.org
14273 L:      linux-fsdevel@vger.kernel.org
14274 S:      Maintained
14275 F:      fs/proc/proc_sysctl.c
14276 F:      include/linux/sysctl.h
14277 F:      kernel/sysctl-test.c
14278 F:      kernel/sysctl.c
14279 F:      tools/testing/selftests/sysctl/
14280
14281 PS3 NETWORK SUPPORT
14282 M:      Geoff Levand <geoff@infradead.org>
14283 L:      netdev@vger.kernel.org
14284 L:      linuxppc-dev@lists.ozlabs.org
14285 S:      Maintained
14286 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14287
14288 PS3 PLATFORM SUPPORT
14289 M:      Geoff Levand <geoff@infradead.org>
14290 L:      linuxppc-dev@lists.ozlabs.org
14291 S:      Maintained
14292 F:      arch/powerpc/boot/ps3*
14293 F:      arch/powerpc/include/asm/lv1call.h
14294 F:      arch/powerpc/include/asm/ps3*.h
14295 F:      arch/powerpc/platforms/ps3/
14296 F:      drivers/*/ps3*
14297 F:      drivers/ps3/
14298 F:      drivers/rtc/rtc-ps3.c
14299 F:      drivers/usb/host/*ps3.c
14300 F:      sound/ppc/snd_ps3*
14301
14302 PS3VRAM DRIVER
14303 M:      Jim Paris <jim@jtan.com>
14304 M:      Geoff Levand <geoff@infradead.org>
14305 L:      linuxppc-dev@lists.ozlabs.org
14306 S:      Maintained
14307 F:      drivers/block/ps3vram.c
14308
14309 PSAMPLE PACKET SAMPLING SUPPORT
14310 M:      Yotam Gigi <yotam.gi@gmail.com>
14311 S:      Maintained
14312 F:      include/net/psample.h
14313 F:      include/uapi/linux/psample.h
14314 F:      net/psample
14315
14316 PSTORE FILESYSTEM
14317 M:      Kees Cook <keescook@chromium.org>
14318 M:      Anton Vorontsov <anton@enomsg.org>
14319 M:      Colin Cross <ccross@android.com>
14320 M:      Tony Luck <tony.luck@intel.com>
14321 S:      Maintained
14322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14323 F:      Documentation/admin-guide/ramoops.rst
14324 F:      Documentation/admin-guide/pstore-blk.rst
14325 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14326 F:      drivers/acpi/apei/erst.c
14327 F:      drivers/firmware/efi/efi-pstore.c
14328 F:      fs/pstore/
14329 F:      include/linux/pstore*
14330 K:      \b(pstore|ramoops)
14331
14332 PTP HARDWARE CLOCK SUPPORT
14333 M:      Richard Cochran <richardcochran@gmail.com>
14334 L:      netdev@vger.kernel.org
14335 S:      Maintained
14336 W:      http://linuxptp.sourceforge.net/
14337 F:      Documentation/ABI/testing/sysfs-ptp
14338 F:      Documentation/driver-api/ptp.rst
14339 F:      drivers/net/phy/dp83640*
14340 F:      drivers/ptp/*
14341 F:      include/linux/ptp_cl*
14342
14343 PTRACE SUPPORT
14344 M:      Oleg Nesterov <oleg@redhat.com>
14345 S:      Maintained
14346 F:      arch/*/*/ptrace*.c
14347 F:      arch/*/include/asm/ptrace*.h
14348 F:      arch/*/ptrace*.c
14349 F:      include/asm-generic/syscall.h
14350 F:      include/linux/ptrace.h
14351 F:      include/linux/regset.h
14352 F:      include/linux/tracehook.h
14353 F:      include/uapi/linux/ptrace.h
14354 F:      include/uapi/linux/ptrace.h
14355 F:      kernel/ptrace.c
14356
14357 PULSE8-CEC DRIVER
14358 M:      Hans Verkuil <hverkuil@xs4all.nl>
14359 L:      linux-media@vger.kernel.org
14360 S:      Maintained
14361 T:      git git://linuxtv.org/media_tree.git
14362 F:      Documentation/admin-guide/media/pulse8-cec.rst
14363 F:      drivers/media/cec/usb/pulse8/
14364
14365 PVRUSB2 VIDEO4LINUX DRIVER
14366 M:      Mike Isely <isely@pobox.com>
14367 L:      pvrusb2@isely.net       (subscribers-only)
14368 L:      linux-media@vger.kernel.org
14369 S:      Maintained
14370 W:      http://www.isely.net/pvrusb2/
14371 T:      git git://linuxtv.org/media_tree.git
14372 F:      Documentation/driver-api/media/drivers/pvrusb2*
14373 F:      drivers/media/usb/pvrusb2/
14374
14375 PWC WEBCAM DRIVER
14376 M:      Hans Verkuil <hverkuil@xs4all.nl>
14377 L:      linux-media@vger.kernel.org
14378 S:      Odd Fixes
14379 T:      git git://linuxtv.org/media_tree.git
14380 F:      drivers/media/usb/pwc/*
14381 F:      include/trace/events/pwc.h
14382
14383 PWM FAN DRIVER
14384 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14385 L:      linux-hwmon@vger.kernel.org
14386 S:      Supported
14387 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14388 F:      Documentation/hwmon/pwm-fan.rst
14389 F:      drivers/hwmon/pwm-fan.c
14390
14391 PWM IR Transmitter
14392 M:      Sean Young <sean@mess.org>
14393 L:      linux-media@vger.kernel.org
14394 S:      Maintained
14395 F:      drivers/media/rc/pwm-ir-tx.c
14396
14397 PWM SUBSYSTEM
14398 M:      Thierry Reding <thierry.reding@gmail.com>
14399 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14400 M:      Lee Jones <lee.jones@linaro.org>
14401 L:      linux-pwm@vger.kernel.org
14402 S:      Maintained
14403 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14405 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14406 F:      Documentation/devicetree/bindings/pwm/
14407 F:      Documentation/driver-api/pwm.rst
14408 F:      drivers/gpio/gpio-mvebu.c
14409 F:      drivers/pwm/
14410 F:      drivers/video/backlight/pwm_bl.c
14411 F:      include/linux/pwm.h
14412 F:      include/linux/pwm_backlight.h
14413 K:      pwm_(config|apply_state|ops)
14414
14415 PXA GPIO DRIVER
14416 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14417 L:      linux-gpio@vger.kernel.org
14418 S:      Maintained
14419 F:      drivers/gpio/gpio-pxa.c
14420
14421 PXA MMCI DRIVER
14422 S:      Orphan
14423
14424 PXA RTC DRIVER
14425 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14426 L:      linux-rtc@vger.kernel.org
14427 S:      Maintained
14428
14429 PXA2xx/PXA3xx SUPPORT
14430 M:      Daniel Mack <daniel@zonque.org>
14431 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14432 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14434 S:      Maintained
14435 T:      git git://github.com/hzhuang1/linux.git
14436 T:      git git://github.com/rjarzmik/linux.git
14437 F:      arch/arm/boot/dts/pxa*
14438 F:      arch/arm/mach-pxa/
14439 F:      drivers/dma/pxa*
14440 F:      drivers/pcmcia/pxa2xx*
14441 F:      drivers/pinctrl/pxa/
14442 F:      drivers/spi/spi-pxa2xx*
14443 F:      drivers/usb/gadget/udc/pxa2*
14444 F:      include/sound/pxa2xx-lib.h
14445 F:      sound/arm/pxa*
14446 F:      sound/soc/pxa/
14447
14448 QAT DRIVER
14449 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14450 L:      qat-linux@intel.com
14451 S:      Supported
14452 F:      drivers/crypto/qat/
14453
14454 QCOM AUDIO (ASoC) DRIVERS
14455 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14456 M:      Banajit Goswami <bgoswami@codeaurora.org>
14457 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14458 S:      Supported
14459 F:      sound/soc/codecs/lpass-va-macro.c
14460 F:      sound/soc/codecs/lpass-wsa-macro.*
14461 F:      sound/soc/codecs/msm8916-wcd-analog.c
14462 F:      sound/soc/codecs/msm8916-wcd-digital.c
14463 F:      sound/soc/codecs/wcd9335.*
14464 F:      sound/soc/codecs/wcd934x.c
14465 F:      sound/soc/codecs/wcd-clsh-v2.*
14466 F:      sound/soc/codecs/wsa881x.c
14467 F:      sound/soc/qcom/
14468
14469 QCOM IPA DRIVER
14470 M:      Alex Elder <elder@kernel.org>
14471 L:      netdev@vger.kernel.org
14472 S:      Supported
14473 F:      drivers/net/ipa/
14474
14475 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14476 M:      Gabriel Somlo <somlo@cmu.edu>
14477 M:      "Michael S. Tsirkin" <mst@redhat.com>
14478 L:      qemu-devel@nongnu.org
14479 S:      Maintained
14480 F:      drivers/firmware/qemu_fw_cfg.c
14481 F:      include/uapi/linux/qemu_fw_cfg.h
14482
14483 QIB DRIVER
14484 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14485 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14486 L:      linux-rdma@vger.kernel.org
14487 S:      Supported
14488 F:      drivers/infiniband/hw/qib/
14489
14490 QLOGIC QL41xxx FCOE DRIVER
14491 M:      Saurav Kashyap <skashyap@marvell.com>
14492 M:      Javed Hasan <jhasan@marvell.com>
14493 M:      GR-QLogic-Storage-Upstream@marvell.com
14494 L:      linux-scsi@vger.kernel.org
14495 S:      Supported
14496 F:      drivers/scsi/qedf/
14497
14498 QLOGIC QL41xxx ISCSI DRIVER
14499 M:      Nilesh Javali <njavali@marvell.com>
14500 M:      Manish Rangankar <mrangankar@marvell.com>
14501 M:      GR-QLogic-Storage-Upstream@marvell.com
14502 L:      linux-scsi@vger.kernel.org
14503 S:      Supported
14504 F:      drivers/scsi/qedi/
14505
14506 QLOGIC QL4xxx ETHERNET DRIVER
14507 M:      Ariel Elior <aelior@marvell.com>
14508 M:      GR-everest-linux-l2@marvell.com
14509 L:      netdev@vger.kernel.org
14510 S:      Supported
14511 F:      drivers/net/ethernet/qlogic/qed/
14512 F:      drivers/net/ethernet/qlogic/qede/
14513 F:      include/linux/qed/
14514
14515 QLOGIC QL4xxx RDMA DRIVER
14516 M:      Michal Kalderon <mkalderon@marvell.com>
14517 M:      Ariel Elior <aelior@marvell.com>
14518 L:      linux-rdma@vger.kernel.org
14519 S:      Supported
14520 F:      drivers/infiniband/hw/qedr/
14521 F:      include/uapi/rdma/qedr-abi.h
14522
14523 QLOGIC QLA1280 SCSI DRIVER
14524 M:      Michael Reed <mdr@sgi.com>
14525 L:      linux-scsi@vger.kernel.org
14526 S:      Maintained
14527 F:      drivers/scsi/qla1280.[ch]
14528
14529 QLOGIC QLA2XXX FC-SCSI DRIVER
14530 M:      Nilesh Javali <njavali@marvell.com>
14531 M:      GR-QLogic-Storage-Upstream@marvell.com
14532 L:      linux-scsi@vger.kernel.org
14533 S:      Supported
14534 F:      drivers/scsi/qla2xxx/
14535
14536 QLOGIC QLA3XXX NETWORK DRIVER
14537 M:      GR-Linux-NIC-Dev@marvell.com
14538 L:      netdev@vger.kernel.org
14539 S:      Supported
14540 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14541
14542 QLOGIC QLA4XXX iSCSI DRIVER
14543 M:      Nilesh Javali <njavali@marvell.com>
14544 M:      Manish Rangankar <mrangankar@marvell.com>
14545 M:      GR-QLogic-Storage-Upstream@marvell.com
14546 L:      linux-scsi@vger.kernel.org
14547 S:      Supported
14548 F:      drivers/scsi/qla4xxx/
14549
14550 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14551 M:      Shahed Shaikh <shshaikh@marvell.com>
14552 M:      Manish Chopra <manishc@marvell.com>
14553 M:      GR-Linux-NIC-Dev@marvell.com
14554 L:      netdev@vger.kernel.org
14555 S:      Supported
14556 F:      drivers/net/ethernet/qlogic/qlcnic/
14557
14558 QLOGIC QLGE 10Gb ETHERNET DRIVER
14559 M:      Manish Chopra <manishc@marvell.com>
14560 M:      GR-Linux-NIC-Dev@marvell.com
14561 L:      netdev@vger.kernel.org
14562 S:      Supported
14563 F:      drivers/staging/qlge/
14564
14565 QM1D1B0004 MEDIA DRIVER
14566 M:      Akihiro Tsukada <tskd08@gmail.com>
14567 L:      linux-media@vger.kernel.org
14568 S:      Odd Fixes
14569 F:      drivers/media/tuners/qm1d1b0004*
14570
14571 QM1D1C0042 MEDIA DRIVER
14572 M:      Akihiro Tsukada <tskd08@gmail.com>
14573 L:      linux-media@vger.kernel.org
14574 S:      Odd Fixes
14575 F:      drivers/media/tuners/qm1d1c0042*
14576
14577 QNX4 FILESYSTEM
14578 M:      Anders Larsen <al@alarsen.net>
14579 S:      Maintained
14580 W:      http://www.alarsen.net/linux/qnx4fs/
14581 F:      fs/qnx4/
14582 F:      include/uapi/linux/qnx4_fs.h
14583 F:      include/uapi/linux/qnxtypes.h
14584
14585 QORIQ DPAA2 FSL-MC BUS DRIVER
14586 M:      Stuart Yoder <stuyoder@gmail.com>
14587 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14588 L:      linux-kernel@vger.kernel.org
14589 S:      Maintained
14590 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14591 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14592 F:      drivers/bus/fsl-mc/
14593
14594 QT1010 MEDIA DRIVER
14595 M:      Antti Palosaari <crope@iki.fi>
14596 L:      linux-media@vger.kernel.org
14597 S:      Maintained
14598 W:      https://linuxtv.org
14599 W:      http://palosaari.fi/linux/
14600 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14601 T:      git git://linuxtv.org/anttip/media_tree.git
14602 F:      drivers/media/tuners/qt1010*
14603
14604 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14605 M:      Kalle Valo <kvalo@codeaurora.org>
14606 L:      ath10k@lists.infradead.org
14607 S:      Supported
14608 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14610 F:      drivers/net/wireless/ath/ath10k/
14611
14612 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14613 M:      Kalle Valo <kvalo@codeaurora.org>
14614 L:      ath11k@lists.infradead.org
14615 S:      Supported
14616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14617 F:      drivers/net/wireless/ath/ath11k/
14618
14619 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14620 M:      ath9k-devel@qca.qualcomm.com
14621 L:      linux-wireless@vger.kernel.org
14622 S:      Supported
14623 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14624 F:      drivers/net/wireless/ath/ath9k/
14625
14626 QUALCOMM CAMERA SUBSYSTEM DRIVER
14627 M:      Robert Foss <robert.foss@linaro.org>
14628 M:      Todor Tomov <todor.too@gmail.com>
14629 L:      linux-media@vger.kernel.org
14630 S:      Maintained
14631 F:      Documentation/admin-guide/media/qcom_camss.rst
14632 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14633 F:      drivers/media/platform/qcom/camss/
14634
14635 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14636 M:      Niklas Cassel <nks@flawful.org>
14637 L:      linux-pm@vger.kernel.org
14638 L:      linux-arm-msm@vger.kernel.org
14639 S:      Maintained
14640 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14641 F:      drivers/soc/qcom/cpr.c
14642
14643 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14644 M:      Ilia Lin <ilia.lin@kernel.org>
14645 L:      linux-pm@vger.kernel.org
14646 S:      Maintained
14647 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14648 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14649
14650 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14651 M:      Timur Tabi <timur@kernel.org>
14652 L:      netdev@vger.kernel.org
14653 S:      Maintained
14654 F:      drivers/net/ethernet/qualcomm/emac/
14655
14656 QUALCOMM ETHQOS ETHERNET DRIVER
14657 M:      Vinod Koul <vkoul@kernel.org>
14658 L:      netdev@vger.kernel.org
14659 S:      Maintained
14660 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14661 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14662
14663 QUALCOMM GENERIC INTERFACE I2C DRIVER
14664 M:      Akash Asthana <akashast@codeaurora.org>
14665 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14666 L:      linux-i2c@vger.kernel.org
14667 L:      linux-arm-msm@vger.kernel.org
14668 S:      Supported
14669 F:      drivers/i2c/busses/i2c-qcom-geni.c
14670
14671 QUALCOMM HEXAGON ARCHITECTURE
14672 M:      Brian Cain <bcain@codeaurora.org>
14673 L:      linux-hexagon@vger.kernel.org
14674 S:      Supported
14675 F:      arch/hexagon/
14676
14677 QUALCOMM HIDMA DRIVER
14678 M:      Sinan Kaya <okaya@kernel.org>
14679 L:      linux-arm-kernel@lists.infradead.org
14680 L:      linux-arm-msm@vger.kernel.org
14681 L:      dmaengine@vger.kernel.org
14682 S:      Supported
14683 F:      drivers/dma/qcom/hidma*
14684
14685 QUALCOMM I2C CCI DRIVER
14686 M:      Loic Poulain <loic.poulain@linaro.org>
14687 M:      Robert Foss <robert.foss@linaro.org>
14688 L:      linux-i2c@vger.kernel.org
14689 L:      linux-arm-msm@vger.kernel.org
14690 S:      Maintained
14691 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14692 F:      drivers/i2c/busses/i2c-qcom-cci.c
14693
14694 QUALCOMM IOMMU
14695 M:      Rob Clark <robdclark@gmail.com>
14696 L:      iommu@lists.linux-foundation.org
14697 L:      linux-arm-msm@vger.kernel.org
14698 S:      Maintained
14699 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14700
14701 QUALCOMM IPCC MAILBOX DRIVER
14702 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14703 L:      linux-arm-msm@vger.kernel.org
14704 S:      Supported
14705 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14706 F:      drivers/mailbox/qcom-ipcc.c
14707 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14708
14709 QUALCOMM IPQ4019 USB PHY DRIVER
14710 M:      Robert Marko <robert.marko@sartura.hr>
14711 M:      Luka Perkov <luka.perkov@sartura.hr>
14712 L:      linux-arm-msm@vger.kernel.org
14713 S:      Maintained
14714 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
14715 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
14716
14717 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14718 M:      Robert Marko <robert.marko@sartura.hr>
14719 M:      Luka Perkov <luka.perkov@sartura.hr>
14720 L:      linux-arm-msm@vger.kernel.org
14721 S:      Maintained
14722 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14723 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14724
14725 QUALCOMM RMNET DRIVER
14726 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14727 M:      Sean Tranchetti <stranche@codeaurora.org>
14728 L:      netdev@vger.kernel.org
14729 S:      Maintained
14730 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14731 F:      drivers/net/ethernet/qualcomm/rmnet/
14732 F:      include/linux/if_rmnet.h
14733
14734 QUALCOMM TSENS THERMAL DRIVER
14735 M:      Amit Kucheria <amitk@kernel.org>
14736 L:      linux-pm@vger.kernel.org
14737 L:      linux-arm-msm@vger.kernel.org
14738 S:      Maintained
14739 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14740 F:      drivers/thermal/qcom/
14741
14742 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14743 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14744 L:      linux-media@vger.kernel.org
14745 L:      linux-arm-msm@vger.kernel.org
14746 S:      Maintained
14747 T:      git git://linuxtv.org/media_tree.git
14748 F:      Documentation/devicetree/bindings/media/*venus*
14749 F:      drivers/media/platform/qcom/venus/
14750
14751 QUALCOMM WCN36XX WIRELESS DRIVER
14752 M:      Kalle Valo <kvalo@codeaurora.org>
14753 L:      wcn36xx@lists.infradead.org
14754 S:      Supported
14755 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14756 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14757 F:      drivers/net/wireless/ath/wcn36xx/
14758
14759 QUANTENNA QTNFMAC WIRELESS DRIVER
14760 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14761 R:      Sergey Matyukevich <geomatsi@gmail.com>
14762 L:      linux-wireless@vger.kernel.org
14763 S:      Maintained
14764 F:      drivers/net/wireless/quantenna
14765
14766 RADEON and AMDGPU DRM DRIVERS
14767 M:      Alex Deucher <alexander.deucher@amd.com>
14768 M:      Christian König <christian.koenig@amd.com>
14769 L:      amd-gfx@lists.freedesktop.org
14770 S:      Supported
14771 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
14772 F:      drivers/gpu/drm/amd/
14773 F:      drivers/gpu/drm/radeon/
14774 F:      include/uapi/drm/amdgpu_drm.h
14775 F:      include/uapi/drm/radeon_drm.h
14776
14777 RADEON FRAMEBUFFER DISPLAY DRIVER
14778 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14779 L:      linux-fbdev@vger.kernel.org
14780 S:      Maintained
14781 F:      drivers/video/fbdev/aty/radeon*
14782 F:      include/uapi/linux/radeonfb.h
14783
14784 RADIOSHARK RADIO DRIVER
14785 M:      Hans Verkuil <hverkuil@xs4all.nl>
14786 L:      linux-media@vger.kernel.org
14787 S:      Maintained
14788 T:      git git://linuxtv.org/media_tree.git
14789 F:      drivers/media/radio/radio-shark.c
14790
14791 RADIOSHARK2 RADIO DRIVER
14792 M:      Hans Verkuil <hverkuil@xs4all.nl>
14793 L:      linux-media@vger.kernel.org
14794 S:      Maintained
14795 T:      git git://linuxtv.org/media_tree.git
14796 F:      drivers/media/radio/radio-shark2.c
14797 F:      drivers/media/radio/radio-tea5777.c
14798
14799 RADOS BLOCK DEVICE (RBD)
14800 M:      Ilya Dryomov <idryomov@gmail.com>
14801 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14802 L:      ceph-devel@vger.kernel.org
14803 S:      Supported
14804 W:      http://ceph.com/
14805 T:      git git://github.com/ceph/ceph-client.git
14806 F:      Documentation/ABI/testing/sysfs-bus-rbd
14807 F:      drivers/block/rbd.c
14808 F:      drivers/block/rbd_types.h
14809
14810 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14811 M:      Paul Mackerras <paulus@samba.org>
14812 L:      linux-fbdev@vger.kernel.org
14813 S:      Maintained
14814 F:      drivers/video/fbdev/aty/aty128fb.c
14815
14816 RAINSHADOW-CEC DRIVER
14817 M:      Hans Verkuil <hverkuil@xs4all.nl>
14818 L:      linux-media@vger.kernel.org
14819 S:      Maintained
14820 T:      git git://linuxtv.org/media_tree.git
14821 F:      drivers/media/cec/usb/rainshadow/
14822
14823 RALINK MIPS ARCHITECTURE
14824 M:      John Crispin <john@phrozen.org>
14825 L:      linux-mips@vger.kernel.org
14826 S:      Maintained
14827 F:      arch/mips/ralink
14828
14829 RALINK RT2X00 WIRELESS LAN DRIVER
14830 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14831 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14832 L:      linux-wireless@vger.kernel.org
14833 S:      Maintained
14834 F:      drivers/net/wireless/ralink/rt2x00/
14835
14836 RAMDISK RAM BLOCK DEVICE DRIVER
14837 M:      Jens Axboe <axboe@kernel.dk>
14838 S:      Maintained
14839 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14840 F:      drivers/block/brd.c
14841
14842 RANCHU VIRTUAL BOARD FOR MIPS
14843 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14844 L:      linux-mips@vger.kernel.org
14845 S:      Supported
14846 F:      arch/mips/configs/generic/board-ranchu.config
14847 F:      arch/mips/generic/board-ranchu.c
14848
14849 RANDOM NUMBER DRIVER
14850 M:      "Theodore Ts'o" <tytso@mit.edu>
14851 S:      Maintained
14852 F:      drivers/char/random.c
14853
14854 RAPIDIO SUBSYSTEM
14855 M:      Matt Porter <mporter@kernel.crashing.org>
14856 M:      Alexandre Bounine <alex.bou9@gmail.com>
14857 S:      Maintained
14858 F:      drivers/rapidio/
14859
14860 RAS INFRASTRUCTURE
14861 M:      Tony Luck <tony.luck@intel.com>
14862 M:      Borislav Petkov <bp@alien8.de>
14863 L:      linux-edac@vger.kernel.org
14864 S:      Maintained
14865 F:      Documentation/admin-guide/ras.rst
14866 F:      drivers/ras/
14867 F:      include/linux/ras.h
14868 F:      include/ras/ras_event.h
14869
14870 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14871 L:      linux-wireless@vger.kernel.org
14872 S:      Orphan
14873 F:      drivers/net/wireless/ray*
14874
14875 RC-CORE / LIRC FRAMEWORK
14876 M:      Sean Young <sean@mess.org>
14877 L:      linux-media@vger.kernel.org
14878 S:      Maintained
14879 W:      http://linuxtv.org
14880 T:      git git://linuxtv.org/media_tree.git
14881 F:      Documentation/driver-api/media/rc-core.rst
14882 F:      Documentation/userspace-api/media/rc/
14883 F:      drivers/media/rc/
14884 F:      include/media/rc-map.h
14885 F:      include/media/rc-core.h
14886 F:      include/uapi/linux/lirc.h
14887
14888 RCMM REMOTE CONTROLS DECODER
14889 M:      Patrick Lerda <patrick9876@free.fr>
14890 S:      Maintained
14891 F:      drivers/media/rc/ir-rcmm-decoder.c
14892
14893 RCUTORTURE TEST FRAMEWORK
14894 M:      "Paul E. McKenney" <paulmck@kernel.org>
14895 M:      Josh Triplett <josh@joshtriplett.org>
14896 R:      Steven Rostedt <rostedt@goodmis.org>
14897 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14898 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14899 L:      rcu@vger.kernel.org
14900 S:      Supported
14901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14902 F:      tools/testing/selftests/rcutorture
14903
14904 RDACM20 Camera Sensor
14905 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14906 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14907 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14908 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14909 L:      linux-media@vger.kernel.org
14910 S:      Maintained
14911 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14912 F:      drivers/media/i2c/max9271.c
14913 F:      drivers/media/i2c/max9271.h
14914 F:      drivers/media/i2c/rdacm20.c
14915
14916 RDC R-321X SoC
14917 M:      Florian Fainelli <florian@openwrt.org>
14918 S:      Maintained
14919
14920 RDC R6040 FAST ETHERNET DRIVER
14921 M:      Florian Fainelli <f.fainelli@gmail.com>
14922 L:      netdev@vger.kernel.org
14923 S:      Maintained
14924 F:      drivers/net/ethernet/rdc/r6040.c
14925
14926 RDMAVT - RDMA verbs software
14927 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14928 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14929 L:      linux-rdma@vger.kernel.org
14930 S:      Supported
14931 F:      drivers/infiniband/sw/rdmavt
14932
14933 RDS - RELIABLE DATAGRAM SOCKETS
14934 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14935 L:      netdev@vger.kernel.org
14936 L:      linux-rdma@vger.kernel.org
14937 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14938 S:      Supported
14939 W:      https://oss.oracle.com/projects/rds/
14940 F:      Documentation/networking/rds.rst
14941 F:      net/rds/
14942
14943 RDT - RESOURCE ALLOCATION
14944 M:      Fenghua Yu <fenghua.yu@intel.com>
14945 M:      Reinette Chatre <reinette.chatre@intel.com>
14946 L:      linux-kernel@vger.kernel.org
14947 S:      Supported
14948 F:      Documentation/x86/resctrl*
14949 F:      arch/x86/include/asm/resctrl.h
14950 F:      arch/x86/kernel/cpu/resctrl/
14951 F:      tools/testing/selftests/resctrl/
14952
14953 READ-COPY UPDATE (RCU)
14954 M:      "Paul E. McKenney" <paulmck@kernel.org>
14955 M:      Josh Triplett <josh@joshtriplett.org>
14956 R:      Steven Rostedt <rostedt@goodmis.org>
14957 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14958 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14959 R:      Joel Fernandes <joel@joelfernandes.org>
14960 L:      rcu@vger.kernel.org
14961 S:      Supported
14962 W:      http://www.rdrop.com/users/paulmck/RCU/
14963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14964 F:      Documentation/RCU/
14965 F:      include/linux/rcu*
14966 F:      kernel/rcu/
14967 X:      Documentation/RCU/torture.rst
14968 X:      include/linux/srcu*.h
14969 X:      kernel/rcu/srcu*.c
14970
14971 REAL TIME CLOCK (RTC) SUBSYSTEM
14972 M:      Alessandro Zummo <a.zummo@towertech.it>
14973 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14974 L:      linux-rtc@vger.kernel.org
14975 S:      Maintained
14976 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14978 F:      Documentation/admin-guide/rtc.rst
14979 F:      Documentation/devicetree/bindings/rtc/
14980 F:      drivers/rtc/
14981 F:      include/linux/platform_data/rtc-*
14982 F:      include/linux/rtc.h
14983 F:      include/linux/rtc/
14984 F:      include/uapi/linux/rtc.h
14985 F:      tools/testing/selftests/rtc/
14986
14987 REALTEK AUDIO CODECS
14988 M:      Oder Chiou <oder_chiou@realtek.com>
14989 S:      Maintained
14990 F:      include/sound/rt*.h
14991 F:      sound/soc/codecs/rt*
14992
14993 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14994 M:      Linus Walleij <linus.walleij@linaro.org>
14995 S:      Maintained
14996 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14997 F:      drivers/net/dsa/realtek-smi*
14998 F:      drivers/net/dsa/rtl83*
14999
15000 REALTEK WIRELESS DRIVER (rtlwifi family)
15001 M:      Ping-Ke Shih <pkshih@realtek.com>
15002 L:      linux-wireless@vger.kernel.org
15003 S:      Maintained
15004 W:      https://wireless.wiki.kernel.org/
15005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15006 F:      drivers/net/wireless/realtek/rtlwifi/
15007
15008 REALTEK WIRELESS DRIVER (rtw88)
15009 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15010 L:      linux-wireless@vger.kernel.org
15011 S:      Maintained
15012 F:      drivers/net/wireless/realtek/rtw88/
15013
15014 REDPINE WIRELESS DRIVER
15015 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15016 M:      Siva Rebbagondla <siva8118@gmail.com>
15017 L:      linux-wireless@vger.kernel.org
15018 S:      Maintained
15019 F:      drivers/net/wireless/rsi/
15020
15021 REGISTER MAP ABSTRACTION
15022 M:      Mark Brown <broonie@kernel.org>
15023 L:      linux-kernel@vger.kernel.org
15024 S:      Supported
15025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15026 F:      Documentation/devicetree/bindings/regmap/
15027 F:      drivers/base/regmap/
15028 F:      include/linux/regmap.h
15029
15030 REISERFS FILE SYSTEM
15031 L:      reiserfs-devel@vger.kernel.org
15032 S:      Supported
15033 F:      fs/reiserfs/
15034
15035 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15036 M:      Ohad Ben-Cohen <ohad@wizery.com>
15037 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15038 L:      linux-remoteproc@vger.kernel.org
15039 S:      Maintained
15040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15041 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15042 F:      Documentation/devicetree/bindings/remoteproc/
15043 F:      Documentation/staging/remoteproc.rst
15044 F:      drivers/remoteproc/
15045 F:      include/linux/remoteproc.h
15046 F:      include/linux/remoteproc/
15047
15048 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15049 M:      Ohad Ben-Cohen <ohad@wizery.com>
15050 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15051 L:      linux-remoteproc@vger.kernel.org
15052 S:      Maintained
15053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15054 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15055 F:      Documentation/staging/rpmsg.rst
15056 F:      drivers/rpmsg/
15057 F:      include/linux/rpmsg.h
15058 F:      include/linux/rpmsg/
15059 F:      include/uapi/linux/rpmsg.h
15060 F:      samples/rpmsg/
15061
15062 RENESAS CLOCK DRIVERS
15063 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15064 L:      linux-renesas-soc@vger.kernel.org
15065 S:      Supported
15066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15067 F:      Documentation/devicetree/bindings/clock/renesas,*
15068 F:      drivers/clk/renesas/
15069
15070 RENESAS EMEV2 I2C DRIVER
15071 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15072 S:      Supported
15073 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15074 F:      drivers/i2c/busses/i2c-emev2.c
15075
15076 RENESAS ETHERNET DRIVERS
15077 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15078 L:      netdev@vger.kernel.org
15079 L:      linux-renesas-soc@vger.kernel.org
15080 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15081 F:      drivers/net/ethernet/renesas/
15082 F:      include/linux/sh_eth.h
15083
15084 RENESAS R-CAR GYROADC DRIVER
15085 M:      Marek Vasut <marek.vasut@gmail.com>
15086 L:      linux-iio@vger.kernel.org
15087 S:      Supported
15088 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
15089 F:      drivers/iio/adc/rcar-gyroadc.c
15090
15091 RENESAS R-CAR I2C DRIVERS
15092 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15093 S:      Supported
15094 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15095 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15096 F:      drivers/i2c/busses/i2c-rcar.c
15097 F:      drivers/i2c/busses/i2c-sh_mobile.c
15098
15099 RENESAS R-CAR THERMAL DRIVERS
15100 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15101 L:      linux-renesas-soc@vger.kernel.org
15102 S:      Supported
15103 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15104 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15105 F:      drivers/thermal/rcar_gen3_thermal.c
15106 F:      drivers/thermal/rcar_thermal.c
15107
15108 RENESAS RIIC DRIVER
15109 M:      Chris Brandt <chris.brandt@renesas.com>
15110 S:      Supported
15111 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15112 F:      drivers/i2c/busses/i2c-riic.c
15113
15114 RENESAS USB PHY DRIVER
15115 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15116 L:      linux-renesas-soc@vger.kernel.org
15117 S:      Maintained
15118 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15119
15120 RESET CONTROLLER FRAMEWORK
15121 M:      Philipp Zabel <p.zabel@pengutronix.de>
15122 S:      Maintained
15123 T:      git git://git.pengutronix.de/git/pza/linux
15124 F:      Documentation/devicetree/bindings/reset/
15125 F:      Documentation/driver-api/reset.rst
15126 F:      drivers/reset/
15127 F:      include/dt-bindings/reset/
15128 F:      include/linux/reset-controller.h
15129 F:      include/linux/reset.h
15130 F:      include/linux/reset/
15131 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15132
15133 RESTARTABLE SEQUENCES SUPPORT
15134 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15135 M:      Peter Zijlstra <peterz@infradead.org>
15136 M:      "Paul E. McKenney" <paulmck@kernel.org>
15137 M:      Boqun Feng <boqun.feng@gmail.com>
15138 L:      linux-kernel@vger.kernel.org
15139 S:      Supported
15140 F:      include/trace/events/rseq.h
15141 F:      include/uapi/linux/rseq.h
15142 F:      kernel/rseq.c
15143 F:      tools/testing/selftests/rseq/
15144
15145 RFKILL
15146 M:      Johannes Berg <johannes@sipsolutions.net>
15147 L:      linux-wireless@vger.kernel.org
15148 S:      Maintained
15149 W:      https://wireless.wiki.kernel.org/
15150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15152 F:      Documentation/ABI/stable/sysfs-class-rfkill
15153 F:      Documentation/driver-api/rfkill.rst
15154 F:      include/linux/rfkill.h
15155 F:      include/uapi/linux/rfkill.h
15156 F:      net/rfkill/
15157
15158 RHASHTABLE
15159 M:      Thomas Graf <tgraf@suug.ch>
15160 M:      Herbert Xu <herbert@gondor.apana.org.au>
15161 L:      netdev@vger.kernel.org
15162 S:      Maintained
15163 F:      include/linux/rhashtable-types.h
15164 F:      include/linux/rhashtable.h
15165 F:      lib/rhashtable.c
15166 F:      lib/test_rhashtable.c
15167
15168 RICOH R5C592 MEMORYSTICK DRIVER
15169 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15170 S:      Maintained
15171 F:      drivers/memstick/host/r592.*
15172
15173 RICOH SMARTMEDIA/XD DRIVER
15174 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15175 S:      Maintained
15176 F:      drivers/mtd/nand/raw/r852.c
15177 F:      drivers/mtd/nand/raw/r852.h
15178
15179 RISC-V ARCHITECTURE
15180 M:      Paul Walmsley <paul.walmsley@sifive.com>
15181 M:      Palmer Dabbelt <palmer@dabbelt.com>
15182 M:      Albert Ou <aou@eecs.berkeley.edu>
15183 L:      linux-riscv@lists.infradead.org
15184 S:      Supported
15185 P:      Documentation/riscv/patch-acceptance.rst
15186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15187 F:      arch/riscv/
15188 N:      riscv
15189 K:      riscv
15190
15191 RNBD BLOCK DRIVERS
15192 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15193 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15194 L:      linux-block@vger.kernel.org
15195 S:      Maintained
15196 F:      drivers/block/rnbd/
15197
15198 ROCCAT DRIVERS
15199 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15200 S:      Maintained
15201 W:      http://sourceforge.net/projects/roccat/
15202 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15203 F:      drivers/hid/hid-roccat*
15204 F:      include/linux/hid-roccat*
15205
15206 ROCKCHIP ISP V1 DRIVER
15207 M:      Helen Koike <helen.koike@collabora.com>
15208 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15209 L:      linux-media@vger.kernel.org
15210 L:      linux-rockchip@lists.infradead.org
15211 S:      Maintained
15212 F:      Documentation/admin-guide/media/rkisp1.rst
15213 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15214 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15215 F:      drivers/media/platform/rockchip/rkisp1
15216 F:      include/uapi/linux/rkisp1-config.h
15217
15218 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15219 M:      Jacob Chen <jacob-chen@iotwrt.com>
15220 M:      Ezequiel Garcia <ezequiel@collabora.com>
15221 L:      linux-media@vger.kernel.org
15222 L:      linux-rockchip@lists.infradead.org
15223 S:      Maintained
15224 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15225 F:      drivers/media/platform/rockchip/rga/
15226
15227 ROCKCHIP VIDEO DECODER DRIVER
15228 M:      Ezequiel Garcia <ezequiel@collabora.com>
15229 L:      linux-media@vger.kernel.org
15230 L:      linux-rockchip@lists.infradead.org
15231 S:      Maintained
15232 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15233 F:      drivers/staging/media/rkvdec/
15234
15235 ROCKER DRIVER
15236 M:      Jiri Pirko <jiri@resnulli.us>
15237 L:      netdev@vger.kernel.org
15238 S:      Supported
15239 F:      drivers/net/ethernet/rocker/
15240
15241 ROCKETPORT DRIVER
15242 S:      Maintained
15243 W:      http://www.comtrol.com
15244 F:      Documentation/driver-api/serial/rocket.rst
15245 F:      drivers/tty/rocket*
15246
15247 ROCKETPORT EXPRESS/INFINITY DRIVER
15248 M:      Kevin Cernekee <cernekee@gmail.com>
15249 L:      linux-serial@vger.kernel.org
15250 S:      Odd Fixes
15251 F:      drivers/tty/serial/rp2.*
15252
15253 ROHM BD99954 CHARGER IC
15254 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15255 L:      linux-power@fi.rohmeurope.com
15256 S:      Supported
15257 F:      drivers/power/supply/bd99954-charger.c
15258 F:      drivers/power/supply/bd99954-charger.h
15259
15260 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15261 M:      Tomasz Duszynski <tduszyns@gmail.com>
15262 S:      Maintained
15263 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15264 F:      drivers/iio/light/bh1750.c
15265
15266 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15267 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15268 L:      linux-kernel@vger.kernel.org
15269 L:      linux-renesas-soc@vger.kernel.org
15270 S:      Supported
15271 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15272 F:      drivers/gpio/gpio-bd9571mwv.c
15273 F:      drivers/mfd/bd9571mwv.c
15274 F:      drivers/regulator/bd9571mwv-regulator.c
15275 F:      include/linux/mfd/bd9571mwv.h
15276
15277 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15278 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15279 L:      linux-power@fi.rohmeurope.com
15280 S:      Supported
15281 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15282 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15283 F:      drivers/clk/clk-bd718x7.c
15284 F:      drivers/gpio/gpio-bd70528.c
15285 F:      drivers/gpio/gpio-bd71828.c
15286 F:      drivers/mfd/rohm-bd70528.c
15287 F:      drivers/mfd/rohm-bd71828.c
15288 F:      drivers/mfd/rohm-bd718x7.c
15289 F:      drivers/power/supply/bd70528-charger.c
15290 F:      drivers/regulator/bd70528-regulator.c
15291 F:      drivers/regulator/bd71828-regulator.c
15292 F:      drivers/regulator/bd718x7-regulator.c
15293 F:      drivers/regulator/rohm-regulator.c
15294 F:      drivers/rtc/rtc-bd70528.c
15295 F:      drivers/watchdog/bd70528_wdt.c
15296 F:      include/linux/mfd/rohm-bd70528.h
15297 F:      include/linux/mfd/rohm-bd71828.h
15298 F:      include/linux/mfd/rohm-bd718x7.h
15299 F:      include/linux/mfd/rohm-generic.h
15300 F:      include/linux/mfd/rohm-shared.h
15301
15302 ROSE NETWORK LAYER
15303 M:      Ralf Baechle <ralf@linux-mips.org>
15304 L:      linux-hams@vger.kernel.org
15305 S:      Maintained
15306 W:      http://www.linux-ax25.org/
15307 F:      include/net/rose.h
15308 F:      include/uapi/linux/rose.h
15309 F:      net/rose/
15310
15311 ROTATION DRIVER FOR ALLWINNER A83T
15312 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15313 L:      linux-media@vger.kernel.org
15314 S:      Maintained
15315 T:      git git://linuxtv.org/media_tree.git
15316 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15317 F:      drivers/media/platform/sunxi/sun8i-rotate/
15318
15319 RTL2830 MEDIA DRIVER
15320 M:      Antti Palosaari <crope@iki.fi>
15321 L:      linux-media@vger.kernel.org
15322 S:      Maintained
15323 W:      https://linuxtv.org
15324 W:      http://palosaari.fi/linux/
15325 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15326 T:      git git://linuxtv.org/anttip/media_tree.git
15327 F:      drivers/media/dvb-frontends/rtl2830*
15328
15329 RTL2832 MEDIA DRIVER
15330 M:      Antti Palosaari <crope@iki.fi>
15331 L:      linux-media@vger.kernel.org
15332 S:      Maintained
15333 W:      https://linuxtv.org
15334 W:      http://palosaari.fi/linux/
15335 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15336 T:      git git://linuxtv.org/anttip/media_tree.git
15337 F:      drivers/media/dvb-frontends/rtl2832*
15338
15339 RTL2832_SDR MEDIA DRIVER
15340 M:      Antti Palosaari <crope@iki.fi>
15341 L:      linux-media@vger.kernel.org
15342 S:      Maintained
15343 W:      https://linuxtv.org
15344 W:      http://palosaari.fi/linux/
15345 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15346 T:      git git://linuxtv.org/anttip/media_tree.git
15347 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15348
15349 RTL8180 WIRELESS DRIVER
15350 L:      linux-wireless@vger.kernel.org
15351 S:      Orphan
15352 W:      https://wireless.wiki.kernel.org/
15353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15354 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15355
15356 RTL8187 WIRELESS DRIVER
15357 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15358 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15359 M:      Larry Finger <Larry.Finger@lwfinger.net>
15360 L:      linux-wireless@vger.kernel.org
15361 S:      Maintained
15362 W:      https://wireless.wiki.kernel.org/
15363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15364 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15365
15366 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15367 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15368 L:      linux-wireless@vger.kernel.org
15369 S:      Maintained
15370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15371 F:      drivers/net/wireless/realtek/rtl8xxxu/
15372
15373 RTRS TRANSPORT DRIVERS
15374 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15375 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15376 L:      linux-rdma@vger.kernel.org
15377 S:      Maintained
15378 F:      drivers/infiniband/ulp/rtrs/
15379
15380 RXRPC SOCKETS (AF_RXRPC)
15381 M:      David Howells <dhowells@redhat.com>
15382 L:      linux-afs@lists.infradead.org
15383 S:      Supported
15384 W:      https://www.infradead.org/~dhowells/kafs/
15385 F:      Documentation/networking/rxrpc.rst
15386 F:      include/keys/rxrpc-type.h
15387 F:      include/net/af_rxrpc.h
15388 F:      include/trace/events/rxrpc.h
15389 F:      include/uapi/linux/rxrpc.h
15390 F:      net/rxrpc/
15391
15392 S3 SAVAGE FRAMEBUFFER DRIVER
15393 M:      Antonino Daplas <adaplas@gmail.com>
15394 L:      linux-fbdev@vger.kernel.org
15395 S:      Maintained
15396 F:      drivers/video/fbdev/savage/
15397
15398 S390
15399 M:      Heiko Carstens <hca@linux.ibm.com>
15400 M:      Vasily Gorbik <gor@linux.ibm.com>
15401 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15402 L:      linux-s390@vger.kernel.org
15403 S:      Supported
15404 W:      http://www.ibm.com/developerworks/linux/linux390/
15405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15406 F:      Documentation/driver-api/s390-drivers.rst
15407 F:      Documentation/s390/
15408 F:      arch/s390/
15409 F:      drivers/s390/
15410
15411 S390 COMMON I/O LAYER
15412 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15413 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15414 L:      linux-s390@vger.kernel.org
15415 S:      Supported
15416 W:      http://www.ibm.com/developerworks/linux/linux390/
15417 F:      drivers/s390/cio/
15418
15419 S390 DASD DRIVER
15420 M:      Stefan Haberland <sth@linux.ibm.com>
15421 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15422 L:      linux-s390@vger.kernel.org
15423 S:      Supported
15424 W:      http://www.ibm.com/developerworks/linux/linux390/
15425 F:      block/partitions/ibm.c
15426 F:      drivers/s390/block/dasd*
15427 F:      include/linux/dasd_mod.h
15428
15429 S390 IOMMU (PCI)
15430 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15431 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15432 L:      linux-s390@vger.kernel.org
15433 S:      Supported
15434 W:      http://www.ibm.com/developerworks/linux/linux390/
15435 F:      drivers/iommu/s390-iommu.c
15436
15437 S390 IUCV NETWORK LAYER
15438 M:      Julian Wiedmann <jwi@linux.ibm.com>
15439 M:      Karsten Graul <kgraul@linux.ibm.com>
15440 L:      linux-s390@vger.kernel.org
15441 S:      Supported
15442 W:      http://www.ibm.com/developerworks/linux/linux390/
15443 F:      drivers/s390/net/*iucv*
15444 F:      include/net/iucv/
15445 F:      net/iucv/
15446
15447 S390 NETWORK DRIVERS
15448 M:      Julian Wiedmann <jwi@linux.ibm.com>
15449 M:      Karsten Graul <kgraul@linux.ibm.com>
15450 L:      linux-s390@vger.kernel.org
15451 S:      Supported
15452 W:      http://www.ibm.com/developerworks/linux/linux390/
15453 F:      drivers/s390/net/
15454
15455 S390 PCI SUBSYSTEM
15456 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15457 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15458 L:      linux-s390@vger.kernel.org
15459 S:      Supported
15460 W:      http://www.ibm.com/developerworks/linux/linux390/
15461 F:      arch/s390/pci/
15462 F:      drivers/pci/hotplug/s390_pci_hpc.c
15463 F:      Documentation/s390/pci.rst
15464
15465 S390 VFIO AP DRIVER
15466 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15467 M:      Pierre Morel <pmorel@linux.ibm.com>
15468 M:      Halil Pasic <pasic@linux.ibm.com>
15469 L:      linux-s390@vger.kernel.org
15470 S:      Supported
15471 W:      http://www.ibm.com/developerworks/linux/linux390/
15472 F:      Documentation/s390/vfio-ap.rst
15473 F:      drivers/s390/crypto/vfio_ap_drv.c
15474 F:      drivers/s390/crypto/vfio_ap_ops.c
15475 F:      drivers/s390/crypto/vfio_ap_private.h
15476
15477 S390 VFIO-CCW DRIVER
15478 M:      Cornelia Huck <cohuck@redhat.com>
15479 M:      Eric Farman <farman@linux.ibm.com>
15480 R:      Halil Pasic <pasic@linux.ibm.com>
15481 L:      linux-s390@vger.kernel.org
15482 L:      kvm@vger.kernel.org
15483 S:      Supported
15484 F:      Documentation/s390/vfio-ccw.rst
15485 F:      drivers/s390/cio/vfio_ccw*
15486 F:      include/uapi/linux/vfio_ccw.h
15487
15488 S390 VFIO-PCI DRIVER
15489 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15490 L:      linux-s390@vger.kernel.org
15491 L:      kvm@vger.kernel.org
15492 S:      Supported
15493 F:      drivers/vfio/pci/vfio_pci_zdev.c
15494 F:      include/uapi/linux/vfio_zdev.h
15495
15496 S390 ZCRYPT DRIVER
15497 M:      Harald Freudenberger <freude@linux.ibm.com>
15498 L:      linux-s390@vger.kernel.org
15499 S:      Supported
15500 W:      http://www.ibm.com/developerworks/linux/linux390/
15501 F:      drivers/s390/crypto/
15502
15503 S390 ZFCP DRIVER
15504 M:      Steffen Maier <maier@linux.ibm.com>
15505 M:      Benjamin Block <bblock@linux.ibm.com>
15506 L:      linux-s390@vger.kernel.org
15507 S:      Supported
15508 W:      http://www.ibm.com/developerworks/linux/linux390/
15509 F:      drivers/s390/scsi/zfcp_*
15510
15511 S3C24XX SD/MMC Driver
15512 M:      Ben Dooks <ben-linux@fluff.org>
15513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15514 S:      Supported
15515 F:      drivers/mmc/host/s3cmci.*
15516
15517 SAA6588 RDS RECEIVER DRIVER
15518 M:      Hans Verkuil <hverkuil@xs4all.nl>
15519 L:      linux-media@vger.kernel.org
15520 S:      Odd Fixes
15521 W:      https://linuxtv.org
15522 T:      git git://linuxtv.org/media_tree.git
15523 F:      drivers/media/i2c/saa6588*
15524
15525 SAA7134 VIDEO4LINUX DRIVER
15526 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15527 L:      linux-media@vger.kernel.org
15528 S:      Odd fixes
15529 W:      https://linuxtv.org
15530 T:      git git://linuxtv.org/media_tree.git
15531 F:      Documentation/driver-api/media/drivers/saa7134*
15532 F:      drivers/media/pci/saa7134/
15533
15534 SAA7146 VIDEO4LINUX-2 DRIVER
15535 M:      Hans Verkuil <hverkuil@xs4all.nl>
15536 L:      linux-media@vger.kernel.org
15537 S:      Maintained
15538 T:      git git://linuxtv.org/media_tree.git
15539 F:      drivers/media/common/saa7146/
15540 F:      drivers/media/pci/saa7146/
15541 F:      include/media/drv-intf/saa7146*
15542
15543 SAFESETID SECURITY MODULE
15544 M:      Micah Morton <mortonm@chromium.org>
15545 S:      Supported
15546 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15547 F:      security/safesetid/
15548
15549 SAMSUNG AUDIO (ASoC) DRIVERS
15550 M:      Krzysztof Kozlowski <krzk@kernel.org>
15551 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15552 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15553 S:      Supported
15554 F:      Documentation/devicetree/bindings/sound/samsung*
15555 F:      sound/soc/samsung/
15556
15557 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15558 M:      Krzysztof Kozlowski <krzk@kernel.org>
15559 L:      linux-crypto@vger.kernel.org
15560 L:      linux-samsung-soc@vger.kernel.org
15561 S:      Maintained
15562 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15563 F:      drivers/crypto/exynos-rng.c
15564
15565 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15566 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15567 L:      linux-samsung-soc@vger.kernel.org
15568 S:      Maintained
15569 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15570 F:      drivers/char/hw_random/exynos-trng.c
15571
15572 SAMSUNG FRAMEBUFFER DRIVER
15573 M:      Jingoo Han <jingoohan1@gmail.com>
15574 L:      linux-fbdev@vger.kernel.org
15575 S:      Maintained
15576 F:      drivers/video/fbdev/s3c-fb.c
15577
15578 SAMSUNG INTERCONNECT DRIVERS
15579 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15580 M:      Artur Świgoń <a.swigon@samsung.com>
15581 L:      linux-pm@vger.kernel.org
15582 L:      linux-samsung-soc@vger.kernel.org
15583 S:      Supported
15584 F:      drivers/interconnect/samsung/
15585
15586 SAMSUNG LAPTOP DRIVER
15587 M:      Corentin Chary <corentin.chary@gmail.com>
15588 L:      platform-driver-x86@vger.kernel.org
15589 S:      Maintained
15590 F:      drivers/platform/x86/samsung-laptop.c
15591
15592 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15593 M:      Krzysztof Kozlowski <krzk@kernel.org>
15594 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15595 L:      linux-kernel@vger.kernel.org
15596 L:      linux-samsung-soc@vger.kernel.org
15597 S:      Supported
15598 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15599 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15600 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15601 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15602 F:      drivers/clk/clk-s2mps11.c
15603 F:      drivers/mfd/sec*.c
15604 F:      drivers/regulator/s2m*.c
15605 F:      drivers/regulator/s5m*.c
15606 F:      drivers/rtc/rtc-s5m.c
15607 F:      include/linux/mfd/samsung/
15608
15609 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15610 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15611 L:      linux-media@vger.kernel.org
15612 L:      linux-samsung-soc@vger.kernel.org
15613 S:      Maintained
15614 F:      drivers/media/platform/s3c-camif/
15615 F:      include/media/drv-intf/s3c_camif.h
15616
15617 SAMSUNG S3FWRN5 NFC DRIVER
15618 M:      Krzysztof Kozlowski <krzk@kernel.org>
15619 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15620 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15621 S:      Maintained
15622 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15623 F:      drivers/nfc/s3fwrn5
15624
15625 SAMSUNG S5C73M3 CAMERA DRIVER
15626 M:      Andrzej Hajda <a.hajda@samsung.com>
15627 L:      linux-media@vger.kernel.org
15628 S:      Supported
15629 F:      drivers/media/i2c/s5c73m3/*
15630
15631 SAMSUNG S5K5BAF CAMERA DRIVER
15632 M:      Andrzej Hajda <a.hajda@samsung.com>
15633 L:      linux-media@vger.kernel.org
15634 S:      Supported
15635 F:      drivers/media/i2c/s5k5baf.c
15636
15637 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15638 M:      Krzysztof Kozlowski <krzk@kernel.org>
15639 M:      Vladimir Zapolskiy <vz@mleia.com>
15640 M:      Kamil Konieczny <k.konieczny@samsung.com>
15641 L:      linux-crypto@vger.kernel.org
15642 L:      linux-samsung-soc@vger.kernel.org
15643 S:      Maintained
15644 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15645 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15646 F:      drivers/crypto/s5p-sss.c
15647
15648 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15649 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15650 L:      linux-media@vger.kernel.org
15651 S:      Supported
15652 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15653 F:      drivers/media/platform/exynos4-is/
15654
15655 SAMSUNG SOC CLOCK DRIVERS
15656 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15657 M:      Tomasz Figa <tomasz.figa@gmail.com>
15658 M:      Chanwoo Choi <cw00.choi@samsung.com>
15659 L:      linux-samsung-soc@vger.kernel.org
15660 S:      Supported
15661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15662 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15663 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15664 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15665 F:      drivers/clk/samsung/
15666 F:      include/dt-bindings/clock/exynos*.h
15667 F:      include/linux/clk/samsung.h
15668 F:      include/linux/platform_data/clk-s3c2410.h
15669
15670 SAMSUNG SPI DRIVERS
15671 M:      Krzysztof Kozlowski <krzk@kernel.org>
15672 M:      Andi Shyti <andi@etezian.org>
15673 L:      linux-spi@vger.kernel.org
15674 L:      linux-samsung-soc@vger.kernel.org
15675 S:      Maintained
15676 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15677 F:      drivers/spi/spi-s3c*
15678 F:      include/linux/platform_data/spi-s3c64xx.h
15679 F:      include/linux/spi/s3c24xx-fiq.h
15680
15681 SAMSUNG SXGBE DRIVERS
15682 M:      Byungho An <bh74.an@samsung.com>
15683 L:      netdev@vger.kernel.org
15684 S:      Supported
15685 F:      drivers/net/ethernet/samsung/sxgbe/
15686
15687 SAMSUNG THERMAL DRIVER
15688 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15689 L:      linux-pm@vger.kernel.org
15690 L:      linux-samsung-soc@vger.kernel.org
15691 S:      Supported
15692 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15693 F:      drivers/thermal/samsung/
15694
15695 SAMSUNG USB2 PHY DRIVER
15696 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15697 L:      linux-kernel@vger.kernel.org
15698 S:      Supported
15699 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15700 F:      Documentation/driver-api/phy/samsung-usb2.rst
15701 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15702 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15703 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15704 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15705 F:      drivers/phy/samsung/phy-samsung-usb2.c
15706 F:      drivers/phy/samsung/phy-samsung-usb2.h
15707
15708 SC1200 WDT DRIVER
15709 M:      Zwane Mwaikambo <zwanem@gmail.com>
15710 S:      Maintained
15711 F:      drivers/watchdog/sc1200wdt.c
15712
15713 SCHEDULER
15714 M:      Ingo Molnar <mingo@redhat.com>
15715 M:      Peter Zijlstra <peterz@infradead.org>
15716 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15717 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15718 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15719 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15720 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15721 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15722 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15723 L:      linux-kernel@vger.kernel.org
15724 S:      Maintained
15725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15726 F:      include/linux/preempt.h
15727 F:      include/linux/sched.h
15728 F:      include/linux/wait.h
15729 F:      include/uapi/linux/sched.h
15730 F:      kernel/sched/
15731
15732 SCR24X CHIP CARD INTERFACE DRIVER
15733 M:      Lubomir Rintel <lkundrak@v3.sk>
15734 S:      Supported
15735 F:      drivers/char/pcmcia/scr24x_cs.c
15736
15737 SCSI CDROM DRIVER
15738 M:      Jens Axboe <axboe@kernel.dk>
15739 L:      linux-scsi@vger.kernel.org
15740 S:      Maintained
15741 W:      http://www.kernel.dk
15742 F:      drivers/scsi/sr*
15743
15744 SCSI RDMA PROTOCOL (SRP) INITIATOR
15745 M:      Bart Van Assche <bvanassche@acm.org>
15746 L:      linux-rdma@vger.kernel.org
15747 S:      Supported
15748 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15749 F:      drivers/infiniband/ulp/srp/
15750 F:      include/scsi/srp.h
15751
15752 SCSI RDMA PROTOCOL (SRP) TARGET
15753 M:      Bart Van Assche <bvanassche@acm.org>
15754 L:      linux-rdma@vger.kernel.org
15755 L:      target-devel@vger.kernel.org
15756 S:      Supported
15757 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15758 F:      drivers/infiniband/ulp/srpt/
15759
15760 SCSI SG DRIVER
15761 M:      Doug Gilbert <dgilbert@interlog.com>
15762 L:      linux-scsi@vger.kernel.org
15763 S:      Maintained
15764 W:      http://sg.danny.cz/sg
15765 F:      Documentation/scsi/scsi-generic.rst
15766 F:      drivers/scsi/sg.c
15767 F:      include/scsi/sg.h
15768
15769 SCSI SUBSYSTEM
15770 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15771 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15772 L:      linux-scsi@vger.kernel.org
15773 S:      Maintained
15774 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15777 F:      Documentation/devicetree/bindings/scsi/
15778 F:      drivers/scsi/
15779 F:      include/scsi/
15780
15781 SCSI TAPE DRIVER
15782 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15783 L:      linux-scsi@vger.kernel.org
15784 S:      Maintained
15785 F:      Documentation/scsi/st.rst
15786 F:      drivers/scsi/st.*
15787 F:      drivers/scsi/st_*.h
15788
15789 SCSI TARGET CORE USER DRIVER
15790 M:      Bodo Stroesser <bostroesser@gmail.com>
15791 L:      linux-scsi@vger.kernel.org
15792 L:      target-devel@vger.kernel.org
15793 S:      Supported
15794 F:      Documentation/target/tcmu-design.rst
15795 F:      drivers/target/target_core_user.c
15796 F:      include/uapi/linux/target_core_user.h
15797
15798 SCSI TARGET SUBSYSTEM
15799 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15800 L:      linux-scsi@vger.kernel.org
15801 L:      target-devel@vger.kernel.org
15802 S:      Supported
15803 W:      http://www.linux-iscsi.org
15804 Q:      https://patchwork.kernel.org/project/target-devel/list/
15805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15806 F:      Documentation/target/
15807 F:      drivers/target/
15808 F:      include/target/
15809
15810 SCTP PROTOCOL
15811 M:      Vlad Yasevich <vyasevich@gmail.com>
15812 M:      Neil Horman <nhorman@tuxdriver.com>
15813 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15814 L:      linux-sctp@vger.kernel.org
15815 S:      Maintained
15816 W:      http://lksctp.sourceforge.net
15817 F:      Documentation/networking/sctp.rst
15818 F:      include/linux/sctp.h
15819 F:      include/net/sctp/
15820 F:      include/uapi/linux/sctp.h
15821 F:      net/sctp/
15822
15823 SCx200 CPU SUPPORT
15824 M:      Jim Cromie <jim.cromie@gmail.com>
15825 S:      Odd Fixes
15826 F:      Documentation/i2c/busses/scx200_acb.rst
15827 F:      arch/x86/platform/scx200/
15828 F:      drivers/i2c/busses/scx200*
15829 F:      drivers/mtd/maps/scx200_docflash.c
15830 F:      drivers/watchdog/scx200_wdt.c
15831 F:      include/linux/scx200.h
15832
15833 SCx200 GPIO DRIVER
15834 M:      Jim Cromie <jim.cromie@gmail.com>
15835 S:      Maintained
15836 F:      drivers/char/scx200_gpio.c
15837 F:      include/linux/scx200_gpio.h
15838
15839 SCx200 HRT CLOCKSOURCE DRIVER
15840 M:      Jim Cromie <jim.cromie@gmail.com>
15841 S:      Maintained
15842 F:      drivers/clocksource/scx200_hrt.c
15843
15844 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15845 M:      Sascha Sommer <saschasommer@freenet.de>
15846 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15847 S:      Maintained
15848 F:      drivers/mmc/host/sdricoh_cs.c
15849
15850 SECO BOARDS CEC DRIVER
15851 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15852 S:      Maintained
15853 F:      drivers/media/cec/platform/seco/seco-cec.c
15854 F:      drivers/media/cec/platform/seco/seco-cec.h
15855
15856 SECURE COMPUTING
15857 M:      Kees Cook <keescook@chromium.org>
15858 R:      Andy Lutomirski <luto@amacapital.net>
15859 R:      Will Drewry <wad@chromium.org>
15860 S:      Supported
15861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15862 F:      Documentation/userspace-api/seccomp_filter.rst
15863 F:      include/linux/seccomp.h
15864 F:      include/uapi/linux/seccomp.h
15865 F:      kernel/seccomp.c
15866 F:      tools/testing/selftests/kselftest_harness.h
15867 F:      tools/testing/selftests/seccomp/*
15868 K:      \bsecure_computing
15869 K:      \bTIF_SECCOMP\b
15870
15871 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15872 M:      Al Cooper <alcooperx@gmail.com>
15873 L:      linux-mmc@vger.kernel.org
15874 L:      bcm-kernel-feedback-list@broadcom.com
15875 S:      Maintained
15876 F:      drivers/mmc/host/sdhci-brcmstb*
15877
15878 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15879 M:      Adrian Hunter <adrian.hunter@intel.com>
15880 L:      linux-mmc@vger.kernel.org
15881 S:      Maintained
15882 F:      drivers/mmc/host/sdhci*
15883 F:      include/linux/mmc/sdhci*
15884
15885 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15886 M:      Eugen Hristev <eugen.hristev@microchip.com>
15887 L:      linux-mmc@vger.kernel.org
15888 S:      Supported
15889 F:      drivers/mmc/host/sdhci-of-at91.c
15890
15891 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15892 M:      Ben Dooks <ben-linux@fluff.org>
15893 M:      Jaehoon Chung <jh80.chung@samsung.com>
15894 L:      linux-mmc@vger.kernel.org
15895 S:      Maintained
15896 F:      drivers/mmc/host/sdhci-s3c*
15897
15898 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15899 M:      Viresh Kumar <vireshk@kernel.org>
15900 L:      linux-mmc@vger.kernel.org
15901 S:      Maintained
15902 F:      drivers/mmc/host/sdhci-spear.c
15903
15904 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15905 M:      Kishon Vijay Abraham I <kishon@ti.com>
15906 L:      linux-mmc@vger.kernel.org
15907 S:      Maintained
15908 F:      drivers/mmc/host/sdhci-omap.c
15909
15910 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15911 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15912 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15913 L:      linux-block@vger.kernel.org
15914 S:      Supported
15915 F:      block/opal_proto.h
15916 F:      block/sed*
15917 F:      include/linux/sed*
15918 F:      include/uapi/linux/sed*
15919
15920 SECURITY CONTACT
15921 M:      Security Officers <security@kernel.org>
15922 S:      Supported
15923 F:      Documentation/admin-guide/security-bugs.rst
15924
15925 SECURITY SUBSYSTEM
15926 M:      James Morris <jmorris@namei.org>
15927 M:      "Serge E. Hallyn" <serge@hallyn.com>
15928 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15929 S:      Supported
15930 W:      http://kernsec.org/
15931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15932 F:      security/
15933 X:      security/selinux/
15934
15935 SELINUX SECURITY MODULE
15936 M:      Paul Moore <paul@paul-moore.com>
15937 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15938 M:      Eric Paris <eparis@parisplace.org>
15939 L:      selinux@vger.kernel.org
15940 S:      Supported
15941 W:      https://selinuxproject.org
15942 W:      https://github.com/SELinuxProject
15943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15944 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15945 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15946 F:      Documentation/admin-guide/LSM/SELinux.rst
15947 F:      include/trace/events/avc.h
15948 F:      include/uapi/linux/selinux_netlink.h
15949 F:      scripts/selinux/
15950 F:      security/selinux/
15951
15952 SENSABLE PHANTOM
15953 M:      Jiri Slaby <jirislaby@kernel.org>
15954 S:      Maintained
15955 F:      drivers/misc/phantom.c
15956 F:      include/uapi/linux/phantom.h
15957
15958 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
15959 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
15960 S:      Maintained
15961 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
15962 F:      drivers/iio/chemical/scd30.h
15963 F:      drivers/iio/chemical/scd30_core.c
15964 F:      drivers/iio/chemical/scd30_i2c.c
15965 F:      drivers/iio/chemical/scd30_serial.c
15966
15967 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15968 M:      Tomasz Duszynski <tduszyns@gmail.com>
15969 S:      Maintained
15970 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15971 F:      drivers/iio/chemical/sps30.c
15972
15973 SERIAL DEVICE BUS
15974 M:      Rob Herring <robh@kernel.org>
15975 L:      linux-serial@vger.kernel.org
15976 S:      Maintained
15977 F:      Documentation/devicetree/bindings/serial/serial.yaml
15978 F:      drivers/tty/serdev/
15979 F:      include/linux/serdev.h
15980
15981 SERIAL DRIVERS
15982 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15983 L:      linux-serial@vger.kernel.org
15984 S:      Maintained
15985 F:      Documentation/devicetree/bindings/serial/
15986 F:      drivers/tty/serial/
15987
15988 SERIAL IR RECEIVER
15989 M:      Sean Young <sean@mess.org>
15990 L:      linux-media@vger.kernel.org
15991 S:      Maintained
15992 F:      drivers/media/rc/serial_ir.c
15993
15994 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15995 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15996 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15997 S:      Maintained
15998 F:      Documentation/devicetree/bindings/slimbus/
15999 F:      drivers/slimbus/
16000 F:      include/linux/slimbus.h
16001
16002 SFC NETWORK DRIVER
16003 M:      Edward Cree <ecree.xilinx@gmail.com>
16004 M:      Martin Habets <habetsm.xilinx@gmail.com>
16005 L:      netdev@vger.kernel.org
16006 S:      Supported
16007 F:      drivers/net/ethernet/sfc/
16008
16009 SFF/SFP/SFP+ MODULE SUPPORT
16010 M:      Russell King <linux@armlinux.org.uk>
16011 L:      netdev@vger.kernel.org
16012 S:      Maintained
16013 F:      drivers/net/phy/phylink.c
16014 F:      drivers/net/phy/sfp*
16015 F:      include/linux/mdio/mdio-i2c.h
16016 F:      include/linux/phylink.h
16017 F:      include/linux/sfp.h
16018 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)
16019
16020 SGI GRU DRIVER
16021 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16022 S:      Maintained
16023 F:      drivers/misc/sgi-gru/
16024
16025 SGI XP/XPC/XPNET DRIVER
16026 M:      Robin Holt <robinmholt@gmail.com>
16027 M:      Steve Wahl <steve.wahl@hpe.com>
16028 R:      Mike Travis <mike.travis@hpe.com>
16029 S:      Maintained
16030 F:      drivers/misc/sgi-xp/
16031
16032 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16033 M:      Karsten Graul <kgraul@linux.ibm.com>
16034 L:      linux-s390@vger.kernel.org
16035 S:      Supported
16036 W:      http://www.ibm.com/developerworks/linux/linux390/
16037 F:      net/smc/
16038
16039 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16040 M:      Linus Walleij <linus.walleij@linaro.org>
16041 L:      linux-iio@vger.kernel.org
16042 S:      Maintained
16043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16044 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16045 F:      drivers/iio/light/gp2ap002.c
16046
16047 SHARP RJ54N1CB0C SENSOR DRIVER
16048 M:      Jacopo Mondi <jacopo@jmondi.org>
16049 L:      linux-media@vger.kernel.org
16050 S:      Odd fixes
16051 T:      git git://linuxtv.org/media_tree.git
16052 F:      drivers/media/i2c/rj54n1cb0c.c
16053 F:      include/media/i2c/rj54n1cb0c.h
16054
16055 SH_VOU V4L2 OUTPUT DRIVER
16056 L:      linux-media@vger.kernel.org
16057 S:      Orphan
16058 F:      drivers/media/platform/sh_vou.c
16059 F:      include/media/drv-intf/sh_vou.h
16060
16061 SI2157 MEDIA DRIVER
16062 M:      Antti Palosaari <crope@iki.fi>
16063 L:      linux-media@vger.kernel.org
16064 S:      Maintained
16065 W:      https://linuxtv.org
16066 W:      http://palosaari.fi/linux/
16067 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16068 T:      git git://linuxtv.org/anttip/media_tree.git
16069 F:      drivers/media/tuners/si2157*
16070
16071 SI2165 MEDIA DRIVER
16072 M:      Matthias Schwarzott <zzam@gentoo.org>
16073 L:      linux-media@vger.kernel.org
16074 S:      Maintained
16075 W:      https://linuxtv.org
16076 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16077 F:      drivers/media/dvb-frontends/si2165*
16078
16079 SI2168 MEDIA DRIVER
16080 M:      Antti Palosaari <crope@iki.fi>
16081 L:      linux-media@vger.kernel.org
16082 S:      Maintained
16083 W:      https://linuxtv.org
16084 W:      http://palosaari.fi/linux/
16085 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16086 T:      git git://linuxtv.org/anttip/media_tree.git
16087 F:      drivers/media/dvb-frontends/si2168*
16088
16089 SI470X FM RADIO RECEIVER I2C DRIVER
16090 M:      Hans Verkuil <hverkuil@xs4all.nl>
16091 L:      linux-media@vger.kernel.org
16092 S:      Odd Fixes
16093 W:      https://linuxtv.org
16094 T:      git git://linuxtv.org/media_tree.git
16095 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16096
16097 SI470X FM RADIO RECEIVER USB DRIVER
16098 M:      Hans Verkuil <hverkuil@xs4all.nl>
16099 L:      linux-media@vger.kernel.org
16100 S:      Maintained
16101 W:      https://linuxtv.org
16102 T:      git git://linuxtv.org/media_tree.git
16103 F:      drivers/media/radio/si470x/radio-si470x-common.c
16104 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16105 F:      drivers/media/radio/si470x/radio-si470x.h
16106
16107 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16108 M:      Eduardo Valentin <edubezval@gmail.com>
16109 L:      linux-media@vger.kernel.org
16110 S:      Odd Fixes
16111 W:      https://linuxtv.org
16112 T:      git git://linuxtv.org/media_tree.git
16113 F:      drivers/media/radio/si4713/si4713.?
16114
16115 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16116 M:      Eduardo Valentin <edubezval@gmail.com>
16117 L:      linux-media@vger.kernel.org
16118 S:      Odd Fixes
16119 W:      https://linuxtv.org
16120 T:      git git://linuxtv.org/media_tree.git
16121 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16122
16123 SI4713 FM RADIO TRANSMITTER USB DRIVER
16124 M:      Hans Verkuil <hverkuil@xs4all.nl>
16125 L:      linux-media@vger.kernel.org
16126 S:      Maintained
16127 W:      https://linuxtv.org
16128 T:      git git://linuxtv.org/media_tree.git
16129 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16130
16131 SIANO DVB DRIVER
16132 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16133 L:      linux-media@vger.kernel.org
16134 S:      Odd fixes
16135 W:      https://linuxtv.org
16136 T:      git git://linuxtv.org/media_tree.git
16137 F:      drivers/media/common/siano/
16138 F:      drivers/media/mmc/siano/
16139 F:      drivers/media/usb/siano/
16140 F:      drivers/media/usb/siano/
16141
16142 SIFIVE DRIVERS
16143 M:      Palmer Dabbelt <palmer@dabbelt.com>
16144 M:      Paul Walmsley <paul.walmsley@sifive.com>
16145 L:      linux-riscv@lists.infradead.org
16146 S:      Supported
16147 T:      git git://github.com/sifive/riscv-linux.git
16148 N:      sifive
16149 K:      [^@]sifive
16150
16151 SIFIVE FU540 SYSTEM-ON-CHIP
16152 M:      Paul Walmsley <paul.walmsley@sifive.com>
16153 M:      Palmer Dabbelt <palmer@dabbelt.com>
16154 L:      linux-riscv@lists.infradead.org
16155 S:      Supported
16156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16157 N:      fu540
16158 K:      fu540
16159
16160 SIFIVE PDMA DRIVER
16161 M:      Green Wan <green.wan@sifive.com>
16162 S:      Maintained
16163 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16164 F:      drivers/dma/sf-pdma/
16165
16166 SILEAD TOUCHSCREEN DRIVER
16167 M:      Hans de Goede <hdegoede@redhat.com>
16168 L:      linux-input@vger.kernel.org
16169 L:      platform-driver-x86@vger.kernel.org
16170 S:      Maintained
16171 F:      drivers/input/touchscreen/silead.c
16172 F:      drivers/platform/x86/touchscreen_dmi.c
16173
16174 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16175 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16176 S:      Supported
16177 F:      drivers/staging/wfx/
16178
16179 SILICON MOTION SM712 FRAME BUFFER DRIVER
16180 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16181 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16182 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16183 L:      linux-fbdev@vger.kernel.org
16184 S:      Maintained
16185 F:      Documentation/fb/sm712fb.rst
16186 F:      drivers/video/fbdev/sm712*
16187
16188 SIMPLE FIRMWARE INTERFACE (SFI)
16189 S:      Obsolete
16190 W:      http://simplefirmware.org/
16191 F:      arch/x86/platform/sfi/
16192 F:      drivers/sfi/
16193 F:      include/linux/sfi*.h
16194
16195 SIMPLEFB FB DRIVER
16196 M:      Hans de Goede <hdegoede@redhat.com>
16197 L:      linux-fbdev@vger.kernel.org
16198 S:      Maintained
16199 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16200 F:      drivers/video/fbdev/simplefb.c
16201 F:      include/linux/platform_data/simplefb.h
16202
16203 SIMTEC EB110ATX (Chalice CATS)
16204 M:      Simtec Linux Team <linux@simtec.co.uk>
16205 S:      Supported
16206 W:      http://www.simtec.co.uk/products/EB110ATX/
16207
16208 SIMTEC EB2410ITX (BAST)
16209 M:      Simtec Linux Team <linux@simtec.co.uk>
16210 S:      Supported
16211 W:      http://www.simtec.co.uk/products/EB2410ITX/
16212 F:      arch/arm/mach-s3c/bast-ide.c
16213 F:      arch/arm/mach-s3c/bast-irq.c
16214 F:      arch/arm/mach-s3c/mach-bast.c
16215
16216 SIOX
16217 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16218 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16219 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16220 S:      Supported
16221 F:      drivers/gpio/gpio-siox.c
16222 F:      drivers/siox/*
16223 F:      include/trace/events/siox.h
16224
16225 SIPHASH PRF ROUTINES
16226 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16227 S:      Maintained
16228 F:      include/linux/siphash.h
16229 F:      lib/siphash.c
16230 F:      lib/test_siphash.c
16231
16232 SIS 190 ETHERNET DRIVER
16233 M:      Francois Romieu <romieu@fr.zoreil.com>
16234 L:      netdev@vger.kernel.org
16235 S:      Maintained
16236 F:      drivers/net/ethernet/sis/sis190.c
16237
16238 SIS 900/7016 FAST ETHERNET DRIVER
16239 M:      Daniele Venzano <venza@brownhat.org>
16240 L:      netdev@vger.kernel.org
16241 S:      Maintained
16242 W:      http://www.brownhat.org/sis900.html
16243 F:      drivers/net/ethernet/sis/sis900.*
16244
16245 SIS FRAMEBUFFER DRIVER
16246 M:      Thomas Winischhofer <thomas@winischhofer.net>
16247 S:      Maintained
16248 W:      http://www.winischhofer.net/linuxsisvga.shtml
16249 F:      Documentation/fb/sisfb.rst
16250 F:      drivers/video/fbdev/sis/
16251 F:      include/video/sisfb.h
16252
16253 SIS I2C TOUCHSCREEN DRIVER
16254 M:      Mika Penttilä <mika.penttila@nextfour.com>
16255 L:      linux-input@vger.kernel.org
16256 S:      Maintained
16257 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16258 F:      drivers/input/touchscreen/sis_i2c.c
16259
16260 SIS USB2VGA DRIVER
16261 M:      Thomas Winischhofer <thomas@winischhofer.net>
16262 S:      Maintained
16263 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16264 F:      drivers/usb/misc/sisusbvga/
16265
16266 SLAB ALLOCATOR
16267 M:      Christoph Lameter <cl@linux.com>
16268 M:      Pekka Enberg <penberg@kernel.org>
16269 M:      David Rientjes <rientjes@google.com>
16270 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16271 M:      Andrew Morton <akpm@linux-foundation.org>
16272 M:      Vlastimil Babka <vbabka@suse.cz>
16273 L:      linux-mm@kvack.org
16274 S:      Maintained
16275 F:      include/linux/sl?b*.h
16276 F:      mm/sl?b*
16277
16278 SLEEPABLE READ-COPY UPDATE (SRCU)
16279 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16280 M:      "Paul E. McKenney" <paulmck@kernel.org>
16281 M:      Josh Triplett <josh@joshtriplett.org>
16282 R:      Steven Rostedt <rostedt@goodmis.org>
16283 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16284 L:      rcu@vger.kernel.org
16285 S:      Supported
16286 W:      http://www.rdrop.com/users/paulmck/RCU/
16287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16288 F:      include/linux/srcu*.h
16289 F:      kernel/rcu/srcu*.c
16290
16291 SMACK SECURITY MODULE
16292 M:      Casey Schaufler <casey@schaufler-ca.com>
16293 L:      linux-security-module@vger.kernel.org
16294 S:      Maintained
16295 W:      http://schaufler-ca.com
16296 T:      git git://github.com/cschaufler/smack-next
16297 F:      Documentation/admin-guide/LSM/Smack.rst
16298 F:      security/smack/
16299
16300 SMC91x ETHERNET DRIVER
16301 M:      Nicolas Pitre <nico@fluxnic.net>
16302 S:      Odd Fixes
16303 F:      drivers/net/ethernet/smsc/smc91x.*
16304
16305 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16306 M:      Mark Rutland <mark.rutland@arm.com>
16307 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16308 M:      Sudeep Holla <sudeep.holla@arm.com>
16309 L:      linux-arm-kernel@lists.infradead.org
16310 S:      Maintained
16311 F:      drivers/firmware/smccc/
16312 F:      include/linux/arm-smccc.h
16313
16314 SMM665 HARDWARE MONITOR DRIVER
16315 M:      Guenter Roeck <linux@roeck-us.net>
16316 L:      linux-hwmon@vger.kernel.org
16317 S:      Maintained
16318 F:      Documentation/hwmon/smm665.rst
16319 F:      drivers/hwmon/smm665.c
16320
16321 SMSC EMC2103 HARDWARE MONITOR DRIVER
16322 M:      Steve Glendinning <steve.glendinning@shawell.net>
16323 L:      linux-hwmon@vger.kernel.org
16324 S:      Maintained
16325 F:      Documentation/hwmon/emc2103.rst
16326 F:      drivers/hwmon/emc2103.c
16327
16328 SMSC SCH5627 HARDWARE MONITOR DRIVER
16329 M:      Hans de Goede <hdegoede@redhat.com>
16330 L:      linux-hwmon@vger.kernel.org
16331 S:      Supported
16332 F:      Documentation/hwmon/sch5627.rst
16333 F:      drivers/hwmon/sch5627.c
16334
16335 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16336 M:      Steve Glendinning <steve.glendinning@shawell.net>
16337 L:      linux-fbdev@vger.kernel.org
16338 S:      Maintained
16339 F:      drivers/video/fbdev/smscufx.c
16340
16341 SMSC47B397 HARDWARE MONITOR DRIVER
16342 M:      Jean Delvare <jdelvare@suse.com>
16343 L:      linux-hwmon@vger.kernel.org
16344 S:      Maintained
16345 F:      Documentation/hwmon/smsc47b397.rst
16346 F:      drivers/hwmon/smsc47b397.c
16347
16348 SMSC911x ETHERNET DRIVER
16349 M:      Steve Glendinning <steve.glendinning@shawell.net>
16350 L:      netdev@vger.kernel.org
16351 S:      Maintained
16352 F:      drivers/net/ethernet/smsc/smsc911x.*
16353 F:      include/linux/smsc911x.h
16354
16355 SMSC9420 PCI ETHERNET DRIVER
16356 M:      Steve Glendinning <steve.glendinning@shawell.net>
16357 L:      netdev@vger.kernel.org
16358 S:      Maintained
16359 F:      drivers/net/ethernet/smsc/smsc9420.*
16360
16361 SOCIONEXT (SNI) AVE NETWORK DRIVER
16362 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16363 L:      netdev@vger.kernel.org
16364 S:      Maintained
16365 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16366 F:      drivers/net/ethernet/socionext/sni_ave.c
16367
16368 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16369 M:      Jassi Brar <jaswinder.singh@linaro.org>
16370 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16371 L:      netdev@vger.kernel.org
16372 S:      Maintained
16373 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16374 F:      drivers/net/ethernet/socionext/netsec.c
16375
16376 SOCIONEXT (SNI) Synquacer SPI DRIVER
16377 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16378 M:      Jassi Brar <jaswinder.singh@linaro.org>
16379 L:      linux-spi@vger.kernel.org
16380 S:      Maintained
16381 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16382 F:      drivers/spi/spi-synquacer.c
16383
16384 SOCIONEXT SYNQUACER I2C DRIVER
16385 M:      Ard Biesheuvel <ardb@kernel.org>
16386 L:      linux-i2c@vger.kernel.org
16387 S:      Maintained
16388 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16389 F:      drivers/i2c/busses/i2c-synquacer.c
16390
16391 SOCIONEXT UNIPHIER SOUND DRIVER
16392 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16393 S:      Orphan
16394 F:      sound/soc/uniphier/
16395
16396 SOEKRIS NET48XX LED SUPPORT
16397 M:      Chris Boot <bootc@bootc.net>
16398 S:      Maintained
16399 F:      drivers/leds/leds-net48xx.c
16400
16401 SOFT-IWARP DRIVER (siw)
16402 M:      Bernard Metzler <bmt@zurich.ibm.com>
16403 L:      linux-rdma@vger.kernel.org
16404 S:      Supported
16405 F:      drivers/infiniband/sw/siw/
16406 F:      include/uapi/rdma/siw-abi.h
16407
16408 SOFT-ROCE DRIVER (rxe)
16409 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
16410 L:      linux-rdma@vger.kernel.org
16411 S:      Supported
16412 F:      drivers/infiniband/sw/rxe/
16413 F:      include/uapi/rdma/rdma_user_rxe.h
16414
16415 SOFTLOGIC 6x10 MPEG CODEC
16416 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16417 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16418 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16419 M:      Ismael Luceno <ismael@iodev.co.uk>
16420 L:      linux-media@vger.kernel.org
16421 S:      Supported
16422 F:      drivers/media/pci/solo6x10/
16423
16424 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16425 M:      James Morse <james.morse@arm.com>
16426 L:      linux-arm-kernel@lists.infradead.org
16427 S:      Maintained
16428 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16429 F:      drivers/firmware/arm_sdei.c
16430 F:      include/linux/arm_sdei.h
16431 F:      include/uapi/linux/arm_sdei.h
16432
16433 SOFTWARE RAID (Multiple Disks) SUPPORT
16434 M:      Song Liu <song@kernel.org>
16435 L:      linux-raid@vger.kernel.org
16436 S:      Supported
16437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16438 F:      drivers/md/Kconfig
16439 F:      drivers/md/Makefile
16440 F:      drivers/md/md*
16441 F:      drivers/md/raid*
16442 F:      include/linux/raid/
16443 F:      include/uapi/linux/raid/
16444
16445 SOLIDRUN CLEARFOG SUPPORT
16446 M:      Russell King <linux@armlinux.org.uk>
16447 S:      Maintained
16448 F:      arch/arm/boot/dts/armada-388-clearfog*
16449 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16450
16451 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16452 M:      Russell King <linux@armlinux.org.uk>
16453 S:      Maintained
16454 F:      arch/arm/boot/dts/imx6*-cubox-i*
16455 F:      arch/arm/boot/dts/imx6*-hummingboard*
16456 F:      arch/arm/boot/dts/imx6*-sr-*
16457
16458 SONIC NETWORK DRIVER
16459 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16460 L:      netdev@vger.kernel.org
16461 S:      Maintained
16462 F:      drivers/net/ethernet/natsemi/sonic.*
16463
16464 SONICS SILICON BACKPLANE DRIVER (SSB)
16465 M:      Michael Buesch <m@bues.ch>
16466 L:      linux-wireless@vger.kernel.org
16467 S:      Maintained
16468 F:      drivers/ssb/
16469 F:      include/linux/ssb/
16470
16471 SONY IMX214 SENSOR DRIVER
16472 M:      Ricardo Ribalda <ribalda@kernel.org>
16473 L:      linux-media@vger.kernel.org
16474 S:      Maintained
16475 T:      git git://linuxtv.org/media_tree.git
16476 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16477 F:      drivers/media/i2c/imx214.c
16478
16479 SONY IMX219 SENSOR DRIVER
16480 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16481 L:      linux-media@vger.kernel.org
16482 S:      Maintained
16483 T:      git git://linuxtv.org/media_tree.git
16484 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16485 F:      drivers/media/i2c/imx219.c
16486
16487 SONY IMX258 SENSOR DRIVER
16488 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16489 L:      linux-media@vger.kernel.org
16490 S:      Maintained
16491 T:      git git://linuxtv.org/media_tree.git
16492 F:      drivers/media/i2c/imx258.c
16493
16494 SONY IMX274 SENSOR DRIVER
16495 M:      Leon Luo <leonl@leopardimaging.com>
16496 L:      linux-media@vger.kernel.org
16497 S:      Maintained
16498 T:      git git://linuxtv.org/media_tree.git
16499 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16500 F:      drivers/media/i2c/imx274.c
16501
16502 SONY IMX290 SENSOR DRIVER
16503 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16504 L:      linux-media@vger.kernel.org
16505 S:      Maintained
16506 T:      git git://linuxtv.org/media_tree.git
16507 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16508 F:      drivers/media/i2c/imx290.c
16509
16510 SONY IMX319 SENSOR DRIVER
16511 M:      Bingbu Cao <bingbu.cao@intel.com>
16512 L:      linux-media@vger.kernel.org
16513 S:      Maintained
16514 T:      git git://linuxtv.org/media_tree.git
16515 F:      drivers/media/i2c/imx319.c
16516
16517 SONY IMX355 SENSOR DRIVER
16518 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16519 L:      linux-media@vger.kernel.org
16520 S:      Maintained
16521 T:      git git://linuxtv.org/media_tree.git
16522 F:      drivers/media/i2c/imx355.c
16523
16524 SONY MEMORYSTICK SUBSYSTEM
16525 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16526 M:      Alex Dubov <oakad@yahoo.com>
16527 M:      Ulf Hansson <ulf.hansson@linaro.org>
16528 L:      linux-mmc@vger.kernel.org
16529 S:      Maintained
16530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16531 F:      drivers/memstick/
16532 F:      include/linux/memstick.h
16533
16534 SONY VAIO CONTROL DEVICE DRIVER
16535 M:      Mattia Dongili <malattia@linux.it>
16536 L:      platform-driver-x86@vger.kernel.org
16537 S:      Maintained
16538 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16539 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16540 F:      drivers/char/sonypi.c
16541 F:      drivers/platform/x86/sony-laptop.c
16542 F:      include/linux/sony-laptop.h
16543
16544 SOUND
16545 M:      Jaroslav Kysela <perex@perex.cz>
16546 M:      Takashi Iwai <tiwai@suse.com>
16547 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16548 S:      Maintained
16549 W:      http://www.alsa-project.org/
16550 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16552 F:      Documentation/sound/
16553 F:      include/sound/
16554 F:      include/uapi/sound/
16555 F:      sound/
16556
16557 SOUND - COMPRESSED AUDIO
16558 M:      Vinod Koul <vkoul@kernel.org>
16559 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16560 S:      Supported
16561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16562 F:      Documentation/sound/designs/compress-offload.rst
16563 F:      include/sound/compress_driver.h
16564 F:      include/uapi/sound/compress_*
16565 F:      sound/core/compress_offload.c
16566 F:      sound/soc/soc-compress.c
16567
16568 SOUND - DMAENGINE HELPERS
16569 M:      Lars-Peter Clausen <lars@metafoo.de>
16570 S:      Supported
16571 F:      include/sound/dmaengine_pcm.h
16572 F:      sound/core/pcm_dmaengine.c
16573 F:      sound/soc/soc-generic-dmaengine-pcm.c
16574
16575 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16576 M:      Liam Girdwood <lgirdwood@gmail.com>
16577 M:      Mark Brown <broonie@kernel.org>
16578 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16579 S:      Supported
16580 W:      http://alsa-project.org/main/index.php/ASoC
16581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16582 F:      Documentation/devicetree/bindings/sound/
16583 F:      Documentation/sound/soc/
16584 F:      include/dt-bindings/sound/
16585 F:      include/sound/soc*
16586 F:      sound/soc/
16587
16588 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16589 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16590 M:      Liam Girdwood <lgirdwood@gmail.com>
16591 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16592 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16593 M:      Daniel Baluta <daniel.baluta@nxp.com>
16594 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16595 S:      Supported
16596 W:      https://github.com/thesofproject/linux/
16597 F:      sound/soc/sof/
16598
16599 SOUNDWIRE SUBSYSTEM
16600 M:      Vinod Koul <vkoul@kernel.org>
16601 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16602 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16603 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16604 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16605 S:      Supported
16606 F:      Documentation/driver-api/soundwire/
16607 F:      drivers/soundwire/
16608 F:      include/linux/soundwire/
16609
16610 SP2 MEDIA DRIVER
16611 M:      Olli Salonen <olli.salonen@iki.fi>
16612 L:      linux-media@vger.kernel.org
16613 S:      Maintained
16614 W:      https://linuxtv.org
16615 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16616 F:      drivers/media/dvb-frontends/sp2*
16617
16618 SPARC + UltraSPARC (sparc/sparc64)
16619 M:      "David S. Miller" <davem@davemloft.net>
16620 L:      sparclinux@vger.kernel.org
16621 S:      Maintained
16622 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16625 F:      arch/sparc/
16626 F:      drivers/sbus/
16627
16628 SPARC SERIAL DRIVERS
16629 M:      "David S. Miller" <davem@davemloft.net>
16630 L:      sparclinux@vger.kernel.org
16631 S:      Maintained
16632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16634 F:      drivers/tty/serial/suncore.c
16635 F:      drivers/tty/serial/sunhv.c
16636 F:      drivers/tty/serial/sunsab.c
16637 F:      drivers/tty/serial/sunsab.h
16638 F:      drivers/tty/serial/sunsu.c
16639 F:      drivers/tty/serial/sunzilog.c
16640 F:      drivers/tty/serial/sunzilog.h
16641 F:      drivers/tty/vcc.c
16642 F:      include/linux/sunserialcore.h
16643
16644 SPARSE CHECKER
16645 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16646 L:      linux-sparse@vger.kernel.org
16647 S:      Maintained
16648 W:      https://sparse.docs.kernel.org/
16649 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16650 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16651 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16652 F:      include/linux/compiler.h
16653
16654 SPEAKUP CONSOLE SPEECH DRIVER
16655 M:      William Hubbs <w.d.hubbs@gmail.com>
16656 M:      Chris Brannon <chris@the-brannons.com>
16657 M:      Kirk Reiser <kirk@reisers.ca>
16658 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16659 L:      speakup@linux-speakup.org
16660 S:      Odd Fixes
16661 W:      http://www.linux-speakup.org/
16662 W:      https://github.com/linux-speakup/speakup
16663 B:      https://github.com/linux-speakup/speakup/issues
16664 F:      drivers/accessibility/speakup/
16665
16666 SPEAR CLOCK FRAMEWORK SUPPORT
16667 M:      Viresh Kumar <vireshk@kernel.org>
16668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16669 S:      Maintained
16670 W:      http://www.st.com/spear
16671 F:      drivers/clk/spear/
16672
16673 SPEAR PLATFORM SUPPORT
16674 M:      Viresh Kumar <vireshk@kernel.org>
16675 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16677 S:      Maintained
16678 W:      http://www.st.com/spear
16679 F:      arch/arm/boot/dts/spear*
16680 F:      arch/arm/mach-spear/
16681
16682 SPI NOR SUBSYSTEM
16683 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16684 L:      linux-mtd@lists.infradead.org
16685 S:      Maintained
16686 W:      http://www.linux-mtd.infradead.org/
16687 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16688 C:      irc://irc.oftc.net/mtd
16689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16690 F:      drivers/mtd/spi-nor/
16691 F:      include/linux/mtd/spi-nor.h
16692
16693 SPI SUBSYSTEM
16694 M:      Mark Brown <broonie@kernel.org>
16695 L:      linux-spi@vger.kernel.org
16696 S:      Maintained
16697 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16699 F:      Documentation/devicetree/bindings/spi/
16700 F:      Documentation/spi/
16701 F:      drivers/spi/
16702 F:      include/linux/spi/
16703 F:      include/uapi/linux/spi/
16704 F:      tools/spi/
16705
16706 SPIDERNET NETWORK DRIVER for CELL
16707 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16708 L:      netdev@vger.kernel.org
16709 S:      Supported
16710 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16711 F:      drivers/net/ethernet/toshiba/spider_net*
16712
16713 SPMI SUBSYSTEM
16714 M:      Stephen Boyd <sboyd@kernel.org>
16715 L:      linux-kernel@vger.kernel.org
16716 S:      Maintained
16717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
16718 F:      Documentation/devicetree/bindings/spmi/
16719 F:      drivers/spmi/
16720 F:      include/dt-bindings/spmi/spmi.h
16721 F:      include/linux/spmi.h
16722 F:      include/trace/events/spmi.h
16723
16724 SPU FILE SYSTEM
16725 M:      Jeremy Kerr <jk@ozlabs.org>
16726 L:      linuxppc-dev@lists.ozlabs.org
16727 S:      Supported
16728 W:      http://www.ibm.com/developerworks/power/cell/
16729 F:      Documentation/filesystems/spufs/spufs.rst
16730 F:      arch/powerpc/platforms/cell/spufs/
16731
16732 SQUASHFS FILE SYSTEM
16733 M:      Phillip Lougher <phillip@squashfs.org.uk>
16734 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16735 S:      Maintained
16736 W:      http://squashfs.org.uk
16737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16738 F:      Documentation/filesystems/squashfs.rst
16739 F:      fs/squashfs/
16740
16741 SRM (Alpha) environment access
16742 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16743 S:      Maintained
16744 F:      arch/alpha/kernel/srm_env.c
16745
16746 ST LSM6DSx IMU IIO DRIVER
16747 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16748 L:      linux-iio@vger.kernel.org
16749 S:      Maintained
16750 W:      http://www.st.com/
16751 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16752 F:      drivers/iio/imu/st_lsm6dsx/
16753
16754 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16755 M:      Mickael Guene <mickael.guene@st.com>
16756 L:      linux-media@vger.kernel.org
16757 S:      Maintained
16758 T:      git git://linuxtv.org/media_tree.git
16759 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16760 F:      drivers/media/i2c/st-mipid02.c
16761
16762 ST STM32 I2C/SMBUS DRIVER
16763 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16764 L:      linux-i2c@vger.kernel.org
16765 S:      Maintained
16766 F:      drivers/i2c/busses/i2c-stm32*
16767
16768 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16769 M:      Song Qiang <songqiang1304521@gmail.com>
16770 L:      linux-iio@vger.kernel.org
16771 S:      Maintained
16772 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16773 F:      drivers/iio/proximity/vl53l0x-i2c.c
16774
16775 STABLE BRANCH
16776 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16777 M:      Sasha Levin <sashal@kernel.org>
16778 L:      stable@vger.kernel.org
16779 S:      Supported
16780 F:      Documentation/process/stable-kernel-rules.rst
16781
16782 STAGING - ATOMISP DRIVER
16783 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16784 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16785 L:      linux-media@vger.kernel.org
16786 S:      Maintained
16787 F:      drivers/staging/media/atomisp/
16788
16789 STAGING - COMEDI
16790 M:      Ian Abbott <abbotti@mev.co.uk>
16791 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16792 S:      Odd Fixes
16793 F:      drivers/staging/comedi/
16794
16795 STAGING - FIELDBUS SUBSYSTEM
16796 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16797 S:      Maintained
16798 F:      drivers/staging/fieldbus/*
16799 F:      drivers/staging/fieldbus/Documentation/
16800
16801 STAGING - HMS ANYBUS-S BUS
16802 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16803 S:      Maintained
16804 F:      drivers/staging/fieldbus/anybuss/
16805
16806 STAGING - INDUSTRIAL IO
16807 M:      Jonathan Cameron <jic23@kernel.org>
16808 L:      linux-iio@vger.kernel.org
16809 S:      Odd Fixes
16810 F:      Documentation/devicetree/bindings/staging/iio/
16811 F:      drivers/staging/iio/
16812
16813 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16814 M:      Marc Dietrich <marvin24@gmx.de>
16815 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16816 L:      linux-tegra@vger.kernel.org
16817 S:      Maintained
16818 F:      drivers/staging/nvec/
16819
16820 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16821 M:      Jens Frederich <jfrederich@gmail.com>
16822 M:      Daniel Drake <dsd@laptop.org>
16823 M:      Jon Nettleton <jon.nettleton@gmail.com>
16824 S:      Maintained
16825 W:      http://wiki.laptop.org/go/DCON
16826 F:      drivers/staging/olpc_dcon/
16827
16828 STAGING - REALTEK RTL8188EU DRIVERS
16829 M:      Larry Finger <Larry.Finger@lwfinger.net>
16830 S:      Odd Fixes
16831 F:      drivers/staging/rtl8188eu/
16832
16833 STAGING - REALTEK RTL8712U DRIVERS
16834 M:      Larry Finger <Larry.Finger@lwfinger.net>
16835 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16836 S:      Odd Fixes
16837 F:      drivers/staging/rtl8712/
16838
16839 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16840 M:      Michael Hennerich <michael.hennerich@analog.com>
16841 L:      linux-fbdev@vger.kernel.org
16842 S:      Supported
16843 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16844 F:      drivers/staging/fbtft/fb_seps525.c
16845
16846 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16847 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16848 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16849 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16850 L:      linux-fbdev@vger.kernel.org
16851 S:      Maintained
16852 F:      drivers/staging/sm750fb/
16853
16854 STAGING - VIA VT665X DRIVERS
16855 M:      Forest Bond <forest@alittletooquiet.net>
16856 S:      Odd Fixes
16857 F:      drivers/staging/vt665?/
16858
16859 STAGING SUBSYSTEM
16860 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16861 L:      devel@driverdev.osuosl.org
16862 S:      Supported
16863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16864 F:      drivers/staging/
16865
16866 STARFIRE/DURALAN NETWORK DRIVER
16867 M:      Ion Badulescu <ionut@badula.org>
16868 S:      Odd Fixes
16869 F:      drivers/net/ethernet/adaptec/starfire*
16870
16871 STATIC BRANCH/CALL
16872 M:      Peter Zijlstra <peterz@infradead.org>
16873 M:      Josh Poimboeuf <jpoimboe@redhat.com>
16874 M:      Jason Baron <jbaron@akamai.com>
16875 R:      Steven Rostedt <rostedt@goodmis.org>
16876 R:      Ard Biesheuvel <ardb@kernel.org>
16877 S:      Supported
16878 F:      arch/*/include/asm/jump_label*.h
16879 F:      arch/*/include/asm/static_call*.h
16880 F:      arch/*/kernel/jump_label.c
16881 F:      arch/*/kernel/static_call.c
16882 F:      include/linux/jump_label*.h
16883 F:      include/linux/static_call*.h
16884 F:      kernel/jump_label.c
16885 F:      kernel/static_call.c
16886
16887 STEC S1220 SKD DRIVER
16888 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16889 L:      linux-block@vger.kernel.org
16890 S:      Maintained
16891 F:      drivers/block/skd*[ch]
16892
16893 STI AUDIO (ASoC) DRIVERS
16894 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16895 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16896 S:      Maintained
16897 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16898 F:      sound/soc/sti/
16899
16900 STI CEC DRIVER
16901 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16902 S:      Maintained
16903 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16904 F:      drivers/media/cec/platform/sti/
16905
16906 STK1160 USB VIDEO CAPTURE DRIVER
16907 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16908 L:      linux-media@vger.kernel.org
16909 S:      Maintained
16910 T:      git git://linuxtv.org/media_tree.git
16911 F:      drivers/media/usb/stk1160/
16912
16913 STM32 AUDIO (ASoC) DRIVERS
16914 M:      Olivier Moysan <olivier.moysan@st.com>
16915 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16916 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16917 S:      Maintained
16918 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
16919 F:      sound/soc/stm/
16920
16921 STM32 TIMER/LPTIMER DRIVERS
16922 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16923 S:      Maintained
16924 F:      Documentation/ABI/testing/*timer-stm32
16925 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16926 F:      drivers/*/stm32-*timer*
16927 F:      drivers/pwm/pwm-stm32*
16928 F:      include/linux/*/stm32-*tim*
16929
16930 STMMAC ETHERNET DRIVER
16931 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16932 M:      Alexandre Torgue <alexandre.torgue@st.com>
16933 M:      Jose Abreu <joabreu@synopsys.com>
16934 L:      netdev@vger.kernel.org
16935 S:      Supported
16936 W:      http://www.stlinux.com
16937 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16938 F:      drivers/net/ethernet/stmicro/stmmac/
16939
16940 SUN3/3X
16941 M:      Sam Creasey <sammy@sammy.net>
16942 S:      Maintained
16943 W:      http://sammy.net/sun3/
16944 F:      arch/m68k/include/asm/sun3*
16945 F:      arch/m68k/kernel/*sun3*
16946 F:      arch/m68k/sun3*/
16947 F:      drivers/net/ethernet/i825xx/sun3*
16948
16949 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16950 M:      Hans de Goede <hdegoede@redhat.com>
16951 L:      linux-input@vger.kernel.org
16952 S:      Maintained
16953 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16954 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16955
16956 SUNDANCE NETWORK DRIVER
16957 M:      Denis Kirjanov <kda@linux-powerpc.org>
16958 L:      netdev@vger.kernel.org
16959 S:      Maintained
16960 F:      drivers/net/ethernet/dlink/sundance.c
16961
16962 SUPERH
16963 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16964 M:      Rich Felker <dalias@libc.org>
16965 L:      linux-sh@vger.kernel.org
16966 S:      Maintained
16967 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16968 F:      Documentation/sh/
16969 F:      arch/sh/
16970 F:      drivers/sh/
16971
16972 SUSPEND TO RAM
16973 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16974 M:      Len Brown <len.brown@intel.com>
16975 M:      Pavel Machek <pavel@ucw.cz>
16976 L:      linux-pm@vger.kernel.org
16977 S:      Supported
16978 B:      https://bugzilla.kernel.org
16979 F:      Documentation/power/
16980 F:      arch/x86/kernel/acpi/
16981 F:      drivers/base/power/
16982 F:      include/linux/freezer.h
16983 F:      include/linux/pm.h
16984 F:      include/linux/suspend.h
16985 F:      kernel/power/
16986
16987 SVGA HANDLING
16988 M:      Martin Mares <mj@ucw.cz>
16989 L:      linux-video@atrey.karlin.mff.cuni.cz
16990 S:      Maintained
16991 F:      Documentation/admin-guide/svga.rst
16992 F:      arch/x86/boot/video*
16993
16994 SWIOTLB SUBSYSTEM
16995 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16996 L:      iommu@lists.linux-foundation.org
16997 S:      Supported
16998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16999 F:      arch/*/kernel/pci-swiotlb.c
17000 F:      include/linux/swiotlb.h
17001 F:      kernel/dma/swiotlb.c
17002
17003 SWITCHDEV
17004 M:      Jiri Pirko <jiri@resnulli.us>
17005 M:      Ivan Vecera <ivecera@redhat.com>
17006 L:      netdev@vger.kernel.org
17007 S:      Supported
17008 F:      include/net/switchdev.h
17009 F:      net/switchdev/
17010
17011 SY8106A REGULATOR DRIVER
17012 M:      Icenowy Zheng <icenowy@aosc.io>
17013 S:      Maintained
17014 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17015 F:      drivers/regulator/sy8106a-regulator.c
17016
17017 SYNC FILE FRAMEWORK
17018 M:      Sumit Semwal <sumit.semwal@linaro.org>
17019 R:      Gustavo Padovan <gustavo@padovan.org>
17020 L:      linux-media@vger.kernel.org
17021 L:      dri-devel@lists.freedesktop.org
17022 S:      Maintained
17023 T:      git git://anongit.freedesktop.org/drm/drm-misc
17024 F:      Documentation/driver-api/sync_file.rst
17025 F:      drivers/dma-buf/dma-fence*
17026 F:      drivers/dma-buf/sw_sync.c
17027 F:      drivers/dma-buf/sync_*
17028 F:      include/linux/sync_file.h
17029 F:      include/uapi/linux/sync_file.h
17030
17031 SYNOPSYS ARC ARCHITECTURE
17032 M:      Vineet Gupta <vgupta@synopsys.com>
17033 L:      linux-snps-arc@lists.infradead.org
17034 S:      Supported
17035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17036 F:      Documentation/devicetree/bindings/arc/*
17037 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17038 F:      arch/arc/
17039 F:      drivers/clocksource/arc_timer.c
17040 F:      drivers/tty/serial/arc_uart.c
17041
17042 SYNOPSYS ARC HSDK SDP pll clock driver
17043 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17044 S:      Supported
17045 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17046 F:      drivers/clk/clk-hsdk-pll.c
17047
17048 SYNOPSYS ARC SDP clock driver
17049 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17050 S:      Supported
17051 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17052 F:      drivers/clk/axs10x/*
17053
17054 SYNOPSYS ARC SDP platform support
17055 M:      Alexey Brodkin <abrodkin@synopsys.com>
17056 S:      Supported
17057 F:      Documentation/devicetree/bindings/arc/axs10*
17058 F:      arch/arc/boot/dts/ax*
17059 F:      arch/arc/plat-axs10x
17060
17061 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17062 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17063 S:      Supported
17064 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17065 F:      drivers/reset/reset-axs10x.c
17066
17067 SYNOPSYS CREG GPIO DRIVER
17068 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17069 S:      Maintained
17070 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17071 F:      drivers/gpio/gpio-creg-snps.c
17072
17073 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17074 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17075 S:      Maintained
17076 F:      drivers/tty/serial/8250/8250_dw.c
17077 F:      drivers/tty/serial/8250/8250_dwlib.*
17078 F:      drivers/tty/serial/8250/8250_lpss.c
17079
17080 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17081 M:      Hoan Tran <hoan@os.amperecomputing.com>
17082 M:      Serge Semin <fancer.lancer@gmail.com>
17083 L:      linux-gpio@vger.kernel.org
17084 S:      Maintained
17085 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17086 F:      drivers/gpio/gpio-dwapb.c
17087
17088 SYNOPSYS DESIGNWARE APB SSI DRIVER
17089 M:      Serge Semin <fancer.lancer@gmail.com>
17090 L:      linux-spi@vger.kernel.org
17091 S:      Supported
17092 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17093 F:      drivers/spi/spi-dw*
17094
17095 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17096 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17097 S:      Maintained
17098 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
17099 F:      drivers/dma/dw-axi-dmac/
17100
17101 SYNOPSYS DESIGNWARE DMAC DRIVER
17102 M:      Viresh Kumar <vireshk@kernel.org>
17103 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17104 S:      Maintained
17105 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17106 F:      drivers/dma/dw/
17107 F:      include/dt-bindings/dma/dw-dmac.h
17108 F:      include/linux/dma/dw.h
17109 F:      include/linux/platform_data/dma-dw.h
17110
17111 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17112 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17113 L:      netdev@vger.kernel.org
17114 S:      Supported
17115 F:      drivers/net/ethernet/synopsys/
17116
17117 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17118 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17119 L:      netdev@vger.kernel.org
17120 S:      Supported
17121 F:      drivers/net/pcs/pcs-xpcs.c
17122 F:      include/linux/pcs/pcs-xpcs.h
17123
17124 SYNOPSYS DESIGNWARE I2C DRIVER
17125 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17126 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17127 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17128 L:      linux-i2c@vger.kernel.org
17129 S:      Maintained
17130 F:      drivers/i2c/busses/i2c-designware-*
17131 F:      include/linux/platform_data/i2c-designware.h
17132
17133 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17134 M:      Jaehoon Chung <jh80.chung@samsung.com>
17135 L:      linux-mmc@vger.kernel.org
17136 S:      Maintained
17137 F:      drivers/mmc/host/dw_mmc*
17138
17139 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17140 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17141 S:      Supported
17142 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17143 F:      drivers/reset/reset-hsdk.c
17144 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17145
17146 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17147 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17148 M:      Manjunath M B <manjumb@synopsys.com>
17149 L:      linux-mmc@vger.kernel.org
17150 S:      Maintained
17151 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17152
17153 SYSTEM CONFIGURATION (SYSCON)
17154 M:      Lee Jones <lee.jones@linaro.org>
17155 M:      Arnd Bergmann <arnd@arndb.de>
17156 S:      Supported
17157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17158 F:      drivers/mfd/syscon.c
17159
17160 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17161 M:      Sudeep Holla <sudeep.holla@arm.com>
17162 L:      linux-arm-kernel@lists.infradead.org
17163 S:      Maintained
17164 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17165 F:      drivers/clk/clk-sc[mp]i.c
17166 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17167 F:      drivers/firmware/arm_scmi/
17168 F:      drivers/firmware/arm_scpi.c
17169 F:      drivers/reset/reset-scmi.c
17170 F:      include/linux/sc[mp]i_protocol.h
17171 F:      include/trace/events/scmi.h
17172
17173 SYSTEM RESET/SHUTDOWN DRIVERS
17174 M:      Sebastian Reichel <sre@kernel.org>
17175 L:      linux-pm@vger.kernel.org
17176 S:      Maintained
17177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17178 F:      Documentation/devicetree/bindings/power/reset/
17179 F:      drivers/power/reset/
17180
17181 SYSTEM TRACE MODULE CLASS
17182 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17183 S:      Maintained
17184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17185 F:      Documentation/trace/stm.rst
17186 F:      drivers/hwtracing/stm/
17187 F:      include/linux/stm.h
17188 F:      include/uapi/linux/stm.h
17189
17190 SYSTEM76 ACPI DRIVER
17191 M:      Jeremy Soller <jeremy@system76.com>
17192 M:      System76 Product Development <productdev@system76.com>
17193 L:      platform-driver-x86@vger.kernel.org
17194 S:      Maintained
17195 F:      drivers/platform/x86/system76_acpi.c
17196
17197 SYSV FILESYSTEM
17198 M:      Christoph Hellwig <hch@infradead.org>
17199 S:      Maintained
17200 F:      Documentation/filesystems/sysv-fs.rst
17201 F:      fs/sysv/
17202 F:      include/linux/sysv_fs.h
17203
17204 TASKSTATS STATISTICS INTERFACE
17205 M:      Balbir Singh <bsingharora@gmail.com>
17206 S:      Maintained
17207 F:      Documentation/accounting/taskstats*
17208 F:      include/linux/taskstats*
17209 F:      kernel/taskstats.c
17210
17211 TC subsystem
17212 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17213 M:      Cong Wang <xiyou.wangcong@gmail.com>
17214 M:      Jiri Pirko <jiri@resnulli.us>
17215 L:      netdev@vger.kernel.org
17216 S:      Maintained
17217 F:      include/net/pkt_cls.h
17218 F:      include/net/pkt_sched.h
17219 F:      include/net/tc_act/
17220 F:      include/uapi/linux/pkt_cls.h
17221 F:      include/uapi/linux/pkt_sched.h
17222 F:      include/uapi/linux/tc_act/
17223 F:      include/uapi/linux/tc_ematch/
17224 F:      net/sched/
17225
17226 TC90522 MEDIA DRIVER
17227 M:      Akihiro Tsukada <tskd08@gmail.com>
17228 L:      linux-media@vger.kernel.org
17229 S:      Odd Fixes
17230 F:      drivers/media/dvb-frontends/tc90522*
17231
17232 TCP LOW PRIORITY MODULE
17233 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17234 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17235 S:      Maintained
17236 W:      http://tcp-lp-mod.sourceforge.net/
17237 F:      net/ipv4/tcp_lp.c
17238
17239 TDA10071 MEDIA DRIVER
17240 M:      Antti Palosaari <crope@iki.fi>
17241 L:      linux-media@vger.kernel.org
17242 S:      Maintained
17243 W:      https://linuxtv.org
17244 W:      http://palosaari.fi/linux/
17245 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17246 T:      git git://linuxtv.org/anttip/media_tree.git
17247 F:      drivers/media/dvb-frontends/tda10071*
17248
17249 TDA18212 MEDIA DRIVER
17250 M:      Antti Palosaari <crope@iki.fi>
17251 L:      linux-media@vger.kernel.org
17252 S:      Maintained
17253 W:      https://linuxtv.org
17254 W:      http://palosaari.fi/linux/
17255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17256 T:      git git://linuxtv.org/anttip/media_tree.git
17257 F:      drivers/media/tuners/tda18212*
17258
17259 TDA18218 MEDIA DRIVER
17260 M:      Antti Palosaari <crope@iki.fi>
17261 L:      linux-media@vger.kernel.org
17262 S:      Maintained
17263 W:      https://linuxtv.org
17264 W:      http://palosaari.fi/linux/
17265 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17266 T:      git git://linuxtv.org/anttip/media_tree.git
17267 F:      drivers/media/tuners/tda18218*
17268
17269 TDA18250 MEDIA DRIVER
17270 M:      Olli Salonen <olli.salonen@iki.fi>
17271 L:      linux-media@vger.kernel.org
17272 S:      Maintained
17273 W:      https://linuxtv.org
17274 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17275 T:      git git://linuxtv.org/media_tree.git
17276 F:      drivers/media/tuners/tda18250*
17277
17278 TDA18271 MEDIA DRIVER
17279 M:      Michael Krufky <mkrufky@linuxtv.org>
17280 L:      linux-media@vger.kernel.org
17281 S:      Maintained
17282 W:      https://linuxtv.org
17283 W:      http://github.com/mkrufky
17284 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17285 T:      git git://linuxtv.org/mkrufky/tuners.git
17286 F:      drivers/media/tuners/tda18271*
17287
17288 TDA1997x MEDIA DRIVER
17289 M:      Tim Harvey <tharvey@gateworks.com>
17290 L:      linux-media@vger.kernel.org
17291 S:      Maintained
17292 W:      https://linuxtv.org
17293 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17294 F:      drivers/media/i2c/tda1997x.*
17295
17296 TDA827x MEDIA DRIVER
17297 M:      Michael Krufky <mkrufky@linuxtv.org>
17298 L:      linux-media@vger.kernel.org
17299 S:      Maintained
17300 W:      https://linuxtv.org
17301 W:      http://github.com/mkrufky
17302 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17303 T:      git git://linuxtv.org/mkrufky/tuners.git
17304 F:      drivers/media/tuners/tda8290.*
17305
17306 TDA8290 MEDIA DRIVER
17307 M:      Michael Krufky <mkrufky@linuxtv.org>
17308 L:      linux-media@vger.kernel.org
17309 S:      Maintained
17310 W:      https://linuxtv.org
17311 W:      http://github.com/mkrufky
17312 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17313 T:      git git://linuxtv.org/mkrufky/tuners.git
17314 F:      drivers/media/tuners/tda8290.*
17315
17316 TDA9840 MEDIA DRIVER
17317 M:      Hans Verkuil <hverkuil@xs4all.nl>
17318 L:      linux-media@vger.kernel.org
17319 S:      Maintained
17320 W:      https://linuxtv.org
17321 T:      git git://linuxtv.org/media_tree.git
17322 F:      drivers/media/i2c/tda9840*
17323
17324 TEA5761 TUNER DRIVER
17325 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17326 L:      linux-media@vger.kernel.org
17327 S:      Odd fixes
17328 W:      https://linuxtv.org
17329 T:      git git://linuxtv.org/media_tree.git
17330 F:      drivers/media/tuners/tea5761.*
17331
17332 TEA5767 TUNER DRIVER
17333 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17334 L:      linux-media@vger.kernel.org
17335 S:      Maintained
17336 W:      https://linuxtv.org
17337 T:      git git://linuxtv.org/media_tree.git
17338 F:      drivers/media/tuners/tea5767.*
17339
17340 TEA6415C MEDIA DRIVER
17341 M:      Hans Verkuil <hverkuil@xs4all.nl>
17342 L:      linux-media@vger.kernel.org
17343 S:      Maintained
17344 W:      https://linuxtv.org
17345 T:      git git://linuxtv.org/media_tree.git
17346 F:      drivers/media/i2c/tea6415c*
17347
17348 TEA6420 MEDIA DRIVER
17349 M:      Hans Verkuil <hverkuil@xs4all.nl>
17350 L:      linux-media@vger.kernel.org
17351 S:      Maintained
17352 W:      https://linuxtv.org
17353 T:      git git://linuxtv.org/media_tree.git
17354 F:      drivers/media/i2c/tea6420*
17355
17356 TEAM DRIVER
17357 M:      Jiri Pirko <jiri@resnulli.us>
17358 L:      netdev@vger.kernel.org
17359 S:      Supported
17360 F:      drivers/net/team/
17361 F:      include/linux/if_team.h
17362 F:      include/uapi/linux/if_team.h
17363
17364 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17365 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17366 S:      Maintained
17367 F:      arch/x86/platform/ts5500/
17368
17369 TECHNOTREND USB IR RECEIVER
17370 M:      Sean Young <sean@mess.org>
17371 L:      linux-media@vger.kernel.org
17372 S:      Maintained
17373 F:      drivers/media/rc/ttusbir.c
17374
17375 TECHWELL TW9910 VIDEO DECODER
17376 L:      linux-media@vger.kernel.org
17377 S:      Orphan
17378 F:      drivers/media/i2c/tw9910.c
17379 F:      include/media/i2c/tw9910.h
17380
17381 TEE SUBSYSTEM
17382 M:      Jens Wiklander <jens.wiklander@linaro.org>
17383 L:      op-tee@lists.trustedfirmware.org
17384 S:      Maintained
17385 F:      Documentation/staging/tee.rst
17386 F:      drivers/tee/
17387 F:      include/linux/tee_drv.h
17388 F:      include/uapi/linux/tee.h
17389
17390 TEGRA ARCHITECTURE SUPPORT
17391 M:      Thierry Reding <thierry.reding@gmail.com>
17392 M:      Jonathan Hunter <jonathanh@nvidia.com>
17393 L:      linux-tegra@vger.kernel.org
17394 S:      Supported
17395 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17397 N:      [^a-z]tegra
17398
17399 TEGRA CLOCK DRIVER
17400 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17401 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17402 S:      Supported
17403 F:      drivers/clk/tegra/
17404
17405 TEGRA DMA DRIVERS
17406 M:      Laxman Dewangan <ldewangan@nvidia.com>
17407 M:      Jon Hunter <jonathanh@nvidia.com>
17408 S:      Supported
17409 F:      drivers/dma/tegra*
17410
17411 TEGRA I2C DRIVER
17412 M:      Laxman Dewangan <ldewangan@nvidia.com>
17413 R:      Dmitry Osipenko <digetx@gmail.com>
17414 S:      Supported
17415 F:      drivers/i2c/busses/i2c-tegra.c
17416
17417 TEGRA IOMMU DRIVERS
17418 M:      Thierry Reding <thierry.reding@gmail.com>
17419 R:      Krishna Reddy <vdumpa@nvidia.com>
17420 L:      linux-tegra@vger.kernel.org
17421 S:      Supported
17422 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17423 F:      drivers/iommu/tegra*
17424
17425 TEGRA KBC DRIVER
17426 M:      Laxman Dewangan <ldewangan@nvidia.com>
17427 S:      Supported
17428 F:      drivers/input/keyboard/tegra-kbc.c
17429
17430 TEGRA NAND DRIVER
17431 M:      Stefan Agner <stefan@agner.ch>
17432 M:      Lucas Stach <dev@lynxeye.de>
17433 S:      Maintained
17434 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17435 F:      drivers/mtd/nand/raw/tegra_nand.c
17436
17437 TEGRA PWM DRIVER
17438 M:      Thierry Reding <thierry.reding@gmail.com>
17439 S:      Supported
17440 F:      drivers/pwm/pwm-tegra.c
17441
17442 TEGRA SERIAL DRIVER
17443 M:      Laxman Dewangan <ldewangan@nvidia.com>
17444 S:      Supported
17445 F:      drivers/tty/serial/serial-tegra.c
17446
17447 TEGRA SPI DRIVER
17448 M:      Laxman Dewangan <ldewangan@nvidia.com>
17449 S:      Supported
17450 F:      drivers/spi/spi-tegra*
17451
17452 TEGRA VIDEO DRIVER
17453 M:      Thierry Reding <thierry.reding@gmail.com>
17454 M:      Jonathan Hunter <jonathanh@nvidia.com>
17455 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17456 L:      linux-media@vger.kernel.org
17457 L:      linux-tegra@vger.kernel.org
17458 S:      Maintained
17459 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17460 F:      drivers/staging/media/tegra-video/
17461
17462 TEGRA XUSB PADCTL DRIVER
17463 M:      JC Kuo <jckuo@nvidia.com>
17464 S:      Supported
17465 F:      drivers/phy/tegra/xusb*
17466
17467 TEHUTI ETHERNET DRIVER
17468 M:      Andy Gospodarek <andy@greyhouse.net>
17469 L:      netdev@vger.kernel.org
17470 S:      Supported
17471 F:      drivers/net/ethernet/tehuti/*
17472
17473 TELECOM CLOCK DRIVER FOR MCPL0010
17474 M:      Mark Gross <mark.gross@intel.com>
17475 S:      Supported
17476 F:      drivers/char/tlclk.c
17477
17478 TEMPO SEMICONDUCTOR DRIVERS
17479 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17480 S:      Maintained
17481 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17482 F:      sound/soc/codecs/tscs*.c
17483 F:      sound/soc/codecs/tscs*.h
17484
17485 TENSILICA XTENSA PORT (xtensa)
17486 M:      Chris Zankel <chris@zankel.net>
17487 M:      Max Filippov <jcmvbkbc@gmail.com>
17488 L:      linux-xtensa@linux-xtensa.org
17489 S:      Maintained
17490 T:      git git://github.com/czankel/xtensa-linux.git
17491 F:      arch/xtensa/
17492 F:      drivers/irqchip/irq-xtensa-*
17493
17494 TEXAS INSTRUMENTS ASoC DRIVERS
17495 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17496 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17497 S:      Maintained
17498 F:      sound/soc/ti/
17499
17500 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17501 M:      Ricardo Ribalda <ribalda@kernel.org>
17502 L:      linux-iio@vger.kernel.org
17503 S:      Supported
17504 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17505 F:      drivers/iio/dac/ti-dac7612.c
17506
17507 TEXAS INSTRUMENTS DMA DRIVERS
17508 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17509 L:      dmaengine@vger.kernel.org
17510 S:      Maintained
17511 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
17512 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
17513 F:      Documentation/devicetree/bindings/dma/ti/
17514 F:      drivers/dma/ti/
17515 X:      drivers/dma/ti/cppi41.c
17516 F:      include/linux/dma/k3-udma-glue.h
17517 F:      include/linux/dma/ti-cppi5.h
17518 F:      include/linux/dma/k3-psil.h
17519
17520 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17521 M:      Nishanth Menon <nm@ti.com>
17522 M:      Tero Kristo <kristo@kernel.org>
17523 M:      Santosh Shilimkar <ssantosh@kernel.org>
17524 L:      linux-arm-kernel@lists.infradead.org
17525 S:      Maintained
17526 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17527 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17528 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17529 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17530 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17531 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17532 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17533 F:      drivers/clk/keystone/sci-clk.c
17534 F:      drivers/firmware/ti_sci*
17535 F:      drivers/irqchip/irq-ti-sci-inta.c
17536 F:      drivers/irqchip/irq-ti-sci-intr.c
17537 F:      drivers/reset/reset-ti-sci.c
17538 F:      drivers/soc/ti/ti_sci_inta_msi.c
17539 F:      drivers/soc/ti/ti_sci_pm_domains.c
17540 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17541 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17542 F:      include/linux/soc/ti/ti_sci_protocol.h
17543
17544 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17545 M:      Hans Verkuil <hverkuil@xs4all.nl>
17546 L:      linux-media@vger.kernel.org
17547 S:      Maintained
17548 W:      https://linuxtv.org
17549 T:      git git://linuxtv.org/media_tree.git
17550 F:      drivers/media/radio/radio-raremono.c
17551
17552 THERMAL
17553 M:      Zhang Rui <rui.zhang@intel.com>
17554 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17555 R:      Amit Kucheria <amitk@kernel.org>
17556 L:      linux-pm@vger.kernel.org
17557 S:      Supported
17558 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17560 F:      Documentation/devicetree/bindings/thermal/
17561 F:      drivers/thermal/
17562 F:      include/linux/cpu_cooling.h
17563 F:      include/linux/thermal.h
17564 F:      include/uapi/linux/thermal.h
17565
17566 THERMAL DRIVER FOR AMLOGIC SOCS
17567 M:      Guillaume La Roque <glaroque@baylibre.com>
17568 L:      linux-pm@vger.kernel.org
17569 L:      linux-amlogic@lists.infradead.org
17570 S:      Supported
17571 W:      http://linux-meson.com/
17572 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17573 F:      drivers/thermal/amlogic_thermal.c
17574
17575 THERMAL/CPU_COOLING
17576 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17577 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17578 M:      Viresh Kumar <viresh.kumar@linaro.org>
17579 M:      Javi Merino <javi.merino@kernel.org>
17580 L:      linux-pm@vger.kernel.org
17581 S:      Supported
17582 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17583 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17584 F:      drivers/thermal/cpufreq_cooling.c
17585 F:      drivers/thermal/cpuidle_cooling.c
17586 F:      include/linux/cpu_cooling.h
17587
17588 THERMAL/POWER_ALLOCATOR
17589 M:      Lukasz Luba <lukasz.luba@arm.com>
17590 L:      linux-pm@vger.kernel.org
17591 S:      Maintained
17592 F:      Documentation/driver-api/thermal/power_allocator.rst
17593 F:      drivers/thermal/gov_power_allocator.c
17594 F:      include/trace/events/thermal_power_allocator.h
17595
17596 THINKPAD ACPI EXTRAS DRIVER
17597 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
17598 L:      ibm-acpi-devel@lists.sourceforge.net
17599 L:      platform-driver-x86@vger.kernel.org
17600 S:      Maintained
17601 W:      http://ibm-acpi.sourceforge.net
17602 W:      http://thinkwiki.org/wiki/Ibm-acpi
17603 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17604 F:      drivers/platform/x86/thinkpad_acpi.c
17605
17606 THUNDERBOLT DMA TRAFFIC TEST DRIVER
17607 M:      Isaac Hazan <isaac.hazan@intel.com>
17608 L:      linux-usb@vger.kernel.org
17609 S:      Maintained
17610 F:      drivers/thunderbolt/dma_test.c
17611
17612 THUNDERBOLT DRIVER
17613 M:      Andreas Noever <andreas.noever@gmail.com>
17614 M:      Michael Jamet <michael.jamet@intel.com>
17615 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17616 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17617 L:      linux-usb@vger.kernel.org
17618 S:      Maintained
17619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17620 F:      Documentation/admin-guide/thunderbolt.rst
17621 F:      drivers/thunderbolt/
17622 F:      include/linux/thunderbolt.h
17623
17624 THUNDERBOLT NETWORK DRIVER
17625 M:      Michael Jamet <michael.jamet@intel.com>
17626 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17627 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17628 L:      netdev@vger.kernel.org
17629 S:      Maintained
17630 F:      drivers/net/thunderbolt.c
17631
17632 THUNDERX GPIO DRIVER
17633 M:      Robert Richter <rric@kernel.org>
17634 S:      Odd Fixes
17635 F:      drivers/gpio/gpio-thunderx.c
17636
17637 TI AM437X VPFE DRIVER
17638 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17639 L:      linux-media@vger.kernel.org
17640 S:      Maintained
17641 W:      https://linuxtv.org
17642 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17643 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17644 F:      drivers/media/platform/am437x/
17645
17646 TI BANDGAP AND THERMAL DRIVER
17647 M:      Eduardo Valentin <edubezval@gmail.com>
17648 M:      Keerthy <j-keerthy@ti.com>
17649 L:      linux-pm@vger.kernel.org
17650 L:      linux-omap@vger.kernel.org
17651 S:      Maintained
17652 F:      drivers/thermal/ti-soc-thermal/
17653
17654 TI BQ27XXX POWER SUPPLY DRIVER
17655 R:      Dan Murphy <dmurphy@ti.com>
17656 F:      drivers/power/supply/bq27xxx_battery.c
17657 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17658 F:      include/linux/power/bq27xxx_battery.h
17659
17660 TI CDCE706 CLOCK DRIVER
17661 M:      Max Filippov <jcmvbkbc@gmail.com>
17662 S:      Maintained
17663 F:      drivers/clk/clk-cdce706.c
17664
17665 TI CLOCK DRIVER
17666 M:      Tero Kristo <kristo@kernel.org>
17667 L:      linux-omap@vger.kernel.org
17668 S:      Odd Fixes
17669 F:      drivers/clk/ti/
17670 F:      include/linux/clk/ti.h
17671
17672 TI DAVINCI MACHINE SUPPORT
17673 M:      Sekhar Nori <nsekhar@ti.com>
17674 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17676 S:      Supported
17677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17678 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17679 F:      arch/arm/boot/dts/da850*
17680 F:      arch/arm/mach-davinci/
17681 F:      drivers/i2c/busses/i2c-davinci.c
17682
17683 TI DAVINCI SERIES CLOCK DRIVER
17684 M:      David Lechner <david@lechnology.com>
17685 R:      Sekhar Nori <nsekhar@ti.com>
17686 S:      Maintained
17687 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17688 F:      drivers/clk/davinci/
17689
17690 TI DAVINCI SERIES GPIO DRIVER
17691 M:      Keerthy <j-keerthy@ti.com>
17692 L:      linux-gpio@vger.kernel.org
17693 S:      Maintained
17694 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17695 F:      drivers/gpio/gpio-davinci.c
17696
17697 TI DAVINCI SERIES MEDIA DRIVER
17698 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17699 L:      linux-media@vger.kernel.org
17700 S:      Maintained
17701 W:      https://linuxtv.org
17702 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17703 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17704 F:      drivers/media/platform/davinci/
17705 F:      include/media/davinci/
17706
17707 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17708 R:      David Lechner <david@lechnology.com>
17709 L:      linux-iio@vger.kernel.org
17710 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17711 F:      drivers/counter/ti-eqep.c
17712
17713 TI ETHERNET SWITCH DRIVER (CPSW)
17714 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17715 L:      linux-omap@vger.kernel.org
17716 L:      netdev@vger.kernel.org
17717 S:      Maintained
17718 F:      drivers/net/ethernet/ti/cpsw*
17719 F:      drivers/net/ethernet/ti/davinci*
17720
17721 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17722 M:      Alex Dubov <oakad@yahoo.com>
17723 S:      Maintained
17724 W:      http://tifmxx.berlios.de/
17725 F:      drivers/memstick/host/tifm_ms.c
17726 F:      drivers/misc/tifm*
17727 F:      drivers/mmc/host/tifm_sd.c
17728 F:      include/linux/tifm.h
17729
17730 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17731 M:      Santosh Shilimkar <ssantosh@kernel.org>
17732 L:      linux-kernel@vger.kernel.org
17733 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17734 S:      Maintained
17735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17736 F:      drivers/soc/ti/*
17737
17738 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17739 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17740 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17741 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17742 S:      Maintained
17743 F:      sound/soc/codecs/isabelle*
17744 F:      sound/soc/codecs/lm49453*
17745
17746 TI LP855x BACKLIGHT DRIVER
17747 M:      Milo Kim <milo.kim@ti.com>
17748 S:      Maintained
17749 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17750 F:      drivers/video/backlight/lp855x_bl.c
17751 F:      include/linux/platform_data/lp855x.h
17752
17753 TI LP8727 CHARGER DRIVER
17754 M:      Milo Kim <milo.kim@ti.com>
17755 S:      Maintained
17756 F:      drivers/power/supply/lp8727_charger.c
17757 F:      include/linux/platform_data/lp8727.h
17758
17759 TI LP8788 MFD DRIVER
17760 M:      Milo Kim <milo.kim@ti.com>
17761 S:      Maintained
17762 F:      drivers/iio/adc/lp8788_adc.c
17763 F:      drivers/leds/leds-lp8788.c
17764 F:      drivers/mfd/lp8788*.c
17765 F:      drivers/power/supply/lp8788-charger.c
17766 F:      drivers/regulator/lp8788-*.c
17767 F:      include/linux/mfd/lp8788*.h
17768
17769 TI NETCP ETHERNET DRIVER
17770 M:      Wingman Kwok <w-kwok2@ti.com>
17771 M:      Murali Karicheri <m-karicheri2@ti.com>
17772 L:      netdev@vger.kernel.org
17773 S:      Maintained
17774 F:      drivers/net/ethernet/ti/netcp*
17775
17776 TI PCM3060 ASoC CODEC DRIVER
17777 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17778 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17779 S:      Maintained
17780 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17781 F:      sound/soc/codecs/pcm3060*
17782
17783 TI TAS571X FAMILY ASoC CODEC DRIVER
17784 M:      Kevin Cernekee <cernekee@chromium.org>
17785 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17786 S:      Odd Fixes
17787 F:      sound/soc/codecs/tas571x*
17788
17789 TI TCAN4X5X DEVICE DRIVER
17790 M:      Dan Murphy <dmurphy@ti.com>
17791 L:      linux-can@vger.kernel.org
17792 S:      Maintained
17793 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17794 F:      drivers/net/can/m_can/tcan4x5x*
17795
17796 TI TRF7970A NFC DRIVER
17797 M:      Mark Greer <mgreer@animalcreek.com>
17798 L:      linux-wireless@vger.kernel.org
17799 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17800 S:      Supported
17801 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17802 F:      drivers/nfc/trf7970a.c
17803
17804 TI TWL4030 SERIES SOC CODEC DRIVER
17805 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17806 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17807 S:      Maintained
17808 F:      sound/soc/codecs/twl4030*
17809
17810 TI VPE/CAL DRIVERS
17811 M:      Benoit Parrot <bparrot@ti.com>
17812 L:      linux-media@vger.kernel.org
17813 S:      Maintained
17814 W:      http://linuxtv.org/
17815 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17816 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17817 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17818 F:      drivers/media/platform/ti-vpe/
17819
17820 TI WILINK WIRELESS DRIVERS
17821 L:      linux-wireless@vger.kernel.org
17822 S:      Orphan
17823 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17824 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17826 F:      drivers/net/wireless/ti/
17827 F:      include/linux/wl12xx.h
17828
17829 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17830 M:      John Stultz <john.stultz@linaro.org>
17831 M:      Thomas Gleixner <tglx@linutronix.de>
17832 R:      Stephen Boyd <sboyd@kernel.org>
17833 L:      linux-kernel@vger.kernel.org
17834 S:      Supported
17835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17836 F:      include/linux/clocksource.h
17837 F:      include/linux/time.h
17838 F:      include/linux/timex.h
17839 F:      include/uapi/linux/time.h
17840 F:      include/uapi/linux/timex.h
17841 F:      kernel/time/alarmtimer.c
17842 F:      kernel/time/clocksource.c
17843 F:      kernel/time/ntp.c
17844 F:      kernel/time/time*.c
17845 F:      tools/testing/selftests/timers/
17846
17847 TIPC NETWORK LAYER
17848 M:      Jon Maloy <jmaloy@redhat.com>
17849 M:      Ying Xue <ying.xue@windriver.com>
17850 L:      netdev@vger.kernel.org (core kernel code)
17851 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17852 S:      Maintained
17853 W:      http://tipc.sourceforge.net/
17854 F:      include/uapi/linux/tipc*.h
17855 F:      net/tipc/
17856
17857 TLAN NETWORK DRIVER
17858 M:      Samuel Chessman <chessman@tux.org>
17859 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17860 S:      Maintained
17861 W:      http://sourceforge.net/projects/tlan/
17862 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17863 F:      drivers/net/ethernet/ti/tlan.*
17864
17865 TM6000 VIDEO4LINUX DRIVER
17866 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17867 L:      linux-media@vger.kernel.org
17868 S:      Odd fixes
17869 W:      https://linuxtv.org
17870 T:      git git://linuxtv.org/media_tree.git
17871 F:      Documentation/admin-guide/media/tm6000*
17872 F:      drivers/media/usb/tm6000/
17873
17874 TMIO/SDHI MMC DRIVER
17875 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17876 L:      linux-mmc@vger.kernel.org
17877 S:      Supported
17878 F:      drivers/mmc/host/renesas_sdhi*
17879 F:      drivers/mmc/host/tmio_mmc*
17880 F:      include/linux/mfd/tmio.h
17881
17882 TMP401 HARDWARE MONITOR DRIVER
17883 M:      Guenter Roeck <linux@roeck-us.net>
17884 L:      linux-hwmon@vger.kernel.org
17885 S:      Maintained
17886 F:      Documentation/hwmon/tmp401.rst
17887 F:      drivers/hwmon/tmp401.c
17888
17889 TMP513 HARDWARE MONITOR DRIVER
17890 M:      Eric Tremblay <etremblay@distech-controls.com>
17891 L:      linux-hwmon@vger.kernel.org
17892 S:      Maintained
17893 F:      Documentation/hwmon/tmp513.rst
17894 F:      drivers/hwmon/tmp513.c
17895
17896 TMPFS (SHMEM FILESYSTEM)
17897 M:      Hugh Dickins <hughd@google.com>
17898 L:      linux-mm@kvack.org
17899 S:      Maintained
17900 F:      include/linux/shmem_fs.h
17901 F:      mm/shmem.c
17902
17903 TOMOYO SECURITY MODULE
17904 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17905 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17906 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17907 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17908 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17909 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17910 S:      Maintained
17911 W:      https://tomoyo.osdn.jp/
17912 F:      security/tomoyo/
17913
17914 TOPSTAR LAPTOP EXTRAS DRIVER
17915 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17916 L:      platform-driver-x86@vger.kernel.org
17917 S:      Maintained
17918 F:      drivers/platform/x86/topstar-laptop.c
17919
17920 TORTURE-TEST MODULES
17921 M:      Davidlohr Bueso <dave@stgolabs.net>
17922 M:      "Paul E. McKenney" <paulmck@kernel.org>
17923 M:      Josh Triplett <josh@joshtriplett.org>
17924 L:      linux-kernel@vger.kernel.org
17925 S:      Supported
17926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17927 F:      Documentation/RCU/torture.rst
17928 F:      kernel/locking/locktorture.c
17929 F:      kernel/rcu/rcuscale.c
17930 F:      kernel/rcu/rcutorture.c
17931 F:      kernel/rcu/refscale.c
17932 F:      kernel/torture.c
17933
17934 TOSHIBA ACPI EXTRAS DRIVER
17935 M:      Azael Avalos <coproscefalo@gmail.com>
17936 L:      platform-driver-x86@vger.kernel.org
17937 S:      Maintained
17938 F:      drivers/platform/x86/toshiba_acpi.c
17939
17940 TOSHIBA BLUETOOTH DRIVER
17941 M:      Azael Avalos <coproscefalo@gmail.com>
17942 L:      platform-driver-x86@vger.kernel.org
17943 S:      Maintained
17944 F:      drivers/platform/x86/toshiba_bluetooth.c
17945
17946 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17947 M:      Azael Avalos <coproscefalo@gmail.com>
17948 L:      platform-driver-x86@vger.kernel.org
17949 S:      Maintained
17950 F:      drivers/platform/x86/toshiba_haps.c
17951
17952 TOSHIBA SMM DRIVER
17953 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17954 S:      Maintained
17955 W:      http://www.buzzard.org.uk/toshiba/
17956 F:      drivers/char/toshiba.c
17957 F:      include/linux/toshiba.h
17958 F:      include/uapi/linux/toshiba.h
17959
17960 TOSHIBA TC358743 DRIVER
17961 M:      Mats Randgaard <matrandg@cisco.com>
17962 L:      linux-media@vger.kernel.org
17963 S:      Maintained
17964 F:      drivers/media/i2c/tc358743*
17965 F:      include/media/i2c/tc358743.h
17966
17967 TOSHIBA WMI HOTKEYS DRIVER
17968 M:      Azael Avalos <coproscefalo@gmail.com>
17969 L:      platform-driver-x86@vger.kernel.org
17970 S:      Maintained
17971 F:      drivers/platform/x86/toshiba-wmi.c
17972
17973 TPM DEVICE DRIVER
17974 M:      Peter Huewe <peterhuewe@gmx.de>
17975 M:      Jarkko Sakkinen <jarkko@kernel.org>
17976 R:      Jason Gunthorpe <jgg@ziepe.ca>
17977 L:      linux-integrity@vger.kernel.org
17978 S:      Maintained
17979 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17980 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
17982 F:      drivers/char/tpm/
17983
17984 TRACING
17985 M:      Steven Rostedt <rostedt@goodmis.org>
17986 M:      Ingo Molnar <mingo@redhat.com>
17987 S:      Maintained
17988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17989 F:      Documentation/trace/ftrace.rst
17990 F:      arch/*/*/*/ftrace.h
17991 F:      arch/*/kernel/ftrace.c
17992 F:      fs/tracefs/
17993 F:      include/*/ftrace.h
17994 F:      include/linux/trace*.h
17995 F:      include/trace/
17996 F:      kernel/trace/
17997 F:      tools/testing/selftests/ftrace/
17998
17999 TRACING MMIO ACCESSES (MMIOTRACE)
18000 M:      Steven Rostedt <rostedt@goodmis.org>
18001 M:      Ingo Molnar <mingo@kernel.org>
18002 R:      Karol Herbst <karolherbst@gmail.com>
18003 R:      Pekka Paalanen <ppaalanen@gmail.com>
18004 L:      linux-kernel@vger.kernel.org
18005 L:      nouveau@lists.freedesktop.org
18006 S:      Maintained
18007 F:      arch/x86/mm/kmmio.c
18008 F:      arch/x86/mm/mmio-mod.c
18009 F:      arch/x86/mm/testmmiotrace.c
18010 F:      include/linux/mmiotrace.h
18011 F:      kernel/trace/trace_mmiotrace.c
18012
18013 TRIVIAL PATCHES
18014 M:      Jiri Kosina <trivial@kernel.org>
18015 S:      Maintained
18016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18017 K:      ^Subject:.*(?i)trivial
18018
18019 TTY LAYER
18020 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18021 M:      Jiri Slaby <jirislaby@kernel.org>
18022 S:      Supported
18023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18024 F:      Documentation/driver-api/serial/
18025 F:      drivers/tty/
18026 F:      drivers/tty/serial/serial_core.c
18027 F:      include/linux/serial.h
18028 F:      include/linux/serial_core.h
18029 F:      include/linux/tty.h
18030 F:      include/uapi/linux/serial.h
18031 F:      include/uapi/linux/serial_core.h
18032 F:      include/uapi/linux/tty.h
18033
18034 TUA9001 MEDIA DRIVER
18035 M:      Antti Palosaari <crope@iki.fi>
18036 L:      linux-media@vger.kernel.org
18037 S:      Maintained
18038 W:      https://linuxtv.org
18039 W:      http://palosaari.fi/linux/
18040 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18041 T:      git git://linuxtv.org/anttip/media_tree.git
18042 F:      drivers/media/tuners/tua9001*
18043
18044 TULIP NETWORK DRIVERS
18045 L:      netdev@vger.kernel.org
18046 L:      linux-parisc@vger.kernel.org
18047 S:      Orphan
18048 F:      drivers/net/ethernet/dec/tulip/
18049
18050 TUN/TAP driver
18051 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18052 S:      Maintained
18053 W:      http://vtun.sourceforge.net/tun
18054 F:      Documentation/networking/tuntap.rst
18055 F:      arch/um/os-Linux/drivers/
18056
18057 TURBOCHANNEL SUBSYSTEM
18058 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18059 M:      Ralf Baechle <ralf@linux-mips.org>
18060 L:      linux-mips@vger.kernel.org
18061 S:      Maintained
18062 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18063 F:      drivers/tc/
18064 F:      include/linux/tc.h
18065
18066 TURBOSTAT UTILITY
18067 M:      "Len Brown" <lenb@kernel.org>
18068 L:      linux-pm@vger.kernel.org
18069 S:      Supported
18070 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18071 B:      https://bugzilla.kernel.org
18072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18073 F:      tools/power/x86/turbostat/
18074
18075 TW5864 VIDEO4LINUX DRIVER
18076 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18077 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18078 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18079 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18080 L:      linux-media@vger.kernel.org
18081 S:      Supported
18082 F:      drivers/media/pci/tw5864/
18083
18084 TW68 VIDEO4LINUX DRIVER
18085 M:      Hans Verkuil <hverkuil@xs4all.nl>
18086 L:      linux-media@vger.kernel.org
18087 S:      Odd Fixes
18088 W:      https://linuxtv.org
18089 T:      git git://linuxtv.org/media_tree.git
18090 F:      drivers/media/pci/tw68/
18091
18092 TW686X VIDEO4LINUX DRIVER
18093 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18094 L:      linux-media@vger.kernel.org
18095 S:      Maintained
18096 W:      http://linuxtv.org
18097 T:      git git://linuxtv.org/media_tree.git
18098 F:      drivers/media/pci/tw686x/
18099
18100 UACCE ACCELERATOR FRAMEWORK
18101 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18102 M:      Zhou Wang <wangzhou1@hisilicon.com>
18103 L:      linux-accelerators@lists.ozlabs.org
18104 L:      linux-kernel@vger.kernel.org
18105 S:      Maintained
18106 F:      Documentation/ABI/testing/sysfs-driver-uacce
18107 F:      Documentation/misc-devices/uacce.rst
18108 F:      drivers/misc/uacce/
18109 F:      include/linux/uacce.h
18110 F:      include/uapi/misc/uacce/
18111
18112 UBI FILE SYSTEM (UBIFS)
18113 M:      Richard Weinberger <richard@nod.at>
18114 L:      linux-mtd@lists.infradead.org
18115 S:      Supported
18116 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18119 F:      Documentation/filesystems/ubifs-authentication.rst
18120 F:      Documentation/filesystems/ubifs.rst
18121 F:      fs/ubifs/
18122
18123 UCLINUX (M68KNOMMU AND COLDFIRE)
18124 M:      Greg Ungerer <gerg@linux-m68k.org>
18125 L:      linux-m68k@lists.linux-m68k.org
18126 L:      uclinux-dev@uclinux.org  (subscribers-only)
18127 S:      Maintained
18128 W:      http://www.linux-m68k.org/
18129 W:      http://www.uclinux.org/
18130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18131 F:      arch/m68k/*/*_no.*
18132 F:      arch/m68k/68*/
18133 F:      arch/m68k/coldfire/
18134 F:      arch/m68k/include/asm/*_no.*
18135
18136 UDF FILESYSTEM
18137 M:      Jan Kara <jack@suse.com>
18138 S:      Maintained
18139 F:      Documentation/filesystems/udf.rst
18140 F:      fs/udf/
18141
18142 UDRAW TABLET
18143 M:      Bastien Nocera <hadess@hadess.net>
18144 L:      linux-input@vger.kernel.org
18145 S:      Maintained
18146 F:      drivers/hid/hid-udraw-ps3.c
18147
18148 UFS FILESYSTEM
18149 M:      Evgeniy Dushistov <dushistov@mail.ru>
18150 S:      Maintained
18151 F:      Documentation/admin-guide/ufs.rst
18152 F:      fs/ufs/
18153
18154 UHID USERSPACE HID IO DRIVER
18155 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18156 L:      linux-input@vger.kernel.org
18157 S:      Maintained
18158 F:      drivers/hid/uhid.c
18159 F:      include/uapi/linux/uhid.h
18160
18161 ULPI BUS
18162 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18163 L:      linux-usb@vger.kernel.org
18164 S:      Maintained
18165 F:      drivers/usb/common/ulpi.c
18166 F:      include/linux/ulpi/
18167
18168 UNICODE SUBSYSTEM
18169 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18170 L:      linux-fsdevel@vger.kernel.org
18171 S:      Supported
18172 F:      fs/unicode/
18173
18174 UNIFDEF
18175 M:      Tony Finch <dot@dotat.at>
18176 S:      Maintained
18177 W:      http://dotat.at/prog/unifdef
18178 F:      scripts/unifdef.c
18179
18180 UNIFORM CDROM DRIVER
18181 M:      Jens Axboe <axboe@kernel.dk>
18182 S:      Maintained
18183 W:      http://www.kernel.dk
18184 F:      Documentation/cdrom/
18185 F:      drivers/cdrom/cdrom.c
18186 F:      include/linux/cdrom.h
18187 F:      include/uapi/linux/cdrom.h
18188
18189 UNISYS S-PAR DRIVERS
18190 M:      David Kershner <david.kershner@unisys.com>
18191 L:      sparmaintainer@unisys.com (Unisys internal)
18192 S:      Supported
18193 F:      drivers/staging/unisys/
18194 F:      drivers/visorbus/
18195 F:      include/linux/visorbus.h
18196
18197 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18198 R:      Alim Akhtar <alim.akhtar@samsung.com>
18199 R:      Avri Altman <avri.altman@wdc.com>
18200 L:      linux-scsi@vger.kernel.org
18201 S:      Supported
18202 F:      Documentation/scsi/ufs.rst
18203 F:      drivers/scsi/ufs/
18204
18205 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18206 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18207 L:      linux-scsi@vger.kernel.org
18208 S:      Supported
18209 F:      drivers/scsi/ufs/*dwc*
18210
18211 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18212 M:      Stanley Chu <stanley.chu@mediatek.com>
18213 L:      linux-scsi@vger.kernel.org
18214 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18215 S:      Maintained
18216 F:      drivers/scsi/ufs/ufs-mediatek*
18217
18218 UNSORTED BLOCK IMAGES (UBI)
18219 M:      Richard Weinberger <richard@nod.at>
18220 L:      linux-mtd@lists.infradead.org
18221 S:      Supported
18222 W:      http://www.linux-mtd.infradead.org/
18223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18225 F:      drivers/mtd/ubi/
18226 F:      include/linux/mtd/ubi.h
18227 F:      include/uapi/mtd/ubi-user.h
18228
18229 USB "USBNET" DRIVER FRAMEWORK
18230 M:      Oliver Neukum <oneukum@suse.com>
18231 L:      netdev@vger.kernel.org
18232 S:      Maintained
18233 W:      http://www.linux-usb.org/usbnet
18234 F:      drivers/net/usb/usbnet.c
18235 F:      include/linux/usb/usbnet.h
18236
18237 USB ACM DRIVER
18238 M:      Oliver Neukum <oneukum@suse.com>
18239 L:      linux-usb@vger.kernel.org
18240 S:      Maintained
18241 F:      Documentation/usb/acm.rst
18242 F:      drivers/usb/class/cdc-acm.*
18243
18244 USB APPLE MFI FASTCHARGE DRIVER
18245 M:      Bastien Nocera <hadess@hadess.net>
18246 L:      linux-usb@vger.kernel.org
18247 S:      Maintained
18248 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18249
18250 USB AR5523 WIRELESS DRIVER
18251 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18252 L:      linux-wireless@vger.kernel.org
18253 S:      Maintained
18254 F:      drivers/net/wireless/ath/ar5523/
18255
18256 USB ATTACHED SCSI
18257 M:      Oliver Neukum <oneukum@suse.com>
18258 L:      linux-usb@vger.kernel.org
18259 L:      linux-scsi@vger.kernel.org
18260 S:      Maintained
18261 F:      drivers/usb/storage/uas.c
18262
18263 USB CDC ETHERNET DRIVER
18264 M:      Oliver Neukum <oliver@neukum.org>
18265 L:      linux-usb@vger.kernel.org
18266 S:      Maintained
18267 F:      drivers/net/usb/cdc_*.c
18268 F:      include/uapi/linux/usb/cdc.h
18269
18270 USB CHAOSKEY DRIVER
18271 M:      Keith Packard <keithp@keithp.com>
18272 L:      linux-usb@vger.kernel.org
18273 S:      Maintained
18274 F:      drivers/usb/misc/chaoskey.c
18275
18276 USB CYPRESS C67X00 DRIVER
18277 M:      Peter Korsgaard <jacmet@sunsite.dk>
18278 L:      linux-usb@vger.kernel.org
18279 S:      Maintained
18280 F:      drivers/usb/c67x00/
18281
18282 USB DAVICOM DM9601 DRIVER
18283 M:      Peter Korsgaard <jacmet@sunsite.dk>
18284 L:      netdev@vger.kernel.org
18285 S:      Maintained
18286 W:      http://www.linux-usb.org/usbnet
18287 F:      drivers/net/usb/dm9601.c
18288
18289 USB EHCI DRIVER
18290 M:      Alan Stern <stern@rowland.harvard.edu>
18291 L:      linux-usb@vger.kernel.org
18292 S:      Maintained
18293 F:      Documentation/usb/ehci.rst
18294 F:      drivers/usb/host/ehci*
18295
18296 USB GADGET/PERIPHERAL SUBSYSTEM
18297 M:      Felipe Balbi <balbi@kernel.org>
18298 L:      linux-usb@vger.kernel.org
18299 S:      Maintained
18300 W:      http://www.linux-usb.org/gadget
18301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18302 F:      drivers/usb/gadget/
18303 F:      include/linux/usb/gadget*
18304
18305 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18306 M:      Jiri Kosina <jikos@kernel.org>
18307 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18308 L:      linux-usb@vger.kernel.org
18309 S:      Maintained
18310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18311 F:      Documentation/hid/hiddev.rst
18312 F:      drivers/hid/usbhid/
18313
18314 USB INTEL XHCI ROLE MUX DRIVER
18315 M:      Hans de Goede <hdegoede@redhat.com>
18316 L:      linux-usb@vger.kernel.org
18317 S:      Maintained
18318 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18319
18320 USB IP DRIVER FOR HISILICON KIRIN
18321 M:      Yu Chen <chenyu56@huawei.com>
18322 M:      Binghui Wang <wangbinghui@hisilicon.com>
18323 L:      linux-usb@vger.kernel.org
18324 S:      Maintained
18325 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18326 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18327
18328 USB ISP116X DRIVER
18329 M:      Olav Kongas <ok@artecdesign.ee>
18330 L:      linux-usb@vger.kernel.org
18331 S:      Maintained
18332 F:      drivers/usb/host/isp116x*
18333 F:      include/linux/usb/isp116x.h
18334
18335 USB LAN78XX ETHERNET DRIVER
18336 M:      Woojung Huh <woojung.huh@microchip.com>
18337 M:      UNGLinuxDriver@microchip.com
18338 L:      netdev@vger.kernel.org
18339 S:      Maintained
18340 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18341 F:      drivers/net/usb/lan78xx.*
18342 F:      include/dt-bindings/net/microchip-lan78xx.h
18343
18344 USB MASS STORAGE DRIVER
18345 M:      Alan Stern <stern@rowland.harvard.edu>
18346 L:      linux-usb@vger.kernel.org
18347 L:      usb-storage@lists.one-eyed-alien.net
18348 S:      Maintained
18349 F:      drivers/usb/storage/
18350
18351 USB MIDI DRIVER
18352 M:      Clemens Ladisch <clemens@ladisch.de>
18353 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18354 S:      Maintained
18355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18356 F:      sound/usb/midi.*
18357
18358 USB NETWORKING DRIVERS
18359 L:      linux-usb@vger.kernel.org
18360 S:      Odd Fixes
18361 F:      drivers/net/usb/
18362
18363 USB OHCI DRIVER
18364 M:      Alan Stern <stern@rowland.harvard.edu>
18365 L:      linux-usb@vger.kernel.org
18366 S:      Maintained
18367 F:      Documentation/usb/ohci.rst
18368 F:      drivers/usb/host/ohci*
18369
18370 USB OTG FSM (Finite State Machine)
18371 M:      Peter Chen <peter.chen@kernel.org>
18372 L:      linux-usb@vger.kernel.org
18373 S:      Maintained
18374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18375 F:      drivers/usb/common/usb-otg-fsm.c
18376
18377 USB OVER IP DRIVER
18378 M:      Valentina Manea <valentina.manea.m@gmail.com>
18379 M:      Shuah Khan <shuah@kernel.org>
18380 M:      Shuah Khan <skhan@linuxfoundation.org>
18381 L:      linux-usb@vger.kernel.org
18382 S:      Maintained
18383 F:      Documentation/usb/usbip_protocol.rst
18384 F:      drivers/usb/usbip/
18385 F:      tools/testing/selftests/drivers/usb/usbip/
18386 F:      tools/usb/usbip/
18387
18388 USB PEGASUS DRIVER
18389 M:      Petko Manolov <petkan@nucleusys.com>
18390 L:      linux-usb@vger.kernel.org
18391 L:      netdev@vger.kernel.org
18392 S:      Maintained
18393 W:      https://github.com/petkan/pegasus
18394 T:      git git://github.com/petkan/pegasus.git
18395 F:      drivers/net/usb/pegasus.*
18396
18397 USB PHY LAYER
18398 M:      Felipe Balbi <balbi@kernel.org>
18399 L:      linux-usb@vger.kernel.org
18400 S:      Maintained
18401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18402 F:      drivers/usb/phy/
18403
18404 USB PRINTER DRIVER (usblp)
18405 M:      Pete Zaitcev <zaitcev@redhat.com>
18406 L:      linux-usb@vger.kernel.org
18407 S:      Supported
18408 F:      drivers/usb/class/usblp.c
18409
18410 USB RAW GADGET DRIVER
18411 R:      Andrey Konovalov <andreyknvl@gmail.com>
18412 L:      linux-usb@vger.kernel.org
18413 S:      Maintained
18414 F:      Documentation/usb/raw-gadget.rst
18415 F:      drivers/usb/gadget/legacy/raw_gadget.c
18416 F:      include/uapi/linux/usb/raw_gadget.h
18417
18418 USB QMI WWAN NETWORK DRIVER
18419 M:      Bjørn Mork <bjorn@mork.no>
18420 L:      netdev@vger.kernel.org
18421 S:      Maintained
18422 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18423 F:      drivers/net/usb/qmi_wwan.c
18424
18425 USB RTL8150 DRIVER
18426 M:      Petko Manolov <petkan@nucleusys.com>
18427 L:      linux-usb@vger.kernel.org
18428 L:      netdev@vger.kernel.org
18429 S:      Maintained
18430 W:      https://github.com/petkan/rtl8150
18431 T:      git git://github.com/petkan/rtl8150.git
18432 F:      drivers/net/usb/rtl8150.c
18433
18434 USB SERIAL SUBSYSTEM
18435 M:      Johan Hovold <johan@kernel.org>
18436 L:      linux-usb@vger.kernel.org
18437 S:      Maintained
18438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18439 F:      Documentation/usb/usb-serial.rst
18440 F:      drivers/usb/serial/
18441 F:      include/linux/usb/serial.h
18442
18443 USB SMSC75XX ETHERNET DRIVER
18444 M:      Steve Glendinning <steve.glendinning@shawell.net>
18445 L:      netdev@vger.kernel.org
18446 S:      Maintained
18447 F:      drivers/net/usb/smsc75xx.*
18448
18449 USB SMSC95XX ETHERNET DRIVER
18450 M:      Steve Glendinning <steve.glendinning@shawell.net>
18451 M:      UNGLinuxDriver@microchip.com
18452 L:      netdev@vger.kernel.org
18453 S:      Maintained
18454 F:      drivers/net/usb/smsc95xx.*
18455
18456 USB SUBSYSTEM
18457 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18458 L:      linux-usb@vger.kernel.org
18459 S:      Supported
18460 W:      http://www.linux-usb.org
18461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18462 F:      Documentation/devicetree/bindings/usb/
18463 F:      Documentation/usb/
18464 F:      drivers/usb/
18465 F:      include/linux/usb.h
18466 F:      include/linux/usb/
18467
18468 USB TYPEC BUS FOR ALTERNATE MODES
18469 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18470 L:      linux-usb@vger.kernel.org
18471 S:      Maintained
18472 F:      Documentation/ABI/testing/sysfs-bus-typec
18473 F:      Documentation/driver-api/usb/typec_bus.rst
18474 F:      drivers/usb/typec/altmodes/
18475 F:      include/linux/usb/typec_altmode.h
18476
18477 USB TYPEC CLASS
18478 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18479 L:      linux-usb@vger.kernel.org
18480 S:      Maintained
18481 F:      Documentation/ABI/testing/sysfs-class-typec
18482 F:      Documentation/driver-api/usb/typec.rst
18483 F:      drivers/usb/typec/
18484 F:      include/linux/usb/typec.h
18485
18486 USB TYPEC INTEL PMC MUX DRIVER
18487 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18488 L:      linux-usb@vger.kernel.org
18489 S:      Maintained
18490 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18491 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18492
18493 USB TYPEC PI3USB30532 MUX DRIVER
18494 M:      Hans de Goede <hdegoede@redhat.com>
18495 L:      linux-usb@vger.kernel.org
18496 S:      Maintained
18497 F:      drivers/usb/typec/mux/pi3usb30532.c
18498
18499 USB TYPEC PORT CONTROLLER DRIVERS
18500 M:      Guenter Roeck <linux@roeck-us.net>
18501 L:      linux-usb@vger.kernel.org
18502 S:      Maintained
18503 F:      drivers/usb/typec/tcpm/
18504
18505 USB UHCI DRIVER
18506 M:      Alan Stern <stern@rowland.harvard.edu>
18507 L:      linux-usb@vger.kernel.org
18508 S:      Maintained
18509 F:      drivers/usb/host/uhci*
18510
18511 USB VIDEO CLASS
18512 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18513 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18514 L:      linux-media@vger.kernel.org
18515 S:      Maintained
18516 W:      http://www.ideasonboard.org/uvc/
18517 T:      git git://linuxtv.org/media_tree.git
18518 F:      drivers/media/usb/uvc/
18519 F:      include/uapi/linux/uvcvideo.h
18520
18521 USB WEBCAM GADGET
18522 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18523 L:      linux-usb@vger.kernel.org
18524 S:      Maintained
18525 F:      drivers/usb/gadget/function/*uvc*
18526 F:      drivers/usb/gadget/legacy/webcam.c
18527 F:      include/uapi/linux/usb/g_uvc.h
18528
18529 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18530 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18531 L:      linux-wireless@vger.kernel.org
18532 S:      Maintained
18533 F:      drivers/net/wireless/rndis_wlan.c
18534
18535 USB XHCI DRIVER
18536 M:      Mathias Nyman <mathias.nyman@intel.com>
18537 L:      linux-usb@vger.kernel.org
18538 S:      Supported
18539 F:      drivers/usb/host/pci-quirks*
18540 F:      drivers/usb/host/xhci*
18541
18542 USB ZD1201 DRIVER
18543 L:      linux-wireless@vger.kernel.org
18544 S:      Orphan
18545 W:      http://linux-lc100020.sourceforge.net
18546 F:      drivers/net/wireless/zydas/zd1201.*
18547
18548 USB ZR364XX DRIVER
18549 M:      Antoine Jacquet <royale@zerezo.com>
18550 L:      linux-usb@vger.kernel.org
18551 L:      linux-media@vger.kernel.org
18552 S:      Maintained
18553 W:      http://royale.zerezo.com/zr364xx/
18554 T:      git git://linuxtv.org/media_tree.git
18555 F:      Documentation/admin-guide/media/zr364xx*
18556 F:      drivers/media/usb/zr364xx/
18557
18558 USER-MODE LINUX (UML)
18559 M:      Jeff Dike <jdike@addtoit.com>
18560 M:      Richard Weinberger <richard@nod.at>
18561 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18562 L:      linux-um@lists.infradead.org
18563 S:      Maintained
18564 W:      http://user-mode-linux.sourceforge.net
18565 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18567 F:      Documentation/virt/uml/
18568 F:      arch/um/
18569 F:      arch/x86/um/
18570 F:      fs/hostfs/
18571
18572 USERSPACE COPYIN/COPYOUT (UIOVEC)
18573 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18574 S:      Maintained
18575 F:      include/linux/uio.h
18576 F:      lib/iov_iter.c
18577
18578 USERSPACE DMA BUFFER DRIVER
18579 M:      Gerd Hoffmann <kraxel@redhat.com>
18580 L:      dri-devel@lists.freedesktop.org
18581 S:      Maintained
18582 T:      git git://anongit.freedesktop.org/drm/drm-misc
18583 F:      drivers/dma-buf/udmabuf.c
18584 F:      include/uapi/linux/udmabuf.h
18585
18586 USERSPACE I/O (UIO)
18587 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18588 S:      Maintained
18589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18590 F:      Documentation/driver-api/uio-howto.rst
18591 F:      drivers/uio/
18592 F:      include/linux/uio_driver.h
18593
18594 UTIL-LINUX PACKAGE
18595 M:      Karel Zak <kzak@redhat.com>
18596 L:      util-linux@vger.kernel.org
18597 S:      Maintained
18598 W:      http://en.wikipedia.org/wiki/Util-linux
18599 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18600
18601 UUID HELPERS
18602 M:      Christoph Hellwig <hch@lst.de>
18603 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18604 L:      linux-kernel@vger.kernel.org
18605 S:      Maintained
18606 T:      git git://git.infradead.org/users/hch/uuid.git
18607 F:      include/linux/uuid.h
18608 F:      include/uapi/linux/uuid.h
18609 F:      lib/test_uuid.c
18610 F:      lib/uuid.c
18611
18612 UV SYSFS DRIVER
18613 M:      Justin Ernst <justin.ernst@hpe.com>
18614 L:      platform-driver-x86@vger.kernel.org
18615 S:      Maintained
18616 F:      drivers/platform/x86/uv_sysfs.c
18617
18618 UVESAFB DRIVER
18619 M:      Michal Januszewski <spock@gentoo.org>
18620 L:      linux-fbdev@vger.kernel.org
18621 S:      Maintained
18622 W:      https://github.com/mjanusz/v86d
18623 F:      Documentation/fb/uvesafb.rst
18624 F:      drivers/video/fbdev/uvesafb.*
18625
18626 Ux500 CLOCK DRIVERS
18627 M:      Ulf Hansson <ulf.hansson@linaro.org>
18628 L:      linux-clk@vger.kernel.org
18629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18630 S:      Maintained
18631 F:      drivers/clk/ux500/
18632
18633 VF610 NAND DRIVER
18634 M:      Stefan Agner <stefan@agner.ch>
18635 L:      linux-mtd@lists.infradead.org
18636 S:      Supported
18637 F:      drivers/mtd/nand/raw/vf610_nfc.c
18638
18639 VFAT/FAT/MSDOS FILESYSTEM
18640 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18641 S:      Maintained
18642 F:      Documentation/filesystems/vfat.rst
18643 F:      fs/fat/
18644
18645 VFIO DRIVER
18646 M:      Alex Williamson <alex.williamson@redhat.com>
18647 R:      Cornelia Huck <cohuck@redhat.com>
18648 L:      kvm@vger.kernel.org
18649 S:      Maintained
18650 T:      git git://github.com/awilliam/linux-vfio.git
18651 F:      Documentation/driver-api/vfio.rst
18652 F:      drivers/vfio/
18653 F:      include/linux/vfio.h
18654 F:      include/uapi/linux/vfio.h
18655
18656 VFIO FSL-MC DRIVER
18657 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18658 L:      kvm@vger.kernel.org
18659 S:      Maintained
18660 F:      drivers/vfio/fsl-mc/
18661
18662 VFIO MEDIATED DEVICE DRIVERS
18663 M:      Kirti Wankhede <kwankhede@nvidia.com>
18664 L:      kvm@vger.kernel.org
18665 S:      Maintained
18666 F:      Documentation/driver-api/vfio-mediated-device.rst
18667 F:      drivers/vfio/mdev/
18668 F:      include/linux/mdev.h
18669 F:      samples/vfio-mdev/
18670
18671 VFIO PLATFORM DRIVER
18672 M:      Eric Auger <eric.auger@redhat.com>
18673 L:      kvm@vger.kernel.org
18674 S:      Maintained
18675 F:      drivers/vfio/platform/
18676
18677 VGA_SWITCHEROO
18678 R:      Lukas Wunner <lukas@wunner.de>
18679 S:      Maintained
18680 T:      git git://anongit.freedesktop.org/drm/drm-misc
18681 F:      Documentation/gpu/vga-switcheroo.rst
18682 F:      drivers/gpu/vga/vga_switcheroo.c
18683 F:      include/linux/vga_switcheroo.h
18684
18685 VIA RHINE NETWORK DRIVER
18686 S:      Maintained
18687 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18688 F:      drivers/net/ethernet/via/via-rhine.c
18689
18690 VIA SD/MMC CARD CONTROLLER DRIVER
18691 M:      Bruce Chang <brucechang@via.com.tw>
18692 M:      Harald Welte <HaraldWelte@viatech.com>
18693 S:      Maintained
18694 F:      drivers/mmc/host/via-sdmmc.c
18695
18696 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18697 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18698 L:      linux-fbdev@vger.kernel.org
18699 S:      Maintained
18700 F:      drivers/video/fbdev/via/
18701 F:      include/linux/via-core.h
18702 F:      include/linux/via-gpio.h
18703 F:      include/linux/via_i2c.h
18704
18705 VIA VELOCITY NETWORK DRIVER
18706 M:      Francois Romieu <romieu@fr.zoreil.com>
18707 L:      netdev@vger.kernel.org
18708 S:      Maintained
18709 F:      drivers/net/ethernet/via/via-velocity.*
18710
18711 VICODEC VIRTUAL CODEC DRIVER
18712 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18713 L:      linux-media@vger.kernel.org
18714 S:      Maintained
18715 W:      https://linuxtv.org
18716 T:      git git://linuxtv.org/media_tree.git
18717 F:      drivers/media/test-drivers/vicodec/*
18718
18719 VIDEO I2C POLLING DRIVER
18720 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18721 L:      linux-media@vger.kernel.org
18722 S:      Maintained
18723 F:      drivers/media/i2c/video-i2c.c
18724
18725 VIDEO MULTIPLEXER DRIVER
18726 M:      Philipp Zabel <p.zabel@pengutronix.de>
18727 L:      linux-media@vger.kernel.org
18728 S:      Maintained
18729 F:      drivers/media/platform/video-mux.c
18730
18731 VIDEOBUF2 FRAMEWORK
18732 M:      Tomasz Figa <tfiga@chromium.org>
18733 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18734 L:      linux-media@vger.kernel.org
18735 S:      Maintained
18736 F:      drivers/media/common/videobuf2/*
18737 F:      include/media/videobuf2-*
18738
18739 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18740 M:      Helen Koike <helen.koike@collabora.com>
18741 R:      Shuah Khan <skhan@linuxfoundation.org>
18742 L:      linux-media@vger.kernel.org
18743 S:      Maintained
18744 W:      https://linuxtv.org
18745 T:      git git://linuxtv.org/media_tree.git
18746 F:      drivers/media/test-drivers/vimc/*
18747
18748 VIRT LIB
18749 M:      Alex Williamson <alex.williamson@redhat.com>
18750 M:      Paolo Bonzini <pbonzini@redhat.com>
18751 L:      kvm@vger.kernel.org
18752 S:      Supported
18753 F:      virt/lib/
18754
18755 VIRTIO AND VHOST VSOCK DRIVER
18756 M:      Stefan Hajnoczi <stefanha@redhat.com>
18757 M:      Stefano Garzarella <sgarzare@redhat.com>
18758 L:      kvm@vger.kernel.org
18759 L:      virtualization@lists.linux-foundation.org
18760 L:      netdev@vger.kernel.org
18761 S:      Maintained
18762 F:      drivers/net/vsockmon.c
18763 F:      drivers/vhost/vsock.c
18764 F:      include/linux/virtio_vsock.h
18765 F:      include/uapi/linux/virtio_vsock.h
18766 F:      include/uapi/linux/vm_sockets_diag.h
18767 F:      include/uapi/linux/vsockmon.h
18768 F:      net/vmw_vsock/af_vsock_tap.c
18769 F:      net/vmw_vsock/diag.c
18770 F:      net/vmw_vsock/virtio_transport.c
18771 F:      net/vmw_vsock/virtio_transport_common.c
18772 F:      net/vmw_vsock/vsock_loopback.c
18773 F:      tools/testing/vsock/
18774
18775 VIRTIO BLOCK AND SCSI DRIVERS
18776 M:      "Michael S. Tsirkin" <mst@redhat.com>
18777 M:      Jason Wang <jasowang@redhat.com>
18778 R:      Paolo Bonzini <pbonzini@redhat.com>
18779 R:      Stefan Hajnoczi <stefanha@redhat.com>
18780 L:      virtualization@lists.linux-foundation.org
18781 S:      Maintained
18782 F:      drivers/block/virtio_blk.c
18783 F:      drivers/scsi/virtio_scsi.c
18784 F:      drivers/vhost/scsi.c
18785 F:      include/uapi/linux/virtio_blk.h
18786 F:      include/uapi/linux/virtio_scsi.h
18787
18788 VIRTIO CONSOLE DRIVER
18789 M:      Amit Shah <amit@kernel.org>
18790 L:      virtualization@lists.linux-foundation.org
18791 S:      Maintained
18792 F:      drivers/char/virtio_console.c
18793 F:      include/linux/virtio_console.h
18794 F:      include/uapi/linux/virtio_console.h
18795
18796 VIRTIO CORE AND NET DRIVERS
18797 M:      "Michael S. Tsirkin" <mst@redhat.com>
18798 M:      Jason Wang <jasowang@redhat.com>
18799 L:      virtualization@lists.linux-foundation.org
18800 S:      Maintained
18801 F:      Documentation/devicetree/bindings/virtio/
18802 F:      drivers/block/virtio_blk.c
18803 F:      drivers/crypto/virtio/
18804 F:      drivers/net/virtio_net.c
18805 F:      drivers/vdpa/
18806 F:      drivers/virtio/
18807 F:      include/linux/vdpa.h
18808 F:      include/linux/virtio*.h
18809 F:      include/uapi/linux/virtio_*.h
18810 F:      tools/virtio/
18811
18812 VIRTIO BALLOON
18813 M:      "Michael S. Tsirkin" <mst@redhat.com>
18814 M:      David Hildenbrand <david@redhat.com>
18815 L:      virtualization@lists.linux-foundation.org
18816 S:      Maintained
18817 F:      drivers/virtio/virtio_balloon.c
18818 F:      include/uapi/linux/virtio_balloon.h
18819 F:      include/linux/balloon_compaction.h
18820 F:      mm/balloon_compaction.c
18821
18822 VIRTIO CRYPTO DRIVER
18823 M:      Gonglei <arei.gonglei@huawei.com>
18824 L:      virtualization@lists.linux-foundation.org
18825 L:      linux-crypto@vger.kernel.org
18826 S:      Maintained
18827 F:      drivers/crypto/virtio/
18828 F:      include/uapi/linux/virtio_crypto.h
18829
18830 VIRTIO DRIVERS FOR S390
18831 M:      Cornelia Huck <cohuck@redhat.com>
18832 M:      Halil Pasic <pasic@linux.ibm.com>
18833 L:      linux-s390@vger.kernel.org
18834 L:      virtualization@lists.linux-foundation.org
18835 L:      kvm@vger.kernel.org
18836 S:      Supported
18837 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18838 F:      drivers/s390/virtio/
18839
18840 VIRTIO FILE SYSTEM
18841 M:      Vivek Goyal <vgoyal@redhat.com>
18842 M:      Stefan Hajnoczi <stefanha@redhat.com>
18843 M:      Miklos Szeredi <miklos@szeredi.hu>
18844 L:      virtualization@lists.linux-foundation.org
18845 L:      linux-fsdevel@vger.kernel.org
18846 S:      Supported
18847 W:      https://virtio-fs.gitlab.io/
18848 F:      Documentation/filesystems/virtiofs.rst
18849 F:      fs/fuse/virtio_fs.c
18850 F:      include/uapi/linux/virtio_fs.h
18851
18852 VIRTIO GPU DRIVER
18853 M:      David Airlie <airlied@linux.ie>
18854 M:      Gerd Hoffmann <kraxel@redhat.com>
18855 L:      dri-devel@lists.freedesktop.org
18856 L:      virtualization@lists.linux-foundation.org
18857 S:      Maintained
18858 T:      git git://anongit.freedesktop.org/drm/drm-misc
18859 F:      drivers/gpu/drm/virtio/
18860 F:      include/uapi/linux/virtio_gpu.h
18861
18862 VIRTIO HOST (VHOST)
18863 M:      "Michael S. Tsirkin" <mst@redhat.com>
18864 M:      Jason Wang <jasowang@redhat.com>
18865 L:      kvm@vger.kernel.org
18866 L:      virtualization@lists.linux-foundation.org
18867 L:      netdev@vger.kernel.org
18868 S:      Maintained
18869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18870 F:      drivers/vhost/
18871 F:      include/linux/vhost_iotlb.h
18872 F:      include/uapi/linux/vhost.h
18873
18874 VIRTIO INPUT DRIVER
18875 M:      Gerd Hoffmann <kraxel@redhat.com>
18876 S:      Maintained
18877 F:      drivers/virtio/virtio_input.c
18878 F:      include/uapi/linux/virtio_input.h
18879
18880 VIRTIO IOMMU DRIVER
18881 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18882 L:      virtualization@lists.linux-foundation.org
18883 S:      Maintained
18884 F:      drivers/iommu/virtio-iommu.c
18885 F:      include/uapi/linux/virtio_iommu.h
18886
18887 VIRTIO MEM DRIVER
18888 M:      David Hildenbrand <david@redhat.com>
18889 L:      virtualization@lists.linux-foundation.org
18890 S:      Maintained
18891 W:      https://virtio-mem.gitlab.io/
18892 F:      drivers/virtio/virtio_mem.c
18893 F:      include/uapi/linux/virtio_mem.h
18894
18895 VIRTUAL BOX GUEST DEVICE DRIVER
18896 M:      Hans de Goede <hdegoede@redhat.com>
18897 M:      Arnd Bergmann <arnd@arndb.de>
18898 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18899 S:      Maintained
18900 F:      drivers/virt/vboxguest/
18901 F:      include/linux/vbox_utils.h
18902 F:      include/uapi/linux/vbox*.h
18903
18904 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18905 M:      Hans de Goede <hdegoede@redhat.com>
18906 L:      linux-fsdevel@vger.kernel.org
18907 S:      Maintained
18908 F:      fs/vboxsf/*
18909
18910 VIRTUAL SERIO DEVICE DRIVER
18911 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18912 S:      Maintained
18913 F:      drivers/input/serio/userio.c
18914 F:      include/uapi/linux/userio.h
18915
18916 VIVID VIRTUAL VIDEO DRIVER
18917 M:      Hans Verkuil <hverkuil@xs4all.nl>
18918 L:      linux-media@vger.kernel.org
18919 S:      Maintained
18920 W:      https://linuxtv.org
18921 T:      git git://linuxtv.org/media_tree.git
18922 F:      drivers/media/test-drivers/vivid/*
18923
18924 VIDTV VIRTUAL DIGITAL TV DRIVER
18925 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
18926 L:      linux-media@vger.kernel.org
18927 S:      Maintained
18928 W:      https://linuxtv.org
18929 T:      git git://linuxtv.org/media_tree.git
18930 F:      drivers/media/test-drivers/vidtv/*
18931
18932 VLYNQ BUS
18933 M:      Florian Fainelli <f.fainelli@gmail.com>
18934 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18935 S:      Maintained
18936 F:      drivers/vlynq/vlynq.c
18937 F:      include/linux/vlynq.h
18938
18939 VME SUBSYSTEM
18940 M:      Martyn Welch <martyn@welchs.me.uk>
18941 M:      Manohar Vanga <manohar.vanga@gmail.com>
18942 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18943 L:      devel@driverdev.osuosl.org
18944 S:      Maintained
18945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18946 F:      Documentation/driver-api/vme.rst
18947 F:      drivers/staging/vme/
18948 F:      drivers/vme/
18949 F:      include/linux/vme*
18950
18951 VMWARE BALLOON DRIVER
18952 M:      Nadav Amit <namit@vmware.com>
18953 M:      "VMware, Inc." <pv-drivers@vmware.com>
18954 L:      linux-kernel@vger.kernel.org
18955 S:      Maintained
18956 F:      drivers/misc/vmw_balloon.c
18957
18958 VMWARE HYPERVISOR INTERFACE
18959 M:      Deep Shah <sdeep@vmware.com>
18960 M:      "VMware, Inc." <pv-drivers@vmware.com>
18961 L:      virtualization@lists.linux-foundation.org
18962 S:      Supported
18963 F:      arch/x86/include/asm/vmware.h
18964 F:      arch/x86/kernel/cpu/vmware.c
18965
18966 VMWARE PVRDMA DRIVER
18967 M:      Adit Ranadive <aditr@vmware.com>
18968 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18969 L:      linux-rdma@vger.kernel.org
18970 S:      Maintained
18971 F:      drivers/infiniband/hw/vmw_pvrdma/
18972
18973 VMware PVSCSI driver
18974 M:      Jim Gill <jgill@vmware.com>
18975 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18976 L:      linux-scsi@vger.kernel.org
18977 S:      Maintained
18978 F:      drivers/scsi/vmw_pvscsi.c
18979 F:      drivers/scsi/vmw_pvscsi.h
18980
18981 VMWARE VIRTUAL PTP CLOCK DRIVER
18982 M:      Vivek Thampi <vithampi@vmware.com>
18983 M:      "VMware, Inc." <pv-drivers@vmware.com>
18984 L:      netdev@vger.kernel.org
18985 S:      Supported
18986 F:      drivers/ptp/ptp_vmw.c
18987
18988 VMWARE VMMOUSE SUBDRIVER
18989 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18990 M:      "VMware, Inc." <pv-drivers@vmware.com>
18991 L:      linux-input@vger.kernel.org
18992 S:      Maintained
18993 F:      drivers/input/mouse/vmmouse.c
18994 F:      drivers/input/mouse/vmmouse.h
18995
18996 VMWARE VMXNET3 ETHERNET DRIVER
18997 M:      Ronak Doshi <doshir@vmware.com>
18998 M:      pv-drivers@vmware.com
18999 L:      netdev@vger.kernel.org
19000 S:      Maintained
19001 F:      drivers/net/vmxnet3/
19002
19003 VOCORE VOCORE2 BOARD
19004 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19005 L:      linux-mips@vger.kernel.org
19006 S:      Maintained
19007 F:      arch/mips/boot/dts/ralink/vocore2.dts
19008
19009 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19010 M:      Liam Girdwood <lgirdwood@gmail.com>
19011 M:      Mark Brown <broonie@kernel.org>
19012 L:      linux-kernel@vger.kernel.org
19013 S:      Supported
19014 W:      http://www.slimlogic.co.uk/?p=48
19015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19016 F:      Documentation/devicetree/bindings/regulator/
19017 F:      Documentation/power/regulator/
19018 F:      drivers/regulator/
19019 F:      include/dt-bindings/regulator/
19020 F:      include/linux/regulator/
19021 K:      regulator_get_optional
19022
19023 VRF
19024 M:      David Ahern <dsahern@kernel.org>
19025 L:      netdev@vger.kernel.org
19026 S:      Maintained
19027 F:      Documentation/networking/vrf.rst
19028 F:      drivers/net/vrf.c
19029
19030 VSPRINTF
19031 M:      Petr Mladek <pmladek@suse.com>
19032 M:      Steven Rostedt <rostedt@goodmis.org>
19033 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
19034 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19035 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19036 S:      Maintained
19037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19038 F:      Documentation/core-api/printk-formats.rst
19039 F:      lib/test_printf.c
19040 F:      lib/vsprintf.c
19041
19042 VT1211 HARDWARE MONITOR DRIVER
19043 M:      Juerg Haefliger <juergh@gmail.com>
19044 L:      linux-hwmon@vger.kernel.org
19045 S:      Maintained
19046 F:      Documentation/hwmon/vt1211.rst
19047 F:      drivers/hwmon/vt1211.c
19048
19049 VT8231 HARDWARE MONITOR DRIVER
19050 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19051 L:      linux-hwmon@vger.kernel.org
19052 S:      Maintained
19053 F:      drivers/hwmon/vt8231.c
19054
19055 VUB300 USB to SDIO/SD/MMC bridge chip
19056 L:      linux-mmc@vger.kernel.org
19057 S:      Orphan
19058 F:      drivers/mmc/host/vub300.c
19059
19060 W1 DALLAS'S 1-WIRE BUS
19061 M:      Evgeniy Polyakov <zbr@ioremap.net>
19062 S:      Maintained
19063 F:      Documentation/devicetree/bindings/w1/
19064 F:      Documentation/w1/
19065 F:      drivers/w1/
19066 F:      include/linux/w1.h
19067
19068 W83791D HARDWARE MONITORING DRIVER
19069 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19070 L:      linux-hwmon@vger.kernel.org
19071 S:      Maintained
19072 F:      Documentation/hwmon/w83791d.rst
19073 F:      drivers/hwmon/w83791d.c
19074
19075 W83793 HARDWARE MONITORING DRIVER
19076 M:      Rudolf Marek <r.marek@assembler.cz>
19077 L:      linux-hwmon@vger.kernel.org
19078 S:      Maintained
19079 F:      Documentation/hwmon/w83793.rst
19080 F:      drivers/hwmon/w83793.c
19081
19082 W83795 HARDWARE MONITORING DRIVER
19083 M:      Jean Delvare <jdelvare@suse.com>
19084 L:      linux-hwmon@vger.kernel.org
19085 S:      Maintained
19086 F:      drivers/hwmon/w83795.c
19087
19088 W83L51xD SD/MMC CARD INTERFACE DRIVER
19089 M:      Pierre Ossman <pierre@ossman.eu>
19090 S:      Maintained
19091 F:      drivers/mmc/host/wbsd.*
19092
19093 WACOM PROTOCOL 4 SERIAL TABLETS
19094 M:      Julian Squires <julian@cipht.net>
19095 M:      Hans de Goede <hdegoede@redhat.com>
19096 L:      linux-input@vger.kernel.org
19097 S:      Maintained
19098 F:      drivers/input/tablet/wacom_serial4.c
19099
19100 WATCHDOG DEVICE DRIVERS
19101 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19102 M:      Guenter Roeck <linux@roeck-us.net>
19103 L:      linux-watchdog@vger.kernel.org
19104 S:      Maintained
19105 W:      http://www.linux-watchdog.org/
19106 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19107 F:      Documentation/devicetree/bindings/watchdog/
19108 F:      Documentation/watchdog/
19109 F:      drivers/watchdog/
19110 F:      include/linux/watchdog.h
19111 F:      include/uapi/linux/watchdog.h
19112
19113 WHISKEYCOVE PMIC GPIO DRIVER
19114 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19115 L:      linux-gpio@vger.kernel.org
19116 S:      Maintained
19117 F:      drivers/gpio/gpio-wcove.c
19118
19119 WHWAVE RTC DRIVER
19120 M:      Dianlong Li <long17.cool@163.com>
19121 L:      linux-rtc@vger.kernel.org
19122 S:      Maintained
19123 F:      drivers/rtc/rtc-sd3078.c
19124
19125 WIIMOTE HID DRIVER
19126 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19127 L:      linux-input@vger.kernel.org
19128 S:      Maintained
19129 F:      drivers/hid/hid-wiimote*
19130
19131 WILOCITY WIL6210 WIRELESS DRIVER
19132 M:      Maya Erez <merez@codeaurora.org>
19133 L:      linux-wireless@vger.kernel.org
19134 L:      wil6210@qti.qualcomm.com
19135 S:      Supported
19136 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19137 F:      drivers/net/wireless/ath/wil6210/
19138
19139 WINBOND CIR DRIVER
19140 M:      David Härdeman <david@hardeman.nu>
19141 S:      Maintained
19142 F:      drivers/media/rc/winbond-cir.c
19143
19144 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19145 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19146 L:      linux-watchdog@vger.kernel.org
19147 S:      Maintained
19148 F:      drivers/watchdog/ebc-c384_wdt.c
19149
19150 WINSYSTEMS WS16C48 GPIO DRIVER
19151 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19152 L:      linux-gpio@vger.kernel.org
19153 S:      Maintained
19154 F:      drivers/gpio/gpio-ws16c48.c
19155
19156 WIREGUARD SECURE NETWORK TUNNEL
19157 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19158 L:      wireguard@lists.zx2c4.com
19159 L:      netdev@vger.kernel.org
19160 S:      Maintained
19161 F:      drivers/net/wireguard/
19162 F:      tools/testing/selftests/wireguard/
19163
19164 WISTRON LAPTOP BUTTON DRIVER
19165 M:      Miloslav Trmac <mitr@volny.cz>
19166 S:      Maintained
19167 F:      drivers/input/misc/wistron_btns.c
19168
19169 WL3501 WIRELESS PCMCIA CARD DRIVER
19170 L:      linux-wireless@vger.kernel.org
19171 S:      Odd fixes
19172 F:      drivers/net/wireless/wl3501*
19173
19174 WOLFSON MICROELECTRONICS DRIVERS
19175 L:      patches@opensource.cirrus.com
19176 S:      Supported
19177 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19178 T:      git https://github.com/CirrusLogic/linux-drivers.git
19179 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19180 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19181 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19182 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19183 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19184 F:      Documentation/hwmon/wm83??.rst
19185 F:      arch/arm/mach-s3c/mach-crag6410*
19186 F:      drivers/clk/clk-wm83*.c
19187 F:      drivers/extcon/extcon-arizona.c
19188 F:      drivers/gpio/gpio-*wm*.c
19189 F:      drivers/gpio/gpio-arizona.c
19190 F:      drivers/hwmon/wm83??-hwmon.c
19191 F:      drivers/input/misc/wm831x-on.c
19192 F:      drivers/input/touchscreen/wm831x-ts.c
19193 F:      drivers/input/touchscreen/wm97*.c
19194 F:      drivers/leds/leds-wm83*.c
19195 F:      drivers/mfd/arizona*
19196 F:      drivers/mfd/cs47l24*
19197 F:      drivers/mfd/wm*.c
19198 F:      drivers/power/supply/wm83*.c
19199 F:      drivers/regulator/arizona*
19200 F:      drivers/regulator/wm8*.c
19201 F:      drivers/rtc/rtc-wm83*.c
19202 F:      drivers/video/backlight/wm83*_bl.c
19203 F:      drivers/watchdog/wm83*_wdt.c
19204 F:      include/linux/mfd/arizona/
19205 F:      include/linux/mfd/wm831x/
19206 F:      include/linux/mfd/wm8350/
19207 F:      include/linux/mfd/wm8400*
19208 F:      include/linux/regulator/arizona*
19209 F:      include/linux/wm97xx.h
19210 F:      include/sound/wm????.h
19211 F:      sound/soc/codecs/arizona.?
19212 F:      sound/soc/codecs/cs47l24*
19213 F:      sound/soc/codecs/wm*
19214
19215 WORKQUEUE
19216 M:      Tejun Heo <tj@kernel.org>
19217 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19218 S:      Maintained
19219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19220 F:      Documentation/core-api/workqueue.rst
19221 F:      include/linux/workqueue.h
19222 F:      kernel/workqueue.c
19223
19224 X-POWERS AXP288 PMIC DRIVERS
19225 M:      Hans de Goede <hdegoede@redhat.com>
19226 S:      Maintained
19227 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19228 N:      axp288
19229
19230 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19231 M:      Chen-Yu Tsai <wens@csie.org>
19232 L:      linux-kernel@vger.kernel.org
19233 S:      Maintained
19234 N:      axp[128]
19235
19236 X.25 STACK
19237 M:      Martin Schiller <ms@dev.tdt.de>
19238 L:      linux-x25@vger.kernel.org
19239 S:      Maintained
19240 F:      Documentation/networking/lapb-module.rst
19241 F:      Documentation/networking/x25*
19242 F:      drivers/net/wan/hdlc_x25.c
19243 F:      drivers/net/wan/lapbether.c
19244 F:      include/*/lapb.h
19245 F:      include/net/x25*
19246 F:      include/uapi/linux/x25.h
19247 F:      net/lapb/
19248 F:      net/x25/
19249
19250 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19251 M:      Thomas Gleixner <tglx@linutronix.de>
19252 M:      Ingo Molnar <mingo@redhat.com>
19253 M:      Borislav Petkov <bp@alien8.de>
19254 M:      x86@kernel.org
19255 R:      "H. Peter Anvin" <hpa@zytor.com>
19256 L:      linux-kernel@vger.kernel.org
19257 S:      Maintained
19258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19259 F:      Documentation/devicetree/bindings/x86/
19260 F:      Documentation/x86/
19261 F:      arch/x86/
19262
19263 X86 ENTRY CODE
19264 M:      Andy Lutomirski <luto@kernel.org>
19265 L:      linux-kernel@vger.kernel.org
19266 S:      Maintained
19267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19268 F:      arch/x86/entry/
19269
19270 X86 MCE INFRASTRUCTURE
19271 M:      Tony Luck <tony.luck@intel.com>
19272 M:      Borislav Petkov <bp@alien8.de>
19273 L:      linux-edac@vger.kernel.org
19274 S:      Maintained
19275 F:      arch/x86/kernel/cpu/mce/*
19276
19277 X86 MICROCODE UPDATE SUPPORT
19278 M:      Borislav Petkov <bp@alien8.de>
19279 S:      Maintained
19280 F:      arch/x86/kernel/cpu/microcode/*
19281
19282 X86 MM
19283 M:      Dave Hansen <dave.hansen@linux.intel.com>
19284 M:      Andy Lutomirski <luto@kernel.org>
19285 M:      Peter Zijlstra <peterz@infradead.org>
19286 L:      linux-kernel@vger.kernel.org
19287 S:      Maintained
19288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19289 F:      arch/x86/mm/
19290
19291 X86 PLATFORM DRIVERS
19292 M:      Hans de Goede <hdegoede@redhat.com>
19293 M:      Mark Gross <mgross@linux.intel.com>
19294 L:      platform-driver-x86@vger.kernel.org
19295 S:      Maintained
19296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19297 F:      drivers/platform/olpc/
19298 F:      drivers/platform/x86/
19299
19300 X86 PLATFORM DRIVERS - ARCH
19301 R:      Darren Hart <dvhart@infradead.org>
19302 R:      Andy Shevchenko <andy@infradead.org>
19303 L:      platform-driver-x86@vger.kernel.org
19304 L:      x86@kernel.org
19305 S:      Maintained
19306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19307 F:      arch/x86/platform
19308
19309 X86 PLATFORM UV HPE SUPERDOME FLEX
19310 M:      Steve Wahl <steve.wahl@hpe.com>
19311 R:      Mike Travis <mike.travis@hpe.com>
19312 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19313 R:      Russ Anderson <russ.anderson@hpe.com>
19314 S:      Supported
19315 F:      arch/x86/include/asm/uv/
19316 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19317 F:      arch/x86/platform/uv/
19318
19319 X86 VDSO
19320 M:      Andy Lutomirski <luto@kernel.org>
19321 L:      linux-kernel@vger.kernel.org
19322 S:      Maintained
19323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19324 F:      arch/x86/entry/vdso/
19325
19326 XARRAY
19327 M:      Matthew Wilcox <willy@infradead.org>
19328 L:      linux-fsdevel@vger.kernel.org
19329 S:      Supported
19330 F:      Documentation/core-api/xarray.rst
19331 F:      include/linux/idr.h
19332 F:      include/linux/xarray.h
19333 F:      lib/idr.c
19334 F:      lib/xarray.c
19335 F:      tools/testing/radix-tree
19336
19337 XBOX DVD IR REMOTE
19338 M:      Benjamin Valentin <benpicco@googlemail.com>
19339 S:      Maintained
19340 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19341 F:      drivers/media/rc/xbox_remote.c
19342
19343 XC2028/3028 TUNER DRIVER
19344 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19345 L:      linux-media@vger.kernel.org
19346 S:      Maintained
19347 W:      https://linuxtv.org
19348 T:      git git://linuxtv.org/media_tree.git
19349 F:      drivers/media/tuners/tuner-xc2028.*
19350
19351 XDP (eXpress Data Path)
19352 M:      Alexei Starovoitov <ast@kernel.org>
19353 M:      Daniel Borkmann <daniel@iogearbox.net>
19354 M:      David S. Miller <davem@davemloft.net>
19355 M:      Jakub Kicinski <kuba@kernel.org>
19356 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19357 M:      John Fastabend <john.fastabend@gmail.com>
19358 L:      netdev@vger.kernel.org
19359 L:      bpf@vger.kernel.org
19360 S:      Supported
19361 F:      include/net/xdp.h
19362 F:      include/net/xdp_priv.h
19363 F:      include/trace/events/xdp.h
19364 F:      kernel/bpf/cpumap.c
19365 F:      kernel/bpf/devmap.c
19366 F:      net/core/xdp.c
19367 F:      samples/bpf/xdp*
19368 F:      tools/testing/selftests/bpf/*xdp*
19369 F:      tools/testing/selftests/bpf/*/*xdp*
19370 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19371 F:      drivers/net/ethernet/*/*/*xdp*
19372 K:      (?:\b|_)xdp(?:\b|_)
19373
19374 XDP SOCKETS (AF_XDP)
19375 M:      Björn Töpel <bjorn@kernel.org>
19376 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19377 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19378 L:      netdev@vger.kernel.org
19379 L:      bpf@vger.kernel.org
19380 S:      Maintained
19381 F:      Documentation/networking/af_xdp.rst
19382 F:      include/net/xdp_sock*
19383 F:      include/net/xsk_buff_pool.h
19384 F:      include/uapi/linux/if_xdp.h
19385 F:      include/uapi/linux/xdp_diag.h
19386 F:      include/net/netns/xdp.h
19387 F:      net/xdp/
19388 F:      samples/bpf/xdpsock*
19389 F:      tools/lib/bpf/xsk*
19390
19391 XEN BLOCK SUBSYSTEM
19392 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19393 M:      Roger Pau Monné <roger.pau@citrix.com>
19394 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19395 S:      Supported
19396 F:      drivers/block/xen*
19397 F:      drivers/block/xen-blkback/*
19398
19399 XEN HYPERVISOR ARM
19400 M:      Stefano Stabellini <sstabellini@kernel.org>
19401 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19402 S:      Maintained
19403 F:      arch/arm/include/asm/xen/
19404 F:      arch/arm/xen/
19405
19406 XEN HYPERVISOR ARM64
19407 M:      Stefano Stabellini <sstabellini@kernel.org>
19408 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19409 S:      Maintained
19410 F:      arch/arm64/include/asm/xen/
19411 F:      arch/arm64/xen/
19412
19413 XEN HYPERVISOR INTERFACE
19414 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19415 M:      Juergen Gross <jgross@suse.com>
19416 R:      Stefano Stabellini <sstabellini@kernel.org>
19417 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19418 S:      Supported
19419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19420 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19421 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19422 F:      arch/x86/include/asm/pvclock-abi.h
19423 F:      arch/x86/include/asm/xen/
19424 F:      arch/x86/platform/pvh/
19425 F:      arch/x86/xen/
19426 F:      drivers/*/xen-*front.c
19427 F:      drivers/xen/
19428 F:      include/uapi/xen/
19429 F:      include/xen/
19430
19431 XEN NETWORK BACKEND DRIVER
19432 M:      Wei Liu <wei.liu@kernel.org>
19433 M:      Paul Durrant <paul@xen.org>
19434 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19435 L:      netdev@vger.kernel.org
19436 S:      Supported
19437 F:      drivers/net/xen-netback/*
19438
19439 XEN PCI SUBSYSTEM
19440 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19441 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19442 S:      Supported
19443 F:      arch/x86/pci/*xen*
19444 F:      drivers/pci/*xen*
19445
19446 XEN PVSCSI DRIVERS
19447 M:      Juergen Gross <jgross@suse.com>
19448 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19449 L:      linux-scsi@vger.kernel.org
19450 S:      Supported
19451 F:      drivers/scsi/xen-scsifront.c
19452 F:      drivers/xen/xen-scsiback.c
19453 F:      include/xen/interface/io/vscsiif.h
19454
19455 XEN SOUND FRONTEND DRIVER
19456 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19457 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19458 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19459 S:      Supported
19460 F:      sound/xen/*
19461
19462 XEN SWIOTLB SUBSYSTEM
19463 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19464 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19465 L:      iommu@lists.linux-foundation.org
19466 S:      Supported
19467 F:      arch/x86/xen/*swiotlb*
19468 F:      drivers/xen/*swiotlb*
19469
19470 XFS FILESYSTEM
19471 M:      Darrick J. Wong <djwong@kernel.org>
19472 M:      linux-xfs@vger.kernel.org
19473 L:      linux-xfs@vger.kernel.org
19474 S:      Supported
19475 W:      http://xfs.org/
19476 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19477 F:      Documentation/ABI/testing/sysfs-fs-xfs
19478 F:      Documentation/admin-guide/xfs.rst
19479 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19480 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19481 F:      fs/xfs/
19482 F:      include/uapi/linux/dqblk_xfs.h
19483 F:      include/uapi/linux/fsmap.h
19484
19485 XILINX AXI ETHERNET DRIVER
19486 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19487 S:      Maintained
19488 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19489
19490 XILINX CAN DRIVER
19491 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19492 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19493 L:      linux-can@vger.kernel.org
19494 S:      Maintained
19495 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19496 F:      drivers/net/can/xilinx_can.c
19497
19498 XILINX GPIO DRIVER
19499 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
19500 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
19501 R:      Michal Simek <michal.simek@xilinx.com>
19502 S:      Maintained
19503 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
19504 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
19505 F:      drivers/gpio/gpio-xilinx.c
19506 F:      drivers/gpio/gpio-zynq.c
19507
19508 XILINX SD-FEC IP CORES
19509 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19510 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19511 S:      Maintained
19512 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19513 F:      Documentation/misc-devices/xilinx_sdfec.rst
19514 F:      drivers/misc/Kconfig
19515 F:      drivers/misc/Makefile
19516 F:      drivers/misc/xilinx_sdfec.c
19517 F:      include/uapi/misc/xilinx_sdfec.h
19518
19519 XILINX UARTLITE SERIAL DRIVER
19520 M:      Peter Korsgaard <jacmet@sunsite.dk>
19521 L:      linux-serial@vger.kernel.org
19522 S:      Maintained
19523 F:      drivers/tty/serial/uartlite.c
19524
19525 XILINX VIDEO IP CORES
19526 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19527 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19528 L:      linux-media@vger.kernel.org
19529 S:      Supported
19530 T:      git git://linuxtv.org/media_tree.git
19531 F:      Documentation/devicetree/bindings/media/xilinx/
19532 F:      drivers/media/platform/xilinx/
19533 F:      include/uapi/linux/xilinx-v4l2-controls.h
19534
19535 XILINX ZYNQMP DPDMA DRIVER
19536 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19537 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19538 L:      dmaengine@vger.kernel.org
19539 S:      Supported
19540 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19541 F:      drivers/dma/xilinx/xilinx_dpdma.c
19542 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19543
19544 XILINX ZYNQMP PSGTR PHY DRIVER
19545 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19546 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19547 L:      linux-kernel@vger.kernel.org
19548 S:      Supported
19549 T:      git https://github.com/Xilinx/linux-xlnx.git
19550 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19551 F:      drivers/phy/xilinx/phy-zynqmp.c
19552
19553 XILLYBUS DRIVER
19554 M:      Eli Billauer <eli.billauer@gmail.com>
19555 L:      linux-kernel@vger.kernel.org
19556 S:      Supported
19557 F:      drivers/char/xillybus/
19558
19559 XLP9XX I2C DRIVER
19560 M:      George Cherian <gcherian@marvell.com>
19561 L:      linux-i2c@vger.kernel.org
19562 S:      Supported
19563 W:      http://www.marvell.com
19564 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19565 F:      drivers/i2c/busses/i2c-xlp9xx.c
19566
19567 XRA1403 GPIO EXPANDER
19568 M:      Nandor Han <nandor.han@ge.com>
19569 M:      Semi Malinen <semi.malinen@ge.com>
19570 L:      linux-gpio@vger.kernel.org
19571 S:      Maintained
19572 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19573 F:      drivers/gpio/gpio-xra1403.c
19574
19575 XTENSA XTFPGA PLATFORM SUPPORT
19576 M:      Max Filippov <jcmvbkbc@gmail.com>
19577 L:      linux-xtensa@linux-xtensa.org
19578 S:      Maintained
19579 F:      drivers/spi/spi-xtensa-xtfpga.c
19580 F:      sound/soc/xtensa/xtfpga-i2s.c
19581
19582 YAM DRIVER FOR AX.25
19583 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19584 L:      linux-hams@vger.kernel.org
19585 S:      Maintained
19586 F:      drivers/net/hamradio/yam*
19587 F:      include/linux/yam.h
19588
19589 YAMA SECURITY MODULE
19590 M:      Kees Cook <keescook@chromium.org>
19591 S:      Supported
19592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19593 F:      Documentation/admin-guide/LSM/Yama.rst
19594 F:      security/yama/
19595
19596 YEALINK PHONE DRIVER
19597 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19598 L:      usbb2k-api-dev@nongnu.org
19599 S:      Maintained
19600 F:      Documentation/input/devices/yealink.rst
19601 F:      drivers/input/misc/yealink.*
19602
19603 Z8530 DRIVER FOR AX.25
19604 M:      Joerg Reuter <jreuter@yaina.de>
19605 L:      linux-hams@vger.kernel.org
19606 S:      Maintained
19607 W:      http://yaina.de/jreuter/
19608 W:      http://www.qsl.net/dl1bke/
19609 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19610 F:      drivers/net/hamradio/*scc.c
19611 F:      drivers/net/hamradio/z8530.h
19612
19613 ZBUD COMPRESSED PAGE ALLOCATOR
19614 M:      Seth Jennings <sjenning@redhat.com>
19615 M:      Dan Streetman <ddstreet@ieee.org>
19616 L:      linux-mm@kvack.org
19617 S:      Maintained
19618 F:      include/linux/zbud.h
19619 F:      mm/zbud.c
19620
19621 ZD1211RW WIRELESS DRIVER
19622 M:      Daniel Drake <dsd@gentoo.org>
19623 M:      Ulrich Kunitz <kune@deine-taler.de>
19624 L:      linux-wireless@vger.kernel.org
19625 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19626 S:      Maintained
19627 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19628 F:      drivers/net/wireless/zydas/zd1211rw/
19629
19630 ZD1301 MEDIA DRIVER
19631 M:      Antti Palosaari <crope@iki.fi>
19632 L:      linux-media@vger.kernel.org
19633 S:      Maintained
19634 W:      https://linuxtv.org/
19635 W:      http://palosaari.fi/linux/
19636 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19637 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19638
19639 ZD1301_DEMOD MEDIA DRIVER
19640 M:      Antti Palosaari <crope@iki.fi>
19641 L:      linux-media@vger.kernel.org
19642 S:      Maintained
19643 W:      https://linuxtv.org/
19644 W:      http://palosaari.fi/linux/
19645 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19646 F:      drivers/media/dvb-frontends/zd1301_demod*
19647
19648 ZHAOXIN PROCESSOR SUPPORT
19649 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19650 L:      linux-kernel@vger.kernel.org
19651 S:      Maintained
19652 F:      arch/x86/kernel/cpu/zhaoxin.c
19653
19654 ZONEFS FILESYSTEM
19655 M:      Damien Le Moal <damien.lemoal@wdc.com>
19656 M:      Naohiro Aota <naohiro.aota@wdc.com>
19657 R:      Johannes Thumshirn <jth@kernel.org>
19658 L:      linux-fsdevel@vger.kernel.org
19659 S:      Maintained
19660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19661 F:      Documentation/filesystems/zonefs.rst
19662 F:      fs/zonefs/
19663
19664 ZPOOL COMPRESSED PAGE STORAGE API
19665 M:      Dan Streetman <ddstreet@ieee.org>
19666 L:      linux-mm@kvack.org
19667 S:      Maintained
19668 F:      include/linux/zpool.h
19669 F:      mm/zpool.c
19670
19671 ZR36067 VIDEO FOR LINUX DRIVER
19672 M:      Corentin Labbe <clabbe@baylibre.com>
19673 L:      mjpeg-users@lists.sourceforge.net
19674 L:      linux-media@vger.kernel.org
19675 S:      Maintained
19676 W:      http://mjpeg.sourceforge.net/driver-zoran/
19677 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19678 F:      Documentation/driver-api/media/drivers/zoran.rst
19679 F:      drivers/staging/media/zoran/
19680
19681 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19682 M:      Minchan Kim <minchan@kernel.org>
19683 M:      Nitin Gupta <ngupta@vflare.org>
19684 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19685 L:      linux-kernel@vger.kernel.org
19686 S:      Maintained
19687 F:      Documentation/admin-guide/blockdev/zram.rst
19688 F:      drivers/block/zram/
19689
19690 ZS DECSTATION Z85C30 SERIAL DRIVER
19691 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19692 S:      Maintained
19693 F:      drivers/tty/serial/zs.*
19694
19695 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19696 M:      Minchan Kim <minchan@kernel.org>
19697 M:      Nitin Gupta <ngupta@vflare.org>
19698 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19699 L:      linux-mm@kvack.org
19700 S:      Maintained
19701 F:      Documentation/vm/zsmalloc.rst
19702 F:      include/linux/zsmalloc.h
19703 F:      mm/zsmalloc.c
19704
19705 ZSWAP COMPRESSED SWAP CACHING
19706 M:      Seth Jennings <sjenning@redhat.com>
19707 M:      Dan Streetman <ddstreet@ieee.org>
19708 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19709 L:      linux-mm@kvack.org
19710 S:      Maintained
19711 F:      mm/zswap.c
19712
19713 THE REST
19714 M:      Linus Torvalds <torvalds@linux-foundation.org>
19715 L:      linux-kernel@vger.kernel.org
19716 S:      Buried alive in reporters
19717 Q:      http://patchwork.kernel.org/project/LKML/list/
19718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19719 F:      *
19720 F:      */