]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - MAINTAINERS
Merge tag 'imx-dt64-5.12' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo...
[mirror_ubuntu-jammy-kernel.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below. This will make things
5 easier on the maintainers. Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1. Always *test* your changes, however small, on at least 4 or
12 5 people, preferably many more.
13
14 2. Try to release a few ALPHA test versions to the net. Announce
15 them onto the kernel channel and await results. This is especially
16 important for device drivers, because often that's the only way
17 you will find things like the fact version 3 firmware needs
18 a magic fix you didn't know about, or some clown changed the
19 chips on a board and not its name. (Don't laugh! Look at the
20 SMC etherpower for that.)
21
22 3. Make sure your changes compile correctly in multiple
23 configurations. In particular check that changes work both as a
24 module and built into the kernel.
25
26 4. When you are happy with a change make it generally available for
27 testing and await feedback.
28
29 5. Make a patch available to the relevant maintainer in the list. Use
30 ``diff -u`` to make the patch easy to merge. Be prepared to get your
31 changes sent back with seemingly silly requests about formatting
32 and variable names. These aren't as silly as they seem. One
33 job the maintainers (and especially Linus) do is to keep things
34 looking the same. Sometimes this means that the clever hack in
35 your driver to get around a problem actually needs to become a
36 generalized kernel feature ready for next time.
37
38 PLEASE check your patch with the automated style checker
39 (scripts/checkpatch.pl) to catch trivial style violations.
40 See Documentation/process/coding-style.rst for guidance here.
41
42 PLEASE CC: the maintainers and mailing lists that are generated
43 by ``scripts/get_maintainer.pl.`` The results returned by the
44 script will be best if you have git installed and are making
45 your changes in a branch derived from Linus' latest git tree.
46 See Documentation/process/submitting-patches.rst for details.
47
48 PLEASE try to include any credit lines you want added with the
49 patch. It avoids people being missed off by mistake and makes
50 it easier to know who wants adding and who doesn't.
51
52 PLEASE document known bugs. If it doesn't work for everything
53 or does something very odd once a month document it.
54
55 PLEASE remember that submissions must be made under the terms
56 of the Linux Foundation certificate of contribution and should
57 include a Signed-off-by: line. The current version of this
58 "Developer's Certificate of Origin" (DCO) is listed in the file
59 Documentation/process/submitting-patches.rst.
60
61 6. Make sure you have the right to send any changes you make. If you
62 do changes at work you may find your employer owns the patch
63 not you.
64
65 7. When sending security related changes or reports to a maintainer
66 please Cc: security@kernel.org, especially if the maintainer
67 does not respond. Please keep in mind that the security team is
68 a small set of people who can be efficient only when working on
69 verified bugs. Please only Cc: this list when you have identified
70 that the bug would present a short-term risk to other users if it
71 were publicly disclosed. For example, reports of address leaks do
72 not represent an immediate threat and are better handled publicly,
73 and ideally, should come with a patch proposal. Please do not send
74 automated reports to this list either. Such bugs will be handled
75 better and faster in the usual public places. See
76 Documentation/admin-guide/security-bugs.rst for details.
77
78 8. Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83 M: *Mail* patches to: FullName <address@domain>
84 R: Designated *Reviewer*: FullName <address@domain>
85 These reviewers should be CCed on patches.
86 L: *Mailing list* that is relevant to this area
87 S: *Status*, one of the following:
88 Supported: Someone is actually paid to look after this.
89 Maintained: Someone actually looks after it.
90 Odd Fixes: It has a maintainer but they don't have time to do
91 much other than throw the odd patch in. See below..
92 Orphan: No current maintainer [but maybe you could take the
93 role as you write your new code].
94 Obsolete: Old code. Something tagged obsolete generally means
95 it has been replaced by a better system and you
96 should be using that.
97 W: *Web-page* with status/info
98 Q: *Patchwork* web based patch tracking system site
99 B: URI for where to file *bugs*. A web-page with detailed bug
100 filing info, a direct bug tracker link, or a mailto: URI.
101 C: URI for *chat* protocol, server and channel where developers
102 usually hang out, for example irc://server/channel.
103 P: Subsystem Profile document for more details submitting
104 patches to the given subsystem. This is either an in-tree file,
105 or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106 for details.
107 T: *SCM* tree type and location.
108 Type is one of: git, hg, quilt, stgit, topgit
109 F: *Files* and directories wildcard patterns.
110 A trailing slash includes all files and subdirectory files.
111 F: drivers/net/ all files in and below drivers/net
112 F: drivers/net/* all files in drivers/net, but not below
113 F: */net/* all files in "any top level directory"/net
114 One pattern per line. Multiple F: lines acceptable.
115 X: *Excluded* files and directories that are NOT maintained, same
116 rules as F:. Files exclusions are tested before file matches.
117 Can be useful for excluding a specific subdirectory, for instance:
118 F: net/
119 X: net/ipv6/
120 matches all files in and below net excluding net/ipv6/
121 N: Files and directories *Regex* patterns.
122 N: [^a-z]tegra all files whose path contains tegra
123 (not including files like integrator)
124 One pattern per line. Multiple N: lines acceptable.
125 scripts/get_maintainer.pl has different behavior for files that
126 match F: pattern and matches of N: patterns. By default,
127 get_maintainer will not look at git log history when an F: pattern
128 match occurs. When an N: match occurs, git log history is used
129 to also notify the people that have git commit signatures.
130 K: *Content regex* (perl extended) pattern match in a patch or file.
131 For instance:
132 K: of_get_profile
133 matches patches or files that contain "of_get_profile"
134 K: \b(printk|pr_(info|err))\b
135 matches patches or files that contain one or more of the words
136 printk, pr_info or pr_err
137 One regex pattern per line. Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143 first. When adding to this list, please keep the entries in
144 alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M: Steffen Klassert <klassert@kernel.org>
148 L: netdev@vger.kernel.org
149 S: Odd Fixes
150 F: Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F: drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M: David Dillow <dave@thedillows.org>
155 L: netdev@vger.kernel.org
156 S: Maintained
157 F: drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M: Adam Radford <aradford@gmail.com>
161 L: linux-scsi@vger.kernel.org
162 S: Supported
163 W: http://www.lsi.com
164 F: drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L: linux-scsi@vger.kernel.org
169 S: Maintained
170 F: drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M: Alexander Aring <alex.aring@gmail.com>
174 M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L: linux-bluetooth@vger.kernel.org
176 L: linux-wpan@vger.kernel.org
177 S: Maintained
178 F: Documentation/networking/6lowpan.rst
179 F: include/net/6lowpan.h
180 F: net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L: linux-hams@vger.kernel.org
185 S: Maintained
186 F: drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M: Johannes Berg <johannes@sipsolutions.net>
190 L: linux-wireless@vger.kernel.org
191 S: Maintained
192 W: https://wireless.wiki.kernel.org/
193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F: Documentation/driver-api/80211/cfg80211.rst
196 F: Documentation/networking/regulatory.rst
197 F: include/linux/ieee80211.h
198 F: include/net/cfg80211.h
199 F: include/net/ieee80211_radiotap.h
200 F: include/net/iw_handler.h
201 F: include/net/wext.h
202 F: include/uapi/linux/nl80211.h
203 F: net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M: Realtek linux nic maintainers <nic_swsd@realtek.com>
207 M: Heiner Kallweit <hkallweit1@gmail.com>
208 L: netdev@vger.kernel.org
209 S: Maintained
210 F: drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L: linux-serial@vger.kernel.org
215 S: Maintained
216 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F: drivers/tty/serial/8250*
218 F: include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L: netdev@vger.kernel.org
222 S: Orphan / Obsolete
223 F: drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M: Eric Van Hensbergen <ericvh@gmail.com>
227 M: Latchesar Ionkov <lucho@ionkov.net>
228 M: Dominique Martinet <asmadeus@codewreck.org>
229 L: v9fs-developer@lists.sourceforge.net
230 S: Maintained
231 W: http://swik.net/v9fs
232 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T: git git://github.com/martinetd/linux.git
235 F: Documentation/filesystems/9p.rst
236 F: fs/9p/
237 F: include/net/9p/
238 F: include/trace/events/9p.h
239 F: include/uapi/linux/virtio_9p.h
240 F: net/9p/
241
242 A8293 MEDIA DRIVER
243 M: Antti Palosaari <crope@iki.fi>
244 L: linux-media@vger.kernel.org
245 S: Maintained
246 W: https://linuxtv.org
247 W: http://palosaari.fi/linux/
248 Q: http://patchwork.linuxtv.org/project/linux-media/list/
249 T: git git://linuxtv.org/anttip/media_tree.git
250 F: drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L: linux-scsi@vger.kernel.org
255 S: Supported
256 W: http://www.adaptec.com/
257 F: Documentation/scsi/aacraid.rst
258 F: drivers/scsi/aacraid/
259
260 ABI/API
261 L: linux-api@vger.kernel.org
262 F: include/linux/syscalls.h
263 F: kernel/sys_ni.c
264
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M: Hans de Goede <hdegoede@redhat.com>
267 L: linux-hwmon@vger.kernel.org
268 S: Maintained
269 F: drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M: Alistair John Strachan <alistair@devzero.co.uk>
273 L: linux-hwmon@vger.kernel.org
274 S: Maintained
275 F: drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M: William Breathitt Gray <vilhelm.gray@gmail.com>
279 L: linux-gpio@vger.kernel.org
280 S: Maintained
281 F: drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
285 L: linux-gpio@vger.kernel.org
286 S: Maintained
287 F: drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
291 L: linux-gpio@vger.kernel.org
292 S: Maintained
293 F: drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M: William Breathitt Gray <vilhelm.gray@gmail.com>
297 M: Syed Nayyar Waris <syednwaris@gmail.com>
298 L: linux-iio@vger.kernel.org
299 S: Maintained
300 F: Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F: Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
302 F: drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M: William Breathitt Gray <vilhelm.gray@gmail.com>
306 L: linux-gpio@vger.kernel.org
307 S: Maintained
308 F: drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M: William Breathitt Gray <vilhelm.gray@gmail.com>
312 L: linux-gpio@vger.kernel.org
313 S: Maintained
314 F: drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M: Jes Sorensen <jes@trained-monkey.org>
318 L: linux-acenic@sunsite.dk
319 S: Maintained
320 F: drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M: Peter Kaestle <peter@piie.net>
324 L: platform-driver-x86@vger.kernel.org
325 S: Maintained
326 W: http://piie.net/?section=acerhdf
327 F: drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M: "Lee, Chun-Yi" <jlee@suse.com>
331 L: platform-driver-x86@vger.kernel.org
332 S: Maintained
333 F: drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
337 M: Len Brown <lenb@kernel.org>
338 L: linux-acpi@vger.kernel.org
339 S: Supported
340 W: https://01.org/linux-acpi
341 Q: https://patchwork.kernel.org/project/linux-acpi/list/
342 B: https://bugzilla.kernel.org
343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F: Documentation/ABI/testing/configfs-acpi
345 F: Documentation/ABI/testing/sysfs-bus-acpi
346 F: Documentation/firmware-guide/acpi/
347 F: drivers/acpi/
348 F: drivers/pci/*/*acpi*
349 F: drivers/pci/*acpi*
350 F: drivers/pnp/pnpacpi/
351 F: include/acpi/
352 F: include/linux/acpi.h
353 F: include/linux/fwnode.h
354 F: tools/power/acpi/
355
356 ACPI APEI
357 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
358 M: Len Brown <lenb@kernel.org>
359 R: James Morse <james.morse@arm.com>
360 R: Tony Luck <tony.luck@intel.com>
361 R: Borislav Petkov <bp@alien8.de>
362 L: linux-acpi@vger.kernel.org
363 F: drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M: Robert Moore <robert.moore@intel.com>
367 M: Erik Kaneda <erik.kaneda@intel.com>
368 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L: linux-acpi@vger.kernel.org
370 L: devel@acpica.org
371 S: Supported
372 W: https://acpica.org/
373 W: https://github.com/acpica/acpica/
374 Q: https://patchwork.kernel.org/project/linux-acpi/list/
375 B: https://bugzilla.kernel.org
376 B: https://bugs.acpica.org
377 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F: drivers/acpi/acpica/
379 F: include/acpi/
380 F: tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M: Zhang Rui <rui.zhang@intel.com>
384 L: linux-acpi@vger.kernel.org
385 S: Supported
386 W: https://01.org/linux-acpi
387 B: https://bugzilla.kernel.org
388 F: drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
392 M: Hanjun Guo <guohanjun@huawei.com>
393 M: Sudeep Holla <sudeep.holla@arm.com>
394 L: linux-acpi@vger.kernel.org
395 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 S: Maintained
397 F: drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M: Hans de Goede <hdegoede@redhat.com>
401 L: platform-driver-x86@vger.kernel.org
402 S: Maintained
403 F: drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
407 M: Len Brown <lenb@kernel.org>
408 R: Andy Shevchenko <andy@kernel.org>
409 R: Mika Westerberg <mika.westerberg@linux.intel.com>
410 L: linux-acpi@vger.kernel.org
411 S: Supported
412 Q: https://patchwork.kernel.org/project/linux-acpi/list/
413 B: https://bugzilla.kernel.org
414 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F: drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M: Zhang Rui <rui.zhang@intel.com>
419 L: linux-acpi@vger.kernel.org
420 S: Supported
421 W: https://01.org/linux-acpi
422 B: https://bugzilla.kernel.org
423 F: drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M: Zhang Rui <rui.zhang@intel.com>
427 L: linux-acpi@vger.kernel.org
428 S: Supported
429 W: https://01.org/linux-acpi
430 B: https://bugzilla.kernel.org
431 F: drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L: platform-driver-x86@vger.kernel.org
435 S: Orphan
436 F: drivers/platform/x86/wmi.c
437 F: include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L: linux-parisc@vger.kernel.org
441 S: Maintained
442 W: https://parisc.wiki.kernel.org/index.php/AD1889
443 F: sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M: Michael Hennerich <michael.hennerich@analog.com>
447 S: Supported
448 W: http://wiki.analog.com/AD5254
449 W: http://ez.analog.com/community/linux-device-drivers
450 F: drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M: Michael Hennerich <michael.hennerich@analog.com>
454 S: Supported
455 W: http://wiki.analog.com/AD5398
456 W: http://ez.analog.com/community/linux-device-drivers
457 F: drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M: Michael Hennerich <michael.hennerich@analog.com>
461 S: Supported
462 W: http://wiki.analog.com/AD7142
463 W: http://ez.analog.com/community/linux-device-drivers
464 F: drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M: Michael Hennerich <michael.hennerich@analog.com>
468 S: Supported
469 W: http://wiki.analog.com/AD7877
470 W: http://ez.analog.com/community/linux-device-drivers
471 F: drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M: Michael Hennerich <michael.hennerich@analog.com>
475 S: Supported
476 W: http://wiki.analog.com/AD7879
477 W: http://ez.analog.com/community/linux-device-drivers
478 F: drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M: Jiri Kosina <jikos@kernel.org>
482 S: Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M: Michael Hennerich <michael.hennerich@analog.com>
486 L: linux-wpan@vger.kernel.org
487 S: Supported
488 W: https://wiki.analog.com/ADF7242
489 W: http://ez.analog.com/community/linux-device-drivers
490 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F: drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M: Jean Delvare <jdelvare@suse.com>
495 L: linux-hwmon@vger.kernel.org
496 S: Maintained
497 F: Documentation/hwmon/adm1025.rst
498 F: drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M: Corentin Labbe <clabbe.montjoie@gmail.com>
502 L: linux-hwmon@vger.kernel.org
503 S: Maintained
504 F: drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L: linux-wireless@vger.kernel.org
508 S: Orphan
509 W: https://wireless.wiki.kernel.org/
510 F: drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M: Sakari Ailus <sakari.ailus@iki.fi>
514 L: linux-media@vger.kernel.org
515 S: Maintained
516 F: drivers/media/i2c/adp1653.c
517 F: include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M: Michael Hennerich <michael.hennerich@analog.com>
521 S: Supported
522 W: http://wiki.analog.com/ADP5520
523 W: http://ez.analog.com/community/linux-device-drivers
524 F: drivers/gpio/gpio-adp5520.c
525 F: drivers/input/keyboard/adp5520-keys.c
526 F: drivers/leds/leds-adp5520.c
527 F: drivers/mfd/adp5520.c
528 F: drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M: Michael Hennerich <michael.hennerich@analog.com>
532 S: Supported
533 W: http://wiki.analog.com/ADP5588
534 W: http://ez.analog.com/community/linux-device-drivers
535 F: drivers/gpio/gpio-adp5588.c
536 F: drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M: Michael Hennerich <michael.hennerich@analog.com>
540 S: Supported
541 W: http://wiki.analog.com/ADP8860
542 W: http://ez.analog.com/community/linux-device-drivers
543 F: drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M: Colin Leroy <colin@colino.net>
547 S: Maintained
548 F: drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M: Jean Delvare <jdelvare@suse.com>
552 L: linux-hwmon@vger.kernel.org
553 S: Maintained
554 F: Documentation/hwmon/adt7475.rst
555 F: drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M: Matthew Wilcox <willy@infradead.org>
559 M: Hannes Reinecke <hare@suse.com>
560 L: linux-scsi@vger.kernel.org
561 S: Maintained
562 F: Documentation/scsi/advansys.rst
563 F: drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M: Michael Hennerich <michael.hennerich@analog.com>
567 S: Supported
568 W: http://wiki.analog.com/ADXL345
569 W: http://ez.analog.com/community/linux-device-drivers
570 F: Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F: drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M: Michael Hennerich <michael.hennerich@analog.com>
575 S: Supported
576 W: http://ez.analog.com/community/linux-device-drivers
577 F: Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F: drivers/iio/accel/adxl372.c
579 F: drivers/iio/accel/adxl372_i2c.c
580 F: drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M: Antti Palosaari <crope@iki.fi>
584 L: linux-media@vger.kernel.org
585 S: Maintained
586 W: https://linuxtv.org
587 W: http://palosaari.fi/linux/
588 Q: http://patchwork.linuxtv.org/project/linux-media/list/
589 T: git git://linuxtv.org/anttip/media_tree.git
590 F: drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M: Antti Palosaari <crope@iki.fi>
594 L: linux-media@vger.kernel.org
595 S: Maintained
596 W: https://linuxtv.org
597 W: http://palosaari.fi/linux/
598 Q: http://patchwork.linuxtv.org/project/linux-media/list/
599 T: git git://linuxtv.org/anttip/media_tree.git
600 F: drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M: David Sterba <dsterba@suse.com>
604 L: linux-fsdevel@vger.kernel.org
605 S: Odd Fixes
606 F: Documentation/filesystems/affs.rst
607 F: fs/affs/
608
609 AFS FILESYSTEM
610 M: David Howells <dhowells@redhat.com>
611 L: linux-afs@lists.infradead.org
612 S: Supported
613 W: https://www.infradead.org/~dhowells/kafs/
614 F: Documentation/filesystems/afs.rst
615 F: fs/afs/
616 F: include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M: David Airlie <airlied@linux.ie>
620 S: Maintained
621 T: git git://anongit.freedesktop.org/drm/drm
622 F: drivers/char/agp/
623 F: include/linux/agp*
624 F: include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M: "Juergen E. Fischer" <fischer@norbit.de>
628 L: linux-scsi@vger.kernel.org
629 S: Maintained
630 F: drivers/scsi/aha152x*
631 F: drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M: Hannes Reinecke <hare@suse.com>
635 L: linux-scsi@vger.kernel.org
636 S: Maintained
637 F: drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M: Hans Verkuil <hverkuil@xs4all.nl>
641 L: linux-media@vger.kernel.org
642 S: Maintained
643 W: https://linuxtv.org
644 T: git git://linuxtv.org/media_tree.git
645 F: drivers/media/radio/radio-aimslab*
646
647 AIO
648 M: Benjamin LaHaise <bcrl@kvack.org>
649 L: linux-aio@kvack.org
650 S: Supported
651 F: fs/aio.c
652 F: include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M: Antti Palosaari <crope@iki.fi>
656 L: linux-media@vger.kernel.org
657 S: Maintained
658 W: https://linuxtv.org
659 W: http://palosaari.fi/linux/
660 Q: http://patchwork.linuxtv.org/project/linux-media/list/
661 T: git git://linuxtv.org/anttip/media_tree.git
662 F: drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
666 S: Maintained
667 F: drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M: Duncan Sands <duncan.sands@free.fr>
671 L: linux-usb@vger.kernel.org
672 S: Maintained
673 W: http://www.linux-usb.org/SpeedTouch/
674 F: drivers/usb/atm/speedtch.c
675 F: drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M: Manuel Lauss <manuel.lauss@gmail.com>
679 S: Maintained
680 F: drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M: Rudolf Marek <r.marek@assembler.cz>
684 L: linux-i2c@vger.kernel.org
685 S: Maintained
686 F: Documentation/i2c/busses/i2c-ali1563.rst
687 F: drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M: Tomislav Denis <tomislav.denis@avl.com>
691 L: linux-iio@vger.kernel.org
692 S: Maintained
693 W: http://www.allsensors.com/
694 F: Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F: drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M: Michael Tretter <m.tretter@pengutronix.de>
699 R: Pengutronix Kernel Team <kernel@pengutronix.de>
700 L: linux-media@vger.kernel.org
701 S: Maintained
702 F: drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M: Maxime Ripard <mripard@kernel.org>
706 L: linux-media@vger.kernel.org
707 S: Maintained
708 T: git git://linuxtv.org/media_tree.git
709 F: Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F: drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M: Yangtao Li <tiny.windzz@gmail.com>
714 L: linux-pm@vger.kernel.org
715 S: Maintained
716 F: Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F: drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M: Corentin Labbe <clabbe.montjoie@gmail.com>
721 L: linux-crypto@vger.kernel.org
722 S: Maintained
723 F: drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M: Vasily Khoruzhick <anarsoul@gmail.com>
727 M: Yangtao Li <tiny.windzz@gmail.com>
728 L: linux-pm@vger.kernel.org
729 S: Maintained
730 F: Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F: drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M: Maxime Ripard <mripard@kernel.org>
735 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L: linux-media@vger.kernel.org
737 S: Maintained
738 F: drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M: Richard Henderson <rth@twiddle.net>
742 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M: Matt Turner <mattst88@gmail.com>
744 L: linux-alpha@vger.kernel.org
745 S: Odd Fixes
746 F: arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R: Pali Rohár <pali@kernel.org>
750 F: drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M: Thor Thayer <thor.thayer@linux.intel.com>
754 S: Maintained
755 F: Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F: drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M: Ley Foon Tan <ley.foon.tan@intel.com>
760 S: Maintained
761 F: drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M: Joyce Ooi <joyce.ooi@intel.com>
765 L: linux-gpio@vger.kernel.org
766 S: Maintained
767 F: drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M: Thor Thayer <thor.thayer@linux.intel.com>
771 S: Maintained
772 F: drivers/mfd/altera-sysmgr.c
773 F: include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M: Thor Thayer <thor.thayer@linux.intel.com>
777 S: Maintained
778 F: drivers/gpio/gpio-altera-a10sr.c
779 F: drivers/mfd/altera-a10sr.c
780 F: drivers/reset/reset-a10sr.c
781 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F: include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M: Joyce Ooi <joyce.ooi@intel.com>
786 L: netdev@vger.kernel.org
787 S: Maintained
788 F: drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M: Tobias Klauser <tklauser@distanz.ch>
792 L: linux-serial@vger.kernel.org
793 S: Maintained
794 F: drivers/tty/serial/altera_jtaguart.c
795 F: drivers/tty/serial/altera_uart.c
796 F: include/linux/altera_jtaguart.h
797 F: include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M: Talel Shenhar <talel@amazon.com>
801 S: Maintained
802 F: Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F: drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
806 M: Talel Shenhar <talel@amazon.com>
807 M: Talel Shenhar <talelshenhar@gmail.com>
808 S: Maintained
809 F: Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
810 F: drivers/edac/al_mc_edac.c
811
812 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
813 M: Talel Shenhar <talel@amazon.com>
814 S: Maintained
815 F: Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
816 F: drivers/thermal/thermal_mmio.c
817
818 AMAZON ETHERNET DRIVERS
819 M: Netanel Belgazal <netanel@amazon.com>
820 M: Arthur Kiyanovski <akiyano@amazon.com>
821 R: Guy Tzalik <gtzalik@amazon.com>
822 R: Saeed Bishara <saeedb@amazon.com>
823 R: Zorik Machulsky <zorik@amazon.com>
824 L: netdev@vger.kernel.org
825 S: Supported
826 F: Documentation/networking/device_drivers/ethernet/amazon/ena.rst
827 F: drivers/net/ethernet/amazon/
828
829 AMAZON RDMA EFA DRIVER
830 M: Gal Pressman <galpress@amazon.com>
831 R: Yossi Leybovich <sleybo@amazon.com>
832 L: linux-rdma@vger.kernel.org
833 S: Supported
834 Q: https://patchwork.kernel.org/project/linux-rdma/list/
835 F: drivers/infiniband/hw/efa/
836 F: include/uapi/rdma/efa-abi.h
837
838 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
839 M: Tom Lendacky <thomas.lendacky@amd.com>
840 M: John Allen <john.allen@amd.com>
841 L: linux-crypto@vger.kernel.org
842 S: Supported
843 F: drivers/crypto/ccp/
844 F: include/linux/ccp.h
845
846 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
847 M: Brijesh Singh <brijesh.singh@amd.com>
848 M: Tom Lendacky <thomas.lendacky@amd.com>
849 L: linux-crypto@vger.kernel.org
850 S: Supported
851 F: drivers/crypto/ccp/sev*
852 F: include/uapi/linux/psp-sev.h
853
854 AMD DISPLAY CORE
855 M: Harry Wentland <harry.wentland@amd.com>
856 M: Leo Li <sunpeng.li@amd.com>
857 L: amd-gfx@lists.freedesktop.org
858 S: Supported
859 T: git git://people.freedesktop.org/~agd5f/linux
860 F: drivers/gpu/drm/amd/display/
861
862 AMD ENERGY DRIVER
863 M: Naveen Krishna Chatradhi <nchatrad@amd.com>
864 L: linux-hwmon@vger.kernel.org
865 S: Maintained
866 F: Documentation/hwmon/amd_energy.rst
867 F: drivers/hwmon/amd_energy.c
868
869 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
870 M: Huang Rui <ray.huang@amd.com>
871 L: linux-hwmon@vger.kernel.org
872 S: Supported
873 F: Documentation/hwmon/fam15h_power.rst
874 F: drivers/hwmon/fam15h_power.c
875
876 AMD FCH GPIO DRIVER
877 M: Enrico Weigelt, metux IT consult <info@metux.net>
878 L: linux-gpio@vger.kernel.org
879 S: Maintained
880 F: drivers/gpio/gpio-amd-fch.c
881 F: include/linux/platform_data/gpio/gpio-amd-fch.h
882
883 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
884 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
885 S: Orphan
886 F: drivers/usb/gadget/udc/amd5536udc.*
887
888 AMD GEODE PROCESSOR/CHIPSET SUPPORT
889 M: Andres Salomon <dilinger@queued.net>
890 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
891 S: Supported
892 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
893 F: arch/x86/include/asm/geode.h
894 F: drivers/char/hw_random/geode-rng.c
895 F: drivers/crypto/geode*
896 F: drivers/video/fbdev/geode/
897
898 AMD IOMMU (AMD-VI)
899 M: Joerg Roedel <joro@8bytes.org>
900 L: iommu@lists.linux-foundation.org
901 S: Maintained
902 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
903 F: drivers/iommu/amd/
904 F: include/linux/amd-iommu.h
905
906 AMD KFD
907 M: Felix Kuehling <Felix.Kuehling@amd.com>
908 L: amd-gfx@lists.freedesktop.org
909 S: Supported
910 T: git git://people.freedesktop.org/~agd5f/linux
911 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
912 F: drivers/gpu/drm/amd/amdkfd/
913 F: drivers/gpu/drm/amd/include/cik_structs.h
914 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
915 F: drivers/gpu/drm/amd/include/v9_structs.h
916 F: drivers/gpu/drm/amd/include/vi_structs.h
917 F: include/uapi/linux/kfd_ioctl.h
918
919 AMD SPI DRIVER
920 M: Sanjay R Mehta <sanju.mehta@amd.com>
921 S: Maintained
922 F: drivers/spi/spi-amd.c
923
924 AMD MP2 I2C DRIVER
925 M: Elie Morisse <syniurge@gmail.com>
926 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
927 M: Shyam Sundar S K <shyam-sundar.s-k@amd.com>
928 L: linux-i2c@vger.kernel.org
929 S: Maintained
930 F: drivers/i2c/busses/i2c-amd-mp2*
931
932 AMD PMC DRIVER
933 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
934 L: platform-driver-x86@vger.kernel.org
935 S: Maintained
936 F: drivers/platform/x86/amd-pmc.*
937
938 AMD POWERPLAY
939 M: Evan Quan <evan.quan@amd.com>
940 L: amd-gfx@lists.freedesktop.org
941 S: Supported
942 T: git git://people.freedesktop.org/~agd5f/linux
943 F: drivers/gpu/drm/amd/pm/powerplay/
944
945 AMD SEATTLE DEVICE TREE SUPPORT
946 M: Brijesh Singh <brijeshkumar.singh@amd.com>
947 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
948 M: Tom Lendacky <thomas.lendacky@amd.com>
949 S: Supported
950 F: arch/arm64/boot/dts/amd/
951
952 AMD XGBE DRIVER
953 M: Tom Lendacky <thomas.lendacky@amd.com>
954 L: netdev@vger.kernel.org
955 S: Supported
956 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
957 F: drivers/net/ethernet/amd/xgbe/
958
959 AMD SENSOR FUSION HUB DRIVER
960 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
961 M: Sandeep Singh <sandeep.singh@amd.com>
962 L: linux-input@vger.kernel.org
963 S: Maintained
964 F: Documentation/hid/amd-sfh*
965 F: drivers/hid/amd-sfh-hid/
966
967 AMS AS73211 DRIVER
968 M: Christian Eggers <ceggers@arri.de>
969 L: linux-iio@vger.kernel.org
970 S: Maintained
971 F: Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
972 F: drivers/iio/light/as73211.c
973
974 ANALOG DEVICES INC AD7192 DRIVER
975 M: Alexandru Tachici <alexandru.tachici@analog.com>
976 L: linux-iio@vger.kernel.org
977 S: Supported
978 W: http://ez.analog.com/community/linux-device-drivers
979 F: Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
980 F: drivers/iio/adc/ad7192.c
981
982 ANALOG DEVICES INC AD7292 DRIVER
983 M: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
984 L: linux-iio@vger.kernel.org
985 S: Supported
986 W: http://ez.analog.com/community/linux-device-drivers
987 F: Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
988 F: drivers/iio/adc/ad7292.c
989
990 ANALOG DEVICES INC AD7768-1 DRIVER
991 M: Michael Hennerich <Michael.Hennerich@analog.com>
992 L: linux-iio@vger.kernel.org
993 S: Supported
994 W: http://ez.analog.com/community/linux-device-drivers
995 F: Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
996 F: drivers/iio/adc/ad7768-1.c
997
998 ANALOG DEVICES INC AD7780 DRIVER
999 M: Michael Hennerich <Michael.Hennerich@analog.com>
1000 M: Renato Lui Geh <renatogeh@gmail.com>
1001 L: linux-iio@vger.kernel.org
1002 S: Supported
1003 W: http://ez.analog.com/community/linux-device-drivers
1004 F: Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1005 F: drivers/iio/adc/ad7780.c
1006
1007 ANALOG DEVICES INC AD9389B DRIVER
1008 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1009 L: linux-media@vger.kernel.org
1010 S: Maintained
1011 F: drivers/media/i2c/ad9389b*
1012
1013 ANALOG DEVICES INC ADGS1408 DRIVER
1014 M: Mircea Caprioru <mircea.caprioru@analog.com>
1015 S: Supported
1016 F: Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1017 F: drivers/mux/adgs1408.c
1018
1019 ANALOG DEVICES INC ADIN DRIVER
1020 M: Alexandru Ardelean <alexaundru.ardelean@analog.com>
1021 L: netdev@vger.kernel.org
1022 S: Supported
1023 W: http://ez.analog.com/community/linux-device-drivers
1024 F: Documentation/devicetree/bindings/net/adi,adin.yaml
1025 F: drivers/net/phy/adin.c
1026
1027 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1028 M: Alexandru Ardelean <alexandru.ardelean@analog.com>
1029 L: linux-iio@vger.kernel.org
1030 S: Supported
1031 F: drivers/iio/imu/adis.c
1032 F: include/linux/iio/imu/adis.h
1033
1034 ANALOG DEVICES INC ADIS16460 DRIVER
1035 M: Dragos Bogdan <dragos.bogdan@analog.com>
1036 L: linux-iio@vger.kernel.org
1037 S: Supported
1038 W: http://ez.analog.com/community/linux-device-drivers
1039 F: Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1040 F: drivers/iio/imu/adis16460.c
1041
1042 ANALOG DEVICES INC ADIS16475 DRIVER
1043 M: Nuno Sa <nuno.sa@analog.com>
1044 L: linux-iio@vger.kernel.org
1045 W: http://ez.analog.com/community/linux-device-drivers
1046 S: Supported
1047 F: drivers/iio/imu/adis16475.c
1048 F: Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1049
1050 ANALOG DEVICES INC ADM1177 DRIVER
1051 M: Michael Hennerich <Michael.Hennerich@analog.com>
1052 L: linux-hwmon@vger.kernel.org
1053 S: Supported
1054 W: http://ez.analog.com/community/linux-device-drivers
1055 F: Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1056 F: drivers/hwmon/adm1177.c
1057
1058 ANALOG DEVICES INC ADP5061 DRIVER
1059 M: Michael Hennerich <Michael.Hennerich@analog.com>
1060 L: linux-pm@vger.kernel.org
1061 S: Supported
1062 W: http://ez.analog.com/community/linux-device-drivers
1063 F: drivers/power/supply/adp5061.c
1064
1065 ANALOG DEVICES INC ADV7180 DRIVER
1066 M: Lars-Peter Clausen <lars@metafoo.de>
1067 L: linux-media@vger.kernel.org
1068 S: Supported
1069 W: http://ez.analog.com/community/linux-device-drivers
1070 F: drivers/media/i2c/adv7180.c
1071 F: Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1072
1073 ANALOG DEVICES INC ADV748X DRIVER
1074 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
1075 L: linux-media@vger.kernel.org
1076 S: Maintained
1077 F: drivers/media/i2c/adv748x/*
1078
1079 ANALOG DEVICES INC ADV7511 DRIVER
1080 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1081 L: linux-media@vger.kernel.org
1082 S: Maintained
1083 F: drivers/media/i2c/adv7511*
1084
1085 ANALOG DEVICES INC ADV7604 DRIVER
1086 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1087 L: linux-media@vger.kernel.org
1088 S: Maintained
1089 F: drivers/media/i2c/adv7604*
1090 F: Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1091
1092 ANALOG DEVICES INC ADV7842 DRIVER
1093 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1094 L: linux-media@vger.kernel.org
1095 S: Maintained
1096 F: drivers/media/i2c/adv7842*
1097
1098 ANALOG DEVICES INC ADXRS290 DRIVER
1099 M: Nishant Malpani <nish.malpani25@gmail.com>
1100 L: linux-iio@vger.kernel.org
1101 S: Supported
1102 F: drivers/iio/gyro/adxrs290.c
1103 F: Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1104
1105 ANALOG DEVICES INC ASOC CODEC DRIVERS
1106 M: Lars-Peter Clausen <lars@metafoo.de>
1107 M: Nuno Sá <nuno.sa@analog.com>
1108 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1109 S: Supported
1110 W: http://wiki.analog.com/
1111 W: http://ez.analog.com/community/linux-device-drivers
1112 F: sound/soc/codecs/ad1*
1113 F: sound/soc/codecs/ad7*
1114 F: sound/soc/codecs/adau*
1115 F: sound/soc/codecs/adav*
1116 F: sound/soc/codecs/sigmadsp.*
1117 F: sound/soc/codecs/ssm*
1118
1119 ANALOG DEVICES INC DMA DRIVERS
1120 M: Lars-Peter Clausen <lars@metafoo.de>
1121 S: Supported
1122 W: http://ez.analog.com/community/linux-device-drivers
1123 F: drivers/dma/dma-axi-dmac.c
1124
1125 ANALOG DEVICES INC IIO DRIVERS
1126 M: Lars-Peter Clausen <lars@metafoo.de>
1127 M: Michael Hennerich <Michael.Hennerich@analog.com>
1128 S: Supported
1129 W: http://wiki.analog.com/
1130 W: http://ez.analog.com/community/linux-device-drivers
1131 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1132 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1133 F: Documentation/devicetree/bindings/iio/*/adi,*
1134 F: Documentation/devicetree/bindings/iio/dac/ad5758.txt
1135 F: drivers/iio/*/ad*
1136 F: drivers/iio/adc/ltc249*
1137 F: drivers/iio/amplifiers/hmc425a.c
1138 F: drivers/staging/iio/*/ad*
1139 X: drivers/iio/*/adjd*
1140
1141 ANALOGBITS PLL LIBRARIES
1142 M: Paul Walmsley <paul.walmsley@sifive.com>
1143 S: Supported
1144 F: drivers/clk/analogbits/*
1145 F: include/linux/clk/analogbits*
1146
1147 ANDES ARCHITECTURE
1148 M: Nick Hu <nickhu@andestech.com>
1149 M: Greentime Hu <green.hu@gmail.com>
1150 M: Vincent Chen <deanbo422@gmail.com>
1151 S: Supported
1152 T: git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1153 F: Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1154 F: Documentation/devicetree/bindings/nds32/
1155 F: arch/nds32/
1156 N: nds32
1157 K: nds32
1158
1159 ANDROID CONFIG FRAGMENTS
1160 M: Rob Herring <robh@kernel.org>
1161 S: Supported
1162 F: kernel/configs/android*
1163
1164 ANDROID DRIVERS
1165 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1166 M: Arve Hjønnevåg <arve@android.com>
1167 M: Todd Kjos <tkjos@android.com>
1168 M: Martijn Coenen <maco@android.com>
1169 M: Joel Fernandes <joel@joelfernandes.org>
1170 M: Christian Brauner <christian@brauner.io>
1171 M: Hridya Valsaraju <hridya@google.com>
1172 M: Suren Baghdasaryan <surenb@google.com>
1173 L: devel@driverdev.osuosl.org
1174 S: Supported
1175 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1176 F: drivers/android/
1177 F: drivers/staging/android/
1178
1179 ANDROID GOLDFISH PIC DRIVER
1180 M: Miodrag Dinic <miodrag.dinic@mips.com>
1181 S: Supported
1182 F: Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1183 F: drivers/irqchip/irq-goldfish-pic.c
1184
1185 ANDROID GOLDFISH RTC DRIVER
1186 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
1187 S: Supported
1188 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1189 F: drivers/rtc/rtc-goldfish.c
1190
1191 AOA (Apple Onboard Audio) ALSA DRIVER
1192 M: Johannes Berg <johannes@sipsolutions.net>
1193 L: linuxppc-dev@lists.ozlabs.org
1194 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1195 S: Maintained
1196 F: sound/aoa/
1197
1198 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1199 M: William Breathitt Gray <vilhelm.gray@gmail.com>
1200 L: linux-iio@vger.kernel.org
1201 S: Maintained
1202 F: drivers/iio/adc/stx104.c
1203
1204 APM DRIVER
1205 M: Jiri Kosina <jikos@kernel.org>
1206 S: Odd fixes
1207 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1208 F: arch/x86/kernel/apm_32.c
1209 F: drivers/char/apm-emulation.c
1210 F: include/linux/apm_bios.h
1211 F: include/uapi/linux/apm_bios.h
1212
1213 APPARMOR SECURITY MODULE
1214 M: John Johansen <john.johansen@canonical.com>
1215 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1216 S: Supported
1217 W: wiki.apparmor.net
1218 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1219 F: Documentation/admin-guide/LSM/apparmor.rst
1220 F: security/apparmor/
1221
1222 APPLE BCM5974 MULTITOUCH DRIVER
1223 M: Henrik Rydberg <rydberg@bitmath.org>
1224 L: linux-input@vger.kernel.org
1225 S: Odd fixes
1226 F: drivers/input/mouse/bcm5974.c
1227
1228 APPLE SMC DRIVER
1229 M: Henrik Rydberg <rydberg@bitmath.org>
1230 L: linux-hwmon@vger.kernel.org
1231 S: Odd fixes
1232 F: drivers/hwmon/applesmc.c
1233
1234 APPLETALK NETWORK LAYER
1235 L: netdev@vger.kernel.org
1236 S: Odd fixes
1237 F: drivers/net/appletalk/
1238 F: include/linux/atalk.h
1239 F: include/uapi/linux/atalk.h
1240 F: net/appletalk/
1241
1242 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1243 M: Khuong Dinh <khuong@os.amperecomputing.com>
1244 S: Supported
1245 F: arch/arm64/boot/dts/apm/
1246
1247 APPLIED MICRO (APM) X-GENE SOC EDAC
1248 M: Khuong Dinh <khuong@os.amperecomputing.com>
1249 S: Supported
1250 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1251 F: drivers/edac/xgene_edac.c
1252
1253 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1254 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1255 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1256 S: Supported
1257 F: drivers/net/ethernet/apm/xgene-v2/
1258
1259 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1260 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1261 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1262 M: Quan Nguyen <quan@os.amperecomputing.com>
1263 S: Supported
1264 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1265 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1266 F: drivers/net/ethernet/apm/xgene/
1267 F: drivers/net/mdio/mdio-xgene.c
1268
1269 APPLIED MICRO (APM) X-GENE SOC PMU
1270 M: Khuong Dinh <khuong@os.amperecomputing.com>
1271 S: Supported
1272 F: Documentation/admin-guide/perf/xgene-pmu.rst
1273 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1274 F: drivers/perf/xgene_pmu.c
1275
1276 APTINA CAMERA SENSOR PLL
1277 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1278 L: linux-media@vger.kernel.org
1279 S: Maintained
1280 F: drivers/media/i2c/aptina-pll.*
1281
1282 AQUANTIA ETHERNET DRIVER (atlantic)
1283 M: Igor Russkikh <irusskikh@marvell.com>
1284 L: netdev@vger.kernel.org
1285 S: Supported
1286 W: https://www.marvell.com/
1287 Q: https://patchwork.kernel.org/project/netdevbpf/list/
1288 F: Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1289 F: drivers/net/ethernet/aquantia/atlantic/
1290
1291 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1292 M: Egor Pomozov <epomozov@marvell.com>
1293 L: netdev@vger.kernel.org
1294 S: Supported
1295 W: http://www.aquantia.com
1296 F: drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1297
1298 ARASAN NAND CONTROLLER DRIVER
1299 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1300 L: linux-mtd@lists.infradead.org
1301 S: Maintained
1302 F: Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1303 F: drivers/mtd/nand/raw/arasan-nand-controller.c
1304
1305 ARC FRAMEBUFFER DRIVER
1306 M: Jaya Kumar <jayalk@intworks.biz>
1307 S: Maintained
1308 F: drivers/video/fbdev/arcfb.c
1309 F: drivers/video/fbdev/core/fb_defio.c
1310
1311 ARC PGU DRM DRIVER
1312 M: Alexey Brodkin <abrodkin@synopsys.com>
1313 S: Supported
1314 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
1315 F: drivers/gpu/drm/arc/
1316
1317 ARCNET NETWORK LAYER
1318 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
1319 L: netdev@vger.kernel.org
1320 S: Maintained
1321 F: drivers/net/arcnet/
1322 F: include/uapi/linux/if_arcnet.h
1323
1324 ARM ARCHITECTED TIMER DRIVER
1325 M: Mark Rutland <mark.rutland@arm.com>
1326 M: Marc Zyngier <maz@kernel.org>
1327 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1328 S: Maintained
1329 F: arch/arm/include/asm/arch_timer.h
1330 F: arch/arm64/include/asm/arch_timer.h
1331 F: drivers/clocksource/arm_arch_timer.c
1332
1333 ARM HDLCD DRM DRIVER
1334 M: Liviu Dudau <liviu.dudau@arm.com>
1335 S: Supported
1336 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
1337 F: drivers/gpu/drm/arm/hdlcd_*
1338
1339 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1340 M: Linus Walleij <linus.walleij@linaro.org>
1341 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342 S: Maintained
1343 F: Documentation/devicetree/bindings/arm/arm,integrator.yaml
1344 F: Documentation/devicetree/bindings/arm/arm,realview.yaml
1345 F: Documentation/devicetree/bindings/arm/arm,versatile.yaml
1346 F: Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1347 F: Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1348 F: Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1349 F: Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1350 F: Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1351 F: Documentation/devicetree/bindings/mtd/arm-versatile.txt
1352 F: arch/arm/boot/dts/arm-realview-*
1353 F: arch/arm/boot/dts/integrator*
1354 F: arch/arm/boot/dts/versatile*
1355 F: arch/arm/mach-integrator/
1356 F: arch/arm/mach-realview/
1357 F: arch/arm/mach-versatile/
1358 F: arch/arm/plat-versatile/
1359 F: drivers/bus/arm-integrator-lm.c
1360 F: drivers/clk/versatile/
1361 F: drivers/i2c/busses/i2c-versatile.c
1362 F: drivers/irqchip/irq-versatile-fpga.c
1363 F: drivers/mtd/maps/physmap-versatile.*
1364 F: drivers/power/reset/arm-versatile-reboot.c
1365 F: drivers/soc/versatile/
1366
1367 ARM KOMEDA DRM-KMS DRIVER
1368 M: James (Qian) Wang <james.qian.wang@arm.com>
1369 M: Liviu Dudau <liviu.dudau@arm.com>
1370 M: Mihail Atanassov <mihail.atanassov@arm.com>
1371 L: Mali DP Maintainers <malidp@foss.arm.com>
1372 S: Supported
1373 T: git git://anongit.freedesktop.org/drm/drm-misc
1374 F: Documentation/devicetree/bindings/display/arm,komeda.txt
1375 F: Documentation/gpu/komeda-kms.rst
1376 F: drivers/gpu/drm/arm/display/include/
1377 F: drivers/gpu/drm/arm/display/komeda/
1378
1379 ARM MALI PANFROST DRM DRIVER
1380 M: Rob Herring <robh@kernel.org>
1381 M: Tomeu Vizoso <tomeu.vizoso@collabora.com>
1382 R: Steven Price <steven.price@arm.com>
1383 R: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1384 L: dri-devel@lists.freedesktop.org
1385 S: Supported
1386 T: git git://anongit.freedesktop.org/drm/drm-misc
1387 F: drivers/gpu/drm/panfrost/
1388 F: include/uapi/drm/panfrost_drm.h
1389
1390 ARM MALI-DP DRM DRIVER
1391 M: Liviu Dudau <liviu.dudau@arm.com>
1392 M: Brian Starkey <brian.starkey@arm.com>
1393 L: Mali DP Maintainers <malidp@foss.arm.com>
1394 S: Supported
1395 T: git git://anongit.freedesktop.org/drm/drm-misc
1396 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1397 F: Documentation/gpu/afbc.rst
1398 F: drivers/gpu/drm/arm/
1399
1400 ARM MFM AND FLOPPY DRIVERS
1401 M: Ian Molton <spyro@f2s.com>
1402 S: Maintained
1403 F: arch/arm/include/asm/floppy.h
1404 F: arch/arm/mach-rpc/floppydma.S
1405
1406 ARM PMU PROFILING AND DEBUGGING
1407 M: Will Deacon <will@kernel.org>
1408 M: Mark Rutland <mark.rutland@arm.com>
1409 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1410 S: Maintained
1411 F: Documentation/devicetree/bindings/arm/pmu.yaml
1412 F: Documentation/devicetree/bindings/perf/
1413 F: arch/arm*/include/asm/hw_breakpoint.h
1414 F: arch/arm*/include/asm/perf_event.h
1415 F: arch/arm*/kernel/hw_breakpoint.c
1416 F: arch/arm*/kernel/perf_*
1417 F: arch/arm/oprofile/common.c
1418 F: drivers/perf/
1419 F: include/linux/perf/arm_pmu.h
1420
1421 ARM PORT
1422 M: Russell King <linux@armlinux.org.uk>
1423 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1424 S: Odd Fixes
1425 W: http://www.armlinux.org.uk/
1426 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1427 F: arch/arm/
1428 X: arch/arm/boot/dts/
1429
1430 ARM PRIMECELL AACI PL041 DRIVER
1431 M: Russell King <linux@armlinux.org.uk>
1432 S: Odd Fixes
1433 F: sound/arm/aaci.*
1434
1435 ARM PRIMECELL BUS SUPPORT
1436 M: Russell King <linux@armlinux.org.uk>
1437 S: Odd Fixes
1438 F: drivers/amba/
1439 F: include/linux/amba/bus.h
1440
1441 ARM PRIMECELL CLCD PL110 DRIVER
1442 M: Russell King <linux@armlinux.org.uk>
1443 S: Odd Fixes
1444 F: drivers/video/fbdev/amba-clcd.*
1445
1446 ARM PRIMECELL KMI PL050 DRIVER
1447 M: Russell King <linux@armlinux.org.uk>
1448 S: Odd Fixes
1449 F: drivers/input/serio/ambakmi.*
1450 F: include/linux/amba/kmi.h
1451
1452 ARM PRIMECELL MMCI PL180/1 DRIVER
1453 M: Russell King <linux@armlinux.org.uk>
1454 S: Odd Fixes
1455 F: drivers/mmc/host/mmci.*
1456 F: include/linux/amba/mmci.h
1457
1458 ARM PRIMECELL SSP PL022 SPI DRIVER
1459 M: Linus Walleij <linus.walleij@linaro.org>
1460 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1461 S: Maintained
1462 F: Documentation/devicetree/bindings/spi/spi-pl022.yaml
1463 F: drivers/spi/spi-pl022.c
1464
1465 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1466 M: Russell King <linux@armlinux.org.uk>
1467 S: Odd Fixes
1468 F: drivers/tty/serial/amba-pl01*.c
1469 F: include/linux/amba/serial.h
1470
1471 ARM PRIMECELL VIC PL190/PL192 DRIVER
1472 M: Linus Walleij <linus.walleij@linaro.org>
1473 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 S: Maintained
1475 F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1476 F: drivers/irqchip/irq-vic.c
1477
1478 ARM SMC WATCHDOG DRIVER
1479 M: Julius Werner <jwerner@chromium.org>
1480 R: Evan Benn <evanbenn@chromium.org>
1481 S: Maintained
1482 F: Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1483 F: drivers/watchdog/arm_smc_wdt.c
1484
1485 ARM SMMU DRIVERS
1486 M: Will Deacon <will@kernel.org>
1487 R: Robin Murphy <robin.murphy@arm.com>
1488 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1489 S: Maintained
1490 F: Documentation/devicetree/bindings/iommu/arm,smmu*
1491 F: drivers/iommu/arm/
1492 F: drivers/iommu/io-pgtable-arm*
1493
1494 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1495 M: Arnd Bergmann <arnd@arndb.de>
1496 M: Olof Johansson <olof@lixom.net>
1497 M: soc@kernel.org
1498 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1499 S: Maintained
1500 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1501 F: arch/arm/boot/dts/Makefile
1502 F: arch/arm64/boot/dts/Makefile
1503
1504 ARM SUB-ARCHITECTURES
1505 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506 S: Maintained
1507 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1508 F: arch/arm/mach-*/
1509 F: arch/arm/plat-*/
1510
1511 ARM/ACTIONS SEMI ARCHITECTURE
1512 M: Andreas Färber <afaerber@suse.de>
1513 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1514 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1515 S: Maintained
1516 F: Documentation/devicetree/bindings/arm/actions.yaml
1517 F: Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1518 F: Documentation/devicetree/bindings/dma/owl-dma.yaml
1519 F: Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1520 F: Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1521 F: Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1522 F: Documentation/devicetree/bindings/pinctrl/actions,*
1523 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1524 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1525 F: arch/arm/boot/dts/owl-*
1526 F: arch/arm/mach-actions/
1527 F: arch/arm64/boot/dts/actions/
1528 F: drivers/clk/actions/
1529 F: drivers/clocksource/timer-owl*
1530 F: drivers/dma/owl-dma.c
1531 F: drivers/i2c/busses/i2c-owl.c
1532 F: drivers/irqchip/irq-owl-sirq.c
1533 F: drivers/mmc/host/owl-mmc.c
1534 F: drivers/pinctrl/actions/*
1535 F: drivers/soc/actions/
1536 F: include/dt-bindings/power/owl-*
1537 F: include/dt-bindings/reset/actions,*
1538 F: include/linux/soc/actions/
1539 N: owl
1540
1541 ARM/ADS SPHERE MACHINE SUPPORT
1542 M: Lennert Buytenhek <kernel@wantstofly.org>
1543 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1544 S: Maintained
1545
1546 ARM/AFEB9260 MACHINE SUPPORT
1547 M: Sergey Lapin <slapin@ossfans.org>
1548 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1549 S: Maintained
1550
1551 ARM/AJECO 1ARM MACHINE SUPPORT
1552 M: Lennert Buytenhek <kernel@wantstofly.org>
1553 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554 S: Maintained
1555
1556 ARM/Allwinner SoC Clock Support
1557 M: Emilio López <emilio@elopez.com.ar>
1558 S: Maintained
1559 F: drivers/clk/sunxi/
1560
1561 ARM/Allwinner sunXi SoC support
1562 M: Maxime Ripard <mripard@kernel.org>
1563 M: Chen-Yu Tsai <wens@csie.org>
1564 R: Jernej Skrabec <jernej.skrabec@siol.net>
1565 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S: Maintained
1567 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1568 F: arch/arm/mach-sunxi/
1569 F: arch/arm64/boot/dts/allwinner/
1570 F: drivers/clk/sunxi-ng/
1571 F: drivers/pinctrl/sunxi/
1572 F: drivers/soc/sunxi/
1573 N: sun[x456789]i
1574 N: sun50i
1575
1576 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1577 M: Neil Armstrong <narmstrong@baylibre.com>
1578 M: Jerome Brunet <jbrunet@baylibre.com>
1579 L: linux-amlogic@lists.infradead.org
1580 S: Maintained
1581 F: Documentation/devicetree/bindings/clock/amlogic*
1582 F: drivers/clk/meson/
1583 F: include/dt-bindings/clock/gxbb*
1584 F: include/dt-bindings/clock/meson*
1585
1586 ARM/Amlogic Meson SoC Crypto Drivers
1587 M: Corentin Labbe <clabbe@baylibre.com>
1588 L: linux-crypto@vger.kernel.org
1589 L: linux-amlogic@lists.infradead.org
1590 S: Maintained
1591 F: Documentation/devicetree/bindings/crypto/amlogic*
1592 F: drivers/crypto/amlogic/
1593
1594 ARM/Amlogic Meson SoC Sound Drivers
1595 M: Jerome Brunet <jbrunet@baylibre.com>
1596 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1597 S: Maintained
1598 F: Documentation/devicetree/bindings/sound/amlogic*
1599 F: sound/soc/meson/
1600
1601 ARM/Amlogic Meson SoC support
1602 M: Kevin Hilman <khilman@baylibre.com>
1603 R: Neil Armstrong <narmstrong@baylibre.com>
1604 R: Jerome Brunet <jbrunet@baylibre.com>
1605 R: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1606 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 L: linux-amlogic@lists.infradead.org
1608 S: Maintained
1609 W: http://linux-meson.com/
1610 F: arch/arm/boot/dts/meson*
1611 F: arch/arm/mach-meson/
1612 F: arch/arm64/boot/dts/amlogic/
1613 F: drivers/mmc/host/meson*
1614 F: drivers/pinctrl/meson/
1615 F: drivers/rtc/rtc-meson*
1616 F: drivers/soc/amlogic/
1617 N: meson
1618
1619 ARM/Annapurna Labs ALPINE ARCHITECTURE
1620 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1621 M: Antoine Tenart <atenart@kernel.org>
1622 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1623 S: Maintained
1624 F: arch/arm/boot/dts/alpine*
1625 F: arch/arm/mach-alpine/
1626 F: arch/arm64/boot/dts/amazon/
1627 F: drivers/*/*alpine*
1628
1629 ARM/ARTPEC MACHINE SUPPORT
1630 M: Jesper Nilsson <jesper.nilsson@axis.com>
1631 M: Lars Persson <lars.persson@axis.com>
1632 L: linux-arm-kernel@axis.com
1633 S: Maintained
1634 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1635 F: arch/arm/boot/dts/artpec6*
1636 F: arch/arm/mach-artpec
1637 F: drivers/clk/axis
1638 F: drivers/crypto/axis
1639 F: drivers/mmc/host/usdhi6rol0.c
1640 F: drivers/pinctrl/pinctrl-artpec*
1641
1642 ARM/ASPEED I2C DRIVER
1643 M: Brendan Higgins <brendanhiggins@google.com>
1644 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1645 R: Joel Stanley <joel@jms.id.au>
1646 L: linux-i2c@vger.kernel.org
1647 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1648 S: Maintained
1649 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1650 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1651 F: drivers/i2c/busses/i2c-aspeed.c
1652 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1653
1654 ARM/ASPEED MACHINE SUPPORT
1655 M: Joel Stanley <joel@jms.id.au>
1656 R: Andrew Jeffery <andrew@aj.id.au>
1657 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1659 S: Supported
1660 Q: https://patchwork.ozlabs.org/project/linux-aspeed/list/
1661 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1662 F: arch/arm/boot/dts/aspeed-*
1663 F: arch/arm/mach-aspeed/
1664 N: aspeed
1665
1666 ARM/BITMAIN ARCHITECTURE
1667 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1668 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 S: Maintained
1670 F: Documentation/devicetree/bindings/arm/bitmain.yaml
1671 F: Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1672 F: Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1673 F: arch/arm64/boot/dts/bitmain/
1674 F: drivers/clk/clk-bm1880.c
1675 F: drivers/pinctrl/pinctrl-bm1880.c
1676
1677 ARM/CALXEDA HIGHBANK ARCHITECTURE
1678 M: Andre Przywara <andre.przywara@arm.com>
1679 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1680 S: Maintained
1681 F: arch/arm/boot/dts/ecx-*.dts*
1682 F: arch/arm/boot/dts/highbank.dts
1683 F: arch/arm/mach-highbank/
1684
1685 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1686 M: Krzysztof Halasa <khalasa@piap.pl>
1687 S: Maintained
1688 F: arch/arm/mach-cns3xxx/
1689
1690 ARM/CAVIUM THUNDER NETWORK DRIVER
1691 M: Sunil Goutham <sgoutham@marvell.com>
1692 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1693 S: Supported
1694 F: drivers/net/ethernet/cavium/thunder/
1695
1696 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1697 M: Lukasz Majewski <lukma@denx.de>
1698 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 S: Maintained
1700 F: arch/arm/mach-ep93xx/ts72xx.c
1701
1702 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1703 M: Alexander Shiyan <shc_work@mail.ru>
1704 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 S: Odd Fixes
1706 N: clps711x
1707
1708 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1709 M: Lennert Buytenhek <kernel@wantstofly.org>
1710 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1711 S: Maintained
1712
1713 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1714 M: Hartley Sweeten <hsweeten@visionengravers.com>
1715 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1716 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717 S: Maintained
1718 F: arch/arm/mach-ep93xx/
1719 F: arch/arm/mach-ep93xx/include/mach/
1720
1721 ARM/CLKDEV SUPPORT
1722 M: Russell King <linux@armlinux.org.uk>
1723 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 S: Maintained
1725 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1726 F: drivers/clk/clkdev.c
1727
1728 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1729 M: Baruch Siach <baruch@tkos.co.il>
1730 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 S: Maintained
1732 F: arch/arm/boot/dts/cx92755*
1733 N: digicolor
1734
1735 ARM/CONTEC MICRO9 MACHINE SUPPORT
1736 M: Hubert Feurstein <hubert.feurstein@contec.at>
1737 S: Maintained
1738 F: arch/arm/mach-ep93xx/micro9.c
1739
1740 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1741 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1742 M: Suzuki K Poulose <suzuki.poulose@arm.com>
1743 R: Mike Leach <mike.leach@linaro.org>
1744 R: Leo Yan <leo.yan@linaro.org>
1745 L: coresight@lists.linaro.org (moderated for non-subscribers)
1746 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S: Maintained
1748 T: git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1749 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1750 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1751 F: Documentation/devicetree/bindings/arm/coresight-cti.yaml
1752 F: Documentation/devicetree/bindings/arm/coresight.txt
1753 F: Documentation/trace/coresight/*
1754 F: drivers/hwtracing/coresight/*
1755 F: include/dt-bindings/arm/coresight-cti-dt.h
1756 F: tools/perf/arch/arm/util/auxtrace.c
1757 F: tools/perf/arch/arm/util/cs-etm.c
1758 F: tools/perf/arch/arm/util/cs-etm.h
1759 F: tools/perf/arch/arm/util/pmu.c
1760 F: tools/perf/util/cs-etm-decoder/*
1761 F: tools/perf/util/cs-etm.*
1762
1763 ARM/CORGI MACHINE SUPPORT
1764 M: Richard Purdie <rpurdie@rpsys.net>
1765 S: Maintained
1766
1767 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1768 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1769 M: Linus Walleij <linus.walleij@linaro.org>
1770 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S: Maintained
1772 T: git git://github.com/ulli-kroll/linux.git
1773 F: Documentation/devicetree/bindings/arm/gemini.txt
1774 F: Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1775 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1776 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1777 F: arch/arm/mach-gemini/
1778 F: drivers/net/ethernet/cortina/
1779 F: drivers/pinctrl/pinctrl-gemini.c
1780 F: drivers/rtc/rtc-ftrtc010.c
1781
1782 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1783 M: Barry Song <baohua@kernel.org>
1784 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785 S: Maintained
1786 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1787 F: arch/arm/boot/dts/prima2*
1788 F: arch/arm/mach-prima2/
1789 F: drivers/clk/sirf/
1790 F: drivers/clocksource/timer-atlas7.c
1791 F: drivers/clocksource/timer-prima2.c
1792 X: drivers/gnss
1793 N: [^a-z]sirf
1794
1795 ARM/CZ.NIC TURRIS MOX SUPPORT
1796 M: Marek Behun <marek.behun@nic.cz>
1797 S: Maintained
1798 W: http://mox.turris.cz
1799 F: Documentation/ABI/testing/debugfs-moxtet
1800 F: Documentation/ABI/testing/sysfs-bus-moxtet-devices
1801 F: Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1802 F: Documentation/devicetree/bindings/bus/moxtet.txt
1803 F: Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1804 F: Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1805 F: drivers/bus/moxtet.c
1806 F: drivers/firmware/turris-mox-rwtm.c
1807 F: drivers/gpio/gpio-moxtet.c
1808 F: include/linux/moxtet.h
1809
1810 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1811 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1812 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1813 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S: Maintained
1815 N: efm32
1816
1817 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1818 M: Robert Jarzmik <robert.jarzmik@free.fr>
1819 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S: Maintained
1821 F: arch/arm/mach-pxa/ezx.c
1822
1823 ARM/FARADAY FA526 PORT
1824 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1825 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S: Maintained
1827 T: git git://git.berlios.de/gemini-board
1828 F: arch/arm/mm/*-fa*
1829
1830 ARM/FOOTBRIDGE ARCHITECTURE
1831 M: Russell King <linux@armlinux.org.uk>
1832 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 S: Maintained
1834 W: http://www.armlinux.org.uk/
1835 F: arch/arm/include/asm/hardware/dec21285.h
1836 F: arch/arm/mach-footbridge/
1837
1838 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1839 M: Shawn Guo <shawnguo@kernel.org>
1840 M: Sascha Hauer <s.hauer@pengutronix.de>
1841 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1842 R: Fabio Estevam <festevam@gmail.com>
1843 R: NXP Linux Team <linux-imx@nxp.com>
1844 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S: Maintained
1846 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1847 X: drivers/media/i2c/
1848 N: imx
1849 N: mxs
1850
1851 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1852 M: Shawn Guo <shawnguo@kernel.org>
1853 M: Li Yang <leoyang.li@nxp.com>
1854 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S: Maintained
1856 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1857 F: arch/arm/boot/dts/ls1021a*
1858 F: arch/arm64/boot/dts/freescale/fsl-*
1859 F: arch/arm64/boot/dts/freescale/qoriq-*
1860
1861 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1862 M: Shawn Guo <shawnguo@kernel.org>
1863 M: Sascha Hauer <s.hauer@pengutronix.de>
1864 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1865 R: Stefan Agner <stefan@agner.ch>
1866 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S: Maintained
1868 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1869 F: arch/arm/boot/dts/vf*
1870 F: arch/arm/mach-imx/*vf610*
1871
1872 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1873 M: Lennert Buytenhek <kernel@wantstofly.org>
1874 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1875 S: Maintained
1876
1877 ARM/GUMSTIX MACHINE SUPPORT
1878 M: Steve Sakoman <sakoman@gmail.com>
1879 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S: Maintained
1881
1882 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1883 M: Philipp Zabel <philipp.zabel@gmail.com>
1884 M: Paul Parsons <lost.distance@yahoo.com>
1885 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S: Maintained
1887 F: arch/arm/mach-pxa/hx4700.c
1888 F: arch/arm/mach-pxa/include/mach/hx4700.h
1889 F: sound/soc/pxa/hx4700.c
1890
1891 ARM/HISILICON SOC SUPPORT
1892 M: Wei Xu <xuwei5@hisilicon.com>
1893 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 S: Supported
1895 W: http://www.hisilicon.com
1896 T: git git://github.com/hisilicon/linux-hisi.git
1897 F: arch/arm/boot/dts/hi3*
1898 F: arch/arm/boot/dts/hip*
1899 F: arch/arm/boot/dts/hisi*
1900 F: arch/arm/mach-hisi/
1901 F: arch/arm64/boot/dts/hisilicon/
1902
1903 ARM/HP JORNADA 7XX MACHINE SUPPORT
1904 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1905 S: Maintained
1906 W: www.jlime.com
1907 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1908 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1909 F: arch/arm/mach-sa1100/jornada720.c
1910
1911 ARM/IGEP MACHINE SUPPORT
1912 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1913 M: Javier Martinez Canillas <javier@dowhile0.org>
1914 L: linux-omap@vger.kernel.org
1915 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 S: Maintained
1917 F: arch/arm/boot/dts/omap3-igep*
1918
1919 ARM/INCOME PXA270 SUPPORT
1920 M: Marek Vasut <marek.vasut@gmail.com>
1921 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S: Maintained
1923 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1924
1925 ARM/INTEL IOP32X ARM ARCHITECTURE
1926 M: Lennert Buytenhek <kernel@wantstofly.org>
1927 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S: Maintained
1929
1930 ARM/INTEL IQ81342EX MACHINE SUPPORT
1931 M: Lennert Buytenhek <kernel@wantstofly.org>
1932 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S: Maintained
1934
1935 ARM/INTEL IXDP2850 MACHINE SUPPORT
1936 M: Lennert Buytenhek <kernel@wantstofly.org>
1937 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S: Maintained
1939
1940 ARM/INTEL IXP4XX ARM ARCHITECTURE
1941 M: Linus Walleij <linusw@kernel.org>
1942 M: Imre Kaloz <kaloz@openwrt.org>
1943 M: Krzysztof Halasa <khalasa@piap.pl>
1944 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S: Maintained
1946 F: Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1947 F: Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1948 F: Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1949 F: Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1950 F: arch/arm/mach-ixp4xx/
1951 F: drivers/clocksource/timer-ixp4xx.c
1952 F: drivers/gpio/gpio-ixp4xx.c
1953 F: drivers/irqchip/irq-ixp4xx.c
1954 F: include/linux/irqchip/irq-ixp4xx.h
1955 F: include/linux/platform_data/timer-ixp4xx.h
1956
1957 ARM/INTEL KEEMBAY ARCHITECTURE
1958 M: Paul J. Murphy <paul.j.murphy@intel.com>
1959 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1960 S: Maintained
1961 F: Documentation/devicetree/bindings/arm/intel,keembay.yaml
1962 F: arch/arm64/boot/dts/intel/keembay-evm.dts
1963 F: arch/arm64/boot/dts/intel/keembay-soc.dtsi
1964
1965 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1966 M: Jonathan Cameron <jic23@cam.ac.uk>
1967 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 S: Maintained
1969 F: arch/arm/mach-pxa/stargate2.c
1970 F: drivers/pcmcia/pxa2xx_stargate2.c
1971
1972 ARM/INTEL XSC3 (MANZANO) ARM CORE
1973 M: Lennert Buytenhek <kernel@wantstofly.org>
1974 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1975 S: Maintained
1976
1977 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1978 M: Lennert Buytenhek <kernel@wantstofly.org>
1979 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S: Maintained
1981
1982 ARM/LG1K ARCHITECTURE
1983 M: Chanho Min <chanho.min@lge.com>
1984 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1985 S: Maintained
1986 F: arch/arm64/boot/dts/lg/
1987
1988 ARM/LOGICPD PXA270 MACHINE SUPPORT
1989 M: Lennert Buytenhek <kernel@wantstofly.org>
1990 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1991 S: Maintained
1992
1993 ARM/LPC18XX ARCHITECTURE
1994 M: Vladimir Zapolskiy <vz@mleia.com>
1995 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S: Maintained
1997 F: Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1998 F: arch/arm/boot/dts/lpc43*
1999 F: drivers/i2c/busses/i2c-lpc2k.c
2000 F: drivers/memory/pl172.c
2001 F: drivers/mtd/spi-nor/controllers/nxp-spifi.c
2002 F: drivers/rtc/rtc-lpc24xx.c
2003 N: lpc18xx
2004
2005 ARM/LPC32XX SOC SUPPORT
2006 M: Vladimir Zapolskiy <vz@mleia.com>
2007 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2008 S: Maintained
2009 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
2010 F: Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2011 F: arch/arm/boot/dts/lpc32*
2012 F: arch/arm/mach-lpc32xx/
2013 F: drivers/i2c/busses/i2c-pnx.c
2014 F: drivers/net/ethernet/nxp/lpc_eth.c
2015 F: drivers/usb/host/ohci-nxp.c
2016 F: drivers/watchdog/pnx4008_wdt.c
2017 N: lpc32xx
2018
2019 ARM/MAGICIAN MACHINE SUPPORT
2020 M: Philipp Zabel <philipp.zabel@gmail.com>
2021 S: Maintained
2022
2023 ARM/Marvell Dove/MV78xx0/Orion SOC support
2024 M: Andrew Lunn <andrew@lunn.ch>
2025 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2026 M: Gregory Clement <gregory.clement@bootlin.com>
2027 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028 S: Maintained
2029 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2030 F: Documentation/devicetree/bindings/soc/dove/
2031 F: arch/arm/boot/dts/dove*
2032 F: arch/arm/boot/dts/orion5x*
2033 F: arch/arm/mach-dove/
2034 F: arch/arm/mach-mv78xx0/
2035 F: arch/arm/mach-orion5x/
2036 F: arch/arm/plat-orion/
2037 F: drivers/soc/dove/
2038
2039 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2040 M: Andrew Lunn <andrew@lunn.ch>
2041 M: Gregory Clement <gregory.clement@bootlin.com>
2042 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2043 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 S: Maintained
2045 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2046 F: arch/arm/boot/dts/armada*
2047 F: arch/arm/boot/dts/kirkwood*
2048 F: arch/arm/configs/mvebu_*_defconfig
2049 F: arch/arm/mach-mvebu/
2050 F: arch/arm64/boot/dts/marvell/armada*
2051 F: arch/arm64/boot/dts/marvell/cn913*
2052 F: drivers/cpufreq/armada-37xx-cpufreq.c
2053 F: drivers/cpufreq/armada-8k-cpufreq.c
2054 F: drivers/cpufreq/mvebu-cpufreq.c
2055 F: drivers/irqchip/irq-armada-370-xp.c
2056 F: drivers/irqchip/irq-mvebu-*
2057 F: drivers/pinctrl/mvebu/
2058 F: drivers/rtc/rtc-armada38x.c
2059
2060 ARM/Mediatek RTC DRIVER
2061 M: Eddie Huang <eddie.huang@mediatek.com>
2062 M: Sean Wang <sean.wang@mediatek.com>
2063 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2065 S: Maintained
2066 F: Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2067 F: Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2068 F: drivers/rtc/rtc-mt2712.c
2069 F: drivers/rtc/rtc-mt6397.c
2070 F: drivers/rtc/rtc-mt7622.c
2071
2072 ARM/Mediatek SoC support
2073 M: Matthias Brugger <matthias.bgg@gmail.com>
2074 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2075 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2076 S: Maintained
2077 W: https://mtk.wiki.kernel.org/
2078 C: irc://chat.freenode.net/linux-mediatek
2079 F: arch/arm/boot/dts/mt6*
2080 F: arch/arm/boot/dts/mt7*
2081 F: arch/arm/boot/dts/mt8*
2082 F: arch/arm/mach-mediatek/
2083 F: arch/arm64/boot/dts/mediatek/
2084 F: drivers/soc/mediatek/
2085 N: mtk
2086 N: mt[678]
2087 K: mediatek
2088
2089 ARM/Mediatek USB3 PHY DRIVER
2090 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
2091 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2092 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2093 S: Maintained
2094 F: Documentation/devicetree/bindings/phy/phy-mtk-*
2095 F: drivers/phy/mediatek/
2096
2097 ARM/Microchip (AT91) SoC support
2098 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2099 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
2100 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2101 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 S: Supported
2103 W: http://www.linux4sam.org
2104 T: git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2105 F: arch/arm/boot/dts/at91*.dts
2106 F: arch/arm/boot/dts/at91*.dtsi
2107 F: arch/arm/boot/dts/sama*.dts
2108 F: arch/arm/boot/dts/sama*.dtsi
2109 F: arch/arm/include/debug/at91.S
2110 F: arch/arm/mach-at91/
2111 F: drivers/memory/atmel*
2112 F: drivers/watchdog/sama5d4_wdt.c
2113 F: include/soc/at91/
2114 X: drivers/input/touchscreen/atmel_mxt_ts.c
2115 X: drivers/net/wireless/atmel/
2116 N: at91
2117 N: atmel
2118
2119 ARM/Microchip Sparx5 SoC support
2120 M: Lars Povlsen <lars.povlsen@microchip.com>
2121 M: Steen Hegelund <Steen.Hegelund@microchip.com>
2122 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
2123 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S: Supported
2125 T: git git://github.com/microchip-ung/linux-upstream.git
2126 F: arch/arm64/boot/dts/microchip/
2127 F: drivers/pinctrl/pinctrl-microchip-sgpio.c
2128 N: sparx5
2129
2130 Microchip Timer Counter Block (TCB) Capture Driver
2131 M: Kamel Bouhara <kamel.bouhara@bootlin.com>
2132 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2133 L: linux-iio@vger.kernel.org
2134 S: Maintained
2135 F: drivers/counter/microchip-tcb-capture.c
2136
2137 ARM/MIOA701 MACHINE SUPPORT
2138 M: Robert Jarzmik <robert.jarzmik@free.fr>
2139 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2140 S: Maintained
2141 F: arch/arm/mach-pxa/mioa701.c
2142
2143 ARM/MStar/Sigmastar Armv7 SoC support
2144 M: Daniel Palmer <daniel@thingy.jp>
2145 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2146 S: Maintained
2147 W: http://linux-chenxing.org/
2148 F: Documentation/devicetree/bindings/arm/mstar/*
2149 F: Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2150 F: arch/arm/boot/dts/mstar-*
2151 F: arch/arm/mach-mstar/
2152 F: drivers/gpio/gpio-msc313.c
2153 F: include/dt-bindings/gpio/msc313-gpio.h
2154
2155 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2156 M: Michael Petchkovsky <mkpetch@internode.on.net>
2157 S: Maintained
2158
2159 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2160 M: Linus Walleij <linus.walleij@linaro.org>
2161 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2162 S: Maintained
2163 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2164 F: Documentation/devicetree/bindings/arm/ste-*
2165 F: Documentation/devicetree/bindings/arm/ux500.yaml
2166 F: Documentation/devicetree/bindings/arm/ux500/
2167 F: Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2168 F: Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2169 F: arch/arm/boot/dts/ste-*
2170 F: arch/arm/mach-nomadik/
2171 F: arch/arm/mach-u300/
2172 F: arch/arm/mach-ux500/
2173 F: drivers/clk/clk-nomadik.c
2174 F: drivers/clk/clk-u300.c
2175 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2176 F: drivers/clocksource/timer-u300.c
2177 F: drivers/dma/coh901318*
2178 F: drivers/dma/ste_dma40*
2179 F: drivers/hwspinlock/u8500_hsem.c
2180 F: drivers/i2c/busses/i2c-nomadik.c
2181 F: drivers/i2c/busses/i2c-stu300.c
2182 F: drivers/iio/adc/ab8500-gpadc.c
2183 F: drivers/mfd/ab3100*
2184 F: drivers/mfd/ab8500*
2185 F: drivers/mfd/abx500*
2186 F: drivers/mfd/db8500*
2187 F: drivers/mfd/dbx500*
2188 F: drivers/pinctrl/nomadik/
2189 F: drivers/pinctrl/pinctrl-coh901*
2190 F: drivers/pinctrl/pinctrl-u300.c
2191 F: drivers/rtc/rtc-ab3100.c
2192 F: drivers/rtc/rtc-ab8500.c
2193 F: drivers/rtc/rtc-coh901331.c
2194 F: drivers/rtc/rtc-pl031.c
2195 F: drivers/soc/ux500/
2196 F: drivers/watchdog/coh901327_wdt.c
2197
2198 ARM/NUVOTON NPCM ARCHITECTURE
2199 M: Avi Fishman <avifishman70@gmail.com>
2200 M: Tomer Maimon <tmaimon77@gmail.com>
2201 M: Tali Perry <tali.perry1@gmail.com>
2202 R: Patrick Venture <venture@google.com>
2203 R: Nancy Yuen <yuenn@google.com>
2204 R: Benjamin Fair <benjaminfair@google.com>
2205 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2206 S: Supported
2207 F: Documentation/devicetree/bindings/*/*/*npcm*
2208 F: Documentation/devicetree/bindings/*/*npcm*
2209 F: arch/arm/boot/dts/nuvoton-npcm*
2210 F: arch/arm/mach-npcm/
2211 F: drivers/*/*npcm*
2212 F: drivers/*/*/*npcm*
2213 F: include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2214
2215 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2216 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
2217 S: Orphan
2218 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
2219 F: arch/arm/mach-s3c/gta02.h
2220 F: arch/arm/mach-s3c/mach-gta02.c
2221
2222 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2223 M: Alexander Clouter <alex@digriz.org.uk>
2224 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2225 S: Maintained
2226 W: http://www.digriz.org.uk/ts78xx/kernel
2227 F: arch/arm/mach-orion5x/ts78xx-*
2228
2229 ARM/OXNAS platform support
2230 M: Neil Armstrong <narmstrong@baylibre.com>
2231 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2232 L: linux-oxnas@groups.io (moderated for non-subscribers)
2233 S: Maintained
2234 F: arch/arm/boot/dts/ox8*.dts*
2235 F: arch/arm/mach-oxnas/
2236 F: drivers/power/reset/oxnas-restart.c
2237 N: oxnas
2238
2239 ARM/PALM TREO SUPPORT
2240 M: Tomas Cech <sleep_walker@suse.com>
2241 L: linux-arm-kernel@lists.infradead.org
2242 S: Maintained
2243 W: http://hackndev.com
2244 F: arch/arm/mach-pxa/palmtreo.*
2245
2246 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2247 M: Marek Vasut <marek.vasut@gmail.com>
2248 L: linux-arm-kernel@lists.infradead.org
2249 S: Maintained
2250 W: http://hackndev.com
2251 F: arch/arm/mach-pxa/include/mach/palmld.h
2252 F: arch/arm/mach-pxa/include/mach/palmtc.h
2253 F: arch/arm/mach-pxa/include/mach/palmtx.h
2254 F: arch/arm/mach-pxa/palmld.c
2255 F: arch/arm/mach-pxa/palmt5.*
2256 F: arch/arm/mach-pxa/palmtc.c
2257 F: arch/arm/mach-pxa/palmte2.*
2258 F: arch/arm/mach-pxa/palmtx.c
2259
2260 ARM/PALMZ72 SUPPORT
2261 M: Sergey Lapin <slapin@ossfans.org>
2262 L: linux-arm-kernel@lists.infradead.org
2263 S: Maintained
2264 W: http://hackndev.com
2265 F: arch/arm/mach-pxa/palmz72.*
2266
2267 ARM/PLEB SUPPORT
2268 M: Peter Chubb <pleb@gelato.unsw.edu.au>
2269 S: Maintained
2270 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2271
2272 ARM/PT DIGITAL BOARD PORT
2273 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2274 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2275 S: Maintained
2276 W: http://www.armlinux.org.uk/
2277
2278 ARM/QUALCOMM SUPPORT
2279 M: Andy Gross <agross@kernel.org>
2280 M: Bjorn Andersson <bjorn.andersson@linaro.org>
2281 L: linux-arm-msm@vger.kernel.org
2282 S: Maintained
2283 T: git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2284 F: Documentation/devicetree/bindings/*/qcom*
2285 F: Documentation/devicetree/bindings/soc/qcom/
2286 F: arch/arm/boot/dts/qcom-*.dts
2287 F: arch/arm/boot/dts/qcom-*.dtsi
2288 F: arch/arm/mach-qcom/
2289 F: arch/arm64/boot/dts/qcom/
2290 F: drivers/*/*/qcom*
2291 F: drivers/*/*/qcom/
2292 F: drivers/*/pm8???-*
2293 F: drivers/*/qcom*
2294 F: drivers/*/qcom/
2295 F: drivers/bluetooth/btqcomsmd.c
2296 F: drivers/clocksource/timer-qcom.c
2297 F: drivers/cpuidle/cpuidle-qcom-spm.c
2298 F: drivers/extcon/extcon-qcom*
2299 F: drivers/i2c/busses/i2c-qcom-geni.c
2300 F: drivers/i2c/busses/i2c-qup.c
2301 F: drivers/iommu/msm*
2302 F: drivers/mfd/ssbi.c
2303 F: drivers/mmc/host/mmci_qcom*
2304 F: drivers/mmc/host/sdhci-msm.c
2305 F: drivers/pci/controller/dwc/pcie-qcom.c
2306 F: drivers/phy/qualcomm/
2307 F: drivers/power/*/msm*
2308 F: drivers/reset/reset-qcom-*
2309 F: drivers/scsi/ufs/ufs-qcom*
2310 F: drivers/spi/spi-geni-qcom.c
2311 F: drivers/spi/spi-qcom-qspi.c
2312 F: drivers/spi/spi-qup.c
2313 F: drivers/tty/serial/msm_serial.c
2314 F: drivers/usb/dwc3/dwc3-qcom.c
2315 F: include/dt-bindings/*/qcom*
2316 F: include/linux/*/qcom*
2317
2318 ARM/RADISYS ENP2611 MACHINE SUPPORT
2319 M: Lennert Buytenhek <kernel@wantstofly.org>
2320 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2321 S: Maintained
2322
2323 ARM/RDA MICRO ARCHITECTURE
2324 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2325 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2326 L: linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2327 S: Maintained
2328 F: Documentation/devicetree/bindings/arm/rda.yaml
2329 F: Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2330 F: Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2331 F: Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2332 F: Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2333 F: arch/arm/boot/dts/rda8810pl-*
2334 F: drivers/clocksource/timer-rda.c
2335 F: drivers/gpio/gpio-rda.c
2336 F: drivers/irqchip/irq-rda-intc.c
2337 F: drivers/tty/serial/rda-uart.c
2338
2339 ARM/REALTEK ARCHITECTURE
2340 M: Andreas Färber <afaerber@suse.de>
2341 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 L: linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2343 S: Maintained
2344 F: Documentation/devicetree/bindings/arm/realtek.yaml
2345 F: arch/arm/boot/dts/rtd*
2346 F: arch/arm/mach-realtek/
2347 F: arch/arm64/boot/dts/realtek/
2348
2349 ARM/RENESAS ARM64 ARCHITECTURE
2350 M: Geert Uytterhoeven <geert+renesas@glider.be>
2351 M: Magnus Damm <magnus.damm@gmail.com>
2352 L: linux-renesas-soc@vger.kernel.org
2353 S: Supported
2354 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2355 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2356 F: Documentation/devicetree/bindings/arm/renesas.yaml
2357 F: arch/arm64/boot/dts/renesas/
2358 F: drivers/soc/renesas/
2359 F: include/linux/soc/renesas/
2360
2361 ARM/RISCPC ARCHITECTURE
2362 M: Russell King <linux@armlinux.org.uk>
2363 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2364 S: Maintained
2365 W: http://www.armlinux.org.uk/
2366 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
2367 F: arch/arm/include/asm/hardware/ioc.h
2368 F: arch/arm/include/asm/hardware/iomd.h
2369 F: arch/arm/include/asm/hardware/memc.h
2370 F: arch/arm/mach-rpc/
2371 F: drivers/net/ethernet/8390/etherh.c
2372 F: drivers/net/ethernet/i825xx/ether1*
2373 F: drivers/net/ethernet/seeq/ether3*
2374 F: drivers/scsi/arm/
2375
2376 ARM/Rockchip SoC support
2377 M: Heiko Stuebner <heiko@sntech.de>
2378 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2379 L: linux-rockchip@lists.infradead.org
2380 S: Maintained
2381 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2382 F: Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2383 F: Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2384 F: Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2385 F: arch/arm/boot/dts/rk3*
2386 F: arch/arm/boot/dts/rv1108*
2387 F: arch/arm/mach-rockchip/
2388 F: drivers/*/*/*rockchip*
2389 F: drivers/*/*rockchip*
2390 F: drivers/clk/rockchip/
2391 F: drivers/i2c/busses/i2c-rk3x.c
2392 F: sound/soc/rockchip/
2393 N: rockchip
2394
2395 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2396 M: Krzysztof Kozlowski <krzk@kernel.org>
2397 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2398 L: linux-samsung-soc@vger.kernel.org
2399 S: Maintained
2400 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
2401 F: Documentation/arm/samsung/
2402 F: Documentation/devicetree/bindings/arm/samsung/
2403 F: Documentation/devicetree/bindings/power/pd-samsung.yaml
2404 F: arch/arm/boot/dts/exynos*
2405 F: arch/arm/boot/dts/s3c*
2406 F: arch/arm/boot/dts/s5p*
2407 F: arch/arm/mach-exynos*/
2408 F: arch/arm/mach-s3c/
2409 F: arch/arm/mach-s5p*/
2410 F: arch/arm64/boot/dts/exynos/
2411 F: drivers/*/*/*s3c24*
2412 F: drivers/*/*s3c24*
2413 F: drivers/*/*s3c64xx*
2414 F: drivers/*/*s5pv210*
2415 F: drivers/memory/samsung/
2416 F: drivers/soc/samsung/
2417 F: drivers/tty/serial/samsung*
2418 F: include/linux/soc/samsung/
2419 N: exynos
2420 N: s3c2410
2421 N: s3c64xx
2422 N: s5pv210
2423
2424 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2425 M: Andrzej Hajda <a.hajda@samsung.com>
2426 L: linux-arm-kernel@lists.infradead.org
2427 L: linux-media@vger.kernel.org
2428 S: Maintained
2429 F: drivers/media/platform/s5p-g2d/
2430
2431 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2432 M: Marek Szyprowski <m.szyprowski@samsung.com>
2433 L: linux-samsung-soc@vger.kernel.org
2434 L: linux-media@vger.kernel.org
2435 S: Maintained
2436 F: Documentation/devicetree/bindings/media/s5p-cec.txt
2437 F: drivers/media/cec/platform/s5p/
2438
2439 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2440 M: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2441 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
2442 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
2443 L: linux-arm-kernel@lists.infradead.org
2444 L: linux-media@vger.kernel.org
2445 S: Maintained
2446 F: drivers/media/platform/s5p-jpeg/
2447
2448 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2449 M: Andrzej Hajda <a.hajda@samsung.com>
2450 L: linux-arm-kernel@lists.infradead.org
2451 L: linux-media@vger.kernel.org
2452 S: Maintained
2453 F: drivers/media/platform/s5p-mfc/
2454
2455 ARM/SHMOBILE ARM ARCHITECTURE
2456 M: Geert Uytterhoeven <geert+renesas@glider.be>
2457 M: Magnus Damm <magnus.damm@gmail.com>
2458 L: linux-renesas-soc@vger.kernel.org
2459 S: Supported
2460 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2461 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2462 F: Documentation/devicetree/bindings/arm/renesas.yaml
2463 F: arch/arm/boot/dts/emev2*
2464 F: arch/arm/boot/dts/gr-peach*
2465 F: arch/arm/boot/dts/iwg20d-q7*
2466 F: arch/arm/boot/dts/r7s*
2467 F: arch/arm/boot/dts/r8a*
2468 F: arch/arm/boot/dts/r9a*
2469 F: arch/arm/boot/dts/sh*
2470 F: arch/arm/configs/shmobile_defconfig
2471 F: arch/arm/include/debug/renesas-scif.S
2472 F: arch/arm/mach-shmobile/
2473 F: drivers/soc/renesas/
2474 F: include/linux/soc/renesas/
2475
2476 ARM/SOCFPGA ARCHITECTURE
2477 M: Dinh Nguyen <dinguyen@kernel.org>
2478 S: Maintained
2479 W: http://www.rocketboards.org
2480 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2481 F: arch/arm/boot/dts/socfpga*
2482 F: arch/arm/configs/socfpga_defconfig
2483 F: arch/arm/mach-socfpga/
2484 F: arch/arm64/boot/dts/altera/
2485 F: arch/arm64/boot/dts/intel/
2486
2487 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2488 M: Dinh Nguyen <dinguyen@kernel.org>
2489 S: Maintained
2490 F: drivers/clk/socfpga/
2491
2492 ARM/SOCFPGA EDAC SUPPORT
2493 M: Dinh Nguyen <dinguyen@kernel.org>
2494 S: Maintained
2495 F: drivers/edac/altera_edac.[ch]
2496
2497 ARM/SPREADTRUM SoC SUPPORT
2498 M: Orson Zhai <orsonzhai@gmail.com>
2499 M: Baolin Wang <baolin.wang7@gmail.com>
2500 M: Chunyan Zhang <zhang.lyra@gmail.com>
2501 S: Maintained
2502 F: arch/arm64/boot/dts/sprd
2503 N: sprd
2504 N: sc27xx
2505 N: sc2731
2506
2507 ARM/STI ARCHITECTURE
2508 M: Patrice Chotard <patrice.chotard@st.com>
2509 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2510 S: Maintained
2511 W: http://www.stlinux.com
2512 F: Documentation/devicetree/bindings/i2c/i2c-st.txt
2513 F: arch/arm/boot/dts/sti*
2514 F: arch/arm/mach-sti/
2515 F: drivers/ata/ahci_st.c
2516 F: drivers/char/hw_random/st-rng.c
2517 F: drivers/clocksource/arm_global_timer.c
2518 F: drivers/clocksource/clksrc_st_lpc.c
2519 F: drivers/cpufreq/sti-cpufreq.c
2520 F: drivers/dma/st_fdma*
2521 F: drivers/i2c/busses/i2c-st.c
2522 F: drivers/media/platform/sti/c8sectpfe/
2523 F: drivers/media/rc/st_rc.c
2524 F: drivers/mmc/host/sdhci-st.c
2525 F: drivers/phy/st/phy-miphy28lp.c
2526 F: drivers/phy/st/phy-stih407-usb.c
2527 F: drivers/pinctrl/pinctrl-st.c
2528 F: drivers/remoteproc/st_remoteproc.c
2529 F: drivers/remoteproc/st_slim_rproc.c
2530 F: drivers/reset/sti/
2531 F: drivers/rtc/rtc-st-lpc.c
2532 F: drivers/tty/serial/st-asc.c
2533 F: drivers/usb/dwc3/dwc3-st.c
2534 F: drivers/usb/host/ehci-st.c
2535 F: drivers/usb/host/ohci-st.c
2536 F: drivers/watchdog/st_lpc_wdt.c
2537 F: include/linux/remoteproc/st_slim_rproc.h
2538
2539 ARM/STM32 ARCHITECTURE
2540 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
2541 M: Alexandre Torgue <alexandre.torgue@st.com>
2542 L: linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2543 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2544 S: Maintained
2545 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2546 F: arch/arm/boot/dts/stm32*
2547 F: arch/arm/mach-stm32/
2548 F: drivers/clocksource/armv7m_systick.c
2549 N: stm32
2550 N: stm
2551
2552 ARM/Synaptics SoC support
2553 M: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2554 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2555 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2556 S: Maintained
2557 F: arch/arm/boot/dts/berlin*
2558 F: arch/arm/mach-berlin/
2559 F: arch/arm64/boot/dts/synaptics/
2560
2561 ARM/TANGO ARCHITECTURE
2562 M: Marc Gonzalez <marc.w.gonzalez@free.fr>
2563 M: Mans Rullgard <mans@mansr.com>
2564 L: linux-arm-kernel@lists.infradead.org
2565 S: Odd Fixes
2566 N: tango
2567
2568 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2569 M: Lennert Buytenhek <kernel@wantstofly.org>
2570 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2571 S: Maintained
2572
2573 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2574 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
2575 L: linux-tegra@vger.kernel.org
2576 L: linux-media@vger.kernel.org
2577 S: Maintained
2578 F: Documentation/devicetree/bindings/media/tegra-cec.txt
2579 F: drivers/media/cec/platform/tegra/
2580
2581 ARM/TETON BGA MACHINE SUPPORT
2582 M: "Mark F. Brown" <mark.brown314@gmail.com>
2583 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2584 S: Maintained
2585
2586 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2587 M: Santosh Shilimkar <ssantosh@kernel.org>
2588 L: linux-kernel@vger.kernel.org
2589 S: Maintained
2590 F: drivers/memory/*emif*
2591
2592 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2593 M: Santosh Shilimkar <ssantosh@kernel.org>
2594 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2595 S: Maintained
2596 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2597 F: arch/arm/boot/dts/keystone-*
2598 F: arch/arm/mach-keystone/
2599
2600 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2601 M: Santosh Shilimkar <ssantosh@kernel.org>
2602 L: linux-kernel@vger.kernel.org
2603 S: Maintained
2604 F: drivers/clk/keystone/
2605
2606 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2607 M: Santosh Shilimkar <ssantosh@kernel.org>
2608 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2609 L: linux-kernel@vger.kernel.org
2610 S: Maintained
2611 F: drivers/clocksource/timer-keystone.c
2612
2613 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2614 M: Santosh Shilimkar <ssantosh@kernel.org>
2615 L: linux-kernel@vger.kernel.org
2616 S: Maintained
2617 F: drivers/power/reset/keystone-reset.c
2618
2619 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2620 M: Tero Kristo <t-kristo@ti.com>
2621 M: Nishanth Menon <nm@ti.com>
2622 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2623 S: Supported
2624 F: Documentation/devicetree/bindings/arm/ti/k3.yaml
2625 F: arch/arm64/boot/dts/ti/Makefile
2626 F: arch/arm64/boot/dts/ti/k3-*
2627 F: include/dt-bindings/pinctrl/k3.h
2628
2629 ARM/THECUS N2100 MACHINE SUPPORT
2630 M: Lennert Buytenhek <kernel@wantstofly.org>
2631 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2632 S: Maintained
2633
2634 ARM/TOSA MACHINE SUPPORT
2635 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2636 M: Dirk Opfer <dirk@opfer-online.de>
2637 S: Maintained
2638
2639 ARM/TOSHIBA VISCONTI ARCHITECTURE
2640 M: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2641 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2642 S: Supported
2643 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2644 F: Documentation/devicetree/bindings/arm/toshiba.yaml
2645 F: Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2646 F: Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2647 F: arch/arm64/boot/dts/toshiba/
2648 F: drivers/pinctrl/visconti/
2649 F: drivers/watchdog/visconti_wdt.c
2650 N: visconti
2651
2652 ARM/UNIPHIER ARCHITECTURE
2653 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2654 S: Orphan
2655 F: Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2656 F: Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2657 F: Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2658 F: arch/arm/boot/dts/uniphier*
2659 F: arch/arm/include/asm/hardware/cache-uniphier.h
2660 F: arch/arm/mach-uniphier/
2661 F: arch/arm/mm/cache-uniphier.c
2662 F: arch/arm64/boot/dts/socionext/uniphier*
2663 F: drivers/bus/uniphier-system-bus.c
2664 F: drivers/clk/uniphier/
2665 F: drivers/dma/uniphier-mdmac.c
2666 F: drivers/gpio/gpio-uniphier.c
2667 F: drivers/i2c/busses/i2c-uniphier*
2668 F: drivers/irqchip/irq-uniphier-aidet.c
2669 F: drivers/mmc/host/uniphier-sd.c
2670 F: drivers/pinctrl/uniphier/
2671 F: drivers/reset/reset-uniphier.c
2672 F: drivers/tty/serial/8250/8250_uniphier.c
2673 N: uniphier
2674
2675 ARM/VERSATILE EXPRESS PLATFORM
2676 M: Liviu Dudau <liviu.dudau@arm.com>
2677 M: Sudeep Holla <sudeep.holla@arm.com>
2678 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2679 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2680 S: Maintained
2681 F: */*/*/vexpress*
2682 F: */*/vexpress*
2683 F: arch/arm/boot/dts/vexpress*
2684 F: arch/arm/mach-vexpress/
2685 F: arch/arm64/boot/dts/arm/
2686 F: drivers/clk/versatile/clk-vexpress-osc.c
2687 F: drivers/clocksource/timer-versatile.c
2688 N: mps2
2689
2690 ARM/VFP SUPPORT
2691 M: Russell King <linux@armlinux.org.uk>
2692 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2693 S: Maintained
2694 W: http://www.armlinux.org.uk/
2695 F: arch/arm/vfp/
2696
2697 ARM/VOIPAC PXA270 SUPPORT
2698 M: Marek Vasut <marek.vasut@gmail.com>
2699 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2700 S: Maintained
2701 F: arch/arm/mach-pxa/include/mach/vpac270.h
2702 F: arch/arm/mach-pxa/vpac270.c
2703
2704 ARM/VT8500 ARM ARCHITECTURE
2705 M: Tony Prisk <linux@prisktech.co.nz>
2706 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2707 S: Maintained
2708 F: Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2709 F: arch/arm/mach-vt8500/
2710 F: drivers/clocksource/timer-vt8500.c
2711 F: drivers/i2c/busses/i2c-wmt.c
2712 F: drivers/mmc/host/wmt-sdmmc.c
2713 F: drivers/pwm/pwm-vt8500.c
2714 F: drivers/rtc/rtc-vt8500.c
2715 F: drivers/tty/serial/vt8500_serial.c
2716 F: drivers/usb/host/ehci-platform.c
2717 F: drivers/usb/host/uhci-platform.c
2718 F: drivers/video/fbdev/vt8500lcdfb.*
2719 F: drivers/video/fbdev/wm8505fb*
2720 F: drivers/video/fbdev/wmt_ge_rops.*
2721
2722 ARM/ZIPIT Z2 SUPPORT
2723 M: Marek Vasut <marek.vasut@gmail.com>
2724 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2725 S: Maintained
2726 F: arch/arm/mach-pxa/include/mach/z2.h
2727 F: arch/arm/mach-pxa/z2.c
2728
2729 ARM/ZTE ARCHITECTURE
2730 M: Jun Nie <jun.nie@linaro.org>
2731 M: Shawn Guo <shawnguo@kernel.org>
2732 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2733 S: Maintained
2734 F: Documentation/devicetree/bindings/arm/zte.yaml
2735 F: Documentation/devicetree/bindings/clock/zx2967*.txt
2736 F: Documentation/devicetree/bindings/dma/zxdma.txt
2737 F: Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2738 F: Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2739 F: Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2740 F: Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2741 F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2742 F: Documentation/devicetree/bindings/soc/zte/
2743 F: Documentation/devicetree/bindings/sound/zte,*.txt
2744 F: Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2745 F: Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2746 F: arch/arm/boot/dts/zx2967*
2747 F: arch/arm/mach-zx/
2748 F: arch/arm64/boot/dts/zte/
2749 F: drivers/clk/zte/
2750 F: drivers/dma/zx_dma.c
2751 F: drivers/gpio/gpio-zx.c
2752 F: drivers/i2c/busses/i2c-zx2967.c
2753 F: drivers/mmc/host/dw_mmc-zx.*
2754 F: drivers/pinctrl/zte/
2755 F: drivers/soc/zte/
2756 F: drivers/thermal/zx2967_thermal.c
2757 F: drivers/watchdog/zx2967_wdt.c
2758 F: include/dt-bindings/clock/zx2967*.h
2759 F: include/dt-bindings/soc/zte,*.h
2760 F: sound/soc/codecs/zx_aud96p22.c
2761 F: sound/soc/zte/
2762
2763 ARM/ZYNQ ARCHITECTURE
2764 M: Michal Simek <michal.simek@xilinx.com>
2765 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2766 S: Supported
2767 W: http://wiki.xilinx.com
2768 T: git https://github.com/Xilinx/linux-xlnx.git
2769 F: Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2770 F: Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2771 F: arch/arm/mach-zynq/
2772 F: drivers/block/xsysace.c
2773 F: drivers/clocksource/timer-cadence-ttc.c
2774 F: drivers/cpuidle/cpuidle-zynq.c
2775 F: drivers/edac/synopsys_edac.c
2776 F: drivers/i2c/busses/i2c-cadence.c
2777 F: drivers/i2c/busses/i2c-xiic.c
2778 F: drivers/mmc/host/sdhci-of-arasan.c
2779 N: zynq
2780 N: xilinx
2781
2782 ARM64 PORT (AARCH64 ARCHITECTURE)
2783 M: Catalin Marinas <catalin.marinas@arm.com>
2784 M: Will Deacon <will@kernel.org>
2785 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2786 S: Maintained
2787 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2788 F: Documentation/arm64/
2789 F: arch/arm64/
2790 F: tools/testing/selftests/arm64/
2791 X: arch/arm64/boot/dts/
2792
2793 AS3645A LED FLASH CONTROLLER DRIVER
2794 M: Sakari Ailus <sakari.ailus@iki.fi>
2795 L: linux-leds@vger.kernel.org
2796 S: Maintained
2797 F: drivers/leds/leds-as3645a.c
2798
2799 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2800 M: Tianshu Qiu <tian.shu.qiu@intel.com>
2801 L: linux-media@vger.kernel.org
2802 S: Maintained
2803 T: git git://linuxtv.org/media_tree.git
2804 F: Documentation/devicetree/bindings/media/i2c/ak7375.txt
2805 F: drivers/media/i2c/ak7375.c
2806
2807 ASAHI KASEI AK8974 DRIVER
2808 M: Linus Walleij <linus.walleij@linaro.org>
2809 L: linux-iio@vger.kernel.org
2810 S: Supported
2811 W: http://www.akm.com/
2812 F: drivers/iio/magnetometer/ak8974.c
2813
2814 ASC7621 HARDWARE MONITOR DRIVER
2815 M: George Joseph <george.joseph@fairview5.com>
2816 L: linux-hwmon@vger.kernel.org
2817 S: Maintained
2818 F: Documentation/hwmon/asc7621.rst
2819 F: drivers/hwmon/asc7621.c
2820
2821 ASPEED PINCTRL DRIVERS
2822 M: Andrew Jeffery <andrew@aj.id.au>
2823 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2824 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2825 L: linux-gpio@vger.kernel.org
2826 S: Maintained
2827 F: Documentation/devicetree/bindings/pinctrl/aspeed,*
2828 F: drivers/pinctrl/aspeed/
2829
2830 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2831 M: Eddie James <eajames@linux.ibm.com>
2832 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2833 S: Maintained
2834 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2835 F: drivers/irqchip/irq-aspeed-scu-ic.c
2836 F: include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2837
2838 ASPEED VIDEO ENGINE DRIVER
2839 M: Eddie James <eajames@linux.ibm.com>
2840 L: linux-media@vger.kernel.org
2841 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2842 S: Maintained
2843 F: Documentation/devicetree/bindings/media/aspeed-video.txt
2844 F: drivers/media/platform/aspeed-video.c
2845
2846 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2847 M: Corentin Chary <corentin.chary@gmail.com>
2848 L: acpi4asus-user@lists.sourceforge.net
2849 L: platform-driver-x86@vger.kernel.org
2850 S: Maintained
2851 W: http://acpi4asus.sf.net
2852 F: drivers/platform/x86/asus*.c
2853 F: drivers/platform/x86/eeepc*.c
2854
2855 ASUS WIRELESS RADIO CONTROL DRIVER
2856 M: João Paulo Rechi Vita <jprvita@gmail.com>
2857 L: platform-driver-x86@vger.kernel.org
2858 S: Maintained
2859 F: drivers/platform/x86/asus-wireless.c
2860
2861 ASYMMETRIC KEYS
2862 M: David Howells <dhowells@redhat.com>
2863 L: keyrings@vger.kernel.org
2864 S: Maintained
2865 F: Documentation/crypto/asymmetric-keys.rst
2866 F: crypto/asymmetric_keys/
2867 F: include/crypto/pkcs7.h
2868 F: include/crypto/public_key.h
2869 F: include/linux/verification.h
2870
2871 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2872 R: Dan Williams <dan.j.williams@intel.com>
2873 S: Odd fixes
2874 W: http://sourceforge.net/projects/xscaleiop
2875 F: Documentation/crypto/async-tx-api.rst
2876 F: crypto/async_tx/
2877 F: drivers/dma/
2878 F: include/linux/async_tx.h
2879 F: include/linux/dmaengine.h
2880
2881 AT24 EEPROM DRIVER
2882 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
2883 L: linux-i2c@vger.kernel.org
2884 S: Maintained
2885 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2886 F: Documentation/devicetree/bindings/eeprom/at24.yaml
2887 F: drivers/misc/eeprom/at24.c
2888
2889 ATA OVER ETHERNET (AOE) DRIVER
2890 M: "Justin Sanders" <justin@coraid.com>
2891 S: Supported
2892 W: http://www.openaoe.org/
2893 F: Documentation/admin-guide/aoe/
2894 F: drivers/block/aoe/
2895
2896 ATHEROS 71XX/9XXX GPIO DRIVER
2897 M: Alban Bedel <albeu@free.fr>
2898 S: Maintained
2899 W: https://github.com/AlbanBedel/linux
2900 T: git git://github.com/AlbanBedel/linux
2901 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2902 F: drivers/gpio/gpio-ath79.c
2903
2904 ATHEROS 71XX/9XXX USB PHY DRIVER
2905 M: Alban Bedel <albeu@free.fr>
2906 S: Maintained
2907 W: https://github.com/AlbanBedel/linux
2908 T: git git://github.com/AlbanBedel/linux
2909 F: Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2910 F: drivers/phy/qualcomm/phy-ath79-usb.c
2911
2912 ATHEROS ATH GENERIC UTILITIES
2913 M: Kalle Valo <kvalo@codeaurora.org>
2914 L: linux-wireless@vger.kernel.org
2915 S: Supported
2916 F: drivers/net/wireless/ath/*
2917
2918 ATHEROS ATH5K WIRELESS DRIVER
2919 M: Jiri Slaby <jirislaby@kernel.org>
2920 M: Nick Kossifidis <mickflemm@gmail.com>
2921 M: Luis Chamberlain <mcgrof@kernel.org>
2922 L: linux-wireless@vger.kernel.org
2923 S: Maintained
2924 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2925 F: drivers/net/wireless/ath/ath5k/
2926
2927 ATHEROS ATH6KL WIRELESS DRIVER
2928 M: Kalle Valo <kvalo@codeaurora.org>
2929 L: linux-wireless@vger.kernel.org
2930 S: Supported
2931 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2932 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2933 F: drivers/net/wireless/ath/ath6kl/
2934
2935 ATI_REMOTE2 DRIVER
2936 M: Ville Syrjala <syrjala@sci.fi>
2937 S: Maintained
2938 F: drivers/input/misc/ati_remote2.c
2939
2940 ATK0110 HWMON DRIVER
2941 M: Luca Tettamanti <kronos.it@gmail.com>
2942 L: linux-hwmon@vger.kernel.org
2943 S: Maintained
2944 F: drivers/hwmon/asus_atk0110.c
2945
2946 ATLX ETHERNET DRIVERS
2947 M: Jay Cliburn <jcliburn@gmail.com>
2948 M: Chris Snook <chris.snook@gmail.com>
2949 L: netdev@vger.kernel.org
2950 S: Maintained
2951 W: http://sourceforge.net/projects/atl1
2952 W: http://atl1.sourceforge.net
2953 F: drivers/net/ethernet/atheros/
2954
2955 ATM
2956 M: Chas Williams <3chas3@gmail.com>
2957 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2958 L: netdev@vger.kernel.org
2959 S: Maintained
2960 W: http://linux-atm.sourceforge.net
2961 F: drivers/atm/
2962 F: include/linux/atm*
2963 F: include/uapi/linux/atm*
2964
2965 ATMEL MACB ETHERNET DRIVER
2966 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2967 M: Claudiu Beznea <claudiu.beznea@microchip.com>
2968 S: Supported
2969 F: drivers/net/ethernet/cadence/
2970
2971 ATMEL MAXTOUCH DRIVER
2972 M: Nick Dyer <nick@shmanahar.org>
2973 S: Maintained
2974 T: git git://github.com/ndyer/linux.git
2975 F: Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2976 F: drivers/input/touchscreen/atmel_mxt_ts.c
2977
2978 ATMEL WIRELESS DRIVER
2979 M: Simon Kelley <simon@thekelleys.org.uk>
2980 L: linux-wireless@vger.kernel.org
2981 S: Maintained
2982 W: http://www.thekelleys.org.uk/atmel
2983 W: http://atmelwlandriver.sourceforge.net/
2984 F: drivers/net/wireless/atmel/atmel*
2985
2986 ATOMIC INFRASTRUCTURE
2987 M: Will Deacon <will@kernel.org>
2988 M: Peter Zijlstra <peterz@infradead.org>
2989 R: Boqun Feng <boqun.feng@gmail.com>
2990 L: linux-kernel@vger.kernel.org
2991 S: Maintained
2992 F: arch/*/include/asm/atomic*.h
2993 F: include/*/atomic*.h
2994 F: include/linux/refcount.h
2995 F: Documentation/atomic_*.txt
2996 F: scripts/atomic/
2997
2998 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2999 M: Bradley Grove <linuxdrivers@attotech.com>
3000 L: linux-scsi@vger.kernel.org
3001 S: Supported
3002 W: http://www.attotech.com
3003 F: drivers/scsi/esas2r
3004
3005 ATUSB IEEE 802.15.4 RADIO DRIVER
3006 M: Stefan Schmidt <stefan@datenfreihafen.org>
3007 L: linux-wpan@vger.kernel.org
3008 S: Maintained
3009 F: drivers/net/ieee802154/at86rf230.h
3010 F: drivers/net/ieee802154/atusb.c
3011 F: drivers/net/ieee802154/atusb.h
3012
3013 AUDIT SUBSYSTEM
3014 M: Paul Moore <paul@paul-moore.com>
3015 M: Eric Paris <eparis@redhat.com>
3016 L: linux-audit@redhat.com (moderated for non-subscribers)
3017 S: Supported
3018 W: https://github.com/linux-audit
3019 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3020 F: include/linux/audit.h
3021 F: include/uapi/linux/audit.h
3022 F: kernel/audit*
3023
3024 AUXILIARY DISPLAY DRIVERS
3025 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3026 S: Maintained
3027 F: drivers/auxdisplay/
3028 F: include/linux/cfag12864b.h
3029
3030 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3031 M: Andreas Klinger <ak@it-klinger.de>
3032 L: linux-iio@vger.kernel.org
3033 S: Maintained
3034 F: Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3035 F: drivers/iio/adc/hx711.c
3036
3037 AX.25 NETWORK LAYER
3038 M: Ralf Baechle <ralf@linux-mips.org>
3039 L: linux-hams@vger.kernel.org
3040 S: Maintained
3041 W: http://www.linux-ax25.org/
3042 F: include/net/ax25.h
3043 F: include/uapi/linux/ax25.h
3044 F: net/ax25/
3045
3046 AXENTIA ARM DEVICES
3047 M: Peter Rosin <peda@axentia.se>
3048 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3049 S: Maintained
3050 F: arch/arm/boot/dts/at91-linea.dtsi
3051 F: arch/arm/boot/dts/at91-natte.dtsi
3052 F: arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3053 F: arch/arm/boot/dts/at91-tse850-3.dts
3054
3055 AXENTIA ASOC DRIVERS
3056 M: Peter Rosin <peda@axentia.se>
3057 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3058 S: Maintained
3059 F: Documentation/devicetree/bindings/sound/axentia,*
3060 F: sound/soc/atmel/tse850-pcm5142.c
3061
3062 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3063 M: Nuno Sá <nuno.sa@analog.com>
3064 L: linux-hwmon@vger.kernel.org
3065 S: Supported
3066 W: http://ez.analog.com/community/linux-device-drivers
3067 F: Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3068 F: drivers/hwmon/axi-fan-control.c
3069
3070 AXXIA I2C CONTROLLER
3071 M: Krzysztof Adamski <krzysztof.adamski@nokia.com>
3072 L: linux-i2c@vger.kernel.org
3073 S: Maintained
3074 F: Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3075 F: drivers/i2c/busses/i2c-axxia.c
3076
3077 AZ6007 DVB DRIVER
3078 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3079 L: linux-media@vger.kernel.org
3080 S: Maintained
3081 W: https://linuxtv.org
3082 T: git git://linuxtv.org/media_tree.git
3083 F: drivers/media/usb/dvb-usb-v2/az6007.c
3084
3085 AZTECH FM RADIO RECEIVER DRIVER
3086 M: Hans Verkuil <hverkuil@xs4all.nl>
3087 L: linux-media@vger.kernel.org
3088 S: Maintained
3089 W: https://linuxtv.org
3090 T: git git://linuxtv.org/media_tree.git
3091 F: drivers/media/radio/radio-aztech*
3092
3093 B43 WIRELESS DRIVER
3094 L: linux-wireless@vger.kernel.org
3095 L: b43-dev@lists.infradead.org
3096 S: Odd Fixes
3097 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3098 F: drivers/net/wireless/broadcom/b43/
3099
3100 B43LEGACY WIRELESS DRIVER
3101 M: Larry Finger <Larry.Finger@lwfinger.net>
3102 L: linux-wireless@vger.kernel.org
3103 L: b43-dev@lists.infradead.org
3104 S: Maintained
3105 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3106 F: drivers/net/wireless/broadcom/b43legacy/
3107
3108 BACKLIGHT CLASS/SUBSYSTEM
3109 M: Lee Jones <lee.jones@linaro.org>
3110 M: Daniel Thompson <daniel.thompson@linaro.org>
3111 M: Jingoo Han <jingoohan1@gmail.com>
3112 L: dri-devel@lists.freedesktop.org
3113 S: Maintained
3114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3115 F: Documentation/ABI/stable/sysfs-class-backlight
3116 F: Documentation/ABI/testing/sysfs-class-backlight
3117 F: Documentation/devicetree/bindings/leds/backlight
3118 F: drivers/video/backlight/
3119 F: include/linux/backlight.h
3120 F: include/linux/pwm_backlight.h
3121
3122 BATMAN ADVANCED
3123 M: Marek Lindner <mareklindner@neomailbox.ch>
3124 M: Simon Wunderlich <sw@simonwunderlich.de>
3125 M: Antonio Quartulli <a@unstable.cc>
3126 M: Sven Eckelmann <sven@narfation.org>
3127 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3128 S: Maintained
3129 W: https://www.open-mesh.org/
3130 Q: https://patchwork.open-mesh.org/project/batman/list/
3131 B: https://www.open-mesh.org/projects/batman-adv/issues
3132 C: irc://chat.freenode.net/batman
3133 T: git https://git.open-mesh.org/linux-merge.git
3134 F: Documentation/networking/batman-adv.rst
3135 F: include/uapi/linux/batadv_packet.h
3136 F: include/uapi/linux/batman_adv.h
3137 F: net/batman-adv/
3138
3139 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3140 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
3141 L: linux-hams@vger.kernel.org
3142 S: Maintained
3143 W: http://www.baycom.org/~tom/ham/ham.html
3144 F: drivers/net/hamradio/baycom*
3145
3146 BCACHE (BLOCK LAYER CACHE)
3147 M: Coly Li <colyli@suse.de>
3148 M: Kent Overstreet <kent.overstreet@gmail.com>
3149 L: linux-bcache@vger.kernel.org
3150 S: Maintained
3151 W: http://bcache.evilpiepirate.org
3152 C: irc://irc.oftc.net/bcache
3153 F: drivers/md/bcache/
3154
3155 BDISP ST MEDIA DRIVER
3156 M: Fabien Dessenne <fabien.dessenne@st.com>
3157 L: linux-media@vger.kernel.org
3158 S: Supported
3159 W: https://linuxtv.org
3160 T: git git://linuxtv.org/media_tree.git
3161 F: drivers/media/platform/sti/bdisp
3162
3163 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3164 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
3165 L: netdev@vger.kernel.org
3166 S: Maintained
3167 F: drivers/net/ethernet/ec_bhf.c
3168
3169 BEFS FILE SYSTEM
3170 M: Luis de Bethencourt <luisbg@kernel.org>
3171 M: Salah Triki <salah.triki@gmail.com>
3172 S: Maintained
3173 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3174 F: Documentation/filesystems/befs.rst
3175 F: fs/befs/
3176
3177 BFQ I/O SCHEDULER
3178 M: Paolo Valente <paolo.valente@linaro.org>
3179 M: Jens Axboe <axboe@kernel.dk>
3180 L: linux-block@vger.kernel.org
3181 S: Maintained
3182 F: Documentation/block/bfq-iosched.rst
3183 F: block/bfq-*
3184
3185 BFS FILE SYSTEM
3186 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3187 S: Maintained
3188 F: Documentation/filesystems/bfs.rst
3189 F: fs/bfs/
3190 F: include/uapi/linux/bfs_fs.h
3191
3192 BLINKM RGB LED DRIVER
3193 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
3194 S: Maintained
3195 F: drivers/leds/leds-blinkm.c
3196
3197 BLOCK LAYER
3198 M: Jens Axboe <axboe@kernel.dk>
3199 L: linux-block@vger.kernel.org
3200 S: Maintained
3201 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3202 F: block/
3203 F: drivers/block/
3204 F: fs/block_dev.c
3205 F: include/linux/blk*
3206 F: kernel/trace/blktrace.c
3207 F: lib/sbitmap.c
3208
3209 BLOCK2MTD DRIVER
3210 M: Joern Engel <joern@lazybastard.org>
3211 L: linux-mtd@lists.infradead.org
3212 S: Maintained
3213 F: drivers/mtd/devices/block2mtd.c
3214
3215 BLUETOOTH DRIVERS
3216 M: Marcel Holtmann <marcel@holtmann.org>
3217 M: Johan Hedberg <johan.hedberg@gmail.com>
3218 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3219 L: linux-bluetooth@vger.kernel.org
3220 S: Supported
3221 W: http://www.bluez.org/
3222 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3223 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3224 F: drivers/bluetooth/
3225
3226 BLUETOOTH SUBSYSTEM
3227 M: Marcel Holtmann <marcel@holtmann.org>
3228 M: Johan Hedberg <johan.hedberg@gmail.com>
3229 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3230 L: linux-bluetooth@vger.kernel.org
3231 S: Supported
3232 W: http://www.bluez.org/
3233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3234 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3235 F: include/net/bluetooth/
3236 F: net/bluetooth/
3237
3238 BONDING DRIVER
3239 M: Jay Vosburgh <j.vosburgh@gmail.com>
3240 M: Veaceslav Falico <vfalico@gmail.com>
3241 M: Andy Gospodarek <andy@greyhouse.net>
3242 L: netdev@vger.kernel.org
3243 S: Supported
3244 W: http://sourceforge.net/projects/bonding/
3245 F: drivers/net/bonding/
3246 F: include/uapi/linux/if_bonding.h
3247
3248 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3249 M: Dan Robertson <dan@dlrobertson.com>
3250 L: linux-iio@vger.kernel.org
3251 S: Maintained
3252 F: Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3253 F: drivers/iio/accel/bma400*
3254
3255 BPF (Safe dynamic programs and tools)
3256 M: Alexei Starovoitov <ast@kernel.org>
3257 M: Daniel Borkmann <daniel@iogearbox.net>
3258 M: Andrii Nakryiko <andrii@kernel.org>
3259 R: Martin KaFai Lau <kafai@fb.com>
3260 R: Song Liu <songliubraving@fb.com>
3261 R: Yonghong Song <yhs@fb.com>
3262 R: John Fastabend <john.fastabend@gmail.com>
3263 R: KP Singh <kpsingh@kernel.org>
3264 L: netdev@vger.kernel.org
3265 L: bpf@vger.kernel.org
3266 S: Supported
3267 W: https://bpf.io/
3268 Q: https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3269 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3270 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3271 F: Documentation/bpf/
3272 F: Documentation/networking/filter.rst
3273 F: arch/*/net/*
3274 F: include/linux/bpf*
3275 F: include/linux/filter.h
3276 F: include/trace/events/xdp.h
3277 F: include/uapi/linux/bpf*
3278 F: include/uapi/linux/filter.h
3279 F: kernel/bpf/
3280 F: kernel/trace/bpf_trace.c
3281 F: lib/test_bpf.c
3282 F: net/bpf/
3283 F: net/core/filter.c
3284 F: net/sched/act_bpf.c
3285 F: net/sched/cls_bpf.c
3286 F: samples/bpf/
3287 F: tools/bpf/
3288 F: tools/lib/bpf/
3289 F: tools/testing/selftests/bpf/
3290 N: bpf
3291 K: bpf
3292
3293 BPF JIT for ARM
3294 M: Shubham Bansal <illusionist.neo@gmail.com>
3295 L: netdev@vger.kernel.org
3296 L: bpf@vger.kernel.org
3297 S: Maintained
3298 F: arch/arm/net/
3299
3300 BPF JIT for ARM64
3301 M: Daniel Borkmann <daniel@iogearbox.net>
3302 M: Alexei Starovoitov <ast@kernel.org>
3303 M: Zi Shen Lim <zlim.lnx@gmail.com>
3304 L: netdev@vger.kernel.org
3305 L: bpf@vger.kernel.org
3306 S: Supported
3307 F: arch/arm64/net/
3308
3309 BPF JIT for MIPS (32-BIT AND 64-BIT)
3310 M: Paul Burton <paulburton@kernel.org>
3311 L: netdev@vger.kernel.org
3312 L: bpf@vger.kernel.org
3313 S: Maintained
3314 F: arch/mips/net/
3315
3316 BPF JIT for NFP NICs
3317 M: Jakub Kicinski <kuba@kernel.org>
3318 L: netdev@vger.kernel.org
3319 L: bpf@vger.kernel.org
3320 S: Supported
3321 F: drivers/net/ethernet/netronome/nfp/bpf/
3322
3323 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3324 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3325 M: Sandipan Das <sandipan@linux.ibm.com>
3326 L: netdev@vger.kernel.org
3327 L: bpf@vger.kernel.org
3328 S: Maintained
3329 F: arch/powerpc/net/
3330
3331 BPF JIT for RISC-V (32-bit)
3332 M: Luke Nelson <luke.r.nels@gmail.com>
3333 M: Xi Wang <xi.wang@gmail.com>
3334 L: netdev@vger.kernel.org
3335 L: bpf@vger.kernel.org
3336 S: Maintained
3337 F: arch/riscv/net/
3338 X: arch/riscv/net/bpf_jit_comp64.c
3339
3340 BPF JIT for RISC-V (64-bit)
3341 M: Björn Töpel <bjorn.topel@gmail.com>
3342 L: netdev@vger.kernel.org
3343 L: bpf@vger.kernel.org
3344 S: Maintained
3345 F: arch/riscv/net/
3346 X: arch/riscv/net/bpf_jit_comp32.c
3347
3348 BPF JIT for S390
3349 M: Ilya Leoshkevich <iii@linux.ibm.com>
3350 M: Heiko Carstens <hca@linux.ibm.com>
3351 M: Vasily Gorbik <gor@linux.ibm.com>
3352 L: netdev@vger.kernel.org
3353 L: bpf@vger.kernel.org
3354 S: Maintained
3355 F: arch/s390/net/
3356 X: arch/s390/net/pnet.c
3357
3358 BPF JIT for SPARC (32-BIT AND 64-BIT)
3359 M: David S. Miller <davem@davemloft.net>
3360 L: netdev@vger.kernel.org
3361 L: bpf@vger.kernel.org
3362 S: Maintained
3363 F: arch/sparc/net/
3364
3365 BPF JIT for X86 32-BIT
3366 M: Wang YanQing <udknight@gmail.com>
3367 L: netdev@vger.kernel.org
3368 L: bpf@vger.kernel.org
3369 S: Maintained
3370 F: arch/x86/net/bpf_jit_comp32.c
3371
3372 BPF JIT for X86 64-BIT
3373 M: Alexei Starovoitov <ast@kernel.org>
3374 M: Daniel Borkmann <daniel@iogearbox.net>
3375 L: netdev@vger.kernel.org
3376 L: bpf@vger.kernel.org
3377 S: Supported
3378 F: arch/x86/net/
3379 X: arch/x86/net/bpf_jit_comp32.c
3380
3381 BPF LSM (Security Audit and Enforcement using BPF)
3382 M: KP Singh <kpsingh@kernel.org>
3383 R: Florent Revest <revest@chromium.org>
3384 R: Brendan Jackman <jackmanb@chromium.org>
3385 L: bpf@vger.kernel.org
3386 S: Maintained
3387 F: Documentation/bpf/bpf_lsm.rst
3388 F: include/linux/bpf_lsm.h
3389 F: kernel/bpf/bpf_lsm.c
3390 F: security/bpf/
3391
3392 BROADCOM B44 10/100 ETHERNET DRIVER
3393 M: Michael Chan <michael.chan@broadcom.com>
3394 L: netdev@vger.kernel.org
3395 S: Supported
3396 F: drivers/net/ethernet/broadcom/b44.*
3397
3398 BROADCOM B53 ETHERNET SWITCH DRIVER
3399 M: Florian Fainelli <f.fainelli@gmail.com>
3400 L: netdev@vger.kernel.org
3401 L: openwrt-devel@lists.openwrt.org (subscribers-only)
3402 S: Supported
3403 F: Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3404 F: drivers/net/dsa/b53/*
3405 F: include/linux/platform_data/b53.h
3406
3407 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3408 M: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3409 L: bcm-kernel-feedback-list@broadcom.com
3410 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3411 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3412 S: Maintained
3413 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3414 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3415 F: drivers/pci/controller/pcie-brcmstb.c
3416 F: drivers/staging/vc04_services
3417 N: bcm2711
3418 N: bcm2835
3419
3420 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3421 M: Florian Fainelli <f.fainelli@gmail.com>
3422 M: Ray Jui <rjui@broadcom.com>
3423 M: Scott Branden <sbranden@broadcom.com>
3424 M: bcm-kernel-feedback-list@broadcom.com
3425 S: Maintained
3426 T: git git://github.com/broadcom/mach-bcm
3427 F: arch/arm/mach-bcm/
3428 N: bcm281*
3429 N: bcm113*
3430 N: bcm216*
3431 N: kona
3432
3433 BROADCOM BCM47XX MIPS ARCHITECTURE
3434 M: Hauke Mehrtens <hauke@hauke-m.de>
3435 M: Rafał Miłecki <zajec5@gmail.com>
3436 L: linux-mips@vger.kernel.org
3437 S: Maintained
3438 F: Documentation/devicetree/bindings/mips/brcm/
3439 F: arch/mips/bcm47xx/*
3440 F: arch/mips/include/asm/mach-bcm47xx/*
3441
3442 BROADCOM BCM5301X ARM ARCHITECTURE
3443 M: Hauke Mehrtens <hauke@hauke-m.de>
3444 M: Rafał Miłecki <zajec5@gmail.com>
3445 M: bcm-kernel-feedback-list@broadcom.com
3446 L: linux-arm-kernel@lists.infradead.org
3447 S: Maintained
3448 F: arch/arm/boot/dts/bcm470*
3449 F: arch/arm/boot/dts/bcm5301*
3450 F: arch/arm/boot/dts/bcm953012*
3451 F: arch/arm/mach-bcm/bcm_5301x.c
3452
3453 BROADCOM BCM53573 ARM ARCHITECTURE
3454 M: Rafał Miłecki <rafal@milecki.pl>
3455 L: bcm-kernel-feedback-list@broadcom.com
3456 L: linux-arm-kernel@lists.infradead.org
3457 S: Maintained
3458 F: arch/arm/boot/dts/bcm47189*
3459 F: arch/arm/boot/dts/bcm53573*
3460
3461 BROADCOM BCM63XX ARM ARCHITECTURE
3462 M: Florian Fainelli <f.fainelli@gmail.com>
3463 M: bcm-kernel-feedback-list@broadcom.com
3464 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3465 S: Maintained
3466 T: git git://github.com/broadcom/stblinux.git
3467 N: bcm63xx
3468
3469 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3470 M: Kevin Cernekee <cernekee@gmail.com>
3471 L: linux-usb@vger.kernel.org
3472 S: Maintained
3473 F: drivers/usb/gadget/udc/bcm63xx_udc.*
3474
3475 BROADCOM BCM7XXX ARM ARCHITECTURE
3476 M: Florian Fainelli <f.fainelli@gmail.com>
3477 M: bcm-kernel-feedback-list@broadcom.com
3478 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3479 S: Maintained
3480 T: git git://github.com/broadcom/stblinux.git
3481 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3482 F: arch/arm/boot/dts/bcm7*.dts*
3483 F: arch/arm/include/asm/hardware/cache-b15-rac.h
3484 F: arch/arm/mach-bcm/*brcmstb*
3485 F: arch/arm/mm/cache-b15-rac.c
3486 F: drivers/bus/brcmstb_gisb.c
3487 F: drivers/pci/controller/pcie-brcmstb.c
3488 N: brcmstb
3489
3490 BROADCOM BDC DRIVER
3491 M: Al Cooper <alcooperx@gmail.com>
3492 L: linux-usb@vger.kernel.org
3493 L: bcm-kernel-feedback-list@broadcom.com
3494 S: Maintained
3495 F: Documentation/devicetree/bindings/usb/brcm,bdc.txt
3496 F: drivers/usb/gadget/udc/bdc/
3497
3498 BROADCOM BMIPS CPUFREQ DRIVER
3499 M: Markus Mayer <mmayer@broadcom.com>
3500 M: bcm-kernel-feedback-list@broadcom.com
3501 L: linux-pm@vger.kernel.org
3502 S: Maintained
3503 F: drivers/cpufreq/bmips-cpufreq.c
3504
3505 BROADCOM BMIPS MIPS ARCHITECTURE
3506 M: Florian Fainelli <f.fainelli@gmail.com>
3507 L: bcm-kernel-feedback-list@broadcom.com
3508 L: linux-mips@vger.kernel.org
3509 S: Maintained
3510 T: git git://github.com/broadcom/stblinux.git
3511 F: arch/mips/bmips/*
3512 F: arch/mips/boot/dts/brcm/bcm*.dts*
3513 F: arch/mips/include/asm/mach-bmips/*
3514 F: arch/mips/kernel/*bmips*
3515 F: drivers/soc/bcm/bcm63xx
3516 F: drivers/irqchip/irq-bcm63*
3517 F: drivers/irqchip/irq-bcm7*
3518 F: drivers/irqchip/irq-brcmstb*
3519 F: include/linux/bcm963xx_nvram.h
3520 F: include/linux/bcm963xx_tag.h
3521
3522 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3523 M: Rasesh Mody <rmody@marvell.com>
3524 M: GR-Linux-NIC-Dev@marvell.com
3525 L: netdev@vger.kernel.org
3526 S: Supported
3527 F: drivers/net/ethernet/broadcom/bnx2.*
3528 F: drivers/net/ethernet/broadcom/bnx2_*
3529
3530 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3531 M: Saurav Kashyap <skashyap@marvell.com>
3532 M: Javed Hasan <jhasan@marvell.com>
3533 M: GR-QLogic-Storage-Upstream@marvell.com
3534 L: linux-scsi@vger.kernel.org
3535 S: Supported
3536 F: drivers/scsi/bnx2fc/
3537
3538 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3539 M: Nilesh Javali <njavali@marvell.com>
3540 M: Manish Rangankar <mrangankar@marvell.com>
3541 M: GR-QLogic-Storage-Upstream@marvell.com
3542 L: linux-scsi@vger.kernel.org
3543 S: Supported
3544 F: drivers/scsi/bnx2i/
3545
3546 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3547 M: Ariel Elior <aelior@marvell.com>
3548 M: Sudarsana Kalluru <skalluru@marvell.com>
3549 M: GR-everest-linux-l2@marvell.com
3550 L: netdev@vger.kernel.org
3551 S: Supported
3552 F: drivers/net/ethernet/broadcom/bnx2x/
3553
3554 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3555 M: Michael Chan <michael.chan@broadcom.com>
3556 L: netdev@vger.kernel.org
3557 S: Supported
3558 F: drivers/net/ethernet/broadcom/bnxt/
3559
3560 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3561 M: Arend van Spriel <arend.vanspriel@broadcom.com>
3562 M: Franky Lin <franky.lin@broadcom.com>
3563 M: Hante Meuleman <hante.meuleman@broadcom.com>
3564 M: Chi-hsien Lin <chi-hsien.lin@infineon.com>
3565 M: Wright Feng <wright.feng@infineon.com>
3566 M: Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3567 L: linux-wireless@vger.kernel.org
3568 L: brcm80211-dev-list.pdl@broadcom.com
3569 L: SHA-cyfmac-dev-list@infineon.com
3570 S: Supported
3571 F: drivers/net/wireless/broadcom/brcm80211/
3572
3573 BROADCOM BRCMSTB GPIO DRIVER
3574 M: Gregory Fong <gregory.0xf0@gmail.com>
3575 L: bcm-kernel-feedback-list@broadcom.com
3576 S: Supported
3577 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3578 F: drivers/gpio/gpio-brcmstb.c
3579
3580 BROADCOM BRCMSTB I2C DRIVER
3581 M: Kamal Dasu <kdasu.kdev@gmail.com>
3582 L: linux-i2c@vger.kernel.org
3583 L: bcm-kernel-feedback-list@broadcom.com
3584 S: Supported
3585 F: Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3586 F: drivers/i2c/busses/i2c-brcmstb.c
3587
3588 BROADCOM BRCMSTB USB EHCI DRIVER
3589 M: Al Cooper <alcooperx@gmail.com>
3590 L: linux-usb@vger.kernel.org
3591 L: bcm-kernel-feedback-list@broadcom.com
3592 S: Maintained
3593 F: Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3594 F: drivers/usb/host/ehci-brcm.*
3595
3596 BROADCOM BRCMSTB USB PIN MAP DRIVER
3597 M: Al Cooper <alcooperx@gmail.com>
3598 L: linux-usb@vger.kernel.org
3599 L: bcm-kernel-feedback-list@broadcom.com
3600 S: Maintained
3601 F: Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3602 F: drivers/usb/misc/brcmstb-usb-pinmap.c
3603
3604 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3605 M: Al Cooper <alcooperx@gmail.com>
3606 L: linux-kernel@vger.kernel.org
3607 L: bcm-kernel-feedback-list@broadcom.com
3608 S: Maintained
3609 F: drivers/phy/broadcom/phy-brcm-usb*
3610
3611 BROADCOM ETHERNET PHY DRIVERS
3612 M: Florian Fainelli <f.fainelli@gmail.com>
3613 L: bcm-kernel-feedback-list@broadcom.com
3614 L: netdev@vger.kernel.org
3615 S: Supported
3616 F: Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3617 F: drivers/net/phy/bcm*.[ch]
3618 F: drivers/net/phy/broadcom.c
3619 F: include/linux/brcmphy.h
3620
3621 BROADCOM GENET ETHERNET DRIVER
3622 M: Doug Berger <opendmb@gmail.com>
3623 M: Florian Fainelli <f.fainelli@gmail.com>
3624 L: bcm-kernel-feedback-list@broadcom.com
3625 L: netdev@vger.kernel.org
3626 S: Supported
3627 F: Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3628 F: Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3629 F: drivers/net/ethernet/broadcom/genet/
3630 F: drivers/net/mdio/mdio-bcm-unimac.c
3631 F: include/linux/platform_data/bcmgenet.h
3632 F: include/linux/platform_data/mdio-bcm-unimac.h
3633
3634 BROADCOM IPROC ARM ARCHITECTURE
3635 M: Ray Jui <rjui@broadcom.com>
3636 M: Scott Branden <sbranden@broadcom.com>
3637 M: bcm-kernel-feedback-list@broadcom.com
3638 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3639 S: Maintained
3640 T: git git://github.com/broadcom/cygnus-linux.git
3641 F: arch/arm64/boot/dts/broadcom/northstar2/*
3642 F: arch/arm64/boot/dts/broadcom/stingray/*
3643 F: drivers/clk/bcm/clk-ns*
3644 F: drivers/clk/bcm/clk-sr*
3645 F: drivers/pinctrl/bcm/pinctrl-ns*
3646 F: include/dt-bindings/clock/bcm-sr*
3647 N: iproc
3648 N: cygnus
3649 N: bcm[-_]nsp
3650 N: bcm9113*
3651 N: bcm9583*
3652 N: bcm9585*
3653 N: bcm9586*
3654 N: bcm988312
3655 N: bcm113*
3656 N: bcm583*
3657 N: bcm585*
3658 N: bcm586*
3659 N: bcm88312
3660 N: hr2
3661 N: stingray
3662
3663 BROADCOM KONA GPIO DRIVER
3664 M: Ray Jui <rjui@broadcom.com>
3665 L: bcm-kernel-feedback-list@broadcom.com
3666 S: Supported
3667 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3668 F: drivers/gpio/gpio-bcm-kona.c
3669
3670 BROADCOM NETXTREME-E ROCE DRIVER
3671 M: Selvin Xavier <selvin.xavier@broadcom.com>
3672 M: Devesh Sharma <devesh.sharma@broadcom.com>
3673 M: Somnath Kotur <somnath.kotur@broadcom.com>
3674 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3675 M: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3676 L: linux-rdma@vger.kernel.org
3677 S: Supported
3678 W: http://www.broadcom.com
3679 F: drivers/infiniband/hw/bnxt_re/
3680 F: include/uapi/rdma/bnxt_re-abi.h
3681
3682 BROADCOM NVRAM DRIVER
3683 M: Rafał Miłecki <zajec5@gmail.com>
3684 L: linux-mips@vger.kernel.org
3685 S: Maintained
3686 F: drivers/firmware/broadcom/*
3687
3688 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3689 M: Rafał Miłecki <zajec5@gmail.com>
3690 L: linux-wireless@vger.kernel.org
3691 S: Maintained
3692 F: drivers/bcma/
3693 F: include/linux/bcma/
3694
3695 BROADCOM SPI DRIVER
3696 M: Kamal Dasu <kdasu.kdev@gmail.com>
3697 M: bcm-kernel-feedback-list@broadcom.com
3698 S: Maintained
3699 F: Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3700 F: drivers/spi/spi-bcm-qspi.*
3701 F: drivers/spi/spi-brcmstb-qspi.c
3702 F: drivers/spi/spi-iproc-qspi.c
3703
3704 BROADCOM STB AVS CPUFREQ DRIVER
3705 M: Markus Mayer <mmayer@broadcom.com>
3706 M: bcm-kernel-feedback-list@broadcom.com
3707 L: linux-pm@vger.kernel.org
3708 S: Maintained
3709 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3710 F: drivers/cpufreq/brcmstb*
3711
3712 BROADCOM STB AVS TMON DRIVER
3713 M: Markus Mayer <mmayer@broadcom.com>
3714 M: bcm-kernel-feedback-list@broadcom.com
3715 L: linux-pm@vger.kernel.org
3716 S: Maintained
3717 F: Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3718 F: drivers/thermal/broadcom/brcmstb*
3719
3720 BROADCOM STB DPFE DRIVER
3721 M: Markus Mayer <mmayer@broadcom.com>
3722 M: bcm-kernel-feedback-list@broadcom.com
3723 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3724 S: Maintained
3725 F: Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3726 F: drivers/memory/brcmstb_dpfe.c
3727
3728 BROADCOM STB NAND FLASH DRIVER
3729 M: Brian Norris <computersforpeace@gmail.com>
3730 M: Kamal Dasu <kdasu.kdev@gmail.com>
3731 L: linux-mtd@lists.infradead.org
3732 L: bcm-kernel-feedback-list@broadcom.com
3733 S: Maintained
3734 F: drivers/mtd/nand/raw/brcmnand/
3735
3736 BROADCOM SYSTEMPORT ETHERNET DRIVER
3737 M: Florian Fainelli <f.fainelli@gmail.com>
3738 L: bcm-kernel-feedback-list@broadcom.com
3739 L: netdev@vger.kernel.org
3740 S: Supported
3741 F: drivers/net/ethernet/broadcom/bcmsysport.*
3742
3743 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3744 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
3745 M: Prashant Sreedharan <prashant@broadcom.com>
3746 M: Michael Chan <mchan@broadcom.com>
3747 L: netdev@vger.kernel.org
3748 S: Supported
3749 F: drivers/net/ethernet/broadcom/tg3.*
3750
3751 BROCADE BFA FC SCSI DRIVER
3752 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3753 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3754 L: linux-scsi@vger.kernel.org
3755 S: Supported
3756 F: drivers/scsi/bfa/
3757
3758 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3759 M: Rasesh Mody <rmody@marvell.com>
3760 M: Sudarsana Kalluru <skalluru@marvell.com>
3761 M: GR-Linux-NIC-Dev@marvell.com
3762 L: netdev@vger.kernel.org
3763 S: Supported
3764 F: drivers/net/ethernet/brocade/bna/
3765
3766 BSG (block layer generic sg v4 driver)
3767 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3768 L: linux-scsi@vger.kernel.org
3769 S: Supported
3770 F: block/bsg.c
3771 F: include/linux/bsg.h
3772 F: include/uapi/linux/bsg.h
3773
3774 BT87X AUDIO DRIVER
3775 M: Clemens Ladisch <clemens@ladisch.de>
3776 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3777 S: Maintained
3778 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3779 F: Documentation/sound/cards/bt87x.rst
3780 F: sound/pci/bt87x.c
3781
3782 BT8XXGPIO DRIVER
3783 M: Michael Buesch <m@bues.ch>
3784 S: Maintained
3785 W: http://bu3sch.de/btgpio.php
3786 F: drivers/gpio/gpio-bt8xx.c
3787
3788 BTRFS FILE SYSTEM
3789 M: Chris Mason <clm@fb.com>
3790 M: Josef Bacik <josef@toxicpanda.com>
3791 M: David Sterba <dsterba@suse.com>
3792 L: linux-btrfs@vger.kernel.org
3793 S: Maintained
3794 W: http://btrfs.wiki.kernel.org/
3795 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
3796 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3797 F: Documentation/filesystems/btrfs.rst
3798 F: fs/btrfs/
3799 F: include/linux/btrfs*
3800 F: include/uapi/linux/btrfs*
3801
3802 BTTV VIDEO4LINUX DRIVER
3803 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3804 L: linux-media@vger.kernel.org
3805 S: Odd fixes
3806 W: https://linuxtv.org
3807 T: git git://linuxtv.org/media_tree.git
3808 F: Documentation/driver-api/media/drivers/bttv*
3809 F: drivers/media/pci/bt8xx/bttv*
3810
3811 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3812 M: Chanwoo Choi <cw00.choi@samsung.com>
3813 L: linux-pm@vger.kernel.org
3814 L: linux-samsung-soc@vger.kernel.org
3815 S: Maintained
3816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3817 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3818 F: drivers/devfreq/exynos-bus.c
3819
3820 BUSLOGIC SCSI DRIVER
3821 M: Khalid Aziz <khalid@gonehiking.org>
3822 L: linux-scsi@vger.kernel.org
3823 S: Maintained
3824 F: drivers/scsi/BusLogic.*
3825 F: drivers/scsi/FlashPoint.*
3826
3827 C-MEDIA CMI8788 DRIVER
3828 M: Clemens Ladisch <clemens@ladisch.de>
3829 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3830 S: Maintained
3831 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3832 F: sound/pci/oxygen/
3833
3834 C-SKY ARCHITECTURE
3835 M: Guo Ren <guoren@kernel.org>
3836 L: linux-csky@vger.kernel.org
3837 S: Supported
3838 T: git https://github.com/c-sky/csky-linux.git
3839 F: Documentation/devicetree/bindings/csky/
3840 F: Documentation/devicetree/bindings/interrupt-controller/csky,*
3841 F: Documentation/devicetree/bindings/timer/csky,*
3842 F: arch/csky/
3843 F: drivers/clocksource/timer-gx6605s.c
3844 F: drivers/clocksource/timer-mp-csky.c
3845 F: drivers/irqchip/irq-csky-*
3846 N: csky
3847 K: csky
3848
3849 C6X ARCHITECTURE
3850 M: Mark Salter <msalter@redhat.com>
3851 M: Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3852 L: linux-c6x-dev@linux-c6x.org
3853 S: Maintained
3854 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
3855 F: arch/c6x/
3856
3857 CA8210 IEEE-802.15.4 RADIO DRIVER
3858 M: Harry Morris <h.morris@cascoda.com>
3859 L: linux-wpan@vger.kernel.org
3860 S: Maintained
3861 W: https://github.com/Cascoda/ca8210-linux.git
3862 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3863 F: drivers/net/ieee802154/ca8210.c
3864
3865 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3866 M: David Howells <dhowells@redhat.com>
3867 L: linux-cachefs@redhat.com (moderated for non-subscribers)
3868 S: Supported
3869 F: Documentation/filesystems/caching/cachefiles.rst
3870 F: fs/cachefiles/
3871
3872 CADENCE MIPI-CSI2 BRIDGES
3873 M: Maxime Ripard <mripard@kernel.org>
3874 L: linux-media@vger.kernel.org
3875 S: Maintained
3876 F: Documentation/devicetree/bindings/media/cdns,*.txt
3877 F: drivers/media/platform/cadence/cdns-csi2*
3878
3879 CADENCE NAND DRIVER
3880 L: linux-mtd@lists.infradead.org
3881 S: Orphan
3882 F: Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3883 F: drivers/mtd/nand/raw/cadence-nand-controller.c
3884
3885 CADENCE USB3 DRD IP DRIVER
3886 M: Peter Chen <peter.chen@nxp.com>
3887 M: Pawel Laszczak <pawell@cadence.com>
3888 M: Roger Quadros <rogerq@ti.com>
3889 R: Aswath Govindraju <a-govindraju@ti.com>
3890 L: linux-usb@vger.kernel.org
3891 S: Maintained
3892 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3893 F: Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3894 F: drivers/usb/cdns3/
3895
3896 CADET FM/AM RADIO RECEIVER DRIVER
3897 M: Hans Verkuil <hverkuil@xs4all.nl>
3898 L: linux-media@vger.kernel.org
3899 S: Maintained
3900 W: https://linuxtv.org
3901 T: git git://linuxtv.org/media_tree.git
3902 F: drivers/media/radio/radio-cadet*
3903
3904 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3905 L: linux-media@vger.kernel.org
3906 S: Orphan
3907 T: git git://linuxtv.org/media_tree.git
3908 F: Documentation/admin-guide/media/cafe_ccic*
3909 F: drivers/media/platform/marvell-ccic/
3910
3911 CAIF NETWORK LAYER
3912 L: netdev@vger.kernel.org
3913 S: Orphan
3914 F: Documentation/networking/caif/
3915 F: drivers/net/caif/
3916 F: include/net/caif/
3917 F: include/uapi/linux/caif/
3918 F: net/caif/
3919
3920 CAKE QDISC
3921 M: Toke Høiland-Jørgensen <toke@toke.dk>
3922 L: cake@lists.bufferbloat.net (moderated for non-subscribers)
3923 S: Maintained
3924 F: net/sched/sch_cake.c
3925
3926 CAN NETWORK DRIVERS
3927 M: Wolfgang Grandegger <wg@grandegger.com>
3928 M: Marc Kleine-Budde <mkl@pengutronix.de>
3929 L: linux-can@vger.kernel.org
3930 S: Maintained
3931 W: https://github.com/linux-can
3932 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3933 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3934 F: Documentation/devicetree/bindings/net/can/
3935 F: drivers/net/can/
3936 F: include/linux/can/dev.h
3937 F: include/linux/can/led.h
3938 F: include/linux/can/platform/
3939 F: include/linux/can/rx-offload.h
3940 F: include/uapi/linux/can/error.h
3941 F: include/uapi/linux/can/netlink.h
3942 F: include/uapi/linux/can/vxcan.h
3943
3944 CAN NETWORK LAYER
3945 M: Oliver Hartkopp <socketcan@hartkopp.net>
3946 M: Marc Kleine-Budde <mkl@pengutronix.de>
3947 L: linux-can@vger.kernel.org
3948 S: Maintained
3949 W: https://github.com/linux-can
3950 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3951 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3952 F: Documentation/networking/can.rst
3953 F: include/linux/can/core.h
3954 F: include/linux/can/skb.h
3955 F: include/net/netns/can.h
3956 F: include/uapi/linux/can.h
3957 F: include/uapi/linux/can/bcm.h
3958 F: include/uapi/linux/can/gw.h
3959 F: include/uapi/linux/can/isotp.h
3960 F: include/uapi/linux/can/raw.h
3961 F: net/can/
3962
3963 CAN-J1939 NETWORK LAYER
3964 M: Robin van der Gracht <robin@protonic.nl>
3965 M: Oleksij Rempel <o.rempel@pengutronix.de>
3966 R: Pengutronix Kernel Team <kernel@pengutronix.de>
3967 L: linux-can@vger.kernel.org
3968 S: Maintained
3969 F: Documentation/networking/j1939.rst
3970 F: include/uapi/linux/can/j1939.h
3971 F: net/can/j1939/
3972
3973 CAPABILITIES
3974 M: Serge Hallyn <serge@hallyn.com>
3975 L: linux-security-module@vger.kernel.org
3976 S: Supported
3977 F: include/linux/capability.h
3978 F: include/uapi/linux/capability.h
3979 F: kernel/capability.c
3980 F: security/commoncap.c
3981
3982 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3983 M: Kevin Tsai <ktsai@capellamicro.com>
3984 S: Maintained
3985 F: drivers/iio/light/cm*
3986
3987 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3988 M: Christian Lamparter <chunkeey@googlemail.com>
3989 L: linux-wireless@vger.kernel.org
3990 S: Maintained
3991 W: https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3992 F: drivers/net/wireless/ath/carl9170/
3993
3994 CAVIUM I2C DRIVER
3995 M: Robert Richter <rric@kernel.org>
3996 S: Odd Fixes
3997 W: http://www.marvell.com
3998 F: drivers/i2c/busses/i2c-octeon*
3999 F: drivers/i2c/busses/i2c-thunderx*
4000
4001 CAVIUM LIQUIDIO NETWORK DRIVER
4002 M: Derek Chickles <dchickles@marvell.com>
4003 M: Satanand Burla <sburla@marvell.com>
4004 M: Felix Manlunas <fmanlunas@marvell.com>
4005 L: netdev@vger.kernel.org
4006 S: Supported
4007 W: http://www.marvell.com
4008 F: drivers/net/ethernet/cavium/liquidio/
4009
4010 CAVIUM MMC DRIVER
4011 M: Robert Richter <rric@kernel.org>
4012 S: Odd Fixes
4013 W: http://www.marvell.com
4014 F: drivers/mmc/host/cavium*
4015
4016 CAVIUM OCTEON-TX CRYPTO DRIVER
4017 M: George Cherian <gcherian@marvell.com>
4018 L: linux-crypto@vger.kernel.org
4019 S: Supported
4020 W: http://www.marvell.com
4021 F: drivers/crypto/cavium/cpt/
4022
4023 CAVIUM THUNDERX2 ARM64 SOC
4024 M: Robert Richter <rric@kernel.org>
4025 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4026 S: Odd Fixes
4027 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4028 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
4029
4030 CC2520 IEEE-802.15.4 RADIO DRIVER
4031 M: Varka Bhadram <varkabhadram@gmail.com>
4032 L: linux-wpan@vger.kernel.org
4033 S: Maintained
4034 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4035 F: drivers/net/ieee802154/cc2520.c
4036 F: include/linux/spi/cc2520.h
4037
4038 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4039 M: Gilad Ben-Yossef <gilad@benyossef.com>
4040 L: linux-crypto@vger.kernel.org
4041 S: Supported
4042 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4043 F: drivers/crypto/ccree/
4044
4045 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4046 M: Hadar Gat <hadar.gat@arm.com>
4047 L: linux-crypto@vger.kernel.org
4048 S: Supported
4049 F: drivers/char/hw_random/cctrng.c
4050 F: drivers/char/hw_random/cctrng.h
4051 F: Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4052 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4053
4054 CEC FRAMEWORK
4055 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4056 L: linux-media@vger.kernel.org
4057 S: Supported
4058 W: http://linuxtv.org
4059 T: git git://linuxtv.org/media_tree.git
4060 F: Documentation/ABI/testing/debugfs-cec-error-inj
4061 F: Documentation/devicetree/bindings/media/cec.txt
4062 F: Documentation/driver-api/media/cec-core.rst
4063 F: Documentation/userspace-api/media/cec
4064 F: drivers/media/cec/
4065 F: drivers/media/rc/keymaps/rc-cec.c
4066 F: include/media/cec-notifier.h
4067 F: include/media/cec.h
4068 F: include/uapi/linux/cec-funcs.h
4069 F: include/uapi/linux/cec.h
4070
4071 CEC GPIO DRIVER
4072 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4073 L: linux-media@vger.kernel.org
4074 S: Supported
4075 W: http://linuxtv.org
4076 T: git git://linuxtv.org/media_tree.git
4077 F: Documentation/devicetree/bindings/media/cec-gpio.txt
4078 F: drivers/media/cec/platform/cec-gpio/
4079
4080 CELL BROADBAND ENGINE ARCHITECTURE
4081 M: Arnd Bergmann <arnd@arndb.de>
4082 L: linuxppc-dev@lists.ozlabs.org
4083 S: Supported
4084 W: http://www.ibm.com/developerworks/power/cell/
4085 F: arch/powerpc/include/asm/cell*.h
4086 F: arch/powerpc/include/asm/spu*.h
4087 F: arch/powerpc/include/uapi/asm/spu*.h
4088 F: arch/powerpc/oprofile/*cell*
4089 F: arch/powerpc/platforms/cell/
4090
4091 CELLWISE CW2015 BATTERY DRIVER
4092 M: Tobias Schrammm <t.schramm@manjaro.org>
4093 S: Maintained
4094 F: Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4095 F: drivers/power/supply/cw2015_battery.c
4096
4097 CEPH COMMON CODE (LIBCEPH)
4098 M: Ilya Dryomov <idryomov@gmail.com>
4099 M: Jeff Layton <jlayton@kernel.org>
4100 L: ceph-devel@vger.kernel.org
4101 S: Supported
4102 W: http://ceph.com/
4103 T: git git://github.com/ceph/ceph-client.git
4104 F: include/linux/ceph/
4105 F: include/linux/crush/
4106 F: net/ceph/
4107
4108 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4109 M: Jeff Layton <jlayton@kernel.org>
4110 M: Ilya Dryomov <idryomov@gmail.com>
4111 L: ceph-devel@vger.kernel.org
4112 S: Supported
4113 W: http://ceph.com/
4114 T: git git://github.com/ceph/ceph-client.git
4115 F: Documentation/filesystems/ceph.rst
4116 F: fs/ceph/
4117
4118 CERTIFICATE HANDLING
4119 M: David Howells <dhowells@redhat.com>
4120 M: David Woodhouse <dwmw2@infradead.org>
4121 L: keyrings@vger.kernel.org
4122 S: Maintained
4123 F: Documentation/admin-guide/module-signing.rst
4124 F: certs/
4125 F: scripts/extract-cert.c
4126 F: scripts/sign-file.c
4127
4128 CFAG12864B LCD DRIVER
4129 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4130 S: Maintained
4131 F: drivers/auxdisplay/cfag12864b.c
4132 F: include/linux/cfag12864b.h
4133
4134 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4135 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4136 S: Maintained
4137 F: drivers/auxdisplay/cfag12864bfb.c
4138 F: include/linux/cfag12864b.h
4139
4140 CHAR and MISC DRIVERS
4141 M: Arnd Bergmann <arnd@arndb.de>
4142 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4143 S: Supported
4144 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4145 F: drivers/char/
4146 F: drivers/misc/
4147 F: include/linux/miscdevice.h
4148 X: drivers/char/agp/
4149 X: drivers/char/hw_random/
4150 X: drivers/char/ipmi/
4151 X: drivers/char/random.c
4152 X: drivers/char/tpm/
4153
4154 CHECKPATCH
4155 M: Andy Whitcroft <apw@canonical.com>
4156 M: Joe Perches <joe@perches.com>
4157 S: Maintained
4158 F: scripts/checkpatch.pl
4159
4160 CHINESE DOCUMENTATION
4161 M: Harry Wei <harryxiyou@gmail.com>
4162 M: Alex Shi <alex.shi@linux.alibaba.com>
4163 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4164 S: Maintained
4165 F: Documentation/translations/zh_CN/
4166
4167 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4168 M: Peter Chen <Peter.Chen@nxp.com>
4169 L: linux-usb@vger.kernel.org
4170 S: Maintained
4171 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4172 F: drivers/usb/chipidea/
4173
4174 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4175 M: Hans de Goede <hdegoede@redhat.com>
4176 L: linux-input@vger.kernel.org
4177 S: Maintained
4178 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4179 F: drivers/input/touchscreen/chipone_icn8318.c
4180
4181 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4182 M: Hans de Goede <hdegoede@redhat.com>
4183 L: linux-input@vger.kernel.org
4184 S: Maintained
4185 F: drivers/input/touchscreen/chipone_icn8505.c
4186
4187 CHROME HARDWARE PLATFORM SUPPORT
4188 M: Benson Leung <bleung@chromium.org>
4189 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4190 S: Maintained
4191 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4192 F: drivers/platform/chrome/
4193
4194 CHROMEOS EC CODEC DRIVER
4195 M: Cheng-Yi Chiang <cychiang@chromium.org>
4196 R: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4197 R: Guenter Roeck <groeck@chromium.org>
4198 S: Maintained
4199 F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4200 F: sound/soc/codecs/cros_ec_codec.*
4201
4202 CHROMEOS EC SUBDRIVERS
4203 M: Benson Leung <bleung@chromium.org>
4204 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4205 R: Guenter Roeck <groeck@chromium.org>
4206 S: Maintained
4207 F: drivers/power/supply/cros_usbpd-charger.c
4208 N: cros_ec
4209 N: cros-ec
4210
4211 CHRONTEL CH7322 CEC DRIVER
4212 M: Jeff Chase <jnchase@google.com>
4213 L: linux-media@vger.kernel.org
4214 S: Maintained
4215 T: git git://linuxtv.org/media_tree.git
4216 F: Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4217 F: drivers/media/cec/i2c/ch7322.c
4218
4219 CIRRUS LOGIC AUDIO CODEC DRIVERS
4220 M: James Schulman <james.schulman@cirrus.com>
4221 M: David Rhodes <david.rhodes@cirrus.com>
4222 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4223 L: patches@opensource.cirrus.com
4224 S: Maintained
4225 F: sound/soc/codecs/cs*
4226
4227 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4228 M: Hartley Sweeten <hsweeten@visionengravers.com>
4229 L: netdev@vger.kernel.org
4230 S: Maintained
4231 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
4232
4233 CIRRUS LOGIC LOCHNAGAR DRIVER
4234 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4235 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4236 L: patches@opensource.cirrus.com
4237 S: Supported
4238 F: Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4239 F: Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4240 F: Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4241 F: Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4242 F: Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4243 F: Documentation/hwmon/lochnagar.rst
4244 F: drivers/clk/clk-lochnagar.c
4245 F: drivers/hwmon/lochnagar-hwmon.c
4246 F: drivers/mfd/lochnagar-i2c.c
4247 F: drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4248 F: drivers/regulator/lochnagar-regulator.c
4249 F: include/dt-bindings/clk/lochnagar.h
4250 F: include/dt-bindings/pinctrl/lochnagar.h
4251 F: include/linux/mfd/lochnagar*
4252 F: sound/soc/codecs/lochnagar-sc.c
4253
4254 CIRRUS LOGIC MADERA CODEC DRIVERS
4255 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4256 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4257 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4258 L: patches@opensource.cirrus.com
4259 S: Supported
4260 W: https://github.com/CirrusLogic/linux-drivers/wiki
4261 T: git https://github.com/CirrusLogic/linux-drivers.git
4262 F: Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4263 F: Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4264 F: Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4265 F: drivers/gpio/gpio-madera*
4266 F: drivers/irqchip/irq-madera*
4267 F: drivers/mfd/cs47l*
4268 F: drivers/mfd/madera*
4269 F: drivers/pinctrl/cirrus/*
4270 F: include/dt-bindings/sound/madera*
4271 F: include/linux/irqchip/irq-madera*
4272 F: include/linux/mfd/madera/*
4273 F: include/sound/madera*
4274 F: sound/soc/codecs/cs47l*
4275 F: sound/soc/codecs/madera*
4276
4277 CISCO FCOE HBA DRIVER
4278 M: Satish Kharat <satishkh@cisco.com>
4279 M: Sesidhar Baddela <sebaddel@cisco.com>
4280 M: Karan Tilak Kumar <kartilak@cisco.com>
4281 L: linux-scsi@vger.kernel.org
4282 S: Supported
4283 F: drivers/scsi/fnic/
4284
4285 CISCO SCSI HBA DRIVER
4286 M: Karan Tilak Kumar <kartilak@cisco.com>
4287 M: Sesidhar Baddela <sebaddel@cisco.com>
4288 L: linux-scsi@vger.kernel.org
4289 S: Supported
4290 F: drivers/scsi/snic/
4291
4292 CISCO VIC ETHERNET NIC DRIVER
4293 M: Christian Benvenuti <benve@cisco.com>
4294 M: Govindarajulu Varadarajan <_govind@gmx.com>
4295 S: Supported
4296 F: drivers/net/ethernet/cisco/enic/
4297
4298 CISCO VIC LOW LATENCY NIC DRIVER
4299 M: Christian Benvenuti <benve@cisco.com>
4300 M: Nelson Escobar <neescoba@cisco.com>
4301 S: Supported
4302 F: drivers/infiniband/hw/usnic/
4303
4304 CLANG-FORMAT FILE
4305 M: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4306 S: Maintained
4307 F: .clang-format
4308
4309 CLANG/LLVM BUILD SUPPORT
4310 M: Nathan Chancellor <natechancellor@gmail.com>
4311 M: Nick Desaulniers <ndesaulniers@google.com>
4312 L: clang-built-linux@googlegroups.com
4313 S: Supported
4314 W: https://clangbuiltlinux.github.io/
4315 B: https://github.com/ClangBuiltLinux/linux/issues
4316 C: irc://chat.freenode.net/clangbuiltlinux
4317 F: Documentation/kbuild/llvm.rst
4318 F: scripts/clang-tools/
4319 F: scripts/lld-version.sh
4320 K: \b(?i:clang|llvm)\b
4321
4322 CLEANCACHE API
4323 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4324 L: linux-kernel@vger.kernel.org
4325 S: Maintained
4326 F: include/linux/cleancache.h
4327 F: mm/cleancache.c
4328
4329 CLK API
4330 M: Russell King <linux@armlinux.org.uk>
4331 L: linux-clk@vger.kernel.org
4332 S: Maintained
4333 F: include/linux/clk.h
4334
4335 CLOCKSOURCE, CLOCKEVENT DRIVERS
4336 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4337 M: Thomas Gleixner <tglx@linutronix.de>
4338 L: linux-kernel@vger.kernel.org
4339 S: Supported
4340 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4341 F: Documentation/devicetree/bindings/timer/
4342 F: drivers/clocksource/
4343
4344 CMPC ACPI DRIVER
4345 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4346 M: Daniel Oliveira Nascimento <don@syst.com.br>
4347 L: platform-driver-x86@vger.kernel.org
4348 S: Supported
4349 F: drivers/platform/x86/classmate-laptop.c
4350
4351 COBALT MEDIA DRIVER
4352 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4353 L: linux-media@vger.kernel.org
4354 S: Supported
4355 W: https://linuxtv.org
4356 T: git git://linuxtv.org/media_tree.git
4357 F: drivers/media/pci/cobalt/
4358
4359 COCCINELLE/Semantic Patches (SmPL)
4360 M: Julia Lawall <Julia.Lawall@inria.fr>
4361 M: Gilles Muller <Gilles.Muller@inria.fr>
4362 M: Nicolas Palix <nicolas.palix@imag.fr>
4363 M: Michal Marek <michal.lkml@markovi.net>
4364 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
4365 S: Supported
4366 W: http://coccinelle.lip6.fr/
4367 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4368 F: Documentation/dev-tools/coccinelle.rst
4369 F: scripts/coccicheck
4370 F: scripts/coccinelle/
4371
4372 CODA FILE SYSTEM
4373 M: Jan Harkes <jaharkes@cs.cmu.edu>
4374 M: coda@cs.cmu.edu
4375 L: codalist@coda.cs.cmu.edu
4376 S: Maintained
4377 W: http://www.coda.cs.cmu.edu/
4378 F: Documentation/filesystems/coda.rst
4379 F: fs/coda/
4380 F: include/linux/coda*.h
4381 F: include/uapi/linux/coda*.h
4382
4383 CODA V4L2 MEM2MEM DRIVER
4384 M: Philipp Zabel <p.zabel@pengutronix.de>
4385 L: linux-media@vger.kernel.org
4386 S: Maintained
4387 F: Documentation/devicetree/bindings/media/coda.yaml
4388 F: drivers/media/platform/coda/
4389
4390 CODE OF CONDUCT
4391 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4392 S: Supported
4393 F: Documentation/process/code-of-conduct-interpretation.rst
4394 F: Documentation/process/code-of-conduct.rst
4395
4396 COMMON CLK FRAMEWORK
4397 M: Michael Turquette <mturquette@baylibre.com>
4398 M: Stephen Boyd <sboyd@kernel.org>
4399 L: linux-clk@vger.kernel.org
4400 S: Maintained
4401 Q: http://patchwork.kernel.org/project/linux-clk/list/
4402 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4403 F: Documentation/devicetree/bindings/clock/
4404 F: drivers/clk/
4405 F: include/linux/clk-pr*
4406 F: include/linux/clk/
4407 F: include/linux/of_clk.h
4408 X: drivers/clk/clkdev.c
4409
4410 COMMON INTERNET FILE SYSTEM (CIFS)
4411 M: Steve French <sfrench@samba.org>
4412 L: linux-cifs@vger.kernel.org
4413 L: samba-technical@lists.samba.org (moderated for non-subscribers)
4414 S: Supported
4415 W: http://linux-cifs.samba.org/
4416 T: git git://git.samba.org/sfrench/cifs-2.6.git
4417 F: Documentation/admin-guide/cifs/
4418 F: fs/cifs/
4419
4420 COMPACTPCI HOTPLUG CORE
4421 M: Scott Murray <scott@spiteful.org>
4422 L: linux-pci@vger.kernel.org
4423 S: Maintained
4424 F: drivers/pci/hotplug/cpci_hotplug*
4425
4426 COMPACTPCI HOTPLUG GENERIC DRIVER
4427 M: Scott Murray <scott@spiteful.org>
4428 L: linux-pci@vger.kernel.org
4429 S: Maintained
4430 F: drivers/pci/hotplug/cpcihp_generic.c
4431
4432 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4433 M: Scott Murray <scott@spiteful.org>
4434 L: linux-pci@vger.kernel.org
4435 S: Maintained
4436 F: drivers/pci/hotplug/cpcihp_zt5550.*
4437
4438 COMPAL LAPTOP SUPPORT
4439 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4440 L: platform-driver-x86@vger.kernel.org
4441 S: Maintained
4442 F: drivers/platform/x86/compal-laptop.c
4443
4444 COMPILER ATTRIBUTES
4445 M: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4446 S: Maintained
4447 F: include/linux/compiler_attributes.h
4448
4449 CONEXANT ACCESSRUNNER USB DRIVER
4450 L: accessrunner-general@lists.sourceforge.net
4451 S: Orphan
4452 W: http://accessrunner.sourceforge.net/
4453 F: drivers/usb/atm/cxacru.c
4454
4455 CONFIGFS
4456 M: Joel Becker <jlbec@evilplan.org>
4457 M: Christoph Hellwig <hch@lst.de>
4458 S: Supported
4459 T: git git://git.infradead.org/users/hch/configfs.git
4460 F: fs/configfs/
4461 F: include/linux/configfs.h
4462 F: samples/configfs/
4463
4464 CONSOLE SUBSYSTEM
4465 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4466 S: Supported
4467 F: drivers/video/console/
4468 F: include/linux/console*
4469
4470 CONTROL GROUP (CGROUP)
4471 M: Tejun Heo <tj@kernel.org>
4472 M: Li Zefan <lizefan@huawei.com>
4473 M: Johannes Weiner <hannes@cmpxchg.org>
4474 L: cgroups@vger.kernel.org
4475 S: Maintained
4476 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4477 F: Documentation/admin-guide/cgroup-v1/
4478 F: Documentation/admin-guide/cgroup-v2.rst
4479 F: include/linux/cgroup*
4480 F: kernel/cgroup/
4481
4482 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4483 M: Tejun Heo <tj@kernel.org>
4484 M: Jens Axboe <axboe@kernel.dk>
4485 L: cgroups@vger.kernel.org
4486 L: linux-block@vger.kernel.org
4487 T: git git://git.kernel.dk/linux-block
4488 F: Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4489 F: block/bfq-cgroup.c
4490 F: block/blk-cgroup.c
4491 F: block/blk-iolatency.c
4492 F: block/blk-throttle.c
4493 F: include/linux/blk-cgroup.h
4494
4495 CONTROL GROUP - CPUSET
4496 M: Li Zefan <lizefan@huawei.com>
4497 L: cgroups@vger.kernel.org
4498 S: Maintained
4499 W: http://www.bullopensource.org/cpuset/
4500 W: http://oss.sgi.com/projects/cpusets/
4501 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4502 F: Documentation/admin-guide/cgroup-v1/cpusets.rst
4503 F: include/linux/cpuset.h
4504 F: kernel/cgroup/cpuset.c
4505
4506 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4507 M: Johannes Weiner <hannes@cmpxchg.org>
4508 M: Michal Hocko <mhocko@kernel.org>
4509 M: Vladimir Davydov <vdavydov.dev@gmail.com>
4510 L: cgroups@vger.kernel.org
4511 L: linux-mm@kvack.org
4512 S: Maintained
4513 F: mm/memcontrol.c
4514 F: mm/swap_cgroup.c
4515
4516 CORETEMP HARDWARE MONITORING DRIVER
4517 M: Fenghua Yu <fenghua.yu@intel.com>
4518 L: linux-hwmon@vger.kernel.org
4519 S: Maintained
4520 F: Documentation/hwmon/coretemp.rst
4521 F: drivers/hwmon/coretemp.c
4522
4523 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4524 M: Marius Zachmann <mail@mariuszachmann.de>
4525 L: linux-hwmon@vger.kernel.org
4526 S: Maintained
4527 F: drivers/hwmon/corsair-cpro.c
4528
4529 CORSAIR-PSU HARDWARE MONITOR DRIVER
4530 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
4531 L: linux-hwmon@vger.kernel.org
4532 S: Maintained
4533 F: Documentation/hwmon/corsair-psu.rst
4534 F: drivers/hwmon/corsair-psu.c
4535
4536 COSA/SRP SYNC SERIAL DRIVER
4537 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4538 S: Maintained
4539 W: http://www.fi.muni.cz/~kas/cosa/
4540 F: drivers/net/wan/cosa*
4541
4542 COUNTER SUBSYSTEM
4543 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4544 L: linux-iio@vger.kernel.org
4545 S: Maintained
4546 F: Documentation/ABI/testing/sysfs-bus-counter*
4547 F: Documentation/driver-api/generic-counter.rst
4548 F: drivers/counter/
4549 F: include/linux/counter.h
4550 F: include/linux/counter_enum.h
4551
4552 CPMAC ETHERNET DRIVER
4553 M: Florian Fainelli <f.fainelli@gmail.com>
4554 L: netdev@vger.kernel.org
4555 S: Maintained
4556 F: drivers/net/ethernet/ti/cpmac.c
4557
4558 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4559 M: Viresh Kumar <viresh.kumar@linaro.org>
4560 M: Sudeep Holla <sudeep.holla@arm.com>
4561 L: linux-pm@vger.kernel.org
4562 S: Maintained
4563 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4564 F: drivers/cpufreq/vexpress-spc-cpufreq.c
4565
4566 CPU FREQUENCY SCALING FRAMEWORK
4567 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4568 M: Viresh Kumar <viresh.kumar@linaro.org>
4569 L: linux-pm@vger.kernel.org
4570 S: Maintained
4571 B: https://bugzilla.kernel.org
4572 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4573 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4574 F: Documentation/admin-guide/pm/cpufreq.rst
4575 F: Documentation/admin-guide/pm/intel_pstate.rst
4576 F: Documentation/cpu-freq/
4577 F: Documentation/devicetree/bindings/cpufreq/
4578 F: drivers/cpufreq/
4579 F: include/linux/cpufreq.h
4580 F: include/linux/sched/cpufreq.h
4581 F: kernel/sched/cpufreq*.c
4582 F: tools/testing/selftests/cpufreq/
4583
4584 CPU IDLE TIME MANAGEMENT FRAMEWORK
4585 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4586 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4587 L: linux-pm@vger.kernel.org
4588 S: Maintained
4589 B: https://bugzilla.kernel.org
4590 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4591 F: Documentation/admin-guide/pm/cpuidle.rst
4592 F: Documentation/driver-api/pm/cpuidle.rst
4593 F: drivers/cpuidle/
4594 F: include/linux/cpuidle.h
4595
4596 CPU POWER MONITORING SUBSYSTEM
4597 M: Thomas Renninger <trenn@suse.com>
4598 M: Shuah Khan <shuah@kernel.org>
4599 M: Shuah Khan <skhan@linuxfoundation.org>
4600 L: linux-pm@vger.kernel.org
4601 S: Maintained
4602 F: tools/power/cpupower/
4603
4604 CPUID/MSR DRIVER
4605 M: "H. Peter Anvin" <hpa@zytor.com>
4606 S: Maintained
4607 F: arch/x86/kernel/cpuid.c
4608 F: arch/x86/kernel/msr.c
4609
4610 CPUIDLE DRIVER - ARM BIG LITTLE
4611 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4612 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4613 L: linux-pm@vger.kernel.org
4614 L: linux-arm-kernel@lists.infradead.org
4615 S: Maintained
4616 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4617 F: drivers/cpuidle/cpuidle-big_little.c
4618
4619 CPUIDLE DRIVER - ARM EXYNOS
4620 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4621 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4622 M: Kukjin Kim <kgene@kernel.org>
4623 L: linux-pm@vger.kernel.org
4624 L: linux-samsung-soc@vger.kernel.org
4625 S: Supported
4626 F: arch/arm/mach-exynos/pm.c
4627 F: drivers/cpuidle/cpuidle-exynos.c
4628
4629 CPUIDLE DRIVER - ARM PSCI
4630 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4631 M: Sudeep Holla <sudeep.holla@arm.com>
4632 L: linux-pm@vger.kernel.org
4633 L: linux-arm-kernel@lists.infradead.org
4634 S: Supported
4635 F: drivers/cpuidle/cpuidle-psci.c
4636
4637 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4638 M: Ulf Hansson <ulf.hansson@linaro.org>
4639 L: linux-pm@vger.kernel.org
4640 L: linux-arm-kernel@lists.infradead.org
4641 S: Supported
4642 F: drivers/cpuidle/cpuidle-psci.h
4643 F: drivers/cpuidle/cpuidle-psci-domain.c
4644
4645 CRAMFS FILESYSTEM
4646 M: Nicolas Pitre <nico@fluxnic.net>
4647 S: Maintained
4648 F: Documentation/filesystems/cramfs.rst
4649 F: fs/cramfs/
4650
4651 CREATIVE SB0540
4652 M: Bastien Nocera <hadess@hadess.net>
4653 L: linux-input@vger.kernel.org
4654 S: Maintained
4655 F: drivers/hid/hid-creative-sb0540.c
4656
4657 CRYPTO API
4658 M: Herbert Xu <herbert@gondor.apana.org.au>
4659 M: "David S. Miller" <davem@davemloft.net>
4660 L: linux-crypto@vger.kernel.org
4661 S: Maintained
4662 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4663 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4664 F: Documentation/crypto/
4665 F: Documentation/devicetree/bindings/crypto/
4666 F: arch/*/crypto/
4667 F: crypto/
4668 F: drivers/crypto/
4669 F: include/crypto/
4670 F: include/linux/crypto*
4671 F: lib/crypto/
4672
4673 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4674 M: Neil Horman <nhorman@tuxdriver.com>
4675 L: linux-crypto@vger.kernel.org
4676 S: Maintained
4677 F: crypto/ansi_cprng.c
4678 F: crypto/rng.c
4679
4680 CS3308 MEDIA DRIVER
4681 M: Hans Verkuil <hverkuil@xs4all.nl>
4682 L: linux-media@vger.kernel.org
4683 S: Odd Fixes
4684 W: http://linuxtv.org
4685 T: git git://linuxtv.org/media_tree.git
4686 F: drivers/media/i2c/cs3308.c
4687
4688 CS5535 Audio ALSA driver
4689 M: Jaya Kumar <jayakumar.alsa@gmail.com>
4690 S: Maintained
4691 F: sound/pci/cs5535audio/
4692
4693 CSI DRIVERS FOR ALLWINNER V3s
4694 M: Yong Deng <yong.deng@magewell.com>
4695 L: linux-media@vger.kernel.org
4696 S: Maintained
4697 T: git git://linuxtv.org/media_tree.git
4698 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4699 F: drivers/media/platform/sunxi/sun6i-csi/
4700
4701 CW1200 WLAN driver
4702 M: Solomon Peachy <pizza@shaftnet.org>
4703 S: Maintained
4704 F: drivers/net/wireless/st/cw1200/
4705
4706 CX18 VIDEO4LINUX DRIVER
4707 M: Andy Walls <awalls@md.metrocast.net>
4708 L: linux-media@vger.kernel.org
4709 S: Maintained
4710 W: https://linuxtv.org
4711 T: git git://linuxtv.org/media_tree.git
4712 F: drivers/media/pci/cx18/
4713 F: include/uapi/linux/ivtv*
4714
4715 CX2341X MPEG ENCODER HELPER MODULE
4716 M: Hans Verkuil <hverkuil@xs4all.nl>
4717 L: linux-media@vger.kernel.org
4718 S: Maintained
4719 W: https://linuxtv.org
4720 T: git git://linuxtv.org/media_tree.git
4721 F: drivers/media/common/cx2341x*
4722 F: include/media/drv-intf/cx2341x.h
4723
4724 CX24120 MEDIA DRIVER
4725 M: Jemma Denson <jdenson@gmail.com>
4726 M: Patrick Boettcher <patrick.boettcher@posteo.de>
4727 L: linux-media@vger.kernel.org
4728 S: Maintained
4729 W: https://linuxtv.org
4730 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4731 F: drivers/media/dvb-frontends/cx24120*
4732
4733 CX88 VIDEO4LINUX DRIVER
4734 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4735 L: linux-media@vger.kernel.org
4736 S: Odd fixes
4737 W: https://linuxtv.org
4738 T: git git://linuxtv.org/media_tree.git
4739 F: Documentation/driver-api/media/drivers/cx88*
4740 F: drivers/media/pci/cx88/
4741
4742 CXD2820R MEDIA DRIVER
4743 M: Antti Palosaari <crope@iki.fi>
4744 L: linux-media@vger.kernel.org
4745 S: Maintained
4746 W: https://linuxtv.org
4747 W: http://palosaari.fi/linux/
4748 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4749 T: git git://linuxtv.org/anttip/media_tree.git
4750 F: drivers/media/dvb-frontends/cxd2820r*
4751
4752 CXGB3 ETHERNET DRIVER (CXGB3)
4753 M: Raju Rangoju <rajur@chelsio.com>
4754 L: netdev@vger.kernel.org
4755 S: Supported
4756 W: http://www.chelsio.com
4757 F: drivers/net/ethernet/chelsio/cxgb3/
4758
4759 CXGB3 ISCSI DRIVER (CXGB3I)
4760 M: Karen Xie <kxie@chelsio.com>
4761 L: linux-scsi@vger.kernel.org
4762 S: Supported
4763 W: http://www.chelsio.com
4764 F: drivers/scsi/cxgbi/cxgb3i
4765
4766 CXGB4 CRYPTO DRIVER (chcr)
4767 M: Ayush Sawal <ayush.sawal@chelsio.com>
4768 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4769 M: Rohit Maheshwari <rohitm@chelsio.com>
4770 L: linux-crypto@vger.kernel.org
4771 S: Supported
4772 W: http://www.chelsio.com
4773 F: drivers/crypto/chelsio
4774
4775 CXGB4 INLINE CRYPTO DRIVER
4776 M: Ayush Sawal <ayush.sawal@chelsio.com>
4777 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4778 M: Rohit Maheshwari <rohitm@chelsio.com>
4779 L: netdev@vger.kernel.org
4780 S: Supported
4781 W: http://www.chelsio.com
4782 F: drivers/net/ethernet/chelsio/inline_crypto/
4783
4784 CXGB4 ETHERNET DRIVER (CXGB4)
4785 M: Raju Rangoju <rajur@chelsio.com>
4786 L: netdev@vger.kernel.org
4787 S: Supported
4788 W: http://www.chelsio.com
4789 F: drivers/net/ethernet/chelsio/cxgb4/
4790
4791 CXGB4 ISCSI DRIVER (CXGB4I)
4792 M: Karen Xie <kxie@chelsio.com>
4793 L: linux-scsi@vger.kernel.org
4794 S: Supported
4795 W: http://www.chelsio.com
4796 F: drivers/scsi/cxgbi/cxgb4i
4797
4798 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4799 M: Potnuri Bharat Teja <bharat@chelsio.com>
4800 L: linux-rdma@vger.kernel.org
4801 S: Supported
4802 W: http://www.openfabrics.org
4803 F: drivers/infiniband/hw/cxgb4/
4804 F: include/uapi/rdma/cxgb4-abi.h
4805
4806 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4807 M: Raju Rangoju <rajur@chelsio.com>
4808 L: netdev@vger.kernel.org
4809 S: Supported
4810 W: http://www.chelsio.com
4811 F: drivers/net/ethernet/chelsio/cxgb4vf/
4812
4813 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4814 M: Frederic Barrat <fbarrat@linux.ibm.com>
4815 M: Andrew Donnellan <ajd@linux.ibm.com>
4816 L: linuxppc-dev@lists.ozlabs.org
4817 S: Supported
4818 F: Documentation/ABI/testing/sysfs-class-cxl
4819 F: Documentation/powerpc/cxl.rst
4820 F: arch/powerpc/platforms/powernv/pci-cxl.c
4821 F: drivers/misc/cxl/
4822 F: include/misc/cxl*
4823 F: include/uapi/misc/cxl.h
4824
4825 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4826 M: Manoj N. Kumar <manoj@linux.ibm.com>
4827 M: Matthew R. Ochs <mrochs@linux.ibm.com>
4828 M: Uma Krishnan <ukrishn@linux.ibm.com>
4829 L: linux-scsi@vger.kernel.org
4830 S: Supported
4831 F: Documentation/powerpc/cxlflash.rst
4832 F: drivers/scsi/cxlflash/
4833 F: include/uapi/scsi/cxlflash_ioctl.h
4834
4835 CYBERPRO FB DRIVER
4836 M: Russell King <linux@armlinux.org.uk>
4837 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4838 S: Maintained
4839 W: http://www.armlinux.org.uk/
4840 F: drivers/video/fbdev/cyber2000fb.*
4841
4842 CYCLADES ASYNC MUX DRIVER
4843 S: Orphan
4844 W: http://www.cyclades.com/
4845 F: drivers/tty/cyclades.c
4846 F: include/linux/cyclades.h
4847 F: include/uapi/linux/cyclades.h
4848
4849 CYCLADES PC300 DRIVER
4850 S: Orphan
4851 W: http://www.cyclades.com/
4852 F: drivers/net/wan/pc300*
4853
4854 CYPRESS_FIRMWARE MEDIA DRIVER
4855 M: Antti Palosaari <crope@iki.fi>
4856 L: linux-media@vger.kernel.org
4857 S: Maintained
4858 W: https://linuxtv.org
4859 W: http://palosaari.fi/linux/
4860 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4861 T: git git://linuxtv.org/anttip/media_tree.git
4862 F: drivers/media/common/cypress_firmware*
4863
4864 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4865 M: Linus Walleij <linus.walleij@linaro.org>
4866 L: linux-input@vger.kernel.org
4867 S: Maintained
4868 F: drivers/input/touchscreen/cy8ctma140.c
4869
4870 CYTTSP TOUCHSCREEN DRIVER
4871 M: Ferruh Yigit <fery@cypress.com>
4872 L: linux-input@vger.kernel.org
4873 S: Supported
4874 F: drivers/input/touchscreen/cyttsp*
4875 F: include/linux/input/cyttsp.h
4876
4877 D-LINK DIR-685 TOUCHKEYS DRIVER
4878 M: Linus Walleij <linus.walleij@linaro.org>
4879 L: linux-input@vger.kernel.org
4880 S: Supported
4881 F: drivers/input/keyboard/dlink-dir685-touchkeys.c
4882
4883 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4884 M: Joshua Kinard <kumba@gentoo.org>
4885 S: Maintained
4886 F: drivers/rtc/rtc-ds1685.c
4887 F: include/linux/rtc/ds1685.h
4888
4889 DAMA SLAVE for AX.25
4890 M: Joerg Reuter <jreuter@yaina.de>
4891 L: linux-hams@vger.kernel.org
4892 S: Maintained
4893 W: http://yaina.de/jreuter/
4894 W: http://www.qsl.net/dl1bke/
4895 F: net/ax25/af_ax25.c
4896 F: net/ax25/ax25_dev.c
4897 F: net/ax25/ax25_ds_*
4898 F: net/ax25/ax25_in.c
4899 F: net/ax25/ax25_out.c
4900 F: net/ax25/ax25_timer.c
4901 F: net/ax25/sysctl_net_ax25.c
4902
4903 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4904 L: netdev@vger.kernel.org
4905 S: Orphan
4906 F: Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4907 F: drivers/net/ethernet/dec/tulip/dmfe.c
4908
4909 DC390/AM53C974 SCSI driver
4910 M: Hannes Reinecke <hare@suse.com>
4911 L: linux-scsi@vger.kernel.org
4912 S: Maintained
4913 F: drivers/scsi/am53c974.c
4914
4915 DC395x SCSI driver
4916 M: Oliver Neukum <oliver@neukum.org>
4917 M: Ali Akcaagac <aliakc@web.de>
4918 M: Jamie Lenehan <lenehan@twibble.org>
4919 L: dc395x@twibble.org
4920 S: Maintained
4921 W: http://twibble.org/dist/dc395x/
4922 W: http://lists.twibble.org/mailman/listinfo/dc395x/
4923 F: Documentation/scsi/dc395x.rst
4924 F: drivers/scsi/dc395x.*
4925
4926 DCCP PROTOCOL
4927 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
4928 L: dccp@vger.kernel.org
4929 S: Maintained
4930 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4931 F: include/linux/dccp.h
4932 F: include/linux/tfrc.h
4933 F: include/uapi/linux/dccp.h
4934 F: net/dccp/
4935
4936 DECnet NETWORK LAYER
4937 L: linux-decnet-user@lists.sourceforge.net
4938 S: Orphan
4939 W: http://linux-decnet.sourceforge.net
4940 F: Documentation/networking/decnet.rst
4941 F: net/decnet/
4942
4943 DECSTATION PLATFORM SUPPORT
4944 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4945 L: linux-mips@vger.kernel.org
4946 S: Maintained
4947 W: http://www.linux-mips.org/wiki/DECstation
4948 F: arch/mips/dec/
4949 F: arch/mips/include/asm/dec/
4950 F: arch/mips/include/asm/mach-dec/
4951
4952 DEFXX FDDI NETWORK DRIVER
4953 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4954 S: Maintained
4955 F: drivers/net/fddi/defxx.*
4956
4957 DEFZA FDDI NETWORK DRIVER
4958 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4959 S: Maintained
4960 F: drivers/net/fddi/defza.*
4961
4962 DEINTERLACE DRIVERS FOR ALLWINNER H3
4963 M: Jernej Skrabec <jernej.skrabec@siol.net>
4964 L: linux-media@vger.kernel.org
4965 S: Maintained
4966 T: git git://linuxtv.org/media_tree.git
4967 F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4968 F: drivers/media/platform/sunxi/sun8i-di/
4969
4970 DELL LAPTOP DRIVER
4971 M: Matthew Garrett <mjg59@srcf.ucam.org>
4972 M: Pali Rohár <pali@kernel.org>
4973 L: platform-driver-x86@vger.kernel.org
4974 S: Maintained
4975 F: drivers/platform/x86/dell-laptop.c
4976
4977 DELL LAPTOP FREEFALL DRIVER
4978 M: Pali Rohár <pali@kernel.org>
4979 S: Maintained
4980 F: drivers/platform/x86/dell-smo8800.c
4981
4982 DELL LAPTOP RBTN DRIVER
4983 M: Pali Rohár <pali@kernel.org>
4984 S: Maintained
4985 F: drivers/platform/x86/dell-rbtn.*
4986
4987 DELL LAPTOP SMM DRIVER
4988 M: Pali Rohár <pali@kernel.org>
4989 S: Maintained
4990 F: drivers/hwmon/dell-smm-hwmon.c
4991 F: include/uapi/linux/i8k.h
4992
4993 DELL REMOTE BIOS UPDATE DRIVER
4994 M: Stuart Hayes <stuart.w.hayes@gmail.com>
4995 L: platform-driver-x86@vger.kernel.org
4996 S: Maintained
4997 F: drivers/platform/x86/dell_rbu.c
4998
4999 DELL SMBIOS DRIVER
5000 M: Pali Rohár <pali@kernel.org>
5001 M: Mario Limonciello <mario.limonciello@dell.com>
5002 L: platform-driver-x86@vger.kernel.org
5003 S: Maintained
5004 F: drivers/platform/x86/dell-smbios.*
5005
5006 DELL SMBIOS SMM DRIVER
5007 M: Mario Limonciello <mario.limonciello@dell.com>
5008 L: platform-driver-x86@vger.kernel.org
5009 S: Maintained
5010 F: drivers/platform/x86/dell-smbios-smm.c
5011
5012 DELL SMBIOS WMI DRIVER
5013 M: Mario Limonciello <mario.limonciello@dell.com>
5014 L: platform-driver-x86@vger.kernel.org
5015 S: Maintained
5016 F: drivers/platform/x86/dell-smbios-wmi.c
5017 F: tools/wmi/dell-smbios-example.c
5018
5019 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5020 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5021 L: platform-driver-x86@vger.kernel.org
5022 S: Maintained
5023 F: Documentation/driver-api/dcdbas.rst
5024 F: drivers/platform/x86/dcdbas.*
5025
5026 DELL WMI DESCRIPTOR DRIVER
5027 M: Mario Limonciello <mario.limonciello@dell.com>
5028 S: Maintained
5029 F: drivers/platform/x86/dell-wmi-descriptor.c
5030
5031 DELL WMI SYSMAN DRIVER
5032 M: Divya Bharathi <divya.bharathi@dell.com>
5033 M: Mario Limonciello <mario.limonciello@dell.com>
5034 M: Prasanth Ksr <prasanth.ksr@dell.com>
5035 L: platform-driver-x86@vger.kernel.org
5036 S: Maintained
5037 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
5038 F: drivers/platform/x86/dell-wmi-sysman/
5039
5040 DELL WMI NOTIFICATIONS DRIVER
5041 M: Matthew Garrett <mjg59@srcf.ucam.org>
5042 M: Pali Rohár <pali@kernel.org>
5043 S: Maintained
5044 F: drivers/platform/x86/dell-wmi.c
5045
5046 DELTA ST MEDIA DRIVER
5047 M: Hugues Fruchet <hugues.fruchet@st.com>
5048 L: linux-media@vger.kernel.org
5049 S: Supported
5050 W: https://linuxtv.org
5051 T: git git://linuxtv.org/media_tree.git
5052 F: drivers/media/platform/sti/delta
5053
5054 DENALI NAND DRIVER
5055 L: linux-mtd@lists.infradead.org
5056 S: Orphan
5057 F: drivers/mtd/nand/raw/denali*
5058
5059 DESIGNWARE EDMA CORE IP DRIVER
5060 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5061 L: dmaengine@vger.kernel.org
5062 S: Maintained
5063 F: drivers/dma/dw-edma/
5064 F: include/linux/dma/edma.h
5065
5066 DESIGNWARE USB2 DRD IP DRIVER
5067 M: Minas Harutyunyan <hminas@synopsys.com>
5068 L: linux-usb@vger.kernel.org
5069 S: Maintained
5070 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5071 F: drivers/usb/dwc2/
5072
5073 DESIGNWARE USB3 DRD IP DRIVER
5074 M: Felipe Balbi <balbi@kernel.org>
5075 L: linux-usb@vger.kernel.org
5076 S: Maintained
5077 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5078 F: drivers/usb/dwc3/
5079
5080 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5081 M: Andreas Klinger <ak@it-klinger.de>
5082 L: linux-iio@vger.kernel.org
5083 S: Maintained
5084 F: Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5085 F: drivers/iio/proximity/srf*.c
5086
5087 DEVICE COREDUMP (DEV_COREDUMP)
5088 M: Johannes Berg <johannes@sipsolutions.net>
5089 L: linux-kernel@vger.kernel.org
5090 S: Maintained
5091 F: drivers/base/devcoredump.c
5092 F: include/linux/devcoredump.h
5093
5094 DEVICE DEPENDENCY HELPER SCRIPT
5095 M: Saravana Kannan <saravanak@google.com>
5096 L: linux-kernel@vger.kernel.org
5097 S: Maintained
5098 F: scripts/dev-needs.sh
5099
5100 DEVICE DIRECT ACCESS (DAX)
5101 M: Dan Williams <dan.j.williams@intel.com>
5102 M: Vishal Verma <vishal.l.verma@intel.com>
5103 M: Dave Jiang <dave.jiang@intel.com>
5104 L: linux-nvdimm@lists.01.org
5105 S: Supported
5106 F: drivers/dax/
5107
5108 DEVICE FREQUENCY (DEVFREQ)
5109 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5110 M: Kyungmin Park <kyungmin.park@samsung.com>
5111 M: Chanwoo Choi <cw00.choi@samsung.com>
5112 L: linux-pm@vger.kernel.org
5113 S: Maintained
5114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5115 F: Documentation/devicetree/bindings/devfreq/
5116 F: drivers/devfreq/
5117 F: include/linux/devfreq.h
5118 F: include/trace/events/devfreq.h
5119
5120 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5121 M: Chanwoo Choi <cw00.choi@samsung.com>
5122 L: linux-pm@vger.kernel.org
5123 S: Supported
5124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5125 F: Documentation/devicetree/bindings/devfreq/event/
5126 F: drivers/devfreq/devfreq-event.c
5127 F: drivers/devfreq/event/
5128 F: include/dt-bindings/pmu/exynos_ppmu.h
5129 F: include/linux/devfreq-event.h
5130
5131 DEVICE NUMBER REGISTRY
5132 M: Torben Mathiasen <device@lanana.org>
5133 S: Maintained
5134 W: http://lanana.org/docs/device-list/index.html
5135
5136 DEVICE-MAPPER (LVM)
5137 M: Alasdair Kergon <agk@redhat.com>
5138 M: Mike Snitzer <snitzer@redhat.com>
5139 M: dm-devel@redhat.com
5140 L: dm-devel@redhat.com
5141 S: Maintained
5142 W: http://sources.redhat.com/dm
5143 Q: http://patchwork.kernel.org/project/dm-devel/list/
5144 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5145 T: quilt http://people.redhat.com/agk/patches/linux/editing/
5146 F: Documentation/admin-guide/device-mapper/
5147 F: drivers/md/Kconfig
5148 F: drivers/md/Makefile
5149 F: drivers/md/dm*
5150 F: drivers/md/persistent-data/
5151 F: include/linux/device-mapper.h
5152 F: include/linux/dm-*.h
5153 F: include/uapi/linux/dm-*.h
5154
5155 DEVLINK
5156 M: Jiri Pirko <jiri@nvidia.com>
5157 L: netdev@vger.kernel.org
5158 S: Supported
5159 F: Documentation/networking/devlink
5160 F: include/net/devlink.h
5161 F: include/uapi/linux/devlink.h
5162 F: net/core/devlink.c
5163
5164 DIALOG SEMICONDUCTOR DRIVERS
5165 M: Support Opensource <support.opensource@diasemi.com>
5166 S: Supported
5167 W: http://www.dialog-semiconductor.com/products
5168 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
5169 F: Documentation/devicetree/bindings/input/dlg,da72??.txt
5170 F: Documentation/devicetree/bindings/mfd/da90*.txt
5171 F: Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5172 F: Documentation/devicetree/bindings/regulator/da92*.txt
5173 F: Documentation/devicetree/bindings/regulator/slg51000.txt
5174 F: Documentation/devicetree/bindings/sound/da[79]*.txt
5175 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5176 F: Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5177 F: Documentation/hwmon/da90??.rst
5178 F: drivers/gpio/gpio-da90??.c
5179 F: drivers/hwmon/da90??-hwmon.c
5180 F: drivers/iio/adc/da91??-*.c
5181 F: drivers/input/misc/da72??.[ch]
5182 F: drivers/input/misc/da90??_onkey.c
5183 F: drivers/input/touchscreen/da9052_tsi.c
5184 F: drivers/leds/leds-da90??.c
5185 F: drivers/mfd/da903x.c
5186 F: drivers/mfd/da90??-*.c
5187 F: drivers/mfd/da91??-*.c
5188 F: drivers/pinctrl/pinctrl-da90??.c
5189 F: drivers/power/supply/da9052-battery.c
5190 F: drivers/power/supply/da91??-*.c
5191 F: drivers/regulator/da9???-regulator.[ch]
5192 F: drivers/regulator/slg51000-regulator.[ch]
5193 F: drivers/rtc/rtc-da90??.c
5194 F: drivers/thermal/da90??-thermal.c
5195 F: drivers/video/backlight/da90??_bl.c
5196 F: drivers/watchdog/da90??_wdt.c
5197 F: include/dt-bindings/regulator/dlg,da9*-regulator.h
5198 F: include/linux/mfd/da903x.h
5199 F: include/linux/mfd/da9052/
5200 F: include/linux/mfd/da9055/
5201 F: include/linux/mfd/da9062/
5202 F: include/linux/mfd/da9063/
5203 F: include/linux/mfd/da9150/
5204 F: include/linux/regulator/da9211.h
5205 F: include/sound/da[79]*.h
5206 F: sound/soc/codecs/da[79]*.[ch]
5207
5208 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5209 M: William Breathitt Gray <vilhelm.gray@gmail.com>
5210 L: linux-gpio@vger.kernel.org
5211 S: Maintained
5212 F: drivers/gpio/gpio-gpio-mm.c
5213
5214 DIOLAN U2C-12 I2C DRIVER
5215 M: Guenter Roeck <linux@roeck-us.net>
5216 L: linux-i2c@vger.kernel.org
5217 S: Maintained
5218 F: drivers/i2c/busses/i2c-diolan-u2c.c
5219
5220 DIRECTORY NOTIFICATION (DNOTIFY)
5221 M: Jan Kara <jack@suse.cz>
5222 R: Amir Goldstein <amir73il@gmail.com>
5223 L: linux-fsdevel@vger.kernel.org
5224 S: Maintained
5225 F: Documentation/filesystems/dnotify.rst
5226 F: fs/notify/dnotify/
5227 F: include/linux/dnotify.h
5228
5229 DISK GEOMETRY AND PARTITION HANDLING
5230 M: Andries Brouwer <aeb@cwi.nl>
5231 S: Maintained
5232 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5233 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5234 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5235
5236 DISKQUOTA
5237 M: Jan Kara <jack@suse.com>
5238 S: Maintained
5239 F: Documentation/filesystems/quota.rst
5240 F: fs/quota/
5241 F: include/linux/quota*.h
5242 F: include/uapi/linux/quota*.h
5243
5244 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5245 M: Bernie Thompson <bernie@plugable.com>
5246 L: linux-fbdev@vger.kernel.org
5247 S: Maintained
5248 W: http://plugable.com/category/projects/udlfb/
5249 F: Documentation/fb/udlfb.rst
5250 F: drivers/video/fbdev/udlfb.c
5251 F: include/video/udlfb.h
5252
5253 DISTRIBUTED LOCK MANAGER (DLM)
5254 M: Christine Caulfield <ccaulfie@redhat.com>
5255 M: David Teigland <teigland@redhat.com>
5256 L: cluster-devel@redhat.com
5257 S: Supported
5258 W: http://sources.redhat.com/cluster/
5259 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5260 F: fs/dlm/
5261
5262 DMA BUFFER SHARING FRAMEWORK
5263 M: Sumit Semwal <sumit.semwal@linaro.org>
5264 M: Christian König <christian.koenig@amd.com>
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: Documentation/driver-api/dma-buf.rst
5271 F: drivers/dma-buf/
5272 F: include/linux/*fence.h
5273 F: include/linux/dma-buf*
5274 F: include/linux/dma-resv.h
5275 K: \bdma_(?:buf|fence|resv)\b
5276
5277 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5278 M: Vinod Koul <vkoul@kernel.org>
5279 L: dmaengine@vger.kernel.org
5280 S: Maintained
5281 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5282 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5283 F: Documentation/devicetree/bindings/dma/
5284 F: Documentation/driver-api/dmaengine/
5285 F: drivers/dma/
5286 F: include/linux/dmaengine.h
5287 F: include/linux/of_dma.h
5288
5289 DMA MAPPING HELPERS
5290 M: Christoph Hellwig <hch@lst.de>
5291 M: Marek Szyprowski <m.szyprowski@samsung.com>
5292 R: Robin Murphy <robin.murphy@arm.com>
5293 L: iommu@lists.linux-foundation.org
5294 S: Supported
5295 W: http://git.infradead.org/users/hch/dma-mapping.git
5296 T: git git://git.infradead.org/users/hch/dma-mapping.git
5297 F: include/asm-generic/dma-mapping.h
5298 F: include/linux/dma-direct.h
5299 F: include/linux/dma-mapping.h
5300 F: include/linux/dma-map-ops.h
5301 F: kernel/dma/
5302
5303 DMA MAPPING BENCHMARK
5304 M: Barry Song <song.bao.hua@hisilicon.com>
5305 L: iommu@lists.linux-foundation.org
5306 F: kernel/dma/map_benchmark.c
5307 F: tools/testing/selftests/dma/
5308
5309 DMA-BUF HEAPS FRAMEWORK
5310 M: Sumit Semwal <sumit.semwal@linaro.org>
5311 R: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5312 R: Liam Mark <lmark@codeaurora.org>
5313 R: Laura Abbott <labbott@redhat.com>
5314 R: Brian Starkey <Brian.Starkey@arm.com>
5315 R: John Stultz <john.stultz@linaro.org>
5316 L: linux-media@vger.kernel.org
5317 L: dri-devel@lists.freedesktop.org
5318 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5319 S: Maintained
5320 T: git git://anongit.freedesktop.org/drm/drm-misc
5321 F: drivers/dma-buf/dma-heap.c
5322 F: drivers/dma-buf/heaps/*
5323 F: include/linux/dma-heap.h
5324 F: include/uapi/linux/dma-heap.h
5325
5326 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5327 M: Lukasz Luba <lukasz.luba@arm.com>
5328 L: linux-pm@vger.kernel.org
5329 L: linux-samsung-soc@vger.kernel.org
5330 S: Maintained
5331 F: Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5332 F: drivers/memory/samsung/exynos5422-dmc.c
5333
5334 DME1737 HARDWARE MONITOR DRIVER
5335 M: Juerg Haefliger <juergh@gmail.com>
5336 L: linux-hwmon@vger.kernel.org
5337 S: Maintained
5338 F: Documentation/hwmon/dme1737.rst
5339 F: drivers/hwmon/dme1737.c
5340
5341 DMI/SMBIOS SUPPORT
5342 M: Jean Delvare <jdelvare@suse.com>
5343 S: Maintained
5344 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5345 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
5346 F: drivers/firmware/dmi-id.c
5347 F: drivers/firmware/dmi_scan.c
5348 F: include/linux/dmi.h
5349
5350 DOCUMENTATION
5351 M: Jonathan Corbet <corbet@lwn.net>
5352 L: linux-doc@vger.kernel.org
5353 S: Maintained
5354 P: Documentation/doc-guide/maintainer-profile.rst
5355 T: git git://git.lwn.net/linux.git docs-next
5356 F: Documentation/
5357 F: scripts/documentation-file-ref-check
5358 F: scripts/kernel-doc
5359 F: scripts/sphinx-pre-install
5360 X: Documentation/ABI/
5361 X: Documentation/admin-guide/media/
5362 X: Documentation/devicetree/
5363 X: Documentation/driver-api/media/
5364 X: Documentation/firmware-guide/acpi/
5365 X: Documentation/i2c/
5366 X: Documentation/power/
5367 X: Documentation/spi/
5368 X: Documentation/userspace-api/media/
5369
5370 DOCUMENTATION SCRIPTS
5371 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5372 L: linux-doc@vger.kernel.org
5373 S: Maintained
5374 F: Documentation/sphinx/parse-headers.pl
5375 F: scripts/documentation-file-ref-check
5376 F: scripts/sphinx-pre-install
5377
5378 DOCUMENTATION/ITALIAN
5379 M: Federico Vaga <federico.vaga@vaga.pv.it>
5380 L: linux-doc@vger.kernel.org
5381 S: Maintained
5382 F: Documentation/translations/it_IT
5383
5384 DONGWOON DW9714 LENS VOICE COIL DRIVER
5385 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5386 L: linux-media@vger.kernel.org
5387 S: Maintained
5388 T: git git://linuxtv.org/media_tree.git
5389 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5390 F: drivers/media/i2c/dw9714.c
5391
5392 DONGWOON DW9768 LENS VOICE COIL DRIVER
5393 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
5394 L: linux-media@vger.kernel.org
5395 S: Maintained
5396 T: git git://linuxtv.org/media_tree.git
5397 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5398 F: drivers/media/i2c/dw9768.c
5399
5400 DONGWOON DW9807 LENS VOICE COIL DRIVER
5401 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5402 L: linux-media@vger.kernel.org
5403 S: Maintained
5404 T: git git://linuxtv.org/media_tree.git
5405 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5406 F: drivers/media/i2c/dw9807-vcm.c
5407
5408 DOUBLETALK DRIVER
5409 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
5410 L: blinux-list@redhat.com
5411 S: Maintained
5412 F: drivers/char/dtlk.c
5413 F: include/linux/dtlk.h
5414
5415 DPAA2 DATAPATH I/O (DPIO) DRIVER
5416 M: Roy Pledge <Roy.Pledge@nxp.com>
5417 L: linux-kernel@vger.kernel.org
5418 S: Maintained
5419 F: drivers/soc/fsl/dpio
5420
5421 DPAA2 ETHERNET DRIVER
5422 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5423 M: Ioana Radulescu <ruxandra.radulescu@nxp.com>
5424 L: netdev@vger.kernel.org
5425 S: Maintained
5426 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5427 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5428 F: drivers/net/ethernet/freescale/dpaa2/Kconfig
5429 F: drivers/net/ethernet/freescale/dpaa2/Makefile
5430 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5431 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5432 F: drivers/net/ethernet/freescale/dpaa2/dpkg.h
5433 F: drivers/net/ethernet/freescale/dpaa2/dpmac*
5434 F: drivers/net/ethernet/freescale/dpaa2/dpni*
5435
5436 DPAA2 ETHERNET SWITCH DRIVER
5437 M: Ioana Radulescu <ruxandra.radulescu@nxp.com>
5438 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5439 L: linux-kernel@vger.kernel.org
5440 S: Maintained
5441 F: drivers/staging/fsl-dpaa2/ethsw
5442
5443 DPT_I2O SCSI RAID DRIVER
5444 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5445 L: linux-scsi@vger.kernel.org
5446 S: Maintained
5447 W: http://www.adaptec.com/
5448 F: drivers/scsi/dpt*
5449 F: drivers/scsi/dpt/
5450
5451 DRBD DRIVER
5452 M: Philipp Reisner <philipp.reisner@linbit.com>
5453 M: Lars Ellenberg <lars.ellenberg@linbit.com>
5454 L: drbd-dev@lists.linbit.com
5455 S: Supported
5456 W: http://www.drbd.org
5457 T: git git://git.linbit.com/linux-drbd.git
5458 T: git git://git.linbit.com/drbd-8.4.git
5459 F: Documentation/admin-guide/blockdev/
5460 F: drivers/block/drbd/
5461 F: lib/lru_cache.c
5462
5463 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5464 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5465 R: "Rafael J. Wysocki" <rafael@kernel.org>
5466 S: Supported
5467 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5468 F: Documentation/core-api/kobject.rst
5469 F: drivers/base/
5470 F: fs/debugfs/
5471 F: fs/sysfs/
5472 F: include/linux/debugfs.h
5473 F: include/linux/kobj*
5474 F: lib/kobj*
5475
5476 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5477 M: Nishanth Menon <nm@ti.com>
5478 L: linux-pm@vger.kernel.org
5479 S: Maintained
5480 F: drivers/soc/ti/smartreflex.c
5481 F: include/linux/power/smartreflex.h
5482
5483 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5484 M: Maxime Ripard <mripard@kernel.org>
5485 M: Chen-Yu Tsai <wens@csie.org>
5486 R: Jernej Skrabec <jernej.skrabec@siol.net>
5487 L: dri-devel@lists.freedesktop.org
5488 S: Supported
5489 T: git git://anongit.freedesktop.org/drm/drm-misc
5490 F: drivers/gpu/drm/sun4i/sun8i*
5491
5492 DRM DRIVER FOR ARM PL111 CLCD
5493 M: Eric Anholt <eric@anholt.net>
5494 S: Supported
5495 T: git git://anongit.freedesktop.org/drm/drm-misc
5496 F: drivers/gpu/drm/pl111/
5497
5498 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5499 M: Linus Walleij <linus.walleij@linaro.org>
5500 S: Maintained
5501 T: git git://anongit.freedesktop.org/drm/drm-misc
5502 F: Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5503 F: drivers/gpu/drm/panel/panel-arm-versatile.c
5504
5505 DRM DRIVER FOR ASPEED BMC GFX
5506 M: Joel Stanley <joel@jms.id.au>
5507 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5508 S: Supported
5509 T: git git://anongit.freedesktop.org/drm/drm-misc
5510 F: Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5511 F: drivers/gpu/drm/aspeed/
5512
5513 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5514 M: Dave Airlie <airlied@redhat.com>
5515 R: Thomas Zimmermann <tzimmermann@suse.de>
5516 L: dri-devel@lists.freedesktop.org
5517 S: Supported
5518 T: git git://anongit.freedesktop.org/drm/drm-misc
5519 F: drivers/gpu/drm/ast/
5520
5521 DRM DRIVER FOR BOCHS VIRTUAL GPU
5522 M: Gerd Hoffmann <kraxel@redhat.com>
5523 L: virtualization@lists.linux-foundation.org
5524 S: Maintained
5525 T: git git://anongit.freedesktop.org/drm/drm-misc
5526 F: drivers/gpu/drm/bochs/
5527
5528 DRM DRIVER FOR BOE HIMAX8279D PANELS
5529 M: Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5530 S: Maintained
5531 F: Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5532 F: drivers/gpu/drm/panel/panel-boe-himax8279d.c
5533
5534 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5535 M: Linus Walleij <linus.walleij@linaro.org>
5536 S: Maintained
5537 T: git git://anongit.freedesktop.org/drm/drm-misc
5538 F: drivers/gpu/drm/tve200/
5539
5540 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5541 M: Icenowy Zheng <icenowy@aosc.io>
5542 S: Maintained
5543 F: Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5544 F: drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5545
5546 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5547 M: Jagan Teki <jagan@amarulasolutions.com>
5548 S: Maintained
5549 F: Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5550 F: drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5551
5552 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5553 M: Hans de Goede <hdegoede@redhat.com>
5554 S: Maintained
5555 T: git git://anongit.freedesktop.org/drm/drm-misc
5556 F: drivers/gpu/drm/tiny/gm12u320.c
5557
5558 DRM DRIVER FOR HX8357D PANELS
5559 M: Eric Anholt <eric@anholt.net>
5560 S: Maintained
5561 T: git git://anongit.freedesktop.org/drm/drm-misc
5562 F: Documentation/devicetree/bindings/display/himax,hx8357d.txt
5563 F: drivers/gpu/drm/tiny/hx8357d.c
5564
5565 DRM DRIVER FOR ILITEK ILI9225 PANELS
5566 M: David Lechner <david@lechnology.com>
5567 S: Maintained
5568 T: git git://anongit.freedesktop.org/drm/drm-misc
5569 F: Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5570 F: drivers/gpu/drm/tiny/ili9225.c
5571
5572 DRM DRIVER FOR ILITEK ILI9486 PANELS
5573 M: Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5574 S: Maintained
5575 T: git git://anongit.freedesktop.org/drm/drm-misc
5576 F: Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5577 F: drivers/gpu/drm/tiny/ili9486.c
5578
5579 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5580 S: Orphan / Obsolete
5581 F: drivers/gpu/drm/i810/
5582 F: include/uapi/drm/i810_drm.h
5583
5584 DRM DRIVER FOR LVDS PANELS
5585 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5586 L: dri-devel@lists.freedesktop.org
5587 T: git git://anongit.freedesktop.org/drm/drm-misc
5588 S: Maintained
5589 F: drivers/gpu/drm/panel/panel-lvds.c
5590 F: Documentation/devicetree/bindings/display/panel/lvds.yaml
5591
5592 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5593 M: Guido Günther <agx@sigxcpu.org>
5594 R: Purism Kernel Team <kernel@puri.sm>
5595 S: Maintained
5596 F: Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5597 F: drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5598
5599 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5600 S: Orphan / Obsolete
5601 F: drivers/gpu/drm/mga/
5602 F: include/uapi/drm/mga_drm.h
5603
5604 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5605 M: Dave Airlie <airlied@redhat.com>
5606 R: Thomas Zimmermann <tzimmermann@suse.de>
5607 L: dri-devel@lists.freedesktop.org
5608 S: Supported
5609 T: git git://anongit.freedesktop.org/drm/drm-misc
5610 F: drivers/gpu/drm/mgag200/
5611
5612 DRM DRIVER FOR MI0283QT
5613 M: Noralf Trønnes <noralf@tronnes.org>
5614 S: Maintained
5615 T: git git://anongit.freedesktop.org/drm/drm-misc
5616 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5617 F: drivers/gpu/drm/tiny/mi0283qt.c
5618
5619 DRM DRIVER FOR MSM ADRENO GPU
5620 M: Rob Clark <robdclark@gmail.com>
5621 M: Sean Paul <sean@poorly.run>
5622 L: linux-arm-msm@vger.kernel.org
5623 L: dri-devel@lists.freedesktop.org
5624 L: freedreno@lists.freedesktop.org
5625 S: Maintained
5626 T: git https://gitlab.freedesktop.org/drm/msm.git
5627 F: Documentation/devicetree/bindings/display/msm/
5628 F: drivers/gpu/drm/msm/
5629 F: include/uapi/drm/msm_drm.h
5630
5631 DRM DRIVER FOR NOVATEK NT35510 PANELS
5632 M: Linus Walleij <linus.walleij@linaro.org>
5633 S: Maintained
5634 T: git git://anongit.freedesktop.org/drm/drm-misc
5635 F: Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5636 F: drivers/gpu/drm/panel/panel-novatek-nt35510.c
5637
5638 DRM DRIVER FOR NOVATEK NT36672A PANELS
5639 M: Sumit Semwal <sumit.semwal@linaro.org>
5640 S: Maintained
5641 T: git git://anongit.freedesktop.org/drm/drm-misc
5642 F: Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5643 F: drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5644
5645 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5646 M: Ben Skeggs <bskeggs@redhat.com>
5647 L: dri-devel@lists.freedesktop.org
5648 L: nouveau@lists.freedesktop.org
5649 S: Supported
5650 T: git git://github.com/skeggsb/linux
5651 F: drivers/gpu/drm/nouveau/
5652 F: include/uapi/drm/nouveau_drm.h
5653
5654 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5655 M: Stefan Mavrodiev <stefan@olimex.com>
5656 S: Maintained
5657 F: Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5658 F: drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5659
5660 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5661 M: Noralf Trønnes <noralf@tronnes.org>
5662 S: Maintained
5663 T: git git://anongit.freedesktop.org/drm/drm-misc
5664 F: Documentation/devicetree/bindings/display/repaper.txt
5665 F: drivers/gpu/drm/tiny/repaper.c
5666
5667 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5668 M: Dave Airlie <airlied@redhat.com>
5669 M: Gerd Hoffmann <kraxel@redhat.com>
5670 L: virtualization@lists.linux-foundation.org
5671 S: Obsolete
5672 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5673 T: git git://anongit.freedesktop.org/drm/drm-misc
5674 F: drivers/gpu/drm/tiny/cirrus.c
5675
5676 DRM DRIVER FOR QXL VIRTUAL GPU
5677 M: Dave Airlie <airlied@redhat.com>
5678 M: Gerd Hoffmann <kraxel@redhat.com>
5679 L: virtualization@lists.linux-foundation.org
5680 L: spice-devel@lists.freedesktop.org
5681 S: Maintained
5682 T: git git://anongit.freedesktop.org/drm/drm-misc
5683 F: drivers/gpu/drm/qxl/
5684 F: include/uapi/drm/qxl_drm.h
5685
5686 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5687 S: Orphan / Obsolete
5688 F: drivers/gpu/drm/r128/
5689 F: include/uapi/drm/r128_drm.h
5690
5691 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5692 M: Robert Chiras <robert.chiras@nxp.com>
5693 S: Maintained
5694 F: Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5695 F: drivers/gpu/drm/panel/panel-raydium-rm67191.c
5696
5697 DRM DRIVER FOR SITRONIX ST7703 PANELS
5698 M: Guido Günther <agx@sigxcpu.org>
5699 R: Purism Kernel Team <kernel@puri.sm>
5700 R: Ondrej Jirman <megous@megous.com>
5701 S: Maintained
5702 F: Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5703 F: drivers/gpu/drm/panel/panel-sitronix-st7703.c
5704
5705 DRM DRIVER FOR SAVAGE VIDEO CARDS
5706 S: Orphan / Obsolete
5707 F: drivers/gpu/drm/savage/
5708 F: include/uapi/drm/savage_drm.h
5709
5710 DRM DRIVER FOR SIS VIDEO CARDS
5711 S: Orphan / Obsolete
5712 F: drivers/gpu/drm/sis/
5713 F: include/uapi/drm/sis_drm.h
5714
5715 DRM DRIVER FOR SITRONIX ST7586 PANELS
5716 M: David Lechner <david@lechnology.com>
5717 S: Maintained
5718 T: git git://anongit.freedesktop.org/drm/drm-misc
5719 F: Documentation/devicetree/bindings/display/sitronix,st7586.txt
5720 F: drivers/gpu/drm/tiny/st7586.c
5721
5722 DRM DRIVER FOR SITRONIX ST7701 PANELS
5723 M: Jagan Teki <jagan@amarulasolutions.com>
5724 S: Maintained
5725 F: Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5726 F: drivers/gpu/drm/panel/panel-sitronix-st7701.c
5727
5728 DRM DRIVER FOR SITRONIX ST7735R PANELS
5729 M: David Lechner <david@lechnology.com>
5730 S: Maintained
5731 T: git git://anongit.freedesktop.org/drm/drm-misc
5732 F: Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5733 F: drivers/gpu/drm/tiny/st7735r.c
5734
5735 DRM DRIVER FOR SONY ACX424AKP PANELS
5736 M: Linus Walleij <linus.walleij@linaro.org>
5737 S: Maintained
5738 T: git git://anongit.freedesktop.org/drm/drm-misc
5739 F: drivers/gpu/drm/panel/panel-sony-acx424akp.c
5740
5741 DRM DRIVER FOR ST-ERICSSON MCDE
5742 M: Linus Walleij <linus.walleij@linaro.org>
5743 S: Maintained
5744 T: git git://anongit.freedesktop.org/drm/drm-misc
5745 F: Documentation/devicetree/bindings/display/ste,mcde.txt
5746 F: drivers/gpu/drm/mcde/
5747
5748 DRM DRIVER FOR TDFX VIDEO CARDS
5749 S: Orphan / Obsolete
5750 F: drivers/gpu/drm/tdfx/
5751
5752 DRM DRIVER FOR TPO TPG110 PANELS
5753 M: Linus Walleij <linus.walleij@linaro.org>
5754 S: Maintained
5755 T: git git://anongit.freedesktop.org/drm/drm-misc
5756 F: Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5757 F: drivers/gpu/drm/panel/panel-tpo-tpg110.c
5758
5759 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5760 M: Dave Airlie <airlied@redhat.com>
5761 R: Sean Paul <sean@poorly.run>
5762 R: Thomas Zimmermann <tzimmermann@suse.de>
5763 L: dri-devel@lists.freedesktop.org
5764 S: Supported
5765 T: git git://anongit.freedesktop.org/drm/drm-misc
5766 F: drivers/gpu/drm/udl/
5767
5768 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5769 M: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5770 M: Melissa Wen <melissa.srw@gmail.com>
5771 R: Haneen Mohammed <hamohammed.sa@gmail.com>
5772 R: Daniel Vetter <daniel@ffwll.ch>
5773 L: dri-devel@lists.freedesktop.org
5774 S: Maintained
5775 T: git git://anongit.freedesktop.org/drm/drm-misc
5776 F: Documentation/gpu/vkms.rst
5777 F: drivers/gpu/drm/vkms/
5778
5779 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5780 M: Hans de Goede <hdegoede@redhat.com>
5781 L: dri-devel@lists.freedesktop.org
5782 S: Maintained
5783 T: git git://anongit.freedesktop.org/drm/drm-misc
5784 F: drivers/gpu/drm/vboxvideo/
5785
5786 DRM DRIVER FOR VMWARE VIRTUAL GPU
5787 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5788 M: Roland Scheidegger <sroland@vmware.com>
5789 L: dri-devel@lists.freedesktop.org
5790 S: Supported
5791 T: git git://people.freedesktop.org/~sroland/linux
5792 F: drivers/gpu/drm/vmwgfx/
5793 F: include/uapi/drm/vmwgfx_drm.h
5794
5795 DRM DRIVERS
5796 M: David Airlie <airlied@linux.ie>
5797 M: Daniel Vetter <daniel@ffwll.ch>
5798 L: dri-devel@lists.freedesktop.org
5799 S: Maintained
5800 B: https://bugs.freedesktop.org/
5801 C: irc://chat.freenode.net/dri-devel
5802 T: git git://anongit.freedesktop.org/drm/drm
5803 F: Documentation/devicetree/bindings/display/
5804 F: Documentation/devicetree/bindings/gpu/
5805 F: Documentation/gpu/
5806 F: drivers/gpu/drm/
5807 F: drivers/gpu/vga/
5808 F: include/drm/
5809 F: include/linux/vga*
5810 F: include/uapi/drm/
5811
5812 DRM DRIVERS AND MISC GPU PATCHES
5813 M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5814 M: Maxime Ripard <mripard@kernel.org>
5815 M: Thomas Zimmermann <tzimmermann@suse.de>
5816 S: Maintained
5817 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5818 T: git git://anongit.freedesktop.org/drm/drm-misc
5819 F: Documentation/gpu/
5820 F: drivers/gpu/drm/*
5821 F: drivers/gpu/vga/
5822 F: include/drm/drm*
5823 F: include/linux/vga*
5824 F: include/uapi/drm/drm*
5825
5826 DRM DRIVERS FOR ALLWINNER A10
5827 M: Maxime Ripard <mripard@kernel.org>
5828 M: Chen-Yu Tsai <wens@csie.org>
5829 L: dri-devel@lists.freedesktop.org
5830 S: Supported
5831 T: git git://anongit.freedesktop.org/drm/drm-misc
5832 F: Documentation/devicetree/bindings/display/allwinner*
5833 F: drivers/gpu/drm/sun4i/
5834
5835 DRM DRIVERS FOR AMLOGIC SOCS
5836 M: Neil Armstrong <narmstrong@baylibre.com>
5837 L: dri-devel@lists.freedesktop.org
5838 L: linux-amlogic@lists.infradead.org
5839 S: Supported
5840 W: http://linux-meson.com/
5841 T: git git://anongit.freedesktop.org/drm/drm-misc
5842 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5843 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5844 F: Documentation/gpu/meson.rst
5845 F: drivers/gpu/drm/meson/
5846
5847 DRM DRIVERS FOR ATMEL HLCDC
5848 M: Sam Ravnborg <sam@ravnborg.org>
5849 M: Boris Brezillon <bbrezillon@kernel.org>
5850 L: dri-devel@lists.freedesktop.org
5851 S: Supported
5852 T: git git://anongit.freedesktop.org/drm/drm-misc
5853 F: Documentation/devicetree/bindings/display/atmel/
5854 F: drivers/gpu/drm/atmel-hlcdc/
5855
5856 DRM DRIVERS FOR BRIDGE CHIPS
5857 M: Andrzej Hajda <a.hajda@samsung.com>
5858 M: Neil Armstrong <narmstrong@baylibre.com>
5859 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5860 R: Jonas Karlman <jonas@kwiboo.se>
5861 R: Jernej Skrabec <jernej.skrabec@siol.net>
5862 S: Maintained
5863 T: git git://anongit.freedesktop.org/drm/drm-misc
5864 F: drivers/gpu/drm/bridge/
5865
5866 DRM DRIVERS FOR EXYNOS
5867 M: Inki Dae <inki.dae@samsung.com>
5868 M: Joonyoung Shim <jy0922.shim@samsung.com>
5869 M: Seung-Woo Kim <sw0312.kim@samsung.com>
5870 M: Kyungmin Park <kyungmin.park@samsung.com>
5871 L: dri-devel@lists.freedesktop.org
5872 S: Supported
5873 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5874 F: Documentation/devicetree/bindings/display/exynos/
5875 F: drivers/gpu/drm/exynos/
5876 F: include/uapi/drm/exynos_drm.h
5877
5878 DRM DRIVERS FOR FREESCALE DCU
5879 M: Stefan Agner <stefan@agner.ch>
5880 M: Alison Wang <alison.wang@nxp.com>
5881 L: dri-devel@lists.freedesktop.org
5882 S: Supported
5883 T: git git://anongit.freedesktop.org/drm/drm-misc
5884 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
5885 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
5886 F: drivers/gpu/drm/fsl-dcu/
5887
5888 DRM DRIVERS FOR FREESCALE IMX
5889 M: Philipp Zabel <p.zabel@pengutronix.de>
5890 L: dri-devel@lists.freedesktop.org
5891 S: Maintained
5892 F: Documentation/devicetree/bindings/display/imx/
5893 F: drivers/gpu/drm/imx/
5894 F: drivers/gpu/ipu-v3/
5895
5896 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5897 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5898 L: dri-devel@lists.freedesktop.org
5899 S: Maintained
5900 T: git git://github.com/patjak/drm-gma500
5901 F: drivers/gpu/drm/gma500/
5902
5903 DRM DRIVERS FOR HISILICON
5904 M: Xinliang Liu <xinliang.liu@linaro.org>
5905 M: Tian Tao <tiantao6@hisilicon.com>
5906 R: John Stultz <john.stultz@linaro.org>
5907 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
5908 R: Chen Feng <puck.chen@hisilicon.com>
5909 L: dri-devel@lists.freedesktop.org
5910 S: Maintained
5911 T: git git://anongit.freedesktop.org/drm/drm-misc
5912 F: Documentation/devicetree/bindings/display/hisilicon/
5913 F: drivers/gpu/drm/hisilicon/
5914
5915 DRM DRIVERS FOR LIMA
5916 M: Qiang Yu <yuq825@gmail.com>
5917 L: dri-devel@lists.freedesktop.org
5918 L: lima@lists.freedesktop.org (moderated for non-subscribers)
5919 S: Maintained
5920 T: git git://anongit.freedesktop.org/drm/drm-misc
5921 F: drivers/gpu/drm/lima/
5922 F: include/uapi/drm/lima_drm.h
5923
5924 DRM DRIVERS FOR MEDIATEK
5925 M: Chun-Kuang Hu <chunkuang.hu@kernel.org>
5926 M: Philipp Zabel <p.zabel@pengutronix.de>
5927 L: dri-devel@lists.freedesktop.org
5928 S: Supported
5929 F: Documentation/devicetree/bindings/display/mediatek/
5930 F: drivers/gpu/drm/mediatek/
5931 F: drivers/phy/mediatek/phy-mtk-hdmi*
5932 F: drivers/phy/mediatek/phy-mtk-mipi*
5933
5934 DRM DRIVERS FOR NVIDIA TEGRA
5935 M: Thierry Reding <thierry.reding@gmail.com>
5936 L: dri-devel@lists.freedesktop.org
5937 L: linux-tegra@vger.kernel.org
5938 S: Supported
5939 T: git git://anongit.freedesktop.org/tegra/linux.git
5940 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5941 F: drivers/gpu/drm/tegra/
5942 F: drivers/gpu/host1x/
5943 F: include/linux/host1x.h
5944 F: include/uapi/drm/tegra_drm.h
5945
5946 DRM DRIVERS FOR RENESAS
5947 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5948 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5949 L: dri-devel@lists.freedesktop.org
5950 L: linux-renesas-soc@vger.kernel.org
5951 S: Supported
5952 T: git git://linuxtv.org/pinchartl/media drm/du/next
5953 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5954 F: Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5955 F: Documentation/devicetree/bindings/display/renesas,du.txt
5956 F: drivers/gpu/drm/rcar-du/
5957 F: drivers/gpu/drm/shmobile/
5958 F: include/linux/platform_data/shmob_drm.h
5959
5960 DRM DRIVERS FOR ROCKCHIP
5961 M: Sandy Huang <hjc@rock-chips.com>
5962 M: Heiko Stübner <heiko@sntech.de>
5963 L: dri-devel@lists.freedesktop.org
5964 S: Maintained
5965 T: git git://anongit.freedesktop.org/drm/drm-misc
5966 F: Documentation/devicetree/bindings/display/rockchip/
5967 F: drivers/gpu/drm/rockchip/
5968
5969 DRM DRIVERS FOR STI
5970 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5971 M: Vincent Abriou <vincent.abriou@st.com>
5972 L: dri-devel@lists.freedesktop.org
5973 S: Maintained
5974 T: git git://anongit.freedesktop.org/drm/drm-misc
5975 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
5976 F: drivers/gpu/drm/sti
5977
5978 DRM DRIVERS FOR STM
5979 M: Yannick Fertre <yannick.fertre@st.com>
5980 M: Philippe Cornu <philippe.cornu@st.com>
5981 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5982 M: Vincent Abriou <vincent.abriou@st.com>
5983 L: dri-devel@lists.freedesktop.org
5984 S: Maintained
5985 T: git git://anongit.freedesktop.org/drm/drm-misc
5986 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5987 F: drivers/gpu/drm/stm
5988
5989 DRM DRIVERS FOR TI KEYSTONE
5990 M: Jyri Sarha <jsarha@ti.com>
5991 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
5992 L: dri-devel@lists.freedesktop.org
5993 S: Maintained
5994 T: git git://anongit.freedesktop.org/drm/drm-misc
5995 F: Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5996 F: Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5997 F: Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5998 F: drivers/gpu/drm/tidss/
5999
6000 DRM DRIVERS FOR TI LCDC
6001 M: Jyri Sarha <jsarha@ti.com>
6002 R: Tomi Valkeinen <tomi.valkeinen@ti.com>
6003 L: dri-devel@lists.freedesktop.org
6004 S: Maintained
6005 F: Documentation/devicetree/bindings/display/tilcdc/
6006 F: drivers/gpu/drm/tilcdc/
6007
6008 DRM DRIVERS FOR TI OMAP
6009 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
6010 L: dri-devel@lists.freedesktop.org
6011 S: Maintained
6012 F: Documentation/devicetree/bindings/display/ti/
6013 F: drivers/gpu/drm/omapdrm/
6014
6015 DRM DRIVERS FOR V3D
6016 M: Eric Anholt <eric@anholt.net>
6017 S: Supported
6018 T: git git://anongit.freedesktop.org/drm/drm-misc
6019 F: Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
6020 F: drivers/gpu/drm/v3d/
6021 F: include/uapi/drm/v3d_drm.h
6022
6023 DRM DRIVERS FOR VC4
6024 M: Eric Anholt <eric@anholt.net>
6025 M: Maxime Ripard <mripard@kernel.org>
6026 S: Supported
6027 T: git git://github.com/anholt/linux
6028 T: git git://anongit.freedesktop.org/drm/drm-misc
6029 F: Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6030 F: drivers/gpu/drm/vc4/
6031 F: include/uapi/drm/vc4_drm.h
6032
6033 DRM DRIVERS FOR VIVANTE GPU IP
6034 M: Lucas Stach <l.stach@pengutronix.de>
6035 R: Russell King <linux+etnaviv@armlinux.org.uk>
6036 R: Christian Gmeiner <christian.gmeiner@gmail.com>
6037 L: etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6038 L: dri-devel@lists.freedesktop.org
6039 S: Maintained
6040 F: Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6041 F: drivers/gpu/drm/etnaviv/
6042 F: include/uapi/drm/etnaviv_drm.h
6043
6044 DRM DRIVERS FOR XEN
6045 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6046 L: dri-devel@lists.freedesktop.org
6047 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
6048 S: Supported
6049 T: git git://anongit.freedesktop.org/drm/drm-misc
6050 F: Documentation/gpu/xen-front.rst
6051 F: drivers/gpu/drm/xen/
6052
6053 DRM DRIVERS FOR XILINX
6054 M: Hyun Kwon <hyun.kwon@xilinx.com>
6055 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6056 L: dri-devel@lists.freedesktop.org
6057 S: Maintained
6058 T: git git://anongit.freedesktop.org/drm/drm-misc
6059 F: Documentation/devicetree/bindings/display/xlnx/
6060 F: drivers/gpu/drm/xlnx/
6061
6062 DRM DRIVERS FOR ZTE ZX
6063 M: Shawn Guo <shawnguo@kernel.org>
6064 L: dri-devel@lists.freedesktop.org
6065 S: Maintained
6066 T: git git://anongit.freedesktop.org/drm/drm-misc
6067 F: Documentation/devicetree/bindings/display/zte,vou.txt
6068 F: drivers/gpu/drm/zte/
6069
6070 DRM PANEL DRIVERS
6071 M: Thierry Reding <thierry.reding@gmail.com>
6072 R: Sam Ravnborg <sam@ravnborg.org>
6073 L: dri-devel@lists.freedesktop.org
6074 S: Maintained
6075 T: git git://anongit.freedesktop.org/drm/drm-misc
6076 F: Documentation/devicetree/bindings/display/panel/
6077 F: drivers/gpu/drm/drm_panel.c
6078 F: drivers/gpu/drm/panel/
6079 F: include/drm/drm_panel.h
6080
6081 DRM TTM SUBSYSTEM
6082 M: Christian Koenig <christian.koenig@amd.com>
6083 M: Huang Rui <ray.huang@amd.com>
6084 L: dri-devel@lists.freedesktop.org
6085 S: Maintained
6086 T: git git://people.freedesktop.org/~agd5f/linux
6087 F: drivers/gpu/drm/ttm/
6088 F: include/drm/ttm/
6089
6090 DSBR100 USB FM RADIO DRIVER
6091 M: Alexey Klimov <klimov.linux@gmail.com>
6092 L: linux-media@vger.kernel.org
6093 S: Maintained
6094 T: git git://linuxtv.org/media_tree.git
6095 F: drivers/media/radio/dsbr100.c
6096
6097 DT3155 MEDIA DRIVER
6098 M: Hans Verkuil <hverkuil@xs4all.nl>
6099 L: linux-media@vger.kernel.org
6100 S: Odd Fixes
6101 W: https://linuxtv.org
6102 T: git git://linuxtv.org/media_tree.git
6103 F: drivers/media/pci/dt3155/
6104
6105 DVB_USB_AF9015 MEDIA DRIVER
6106 M: Antti Palosaari <crope@iki.fi>
6107 L: linux-media@vger.kernel.org
6108 S: Maintained
6109 W: https://linuxtv.org
6110 W: http://palosaari.fi/linux/
6111 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6112 T: git git://linuxtv.org/anttip/media_tree.git
6113 F: drivers/media/usb/dvb-usb-v2/af9015*
6114
6115 DVB_USB_AF9035 MEDIA DRIVER
6116 M: Antti Palosaari <crope@iki.fi>
6117 L: linux-media@vger.kernel.org
6118 S: Maintained
6119 W: https://linuxtv.org
6120 W: http://palosaari.fi/linux/
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/af9035*
6124
6125 DVB_USB_ANYSEE MEDIA DRIVER
6126 M: Antti Palosaari <crope@iki.fi>
6127 L: linux-media@vger.kernel.org
6128 S: Maintained
6129 W: https://linuxtv.org
6130 W: http://palosaari.fi/linux/
6131 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6132 T: git git://linuxtv.org/anttip/media_tree.git
6133 F: drivers/media/usb/dvb-usb-v2/anysee*
6134
6135 DVB_USB_AU6610 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/au6610*
6144
6145 DVB_USB_CE6230 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/ce6230*
6154
6155 DVB_USB_CXUSB MEDIA DRIVER
6156 M: Michael Krufky <mkrufky@linuxtv.org>
6157 L: linux-media@vger.kernel.org
6158 S: Maintained
6159 W: https://linuxtv.org
6160 W: http://github.com/mkrufky
6161 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6162 T: git git://linuxtv.org/media_tree.git
6163 F: drivers/media/usb/dvb-usb/cxusb*
6164
6165 DVB_USB_EC168 MEDIA DRIVER
6166 M: Antti Palosaari <crope@iki.fi>
6167 L: linux-media@vger.kernel.org
6168 S: Maintained
6169 W: https://linuxtv.org
6170 W: http://palosaari.fi/linux/
6171 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6172 T: git git://linuxtv.org/anttip/media_tree.git
6173 F: drivers/media/usb/dvb-usb-v2/ec168*
6174
6175 DVB_USB_GL861 MEDIA DRIVER
6176 M: Antti Palosaari <crope@iki.fi>
6177 L: linux-media@vger.kernel.org
6178 S: Maintained
6179 W: https://linuxtv.org
6180 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6181 T: git git://linuxtv.org/anttip/media_tree.git
6182 F: drivers/media/usb/dvb-usb-v2/gl861*
6183
6184 DVB_USB_MXL111SF MEDIA DRIVER
6185 M: Michael Krufky <mkrufky@linuxtv.org>
6186 L: linux-media@vger.kernel.org
6187 S: Maintained
6188 W: https://linuxtv.org
6189 W: http://github.com/mkrufky
6190 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6191 T: git git://linuxtv.org/mkrufky/mxl111sf.git
6192 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
6193
6194 DVB_USB_RTL28XXU MEDIA DRIVER
6195 M: Antti Palosaari <crope@iki.fi>
6196 L: linux-media@vger.kernel.org
6197 S: Maintained
6198 W: https://linuxtv.org
6199 W: http://palosaari.fi/linux/
6200 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6201 T: git git://linuxtv.org/anttip/media_tree.git
6202 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
6203
6204 DVB_USB_V2 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/usb/dvb-usb-v2/dvb_usb*
6213 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
6214
6215 DYNAMIC DEBUG
6216 M: Jason Baron <jbaron@akamai.com>
6217 S: Maintained
6218 F: include/linux/dynamic_debug.h
6219 F: lib/dynamic_debug.c
6220
6221 DYNAMIC INTERRUPT MODERATION
6222 M: Tal Gilboa <talgi@nvidia.com>
6223 S: Maintained
6224 F: Documentation/networking/net_dim.rst
6225 F: include/linux/dim.h
6226 F: lib/dim/
6227
6228 DZ DECSTATION DZ11 SERIAL DRIVER
6229 M: "Maciej W. Rozycki" <macro@linux-mips.org>
6230 S: Maintained
6231 F: drivers/tty/serial/dz.*
6232
6233 E3X0 POWER BUTTON DRIVER
6234 M: Moritz Fischer <moritz.fischer@ettus.com>
6235 L: usrp-users@lists.ettus.com
6236 S: Supported
6237 W: http://www.ettus.com
6238 F: Documentation/devicetree/bindings/input/e3x0-button.txt
6239 F: drivers/input/misc/e3x0-button.c
6240
6241 E4000 MEDIA DRIVER
6242 M: Antti Palosaari <crope@iki.fi>
6243 L: linux-media@vger.kernel.org
6244 S: Maintained
6245 W: https://linuxtv.org
6246 W: http://palosaari.fi/linux/
6247 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6248 T: git git://linuxtv.org/anttip/media_tree.git
6249 F: drivers/media/tuners/e4000*
6250
6251 EARTH_PT1 MEDIA DRIVER
6252 M: Akihiro Tsukada <tskd08@gmail.com>
6253 L: linux-media@vger.kernel.org
6254 S: Odd Fixes
6255 F: drivers/media/pci/pt1/
6256
6257 EARTH_PT3 MEDIA DRIVER
6258 M: Akihiro Tsukada <tskd08@gmail.com>
6259 L: linux-media@vger.kernel.org
6260 S: Odd Fixes
6261 F: drivers/media/pci/pt3/
6262
6263 EC100 MEDIA DRIVER
6264 M: Antti Palosaari <crope@iki.fi>
6265 L: linux-media@vger.kernel.org
6266 S: Maintained
6267 W: https://linuxtv.org
6268 W: http://palosaari.fi/linux/
6269 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6270 T: git git://linuxtv.org/anttip/media_tree.git
6271 F: drivers/media/dvb-frontends/ec100*
6272
6273 ECRYPT FILE SYSTEM
6274 M: Tyler Hicks <code@tyhicks.com>
6275 L: ecryptfs@vger.kernel.org
6276 S: Odd Fixes
6277 W: http://ecryptfs.org
6278 W: https://launchpad.net/ecryptfs
6279 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6280 F: Documentation/filesystems/ecryptfs.rst
6281 F: fs/ecryptfs/
6282
6283 EDAC-AMD64
6284 M: Borislav Petkov <bp@alien8.de>
6285 L: linux-edac@vger.kernel.org
6286 S: Maintained
6287 F: drivers/edac/amd64_edac*
6288
6289 EDAC-ARMADA
6290 M: Jan Luebbe <jlu@pengutronix.de>
6291 L: linux-edac@vger.kernel.org
6292 S: Maintained
6293 F: drivers/edac/armada_xp_*
6294
6295 EDAC-AST2500
6296 M: Stefan Schaeckeler <sschaeck@cisco.com>
6297 S: Supported
6298 F: Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6299 F: drivers/edac/aspeed_edac.c
6300
6301 EDAC-BLUEFIELD
6302 M: Shravan Kumar Ramani <shravankr@nvidia.com>
6303 S: Supported
6304 F: drivers/edac/bluefield_edac.c
6305
6306 EDAC-CALXEDA
6307 M: Andre Przywara <andre.przywara@arm.com>
6308 L: linux-edac@vger.kernel.org
6309 S: Maintained
6310 F: drivers/edac/highbank*
6311
6312 EDAC-CAVIUM OCTEON
6313 M: Ralf Baechle <ralf@linux-mips.org>
6314 L: linux-edac@vger.kernel.org
6315 L: linux-mips@vger.kernel.org
6316 S: Supported
6317 F: drivers/edac/octeon_edac*
6318
6319 EDAC-CAVIUM THUNDERX
6320 M: Robert Richter <rric@kernel.org>
6321 L: linux-edac@vger.kernel.org
6322 S: Odd Fixes
6323 F: drivers/edac/thunderx_edac*
6324
6325 EDAC-CORE
6326 M: Borislav Petkov <bp@alien8.de>
6327 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6328 M: Tony Luck <tony.luck@intel.com>
6329 R: James Morse <james.morse@arm.com>
6330 R: Robert Richter <rric@kernel.org>
6331 L: linux-edac@vger.kernel.org
6332 S: Supported
6333 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6334 F: Documentation/admin-guide/ras.rst
6335 F: Documentation/driver-api/edac.rst
6336 F: drivers/edac/
6337 F: include/linux/edac.h
6338
6339 EDAC-DMC520
6340 M: Lei Wang <lewan@microsoft.com>
6341 L: linux-edac@vger.kernel.org
6342 S: Supported
6343 F: drivers/edac/dmc520_edac.c
6344
6345 EDAC-E752X
6346 M: Mark Gross <mark.gross@intel.com>
6347 L: linux-edac@vger.kernel.org
6348 S: Maintained
6349 F: drivers/edac/e752x_edac.c
6350
6351 EDAC-E7XXX
6352 L: linux-edac@vger.kernel.org
6353 S: Maintained
6354 F: drivers/edac/e7xxx_edac.c
6355
6356 EDAC-FSL_DDR
6357 M: York Sun <york.sun@nxp.com>
6358 L: linux-edac@vger.kernel.org
6359 S: Maintained
6360 F: drivers/edac/fsl_ddr_edac.*
6361
6362 EDAC-GHES
6363 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6364 L: linux-edac@vger.kernel.org
6365 S: Maintained
6366 F: drivers/edac/ghes_edac.c
6367
6368 EDAC-I10NM
6369 M: Tony Luck <tony.luck@intel.com>
6370 L: linux-edac@vger.kernel.org
6371 S: Maintained
6372 F: drivers/edac/i10nm_base.c
6373
6374 EDAC-I3000
6375 L: linux-edac@vger.kernel.org
6376 S: Orphan
6377 F: drivers/edac/i3000_edac.c
6378
6379 EDAC-I5000
6380 L: linux-edac@vger.kernel.org
6381 S: Maintained
6382 F: drivers/edac/i5000_edac.c
6383
6384 EDAC-I5400
6385 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6386 L: linux-edac@vger.kernel.org
6387 S: Maintained
6388 F: drivers/edac/i5400_edac.c
6389
6390 EDAC-I7300
6391 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6392 L: linux-edac@vger.kernel.org
6393 S: Maintained
6394 F: drivers/edac/i7300_edac.c
6395
6396 EDAC-I7CORE
6397 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6398 L: linux-edac@vger.kernel.org
6399 S: Maintained
6400 F: drivers/edac/i7core_edac.c
6401
6402 EDAC-I82443BXGX
6403 M: Tim Small <tim@buttersideup.com>
6404 L: linux-edac@vger.kernel.org
6405 S: Maintained
6406 F: drivers/edac/i82443bxgx_edac.c
6407
6408 EDAC-I82975X
6409 M: "Arvind R." <arvino55@gmail.com>
6410 L: linux-edac@vger.kernel.org
6411 S: Maintained
6412 F: drivers/edac/i82975x_edac.c
6413
6414 EDAC-IE31200
6415 M: Jason Baron <jbaron@akamai.com>
6416 L: linux-edac@vger.kernel.org
6417 S: Maintained
6418 F: drivers/edac/ie31200_edac.c
6419
6420 EDAC-IGEN6
6421 M: Tony Luck <tony.luck@intel.com>
6422 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6423 L: linux-edac@vger.kernel.org
6424 S: Maintained
6425 F: drivers/edac/igen6_edac.c
6426
6427 EDAC-MPC85XX
6428 M: Johannes Thumshirn <morbidrsa@gmail.com>
6429 L: linux-edac@vger.kernel.org
6430 S: Maintained
6431 F: drivers/edac/mpc85xx_edac.[ch]
6432
6433 EDAC-PASEMI
6434 M: Egor Martovetsky <egor@pasemi.com>
6435 L: linux-edac@vger.kernel.org
6436 S: Maintained
6437 F: drivers/edac/pasemi_edac.c
6438
6439 EDAC-PND2
6440 M: Tony Luck <tony.luck@intel.com>
6441 L: linux-edac@vger.kernel.org
6442 S: Maintained
6443 F: drivers/edac/pnd2_edac.[ch]
6444
6445 EDAC-QCOM
6446 M: Channagoud Kadabi <ckadabi@codeaurora.org>
6447 M: Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6448 L: linux-arm-msm@vger.kernel.org
6449 L: linux-edac@vger.kernel.org
6450 S: Maintained
6451 F: drivers/edac/qcom_edac.c
6452
6453 EDAC-R82600
6454 M: Tim Small <tim@buttersideup.com>
6455 L: linux-edac@vger.kernel.org
6456 S: Maintained
6457 F: drivers/edac/r82600_edac.c
6458
6459 EDAC-SBRIDGE
6460 M: Tony Luck <tony.luck@intel.com>
6461 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6462 L: linux-edac@vger.kernel.org
6463 S: Maintained
6464 F: drivers/edac/sb_edac.c
6465
6466 EDAC-SIFIVE
6467 M: Yash Shah <yash.shah@sifive.com>
6468 L: linux-edac@vger.kernel.org
6469 S: Supported
6470 F: drivers/edac/sifive_edac.c
6471
6472 EDAC-SKYLAKE
6473 M: Tony Luck <tony.luck@intel.com>
6474 L: linux-edac@vger.kernel.org
6475 S: Maintained
6476 F: drivers/edac/skx_*.[ch]
6477
6478 EDAC-TI
6479 M: Tero Kristo <t-kristo@ti.com>
6480 L: linux-edac@vger.kernel.org
6481 S: Maintained
6482 F: drivers/edac/ti_edac.c
6483
6484 EDIROL UA-101/UA-1000 DRIVER
6485 M: Clemens Ladisch <clemens@ladisch.de>
6486 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6487 S: Maintained
6488 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6489 F: sound/usb/misc/ua101.c
6490
6491 EFI TEST DRIVER
6492 M: Ivan Hu <ivan.hu@canonical.com>
6493 M: Ard Biesheuvel <ardb@kernel.org>
6494 L: linux-efi@vger.kernel.org
6495 S: Maintained
6496 F: drivers/firmware/efi/test/
6497
6498 EFI VARIABLE FILESYSTEM
6499 M: Matthew Garrett <matthew.garrett@nebula.com>
6500 M: Jeremy Kerr <jk@ozlabs.org>
6501 M: Ard Biesheuvel <ardb@kernel.org>
6502 L: linux-efi@vger.kernel.org
6503 S: Maintained
6504 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6505 F: fs/efivarfs/
6506
6507 EFIFB FRAMEBUFFER DRIVER
6508 M: Peter Jones <pjones@redhat.com>
6509 L: linux-fbdev@vger.kernel.org
6510 S: Maintained
6511 F: drivers/video/fbdev/efifb.c
6512
6513 EFS FILESYSTEM
6514 S: Orphan
6515 W: http://aeschi.ch.eu.org/efs/
6516 F: fs/efs/
6517
6518 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6519 M: Douglas Miller <dougmill@linux.ibm.com>
6520 L: netdev@vger.kernel.org
6521 S: Maintained
6522 F: drivers/net/ethernet/ibm/ehea/
6523
6524 EM28XX VIDEO4LINUX DRIVER
6525 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6526 L: linux-media@vger.kernel.org
6527 S: Maintained
6528 W: https://linuxtv.org
6529 T: git git://linuxtv.org/media_tree.git
6530 F: Documentation/admin-guide/media/em28xx*
6531 F: drivers/media/usb/em28xx/
6532
6533 EMBEDDED LINUX
6534 M: Paul Gortmaker <paul.gortmaker@windriver.com>
6535 M: Matt Mackall <mpm@selenic.com>
6536 M: David Woodhouse <dwmw2@infradead.org>
6537 L: linux-embedded@vger.kernel.org
6538 S: Maintained
6539
6540 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6541 M: Adrian Hunter <adrian.hunter@intel.com>
6542 M: Ritesh Harjani <riteshh@codeaurora.org>
6543 M: Asutosh Das <asutoshd@codeaurora.org>
6544 L: linux-mmc@vger.kernel.org
6545 S: Maintained
6546 F: drivers/mmc/host/cqhci*
6547
6548 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6549 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6550 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
6551 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6552 L: linux-scsi@vger.kernel.org
6553 S: Supported
6554 W: http://www.broadcom.com
6555 F: drivers/scsi/be2iscsi/
6556
6557 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6558 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
6559 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6560 M: Somnath Kotur <somnath.kotur@broadcom.com>
6561 L: netdev@vger.kernel.org
6562 S: Supported
6563 W: http://www.emulex.com
6564 F: drivers/net/ethernet/emulex/benet/
6565
6566 EMULEX ONECONNECT ROCE DRIVER
6567 M: Selvin Xavier <selvin.xavier@broadcom.com>
6568 M: Devesh Sharma <devesh.sharma@broadcom.com>
6569 L: linux-rdma@vger.kernel.org
6570 S: Odd Fixes
6571 W: http://www.broadcom.com
6572 F: drivers/infiniband/hw/ocrdma/
6573 F: include/uapi/rdma/ocrdma-abi.h
6574
6575 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6576 M: James Smart <james.smart@broadcom.com>
6577 M: Dick Kennedy <dick.kennedy@broadcom.com>
6578 L: linux-scsi@vger.kernel.org
6579 S: Supported
6580 W: http://www.broadcom.com
6581 F: drivers/scsi/lpfc/
6582
6583 ENE CB710 FLASH CARD READER DRIVER
6584 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
6585 S: Maintained
6586 F: drivers/misc/cb710/
6587 F: drivers/mmc/host/cb710-mmc.*
6588 F: include/linux/cb710.h
6589
6590 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6591 M: Maxim Levitsky <maximlevitsky@gmail.com>
6592 S: Maintained
6593 F: drivers/media/rc/ene_ir.*
6594
6595 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6596 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
6597 L: linuxppc-dev@lists.ozlabs.org
6598 S: Maintained
6599 F: drivers/tty/ehv_bytechan.c
6600
6601 EPSON S1D13XXX FRAMEBUFFER DRIVER
6602 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
6603 S: Maintained
6604 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6605 F: drivers/video/fbdev/s1d13xxxfb.c
6606 F: include/video/s1d13xxxfb.h
6607
6608 EROFS FILE SYSTEM
6609 M: Gao Xiang <xiang@kernel.org>
6610 M: Chao Yu <yuchao0@huawei.com>
6611 L: linux-erofs@lists.ozlabs.org
6612 S: Maintained
6613 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6614 F: Documentation/filesystems/erofs.rst
6615 F: fs/erofs/
6616 F: include/trace/events/erofs.h
6617
6618 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6619 M: Jeff Layton <jlayton@kernel.org>
6620 S: Maintained
6621 F: include/linux/errseq.h
6622 F: lib/errseq.c
6623
6624 ET131X NETWORK DRIVER
6625 M: Mark Einon <mark.einon@gmail.com>
6626 S: Odd Fixes
6627 F: drivers/net/ethernet/agere/
6628
6629 ETHERNET BRIDGE
6630 M: Roopa Prabhu <roopa@nvidia.com>
6631 M: Nikolay Aleksandrov <nikolay@nvidia.com>
6632 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
6633 L: netdev@vger.kernel.org
6634 S: Maintained
6635 W: http://www.linuxfoundation.org/en/Net:Bridge
6636 F: include/linux/netfilter_bridge/
6637 F: net/bridge/
6638
6639 ETHERNET PHY LIBRARY
6640 M: Andrew Lunn <andrew@lunn.ch>
6641 M: Heiner Kallweit <hkallweit1@gmail.com>
6642 R: Russell King <linux@armlinux.org.uk>
6643 L: netdev@vger.kernel.org
6644 S: Maintained
6645 F: Documentation/ABI/testing/sysfs-class-net-phydev
6646 F: Documentation/devicetree/bindings/net/ethernet-phy.yaml
6647 F: Documentation/devicetree/bindings/net/mdio*
6648 F: Documentation/devicetree/bindings/net/qca,ar803x.yaml
6649 F: Documentation/networking/phy.rst
6650 F: drivers/net/mdio/
6651 F: drivers/net/mdio/of_mdio.c
6652 F: drivers/net/pcs/
6653 F: drivers/net/phy/
6654 F: drivers/of/of_net.c
6655 F: include/dt-bindings/net/qca-ar803x.h
6656 F: include/linux/*mdio*.h
6657 F: include/linux/mdio/*.h
6658 F: include/linux/of_net.h
6659 F: include/linux/phy.h
6660 F: include/linux/phy_fixed.h
6661 F: include/linux/platform_data/mdio-bcm-unimac.h
6662 F: include/linux/platform_data/mdio-gpio.h
6663 F: include/trace/events/mdio.h
6664 F: include/uapi/linux/mdio.h
6665 F: include/uapi/linux/mii.h
6666
6667 EXFAT FILE SYSTEM
6668 M: Namjae Jeon <namjae.jeon@samsung.com>
6669 M: Sungjong Seo <sj1557.seo@samsung.com>
6670 L: linux-fsdevel@vger.kernel.org
6671 S: Maintained
6672 F: fs/exfat/
6673
6674 EXT2 FILE SYSTEM
6675 M: Jan Kara <jack@suse.com>
6676 L: linux-ext4@vger.kernel.org
6677 S: Maintained
6678 F: Documentation/filesystems/ext2.rst
6679 F: fs/ext2/
6680 F: include/linux/ext2*
6681
6682 EXT4 FILE SYSTEM
6683 M: "Theodore Ts'o" <tytso@mit.edu>
6684 M: Andreas Dilger <adilger.kernel@dilger.ca>
6685 L: linux-ext4@vger.kernel.org
6686 S: Maintained
6687 W: http://ext4.wiki.kernel.org
6688 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
6689 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6690 F: Documentation/filesystems/ext4/
6691 F: fs/ext4/
6692 F: include/trace/events/ext4.h
6693
6694 Extended Verification Module (EVM)
6695 M: Mimi Zohar <zohar@linux.ibm.com>
6696 L: linux-integrity@vger.kernel.org
6697 S: Supported
6698 F: security/integrity/evm/
6699
6700 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6701 M: Ard Biesheuvel <ardb@kernel.org>
6702 L: linux-efi@vger.kernel.org
6703 S: Maintained
6704 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6705 F: Documentation/admin-guide/efi-stub.rst
6706 F: arch/*/include/asm/efi.h
6707 F: arch/*/kernel/efi.c
6708 F: arch/arm/boot/compressed/efi-header.S
6709 F: arch/arm64/kernel/efi-entry.S
6710 F: arch/x86/platform/efi/
6711 F: drivers/firmware/efi/
6712 F: include/linux/efi*.h
6713
6714 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6715 M: MyungJoo Ham <myungjoo.ham@samsung.com>
6716 M: Chanwoo Choi <cw00.choi@samsung.com>
6717 L: linux-kernel@vger.kernel.org
6718 S: Maintained
6719 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6720 F: Documentation/devicetree/bindings/extcon/
6721 F: Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6722 F: drivers/extcon/
6723 F: include/linux/extcon.h
6724 F: include/linux/extcon/
6725
6726 EXTRA BOOT CONFIG
6727 M: Masami Hiramatsu <mhiramat@kernel.org>
6728 S: Maintained
6729 F: Documentation/admin-guide/bootconfig.rst
6730 F: fs/proc/bootconfig.c
6731 F: include/linux/bootconfig.h
6732 F: lib/bootconfig.c
6733 F: tools/bootconfig/*
6734 F: tools/bootconfig/scripts/*
6735
6736 EXYNOS DP DRIVER
6737 M: Jingoo Han <jingoohan1@gmail.com>
6738 L: dri-devel@lists.freedesktop.org
6739 S: Maintained
6740 F: drivers/gpu/drm/exynos/exynos_dp*
6741
6742 EXYNOS SYSMMU (IOMMU) driver
6743 M: Marek Szyprowski <m.szyprowski@samsung.com>
6744 L: iommu@lists.linux-foundation.org
6745 S: Maintained
6746 F: drivers/iommu/exynos-iommu.c
6747
6748 F2FS FILE SYSTEM
6749 M: Jaegeuk Kim <jaegeuk@kernel.org>
6750 M: Chao Yu <yuchao0@huawei.com>
6751 L: linux-f2fs-devel@lists.sourceforge.net
6752 S: Maintained
6753 W: https://f2fs.wiki.kernel.org/
6754 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6755 F: Documentation/ABI/testing/sysfs-fs-f2fs
6756 F: Documentation/filesystems/f2fs.rst
6757 F: fs/f2fs/
6758 F: include/linux/f2fs_fs.h
6759 F: include/trace/events/f2fs.h
6760 F: include/uapi/linux/f2fs.h
6761
6762 F71805F HARDWARE MONITORING DRIVER
6763 M: Jean Delvare <jdelvare@suse.com>
6764 L: linux-hwmon@vger.kernel.org
6765 S: Maintained
6766 F: Documentation/hwmon/f71805f.rst
6767 F: drivers/hwmon/f71805f.c
6768
6769 FADDR2LINE
6770 M: Josh Poimboeuf <jpoimboe@redhat.com>
6771 S: Maintained
6772 F: scripts/faddr2line
6773
6774 FAILOVER MODULE
6775 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
6776 L: netdev@vger.kernel.org
6777 S: Supported
6778 F: Documentation/networking/failover.rst
6779 F: include/net/failover.h
6780 F: net/core/failover.c
6781
6782 FANOTIFY
6783 M: Jan Kara <jack@suse.cz>
6784 R: Amir Goldstein <amir73il@gmail.com>
6785 L: linux-fsdevel@vger.kernel.org
6786 S: Maintained
6787 F: fs/notify/fanotify/
6788 F: include/linux/fanotify.h
6789 F: include/uapi/linux/fanotify.h
6790
6791 FARSYNC SYNCHRONOUS DRIVER
6792 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
6793 S: Supported
6794 W: http://www.farsite.co.uk/
6795 F: drivers/net/wan/farsync.*
6796
6797 FAULT INJECTION SUPPORT
6798 M: Akinobu Mita <akinobu.mita@gmail.com>
6799 S: Supported
6800 F: Documentation/fault-injection/
6801 F: lib/fault-inject.c
6802
6803 FBTFT Framebuffer drivers
6804 L: dri-devel@lists.freedesktop.org
6805 L: linux-fbdev@vger.kernel.org
6806 S: Orphan
6807 F: drivers/staging/fbtft/
6808
6809 FC0011 TUNER DRIVER
6810 M: Michael Buesch <m@bues.ch>
6811 L: linux-media@vger.kernel.org
6812 S: Maintained
6813 F: drivers/media/tuners/fc0011.c
6814 F: drivers/media/tuners/fc0011.h
6815
6816 FC2580 MEDIA DRIVER
6817 M: Antti Palosaari <crope@iki.fi>
6818 L: linux-media@vger.kernel.org
6819 S: Maintained
6820 W: https://linuxtv.org
6821 W: http://palosaari.fi/linux/
6822 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6823 T: git git://linuxtv.org/anttip/media_tree.git
6824 F: drivers/media/tuners/fc2580*
6825
6826 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6827 M: Hannes Reinecke <hare@suse.de>
6828 L: linux-scsi@vger.kernel.org
6829 S: Supported
6830 W: www.Open-FCoE.org
6831 F: drivers/scsi/fcoe/
6832 F: drivers/scsi/libfc/
6833 F: include/scsi/fc/
6834 F: include/scsi/libfc.h
6835 F: include/scsi/libfcoe.h
6836 F: include/uapi/scsi/fc/
6837
6838 FILE LOCKING (flock() and fcntl()/lockf())
6839 M: Jeff Layton <jlayton@kernel.org>
6840 M: "J. Bruce Fields" <bfields@fieldses.org>
6841 L: linux-fsdevel@vger.kernel.org
6842 S: Maintained
6843 F: fs/fcntl.c
6844 F: fs/locks.c
6845 F: include/linux/fcntl.h
6846 F: include/uapi/linux/fcntl.h
6847
6848 FILESYSTEM DIRECT ACCESS (DAX)
6849 M: Dan Williams <dan.j.williams@intel.com>
6850 R: Matthew Wilcox <willy@infradead.org>
6851 R: Jan Kara <jack@suse.cz>
6852 L: linux-fsdevel@vger.kernel.org
6853 L: linux-nvdimm@lists.01.org
6854 S: Supported
6855 F: fs/dax.c
6856 F: include/linux/dax.h
6857 F: include/trace/events/fs_dax.h
6858
6859 FILESYSTEMS (VFS and infrastructure)
6860 M: Alexander Viro <viro@zeniv.linux.org.uk>
6861 L: linux-fsdevel@vger.kernel.org
6862 S: Maintained
6863 F: fs/*
6864 F: include/linux/fs.h
6865 F: include/linux/fs_types.h
6866 F: include/uapi/linux/fs.h
6867 F: include/uapi/linux/openat2.h
6868
6869 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6870 M: Riku Voipio <riku.voipio@iki.fi>
6871 L: linux-hwmon@vger.kernel.org
6872 S: Maintained
6873 F: drivers/hwmon/f75375s.c
6874 F: include/linux/f75375s.h
6875
6876 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6877 M: Clemens Ladisch <clemens@ladisch.de>
6878 M: Takashi Sakamoto <o-takashi@sakamocchi.jp>
6879 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6880 S: Maintained
6881 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6882 F: include/uapi/sound/firewire.h
6883 F: sound/firewire/
6884
6885 FIREWIRE MEDIA DRIVERS (firedtv)
6886 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
6887 L: linux-media@vger.kernel.org
6888 L: linux1394-devel@lists.sourceforge.net
6889 S: Maintained
6890 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6891 F: drivers/media/firewire/
6892
6893 FIREWIRE SBP-2 TARGET
6894 M: Chris Boot <bootc@bootc.net>
6895 L: linux-scsi@vger.kernel.org
6896 L: target-devel@vger.kernel.org
6897 L: linux1394-devel@lists.sourceforge.net
6898 S: Maintained
6899 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6900 F: drivers/target/sbp/
6901
6902 FIREWIRE SUBSYSTEM
6903 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
6904 L: linux1394-devel@lists.sourceforge.net
6905 S: Maintained
6906 W: http://ieee1394.wiki.kernel.org/
6907 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6908 F: drivers/firewire/
6909 F: include/linux/firewire.h
6910 F: include/uapi/linux/firewire*.h
6911 F: tools/firewire/
6912
6913 FIRMWARE LOADER (request_firmware)
6914 M: Luis Chamberlain <mcgrof@kernel.org>
6915 L: linux-kernel@vger.kernel.org
6916 S: Maintained
6917 F: Documentation/firmware_class/
6918 F: drivers/base/firmware_loader/
6919 F: include/linux/firmware.h
6920
6921 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6922 M: Joshua Morris <josh.h.morris@us.ibm.com>
6923 M: Philip Kelleher <pjk1939@linux.ibm.com>
6924 S: Maintained
6925 F: drivers/block/rsxx/
6926
6927 FLEXTIMER FTM-QUADDEC DRIVER
6928 M: Patrick Havelange <patrick.havelange@essensium.com>
6929 L: linux-iio@vger.kernel.org
6930 S: Maintained
6931 F: Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6932 F: Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6933 F: drivers/counter/ftm-quaddec.c
6934
6935 FLOPPY DRIVER
6936 M: Denis Efremov <efremov@linux.com>
6937 L: linux-block@vger.kernel.org
6938 S: Odd Fixes
6939 F: drivers/block/floppy.c
6940
6941 FLYSKY FSIA6B RC RECEIVER
6942 M: Markus Koch <markus@notsyncing.net>
6943 L: linux-input@vger.kernel.org
6944 S: Maintained
6945 F: drivers/input/joystick/fsia6b.c
6946
6947 FORCEDETH GIGABIT ETHERNET DRIVER
6948 M: Rain River <rain.1986.08.12@gmail.com>
6949 M: Zhu Yanjun <zyjzyj2000@gmail.com>
6950 L: netdev@vger.kernel.org
6951 S: Maintained
6952 F: drivers/net/ethernet/nvidia/*
6953
6954 FPGA DFL DRIVERS
6955 M: Wu Hao <hao.wu@intel.com>
6956 R: Tom Rix <trix@redhat.com>
6957 L: linux-fpga@vger.kernel.org
6958 S: Maintained
6959 F: Documentation/ABI/testing/sysfs-bus-dfl
6960 F: Documentation/fpga/dfl.rst
6961 F: drivers/fpga/dfl*
6962 F: include/uapi/linux/fpga-dfl.h
6963
6964 FPGA MANAGER FRAMEWORK
6965 M: Moritz Fischer <mdf@kernel.org>
6966 R: Tom Rix <trix@redhat.com>
6967 L: linux-fpga@vger.kernel.org
6968 S: Maintained
6969 W: http://www.rocketboards.org
6970 Q: http://patchwork.kernel.org/project/linux-fpga/list/
6971 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6972 F: Documentation/devicetree/bindings/fpga/
6973 F: Documentation/driver-api/fpga/
6974 F: Documentation/fpga/
6975 F: drivers/fpga/
6976 F: include/linux/fpga/
6977
6978 FPU EMULATOR
6979 M: Bill Metzenthen <billm@melbpc.org.au>
6980 S: Maintained
6981 W: http://floatingpoint.sourceforge.net/emulator/index.html
6982 F: arch/x86/math-emu/
6983
6984 FRAMEBUFFER LAYER
6985 L: dri-devel@lists.freedesktop.org
6986 L: linux-fbdev@vger.kernel.org
6987 S: Orphan
6988 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
6989 T: git git://anongit.freedesktop.org/drm/drm-misc
6990 F: Documentation/fb/
6991 F: drivers/video/
6992 F: include/linux/fb.h
6993 F: include/uapi/linux/fb.h
6994 F: include/uapi/video/
6995 F: include/video/
6996
6997 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6998 M: Horia Geantă <horia.geanta@nxp.com>
6999 M: Aymen Sghaier <aymen.sghaier@nxp.com>
7000 L: linux-crypto@vger.kernel.org
7001 S: Maintained
7002 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7003 F: drivers/crypto/caam/
7004
7005 FREESCALE COLDFIRE M5441X MMC DRIVER
7006 M: Angelo Dureghello <angelo.dureghello@timesys.com>
7007 L: linux-mmc@vger.kernel.org
7008 S: Maintained
7009 F: drivers/mmc/host/sdhci-esdhc-mcf.c
7010 F: include/linux/platform_data/mmc-esdhc-mcf.h
7011
7012 FREESCALE DIU FRAMEBUFFER DRIVER
7013 M: Timur Tabi <timur@kernel.org>
7014 L: linux-fbdev@vger.kernel.org
7015 S: Maintained
7016 F: drivers/video/fbdev/fsl-diu-fb.*
7017
7018 FREESCALE DMA DRIVER
7019 M: Li Yang <leoyang.li@nxp.com>
7020 M: Zhang Wei <zw@zh-kernel.org>
7021 L: linuxppc-dev@lists.ozlabs.org
7022 S: Maintained
7023 F: drivers/dma/fsldma.*
7024
7025 FREESCALE DSPI DRIVER
7026 M: Vladimir Oltean <olteanv@gmail.com>
7027 L: linux-spi@vger.kernel.org
7028 S: Maintained
7029 F: Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7030 F: drivers/spi/spi-fsl-dspi.c
7031 F: include/linux/spi/spi-fsl-dspi.h
7032
7033 FREESCALE ENETC ETHERNET DRIVERS
7034 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7035 L: netdev@vger.kernel.org
7036 S: Maintained
7037 F: drivers/net/ethernet/freescale/enetc/
7038
7039 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7040 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7041 L: netdev@vger.kernel.org
7042 S: Maintained
7043 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7044 F: drivers/net/ethernet/freescale/gianfar*
7045
7046 FREESCALE GPMI NAND DRIVER
7047 M: Han Xu <han.xu@nxp.com>
7048 L: linux-mtd@lists.infradead.org
7049 S: Maintained
7050 F: drivers/mtd/nand/raw/gpmi-nand/*
7051
7052 FREESCALE I2C CPM DRIVER
7053 M: Jochen Friedrich <jochen@scram.de>
7054 L: linuxppc-dev@lists.ozlabs.org
7055 L: linux-i2c@vger.kernel.org
7056 S: Maintained
7057 F: drivers/i2c/busses/i2c-cpm.c
7058
7059 FREESCALE IMX / MXC FEC DRIVER
7060 M: Fugang Duan <fugang.duan@nxp.com>
7061 L: netdev@vger.kernel.org
7062 S: Maintained
7063 F: Documentation/devicetree/bindings/net/fsl-fec.txt
7064 F: drivers/net/ethernet/freescale/fec.h
7065 F: drivers/net/ethernet/freescale/fec_main.c
7066 F: drivers/net/ethernet/freescale/fec_ptp.c
7067
7068 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7069 M: Sascha Hauer <s.hauer@pengutronix.de>
7070 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7071 L: linux-fbdev@vger.kernel.org
7072 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7073 S: Maintained
7074 F: drivers/video/fbdev/imxfb.c
7075 F: include/linux/platform_data/video-imxfb.h
7076
7077 FREESCALE IMX DDR PMU DRIVER
7078 M: Frank Li <Frank.li@nxp.com>
7079 L: linux-arm-kernel@lists.infradead.org
7080 S: Maintained
7081 F: Documentation/admin-guide/perf/imx-ddr.rst
7082 F: Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7083 F: drivers/perf/fsl_imx8_ddr_perf.c
7084
7085 FREESCALE IMX I2C DRIVER
7086 M: Oleksij Rempel <o.rempel@pengutronix.de>
7087 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7088 L: linux-i2c@vger.kernel.org
7089 S: Maintained
7090 F: Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7091 F: drivers/i2c/busses/i2c-imx.c
7092
7093 FREESCALE IMX LPI2C DRIVER
7094 M: Dong Aisheng <aisheng.dong@nxp.com>
7095 L: linux-i2c@vger.kernel.org
7096 L: linux-imx@nxp.com
7097 S: Maintained
7098 F: Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7099 F: drivers/i2c/busses/i2c-imx-lpi2c.c
7100
7101 FREESCALE QORIQ DPAA ETHERNET DRIVER
7102 M: Madalin Bucur <madalin.bucur@nxp.com>
7103 L: netdev@vger.kernel.org
7104 S: Maintained
7105 F: drivers/net/ethernet/freescale/dpaa
7106
7107 FREESCALE QORIQ DPAA FMAN DRIVER
7108 M: Madalin Bucur <madalin.bucur@nxp.com>
7109 L: netdev@vger.kernel.org
7110 S: Maintained
7111 F: Documentation/devicetree/bindings/net/fsl-fman.txt
7112 F: drivers/net/ethernet/freescale/fman
7113
7114 FREESCALE QORIQ PTP CLOCK DRIVER
7115 M: Yangbo Lu <yangbo.lu@nxp.com>
7116 L: netdev@vger.kernel.org
7117 S: Maintained
7118 F: Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7119 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7120 F: drivers/net/ethernet/freescale/dpaa2/dprtc*
7121 F: drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7122 F: drivers/ptp/ptp_qoriq.c
7123 F: drivers/ptp/ptp_qoriq_debugfs.c
7124 F: include/linux/fsl/ptp_qoriq.h
7125
7126 FREESCALE QUAD SPI DRIVER
7127 M: Han Xu <han.xu@nxp.com>
7128 L: linux-spi@vger.kernel.org
7129 S: Maintained
7130 F: drivers/spi/spi-fsl-qspi.c
7131
7132 FREESCALE QUICC ENGINE LIBRARY
7133 M: Qiang Zhao <qiang.zhao@nxp.com>
7134 L: linuxppc-dev@lists.ozlabs.org
7135 S: Maintained
7136 F: drivers/soc/fsl/qe/
7137 F: include/soc/fsl/*qe*.h
7138 F: include/soc/fsl/*ucc*.h
7139
7140 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7141 M: Li Yang <leoyang.li@nxp.com>
7142 L: netdev@vger.kernel.org
7143 L: linuxppc-dev@lists.ozlabs.org
7144 S: Maintained
7145 F: drivers/net/ethernet/freescale/ucc_geth*
7146
7147 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7148 M: Zhao Qiang <qiang.zhao@nxp.com>
7149 L: netdev@vger.kernel.org
7150 L: linuxppc-dev@lists.ozlabs.org
7151 S: Maintained
7152 F: drivers/net/wan/fsl_ucc_hdlc*
7153
7154 FREESCALE QUICC ENGINE UCC UART DRIVER
7155 M: Timur Tabi <timur@kernel.org>
7156 L: linuxppc-dev@lists.ozlabs.org
7157 S: Maintained
7158 F: drivers/tty/serial/ucc_uart.c
7159
7160 FREESCALE SOC DRIVERS
7161 M: Li Yang <leoyang.li@nxp.com>
7162 L: linuxppc-dev@lists.ozlabs.org
7163 L: linux-arm-kernel@lists.infradead.org
7164 S: Maintained
7165 F: Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7166 F: Documentation/devicetree/bindings/soc/fsl/
7167 F: drivers/soc/fsl/
7168 F: include/linux/fsl/
7169
7170 FREESCALE SOC FS_ENET DRIVER
7171 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
7172 L: linuxppc-dev@lists.ozlabs.org
7173 L: netdev@vger.kernel.org
7174 S: Maintained
7175 F: drivers/net/ethernet/freescale/fs_enet/
7176 F: include/linux/fs_enet_pd.h
7177
7178 FREESCALE SOC SOUND DRIVERS
7179 M: Timur Tabi <timur@kernel.org>
7180 M: Nicolin Chen <nicoleotsuka@gmail.com>
7181 M: Xiubo Li <Xiubo.Lee@gmail.com>
7182 R: Fabio Estevam <festevam@gmail.com>
7183 R: Shengjiu Wang <shengjiu.wang@gmail.com>
7184 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7185 L: linuxppc-dev@lists.ozlabs.org
7186 S: Maintained
7187 F: sound/soc/fsl/fsl*
7188 F: sound/soc/fsl/imx*
7189 F: sound/soc/fsl/mpc8610_hpcd.c
7190
7191 FREESCALE USB PERIPHERAL DRIVERS
7192 M: Li Yang <leoyang.li@nxp.com>
7193 L: linux-usb@vger.kernel.org
7194 L: linuxppc-dev@lists.ozlabs.org
7195 S: Maintained
7196 F: drivers/usb/gadget/udc/fsl*
7197
7198 FREESCALE USB PHY DRIVER
7199 M: Ran Wang <ran.wang_1@nxp.com>
7200 L: linux-usb@vger.kernel.org
7201 L: linuxppc-dev@lists.ozlabs.org
7202 S: Maintained
7203 F: drivers/usb/phy/phy-fsl-usb*
7204
7205 FREEVXFS FILESYSTEM
7206 M: Christoph Hellwig <hch@infradead.org>
7207 S: Maintained
7208 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
7209 F: fs/freevxfs/
7210
7211 FREEZER
7212 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
7213 M: Pavel Machek <pavel@ucw.cz>
7214 L: linux-pm@vger.kernel.org
7215 S: Supported
7216 F: Documentation/power/freezing-of-tasks.rst
7217 F: include/linux/freezer.h
7218 F: kernel/freezer.c
7219
7220 FRONTSWAP API
7221 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7222 L: linux-kernel@vger.kernel.org
7223 S: Maintained
7224 F: include/linux/frontswap.h
7225 F: mm/frontswap.c
7226
7227 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7228 M: David Howells <dhowells@redhat.com>
7229 L: linux-cachefs@redhat.com (moderated for non-subscribers)
7230 S: Supported
7231 F: Documentation/filesystems/caching/
7232 F: fs/fscache/
7233 F: include/linux/fscache*.h
7234
7235 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7236 M: Theodore Y. Ts'o <tytso@mit.edu>
7237 M: Jaegeuk Kim <jaegeuk@kernel.org>
7238 M: Eric Biggers <ebiggers@kernel.org>
7239 L: linux-fscrypt@vger.kernel.org
7240 S: Supported
7241 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7242 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7243 F: Documentation/filesystems/fscrypt.rst
7244 F: fs/crypto/
7245 F: include/linux/fscrypt*.h
7246 F: include/uapi/linux/fscrypt.h
7247
7248 FSI SUBSYSTEM
7249 M: Jeremy Kerr <jk@ozlabs.org>
7250 M: Joel Stanley <joel@jms.id.au>
7251 R: Alistar Popple <alistair@popple.id.au>
7252 R: Eddie James <eajames@linux.ibm.com>
7253 L: linux-fsi@lists.ozlabs.org
7254 S: Supported
7255 Q: http://patchwork.ozlabs.org/project/linux-fsi/list/
7256 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7257 F: drivers/fsi/
7258 F: include/linux/fsi*.h
7259 F: include/trace/events/fsi*.h
7260
7261 FSI-ATTACHED I2C DRIVER
7262 M: Eddie James <eajames@linux.ibm.com>
7263 L: linux-i2c@vger.kernel.org
7264 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
7265 S: Maintained
7266 F: Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7267 F: drivers/i2c/busses/i2c-fsi.c
7268
7269 FSI-ATTACHED SPI DRIVER
7270 M: Eddie James <eajames@linux.ibm.com>
7271 L: linux-spi@vger.kernel.org
7272 S: Maintained
7273 F: Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7274 F: drivers/spi/spi-fsi.c
7275
7276 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7277 M: Jan Kara <jack@suse.cz>
7278 R: Amir Goldstein <amir73il@gmail.com>
7279 L: linux-fsdevel@vger.kernel.org
7280 S: Maintained
7281 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7282 F: fs/notify/
7283 F: include/linux/fsnotify*.h
7284
7285 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7286 M: Eric Biggers <ebiggers@kernel.org>
7287 M: Theodore Y. Ts'o <tytso@mit.edu>
7288 L: linux-fscrypt@vger.kernel.org
7289 S: Supported
7290 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7291 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7292 F: Documentation/filesystems/fsverity.rst
7293 F: fs/verity/
7294 F: include/linux/fsverity.h
7295 F: include/uapi/linux/fsverity.h
7296
7297 FUJITSU LAPTOP EXTRAS
7298 M: Jonathan Woithe <jwoithe@just42.net>
7299 L: platform-driver-x86@vger.kernel.org
7300 S: Maintained
7301 F: drivers/platform/x86/fujitsu-laptop.c
7302
7303 FUJITSU M-5MO LS CAMERA ISP DRIVER
7304 M: Kyungmin Park <kyungmin.park@samsung.com>
7305 M: Heungjun Kim <riverful.kim@samsung.com>
7306 L: linux-media@vger.kernel.org
7307 S: Maintained
7308 F: drivers/media/i2c/m5mols/
7309 F: include/media/i2c/m5mols.h
7310
7311 FUJITSU TABLET EXTRAS
7312 M: Robert Gerlach <khnz@gmx.de>
7313 L: platform-driver-x86@vger.kernel.org
7314 S: Maintained
7315 F: drivers/platform/x86/fujitsu-tablet.c
7316
7317 FUSE: FILESYSTEM IN USERSPACE
7318 M: Miklos Szeredi <miklos@szeredi.hu>
7319 L: linux-fsdevel@vger.kernel.org
7320 S: Maintained
7321 W: https://github.com/libfuse/
7322 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7323 F: Documentation/filesystems/fuse.rst
7324 F: fs/fuse/
7325 F: include/uapi/linux/fuse.h
7326
7327 FUTEX SUBSYSTEM
7328 M: Thomas Gleixner <tglx@linutronix.de>
7329 M: Ingo Molnar <mingo@redhat.com>
7330 R: Peter Zijlstra <peterz@infradead.org>
7331 R: Darren Hart <dvhart@infradead.org>
7332 L: linux-kernel@vger.kernel.org
7333 S: Maintained
7334 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7335 F: Documentation/locking/*futex*
7336 F: include/asm-generic/futex.h
7337 F: include/linux/futex.h
7338 F: include/uapi/linux/futex.h
7339 F: kernel/futex.c
7340 F: tools/perf/bench/futex*
7341 F: tools/testing/selftests/futex/
7342
7343 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7344 M: Tim Harvey <tharvey@gateworks.com>
7345 M: Robert Jones <rjones@gateworks.com>
7346 S: Maintained
7347 F: Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7348 F: drivers/mfd/gateworks-gsc.c
7349 F: include/linux/mfd/gsc.h
7350 F: Documentation/hwmon/gsc-hwmon.rst
7351 F: drivers/hwmon/gsc-hwmon.c
7352 F: include/linux/platform_data/gsc_hwmon.h
7353
7354 GASKET DRIVER FRAMEWORK
7355 M: Rob Springer <rspringer@google.com>
7356 M: Todd Poynor <toddpoynor@google.com>
7357 M: Ben Chan <benchan@chromium.org>
7358 M: Richard Yeh <rcy@google.com>
7359 S: Maintained
7360 F: drivers/staging/gasket/
7361
7362 GCC PLUGINS
7363 M: Kees Cook <keescook@chromium.org>
7364 L: linux-hardening@vger.kernel.org
7365 S: Maintained
7366 F: Documentation/kbuild/gcc-plugins.rst
7367 F: scripts/Makefile.gcc-plugins
7368 F: scripts/gcc-plugin.sh
7369 F: scripts/gcc-plugins/
7370
7371 GCOV BASED KERNEL PROFILING
7372 M: Peter Oberparleiter <oberpar@linux.ibm.com>
7373 S: Maintained
7374 F: Documentation/dev-tools/gcov.rst
7375 F: kernel/gcov/
7376
7377 GDB KERNEL DEBUGGING HELPER SCRIPTS
7378 M: Jan Kiszka <jan.kiszka@siemens.com>
7379 M: Kieran Bingham <kbingham@kernel.org>
7380 S: Supported
7381 F: scripts/gdb/
7382
7383 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7384 M: Achim Leubner <achim_leubner@adaptec.com>
7385 L: linux-scsi@vger.kernel.org
7386 S: Supported
7387 W: http://www.icp-vortex.com/
7388 F: drivers/scsi/gdt*
7389
7390 GEMTEK FM RADIO RECEIVER DRIVER
7391 M: Hans Verkuil <hverkuil@xs4all.nl>
7392 L: linux-media@vger.kernel.org
7393 S: Maintained
7394 W: https://linuxtv.org
7395 T: git git://linuxtv.org/media_tree.git
7396 F: drivers/media/radio/radio-gemtek*
7397
7398 GENERIC ARCHITECTURE TOPOLOGY
7399 M: Sudeep Holla <sudeep.holla@arm.com>
7400 L: linux-kernel@vger.kernel.org
7401 S: Maintained
7402 F: drivers/base/arch_topology.c
7403 F: include/linux/arch_topology.h
7404
7405 GENERIC ENTRY CODE
7406 M: Thomas Gleixner <tglx@linutronix.de>
7407 M: Peter Zijlstra <peterz@infradead.org>
7408 M: Andy Lutomirski <luto@kernel.org>
7409 L: linux-kernel@vger.kernel.org
7410 S: Maintained
7411 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7412 F: include/linux/entry-common.h
7413 F: include/linux/entry-kvm.h
7414 F: kernel/entry/
7415
7416 GENERIC GPIO I2C DRIVER
7417 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7418 S: Supported
7419 F: drivers/i2c/busses/i2c-gpio.c
7420 F: include/linux/platform_data/i2c-gpio.h
7421
7422 GENERIC GPIO I2C MULTIPLEXER DRIVER
7423 M: Peter Korsgaard <peter.korsgaard@barco.com>
7424 L: linux-i2c@vger.kernel.org
7425 S: Supported
7426 F: Documentation/i2c/muxes/i2c-mux-gpio.rst
7427 F: drivers/i2c/muxes/i2c-mux-gpio.c
7428 F: include/linux/platform_data/i2c-mux-gpio.h
7429
7430 GENERIC HDLC (WAN) DRIVERS
7431 M: Krzysztof Halasa <khc@pm.waw.pl>
7432 S: Maintained
7433 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
7434 F: drivers/net/wan/c101.c
7435 F: drivers/net/wan/hd6457*
7436 F: drivers/net/wan/hdlc*
7437 F: drivers/net/wan/n2.c
7438 F: drivers/net/wan/pc300too.c
7439 F: drivers/net/wan/pci200syn.c
7440 F: drivers/net/wan/wanxl*
7441
7442 GENERIC INCLUDE/ASM HEADER FILES
7443 M: Arnd Bergmann <arnd@arndb.de>
7444 L: linux-arch@vger.kernel.org
7445 S: Maintained
7446 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7447 F: include/asm-generic/
7448 F: include/uapi/asm-generic/
7449
7450 GENERIC PHY FRAMEWORK
7451 M: Kishon Vijay Abraham I <kishon@ti.com>
7452 M: Vinod Koul <vkoul@kernel.org>
7453 L: linux-kernel@vger.kernel.org
7454 S: Supported
7455 T: git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7456 F: Documentation/devicetree/bindings/phy/
7457 F: drivers/phy/
7458 F: include/linux/phy/
7459
7460 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7461 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7462 S: Supported
7463 F: drivers/i2c/muxes/i2c-demux-pinctrl.c
7464
7465 GENERIC PM DOMAINS
7466 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
7467 M: Kevin Hilman <khilman@kernel.org>
7468 M: Ulf Hansson <ulf.hansson@linaro.org>
7469 L: linux-pm@vger.kernel.org
7470 S: Supported
7471 F: Documentation/devicetree/bindings/power/power?domain*
7472 F: drivers/base/power/domain*.c
7473 F: include/linux/pm_domain.h
7474
7475 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7476 M: Eugen Hristev <eugen.hristev@microchip.com>
7477 L: linux-input@vger.kernel.org
7478 S: Maintained
7479 F: drivers/input/touchscreen/resistive-adc-touch.c
7480
7481 GENERIC UIO DRIVER FOR PCI DEVICES
7482 M: "Michael S. Tsirkin" <mst@redhat.com>
7483 L: kvm@vger.kernel.org
7484 S: Supported
7485 F: drivers/uio/uio_pci_generic.c
7486
7487 GENERIC VDSO LIBRARY
7488 M: Andy Lutomirski <luto@kernel.org>
7489 M: Thomas Gleixner <tglx@linutronix.de>
7490 M: Vincenzo Frascino <vincenzo.frascino@arm.com>
7491 L: linux-kernel@vger.kernel.org
7492 S: Maintained
7493 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7494 F: include/asm-generic/vdso/vsyscall.h
7495 F: include/vdso/
7496 F: kernel/time/vsyscall.c
7497 F: lib/vdso/
7498
7499 GENWQE (IBM Generic Workqueue Card)
7500 M: Frank Haverkamp <haver@linux.ibm.com>
7501 S: Supported
7502 F: drivers/misc/genwqe/
7503
7504 GET_MAINTAINER SCRIPT
7505 M: Joe Perches <joe@perches.com>
7506 S: Maintained
7507 F: scripts/get_maintainer.pl
7508
7509 GFS2 FILE SYSTEM
7510 M: Bob Peterson <rpeterso@redhat.com>
7511 M: Andreas Gruenbacher <agruenba@redhat.com>
7512 L: cluster-devel@redhat.com
7513 S: Supported
7514 B: https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7515 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7516 F: Documentation/filesystems/gfs2*
7517 F: fs/gfs2/
7518 F: include/uapi/linux/gfs2_ondisk.h
7519
7520 GNSS SUBSYSTEM
7521 M: Johan Hovold <johan@kernel.org>
7522 S: Maintained
7523 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7524 F: Documentation/ABI/testing/sysfs-class-gnss
7525 F: Documentation/devicetree/bindings/gnss/
7526 F: drivers/gnss/
7527 F: include/linux/gnss.h
7528
7529 GO7007 MPEG CODEC
7530 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
7531 L: linux-media@vger.kernel.org
7532 S: Maintained
7533 F: drivers/media/usb/go7007/
7534
7535 GOODIX TOUCHSCREEN
7536 M: Bastien Nocera <hadess@hadess.net>
7537 L: linux-input@vger.kernel.org
7538 S: Maintained
7539 F: drivers/input/touchscreen/goodix.c
7540
7541 GOOGLE ETHERNET DRIVERS
7542 M: Catherine Sullivan <csully@google.com>
7543 R: Sagi Shahar <sagis@google.com>
7544 R: Jon Olson <jonolson@google.com>
7545 L: netdev@vger.kernel.org
7546 S: Supported
7547 F: Documentation/networking/device_drivers/ethernet/google/gve.rst
7548 F: drivers/net/ethernet/google
7549
7550 GPD POCKET FAN DRIVER
7551 M: Hans de Goede <hdegoede@redhat.com>
7552 L: platform-driver-x86@vger.kernel.org
7553 S: Maintained
7554 F: drivers/platform/x86/gpd-pocket-fan.c
7555
7556 GPIO ACPI SUPPORT
7557 M: Mika Westerberg <mika.westerberg@linux.intel.com>
7558 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7559 L: linux-gpio@vger.kernel.org
7560 L: linux-acpi@vger.kernel.org
7561 S: Maintained
7562 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7563 F: Documentation/firmware-guide/acpi/gpio-properties.rst
7564 F: drivers/gpio/gpiolib-acpi.c
7565 F: drivers/gpio/gpiolib-acpi.h
7566
7567 GPIO AGGREGATOR
7568 M: Geert Uytterhoeven <geert+renesas@glider.be>
7569 L: linux-gpio@vger.kernel.org
7570 S: Supported
7571 F: Documentation/admin-guide/gpio/gpio-aggregator.rst
7572 F: drivers/gpio/gpio-aggregator.c
7573
7574 GPIO IR Transmitter
7575 M: Sean Young <sean@mess.org>
7576 L: linux-media@vger.kernel.org
7577 S: Maintained
7578 F: drivers/media/rc/gpio-ir-tx.c
7579
7580 GPIO MOCKUP DRIVER
7581 M: Bamvor Jian Zhang <bamv2005@gmail.com>
7582 L: linux-gpio@vger.kernel.org
7583 S: Maintained
7584 F: drivers/gpio/gpio-mockup.c
7585 F: tools/testing/selftests/gpio/
7586
7587 GPIO REGMAP
7588 R: Michael Walle <michael@walle.cc>
7589 S: Maintained
7590 F: drivers/gpio/gpio-regmap.c
7591 F: include/linux/gpio/regmap.h
7592
7593 GPIO SUBSYSTEM
7594 M: Linus Walleij <linus.walleij@linaro.org>
7595 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
7596 L: linux-gpio@vger.kernel.org
7597 S: Maintained
7598 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7599 F: Documentation/ABI/obsolete/sysfs-gpio
7600 F: Documentation/ABI/testing/gpio-cdev
7601 F: Documentation/admin-guide/gpio/
7602 F: Documentation/devicetree/bindings/gpio/
7603 F: Documentation/driver-api/gpio/
7604 F: drivers/gpio/
7605 F: include/asm-generic/gpio.h
7606 F: include/linux/gpio.h
7607 F: include/linux/gpio/
7608 F: include/linux/of_gpio.h
7609 F: include/uapi/linux/gpio.h
7610 F: tools/gpio/
7611
7612 GRE DEMULTIPLEXER DRIVER
7613 M: Dmitry Kozlov <xeb@mail.ru>
7614 L: netdev@vger.kernel.org
7615 S: Maintained
7616 F: include/net/gre.h
7617 F: net/ipv4/gre_demux.c
7618 F: net/ipv4/gre_offload.c
7619
7620 GRETH 10/100/1G Ethernet MAC device driver
7621 M: Andreas Larsson <andreas@gaisler.com>
7622 L: netdev@vger.kernel.org
7623 S: Maintained
7624 F: drivers/net/ethernet/aeroflex/
7625
7626 GREYBUS AUDIO PROTOCOLS DRIVERS
7627 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
7628 M: Mark Greer <mgreer@animalcreek.com>
7629 S: Maintained
7630 F: drivers/staging/greybus/audio_apbridgea.c
7631 F: drivers/staging/greybus/audio_apbridgea.h
7632 F: drivers/staging/greybus/audio_codec.c
7633 F: drivers/staging/greybus/audio_codec.h
7634 F: drivers/staging/greybus/audio_gb.c
7635 F: drivers/staging/greybus/audio_manager.c
7636 F: drivers/staging/greybus/audio_manager.h
7637 F: drivers/staging/greybus/audio_manager_module.c
7638 F: drivers/staging/greybus/audio_manager_private.h
7639 F: drivers/staging/greybus/audio_manager_sysfs.c
7640 F: drivers/staging/greybus/audio_module.c
7641 F: drivers/staging/greybus/audio_topology.c
7642
7643 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7644 M: Viresh Kumar <vireshk@kernel.org>
7645 S: Maintained
7646 F: drivers/staging/greybus/authentication.c
7647 F: drivers/staging/greybus/bootrom.c
7648 F: drivers/staging/greybus/firmware.h
7649 F: drivers/staging/greybus/fw-core.c
7650 F: drivers/staging/greybus/fw-download.c
7651 F: drivers/staging/greybus/fw-management.c
7652 F: drivers/staging/greybus/greybus_authentication.h
7653 F: drivers/staging/greybus/greybus_firmware.h
7654 F: drivers/staging/greybus/hid.c
7655 F: drivers/staging/greybus/i2c.c
7656 F: drivers/staging/greybus/spi.c
7657 F: drivers/staging/greybus/spilib.c
7658 F: drivers/staging/greybus/spilib.h
7659
7660 GREYBUS LOOPBACK DRIVER
7661 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
7662 S: Maintained
7663 F: drivers/staging/greybus/loopback.c
7664
7665 GREYBUS PLATFORM DRIVERS
7666 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7667 S: Maintained
7668 F: drivers/staging/greybus/arche-apb-ctrl.c
7669 F: drivers/staging/greybus/arche-platform.c
7670 F: drivers/staging/greybus/arche_platform.h
7671
7672 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7673 M: Rui Miguel Silva <rmfrfs@gmail.com>
7674 S: Maintained
7675 F: drivers/staging/greybus/gpio.c
7676 F: drivers/staging/greybus/light.c
7677 F: drivers/staging/greybus/power_supply.c
7678 F: drivers/staging/greybus/sdio.c
7679 F: drivers/staging/greybus/spi.c
7680 F: drivers/staging/greybus/spilib.c
7681
7682 GREYBUS SUBSYSTEM
7683 M: Johan Hovold <johan@kernel.org>
7684 M: Alex Elder <elder@kernel.org>
7685 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7686 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
7687 S: Maintained
7688 F: drivers/greybus/
7689 F: drivers/staging/greybus/
7690 F: include/linux/greybus.h
7691 F: include/linux/greybus/
7692
7693 GREYBUS UART PROTOCOLS DRIVERS
7694 M: David Lin <dtwlin@gmail.com>
7695 S: Maintained
7696 F: drivers/staging/greybus/log.c
7697 F: drivers/staging/greybus/uart.c
7698
7699 GS1662 VIDEO SERIALIZER
7700 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7701 L: linux-media@vger.kernel.org
7702 S: Maintained
7703 T: git git://linuxtv.org/media_tree.git
7704 F: drivers/media/spi/gs1662.c
7705
7706 GSPCA FINEPIX SUBDRIVER
7707 M: Frank Zago <frank@zago.net>
7708 L: linux-media@vger.kernel.org
7709 S: Maintained
7710 T: git git://linuxtv.org/media_tree.git
7711 F: drivers/media/usb/gspca/finepix.c
7712
7713 GSPCA GL860 SUBDRIVER
7714 M: Olivier Lorin <o.lorin@laposte.net>
7715 L: linux-media@vger.kernel.org
7716 S: Maintained
7717 T: git git://linuxtv.org/media_tree.git
7718 F: drivers/media/usb/gspca/gl860/
7719
7720 GSPCA M5602 SUBDRIVER
7721 M: Erik Andren <erik.andren@gmail.com>
7722 L: linux-media@vger.kernel.org
7723 S: Maintained
7724 T: git git://linuxtv.org/media_tree.git
7725 F: drivers/media/usb/gspca/m5602/
7726
7727 GSPCA PAC207 SONIXB SUBDRIVER
7728 M: Hans Verkuil <hverkuil@xs4all.nl>
7729 L: linux-media@vger.kernel.org
7730 S: Odd Fixes
7731 T: git git://linuxtv.org/media_tree.git
7732 F: drivers/media/usb/gspca/pac207.c
7733
7734 GSPCA SN9C20X SUBDRIVER
7735 M: Brian Johnson <brijohn@gmail.com>
7736 L: linux-media@vger.kernel.org
7737 S: Maintained
7738 T: git git://linuxtv.org/media_tree.git
7739 F: drivers/media/usb/gspca/sn9c20x.c
7740
7741 GSPCA T613 SUBDRIVER
7742 M: Leandro Costantino <lcostantino@gmail.com>
7743 L: linux-media@vger.kernel.org
7744 S: Maintained
7745 T: git git://linuxtv.org/media_tree.git
7746 F: drivers/media/usb/gspca/t613.c
7747
7748 GSPCA USB WEBCAM DRIVER
7749 M: Hans Verkuil <hverkuil@xs4all.nl>
7750 L: linux-media@vger.kernel.org
7751 S: Odd Fixes
7752 T: git git://linuxtv.org/media_tree.git
7753 F: drivers/media/usb/gspca/
7754
7755 GTP (GPRS Tunneling Protocol)
7756 M: Pablo Neira Ayuso <pablo@netfilter.org>
7757 M: Harald Welte <laforge@gnumonks.org>
7758 L: osmocom-net-gprs@lists.osmocom.org
7759 S: Maintained
7760 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7761 F: drivers/net/gtp.c
7762
7763 GUID PARTITION TABLE (GPT)
7764 M: Davidlohr Bueso <dave@stgolabs.net>
7765 L: linux-efi@vger.kernel.org
7766 S: Maintained
7767 F: block/partitions/efi.*
7768
7769 H8/300 ARCHITECTURE
7770 M: Yoshinori Sato <ysato@users.sourceforge.jp>
7771 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7772 S: Maintained
7773 W: http://uclinux-h8.sourceforge.jp
7774 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7775 F: arch/h8300/
7776 F: drivers/clk/h8300/
7777 F: drivers/clocksource/h8300_*.c
7778 F: drivers/irqchip/irq-renesas-h8*.c
7779
7780 HABANALABS PCI DRIVER
7781 M: Oded Gabbay <ogabbay@kernel.org>
7782 S: Supported
7783 T: git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7784 F: Documentation/ABI/testing/debugfs-driver-habanalabs
7785 F: Documentation/ABI/testing/sysfs-driver-habanalabs
7786 F: drivers/misc/habanalabs/
7787 F: include/uapi/misc/habanalabs.h
7788
7789 HACKRF MEDIA DRIVER
7790 M: Antti Palosaari <crope@iki.fi>
7791 L: linux-media@vger.kernel.org
7792 S: Maintained
7793 W: https://linuxtv.org
7794 W: http://palosaari.fi/linux/
7795 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7796 T: git git://linuxtv.org/anttip/media_tree.git
7797 F: drivers/media/usb/hackrf/
7798
7799 HANTRO VPU CODEC DRIVER
7800 M: Ezequiel Garcia <ezequiel@collabora.com>
7801 M: Philipp Zabel <p.zabel@pengutronix.de>
7802 L: linux-media@vger.kernel.org
7803 L: linux-rockchip@lists.infradead.org
7804 S: Maintained
7805 F: Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7806 F: Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7807 F: drivers/staging/media/hantro/
7808
7809 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7810 M: Frank Seidel <frank@f-seidel.de>
7811 L: platform-driver-x86@vger.kernel.org
7812 S: Maintained
7813 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7814 F: drivers/platform/x86/hdaps.c
7815
7816 HARDWARE MONITORING
7817 M: Jean Delvare <jdelvare@suse.com>
7818 M: Guenter Roeck <linux@roeck-us.net>
7819 L: linux-hwmon@vger.kernel.org
7820 S: Maintained
7821 W: http://hwmon.wiki.kernel.org/
7822 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7823 F: Documentation/devicetree/bindings/hwmon/
7824 F: Documentation/hwmon/
7825 F: drivers/hwmon/
7826 F: include/linux/hwmon*.h
7827 F: include/trace/events/hwmon*.h
7828
7829 HARDWARE RANDOM NUMBER GENERATOR CORE
7830 M: Matt Mackall <mpm@selenic.com>
7831 M: Herbert Xu <herbert@gondor.apana.org.au>
7832 L: linux-crypto@vger.kernel.org
7833 S: Odd fixes
7834 F: Documentation/admin-guide/hw_random.rst
7835 F: Documentation/devicetree/bindings/rng/
7836 F: drivers/char/hw_random/
7837 F: include/linux/hw_random.h
7838
7839 HARDWARE SPINLOCK CORE
7840 M: Ohad Ben-Cohen <ohad@wizery.com>
7841 M: Bjorn Andersson <bjorn.andersson@linaro.org>
7842 R: Baolin Wang <baolin.wang7@gmail.com>
7843 L: linux-remoteproc@vger.kernel.org
7844 S: Maintained
7845 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7846 F: Documentation/devicetree/bindings/hwlock/
7847 F: Documentation/locking/hwspinlock.rst
7848 F: drivers/hwspinlock/
7849 F: include/linux/hwspinlock.h
7850
7851 HARDWARE TRACING FACILITIES
7852 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
7853 S: Maintained
7854 F: drivers/hwtracing/
7855
7856 HARMONY SOUND DRIVER
7857 L: linux-parisc@vger.kernel.org
7858 S: Maintained
7859 F: sound/parisc/harmony.*
7860
7861 HDPVR USB VIDEO ENCODER DRIVER
7862 M: Hans Verkuil <hverkuil@xs4all.nl>
7863 L: linux-media@vger.kernel.org
7864 S: Odd Fixes
7865 W: https://linuxtv.org
7866 T: git git://linuxtv.org/media_tree.git
7867 F: drivers/media/usb/hdpvr/
7868
7869 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7870 M: Jerry Hoemann <jerry.hoemann@hpe.com>
7871 S: Supported
7872 F: Documentation/watchdog/hpwdt.rst
7873 F: drivers/watchdog/hpwdt.c
7874
7875 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7876 M: Don Brace <don.brace@microchip.com>
7877 L: storagedev@microchip.com
7878 L: linux-scsi@vger.kernel.org
7879 S: Supported
7880 F: Documentation/scsi/hpsa.rst
7881 F: drivers/scsi/hpsa*.[ch]
7882 F: include/linux/cciss*.h
7883 F: include/uapi/linux/cciss*.h
7884
7885 HFI1 DRIVER
7886 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7887 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7888 L: linux-rdma@vger.kernel.org
7889 S: Supported
7890 F: drivers/infiniband/hw/hfi1
7891
7892 HFS FILESYSTEM
7893 L: linux-fsdevel@vger.kernel.org
7894 S: Orphan
7895 F: Documentation/filesystems/hfs.rst
7896 F: fs/hfs/
7897
7898 HFSPLUS FILESYSTEM
7899 L: linux-fsdevel@vger.kernel.org
7900 S: Orphan
7901 F: Documentation/filesystems/hfsplus.rst
7902 F: fs/hfsplus/
7903
7904 HGA FRAMEBUFFER DRIVER
7905 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7906 L: linux-nvidia@lists.surfsouth.com
7907 S: Maintained
7908 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7909 F: drivers/video/fbdev/hgafb.c
7910
7911 HIBERNATION (aka Software Suspend, aka swsusp)
7912 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
7913 M: Pavel Machek <pavel@ucw.cz>
7914 L: linux-pm@vger.kernel.org
7915 S: Supported
7916 B: https://bugzilla.kernel.org
7917 F: arch/*/include/asm/suspend*.h
7918 F: arch/x86/power/
7919 F: drivers/base/power/
7920 F: include/linux/freezer.h
7921 F: include/linux/pm.h
7922 F: include/linux/suspend.h
7923 F: kernel/power/
7924
7925 HID CORE LAYER
7926 M: Jiri Kosina <jikos@kernel.org>
7927 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
7928 L: linux-input@vger.kernel.org
7929 S: Maintained
7930 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7931 F: drivers/hid/
7932 F: include/linux/hid*
7933 F: include/uapi/linux/hid*
7934
7935 HID SENSOR HUB DRIVERS
7936 M: Jiri Kosina <jikos@kernel.org>
7937 M: Jonathan Cameron <jic23@kernel.org>
7938 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7939 L: linux-input@vger.kernel.org
7940 L: linux-iio@vger.kernel.org
7941 S: Maintained
7942 F: Documentation/hid/hid-sensor*
7943 F: drivers/hid/hid-sensor-*
7944 F: drivers/iio/*/hid-*
7945 F: include/linux/hid-sensor-*
7946
7947 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7948 M: Thomas Gleixner <tglx@linutronix.de>
7949 L: linux-kernel@vger.kernel.org
7950 S: Maintained
7951 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7952 F: Documentation/timers/
7953 F: include/linux/clockchips.h
7954 F: include/linux/hrtimer.h
7955 F: kernel/time/clockevents.c
7956 F: kernel/time/hrtimer.c
7957 F: kernel/time/timer_*.c
7958
7959 HIGH-SPEED SCC DRIVER FOR AX.25
7960 L: linux-hams@vger.kernel.org
7961 S: Orphan
7962 F: drivers/net/hamradio/dmascc.c
7963 F: drivers/net/hamradio/scc.c
7964
7965 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7966 M: HighPoint Linux Team <linux@highpoint-tech.com>
7967 S: Supported
7968 W: http://www.highpoint-tech.com
7969 F: Documentation/scsi/hptiop.rst
7970 F: drivers/scsi/hptiop.c
7971
7972 HIPPI
7973 M: Jes Sorensen <jes@trained-monkey.org>
7974 L: linux-hippi@sunsite.dk
7975 S: Maintained
7976 F: drivers/net/hippi/
7977 F: include/linux/hippidevice.h
7978 F: include/uapi/linux/if_hippi.h
7979 F: net/802/hippi.c
7980
7981 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
7982 M: Kurt Kanzenbach <kurt@linutronix.de>
7983 L: netdev@vger.kernel.org
7984 S: Maintained
7985 F: Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
7986 F: drivers/net/dsa/hirschmann/*
7987 F: include/linux/platform_data/hirschmann-hellcreek.h
7988 F: net/dsa/tag_hellcreek.c
7989
7990 HISILICON DMA DRIVER
7991 M: Zhou Wang <wangzhou1@hisilicon.com>
7992 L: dmaengine@vger.kernel.org
7993 S: Maintained
7994 F: drivers/dma/hisi_dma.c
7995
7996 HISILICON GPIO DRIVER
7997 M: Luo Jiaxing <luojiaxing@huawei.com>
7998 L: linux-gpio@vger.kernel.org
7999 S: Maintained
8000 F: drivers/gpio/gpio-hisi.c
8001
8002 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8003 M: Zaibo Xu <xuzaibo@huawei.com>
8004 L: linux-crypto@vger.kernel.org
8005 S: Maintained
8006 F: Documentation/ABI/testing/debugfs-hisi-hpre
8007 F: drivers/crypto/hisilicon/hpre/hpre.h
8008 F: drivers/crypto/hisilicon/hpre/hpre_crypto.c
8009 F: drivers/crypto/hisilicon/hpre/hpre_main.c
8010
8011 HISILICON LPC BUS DRIVER
8012 M: john.garry@huawei.com
8013 S: Maintained
8014 W: http://www.hisilicon.com
8015 F: Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8016 F: drivers/bus/hisi_lpc.c
8017
8018 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8019 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8020 M: Salil Mehta <salil.mehta@huawei.com>
8021 L: netdev@vger.kernel.org
8022 S: Maintained
8023 W: http://www.hisilicon.com
8024 F: drivers/net/ethernet/hisilicon/hns3/
8025
8026 HISILICON NETWORK SUBSYSTEM DRIVER
8027 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8028 M: Salil Mehta <salil.mehta@huawei.com>
8029 L: netdev@vger.kernel.org
8030 S: Maintained
8031 W: http://www.hisilicon.com
8032 F: Documentation/devicetree/bindings/net/hisilicon*.txt
8033 F: drivers/net/ethernet/hisilicon/
8034
8035 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8036 M: John Stultz <john.stultz@linaro.org>
8037 L: linux-kernel@vger.kernel.org
8038 S: Maintained
8039 F: drivers/misc/hisi_hikey_usb.c
8040 F: Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8041
8042 HISILICON PMU DRIVER
8043 M: Shaokun Zhang <zhangshaokun@hisilicon.com>
8044 S: Supported
8045 W: http://www.hisilicon.com
8046 F: Documentation/admin-guide/perf/hisi-pmu.rst
8047 F: drivers/perf/hisilicon
8048
8049 HISILICON QM AND ZIP Controller DRIVER
8050 M: Zhou Wang <wangzhou1@hisilicon.com>
8051 L: linux-crypto@vger.kernel.org
8052 S: Maintained
8053 F: Documentation/ABI/testing/debugfs-hisi-zip
8054 F: drivers/crypto/hisilicon/qm.c
8055 F: drivers/crypto/hisilicon/qm.h
8056 F: drivers/crypto/hisilicon/sgl.c
8057 F: drivers/crypto/hisilicon/zip/
8058
8059 HISILICON ROCE DRIVER
8060 M: Lijun Ou <oulijun@huawei.com>
8061 M: Wei Hu(Xavier) <huwei87@hisilicon.com>
8062 M: Weihang Li <liweihang@huawei.com>
8063 L: linux-rdma@vger.kernel.org
8064 S: Maintained
8065 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8066 F: drivers/infiniband/hw/hns/
8067
8068 HISILICON SAS Controller
8069 M: John Garry <john.garry@huawei.com>
8070 S: Supported
8071 W: http://www.hisilicon.com
8072 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8073 F: drivers/scsi/hisi_sas/
8074
8075 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8076 M: Zaibo Xu <xuzaibo@huawei.com>
8077 L: linux-crypto@vger.kernel.org
8078 S: Maintained
8079 F: Documentation/ABI/testing/debugfs-hisi-sec
8080 F: drivers/crypto/hisilicon/sec2/sec.h
8081 F: drivers/crypto/hisilicon/sec2/sec_crypto.c
8082 F: drivers/crypto/hisilicon/sec2/sec_crypto.h
8083 F: drivers/crypto/hisilicon/sec2/sec_main.c
8084
8085 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8086 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8087 L: devel@driverdev.osuosl.org
8088 S: Maintained
8089 F: drivers/staging/hikey9xx/
8090
8091 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8092 M: Zaibo Xu <xuzaibo@huawei.com>
8093 S: Maintained
8094 F: drivers/crypto/hisilicon/trng/trng.c
8095
8096 HISILICON V3XX SPI NOR FLASH Controller Driver
8097 M: John Garry <john.garry@huawei.com>
8098 S: Maintained
8099 W: http://www.hisilicon.com
8100 F: drivers/spi/spi-hisi-sfc-v3xx.c
8101
8102 HMM - Heterogeneous Memory Management
8103 M: Jérôme Glisse <jglisse@redhat.com>
8104 L: linux-mm@kvack.org
8105 S: Maintained
8106 F: Documentation/vm/hmm.rst
8107 F: include/linux/hmm*
8108 F: lib/test_hmm*
8109 F: mm/hmm*
8110 F: tools/testing/selftests/vm/*hmm*
8111
8112 HOST AP DRIVER
8113 M: Jouni Malinen <j@w1.fi>
8114 L: linux-wireless@vger.kernel.org
8115 S: Obsolete
8116 W: http://w1.fi/hostap-driver.html
8117 F: drivers/net/wireless/intersil/hostap/
8118
8119 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8120 L: platform-driver-x86@vger.kernel.org
8121 S: Orphan
8122 F: drivers/platform/x86/tc1100-wmi.c
8123
8124 HPET: High Precision Event Timers driver
8125 M: Clemens Ladisch <clemens@ladisch.de>
8126 S: Maintained
8127 F: Documentation/timers/hpet.rst
8128 F: drivers/char/hpet.c
8129 F: include/linux/hpet.h
8130 F: include/uapi/linux/hpet.h
8131
8132 HPET: x86
8133 S: Orphan
8134 F: arch/x86/include/asm/hpet.h
8135 F: arch/x86/kernel/hpet.c
8136
8137 HPFS FILESYSTEM
8138 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8139 S: Maintained
8140 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8141 F: fs/hpfs/
8142
8143 HSI SUBSYSTEM
8144 M: Sebastian Reichel <sre@kernel.org>
8145 S: Maintained
8146 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8147 F: Documentation/ABI/testing/sysfs-bus-hsi
8148 F: Documentation/driver-api/hsi.rst
8149 F: drivers/hsi/
8150 F: include/linux/hsi/
8151 F: include/uapi/linux/hsi/
8152
8153 HSO 3G MODEM DRIVER
8154 L: linux-usb@vger.kernel.org
8155 S: Orphan
8156 F: drivers/net/usb/hso.c
8157
8158 HSR NETWORK PROTOCOL
8159 L: netdev@vger.kernel.org
8160 S: Orphan
8161 F: net/hsr/
8162
8163 HT16K33 LED CONTROLLER DRIVER
8164 M: Robin van der Gracht <robin@protonic.nl>
8165 S: Maintained
8166 F: Documentation/devicetree/bindings/display/ht16k33.txt
8167 F: drivers/auxdisplay/ht16k33.c
8168
8169 HTCPEN TOUCHSCREEN DRIVER
8170 M: Pau Oliva Fora <pof@eslack.org>
8171 L: linux-input@vger.kernel.org
8172 S: Maintained
8173 F: drivers/input/touchscreen/htcpen.c
8174
8175 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8176 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8177 L: linux-iio@vger.kernel.org
8178 S: Maintained
8179 W: http://www.st.com/
8180 F: Documentation/devicetree/bindings/iio/humidity/hts221.txt
8181 F: drivers/iio/humidity/hts221*
8182
8183 HUAWEI ETHERNET DRIVER
8184 M: Bin Luo <luobin9@huawei.com>
8185 L: netdev@vger.kernel.org
8186 S: Supported
8187 F: Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8188 F: drivers/net/ethernet/huawei/hinic/
8189
8190 HUGETLB FILESYSTEM
8191 M: Mike Kravetz <mike.kravetz@oracle.com>
8192 L: linux-mm@kvack.org
8193 S: Maintained
8194 F: Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8195 F: Documentation/admin-guide/mm/hugetlbpage.rst
8196 F: Documentation/vm/hugetlbfs_reserv.rst
8197 F: fs/hugetlbfs/
8198 F: include/linux/hugetlb.h
8199 F: mm/hugetlb.c
8200
8201 HVA ST MEDIA DRIVER
8202 M: Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8203 L: linux-media@vger.kernel.org
8204 S: Supported
8205 W: https://linuxtv.org
8206 T: git git://linuxtv.org/media_tree.git
8207 F: drivers/media/platform/sti/hva
8208
8209 HWPOISON MEMORY FAILURE HANDLING
8210 M: Naoya Horiguchi <naoya.horiguchi@nec.com>
8211 L: linux-mm@kvack.org
8212 S: Maintained
8213 F: mm/hwpoison-inject.c
8214 F: mm/memory-failure.c
8215
8216 HYGON PROCESSOR SUPPORT
8217 M: Pu Wen <puwen@hygon.cn>
8218 L: linux-kernel@vger.kernel.org
8219 S: Maintained
8220 F: arch/x86/kernel/cpu/hygon.c
8221
8222 HYNIX HI556 SENSOR DRIVER
8223 M: Shawn Tu <shawnx.tu@intel.com>
8224 L: linux-media@vger.kernel.org
8225 S: Maintained
8226 T: git git://linuxtv.org/media_tree.git
8227 F: drivers/media/i2c/hi556.c
8228
8229 Hyper-V CORE AND DRIVERS
8230 M: "K. Y. Srinivasan" <kys@microsoft.com>
8231 M: Haiyang Zhang <haiyangz@microsoft.com>
8232 M: Stephen Hemminger <sthemmin@microsoft.com>
8233 M: Wei Liu <wei.liu@kernel.org>
8234 L: linux-hyperv@vger.kernel.org
8235 S: Supported
8236 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8237 F: Documentation/ABI/stable/sysfs-bus-vmbus
8238 F: Documentation/ABI/testing/debugfs-hyperv
8239 F: Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8240 F: arch/x86/hyperv
8241 F: arch/x86/include/asm/hyperv-tlfs.h
8242 F: arch/x86/include/asm/mshyperv.h
8243 F: arch/x86/include/asm/trace/hyperv.h
8244 F: arch/x86/kernel/cpu/mshyperv.c
8245 F: drivers/clocksource/hyperv_timer.c
8246 F: drivers/hid/hid-hyperv.c
8247 F: drivers/hv/
8248 F: drivers/input/serio/hyperv-keyboard.c
8249 F: drivers/iommu/hyperv-iommu.c
8250 F: drivers/net/hyperv/
8251 F: drivers/pci/controller/pci-hyperv-intf.c
8252 F: drivers/pci/controller/pci-hyperv.c
8253 F: drivers/scsi/storvsc_drv.c
8254 F: drivers/uio/uio_hv_generic.c
8255 F: drivers/video/fbdev/hyperv_fb.c
8256 F: include/asm-generic/hyperv-tlfs.h
8257 F: include/asm-generic/mshyperv.h
8258 F: include/clocksource/hyperv_timer.h
8259 F: include/linux/hyperv.h
8260 F: include/uapi/linux/hyperv.h
8261 F: net/vmw_vsock/hyperv_transport.c
8262 F: tools/hv/
8263
8264 HYPERBUS SUPPORT
8265 M: Vignesh Raghavendra <vigneshr@ti.com>
8266 L: linux-mtd@lists.infradead.org
8267 S: Supported
8268 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8269 C: irc://irc.oftc.net/mtd
8270 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8271 F: Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8272 F: Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8273 F: drivers/mtd/hyperbus/
8274 F: include/linux/mtd/hyperbus.h
8275
8276 HYPERVISOR VIRTUAL CONSOLE DRIVER
8277 L: linuxppc-dev@lists.ozlabs.org
8278 S: Odd Fixes
8279 F: drivers/tty/hvc/
8280
8281 I2C ACPI SUPPORT
8282 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8283 L: linux-i2c@vger.kernel.org
8284 L: linux-acpi@vger.kernel.org
8285 S: Maintained
8286 F: drivers/i2c/i2c-core-acpi.c
8287
8288 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8289 M: Ajay Gupta <ajayg@nvidia.com>
8290 L: linux-i2c@vger.kernel.org
8291 S: Maintained
8292 F: Documentation/i2c/busses/i2c-nvidia-gpu.rst
8293 F: drivers/i2c/busses/i2c-nvidia-gpu.c
8294
8295 I2C MUXES
8296 M: Peter Rosin <peda@axentia.se>
8297 L: linux-i2c@vger.kernel.org
8298 S: Maintained
8299 F: Documentation/devicetree/bindings/i2c/i2c-arb*
8300 F: Documentation/devicetree/bindings/i2c/i2c-gate*
8301 F: Documentation/devicetree/bindings/i2c/i2c-mux*
8302 F: Documentation/i2c/i2c-topology.rst
8303 F: Documentation/i2c/muxes/
8304 F: drivers/i2c/i2c-mux.c
8305 F: drivers/i2c/muxes/
8306 F: include/linux/i2c-mux.h
8307
8308 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8309 M: Gregory CLEMENT <gregory.clement@bootlin.com>
8310 L: linux-i2c@vger.kernel.org
8311 S: Maintained
8312 F: Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8313 F: drivers/i2c/busses/i2c-mv64xxx.c
8314
8315 I2C OVER PARALLEL PORT
8316 M: Jean Delvare <jdelvare@suse.com>
8317 L: linux-i2c@vger.kernel.org
8318 S: Maintained
8319 F: Documentation/i2c/busses/i2c-parport.rst
8320 F: drivers/i2c/busses/i2c-parport.c
8321
8322 I2C SUBSYSTEM
8323 M: Wolfram Sang <wsa@kernel.org>
8324 L: linux-i2c@vger.kernel.org
8325 S: Maintained
8326 W: https://i2c.wiki.kernel.org/
8327 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8328 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8329 F: Documentation/devicetree/bindings/i2c/i2c.txt
8330 F: Documentation/i2c/
8331 F: drivers/i2c/*
8332 F: include/linux/i2c-dev.h
8333 F: include/linux/i2c-smbus.h
8334 F: include/linux/i2c.h
8335 F: include/uapi/linux/i2c-*.h
8336 F: include/uapi/linux/i2c.h
8337
8338 I2C SUBSYSTEM HOST DRIVERS
8339 L: linux-i2c@vger.kernel.org
8340 S: Odd Fixes
8341 W: https://i2c.wiki.kernel.org/
8342 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8344 F: Documentation/devicetree/bindings/i2c/
8345 F: drivers/i2c/algos/
8346 F: drivers/i2c/busses/
8347
8348 I2C-TAOS-EVM DRIVER
8349 M: Jean Delvare <jdelvare@suse.com>
8350 L: linux-i2c@vger.kernel.org
8351 S: Maintained
8352 F: Documentation/i2c/busses/i2c-taos-evm.rst
8353 F: drivers/i2c/busses/i2c-taos-evm.c
8354
8355 I2C-TINY-USB DRIVER
8356 M: Till Harbaum <till@harbaum.org>
8357 L: linux-i2c@vger.kernel.org
8358 S: Maintained
8359 W: http://www.harbaum.org/till/i2c_tiny_usb
8360 F: drivers/i2c/busses/i2c-tiny-usb.c
8361
8362 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8363 M: Jean Delvare <jdelvare@suse.com>
8364 L: linux-i2c@vger.kernel.org
8365 S: Maintained
8366 F: Documentation/i2c/busses/i2c-ali1535.rst
8367 F: Documentation/i2c/busses/i2c-ali1563.rst
8368 F: Documentation/i2c/busses/i2c-ali15x3.rst
8369 F: Documentation/i2c/busses/i2c-amd756.rst
8370 F: Documentation/i2c/busses/i2c-amd8111.rst
8371 F: Documentation/i2c/busses/i2c-i801.rst
8372 F: Documentation/i2c/busses/i2c-nforce2.rst
8373 F: Documentation/i2c/busses/i2c-piix4.rst
8374 F: Documentation/i2c/busses/i2c-sis5595.rst
8375 F: Documentation/i2c/busses/i2c-sis630.rst
8376 F: Documentation/i2c/busses/i2c-sis96x.rst
8377 F: Documentation/i2c/busses/i2c-via.rst
8378 F: Documentation/i2c/busses/i2c-viapro.rst
8379 F: drivers/i2c/busses/i2c-ali1535.c
8380 F: drivers/i2c/busses/i2c-ali1563.c
8381 F: drivers/i2c/busses/i2c-ali15x3.c
8382 F: drivers/i2c/busses/i2c-amd756-s4882.c
8383 F: drivers/i2c/busses/i2c-amd756.c
8384 F: drivers/i2c/busses/i2c-amd8111.c
8385 F: drivers/i2c/busses/i2c-i801.c
8386 F: drivers/i2c/busses/i2c-isch.c
8387 F: drivers/i2c/busses/i2c-nforce2-s4985.c
8388 F: drivers/i2c/busses/i2c-nforce2.c
8389 F: drivers/i2c/busses/i2c-piix4.c
8390 F: drivers/i2c/busses/i2c-sis5595.c
8391 F: drivers/i2c/busses/i2c-sis630.c
8392 F: drivers/i2c/busses/i2c-sis96x.c
8393 F: drivers/i2c/busses/i2c-via.c
8394 F: drivers/i2c/busses/i2c-viapro.c
8395
8396 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8397 M: Hans de Goede <hdegoede@redhat.com>
8398 L: linux-i2c@vger.kernel.org
8399 S: Maintained
8400 F: drivers/i2c/busses/i2c-cht-wc.c
8401
8402 I2C/SMBUS ISMT DRIVER
8403 M: Seth Heasley <seth.heasley@intel.com>
8404 M: Neil Horman <nhorman@tuxdriver.com>
8405 L: linux-i2c@vger.kernel.org
8406 F: Documentation/i2c/busses/i2c-ismt.rst
8407 F: drivers/i2c/busses/i2c-ismt.c
8408
8409 I2C/SMBUS STUB DRIVER
8410 M: Jean Delvare <jdelvare@suse.com>
8411 L: linux-i2c@vger.kernel.org
8412 S: Maintained
8413 F: drivers/i2c/i2c-stub.c
8414
8415 I3C DRIVER FOR CADENCE I3C MASTER IP
8416 M: Przemysław Gaj <pgaj@cadence.com>
8417 S: Maintained
8418 F: Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8419 F: drivers/i3c/master/i3c-master-cdns.c
8420
8421 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8422 M: Vitor Soares <vitor.soares@synopsys.com>
8423 S: Maintained
8424 F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8425 F: drivers/i3c/master/dw*
8426
8427 I3C SUBSYSTEM
8428 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
8429 L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
8430 S: Maintained
8431 C: irc://chat.freenode.net/linux-i3c
8432 T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8433 F: Documentation/ABI/testing/sysfs-bus-i3c
8434 F: Documentation/devicetree/bindings/i3c/
8435 F: Documentation/driver-api/i3c
8436 F: drivers/i3c/
8437 F: include/linux/i3c/
8438
8439 IA64 (Itanium) PLATFORM
8440 M: Tony Luck <tony.luck@intel.com>
8441 M: Fenghua Yu <fenghua.yu@intel.com>
8442 L: linux-ia64@vger.kernel.org
8443 S: Odd Fixes
8444 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8445 F: Documentation/ia64/
8446 F: arch/ia64/
8447
8448 IBM Power 842 compression accelerator
8449 M: Haren Myneni <haren@us.ibm.com>
8450 S: Supported
8451 F: crypto/842.c
8452 F: drivers/crypto/nx/Kconfig
8453 F: drivers/crypto/nx/Makefile
8454 F: drivers/crypto/nx/nx-842*
8455 F: include/linux/sw842.h
8456 F: lib/842/
8457
8458 IBM Power in-Nest Crypto Acceleration
8459 M: Breno Leitão <leitao@debian.org>
8460 M: Nayna Jain <nayna@linux.ibm.com>
8461 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8462 L: linux-crypto@vger.kernel.org
8463 S: Supported
8464 F: drivers/crypto/nx/Kconfig
8465 F: drivers/crypto/nx/Makefile
8466 F: drivers/crypto/nx/nx-aes*
8467 F: drivers/crypto/nx/nx-sha*
8468 F: drivers/crypto/nx/nx.*
8469 F: drivers/crypto/nx/nx_csbcpb.h
8470 F: drivers/crypto/nx/nx_debugfs.c
8471
8472 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8473 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8474 L: linux-pci@vger.kernel.org
8475 L: linuxppc-dev@lists.ozlabs.org
8476 S: Supported
8477 F: drivers/pci/hotplug/rpadlpar*
8478
8479 IBM Power Linux RAID adapter
8480 M: Brian King <brking@us.ibm.com>
8481 S: Supported
8482 F: drivers/scsi/ipr.*
8483
8484 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8485 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8486 L: linux-pci@vger.kernel.org
8487 L: linuxppc-dev@lists.ozlabs.org
8488 S: Supported
8489 F: drivers/pci/hotplug/rpaphp*
8490
8491 IBM Power SRIOV Virtual NIC Device Driver
8492 M: Dany Madden <drt@linux.ibm.com>
8493 M: Lijun Pan <ljp@linux.ibm.com>
8494 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8495 L: netdev@vger.kernel.org
8496 S: Supported
8497 F: drivers/net/ethernet/ibm/ibmvnic.*
8498
8499 IBM Power Virtual Accelerator Switchboard
8500 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8501 L: linuxppc-dev@lists.ozlabs.org
8502 S: Supported
8503 F: arch/powerpc/include/asm/vas.h
8504 F: arch/powerpc/platforms/powernv/copy-paste.h
8505 F: arch/powerpc/platforms/powernv/vas*
8506
8507 IBM Power Virtual Ethernet Device Driver
8508 M: Cristobal Forno <cforno12@linux.ibm.com>
8509 L: netdev@vger.kernel.org
8510 S: Supported
8511 F: drivers/net/ethernet/ibm/ibmveth.*
8512
8513 IBM Power Virtual FC Device Drivers
8514 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8515 L: linux-scsi@vger.kernel.org
8516 S: Supported
8517 F: drivers/scsi/ibmvscsi/ibmvfc*
8518
8519 IBM Power Virtual Management Channel Driver
8520 M: Steven Royer <seroyer@linux.ibm.com>
8521 S: Supported
8522 F: drivers/misc/ibmvmc.*
8523
8524 IBM Power Virtual SCSI Device Drivers
8525 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8526 L: linux-scsi@vger.kernel.org
8527 S: Supported
8528 F: drivers/scsi/ibmvscsi/ibmvscsi*
8529 F: include/scsi/viosrp.h
8530
8531 IBM Power Virtual SCSI Device Target Driver
8532 M: Michael Cyr <mikecyr@linux.ibm.com>
8533 L: linux-scsi@vger.kernel.org
8534 L: target-devel@vger.kernel.org
8535 S: Supported
8536 F: drivers/scsi/ibmvscsi_tgt/
8537
8538 IBM Power VMX Cryptographic instructions
8539 M: Breno Leitão <leitao@debian.org>
8540 M: Nayna Jain <nayna@linux.ibm.com>
8541 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8542 L: linux-crypto@vger.kernel.org
8543 S: Supported
8544 F: drivers/crypto/vmx/Kconfig
8545 F: drivers/crypto/vmx/Makefile
8546 F: drivers/crypto/vmx/aes*
8547 F: drivers/crypto/vmx/ghash*
8548 F: drivers/crypto/vmx/ppc-xlate.pl
8549 F: drivers/crypto/vmx/vmx.c
8550
8551 IBM ServeRAID RAID DRIVER
8552 S: Orphan
8553 F: drivers/scsi/ips.*
8554
8555 ICH LPC AND GPIO DRIVER
8556 M: Peter Tyser <ptyser@xes-inc.com>
8557 S: Maintained
8558 F: drivers/gpio/gpio-ich.c
8559 F: drivers/mfd/lpc_ich.c
8560
8561 ICY I2C DRIVER
8562 M: Max Staudt <max@enpas.org>
8563 L: linux-i2c@vger.kernel.org
8564 S: Maintained
8565 F: drivers/i2c/busses/i2c-icy.c
8566
8567 IDE SUBSYSTEM
8568 M: "David S. Miller" <davem@davemloft.net>
8569 L: linux-ide@vger.kernel.org
8570 S: Maintained
8571 Q: http://patchwork.ozlabs.org/project/linux-ide/list/
8572 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8573 F: Documentation/ide/
8574 F: drivers/ide/
8575 F: include/linux/ide.h
8576
8577 IDE/ATAPI DRIVERS
8578 M: Borislav Petkov <bp@alien8.de>
8579 L: linux-ide@vger.kernel.org
8580 S: Maintained
8581 F: Documentation/cdrom/ide-cd.rst
8582 F: drivers/ide/ide-cd*
8583
8584 IDEAPAD LAPTOP EXTRAS DRIVER
8585 M: Ike Panhc <ike.pan@canonical.com>
8586 L: platform-driver-x86@vger.kernel.org
8587 S: Maintained
8588 W: http://launchpad.net/ideapad-laptop
8589 F: drivers/platform/x86/ideapad-laptop.c
8590
8591 IDEAPAD LAPTOP SLIDEBAR DRIVER
8592 M: Andrey Moiseev <o2g.org.ru@gmail.com>
8593 L: linux-input@vger.kernel.org
8594 S: Maintained
8595 W: https://github.com/o2genum/ideapad-slidebar
8596 F: drivers/input/misc/ideapad_slidebar.c
8597
8598 IDT VersaClock 5 CLOCK DRIVER
8599 M: Luca Ceresoli <luca@lucaceresoli.net>
8600 S: Maintained
8601 F: Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8602 F: drivers/clk/clk-versaclock5.c
8603
8604 IEEE 802.15.4 SUBSYSTEM
8605 M: Alexander Aring <alex.aring@gmail.com>
8606 M: Stefan Schmidt <stefan@datenfreihafen.org>
8607 L: linux-wpan@vger.kernel.org
8608 S: Maintained
8609 W: https://linux-wpan.org/
8610 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8611 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8612 F: Documentation/networking/ieee802154.rst
8613 F: drivers/net/ieee802154/
8614 F: include/linux/ieee802154.h
8615 F: include/linux/nl802154.h
8616 F: include/net/af_ieee802154.h
8617 F: include/net/cfg802154.h
8618 F: include/net/ieee802154_netdev.h
8619 F: include/net/mac802154.h
8620 F: include/net/nl802154.h
8621 F: net/ieee802154/
8622 F: net/mac802154/
8623
8624 IFE PROTOCOL
8625 M: Yotam Gigi <yotam.gi@gmail.com>
8626 M: Jamal Hadi Salim <jhs@mojatatu.com>
8627 F: include/net/ife.h
8628 F: include/uapi/linux/ife.h
8629 F: net/ife
8630
8631 IGORPLUG-USB IR RECEIVER
8632 M: Sean Young <sean@mess.org>
8633 L: linux-media@vger.kernel.org
8634 S: Maintained
8635 F: drivers/media/rc/igorplugusb.c
8636
8637 IGUANAWORKS USB IR TRANSCEIVER
8638 M: Sean Young <sean@mess.org>
8639 L: linux-media@vger.kernel.org
8640 S: Maintained
8641 F: drivers/media/rc/iguanair.c
8642
8643 IIO DIGITAL POTENTIOMETER DAC
8644 M: Peter Rosin <peda@axentia.se>
8645 L: linux-iio@vger.kernel.org
8646 S: Maintained
8647 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8648 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8649 F: drivers/iio/dac/dpot-dac.c
8650
8651 IIO ENVELOPE DETECTOR
8652 M: Peter Rosin <peda@axentia.se>
8653 L: linux-iio@vger.kernel.org
8654 S: Maintained
8655 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8656 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8657 F: drivers/iio/adc/envelope-detector.c
8658
8659 IIO MULTIPLEXER
8660 M: Peter Rosin <peda@axentia.se>
8661 L: linux-iio@vger.kernel.org
8662 S: Maintained
8663 F: Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8664 F: drivers/iio/multiplexer/iio-mux.c
8665
8666 IIO SUBSYSTEM AND DRIVERS
8667 M: Jonathan Cameron <jic23@kernel.org>
8668 R: Lars-Peter Clausen <lars@metafoo.de>
8669 R: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8670 L: linux-iio@vger.kernel.org
8671 S: Maintained
8672 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8673 F: Documentation/ABI/testing/configfs-iio*
8674 F: Documentation/ABI/testing/sysfs-bus-iio*
8675 F: Documentation/devicetree/bindings/iio/
8676 F: drivers/iio/
8677 F: drivers/staging/iio/
8678 F: include/linux/iio/
8679 F: tools/iio/
8680
8681 IIO UNIT CONVERTER
8682 M: Peter Rosin <peda@axentia.se>
8683 L: linux-iio@vger.kernel.org
8684 S: Maintained
8685 F: Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8686 F: Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8687 F: Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8688 F: drivers/iio/afe/iio-rescale.c
8689
8690 IKANOS/ADI EAGLE ADSL USB DRIVER
8691 M: Matthieu Castet <castet.matthieu@free.fr>
8692 M: Stanislaw Gruszka <stf_xl@wp.pl>
8693 S: Maintained
8694 F: drivers/usb/atm/ueagle-atm.c
8695
8696 IMGTEC ASCII LCD DRIVER
8697 M: Paul Burton <paulburton@kernel.org>
8698 S: Maintained
8699 F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8700 F: drivers/auxdisplay/img-ascii-lcd.c
8701
8702 IMGTEC IR DECODER DRIVER
8703 S: Orphan
8704 F: drivers/media/rc/img-ir/
8705
8706 IMON SOUNDGRAPH USB IR RECEIVER
8707 M: Sean Young <sean@mess.org>
8708 L: linux-media@vger.kernel.org
8709 S: Maintained
8710 F: drivers/media/rc/imon.c
8711 F: drivers/media/rc/imon_raw.c
8712
8713 IMS TWINTURBO FRAMEBUFFER DRIVER
8714 L: linux-fbdev@vger.kernel.org
8715 S: Orphan
8716 F: drivers/video/fbdev/imsttfb.c
8717
8718 INA209 HARDWARE MONITOR DRIVER
8719 M: Guenter Roeck <linux@roeck-us.net>
8720 L: linux-hwmon@vger.kernel.org
8721 S: Maintained
8722 F: Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8723 F: Documentation/hwmon/ina209.rst
8724 F: drivers/hwmon/ina209.c
8725
8726 INA2XX HARDWARE MONITOR DRIVER
8727 M: Guenter Roeck <linux@roeck-us.net>
8728 L: linux-hwmon@vger.kernel.org
8729 S: Maintained
8730 F: Documentation/hwmon/ina2xx.rst
8731 F: drivers/hwmon/ina2xx.c
8732 F: include/linux/platform_data/ina2xx.h
8733
8734 INDUSTRY PACK SUBSYSTEM (IPACK)
8735 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8736 M: Jens Taprogge <jens.taprogge@taprogge.org>
8737 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8738 L: industrypack-devel@lists.sourceforge.net
8739 S: Maintained
8740 W: http://industrypack.sourceforge.net
8741 F: drivers/ipack/
8742
8743 INFINEON DPS310 Driver
8744 M: Eddie James <eajames@linux.ibm.com>
8745 L: linux-iio@vger.kernel.org
8746 S: Maintained
8747 F: drivers/iio/pressure/dps310.c
8748
8749 INFINIBAND SUBSYSTEM
8750 M: Doug Ledford <dledford@redhat.com>
8751 M: Jason Gunthorpe <jgg@nvidia.com>
8752 L: linux-rdma@vger.kernel.org
8753 S: Supported
8754 W: https://github.com/linux-rdma/rdma-core
8755 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8756 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8757 F: Documentation/devicetree/bindings/infiniband/
8758 F: Documentation/infiniband/
8759 F: drivers/infiniband/
8760 F: include/rdma/
8761 F: include/trace/events/ib_mad.h
8762 F: include/trace/events/ib_umad.h
8763 F: include/uapi/linux/if_infiniband.h
8764 F: include/uapi/rdma/
8765 F: samples/bpf/ibumad_kern.c
8766 F: samples/bpf/ibumad_user.c
8767
8768 INGENIC JZ4780 NAND DRIVER
8769 M: Harvey Hunt <harveyhuntnexus@gmail.com>
8770 L: linux-mtd@lists.infradead.org
8771 L: linux-mips@vger.kernel.org
8772 S: Maintained
8773 F: drivers/mtd/nand/raw/ingenic/
8774
8775 INGENIC JZ47xx SoCs
8776 M: Paul Cercueil <paul@crapouillou.net>
8777 L: linux-mips@vger.kernel.org
8778 S: Maintained
8779 F: arch/mips/boot/dts/ingenic/
8780 F: arch/mips/generic/board-ingenic.c
8781 F: arch/mips/include/asm/mach-ingenic/
8782 F: arch/mips/ingenic/Kconfig
8783 F: drivers/clk/ingenic/
8784 F: drivers/dma/dma-jz4780.c
8785 F: drivers/gpu/drm/ingenic/
8786 F: drivers/i2c/busses/i2c-jz4780.c
8787 F: drivers/iio/adc/ingenic-adc.c
8788 F: drivers/irqchip/irq-ingenic.c
8789 F: drivers/memory/jz4780-nemc.c
8790 F: drivers/mmc/host/jz4740_mmc.c
8791 F: drivers/mtd/nand/raw/ingenic/
8792 F: drivers/pinctrl/pinctrl-ingenic.c
8793 F: drivers/power/supply/ingenic-battery.c
8794 F: drivers/pwm/pwm-jz4740.c
8795 F: drivers/remoteproc/ingenic_rproc.c
8796 F: drivers/rtc/rtc-jz4740.c
8797 F: drivers/tty/serial/8250/8250_ingenic.c
8798 F: drivers/usb/musb/jz4740.c
8799 F: drivers/watchdog/jz4740_wdt.c
8800 F: include/dt-bindings/iio/adc/ingenic,adc.h
8801 F: include/linux/mfd/ingenic-tcu.h
8802 F: sound/soc/codecs/jz47*
8803 F: sound/soc/jz4740/
8804
8805 INOTIFY
8806 M: Jan Kara <jack@suse.cz>
8807 R: Amir Goldstein <amir73il@gmail.com>
8808 L: linux-fsdevel@vger.kernel.org
8809 S: Maintained
8810 F: Documentation/filesystems/inotify.rst
8811 F: fs/notify/inotify/
8812 F: include/linux/inotify.h
8813 F: include/uapi/linux/inotify.h
8814
8815 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8816 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
8817 L: linux-input@vger.kernel.org
8818 S: Maintained
8819 Q: http://patchwork.kernel.org/project/linux-input/list/
8820 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8821 F: Documentation/devicetree/bindings/input/
8822 F: Documentation/devicetree/bindings/serio/
8823 F: Documentation/input/
8824 F: drivers/input/
8825 F: include/linux/input.h
8826 F: include/linux/input/
8827 F: include/uapi/linux/input-event-codes.h
8828 F: include/uapi/linux/input.h
8829
8830 INPUT MULTITOUCH (MT) PROTOCOL
8831 M: Henrik Rydberg <rydberg@bitmath.org>
8832 L: linux-input@vger.kernel.org
8833 S: Odd fixes
8834 F: Documentation/input/multi-touch-protocol.rst
8835 F: drivers/input/input-mt.c
8836 K: \b(ABS|SYN)_MT_
8837
8838 INSIDE SECURE CRYPTO DRIVER
8839 M: Antoine Tenart <atenart@kernel.org>
8840 L: linux-crypto@vger.kernel.org
8841 S: Maintained
8842 F: drivers/crypto/inside-secure/
8843
8844 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8845 M: Mimi Zohar <zohar@linux.ibm.com>
8846 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8847 L: linux-integrity@vger.kernel.org
8848 S: Supported
8849 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8850 F: security/integrity/ima/
8851
8852 INTEL 810/815 FRAMEBUFFER DRIVER
8853 M: Antonino Daplas <adaplas@gmail.com>
8854 L: linux-fbdev@vger.kernel.org
8855 S: Maintained
8856 F: drivers/video/fbdev/i810/
8857
8858 INTEL ASoC DRIVERS
8859 M: Cezary Rojewski <cezary.rojewski@intel.com>
8860 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8861 M: Liam Girdwood <liam.r.girdwood@linux.intel.com>
8862 M: Jie Yang <yang.jie@linux.intel.com>
8863 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8864 S: Supported
8865 F: sound/soc/intel/
8866
8867 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8868 M: Hans de Goede <hdegoede@redhat.com>
8869 L: platform-driver-x86@vger.kernel.org
8870 S: Maintained
8871 F: drivers/platform/x86/intel_atomisp2_pm.c
8872
8873 INTEL ATOMISP2 LED DRIVER
8874 M: Hans de Goede <hdegoede@redhat.com>
8875 L: platform-driver-x86@vger.kernel.org
8876 S: Maintained
8877 F: drivers/platform/x86/intel_atomisp2_led.c
8878
8879 INTEL BROXTON PMC DRIVER
8880 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8881 M: Zha Qipeng <qipeng.zha@intel.com>
8882 S: Maintained
8883 F: drivers/mfd/intel_pmc_bxt.c
8884 F: include/linux/mfd/intel_pmc_bxt.h
8885
8886 INTEL C600 SERIES SAS CONTROLLER DRIVER
8887 M: Intel SCU Linux support <intel-linux-scu@intel.com>
8888 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8889 L: linux-scsi@vger.kernel.org
8890 S: Supported
8891 T: git git://git.code.sf.net/p/intel-sas/isci
8892 F: drivers/scsi/isci/
8893
8894 INTEL CPU family model numbers
8895 M: Tony Luck <tony.luck@intel.com>
8896 M: x86@kernel.org
8897 L: linux-kernel@vger.kernel.org
8898 S: Supported
8899 F: arch/x86/include/asm/intel-family.h
8900
8901 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8902 M: Jani Nikula <jani.nikula@linux.intel.com>
8903 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8904 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
8905 L: intel-gfx@lists.freedesktop.org
8906 S: Supported
8907 W: https://01.org/linuxgraphics/
8908 Q: http://patchwork.freedesktop.org/project/intel-gfx/
8909 B: https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8910 C: irc://chat.freenode.net/intel-gfx
8911 T: git git://anongit.freedesktop.org/drm-intel
8912 F: Documentation/gpu/i915.rst
8913 F: drivers/gpu/drm/i915/
8914 F: include/drm/i915*
8915 F: include/uapi/drm/i915_drm.h
8916
8917 INTEL ETHERNET DRIVERS
8918 M: Jesse Brandeburg <jesse.brandeburg@intel.com>
8919 M: Tony Nguyen <anthony.l.nguyen@intel.com>
8920 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8921 S: Supported
8922 W: http://www.intel.com/support/feedback.htm
8923 W: http://e1000.sourceforge.net/
8924 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8925 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8926 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8927 F: Documentation/networking/device_drivers/ethernet/intel/
8928 F: drivers/net/ethernet/intel/
8929 F: drivers/net/ethernet/intel/*/
8930 F: include/linux/avf/virtchnl.h
8931
8932 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8933 M: Maik Broemme <mbroemme@libmpq.org>
8934 L: linux-fbdev@vger.kernel.org
8935 S: Maintained
8936 F: Documentation/fb/intelfb.rst
8937 F: drivers/video/fbdev/intelfb/
8938
8939 INTEL GPIO DRIVERS
8940 M: Andy Shevchenko <andy@kernel.org>
8941 L: linux-gpio@vger.kernel.org
8942 S: Maintained
8943 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8944 F: drivers/gpio/gpio-ich.c
8945 F: drivers/gpio/gpio-intel-mid.c
8946 F: drivers/gpio/gpio-merrifield.c
8947 F: drivers/gpio/gpio-ml-ioh.c
8948 F: drivers/gpio/gpio-pch.c
8949 F: drivers/gpio/gpio-sch.c
8950 F: drivers/gpio/gpio-sodaville.c
8951
8952 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8953 M: Zhenyu Wang <zhenyuw@linux.intel.com>
8954 M: Zhi Wang <zhi.a.wang@intel.com>
8955 L: intel-gvt-dev@lists.freedesktop.org
8956 L: intel-gfx@lists.freedesktop.org
8957 S: Supported
8958 W: https://01.org/igvt-g
8959 T: git https://github.com/intel/gvt-linux.git
8960 F: drivers/gpu/drm/i915/gvt/
8961
8962 INTEL HID EVENT DRIVER
8963 M: Alex Hung <alex.hung@canonical.com>
8964 L: platform-driver-x86@vger.kernel.org
8965 S: Maintained
8966 F: drivers/platform/x86/intel-hid.c
8967
8968 INTEL I/OAT DMA DRIVER
8969 M: Dave Jiang <dave.jiang@intel.com>
8970 R: Dan Williams <dan.j.williams@intel.com>
8971 L: dmaengine@vger.kernel.org
8972 S: Supported
8973 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
8974 F: drivers/dma/ioat*
8975
8976 INTEL IADX DRIVER
8977 M: Dave Jiang <dave.jiang@intel.com>
8978 L: dmaengine@vger.kernel.org
8979 S: Supported
8980 F: drivers/dma/idxd/*
8981 F: include/uapi/linux/idxd.h
8982
8983 INTEL IDLE DRIVER
8984 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
8985 M: Len Brown <lenb@kernel.org>
8986 L: linux-pm@vger.kernel.org
8987 S: Supported
8988 B: https://bugzilla.kernel.org
8989 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8990 F: drivers/idle/intel_idle.c
8991
8992 INTEL INTEGRATED SENSOR HUB DRIVER
8993 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8994 M: Jiri Kosina <jikos@kernel.org>
8995 L: linux-input@vger.kernel.org
8996 S: Maintained
8997 F: drivers/hid/intel-ish-hid/
8998
8999 INTEL IOMMU (VT-d)
9000 M: David Woodhouse <dwmw2@infradead.org>
9001 M: Lu Baolu <baolu.lu@linux.intel.com>
9002 L: iommu@lists.linux-foundation.org
9003 S: Supported
9004 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9005 F: drivers/iommu/intel/
9006 F: include/linux/intel-iommu.h
9007 F: include/linux/intel-svm.h
9008
9009 INTEL IOP-ADMA DMA DRIVER
9010 R: Dan Williams <dan.j.williams@intel.com>
9011 S: Odd fixes
9012 F: drivers/dma/iop-adma.c
9013
9014 INTEL IPU3 CSI-2 CIO2 DRIVER
9015 M: Yong Zhi <yong.zhi@intel.com>
9016 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9017 M: Bingbu Cao <bingbu.cao@intel.com>
9018 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9019 L: linux-media@vger.kernel.org
9020 S: Maintained
9021 F: Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9022 F: drivers/media/pci/intel/ipu3/
9023
9024 INTEL IPU3 CSI-2 IMGU DRIVER
9025 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9026 R: Bingbu Cao <bingbu.cao@intel.com>
9027 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9028 L: linux-media@vger.kernel.org
9029 S: Maintained
9030 F: Documentation/admin-guide/media/ipu3.rst
9031 F: Documentation/admin-guide/media/ipu3_rcb.svg
9032 F: Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9033 F: drivers/staging/media/ipu3/
9034
9035 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9036 M: Krzysztof Halasa <khalasa@piap.pl>
9037 S: Maintained
9038 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
9039 F: drivers/net/wan/ixp4xx_hss.c
9040 F: drivers/soc/ixp4xx/ixp4xx-npe.c
9041 F: drivers/soc/ixp4xx/ixp4xx-qmgr.c
9042 F: include/linux/soc/ixp4xx/npe.h
9043 F: include/linux/soc/ixp4xx/qmgr.h
9044
9045 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9046 M: Deepak Saxena <dsaxena@plexity.net>
9047 S: Maintained
9048 F: drivers/char/hw_random/ixp4xx-rng.c
9049
9050 INTEL KEEM BAY DRM DRIVER
9051 M: Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9052 M: Edmund Dea <edmund.j.dea@intel.com>
9053 S: Maintained
9054 F: Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9055 F: drivers/gpu/drm/kmb/
9056
9057 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9058 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9059 S: Maintained
9060 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9061 F: drivers/crypto/keembay/Kconfig
9062 F: drivers/crypto/keembay/Makefile
9063 F: drivers/crypto/keembay/keembay-ocs-aes-core.c
9064 F: drivers/crypto/keembay/ocs-aes.c
9065 F: drivers/crypto/keembay/ocs-aes.h
9066
9067 INTEL MANAGEMENT ENGINE (mei)
9068 M: Tomas Winkler <tomas.winkler@intel.com>
9069 L: linux-kernel@vger.kernel.org
9070 S: Supported
9071 F: Documentation/driver-api/mei/*
9072 F: drivers/misc/mei/
9073 F: drivers/watchdog/mei_wdt.c
9074 F: include/linux/mei_cl_bus.h
9075 F: include/uapi/linux/mei.h
9076 F: samples/mei/*
9077
9078 INTEL MENLOW THERMAL DRIVER
9079 M: Sujith Thomas <sujith.thomas@intel.com>
9080 L: platform-driver-x86@vger.kernel.org
9081 S: Supported
9082 W: https://01.org/linux-acpi
9083 F: drivers/platform/x86/intel_menlow.c
9084
9085 INTEL P-Unit IPC DRIVER
9086 M: Zha Qipeng <qipeng.zha@intel.com>
9087 L: platform-driver-x86@vger.kernel.org
9088 S: Maintained
9089 F: arch/x86/include/asm/intel_punit_ipc.h
9090 F: drivers/platform/x86/intel_punit_ipc.c
9091
9092 INTEL PMC CORE DRIVER
9093 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9094 M: David E Box <david.e.box@intel.com>
9095 L: platform-driver-x86@vger.kernel.org
9096 S: Maintained
9097 F: drivers/platform/x86/intel_pmc_core*
9098
9099 INTEL PMIC GPIO DRIVERS
9100 M: Andy Shevchenko <andy@kernel.org>
9101 S: Maintained
9102 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9103 F: drivers/gpio/gpio-*cove.c
9104 F: drivers/gpio/gpio-msic.c
9105
9106 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9107 M: Andy Shevchenko <andy@kernel.org>
9108 S: Maintained
9109 F: drivers/mfd/intel_msic.c
9110 F: drivers/mfd/intel_soc_pmic*
9111 F: include/linux/mfd/intel_msic.h
9112 F: include/linux/mfd/intel_soc_pmic*
9113
9114 INTEL PMT DRIVER
9115 M: "David E. Box" <david.e.box@linux.intel.com>
9116 S: Maintained
9117 F: drivers/mfd/intel_pmt.c
9118 F: drivers/platform/x86/intel_pmt_*
9119
9120 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9121 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
9122 L: linux-wireless@vger.kernel.org
9123 S: Maintained
9124 F: Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9125 F: Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9126 F: drivers/net/wireless/intel/ipw2x00/
9127
9128 INTEL PSTATE DRIVER
9129 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9130 M: Len Brown <lenb@kernel.org>
9131 L: linux-pm@vger.kernel.org
9132 S: Supported
9133 F: drivers/cpufreq/intel_pstate.c
9134
9135 INTEL RDMA RNIC DRIVER
9136 M: Faisal Latif <faisal.latif@intel.com>
9137 M: Shiraz Saleem <shiraz.saleem@intel.com>
9138 L: linux-rdma@vger.kernel.org
9139 S: Supported
9140 F: drivers/infiniband/hw/i40iw/
9141 F: include/uapi/rdma/i40iw-abi.h
9142
9143 INTEL SCU DRIVERS
9144 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9145 S: Maintained
9146 F: arch/x86/include/asm/intel_scu_ipc.h
9147 F: drivers/platform/x86/intel_scu_*
9148
9149 INTEL SPEED SELECT TECHNOLOGY
9150 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9151 L: platform-driver-x86@vger.kernel.org
9152 S: Maintained
9153 F: drivers/platform/x86/intel_speed_select_if/
9154 F: include/uapi/linux/isst_if.h
9155 F: tools/power/x86/intel-speed-select/
9156
9157 INTEL STRATIX10 FIRMWARE DRIVERS
9158 M: Richard Gong <richard.gong@linux.intel.com>
9159 L: linux-kernel@vger.kernel.org
9160 S: Maintained
9161 F: Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9162 F: Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9163 F: drivers/firmware/stratix10-rsu.c
9164 F: drivers/firmware/stratix10-svc.c
9165 F: include/linux/firmware/intel/stratix10-smc.h
9166 F: include/linux/firmware/intel/stratix10-svc-client.h
9167
9168 INTEL TELEMETRY DRIVER
9169 M: Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9170 M: "David E. Box" <david.e.box@linux.intel.com>
9171 L: platform-driver-x86@vger.kernel.org
9172 S: Maintained
9173 F: arch/x86/include/asm/intel_telemetry.h
9174 F: drivers/platform/x86/intel_telemetry*
9175
9176 INTEL UNCORE FREQUENCY CONTROL
9177 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9178 L: platform-driver-x86@vger.kernel.org
9179 S: Maintained
9180 F: drivers/platform/x86/intel-uncore-frequency.c
9181
9182 INTEL VIRTUAL BUTTON DRIVER
9183 M: AceLan Kao <acelan.kao@canonical.com>
9184 L: platform-driver-x86@vger.kernel.org
9185 S: Maintained
9186 F: drivers/platform/x86/intel-vbtn.c
9187
9188 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9189 M: Stanislaw Gruszka <stf_xl@wp.pl>
9190 L: linux-wireless@vger.kernel.org
9191 S: Supported
9192 F: drivers/net/wireless/intel/iwlegacy/
9193
9194 INTEL WIRELESS WIFI LINK (iwlwifi)
9195 M: Luca Coelho <luciano.coelho@intel.com>
9196 L: linux-wireless@vger.kernel.org
9197 S: Supported
9198 W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9199 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9200 F: drivers/net/wireless/intel/iwlwifi/
9201
9202 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9203 M: Jithu Joseph <jithu.joseph@intel.com>
9204 R: Maurice Ma <maurice.ma@intel.com>
9205 S: Maintained
9206 W: https://slimbootloader.github.io/security/firmware-update.html
9207 F: drivers/platform/x86/intel-wmi-sbl-fw-update.c
9208
9209 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9210 M: Mario Limonciello <mario.limonciello@dell.com>
9211 S: Maintained
9212 F: drivers/platform/x86/intel-wmi-thunderbolt.c
9213
9214 INTEL(R) TRACE HUB
9215 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9216 S: Supported
9217 F: Documentation/trace/intel_th.rst
9218 F: drivers/hwtracing/intel_th/
9219 F: include/linux/intel_th.h
9220
9221 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9222 M: Ning Sun <ning.sun@intel.com>
9223 L: tboot-devel@lists.sourceforge.net
9224 S: Supported
9225 W: http://tboot.sourceforge.net
9226 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9227 F: Documentation/x86/intel_txt.rst
9228 F: arch/x86/kernel/tboot.c
9229 F: include/linux/tboot.h
9230
9231 INTEL SGX
9232 M: Jarkko Sakkinen <jarkko@kernel.org>
9233 L: linux-sgx@vger.kernel.org
9234 S: Supported
9235 Q: https://patchwork.kernel.org/project/intel-sgx/list/
9236 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-sgx.git
9237 F: Documentation/x86/sgx.rst
9238 F: arch/x86/entry/vdso/vsgx.S
9239 F: arch/x86/include/uapi/asm/sgx.h
9240 F: arch/x86/kernel/cpu/sgx/*
9241 F: tools/testing/selftests/sgx/*
9242 K: \bSGX_
9243
9244 INTERCONNECT API
9245 M: Georgi Djakov <georgi.djakov@linaro.org>
9246 L: linux-pm@vger.kernel.org
9247 S: Maintained
9248 F: Documentation/devicetree/bindings/interconnect/
9249 F: Documentation/driver-api/interconnect.rst
9250 F: drivers/interconnect/
9251 F: include/dt-bindings/interconnect/
9252 F: include/linux/interconnect-provider.h
9253 F: include/linux/interconnect.h
9254
9255 INVENSENSE ICM-426xx IMU DRIVER
9256 M: Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9257 L: linux-iio@vger.kernel.org
9258 S: Maintained
9259 W: https://invensense.tdk.com/
9260 F: Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9261 F: drivers/iio/imu/inv_icm42600/
9262
9263 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9264 M: Linus Walleij <linus.walleij@linaro.org>
9265 L: linux-iio@vger.kernel.org
9266 S: Maintained
9267 F: Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9268 F: drivers/iio/gyro/mpu3050*
9269
9270 IOC3 ETHERNET DRIVER
9271 M: Ralf Baechle <ralf@linux-mips.org>
9272 L: linux-mips@vger.kernel.org
9273 S: Maintained
9274 F: drivers/net/ethernet/sgi/ioc3-eth.c
9275
9276 IOMAP FILESYSTEM LIBRARY
9277 M: Christoph Hellwig <hch@infradead.org>
9278 M: Darrick J. Wong <darrick.wong@oracle.com>
9279 M: linux-xfs@vger.kernel.org
9280 M: linux-fsdevel@vger.kernel.org
9281 L: linux-xfs@vger.kernel.org
9282 L: linux-fsdevel@vger.kernel.org
9283 S: Supported
9284 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9285 F: fs/iomap/
9286 F: include/linux/iomap.h
9287
9288 IOMMU DRIVERS
9289 M: Joerg Roedel <joro@8bytes.org>
9290 M: Will Deacon <will@kernel.org>
9291 L: iommu@lists.linux-foundation.org
9292 S: Maintained
9293 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9294 F: Documentation/devicetree/bindings/iommu/
9295 F: Documentation/userspace-api/iommu.rst
9296 F: drivers/iommu/
9297 F: include/linux/iommu.h
9298 F: include/linux/iova.h
9299 F: include/linux/of_iommu.h
9300 F: include/uapi/linux/iommu.h
9301
9302 IO_URING
9303 M: Jens Axboe <axboe@kernel.dk>
9304 L: io-uring@vger.kernel.org
9305 S: Maintained
9306 T: git git://git.kernel.dk/linux-block
9307 T: git git://git.kernel.dk/liburing
9308 F: fs/io-wq.c
9309 F: fs/io-wq.h
9310 F: fs/io_uring.c
9311 F: include/uapi/linux/io_uring.h
9312
9313 IPMI SUBSYSTEM
9314 M: Corey Minyard <minyard@acm.org>
9315 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9316 S: Supported
9317 W: http://openipmi.sourceforge.net/
9318 F: Documentation/driver-api/ipmi.rst
9319 F: Documentation/devicetree/bindings/ipmi/
9320 F: drivers/char/ipmi/
9321 F: include/linux/ipmi*
9322 F: include/uapi/linux/ipmi*
9323
9324 IPS SCSI RAID DRIVER
9325 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9326 L: linux-scsi@vger.kernel.org
9327 S: Maintained
9328 W: http://www.adaptec.com/
9329 F: drivers/scsi/ips*
9330
9331 IPVS
9332 M: Wensong Zhang <wensong@linux-vs.org>
9333 M: Simon Horman <horms@verge.net.au>
9334 M: Julian Anastasov <ja@ssi.bg>
9335 L: netdev@vger.kernel.org
9336 L: lvs-devel@vger.kernel.org
9337 S: Maintained
9338 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9339 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9340 F: Documentation/networking/ipvs-sysctl.rst
9341 F: include/net/ip_vs.h
9342 F: include/uapi/linux/ip_vs.h
9343 F: net/netfilter/ipvs/
9344
9345 IPWIRELESS DRIVER
9346 M: Jiri Kosina <jikos@kernel.org>
9347 M: David Sterba <dsterba@suse.com>
9348 S: Odd Fixes
9349 F: drivers/tty/ipwireless/
9350
9351 IPX NETWORK LAYER
9352 L: netdev@vger.kernel.org
9353 S: Obsolete
9354 F: include/uapi/linux/ipx.h
9355
9356 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9357 M: Marc Zyngier <maz@kernel.org>
9358 S: Maintained
9359 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9360 F: Documentation/core-api/irq/irq-domain.rst
9361 F: include/linux/irqdomain.h
9362 F: kernel/irq/irqdomain.c
9363 F: kernel/irq/msi.c
9364
9365 IRQ SUBSYSTEM
9366 M: Thomas Gleixner <tglx@linutronix.de>
9367 L: linux-kernel@vger.kernel.org
9368 S: Maintained
9369 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9370 F: kernel/irq/
9371
9372 IRQCHIP DRIVERS
9373 M: Thomas Gleixner <tglx@linutronix.de>
9374 M: Marc Zyngier <maz@kernel.org>
9375 L: linux-kernel@vger.kernel.org
9376 S: Maintained
9377 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9378 F: Documentation/devicetree/bindings/interrupt-controller/
9379 F: drivers/irqchip/
9380
9381 ISA
9382 M: William Breathitt Gray <vilhelm.gray@gmail.com>
9383 S: Maintained
9384 F: Documentation/driver-api/isa.rst
9385 F: drivers/base/isa.c
9386 F: include/linux/isa.h
9387
9388 ISA RADIO MODULE
9389 M: Hans Verkuil <hverkuil@xs4all.nl>
9390 L: linux-media@vger.kernel.org
9391 S: Maintained
9392 W: https://linuxtv.org
9393 T: git git://linuxtv.org/media_tree.git
9394 F: drivers/media/radio/radio-isa*
9395
9396 ISAPNP
9397 M: Jaroslav Kysela <perex@perex.cz>
9398 S: Maintained
9399 F: Documentation/driver-api/isapnp.rst
9400 F: drivers/pnp/isapnp/
9401 F: include/linux/isapnp.h
9402
9403 ISCSI
9404 M: Lee Duncan <lduncan@suse.com>
9405 M: Chris Leech <cleech@redhat.com>
9406 L: open-iscsi@googlegroups.com
9407 L: linux-scsi@vger.kernel.org
9408 S: Maintained
9409 W: www.open-iscsi.com
9410 F: drivers/scsi/*iscsi*
9411 F: include/scsi/*iscsi*
9412
9413 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9414 M: Peter Jones <pjones@redhat.com>
9415 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
9416 S: Maintained
9417 F: drivers/firmware/iscsi_ibft*
9418
9419 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9420 M: Sagi Grimberg <sagi@grimberg.me>
9421 M: Max Gurtovoy <mgurtovoy@nvidia.com>
9422 L: linux-rdma@vger.kernel.org
9423 S: Supported
9424 W: http://www.openfabrics.org
9425 W: www.open-iscsi.org
9426 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9427 F: drivers/infiniband/ulp/iser/
9428
9429 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9430 M: Sagi Grimberg <sagi@grimberg.me>
9431 L: linux-rdma@vger.kernel.org
9432 L: target-devel@vger.kernel.org
9433 S: Supported
9434 W: http://www.linux-iscsi.org
9435 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9436 F: drivers/infiniband/ulp/isert
9437
9438 ISDN/CMTP OVER BLUETOOTH
9439 M: Karsten Keil <isdn@linux-pingi.de>
9440 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9441 L: netdev@vger.kernel.org
9442 S: Odd Fixes
9443 W: http://www.isdn4linux.de
9444 F: Documentation/isdn/
9445 F: drivers/isdn/capi/
9446 F: include/linux/isdn/
9447 F: include/uapi/linux/isdn/
9448 F: net/bluetooth/cmtp/
9449
9450 ISDN/mISDN SUBSYSTEM
9451 M: Karsten Keil <isdn@linux-pingi.de>
9452 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9453 L: netdev@vger.kernel.org
9454 S: Maintained
9455 W: http://www.isdn4linux.de
9456 F: drivers/isdn/Kconfig
9457 F: drivers/isdn/Makefile
9458 F: drivers/isdn/hardware/
9459 F: drivers/isdn/mISDN/
9460
9461 IT87 HARDWARE MONITORING DRIVER
9462 M: Jean Delvare <jdelvare@suse.com>
9463 L: linux-hwmon@vger.kernel.org
9464 S: Maintained
9465 F: Documentation/hwmon/it87.rst
9466 F: drivers/hwmon/it87.c
9467
9468 IT913X MEDIA DRIVER
9469 M: Antti Palosaari <crope@iki.fi>
9470 L: linux-media@vger.kernel.org
9471 S: Maintained
9472 W: https://linuxtv.org
9473 W: http://palosaari.fi/linux/
9474 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9475 T: git git://linuxtv.org/anttip/media_tree.git
9476 F: drivers/media/tuners/it913x*
9477
9478 IVTV VIDEO4LINUX DRIVER
9479 M: Andy Walls <awalls@md.metrocast.net>
9480 L: linux-media@vger.kernel.org
9481 S: Maintained
9482 W: https://linuxtv.org
9483 T: git git://linuxtv.org/media_tree.git
9484 F: Documentation/admin-guide/media/ivtv*
9485 F: drivers/media/pci/ivtv/
9486 F: include/uapi/linux/ivtv*
9487
9488 IX2505V MEDIA DRIVER
9489 M: Malcolm Priestley <tvboxspy@gmail.com>
9490 L: linux-media@vger.kernel.org
9491 S: Maintained
9492 W: https://linuxtv.org
9493 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9494 F: drivers/media/dvb-frontends/ix2505v*
9495
9496 JAILHOUSE HYPERVISOR INTERFACE
9497 M: Jan Kiszka <jan.kiszka@siemens.com>
9498 L: jailhouse-dev@googlegroups.com
9499 S: Maintained
9500 F: arch/x86/include/asm/jailhouse_para.h
9501 F: arch/x86/kernel/jailhouse.c
9502
9503 JC42.4 TEMPERATURE SENSOR DRIVER
9504 M: Guenter Roeck <linux@roeck-us.net>
9505 L: linux-hwmon@vger.kernel.org
9506 S: Maintained
9507 F: Documentation/hwmon/jc42.rst
9508 F: drivers/hwmon/jc42.c
9509
9510 JFS FILESYSTEM
9511 M: Dave Kleikamp <shaggy@kernel.org>
9512 L: jfs-discussion@lists.sourceforge.net
9513 S: Maintained
9514 W: http://jfs.sourceforge.net/
9515 T: git git://github.com/kleikamp/linux-shaggy.git
9516 F: Documentation/admin-guide/jfs.rst
9517 F: fs/jfs/
9518
9519 JME NETWORK DRIVER
9520 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
9521 L: netdev@vger.kernel.org
9522 S: Maintained
9523 F: drivers/net/ethernet/jme.*
9524
9525 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9526 M: David Woodhouse <dwmw2@infradead.org>
9527 M: Richard Weinberger <richard@nod.at>
9528 L: linux-mtd@lists.infradead.org
9529 S: Odd Fixes
9530 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
9531 T: git git://git.infradead.org/ubifs-2.6.git
9532 F: fs/jffs2/
9533 F: include/uapi/linux/jffs2.h
9534
9535 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9536 M: "Theodore Ts'o" <tytso@mit.edu>
9537 M: Jan Kara <jack@suse.com>
9538 L: linux-ext4@vger.kernel.org
9539 S: Maintained
9540 F: fs/jbd2/
9541 F: include/linux/jbd2.h
9542
9543 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9544 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9545 L: linux-media@vger.kernel.org
9546 S: Maintained
9547 F: drivers/media/platform/rcar_jpu.c
9548
9549 JSM Neo PCI based serial card
9550 L: linux-serial@vger.kernel.org
9551 S: Orphan
9552 F: drivers/tty/serial/jsm/
9553
9554 K10TEMP HARDWARE MONITORING DRIVER
9555 M: Clemens Ladisch <clemens@ladisch.de>
9556 L: linux-hwmon@vger.kernel.org
9557 S: Maintained
9558 F: Documentation/hwmon/k10temp.rst
9559 F: drivers/hwmon/k10temp.c
9560
9561 K8TEMP HARDWARE MONITORING DRIVER
9562 M: Rudolf Marek <r.marek@assembler.cz>
9563 L: linux-hwmon@vger.kernel.org
9564 S: Maintained
9565 F: Documentation/hwmon/k8temp.rst
9566 F: drivers/hwmon/k8temp.c
9567
9568 KASAN
9569 M: Andrey Ryabinin <aryabinin@virtuozzo.com>
9570 R: Alexander Potapenko <glider@google.com>
9571 R: Dmitry Vyukov <dvyukov@google.com>
9572 L: kasan-dev@googlegroups.com
9573 S: Maintained
9574 F: Documentation/dev-tools/kasan.rst
9575 F: arch/*/include/asm/kasan.h
9576 F: arch/*/mm/kasan_init*
9577 F: include/linux/kasan*.h
9578 F: lib/test_kasan.c
9579 F: mm/kasan/
9580 F: scripts/Makefile.kasan
9581
9582 KCONFIG
9583 M: Masahiro Yamada <masahiroy@kernel.org>
9584 L: linux-kbuild@vger.kernel.org
9585 S: Maintained
9586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9587 F: Documentation/kbuild/kconfig*
9588 F: scripts/Kconfig.include
9589 F: scripts/kconfig/
9590
9591 KCOV
9592 R: Dmitry Vyukov <dvyukov@google.com>
9593 R: Andrey Konovalov <andreyknvl@google.com>
9594 L: kasan-dev@googlegroups.com
9595 S: Maintained
9596 F: Documentation/dev-tools/kcov.rst
9597 F: include/linux/kcov.h
9598 F: include/uapi/linux/kcov.h
9599 F: kernel/kcov.c
9600 F: scripts/Makefile.kcov
9601
9602 KCSAN
9603 M: Marco Elver <elver@google.com>
9604 R: Dmitry Vyukov <dvyukov@google.com>
9605 L: kasan-dev@googlegroups.com
9606 S: Maintained
9607 F: Documentation/dev-tools/kcsan.rst
9608 F: include/linux/kcsan*.h
9609 F: kernel/kcsan/
9610 F: lib/Kconfig.kcsan
9611 F: scripts/Makefile.kcsan
9612
9613 KDUMP
9614 M: Dave Young <dyoung@redhat.com>
9615 M: Baoquan He <bhe@redhat.com>
9616 R: Vivek Goyal <vgoyal@redhat.com>
9617 L: kexec@lists.infradead.org
9618 S: Maintained
9619 W: http://lse.sourceforge.net/kdump/
9620 F: Documentation/admin-guide/kdump/
9621 F: fs/proc/vmcore.c
9622 F: include/linux/crash_core.h
9623 F: include/linux/crash_dump.h
9624 F: include/uapi/linux/vmcore.h
9625 F: kernel/crash_*.c
9626
9627 KEENE FM RADIO TRANSMITTER DRIVER
9628 M: Hans Verkuil <hverkuil@xs4all.nl>
9629 L: linux-media@vger.kernel.org
9630 S: Maintained
9631 W: https://linuxtv.org
9632 T: git git://linuxtv.org/media_tree.git
9633 F: drivers/media/radio/radio-keene*
9634
9635 KERNEL AUTOMOUNTER
9636 M: Ian Kent <raven@themaw.net>
9637 L: autofs@vger.kernel.org
9638 S: Maintained
9639 F: fs/autofs/
9640
9641 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9642 M: Masahiro Yamada <masahiroy@kernel.org>
9643 M: Michal Marek <michal.lkml@markovi.net>
9644 L: linux-kbuild@vger.kernel.org
9645 S: Maintained
9646 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9647 F: Documentation/kbuild/
9648 F: Makefile
9649 F: scripts/*vmlinux*
9650 F: scripts/Kbuild*
9651 F: scripts/Makefile*
9652 F: scripts/basic/
9653 F: scripts/mk*
9654 F: scripts/mod/
9655 F: scripts/package/
9656
9657 KERNEL JANITORS
9658 L: kernel-janitors@vger.kernel.org
9659 S: Odd Fixes
9660 W: http://kernelnewbies.org/KernelJanitors
9661
9662 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9663 M: "J. Bruce Fields" <bfields@fieldses.org>
9664 M: Chuck Lever <chuck.lever@oracle.com>
9665 L: linux-nfs@vger.kernel.org
9666 S: Supported
9667 W: http://nfs.sourceforge.net/
9668 T: git git://linux-nfs.org/~bfields/linux.git
9669 F: fs/lockd/
9670 F: fs/nfs_common/
9671 F: fs/nfsd/
9672 F: include/linux/lockd/
9673 F: include/linux/sunrpc/
9674 F: include/uapi/linux/nfsd/
9675 F: include/uapi/linux/sunrpc/
9676 F: net/sunrpc/
9677 F: Documentation/filesystems/nfs/
9678
9679 KERNEL SELFTEST FRAMEWORK
9680 M: Shuah Khan <shuah@kernel.org>
9681 M: Shuah Khan <skhan@linuxfoundation.org>
9682 L: linux-kselftest@vger.kernel.org
9683 S: Maintained
9684 Q: https://patchwork.kernel.org/project/linux-kselftest/list/
9685 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9686 F: Documentation/dev-tools/kselftest*
9687 F: tools/testing/selftests/
9688
9689 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9690 M: Brendan Higgins <brendanhiggins@google.com>
9691 L: linux-kselftest@vger.kernel.org
9692 L: kunit-dev@googlegroups.com
9693 S: Maintained
9694 W: https://google.github.io/kunit-docs/third_party/kernel/docs/
9695 F: Documentation/dev-tools/kunit/
9696 F: include/kunit/
9697 F: lib/kunit/
9698 F: tools/testing/kunit/
9699
9700 KERNEL USERMODE HELPER
9701 M: Luis Chamberlain <mcgrof@kernel.org>
9702 L: linux-kernel@vger.kernel.org
9703 S: Maintained
9704 F: include/linux/umh.h
9705 F: kernel/umh.c
9706
9707 KERNEL VIRTUAL MACHINE (KVM)
9708 M: Paolo Bonzini <pbonzini@redhat.com>
9709 L: kvm@vger.kernel.org
9710 S: Supported
9711 W: http://www.linux-kvm.org
9712 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9713 F: Documentation/virt/kvm/
9714 F: include/asm-generic/kvm*
9715 F: include/kvm/iodev.h
9716 F: include/linux/kvm*
9717 F: include/trace/events/kvm.h
9718 F: include/uapi/asm-generic/kvm*
9719 F: include/uapi/linux/kvm*
9720 F: tools/kvm/
9721 F: tools/testing/selftests/kvm/
9722 F: virt/kvm/*
9723
9724 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9725 M: Marc Zyngier <maz@kernel.org>
9726 R: James Morse <james.morse@arm.com>
9727 R: Julien Thierry <julien.thierry.kdev@gmail.com>
9728 R: Suzuki K Poulose <suzuki.poulose@arm.com>
9729 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9730 L: kvmarm@lists.cs.columbia.edu
9731 S: Maintained
9732 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9733 F: arch/arm64/include/asm/kvm*
9734 F: arch/arm64/include/uapi/asm/kvm*
9735 F: arch/arm64/kvm/
9736 F: include/kvm/arm_*
9737
9738 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9739 M: Huacai Chen <chenhuacai@kernel.org>
9740 M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9741 L: linux-mips@vger.kernel.org
9742 L: kvm@vger.kernel.org
9743 S: Maintained
9744 F: arch/mips/include/asm/kvm*
9745 F: arch/mips/include/uapi/asm/kvm*
9746 F: arch/mips/kvm/
9747
9748 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9749 M: Paul Mackerras <paulus@ozlabs.org>
9750 L: kvm-ppc@vger.kernel.org
9751 S: Supported
9752 W: http://www.linux-kvm.org/
9753 T: git git://github.com/agraf/linux-2.6.git
9754 F: arch/powerpc/include/asm/kvm*
9755 F: arch/powerpc/include/uapi/asm/kvm*
9756 F: arch/powerpc/kernel/kvm*
9757 F: arch/powerpc/kvm/
9758
9759 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9760 M: Christian Borntraeger <borntraeger@de.ibm.com>
9761 M: Janosch Frank <frankja@linux.ibm.com>
9762 R: David Hildenbrand <david@redhat.com>
9763 R: Cornelia Huck <cohuck@redhat.com>
9764 R: Claudio Imbrenda <imbrenda@linux.ibm.com>
9765 L: kvm@vger.kernel.org
9766 S: Supported
9767 W: http://www.ibm.com/developerworks/linux/linux390/
9768 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9769 F: Documentation/virt/kvm/s390*
9770 F: arch/s390/include/asm/gmap.h
9771 F: arch/s390/include/asm/kvm*
9772 F: arch/s390/include/uapi/asm/kvm*
9773 F: arch/s390/kernel/uv.c
9774 F: arch/s390/kvm/
9775 F: arch/s390/mm/gmap.c
9776 F: tools/testing/selftests/kvm/*/s390x/
9777 F: tools/testing/selftests/kvm/s390x/
9778
9779 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9780 M: Paolo Bonzini <pbonzini@redhat.com>
9781 R: Sean Christopherson <sean.j.christopherson@intel.com>
9782 R: Vitaly Kuznetsov <vkuznets@redhat.com>
9783 R: Wanpeng Li <wanpengli@tencent.com>
9784 R: Jim Mattson <jmattson@google.com>
9785 R: Joerg Roedel <joro@8bytes.org>
9786 L: kvm@vger.kernel.org
9787 S: Supported
9788 W: http://www.linux-kvm.org
9789 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9790 F: arch/x86/include/asm/kvm*
9791 F: arch/x86/include/asm/pvclock-abi.h
9792 F: arch/x86/include/asm/svm.h
9793 F: arch/x86/include/asm/vmx*.h
9794 F: arch/x86/include/uapi/asm/kvm*
9795 F: arch/x86/include/uapi/asm/svm.h
9796 F: arch/x86/include/uapi/asm/vmx.h
9797 F: arch/x86/kernel/kvm.c
9798 F: arch/x86/kernel/kvmclock.c
9799 F: arch/x86/kvm/
9800 F: arch/x86/kvm/*/
9801
9802 KERNFS
9803 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9804 M: Tejun Heo <tj@kernel.org>
9805 S: Supported
9806 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9807 F: fs/kernfs/
9808 F: include/linux/kernfs.h
9809
9810 KEXEC
9811 M: Eric Biederman <ebiederm@xmission.com>
9812 L: kexec@lists.infradead.org
9813 S: Maintained
9814 W: http://kernel.org/pub/linux/utils/kernel/kexec/
9815 F: include/linux/kexec.h
9816 F: include/uapi/linux/kexec.h
9817 F: kernel/kexec*
9818
9819 KEYS-ENCRYPTED
9820 M: Mimi Zohar <zohar@linux.ibm.com>
9821 L: linux-integrity@vger.kernel.org
9822 L: keyrings@vger.kernel.org
9823 S: Supported
9824 F: Documentation/security/keys/trusted-encrypted.rst
9825 F: include/keys/encrypted-type.h
9826 F: security/keys/encrypted-keys/
9827
9828 KEYS-TRUSTED
9829 M: James Bottomley <jejb@linux.ibm.com>
9830 M: Jarkko Sakkinen <jarkko@kernel.org>
9831 M: Mimi Zohar <zohar@linux.ibm.com>
9832 L: linux-integrity@vger.kernel.org
9833 L: keyrings@vger.kernel.org
9834 S: Supported
9835 F: Documentation/security/keys/trusted-encrypted.rst
9836 F: include/keys/trusted-type.h
9837 F: include/keys/trusted_tpm.h
9838 F: security/keys/trusted-keys/
9839
9840 KEYS/KEYRINGS
9841 M: David Howells <dhowells@redhat.com>
9842 M: Jarkko Sakkinen <jarkko@kernel.org>
9843 L: keyrings@vger.kernel.org
9844 S: Maintained
9845 F: Documentation/security/keys/core.rst
9846 F: include/keys/
9847 F: include/linux/key-type.h
9848 F: include/linux/key.h
9849 F: include/linux/keyctl.h
9850 F: include/uapi/linux/keyctl.h
9851 F: security/keys/
9852
9853 KFIFO
9854 M: Stefani Seibold <stefani@seibold.net>
9855 S: Maintained
9856 F: include/linux/kfifo.h
9857 F: lib/kfifo.c
9858 F: samples/kfifo/
9859
9860 KGDB / KDB /debug_core
9861 M: Jason Wessel <jason.wessel@windriver.com>
9862 M: Daniel Thompson <daniel.thompson@linaro.org>
9863 R: Douglas Anderson <dianders@chromium.org>
9864 L: kgdb-bugreport@lists.sourceforge.net
9865 S: Maintained
9866 W: http://kgdb.wiki.kernel.org/
9867 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9868 F: Documentation/dev-tools/kgdb.rst
9869 F: drivers/misc/kgdbts.c
9870 F: drivers/tty/serial/kgdboc.c
9871 F: include/linux/kdb.h
9872 F: include/linux/kgdb.h
9873 F: kernel/debug/
9874
9875 KHADAS MCU MFD DRIVER
9876 M: Neil Armstrong <narmstrong@baylibre.com>
9877 L: linux-amlogic@lists.infradead.org
9878 S: Maintained
9879 F: Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9880 F: drivers/mfd/khadas-mcu.c
9881 F: include/linux/mfd/khadas-mcu.h
9882 F: drivers/thermal/khadas_mcu_fan.c
9883
9884 KMEMLEAK
9885 M: Catalin Marinas <catalin.marinas@arm.com>
9886 S: Maintained
9887 F: Documentation/dev-tools/kmemleak.rst
9888 F: include/linux/kmemleak.h
9889 F: mm/kmemleak.c
9890 F: samples/kmemleak/kmemleak-test.c
9891
9892 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9893 M: Luis Chamberlain <mcgrof@kernel.org>
9894 L: linux-kernel@vger.kernel.org
9895 S: Maintained
9896 F: include/linux/kmod.h
9897 F: kernel/kmod.c
9898 F: lib/test_kmod.c
9899 F: tools/testing/selftests/kmod/
9900
9901 KPROBES
9902 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9903 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9904 M: "David S. Miller" <davem@davemloft.net>
9905 M: Masami Hiramatsu <mhiramat@kernel.org>
9906 S: Maintained
9907 F: Documentation/trace/kprobes.rst
9908 F: include/asm-generic/kprobes.h
9909 F: include/linux/kprobes.h
9910 F: kernel/kprobes.c
9911
9912 KS0108 LCD CONTROLLER DRIVER
9913 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9914 S: Maintained
9915 F: Documentation/admin-guide/auxdisplay/ks0108.rst
9916 F: drivers/auxdisplay/ks0108.c
9917 F: include/linux/ks0108.h
9918
9919 KTD253 BACKLIGHT DRIVER
9920 M: Linus Walleij <linus.walleij@linaro.org>
9921 S: Maintained
9922 F: Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9923 F: drivers/video/backlight/ktd253-backlight.c
9924
9925 L3MDEV
9926 M: David Ahern <dsahern@kernel.org>
9927 L: netdev@vger.kernel.org
9928 S: Maintained
9929 F: include/net/l3mdev.h
9930 F: net/l3mdev
9931
9932 L7 BPF FRAMEWORK
9933 M: John Fastabend <john.fastabend@gmail.com>
9934 M: Daniel Borkmann <daniel@iogearbox.net>
9935 M: Jakub Sitnicki <jakub@cloudflare.com>
9936 M: Lorenz Bauer <lmb@cloudflare.com>
9937 L: netdev@vger.kernel.org
9938 L: bpf@vger.kernel.org
9939 S: Maintained
9940 F: include/linux/skmsg.h
9941 F: net/core/skmsg.c
9942 F: net/core/sock_map.c
9943 F: net/ipv4/tcp_bpf.c
9944 F: net/ipv4/udp_bpf.c
9945
9946 LANTIQ / INTEL Ethernet drivers
9947 M: Hauke Mehrtens <hauke@hauke-m.de>
9948 L: netdev@vger.kernel.org
9949 S: Maintained
9950 F: drivers/net/dsa/lantiq_gswip.c
9951 F: drivers/net/dsa/lantiq_pce.h
9952 F: drivers/net/ethernet/lantiq_xrx200.c
9953 F: net/dsa/tag_gswip.c
9954
9955 LANTIQ MIPS ARCHITECTURE
9956 M: John Crispin <john@phrozen.org>
9957 L: linux-mips@vger.kernel.org
9958 S: Maintained
9959 F: arch/mips/lantiq
9960 F: drivers/soc/lantiq
9961
9962 LASI 53c700 driver for PARISC
9963 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9964 L: linux-scsi@vger.kernel.org
9965 S: Maintained
9966 F: Documentation/scsi/53c700.rst
9967 F: drivers/scsi/53c700*
9968
9969 LEAKING_ADDRESSES
9970 M: Tobin C. Harding <me@tobin.cc>
9971 M: Tycho Andersen <tycho@tycho.pizza>
9972 L: linux-hardening@vger.kernel.org
9973 S: Maintained
9974 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9975 F: scripts/leaking_addresses.pl
9976
9977 LED SUBSYSTEM
9978 M: Pavel Machek <pavel@ucw.cz>
9979 R: Dan Murphy <dmurphy@ti.com>
9980 L: linux-leds@vger.kernel.org
9981 S: Maintained
9982 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9983 F: Documentation/devicetree/bindings/leds/
9984 F: drivers/leds/
9985 F: include/linux/leds.h
9986
9987 LEGACY EEPROM DRIVER
9988 M: Jean Delvare <jdelvare@suse.com>
9989 S: Maintained
9990 F: Documentation/misc-devices/eeprom.rst
9991 F: drivers/misc/eeprom/eeprom.c
9992
9993 LEGO MINDSTORMS EV3
9994 R: David Lechner <david@lechnology.com>
9995 S: Maintained
9996 F: Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9997 F: arch/arm/boot/dts/da850-lego-ev3.dts
9998 F: drivers/power/supply/lego_ev3_battery.c
9999
10000 LEGO USB Tower driver
10001 M: Juergen Stuber <starblue@users.sourceforge.net>
10002 L: legousb-devel@lists.sourceforge.net
10003 S: Maintained
10004 W: http://legousb.sourceforge.net/
10005 F: drivers/usb/misc/legousbtower.c
10006
10007 LG LAPTOP EXTRAS
10008 M: Matan Ziv-Av <matan@svgalib.org>
10009 L: platform-driver-x86@vger.kernel.org
10010 S: Maintained
10011 F: Documentation/ABI/testing/sysfs-platform-lg-laptop
10012 F: Documentation/admin-guide/laptops/lg-laptop.rst
10013 F: drivers/platform/x86/lg-laptop.c
10014
10015 LG2160 MEDIA DRIVER
10016 M: Michael Krufky <mkrufky@linuxtv.org>
10017 L: linux-media@vger.kernel.org
10018 S: Maintained
10019 W: https://linuxtv.org
10020 W: http://github.com/mkrufky
10021 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10022 T: git git://linuxtv.org/mkrufky/tuners.git
10023 F: drivers/media/dvb-frontends/lg2160.*
10024
10025 LGDT3305 MEDIA DRIVER
10026 M: Michael Krufky <mkrufky@linuxtv.org>
10027 L: linux-media@vger.kernel.org
10028 S: Maintained
10029 W: https://linuxtv.org
10030 W: http://github.com/mkrufky
10031 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10032 T: git git://linuxtv.org/mkrufky/tuners.git
10033 F: drivers/media/dvb-frontends/lgdt3305.*
10034
10035 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10036 M: Viresh Kumar <vireshk@kernel.org>
10037 L: linux-ide@vger.kernel.org
10038 S: Maintained
10039 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10040 F: drivers/ata/pata_arasan_cf.c
10041 F: include/linux/pata_arasan_cf_data.h
10042
10043 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10044 M: Linus Walleij <linus.walleij@linaro.org>
10045 L: linux-ide@vger.kernel.org
10046 S: Maintained
10047 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10048 F: drivers/ata/pata_ftide010.c
10049 F: drivers/ata/sata_gemini.c
10050 F: drivers/ata/sata_gemini.h
10051
10052 LIBATA SATA AHCI PLATFORM devices support
10053 M: Hans de Goede <hdegoede@redhat.com>
10054 M: Jens Axboe <axboe@kernel.dk>
10055 L: linux-ide@vger.kernel.org
10056 S: Maintained
10057 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10058 F: drivers/ata/ahci_platform.c
10059 F: drivers/ata/libahci_platform.c
10060 F: include/linux/ahci_platform.h
10061
10062 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10063 M: Mikael Pettersson <mikpelinux@gmail.com>
10064 L: linux-ide@vger.kernel.org
10065 S: Maintained
10066 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10067 F: drivers/ata/sata_promise.*
10068
10069 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10070 M: Jens Axboe <axboe@kernel.dk>
10071 L: linux-ide@vger.kernel.org
10072 S: Maintained
10073 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10074 F: Documentation/devicetree/bindings/ata/
10075 F: drivers/ata/
10076 F: include/linux/ata.h
10077 F: include/linux/libata.h
10078
10079 LIBLOCKDEP
10080 M: Sasha Levin <alexander.levin@microsoft.com>
10081 S: Maintained
10082 F: tools/lib/lockdep/
10083
10084 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10085 M: Dan Williams <dan.j.williams@intel.com>
10086 M: Vishal Verma <vishal.l.verma@intel.com>
10087 M: Dave Jiang <dave.jiang@intel.com>
10088 L: linux-nvdimm@lists.01.org
10089 S: Supported
10090 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10091 P: Documentation/nvdimm/maintainer-entry-profile.rst
10092 F: drivers/nvdimm/blk.c
10093 F: drivers/nvdimm/region_devs.c
10094
10095 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10096 M: Vishal Verma <vishal.l.verma@intel.com>
10097 M: Dan Williams <dan.j.williams@intel.com>
10098 M: Dave Jiang <dave.jiang@intel.com>
10099 L: linux-nvdimm@lists.01.org
10100 S: Supported
10101 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10102 P: Documentation/nvdimm/maintainer-entry-profile.rst
10103 F: drivers/nvdimm/btt*
10104
10105 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10106 M: Dan Williams <dan.j.williams@intel.com>
10107 M: Vishal Verma <vishal.l.verma@intel.com>
10108 M: Dave Jiang <dave.jiang@intel.com>
10109 L: linux-nvdimm@lists.01.org
10110 S: Supported
10111 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10112 P: Documentation/nvdimm/maintainer-entry-profile.rst
10113 F: drivers/nvdimm/pmem*
10114
10115 LIBNVDIMM: DEVICETREE BINDINGS
10116 M: Oliver O'Halloran <oohall@gmail.com>
10117 L: linux-nvdimm@lists.01.org
10118 S: Supported
10119 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10120 F: Documentation/devicetree/bindings/pmem/pmem-region.txt
10121 F: drivers/nvdimm/of_pmem.c
10122
10123 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10124 M: Dan Williams <dan.j.williams@intel.com>
10125 M: Vishal Verma <vishal.l.verma@intel.com>
10126 M: Dave Jiang <dave.jiang@intel.com>
10127 M: Ira Weiny <ira.weiny@intel.com>
10128 L: linux-nvdimm@lists.01.org
10129 S: Supported
10130 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10131 P: Documentation/nvdimm/maintainer-entry-profile.rst
10132 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10133 F: drivers/acpi/nfit/*
10134 F: drivers/nvdimm/*
10135 F: include/linux/libnvdimm.h
10136 F: include/linux/nd.h
10137 F: include/uapi/linux/ndctl.h
10138 F: tools/testing/nvdimm/
10139
10140 LICENSES and SPDX stuff
10141 M: Thomas Gleixner <tglx@linutronix.de>
10142 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10143 L: linux-spdx@vger.kernel.org
10144 S: Maintained
10145 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10146 F: COPYING
10147 F: Documentation/process/license-rules.rst
10148 F: LICENSES/
10149 F: scripts/spdxcheck-test.sh
10150 F: scripts/spdxcheck.py
10151
10152 LIGHTNVM PLATFORM SUPPORT
10153 M: Matias Bjorling <mb@lightnvm.io>
10154 L: linux-block@vger.kernel.org
10155 S: Maintained
10156 W: http://github/OpenChannelSSD
10157 F: drivers/lightnvm/
10158 F: include/linux/lightnvm.h
10159 F: include/uapi/linux/lightnvm.h
10160
10161 LINEAR RANGES HELPERS
10162 M: Mark Brown <broonie@kernel.org>
10163 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10164 F: lib/linear_ranges.c
10165 F: lib/test_linear_ranges.c
10166 F: include/linux/linear_range.h
10167
10168 LINUX FOR POWER MACINTOSH
10169 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10170 L: linuxppc-dev@lists.ozlabs.org
10171 S: Odd Fixes
10172 F: arch/powerpc/platforms/powermac/
10173 F: drivers/macintosh/
10174
10175 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10176 M: Michael Ellerman <mpe@ellerman.id.au>
10177 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10178 R: Paul Mackerras <paulus@samba.org>
10179 L: linuxppc-dev@lists.ozlabs.org
10180 S: Supported
10181 W: https://github.com/linuxppc/wiki/wiki
10182 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10183 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10184 F: Documentation/ABI/stable/sysfs-firmware-opal-*
10185 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
10186 F: Documentation/devicetree/bindings/powerpc/
10187 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
10188 F: Documentation/powerpc/
10189 F: arch/powerpc/
10190 F: drivers/*/*/*pasemi*
10191 F: drivers/*/*pasemi*
10192 F: drivers/char/tpm/tpm_ibmvtpm*
10193 F: drivers/crypto/nx/
10194 F: drivers/crypto/vmx/
10195 F: drivers/i2c/busses/i2c-opal.c
10196 F: drivers/net/ethernet/ibm/ibmveth.*
10197 F: drivers/net/ethernet/ibm/ibmvnic.*
10198 F: drivers/pci/hotplug/pnv_php.c
10199 F: drivers/pci/hotplug/rpa*
10200 F: drivers/rtc/rtc-opal.c
10201 F: drivers/scsi/ibmvscsi/
10202 F: drivers/tty/hvc/hvc_opal.c
10203 F: drivers/watchdog/wdrtas.c
10204 F: tools/testing/selftests/powerpc
10205 N: /pmac
10206 N: powermac
10207 N: powernv
10208 N: [^a-z0-9]ps3
10209 N: pseries
10210
10211 LINUX FOR POWERPC EMBEDDED MPC5XXX
10212 M: Anatolij Gustschin <agust@denx.de>
10213 L: linuxppc-dev@lists.ozlabs.org
10214 S: Odd Fixes
10215 F: arch/powerpc/platforms/512x/
10216 F: arch/powerpc/platforms/52xx/
10217
10218 LINUX FOR POWERPC EMBEDDED PPC4XX
10219 L: linuxppc-dev@lists.ozlabs.org
10220 S: Orphan
10221 F: arch/powerpc/platforms/40x/
10222 F: arch/powerpc/platforms/44x/
10223
10224 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10225 M: Scott Wood <oss@buserror.net>
10226 L: linuxppc-dev@lists.ozlabs.org
10227 S: Odd fixes
10228 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10229 F: Documentation/devicetree/bindings/powerpc/fsl/
10230 F: arch/powerpc/platforms/83xx/
10231 F: arch/powerpc/platforms/85xx/
10232
10233 LINUX FOR POWERPC EMBEDDED PPC8XX
10234 M: Christophe Leroy <christophe.leroy@csgroup.eu>
10235 L: linuxppc-dev@lists.ozlabs.org
10236 S: Maintained
10237 F: arch/powerpc/platforms/8xx/
10238
10239 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10240 M: Kees Cook <keescook@chromium.org>
10241 S: Maintained
10242 F: drivers/misc/lkdtm/*
10243 F: tools/testing/selftests/lkdtm/*
10244
10245 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10246 M: Alan Stern <stern@rowland.harvard.edu>
10247 M: Andrea Parri <parri.andrea@gmail.com>
10248 M: Will Deacon <will@kernel.org>
10249 M: Peter Zijlstra <peterz@infradead.org>
10250 M: Boqun Feng <boqun.feng@gmail.com>
10251 M: Nicholas Piggin <npiggin@gmail.com>
10252 M: David Howells <dhowells@redhat.com>
10253 M: Jade Alglave <j.alglave@ucl.ac.uk>
10254 M: Luc Maranget <luc.maranget@inria.fr>
10255 M: "Paul E. McKenney" <paulmck@kernel.org>
10256 R: Akira Yokosawa <akiyks@gmail.com>
10257 R: Daniel Lustig <dlustig@nvidia.com>
10258 R: Joel Fernandes <joel@joelfernandes.org>
10259 L: linux-kernel@vger.kernel.org
10260 L: linux-arch@vger.kernel.org
10261 S: Supported
10262 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10263 F: Documentation/atomic_bitops.txt
10264 F: Documentation/atomic_t.txt
10265 F: Documentation/core-api/atomic_ops.rst
10266 F: Documentation/core-api/refcount-vs-atomic.rst
10267 F: Documentation/litmus-tests/
10268 F: Documentation/memory-barriers.txt
10269 F: tools/memory-model/
10270
10271 LIS3LV02D ACCELEROMETER DRIVER
10272 M: Eric Piel <eric.piel@tremplin-utc.net>
10273 S: Maintained
10274 F: Documentation/misc-devices/lis3lv02d.rst
10275 F: drivers/misc/lis3lv02d/
10276 F: drivers/platform/x86/hp_accel.c
10277
10278 LIST KUNIT TEST
10279 M: David Gow <davidgow@google.com>
10280 L: linux-kselftest@vger.kernel.org
10281 L: kunit-dev@googlegroups.com
10282 S: Maintained
10283 F: lib/list-test.c
10284
10285 LITEX PLATFORM
10286 M: Karol Gugala <kgugala@antmicro.com>
10287 M: Mateusz Holenko <mholenko@antmicro.com>
10288 S: Maintained
10289 F: Documentation/devicetree/bindings/*/litex,*.yaml
10290 F: arch/openrisc/boot/dts/or1klitex.dts
10291 F: drivers/soc/litex/litex_soc_ctrl.c
10292 F: drivers/tty/serial/liteuart.c
10293 F: include/linux/litex.h
10294
10295 LIVE PATCHING
10296 M: Josh Poimboeuf <jpoimboe@redhat.com>
10297 M: Jiri Kosina <jikos@kernel.org>
10298 M: Miroslav Benes <mbenes@suse.cz>
10299 M: Petr Mladek <pmladek@suse.com>
10300 R: Joe Lawrence <joe.lawrence@redhat.com>
10301 L: live-patching@vger.kernel.org
10302 S: Maintained
10303 T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10304 F: Documentation/ABI/testing/sysfs-kernel-livepatch
10305 F: Documentation/livepatch/
10306 F: arch/powerpc/include/asm/livepatch.h
10307 F: arch/s390/include/asm/livepatch.h
10308 F: arch/x86/include/asm/livepatch.h
10309 F: include/linux/livepatch.h
10310 F: kernel/livepatch/
10311 F: lib/livepatch/
10312 F: samples/livepatch/
10313 F: tools/testing/selftests/livepatch/
10314
10315 LLC (802.2)
10316 L: netdev@vger.kernel.org
10317 S: Odd fixes
10318 F: include/linux/llc.h
10319 F: include/net/llc*
10320 F: include/uapi/linux/llc.h
10321 F: net/llc/
10322
10323 LM73 HARDWARE MONITOR DRIVER
10324 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
10325 L: linux-hwmon@vger.kernel.org
10326 S: Maintained
10327 F: drivers/hwmon/lm73.c
10328
10329 LM78 HARDWARE MONITOR DRIVER
10330 M: Jean Delvare <jdelvare@suse.com>
10331 L: linux-hwmon@vger.kernel.org
10332 S: Maintained
10333 F: Documentation/hwmon/lm78.rst
10334 F: drivers/hwmon/lm78.c
10335
10336 LM83 HARDWARE MONITOR DRIVER
10337 M: Jean Delvare <jdelvare@suse.com>
10338 L: linux-hwmon@vger.kernel.org
10339 S: Maintained
10340 F: Documentation/hwmon/lm83.rst
10341 F: drivers/hwmon/lm83.c
10342
10343 LM90 HARDWARE MONITOR DRIVER
10344 M: Jean Delvare <jdelvare@suse.com>
10345 L: linux-hwmon@vger.kernel.org
10346 S: Maintained
10347 F: Documentation/devicetree/bindings/hwmon/lm90.txt
10348 F: Documentation/hwmon/lm90.rst
10349 F: drivers/hwmon/lm90.c
10350 F: include/dt-bindings/thermal/lm90.h
10351
10352 LM95234 HARDWARE MONITOR DRIVER
10353 M: Guenter Roeck <linux@roeck-us.net>
10354 L: linux-hwmon@vger.kernel.org
10355 S: Maintained
10356 F: Documentation/hwmon/lm95234.rst
10357 F: drivers/hwmon/lm95234.c
10358
10359 LME2510 MEDIA DRIVER
10360 M: Malcolm Priestley <tvboxspy@gmail.com>
10361 L: linux-media@vger.kernel.org
10362 S: Maintained
10363 W: https://linuxtv.org
10364 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10365 F: drivers/media/usb/dvb-usb-v2/lmedm04*
10366
10367 LOADPIN SECURITY MODULE
10368 M: Kees Cook <keescook@chromium.org>
10369 S: Supported
10370 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10371 F: Documentation/admin-guide/LSM/LoadPin.rst
10372 F: security/loadpin/
10373
10374 LOCKING PRIMITIVES
10375 M: Peter Zijlstra <peterz@infradead.org>
10376 M: Ingo Molnar <mingo@redhat.com>
10377 M: Will Deacon <will@kernel.org>
10378 L: linux-kernel@vger.kernel.org
10379 S: Maintained
10380 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10381 F: Documentation/locking/
10382 F: arch/*/include/asm/spinlock*.h
10383 F: include/linux/lockdep.h
10384 F: include/linux/mutex*.h
10385 F: include/linux/rwlock*.h
10386 F: include/linux/rwsem*.h
10387 F: include/linux/seqlock.h
10388 F: include/linux/spinlock*.h
10389 F: kernel/locking/
10390 F: lib/locking*.[ch]
10391 X: kernel/locking/locktorture.c
10392
10393 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10394 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
10395 L: linux-ntfs-dev@lists.sourceforge.net
10396 S: Maintained
10397 W: http://www.linux-ntfs.org/content/view/19/37/
10398 F: Documentation/admin-guide/ldm.rst
10399 F: block/partitions/ldm.*
10400
10401 LOGITECH HID GAMING KEYBOARDS
10402 M: Hans de Goede <hdegoede@redhat.com>
10403 L: linux-input@vger.kernel.org
10404 S: Maintained
10405 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10406 F: drivers/hid/hid-lg-g15.c
10407
10408 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10409 M: Sathya Prakash <sathya.prakash@broadcom.com>
10410 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10411 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10412 L: MPT-FusionLinux.pdl@broadcom.com
10413 L: linux-scsi@vger.kernel.org
10414 S: Supported
10415 W: http://www.avagotech.com/support/
10416 F: drivers/message/fusion/
10417 F: drivers/scsi/mpt3sas/
10418
10419 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10420 M: Matthew Wilcox <willy@infradead.org>
10421 L: linux-scsi@vger.kernel.org
10422 S: Maintained
10423 F: drivers/scsi/sym53c8xx_2/
10424
10425 LTC1660 DAC DRIVER
10426 M: Marcus Folkesson <marcus.folkesson@gmail.com>
10427 L: linux-iio@vger.kernel.org
10428 S: Maintained
10429 F: Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10430 F: drivers/iio/dac/ltc1660.c
10431
10432 LTC2947 HARDWARE MONITOR DRIVER
10433 M: Nuno Sá <nuno.sa@analog.com>
10434 L: linux-hwmon@vger.kernel.org
10435 S: Supported
10436 W: http://ez.analog.com/community/linux-device-drivers
10437 F: Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10438 F: drivers/hwmon/ltc2947-core.c
10439 F: drivers/hwmon/ltc2947-i2c.c
10440 F: drivers/hwmon/ltc2947-spi.c
10441 F: drivers/hwmon/ltc2947.h
10442
10443 LTC2983 IIO TEMPERATURE DRIVER
10444 M: Nuno Sá <nuno.sa@analog.com>
10445 L: linux-iio@vger.kernel.org
10446 S: Supported
10447 W: http://ez.analog.com/community/linux-device-drivers
10448 F: Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10449 F: drivers/iio/temperature/ltc2983.c
10450
10451 LTC4261 HARDWARE MONITOR DRIVER
10452 M: Guenter Roeck <linux@roeck-us.net>
10453 L: linux-hwmon@vger.kernel.org
10454 S: Maintained
10455 F: Documentation/hwmon/ltc4261.rst
10456 F: drivers/hwmon/ltc4261.c
10457
10458 LTC4306 I2C MULTIPLEXER DRIVER
10459 M: Michael Hennerich <michael.hennerich@analog.com>
10460 L: linux-i2c@vger.kernel.org
10461 S: Supported
10462 W: http://ez.analog.com/community/linux-device-drivers
10463 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10464 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
10465
10466 LTP (Linux Test Project)
10467 M: Mike Frysinger <vapier@gentoo.org>
10468 M: Cyril Hrubis <chrubis@suse.cz>
10469 M: Wanlong Gao <wanlong.gao@gmail.com>
10470 M: Jan Stancek <jstancek@redhat.com>
10471 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10472 M: Alexey Kodanev <alexey.kodanev@oracle.com>
10473 L: ltp@lists.linux.it (subscribers-only)
10474 S: Maintained
10475 W: http://linux-test-project.github.io/
10476 T: git git://github.com/linux-test-project/ltp.git
10477
10478 LYNX PCS MODULE
10479 M: Ioana Ciornei <ioana.ciornei@nxp.com>
10480 L: netdev@vger.kernel.org
10481 S: Supported
10482 F: drivers/net/pcs/pcs-lynx.c
10483 F: include/linux/pcs-lynx.h
10484
10485 M68K ARCHITECTURE
10486 M: Geert Uytterhoeven <geert@linux-m68k.org>
10487 L: linux-m68k@lists.linux-m68k.org
10488 S: Maintained
10489 W: http://www.linux-m68k.org/
10490 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10491 F: arch/m68k/
10492 F: drivers/zorro/
10493
10494 M68K ON APPLE MACINTOSH
10495 M: Joshua Thompson <funaho@jurai.org>
10496 L: linux-m68k@lists.linux-m68k.org
10497 S: Maintained
10498 W: http://www.mac.linux-m68k.org/
10499 F: arch/m68k/mac/
10500 F: drivers/macintosh/adb-iop.c
10501 F: drivers/macintosh/via-macii.c
10502
10503 M68K ON HP9000/300
10504 M: Philip Blundell <philb@gnu.org>
10505 S: Maintained
10506 W: http://www.tazenda.demon.co.uk/phil/linux-hp
10507 F: arch/m68k/hp300/
10508
10509 M88DS3103 MEDIA DRIVER
10510 M: Antti Palosaari <crope@iki.fi>
10511 L: linux-media@vger.kernel.org
10512 S: Maintained
10513 W: https://linuxtv.org
10514 W: http://palosaari.fi/linux/
10515 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10516 T: git git://linuxtv.org/anttip/media_tree.git
10517 F: drivers/media/dvb-frontends/m88ds3103*
10518
10519 M88RS2000 MEDIA DRIVER
10520 M: Malcolm Priestley <tvboxspy@gmail.com>
10521 L: linux-media@vger.kernel.org
10522 S: Maintained
10523 W: https://linuxtv.org
10524 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10525 F: drivers/media/dvb-frontends/m88rs2000*
10526
10527 MA901 MASTERKIT USB FM RADIO DRIVER
10528 M: Alexey Klimov <klimov.linux@gmail.com>
10529 L: linux-media@vger.kernel.org
10530 S: Maintained
10531 T: git git://linuxtv.org/media_tree.git
10532 F: drivers/media/radio/radio-ma901.c
10533
10534 MAC80211
10535 M: Johannes Berg <johannes@sipsolutions.net>
10536 L: linux-wireless@vger.kernel.org
10537 S: Maintained
10538 W: https://wireless.wiki.kernel.org/
10539 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10540 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10541 F: Documentation/networking/mac80211-injection.rst
10542 F: Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10543 F: drivers/net/wireless/mac80211_hwsim.[ch]
10544 F: include/net/mac80211.h
10545 F: net/mac80211/
10546
10547 MAILBOX API
10548 M: Jassi Brar <jassisinghbrar@gmail.com>
10549 L: linux-kernel@vger.kernel.org
10550 S: Maintained
10551 F: drivers/mailbox/
10552 F: include/linux/mailbox_client.h
10553 F: include/linux/mailbox_controller.h
10554
10555 MAILBOX ARM MHUv2
10556 M: Viresh Kumar <viresh.kumar@linaro.org>
10557 M: Tushar Khandelwal <Tushar.Khandelwal@arm.com>
10558 L: linux-kernel@vger.kernel.org
10559 S: Maintained
10560 F: drivers/mailbox/arm_mhuv2.c
10561 F: include/linux/mailbox/arm_mhuv2_message.h
10562 F: Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
10563
10564 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10565 M: Michael Kerrisk <mtk.manpages@gmail.com>
10566 L: linux-man@vger.kernel.org
10567 S: Maintained
10568 W: http://www.kernel.org/doc/man-pages
10569
10570 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10571 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
10572 L: linux-mips@vger.kernel.org
10573 S: Maintained
10574 F: arch/mips/boot/dts/img/pistachio_marduk.dts
10575
10576 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10577 M: Andrew Lunn <andrew@lunn.ch>
10578 M: Vivien Didelot <vivien.didelot@gmail.com>
10579 L: netdev@vger.kernel.org
10580 S: Maintained
10581 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
10582 F: Documentation/networking/devlink/mv88e6xxx.rst
10583 F: drivers/net/dsa/mv88e6xxx/
10584 F: include/linux/platform_data/mv88e6xxx.h
10585
10586 MARVELL ARMADA 3700 PHY DRIVERS
10587 M: Miquel Raynal <miquel.raynal@bootlin.com>
10588 S: Maintained
10589 F: Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10590 F: Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10591 F: drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10592 F: drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10593
10594 MARVELL ARMADA DRM SUPPORT
10595 M: Russell King <linux@armlinux.org.uk>
10596 S: Maintained
10597 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10598 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10599 F: Documentation/devicetree/bindings/display/armada/
10600 F: drivers/gpu/drm/armada/
10601 F: include/uapi/drm/armada_drm.h
10602
10603 MARVELL CRYPTO DRIVER
10604 M: Boris Brezillon <bbrezillon@kernel.org>
10605 M: Arnaud Ebalard <arno@natisbad.org>
10606 M: Srujana Challa <schalla@marvell.com>
10607 L: linux-crypto@vger.kernel.org
10608 S: Maintained
10609 F: drivers/crypto/marvell/
10610 F: include/linux/soc/marvell/octeontx2/
10611
10612 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10613 M: Mirko Lindner <mlindner@marvell.com>
10614 M: Stephen Hemminger <stephen@networkplumber.org>
10615 L: netdev@vger.kernel.org
10616 S: Maintained
10617 F: drivers/net/ethernet/marvell/sk*
10618
10619 MARVELL LIBERTAS WIRELESS DRIVER
10620 L: libertas-dev@lists.infradead.org
10621 S: Orphan
10622 F: drivers/net/wireless/marvell/libertas/
10623
10624 MARVELL MACCHIATOBIN SUPPORT
10625 M: Russell King <linux@armlinux.org.uk>
10626 L: linux-arm-kernel@lists.infradead.org
10627 S: Maintained
10628 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10629
10630 MARVELL MV643XX ETHERNET DRIVER
10631 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10632 L: netdev@vger.kernel.org
10633 S: Maintained
10634 F: drivers/net/ethernet/marvell/mv643xx_eth.*
10635 F: include/linux/mv643xx.h
10636
10637 MARVELL MV88X3310 PHY DRIVER
10638 M: Russell King <linux@armlinux.org.uk>
10639 L: netdev@vger.kernel.org
10640 S: Maintained
10641 F: drivers/net/phy/marvell10g.c
10642
10643 MARVELL MVEBU THERMAL DRIVER
10644 M: Miquel Raynal <miquel.raynal@bootlin.com>
10645 S: Maintained
10646 F: drivers/thermal/armada_thermal.c
10647
10648 MARVELL MVNETA ETHERNET DRIVER
10649 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10650 L: netdev@vger.kernel.org
10651 S: Maintained
10652 F: drivers/net/ethernet/marvell/mvneta.*
10653
10654 MARVELL MVPP2 ETHERNET DRIVER
10655 M: Marcin Wojtas <mw@semihalf.com>
10656 M: Russell King <linux@armlinux.org.uk>
10657 L: netdev@vger.kernel.org
10658 S: Maintained
10659 F: Documentation/devicetree/bindings/net/marvell-pp2.txt
10660 F: drivers/net/ethernet/marvell/mvpp2/
10661
10662 MARVELL MWIFIEX WIRELESS DRIVER
10663 M: Amitkumar Karwar <amitkarwar@gmail.com>
10664 M: Ganapathi Bhat <ganapathi.bhat@nxp.com>
10665 M: Xinming Hu <huxinming820@gmail.com>
10666 L: linux-wireless@vger.kernel.org
10667 S: Maintained
10668 F: drivers/net/wireless/marvell/mwifiex/
10669
10670 MARVELL MWL8K WIRELESS DRIVER
10671 M: Lennert Buytenhek <buytenh@wantstofly.org>
10672 L: linux-wireless@vger.kernel.org
10673 S: Odd Fixes
10674 F: drivers/net/wireless/marvell/mwl8k.c
10675
10676 MARVELL NAND CONTROLLER DRIVER
10677 M: Miquel Raynal <miquel.raynal@bootlin.com>
10678 L: linux-mtd@lists.infradead.org
10679 S: Maintained
10680 F: Documentation/devicetree/bindings/mtd/marvell-nand.txt
10681 F: drivers/mtd/nand/raw/marvell_nand.c
10682
10683 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10684 M: Sunil Goutham <sgoutham@marvell.com>
10685 M: Geetha sowjanya <gakula@marvell.com>
10686 M: Subbaraya Sundeep <sbhatta@marvell.com>
10687 M: hariprasad <hkelam@marvell.com>
10688 L: netdev@vger.kernel.org
10689 S: Supported
10690 F: drivers/net/ethernet/marvell/octeontx2/nic/
10691 F: include/linux/soc/marvell/octeontx2/
10692
10693 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10694 M: Sunil Goutham <sgoutham@marvell.com>
10695 M: Linu Cherian <lcherian@marvell.com>
10696 M: Geetha sowjanya <gakula@marvell.com>
10697 M: Jerin Jacob <jerinj@marvell.com>
10698 L: netdev@vger.kernel.org
10699 S: Supported
10700 F: Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10701 F: drivers/net/ethernet/marvell/octeontx2/af/
10702
10703 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10704 M: Vadym Kochan <vkochan@marvell.com>
10705 M: Taras Chornyi <tchornyi@marvell.com>
10706 S: Supported
10707 W: https://github.com/Marvell-switching/switchdev-prestera
10708 F: drivers/net/ethernet/marvell/prestera/
10709
10710 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10711 M: Nicolas Pitre <nico@fluxnic.net>
10712 S: Odd Fixes
10713 F: drivers/mmc/host/mvsdio.*
10714
10715 MARVELL USB MDIO CONTROLLER DRIVER
10716 M: Tobias Waldekranz <tobias@waldekranz.com>
10717 L: netdev@vger.kernel.org
10718 S: Maintained
10719 F: Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10720 F: drivers/net/mdio/mdio-mvusb.c
10721
10722 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10723 M: Hu Ziji <huziji@marvell.com>
10724 L: linux-mmc@vger.kernel.org
10725 S: Supported
10726 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10727 F: drivers/mmc/host/sdhci-xenon*
10728
10729 MATROX FRAMEBUFFER DRIVER
10730 L: linux-fbdev@vger.kernel.org
10731 S: Orphan
10732 F: drivers/video/fbdev/matrox/matroxfb_*
10733 F: include/uapi/linux/matroxfb.h
10734
10735 MAX16065 HARDWARE MONITOR DRIVER
10736 M: Guenter Roeck <linux@roeck-us.net>
10737 L: linux-hwmon@vger.kernel.org
10738 S: Maintained
10739 F: Documentation/hwmon/max16065.rst
10740 F: drivers/hwmon/max16065.c
10741
10742 MAX2175 SDR TUNER DRIVER
10743 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
10744 L: linux-media@vger.kernel.org
10745 S: Maintained
10746 T: git git://linuxtv.org/media_tree.git
10747 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
10748 F: Documentation/userspace-api/media/drivers/max2175.rst
10749 F: drivers/media/i2c/max2175*
10750 F: include/uapi/linux/max2175.h
10751
10752 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10753 L: linux-hwmon@vger.kernel.org
10754 S: Orphan
10755 F: Documentation/hwmon/max6650.rst
10756 F: drivers/hwmon/max6650.c
10757
10758 MAX6697 HARDWARE MONITOR DRIVER
10759 M: Guenter Roeck <linux@roeck-us.net>
10760 L: linux-hwmon@vger.kernel.org
10761 S: Maintained
10762 F: Documentation/devicetree/bindings/hwmon/max6697.txt
10763 F: Documentation/hwmon/max6697.rst
10764 F: drivers/hwmon/max6697.c
10765 F: include/linux/platform_data/max6697.h
10766
10767 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10768 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
10769 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10770 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10771 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10772 L: linux-media@vger.kernel.org
10773 S: Maintained
10774 F: Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10775 F: drivers/media/i2c/max9286.c
10776
10777 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10778 M: Peter Rosin <peda@axentia.se>
10779 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10780 S: Maintained
10781 F: Documentation/devicetree/bindings/sound/max9860.txt
10782 F: sound/soc/codecs/max9860.*
10783
10784 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10785 M: Andreas Klinger <ak@it-klinger.de>
10786 L: linux-iio@vger.kernel.org
10787 S: Maintained
10788 F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10789 F: drivers/iio/proximity/mb1232.c
10790
10791 MAXIM MAX77650 PMIC MFD DRIVER
10792 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
10793 L: linux-kernel@vger.kernel.org
10794 S: Maintained
10795 F: Documentation/devicetree/bindings/*/*max77650.yaml
10796 F: Documentation/devicetree/bindings/*/max77650*.yaml
10797 F: drivers/gpio/gpio-max77650.c
10798 F: drivers/input/misc/max77650-onkey.c
10799 F: drivers/leds/leds-max77650.c
10800 F: drivers/mfd/max77650.c
10801 F: drivers/power/supply/max77650-charger.c
10802 F: drivers/regulator/max77650-regulator.c
10803 F: include/linux/mfd/max77650.h
10804
10805 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10806 M: Javier Martinez Canillas <javier@dowhile0.org>
10807 L: linux-kernel@vger.kernel.org
10808 S: Supported
10809 F: Documentation/devicetree/bindings/*/*max77802.txt
10810 F: drivers/regulator/max77802-regulator.c
10811 F: include/dt-bindings/*/*max77802.h
10812
10813 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10814 M: Krzysztof Kozlowski <krzk@kernel.org>
10815 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10816 L: linux-pm@vger.kernel.org
10817 S: Supported
10818 F: drivers/power/supply/max14577_charger.c
10819 F: drivers/power/supply/max77693_charger.c
10820
10821 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10822 M: Chanwoo Choi <cw00.choi@samsung.com>
10823 M: Krzysztof Kozlowski <krzk@kernel.org>
10824 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10825 L: linux-kernel@vger.kernel.org
10826 S: Supported
10827 F: Documentation/devicetree/bindings/*/max77686.txt
10828 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
10829 F: Documentation/devicetree/bindings/mfd/max14577.txt
10830 F: Documentation/devicetree/bindings/mfd/max77693.txt
10831 F: drivers/*/max14577*.c
10832 F: drivers/*/max77686*.c
10833 F: drivers/*/max77693*.c
10834 F: drivers/clk/clk-max77686.c
10835 F: drivers/extcon/extcon-max14577.c
10836 F: drivers/extcon/extcon-max77693.c
10837 F: drivers/rtc/rtc-max77686.c
10838 F: include/linux/mfd/max14577*.h
10839 F: include/linux/mfd/max77686*.h
10840 F: include/linux/mfd/max77693*.h
10841
10842 MAXIRADIO FM RADIO RECEIVER DRIVER
10843 M: Hans Verkuil <hverkuil@xs4all.nl>
10844 L: linux-media@vger.kernel.org
10845 S: Maintained
10846 W: https://linuxtv.org
10847 T: git git://linuxtv.org/media_tree.git
10848 F: drivers/media/radio/radio-maxiradio*
10849
10850 MCAN MMIO DEVICE DRIVER
10851 M: Dan Murphy <dmurphy@ti.com>
10852 M: Sriram Dash <sriram.dash@samsung.com>
10853 L: linux-can@vger.kernel.org
10854 S: Maintained
10855 F: Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10856 F: drivers/net/can/m_can/m_can.c
10857 F: drivers/net/can/m_can/m_can.h
10858 F: drivers/net/can/m_can/m_can_platform.c
10859
10860 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10861 M: Rishi Gupta <gupt21@gmail.com>
10862 L: linux-i2c@vger.kernel.org
10863 L: linux-input@vger.kernel.org
10864 S: Maintained
10865 F: drivers/hid/hid-mcp2221.c
10866
10867 MCP251XFD SPI-CAN NETWORK DRIVER
10868 M: Marc Kleine-Budde <mkl@pengutronix.de>
10869 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10870 R: Thomas Kopp <thomas.kopp@microchip.com>
10871 L: linux-can@vger.kernel.org
10872 S: Maintained
10873 F: Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10874 F: drivers/net/can/spi/mcp251xfd/
10875
10876 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10877 M: Peter Rosin <peda@axentia.se>
10878 L: linux-iio@vger.kernel.org
10879 S: Maintained
10880 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10881 F: drivers/iio/potentiometer/mcp4018.c
10882 F: drivers/iio/potentiometer/mcp4531.c
10883
10884 MCR20A IEEE-802.15.4 RADIO DRIVER
10885 M: Xue Liu <liuxuenetmail@gmail.com>
10886 L: linux-wpan@vger.kernel.org
10887 S: Maintained
10888 W: https://github.com/xueliu/mcr20a-linux
10889 F: Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10890 F: drivers/net/ieee802154/mcr20a.c
10891 F: drivers/net/ieee802154/mcr20a.h
10892
10893 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10894 M: William Breathitt Gray <vilhelm.gray@gmail.com>
10895 L: linux-iio@vger.kernel.org
10896 S: Maintained
10897 F: drivers/iio/dac/cio-dac.c
10898
10899 MEDIA CONTROLLER FRAMEWORK
10900 M: Sakari Ailus <sakari.ailus@linux.intel.com>
10901 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10902 L: linux-media@vger.kernel.org
10903 S: Supported
10904 W: https://www.linuxtv.org
10905 T: git git://linuxtv.org/media_tree.git
10906 F: drivers/media/mc/
10907 F: include/media/media-*.h
10908 F: include/uapi/linux/media.h
10909
10910 MEDIA DRIVER FOR FREESCALE IMX PXP
10911 M: Philipp Zabel <p.zabel@pengutronix.de>
10912 L: linux-media@vger.kernel.org
10913 S: Maintained
10914 T: git git://linuxtv.org/media_tree.git
10915 F: drivers/media/platform/imx-pxp.[ch]
10916
10917 MEDIA DRIVERS FOR ASCOT2E
10918 M: Sergey Kozlov <serjk@netup.ru>
10919 M: Abylay Ospan <aospan@netup.ru>
10920 L: linux-media@vger.kernel.org
10921 S: Supported
10922 W: https://linuxtv.org
10923 W: http://netup.tv/
10924 T: git git://linuxtv.org/media_tree.git
10925 F: drivers/media/dvb-frontends/ascot2e*
10926
10927 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10928 M: Jasmin Jessich <jasmin@anw.at>
10929 L: linux-media@vger.kernel.org
10930 S: Maintained
10931 W: https://linuxtv.org
10932 T: git git://linuxtv.org/media_tree.git
10933 F: drivers/media/dvb-frontends/cxd2099*
10934
10935 MEDIA DRIVERS FOR CXD2841ER
10936 M: Sergey Kozlov <serjk@netup.ru>
10937 M: Abylay Ospan <aospan@netup.ru>
10938 L: linux-media@vger.kernel.org
10939 S: Supported
10940 W: https://linuxtv.org
10941 W: http://netup.tv/
10942 T: git git://linuxtv.org/media_tree.git
10943 F: drivers/media/dvb-frontends/cxd2841er*
10944
10945 MEDIA DRIVERS FOR CXD2880
10946 M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10947 L: linux-media@vger.kernel.org
10948 S: Supported
10949 W: http://linuxtv.org/
10950 T: git git://linuxtv.org/media_tree.git
10951 F: drivers/media/dvb-frontends/cxd2880/*
10952 F: drivers/media/spi/cxd2880*
10953
10954 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10955 L: linux-media@vger.kernel.org
10956 S: Orphan
10957 W: https://linuxtv.org
10958 T: git git://linuxtv.org/media_tree.git
10959 F: drivers/media/pci/ddbridge/*
10960
10961 MEDIA DRIVERS FOR FREESCALE IMX
10962 M: Steve Longerbeam <slongerbeam@gmail.com>
10963 M: Philipp Zabel <p.zabel@pengutronix.de>
10964 L: linux-media@vger.kernel.org
10965 S: Maintained
10966 T: git git://linuxtv.org/media_tree.git
10967 F: Documentation/admin-guide/media/imx.rst
10968 F: Documentation/devicetree/bindings/media/imx.txt
10969 F: drivers/staging/media/imx/
10970 F: include/linux/imx-media.h
10971 F: include/media/imx.h
10972
10973 MEDIA DRIVERS FOR FREESCALE IMX7
10974 M: Rui Miguel Silva <rmfrfs@gmail.com>
10975 L: linux-media@vger.kernel.org
10976 S: Maintained
10977 T: git git://linuxtv.org/media_tree.git
10978 F: Documentation/admin-guide/media/imx7.rst
10979 F: Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10980 F: Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10981 F: drivers/staging/media/imx/imx7-media-csi.c
10982 F: drivers/staging/media/imx/imx7-mipi-csis.c
10983
10984 MEDIA DRIVERS FOR HELENE
10985 M: Abylay Ospan <aospan@netup.ru>
10986 L: linux-media@vger.kernel.org
10987 S: Supported
10988 W: https://linuxtv.org
10989 W: http://netup.tv/
10990 T: git git://linuxtv.org/media_tree.git
10991 F: drivers/media/dvb-frontends/helene*
10992
10993 MEDIA DRIVERS FOR HORUS3A
10994 M: Sergey Kozlov <serjk@netup.ru>
10995 M: Abylay Ospan <aospan@netup.ru>
10996 L: linux-media@vger.kernel.org
10997 S: Supported
10998 W: https://linuxtv.org
10999 W: http://netup.tv/
11000 T: git git://linuxtv.org/media_tree.git
11001 F: drivers/media/dvb-frontends/horus3a*
11002
11003 MEDIA DRIVERS FOR LNBH25
11004 M: Sergey Kozlov <serjk@netup.ru>
11005 M: Abylay Ospan <aospan@netup.ru>
11006 L: linux-media@vger.kernel.org
11007 S: Supported
11008 W: https://linuxtv.org
11009 W: http://netup.tv/
11010 T: git git://linuxtv.org/media_tree.git
11011 F: drivers/media/dvb-frontends/lnbh25*
11012
11013 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11014 L: linux-media@vger.kernel.org
11015 S: Orphan
11016 W: https://linuxtv.org
11017 T: git git://linuxtv.org/media_tree.git
11018 F: drivers/media/dvb-frontends/mxl5xx*
11019
11020 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11021 M: Sergey Kozlov <serjk@netup.ru>
11022 M: Abylay Ospan <aospan@netup.ru>
11023 L: linux-media@vger.kernel.org
11024 S: Supported
11025 W: https://linuxtv.org
11026 W: http://netup.tv/
11027 T: git git://linuxtv.org/media_tree.git
11028 F: drivers/media/pci/netup_unidvb/*
11029
11030 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11031 M: Dmitry Osipenko <digetx@gmail.com>
11032 L: linux-media@vger.kernel.org
11033 L: linux-tegra@vger.kernel.org
11034 S: Maintained
11035 T: git git://linuxtv.org/media_tree.git
11036 F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11037 F: drivers/staging/media/tegra-vde/
11038
11039 MEDIA DRIVERS FOR RENESAS - CEU
11040 M: Jacopo Mondi <jacopo@jmondi.org>
11041 L: linux-media@vger.kernel.org
11042 L: linux-renesas-soc@vger.kernel.org
11043 S: Supported
11044 T: git git://linuxtv.org/media_tree.git
11045 F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
11046 F: drivers/media/platform/renesas-ceu.c
11047 F: include/media/drv-intf/renesas-ceu.h
11048
11049 MEDIA DRIVERS FOR RENESAS - DRIF
11050 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
11051 L: linux-media@vger.kernel.org
11052 L: linux-renesas-soc@vger.kernel.org
11053 S: Supported
11054 T: git git://linuxtv.org/media_tree.git
11055 F: Documentation/devicetree/bindings/media/renesas,drif.txt
11056 F: drivers/media/platform/rcar_drif.c
11057
11058 MEDIA DRIVERS FOR RENESAS - FCP
11059 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11060 L: linux-media@vger.kernel.org
11061 L: linux-renesas-soc@vger.kernel.org
11062 S: Supported
11063 T: git git://linuxtv.org/media_tree.git
11064 F: Documentation/devicetree/bindings/media/renesas,fcp.yaml
11065 F: drivers/media/platform/rcar-fcp.c
11066 F: include/media/rcar-fcp.h
11067
11068 MEDIA DRIVERS FOR RENESAS - FDP1
11069 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11070 L: linux-media@vger.kernel.org
11071 L: linux-renesas-soc@vger.kernel.org
11072 S: Supported
11073 T: git git://linuxtv.org/media_tree.git
11074 F: Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11075 F: drivers/media/platform/rcar_fdp1.c
11076
11077 MEDIA DRIVERS FOR RENESAS - VIN
11078 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
11079 L: linux-media@vger.kernel.org
11080 L: linux-renesas-soc@vger.kernel.org
11081 S: Supported
11082 T: git git://linuxtv.org/media_tree.git
11083 F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
11084 F: Documentation/devicetree/bindings/media/renesas,vin.yaml
11085 F: drivers/media/platform/rcar-vin/
11086
11087 MEDIA DRIVERS FOR RENESAS - VSP1
11088 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11089 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11090 L: linux-media@vger.kernel.org
11091 L: linux-renesas-soc@vger.kernel.org
11092 S: Supported
11093 T: git git://linuxtv.org/media_tree.git
11094 F: Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11095 F: drivers/media/platform/vsp1/
11096
11097 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11098 L: linux-media@vger.kernel.org
11099 S: Orphan
11100 W: https://linuxtv.org
11101 T: git git://linuxtv.org/media_tree.git
11102 F: drivers/media/dvb-frontends/stv0910*
11103
11104 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11105 L: linux-media@vger.kernel.org
11106 S: Orphan
11107 W: https://linuxtv.org
11108 T: git git://linuxtv.org/media_tree.git
11109 F: drivers/media/dvb-frontends/stv6111*
11110
11111 MEDIA DRIVERS FOR STM32 - DCMI
11112 M: Hugues Fruchet <hugues.fruchet@st.com>
11113 L: linux-media@vger.kernel.org
11114 S: Supported
11115 T: git git://linuxtv.org/media_tree.git
11116 F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11117 F: drivers/media/platform/stm32/stm32-dcmi.c
11118
11119 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11120 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11121 L: linux-media@vger.kernel.org
11122 S: Maintained
11123 W: https://linuxtv.org
11124 Q: http://patchwork.kernel.org/project/linux-media/list/
11125 T: git git://linuxtv.org/media_tree.git
11126 F: Documentation/admin-guide/media/
11127 F: Documentation/devicetree/bindings/media/
11128 F: Documentation/driver-api/media/
11129 F: Documentation/userspace-api/media/
11130 F: drivers/media/
11131 F: drivers/staging/media/
11132 F: include/linux/platform_data/media/
11133 F: include/media/
11134 F: include/uapi/linux/dvb/
11135 F: include/uapi/linux/ivtv*
11136 F: include/uapi/linux/media.h
11137 F: include/uapi/linux/meye.h
11138 F: include/uapi/linux/uvcvideo.h
11139 F: include/uapi/linux/v4l2-*
11140 F: include/uapi/linux/videodev2.h
11141
11142 MEDIATEK BLUETOOTH DRIVER
11143 M: Sean Wang <sean.wang@mediatek.com>
11144 L: linux-bluetooth@vger.kernel.org
11145 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11146 S: Maintained
11147 F: Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11148 F: drivers/bluetooth/btmtkuart.c
11149
11150 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11151 M: Sean Wang <sean.wang@mediatek.com>
11152 L: linux-pm@vger.kernel.org
11153 S: Maintained
11154 F: Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11155 F: drivers/power/reset/mt6323-poweroff.c
11156
11157 MEDIATEK CIR DRIVER
11158 M: Sean Wang <sean.wang@mediatek.com>
11159 S: Maintained
11160 F: drivers/media/rc/mtk-cir.c
11161
11162 MEDIATEK DMA DRIVER
11163 M: Sean Wang <sean.wang@mediatek.com>
11164 L: dmaengine@vger.kernel.org
11165 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11166 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11167 S: Maintained
11168 F: Documentation/devicetree/bindings/dma/mtk-*
11169 F: drivers/dma/mediatek/
11170
11171 MEDIATEK ETHERNET DRIVER
11172 M: Felix Fietkau <nbd@nbd.name>
11173 M: John Crispin <john@phrozen.org>
11174 M: Sean Wang <sean.wang@mediatek.com>
11175 M: Mark Lee <Mark-MC.Lee@mediatek.com>
11176 L: netdev@vger.kernel.org
11177 S: Maintained
11178 F: drivers/net/ethernet/mediatek/
11179
11180 MEDIATEK I2C CONTROLLER DRIVER
11181 M: Qii Wang <qii.wang@mediatek.com>
11182 L: linux-i2c@vger.kernel.org
11183 S: Maintained
11184 F: Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11185 F: drivers/i2c/busses/i2c-mt65xx.c
11186
11187 MEDIATEK JPEG DRIVER
11188 M: Rick Chang <rick.chang@mediatek.com>
11189 M: Bin Liu <bin.liu@mediatek.com>
11190 S: Supported
11191 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11192 F: drivers/media/platform/mtk-jpeg/
11193
11194 MEDIATEK MDP DRIVER
11195 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11196 M: Houlong Wei <houlong.wei@mediatek.com>
11197 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11198 S: Supported
11199 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
11200 F: drivers/media/platform/mtk-mdp/
11201 F: drivers/media/platform/mtk-vpu/
11202
11203 MEDIATEK MEDIA DRIVER
11204 M: Tiffany Lin <tiffany.lin@mediatek.com>
11205 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11206 S: Supported
11207 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11208 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
11209 F: drivers/media/platform/mtk-vcodec/
11210 F: drivers/media/platform/mtk-vpu/
11211
11212 MEDIATEK MMC/SD/SDIO DRIVER
11213 M: Chaotian Jing <chaotian.jing@mediatek.com>
11214 S: Maintained
11215 F: Documentation/devicetree/bindings/mmc/mtk-sd.txt
11216 F: drivers/mmc/host/mtk-sd.c
11217
11218 MEDIATEK MT76 WIRELESS LAN DRIVER
11219 M: Felix Fietkau <nbd@nbd.name>
11220 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11221 R: Ryder Lee <ryder.lee@mediatek.com>
11222 L: linux-wireless@vger.kernel.org
11223 S: Maintained
11224 F: drivers/net/wireless/mediatek/mt76/
11225
11226 MEDIATEK MT7601U WIRELESS LAN DRIVER
11227 M: Jakub Kicinski <kubakici@wp.pl>
11228 L: linux-wireless@vger.kernel.org
11229 S: Maintained
11230 F: drivers/net/wireless/mediatek/mt7601u/
11231
11232 MEDIATEK MT7621/28/88 I2C DRIVER
11233 M: Stefan Roese <sr@denx.de>
11234 L: linux-i2c@vger.kernel.org
11235 S: Maintained
11236 F: Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11237 F: drivers/i2c/busses/i2c-mt7621.c
11238
11239 MEDIATEK MT7621 PHY PCI DRIVER
11240 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11241 S: Maintained
11242 F: Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11243 F: drivers/phy/ralink/phy-mt7621-pci.c
11244
11245 MEDIATEK NAND CONTROLLER DRIVER
11246 L: linux-mtd@lists.infradead.org
11247 S: Orphan
11248 F: Documentation/devicetree/bindings/mtd/mtk-nand.txt
11249 F: drivers/mtd/nand/raw/mtk_*
11250
11251 MEDIATEK PMIC LED DRIVER
11252 M: Sean Wang <sean.wang@mediatek.com>
11253 S: Maintained
11254 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
11255 F: drivers/leds/leds-mt6323.c
11256
11257 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11258 M: Sean Wang <sean.wang@mediatek.com>
11259 S: Maintained
11260 F: drivers/char/hw_random/mtk-rng.c
11261
11262 MEDIATEK SWITCH DRIVER
11263 M: Sean Wang <sean.wang@mediatek.com>
11264 M: Landen Chao <Landen.Chao@mediatek.com>
11265 L: netdev@vger.kernel.org
11266 S: Maintained
11267 F: drivers/net/dsa/mt7530.*
11268 F: net/dsa/tag_mtk.c
11269
11270 MEDIATEK USB3 DRD IP DRIVER
11271 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
11272 L: linux-usb@vger.kernel.org
11273 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11274 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11275 S: Maintained
11276 F: drivers/usb/mtu3/
11277
11278 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11279 M: Peter Senna Tschudin <peter.senna@gmail.com>
11280 M: Martin Donnelly <martin.donnelly@ge.com>
11281 M: Martyn Welch <martyn.welch@collabora.co.uk>
11282 S: Maintained
11283 F: Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11284 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11285
11286 MEGARAID SCSI/SAS DRIVERS
11287 M: Kashyap Desai <kashyap.desai@broadcom.com>
11288 M: Sumit Saxena <sumit.saxena@broadcom.com>
11289 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11290 L: megaraidlinux.pdl@broadcom.com
11291 L: linux-scsi@vger.kernel.org
11292 S: Maintained
11293 W: http://www.avagotech.com/support/
11294 F: Documentation/scsi/megaraid.rst
11295 F: drivers/scsi/megaraid.*
11296 F: drivers/scsi/megaraid/
11297
11298 MELEXIS MLX90614 DRIVER
11299 M: Crt Mori <cmo@melexis.com>
11300 L: linux-iio@vger.kernel.org
11301 S: Supported
11302 W: http://www.melexis.com
11303 F: drivers/iio/temperature/mlx90614.c
11304
11305 MELEXIS MLX90632 DRIVER
11306 M: Crt Mori <cmo@melexis.com>
11307 L: linux-iio@vger.kernel.org
11308 S: Supported
11309 W: http://www.melexis.com
11310 F: drivers/iio/temperature/mlx90632.c
11311
11312 MELFAS MIP4 TOUCHSCREEN DRIVER
11313 M: Sangwon Jee <jeesw@melfas.com>
11314 S: Supported
11315 W: http://www.melfas.com
11316 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11317 F: drivers/input/touchscreen/melfas_mip4.c
11318
11319 MELLANOX BLUEFIELD I2C DRIVER
11320 M: Khalil Blaiech <kblaiech@nvidia.com>
11321 L: linux-i2c@vger.kernel.org
11322 S: Supported
11323 F: Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11324 F: drivers/i2c/busses/i2c-mlxbf.c
11325
11326 MELLANOX ETHERNET DRIVER (mlx4_en)
11327 M: Tariq Toukan <tariqt@nvidia.com>
11328 L: netdev@vger.kernel.org
11329 S: Supported
11330 W: http://www.mellanox.com
11331 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11332 F: drivers/net/ethernet/mellanox/mlx4/en_*
11333
11334 MELLANOX ETHERNET DRIVER (mlx5e)
11335 M: Saeed Mahameed <saeedm@nvidia.com>
11336 L: netdev@vger.kernel.org
11337 S: Supported
11338 W: http://www.mellanox.com
11339 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11340 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
11341
11342 MELLANOX ETHERNET INNOVA DRIVERS
11343 R: Boris Pismenny <borisp@nvidia.com>
11344 L: netdev@vger.kernel.org
11345 S: Supported
11346 W: http://www.mellanox.com
11347 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11348 F: drivers/net/ethernet/mellanox/mlx5/core/accel/*
11349 F: drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11350 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11351 F: include/linux/mlx5/mlx5_ifc_fpga.h
11352
11353 MELLANOX ETHERNET SWITCH DRIVERS
11354 M: Jiri Pirko <jiri@nvidia.com>
11355 M: Ido Schimmel <idosch@nvidia.com>
11356 L: netdev@vger.kernel.org
11357 S: Supported
11358 W: http://www.mellanox.com
11359 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11360 F: drivers/net/ethernet/mellanox/mlxsw/
11361 F: tools/testing/selftests/drivers/net/mlxsw/
11362
11363 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11364 M: mlxsw@nvidia.com
11365 L: netdev@vger.kernel.org
11366 S: Supported
11367 W: http://www.mellanox.com
11368 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11369 F: drivers/net/ethernet/mellanox/mlxfw/
11370
11371 MELLANOX HARDWARE PLATFORM SUPPORT
11372 M: Andy Shevchenko <andy@infradead.org>
11373 M: Darren Hart <dvhart@infradead.org>
11374 M: Vadim Pasternak <vadimp@nvidia.com>
11375 L: platform-driver-x86@vger.kernel.org
11376 S: Supported
11377 F: Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11378 F: drivers/platform/mellanox/
11379 F: include/linux/platform_data/mlxreg.h
11380
11381 MELLANOX MLX4 core VPI driver
11382 M: Tariq Toukan <tariqt@nvidia.com>
11383 L: netdev@vger.kernel.org
11384 L: linux-rdma@vger.kernel.org
11385 S: Supported
11386 W: http://www.mellanox.com
11387 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11388 F: drivers/net/ethernet/mellanox/mlx4/
11389 F: include/linux/mlx4/
11390
11391 MELLANOX MLX4 IB driver
11392 M: Yishai Hadas <yishaih@nvidia.com>
11393 L: linux-rdma@vger.kernel.org
11394 S: Supported
11395 W: http://www.mellanox.com
11396 Q: http://patchwork.kernel.org/project/linux-rdma/list/
11397 F: drivers/infiniband/hw/mlx4/
11398 F: include/linux/mlx4/
11399 F: include/uapi/rdma/mlx4-abi.h
11400
11401 MELLANOX MLX5 core VPI driver
11402 M: Saeed Mahameed <saeedm@nvidia.com>
11403 M: Leon Romanovsky <leonro@nvidia.com>
11404 L: netdev@vger.kernel.org
11405 L: linux-rdma@vger.kernel.org
11406 S: Supported
11407 W: http://www.mellanox.com
11408 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11409 F: Documentation/networking/device_drivers/ethernet/mellanox/
11410 F: drivers/net/ethernet/mellanox/mlx5/core/
11411 F: include/linux/mlx5/
11412
11413 MELLANOX MLX5 IB driver
11414 M: Leon Romanovsky <leonro@nvidia.com>
11415 L: linux-rdma@vger.kernel.org
11416 S: Supported
11417 W: http://www.mellanox.com
11418 Q: http://patchwork.kernel.org/project/linux-rdma/list/
11419 F: drivers/infiniband/hw/mlx5/
11420 F: include/linux/mlx5/
11421 F: include/uapi/rdma/mlx5-abi.h
11422
11423 MELLANOX MLXCPLD I2C AND MUX DRIVER
11424 M: Vadim Pasternak <vadimp@nvidia.com>
11425 M: Michael Shych <michaelsh@nvidia.com>
11426 L: linux-i2c@vger.kernel.org
11427 S: Supported
11428 F: Documentation/i2c/busses/i2c-mlxcpld.rst
11429 F: drivers/i2c/busses/i2c-mlxcpld.c
11430 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
11431
11432 MELLANOX MLXCPLD LED DRIVER
11433 M: Vadim Pasternak <vadimp@nvidia.com>
11434 L: linux-leds@vger.kernel.org
11435 S: Supported
11436 F: Documentation/leds/leds-mlxcpld.rst
11437 F: drivers/leds/leds-mlxcpld.c
11438 F: drivers/leds/leds-mlxreg.c
11439
11440 MELLANOX PLATFORM DRIVER
11441 M: Vadim Pasternak <vadimp@nvidia.com>
11442 L: platform-driver-x86@vger.kernel.org
11443 S: Supported
11444 F: drivers/platform/x86/mlx-platform.c
11445
11446 MEMBARRIER SUPPORT
11447 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11448 M: "Paul E. McKenney" <paulmck@kernel.org>
11449 L: linux-kernel@vger.kernel.org
11450 S: Supported
11451 F: arch/powerpc/include/asm/membarrier.h
11452 F: include/uapi/linux/membarrier.h
11453 F: kernel/sched/membarrier.c
11454
11455 MEMBLOCK
11456 M: Mike Rapoport <rppt@linux.ibm.com>
11457 L: linux-mm@kvack.org
11458 S: Maintained
11459 F: Documentation/core-api/boot-time-mm.rst
11460 F: include/linux/memblock.h
11461 F: mm/memblock.c
11462
11463 MEMORY CONTROLLER DRIVERS
11464 M: Krzysztof Kozlowski <krzk@kernel.org>
11465 L: linux-kernel@vger.kernel.org
11466 S: Maintained
11467 T: git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11468 F: Documentation/devicetree/bindings/memory-controllers/
11469 F: drivers/memory/
11470 F: include/dt-bindings/memory/
11471
11472 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11473 M: Dmitry Osipenko <digetx@gmail.com>
11474 L: linux-pm@vger.kernel.org
11475 L: linux-tegra@vger.kernel.org
11476 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11477 S: Maintained
11478 F: drivers/devfreq/tegra30-devfreq.c
11479
11480 MEMORY MANAGEMENT
11481 M: Andrew Morton <akpm@linux-foundation.org>
11482 L: linux-mm@kvack.org
11483 S: Maintained
11484 W: http://www.linux-mm.org
11485 T: quilt https://ozlabs.org/~akpm/mmotm/
11486 T: quilt https://ozlabs.org/~akpm/mmots/
11487 T: git git://github.com/hnaz/linux-mm.git
11488 F: include/linux/gfp.h
11489 F: include/linux/memory_hotplug.h
11490 F: include/linux/mm.h
11491 F: include/linux/mmzone.h
11492 F: include/linux/vmalloc.h
11493 F: mm/
11494
11495 MEMORY TECHNOLOGY DEVICES (MTD)
11496 M: Miquel Raynal <miquel.raynal@bootlin.com>
11497 M: Richard Weinberger <richard@nod.at>
11498 M: Vignesh Raghavendra <vigneshr@ti.com>
11499 L: linux-mtd@lists.infradead.org
11500 S: Maintained
11501 W: http://www.linux-mtd.infradead.org/
11502 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
11503 C: irc://irc.oftc.net/mtd
11504 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11505 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11506 F: Documentation/devicetree/bindings/mtd/
11507 F: drivers/mtd/
11508 F: include/linux/mtd/
11509 F: include/uapi/mtd/
11510
11511 MEN A21 WATCHDOG DRIVER
11512 M: Johannes Thumshirn <morbidrsa@gmail.com>
11513 L: linux-watchdog@vger.kernel.org
11514 S: Maintained
11515 F: drivers/watchdog/mena21_wdt.c
11516
11517 MEN CHAMELEON BUS (mcb)
11518 M: Johannes Thumshirn <morbidrsa@gmail.com>
11519 S: Maintained
11520 F: Documentation/driver-api/men-chameleon-bus.rst
11521 F: drivers/mcb/
11522 F: include/linux/mcb.h
11523
11524 MEN F21BMC (Board Management Controller)
11525 M: Andreas Werner <andreas.werner@men.de>
11526 S: Supported
11527 F: Documentation/hwmon/menf21bmc.rst
11528 F: drivers/hwmon/menf21bmc_hwmon.c
11529 F: drivers/leds/leds-menf21bmc.c
11530 F: drivers/mfd/menf21bmc.c
11531 F: drivers/watchdog/menf21bmc_wdt.c
11532
11533 MEN Z069 WATCHDOG DRIVER
11534 M: Johannes Thumshirn <jth@kernel.org>
11535 L: linux-watchdog@vger.kernel.org
11536 S: Maintained
11537 F: drivers/watchdog/menz69_wdt.c
11538
11539 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11540 M: Neil Armstrong <narmstrong@baylibre.com>
11541 L: linux-media@vger.kernel.org
11542 L: linux-amlogic@lists.infradead.org
11543 S: Supported
11544 W: http://linux-meson.com/
11545 T: git git://linuxtv.org/media_tree.git
11546 F: Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11547 F: drivers/media/cec/platform/meson/ao-cec-g12a.c
11548 F: drivers/media/cec/platform/meson/ao-cec.c
11549
11550 MESON GE2D DRIVER FOR AMLOGIC SOCS
11551 M: Neil Armstrong <narmstrong@baylibre.com>
11552 L: linux-media@vger.kernel.org
11553 L: linux-amlogic@lists.infradead.org
11554 S: Supported
11555 T: git git://linuxtv.org/media_tree.git
11556 F: Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11557 F: drivers/media/meson/ge2d/
11558
11559 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11560 M: Liang Yang <liang.yang@amlogic.com>
11561 L: linux-mtd@lists.infradead.org
11562 S: Maintained
11563 F: Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11564 F: drivers/mtd/nand/raw/meson_*
11565
11566 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11567 M: Neil Armstrong <narmstrong@baylibre.com>
11568 L: linux-media@vger.kernel.org
11569 L: linux-amlogic@lists.infradead.org
11570 S: Supported
11571 T: git git://linuxtv.org/media_tree.git
11572 F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11573 F: drivers/staging/media/meson/vdec/
11574
11575 METHODE UDPU SUPPORT
11576 M: Vladimir Vid <vladimir.vid@sartura.hr>
11577 S: Maintained
11578 F: arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11579
11580 MHI BUS
11581 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11582 M: Hemant Kumar <hemantk@codeaurora.org>
11583 L: linux-arm-msm@vger.kernel.org
11584 S: Maintained
11585 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11586 F: Documentation/ABI/stable/sysfs-bus-mhi
11587 F: Documentation/mhi/
11588 F: drivers/bus/mhi/
11589 F: include/linux/mhi.h
11590
11591 MICROBLAZE ARCHITECTURE
11592 M: Michal Simek <monstr@monstr.eu>
11593 S: Supported
11594 W: http://www.monstr.eu/fdt/
11595 T: git git://git.monstr.eu/linux-2.6-microblaze.git
11596 F: arch/microblaze/
11597
11598 MICROCHIP AT91 DMA DRIVERS
11599 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11600 M: Tudor Ambarus <tudor.ambarus@microchip.com>
11601 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11602 L: dmaengine@vger.kernel.org
11603 S: Supported
11604 F: Documentation/devicetree/bindings/dma/atmel-dma.txt
11605 F: drivers/dma/at_hdmac.c
11606 F: drivers/dma/at_hdmac_regs.h
11607 F: drivers/dma/at_xdmac.c
11608 F: include/dt-bindings/dma/at91.h
11609 F: include/linux/platform_data/dma-atmel.h
11610
11611 MICROCHIP AT91 SERIAL DRIVER
11612 M: Richard Genoud <richard.genoud@gmail.com>
11613 S: Maintained
11614 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
11615 F: drivers/tty/serial/atmel_serial.c
11616 F: drivers/tty/serial/atmel_serial.h
11617
11618 MICROCHIP AT91 USART MFD DRIVER
11619 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
11620 L: linux-kernel@vger.kernel.org
11621 S: Supported
11622 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
11623 F: drivers/mfd/at91-usart.c
11624 F: include/dt-bindings/mfd/at91-usart.h
11625
11626 MICROCHIP AT91 USART SPI DRIVER
11627 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
11628 L: linux-spi@vger.kernel.org
11629 S: Supported
11630 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
11631 F: drivers/spi/spi-at91-usart.c
11632
11633 MICROCHIP AUDIO ASOC DRIVERS
11634 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11635 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11636 S: Supported
11637 F: sound/soc/atmel
11638
11639 MICROCHIP ECC DRIVER
11640 M: Tudor Ambarus <tudor.ambarus@microchip.com>
11641 L: linux-crypto@vger.kernel.org
11642 S: Maintained
11643 F: drivers/crypto/atmel-ecc.*
11644
11645 MICROCHIP I2C DRIVER
11646 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11647 L: linux-i2c@vger.kernel.org
11648 S: Supported
11649 F: drivers/i2c/busses/i2c-at91-*.c
11650 F: drivers/i2c/busses/i2c-at91.h
11651
11652 MICROCHIP ISC DRIVER
11653 M: Eugen Hristev <eugen.hristev@microchip.com>
11654 L: linux-media@vger.kernel.org
11655 S: Supported
11656 F: Documentation/devicetree/bindings/media/atmel-isc.txt
11657 F: drivers/media/platform/atmel/atmel-isc-base.c
11658 F: drivers/media/platform/atmel/atmel-isc-regs.h
11659 F: drivers/media/platform/atmel/atmel-isc.h
11660 F: drivers/media/platform/atmel/atmel-sama5d2-isc.c
11661 F: include/linux/atmel-isc-media.h
11662
11663 MICROCHIP ISI DRIVER
11664 M: Eugen Hristev <eugen.hristev@microchip.com>
11665 L: linux-media@vger.kernel.org
11666 S: Supported
11667 F: drivers/media/platform/atmel/atmel-isi.c
11668 F: drivers/media/platform/atmel/atmel-isi.h
11669
11670 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11671 M: Woojung Huh <woojung.huh@microchip.com>
11672 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11673 L: netdev@vger.kernel.org
11674 S: Maintained
11675 F: Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11676 F: drivers/net/dsa/microchip/*
11677 F: include/linux/platform_data/microchip-ksz.h
11678 F: net/dsa/tag_ksz.c
11679
11680 MICROCHIP LAN743X ETHERNET DRIVER
11681 M: Bryan Whitehead <bryan.whitehead@microchip.com>
11682 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11683 L: netdev@vger.kernel.org
11684 S: Maintained
11685 F: drivers/net/ethernet/microchip/lan743x_*
11686
11687 MICROCHIP LCDFB DRIVER
11688 M: Nicolas Ferre <nicolas.ferre@microchip.com>
11689 L: linux-fbdev@vger.kernel.org
11690 S: Maintained
11691 F: drivers/video/fbdev/atmel_lcdfb.c
11692 F: include/video/atmel_lcdc.h
11693
11694 MICROCHIP MCP16502 PMIC DRIVER
11695 M: Andrei Stefanescu <andrei.stefanescu@microchip.com>
11696 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11697 S: Maintained
11698 F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11699 F: drivers/regulator/mcp16502.c
11700
11701 MICROCHIP MCP3911 ADC DRIVER
11702 M: Marcus Folkesson <marcus.folkesson@gmail.com>
11703 M: Kent Gustavsson <kent@minoris.se>
11704 L: linux-iio@vger.kernel.org
11705 S: Supported
11706 F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11707 F: drivers/iio/adc/mcp3911.c
11708
11709 MICROCHIP MMC/SD/SDIO MCI DRIVER
11710 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11711 S: Maintained
11712 F: drivers/mmc/host/atmel-mci.c
11713
11714 MICROCHIP NAND DRIVER
11715 M: Tudor Ambarus <tudor.ambarus@microchip.com>
11716 L: linux-mtd@lists.infradead.org
11717 S: Supported
11718 F: Documentation/devicetree/bindings/mtd/atmel-nand.txt
11719 F: drivers/mtd/nand/raw/atmel/*
11720
11721 MICROCHIP PWM DRIVER
11722 M: Claudiu Beznea <claudiu.beznea@microchip.com>
11723 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11724 L: linux-pwm@vger.kernel.org
11725 S: Supported
11726 F: Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11727 F: drivers/pwm/pwm-atmel.c
11728
11729 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11730 M: Eugen Hristev <eugen.hristev@microchip.com>
11731 L: linux-iio@vger.kernel.org
11732 S: Supported
11733 F: Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11734 F: drivers/iio/adc/at91-sama5d2_adc.c
11735 F: include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11736
11737 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11738 M: Claudiu Beznea <claudiu.beznea@microchip.com>
11739 S: Supported
11740 F: drivers/power/reset/at91-sama5d2_shdwc.c
11741
11742 MICROCHIP SPI DRIVER
11743 M: Tudor Ambarus <tudor.ambarus@microchip.com>
11744 S: Supported
11745 F: drivers/spi/spi-atmel.*
11746
11747 MICROCHIP SSC DRIVER
11748 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11749 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11750 S: Supported
11751 F: drivers/misc/atmel-ssc.c
11752 F: include/linux/atmel-ssc.h
11753
11754 MICROCHIP USB251XB DRIVER
11755 M: Richard Leitner <richard.leitner@skidata.com>
11756 L: linux-usb@vger.kernel.org
11757 S: Maintained
11758 F: Documentation/devicetree/bindings/usb/usb251xb.txt
11759 F: drivers/usb/misc/usb251xb.c
11760
11761 MICROCHIP USBA UDC DRIVER
11762 M: Cristian Birsan <cristian.birsan@microchip.com>
11763 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11764 S: Supported
11765 F: drivers/usb/gadget/udc/atmel_usba_udc.*
11766
11767 MICROCHIP WILC1000 WIFI DRIVER
11768 M: Ajay Singh <ajay.kathat@microchip.com>
11769 M: Claudiu Beznea <claudiu.beznea@microchip.com>
11770 L: linux-wireless@vger.kernel.org
11771 S: Supported
11772 F: drivers/net/wireless/microchip/wilc1000/
11773
11774 MICROSEMI MIPS SOCS
11775 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
11776 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11777 L: linux-mips@vger.kernel.org
11778 S: Supported
11779 F: Documentation/devicetree/bindings/mips/mscc.txt
11780 F: Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11781 F: arch/mips/boot/dts/mscc/
11782 F: arch/mips/configs/generic/board-ocelot.config
11783 F: arch/mips/generic/board-ocelot.c
11784
11785 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11786 M: Don Brace <don.brace@microchip.com>
11787 L: storagedev@microchip.com
11788 L: linux-scsi@vger.kernel.org
11789 S: Supported
11790 F: Documentation/scsi/smartpqi.rst
11791 F: drivers/scsi/smartpqi/Kconfig
11792 F: drivers/scsi/smartpqi/Makefile
11793 F: drivers/scsi/smartpqi/smartpqi*.[ch]
11794 F: include/linux/cciss*.h
11795 F: include/uapi/linux/cciss*.h
11796
11797 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
11798 M: Maximilian Luz <luzmaximilian@gmail.com>
11799 L: platform-driver-x86@vger.kernel.org
11800 S: Maintained
11801 F: drivers/platform/surface/surface_gpe.c
11802
11803 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
11804 M: Hans de Goede <hdegoede@redhat.com>
11805 M: Mark Gross <mgross@linux.intel.com>
11806 M: Maximilian Luz <luzmaximilian@gmail.com>
11807 L: platform-driver-x86@vger.kernel.org
11808 S: Maintained
11809 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
11810 F: drivers/platform/surface/
11811
11812 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11813 M: Chen Yu <yu.c.chen@intel.com>
11814 L: platform-driver-x86@vger.kernel.org
11815 S: Supported
11816 F: drivers/platform/surface/surfacepro3_button.c
11817
11818 MICROTEK X6 SCANNER
11819 M: Oliver Neukum <oliver@neukum.org>
11820 S: Maintained
11821 F: drivers/usb/image/microtek.*
11822
11823 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
11824 M: Luka Kovacic <luka.kovacic@sartura.hr>
11825 M: Luka Perkov <luka.perkov@sartura.hr>
11826 S: Maintained
11827 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
11828 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
11829 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
11830 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
11831 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
11832 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
11833
11834 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11835 M: Sakari Ailus <sakari.ailus@linux.intel.com>
11836 L: linux-media@vger.kernel.org
11837 S: Maintained
11838 F: Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11839 F: Documentation/driver-api/media/drivers/ccs/
11840 F: drivers/media/i2c/ccs-pll.c
11841 F: drivers/media/i2c/ccs-pll.h
11842 F: drivers/media/i2c/ccs/
11843 F: include/uapi/linux/smiapp.h
11844
11845 MIPS
11846 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11847 L: linux-mips@vger.kernel.org
11848 S: Maintained
11849 W: http://www.linux-mips.org/
11850 Q: https://patchwork.kernel.org/project/linux-mips/list/
11851 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11852 F: Documentation/devicetree/bindings/mips/
11853 F: Documentation/mips/
11854 F: arch/mips/
11855 F: drivers/platform/mips/
11856
11857 MIPS BOSTON DEVELOPMENT BOARD
11858 M: Paul Burton <paulburton@kernel.org>
11859 L: linux-mips@vger.kernel.org
11860 S: Maintained
11861 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
11862 F: arch/mips/boot/dts/img/boston.dts
11863 F: arch/mips/configs/generic/board-boston.config
11864 F: drivers/clk/imgtec/clk-boston.c
11865 F: include/dt-bindings/clock/boston-clock.h
11866
11867 MIPS CORE DRIVERS
11868 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11869 M: Serge Semin <fancer.lancer@gmail.com>
11870 L: linux-mips@vger.kernel.org
11871 S: Supported
11872 F: drivers/bus/mips_cdmm.c
11873 F: drivers/clocksource/mips-gic-timer.c
11874 F: drivers/cpuidle/cpuidle-cps.c
11875 F: drivers/irqchip/irq-mips-cpu.c
11876 F: drivers/irqchip/irq-mips-gic.c
11877
11878 MIPS GENERIC PLATFORM
11879 M: Paul Burton <paulburton@kernel.org>
11880 L: linux-mips@vger.kernel.org
11881 S: Supported
11882 F: Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11883 F: arch/mips/generic/
11884 F: arch/mips/tools/generic-board-config.sh
11885
11886 MIPS RINT INSTRUCTION EMULATION
11887 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
11888 L: linux-mips@vger.kernel.org
11889 S: Supported
11890 F: arch/mips/math-emu/dp_rint.c
11891 F: arch/mips/math-emu/sp_rint.c
11892
11893 MIPS/LOONGSON1 ARCHITECTURE
11894 M: Keguang Zhang <keguang.zhang@gmail.com>
11895 L: linux-mips@vger.kernel.org
11896 S: Maintained
11897 F: arch/mips/include/asm/mach-loongson32/
11898 F: arch/mips/loongson32/
11899 F: drivers/*/*/*loongson1*
11900 F: drivers/*/*loongson1*
11901
11902 MIPS/LOONGSON2EF ARCHITECTURE
11903 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
11904 L: linux-mips@vger.kernel.org
11905 S: Maintained
11906 F: arch/mips/include/asm/mach-loongson2ef/
11907 F: arch/mips/loongson2ef/
11908 F: drivers/*/*/*loongson2*
11909 F: drivers/*/*loongson2*
11910
11911 MIPS/LOONGSON64 ARCHITECTURE
11912 M: Huacai Chen <chenhuacai@kernel.org>
11913 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
11914 L: linux-mips@vger.kernel.org
11915 S: Maintained
11916 F: arch/mips/include/asm/mach-loongson64/
11917 F: arch/mips/loongson64/
11918 F: drivers/*/*/*loongson3*
11919 F: drivers/*/*loongson3*
11920 F: drivers/irqchip/irq-loongson*
11921 F: drivers/platform/mips/cpu_hwmon.c
11922
11923 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11924 M: Hans Verkuil <hverkuil@xs4all.nl>
11925 L: linux-media@vger.kernel.org
11926 S: Odd Fixes
11927 W: https://linuxtv.org
11928 T: git git://linuxtv.org/media_tree.git
11929 F: drivers/media/radio/radio-miropcm20*
11930
11931 MMP SUPPORT
11932 R: Lubomir Rintel <lkundrak@v3.sk>
11933 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11934 S: Odd Fixes
11935 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11936 F: arch/arm/boot/dts/mmp*
11937 F: arch/arm/mach-mmp/
11938 F: include/linux/soc/mmp/
11939
11940 MMP USB PHY DRIVERS
11941 R: Lubomir Rintel <lkundrak@v3.sk>
11942 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11943 S: Maintained
11944 F: drivers/phy/marvell/phy-mmp3-usb.c
11945 F: drivers/phy/marvell/phy-pxa-usb.c
11946
11947 MMU GATHER AND TLB INVALIDATION
11948 M: Will Deacon <will@kernel.org>
11949 M: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11950 M: Andrew Morton <akpm@linux-foundation.org>
11951 M: Nick Piggin <npiggin@gmail.com>
11952 M: Peter Zijlstra <peterz@infradead.org>
11953 L: linux-arch@vger.kernel.org
11954 L: linux-mm@kvack.org
11955 S: Maintained
11956 F: arch/*/include/asm/tlb.h
11957 F: include/asm-generic/tlb.h
11958 F: mm/mmu_gather.c
11959
11960 MN88472 MEDIA DRIVER
11961 M: Antti Palosaari <crope@iki.fi>
11962 L: linux-media@vger.kernel.org
11963 S: Maintained
11964 W: https://linuxtv.org
11965 W: http://palosaari.fi/linux/
11966 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11967 F: drivers/media/dvb-frontends/mn88472*
11968
11969 MN88473 MEDIA DRIVER
11970 M: Antti Palosaari <crope@iki.fi>
11971 L: linux-media@vger.kernel.org
11972 S: Maintained
11973 W: https://linuxtv.org
11974 W: http://palosaari.fi/linux/
11975 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11976 F: drivers/media/dvb-frontends/mn88473*
11977
11978 MODULE SUPPORT
11979 M: Jessica Yu <jeyu@kernel.org>
11980 S: Maintained
11981 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11982 F: include/linux/module.h
11983 F: kernel/module.c
11984
11985 MONOLITHIC POWER SYSTEM PMIC DRIVER
11986 M: Saravanan Sekar <sravanhome@gmail.com>
11987 S: Maintained
11988 F: Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11989 F: Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11990 F: drivers/iio/adc/mp2629_adc.c
11991 F: drivers/mfd/mp2629.c
11992 F: drivers/power/supply/mp2629_charger.c
11993 F: drivers/regulator/mp5416.c
11994 F: drivers/regulator/mpq7920.c
11995 F: drivers/regulator/mpq7920.h
11996 F: include/linux/mfd/mp2629.h
11997
11998 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11999 S: Orphan
12000 W: http://popies.net/meye/
12001 F: Documentation/userspace-api/media/drivers/meye*
12002 F: drivers/media/pci/meye/
12003 F: include/uapi/linux/meye.h
12004
12005 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12006 M: Jiri Slaby <jirislaby@kernel.org>
12007 S: Maintained
12008 F: Documentation/driver-api/serial/moxa-smartio.rst
12009 F: drivers/tty/mxser.*
12010
12011 MR800 AVERMEDIA USB FM RADIO DRIVER
12012 M: Alexey Klimov <klimov.linux@gmail.com>
12013 L: linux-media@vger.kernel.org
12014 S: Maintained
12015 T: git git://linuxtv.org/media_tree.git
12016 F: drivers/media/radio/radio-mr800.c
12017
12018 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12019 M: Alan Ott <alan@signal11.us>
12020 L: linux-wpan@vger.kernel.org
12021 S: Maintained
12022 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12023 F: drivers/net/ieee802154/mrf24j40.c
12024
12025 MSI LAPTOP SUPPORT
12026 M: "Lee, Chun-Yi" <jlee@suse.com>
12027 L: platform-driver-x86@vger.kernel.org
12028 S: Maintained
12029 F: drivers/platform/x86/msi-laptop.c
12030
12031 MSI WMI SUPPORT
12032 L: platform-driver-x86@vger.kernel.org
12033 S: Orphan
12034 F: drivers/platform/x86/msi-wmi.c
12035
12036 MSI001 MEDIA DRIVER
12037 M: Antti Palosaari <crope@iki.fi>
12038 L: linux-media@vger.kernel.org
12039 S: Maintained
12040 W: https://linuxtv.org
12041 W: http://palosaari.fi/linux/
12042 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12043 T: git git://linuxtv.org/anttip/media_tree.git
12044 F: drivers/media/tuners/msi001*
12045
12046 MSI2500 MEDIA DRIVER
12047 M: Antti Palosaari <crope@iki.fi>
12048 L: linux-media@vger.kernel.org
12049 S: Maintained
12050 W: https://linuxtv.org
12051 W: http://palosaari.fi/linux/
12052 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12053 T: git git://linuxtv.org/anttip/media_tree.git
12054 F: drivers/media/usb/msi2500/
12055
12056 MSTAR INTERRUPT CONTROLLER DRIVER
12057 M: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12058 M: Daniel Palmer <daniel@thingy.jp>
12059 S: Maintained
12060 F: Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12061 F: drivers/irqchip/irq-mst-intc.c
12062
12063 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12064 M: Robert Jarzmik <robert.jarzmik@free.fr>
12065 L: linux-mtd@lists.infradead.org
12066 S: Maintained
12067 F: drivers/mtd/devices/docg3*
12068
12069 MT9M032 APTINA SENSOR DRIVER
12070 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12071 L: linux-media@vger.kernel.org
12072 S: Maintained
12073 T: git git://linuxtv.org/media_tree.git
12074 F: drivers/media/i2c/mt9m032.c
12075 F: include/media/i2c/mt9m032.h
12076
12077 MT9P031 APTINA CAMERA SENSOR
12078 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12079 L: linux-media@vger.kernel.org
12080 S: Maintained
12081 T: git git://linuxtv.org/media_tree.git
12082 F: drivers/media/i2c/mt9p031.c
12083 F: include/media/i2c/mt9p031.h
12084
12085 MT9T001 APTINA CAMERA SENSOR
12086 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12087 L: linux-media@vger.kernel.org
12088 S: Maintained
12089 T: git git://linuxtv.org/media_tree.git
12090 F: drivers/media/i2c/mt9t001.c
12091 F: include/media/i2c/mt9t001.h
12092
12093 MT9T112 APTINA CAMERA SENSOR
12094 M: Jacopo Mondi <jacopo@jmondi.org>
12095 L: linux-media@vger.kernel.org
12096 S: Odd Fixes
12097 T: git git://linuxtv.org/media_tree.git
12098 F: drivers/media/i2c/mt9t112.c
12099 F: include/media/i2c/mt9t112.h
12100
12101 MT9V032 APTINA CAMERA SENSOR
12102 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12103 L: linux-media@vger.kernel.org
12104 S: Maintained
12105 T: git git://linuxtv.org/media_tree.git
12106 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12107 F: drivers/media/i2c/mt9v032.c
12108 F: include/media/i2c/mt9v032.h
12109
12110 MT9V111 APTINA CAMERA SENSOR
12111 M: Jacopo Mondi <jacopo@jmondi.org>
12112 L: linux-media@vger.kernel.org
12113 S: Maintained
12114 T: git git://linuxtv.org/media_tree.git
12115 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12116 F: drivers/media/i2c/mt9v111.c
12117
12118 MULTIFUNCTION DEVICES (MFD)
12119 M: Lee Jones <lee.jones@linaro.org>
12120 S: Supported
12121 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12122 F: Documentation/devicetree/bindings/mfd/
12123 F: drivers/mfd/
12124 F: include/dt-bindings/mfd/
12125 F: include/linux/mfd/
12126
12127 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12128 S: Orphan
12129 F: drivers/mmc/host/mmc_spi.c
12130 F: include/linux/spi/mmc_spi.h
12131
12132 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12133 M: Ulf Hansson <ulf.hansson@linaro.org>
12134 L: linux-mmc@vger.kernel.org
12135 S: Maintained
12136 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12137 F: Documentation/devicetree/bindings/mmc/
12138 F: drivers/mmc/
12139 F: include/linux/mmc/
12140 F: include/uapi/linux/mmc/
12141
12142 MULTIPLEXER SUBSYSTEM
12143 M: Peter Rosin <peda@axentia.se>
12144 S: Maintained
12145 F: Documentation/ABI/testing/sysfs-class-mux*
12146 F: Documentation/devicetree/bindings/mux/
12147 F: drivers/mux/
12148 F: include/dt-bindings/mux/
12149 F: include/linux/mux/
12150
12151 MULTITECH MULTIPORT CARD (ISICOM)
12152 S: Orphan
12153 F: drivers/tty/isicom.c
12154 F: include/linux/isicom.h
12155
12156 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12157 M: Bin Liu <b-liu@ti.com>
12158 L: linux-usb@vger.kernel.org
12159 S: Maintained
12160 F: drivers/usb/musb/
12161
12162 MXL301RF MEDIA DRIVER
12163 M: Akihiro Tsukada <tskd08@gmail.com>
12164 L: linux-media@vger.kernel.org
12165 S: Odd Fixes
12166 F: drivers/media/tuners/mxl301rf*
12167
12168 MXL5007T MEDIA DRIVER
12169 M: Michael Krufky <mkrufky@linuxtv.org>
12170 L: linux-media@vger.kernel.org
12171 S: Maintained
12172 W: https://linuxtv.org
12173 W: http://github.com/mkrufky
12174 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12175 T: git git://linuxtv.org/mkrufky/tuners.git
12176 F: drivers/media/tuners/mxl5007t.*
12177
12178 MXSFB DRM DRIVER
12179 M: Marek Vasut <marex@denx.de>
12180 M: Stefan Agner <stefan@agner.ch>
12181 L: dri-devel@lists.freedesktop.org
12182 S: Supported
12183 T: git git://anongit.freedesktop.org/drm/drm-misc
12184 F: Documentation/devicetree/bindings/display/mxsfb.txt
12185 F: drivers/gpu/drm/mxsfb/
12186
12187 MYLEX DAC960 PCI RAID Controller
12188 M: Hannes Reinecke <hare@kernel.org>
12189 L: linux-scsi@vger.kernel.org
12190 S: Supported
12191 F: drivers/scsi/myrb.*
12192 F: drivers/scsi/myrs.*
12193
12194 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12195 M: Chris Lee <christopher.lee@cspi.com>
12196 L: netdev@vger.kernel.org
12197 S: Supported
12198 W: https://www.cspi.com/ethernet-products/support/downloads/
12199 F: drivers/net/ethernet/myricom/myri10ge/
12200
12201 NAND FLASH SUBSYSTEM
12202 M: Miquel Raynal <miquel.raynal@bootlin.com>
12203 R: Richard Weinberger <richard@nod.at>
12204 L: linux-mtd@lists.infradead.org
12205 S: Maintained
12206 W: http://www.linux-mtd.infradead.org/
12207 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12208 C: irc://irc.oftc.net/mtd
12209 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12210 F: drivers/mtd/nand/
12211 F: include/linux/mtd/*nand*.h
12212
12213 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12214 M: Daniel Mack <zonque@gmail.com>
12215 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12216 S: Maintained
12217 W: http://www.native-instruments.com
12218 F: sound/usb/caiaq/
12219
12220 NATSEMI ETHERNET DRIVER (DP8381x)
12221 S: Orphan
12222 F: drivers/net/ethernet/natsemi/natsemi.c
12223
12224 NCR 5380 SCSI DRIVERS
12225 M: Finn Thain <fthain@telegraphics.com.au>
12226 M: Michael Schmitz <schmitzmic@gmail.com>
12227 L: linux-scsi@vger.kernel.org
12228 S: Maintained
12229 F: Documentation/scsi/g_NCR5380.rst
12230 F: drivers/scsi/NCR5380.*
12231 F: drivers/scsi/arm/cumana_1.c
12232 F: drivers/scsi/arm/oak.c
12233 F: drivers/scsi/atari_scsi.*
12234 F: drivers/scsi/dmx3191d.c
12235 F: drivers/scsi/g_NCR5380.*
12236 F: drivers/scsi/mac_scsi.*
12237 F: drivers/scsi/sun3_scsi.*
12238 F: drivers/scsi/sun3_scsi_vme.c
12239
12240 NCSI LIBRARY
12241 M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
12242 S: Maintained
12243 F: net/ncsi/
12244
12245 NCT6775 HARDWARE MONITOR DRIVER
12246 M: Guenter Roeck <linux@roeck-us.net>
12247 L: linux-hwmon@vger.kernel.org
12248 S: Maintained
12249 F: Documentation/hwmon/nct6775.rst
12250 F: drivers/hwmon/nct6775.c
12251
12252 NETDEVSIM
12253 M: Jakub Kicinski <kuba@kernel.org>
12254 S: Maintained
12255 F: drivers/net/netdevsim/*
12256
12257 NETEM NETWORK EMULATOR
12258 M: Stephen Hemminger <stephen@networkplumber.org>
12259 L: netdev@vger.kernel.org
12260 S: Maintained
12261 F: net/sched/sch_netem.c
12262
12263 NETERION 10GbE DRIVERS (s2io/vxge)
12264 M: Jon Mason <jdmason@kudzu.us>
12265 L: netdev@vger.kernel.org
12266 S: Supported
12267 F: Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12268 F: Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12269 F: drivers/net/ethernet/neterion/
12270
12271 NETFILTER
12272 M: Pablo Neira Ayuso <pablo@netfilter.org>
12273 M: Jozsef Kadlecsik <kadlec@netfilter.org>
12274 M: Florian Westphal <fw@strlen.de>
12275 L: netfilter-devel@vger.kernel.org
12276 L: coreteam@netfilter.org
12277 S: Maintained
12278 W: http://www.netfilter.org/
12279 W: http://www.iptables.org/
12280 W: http://www.nftables.org/
12281 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
12282 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12283 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12284 F: include/linux/netfilter*
12285 F: include/linux/netfilter/
12286 F: include/net/netfilter/
12287 F: include/uapi/linux/netfilter*
12288 F: include/uapi/linux/netfilter/
12289 F: net/*/netfilter.c
12290 F: net/*/netfilter/
12291 F: net/bridge/br_netfilter*.c
12292 F: net/netfilter/
12293
12294 NETROM NETWORK LAYER
12295 M: Ralf Baechle <ralf@linux-mips.org>
12296 L: linux-hams@vger.kernel.org
12297 S: Maintained
12298 W: http://www.linux-ax25.org/
12299 F: include/net/netrom.h
12300 F: include/uapi/linux/netrom.h
12301 F: net/netrom/
12302
12303 NETRONOME ETHERNET DRIVERS
12304 M: Simon Horman <simon.horman@netronome.com>
12305 R: Jakub Kicinski <kuba@kernel.org>
12306 L: oss-drivers@netronome.com
12307 S: Maintained
12308 F: drivers/net/ethernet/netronome/
12309
12310 NETWORK BLOCK DEVICE (NBD)
12311 M: Josef Bacik <josef@toxicpanda.com>
12312 L: linux-block@vger.kernel.org
12313 L: nbd@other.debian.org
12314 S: Maintained
12315 F: Documentation/admin-guide/blockdev/nbd.rst
12316 F: drivers/block/nbd.c
12317 F: include/trace/events/nbd.h
12318 F: include/uapi/linux/nbd.h
12319
12320 NETWORK DROP MONITOR
12321 M: Neil Horman <nhorman@tuxdriver.com>
12322 L: netdev@vger.kernel.org
12323 S: Maintained
12324 W: https://fedorahosted.org/dropwatch/
12325 F: include/uapi/linux/net_dropmon.h
12326 F: net/core/drop_monitor.c
12327
12328 NETWORKING DRIVERS
12329 M: "David S. Miller" <davem@davemloft.net>
12330 M: Jakub Kicinski <kuba@kernel.org>
12331 L: netdev@vger.kernel.org
12332 S: Maintained
12333 W: http://www.linuxfoundation.org/en/Net
12334 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12335 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12336 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12337 F: Documentation/devicetree/bindings/net/
12338 F: drivers/connector/
12339 F: drivers/net/
12340 F: include/linux/etherdevice.h
12341 F: include/linux/fcdevice.h
12342 F: include/linux/fddidevice.h
12343 F: include/linux/hippidevice.h
12344 F: include/linux/if_*
12345 F: include/linux/inetdevice.h
12346 F: include/linux/netdevice.h
12347 F: include/uapi/linux/if_*
12348 F: include/uapi/linux/netdevice.h
12349
12350 NETWORKING DRIVERS (WIRELESS)
12351 M: Kalle Valo <kvalo@codeaurora.org>
12352 L: linux-wireless@vger.kernel.org
12353 S: Maintained
12354 Q: http://patchwork.kernel.org/project/linux-wireless/list/
12355 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12356 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12357 F: Documentation/devicetree/bindings/net/wireless/
12358 F: drivers/net/wireless/
12359
12360 NETWORKING [DSA]
12361 M: Andrew Lunn <andrew@lunn.ch>
12362 M: Vivien Didelot <vivien.didelot@gmail.com>
12363 M: Florian Fainelli <f.fainelli@gmail.com>
12364 M: Vladimir Oltean <olteanv@gmail.com>
12365 S: Maintained
12366 F: Documentation/devicetree/bindings/net/dsa/
12367 F: drivers/net/dsa/
12368 F: include/linux/dsa/
12369 F: include/linux/platform_data/dsa.h
12370 F: include/net/dsa.h
12371 F: net/dsa/
12372
12373 NETWORKING [GENERAL]
12374 M: "David S. Miller" <davem@davemloft.net>
12375 M: Jakub Kicinski <kuba@kernel.org>
12376 L: netdev@vger.kernel.org
12377 S: Maintained
12378 W: http://www.linuxfoundation.org/en/Net
12379 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12380 B: mailto:netdev@vger.kernel.org
12381 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12382 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12383 F: Documentation/networking/
12384 F: include/linux/in.h
12385 F: include/linux/net.h
12386 F: include/linux/netdevice.h
12387 F: include/net/
12388 F: include/uapi/linux/in.h
12389 F: include/uapi/linux/net.h
12390 F: include/uapi/linux/net_namespace.h
12391 F: include/uapi/linux/netdevice.h
12392 F: lib/net_utils.c
12393 F: lib/random32.c
12394 F: net/
12395 F: tools/testing/selftests/net/
12396
12397 NETWORKING [IPSEC]
12398 M: Steffen Klassert <steffen.klassert@secunet.com>
12399 M: Herbert Xu <herbert@gondor.apana.org.au>
12400 M: "David S. Miller" <davem@davemloft.net>
12401 L: netdev@vger.kernel.org
12402 S: Maintained
12403 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12404 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12405 F: include/net/xfrm.h
12406 F: include/uapi/linux/xfrm.h
12407 F: net/ipv4/ah4.c
12408 F: net/ipv4/esp4*
12409 F: net/ipv4/ip_vti.c
12410 F: net/ipv4/ipcomp.c
12411 F: net/ipv4/xfrm*
12412 F: net/ipv6/ah6.c
12413 F: net/ipv6/esp6*
12414 F: net/ipv6/ip6_vti.c
12415 F: net/ipv6/ipcomp6.c
12416 F: net/ipv6/xfrm*
12417 F: net/key/
12418 F: net/xfrm/
12419 F: tools/testing/selftests/net/ipsec.c
12420
12421 NETWORKING [IPv4/IPv6]
12422 M: "David S. Miller" <davem@davemloft.net>
12423 M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
12424 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12425 L: netdev@vger.kernel.org
12426 S: Maintained
12427 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12428 F: arch/x86/net/*
12429 F: include/net/ip*
12430 F: net/ipv4/
12431 F: net/ipv6/
12432
12433 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12434 M: Paul Moore <paul@paul-moore.com>
12435 L: netdev@vger.kernel.org
12436 L: linux-security-module@vger.kernel.org
12437 S: Maintained
12438 W: https://github.com/netlabel
12439 F: Documentation/netlabel/
12440 F: include/net/calipso.h
12441 F: include/net/cipso_ipv4.h
12442 F: include/net/netlabel.h
12443 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
12444 F: include/uapi/linux/netfilter/xt_SECMARK.h
12445 F: net/ipv4/cipso_ipv4.c
12446 F: net/ipv6/calipso.c
12447 F: net/netfilter/xt_CONNSECMARK.c
12448 F: net/netfilter/xt_SECMARK.c
12449 F: net/netlabel/
12450
12451 NETWORKING [MPTCP]
12452 M: Mat Martineau <mathew.j.martineau@linux.intel.com>
12453 M: Matthieu Baerts <matthieu.baerts@tessares.net>
12454 L: netdev@vger.kernel.org
12455 L: mptcp@lists.01.org
12456 S: Maintained
12457 W: https://github.com/multipath-tcp/mptcp_net-next/wiki
12458 B: https://github.com/multipath-tcp/mptcp_net-next/issues
12459 F: Documentation/networking/mptcp-sysctl.rst
12460 F: include/net/mptcp.h
12461 F: include/uapi/linux/mptcp.h
12462 F: net/mptcp/
12463 F: tools/testing/selftests/net/mptcp/
12464
12465 NETWORKING [TCP]
12466 M: Eric Dumazet <edumazet@google.com>
12467 L: netdev@vger.kernel.org
12468 S: Maintained
12469 F: include/linux/tcp.h
12470 F: include/net/tcp.h
12471 F: include/trace/events/tcp.h
12472 F: include/uapi/linux/tcp.h
12473 F: net/ipv4/syncookies.c
12474 F: net/ipv4/tcp*.c
12475 F: net/ipv6/syncookies.c
12476 F: net/ipv6/tcp*.c
12477
12478 NETWORKING [TLS]
12479 M: Boris Pismenny <borisp@nvidia.com>
12480 M: Aviad Yehezkel <aviadye@nvidia.com>
12481 M: John Fastabend <john.fastabend@gmail.com>
12482 M: Daniel Borkmann <daniel@iogearbox.net>
12483 M: Jakub Kicinski <kuba@kernel.org>
12484 L: netdev@vger.kernel.org
12485 S: Maintained
12486 F: include/net/tls.h
12487 F: include/uapi/linux/tls.h
12488 F: net/tls/*
12489
12490 NETWORKING [WIRELESS]
12491 L: linux-wireless@vger.kernel.org
12492 Q: http://patchwork.kernel.org/project/linux-wireless/list/
12493
12494 NETXEN (1/10) GbE SUPPORT
12495 M: Manish Chopra <manishc@marvell.com>
12496 M: Rahul Verma <rahulv@marvell.com>
12497 M: GR-Linux-NIC-Dev@marvell.com
12498 L: netdev@vger.kernel.org
12499 S: Supported
12500 F: drivers/net/ethernet/qlogic/netxen/
12501
12502 NET_FAILOVER MODULE
12503 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
12504 L: netdev@vger.kernel.org
12505 S: Supported
12506 F: Documentation/networking/net_failover.rst
12507 F: drivers/net/net_failover.c
12508 F: include/net/net_failover.h
12509
12510 NEXTHOP
12511 M: David Ahern <dsahern@kernel.org>
12512 L: netdev@vger.kernel.org
12513 S: Maintained
12514 F: include/net/netns/nexthop.h
12515 F: include/net/nexthop.h
12516 F: include/uapi/linux/nexthop.h
12517 F: net/ipv4/nexthop.c
12518
12519 NFC SUBSYSTEM
12520 L: netdev@vger.kernel.org
12521 S: Orphan
12522 F: Documentation/devicetree/bindings/net/nfc/
12523 F: drivers/nfc/
12524 F: include/linux/platform_data/nfcmrvl.h
12525 F: include/net/nfc/
12526 F: include/uapi/linux/nfc.h
12527 F: net/nfc/
12528
12529 NFS, SUNRPC, AND LOCKD CLIENTS
12530 M: Trond Myklebust <trond.myklebust@hammerspace.com>
12531 M: Anna Schumaker <anna.schumaker@netapp.com>
12532 L: linux-nfs@vger.kernel.org
12533 S: Maintained
12534 W: http://client.linux-nfs.org
12535 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12536 F: fs/lockd/
12537 F: fs/nfs/
12538 F: fs/nfs_common/
12539 F: include/linux/lockd/
12540 F: include/linux/nfs*
12541 F: include/linux/sunrpc/
12542 F: include/uapi/linux/nfs*
12543 F: include/uapi/linux/sunrpc/
12544 F: net/sunrpc/
12545 F: Documentation/filesystems/nfs/
12546
12547 NILFS2 FILESYSTEM
12548 M: Ryusuke Konishi <konishi.ryusuke@gmail.com>
12549 L: linux-nilfs@vger.kernel.org
12550 S: Supported
12551 W: https://nilfs.sourceforge.io/
12552 W: https://nilfs.osdn.jp/
12553 T: git git://github.com/konis/nilfs2.git
12554 F: Documentation/filesystems/nilfs2.rst
12555 F: fs/nilfs2/
12556 F: include/trace/events/nilfs2.h
12557 F: include/uapi/linux/nilfs2_api.h
12558 F: include/uapi/linux/nilfs2_ondisk.h
12559
12560 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12561 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12562 S: Maintained
12563 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12564 F: Documentation/scsi/NinjaSCSI.rst
12565 F: drivers/scsi/pcmcia/nsp_*
12566
12567 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12568 M: GOTO Masanori <gotom@debian.or.jp>
12569 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12570 S: Maintained
12571 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12572 F: Documentation/scsi/NinjaSCSI.rst
12573 F: drivers/scsi/nsp32*
12574
12575 NIOS2 ARCHITECTURE
12576 M: Ley Foon Tan <ley.foon.tan@intel.com>
12577 S: Maintained
12578 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12579 F: arch/nios2/
12580
12581 NITRO ENCLAVES (NE)
12582 M: Andra Paraschiv <andraprs@amazon.com>
12583 M: Alexandru Vasile <lexnv@amazon.com>
12584 M: Alexandru Ciobotaru <alcioa@amazon.com>
12585 L: linux-kernel@vger.kernel.org
12586 S: Supported
12587 W: https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12588 F: Documentation/virt/ne_overview.rst
12589 F: drivers/virt/nitro_enclaves/
12590 F: include/linux/nitro_enclaves.h
12591 F: include/uapi/linux/nitro_enclaves.h
12592 F: samples/nitro_enclaves/
12593
12594 NOHZ, DYNTICKS SUPPORT
12595 M: Frederic Weisbecker <fweisbec@gmail.com>
12596 M: Thomas Gleixner <tglx@linutronix.de>
12597 M: Ingo Molnar <mingo@kernel.org>
12598 L: linux-kernel@vger.kernel.org
12599 S: Maintained
12600 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12601 F: include/linux/sched/nohz.h
12602 F: include/linux/tick.h
12603 F: kernel/time/tick*.*
12604
12605 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12606 M: Pavel Machek <pavel@ucw.cz>
12607 M: Sakari Ailus <sakari.ailus@iki.fi>
12608 L: linux-media@vger.kernel.org
12609 S: Maintained
12610 F: drivers/media/i2c/ad5820.c
12611 F: drivers/media/i2c/et8ek8
12612
12613 NOKIA N900 POWER SUPPLY DRIVERS
12614 R: Pali Rohár <pali@kernel.org>
12615 F: drivers/power/supply/bq2415x_charger.c
12616 F: drivers/power/supply/bq27xxx_battery.c
12617 F: drivers/power/supply/bq27xxx_battery_i2c.c
12618 F: drivers/power/supply/isp1704_charger.c
12619 F: drivers/power/supply/rx51_battery.c
12620 F: include/linux/power/bq2415x_charger.h
12621 F: include/linux/power/bq27xxx_battery.h
12622
12623 NOLIBC HEADER FILE
12624 M: Willy Tarreau <w@1wt.eu>
12625 S: Maintained
12626 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12627 F: tools/include/nolibc/
12628
12629 NSDEPS
12630 M: Matthias Maennich <maennich@google.com>
12631 S: Maintained
12632 F: Documentation/core-api/symbol-namespaces.rst
12633 F: scripts/nsdeps
12634
12635 NTB AMD DRIVER
12636 M: Sanjay R Mehta <sanju.mehta@amd.com>
12637 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12638 L: linux-ntb@googlegroups.com
12639 S: Supported
12640 F: drivers/ntb/hw/amd/
12641
12642 NTB DRIVER CORE
12643 M: Jon Mason <jdmason@kudzu.us>
12644 M: Dave Jiang <dave.jiang@intel.com>
12645 M: Allen Hubbe <allenbh@gmail.com>
12646 L: linux-ntb@googlegroups.com
12647 S: Supported
12648 W: https://github.com/jonmason/ntb/wiki
12649 T: git git://github.com/jonmason/ntb.git
12650 F: drivers/net/ntb_netdev.c
12651 F: drivers/ntb/
12652 F: include/linux/ntb.h
12653 F: include/linux/ntb_transport.h
12654 F: tools/testing/selftests/ntb/
12655
12656 NTB IDT DRIVER
12657 M: Serge Semin <fancer.lancer@gmail.com>
12658 L: linux-ntb@googlegroups.com
12659 S: Supported
12660 F: drivers/ntb/hw/idt/
12661
12662 NTB INTEL DRIVER
12663 M: Dave Jiang <dave.jiang@intel.com>
12664 L: linux-ntb@googlegroups.com
12665 S: Supported
12666 W: https://github.com/davejiang/linux/wiki
12667 T: git https://github.com/davejiang/linux.git
12668 F: drivers/ntb/hw/intel/
12669
12670 NTFS FILESYSTEM
12671 M: Anton Altaparmakov <anton@tuxera.com>
12672 L: linux-ntfs-dev@lists.sourceforge.net
12673 S: Supported
12674 W: http://www.tuxera.com/
12675 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12676 F: Documentation/filesystems/ntfs.rst
12677 F: fs/ntfs/
12678
12679 NUBUS SUBSYSTEM
12680 M: Finn Thain <fthain@telegraphics.com.au>
12681 L: linux-m68k@lists.linux-m68k.org
12682 S: Maintained
12683 F: arch/*/include/asm/nubus.h
12684 F: drivers/nubus/
12685 F: include/linux/nubus.h
12686 F: include/uapi/linux/nubus.h
12687
12688 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12689 M: Antonino Daplas <adaplas@gmail.com>
12690 L: linux-fbdev@vger.kernel.org
12691 S: Maintained
12692 F: drivers/video/fbdev/nvidia/
12693 F: drivers/video/fbdev/riva/
12694
12695 NVM EXPRESS DRIVER
12696 M: Keith Busch <kbusch@kernel.org>
12697 M: Jens Axboe <axboe@fb.com>
12698 M: Christoph Hellwig <hch@lst.de>
12699 M: Sagi Grimberg <sagi@grimberg.me>
12700 L: linux-nvme@lists.infradead.org
12701 S: Supported
12702 W: http://git.infradead.org/nvme.git
12703 T: git://git.infradead.org/nvme.git
12704 F: drivers/nvme/host/
12705 F: include/linux/nvme.h
12706 F: include/uapi/linux/nvme_ioctl.h
12707
12708 NVM EXPRESS FC TRANSPORT DRIVERS
12709 M: James Smart <james.smart@broadcom.com>
12710 L: linux-nvme@lists.infradead.org
12711 S: Supported
12712 F: drivers/nvme/host/fc.c
12713 F: drivers/nvme/target/fc.c
12714 F: drivers/nvme/target/fcloop.c
12715 F: include/linux/nvme-fc-driver.h
12716 F: include/linux/nvme-fc.h
12717
12718 NVM EXPRESS TARGET DRIVER
12719 M: Christoph Hellwig <hch@lst.de>
12720 M: Sagi Grimberg <sagi@grimberg.me>
12721 M: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12722 L: linux-nvme@lists.infradead.org
12723 S: Supported
12724 W: http://git.infradead.org/nvme.git
12725 T: git://git.infradead.org/nvme.git
12726 F: drivers/nvme/target/
12727
12728 NVMEM FRAMEWORK
12729 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12730 S: Maintained
12731 T: git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12732 F: Documentation/ABI/stable/sysfs-bus-nvmem
12733 F: Documentation/devicetree/bindings/nvmem/
12734 F: drivers/nvmem/
12735 F: include/linux/nvmem-consumer.h
12736 F: include/linux/nvmem-provider.h
12737
12738 NXP FSPI DRIVER
12739 M: Ashish Kumar <ashish.kumar@nxp.com>
12740 R: Yogesh Gaur <yogeshgaur.83@gmail.com>
12741 L: linux-spi@vger.kernel.org
12742 S: Maintained
12743 F: Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12744 F: drivers/spi/spi-nxp-fspi.c
12745
12746 NXP FXAS21002C DRIVER
12747 M: Rui Miguel Silva <rmfrfs@gmail.com>
12748 L: linux-iio@vger.kernel.org
12749 S: Maintained
12750 F: Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
12751 F: drivers/iio/gyro/fxas21002c.h
12752 F: drivers/iio/gyro/fxas21002c_core.c
12753 F: drivers/iio/gyro/fxas21002c_i2c.c
12754 F: drivers/iio/gyro/fxas21002c_spi.c
12755
12756 NXP i.MX 8MQ DCSS DRIVER
12757 M: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12758 R: Lucas Stach <l.stach@pengutronix.de>
12759 L: dri-devel@lists.freedesktop.org
12760 S: Maintained
12761 F: Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12762 F: drivers/gpu/drm/imx/dcss/
12763
12764 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
12765 M: Jagan Teki <jagan@amarulasolutions.com>
12766 S: Maintained
12767 F: Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
12768 F: drivers/regulator/pf8x00-regulator.c
12769
12770 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12771 M: Krzysztof Kozlowski <krzk@kernel.org>
12772 L: linux-kernel@vger.kernel.org
12773 S: Maintained
12774 F: Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12775 F: drivers/extcon/extcon-ptn5150.c
12776
12777 NXP SGTL5000 DRIVER
12778 M: Fabio Estevam <festevam@gmail.com>
12779 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12780 S: Maintained
12781 F: Documentation/devicetree/bindings/sound/sgtl5000.yaml
12782 F: sound/soc/codecs/sgtl5000*
12783
12784 NXP SJA1105 ETHERNET SWITCH DRIVER
12785 M: Vladimir Oltean <olteanv@gmail.com>
12786 L: linux-kernel@vger.kernel.org
12787 S: Maintained
12788 F: drivers/net/dsa/sja1105
12789
12790 NXP TDA998X DRM DRIVER
12791 M: Russell King <linux@armlinux.org.uk>
12792 S: Maintained
12793 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12794 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12795 F: drivers/gpu/drm/i2c/tda998x_drv.c
12796 F: include/drm/i2c/tda998x.h
12797 F: include/dt-bindings/display/tda998x.h
12798 K: "nxp,tda998x"
12799
12800 NXP TFA9879 DRIVER
12801 M: Peter Rosin <peda@axentia.se>
12802 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12803 S: Maintained
12804 F: Documentation/devicetree/bindings/sound/tfa9879.txt
12805 F: sound/soc/codecs/tfa9879*
12806
12807 NXP-NCI NFC DRIVER
12808 M: Clément Perrochaud <clement.perrochaud@effinnov.com>
12809 R: Charles Gorand <charles.gorand@effinnov.com>
12810 L: linux-nfc@lists.01.org (moderated for non-subscribers)
12811 S: Supported
12812 F: drivers/nfc/nxp-nci
12813
12814 OBJAGG
12815 M: Jiri Pirko <jiri@nvidia.com>
12816 L: netdev@vger.kernel.org
12817 S: Supported
12818 F: include/linux/objagg.h
12819 F: lib/objagg.c
12820 F: lib/test_objagg.c
12821
12822 OBJTOOL
12823 M: Josh Poimboeuf <jpoimboe@redhat.com>
12824 M: Peter Zijlstra <peterz@infradead.org>
12825 S: Supported
12826 F: tools/objtool/
12827 F: include/linux/objtool.h
12828
12829 OCELOT ETHERNET SWITCH DRIVER
12830 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12831 M: Vladimir Oltean <vladimir.oltean@nxp.com>
12832 M: Claudiu Manoil <claudiu.manoil@nxp.com>
12833 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
12834 L: netdev@vger.kernel.org
12835 S: Supported
12836 F: drivers/net/dsa/ocelot/*
12837 F: drivers/net/ethernet/mscc/
12838 F: include/soc/mscc/ocelot*
12839 F: net/dsa/tag_ocelot.c
12840 F: tools/testing/selftests/drivers/net/ocelot/*
12841
12842 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12843 M: Frederic Barrat <fbarrat@linux.ibm.com>
12844 M: Andrew Donnellan <ajd@linux.ibm.com>
12845 L: linuxppc-dev@lists.ozlabs.org
12846 S: Supported
12847 F: Documentation/userspace-api/accelerators/ocxl.rst
12848 F: arch/powerpc/include/asm/pnv-ocxl.h
12849 F: arch/powerpc/platforms/powernv/ocxl.c
12850 F: drivers/misc/ocxl/
12851 F: include/misc/ocxl*
12852 F: include/uapi/misc/ocxl.h
12853
12854 OMAP AUDIO SUPPORT
12855 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
12856 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
12857 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12858 L: linux-omap@vger.kernel.org
12859 S: Maintained
12860 F: sound/soc/ti/n810.c
12861 F: sound/soc/ti/omap*
12862 F: sound/soc/ti/rx51.c
12863 F: sound/soc/ti/sdma-pcm.*
12864
12865 OMAP CLOCK FRAMEWORK SUPPORT
12866 M: Paul Walmsley <paul@pwsan.com>
12867 L: linux-omap@vger.kernel.org
12868 S: Maintained
12869 F: arch/arm/*omap*/*clock*
12870
12871 OMAP DEVICE TREE SUPPORT
12872 M: Benoît Cousson <bcousson@baylibre.com>
12873 M: Tony Lindgren <tony@atomide.com>
12874 L: linux-omap@vger.kernel.org
12875 L: devicetree@vger.kernel.org
12876 S: Maintained
12877 F: arch/arm/boot/dts/*am3*
12878 F: arch/arm/boot/dts/*am4*
12879 F: arch/arm/boot/dts/*am5*
12880 F: arch/arm/boot/dts/*dra7*
12881 F: arch/arm/boot/dts/*omap*
12882 F: arch/arm/boot/dts/logicpd-som-lv*
12883 F: arch/arm/boot/dts/logicpd-torpedo*
12884
12885 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12886 L: linux-omap@vger.kernel.org
12887 L: linux-fbdev@vger.kernel.org
12888 S: Orphan
12889 F: Documentation/arm/omap/dss.rst
12890 F: drivers/video/fbdev/omap2/
12891
12892 OMAP FRAMEBUFFER SUPPORT
12893 L: linux-fbdev@vger.kernel.org
12894 L: linux-omap@vger.kernel.org
12895 S: Orphan
12896 F: drivers/video/fbdev/omap/
12897
12898 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12899 M: Roger Quadros <rogerq@ti.com>
12900 M: Tony Lindgren <tony@atomide.com>
12901 L: linux-omap@vger.kernel.org
12902 S: Maintained
12903 F: arch/arm/mach-omap2/*gpmc*
12904 F: drivers/memory/omap-gpmc.c
12905
12906 OMAP GPIO DRIVER
12907 M: Grygorii Strashko <grygorii.strashko@ti.com>
12908 M: Santosh Shilimkar <ssantosh@kernel.org>
12909 M: Kevin Hilman <khilman@kernel.org>
12910 L: linux-omap@vger.kernel.org
12911 S: Maintained
12912 F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
12913 F: drivers/gpio/gpio-omap.c
12914
12915 OMAP HARDWARE SPINLOCK SUPPORT
12916 M: Ohad Ben-Cohen <ohad@wizery.com>
12917 L: linux-omap@vger.kernel.org
12918 S: Maintained
12919 F: drivers/hwspinlock/omap_hwspinlock.c
12920
12921 OMAP HS MMC SUPPORT
12922 L: linux-mmc@vger.kernel.org
12923 L: linux-omap@vger.kernel.org
12924 S: Orphan
12925 F: drivers/mmc/host/omap_hsmmc.c
12926
12927 OMAP HWMOD DATA
12928 M: Paul Walmsley <paul@pwsan.com>
12929 L: linux-omap@vger.kernel.org
12930 S: Maintained
12931 F: arch/arm/mach-omap2/omap_hwmod*data*
12932
12933 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12934 M: Benoît Cousson <bcousson@baylibre.com>
12935 L: linux-omap@vger.kernel.org
12936 S: Maintained
12937 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12938
12939 OMAP HWMOD SUPPORT
12940 M: Benoît Cousson <bcousson@baylibre.com>
12941 M: Paul Walmsley <paul@pwsan.com>
12942 L: linux-omap@vger.kernel.org
12943 S: Maintained
12944 F: arch/arm/mach-omap2/omap_hwmod.*
12945
12946 OMAP I2C DRIVER
12947 M: Vignesh R <vigneshr@ti.com>
12948 L: linux-omap@vger.kernel.org
12949 L: linux-i2c@vger.kernel.org
12950 S: Maintained
12951 F: Documentation/devicetree/bindings/i2c/i2c-omap.txt
12952 F: drivers/i2c/busses/i2c-omap.c
12953
12954 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12955 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12956 L: linux-media@vger.kernel.org
12957 S: Maintained
12958 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
12959 F: drivers/media/platform/omap3isp/
12960 F: drivers/staging/media/omap4iss/
12961
12962 OMAP MMC SUPPORT
12963 M: Aaro Koskinen <aaro.koskinen@iki.fi>
12964 L: linux-omap@vger.kernel.org
12965 S: Odd Fixes
12966 F: drivers/mmc/host/omap.c
12967
12968 OMAP POWER MANAGEMENT SUPPORT
12969 M: Kevin Hilman <khilman@kernel.org>
12970 L: linux-omap@vger.kernel.org
12971 S: Maintained
12972 F: arch/arm/*omap*/*pm*
12973 F: drivers/cpufreq/omap-cpufreq.c
12974
12975 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12976 M: Rajendra Nayak <rnayak@codeaurora.org>
12977 M: Paul Walmsley <paul@pwsan.com>
12978 L: linux-omap@vger.kernel.org
12979 S: Maintained
12980 F: arch/arm/mach-omap2/prm*
12981
12982 OMAP RANDOM NUMBER GENERATOR SUPPORT
12983 M: Deepak Saxena <dsaxena@plexity.net>
12984 S: Maintained
12985 F: drivers/char/hw_random/omap-rng.c
12986
12987 OMAP USB SUPPORT
12988 L: linux-usb@vger.kernel.org
12989 L: linux-omap@vger.kernel.org
12990 S: Orphan
12991 F: arch/arm/*omap*/usb*
12992 F: drivers/usb/*/*omap*
12993
12994 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12995 M: Mark Jackson <mpfj@newflow.co.uk>
12996 L: linux-omap@vger.kernel.org
12997 S: Maintained
12998 F: arch/arm/boot/dts/am335x-nano.dts
12999
13000 OMAP1 SUPPORT
13001 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13002 M: Tony Lindgren <tony@atomide.com>
13003 L: linux-omap@vger.kernel.org
13004 S: Maintained
13005 Q: http://patchwork.kernel.org/project/linux-omap/list/
13006 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13007 F: arch/arm/configs/omap1_defconfig
13008 F: arch/arm/mach-omap1/
13009 F: arch/arm/plat-omap/
13010 F: drivers/i2c/busses/i2c-omap.c
13011 F: include/linux/platform_data/ams-delta-fiq.h
13012 F: include/linux/platform_data/i2c-omap.h
13013
13014 OMAP2+ SUPPORT
13015 M: Tony Lindgren <tony@atomide.com>
13016 L: linux-omap@vger.kernel.org
13017 S: Maintained
13018 W: http://www.muru.com/linux/omap/
13019 W: http://linux.omap.com/
13020 Q: http://patchwork.kernel.org/project/linux-omap/list/
13021 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13022 F: arch/arm/configs/omap2plus_defconfig
13023 F: arch/arm/mach-omap2/
13024 F: arch/arm/plat-omap/
13025 F: drivers/bus/ti-sysc.c
13026 F: drivers/i2c/busses/i2c-omap.c
13027 F: drivers/irqchip/irq-omap-intc.c
13028 F: drivers/mfd/*omap*.c
13029 F: drivers/mfd/menelaus.c
13030 F: drivers/mfd/palmas.c
13031 F: drivers/mfd/tps65217.c
13032 F: drivers/mfd/tps65218.c
13033 F: drivers/mfd/tps65910.c
13034 F: drivers/mfd/twl-core.[ch]
13035 F: drivers/mfd/twl4030*.c
13036 F: drivers/mfd/twl6030*.c
13037 F: drivers/mfd/twl6040*.c
13038 F: drivers/regulator/palmas-regulator*.c
13039 F: drivers/regulator/pbias-regulator.c
13040 F: drivers/regulator/tps65217-regulator.c
13041 F: drivers/regulator/tps65218-regulator.c
13042 F: drivers/regulator/tps65910-regulator.c
13043 F: drivers/regulator/twl-regulator.c
13044 F: drivers/regulator/twl6030-regulator.c
13045 F: include/linux/platform_data/i2c-omap.h
13046 F: include/linux/platform_data/ti-sysc.h
13047
13048 OMFS FILESYSTEM
13049 M: Bob Copeland <me@bobcopeland.com>
13050 L: linux-karma-devel@lists.sourceforge.net
13051 S: Maintained
13052 F: Documentation/filesystems/omfs.rst
13053 F: fs/omfs/
13054
13055 OMNIKEY CARDMAN 4000 DRIVER
13056 M: Harald Welte <laforge@gnumonks.org>
13057 S: Maintained
13058 F: drivers/char/pcmcia/cm4000_cs.c
13059 F: include/linux/cm4000_cs.h
13060 F: include/uapi/linux/cm4000_cs.h
13061
13062 OMNIKEY CARDMAN 4040 DRIVER
13063 M: Harald Welte <laforge@gnumonks.org>
13064 S: Maintained
13065 F: drivers/char/pcmcia/cm4040_cs.*
13066
13067 OMNIVISION OV02A10 SENSOR DRIVER
13068 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13069 L: linux-media@vger.kernel.org
13070 S: Maintained
13071 T: git git://linuxtv.org/media_tree.git
13072 F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13073 F: drivers/media/i2c/ov02a10.c
13074
13075 OMNIVISION OV13858 SENSOR DRIVER
13076 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13077 L: linux-media@vger.kernel.org
13078 S: Maintained
13079 T: git git://linuxtv.org/media_tree.git
13080 F: drivers/media/i2c/ov13858.c
13081
13082 OMNIVISION OV2680 SENSOR DRIVER
13083 M: Rui Miguel Silva <rmfrfs@gmail.com>
13084 L: linux-media@vger.kernel.org
13085 S: Maintained
13086 T: git git://linuxtv.org/media_tree.git
13087 F: Documentation/devicetree/bindings/media/i2c/ov2680.yaml
13088 F: drivers/media/i2c/ov2680.c
13089
13090 OMNIVISION OV2685 SENSOR DRIVER
13091 M: Shunqian Zheng <zhengsq@rock-chips.com>
13092 L: linux-media@vger.kernel.org
13093 S: Maintained
13094 T: git git://linuxtv.org/media_tree.git
13095 F: drivers/media/i2c/ov2685.c
13096
13097 OMNIVISION OV2740 SENSOR DRIVER
13098 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13099 R: Shawn Tu <shawnx.tu@intel.com>
13100 R: Bingbu Cao <bingbu.cao@intel.com>
13101 L: linux-media@vger.kernel.org
13102 S: Maintained
13103 T: git git://linuxtv.org/media_tree.git
13104 F: drivers/media/i2c/ov2740.c
13105
13106 OMNIVISION OV5640 SENSOR DRIVER
13107 M: Steve Longerbeam <slongerbeam@gmail.com>
13108 L: linux-media@vger.kernel.org
13109 S: Maintained
13110 T: git git://linuxtv.org/media_tree.git
13111 F: drivers/media/i2c/ov5640.c
13112
13113 OMNIVISION OV5647 SENSOR DRIVER
13114 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
13115 M: Jacopo Mondi <jacopo@jmondi.org>
13116 L: linux-media@vger.kernel.org
13117 S: Maintained
13118 T: git git://linuxtv.org/media_tree.git
13119 F: Documentation/devicetree/bindings/media/i2c/ov5647.yaml
13120 F: drivers/media/i2c/ov5647.c
13121
13122 OMNIVISION OV5670 SENSOR DRIVER
13123 M: Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13124 M: Hyungwoo Yang <hyungwoo.yang@intel.com>
13125 L: linux-media@vger.kernel.org
13126 S: Maintained
13127 T: git git://linuxtv.org/media_tree.git
13128 F: drivers/media/i2c/ov5670.c
13129
13130 OMNIVISION OV5675 SENSOR DRIVER
13131 M: Shawn Tu <shawnx.tu@intel.com>
13132 L: linux-media@vger.kernel.org
13133 S: Maintained
13134 T: git git://linuxtv.org/media_tree.git
13135 F: drivers/media/i2c/ov5675.c
13136
13137 OMNIVISION OV5695 SENSOR DRIVER
13138 M: Shunqian Zheng <zhengsq@rock-chips.com>
13139 L: linux-media@vger.kernel.org
13140 S: Maintained
13141 T: git git://linuxtv.org/media_tree.git
13142 F: drivers/media/i2c/ov5695.c
13143
13144 OMNIVISION OV7670 SENSOR DRIVER
13145 L: linux-media@vger.kernel.org
13146 S: Orphan
13147 T: git git://linuxtv.org/media_tree.git
13148 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
13149 F: drivers/media/i2c/ov7670.c
13150
13151 OMNIVISION OV772x SENSOR DRIVER
13152 M: Jacopo Mondi <jacopo@jmondi.org>
13153 L: linux-media@vger.kernel.org
13154 S: Odd fixes
13155 T: git git://linuxtv.org/media_tree.git
13156 F: Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13157 F: drivers/media/i2c/ov772x.c
13158 F: include/media/i2c/ov772x.h
13159
13160 OMNIVISION OV7740 SENSOR DRIVER
13161 M: Wenyou Yang <wenyou.yang@microchip.com>
13162 L: linux-media@vger.kernel.org
13163 S: Maintained
13164 T: git git://linuxtv.org/media_tree.git
13165 F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
13166 F: drivers/media/i2c/ov7740.c
13167
13168 OMNIVISION OV8856 SENSOR DRIVER
13169 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13170 L: linux-media@vger.kernel.org
13171 S: Maintained
13172 T: git git://linuxtv.org/media_tree.git
13173 F: Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13174 F: drivers/media/i2c/ov8856.c
13175
13176 OMNIVISION OV9640 SENSOR DRIVER
13177 M: Petr Cvek <petrcvekcz@gmail.com>
13178 L: linux-media@vger.kernel.org
13179 S: Maintained
13180 F: drivers/media/i2c/ov9640.*
13181
13182 OMNIVISION OV9650 SENSOR DRIVER
13183 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13184 R: Akinobu Mita <akinobu.mita@gmail.com>
13185 R: Sylwester Nawrocki <s.nawrocki@samsung.com>
13186 L: linux-media@vger.kernel.org
13187 S: Maintained
13188 T: git git://linuxtv.org/media_tree.git
13189 F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
13190 F: drivers/media/i2c/ov9650.c
13191
13192 OMNIVISION OV9734 SENSOR DRIVER
13193 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13194 R: Bingbu Cao <bingbu.cao@intel.com>
13195 L: linux-media@vger.kernel.org
13196 S: Maintained
13197 T: git git://linuxtv.org/media_tree.git
13198 F: drivers/media/i2c/ov9734.c
13199
13200 ONENAND FLASH DRIVER
13201 M: Kyungmin Park <kyungmin.park@samsung.com>
13202 L: linux-mtd@lists.infradead.org
13203 S: Maintained
13204 F: drivers/mtd/nand/onenand/
13205 F: include/linux/mtd/onenand*.h
13206
13207 ONION OMEGA2+ BOARD
13208 M: Harvey Hunt <harveyhuntnexus@gmail.com>
13209 L: linux-mips@vger.kernel.org
13210 S: Maintained
13211 F: arch/mips/boot/dts/ralink/omega2p.dts
13212
13213 OP-TEE DRIVER
13214 M: Jens Wiklander <jens.wiklander@linaro.org>
13215 L: op-tee@lists.trustedfirmware.org
13216 S: Maintained
13217 F: Documentation/ABI/testing/sysfs-bus-optee-devices
13218 F: drivers/tee/optee/
13219
13220 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13221 M: Sumit Garg <sumit.garg@linaro.org>
13222 L: op-tee@lists.trustedfirmware.org
13223 S: Maintained
13224 F: drivers/char/hw_random/optee-rng.c
13225
13226 OPA-VNIC DRIVER
13227 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13228 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13229 L: linux-rdma@vger.kernel.org
13230 S: Supported
13231 F: drivers/infiniband/ulp/opa_vnic
13232
13233 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13234 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13235 M: Frank Rowand <frowand.list@gmail.com>
13236 L: devicetree@vger.kernel.org
13237 S: Maintained
13238 F: Documentation/devicetree/dynamic-resolution-notes.rst
13239 F: Documentation/devicetree/overlay-notes.rst
13240 F: drivers/of/overlay.c
13241 F: drivers/of/resolver.c
13242 K: of_overlay_notifier_
13243
13244 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13245 M: Rob Herring <robh+dt@kernel.org>
13246 M: Frank Rowand <frowand.list@gmail.com>
13247 L: devicetree@vger.kernel.org
13248 S: Maintained
13249 W: http://www.devicetree.org/
13250 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13251 F: Documentation/ABI/testing/sysfs-firmware-ofw
13252 F: drivers/of/
13253 F: include/linux/of*.h
13254 F: scripts/dtc/
13255
13256 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13257 M: Rob Herring <robh+dt@kernel.org>
13258 L: devicetree@vger.kernel.org
13259 S: Maintained
13260 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13261 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13262 F: Documentation/devicetree/
13263 F: arch/*/boot/dts/
13264 F: include/dt-bindings/
13265
13266 OPENCORES I2C BUS DRIVER
13267 M: Peter Korsgaard <peter@korsgaard.com>
13268 M: Andrew Lunn <andrew@lunn.ch>
13269 L: linux-i2c@vger.kernel.org
13270 S: Maintained
13271 F: Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13272 F: Documentation/i2c/busses/i2c-ocores.rst
13273 F: drivers/i2c/busses/i2c-ocores.c
13274 F: include/linux/platform_data/i2c-ocores.h
13275
13276 OPENRISC ARCHITECTURE
13277 M: Jonas Bonn <jonas@southpole.se>
13278 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13279 M: Stafford Horne <shorne@gmail.com>
13280 L: openrisc@lists.librecores.org
13281 S: Maintained
13282 W: http://openrisc.io
13283 T: git git://github.com/openrisc/linux.git
13284 F: Documentation/devicetree/bindings/openrisc/
13285 F: Documentation/openrisc/
13286 F: arch/openrisc/
13287 F: drivers/irqchip/irq-ompic.c
13288 F: drivers/irqchip/irq-or1k-*
13289
13290 OPENVSWITCH
13291 M: Pravin B Shelar <pshelar@ovn.org>
13292 L: netdev@vger.kernel.org
13293 L: dev@openvswitch.org
13294 S: Maintained
13295 W: http://openvswitch.org
13296 F: include/uapi/linux/openvswitch.h
13297 F: net/openvswitch/
13298
13299 OPERATING PERFORMANCE POINTS (OPP)
13300 M: Viresh Kumar <vireshk@kernel.org>
13301 M: Nishanth Menon <nm@ti.com>
13302 M: Stephen Boyd <sboyd@kernel.org>
13303 L: linux-pm@vger.kernel.org
13304 S: Maintained
13305 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13306 F: Documentation/devicetree/bindings/opp/
13307 F: Documentation/power/opp.rst
13308 F: drivers/opp/
13309 F: include/linux/pm_opp.h
13310
13311 OPL4 DRIVER
13312 M: Clemens Ladisch <clemens@ladisch.de>
13313 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13314 S: Maintained
13315 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13316 F: sound/drivers/opl4/
13317
13318 OPROFILE
13319 M: Robert Richter <rric@kernel.org>
13320 L: oprofile-list@lists.sf.net
13321 S: Maintained
13322 F: arch/*/include/asm/oprofile*.h
13323 F: arch/*/oprofile/
13324 F: drivers/oprofile/
13325 F: include/linux/oprofile.h
13326
13327 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13328 M: Mark Fasheh <mark@fasheh.com>
13329 M: Joel Becker <jlbec@evilplan.org>
13330 M: Joseph Qi <joseph.qi@linux.alibaba.com>
13331 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13332 S: Supported
13333 W: http://ocfs2.wiki.kernel.org
13334 F: Documentation/filesystems/dlmfs.rst
13335 F: Documentation/filesystems/ocfs2.rst
13336 F: fs/ocfs2/
13337
13338 ORANGEFS FILESYSTEM
13339 M: Mike Marshall <hubcap@omnibond.com>
13340 R: Martin Brandenburg <martin@omnibond.com>
13341 L: devel@lists.orangefs.org
13342 S: Supported
13343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13344 F: Documentation/filesystems/orangefs.rst
13345 F: fs/orangefs/
13346
13347 ORINOCO DRIVER
13348 L: linux-wireless@vger.kernel.org
13349 S: Orphan
13350 W: https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13351 W: http://www.nongnu.org/orinoco/
13352 F: drivers/net/wireless/intersil/orinoco/
13353
13354 OV2659 OMNIVISION SENSOR DRIVER
13355 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13356 L: linux-media@vger.kernel.org
13357 S: Maintained
13358 W: https://linuxtv.org
13359 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13360 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13361 F: drivers/media/i2c/ov2659.c
13362 F: include/media/i2c/ov2659.h
13363
13364 OVERLAY FILESYSTEM
13365 M: Miklos Szeredi <miklos@szeredi.hu>
13366 L: linux-unionfs@vger.kernel.org
13367 S: Supported
13368 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13369 F: Documentation/filesystems/overlayfs.rst
13370 F: fs/overlayfs/
13371
13372 P54 WIRELESS DRIVER
13373 M: Christian Lamparter <chunkeey@googlemail.com>
13374 L: linux-wireless@vger.kernel.org
13375 S: Maintained
13376 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
13377 F: drivers/net/wireless/intersil/p54/
13378
13379 PACKING
13380 M: Vladimir Oltean <olteanv@gmail.com>
13381 L: netdev@vger.kernel.org
13382 S: Supported
13383 F: Documentation/core-api/packing.rst
13384 F: include/linux/packing.h
13385 F: lib/packing.c
13386
13387 PADATA PARALLEL EXECUTION MECHANISM
13388 M: Steffen Klassert <steffen.klassert@secunet.com>
13389 M: Daniel Jordan <daniel.m.jordan@oracle.com>
13390 L: linux-crypto@vger.kernel.org
13391 L: linux-kernel@vger.kernel.org
13392 S: Maintained
13393 F: Documentation/core-api/padata.rst
13394 F: include/linux/padata.h
13395 F: kernel/padata.c
13396
13397 PAGE POOL
13398 M: Jesper Dangaard Brouer <hawk@kernel.org>
13399 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
13400 L: netdev@vger.kernel.org
13401 S: Supported
13402 F: Documentation/networking/page_pool.rst
13403 F: include/net/page_pool.h
13404 F: include/trace/events/page_pool.h
13405 F: net/core/page_pool.c
13406
13407 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13408 M: Kenneth Chan <kenneth.t.chan@gmail.com>
13409 L: platform-driver-x86@vger.kernel.org
13410 S: Maintained
13411 F: drivers/platform/x86/panasonic-laptop.c
13412
13413 PARALLAX PING IIO SENSOR DRIVER
13414 M: Andreas Klinger <ak@it-klinger.de>
13415 L: linux-iio@vger.kernel.org
13416 S: Maintained
13417 F: Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13418 F: drivers/iio/proximity/ping.c
13419
13420 PARALLEL LCD/KEYPAD PANEL DRIVER
13421 M: Willy Tarreau <willy@haproxy.com>
13422 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13423 S: Odd Fixes
13424 F: Documentation/admin-guide/lcd-panel-cgram.rst
13425 F: drivers/auxdisplay/panel.c
13426
13427 PARALLEL PORT SUBSYSTEM
13428 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13429 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13430 L: linux-parport@lists.infradead.org (subscribers-only)
13431 S: Maintained
13432 F: Documentation/driver-api/parport*.rst
13433 F: drivers/char/ppdev.c
13434 F: drivers/parport/
13435 F: include/linux/parport*.h
13436 F: include/uapi/linux/ppdev.h
13437
13438 PARAVIRT_OPS INTERFACE
13439 M: Juergen Gross <jgross@suse.com>
13440 M: Deep Shah <sdeep@vmware.com>
13441 M: "VMware, Inc." <pv-drivers@vmware.com>
13442 L: virtualization@lists.linux-foundation.org
13443 S: Supported
13444 F: Documentation/virt/paravirt_ops.rst
13445 F: arch/*/include/asm/paravirt*.h
13446 F: arch/*/kernel/paravirt*
13447 F: include/linux/hypervisor.h
13448
13449 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13450 M: Tim Waugh <tim@cyberelk.net>
13451 L: linux-parport@lists.infradead.org (subscribers-only)
13452 S: Maintained
13453 F: Documentation/admin-guide/blockdev/paride.rst
13454 F: drivers/block/paride/
13455
13456 PARISC ARCHITECTURE
13457 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13458 M: Helge Deller <deller@gmx.de>
13459 L: linux-parisc@vger.kernel.org
13460 S: Maintained
13461 W: https://parisc.wiki.kernel.org
13462 Q: http://patchwork.kernel.org/project/linux-parisc/list/
13463 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13464 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13465 F: Documentation/parisc/
13466 F: arch/parisc/
13467 F: drivers/char/agp/parisc-agp.c
13468 F: drivers/input/misc/hp_sdc_rtc.c
13469 F: drivers/input/serio/gscps2.c
13470 F: drivers/input/serio/hp_sdc*
13471 F: drivers/parisc/
13472 F: drivers/parport/parport_gsc.*
13473 F: drivers/tty/serial/8250/8250_gsc.c
13474 F: drivers/video/console/sti*
13475 F: drivers/video/fbdev/sti*
13476 F: drivers/video/logo/logo_parisc*
13477 F: include/linux/hp_sdc.h
13478
13479 PARMAN
13480 M: Jiri Pirko <jiri@nvidia.com>
13481 L: netdev@vger.kernel.org
13482 S: Supported
13483 F: include/linux/parman.h
13484 F: lib/parman.c
13485 F: lib/test_parman.c
13486
13487 PC ENGINES APU BOARD DRIVER
13488 M: Enrico Weigelt, metux IT consult <info@metux.net>
13489 S: Maintained
13490 F: drivers/platform/x86/pcengines-apuv2.c
13491
13492 PC87360 HARDWARE MONITORING DRIVER
13493 M: Jim Cromie <jim.cromie@gmail.com>
13494 L: linux-hwmon@vger.kernel.org
13495 S: Maintained
13496 F: Documentation/hwmon/pc87360.rst
13497 F: drivers/hwmon/pc87360.c
13498
13499 PC8736x GPIO DRIVER
13500 M: Jim Cromie <jim.cromie@gmail.com>
13501 S: Maintained
13502 F: drivers/char/pc8736x_gpio.c
13503
13504 PC87427 HARDWARE MONITORING DRIVER
13505 M: Jean Delvare <jdelvare@suse.com>
13506 L: linux-hwmon@vger.kernel.org
13507 S: Maintained
13508 F: Documentation/hwmon/pc87427.rst
13509 F: drivers/hwmon/pc87427.c
13510
13511 PCA9532 LED DRIVER
13512 M: Riku Voipio <riku.voipio@iki.fi>
13513 S: Maintained
13514 F: drivers/leds/leds-pca9532.c
13515 F: include/linux/leds-pca9532.h
13516
13517 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13518 M: Guenter Roeck <linux@roeck-us.net>
13519 L: linux-i2c@vger.kernel.org
13520 S: Maintained
13521 F: drivers/i2c/muxes/i2c-mux-pca9541.c
13522
13523 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13524 M: Khalid Aziz <khalid@gonehiking.org>
13525 S: Maintained
13526 F: drivers/firmware/pcdp.*
13527
13528 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13529 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13530 M: Pali Rohár <pali@kernel.org>
13531 L: linux-pci@vger.kernel.org
13532 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13533 S: Maintained
13534 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
13535 F: drivers/pci/controller/pci-aardvark.c
13536
13537 PCI DRIVER FOR ALTERA PCIE IP
13538 M: Ley Foon Tan <ley.foon.tan@intel.com>
13539 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
13540 L: linux-pci@vger.kernel.org
13541 S: Supported
13542 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
13543 F: drivers/pci/controller/pcie-altera.c
13544
13545 PCI DRIVER FOR APPLIEDMICRO XGENE
13546 M: Toan Le <toan@os.amperecomputing.com>
13547 L: linux-pci@vger.kernel.org
13548 L: linux-arm-kernel@lists.infradead.org
13549 S: Maintained
13550 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
13551 F: drivers/pci/controller/pci-xgene.c
13552
13553 PCI DRIVER FOR ARM VERSATILE PLATFORM
13554 M: Rob Herring <robh@kernel.org>
13555 L: linux-pci@vger.kernel.org
13556 L: linux-arm-kernel@lists.infradead.org
13557 S: Maintained
13558 F: Documentation/devicetree/bindings/pci/versatile.yaml
13559 F: drivers/pci/controller/pci-versatile.c
13560
13561 PCI DRIVER FOR ARMADA 8K
13562 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13563 L: linux-pci@vger.kernel.org
13564 L: linux-arm-kernel@lists.infradead.org
13565 S: Maintained
13566 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
13567 F: drivers/pci/controller/dwc/pcie-armada8k.c
13568
13569 PCI DRIVER FOR CADENCE PCIE IP
13570 M: Tom Joseph <tjoseph@cadence.com>
13571 L: linux-pci@vger.kernel.org
13572 S: Maintained
13573 F: Documentation/devicetree/bindings/pci/cdns,*
13574 F: drivers/pci/controller/cadence/
13575
13576 PCI DRIVER FOR FREESCALE LAYERSCAPE
13577 M: Minghuan Lian <minghuan.Lian@nxp.com>
13578 M: Mingkai Hu <mingkai.hu@nxp.com>
13579 M: Roy Zang <roy.zang@nxp.com>
13580 L: linuxppc-dev@lists.ozlabs.org
13581 L: linux-pci@vger.kernel.org
13582 L: linux-arm-kernel@lists.infradead.org
13583 S: Maintained
13584 F: drivers/pci/controller/dwc/*layerscape*
13585
13586 PCI DRIVER FOR GENERIC OF HOSTS
13587 M: Will Deacon <will@kernel.org>
13588 L: linux-pci@vger.kernel.org
13589 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13590 S: Maintained
13591 F: Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13592 F: drivers/pci/controller/pci-host-common.c
13593 F: drivers/pci/controller/pci-host-generic.c
13594
13595 PCI DRIVER FOR IMX6
13596 M: Richard Zhu <hongxing.zhu@nxp.com>
13597 M: Lucas Stach <l.stach@pengutronix.de>
13598 L: linux-pci@vger.kernel.org
13599 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13600 S: Maintained
13601 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13602 F: drivers/pci/controller/dwc/*imx6*
13603
13604 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13605 M: Jonathan Derrick <jonathan.derrick@intel.com>
13606 L: linux-pci@vger.kernel.org
13607 S: Supported
13608 F: drivers/pci/controller/vmd.c
13609
13610 PCI DRIVER FOR MICROSEMI SWITCHTEC
13611 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13612 M: Logan Gunthorpe <logang@deltatee.com>
13613 L: linux-pci@vger.kernel.org
13614 S: Maintained
13615 F: Documentation/ABI/testing/sysfs-class-switchtec
13616 F: Documentation/driver-api/switchtec.rst
13617 F: drivers/ntb/hw/mscc/
13618 F: drivers/pci/switch/switchtec*
13619 F: include/linux/switchtec.h
13620 F: include/uapi/linux/switchtec_ioctl.h
13621
13622 PCI DRIVER FOR MOBIVEIL PCIE IP
13623 M: Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13624 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13625 L: linux-pci@vger.kernel.org
13626 S: Supported
13627 F: Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13628 F: drivers/pci/controller/mobiveil/pcie-mobiveil*
13629
13630 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13631 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13632 L: linux-pci@vger.kernel.org
13633 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13634 S: Maintained
13635 F: drivers/pci/controller/*mvebu*
13636
13637 PCI DRIVER FOR NVIDIA TEGRA
13638 M: Thierry Reding <thierry.reding@gmail.com>
13639 L: linux-tegra@vger.kernel.org
13640 L: linux-pci@vger.kernel.org
13641 S: Supported
13642 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13643 F: drivers/pci/controller/pci-tegra.c
13644
13645 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13646 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13647 L: linux-pci@vger.kernel.org
13648 L: linux-arm-kernel@lists.infradead.org
13649 S: Maintained
13650 F: Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13651 F: drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13652
13653 PCI DRIVER FOR RENESAS R-CAR
13654 M: Marek Vasut <marek.vasut+renesas@gmail.com>
13655 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13656 L: linux-pci@vger.kernel.org
13657 L: linux-renesas-soc@vger.kernel.org
13658 S: Maintained
13659 F: Documentation/devicetree/bindings/pci/*rcar*
13660 F: drivers/pci/controller/*rcar*
13661
13662 PCI DRIVER FOR SAMSUNG EXYNOS
13663 M: Jingoo Han <jingoohan1@gmail.com>
13664 L: linux-pci@vger.kernel.org
13665 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13666 L: linux-samsung-soc@vger.kernel.org
13667 S: Maintained
13668 F: drivers/pci/controller/dwc/pci-exynos.c
13669
13670 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13671 M: Jingoo Han <jingoohan1@gmail.com>
13672 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13673 L: linux-pci@vger.kernel.org
13674 S: Maintained
13675 F: Documentation/devicetree/bindings/pci/designware-pcie.txt
13676 F: drivers/pci/controller/dwc/*designware*
13677
13678 PCI DRIVER FOR TI DRA7XX/J721E
13679 M: Kishon Vijay Abraham I <kishon@ti.com>
13680 L: linux-omap@vger.kernel.org
13681 L: linux-pci@vger.kernel.org
13682 L: linux-arm-kernel@lists.infradead.org
13683 S: Supported
13684 F: Documentation/devicetree/bindings/pci/ti-pci.txt
13685 F: drivers/pci/controller/cadence/pci-j721e.c
13686 F: drivers/pci/controller/dwc/pci-dra7xx.c
13687
13688 PCI DRIVER FOR TI KEYSTONE
13689 M: Murali Karicheri <m-karicheri2@ti.com>
13690 L: linux-pci@vger.kernel.org
13691 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13692 S: Maintained
13693 F: drivers/pci/controller/dwc/pci-keystone.c
13694
13695 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13696 M: Linus Walleij <linus.walleij@linaro.org>
13697 L: linux-pci@vger.kernel.org
13698 S: Maintained
13699 F: Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13700 F: drivers/pci/controller/pci-v3-semi.c
13701
13702 PCI ENDPOINT SUBSYSTEM
13703 M: Kishon Vijay Abraham I <kishon@ti.com>
13704 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13705 L: linux-pci@vger.kernel.org
13706 S: Supported
13707 F: Documentation/PCI/endpoint/*
13708 F: Documentation/misc-devices/pci-endpoint-test.rst
13709 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13710 F: drivers/misc/pci_endpoint_test.c
13711 F: drivers/pci/endpoint/
13712 F: tools/pci/
13713
13714 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13715 M: Russell Currey <ruscur@russell.cc>
13716 M: Oliver O'Halloran <oohall@gmail.com>
13717 L: linuxppc-dev@lists.ozlabs.org
13718 S: Supported
13719 F: Documentation/PCI/pci-error-recovery.rst
13720 F: Documentation/powerpc/eeh-pci-error-recovery.rst
13721 F: arch/powerpc/include/*/eeh*.h
13722 F: arch/powerpc/kernel/eeh*.c
13723 F: arch/powerpc/platforms/*/eeh*.c
13724 F: drivers/pci/pcie/aer.c
13725 F: drivers/pci/pcie/dpc.c
13726 F: drivers/pci/pcie/err.c
13727
13728 PCI ERROR RECOVERY
13729 M: Linas Vepstas <linasvepstas@gmail.com>
13730 L: linux-pci@vger.kernel.org
13731 S: Supported
13732 F: Documentation/PCI/pci-error-recovery.rst
13733
13734 PCI MSI DRIVER FOR ALTERA MSI IP
13735 M: Ley Foon Tan <ley.foon.tan@intel.com>
13736 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
13737 L: linux-pci@vger.kernel.org
13738 S: Supported
13739 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13740 F: drivers/pci/controller/pcie-altera-msi.c
13741
13742 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13743 M: Toan Le <toan@os.amperecomputing.com>
13744 L: linux-pci@vger.kernel.org
13745 L: linux-arm-kernel@lists.infradead.org
13746 S: Maintained
13747 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13748 F: drivers/pci/controller/pci-xgene-msi.c
13749
13750 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13751 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13752 R: Rob Herring <robh@kernel.org>
13753 L: linux-pci@vger.kernel.org
13754 S: Supported
13755 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
13756 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13757 F: drivers/pci/controller/
13758
13759 PCI SUBSYSTEM
13760 M: Bjorn Helgaas <bhelgaas@google.com>
13761 L: linux-pci@vger.kernel.org
13762 S: Supported
13763 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
13764 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13765 F: Documentation/PCI/
13766 F: Documentation/devicetree/bindings/pci/
13767 F: arch/x86/kernel/early-quirks.c
13768 F: arch/x86/kernel/quirks.c
13769 F: arch/x86/pci/
13770 F: drivers/acpi/pci*
13771 F: drivers/pci/
13772 F: include/asm-generic/pci*
13773 F: include/linux/of_pci.h
13774 F: include/linux/pci*
13775 F: include/uapi/linux/pci*
13776 F: lib/pci*
13777
13778 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13779 M: Jonathan Chocron <jonnyc@amazon.com>
13780 L: linux-pci@vger.kernel.org
13781 S: Maintained
13782 F: Documentation/devicetree/bindings/pci/pcie-al.txt
13783 F: drivers/pci/controller/dwc/pcie-al.c
13784
13785 PCIE DRIVER FOR AMLOGIC MESON
13786 M: Yue Wang <yue.wang@Amlogic.com>
13787 L: linux-pci@vger.kernel.org
13788 L: linux-amlogic@lists.infradead.org
13789 S: Maintained
13790 F: drivers/pci/controller/dwc/pci-meson.c
13791
13792 PCIE DRIVER FOR AXIS ARTPEC
13793 M: Jesper Nilsson <jesper.nilsson@axis.com>
13794 L: linux-arm-kernel@axis.com
13795 L: linux-pci@vger.kernel.org
13796 S: Maintained
13797 F: Documentation/devicetree/bindings/pci/axis,artpec*
13798 F: drivers/pci/controller/dwc/*artpec*
13799
13800 PCIE DRIVER FOR CAVIUM THUNDERX
13801 M: Robert Richter <rric@kernel.org>
13802 L: linux-pci@vger.kernel.org
13803 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13804 S: Odd Fixes
13805 F: drivers/pci/controller/pci-thunder-*
13806
13807 PCIE DRIVER FOR HISILICON
13808 M: Zhou Wang <wangzhou1@hisilicon.com>
13809 L: linux-pci@vger.kernel.org
13810 S: Maintained
13811 F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13812 F: drivers/pci/controller/dwc/pcie-hisi.c
13813
13814 PCIE DRIVER FOR HISILICON KIRIN
13815 M: Xiaowei Song <songxiaowei@hisilicon.com>
13816 M: Binghui Wang <wangbinghui@hisilicon.com>
13817 L: linux-pci@vger.kernel.org
13818 S: Maintained
13819 F: Documentation/devicetree/bindings/pci/kirin-pcie.txt
13820 F: drivers/pci/controller/dwc/pcie-kirin.c
13821
13822 PCIE DRIVER FOR HISILICON STB
13823 M: Shawn Guo <shawn.guo@linaro.org>
13824 L: linux-pci@vger.kernel.org
13825 S: Maintained
13826 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13827 F: drivers/pci/controller/dwc/pcie-histb.c
13828
13829 PCIE DRIVER FOR MEDIATEK
13830 M: Ryder Lee <ryder.lee@mediatek.com>
13831 L: linux-pci@vger.kernel.org
13832 L: linux-mediatek@lists.infradead.org
13833 S: Supported
13834 F: Documentation/devicetree/bindings/pci/mediatek*
13835 F: drivers/pci/controller/*mediatek*
13836
13837 PCIE DRIVER FOR QUALCOMM MSM
13838 M: Stanimir Varbanov <svarbanov@mm-sol.com>
13839 L: linux-pci@vger.kernel.org
13840 L: linux-arm-msm@vger.kernel.org
13841 S: Maintained
13842 F: drivers/pci/controller/dwc/*qcom*
13843
13844 PCIE DRIVER FOR ROCKCHIP
13845 M: Shawn Lin <shawn.lin@rock-chips.com>
13846 L: linux-pci@vger.kernel.org
13847 L: linux-rockchip@lists.infradead.org
13848 S: Maintained
13849 F: Documentation/devicetree/bindings/pci/rockchip-pcie*
13850 F: drivers/pci/controller/pcie-rockchip*
13851
13852 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13853 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13854 L: linux-pci@vger.kernel.org
13855 S: Maintained
13856 F: Documentation/devicetree/bindings/pci/uniphier-pcie*
13857 F: drivers/pci/controller/dwc/pcie-uniphier*
13858
13859 PCIE DRIVER FOR ST SPEAR13XX
13860 M: Pratyush Anand <pratyush.anand@gmail.com>
13861 L: linux-pci@vger.kernel.org
13862 S: Maintained
13863 F: drivers/pci/controller/dwc/*spear*
13864
13865 PCMCIA SUBSYSTEM
13866 M: Dominik Brodowski <linux@dominikbrodowski.net>
13867 S: Odd Fixes
13868 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13869 F: Documentation/pcmcia/
13870 F: drivers/pcmcia/
13871 F: include/pcmcia/
13872 F: tools/pcmcia/
13873
13874 PCNET32 NETWORK DRIVER
13875 M: Don Fry <pcnet32@frontier.com>
13876 L: netdev@vger.kernel.org
13877 S: Maintained
13878 F: drivers/net/ethernet/amd/pcnet32.c
13879
13880 PCRYPT PARALLEL CRYPTO ENGINE
13881 M: Steffen Klassert <steffen.klassert@secunet.com>
13882 L: linux-crypto@vger.kernel.org
13883 S: Maintained
13884 F: crypto/pcrypt.c
13885 F: include/crypto/pcrypt.h
13886
13887 PEAQ WMI HOTKEYS DRIVER
13888 M: Hans de Goede <hdegoede@redhat.com>
13889 L: platform-driver-x86@vger.kernel.org
13890 S: Maintained
13891 F: drivers/platform/x86/peaq-wmi.c
13892
13893 PENSANDO ETHERNET DRIVERS
13894 M: Shannon Nelson <snelson@pensando.io>
13895 M: Pensando Drivers <drivers@pensando.io>
13896 L: netdev@vger.kernel.org
13897 S: Supported
13898 F: Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13899 F: drivers/net/ethernet/pensando/
13900
13901 PER-CPU MEMORY ALLOCATOR
13902 M: Dennis Zhou <dennis@kernel.org>
13903 M: Tejun Heo <tj@kernel.org>
13904 M: Christoph Lameter <cl@linux.com>
13905 S: Maintained
13906 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13907 F: arch/*/include/asm/percpu.h
13908 F: include/linux/percpu*.h
13909 F: mm/percpu*.c
13910
13911 PER-TASK DELAY ACCOUNTING
13912 M: Balbir Singh <bsingharora@gmail.com>
13913 S: Maintained
13914 F: include/linux/delayacct.h
13915 F: kernel/delayacct.c
13916
13917 PERFORMANCE EVENTS SUBSYSTEM
13918 M: Peter Zijlstra <peterz@infradead.org>
13919 M: Ingo Molnar <mingo@redhat.com>
13920 M: Arnaldo Carvalho de Melo <acme@kernel.org>
13921 R: Mark Rutland <mark.rutland@arm.com>
13922 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
13923 R: Jiri Olsa <jolsa@redhat.com>
13924 R: Namhyung Kim <namhyung@kernel.org>
13925 L: linux-kernel@vger.kernel.org
13926 S: Supported
13927 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13928 F: arch/*/events/*
13929 F: arch/*/events/*/*
13930 F: arch/*/include/asm/perf_event.h
13931 F: arch/*/kernel/*/*/perf_event*.c
13932 F: arch/*/kernel/*/perf_event*.c
13933 F: arch/*/kernel/perf_callchain.c
13934 F: arch/*/kernel/perf_event*.c
13935 F: include/linux/perf_event.h
13936 F: include/uapi/linux/perf_event.h
13937 F: kernel/events/*
13938 F: tools/lib/perf/
13939 F: tools/perf/
13940
13941 PERFORMANCE EVENTS TOOLING ARM64
13942 R: John Garry <john.garry@huawei.com>
13943 R: Will Deacon <will@kernel.org>
13944 R: Mathieu Poirier <mathieu.poirier@linaro.org>
13945 R: Leo Yan <leo.yan@linaro.org>
13946 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13947 S: Supported
13948 F: tools/build/feature/test-libopencsd.c
13949 F: tools/perf/arch/arm*/
13950 F: tools/perf/pmu-events/arch/arm64/
13951 F: tools/perf/util/arm-spe*
13952 F: tools/perf/util/cs-etm*
13953
13954 PERSONALITY HANDLING
13955 M: Christoph Hellwig <hch@infradead.org>
13956 L: linux-abi-devel@lists.sourceforge.net
13957 S: Maintained
13958 F: include/linux/personality.h
13959 F: include/uapi/linux/personality.h
13960
13961 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13962 M: Marcus Folkesson <marcus.folkesson@gmail.com>
13963 L: linux-input@vger.kernel.org
13964 S: Maintained
13965 F: Documentation/input/devices/pxrc.rst
13966 F: drivers/input/joystick/pxrc.c
13967
13968 PHONET PROTOCOL
13969 M: Remi Denis-Courmont <courmisch@gmail.com>
13970 S: Supported
13971 F: Documentation/networking/phonet.rst
13972 F: include/linux/phonet.h
13973 F: include/net/phonet/
13974 F: include/uapi/linux/phonet.h
13975 F: net/phonet/
13976
13977 PHRAM MTD DRIVER
13978 M: Joern Engel <joern@lazybastard.org>
13979 L: linux-mtd@lists.infradead.org
13980 S: Maintained
13981 F: drivers/mtd/devices/phram.c
13982
13983 PICOLCD HID DRIVER
13984 M: Bruno Prémont <bonbons@linux-vserver.org>
13985 L: linux-input@vger.kernel.org
13986 S: Maintained
13987 F: drivers/hid/hid-picolcd*
13988
13989 PICOXCELL SUPPORT
13990 M: Jamie Iles <jamie@jamieiles.com>
13991 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13992 S: Supported
13993 T: git git://github.com/jamieiles/linux-2.6-ji.git
13994 F: arch/arm/boot/dts/picoxcell*
13995 F: arch/arm/mach-picoxcell/
13996 F: drivers/crypto/picoxcell*
13997
13998 PIDFD API
13999 M: Christian Brauner <christian@brauner.io>
14000 L: linux-kernel@vger.kernel.org
14001 S: Maintained
14002 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14003 F: samples/pidfd/
14004 F: tools/testing/selftests/clone3/
14005 F: tools/testing/selftests/pid_namespace/
14006 F: tools/testing/selftests/pidfd/
14007 K: (?i)pidfd
14008 K: (?i)clone3
14009 K: \b(clone_args|kernel_clone_args)\b
14010
14011 PIN CONTROL SUBSYSTEM
14012 M: Linus Walleij <linus.walleij@linaro.org>
14013 L: linux-gpio@vger.kernel.org
14014 S: Maintained
14015 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14016 F: Documentation/devicetree/bindings/pinctrl/
14017 F: Documentation/driver-api/pinctl.rst
14018 F: drivers/pinctrl/
14019 F: include/linux/pinctrl/
14020
14021 PIN CONTROLLER - FREESCALE
14022 M: Dong Aisheng <aisheng.dong@nxp.com>
14023 M: Fabio Estevam <festevam@gmail.com>
14024 M: Shawn Guo <shawnguo@kernel.org>
14025 M: Stefan Agner <stefan@agner.ch>
14026 R: Pengutronix Kernel Team <kernel@pengutronix.de>
14027 L: linux-gpio@vger.kernel.org
14028 S: Maintained
14029 F: Documentation/devicetree/bindings/pinctrl/fsl,*
14030 F: drivers/pinctrl/freescale/
14031
14032 PIN CONTROLLER - INTEL
14033 M: Mika Westerberg <mika.westerberg@linux.intel.com>
14034 M: Andy Shevchenko <andy@kernel.org>
14035 S: Maintained
14036 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14037 F: drivers/pinctrl/intel/
14038
14039 PIN CONTROLLER - MEDIATEK
14040 M: Sean Wang <sean.wang@kernel.org>
14041 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14042 S: Maintained
14043 F: Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14044 F: Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14045 F: drivers/pinctrl/mediatek/
14046
14047 PIN CONTROLLER - MICROCHIP AT91
14048 M: Ludovic Desroches <ludovic.desroches@microchip.com>
14049 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14050 L: linux-gpio@vger.kernel.org
14051 S: Supported
14052 F: drivers/gpio/gpio-sama5d2-piobu.c
14053 F: drivers/pinctrl/pinctrl-at91*
14054
14055 PIN CONTROLLER - QUALCOMM
14056 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14057 L: linux-arm-msm@vger.kernel.org
14058 S: Maintained
14059 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14060 F: drivers/pinctrl/qcom/
14061
14062 PIN CONTROLLER - RENESAS
14063 M: Geert Uytterhoeven <geert+renesas@glider.be>
14064 L: linux-renesas-soc@vger.kernel.org
14065 S: Supported
14066 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14067 F: Documentation/devicetree/bindings/pinctrl/renesas,*
14068 F: drivers/pinctrl/renesas/
14069
14070 PIN CONTROLLER - SAMSUNG
14071 M: Tomasz Figa <tomasz.figa@gmail.com>
14072 M: Krzysztof Kozlowski <krzk@kernel.org>
14073 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14074 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14075 L: linux-samsung-soc@vger.kernel.org
14076 S: Maintained
14077 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
14078 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14079 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14080 F: drivers/pinctrl/samsung/
14081 F: include/dt-bindings/pinctrl/samsung.h
14082
14083 PIN CONTROLLER - SINGLE
14084 M: Tony Lindgren <tony@atomide.com>
14085 M: Haojian Zhuang <haojian.zhuang@linaro.org>
14086 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14087 L: linux-omap@vger.kernel.org
14088 S: Maintained
14089 F: drivers/pinctrl/pinctrl-single.c
14090
14091 PIN CONTROLLER - ST SPEAR
14092 M: Viresh Kumar <vireshk@kernel.org>
14093 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14094 S: Maintained
14095 W: http://www.st.com/spear
14096 F: drivers/pinctrl/spear/
14097
14098 PISTACHIO SOC SUPPORT
14099 M: James Hartley <james.hartley@sondrel.com>
14100 L: linux-mips@vger.kernel.org
14101 S: Odd Fixes
14102 F: arch/mips/boot/dts/img/pistachio*
14103 F: arch/mips/configs/pistachio*_defconfig
14104 F: arch/mips/include/asm/mach-pistachio/
14105 F: arch/mips/pistachio/
14106
14107 PKTCDVD DRIVER
14108 M: linux-block@vger.kernel.org
14109 S: Orphan
14110 F: drivers/block/pktcdvd.c
14111 F: include/linux/pktcdvd.h
14112 F: include/uapi/linux/pktcdvd.h
14113
14114 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14115 M: Tomasz Duszynski <tduszyns@gmail.com>
14116 S: Maintained
14117 F: Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14118 F: drivers/iio/chemical/pms7003.c
14119
14120 PLDMFW LIBRARY
14121 M: Jacob Keller <jacob.e.keller@intel.com>
14122 S: Maintained
14123 F: Documentation/driver-api/pldmfw/
14124 F: include/linux/pldmfw.h
14125 F: lib/pldmfw/
14126
14127 PLX DMA DRIVER
14128 M: Logan Gunthorpe <logang@deltatee.com>
14129 S: Maintained
14130 F: drivers/dma/plx_dma.c
14131
14132 PM6764TR DRIVER
14133 M: Charles Hsu <hsu.yungteng@gmail.com>
14134 L: linux-hwmon@vger.kernel.org
14135 S: Maintained
14136 F: Documentation/hwmon/pm6764tr.rst
14137 F: drivers/hwmon/pmbus/pm6764tr.c
14138
14139 PM-GRAPH UTILITY
14140 M: "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14141 L: linux-pm@vger.kernel.org
14142 S: Supported
14143 W: https://01.org/pm-graph
14144 B: https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14145 T: git git://github.com/intel/pm-graph
14146 F: tools/power/pm-graph
14147
14148 PMBUS HARDWARE MONITORING DRIVERS
14149 M: Guenter Roeck <linux@roeck-us.net>
14150 L: linux-hwmon@vger.kernel.org
14151 S: Maintained
14152 W: http://hwmon.wiki.kernel.org/
14153 W: http://www.roeck-us.net/linux/drivers/
14154 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14155 F: Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14156 F: Documentation/devicetree/bindings/hwmon/ltc2978.txt
14157 F: Documentation/devicetree/bindings/hwmon/max31785.txt
14158 F: Documentation/hwmon/adm1275.rst
14159 F: Documentation/hwmon/ibm-cffps.rst
14160 F: Documentation/hwmon/ir35221.rst
14161 F: Documentation/hwmon/lm25066.rst
14162 F: Documentation/hwmon/ltc2978.rst
14163 F: Documentation/hwmon/ltc3815.rst
14164 F: Documentation/hwmon/max16064.rst
14165 F: Documentation/hwmon/max20751.rst
14166 F: Documentation/hwmon/max31785.rst
14167 F: Documentation/hwmon/max34440.rst
14168 F: Documentation/hwmon/max8688.rst
14169 F: Documentation/hwmon/pmbus-core.rst
14170 F: Documentation/hwmon/pmbus.rst
14171 F: Documentation/hwmon/tps40422.rst
14172 F: Documentation/hwmon/ucd9000.rst
14173 F: Documentation/hwmon/ucd9200.rst
14174 F: Documentation/hwmon/zl6100.rst
14175 F: drivers/hwmon/pmbus/
14176 F: include/linux/pmbus.h
14177
14178 PMC SIERRA MaxRAID DRIVER
14179 L: linux-scsi@vger.kernel.org
14180 S: Orphan
14181 W: http://www.pmc-sierra.com/
14182 F: drivers/scsi/pmcraid.*
14183
14184 PMC SIERRA PM8001 DRIVER
14185 M: Jack Wang <jinpu.wang@cloud.ionos.com>
14186 L: linux-scsi@vger.kernel.org
14187 S: Supported
14188 F: drivers/scsi/pm8001/
14189
14190 PNI RM3100 IIO DRIVER
14191 M: Song Qiang <songqiang1304521@gmail.com>
14192 L: linux-iio@vger.kernel.org
14193 S: Maintained
14194 F: Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14195 F: drivers/iio/magnetometer/rm3100*
14196
14197 PNP SUPPORT
14198 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14199 L: linux-acpi@vger.kernel.org
14200 S: Maintained
14201 F: drivers/pnp/
14202 F: include/linux/pnp.h
14203
14204 POSIX CLOCKS and TIMERS
14205 M: Thomas Gleixner <tglx@linutronix.de>
14206 L: linux-kernel@vger.kernel.org
14207 S: Maintained
14208 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14209 F: fs/timerfd.c
14210 F: include/linux/time_namespace.h
14211 F: include/linux/timer*
14212 F: kernel/time/*timer*
14213 F: kernel/time/namespace.c
14214
14215 POWER MANAGEMENT CORE
14216 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
14217 L: linux-pm@vger.kernel.org
14218 S: Supported
14219 B: https://bugzilla.kernel.org
14220 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14221 F: drivers/base/power/
14222 F: drivers/powercap/
14223 F: include/linux/intel_rapl.h
14224 F: include/linux/pm.h
14225 F: include/linux/pm_*
14226 F: include/linux/powercap.h
14227 F: kernel/configs/nopm.config
14228
14229 POWER STATE COORDINATION INTERFACE (PSCI)
14230 M: Mark Rutland <mark.rutland@arm.com>
14231 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14232 L: linux-arm-kernel@lists.infradead.org
14233 S: Maintained
14234 F: drivers/firmware/psci/
14235 F: include/linux/psci.h
14236 F: include/uapi/linux/psci.h
14237
14238 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14239 M: Sebastian Reichel <sre@kernel.org>
14240 L: linux-pm@vger.kernel.org
14241 S: Maintained
14242 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14243 F: Documentation/ABI/testing/sysfs-class-power
14244 F: Documentation/devicetree/bindings/power/supply/
14245 F: drivers/power/supply/
14246 F: include/linux/power_supply.h
14247
14248 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14249 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14250 L: linuxppc-dev@lists.ozlabs.org
14251 S: Maintained
14252 F: drivers/char/powernv-op-panel.c
14253
14254 PPP OVER ATM (RFC 2364)
14255 M: Mitchell Blank Jr <mitch@sfgoth.com>
14256 S: Maintained
14257 F: include/uapi/linux/atmppp.h
14258 F: net/atm/pppoatm.c
14259
14260 PPP OVER ETHERNET
14261 M: Michal Ostrowski <mostrows@earthlink.net>
14262 S: Maintained
14263 F: drivers/net/ppp/pppoe.c
14264 F: drivers/net/ppp/pppox.c
14265
14266 PPP OVER L2TP
14267 M: James Chapman <jchapman@katalix.com>
14268 S: Maintained
14269 F: include/linux/if_pppol2tp.h
14270 F: include/uapi/linux/if_pppol2tp.h
14271 F: net/l2tp/l2tp_ppp.c
14272
14273 PPP PROTOCOL DRIVERS AND COMPRESSORS
14274 M: Paul Mackerras <paulus@samba.org>
14275 L: linux-ppp@vger.kernel.org
14276 S: Maintained
14277 F: drivers/net/ppp/ppp_*
14278
14279 PPS SUPPORT
14280 M: Rodolfo Giometti <giometti@enneenne.com>
14281 L: linuxpps@ml.enneenne.com (subscribers-only)
14282 S: Maintained
14283 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
14284 F: Documentation/ABI/testing/sysfs-pps
14285 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
14286 F: Documentation/driver-api/pps.rst
14287 F: drivers/pps/
14288 F: include/linux/pps*.h
14289 F: include/uapi/linux/pps.h
14290
14291 PPTP DRIVER
14292 M: Dmitry Kozlov <xeb@mail.ru>
14293 L: netdev@vger.kernel.org
14294 S: Maintained
14295 W: http://sourceforge.net/projects/accel-pptp
14296 F: drivers/net/ppp/pptp.c
14297
14298 PRESSURE STALL INFORMATION (PSI)
14299 M: Johannes Weiner <hannes@cmpxchg.org>
14300 S: Maintained
14301 F: include/linux/psi*
14302 F: kernel/sched/psi.c
14303
14304 PRINTK
14305 M: Petr Mladek <pmladek@suse.com>
14306 M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14307 R: Steven Rostedt <rostedt@goodmis.org>
14308 R: John Ogness <john.ogness@linutronix.de>
14309 S: Maintained
14310 F: include/linux/printk.h
14311 F: kernel/printk/
14312
14313 PRISM54 WIRELESS DRIVER
14314 M: Luis Chamberlain <mcgrof@kernel.org>
14315 L: linux-wireless@vger.kernel.org
14316 S: Obsolete
14317 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
14318 F: drivers/net/wireless/intersil/prism54/
14319
14320 PROC FILESYSTEM
14321 R: Alexey Dobriyan <adobriyan@gmail.com>
14322 L: linux-kernel@vger.kernel.org
14323 L: linux-fsdevel@vger.kernel.org
14324 S: Maintained
14325 F: Documentation/filesystems/proc.rst
14326 F: fs/proc/
14327 F: include/linux/proc_fs.h
14328 F: tools/testing/selftests/proc/
14329
14330 PROC SYSCTL
14331 M: Luis Chamberlain <mcgrof@kernel.org>
14332 M: Kees Cook <keescook@chromium.org>
14333 M: Iurii Zaikin <yzaikin@google.com>
14334 L: linux-kernel@vger.kernel.org
14335 L: linux-fsdevel@vger.kernel.org
14336 S: Maintained
14337 F: fs/proc/proc_sysctl.c
14338 F: include/linux/sysctl.h
14339 F: kernel/sysctl-test.c
14340 F: kernel/sysctl.c
14341 F: tools/testing/selftests/sysctl/
14342
14343 PS3 NETWORK SUPPORT
14344 M: Geoff Levand <geoff@infradead.org>
14345 L: netdev@vger.kernel.org
14346 L: linuxppc-dev@lists.ozlabs.org
14347 S: Maintained
14348 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
14349
14350 PS3 PLATFORM SUPPORT
14351 M: Geoff Levand <geoff@infradead.org>
14352 L: linuxppc-dev@lists.ozlabs.org
14353 S: Maintained
14354 F: arch/powerpc/boot/ps3*
14355 F: arch/powerpc/include/asm/lv1call.h
14356 F: arch/powerpc/include/asm/ps3*.h
14357 F: arch/powerpc/platforms/ps3/
14358 F: drivers/*/ps3*
14359 F: drivers/ps3/
14360 F: drivers/rtc/rtc-ps3.c
14361 F: drivers/usb/host/*ps3.c
14362 F: sound/ppc/snd_ps3*
14363
14364 PS3VRAM DRIVER
14365 M: Jim Paris <jim@jtan.com>
14366 M: Geoff Levand <geoff@infradead.org>
14367 L: linuxppc-dev@lists.ozlabs.org
14368 S: Maintained
14369 F: drivers/block/ps3vram.c
14370
14371 PSAMPLE PACKET SAMPLING SUPPORT
14372 M: Yotam Gigi <yotam.gi@gmail.com>
14373 S: Maintained
14374 F: include/net/psample.h
14375 F: include/uapi/linux/psample.h
14376 F: net/psample
14377
14378 PSTORE FILESYSTEM
14379 M: Kees Cook <keescook@chromium.org>
14380 M: Anton Vorontsov <anton@enomsg.org>
14381 M: Colin Cross <ccross@android.com>
14382 M: Tony Luck <tony.luck@intel.com>
14383 S: Maintained
14384 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14385 F: Documentation/admin-guide/ramoops.rst
14386 F: Documentation/admin-guide/pstore-blk.rst
14387 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14388 F: drivers/acpi/apei/erst.c
14389 F: drivers/firmware/efi/efi-pstore.c
14390 F: fs/pstore/
14391 F: include/linux/pstore*
14392 K: \b(pstore|ramoops)
14393
14394 PTP HARDWARE CLOCK SUPPORT
14395 M: Richard Cochran <richardcochran@gmail.com>
14396 L: netdev@vger.kernel.org
14397 S: Maintained
14398 W: http://linuxptp.sourceforge.net/
14399 F: Documentation/ABI/testing/sysfs-ptp
14400 F: Documentation/driver-api/ptp.rst
14401 F: drivers/net/phy/dp83640*
14402 F: drivers/ptp/*
14403 F: include/linux/ptp_cl*
14404
14405 PTRACE SUPPORT
14406 M: Oleg Nesterov <oleg@redhat.com>
14407 S: Maintained
14408 F: arch/*/*/ptrace*.c
14409 F: arch/*/include/asm/ptrace*.h
14410 F: arch/*/ptrace*.c
14411 F: include/asm-generic/syscall.h
14412 F: include/linux/ptrace.h
14413 F: include/linux/regset.h
14414 F: include/linux/tracehook.h
14415 F: include/uapi/linux/ptrace.h
14416 F: include/uapi/linux/ptrace.h
14417 F: kernel/ptrace.c
14418
14419 PULSE8-CEC DRIVER
14420 M: Hans Verkuil <hverkuil@xs4all.nl>
14421 L: linux-media@vger.kernel.org
14422 S: Maintained
14423 T: git git://linuxtv.org/media_tree.git
14424 F: Documentation/admin-guide/media/pulse8-cec.rst
14425 F: drivers/media/cec/usb/pulse8/
14426
14427 PVRUSB2 VIDEO4LINUX DRIVER
14428 M: Mike Isely <isely@pobox.com>
14429 L: pvrusb2@isely.net (subscribers-only)
14430 L: linux-media@vger.kernel.org
14431 S: Maintained
14432 W: http://www.isely.net/pvrusb2/
14433 T: git git://linuxtv.org/media_tree.git
14434 F: Documentation/driver-api/media/drivers/pvrusb2*
14435 F: drivers/media/usb/pvrusb2/
14436
14437 PWC WEBCAM DRIVER
14438 M: Hans Verkuil <hverkuil@xs4all.nl>
14439 L: linux-media@vger.kernel.org
14440 S: Odd Fixes
14441 T: git git://linuxtv.org/media_tree.git
14442 F: drivers/media/usb/pwc/*
14443 F: include/trace/events/pwc.h
14444
14445 PWM FAN DRIVER
14446 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14447 L: linux-hwmon@vger.kernel.org
14448 S: Supported
14449 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14450 F: Documentation/hwmon/pwm-fan.rst
14451 F: drivers/hwmon/pwm-fan.c
14452
14453 PWM IR Transmitter
14454 M: Sean Young <sean@mess.org>
14455 L: linux-media@vger.kernel.org
14456 S: Maintained
14457 F: drivers/media/rc/pwm-ir-tx.c
14458
14459 PWM SUBSYSTEM
14460 M: Thierry Reding <thierry.reding@gmail.com>
14461 R: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14462 M: Lee Jones <lee.jones@linaro.org>
14463 L: linux-pwm@vger.kernel.org
14464 S: Maintained
14465 Q: https://patchwork.ozlabs.org/project/linux-pwm/list/
14466 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14467 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14468 F: Documentation/devicetree/bindings/pwm/
14469 F: Documentation/driver-api/pwm.rst
14470 F: drivers/gpio/gpio-mvebu.c
14471 F: drivers/pwm/
14472 F: drivers/video/backlight/pwm_bl.c
14473 F: include/linux/pwm.h
14474 F: include/linux/pwm_backlight.h
14475 K: pwm_(config|apply_state|ops)
14476
14477 PXA GPIO DRIVER
14478 M: Robert Jarzmik <robert.jarzmik@free.fr>
14479 L: linux-gpio@vger.kernel.org
14480 S: Maintained
14481 F: drivers/gpio/gpio-pxa.c
14482
14483 PXA MMCI DRIVER
14484 S: Orphan
14485
14486 PXA RTC DRIVER
14487 M: Robert Jarzmik <robert.jarzmik@free.fr>
14488 L: linux-rtc@vger.kernel.org
14489 S: Maintained
14490
14491 PXA2xx/PXA3xx SUPPORT
14492 M: Daniel Mack <daniel@zonque.org>
14493 M: Haojian Zhuang <haojian.zhuang@gmail.com>
14494 M: Robert Jarzmik <robert.jarzmik@free.fr>
14495 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14496 S: Maintained
14497 T: git git://github.com/hzhuang1/linux.git
14498 T: git git://github.com/rjarzmik/linux.git
14499 F: arch/arm/boot/dts/pxa*
14500 F: arch/arm/mach-pxa/
14501 F: drivers/dma/pxa*
14502 F: drivers/pcmcia/pxa2xx*
14503 F: drivers/pinctrl/pxa/
14504 F: drivers/spi/spi-pxa2xx*
14505 F: drivers/usb/gadget/udc/pxa2*
14506 F: include/sound/pxa2xx-lib.h
14507 F: sound/arm/pxa*
14508 F: sound/soc/pxa/
14509
14510 QAT DRIVER
14511 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14512 L: qat-linux@intel.com
14513 S: Supported
14514 F: drivers/crypto/qat/
14515
14516 QCOM AUDIO (ASoC) DRIVERS
14517 M: Patrick Lai <plai@codeaurora.org>
14518 M: Banajit Goswami <bgoswami@codeaurora.org>
14519 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14520 S: Supported
14521 F: sound/soc/qcom/
14522
14523 QCOM IPA DRIVER
14524 M: Alex Elder <elder@kernel.org>
14525 L: netdev@vger.kernel.org
14526 S: Supported
14527 F: drivers/net/ipa/
14528
14529 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14530 M: Gabriel Somlo <somlo@cmu.edu>
14531 M: "Michael S. Tsirkin" <mst@redhat.com>
14532 L: qemu-devel@nongnu.org
14533 S: Maintained
14534 F: drivers/firmware/qemu_fw_cfg.c
14535 F: include/uapi/linux/qemu_fw_cfg.h
14536
14537 QIB DRIVER
14538 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14539 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14540 L: linux-rdma@vger.kernel.org
14541 S: Supported
14542 F: drivers/infiniband/hw/qib/
14543
14544 QLOGIC QL41xxx FCOE DRIVER
14545 M: Saurav Kashyap <skashyap@marvell.com>
14546 M: Javed Hasan <jhasan@marvell.com>
14547 M: GR-QLogic-Storage-Upstream@marvell.com
14548 L: linux-scsi@vger.kernel.org
14549 S: Supported
14550 F: drivers/scsi/qedf/
14551
14552 QLOGIC QL41xxx ISCSI DRIVER
14553 M: Nilesh Javali <njavali@marvell.com>
14554 M: Manish Rangankar <mrangankar@marvell.com>
14555 M: GR-QLogic-Storage-Upstream@marvell.com
14556 L: linux-scsi@vger.kernel.org
14557 S: Supported
14558 F: drivers/scsi/qedi/
14559
14560 QLOGIC QL4xxx ETHERNET DRIVER
14561 M: Ariel Elior <aelior@marvell.com>
14562 M: GR-everest-linux-l2@marvell.com
14563 L: netdev@vger.kernel.org
14564 S: Supported
14565 F: drivers/net/ethernet/qlogic/qed/
14566 F: drivers/net/ethernet/qlogic/qede/
14567 F: include/linux/qed/
14568
14569 QLOGIC QL4xxx RDMA DRIVER
14570 M: Michal Kalderon <mkalderon@marvell.com>
14571 M: Ariel Elior <aelior@marvell.com>
14572 L: linux-rdma@vger.kernel.org
14573 S: Supported
14574 F: drivers/infiniband/hw/qedr/
14575 F: include/uapi/rdma/qedr-abi.h
14576
14577 QLOGIC QLA1280 SCSI DRIVER
14578 M: Michael Reed <mdr@sgi.com>
14579 L: linux-scsi@vger.kernel.org
14580 S: Maintained
14581 F: drivers/scsi/qla1280.[ch]
14582
14583 QLOGIC QLA2XXX FC-SCSI DRIVER
14584 M: Nilesh Javali <njavali@marvell.com>
14585 M: GR-QLogic-Storage-Upstream@marvell.com
14586 L: linux-scsi@vger.kernel.org
14587 S: Supported
14588 F: drivers/scsi/qla2xxx/
14589
14590 QLOGIC QLA3XXX NETWORK DRIVER
14591 M: GR-Linux-NIC-Dev@marvell.com
14592 L: netdev@vger.kernel.org
14593 S: Supported
14594 F: drivers/net/ethernet/qlogic/qla3xxx.*
14595
14596 QLOGIC QLA4XXX iSCSI DRIVER
14597 M: Nilesh Javali <njavali@marvell.com>
14598 M: Manish Rangankar <mrangankar@marvell.com>
14599 M: GR-QLogic-Storage-Upstream@marvell.com
14600 L: linux-scsi@vger.kernel.org
14601 S: Supported
14602 F: drivers/scsi/qla4xxx/
14603
14604 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14605 M: Shahed Shaikh <shshaikh@marvell.com>
14606 M: Manish Chopra <manishc@marvell.com>
14607 M: GR-Linux-NIC-Dev@marvell.com
14608 L: netdev@vger.kernel.org
14609 S: Supported
14610 F: drivers/net/ethernet/qlogic/qlcnic/
14611
14612 QLOGIC QLGE 10Gb ETHERNET DRIVER
14613 M: Manish Chopra <manishc@marvell.com>
14614 M: GR-Linux-NIC-Dev@marvell.com
14615 L: netdev@vger.kernel.org
14616 S: Supported
14617 F: drivers/staging/qlge/
14618
14619 QM1D1B0004 MEDIA DRIVER
14620 M: Akihiro Tsukada <tskd08@gmail.com>
14621 L: linux-media@vger.kernel.org
14622 S: Odd Fixes
14623 F: drivers/media/tuners/qm1d1b0004*
14624
14625 QM1D1C0042 MEDIA DRIVER
14626 M: Akihiro Tsukada <tskd08@gmail.com>
14627 L: linux-media@vger.kernel.org
14628 S: Odd Fixes
14629 F: drivers/media/tuners/qm1d1c0042*
14630
14631 QNX4 FILESYSTEM
14632 M: Anders Larsen <al@alarsen.net>
14633 S: Maintained
14634 W: http://www.alarsen.net/linux/qnx4fs/
14635 F: fs/qnx4/
14636 F: include/uapi/linux/qnx4_fs.h
14637 F: include/uapi/linux/qnxtypes.h
14638
14639 QORIQ DPAA2 FSL-MC BUS DRIVER
14640 M: Stuart Yoder <stuyoder@gmail.com>
14641 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
14642 L: linux-kernel@vger.kernel.org
14643 S: Maintained
14644 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14645 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14646 F: drivers/bus/fsl-mc/
14647
14648 QT1010 MEDIA DRIVER
14649 M: Antti Palosaari <crope@iki.fi>
14650 L: linux-media@vger.kernel.org
14651 S: Maintained
14652 W: https://linuxtv.org
14653 W: http://palosaari.fi/linux/
14654 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14655 T: git git://linuxtv.org/anttip/media_tree.git
14656 F: drivers/media/tuners/qt1010*
14657
14658 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14659 M: Kalle Valo <kvalo@codeaurora.org>
14660 L: ath10k@lists.infradead.org
14661 S: Supported
14662 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14663 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14664 F: drivers/net/wireless/ath/ath10k/
14665
14666 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14667 M: Kalle Valo <kvalo@codeaurora.org>
14668 L: ath11k@lists.infradead.org
14669 S: Supported
14670 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14671 F: drivers/net/wireless/ath/ath11k/
14672
14673 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14674 M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14675 L: linux-wireless@vger.kernel.org
14676 S: Supported
14677 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14678 F: drivers/net/wireless/ath/ath9k/
14679
14680 QUALCOMM CAMERA SUBSYSTEM DRIVER
14681 M: Robert Foss <robert.foss@linaro.org>
14682 M: Todor Tomov <todor.too@gmail.com>
14683 L: linux-media@vger.kernel.org
14684 S: Maintained
14685 F: Documentation/admin-guide/media/qcom_camss.rst
14686 F: Documentation/devicetree/bindings/media/qcom,camss.txt
14687 F: drivers/media/platform/qcom/camss/
14688
14689 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14690 M: Niklas Cassel <nks@flawful.org>
14691 L: linux-pm@vger.kernel.org
14692 L: linux-arm-msm@vger.kernel.org
14693 S: Maintained
14694 F: Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14695 F: drivers/soc/qcom/cpr.c
14696
14697 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14698 M: Ilia Lin <ilia.lin@kernel.org>
14699 L: linux-pm@vger.kernel.org
14700 S: Maintained
14701 F: Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14702 F: drivers/cpufreq/qcom-cpufreq-nvmem.c
14703
14704 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14705 M: Timur Tabi <timur@kernel.org>
14706 L: netdev@vger.kernel.org
14707 S: Maintained
14708 F: drivers/net/ethernet/qualcomm/emac/
14709
14710 QUALCOMM ETHQOS ETHERNET DRIVER
14711 M: Vinod Koul <vkoul@kernel.org>
14712 L: netdev@vger.kernel.org
14713 S: Maintained
14714 F: Documentation/devicetree/bindings/net/qcom,ethqos.txt
14715 F: drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14716
14717 QUALCOMM GENERIC INTERFACE I2C DRIVER
14718 M: Akash Asthana <akashast@codeaurora.org>
14719 M: Mukesh Savaliya <msavaliy@codeaurora.org>
14720 L: linux-i2c@vger.kernel.org
14721 L: linux-arm-msm@vger.kernel.org
14722 S: Supported
14723 F: drivers/i2c/busses/i2c-qcom-geni.c
14724
14725 QUALCOMM HEXAGON ARCHITECTURE
14726 M: Brian Cain <bcain@codeaurora.org>
14727 L: linux-hexagon@vger.kernel.org
14728 S: Supported
14729 F: arch/hexagon/
14730
14731 QUALCOMM HIDMA DRIVER
14732 M: Sinan Kaya <okaya@kernel.org>
14733 L: linux-arm-kernel@lists.infradead.org
14734 L: linux-arm-msm@vger.kernel.org
14735 L: dmaengine@vger.kernel.org
14736 S: Supported
14737 F: drivers/dma/qcom/hidma*
14738
14739 QUALCOMM I2C CCI DRIVER
14740 M: Loic Poulain <loic.poulain@linaro.org>
14741 M: Robert Foss <robert.foss@linaro.org>
14742 L: linux-i2c@vger.kernel.org
14743 L: linux-arm-msm@vger.kernel.org
14744 S: Maintained
14745 F: Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14746 F: drivers/i2c/busses/i2c-qcom-cci.c
14747
14748 QUALCOMM IOMMU
14749 M: Rob Clark <robdclark@gmail.com>
14750 L: iommu@lists.linux-foundation.org
14751 L: linux-arm-msm@vger.kernel.org
14752 S: Maintained
14753 F: drivers/iommu/arm/arm-smmu/qcom_iommu.c
14754
14755 QUALCOMM IPCC MAILBOX DRIVER
14756 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14757 L: linux-arm-msm@vger.kernel.org
14758 S: Supported
14759 F: Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14760 F: drivers/mailbox/qcom-ipcc.c
14761 F: include/dt-bindings/mailbox/qcom-ipcc.h
14762
14763 QUALCOMM IPQ4019 USB PHY DRIVER
14764 M: Robert Marko <robert.marko@sartura.hr>
14765 M: Luka Perkov <luka.perkov@sartura.hr>
14766 L: linux-arm-msm@vger.kernel.org
14767 S: Maintained
14768 F: Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
14769 F: drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
14770
14771 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14772 M: Robert Marko <robert.marko@sartura.hr>
14773 M: Luka Perkov <luka.perkov@sartura.hr>
14774 L: linux-arm-msm@vger.kernel.org
14775 S: Maintained
14776 F: Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14777 F: drivers/regulator/vqmmc-ipq4019-regulator.c
14778
14779 QUALCOMM RMNET DRIVER
14780 M: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14781 M: Sean Tranchetti <stranche@codeaurora.org>
14782 L: netdev@vger.kernel.org
14783 S: Maintained
14784 F: Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14785 F: drivers/net/ethernet/qualcomm/rmnet/
14786 F: include/linux/if_rmnet.h
14787
14788 QUALCOMM TSENS THERMAL DRIVER
14789 M: Amit Kucheria <amitk@kernel.org>
14790 L: linux-pm@vger.kernel.org
14791 L: linux-arm-msm@vger.kernel.org
14792 S: Maintained
14793 F: Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14794 F: drivers/thermal/qcom/
14795
14796 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14797 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
14798 L: linux-media@vger.kernel.org
14799 L: linux-arm-msm@vger.kernel.org
14800 S: Maintained
14801 T: git git://linuxtv.org/media_tree.git
14802 F: Documentation/devicetree/bindings/media/*venus*
14803 F: drivers/media/platform/qcom/venus/
14804
14805 QUALCOMM WCN36XX WIRELESS DRIVER
14806 M: Kalle Valo <kvalo@codeaurora.org>
14807 L: wcn36xx@lists.infradead.org
14808 S: Supported
14809 W: https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14810 T: git git://github.com/KrasnikovEugene/wcn36xx.git
14811 F: drivers/net/wireless/ath/wcn36xx/
14812
14813 QUANTENNA QTNFMAC WIRELESS DRIVER
14814 M: Igor Mitsyanko <imitsyanko@quantenna.com>
14815 R: Sergey Matyukevich <geomatsi@gmail.com>
14816 L: linux-wireless@vger.kernel.org
14817 S: Maintained
14818 F: drivers/net/wireless/quantenna
14819
14820 RADEON and AMDGPU DRM DRIVERS
14821 M: Alex Deucher <alexander.deucher@amd.com>
14822 M: Christian König <christian.koenig@amd.com>
14823 L: amd-gfx@lists.freedesktop.org
14824 S: Supported
14825 T: git git://people.freedesktop.org/~agd5f/linux
14826 F: drivers/gpu/drm/amd/
14827 F: drivers/gpu/drm/radeon/
14828 F: include/uapi/drm/amdgpu_drm.h
14829 F: include/uapi/drm/radeon_drm.h
14830
14831 RADEON FRAMEBUFFER DISPLAY DRIVER
14832 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
14833 L: linux-fbdev@vger.kernel.org
14834 S: Maintained
14835 F: drivers/video/fbdev/aty/radeon*
14836 F: include/uapi/linux/radeonfb.h
14837
14838 RADIOSHARK RADIO DRIVER
14839 M: Hans Verkuil <hverkuil@xs4all.nl>
14840 L: linux-media@vger.kernel.org
14841 S: Maintained
14842 T: git git://linuxtv.org/media_tree.git
14843 F: drivers/media/radio/radio-shark.c
14844
14845 RADIOSHARK2 RADIO DRIVER
14846 M: Hans Verkuil <hverkuil@xs4all.nl>
14847 L: linux-media@vger.kernel.org
14848 S: Maintained
14849 T: git git://linuxtv.org/media_tree.git
14850 F: drivers/media/radio/radio-shark2.c
14851 F: drivers/media/radio/radio-tea5777.c
14852
14853 RADOS BLOCK DEVICE (RBD)
14854 M: Ilya Dryomov <idryomov@gmail.com>
14855 R: Dongsheng Yang <dongsheng.yang@easystack.cn>
14856 L: ceph-devel@vger.kernel.org
14857 S: Supported
14858 W: http://ceph.com/
14859 T: git git://github.com/ceph/ceph-client.git
14860 F: Documentation/ABI/testing/sysfs-bus-rbd
14861 F: drivers/block/rbd.c
14862 F: drivers/block/rbd_types.h
14863
14864 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14865 M: Paul Mackerras <paulus@samba.org>
14866 L: linux-fbdev@vger.kernel.org
14867 S: Maintained
14868 F: drivers/video/fbdev/aty/aty128fb.c
14869
14870 RAINSHADOW-CEC DRIVER
14871 M: Hans Verkuil <hverkuil@xs4all.nl>
14872 L: linux-media@vger.kernel.org
14873 S: Maintained
14874 T: git git://linuxtv.org/media_tree.git
14875 F: drivers/media/cec/usb/rainshadow/
14876
14877 RALINK MIPS ARCHITECTURE
14878 M: John Crispin <john@phrozen.org>
14879 L: linux-mips@vger.kernel.org
14880 S: Maintained
14881 F: arch/mips/ralink
14882
14883 RALINK RT2X00 WIRELESS LAN DRIVER
14884 M: Stanislaw Gruszka <stf_xl@wp.pl>
14885 M: Helmut Schaa <helmut.schaa@googlemail.com>
14886 L: linux-wireless@vger.kernel.org
14887 S: Maintained
14888 F: drivers/net/wireless/ralink/rt2x00/
14889
14890 RAMDISK RAM BLOCK DEVICE DRIVER
14891 M: Jens Axboe <axboe@kernel.dk>
14892 S: Maintained
14893 F: Documentation/admin-guide/blockdev/ramdisk.rst
14894 F: drivers/block/brd.c
14895
14896 RANCHU VIRTUAL BOARD FOR MIPS
14897 M: Miodrag Dinic <miodrag.dinic@mips.com>
14898 L: linux-mips@vger.kernel.org
14899 S: Supported
14900 F: arch/mips/configs/generic/board-ranchu.config
14901 F: arch/mips/generic/board-ranchu.c
14902
14903 RANDOM NUMBER DRIVER
14904 M: "Theodore Ts'o" <tytso@mit.edu>
14905 S: Maintained
14906 F: drivers/char/random.c
14907
14908 RAPIDIO SUBSYSTEM
14909 M: Matt Porter <mporter@kernel.crashing.org>
14910 M: Alexandre Bounine <alex.bou9@gmail.com>
14911 S: Maintained
14912 F: drivers/rapidio/
14913
14914 RAS INFRASTRUCTURE
14915 M: Tony Luck <tony.luck@intel.com>
14916 M: Borislav Petkov <bp@alien8.de>
14917 L: linux-edac@vger.kernel.org
14918 S: Maintained
14919 F: Documentation/admin-guide/ras.rst
14920 F: drivers/ras/
14921 F: include/linux/ras.h
14922 F: include/ras/ras_event.h
14923
14924 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14925 L: linux-wireless@vger.kernel.org
14926 S: Orphan
14927 F: drivers/net/wireless/ray*
14928
14929 RC-CORE / LIRC FRAMEWORK
14930 M: Sean Young <sean@mess.org>
14931 L: linux-media@vger.kernel.org
14932 S: Maintained
14933 W: http://linuxtv.org
14934 T: git git://linuxtv.org/media_tree.git
14935 F: Documentation/driver-api/media/rc-core.rst
14936 F: Documentation/userspace-api/media/rc/
14937 F: drivers/media/rc/
14938 F: include/media/rc-map.h
14939 F: include/media/rc-core.h
14940 F: include/uapi/linux/lirc.h
14941
14942 RCMM REMOTE CONTROLS DECODER
14943 M: Patrick Lerda <patrick9876@free.fr>
14944 S: Maintained
14945 F: drivers/media/rc/ir-rcmm-decoder.c
14946
14947 RCUTORTURE TEST FRAMEWORK
14948 M: "Paul E. McKenney" <paulmck@kernel.org>
14949 M: Josh Triplett <josh@joshtriplett.org>
14950 R: Steven Rostedt <rostedt@goodmis.org>
14951 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14952 R: Lai Jiangshan <jiangshanlai@gmail.com>
14953 L: rcu@vger.kernel.org
14954 S: Supported
14955 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14956 F: tools/testing/selftests/rcutorture
14957
14958 RDACM20 Camera Sensor
14959 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
14960 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14961 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14962 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14963 L: linux-media@vger.kernel.org
14964 S: Maintained
14965 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14966 F: drivers/media/i2c/max9271.c
14967 F: drivers/media/i2c/max9271.h
14968 F: drivers/media/i2c/rdacm20.c
14969
14970 RDC R-321X SoC
14971 M: Florian Fainelli <florian@openwrt.org>
14972 S: Maintained
14973
14974 RDC R6040 FAST ETHERNET DRIVER
14975 M: Florian Fainelli <f.fainelli@gmail.com>
14976 L: netdev@vger.kernel.org
14977 S: Maintained
14978 F: drivers/net/ethernet/rdc/r6040.c
14979
14980 RDMAVT - RDMA verbs software
14981 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14982 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14983 L: linux-rdma@vger.kernel.org
14984 S: Supported
14985 F: drivers/infiniband/sw/rdmavt
14986
14987 RDS - RELIABLE DATAGRAM SOCKETS
14988 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
14989 L: netdev@vger.kernel.org
14990 L: linux-rdma@vger.kernel.org
14991 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
14992 S: Supported
14993 W: https://oss.oracle.com/projects/rds/
14994 F: Documentation/networking/rds.rst
14995 F: net/rds/
14996
14997 RDT - RESOURCE ALLOCATION
14998 M: Fenghua Yu <fenghua.yu@intel.com>
14999 M: Reinette Chatre <reinette.chatre@intel.com>
15000 L: linux-kernel@vger.kernel.org
15001 S: Supported
15002 F: Documentation/x86/resctrl*
15003 F: arch/x86/include/asm/resctrl.h
15004 F: arch/x86/kernel/cpu/resctrl/
15005 F: tools/testing/selftests/resctrl/
15006
15007 READ-COPY UPDATE (RCU)
15008 M: "Paul E. McKenney" <paulmck@kernel.org>
15009 M: Josh Triplett <josh@joshtriplett.org>
15010 R: Steven Rostedt <rostedt@goodmis.org>
15011 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15012 R: Lai Jiangshan <jiangshanlai@gmail.com>
15013 R: Joel Fernandes <joel@joelfernandes.org>
15014 L: rcu@vger.kernel.org
15015 S: Supported
15016 W: http://www.rdrop.com/users/paulmck/RCU/
15017 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15018 F: Documentation/RCU/
15019 F: include/linux/rcu*
15020 F: kernel/rcu/
15021 X: Documentation/RCU/torture.rst
15022 X: include/linux/srcu*.h
15023 X: kernel/rcu/srcu*.c
15024
15025 REAL TIME CLOCK (RTC) SUBSYSTEM
15026 M: Alessandro Zummo <a.zummo@towertech.it>
15027 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
15028 L: linux-rtc@vger.kernel.org
15029 S: Maintained
15030 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
15031 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15032 F: Documentation/admin-guide/rtc.rst
15033 F: Documentation/devicetree/bindings/rtc/
15034 F: drivers/rtc/
15035 F: include/linux/platform_data/rtc-*
15036 F: include/linux/rtc.h
15037 F: include/linux/rtc/
15038 F: include/uapi/linux/rtc.h
15039 F: tools/testing/selftests/rtc/
15040
15041 REALTEK AUDIO CODECS
15042 M: Oder Chiou <oder_chiou@realtek.com>
15043 S: Maintained
15044 F: include/sound/rt*.h
15045 F: sound/soc/codecs/rt*
15046
15047 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15048 M: Linus Walleij <linus.walleij@linaro.org>
15049 S: Maintained
15050 F: Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15051 F: drivers/net/dsa/realtek-smi*
15052 F: drivers/net/dsa/rtl83*
15053
15054 REALTEK WIRELESS DRIVER (rtlwifi family)
15055 M: Ping-Ke Shih <pkshih@realtek.com>
15056 L: linux-wireless@vger.kernel.org
15057 S: Maintained
15058 W: https://wireless.wiki.kernel.org/
15059 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15060 F: drivers/net/wireless/realtek/rtlwifi/
15061
15062 REALTEK WIRELESS DRIVER (rtw88)
15063 M: Yan-Hsuan Chuang <tony0620emma@gmail.com>
15064 L: linux-wireless@vger.kernel.org
15065 S: Maintained
15066 F: drivers/net/wireless/realtek/rtw88/
15067
15068 REDPINE WIRELESS DRIVER
15069 M: Amitkumar Karwar <amitkarwar@gmail.com>
15070 M: Siva Rebbagondla <siva8118@gmail.com>
15071 L: linux-wireless@vger.kernel.org
15072 S: Maintained
15073 F: drivers/net/wireless/rsi/
15074
15075 REGISTER MAP ABSTRACTION
15076 M: Mark Brown <broonie@kernel.org>
15077 L: linux-kernel@vger.kernel.org
15078 S: Supported
15079 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15080 F: Documentation/devicetree/bindings/regmap/
15081 F: drivers/base/regmap/
15082 F: include/linux/regmap.h
15083
15084 REISERFS FILE SYSTEM
15085 L: reiserfs-devel@vger.kernel.org
15086 S: Supported
15087 F: fs/reiserfs/
15088
15089 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15090 M: Ohad Ben-Cohen <ohad@wizery.com>
15091 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15092 L: linux-remoteproc@vger.kernel.org
15093 S: Maintained
15094 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15095 F: Documentation/ABI/testing/sysfs-class-remoteproc
15096 F: Documentation/devicetree/bindings/remoteproc/
15097 F: Documentation/staging/remoteproc.rst
15098 F: drivers/remoteproc/
15099 F: include/linux/remoteproc.h
15100 F: include/linux/remoteproc/
15101
15102 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15103 M: Ohad Ben-Cohen <ohad@wizery.com>
15104 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15105 L: linux-remoteproc@vger.kernel.org
15106 S: Maintained
15107 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15108 F: Documentation/ABI/testing/sysfs-bus-rpmsg
15109 F: Documentation/staging/rpmsg.rst
15110 F: drivers/rpmsg/
15111 F: include/linux/rpmsg.h
15112 F: include/linux/rpmsg/
15113 F: include/uapi/linux/rpmsg.h
15114 F: samples/rpmsg/
15115
15116 RENESAS CLOCK DRIVERS
15117 M: Geert Uytterhoeven <geert+renesas@glider.be>
15118 L: linux-renesas-soc@vger.kernel.org
15119 S: Supported
15120 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15121 F: Documentation/devicetree/bindings/clock/renesas,*
15122 F: drivers/clk/renesas/
15123
15124 RENESAS EMEV2 I2C DRIVER
15125 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
15126 S: Supported
15127 F: Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15128 F: drivers/i2c/busses/i2c-emev2.c
15129
15130 RENESAS ETHERNET DRIVERS
15131 R: Sergei Shtylyov <sergei.shtylyov@gmail.com>
15132 L: netdev@vger.kernel.org
15133 L: linux-renesas-soc@vger.kernel.org
15134 F: Documentation/devicetree/bindings/net/renesas,*.yaml
15135 F: drivers/net/ethernet/renesas/
15136 F: include/linux/sh_eth.h
15137
15138 RENESAS R-CAR GYROADC DRIVER
15139 M: Marek Vasut <marek.vasut@gmail.com>
15140 L: linux-iio@vger.kernel.org
15141 S: Supported
15142 F: Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
15143 F: drivers/iio/adc/rcar-gyroadc.c
15144
15145 RENESAS R-CAR I2C DRIVERS
15146 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
15147 S: Supported
15148 F: Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15149 F: Documentation/devicetree/bindings/i2c/renesas,iic.txt
15150 F: drivers/i2c/busses/i2c-rcar.c
15151 F: drivers/i2c/busses/i2c-sh_mobile.c
15152
15153 RENESAS R-CAR THERMAL DRIVERS
15154 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
15155 L: linux-renesas-soc@vger.kernel.org
15156 S: Supported
15157 F: Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15158 F: Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15159 F: drivers/thermal/rcar_gen3_thermal.c
15160 F: drivers/thermal/rcar_thermal.c
15161
15162 RENESAS RIIC DRIVER
15163 M: Chris Brandt <chris.brandt@renesas.com>
15164 S: Supported
15165 F: Documentation/devicetree/bindings/i2c/renesas,riic.txt
15166 F: drivers/i2c/busses/i2c-riic.c
15167
15168 RENESAS USB PHY DRIVER
15169 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15170 L: linux-renesas-soc@vger.kernel.org
15171 S: Maintained
15172 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
15173
15174 RESET CONTROLLER FRAMEWORK
15175 M: Philipp Zabel <p.zabel@pengutronix.de>
15176 S: Maintained
15177 T: git git://git.pengutronix.de/git/pza/linux
15178 F: Documentation/devicetree/bindings/reset/
15179 F: Documentation/driver-api/reset.rst
15180 F: drivers/reset/
15181 F: include/dt-bindings/reset/
15182 F: include/linux/reset-controller.h
15183 F: include/linux/reset.h
15184 F: include/linux/reset/
15185 K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15186
15187 RESTARTABLE SEQUENCES SUPPORT
15188 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15189 M: Peter Zijlstra <peterz@infradead.org>
15190 M: "Paul E. McKenney" <paulmck@kernel.org>
15191 M: Boqun Feng <boqun.feng@gmail.com>
15192 L: linux-kernel@vger.kernel.org
15193 S: Supported
15194 F: include/trace/events/rseq.h
15195 F: include/uapi/linux/rseq.h
15196 F: kernel/rseq.c
15197 F: tools/testing/selftests/rseq/
15198
15199 RFKILL
15200 M: Johannes Berg <johannes@sipsolutions.net>
15201 L: linux-wireless@vger.kernel.org
15202 S: Maintained
15203 W: https://wireless.wiki.kernel.org/
15204 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15205 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15206 F: Documentation/ABI/stable/sysfs-class-rfkill
15207 F: Documentation/driver-api/rfkill.rst
15208 F: include/linux/rfkill.h
15209 F: include/uapi/linux/rfkill.h
15210 F: net/rfkill/
15211
15212 RHASHTABLE
15213 M: Thomas Graf <tgraf@suug.ch>
15214 M: Herbert Xu <herbert@gondor.apana.org.au>
15215 L: netdev@vger.kernel.org
15216 S: Maintained
15217 F: include/linux/rhashtable-types.h
15218 F: include/linux/rhashtable.h
15219 F: lib/rhashtable.c
15220 F: lib/test_rhashtable.c
15221
15222 RICOH R5C592 MEMORYSTICK DRIVER
15223 M: Maxim Levitsky <maximlevitsky@gmail.com>
15224 S: Maintained
15225 F: drivers/memstick/host/r592.*
15226
15227 RICOH SMARTMEDIA/XD DRIVER
15228 M: Maxim Levitsky <maximlevitsky@gmail.com>
15229 S: Maintained
15230 F: drivers/mtd/nand/raw/r852.c
15231 F: drivers/mtd/nand/raw/r852.h
15232
15233 RISC-V ARCHITECTURE
15234 M: Paul Walmsley <paul.walmsley@sifive.com>
15235 M: Palmer Dabbelt <palmer@dabbelt.com>
15236 M: Albert Ou <aou@eecs.berkeley.edu>
15237 L: linux-riscv@lists.infradead.org
15238 S: Supported
15239 P: Documentation/riscv/patch-acceptance.rst
15240 T: git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15241 F: arch/riscv/
15242 N: riscv
15243 K: riscv
15244
15245 RNBD BLOCK DRIVERS
15246 M: Danil Kipnis <danil.kipnis@cloud.ionos.com>
15247 M: Jack Wang <jinpu.wang@cloud.ionos.com>
15248 L: linux-block@vger.kernel.org
15249 S: Maintained
15250 F: drivers/block/rnbd/
15251
15252 ROCCAT DRIVERS
15253 M: Stefan Achatz <erazor_de@users.sourceforge.net>
15254 S: Maintained
15255 W: http://sourceforge.net/projects/roccat/
15256 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
15257 F: drivers/hid/hid-roccat*
15258 F: include/linux/hid-roccat*
15259
15260 ROCKCHIP ISP V1 DRIVER
15261 M: Helen Koike <helen.koike@collabora.com>
15262 M: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15263 L: linux-media@vger.kernel.org
15264 L: linux-rockchip@lists.infradead.org
15265 S: Maintained
15266 F: Documentation/admin-guide/media/rkisp1.rst
15267 F: Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15268 F: Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15269 F: drivers/media/platform/rockchip/rkisp1
15270 F: include/uapi/linux/rkisp1-config.h
15271
15272 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15273 M: Jacob Chen <jacob-chen@iotwrt.com>
15274 M: Ezequiel Garcia <ezequiel@collabora.com>
15275 L: linux-media@vger.kernel.org
15276 L: linux-rockchip@lists.infradead.org
15277 S: Maintained
15278 F: Documentation/devicetree/bindings/media/rockchip-rga.yaml
15279 F: drivers/media/platform/rockchip/rga/
15280
15281 ROCKCHIP VIDEO DECODER DRIVER
15282 M: Ezequiel Garcia <ezequiel@collabora.com>
15283 L: linux-media@vger.kernel.org
15284 L: linux-rockchip@lists.infradead.org
15285 S: Maintained
15286 F: Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15287 F: drivers/staging/media/rkvdec/
15288
15289 ROCKER DRIVER
15290 M: Jiri Pirko <jiri@resnulli.us>
15291 L: netdev@vger.kernel.org
15292 S: Supported
15293 F: drivers/net/ethernet/rocker/
15294
15295 ROCKETPORT DRIVER
15296 S: Maintained
15297 W: http://www.comtrol.com
15298 F: Documentation/driver-api/serial/rocket.rst
15299 F: drivers/tty/rocket*
15300
15301 ROCKETPORT EXPRESS/INFINITY DRIVER
15302 M: Kevin Cernekee <cernekee@gmail.com>
15303 L: linux-serial@vger.kernel.org
15304 S: Odd Fixes
15305 F: drivers/tty/serial/rp2.*
15306
15307 ROHM BD99954 CHARGER IC
15308 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15309 L: linux-power@fi.rohmeurope.com
15310 S: Supported
15311 F: drivers/power/supply/bd99954-charger.c
15312 F: drivers/power/supply/bd99954-charger.h
15313
15314 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15315 M: Tomasz Duszynski <tduszyns@gmail.com>
15316 S: Maintained
15317 F: Documentation/devicetree/bindings/iio/light/bh1750.yaml
15318 F: drivers/iio/light/bh1750.c
15319
15320 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15321 M: Marek Vasut <marek.vasut+renesas@gmail.com>
15322 L: linux-kernel@vger.kernel.org
15323 L: linux-renesas-soc@vger.kernel.org
15324 S: Supported
15325 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15326 F: drivers/gpio/gpio-bd9571mwv.c
15327 F: drivers/mfd/bd9571mwv.c
15328 F: drivers/regulator/bd9571mwv-regulator.c
15329 F: include/linux/mfd/bd9571mwv.h
15330
15331 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15332 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15333 L: linux-power@fi.rohmeurope.com
15334 S: Supported
15335 F: Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15336 F: Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15337 F: drivers/clk/clk-bd718x7.c
15338 F: drivers/gpio/gpio-bd70528.c
15339 F: drivers/gpio/gpio-bd71828.c
15340 F: drivers/mfd/rohm-bd70528.c
15341 F: drivers/mfd/rohm-bd71828.c
15342 F: drivers/mfd/rohm-bd718x7.c
15343 F: drivers/power/supply/bd70528-charger.c
15344 F: drivers/regulator/bd70528-regulator.c
15345 F: drivers/regulator/bd71828-regulator.c
15346 F: drivers/regulator/bd718x7-regulator.c
15347 F: drivers/regulator/rohm-regulator.c
15348 F: drivers/rtc/rtc-bd70528.c
15349 F: drivers/watchdog/bd70528_wdt.c
15350 F: include/linux/mfd/rohm-bd70528.h
15351 F: include/linux/mfd/rohm-bd71828.h
15352 F: include/linux/mfd/rohm-bd718x7.h
15353 F: include/linux/mfd/rohm-generic.h
15354 F: include/linux/mfd/rohm-shared.h
15355
15356 ROSE NETWORK LAYER
15357 M: Ralf Baechle <ralf@linux-mips.org>
15358 L: linux-hams@vger.kernel.org
15359 S: Maintained
15360 W: http://www.linux-ax25.org/
15361 F: include/net/rose.h
15362 F: include/uapi/linux/rose.h
15363 F: net/rose/
15364
15365 ROTATION DRIVER FOR ALLWINNER A83T
15366 M: Jernej Skrabec <jernej.skrabec@siol.net>
15367 L: linux-media@vger.kernel.org
15368 S: Maintained
15369 T: git git://linuxtv.org/media_tree.git
15370 F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15371 F: drivers/media/platform/sunxi/sun8i-rotate/
15372
15373 RTL2830 MEDIA DRIVER
15374 M: Antti Palosaari <crope@iki.fi>
15375 L: linux-media@vger.kernel.org
15376 S: Maintained
15377 W: https://linuxtv.org
15378 W: http://palosaari.fi/linux/
15379 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15380 T: git git://linuxtv.org/anttip/media_tree.git
15381 F: drivers/media/dvb-frontends/rtl2830*
15382
15383 RTL2832 MEDIA DRIVER
15384 M: Antti Palosaari <crope@iki.fi>
15385 L: linux-media@vger.kernel.org
15386 S: Maintained
15387 W: https://linuxtv.org
15388 W: http://palosaari.fi/linux/
15389 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15390 T: git git://linuxtv.org/anttip/media_tree.git
15391 F: drivers/media/dvb-frontends/rtl2832*
15392
15393 RTL2832_SDR MEDIA DRIVER
15394 M: Antti Palosaari <crope@iki.fi>
15395 L: linux-media@vger.kernel.org
15396 S: Maintained
15397 W: https://linuxtv.org
15398 W: http://palosaari.fi/linux/
15399 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15400 T: git git://linuxtv.org/anttip/media_tree.git
15401 F: drivers/media/dvb-frontends/rtl2832_sdr*
15402
15403 RTL8180 WIRELESS DRIVER
15404 L: linux-wireless@vger.kernel.org
15405 S: Orphan
15406 W: https://wireless.wiki.kernel.org/
15407 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15408 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
15409
15410 RTL8187 WIRELESS DRIVER
15411 M: Herton Ronaldo Krzesinski <herton@canonical.com>
15412 M: Hin-Tak Leung <htl10@users.sourceforge.net>
15413 M: Larry Finger <Larry.Finger@lwfinger.net>
15414 L: linux-wireless@vger.kernel.org
15415 S: Maintained
15416 W: https://wireless.wiki.kernel.org/
15417 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15418 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
15419
15420 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15421 M: Jes Sorensen <Jes.Sorensen@gmail.com>
15422 L: linux-wireless@vger.kernel.org
15423 S: Maintained
15424 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15425 F: drivers/net/wireless/realtek/rtl8xxxu/
15426
15427 RTRS TRANSPORT DRIVERS
15428 M: Danil Kipnis <danil.kipnis@cloud.ionos.com>
15429 M: Jack Wang <jinpu.wang@cloud.ionos.com>
15430 L: linux-rdma@vger.kernel.org
15431 S: Maintained
15432 F: drivers/infiniband/ulp/rtrs/
15433
15434 RXRPC SOCKETS (AF_RXRPC)
15435 M: David Howells <dhowells@redhat.com>
15436 L: linux-afs@lists.infradead.org
15437 S: Supported
15438 W: https://www.infradead.org/~dhowells/kafs/
15439 F: Documentation/networking/rxrpc.rst
15440 F: include/keys/rxrpc-type.h
15441 F: include/net/af_rxrpc.h
15442 F: include/trace/events/rxrpc.h
15443 F: include/uapi/linux/rxrpc.h
15444 F: net/rxrpc/
15445
15446 S3 SAVAGE FRAMEBUFFER DRIVER
15447 M: Antonino Daplas <adaplas@gmail.com>
15448 L: linux-fbdev@vger.kernel.org
15449 S: Maintained
15450 F: drivers/video/fbdev/savage/
15451
15452 S390
15453 M: Heiko Carstens <hca@linux.ibm.com>
15454 M: Vasily Gorbik <gor@linux.ibm.com>
15455 M: Christian Borntraeger <borntraeger@de.ibm.com>
15456 L: linux-s390@vger.kernel.org
15457 S: Supported
15458 W: http://www.ibm.com/developerworks/linux/linux390/
15459 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15460 F: Documentation/driver-api/s390-drivers.rst
15461 F: Documentation/s390/
15462 F: arch/s390/
15463 F: drivers/s390/
15464
15465 S390 COMMON I/O LAYER
15466 M: Vineeth Vijayan <vneethv@linux.ibm.com>
15467 M: Peter Oberparleiter <oberpar@linux.ibm.com>
15468 L: linux-s390@vger.kernel.org
15469 S: Supported
15470 W: http://www.ibm.com/developerworks/linux/linux390/
15471 F: drivers/s390/cio/
15472
15473 S390 DASD DRIVER
15474 M: Stefan Haberland <sth@linux.ibm.com>
15475 M: Jan Hoeppner <hoeppner@linux.ibm.com>
15476 L: linux-s390@vger.kernel.org
15477 S: Supported
15478 W: http://www.ibm.com/developerworks/linux/linux390/
15479 F: block/partitions/ibm.c
15480 F: drivers/s390/block/dasd*
15481 F: include/linux/dasd_mod.h
15482
15483 S390 IOMMU (PCI)
15484 M: Matthew Rosato <mjrosato@linux.ibm.com>
15485 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15486 L: linux-s390@vger.kernel.org
15487 S: Supported
15488 W: http://www.ibm.com/developerworks/linux/linux390/
15489 F: drivers/iommu/s390-iommu.c
15490
15491 S390 IUCV NETWORK LAYER
15492 M: Julian Wiedmann <jwi@linux.ibm.com>
15493 M: Karsten Graul <kgraul@linux.ibm.com>
15494 L: linux-s390@vger.kernel.org
15495 S: Supported
15496 W: http://www.ibm.com/developerworks/linux/linux390/
15497 F: drivers/s390/net/*iucv*
15498 F: include/net/iucv/
15499 F: net/iucv/
15500
15501 S390 NETWORK DRIVERS
15502 M: Julian Wiedmann <jwi@linux.ibm.com>
15503 M: Karsten Graul <kgraul@linux.ibm.com>
15504 L: linux-s390@vger.kernel.org
15505 S: Supported
15506 W: http://www.ibm.com/developerworks/linux/linux390/
15507 F: drivers/s390/net/
15508
15509 S390 PCI SUBSYSTEM
15510 M: Niklas Schnelle <schnelle@linux.ibm.com>
15511 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15512 L: linux-s390@vger.kernel.org
15513 S: Supported
15514 W: http://www.ibm.com/developerworks/linux/linux390/
15515 F: arch/s390/pci/
15516 F: drivers/pci/hotplug/s390_pci_hpc.c
15517 F: Documentation/s390/pci.rst
15518
15519 S390 VFIO AP DRIVER
15520 M: Tony Krowiak <akrowiak@linux.ibm.com>
15521 M: Pierre Morel <pmorel@linux.ibm.com>
15522 M: Halil Pasic <pasic@linux.ibm.com>
15523 L: linux-s390@vger.kernel.org
15524 S: Supported
15525 W: http://www.ibm.com/developerworks/linux/linux390/
15526 F: Documentation/s390/vfio-ap.rst
15527 F: drivers/s390/crypto/vfio_ap_drv.c
15528 F: drivers/s390/crypto/vfio_ap_ops.c
15529 F: drivers/s390/crypto/vfio_ap_private.h
15530
15531 S390 VFIO-CCW DRIVER
15532 M: Cornelia Huck <cohuck@redhat.com>
15533 M: Eric Farman <farman@linux.ibm.com>
15534 R: Halil Pasic <pasic@linux.ibm.com>
15535 L: linux-s390@vger.kernel.org
15536 L: kvm@vger.kernel.org
15537 S: Supported
15538 F: Documentation/s390/vfio-ccw.rst
15539 F: drivers/s390/cio/vfio_ccw*
15540 F: include/uapi/linux/vfio_ccw.h
15541
15542 S390 VFIO-PCI DRIVER
15543 M: Matthew Rosato <mjrosato@linux.ibm.com>
15544 L: linux-s390@vger.kernel.org
15545 L: kvm@vger.kernel.org
15546 S: Supported
15547 F: drivers/vfio/pci/vfio_pci_zdev.c
15548 F: include/uapi/linux/vfio_zdev.h
15549
15550 S390 ZCRYPT DRIVER
15551 M: Harald Freudenberger <freude@linux.ibm.com>
15552 L: linux-s390@vger.kernel.org
15553 S: Supported
15554 W: http://www.ibm.com/developerworks/linux/linux390/
15555 F: drivers/s390/crypto/
15556
15557 S390 ZFCP DRIVER
15558 M: Steffen Maier <maier@linux.ibm.com>
15559 M: Benjamin Block <bblock@linux.ibm.com>
15560 L: linux-s390@vger.kernel.org
15561 S: Supported
15562 W: http://www.ibm.com/developerworks/linux/linux390/
15563 F: drivers/s390/scsi/zfcp_*
15564
15565 S3C24XX SD/MMC Driver
15566 M: Ben Dooks <ben-linux@fluff.org>
15567 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15568 S: Supported
15569 F: drivers/mmc/host/s3cmci.*
15570
15571 SAA6588 RDS RECEIVER DRIVER
15572 M: Hans Verkuil <hverkuil@xs4all.nl>
15573 L: linux-media@vger.kernel.org
15574 S: Odd Fixes
15575 W: https://linuxtv.org
15576 T: git git://linuxtv.org/media_tree.git
15577 F: drivers/media/i2c/saa6588*
15578
15579 SAA7134 VIDEO4LINUX DRIVER
15580 M: Mauro Carvalho Chehab <mchehab@kernel.org>
15581 L: linux-media@vger.kernel.org
15582 S: Odd fixes
15583 W: https://linuxtv.org
15584 T: git git://linuxtv.org/media_tree.git
15585 F: Documentation/driver-api/media/drivers/saa7134*
15586 F: drivers/media/pci/saa7134/
15587
15588 SAA7146 VIDEO4LINUX-2 DRIVER
15589 M: Hans Verkuil <hverkuil@xs4all.nl>
15590 L: linux-media@vger.kernel.org
15591 S: Maintained
15592 T: git git://linuxtv.org/media_tree.git
15593 F: drivers/media/common/saa7146/
15594 F: drivers/media/pci/saa7146/
15595 F: include/media/drv-intf/saa7146*
15596
15597 SAFESETID SECURITY MODULE
15598 M: Micah Morton <mortonm@chromium.org>
15599 S: Supported
15600 F: Documentation/admin-guide/LSM/SafeSetID.rst
15601 F: security/safesetid/
15602
15603 SAMSUNG AUDIO (ASoC) DRIVERS
15604 M: Krzysztof Kozlowski <krzk@kernel.org>
15605 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
15606 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15607 S: Supported
15608 F: Documentation/devicetree/bindings/sound/samsung*
15609 F: sound/soc/samsung/
15610
15611 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15612 M: Krzysztof Kozlowski <krzk@kernel.org>
15613 L: linux-crypto@vger.kernel.org
15614 L: linux-samsung-soc@vger.kernel.org
15615 S: Maintained
15616 F: Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15617 F: drivers/crypto/exynos-rng.c
15618
15619 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15620 M: Łukasz Stelmach <l.stelmach@samsung.com>
15621 L: linux-samsung-soc@vger.kernel.org
15622 S: Maintained
15623 F: Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15624 F: drivers/char/hw_random/exynos-trng.c
15625
15626 SAMSUNG FRAMEBUFFER DRIVER
15627 M: Jingoo Han <jingoohan1@gmail.com>
15628 L: linux-fbdev@vger.kernel.org
15629 S: Maintained
15630 F: drivers/video/fbdev/s3c-fb.c
15631
15632 SAMSUNG INTERCONNECT DRIVERS
15633 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
15634 M: Artur Świgoń <a.swigon@samsung.com>
15635 L: linux-pm@vger.kernel.org
15636 L: linux-samsung-soc@vger.kernel.org
15637 S: Supported
15638 F: drivers/interconnect/samsung/
15639
15640 SAMSUNG LAPTOP DRIVER
15641 M: Corentin Chary <corentin.chary@gmail.com>
15642 L: platform-driver-x86@vger.kernel.org
15643 S: Maintained
15644 F: drivers/platform/x86/samsung-laptop.c
15645
15646 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15647 M: Krzysztof Kozlowski <krzk@kernel.org>
15648 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15649 L: linux-kernel@vger.kernel.org
15650 L: linux-samsung-soc@vger.kernel.org
15651 S: Supported
15652 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15653 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15654 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15655 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15656 F: drivers/clk/clk-s2mps11.c
15657 F: drivers/mfd/sec*.c
15658 F: drivers/regulator/s2m*.c
15659 F: drivers/regulator/s5m*.c
15660 F: drivers/rtc/rtc-s5m.c
15661 F: include/linux/mfd/samsung/
15662
15663 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15664 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15665 L: linux-media@vger.kernel.org
15666 L: linux-samsung-soc@vger.kernel.org
15667 S: Maintained
15668 F: drivers/media/platform/s3c-camif/
15669 F: include/media/drv-intf/s3c_camif.h
15670
15671 SAMSUNG S3FWRN5 NFC DRIVER
15672 M: Krzysztof Kozlowski <krzk@kernel.org>
15673 M: Krzysztof Opasiak <k.opasiak@samsung.com>
15674 L: linux-nfc@lists.01.org (moderated for non-subscribers)
15675 S: Maintained
15676 F: Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15677 F: drivers/nfc/s3fwrn5
15678
15679 SAMSUNG S5C73M3 CAMERA DRIVER
15680 M: Andrzej Hajda <a.hajda@samsung.com>
15681 L: linux-media@vger.kernel.org
15682 S: Supported
15683 F: drivers/media/i2c/s5c73m3/*
15684
15685 SAMSUNG S5K5BAF CAMERA DRIVER
15686 M: Andrzej Hajda <a.hajda@samsung.com>
15687 L: linux-media@vger.kernel.org
15688 S: Supported
15689 F: drivers/media/i2c/s5k5baf.c
15690
15691 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15692 M: Krzysztof Kozlowski <krzk@kernel.org>
15693 M: Vladimir Zapolskiy <vz@mleia.com>
15694 M: Kamil Konieczny <k.konieczny@samsung.com>
15695 L: linux-crypto@vger.kernel.org
15696 L: linux-samsung-soc@vger.kernel.org
15697 S: Maintained
15698 F: Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15699 F: Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15700 F: drivers/crypto/s5p-sss.c
15701
15702 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15703 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
15704 L: linux-media@vger.kernel.org
15705 S: Supported
15706 Q: https://patchwork.linuxtv.org/project/linux-media/list/
15707 F: drivers/media/platform/exynos4-is/
15708
15709 SAMSUNG SOC CLOCK DRIVERS
15710 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
15711 M: Tomasz Figa <tomasz.figa@gmail.com>
15712 M: Chanwoo Choi <cw00.choi@samsung.com>
15713 L: linux-samsung-soc@vger.kernel.org
15714 S: Supported
15715 T: git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15716 F: Documentation/devicetree/bindings/clock/exynos*.txt
15717 F: Documentation/devicetree/bindings/clock/samsung,s3c*
15718 F: Documentation/devicetree/bindings/clock/samsung,s5p*
15719 F: drivers/clk/samsung/
15720 F: include/dt-bindings/clock/exynos*.h
15721 F: include/linux/clk/samsung.h
15722 F: include/linux/platform_data/clk-s3c2410.h
15723
15724 SAMSUNG SPI DRIVERS
15725 M: Krzysztof Kozlowski <krzk@kernel.org>
15726 M: Andi Shyti <andi@etezian.org>
15727 L: linux-spi@vger.kernel.org
15728 L: linux-samsung-soc@vger.kernel.org
15729 S: Maintained
15730 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
15731 F: drivers/spi/spi-s3c*
15732 F: include/linux/platform_data/spi-s3c64xx.h
15733 F: include/linux/spi/s3c24xx-fiq.h
15734
15735 SAMSUNG SXGBE DRIVERS
15736 M: Byungho An <bh74.an@samsung.com>
15737 L: netdev@vger.kernel.org
15738 S: Supported
15739 F: drivers/net/ethernet/samsung/sxgbe/
15740
15741 SAMSUNG THERMAL DRIVER
15742 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15743 L: linux-pm@vger.kernel.org
15744 L: linux-samsung-soc@vger.kernel.org
15745 S: Supported
15746 T: git https://github.com/lmajewski/linux-samsung-thermal.git
15747 F: drivers/thermal/samsung/
15748
15749 SAMSUNG USB2 PHY DRIVER
15750 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
15751 L: linux-kernel@vger.kernel.org
15752 S: Supported
15753 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
15754 F: Documentation/driver-api/phy/samsung-usb2.rst
15755 F: drivers/phy/samsung/phy-exynos4210-usb2.c
15756 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
15757 F: drivers/phy/samsung/phy-exynos5250-usb2.c
15758 F: drivers/phy/samsung/phy-s5pv210-usb2.c
15759 F: drivers/phy/samsung/phy-samsung-usb2.c
15760 F: drivers/phy/samsung/phy-samsung-usb2.h
15761
15762 SC1200 WDT DRIVER
15763 M: Zwane Mwaikambo <zwanem@gmail.com>
15764 S: Maintained
15765 F: drivers/watchdog/sc1200wdt.c
15766
15767 SCHEDULER
15768 M: Ingo Molnar <mingo@redhat.com>
15769 M: Peter Zijlstra <peterz@infradead.org>
15770 M: Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15771 M: Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15772 R: Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15773 R: Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15774 R: Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15775 R: Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15776 R: Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15777 L: linux-kernel@vger.kernel.org
15778 S: Maintained
15779 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15780 F: include/linux/preempt.h
15781 F: include/linux/sched.h
15782 F: include/linux/wait.h
15783 F: include/uapi/linux/sched.h
15784 F: kernel/sched/
15785
15786 SCR24X CHIP CARD INTERFACE DRIVER
15787 M: Lubomir Rintel <lkundrak@v3.sk>
15788 S: Supported
15789 F: drivers/char/pcmcia/scr24x_cs.c
15790
15791 SCSI CDROM DRIVER
15792 M: Jens Axboe <axboe@kernel.dk>
15793 L: linux-scsi@vger.kernel.org
15794 S: Maintained
15795 W: http://www.kernel.dk
15796 F: drivers/scsi/sr*
15797
15798 SCSI RDMA PROTOCOL (SRP) INITIATOR
15799 M: Bart Van Assche <bvanassche@acm.org>
15800 L: linux-rdma@vger.kernel.org
15801 S: Supported
15802 Q: http://patchwork.kernel.org/project/linux-rdma/list/
15803 F: drivers/infiniband/ulp/srp/
15804 F: include/scsi/srp.h
15805
15806 SCSI RDMA PROTOCOL (SRP) TARGET
15807 M: Bart Van Assche <bvanassche@acm.org>
15808 L: linux-rdma@vger.kernel.org
15809 L: target-devel@vger.kernel.org
15810 S: Supported
15811 Q: http://patchwork.kernel.org/project/linux-rdma/list/
15812 F: drivers/infiniband/ulp/srpt/
15813
15814 SCSI SG DRIVER
15815 M: Doug Gilbert <dgilbert@interlog.com>
15816 L: linux-scsi@vger.kernel.org
15817 S: Maintained
15818 W: http://sg.danny.cz/sg
15819 F: Documentation/scsi/scsi-generic.rst
15820 F: drivers/scsi/sg.c
15821 F: include/scsi/sg.h
15822
15823 SCSI SUBSYSTEM
15824 M: "James E.J. Bottomley" <jejb@linux.ibm.com>
15825 M: "Martin K. Petersen" <martin.petersen@oracle.com>
15826 L: linux-scsi@vger.kernel.org
15827 S: Maintained
15828 Q: https://patchwork.kernel.org/project/linux-scsi/list/
15829 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15830 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15831 F: Documentation/devicetree/bindings/scsi/
15832 F: drivers/scsi/
15833 F: include/scsi/
15834
15835 SCSI TAPE DRIVER
15836 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15837 L: linux-scsi@vger.kernel.org
15838 S: Maintained
15839 F: Documentation/scsi/st.rst
15840 F: drivers/scsi/st.*
15841 F: drivers/scsi/st_*.h
15842
15843 SCSI TARGET CORE USER DRIVER
15844 M: Bodo Stroesser <bostroesser@gmail.com>
15845 L: linux-scsi@vger.kernel.org
15846 L: target-devel@vger.kernel.org
15847 S: Supported
15848 F: Documentation/target/tcmu-design.rst
15849 F: drivers/target/target_core_user.c
15850 F: include/uapi/linux/target_core_user.h
15851
15852 SCSI TARGET SUBSYSTEM
15853 M: "Martin K. Petersen" <martin.petersen@oracle.com>
15854 L: linux-scsi@vger.kernel.org
15855 L: target-devel@vger.kernel.org
15856 S: Supported
15857 W: http://www.linux-iscsi.org
15858 Q: https://patchwork.kernel.org/project/target-devel/list/
15859 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15860 F: Documentation/target/
15861 F: drivers/target/
15862 F: include/target/
15863
15864 SCTP PROTOCOL
15865 M: Vlad Yasevich <vyasevich@gmail.com>
15866 M: Neil Horman <nhorman@tuxdriver.com>
15867 M: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15868 L: linux-sctp@vger.kernel.org
15869 S: Maintained
15870 W: http://lksctp.sourceforge.net
15871 F: Documentation/networking/sctp.rst
15872 F: include/linux/sctp.h
15873 F: include/net/sctp/
15874 F: include/uapi/linux/sctp.h
15875 F: net/sctp/
15876
15877 SCx200 CPU SUPPORT
15878 M: Jim Cromie <jim.cromie@gmail.com>
15879 S: Odd Fixes
15880 F: Documentation/i2c/busses/scx200_acb.rst
15881 F: arch/x86/platform/scx200/
15882 F: drivers/i2c/busses/scx200*
15883 F: drivers/mtd/maps/scx200_docflash.c
15884 F: drivers/watchdog/scx200_wdt.c
15885 F: include/linux/scx200.h
15886
15887 SCx200 GPIO DRIVER
15888 M: Jim Cromie <jim.cromie@gmail.com>
15889 S: Maintained
15890 F: drivers/char/scx200_gpio.c
15891 F: include/linux/scx200_gpio.h
15892
15893 SCx200 HRT CLOCKSOURCE DRIVER
15894 M: Jim Cromie <jim.cromie@gmail.com>
15895 S: Maintained
15896 F: drivers/clocksource/scx200_hrt.c
15897
15898 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15899 M: Sascha Sommer <saschasommer@freenet.de>
15900 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15901 S: Maintained
15902 F: drivers/mmc/host/sdricoh_cs.c
15903
15904 SECO BOARDS CEC DRIVER
15905 M: Ettore Chimenti <ek5.chimenti@gmail.com>
15906 S: Maintained
15907 F: drivers/media/cec/platform/seco/seco-cec.c
15908 F: drivers/media/cec/platform/seco/seco-cec.h
15909
15910 SECURE COMPUTING
15911 M: Kees Cook <keescook@chromium.org>
15912 R: Andy Lutomirski <luto@amacapital.net>
15913 R: Will Drewry <wad@chromium.org>
15914 S: Supported
15915 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15916 F: Documentation/userspace-api/seccomp_filter.rst
15917 F: include/linux/seccomp.h
15918 F: include/uapi/linux/seccomp.h
15919 F: kernel/seccomp.c
15920 F: tools/testing/selftests/kselftest_harness.h
15921 F: tools/testing/selftests/seccomp/*
15922 K: \bsecure_computing
15923 K: \bTIF_SECCOMP\b
15924
15925 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15926 M: Al Cooper <alcooperx@gmail.com>
15927 L: linux-mmc@vger.kernel.org
15928 L: bcm-kernel-feedback-list@broadcom.com
15929 S: Maintained
15930 F: drivers/mmc/host/sdhci-brcmstb*
15931
15932 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15933 M: Adrian Hunter <adrian.hunter@intel.com>
15934 L: linux-mmc@vger.kernel.org
15935 S: Maintained
15936 F: drivers/mmc/host/sdhci*
15937 F: include/linux/mmc/sdhci*
15938
15939 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15940 M: Eugen Hristev <eugen.hristev@microchip.com>
15941 L: linux-mmc@vger.kernel.org
15942 S: Supported
15943 F: drivers/mmc/host/sdhci-of-at91.c
15944
15945 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15946 M: Ben Dooks <ben-linux@fluff.org>
15947 M: Jaehoon Chung <jh80.chung@samsung.com>
15948 L: linux-mmc@vger.kernel.org
15949 S: Maintained
15950 F: drivers/mmc/host/sdhci-s3c*
15951
15952 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15953 M: Viresh Kumar <vireshk@kernel.org>
15954 L: linux-mmc@vger.kernel.org
15955 S: Maintained
15956 F: drivers/mmc/host/sdhci-spear.c
15957
15958 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15959 M: Kishon Vijay Abraham I <kishon@ti.com>
15960 L: linux-mmc@vger.kernel.org
15961 S: Maintained
15962 F: drivers/mmc/host/sdhci-omap.c
15963
15964 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15965 M: Jonathan Derrick <jonathan.derrick@intel.com>
15966 M: Revanth Rajashekar <revanth.rajashekar@intel.com>
15967 L: linux-block@vger.kernel.org
15968 S: Supported
15969 F: block/opal_proto.h
15970 F: block/sed*
15971 F: include/linux/sed*
15972 F: include/uapi/linux/sed*
15973
15974 SECURITY CONTACT
15975 M: Security Officers <security@kernel.org>
15976 S: Supported
15977 F: Documentation/admin-guide/security-bugs.rst
15978
15979 SECURITY SUBSYSTEM
15980 M: James Morris <jmorris@namei.org>
15981 M: "Serge E. Hallyn" <serge@hallyn.com>
15982 L: linux-security-module@vger.kernel.org (suggested Cc:)
15983 S: Supported
15984 W: http://kernsec.org/
15985 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15986 F: security/
15987 X: security/selinux/
15988
15989 SELINUX SECURITY MODULE
15990 M: Paul Moore <paul@paul-moore.com>
15991 M: Stephen Smalley <stephen.smalley.work@gmail.com>
15992 M: Eric Paris <eparis@parisplace.org>
15993 L: selinux@vger.kernel.org
15994 S: Supported
15995 W: https://selinuxproject.org
15996 W: https://github.com/SELinuxProject
15997 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15998 F: Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15999 F: Documentation/ABI/obsolete/sysfs-selinux-disable
16000 F: Documentation/admin-guide/LSM/SELinux.rst
16001 F: include/trace/events/avc.h
16002 F: include/uapi/linux/selinux_netlink.h
16003 F: scripts/selinux/
16004 F: security/selinux/
16005
16006 SENSABLE PHANTOM
16007 M: Jiri Slaby <jirislaby@kernel.org>
16008 S: Maintained
16009 F: drivers/misc/phantom.c
16010 F: include/uapi/linux/phantom.h
16011
16012 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16013 M: Tomasz Duszynski <tomasz.duszynski@octakon.com>
16014 S: Maintained
16015 F: Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16016 F: drivers/iio/chemical/scd30.h
16017 F: drivers/iio/chemical/scd30_core.c
16018 F: drivers/iio/chemical/scd30_i2c.c
16019 F: drivers/iio/chemical/scd30_serial.c
16020
16021 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16022 M: Tomasz Duszynski <tduszyns@gmail.com>
16023 S: Maintained
16024 F: Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16025 F: drivers/iio/chemical/sps30.c
16026
16027 SERIAL DEVICE BUS
16028 M: Rob Herring <robh@kernel.org>
16029 L: linux-serial@vger.kernel.org
16030 S: Maintained
16031 F: Documentation/devicetree/bindings/serial/serial.yaml
16032 F: drivers/tty/serdev/
16033 F: include/linux/serdev.h
16034
16035 SERIAL DRIVERS
16036 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16037 L: linux-serial@vger.kernel.org
16038 S: Maintained
16039 F: Documentation/devicetree/bindings/serial/
16040 F: drivers/tty/serial/
16041
16042 SERIAL IR RECEIVER
16043 M: Sean Young <sean@mess.org>
16044 L: linux-media@vger.kernel.org
16045 S: Maintained
16046 F: drivers/media/rc/serial_ir.c
16047
16048 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16049 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16050 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16051 S: Maintained
16052 F: Documentation/devicetree/bindings/slimbus/
16053 F: drivers/slimbus/
16054 F: include/linux/slimbus.h
16055
16056 SFC NETWORK DRIVER
16057 M: Edward Cree <ecree.xilinx@gmail.com>
16058 M: Martin Habets <habetsm.xilinx@gmail.com>
16059 L: netdev@vger.kernel.org
16060 S: Supported
16061 F: drivers/net/ethernet/sfc/
16062
16063 SFF/SFP/SFP+ MODULE SUPPORT
16064 M: Russell King <linux@armlinux.org.uk>
16065 L: netdev@vger.kernel.org
16066 S: Maintained
16067 F: drivers/net/phy/phylink.c
16068 F: drivers/net/phy/sfp*
16069 F: include/linux/mdio/mdio-i2c.h
16070 F: include/linux/phylink.h
16071 F: include/linux/sfp.h
16072 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)
16073
16074 SGI GRU DRIVER
16075 M: Dimitri Sivanich <dimitri.sivanich@hpe.com>
16076 S: Maintained
16077 F: drivers/misc/sgi-gru/
16078
16079 SGI XP/XPC/XPNET DRIVER
16080 M: Robin Holt <robinmholt@gmail.com>
16081 M: Steve Wahl <steve.wahl@hpe.com>
16082 R: Mike Travis <mike.travis@hpe.com>
16083 S: Maintained
16084 F: drivers/misc/sgi-xp/
16085
16086 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16087 M: Karsten Graul <kgraul@linux.ibm.com>
16088 L: linux-s390@vger.kernel.org
16089 S: Supported
16090 W: http://www.ibm.com/developerworks/linux/linux390/
16091 F: net/smc/
16092
16093 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16094 M: Linus Walleij <linus.walleij@linaro.org>
16095 L: linux-iio@vger.kernel.org
16096 S: Maintained
16097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16098 F: Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16099 F: drivers/iio/light/gp2ap002.c
16100
16101 SHARP RJ54N1CB0C SENSOR DRIVER
16102 M: Jacopo Mondi <jacopo@jmondi.org>
16103 L: linux-media@vger.kernel.org
16104 S: Odd fixes
16105 T: git git://linuxtv.org/media_tree.git
16106 F: drivers/media/i2c/rj54n1cb0c.c
16107 F: include/media/i2c/rj54n1cb0c.h
16108
16109 SH_VOU V4L2 OUTPUT DRIVER
16110 L: linux-media@vger.kernel.org
16111 S: Orphan
16112 F: drivers/media/platform/sh_vou.c
16113 F: include/media/drv-intf/sh_vou.h
16114
16115 SI2157 MEDIA DRIVER
16116 M: Antti Palosaari <crope@iki.fi>
16117 L: linux-media@vger.kernel.org
16118 S: Maintained
16119 W: https://linuxtv.org
16120 W: http://palosaari.fi/linux/
16121 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16122 T: git git://linuxtv.org/anttip/media_tree.git
16123 F: drivers/media/tuners/si2157*
16124
16125 SI2165 MEDIA DRIVER
16126 M: Matthias Schwarzott <zzam@gentoo.org>
16127 L: linux-media@vger.kernel.org
16128 S: Maintained
16129 W: https://linuxtv.org
16130 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16131 F: drivers/media/dvb-frontends/si2165*
16132
16133 SI2168 MEDIA DRIVER
16134 M: Antti Palosaari <crope@iki.fi>
16135 L: linux-media@vger.kernel.org
16136 S: Maintained
16137 W: https://linuxtv.org
16138 W: http://palosaari.fi/linux/
16139 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16140 T: git git://linuxtv.org/anttip/media_tree.git
16141 F: drivers/media/dvb-frontends/si2168*
16142
16143 SI470X FM RADIO RECEIVER I2C DRIVER
16144 M: Hans Verkuil <hverkuil@xs4all.nl>
16145 L: linux-media@vger.kernel.org
16146 S: Odd Fixes
16147 W: https://linuxtv.org
16148 T: git git://linuxtv.org/media_tree.git
16149 F: drivers/media/radio/si470x/radio-si470x-i2c.c
16150
16151 SI470X FM RADIO RECEIVER USB DRIVER
16152 M: Hans Verkuil <hverkuil@xs4all.nl>
16153 L: linux-media@vger.kernel.org
16154 S: Maintained
16155 W: https://linuxtv.org
16156 T: git git://linuxtv.org/media_tree.git
16157 F: drivers/media/radio/si470x/radio-si470x-common.c
16158 F: drivers/media/radio/si470x/radio-si470x-usb.c
16159 F: drivers/media/radio/si470x/radio-si470x.h
16160
16161 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16162 M: Eduardo Valentin <edubezval@gmail.com>
16163 L: linux-media@vger.kernel.org
16164 S: Odd Fixes
16165 W: https://linuxtv.org
16166 T: git git://linuxtv.org/media_tree.git
16167 F: drivers/media/radio/si4713/si4713.?
16168
16169 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16170 M: Eduardo Valentin <edubezval@gmail.com>
16171 L: linux-media@vger.kernel.org
16172 S: Odd Fixes
16173 W: https://linuxtv.org
16174 T: git git://linuxtv.org/media_tree.git
16175 F: drivers/media/radio/si4713/radio-platform-si4713.c
16176
16177 SI4713 FM RADIO TRANSMITTER USB DRIVER
16178 M: Hans Verkuil <hverkuil@xs4all.nl>
16179 L: linux-media@vger.kernel.org
16180 S: Maintained
16181 W: https://linuxtv.org
16182 T: git git://linuxtv.org/media_tree.git
16183 F: drivers/media/radio/si4713/radio-usb-si4713.c
16184
16185 SIANO DVB DRIVER
16186 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16187 L: linux-media@vger.kernel.org
16188 S: Odd fixes
16189 W: https://linuxtv.org
16190 T: git git://linuxtv.org/media_tree.git
16191 F: drivers/media/common/siano/
16192 F: drivers/media/mmc/siano/
16193 F: drivers/media/usb/siano/
16194 F: drivers/media/usb/siano/
16195
16196 SIFIVE DRIVERS
16197 M: Palmer Dabbelt <palmer@dabbelt.com>
16198 M: Paul Walmsley <paul.walmsley@sifive.com>
16199 L: linux-riscv@lists.infradead.org
16200 S: Supported
16201 T: git git://github.com/sifive/riscv-linux.git
16202 N: sifive
16203 K: [^@]sifive
16204
16205 SIFIVE FU540 SYSTEM-ON-CHIP
16206 M: Paul Walmsley <paul.walmsley@sifive.com>
16207 M: Palmer Dabbelt <palmer@dabbelt.com>
16208 L: linux-riscv@lists.infradead.org
16209 S: Supported
16210 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16211 N: fu540
16212 K: fu540
16213
16214 SIFIVE PDMA DRIVER
16215 M: Green Wan <green.wan@sifive.com>
16216 S: Maintained
16217 F: Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16218 F: drivers/dma/sf-pdma/
16219
16220 SILEAD TOUCHSCREEN DRIVER
16221 M: Hans de Goede <hdegoede@redhat.com>
16222 L: linux-input@vger.kernel.org
16223 L: platform-driver-x86@vger.kernel.org
16224 S: Maintained
16225 F: drivers/input/touchscreen/silead.c
16226 F: drivers/platform/x86/touchscreen_dmi.c
16227
16228 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16229 M: Jérôme Pouiller <jerome.pouiller@silabs.com>
16230 S: Supported
16231 F: drivers/staging/wfx/
16232
16233 SILICON MOTION SM712 FRAME BUFFER DRIVER
16234 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16235 M: Teddy Wang <teddy.wang@siliconmotion.com>
16236 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16237 L: linux-fbdev@vger.kernel.org
16238 S: Maintained
16239 F: Documentation/fb/sm712fb.rst
16240 F: drivers/video/fbdev/sm712*
16241
16242 SIMPLE FIRMWARE INTERFACE (SFI)
16243 S: Obsolete
16244 W: http://simplefirmware.org/
16245 F: arch/x86/platform/sfi/
16246 F: drivers/sfi/
16247 F: include/linux/sfi*.h
16248
16249 SIMPLEFB FB DRIVER
16250 M: Hans de Goede <hdegoede@redhat.com>
16251 L: linux-fbdev@vger.kernel.org
16252 S: Maintained
16253 F: Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16254 F: drivers/video/fbdev/simplefb.c
16255 F: include/linux/platform_data/simplefb.h
16256
16257 SIMTEC EB110ATX (Chalice CATS)
16258 M: Simtec Linux Team <linux@simtec.co.uk>
16259 S: Supported
16260 W: http://www.simtec.co.uk/products/EB110ATX/
16261
16262 SIMTEC EB2410ITX (BAST)
16263 M: Simtec Linux Team <linux@simtec.co.uk>
16264 S: Supported
16265 W: http://www.simtec.co.uk/products/EB2410ITX/
16266 F: arch/arm/mach-s3c/bast-ide.c
16267 F: arch/arm/mach-s3c/bast-irq.c
16268 F: arch/arm/mach-s3c/mach-bast.c
16269
16270 SIOX
16271 M: Thorsten Scherer <t.scherer@eckelmann.de>
16272 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16273 R: Pengutronix Kernel Team <kernel@pengutronix.de>
16274 S: Supported
16275 F: drivers/gpio/gpio-siox.c
16276 F: drivers/siox/*
16277 F: include/trace/events/siox.h
16278
16279 SIPHASH PRF ROUTINES
16280 M: Jason A. Donenfeld <Jason@zx2c4.com>
16281 S: Maintained
16282 F: include/linux/siphash.h
16283 F: lib/siphash.c
16284 F: lib/test_siphash.c
16285
16286 SIS 190 ETHERNET DRIVER
16287 M: Francois Romieu <romieu@fr.zoreil.com>
16288 L: netdev@vger.kernel.org
16289 S: Maintained
16290 F: drivers/net/ethernet/sis/sis190.c
16291
16292 SIS 900/7016 FAST ETHERNET DRIVER
16293 M: Daniele Venzano <venza@brownhat.org>
16294 L: netdev@vger.kernel.org
16295 S: Maintained
16296 W: http://www.brownhat.org/sis900.html
16297 F: drivers/net/ethernet/sis/sis900.*
16298
16299 SIS FRAMEBUFFER DRIVER
16300 M: Thomas Winischhofer <thomas@winischhofer.net>
16301 S: Maintained
16302 W: http://www.winischhofer.net/linuxsisvga.shtml
16303 F: Documentation/fb/sisfb.rst
16304 F: drivers/video/fbdev/sis/
16305 F: include/video/sisfb.h
16306
16307 SIS I2C TOUCHSCREEN DRIVER
16308 M: Mika Penttilä <mika.penttila@nextfour.com>
16309 L: linux-input@vger.kernel.org
16310 S: Maintained
16311 F: Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16312 F: drivers/input/touchscreen/sis_i2c.c
16313
16314 SIS USB2VGA DRIVER
16315 M: Thomas Winischhofer <thomas@winischhofer.net>
16316 S: Maintained
16317 W: http://www.winischhofer.at/linuxsisusbvga.shtml
16318 F: drivers/usb/misc/sisusbvga/
16319
16320 SLAB ALLOCATOR
16321 M: Christoph Lameter <cl@linux.com>
16322 M: Pekka Enberg <penberg@kernel.org>
16323 M: David Rientjes <rientjes@google.com>
16324 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
16325 M: Andrew Morton <akpm@linux-foundation.org>
16326 L: linux-mm@kvack.org
16327 S: Maintained
16328 F: include/linux/sl?b*.h
16329 F: mm/sl?b*
16330
16331 SLEEPABLE READ-COPY UPDATE (SRCU)
16332 M: Lai Jiangshan <jiangshanlai@gmail.com>
16333 M: "Paul E. McKenney" <paulmck@kernel.org>
16334 M: Josh Triplett <josh@joshtriplett.org>
16335 R: Steven Rostedt <rostedt@goodmis.org>
16336 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16337 L: rcu@vger.kernel.org
16338 S: Supported
16339 W: http://www.rdrop.com/users/paulmck/RCU/
16340 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16341 F: include/linux/srcu*.h
16342 F: kernel/rcu/srcu*.c
16343
16344 SMACK SECURITY MODULE
16345 M: Casey Schaufler <casey@schaufler-ca.com>
16346 L: linux-security-module@vger.kernel.org
16347 S: Maintained
16348 W: http://schaufler-ca.com
16349 T: git git://github.com/cschaufler/smack-next
16350 F: Documentation/admin-guide/LSM/Smack.rst
16351 F: security/smack/
16352
16353 SMC91x ETHERNET DRIVER
16354 M: Nicolas Pitre <nico@fluxnic.net>
16355 S: Odd Fixes
16356 F: drivers/net/ethernet/smsc/smc91x.*
16357
16358 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16359 M: Mark Rutland <mark.rutland@arm.com>
16360 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16361 M: Sudeep Holla <sudeep.holla@arm.com>
16362 L: linux-arm-kernel@lists.infradead.org
16363 S: Maintained
16364 F: drivers/firmware/smccc/
16365 F: include/linux/arm-smccc.h
16366
16367 SMM665 HARDWARE MONITOR DRIVER
16368 M: Guenter Roeck <linux@roeck-us.net>
16369 L: linux-hwmon@vger.kernel.org
16370 S: Maintained
16371 F: Documentation/hwmon/smm665.rst
16372 F: drivers/hwmon/smm665.c
16373
16374 SMSC EMC2103 HARDWARE MONITOR DRIVER
16375 M: Steve Glendinning <steve.glendinning@shawell.net>
16376 L: linux-hwmon@vger.kernel.org
16377 S: Maintained
16378 F: Documentation/hwmon/emc2103.rst
16379 F: drivers/hwmon/emc2103.c
16380
16381 SMSC SCH5627 HARDWARE MONITOR DRIVER
16382 M: Hans de Goede <hdegoede@redhat.com>
16383 L: linux-hwmon@vger.kernel.org
16384 S: Supported
16385 F: Documentation/hwmon/sch5627.rst
16386 F: drivers/hwmon/sch5627.c
16387
16388 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16389 M: Steve Glendinning <steve.glendinning@shawell.net>
16390 L: linux-fbdev@vger.kernel.org
16391 S: Maintained
16392 F: drivers/video/fbdev/smscufx.c
16393
16394 SMSC47B397 HARDWARE MONITOR DRIVER
16395 M: Jean Delvare <jdelvare@suse.com>
16396 L: linux-hwmon@vger.kernel.org
16397 S: Maintained
16398 F: Documentation/hwmon/smsc47b397.rst
16399 F: drivers/hwmon/smsc47b397.c
16400
16401 SMSC911x ETHERNET DRIVER
16402 M: Steve Glendinning <steve.glendinning@shawell.net>
16403 L: netdev@vger.kernel.org
16404 S: Maintained
16405 F: drivers/net/ethernet/smsc/smsc911x.*
16406 F: include/linux/smsc911x.h
16407
16408 SMSC9420 PCI ETHERNET DRIVER
16409 M: Steve Glendinning <steve.glendinning@shawell.net>
16410 L: netdev@vger.kernel.org
16411 S: Maintained
16412 F: drivers/net/ethernet/smsc/smsc9420.*
16413
16414 SOCIONEXT (SNI) AVE NETWORK DRIVER
16415 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16416 L: netdev@vger.kernel.org
16417 S: Maintained
16418 F: Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16419 F: drivers/net/ethernet/socionext/sni_ave.c
16420
16421 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16422 M: Jassi Brar <jaswinder.singh@linaro.org>
16423 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
16424 L: netdev@vger.kernel.org
16425 S: Maintained
16426 F: Documentation/devicetree/bindings/net/socionext-netsec.txt
16427 F: drivers/net/ethernet/socionext/netsec.c
16428
16429 SOCIONEXT (SNI) Synquacer SPI DRIVER
16430 M: Masahisa Kojima <masahisa.kojima@linaro.org>
16431 M: Jassi Brar <jaswinder.singh@linaro.org>
16432 L: linux-spi@vger.kernel.org
16433 S: Maintained
16434 F: Documentation/devicetree/bindings/spi/spi-synquacer.txt
16435 F: drivers/spi/spi-synquacer.c
16436
16437 SOCIONEXT SYNQUACER I2C DRIVER
16438 M: Ard Biesheuvel <ardb@kernel.org>
16439 L: linux-i2c@vger.kernel.org
16440 S: Maintained
16441 F: Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16442 F: drivers/i2c/busses/i2c-synquacer.c
16443
16444 SOCIONEXT UNIPHIER SOUND DRIVER
16445 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16446 S: Orphan
16447 F: sound/soc/uniphier/
16448
16449 SOEKRIS NET48XX LED SUPPORT
16450 M: Chris Boot <bootc@bootc.net>
16451 S: Maintained
16452 F: drivers/leds/leds-net48xx.c
16453
16454 SOFT-IWARP DRIVER (siw)
16455 M: Bernard Metzler <bmt@zurich.ibm.com>
16456 L: linux-rdma@vger.kernel.org
16457 S: Supported
16458 F: drivers/infiniband/sw/siw/
16459 F: include/uapi/rdma/siw-abi.h
16460
16461 SOFT-ROCE DRIVER (rxe)
16462 M: Zhu Yanjun <zyjzyj2000@gmail.com>
16463 L: linux-rdma@vger.kernel.org
16464 S: Supported
16465 F: drivers/infiniband/sw/rxe/
16466 F: include/uapi/rdma/rdma_user_rxe.h
16467
16468 SOFTLOGIC 6x10 MPEG CODEC
16469 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16470 M: Anton Sviridenko <anton@corp.bluecherry.net>
16471 M: Andrey Utkin <andrey_utkin@fastmail.com>
16472 M: Ismael Luceno <ismael@iodev.co.uk>
16473 L: linux-media@vger.kernel.org
16474 S: Supported
16475 F: drivers/media/pci/solo6x10/
16476
16477 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16478 M: James Morse <james.morse@arm.com>
16479 L: linux-arm-kernel@lists.infradead.org
16480 S: Maintained
16481 F: Documentation/devicetree/bindings/arm/firmware/sdei.txt
16482 F: drivers/firmware/arm_sdei.c
16483 F: include/linux/arm_sdei.h
16484 F: include/uapi/linux/arm_sdei.h
16485
16486 SOFTWARE RAID (Multiple Disks) SUPPORT
16487 M: Song Liu <song@kernel.org>
16488 L: linux-raid@vger.kernel.org
16489 S: Supported
16490 T: git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16491 F: drivers/md/Kconfig
16492 F: drivers/md/Makefile
16493 F: drivers/md/md*
16494 F: drivers/md/raid*
16495 F: include/linux/raid/
16496 F: include/uapi/linux/raid/
16497
16498 SOLIDRUN CLEARFOG SUPPORT
16499 M: Russell King <linux@armlinux.org.uk>
16500 S: Maintained
16501 F: arch/arm/boot/dts/armada-388-clearfog*
16502 F: arch/arm/boot/dts/armada-38x-solidrun-*
16503
16504 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16505 M: Russell King <linux@armlinux.org.uk>
16506 S: Maintained
16507 F: arch/arm/boot/dts/imx6*-cubox-i*
16508 F: arch/arm/boot/dts/imx6*-hummingboard*
16509 F: arch/arm/boot/dts/imx6*-sr-*
16510
16511 SONIC NETWORK DRIVER
16512 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16513 L: netdev@vger.kernel.org
16514 S: Maintained
16515 F: drivers/net/ethernet/natsemi/sonic.*
16516
16517 SONICS SILICON BACKPLANE DRIVER (SSB)
16518 M: Michael Buesch <m@bues.ch>
16519 L: linux-wireless@vger.kernel.org
16520 S: Maintained
16521 F: drivers/ssb/
16522 F: include/linux/ssb/
16523
16524 SONY IMX214 SENSOR DRIVER
16525 M: Ricardo Ribalda <ribalda@kernel.org>
16526 L: linux-media@vger.kernel.org
16527 S: Maintained
16528 T: git git://linuxtv.org/media_tree.git
16529 F: Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16530 F: drivers/media/i2c/imx214.c
16531
16532 SONY IMX219 SENSOR DRIVER
16533 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
16534 L: linux-media@vger.kernel.org
16535 S: Maintained
16536 T: git git://linuxtv.org/media_tree.git
16537 F: Documentation/devicetree/bindings/media/i2c/imx219.yaml
16538 F: drivers/media/i2c/imx219.c
16539
16540 SONY IMX258 SENSOR DRIVER
16541 M: Sakari Ailus <sakari.ailus@linux.intel.com>
16542 L: linux-media@vger.kernel.org
16543 S: Maintained
16544 T: git git://linuxtv.org/media_tree.git
16545 F: drivers/media/i2c/imx258.c
16546
16547 SONY IMX274 SENSOR DRIVER
16548 M: Leon Luo <leonl@leopardimaging.com>
16549 L: linux-media@vger.kernel.org
16550 S: Maintained
16551 T: git git://linuxtv.org/media_tree.git
16552 F: Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16553 F: drivers/media/i2c/imx274.c
16554
16555 SONY IMX290 SENSOR DRIVER
16556 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16557 L: linux-media@vger.kernel.org
16558 S: Maintained
16559 T: git git://linuxtv.org/media_tree.git
16560 F: Documentation/devicetree/bindings/media/i2c/imx290.txt
16561 F: drivers/media/i2c/imx290.c
16562
16563 SONY IMX319 SENSOR DRIVER
16564 M: Bingbu Cao <bingbu.cao@intel.com>
16565 L: linux-media@vger.kernel.org
16566 S: Maintained
16567 T: git git://linuxtv.org/media_tree.git
16568 F: drivers/media/i2c/imx319.c
16569
16570 SONY IMX355 SENSOR DRIVER
16571 M: Tianshu Qiu <tian.shu.qiu@intel.com>
16572 L: linux-media@vger.kernel.org
16573 S: Maintained
16574 T: git git://linuxtv.org/media_tree.git
16575 F: drivers/media/i2c/imx355.c
16576
16577 SONY MEMORYSTICK SUBSYSTEM
16578 M: Maxim Levitsky <maximlevitsky@gmail.com>
16579 M: Alex Dubov <oakad@yahoo.com>
16580 M: Ulf Hansson <ulf.hansson@linaro.org>
16581 L: linux-mmc@vger.kernel.org
16582 S: Maintained
16583 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16584 F: drivers/memstick/
16585 F: include/linux/memstick.h
16586
16587 SONY VAIO CONTROL DEVICE DRIVER
16588 M: Mattia Dongili <malattia@linux.it>
16589 L: platform-driver-x86@vger.kernel.org
16590 S: Maintained
16591 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16592 F: Documentation/admin-guide/laptops/sony-laptop.rst
16593 F: drivers/char/sonypi.c
16594 F: drivers/platform/x86/sony-laptop.c
16595 F: include/linux/sony-laptop.h
16596
16597 SOUND
16598 M: Jaroslav Kysela <perex@perex.cz>
16599 M: Takashi Iwai <tiwai@suse.com>
16600 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16601 S: Maintained
16602 W: http://www.alsa-project.org/
16603 Q: http://patchwork.kernel.org/project/alsa-devel/list/
16604 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16605 F: Documentation/sound/
16606 F: include/sound/
16607 F: include/uapi/sound/
16608 F: sound/
16609
16610 SOUND - COMPRESSED AUDIO
16611 M: Vinod Koul <vkoul@kernel.org>
16612 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16613 S: Supported
16614 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16615 F: Documentation/sound/designs/compress-offload.rst
16616 F: include/sound/compress_driver.h
16617 F: include/uapi/sound/compress_*
16618 F: sound/core/compress_offload.c
16619 F: sound/soc/soc-compress.c
16620
16621 SOUND - DMAENGINE HELPERS
16622 M: Lars-Peter Clausen <lars@metafoo.de>
16623 S: Supported
16624 F: include/sound/dmaengine_pcm.h
16625 F: sound/core/pcm_dmaengine.c
16626 F: sound/soc/soc-generic-dmaengine-pcm.c
16627
16628 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16629 M: Liam Girdwood <lgirdwood@gmail.com>
16630 M: Mark Brown <broonie@kernel.org>
16631 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16632 S: Supported
16633 W: http://alsa-project.org/main/index.php/ASoC
16634 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16635 F: Documentation/devicetree/bindings/sound/
16636 F: Documentation/sound/soc/
16637 F: include/dt-bindings/sound/
16638 F: include/sound/soc*
16639 F: sound/soc/
16640
16641 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16642 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16643 M: Liam Girdwood <lgirdwood@gmail.com>
16644 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16645 M: Kai Vehmanen <kai.vehmanen@linux.intel.com>
16646 M: Daniel Baluta <daniel.baluta@nxp.com>
16647 L: sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16648 S: Supported
16649 W: https://github.com/thesofproject/linux/
16650 F: sound/soc/sof/
16651
16652 SOUNDWIRE SUBSYSTEM
16653 M: Vinod Koul <vkoul@kernel.org>
16654 M: Bard Liao <yung-chuan.liao@linux.intel.com>
16655 R: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16656 R: Sanyog Kale <sanyog.r.kale@intel.com>
16657 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16658 S: Supported
16659 F: Documentation/driver-api/soundwire/
16660 F: drivers/soundwire/
16661 F: include/linux/soundwire/
16662
16663 SP2 MEDIA DRIVER
16664 M: Olli Salonen <olli.salonen@iki.fi>
16665 L: linux-media@vger.kernel.org
16666 S: Maintained
16667 W: https://linuxtv.org
16668 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16669 F: drivers/media/dvb-frontends/sp2*
16670
16671 SPARC + UltraSPARC (sparc/sparc64)
16672 M: "David S. Miller" <davem@davemloft.net>
16673 L: sparclinux@vger.kernel.org
16674 S: Maintained
16675 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
16676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16678 F: arch/sparc/
16679 F: drivers/sbus/
16680
16681 SPARC SERIAL DRIVERS
16682 M: "David S. Miller" <davem@davemloft.net>
16683 L: sparclinux@vger.kernel.org
16684 S: Maintained
16685 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16686 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16687 F: drivers/tty/serial/suncore.c
16688 F: drivers/tty/serial/sunhv.c
16689 F: drivers/tty/serial/sunsab.c
16690 F: drivers/tty/serial/sunsab.h
16691 F: drivers/tty/serial/sunsu.c
16692 F: drivers/tty/serial/sunzilog.c
16693 F: drivers/tty/serial/sunzilog.h
16694 F: drivers/tty/vcc.c
16695 F: include/linux/sunserialcore.h
16696
16697 SPARSE CHECKER
16698 M: "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16699 L: linux-sparse@vger.kernel.org
16700 S: Maintained
16701 W: https://sparse.docs.kernel.org/
16702 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16703 Q: https://patchwork.kernel.org/project/linux-sparse/list/
16704 B: https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16705 F: include/linux/compiler.h
16706
16707 SPEAKUP CONSOLE SPEECH DRIVER
16708 M: William Hubbs <w.d.hubbs@gmail.com>
16709 M: Chris Brannon <chris@the-brannons.com>
16710 M: Kirk Reiser <kirk@reisers.ca>
16711 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
16712 L: speakup@linux-speakup.org
16713 S: Odd Fixes
16714 W: http://www.linux-speakup.org/
16715 F: drivers/accessibility/speakup/
16716
16717 SPEAR CLOCK FRAMEWORK SUPPORT
16718 M: Viresh Kumar <vireshk@kernel.org>
16719 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16720 S: Maintained
16721 W: http://www.st.com/spear
16722 F: drivers/clk/spear/
16723
16724 SPEAR PLATFORM SUPPORT
16725 M: Viresh Kumar <vireshk@kernel.org>
16726 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16727 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16728 S: Maintained
16729 W: http://www.st.com/spear
16730 F: arch/arm/boot/dts/spear*
16731 F: arch/arm/mach-spear/
16732
16733 SPI NOR SUBSYSTEM
16734 M: Tudor Ambarus <tudor.ambarus@microchip.com>
16735 L: linux-mtd@lists.infradead.org
16736 S: Maintained
16737 W: http://www.linux-mtd.infradead.org/
16738 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
16739 C: irc://irc.oftc.net/mtd
16740 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16741 F: drivers/mtd/spi-nor/
16742 F: include/linux/mtd/spi-nor.h
16743
16744 SPI SUBSYSTEM
16745 M: Mark Brown <broonie@kernel.org>
16746 L: linux-spi@vger.kernel.org
16747 S: Maintained
16748 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
16749 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16750 F: Documentation/devicetree/bindings/spi/
16751 F: Documentation/spi/
16752 F: drivers/spi/
16753 F: include/linux/spi/
16754 F: include/uapi/linux/spi/
16755 F: tools/spi/
16756
16757 SPIDERNET NETWORK DRIVER for CELL
16758 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16759 L: netdev@vger.kernel.org
16760 S: Supported
16761 F: Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16762 F: drivers/net/ethernet/toshiba/spider_net*
16763
16764 SPMI SUBSYSTEM
16765 M: Stephen Boyd <sboyd@kernel.org>
16766 L: linux-kernel@vger.kernel.org
16767 S: Maintained
16768 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
16769 F: Documentation/devicetree/bindings/spmi/
16770 F: drivers/spmi/
16771 F: include/dt-bindings/spmi/spmi.h
16772 F: include/linux/spmi.h
16773 F: include/trace/events/spmi.h
16774
16775 SPU FILE SYSTEM
16776 M: Jeremy Kerr <jk@ozlabs.org>
16777 L: linuxppc-dev@lists.ozlabs.org
16778 S: Supported
16779 W: http://www.ibm.com/developerworks/power/cell/
16780 F: Documentation/filesystems/spufs/spufs.rst
16781 F: arch/powerpc/platforms/cell/spufs/
16782
16783 SQUASHFS FILE SYSTEM
16784 M: Phillip Lougher <phillip@squashfs.org.uk>
16785 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
16786 S: Maintained
16787 W: http://squashfs.org.uk
16788 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16789 F: Documentation/filesystems/squashfs.rst
16790 F: fs/squashfs/
16791
16792 SRM (Alpha) environment access
16793 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
16794 S: Maintained
16795 F: arch/alpha/kernel/srm_env.c
16796
16797 ST LSM6DSx IMU IIO DRIVER
16798 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16799 L: linux-iio@vger.kernel.org
16800 S: Maintained
16801 W: http://www.st.com/
16802 F: Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16803 F: drivers/iio/imu/st_lsm6dsx/
16804
16805 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16806 M: Mickael Guene <mickael.guene@st.com>
16807 L: linux-media@vger.kernel.org
16808 S: Maintained
16809 T: git git://linuxtv.org/media_tree.git
16810 F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16811 F: drivers/media/i2c/st-mipid02.c
16812
16813 ST STM32 I2C/SMBUS DRIVER
16814 M: Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16815 L: linux-i2c@vger.kernel.org
16816 S: Maintained
16817 F: drivers/i2c/busses/i2c-stm32*
16818
16819 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16820 M: Song Qiang <songqiang1304521@gmail.com>
16821 L: linux-iio@vger.kernel.org
16822 S: Maintained
16823 F: Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16824 F: drivers/iio/proximity/vl53l0x-i2c.c
16825
16826 STABLE BRANCH
16827 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16828 M: Sasha Levin <sashal@kernel.org>
16829 L: stable@vger.kernel.org
16830 S: Supported
16831 F: Documentation/process/stable-kernel-rules.rst
16832
16833 STAGING - ATOMISP DRIVER
16834 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16835 R: Sakari Ailus <sakari.ailus@linux.intel.com>
16836 L: linux-media@vger.kernel.org
16837 S: Maintained
16838 F: drivers/staging/media/atomisp/
16839
16840 STAGING - COMEDI
16841 M: Ian Abbott <abbotti@mev.co.uk>
16842 M: H Hartley Sweeten <hsweeten@visionengravers.com>
16843 S: Odd Fixes
16844 F: drivers/staging/comedi/
16845
16846 STAGING - FIELDBUS SUBSYSTEM
16847 M: Sven Van Asbroeck <TheSven73@gmail.com>
16848 S: Maintained
16849 F: drivers/staging/fieldbus/*
16850 F: drivers/staging/fieldbus/Documentation/
16851
16852 STAGING - HMS ANYBUS-S BUS
16853 M: Sven Van Asbroeck <TheSven73@gmail.com>
16854 S: Maintained
16855 F: drivers/staging/fieldbus/anybuss/
16856
16857 STAGING - INDUSTRIAL IO
16858 M: Jonathan Cameron <jic23@kernel.org>
16859 L: linux-iio@vger.kernel.org
16860 S: Odd Fixes
16861 F: Documentation/devicetree/bindings/staging/iio/
16862 F: drivers/staging/iio/
16863
16864 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16865 M: Marc Dietrich <marvin24@gmx.de>
16866 L: ac100@lists.launchpad.net (moderated for non-subscribers)
16867 L: linux-tegra@vger.kernel.org
16868 S: Maintained
16869 F: drivers/staging/nvec/
16870
16871 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16872 M: Jens Frederich <jfrederich@gmail.com>
16873 M: Daniel Drake <dsd@laptop.org>
16874 M: Jon Nettleton <jon.nettleton@gmail.com>
16875 S: Maintained
16876 W: http://wiki.laptop.org/go/DCON
16877 F: drivers/staging/olpc_dcon/
16878
16879 STAGING - REALTEK RTL8188EU DRIVERS
16880 M: Larry Finger <Larry.Finger@lwfinger.net>
16881 S: Odd Fixes
16882 F: drivers/staging/rtl8188eu/
16883
16884 STAGING - REALTEK RTL8712U DRIVERS
16885 M: Larry Finger <Larry.Finger@lwfinger.net>
16886 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16887 S: Odd Fixes
16888 F: drivers/staging/rtl8712/
16889
16890 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16891 M: Michael Hennerich <michael.hennerich@analog.com>
16892 L: linux-fbdev@vger.kernel.org
16893 S: Supported
16894 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16895 F: drivers/staging/fbtft/fb_seps525.c
16896
16897 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16898 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16899 M: Teddy Wang <teddy.wang@siliconmotion.com>
16900 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16901 L: linux-fbdev@vger.kernel.org
16902 S: Maintained
16903 F: drivers/staging/sm750fb/
16904
16905 STAGING - VIA VT665X DRIVERS
16906 M: Forest Bond <forest@alittletooquiet.net>
16907 S: Odd Fixes
16908 F: drivers/staging/vt665?/
16909
16910 STAGING SUBSYSTEM
16911 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16912 L: devel@driverdev.osuosl.org
16913 S: Supported
16914 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16915 F: drivers/staging/
16916
16917 STARFIRE/DURALAN NETWORK DRIVER
16918 M: Ion Badulescu <ionut@badula.org>
16919 S: Odd Fixes
16920 F: drivers/net/ethernet/adaptec/starfire*
16921
16922 STATIC BRANCH/CALL
16923 M: Peter Zijlstra <peterz@infradead.org>
16924 M: Josh Poimboeuf <jpoimboe@redhat.com>
16925 M: Jason Baron <jbaron@akamai.com>
16926 R: Steven Rostedt <rostedt@goodmis.org>
16927 R: Ard Biesheuvel <ardb@kernel.org>
16928 S: Supported
16929 F: arch/*/include/asm/jump_label*.h
16930 F: arch/*/include/asm/static_call*.h
16931 F: arch/*/kernel/jump_label.c
16932 F: arch/*/kernel/static_call.c
16933 F: include/linux/jump_label*.h
16934 F: include/linux/static_call*.h
16935 F: kernel/jump_label.c
16936 F: kernel/static_call.c
16937
16938 STEC S1220 SKD DRIVER
16939 M: Damien Le Moal <Damien.LeMoal@wdc.com>
16940 L: linux-block@vger.kernel.org
16941 S: Maintained
16942 F: drivers/block/skd*[ch]
16943
16944 STI AUDIO (ASoC) DRIVERS
16945 M: Arnaud Pouliquen <arnaud.pouliquen@st.com>
16946 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16947 S: Maintained
16948 F: Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16949 F: sound/soc/sti/
16950
16951 STI CEC DRIVER
16952 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
16953 S: Maintained
16954 F: Documentation/devicetree/bindings/media/stih-cec.txt
16955 F: drivers/media/cec/platform/sti/
16956
16957 STK1160 USB VIDEO CAPTURE DRIVER
16958 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16959 L: linux-media@vger.kernel.org
16960 S: Maintained
16961 T: git git://linuxtv.org/media_tree.git
16962 F: drivers/media/usb/stk1160/
16963
16964 STM32 AUDIO (ASoC) DRIVERS
16965 M: Olivier Moysan <olivier.moysan@st.com>
16966 M: Arnaud Pouliquen <arnaud.pouliquen@st.com>
16967 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16968 S: Maintained
16969 F: Documentation/devicetree/bindings/sound/st,stm32-*.txt
16970 F: sound/soc/stm/
16971
16972 STM32 TIMER/LPTIMER DRIVERS
16973 M: Fabrice Gasnier <fabrice.gasnier@st.com>
16974 S: Maintained
16975 F: Documentation/ABI/testing/*timer-stm32
16976 F: Documentation/devicetree/bindings/*/*stm32-*timer*
16977 F: drivers/*/stm32-*timer*
16978 F: drivers/pwm/pwm-stm32*
16979 F: include/linux/*/stm32-*tim*
16980
16981 STMMAC ETHERNET DRIVER
16982 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
16983 M: Alexandre Torgue <alexandre.torgue@st.com>
16984 M: Jose Abreu <joabreu@synopsys.com>
16985 L: netdev@vger.kernel.org
16986 S: Supported
16987 W: http://www.stlinux.com
16988 F: Documentation/networking/device_drivers/ethernet/stmicro/
16989 F: drivers/net/ethernet/stmicro/stmmac/
16990
16991 SUN3/3X
16992 M: Sam Creasey <sammy@sammy.net>
16993 S: Maintained
16994 W: http://sammy.net/sun3/
16995 F: arch/m68k/include/asm/sun3*
16996 F: arch/m68k/kernel/*sun3*
16997 F: arch/m68k/sun3*/
16998 F: drivers/net/ethernet/i825xx/sun3*
16999
17000 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17001 M: Hans de Goede <hdegoede@redhat.com>
17002 L: linux-input@vger.kernel.org
17003 S: Maintained
17004 F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17005 F: drivers/input/keyboard/sun4i-lradc-keys.c
17006
17007 SUNDANCE NETWORK DRIVER
17008 M: Denis Kirjanov <kda@linux-powerpc.org>
17009 L: netdev@vger.kernel.org
17010 S: Maintained
17011 F: drivers/net/ethernet/dlink/sundance.c
17012
17013 SUPERH
17014 M: Yoshinori Sato <ysato@users.sourceforge.jp>
17015 M: Rich Felker <dalias@libc.org>
17016 L: linux-sh@vger.kernel.org
17017 S: Maintained
17018 Q: http://patchwork.kernel.org/project/linux-sh/list/
17019 F: Documentation/sh/
17020 F: arch/sh/
17021 F: drivers/sh/
17022
17023 SUSPEND TO RAM
17024 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
17025 M: Len Brown <len.brown@intel.com>
17026 M: Pavel Machek <pavel@ucw.cz>
17027 L: linux-pm@vger.kernel.org
17028 S: Supported
17029 B: https://bugzilla.kernel.org
17030 F: Documentation/power/
17031 F: arch/x86/kernel/acpi/
17032 F: drivers/base/power/
17033 F: include/linux/freezer.h
17034 F: include/linux/pm.h
17035 F: include/linux/suspend.h
17036 F: kernel/power/
17037
17038 SVGA HANDLING
17039 M: Martin Mares <mj@ucw.cz>
17040 L: linux-video@atrey.karlin.mff.cuni.cz
17041 S: Maintained
17042 F: Documentation/admin-guide/svga.rst
17043 F: arch/x86/boot/video*
17044
17045 SWIOTLB SUBSYSTEM
17046 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17047 L: iommu@lists.linux-foundation.org
17048 S: Supported
17049 T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17050 F: arch/*/kernel/pci-swiotlb.c
17051 F: include/linux/swiotlb.h
17052 F: kernel/dma/swiotlb.c
17053
17054 SWITCHDEV
17055 M: Jiri Pirko <jiri@resnulli.us>
17056 M: Ivan Vecera <ivecera@redhat.com>
17057 L: netdev@vger.kernel.org
17058 S: Supported
17059 F: include/net/switchdev.h
17060 F: net/switchdev/
17061
17062 SY8106A REGULATOR DRIVER
17063 M: Icenowy Zheng <icenowy@aosc.io>
17064 S: Maintained
17065 F: Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17066 F: drivers/regulator/sy8106a-regulator.c
17067
17068 SYNC FILE FRAMEWORK
17069 M: Sumit Semwal <sumit.semwal@linaro.org>
17070 R: Gustavo Padovan <gustavo@padovan.org>
17071 L: linux-media@vger.kernel.org
17072 L: dri-devel@lists.freedesktop.org
17073 S: Maintained
17074 T: git git://anongit.freedesktop.org/drm/drm-misc
17075 F: Documentation/driver-api/sync_file.rst
17076 F: drivers/dma-buf/dma-fence*
17077 F: drivers/dma-buf/sw_sync.c
17078 F: drivers/dma-buf/sync_*
17079 F: include/linux/sync_file.h
17080 F: include/uapi/linux/sync_file.h
17081
17082 SYNOPSYS ARC ARCHITECTURE
17083 M: Vineet Gupta <vgupta@synopsys.com>
17084 L: linux-snps-arc@lists.infradead.org
17085 S: Supported
17086 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17087 F: Documentation/devicetree/bindings/arc/*
17088 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17089 F: arch/arc/
17090 F: drivers/clocksource/arc_timer.c
17091 F: drivers/tty/serial/arc_uart.c
17092
17093 SYNOPSYS ARC HSDK SDP pll clock driver
17094 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17095 S: Supported
17096 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17097 F: drivers/clk/clk-hsdk-pll.c
17098
17099 SYNOPSYS ARC SDP clock driver
17100 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17101 S: Supported
17102 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17103 F: drivers/clk/axs10x/*
17104
17105 SYNOPSYS ARC SDP platform support
17106 M: Alexey Brodkin <abrodkin@synopsys.com>
17107 S: Supported
17108 F: Documentation/devicetree/bindings/arc/axs10*
17109 F: arch/arc/boot/dts/ax*
17110 F: arch/arc/plat-axs10x
17111
17112 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17113 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17114 S: Supported
17115 F: Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17116 F: drivers/reset/reset-axs10x.c
17117
17118 SYNOPSYS CREG GPIO DRIVER
17119 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17120 S: Maintained
17121 F: Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17122 F: drivers/gpio/gpio-creg-snps.c
17123
17124 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17125 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17126 S: Maintained
17127 F: drivers/tty/serial/8250/8250_dw.c
17128 F: drivers/tty/serial/8250/8250_dwlib.*
17129 F: drivers/tty/serial/8250/8250_lpss.c
17130
17131 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17132 M: Hoan Tran <hoan@os.amperecomputing.com>
17133 M: Serge Semin <fancer.lancer@gmail.com>
17134 L: linux-gpio@vger.kernel.org
17135 S: Maintained
17136 F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17137 F: drivers/gpio/gpio-dwapb.c
17138
17139 SYNOPSYS DESIGNWARE APB SSI DRIVER
17140 M: Serge Semin <fancer.lancer@gmail.com>
17141 L: linux-spi@vger.kernel.org
17142 S: Supported
17143 F: Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17144 F: drivers/spi/spi-dw*
17145
17146 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17147 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17148 S: Maintained
17149 F: Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
17150 F: drivers/dma/dw-axi-dmac/
17151
17152 SYNOPSYS DESIGNWARE DMAC DRIVER
17153 M: Viresh Kumar <vireshk@kernel.org>
17154 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17155 S: Maintained
17156 F: Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17157 F: drivers/dma/dw/
17158 F: include/dt-bindings/dma/dw-dmac.h
17159 F: include/linux/dma/dw.h
17160 F: include/linux/platform_data/dma-dw.h
17161
17162 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17163 M: Jose Abreu <Jose.Abreu@synopsys.com>
17164 L: netdev@vger.kernel.org
17165 S: Supported
17166 F: drivers/net/ethernet/synopsys/
17167
17168 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17169 M: Jose Abreu <Jose.Abreu@synopsys.com>
17170 L: netdev@vger.kernel.org
17171 S: Supported
17172 F: drivers/net/pcs/pcs-xpcs.c
17173 F: include/linux/pcs/pcs-xpcs.h
17174
17175 SYNOPSYS DESIGNWARE I2C DRIVER
17176 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
17177 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17178 R: Mika Westerberg <mika.westerberg@linux.intel.com>
17179 L: linux-i2c@vger.kernel.org
17180 S: Maintained
17181 F: drivers/i2c/busses/i2c-designware-*
17182 F: include/linux/platform_data/i2c-designware.h
17183
17184 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17185 M: Jaehoon Chung <jh80.chung@samsung.com>
17186 L: linux-mmc@vger.kernel.org
17187 S: Maintained
17188 F: drivers/mmc/host/dw_mmc*
17189
17190 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17191 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17192 S: Supported
17193 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17194 F: drivers/reset/reset-hsdk.c
17195 F: include/dt-bindings/reset/snps,hsdk-reset.h
17196
17197 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17198 M: Prabu Thangamuthu <prabu.t@synopsys.com>
17199 M: Manjunath M B <manjumb@synopsys.com>
17200 L: linux-mmc@vger.kernel.org
17201 S: Maintained
17202 F: drivers/mmc/host/sdhci-pci-dwc-mshc.c
17203
17204 SYSTEM CONFIGURATION (SYSCON)
17205 M: Lee Jones <lee.jones@linaro.org>
17206 M: Arnd Bergmann <arnd@arndb.de>
17207 S: Supported
17208 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17209 F: drivers/mfd/syscon.c
17210
17211 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17212 M: Sudeep Holla <sudeep.holla@arm.com>
17213 L: linux-arm-kernel@lists.infradead.org
17214 S: Maintained
17215 F: Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17216 F: drivers/clk/clk-sc[mp]i.c
17217 F: drivers/cpufreq/sc[mp]i-cpufreq.c
17218 F: drivers/firmware/arm_scmi/
17219 F: drivers/firmware/arm_scpi.c
17220 F: drivers/reset/reset-scmi.c
17221 F: include/linux/sc[mp]i_protocol.h
17222 F: include/trace/events/scmi.h
17223
17224 SYSTEM RESET/SHUTDOWN DRIVERS
17225 M: Sebastian Reichel <sre@kernel.org>
17226 L: linux-pm@vger.kernel.org
17227 S: Maintained
17228 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17229 F: Documentation/devicetree/bindings/power/reset/
17230 F: drivers/power/reset/
17231
17232 SYSTEM TRACE MODULE CLASS
17233 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
17234 S: Maintained
17235 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17236 F: Documentation/trace/stm.rst
17237 F: drivers/hwtracing/stm/
17238 F: include/linux/stm.h
17239 F: include/uapi/linux/stm.h
17240
17241 SYSTEM76 ACPI DRIVER
17242 M: Jeremy Soller <jeremy@system76.com>
17243 M: System76 Product Development <productdev@system76.com>
17244 L: platform-driver-x86@vger.kernel.org
17245 S: Maintained
17246 F: drivers/platform/x86/system76_acpi.c
17247
17248 SYSV FILESYSTEM
17249 M: Christoph Hellwig <hch@infradead.org>
17250 S: Maintained
17251 F: Documentation/filesystems/sysv-fs.rst
17252 F: fs/sysv/
17253 F: include/linux/sysv_fs.h
17254
17255 TASKSTATS STATISTICS INTERFACE
17256 M: Balbir Singh <bsingharora@gmail.com>
17257 S: Maintained
17258 F: Documentation/accounting/taskstats*
17259 F: include/linux/taskstats*
17260 F: kernel/taskstats.c
17261
17262 TC subsystem
17263 M: Jamal Hadi Salim <jhs@mojatatu.com>
17264 M: Cong Wang <xiyou.wangcong@gmail.com>
17265 M: Jiri Pirko <jiri@resnulli.us>
17266 L: netdev@vger.kernel.org
17267 S: Maintained
17268 F: include/net/pkt_cls.h
17269 F: include/net/pkt_sched.h
17270 F: include/net/tc_act/
17271 F: include/uapi/linux/pkt_cls.h
17272 F: include/uapi/linux/pkt_sched.h
17273 F: include/uapi/linux/tc_act/
17274 F: include/uapi/linux/tc_ematch/
17275 F: net/sched/
17276
17277 TC90522 MEDIA DRIVER
17278 M: Akihiro Tsukada <tskd08@gmail.com>
17279 L: linux-media@vger.kernel.org
17280 S: Odd Fixes
17281 F: drivers/media/dvb-frontends/tc90522*
17282
17283 TCP LOW PRIORITY MODULE
17284 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17285 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17286 S: Maintained
17287 W: http://tcp-lp-mod.sourceforge.net/
17288 F: net/ipv4/tcp_lp.c
17289
17290 TDA10071 MEDIA DRIVER
17291 M: Antti Palosaari <crope@iki.fi>
17292 L: linux-media@vger.kernel.org
17293 S: Maintained
17294 W: https://linuxtv.org
17295 W: http://palosaari.fi/linux/
17296 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17297 T: git git://linuxtv.org/anttip/media_tree.git
17298 F: drivers/media/dvb-frontends/tda10071*
17299
17300 TDA18212 MEDIA DRIVER
17301 M: Antti Palosaari <crope@iki.fi>
17302 L: linux-media@vger.kernel.org
17303 S: Maintained
17304 W: https://linuxtv.org
17305 W: http://palosaari.fi/linux/
17306 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17307 T: git git://linuxtv.org/anttip/media_tree.git
17308 F: drivers/media/tuners/tda18212*
17309
17310 TDA18218 MEDIA DRIVER
17311 M: Antti Palosaari <crope@iki.fi>
17312 L: linux-media@vger.kernel.org
17313 S: Maintained
17314 W: https://linuxtv.org
17315 W: http://palosaari.fi/linux/
17316 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17317 T: git git://linuxtv.org/anttip/media_tree.git
17318 F: drivers/media/tuners/tda18218*
17319
17320 TDA18250 MEDIA DRIVER
17321 M: Olli Salonen <olli.salonen@iki.fi>
17322 L: linux-media@vger.kernel.org
17323 S: Maintained
17324 W: https://linuxtv.org
17325 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17326 T: git git://linuxtv.org/media_tree.git
17327 F: drivers/media/tuners/tda18250*
17328
17329 TDA18271 MEDIA DRIVER
17330 M: Michael Krufky <mkrufky@linuxtv.org>
17331 L: linux-media@vger.kernel.org
17332 S: Maintained
17333 W: https://linuxtv.org
17334 W: http://github.com/mkrufky
17335 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17336 T: git git://linuxtv.org/mkrufky/tuners.git
17337 F: drivers/media/tuners/tda18271*
17338
17339 TDA1997x MEDIA DRIVER
17340 M: Tim Harvey <tharvey@gateworks.com>
17341 L: linux-media@vger.kernel.org
17342 S: Maintained
17343 W: https://linuxtv.org
17344 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17345 F: drivers/media/i2c/tda1997x.*
17346
17347 TDA827x MEDIA DRIVER
17348 M: Michael Krufky <mkrufky@linuxtv.org>
17349 L: linux-media@vger.kernel.org
17350 S: Maintained
17351 W: https://linuxtv.org
17352 W: http://github.com/mkrufky
17353 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17354 T: git git://linuxtv.org/mkrufky/tuners.git
17355 F: drivers/media/tuners/tda8290.*
17356
17357 TDA8290 MEDIA DRIVER
17358 M: Michael Krufky <mkrufky@linuxtv.org>
17359 L: linux-media@vger.kernel.org
17360 S: Maintained
17361 W: https://linuxtv.org
17362 W: http://github.com/mkrufky
17363 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17364 T: git git://linuxtv.org/mkrufky/tuners.git
17365 F: drivers/media/tuners/tda8290.*
17366
17367 TDA9840 MEDIA DRIVER
17368 M: Hans Verkuil <hverkuil@xs4all.nl>
17369 L: linux-media@vger.kernel.org
17370 S: Maintained
17371 W: https://linuxtv.org
17372 T: git git://linuxtv.org/media_tree.git
17373 F: drivers/media/i2c/tda9840*
17374
17375 TEA5761 TUNER DRIVER
17376 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17377 L: linux-media@vger.kernel.org
17378 S: Odd fixes
17379 W: https://linuxtv.org
17380 T: git git://linuxtv.org/media_tree.git
17381 F: drivers/media/tuners/tea5761.*
17382
17383 TEA5767 TUNER DRIVER
17384 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17385 L: linux-media@vger.kernel.org
17386 S: Maintained
17387 W: https://linuxtv.org
17388 T: git git://linuxtv.org/media_tree.git
17389 F: drivers/media/tuners/tea5767.*
17390
17391 TEA6415C MEDIA DRIVER
17392 M: Hans Verkuil <hverkuil@xs4all.nl>
17393 L: linux-media@vger.kernel.org
17394 S: Maintained
17395 W: https://linuxtv.org
17396 T: git git://linuxtv.org/media_tree.git
17397 F: drivers/media/i2c/tea6415c*
17398
17399 TEA6420 MEDIA DRIVER
17400 M: Hans Verkuil <hverkuil@xs4all.nl>
17401 L: linux-media@vger.kernel.org
17402 S: Maintained
17403 W: https://linuxtv.org
17404 T: git git://linuxtv.org/media_tree.git
17405 F: drivers/media/i2c/tea6420*
17406
17407 TEAM DRIVER
17408 M: Jiri Pirko <jiri@resnulli.us>
17409 L: netdev@vger.kernel.org
17410 S: Supported
17411 F: drivers/net/team/
17412 F: include/linux/if_team.h
17413 F: include/uapi/linux/if_team.h
17414
17415 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17416 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17417 S: Maintained
17418 F: arch/x86/platform/ts5500/
17419
17420 TECHNOTREND USB IR RECEIVER
17421 M: Sean Young <sean@mess.org>
17422 L: linux-media@vger.kernel.org
17423 S: Maintained
17424 F: drivers/media/rc/ttusbir.c
17425
17426 TECHWELL TW9910 VIDEO DECODER
17427 L: linux-media@vger.kernel.org
17428 S: Orphan
17429 F: drivers/media/i2c/tw9910.c
17430 F: include/media/i2c/tw9910.h
17431
17432 TEE SUBSYSTEM
17433 M: Jens Wiklander <jens.wiklander@linaro.org>
17434 L: op-tee@lists.trustedfirmware.org
17435 S: Maintained
17436 F: Documentation/staging/tee.rst
17437 F: drivers/tee/
17438 F: include/linux/tee_drv.h
17439 F: include/uapi/linux/tee.h
17440
17441 TEGRA ARCHITECTURE SUPPORT
17442 M: Thierry Reding <thierry.reding@gmail.com>
17443 M: Jonathan Hunter <jonathanh@nvidia.com>
17444 L: linux-tegra@vger.kernel.org
17445 S: Supported
17446 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
17447 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17448 N: [^a-z]tegra
17449
17450 TEGRA CLOCK DRIVER
17451 M: Peter De Schrijver <pdeschrijver@nvidia.com>
17452 M: Prashant Gaikwad <pgaikwad@nvidia.com>
17453 S: Supported
17454 F: drivers/clk/tegra/
17455
17456 TEGRA DMA DRIVERS
17457 M: Laxman Dewangan <ldewangan@nvidia.com>
17458 M: Jon Hunter <jonathanh@nvidia.com>
17459 S: Supported
17460 F: drivers/dma/tegra*
17461
17462 TEGRA I2C DRIVER
17463 M: Laxman Dewangan <ldewangan@nvidia.com>
17464 R: Dmitry Osipenko <digetx@gmail.com>
17465 S: Supported
17466 F: drivers/i2c/busses/i2c-tegra.c
17467
17468 TEGRA IOMMU DRIVERS
17469 M: Thierry Reding <thierry.reding@gmail.com>
17470 R: Krishna Reddy <vdumpa@nvidia.com>
17471 L: linux-tegra@vger.kernel.org
17472 S: Supported
17473 F: drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17474 F: drivers/iommu/tegra*
17475
17476 TEGRA KBC DRIVER
17477 M: Laxman Dewangan <ldewangan@nvidia.com>
17478 S: Supported
17479 F: drivers/input/keyboard/tegra-kbc.c
17480
17481 TEGRA NAND DRIVER
17482 M: Stefan Agner <stefan@agner.ch>
17483 M: Lucas Stach <dev@lynxeye.de>
17484 S: Maintained
17485 F: Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17486 F: drivers/mtd/nand/raw/tegra_nand.c
17487
17488 TEGRA PWM DRIVER
17489 M: Thierry Reding <thierry.reding@gmail.com>
17490 S: Supported
17491 F: drivers/pwm/pwm-tegra.c
17492
17493 TEGRA SERIAL DRIVER
17494 M: Laxman Dewangan <ldewangan@nvidia.com>
17495 S: Supported
17496 F: drivers/tty/serial/serial-tegra.c
17497
17498 TEGRA SPI DRIVER
17499 M: Laxman Dewangan <ldewangan@nvidia.com>
17500 S: Supported
17501 F: drivers/spi/spi-tegra*
17502
17503 TEGRA VIDEO DRIVER
17504 M: Thierry Reding <thierry.reding@gmail.com>
17505 M: Jonathan Hunter <jonathanh@nvidia.com>
17506 M: Sowjanya Komatineni <skomatineni@nvidia.com>
17507 L: linux-media@vger.kernel.org
17508 L: linux-tegra@vger.kernel.org
17509 S: Maintained
17510 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17511 F: drivers/staging/media/tegra-video/
17512
17513 TEGRA XUSB PADCTL DRIVER
17514 M: JC Kuo <jckuo@nvidia.com>
17515 S: Supported
17516 F: drivers/phy/tegra/xusb*
17517
17518 TEHUTI ETHERNET DRIVER
17519 M: Andy Gospodarek <andy@greyhouse.net>
17520 L: netdev@vger.kernel.org
17521 S: Supported
17522 F: drivers/net/ethernet/tehuti/*
17523
17524 TELECOM CLOCK DRIVER FOR MCPL0010
17525 M: Mark Gross <mark.gross@intel.com>
17526 S: Supported
17527 F: drivers/char/tlclk.c
17528
17529 TEMPO SEMICONDUCTOR DRIVERS
17530 M: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17531 S: Maintained
17532 F: Documentation/devicetree/bindings/sound/tscs*.txt
17533 F: sound/soc/codecs/tscs*.c
17534 F: sound/soc/codecs/tscs*.h
17535
17536 TENSILICA XTENSA PORT (xtensa)
17537 M: Chris Zankel <chris@zankel.net>
17538 M: Max Filippov <jcmvbkbc@gmail.com>
17539 L: linux-xtensa@linux-xtensa.org
17540 S: Maintained
17541 T: git git://github.com/czankel/xtensa-linux.git
17542 F: arch/xtensa/
17543 F: drivers/irqchip/irq-xtensa-*
17544
17545 TEXAS INSTRUMENTS ASoC DRIVERS
17546 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
17547 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17548 S: Maintained
17549 F: sound/soc/ti/
17550
17551 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17552 M: Ricardo Ribalda <ribalda@kernel.org>
17553 L: linux-iio@vger.kernel.org
17554 S: Supported
17555 F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17556 F: drivers/iio/dac/ti-dac7612.c
17557
17558 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17559 M: Nishanth Menon <nm@ti.com>
17560 M: Tero Kristo <t-kristo@ti.com>
17561 M: Santosh Shilimkar <ssantosh@kernel.org>
17562 L: linux-arm-kernel@lists.infradead.org
17563 S: Maintained
17564 F: Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17565 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17566 F: Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17567 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17568 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17569 F: Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17570 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17571 F: drivers/clk/keystone/sci-clk.c
17572 F: drivers/firmware/ti_sci*
17573 F: drivers/irqchip/irq-ti-sci-inta.c
17574 F: drivers/irqchip/irq-ti-sci-intr.c
17575 F: drivers/reset/reset-ti-sci.c
17576 F: drivers/soc/ti/ti_sci_inta_msi.c
17577 F: drivers/soc/ti/ti_sci_pm_domains.c
17578 F: include/dt-bindings/soc/ti,sci_pm_domain.h
17579 F: include/linux/soc/ti/ti_sci_inta_msi.h
17580 F: include/linux/soc/ti/ti_sci_protocol.h
17581
17582 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17583 M: Hans Verkuil <hverkuil@xs4all.nl>
17584 L: linux-media@vger.kernel.org
17585 S: Maintained
17586 W: https://linuxtv.org
17587 T: git git://linuxtv.org/media_tree.git
17588 F: drivers/media/radio/radio-raremono.c
17589
17590 THERMAL
17591 M: Zhang Rui <rui.zhang@intel.com>
17592 M: Daniel Lezcano <daniel.lezcano@linaro.org>
17593 R: Amit Kucheria <amitk@kernel.org>
17594 L: linux-pm@vger.kernel.org
17595 S: Supported
17596 Q: https://patchwork.kernel.org/project/linux-pm/list/
17597 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17598 F: Documentation/devicetree/bindings/thermal/
17599 F: drivers/thermal/
17600 F: include/linux/cpu_cooling.h
17601 F: include/linux/thermal.h
17602 F: include/uapi/linux/thermal.h
17603
17604 THERMAL DRIVER FOR AMLOGIC SOCS
17605 M: Guillaume La Roque <glaroque@baylibre.com>
17606 L: linux-pm@vger.kernel.org
17607 L: linux-amlogic@lists.infradead.org
17608 S: Supported
17609 W: http://linux-meson.com/
17610 F: Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17611 F: drivers/thermal/amlogic_thermal.c
17612
17613 THERMAL/CPU_COOLING
17614 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
17615 M: Daniel Lezcano <daniel.lezcano@linaro.org>
17616 M: Viresh Kumar <viresh.kumar@linaro.org>
17617 M: Javi Merino <javi.merino@kernel.org>
17618 L: linux-pm@vger.kernel.org
17619 S: Supported
17620 F: Documentation/driver-api/thermal/cpu-cooling-api.rst
17621 F: Documentation/driver-api/thermal/cpu-idle-cooling.rst
17622 F: drivers/thermal/cpufreq_cooling.c
17623 F: drivers/thermal/cpuidle_cooling.c
17624 F: include/linux/cpu_cooling.h
17625
17626 THERMAL/POWER_ALLOCATOR
17627 M: Lukasz Luba <lukasz.luba@arm.com>
17628 L: linux-pm@vger.kernel.org
17629 S: Maintained
17630 F: Documentation/driver-api/thermal/power_allocator.rst
17631 F: drivers/thermal/gov_power_allocator.c
17632 F: include/trace/events/thermal_power_allocator.h
17633
17634 THINKPAD ACPI EXTRAS DRIVER
17635 M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
17636 L: ibm-acpi-devel@lists.sourceforge.net
17637 L: platform-driver-x86@vger.kernel.org
17638 S: Maintained
17639 W: http://ibm-acpi.sourceforge.net
17640 W: http://thinkwiki.org/wiki/Ibm-acpi
17641 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17642 F: drivers/platform/x86/thinkpad_acpi.c
17643
17644 THUNDERBOLT DMA TRAFFIC TEST DRIVER
17645 M: Isaac Hazan <isaac.hazan@intel.com>
17646 L: linux-usb@vger.kernel.org
17647 S: Maintained
17648 F: drivers/thunderbolt/dma_test.c
17649
17650 THUNDERBOLT DRIVER
17651 M: Andreas Noever <andreas.noever@gmail.com>
17652 M: Michael Jamet <michael.jamet@intel.com>
17653 M: Mika Westerberg <mika.westerberg@linux.intel.com>
17654 M: Yehezkel Bernat <YehezkelShB@gmail.com>
17655 L: linux-usb@vger.kernel.org
17656 S: Maintained
17657 T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17658 F: Documentation/admin-guide/thunderbolt.rst
17659 F: drivers/thunderbolt/
17660 F: include/linux/thunderbolt.h
17661
17662 THUNDERBOLT NETWORK DRIVER
17663 M: Michael Jamet <michael.jamet@intel.com>
17664 M: Mika Westerberg <mika.westerberg@linux.intel.com>
17665 M: Yehezkel Bernat <YehezkelShB@gmail.com>
17666 L: netdev@vger.kernel.org
17667 S: Maintained
17668 F: drivers/net/thunderbolt.c
17669
17670 THUNDERX GPIO DRIVER
17671 M: Robert Richter <rric@kernel.org>
17672 S: Odd Fixes
17673 F: drivers/gpio/gpio-thunderx.c
17674
17675 TI AM437X VPFE DRIVER
17676 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17677 L: linux-media@vger.kernel.org
17678 S: Maintained
17679 W: https://linuxtv.org
17680 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17681 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17682 F: drivers/media/platform/am437x/
17683
17684 TI BANDGAP AND THERMAL DRIVER
17685 M: Eduardo Valentin <edubezval@gmail.com>
17686 M: Keerthy <j-keerthy@ti.com>
17687 L: linux-pm@vger.kernel.org
17688 L: linux-omap@vger.kernel.org
17689 S: Maintained
17690 F: drivers/thermal/ti-soc-thermal/
17691
17692 TI BQ27XXX POWER SUPPLY DRIVER
17693 R: Dan Murphy <dmurphy@ti.com>
17694 F: drivers/power/supply/bq27xxx_battery.c
17695 F: drivers/power/supply/bq27xxx_battery_i2c.c
17696 F: include/linux/power/bq27xxx_battery.h
17697
17698 TI CDCE706 CLOCK DRIVER
17699 M: Max Filippov <jcmvbkbc@gmail.com>
17700 S: Maintained
17701 F: drivers/clk/clk-cdce706.c
17702
17703 TI CLOCK DRIVER
17704 M: Tero Kristo <t-kristo@ti.com>
17705 L: linux-omap@vger.kernel.org
17706 S: Maintained
17707 F: drivers/clk/ti/
17708 F: include/linux/clk/ti.h
17709
17710 TI DAVINCI MACHINE SUPPORT
17711 M: Sekhar Nori <nsekhar@ti.com>
17712 R: Bartosz Golaszewski <bgolaszewski@baylibre.com>
17713 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17714 S: Supported
17715 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17716 F: Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17717 F: arch/arm/boot/dts/da850*
17718 F: arch/arm/mach-davinci/
17719 F: drivers/i2c/busses/i2c-davinci.c
17720
17721 TI DAVINCI SERIES CLOCK DRIVER
17722 M: David Lechner <david@lechnology.com>
17723 R: Sekhar Nori <nsekhar@ti.com>
17724 S: Maintained
17725 F: Documentation/devicetree/bindings/clock/ti/davinci/
17726 F: drivers/clk/davinci/
17727
17728 TI DAVINCI SERIES GPIO DRIVER
17729 M: Keerthy <j-keerthy@ti.com>
17730 L: linux-gpio@vger.kernel.org
17731 S: Maintained
17732 F: Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17733 F: drivers/gpio/gpio-davinci.c
17734
17735 TI DAVINCI SERIES MEDIA DRIVER
17736 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17737 L: linux-media@vger.kernel.org
17738 S: Maintained
17739 W: https://linuxtv.org
17740 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17741 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17742 F: drivers/media/platform/davinci/
17743 F: include/media/davinci/
17744
17745 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17746 R: David Lechner <david@lechnology.com>
17747 L: linux-iio@vger.kernel.org
17748 F: Documentation/devicetree/bindings/counter/ti-eqep.yaml
17749 F: drivers/counter/ti-eqep.c
17750
17751 TI ETHERNET SWITCH DRIVER (CPSW)
17752 R: Grygorii Strashko <grygorii.strashko@ti.com>
17753 L: linux-omap@vger.kernel.org
17754 L: netdev@vger.kernel.org
17755 S: Maintained
17756 F: drivers/net/ethernet/ti/cpsw*
17757 F: drivers/net/ethernet/ti/davinci*
17758
17759 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17760 M: Alex Dubov <oakad@yahoo.com>
17761 S: Maintained
17762 W: http://tifmxx.berlios.de/
17763 F: drivers/memstick/host/tifm_ms.c
17764 F: drivers/misc/tifm*
17765 F: drivers/mmc/host/tifm_sd.c
17766 F: include/linux/tifm.h
17767
17768 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17769 M: Santosh Shilimkar <ssantosh@kernel.org>
17770 L: linux-kernel@vger.kernel.org
17771 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17772 S: Maintained
17773 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17774 F: drivers/soc/ti/*
17775
17776 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17777 M: M R Swami Reddy <mr.swami.reddy@ti.com>
17778 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17779 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17780 S: Maintained
17781 F: sound/soc/codecs/isabelle*
17782 F: sound/soc/codecs/lm49453*
17783
17784 TI LP855x BACKLIGHT DRIVER
17785 M: Milo Kim <milo.kim@ti.com>
17786 S: Maintained
17787 F: Documentation/driver-api/backlight/lp855x-driver.rst
17788 F: drivers/video/backlight/lp855x_bl.c
17789 F: include/linux/platform_data/lp855x.h
17790
17791 TI LP8727 CHARGER DRIVER
17792 M: Milo Kim <milo.kim@ti.com>
17793 S: Maintained
17794 F: drivers/power/supply/lp8727_charger.c
17795 F: include/linux/platform_data/lp8727.h
17796
17797 TI LP8788 MFD DRIVER
17798 M: Milo Kim <milo.kim@ti.com>
17799 S: Maintained
17800 F: drivers/iio/adc/lp8788_adc.c
17801 F: drivers/leds/leds-lp8788.c
17802 F: drivers/mfd/lp8788*.c
17803 F: drivers/power/supply/lp8788-charger.c
17804 F: drivers/regulator/lp8788-*.c
17805 F: include/linux/mfd/lp8788*.h
17806
17807 TI NETCP ETHERNET DRIVER
17808 M: Wingman Kwok <w-kwok2@ti.com>
17809 M: Murali Karicheri <m-karicheri2@ti.com>
17810 L: netdev@vger.kernel.org
17811 S: Maintained
17812 F: drivers/net/ethernet/ti/netcp*
17813
17814 TI PCM3060 ASoC CODEC DRIVER
17815 M: Kirill Marinushkin <kmarinushkin@birdec.com>
17816 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17817 S: Maintained
17818 F: Documentation/devicetree/bindings/sound/pcm3060.txt
17819 F: sound/soc/codecs/pcm3060*
17820
17821 TI TAS571X FAMILY ASoC CODEC DRIVER
17822 M: Kevin Cernekee <cernekee@chromium.org>
17823 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17824 S: Odd Fixes
17825 F: sound/soc/codecs/tas571x*
17826
17827 TI TCAN4X5X DEVICE DRIVER
17828 M: Dan Murphy <dmurphy@ti.com>
17829 L: linux-can@vger.kernel.org
17830 S: Maintained
17831 F: Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17832 F: drivers/net/can/m_can/tcan4x5x.c
17833
17834 TI TRF7970A NFC DRIVER
17835 M: Mark Greer <mgreer@animalcreek.com>
17836 L: linux-wireless@vger.kernel.org
17837 L: linux-nfc@lists.01.org (moderated for non-subscribers)
17838 S: Supported
17839 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17840 F: drivers/nfc/trf7970a.c
17841
17842 TI TWL4030 SERIES SOC CODEC DRIVER
17843 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
17844 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17845 S: Maintained
17846 F: sound/soc/codecs/twl4030*
17847
17848 TI VPE/CAL DRIVERS
17849 M: Benoit Parrot <bparrot@ti.com>
17850 L: linux-media@vger.kernel.org
17851 S: Maintained
17852 W: http://linuxtv.org/
17853 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17854 F: Documentation/devicetree/bindings/media/ti,cal.yaml
17855 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
17856 F: drivers/media/platform/ti-vpe/
17857
17858 TI WILINK WIRELESS DRIVERS
17859 L: linux-wireless@vger.kernel.org
17860 S: Orphan
17861 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17862 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17863 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17864 F: drivers/net/wireless/ti/
17865 F: include/linux/wl12xx.h
17866
17867 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17868 M: John Stultz <john.stultz@linaro.org>
17869 M: Thomas Gleixner <tglx@linutronix.de>
17870 R: Stephen Boyd <sboyd@kernel.org>
17871 L: linux-kernel@vger.kernel.org
17872 S: Supported
17873 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17874 F: include/linux/clocksource.h
17875 F: include/linux/time.h
17876 F: include/linux/timex.h
17877 F: include/uapi/linux/time.h
17878 F: include/uapi/linux/timex.h
17879 F: kernel/time/alarmtimer.c
17880 F: kernel/time/clocksource.c
17881 F: kernel/time/ntp.c
17882 F: kernel/time/time*.c
17883 F: tools/testing/selftests/timers/
17884
17885 TIPC NETWORK LAYER
17886 M: Jon Maloy <jmaloy@redhat.com>
17887 M: Ying Xue <ying.xue@windriver.com>
17888 L: netdev@vger.kernel.org (core kernel code)
17889 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17890 S: Maintained
17891 W: http://tipc.sourceforge.net/
17892 F: include/uapi/linux/tipc*.h
17893 F: net/tipc/
17894
17895 TLAN NETWORK DRIVER
17896 M: Samuel Chessman <chessman@tux.org>
17897 L: tlan-devel@lists.sourceforge.net (subscribers-only)
17898 S: Maintained
17899 W: http://sourceforge.net/projects/tlan/
17900 F: Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17901 F: drivers/net/ethernet/ti/tlan.*
17902
17903 TM6000 VIDEO4LINUX DRIVER
17904 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17905 L: linux-media@vger.kernel.org
17906 S: Odd fixes
17907 W: https://linuxtv.org
17908 T: git git://linuxtv.org/media_tree.git
17909 F: Documentation/admin-guide/media/tm6000*
17910 F: drivers/media/usb/tm6000/
17911
17912 TMIO/SDHI MMC DRIVER
17913 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
17914 L: linux-mmc@vger.kernel.org
17915 S: Supported
17916 F: drivers/mmc/host/renesas_sdhi*
17917 F: drivers/mmc/host/tmio_mmc*
17918 F: include/linux/mfd/tmio.h
17919
17920 TMP401 HARDWARE MONITOR DRIVER
17921 M: Guenter Roeck <linux@roeck-us.net>
17922 L: linux-hwmon@vger.kernel.org
17923 S: Maintained
17924 F: Documentation/hwmon/tmp401.rst
17925 F: drivers/hwmon/tmp401.c
17926
17927 TMP513 HARDWARE MONITOR DRIVER
17928 M: Eric Tremblay <etremblay@distech-controls.com>
17929 L: linux-hwmon@vger.kernel.org
17930 S: Maintained
17931 F: Documentation/hwmon/tmp513.rst
17932 F: drivers/hwmon/tmp513.c
17933
17934 TMPFS (SHMEM FILESYSTEM)
17935 M: Hugh Dickins <hughd@google.com>
17936 L: linux-mm@kvack.org
17937 S: Maintained
17938 F: include/linux/shmem_fs.h
17939 F: mm/shmem.c
17940
17941 TOMOYO SECURITY MODULE
17942 M: Kentaro Takeda <takedakn@nttdata.co.jp>
17943 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17944 L: tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17945 L: tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17946 L: tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17947 L: tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17948 S: Maintained
17949 W: https://tomoyo.osdn.jp/
17950 F: security/tomoyo/
17951
17952 TOPSTAR LAPTOP EXTRAS DRIVER
17953 M: Herton Ronaldo Krzesinski <herton@canonical.com>
17954 L: platform-driver-x86@vger.kernel.org
17955 S: Maintained
17956 F: drivers/platform/x86/topstar-laptop.c
17957
17958 TORTURE-TEST MODULES
17959 M: Davidlohr Bueso <dave@stgolabs.net>
17960 M: "Paul E. McKenney" <paulmck@kernel.org>
17961 M: Josh Triplett <josh@joshtriplett.org>
17962 L: linux-kernel@vger.kernel.org
17963 S: Supported
17964 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17965 F: Documentation/RCU/torture.rst
17966 F: kernel/locking/locktorture.c
17967 F: kernel/rcu/rcuscale.c
17968 F: kernel/rcu/rcutorture.c
17969 F: kernel/rcu/refscale.c
17970 F: kernel/torture.c
17971
17972 TOSHIBA ACPI EXTRAS DRIVER
17973 M: Azael Avalos <coproscefalo@gmail.com>
17974 L: platform-driver-x86@vger.kernel.org
17975 S: Maintained
17976 F: drivers/platform/x86/toshiba_acpi.c
17977
17978 TOSHIBA BLUETOOTH DRIVER
17979 M: Azael Avalos <coproscefalo@gmail.com>
17980 L: platform-driver-x86@vger.kernel.org
17981 S: Maintained
17982 F: drivers/platform/x86/toshiba_bluetooth.c
17983
17984 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17985 M: Azael Avalos <coproscefalo@gmail.com>
17986 L: platform-driver-x86@vger.kernel.org
17987 S: Maintained
17988 F: drivers/platform/x86/toshiba_haps.c
17989
17990 TOSHIBA SMM DRIVER
17991 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
17992 S: Maintained
17993 W: http://www.buzzard.org.uk/toshiba/
17994 F: drivers/char/toshiba.c
17995 F: include/linux/toshiba.h
17996 F: include/uapi/linux/toshiba.h
17997
17998 TOSHIBA TC358743 DRIVER
17999 M: Mats Randgaard <matrandg@cisco.com>
18000 L: linux-media@vger.kernel.org
18001 S: Maintained
18002 F: drivers/media/i2c/tc358743*
18003 F: include/media/i2c/tc358743.h
18004
18005 TOSHIBA WMI HOTKEYS DRIVER
18006 M: Azael Avalos <coproscefalo@gmail.com>
18007 L: platform-driver-x86@vger.kernel.org
18008 S: Maintained
18009 F: drivers/platform/x86/toshiba-wmi.c
18010
18011 TPM DEVICE DRIVER
18012 M: Peter Huewe <peterhuewe@gmx.de>
18013 M: Jarkko Sakkinen <jarkko@kernel.org>
18014 R: Jason Gunthorpe <jgg@ziepe.ca>
18015 L: linux-integrity@vger.kernel.org
18016 S: Maintained
18017 W: https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18018 Q: https://patchwork.kernel.org/project/linux-integrity/list/
18019 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18020 F: drivers/char/tpm/
18021
18022 TRACING
18023 M: Steven Rostedt <rostedt@goodmis.org>
18024 M: Ingo Molnar <mingo@redhat.com>
18025 S: Maintained
18026 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18027 F: Documentation/trace/ftrace.rst
18028 F: arch/*/*/*/ftrace.h
18029 F: arch/*/kernel/ftrace.c
18030 F: fs/tracefs/
18031 F: include/*/ftrace.h
18032 F: include/linux/trace*.h
18033 F: include/trace/
18034 F: kernel/trace/
18035 F: tools/testing/selftests/ftrace/
18036
18037 TRACING MMIO ACCESSES (MMIOTRACE)
18038 M: Steven Rostedt <rostedt@goodmis.org>
18039 M: Ingo Molnar <mingo@kernel.org>
18040 R: Karol Herbst <karolherbst@gmail.com>
18041 R: Pekka Paalanen <ppaalanen@gmail.com>
18042 L: linux-kernel@vger.kernel.org
18043 L: nouveau@lists.freedesktop.org
18044 S: Maintained
18045 F: arch/x86/mm/kmmio.c
18046 F: arch/x86/mm/mmio-mod.c
18047 F: arch/x86/mm/testmmiotrace.c
18048 F: include/linux/mmiotrace.h
18049 F: kernel/trace/trace_mmiotrace.c
18050
18051 TRIVIAL PATCHES
18052 M: Jiri Kosina <trivial@kernel.org>
18053 S: Maintained
18054 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18055 K: ^Subject:.*(?i)trivial
18056
18057 TTY LAYER
18058 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18059 M: Jiri Slaby <jirislaby@kernel.org>
18060 S: Supported
18061 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18062 F: Documentation/driver-api/serial/
18063 F: drivers/tty/
18064 F: drivers/tty/serial/serial_core.c
18065 F: include/linux/serial.h
18066 F: include/linux/serial_core.h
18067 F: include/linux/tty.h
18068 F: include/uapi/linux/serial.h
18069 F: include/uapi/linux/serial_core.h
18070 F: include/uapi/linux/tty.h
18071
18072 TUA9001 MEDIA DRIVER
18073 M: Antti Palosaari <crope@iki.fi>
18074 L: linux-media@vger.kernel.org
18075 S: Maintained
18076 W: https://linuxtv.org
18077 W: http://palosaari.fi/linux/
18078 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18079 T: git git://linuxtv.org/anttip/media_tree.git
18080 F: drivers/media/tuners/tua9001*
18081
18082 TULIP NETWORK DRIVERS
18083 L: netdev@vger.kernel.org
18084 L: linux-parisc@vger.kernel.org
18085 S: Orphan
18086 F: drivers/net/ethernet/dec/tulip/
18087
18088 TUN/TAP driver
18089 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
18090 S: Maintained
18091 W: http://vtun.sourceforge.net/tun
18092 F: Documentation/networking/tuntap.rst
18093 F: arch/um/os-Linux/drivers/
18094
18095 TURBOCHANNEL SUBSYSTEM
18096 M: "Maciej W. Rozycki" <macro@linux-mips.org>
18097 M: Ralf Baechle <ralf@linux-mips.org>
18098 L: linux-mips@vger.kernel.org
18099 S: Maintained
18100 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
18101 F: drivers/tc/
18102 F: include/linux/tc.h
18103
18104 TURBOSTAT UTILITY
18105 M: "Len Brown" <lenb@kernel.org>
18106 L: linux-pm@vger.kernel.org
18107 S: Supported
18108 Q: https://patchwork.kernel.org/project/linux-pm/list/
18109 B: https://bugzilla.kernel.org
18110 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18111 F: tools/power/x86/turbostat/
18112
18113 TW5864 VIDEO4LINUX DRIVER
18114 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18115 M: Anton Sviridenko <anton@corp.bluecherry.net>
18116 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18117 M: Andrey Utkin <andrey_utkin@fastmail.com>
18118 L: linux-media@vger.kernel.org
18119 S: Supported
18120 F: drivers/media/pci/tw5864/
18121
18122 TW68 VIDEO4LINUX DRIVER
18123 M: Hans Verkuil <hverkuil@xs4all.nl>
18124 L: linux-media@vger.kernel.org
18125 S: Odd Fixes
18126 W: https://linuxtv.org
18127 T: git git://linuxtv.org/media_tree.git
18128 F: drivers/media/pci/tw68/
18129
18130 TW686X VIDEO4LINUX DRIVER
18131 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18132 L: linux-media@vger.kernel.org
18133 S: Maintained
18134 W: http://linuxtv.org
18135 T: git git://linuxtv.org/media_tree.git
18136 F: drivers/media/pci/tw686x/
18137
18138 UACCE ACCELERATOR FRAMEWORK
18139 M: Zhangfei Gao <zhangfei.gao@linaro.org>
18140 M: Zhou Wang <wangzhou1@hisilicon.com>
18141 L: linux-accelerators@lists.ozlabs.org
18142 L: linux-kernel@vger.kernel.org
18143 S: Maintained
18144 F: Documentation/ABI/testing/sysfs-driver-uacce
18145 F: Documentation/misc-devices/uacce.rst
18146 F: drivers/misc/uacce/
18147 F: include/linux/uacce.h
18148 F: include/uapi/misc/uacce/
18149
18150 UBI FILE SYSTEM (UBIFS)
18151 M: Richard Weinberger <richard@nod.at>
18152 L: linux-mtd@lists.infradead.org
18153 S: Supported
18154 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
18155 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18156 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18157 F: Documentation/filesystems/ubifs-authentication.rst
18158 F: Documentation/filesystems/ubifs.rst
18159 F: fs/ubifs/
18160
18161 UCLINUX (M68KNOMMU AND COLDFIRE)
18162 M: Greg Ungerer <gerg@linux-m68k.org>
18163 L: linux-m68k@lists.linux-m68k.org
18164 L: uclinux-dev@uclinux.org (subscribers-only)
18165 S: Maintained
18166 W: http://www.linux-m68k.org/
18167 W: http://www.uclinux.org/
18168 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18169 F: arch/m68k/*/*_no.*
18170 F: arch/m68k/68*/
18171 F: arch/m68k/coldfire/
18172 F: arch/m68k/include/asm/*_no.*
18173
18174 UDF FILESYSTEM
18175 M: Jan Kara <jack@suse.com>
18176 S: Maintained
18177 F: Documentation/filesystems/udf.rst
18178 F: fs/udf/
18179
18180 UDRAW TABLET
18181 M: Bastien Nocera <hadess@hadess.net>
18182 L: linux-input@vger.kernel.org
18183 S: Maintained
18184 F: drivers/hid/hid-udraw-ps3.c
18185
18186 UFS FILESYSTEM
18187 M: Evgeniy Dushistov <dushistov@mail.ru>
18188 S: Maintained
18189 F: Documentation/admin-guide/ufs.rst
18190 F: fs/ufs/
18191
18192 UHID USERSPACE HID IO DRIVER
18193 M: David Rheinsberg <david.rheinsberg@gmail.com>
18194 L: linux-input@vger.kernel.org
18195 S: Maintained
18196 F: drivers/hid/uhid.c
18197 F: include/uapi/linux/uhid.h
18198
18199 ULPI BUS
18200 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
18201 L: linux-usb@vger.kernel.org
18202 S: Maintained
18203 F: drivers/usb/common/ulpi.c
18204 F: include/linux/ulpi/
18205
18206 UNICODE SUBSYSTEM
18207 M: Gabriel Krisman Bertazi <krisman@collabora.com>
18208 L: linux-fsdevel@vger.kernel.org
18209 S: Supported
18210 F: fs/unicode/
18211
18212 UNIFDEF
18213 M: Tony Finch <dot@dotat.at>
18214 S: Maintained
18215 W: http://dotat.at/prog/unifdef
18216 F: scripts/unifdef.c
18217
18218 UNIFORM CDROM DRIVER
18219 M: Jens Axboe <axboe@kernel.dk>
18220 S: Maintained
18221 W: http://www.kernel.dk
18222 F: Documentation/cdrom/
18223 F: drivers/cdrom/cdrom.c
18224 F: include/linux/cdrom.h
18225 F: include/uapi/linux/cdrom.h
18226
18227 UNISYS S-PAR DRIVERS
18228 M: David Kershner <david.kershner@unisys.com>
18229 L: sparmaintainer@unisys.com (Unisys internal)
18230 S: Supported
18231 F: drivers/staging/unisys/
18232 F: drivers/visorbus/
18233 F: include/linux/visorbus.h
18234
18235 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18236 R: Alim Akhtar <alim.akhtar@samsung.com>
18237 R: Avri Altman <avri.altman@wdc.com>
18238 L: linux-scsi@vger.kernel.org
18239 S: Supported
18240 F: Documentation/scsi/ufs.rst
18241 F: drivers/scsi/ufs/
18242
18243 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18244 M: Pedro Sousa <pedrom.sousa@synopsys.com>
18245 L: linux-scsi@vger.kernel.org
18246 S: Supported
18247 F: drivers/scsi/ufs/*dwc*
18248
18249 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18250 M: Stanley Chu <stanley.chu@mediatek.com>
18251 L: linux-scsi@vger.kernel.org
18252 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18253 S: Maintained
18254 F: drivers/scsi/ufs/ufs-mediatek*
18255
18256 UNSORTED BLOCK IMAGES (UBI)
18257 M: Richard Weinberger <richard@nod.at>
18258 L: linux-mtd@lists.infradead.org
18259 S: Supported
18260 W: http://www.linux-mtd.infradead.org/
18261 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18262 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18263 F: drivers/mtd/ubi/
18264 F: include/linux/mtd/ubi.h
18265 F: include/uapi/mtd/ubi-user.h
18266
18267 USB "USBNET" DRIVER FRAMEWORK
18268 M: Oliver Neukum <oneukum@suse.com>
18269 L: netdev@vger.kernel.org
18270 S: Maintained
18271 W: http://www.linux-usb.org/usbnet
18272 F: drivers/net/usb/usbnet.c
18273 F: include/linux/usb/usbnet.h
18274
18275 USB ACM DRIVER
18276 M: Oliver Neukum <oneukum@suse.com>
18277 L: linux-usb@vger.kernel.org
18278 S: Maintained
18279 F: Documentation/usb/acm.rst
18280 F: drivers/usb/class/cdc-acm.*
18281
18282 USB APPLE MFI FASTCHARGE DRIVER
18283 M: Bastien Nocera <hadess@hadess.net>
18284 L: linux-usb@vger.kernel.org
18285 S: Maintained
18286 F: drivers/usb/misc/apple-mfi-fastcharge.c
18287
18288 USB AR5523 WIRELESS DRIVER
18289 M: Pontus Fuchs <pontus.fuchs@gmail.com>
18290 L: linux-wireless@vger.kernel.org
18291 S: Maintained
18292 F: drivers/net/wireless/ath/ar5523/
18293
18294 USB ATTACHED SCSI
18295 M: Oliver Neukum <oneukum@suse.com>
18296 L: linux-usb@vger.kernel.org
18297 L: linux-scsi@vger.kernel.org
18298 S: Maintained
18299 F: drivers/usb/storage/uas.c
18300
18301 USB CDC ETHERNET DRIVER
18302 M: Oliver Neukum <oliver@neukum.org>
18303 L: linux-usb@vger.kernel.org
18304 S: Maintained
18305 F: drivers/net/usb/cdc_*.c
18306 F: include/uapi/linux/usb/cdc.h
18307
18308 USB CHAOSKEY DRIVER
18309 M: Keith Packard <keithp@keithp.com>
18310 L: linux-usb@vger.kernel.org
18311 S: Maintained
18312 F: drivers/usb/misc/chaoskey.c
18313
18314 USB CYPRESS C67X00 DRIVER
18315 M: Peter Korsgaard <jacmet@sunsite.dk>
18316 L: linux-usb@vger.kernel.org
18317 S: Maintained
18318 F: drivers/usb/c67x00/
18319
18320 USB DAVICOM DM9601 DRIVER
18321 M: Peter Korsgaard <jacmet@sunsite.dk>
18322 L: netdev@vger.kernel.org
18323 S: Maintained
18324 W: http://www.linux-usb.org/usbnet
18325 F: drivers/net/usb/dm9601.c
18326
18327 USB EHCI DRIVER
18328 M: Alan Stern <stern@rowland.harvard.edu>
18329 L: linux-usb@vger.kernel.org
18330 S: Maintained
18331 F: Documentation/usb/ehci.rst
18332 F: drivers/usb/host/ehci*
18333
18334 USB GADGET/PERIPHERAL SUBSYSTEM
18335 M: Felipe Balbi <balbi@kernel.org>
18336 L: linux-usb@vger.kernel.org
18337 S: Maintained
18338 W: http://www.linux-usb.org/gadget
18339 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18340 F: drivers/usb/gadget/
18341 F: include/linux/usb/gadget*
18342
18343 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18344 M: Jiri Kosina <jikos@kernel.org>
18345 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
18346 L: linux-usb@vger.kernel.org
18347 S: Maintained
18348 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18349 F: Documentation/hid/hiddev.rst
18350 F: drivers/hid/usbhid/
18351
18352 USB INTEL XHCI ROLE MUX DRIVER
18353 M: Hans de Goede <hdegoede@redhat.com>
18354 L: linux-usb@vger.kernel.org
18355 S: Maintained
18356 F: drivers/usb/roles/intel-xhci-usb-role-switch.c
18357
18358 USB IP DRIVER FOR HISILICON KIRIN
18359 M: Yu Chen <chenyu56@huawei.com>
18360 M: Binghui Wang <wangbinghui@hisilicon.com>
18361 L: linux-usb@vger.kernel.org
18362 S: Maintained
18363 F: Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18364 F: drivers/phy/hisilicon/phy-hi3660-usb3.c
18365
18366 USB ISP116X DRIVER
18367 M: Olav Kongas <ok@artecdesign.ee>
18368 L: linux-usb@vger.kernel.org
18369 S: Maintained
18370 F: drivers/usb/host/isp116x*
18371 F: include/linux/usb/isp116x.h
18372
18373 USB LAN78XX ETHERNET DRIVER
18374 M: Woojung Huh <woojung.huh@microchip.com>
18375 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18376 L: netdev@vger.kernel.org
18377 S: Maintained
18378 F: Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18379 F: drivers/net/usb/lan78xx.*
18380 F: include/dt-bindings/net/microchip-lan78xx.h
18381
18382 USB MASS STORAGE DRIVER
18383 M: Alan Stern <stern@rowland.harvard.edu>
18384 L: linux-usb@vger.kernel.org
18385 L: usb-storage@lists.one-eyed-alien.net
18386 S: Maintained
18387 F: drivers/usb/storage/
18388
18389 USB MIDI DRIVER
18390 M: Clemens Ladisch <clemens@ladisch.de>
18391 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18392 S: Maintained
18393 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18394 F: sound/usb/midi.*
18395
18396 USB NETWORKING DRIVERS
18397 L: linux-usb@vger.kernel.org
18398 S: Odd Fixes
18399 F: drivers/net/usb/
18400
18401 USB OHCI DRIVER
18402 M: Alan Stern <stern@rowland.harvard.edu>
18403 L: linux-usb@vger.kernel.org
18404 S: Maintained
18405 F: Documentation/usb/ohci.rst
18406 F: drivers/usb/host/ohci*
18407
18408 USB OTG FSM (Finite State Machine)
18409 M: Peter Chen <Peter.Chen@nxp.com>
18410 L: linux-usb@vger.kernel.org
18411 S: Maintained
18412 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18413 F: drivers/usb/common/usb-otg-fsm.c
18414
18415 USB OVER IP DRIVER
18416 M: Valentina Manea <valentina.manea.m@gmail.com>
18417 M: Shuah Khan <shuah@kernel.org>
18418 M: Shuah Khan <skhan@linuxfoundation.org>
18419 L: linux-usb@vger.kernel.org
18420 S: Maintained
18421 F: Documentation/usb/usbip_protocol.rst
18422 F: drivers/usb/usbip/
18423 F: tools/testing/selftests/drivers/usb/usbip/
18424 F: tools/usb/usbip/
18425
18426 USB PEGASUS DRIVER
18427 M: Petko Manolov <petkan@nucleusys.com>
18428 L: linux-usb@vger.kernel.org
18429 L: netdev@vger.kernel.org
18430 S: Maintained
18431 W: https://github.com/petkan/pegasus
18432 T: git git://github.com/petkan/pegasus.git
18433 F: drivers/net/usb/pegasus.*
18434
18435 USB PHY LAYER
18436 M: Felipe Balbi <balbi@kernel.org>
18437 L: linux-usb@vger.kernel.org
18438 S: Maintained
18439 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18440 F: drivers/usb/phy/
18441
18442 USB PRINTER DRIVER (usblp)
18443 M: Pete Zaitcev <zaitcev@redhat.com>
18444 L: linux-usb@vger.kernel.org
18445 S: Supported
18446 F: drivers/usb/class/usblp.c
18447
18448 USB RAW GADGET DRIVER
18449 R: Andrey Konovalov <andreyknvl@gmail.com>
18450 L: linux-usb@vger.kernel.org
18451 S: Maintained
18452 F: Documentation/usb/raw-gadget.rst
18453 F: drivers/usb/gadget/legacy/raw_gadget.c
18454 F: include/uapi/linux/usb/raw_gadget.h
18455
18456 USB QMI WWAN NETWORK DRIVER
18457 M: Bjørn Mork <bjorn@mork.no>
18458 L: netdev@vger.kernel.org
18459 S: Maintained
18460 F: Documentation/ABI/testing/sysfs-class-net-qmi
18461 F: drivers/net/usb/qmi_wwan.c
18462
18463 USB RTL8150 DRIVER
18464 M: Petko Manolov <petkan@nucleusys.com>
18465 L: linux-usb@vger.kernel.org
18466 L: netdev@vger.kernel.org
18467 S: Maintained
18468 W: https://github.com/petkan/rtl8150
18469 T: git git://github.com/petkan/rtl8150.git
18470 F: drivers/net/usb/rtl8150.c
18471
18472 USB SERIAL SUBSYSTEM
18473 M: Johan Hovold <johan@kernel.org>
18474 L: linux-usb@vger.kernel.org
18475 S: Maintained
18476 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18477 F: Documentation/usb/usb-serial.rst
18478 F: drivers/usb/serial/
18479 F: include/linux/usb/serial.h
18480
18481 USB SMSC75XX ETHERNET DRIVER
18482 M: Steve Glendinning <steve.glendinning@shawell.net>
18483 L: netdev@vger.kernel.org
18484 S: Maintained
18485 F: drivers/net/usb/smsc75xx.*
18486
18487 USB SMSC95XX ETHERNET DRIVER
18488 M: Steve Glendinning <steve.glendinning@shawell.net>
18489 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
18490 L: netdev@vger.kernel.org
18491 S: Maintained
18492 F: drivers/net/usb/smsc95xx.*
18493
18494 USB SUBSYSTEM
18495 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18496 L: linux-usb@vger.kernel.org
18497 S: Supported
18498 W: http://www.linux-usb.org
18499 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18500 F: Documentation/devicetree/bindings/usb/
18501 F: Documentation/usb/
18502 F: drivers/usb/
18503 F: include/linux/usb.h
18504 F: include/linux/usb/
18505
18506 USB TYPEC BUS FOR ALTERNATE MODES
18507 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
18508 L: linux-usb@vger.kernel.org
18509 S: Maintained
18510 F: Documentation/ABI/testing/sysfs-bus-typec
18511 F: Documentation/driver-api/usb/typec_bus.rst
18512 F: drivers/usb/typec/altmodes/
18513 F: include/linux/usb/typec_altmode.h
18514
18515 USB TYPEC CLASS
18516 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
18517 L: linux-usb@vger.kernel.org
18518 S: Maintained
18519 F: Documentation/ABI/testing/sysfs-class-typec
18520 F: Documentation/driver-api/usb/typec.rst
18521 F: drivers/usb/typec/
18522 F: include/linux/usb/typec.h
18523
18524 USB TYPEC INTEL PMC MUX DRIVER
18525 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
18526 L: linux-usb@vger.kernel.org
18527 S: Maintained
18528 F: Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18529 F: drivers/usb/typec/mux/intel_pmc_mux.c
18530
18531 USB TYPEC PI3USB30532 MUX DRIVER
18532 M: Hans de Goede <hdegoede@redhat.com>
18533 L: linux-usb@vger.kernel.org
18534 S: Maintained
18535 F: drivers/usb/typec/mux/pi3usb30532.c
18536
18537 USB TYPEC PORT CONTROLLER DRIVERS
18538 M: Guenter Roeck <linux@roeck-us.net>
18539 L: linux-usb@vger.kernel.org
18540 S: Maintained
18541 F: drivers/usb/typec/tcpm/
18542
18543 USB UHCI DRIVER
18544 M: Alan Stern <stern@rowland.harvard.edu>
18545 L: linux-usb@vger.kernel.org
18546 S: Maintained
18547 F: drivers/usb/host/uhci*
18548
18549 USB VIDEO CLASS
18550 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18551 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18552 L: linux-media@vger.kernel.org
18553 S: Maintained
18554 W: http://www.ideasonboard.org/uvc/
18555 T: git git://linuxtv.org/media_tree.git
18556 F: drivers/media/usb/uvc/
18557 F: include/uapi/linux/uvcvideo.h
18558
18559 USB WEBCAM GADGET
18560 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18561 L: linux-usb@vger.kernel.org
18562 S: Maintained
18563 F: drivers/usb/gadget/function/*uvc*
18564 F: drivers/usb/gadget/legacy/webcam.c
18565 F: include/uapi/linux/usb/g_uvc.h
18566
18567 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18568 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
18569 L: linux-wireless@vger.kernel.org
18570 S: Maintained
18571 F: drivers/net/wireless/rndis_wlan.c
18572
18573 USB XHCI DRIVER
18574 M: Mathias Nyman <mathias.nyman@intel.com>
18575 L: linux-usb@vger.kernel.org
18576 S: Supported
18577 F: drivers/usb/host/pci-quirks*
18578 F: drivers/usb/host/xhci*
18579
18580 USB ZD1201 DRIVER
18581 L: linux-wireless@vger.kernel.org
18582 S: Orphan
18583 W: http://linux-lc100020.sourceforge.net
18584 F: drivers/net/wireless/zydas/zd1201.*
18585
18586 USB ZR364XX DRIVER
18587 M: Antoine Jacquet <royale@zerezo.com>
18588 L: linux-usb@vger.kernel.org
18589 L: linux-media@vger.kernel.org
18590 S: Maintained
18591 W: http://royale.zerezo.com/zr364xx/
18592 T: git git://linuxtv.org/media_tree.git
18593 F: Documentation/admin-guide/media/zr364xx*
18594 F: drivers/media/usb/zr364xx/
18595
18596 USER-MODE LINUX (UML)
18597 M: Jeff Dike <jdike@addtoit.com>
18598 M: Richard Weinberger <richard@nod.at>
18599 M: Anton Ivanov <anton.ivanov@cambridgegreys.com>
18600 L: linux-um@lists.infradead.org
18601 S: Maintained
18602 W: http://user-mode-linux.sourceforge.net
18603 Q: https://patchwork.ozlabs.org/project/linux-um/list/
18604 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18605 F: Documentation/virt/uml/
18606 F: arch/um/
18607 F: arch/x86/um/
18608 F: fs/hostfs/
18609
18610 USERSPACE COPYIN/COPYOUT (UIOVEC)
18611 M: Alexander Viro <viro@zeniv.linux.org.uk>
18612 S: Maintained
18613 F: include/linux/uio.h
18614 F: lib/iov_iter.c
18615
18616 USERSPACE DMA BUFFER DRIVER
18617 M: Gerd Hoffmann <kraxel@redhat.com>
18618 L: dri-devel@lists.freedesktop.org
18619 S: Maintained
18620 T: git git://anongit.freedesktop.org/drm/drm-misc
18621 F: drivers/dma-buf/udmabuf.c
18622 F: include/uapi/linux/udmabuf.h
18623
18624 USERSPACE I/O (UIO)
18625 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18626 S: Maintained
18627 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18628 F: Documentation/driver-api/uio-howto.rst
18629 F: drivers/uio/
18630 F: include/linux/uio_driver.h
18631
18632 UTIL-LINUX PACKAGE
18633 M: Karel Zak <kzak@redhat.com>
18634 L: util-linux@vger.kernel.org
18635 S: Maintained
18636 W: http://en.wikipedia.org/wiki/Util-linux
18637 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18638
18639 UUID HELPERS
18640 M: Christoph Hellwig <hch@lst.de>
18641 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18642 L: linux-kernel@vger.kernel.org
18643 S: Maintained
18644 T: git git://git.infradead.org/users/hch/uuid.git
18645 F: include/linux/uuid.h
18646 F: include/uapi/linux/uuid.h
18647 F: lib/test_uuid.c
18648 F: lib/uuid.c
18649
18650 UV SYSFS DRIVER
18651 M: Justin Ernst <justin.ernst@hpe.com>
18652 L: platform-driver-x86@vger.kernel.org
18653 S: Maintained
18654 F: drivers/platform/x86/uv_sysfs.c
18655
18656 UVESAFB DRIVER
18657 M: Michal Januszewski <spock@gentoo.org>
18658 L: linux-fbdev@vger.kernel.org
18659 S: Maintained
18660 W: https://github.com/mjanusz/v86d
18661 F: Documentation/fb/uvesafb.rst
18662 F: drivers/video/fbdev/uvesafb.*
18663
18664 Ux500 CLOCK DRIVERS
18665 M: Ulf Hansson <ulf.hansson@linaro.org>
18666 L: linux-clk@vger.kernel.org
18667 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18668 S: Maintained
18669 F: drivers/clk/ux500/
18670
18671 VF610 NAND DRIVER
18672 M: Stefan Agner <stefan@agner.ch>
18673 L: linux-mtd@lists.infradead.org
18674 S: Supported
18675 F: drivers/mtd/nand/raw/vf610_nfc.c
18676
18677 VFAT/FAT/MSDOS FILESYSTEM
18678 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18679 S: Maintained
18680 F: Documentation/filesystems/vfat.rst
18681 F: fs/fat/
18682
18683 VFIO DRIVER
18684 M: Alex Williamson <alex.williamson@redhat.com>
18685 R: Cornelia Huck <cohuck@redhat.com>
18686 L: kvm@vger.kernel.org
18687 S: Maintained
18688 T: git git://github.com/awilliam/linux-vfio.git
18689 F: Documentation/driver-api/vfio.rst
18690 F: drivers/vfio/
18691 F: include/linux/vfio.h
18692 F: include/uapi/linux/vfio.h
18693
18694 VFIO FSL-MC DRIVER
18695 M: Diana Craciun <diana.craciun@oss.nxp.com>
18696 L: kvm@vger.kernel.org
18697 S: Maintained
18698 F: drivers/vfio/fsl-mc/
18699
18700 VFIO MEDIATED DEVICE DRIVERS
18701 M: Kirti Wankhede <kwankhede@nvidia.com>
18702 L: kvm@vger.kernel.org
18703 S: Maintained
18704 F: Documentation/driver-api/vfio-mediated-device.rst
18705 F: drivers/vfio/mdev/
18706 F: include/linux/mdev.h
18707 F: samples/vfio-mdev/
18708
18709 VFIO PLATFORM DRIVER
18710 M: Eric Auger <eric.auger@redhat.com>
18711 L: kvm@vger.kernel.org
18712 S: Maintained
18713 F: drivers/vfio/platform/
18714
18715 VGA_SWITCHEROO
18716 R: Lukas Wunner <lukas@wunner.de>
18717 S: Maintained
18718 T: git git://anongit.freedesktop.org/drm/drm-misc
18719 F: Documentation/gpu/vga-switcheroo.rst
18720 F: drivers/gpu/vga/vga_switcheroo.c
18721 F: include/linux/vga_switcheroo.h
18722
18723 VIA RHINE NETWORK DRIVER
18724 S: Maintained
18725 M: Kevin Brace <kevinbrace@bracecomputerlab.com>
18726 F: drivers/net/ethernet/via/via-rhine.c
18727
18728 VIA SD/MMC CARD CONTROLLER DRIVER
18729 M: Bruce Chang <brucechang@via.com.tw>
18730 M: Harald Welte <HaraldWelte@viatech.com>
18731 S: Maintained
18732 F: drivers/mmc/host/via-sdmmc.c
18733
18734 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18735 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18736 L: linux-fbdev@vger.kernel.org
18737 S: Maintained
18738 F: drivers/video/fbdev/via/
18739 F: include/linux/via-core.h
18740 F: include/linux/via-gpio.h
18741 F: include/linux/via_i2c.h
18742
18743 VIA VELOCITY NETWORK DRIVER
18744 M: Francois Romieu <romieu@fr.zoreil.com>
18745 L: netdev@vger.kernel.org
18746 S: Maintained
18747 F: drivers/net/ethernet/via/via-velocity.*
18748
18749 VICODEC VIRTUAL CODEC DRIVER
18750 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
18751 L: linux-media@vger.kernel.org
18752 S: Maintained
18753 W: https://linuxtv.org
18754 T: git git://linuxtv.org/media_tree.git
18755 F: drivers/media/test-drivers/vicodec/*
18756
18757 VIDEO I2C POLLING DRIVER
18758 M: Matt Ranostay <matt.ranostay@konsulko.com>
18759 L: linux-media@vger.kernel.org
18760 S: Maintained
18761 F: drivers/media/i2c/video-i2c.c
18762
18763 VIDEO MULTIPLEXER DRIVER
18764 M: Philipp Zabel <p.zabel@pengutronix.de>
18765 L: linux-media@vger.kernel.org
18766 S: Maintained
18767 F: drivers/media/platform/video-mux.c
18768
18769 VIDEOBUF2 FRAMEWORK
18770 M: Tomasz Figa <tfiga@chromium.org>
18771 M: Marek Szyprowski <m.szyprowski@samsung.com>
18772 L: linux-media@vger.kernel.org
18773 S: Maintained
18774 F: drivers/media/common/videobuf2/*
18775 F: include/media/videobuf2-*
18776
18777 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18778 M: Helen Koike <helen.koike@collabora.com>
18779 R: Shuah Khan <skhan@linuxfoundation.org>
18780 L: linux-media@vger.kernel.org
18781 S: Maintained
18782 W: https://linuxtv.org
18783 T: git git://linuxtv.org/media_tree.git
18784 F: drivers/media/test-drivers/vimc/*
18785
18786 VIRT LIB
18787 M: Alex Williamson <alex.williamson@redhat.com>
18788 M: Paolo Bonzini <pbonzini@redhat.com>
18789 L: kvm@vger.kernel.org
18790 S: Supported
18791 F: virt/lib/
18792
18793 VIRTIO AND VHOST VSOCK DRIVER
18794 M: Stefan Hajnoczi <stefanha@redhat.com>
18795 M: Stefano Garzarella <sgarzare@redhat.com>
18796 L: kvm@vger.kernel.org
18797 L: virtualization@lists.linux-foundation.org
18798 L: netdev@vger.kernel.org
18799 S: Maintained
18800 F: drivers/net/vsockmon.c
18801 F: drivers/vhost/vsock.c
18802 F: include/linux/virtio_vsock.h
18803 F: include/uapi/linux/virtio_vsock.h
18804 F: include/uapi/linux/vm_sockets_diag.h
18805 F: include/uapi/linux/vsockmon.h
18806 F: net/vmw_vsock/af_vsock_tap.c
18807 F: net/vmw_vsock/diag.c
18808 F: net/vmw_vsock/virtio_transport.c
18809 F: net/vmw_vsock/virtio_transport_common.c
18810 F: net/vmw_vsock/vsock_loopback.c
18811 F: tools/testing/vsock/
18812
18813 VIRTIO BLOCK AND SCSI DRIVERS
18814 M: "Michael S. Tsirkin" <mst@redhat.com>
18815 M: Jason Wang <jasowang@redhat.com>
18816 R: Paolo Bonzini <pbonzini@redhat.com>
18817 R: Stefan Hajnoczi <stefanha@redhat.com>
18818 L: virtualization@lists.linux-foundation.org
18819 S: Maintained
18820 F: drivers/block/virtio_blk.c
18821 F: drivers/scsi/virtio_scsi.c
18822 F: drivers/vhost/scsi.c
18823 F: include/uapi/linux/virtio_blk.h
18824 F: include/uapi/linux/virtio_scsi.h
18825
18826 VIRTIO CONSOLE DRIVER
18827 M: Amit Shah <amit@kernel.org>
18828 L: virtualization@lists.linux-foundation.org
18829 S: Maintained
18830 F: drivers/char/virtio_console.c
18831 F: include/linux/virtio_console.h
18832 F: include/uapi/linux/virtio_console.h
18833
18834 VIRTIO CORE AND NET DRIVERS
18835 M: "Michael S. Tsirkin" <mst@redhat.com>
18836 M: Jason Wang <jasowang@redhat.com>
18837 L: virtualization@lists.linux-foundation.org
18838 S: Maintained
18839 F: Documentation/devicetree/bindings/virtio/
18840 F: drivers/block/virtio_blk.c
18841 F: drivers/crypto/virtio/
18842 F: drivers/net/virtio_net.c
18843 F: drivers/vdpa/
18844 F: drivers/virtio/
18845 F: include/linux/vdpa.h
18846 F: include/linux/virtio*.h
18847 F: include/uapi/linux/virtio_*.h
18848 F: tools/virtio/
18849
18850 VIRTIO BALLOON
18851 M: "Michael S. Tsirkin" <mst@redhat.com>
18852 M: David Hildenbrand <david@redhat.com>
18853 L: virtualization@lists.linux-foundation.org
18854 S: Maintained
18855 F: drivers/virtio/virtio_balloon.c
18856 F: include/uapi/linux/virtio_balloon.h
18857 F: include/linux/balloon_compaction.h
18858 F: mm/balloon_compaction.c
18859
18860 VIRTIO CRYPTO DRIVER
18861 M: Gonglei <arei.gonglei@huawei.com>
18862 L: virtualization@lists.linux-foundation.org
18863 L: linux-crypto@vger.kernel.org
18864 S: Maintained
18865 F: drivers/crypto/virtio/
18866 F: include/uapi/linux/virtio_crypto.h
18867
18868 VIRTIO DRIVERS FOR S390
18869 M: Cornelia Huck <cohuck@redhat.com>
18870 M: Halil Pasic <pasic@linux.ibm.com>
18871 L: linux-s390@vger.kernel.org
18872 L: virtualization@lists.linux-foundation.org
18873 L: kvm@vger.kernel.org
18874 S: Supported
18875 F: arch/s390/include/uapi/asm/virtio-ccw.h
18876 F: drivers/s390/virtio/
18877
18878 VIRTIO FILE SYSTEM
18879 M: Vivek Goyal <vgoyal@redhat.com>
18880 M: Stefan Hajnoczi <stefanha@redhat.com>
18881 M: Miklos Szeredi <miklos@szeredi.hu>
18882 L: virtualization@lists.linux-foundation.org
18883 L: linux-fsdevel@vger.kernel.org
18884 S: Supported
18885 W: https://virtio-fs.gitlab.io/
18886 F: Documentation/filesystems/virtiofs.rst
18887 F: fs/fuse/virtio_fs.c
18888 F: include/uapi/linux/virtio_fs.h
18889
18890 VIRTIO GPU DRIVER
18891 M: David Airlie <airlied@linux.ie>
18892 M: Gerd Hoffmann <kraxel@redhat.com>
18893 L: dri-devel@lists.freedesktop.org
18894 L: virtualization@lists.linux-foundation.org
18895 S: Maintained
18896 T: git git://anongit.freedesktop.org/drm/drm-misc
18897 F: drivers/gpu/drm/virtio/
18898 F: include/uapi/linux/virtio_gpu.h
18899
18900 VIRTIO HOST (VHOST)
18901 M: "Michael S. Tsirkin" <mst@redhat.com>
18902 M: Jason Wang <jasowang@redhat.com>
18903 L: kvm@vger.kernel.org
18904 L: virtualization@lists.linux-foundation.org
18905 L: netdev@vger.kernel.org
18906 S: Maintained
18907 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18908 F: drivers/vhost/
18909 F: include/linux/vhost_iotlb.h
18910 F: include/uapi/linux/vhost.h
18911
18912 VIRTIO INPUT DRIVER
18913 M: Gerd Hoffmann <kraxel@redhat.com>
18914 S: Maintained
18915 F: drivers/virtio/virtio_input.c
18916 F: include/uapi/linux/virtio_input.h
18917
18918 VIRTIO IOMMU DRIVER
18919 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
18920 L: virtualization@lists.linux-foundation.org
18921 S: Maintained
18922 F: drivers/iommu/virtio-iommu.c
18923 F: include/uapi/linux/virtio_iommu.h
18924
18925 VIRTIO MEM DRIVER
18926 M: David Hildenbrand <david@redhat.com>
18927 L: virtualization@lists.linux-foundation.org
18928 S: Maintained
18929 W: https://virtio-mem.gitlab.io/
18930 F: drivers/virtio/virtio_mem.c
18931 F: include/uapi/linux/virtio_mem.h
18932
18933 VIRTUAL BOX GUEST DEVICE DRIVER
18934 M: Hans de Goede <hdegoede@redhat.com>
18935 M: Arnd Bergmann <arnd@arndb.de>
18936 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18937 S: Maintained
18938 F: drivers/virt/vboxguest/
18939 F: include/linux/vbox_utils.h
18940 F: include/uapi/linux/vbox*.h
18941
18942 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18943 M: Hans de Goede <hdegoede@redhat.com>
18944 L: linux-fsdevel@vger.kernel.org
18945 S: Maintained
18946 F: fs/vboxsf/*
18947
18948 VIRTUAL SERIO DEVICE DRIVER
18949 M: Stephen Chandler Paul <thatslyude@gmail.com>
18950 S: Maintained
18951 F: drivers/input/serio/userio.c
18952 F: include/uapi/linux/userio.h
18953
18954 VIVID VIRTUAL VIDEO DRIVER
18955 M: Hans Verkuil <hverkuil@xs4all.nl>
18956 L: linux-media@vger.kernel.org
18957 S: Maintained
18958 W: https://linuxtv.org
18959 T: git git://linuxtv.org/media_tree.git
18960 F: drivers/media/test-drivers/vivid/*
18961
18962 VIDTV VIRTUAL DIGITAL TV DRIVER
18963 M: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
18964 L: linux-media@vger.kernel.org
18965 S: Maintained
18966 W: https://linuxtv.org
18967 T: git git://linuxtv.org/media_tree.git
18968 F: drivers/media/test-drivers/vidtv/*
18969
18970 VLYNQ BUS
18971 M: Florian Fainelli <f.fainelli@gmail.com>
18972 L: openwrt-devel@lists.openwrt.org (subscribers-only)
18973 S: Maintained
18974 F: drivers/vlynq/vlynq.c
18975 F: include/linux/vlynq.h
18976
18977 VME SUBSYSTEM
18978 M: Martyn Welch <martyn@welchs.me.uk>
18979 M: Manohar Vanga <manohar.vanga@gmail.com>
18980 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18981 L: devel@driverdev.osuosl.org
18982 S: Maintained
18983 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18984 F: Documentation/driver-api/vme.rst
18985 F: drivers/staging/vme/
18986 F: drivers/vme/
18987 F: include/linux/vme*
18988
18989 VMWARE BALLOON DRIVER
18990 M: Nadav Amit <namit@vmware.com>
18991 M: "VMware, Inc." <pv-drivers@vmware.com>
18992 L: linux-kernel@vger.kernel.org
18993 S: Maintained
18994 F: drivers/misc/vmw_balloon.c
18995
18996 VMWARE HYPERVISOR INTERFACE
18997 M: Deep Shah <sdeep@vmware.com>
18998 M: "VMware, Inc." <pv-drivers@vmware.com>
18999 L: virtualization@lists.linux-foundation.org
19000 S: Supported
19001 F: arch/x86/include/asm/vmware.h
19002 F: arch/x86/kernel/cpu/vmware.c
19003
19004 VMWARE PVRDMA DRIVER
19005 M: Adit Ranadive <aditr@vmware.com>
19006 M: VMware PV-Drivers <pv-drivers@vmware.com>
19007 L: linux-rdma@vger.kernel.org
19008 S: Maintained
19009 F: drivers/infiniband/hw/vmw_pvrdma/
19010
19011 VMware PVSCSI driver
19012 M: Jim Gill <jgill@vmware.com>
19013 M: VMware PV-Drivers <pv-drivers@vmware.com>
19014 L: linux-scsi@vger.kernel.org
19015 S: Maintained
19016 F: drivers/scsi/vmw_pvscsi.c
19017 F: drivers/scsi/vmw_pvscsi.h
19018
19019 VMWARE VIRTUAL PTP CLOCK DRIVER
19020 M: Vivek Thampi <vithampi@vmware.com>
19021 M: "VMware, Inc." <pv-drivers@vmware.com>
19022 L: netdev@vger.kernel.org
19023 S: Supported
19024 F: drivers/ptp/ptp_vmw.c
19025
19026 VMWARE VMMOUSE SUBDRIVER
19027 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19028 M: "VMware, Inc." <pv-drivers@vmware.com>
19029 L: linux-input@vger.kernel.org
19030 S: Maintained
19031 F: drivers/input/mouse/vmmouse.c
19032 F: drivers/input/mouse/vmmouse.h
19033
19034 VMWARE VMXNET3 ETHERNET DRIVER
19035 M: Ronak Doshi <doshir@vmware.com>
19036 M: "VMware, Inc." <pv-drivers@vmware.com>
19037 L: netdev@vger.kernel.org
19038 S: Maintained
19039 F: drivers/net/vmxnet3/
19040
19041 VOCORE VOCORE2 BOARD
19042 M: Harvey Hunt <harveyhuntnexus@gmail.com>
19043 L: linux-mips@vger.kernel.org
19044 S: Maintained
19045 F: arch/mips/boot/dts/ralink/vocore2.dts
19046
19047 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19048 M: Liam Girdwood <lgirdwood@gmail.com>
19049 M: Mark Brown <broonie@kernel.org>
19050 L: linux-kernel@vger.kernel.org
19051 S: Supported
19052 W: http://www.slimlogic.co.uk/?p=48
19053 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19054 F: Documentation/devicetree/bindings/regulator/
19055 F: Documentation/power/regulator/
19056 F: drivers/regulator/
19057 F: include/dt-bindings/regulator/
19058 F: include/linux/regulator/
19059 K: regulator_get_optional
19060
19061 VRF
19062 M: David Ahern <dsahern@kernel.org>
19063 M: Shrijeet Mukherjee <shrijeet@gmail.com>
19064 L: netdev@vger.kernel.org
19065 S: Maintained
19066 F: Documentation/networking/vrf.rst
19067 F: drivers/net/vrf.c
19068
19069 VSPRINTF
19070 M: Petr Mladek <pmladek@suse.com>
19071 M: Steven Rostedt <rostedt@goodmis.org>
19072 M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
19073 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19074 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
19075 S: Maintained
19076 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19077 F: Documentation/core-api/printk-formats.rst
19078 F: lib/test_printf.c
19079 F: lib/vsprintf.c
19080
19081 VT1211 HARDWARE MONITOR DRIVER
19082 M: Juerg Haefliger <juergh@gmail.com>
19083 L: linux-hwmon@vger.kernel.org
19084 S: Maintained
19085 F: Documentation/hwmon/vt1211.rst
19086 F: drivers/hwmon/vt1211.c
19087
19088 VT8231 HARDWARE MONITOR DRIVER
19089 M: Roger Lucas <vt8231@hiddenengine.co.uk>
19090 L: linux-hwmon@vger.kernel.org
19091 S: Maintained
19092 F: drivers/hwmon/vt8231.c
19093
19094 VUB300 USB to SDIO/SD/MMC bridge chip
19095 L: linux-mmc@vger.kernel.org
19096 S: Orphan
19097 F: drivers/mmc/host/vub300.c
19098
19099 W1 DALLAS'S 1-WIRE BUS
19100 M: Evgeniy Polyakov <zbr@ioremap.net>
19101 S: Maintained
19102 F: Documentation/devicetree/bindings/w1/
19103 F: Documentation/w1/
19104 F: drivers/w1/
19105 F: include/linux/w1.h
19106
19107 W83791D HARDWARE MONITORING DRIVER
19108 M: Marc Hulsman <m.hulsman@tudelft.nl>
19109 L: linux-hwmon@vger.kernel.org
19110 S: Maintained
19111 F: Documentation/hwmon/w83791d.rst
19112 F: drivers/hwmon/w83791d.c
19113
19114 W83793 HARDWARE MONITORING DRIVER
19115 M: Rudolf Marek <r.marek@assembler.cz>
19116 L: linux-hwmon@vger.kernel.org
19117 S: Maintained
19118 F: Documentation/hwmon/w83793.rst
19119 F: drivers/hwmon/w83793.c
19120
19121 W83795 HARDWARE MONITORING DRIVER
19122 M: Jean Delvare <jdelvare@suse.com>
19123 L: linux-hwmon@vger.kernel.org
19124 S: Maintained
19125 F: drivers/hwmon/w83795.c
19126
19127 W83L51xD SD/MMC CARD INTERFACE DRIVER
19128 M: Pierre Ossman <pierre@ossman.eu>
19129 S: Maintained
19130 F: drivers/mmc/host/wbsd.*
19131
19132 WACOM PROTOCOL 4 SERIAL TABLETS
19133 M: Julian Squires <julian@cipht.net>
19134 M: Hans de Goede <hdegoede@redhat.com>
19135 L: linux-input@vger.kernel.org
19136 S: Maintained
19137 F: drivers/input/tablet/wacom_serial4.c
19138
19139 WATCHDOG DEVICE DRIVERS
19140 M: Wim Van Sebroeck <wim@linux-watchdog.org>
19141 M: Guenter Roeck <linux@roeck-us.net>
19142 L: linux-watchdog@vger.kernel.org
19143 S: Maintained
19144 W: http://www.linux-watchdog.org/
19145 T: git git://www.linux-watchdog.org/linux-watchdog.git
19146 F: Documentation/devicetree/bindings/watchdog/
19147 F: Documentation/watchdog/
19148 F: drivers/watchdog/
19149 F: include/linux/watchdog.h
19150 F: include/uapi/linux/watchdog.h
19151
19152 WHISKEYCOVE PMIC GPIO DRIVER
19153 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19154 L: linux-gpio@vger.kernel.org
19155 S: Maintained
19156 F: drivers/gpio/gpio-wcove.c
19157
19158 WHWAVE RTC DRIVER
19159 M: Dianlong Li <long17.cool@163.com>
19160 L: linux-rtc@vger.kernel.org
19161 S: Maintained
19162 F: drivers/rtc/rtc-sd3078.c
19163
19164 WIIMOTE HID DRIVER
19165 M: David Rheinsberg <david.rheinsberg@gmail.com>
19166 L: linux-input@vger.kernel.org
19167 S: Maintained
19168 F: drivers/hid/hid-wiimote*
19169
19170 WILOCITY WIL6210 WIRELESS DRIVER
19171 M: Maya Erez <merez@codeaurora.org>
19172 L: linux-wireless@vger.kernel.org
19173 L: wil6210@qti.qualcomm.com
19174 S: Supported
19175 W: https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19176 F: drivers/net/wireless/ath/wil6210/
19177
19178 WINBOND CIR DRIVER
19179 M: David Härdeman <david@hardeman.nu>
19180 S: Maintained
19181 F: drivers/media/rc/winbond-cir.c
19182
19183 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19184 M: William Breathitt Gray <vilhelm.gray@gmail.com>
19185 L: linux-watchdog@vger.kernel.org
19186 S: Maintained
19187 F: drivers/watchdog/ebc-c384_wdt.c
19188
19189 WINSYSTEMS WS16C48 GPIO DRIVER
19190 M: William Breathitt Gray <vilhelm.gray@gmail.com>
19191 L: linux-gpio@vger.kernel.org
19192 S: Maintained
19193 F: drivers/gpio/gpio-ws16c48.c
19194
19195 WIREGUARD SECURE NETWORK TUNNEL
19196 M: Jason A. Donenfeld <Jason@zx2c4.com>
19197 L: wireguard@lists.zx2c4.com
19198 L: netdev@vger.kernel.org
19199 S: Maintained
19200 F: drivers/net/wireguard/
19201 F: tools/testing/selftests/wireguard/
19202
19203 WISTRON LAPTOP BUTTON DRIVER
19204 M: Miloslav Trmac <mitr@volny.cz>
19205 S: Maintained
19206 F: drivers/input/misc/wistron_btns.c
19207
19208 WL3501 WIRELESS PCMCIA CARD DRIVER
19209 L: linux-wireless@vger.kernel.org
19210 S: Odd fixes
19211 F: drivers/net/wireless/wl3501*
19212
19213 WOLFSON MICROELECTRONICS DRIVERS
19214 L: patches@opensource.cirrus.com
19215 S: Supported
19216 W: https://github.com/CirrusLogic/linux-drivers/wiki
19217 T: git https://github.com/CirrusLogic/linux-drivers.git
19218 F: Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19219 F: Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19220 F: Documentation/devicetree/bindings/mfd/wm831x.txt
19221 F: Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19222 F: Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19223 F: Documentation/hwmon/wm83??.rst
19224 F: arch/arm/mach-s3c/mach-crag6410*
19225 F: drivers/clk/clk-wm83*.c
19226 F: drivers/extcon/extcon-arizona.c
19227 F: drivers/gpio/gpio-*wm*.c
19228 F: drivers/gpio/gpio-arizona.c
19229 F: drivers/hwmon/wm83??-hwmon.c
19230 F: drivers/input/misc/wm831x-on.c
19231 F: drivers/input/touchscreen/wm831x-ts.c
19232 F: drivers/input/touchscreen/wm97*.c
19233 F: drivers/leds/leds-wm83*.c
19234 F: drivers/mfd/arizona*
19235 F: drivers/mfd/cs47l24*
19236 F: drivers/mfd/wm*.c
19237 F: drivers/power/supply/wm83*.c
19238 F: drivers/regulator/arizona*
19239 F: drivers/regulator/wm8*.c
19240 F: drivers/rtc/rtc-wm83*.c
19241 F: drivers/video/backlight/wm83*_bl.c
19242 F: drivers/watchdog/wm83*_wdt.c
19243 F: include/linux/mfd/arizona/
19244 F: include/linux/mfd/wm831x/
19245 F: include/linux/mfd/wm8350/
19246 F: include/linux/mfd/wm8400*
19247 F: include/linux/regulator/arizona*
19248 F: include/linux/wm97xx.h
19249 F: include/sound/wm????.h
19250 F: sound/soc/codecs/arizona.?
19251 F: sound/soc/codecs/cs47l24*
19252 F: sound/soc/codecs/wm*
19253
19254 WORKQUEUE
19255 M: Tejun Heo <tj@kernel.org>
19256 R: Lai Jiangshan <jiangshanlai@gmail.com>
19257 S: Maintained
19258 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19259 F: Documentation/core-api/workqueue.rst
19260 F: include/linux/workqueue.h
19261 F: kernel/workqueue.c
19262
19263 X-POWERS AXP288 PMIC DRIVERS
19264 M: Hans de Goede <hdegoede@redhat.com>
19265 S: Maintained
19266 F: drivers/acpi/pmic/intel_pmic_xpower.c
19267 N: axp288
19268
19269 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19270 M: Chen-Yu Tsai <wens@csie.org>
19271 L: linux-kernel@vger.kernel.org
19272 S: Maintained
19273 N: axp[128]
19274
19275 X.25 STACK
19276 M: Martin Schiller <ms@dev.tdt.de>
19277 L: linux-x25@vger.kernel.org
19278 S: Maintained
19279 F: Documentation/networking/lapb-module.rst
19280 F: Documentation/networking/x25*
19281 F: drivers/net/wan/hdlc_x25.c
19282 F: drivers/net/wan/lapbether.c
19283 F: include/*/lapb.h
19284 F: include/net/x25*
19285 F: include/uapi/linux/x25.h
19286 F: net/lapb/
19287 F: net/x25/
19288
19289 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19290 M: Thomas Gleixner <tglx@linutronix.de>
19291 M: Ingo Molnar <mingo@redhat.com>
19292 M: Borislav Petkov <bp@alien8.de>
19293 M: x86@kernel.org
19294 R: "H. Peter Anvin" <hpa@zytor.com>
19295 L: linux-kernel@vger.kernel.org
19296 S: Maintained
19297 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19298 F: Documentation/devicetree/bindings/x86/
19299 F: Documentation/x86/
19300 F: arch/x86/
19301
19302 X86 ENTRY CODE
19303 M: Andy Lutomirski <luto@kernel.org>
19304 L: linux-kernel@vger.kernel.org
19305 S: Maintained
19306 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19307 F: arch/x86/entry/
19308
19309 X86 MCE INFRASTRUCTURE
19310 M: Tony Luck <tony.luck@intel.com>
19311 M: Borislav Petkov <bp@alien8.de>
19312 L: linux-edac@vger.kernel.org
19313 S: Maintained
19314 F: arch/x86/kernel/cpu/mce/*
19315
19316 X86 MICROCODE UPDATE SUPPORT
19317 M: Borislav Petkov <bp@alien8.de>
19318 S: Maintained
19319 F: arch/x86/kernel/cpu/microcode/*
19320
19321 X86 MM
19322 M: Dave Hansen <dave.hansen@linux.intel.com>
19323 M: Andy Lutomirski <luto@kernel.org>
19324 M: Peter Zijlstra <peterz@infradead.org>
19325 L: linux-kernel@vger.kernel.org
19326 S: Maintained
19327 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19328 F: arch/x86/mm/
19329
19330 X86 PLATFORM DRIVERS
19331 M: Hans de Goede <hdegoede@redhat.com>
19332 M: Mark Gross <mgross@linux.intel.com>
19333 L: platform-driver-x86@vger.kernel.org
19334 S: Maintained
19335 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19336 F: drivers/platform/olpc/
19337 F: drivers/platform/x86/
19338
19339 X86 PLATFORM DRIVERS - ARCH
19340 R: Darren Hart <dvhart@infradead.org>
19341 R: Andy Shevchenko <andy@infradead.org>
19342 L: platform-driver-x86@vger.kernel.org
19343 L: x86@kernel.org
19344 S: Maintained
19345 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19346 F: arch/x86/platform
19347
19348 X86 PLATFORM UV HPE SUPERDOME FLEX
19349 M: Steve Wahl <steve.wahl@hpe.com>
19350 R: Mike Travis <mike.travis@hpe.com>
19351 R: Dimitri Sivanich <dimitri.sivanich@hpe.com>
19352 R: Russ Anderson <russ.anderson@hpe.com>
19353 S: Supported
19354 F: arch/x86/include/asm/uv/
19355 F: arch/x86/kernel/apic/x2apic_uv_x.c
19356 F: arch/x86/platform/uv/
19357
19358 X86 VDSO
19359 M: Andy Lutomirski <luto@kernel.org>
19360 L: linux-kernel@vger.kernel.org
19361 S: Maintained
19362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19363 F: arch/x86/entry/vdso/
19364
19365 XARRAY
19366 M: Matthew Wilcox <willy@infradead.org>
19367 L: linux-fsdevel@vger.kernel.org
19368 S: Supported
19369 F: Documentation/core-api/xarray.rst
19370 F: include/linux/idr.h
19371 F: include/linux/xarray.h
19372 F: lib/idr.c
19373 F: lib/xarray.c
19374 F: tools/testing/radix-tree
19375
19376 XBOX DVD IR REMOTE
19377 M: Benjamin Valentin <benpicco@googlemail.com>
19378 S: Maintained
19379 F: drivers/media/rc/keymaps/rc-xbox-dvd.c
19380 F: drivers/media/rc/xbox_remote.c
19381
19382 XC2028/3028 TUNER DRIVER
19383 M: Mauro Carvalho Chehab <mchehab@kernel.org>
19384 L: linux-media@vger.kernel.org
19385 S: Maintained
19386 W: https://linuxtv.org
19387 T: git git://linuxtv.org/media_tree.git
19388 F: drivers/media/tuners/tuner-xc2028.*
19389
19390 XDP (eXpress Data Path)
19391 M: Alexei Starovoitov <ast@kernel.org>
19392 M: Daniel Borkmann <daniel@iogearbox.net>
19393 M: David S. Miller <davem@davemloft.net>
19394 M: Jakub Kicinski <kuba@kernel.org>
19395 M: Jesper Dangaard Brouer <hawk@kernel.org>
19396 M: John Fastabend <john.fastabend@gmail.com>
19397 L: netdev@vger.kernel.org
19398 L: bpf@vger.kernel.org
19399 S: Supported
19400 F: include/net/xdp.h
19401 F: include/net/xdp_priv.h
19402 F: include/trace/events/xdp.h
19403 F: kernel/bpf/cpumap.c
19404 F: kernel/bpf/devmap.c
19405 F: net/core/xdp.c
19406 F: samples/bpf/xdp*
19407 F: tools/testing/selftests/bpf/*xdp*
19408 F: tools/testing/selftests/bpf/*/*xdp*
19409 F: drivers/net/ethernet/*/*/*/*/*xdp*
19410 F: drivers/net/ethernet/*/*/*xdp*
19411 K: (?:\b|_)xdp(?:\b|_)
19412
19413 XDP SOCKETS (AF_XDP)
19414 M: Björn Töpel <bjorn.topel@intel.com>
19415 M: Magnus Karlsson <magnus.karlsson@intel.com>
19416 R: Jonathan Lemon <jonathan.lemon@gmail.com>
19417 L: netdev@vger.kernel.org
19418 L: bpf@vger.kernel.org
19419 S: Maintained
19420 F: Documentation/networking/af_xdp.rst
19421 F: include/net/xdp_sock*
19422 F: include/net/xsk_buff_pool.h
19423 F: include/uapi/linux/if_xdp.h
19424 F: include/uapi/linux/xdp_diag.h
19425 F: include/net/netns/xdp.h
19426 F: net/xdp/
19427 F: samples/bpf/xdpsock*
19428 F: tools/lib/bpf/xsk*
19429
19430 XEN BLOCK SUBSYSTEM
19431 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19432 M: Roger Pau Monné <roger.pau@citrix.com>
19433 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
19434 S: Supported
19435 F: drivers/block/xen*
19436 F: drivers/block/xen-blkback/*
19437
19438 XEN HYPERVISOR ARM
19439 M: Stefano Stabellini <sstabellini@kernel.org>
19440 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
19441 S: Maintained
19442 F: arch/arm/include/asm/xen/
19443 F: arch/arm/xen/
19444
19445 XEN HYPERVISOR ARM64
19446 M: Stefano Stabellini <sstabellini@kernel.org>
19447 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
19448 S: Maintained
19449 F: arch/arm64/include/asm/xen/
19450 F: arch/arm64/xen/
19451
19452 XEN HYPERVISOR INTERFACE
19453 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
19454 M: Juergen Gross <jgross@suse.com>
19455 R: Stefano Stabellini <sstabellini@kernel.org>
19456 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
19457 S: Supported
19458 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19459 F: Documentation/ABI/stable/sysfs-hypervisor-xen
19460 F: Documentation/ABI/testing/sysfs-hypervisor-xen
19461 F: arch/x86/include/asm/pvclock-abi.h
19462 F: arch/x86/include/asm/xen/
19463 F: arch/x86/platform/pvh/
19464 F: arch/x86/xen/
19465 F: drivers/*/xen-*front.c
19466 F: drivers/xen/
19467 F: include/uapi/xen/
19468 F: include/xen/
19469
19470 XEN NETWORK BACKEND DRIVER
19471 M: Wei Liu <wei.liu@kernel.org>
19472 M: Paul Durrant <paul@xen.org>
19473 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
19474 L: netdev@vger.kernel.org
19475 S: Supported
19476 F: drivers/net/xen-netback/*
19477
19478 XEN PCI SUBSYSTEM
19479 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19480 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
19481 S: Supported
19482 F: arch/x86/pci/*xen*
19483 F: drivers/pci/*xen*
19484
19485 XEN PVSCSI DRIVERS
19486 M: Juergen Gross <jgross@suse.com>
19487 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
19488 L: linux-scsi@vger.kernel.org
19489 S: Supported
19490 F: drivers/scsi/xen-scsifront.c
19491 F: drivers/xen/xen-scsiback.c
19492 F: include/xen/interface/io/vscsiif.h
19493
19494 XEN SOUND FRONTEND DRIVER
19495 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19496 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
19497 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19498 S: Supported
19499 F: sound/xen/*
19500
19501 XEN SWIOTLB SUBSYSTEM
19502 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19503 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
19504 L: iommu@lists.linux-foundation.org
19505 S: Supported
19506 F: arch/x86/xen/*swiotlb*
19507 F: drivers/xen/*swiotlb*
19508
19509 XFS FILESYSTEM
19510 M: Darrick J. Wong <darrick.wong@oracle.com>
19511 M: linux-xfs@vger.kernel.org
19512 L: linux-xfs@vger.kernel.org
19513 S: Supported
19514 W: http://xfs.org/
19515 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19516 F: Documentation/ABI/testing/sysfs-fs-xfs
19517 F: Documentation/admin-guide/xfs.rst
19518 F: Documentation/filesystems/xfs-delayed-logging-design.rst
19519 F: Documentation/filesystems/xfs-self-describing-metadata.rst
19520 F: fs/xfs/
19521 F: include/uapi/linux/dqblk_xfs.h
19522 F: include/uapi/linux/fsmap.h
19523
19524 XILINX AXI ETHERNET DRIVER
19525 M: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19526 S: Maintained
19527 F: drivers/net/ethernet/xilinx/xilinx_axienet*
19528
19529 XILINX CAN DRIVER
19530 M: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19531 R: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19532 L: linux-can@vger.kernel.org
19533 S: Maintained
19534 F: Documentation/devicetree/bindings/net/can/xilinx_can.txt
19535 F: drivers/net/can/xilinx_can.c
19536
19537 XILINX GPIO DRIVER
19538 M: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
19539 R: Srinivas Neeli <srinivas.neeli@xilinx.com>
19540 R: Michal Simek <michal.simek@xilinx.com>
19541 S: Maintained
19542 F: Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
19543 F: Documentation/devicetree/bindings/gpio/gpio-zynq.txt
19544 F: drivers/gpio/gpio-xilinx.c
19545 F: drivers/gpio/gpio-zynq.c
19546
19547 XILINX SD-FEC IP CORES
19548 M: Derek Kiernan <derek.kiernan@xilinx.com>
19549 M: Dragan Cvetic <dragan.cvetic@xilinx.com>
19550 S: Maintained
19551 F: Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19552 F: Documentation/misc-devices/xilinx_sdfec.rst
19553 F: drivers/misc/Kconfig
19554 F: drivers/misc/Makefile
19555 F: drivers/misc/xilinx_sdfec.c
19556 F: include/uapi/misc/xilinx_sdfec.h
19557
19558 XILINX UARTLITE SERIAL DRIVER
19559 M: Peter Korsgaard <jacmet@sunsite.dk>
19560 L: linux-serial@vger.kernel.org
19561 S: Maintained
19562 F: drivers/tty/serial/uartlite.c
19563
19564 XILINX VIDEO IP CORES
19565 M: Hyun Kwon <hyun.kwon@xilinx.com>
19566 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19567 L: linux-media@vger.kernel.org
19568 S: Supported
19569 T: git git://linuxtv.org/media_tree.git
19570 F: Documentation/devicetree/bindings/media/xilinx/
19571 F: drivers/media/platform/xilinx/
19572 F: include/uapi/linux/xilinx-v4l2-controls.h
19573
19574 XILINX ZYNQMP DPDMA DRIVER
19575 M: Hyun Kwon <hyun.kwon@xilinx.com>
19576 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19577 L: dmaengine@vger.kernel.org
19578 S: Supported
19579 F: Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19580 F: drivers/dma/xilinx/xilinx_dpdma.c
19581 F: include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19582
19583 XILINX ZYNQMP PSGTR PHY DRIVER
19584 M: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19585 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19586 L: linux-kernel@vger.kernel.org
19587 S: Supported
19588 T: git https://github.com/Xilinx/linux-xlnx.git
19589 F: Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19590 F: drivers/phy/xilinx/phy-zynqmp.c
19591
19592 XILLYBUS DRIVER
19593 M: Eli Billauer <eli.billauer@gmail.com>
19594 L: linux-kernel@vger.kernel.org
19595 S: Supported
19596 F: drivers/char/xillybus/
19597
19598 XLP9XX I2C DRIVER
19599 M: George Cherian <gcherian@marvell.com>
19600 L: linux-i2c@vger.kernel.org
19601 S: Supported
19602 W: http://www.marvell.com
19603 F: Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19604 F: drivers/i2c/busses/i2c-xlp9xx.c
19605
19606 XRA1403 GPIO EXPANDER
19607 M: Nandor Han <nandor.han@ge.com>
19608 M: Semi Malinen <semi.malinen@ge.com>
19609 L: linux-gpio@vger.kernel.org
19610 S: Maintained
19611 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19612 F: drivers/gpio/gpio-xra1403.c
19613
19614 XTENSA XTFPGA PLATFORM SUPPORT
19615 M: Max Filippov <jcmvbkbc@gmail.com>
19616 L: linux-xtensa@linux-xtensa.org
19617 S: Maintained
19618 F: drivers/spi/spi-xtensa-xtfpga.c
19619 F: sound/soc/xtensa/xtfpga-i2s.c
19620
19621 YAM DRIVER FOR AX.25
19622 M: Jean-Paul Roubelat <jpr@f6fbb.org>
19623 L: linux-hams@vger.kernel.org
19624 S: Maintained
19625 F: drivers/net/hamradio/yam*
19626 F: include/linux/yam.h
19627
19628 YAMA SECURITY MODULE
19629 M: Kees Cook <keescook@chromium.org>
19630 S: Supported
19631 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19632 F: Documentation/admin-guide/LSM/Yama.rst
19633 F: security/yama/
19634
19635 YEALINK PHONE DRIVER
19636 M: Henk Vergonet <Henk.Vergonet@gmail.com>
19637 L: usbb2k-api-dev@nongnu.org
19638 S: Maintained
19639 F: Documentation/input/devices/yealink.rst
19640 F: drivers/input/misc/yealink.*
19641
19642 Z8530 DRIVER FOR AX.25
19643 M: Joerg Reuter <jreuter@yaina.de>
19644 L: linux-hams@vger.kernel.org
19645 S: Maintained
19646 W: http://yaina.de/jreuter/
19647 W: http://www.qsl.net/dl1bke/
19648 F: Documentation/networking/device_drivers/hamradio/z8530drv.rst
19649 F: drivers/net/hamradio/*scc.c
19650 F: drivers/net/hamradio/z8530.h
19651
19652 ZBUD COMPRESSED PAGE ALLOCATOR
19653 M: Seth Jennings <sjenning@redhat.com>
19654 M: Dan Streetman <ddstreet@ieee.org>
19655 L: linux-mm@kvack.org
19656 S: Maintained
19657 F: include/linux/zbud.h
19658 F: mm/zbud.c
19659
19660 ZD1211RW WIRELESS DRIVER
19661 M: Daniel Drake <dsd@gentoo.org>
19662 M: Ulrich Kunitz <kune@deine-taler.de>
19663 L: linux-wireless@vger.kernel.org
19664 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
19665 S: Maintained
19666 W: http://zd1211.ath.cx/wiki/DriverRewrite
19667 F: drivers/net/wireless/zydas/zd1211rw/
19668
19669 ZD1301 MEDIA DRIVER
19670 M: Antti Palosaari <crope@iki.fi>
19671 L: linux-media@vger.kernel.org
19672 S: Maintained
19673 W: https://linuxtv.org/
19674 W: http://palosaari.fi/linux/
19675 Q: https://patchwork.linuxtv.org/project/linux-media/list/
19676 F: drivers/media/usb/dvb-usb-v2/zd1301*
19677
19678 ZD1301_DEMOD MEDIA DRIVER
19679 M: Antti Palosaari <crope@iki.fi>
19680 L: linux-media@vger.kernel.org
19681 S: Maintained
19682 W: https://linuxtv.org/
19683 W: http://palosaari.fi/linux/
19684 Q: https://patchwork.linuxtv.org/project/linux-media/list/
19685 F: drivers/media/dvb-frontends/zd1301_demod*
19686
19687 ZHAOXIN PROCESSOR SUPPORT
19688 M: Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19689 L: linux-kernel@vger.kernel.org
19690 S: Maintained
19691 F: arch/x86/kernel/cpu/zhaoxin.c
19692
19693 ZONEFS FILESYSTEM
19694 M: Damien Le Moal <damien.lemoal@wdc.com>
19695 M: Naohiro Aota <naohiro.aota@wdc.com>
19696 R: Johannes Thumshirn <jth@kernel.org>
19697 L: linux-fsdevel@vger.kernel.org
19698 S: Maintained
19699 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19700 F: Documentation/filesystems/zonefs.rst
19701 F: fs/zonefs/
19702
19703 ZPOOL COMPRESSED PAGE STORAGE API
19704 M: Dan Streetman <ddstreet@ieee.org>
19705 L: linux-mm@kvack.org
19706 S: Maintained
19707 F: include/linux/zpool.h
19708 F: mm/zpool.c
19709
19710 ZR36067 VIDEO FOR LINUX DRIVER
19711 M: Corentin Labbe <clabbe@baylibre.com>
19712 L: mjpeg-users@lists.sourceforge.net
19713 L: linux-media@vger.kernel.org
19714 S: Maintained
19715 W: http://mjpeg.sourceforge.net/driver-zoran/
19716 Q: https://patchwork.linuxtv.org/project/linux-media/list/
19717 F: Documentation/driver-api/media/drivers/zoran.rst
19718 F: drivers/staging/media/zoran/
19719
19720 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19721 M: Minchan Kim <minchan@kernel.org>
19722 M: Nitin Gupta <ngupta@vflare.org>
19723 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19724 L: linux-kernel@vger.kernel.org
19725 S: Maintained
19726 F: Documentation/admin-guide/blockdev/zram.rst
19727 F: drivers/block/zram/
19728
19729 ZS DECSTATION Z85C30 SERIAL DRIVER
19730 M: "Maciej W. Rozycki" <macro@linux-mips.org>
19731 S: Maintained
19732 F: drivers/tty/serial/zs.*
19733
19734 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19735 M: Minchan Kim <minchan@kernel.org>
19736 M: Nitin Gupta <ngupta@vflare.org>
19737 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19738 L: linux-mm@kvack.org
19739 S: Maintained
19740 F: Documentation/vm/zsmalloc.rst
19741 F: include/linux/zsmalloc.h
19742 F: mm/zsmalloc.c
19743
19744 ZSWAP COMPRESSED SWAP CACHING
19745 M: Seth Jennings <sjenning@redhat.com>
19746 M: Dan Streetman <ddstreet@ieee.org>
19747 M: Vitaly Wool <vitaly.wool@konsulko.com>
19748 L: linux-mm@kvack.org
19749 S: Maintained
19750 F: mm/zswap.c
19751
19752 THE REST
19753 M: Linus Torvalds <torvalds@linux-foundation.org>
19754 L: linux-kernel@vger.kernel.org
19755 S: Buried alive in reporters
19756 Q: http://patchwork.kernel.org/project/LKML/list/
19757 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19758 F: *
19759 F: */